From 1ef73f9eb642a80d1a40a6c26de535b480b2707b Mon Sep 17 00:00:00 2001 From: Markus Kowalewski Date: Wed, 11 Dec 2024 14:32:37 +0100 Subject: [PATCH 1/2] zenoh: 1.0.3 -> 1.1.0 --- pkgs/by-name/ze/zenoh/package.nix | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ze/zenoh/package.nix b/pkgs/by-name/ze/zenoh/package.nix index 63a8f7a25262..ae47bfbf2199 100644 --- a/pkgs/by-name/ze/zenoh/package.nix +++ b/pkgs/by-name/ze/zenoh/package.nix @@ -7,16 +7,16 @@ }: rustPlatform.buildRustPackage rec { pname = "zenoh"; - version = "1.0.3"; + version = "1.1.0"; src = fetchFromGitHub { owner = "eclipse-zenoh"; repo = "zenoh"; rev = version; - hash = "sha256-3k266sIP3A76HlFGUax4XIVQqwCKSvShJuBIuNWKJ2c="; + hash = "sha256-Ydmd3eCXn+svMak1I5LU4rJNhzEEc2MiG5MoSMNOJ00="; }; - cargoHash = "sha256-Ny7kLFJveibDmi48a5KS0GKumX4RUAkoeh66tx9oR5g="; + cargoHash = "sha256-AjMgnZ+GJPGMQsyeOQGyXpVrdw2zb7B9/KXWKlvKT1Q="; cargoBuildFlags = [ "--workspace" @@ -72,6 +72,12 @@ rustPlatform.buildRustPackage rec { # thread 'openclose_udp_only_connect_with_interface_restriction' panicked at io/zenoh-transport/tests/unicast_openclose.rs:802:63: # index out of bounds: the len is 0 but the index is 0 "--skip openclose_udp_only_listen_with_interface_restriction" + + # These tests require a network interface and fail in the sandbox + "--skip openclose_quic_only_listen_with_interface_restriction" + "--skip openclose_quic_only_connect_with_interface_restriction" + "--skip openclose_tls_only_connect_with_interface_restriction" + "--skip openclose_tls_only_listen_with_interface_restriction" ]; passthru.tests.version = testers.testVersion { From d3f08b936e6254103e73faea891107be60f1540f Mon Sep 17 00:00:00 2001 From: Markus Kowalewski Date: Wed, 11 Dec 2024 14:36:31 +0100 Subject: [PATCH 2/2] python3Packages.zeno: 1.0.3 -> 1.1.0 --- pkgs/development/python-modules/zenoh/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/zenoh/default.nix b/pkgs/development/python-modules/zenoh/default.nix index cacc31f4e45a..d6bbfdeef960 100644 --- a/pkgs/development/python-modules/zenoh/default.nix +++ b/pkgs/development/python-modules/zenoh/default.nix @@ -11,19 +11,19 @@ buildPythonPackage rec { pname = "zenoh"; - version = "1.0.3"; + version = "1.1.0"; pyproject = true; src = fetchFromGitHub { owner = "eclipse-zenoh"; repo = "zenoh-python"; rev = version; - hash = "sha256-LQ6zu0yD2heprN2p6zO/ZC6uIsMlc1FyDuZ/dvOnVqU="; + hash = "sha256-DO5AZDS7XvExxATtbkFOLG66zQOZu4gE6VWOG7C3qGA="; }; cargoDeps = rustPlatform.fetchCargoVendor { inherit src pname version; - hash = "sha256-6a2OSZLn1OYpe4tAv60uBhh/b+3QewPxVtQIDOnpk3A="; + hash = "sha256-GolnCEsqCGxjrKl2qXVRi9+d8hwXNsRVdfI7Cf60/jg="; }; build-system = [