From 3cc753c6cebe3b39d52d7d8b211d113891558eaa Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Sun, 15 Jun 2025 20:37:24 +0200 Subject: [PATCH 01/73] caesura: init at 0.25.2 --- pkgs/by-name/ca/caesura/package.nix | 91 +++++++++++++++++++++++++++++ 1 file changed, 91 insertions(+) create mode 100644 pkgs/by-name/ca/caesura/package.nix diff --git a/pkgs/by-name/ca/caesura/package.nix b/pkgs/by-name/ca/caesura/package.nix new file mode 100644 index 000000000000..181d8b3e3b70 --- /dev/null +++ b/pkgs/by-name/ca/caesura/package.nix @@ -0,0 +1,91 @@ +{ + lib, + fetchFromGitHub, + fetchzip, + rustPlatform, + eyed3, + flac, + imagemagick, + intermodal, + lame, + makeBinaryWrapper, + sox, + writableTmpDirAsHomeHook, +}: +let + runtimeDeps = [ + eyed3 + flac + intermodal + imagemagick + lame + sox + ]; + + testSampleContent = fetchzip { + url = "https://archive.org/download/tennyson-discography_/Tennyson%20-%20With%20You%20-%20Lay-by.zip"; + hash = "sha256-/MgnOgn+OSPPg9wkJ32hq+1MXDdW+Qo9MqLtZMLQYBY="; + stripRoot = false; + }; +in +rustPlatform.buildRustPackage (finalAttrs: { + pname = "caesura"; + version = "0.25.2"; + + src = fetchFromGitHub { + owner = "RogueOneEcho"; + repo = "caesura"; + tag = "v${finalAttrs.version}"; + hash = "sha256-rpaOFmD/0/c5F6TIS7vGn7G3+rLOoBZKMW/HuzroUxM="; + }; + + cargoHash = "sha256-agdhYEhhw3gMdZmYiQZVeLARkMsYQ/AWLTrpiaH0mtA="; + + nativeBuildInputs = [ + makeBinaryWrapper + ]; + + postPatch = '' + substituteInPlace Cargo.toml \ + --replace-fail 'version = "0.0.0"' 'version = "${finalAttrs.version}"' + ''; + + checkFlags = [ + # Those test need internet access for its `Source` (i.e: tracker) + "--skip=commands::spectrogram::tests::spectrogram_command_tests::spectrogram_command" + "--skip=commands::transcode::tests::transcode_command_tests::transcode_command" + "--skip=utils::source::tests::source_provider_tests::source_provider" + ]; + + preCheck = '' + # From samples/download-sample + mkdir samples/content/ + ln -s ${finalAttrs.passthru.testSampleContent} "samples/content/Tennyson - With You (2014) [Digital] "'{'"16-44.1 Bandcamp"'}'" (FLAC)" + # Adapted from .github/workflows/on-push.yml + tee config.yml < Date: Sat, 21 Jun 2025 21:37:19 +0200 Subject: [PATCH 02/73] lib.filesystem.resolveDefaultNix: init --- lib/filesystem.nix | 42 ++++++++++++++++++++++++++++++++++++++++++ lib/tests/misc.nix | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 88 insertions(+) diff --git a/lib/filesystem.nix b/lib/filesystem.nix index 49e4f8363513..1014c274041f 100644 --- a/lib/filesystem.nix +++ b/lib/filesystem.nix @@ -454,4 +454,46 @@ in ) else processDir args; + + /** + Append `/default.nix` if the passed path is a directory. + + # Type + + ``` + resolveDefaultNix :: (Path | String) -> (Path | String) + ``` + + # Inputs + + A single argument which can be a [path](https://nix.dev/manual/nix/stable/language/types#type-path) value or a string containing an absolute path. + + # Output + + If the input refers to a directory that exists, the output is that same path with `/default.nix` appended. + Furthermore, if the input is a string that ends with `/`, `default.nix` is appended to it. + Otherwise, the input is returned unchanged. + + # Examples + :::{.example} + ## `lib.filesystem.resolveDefaultNix` usage example + + This expression checks whether `a` and `b` refer to the same locally available Nix file path. + + ```nix + resolveDefaultNix a == resolveDefaultNix b + ``` + + For instance, if `a` is `/some/dir` and `b` is `/some/dir/default.nix`, and `/some/dir/` exists, the expression evaluates to `true`, despite `a` and `b` being different references to the same Nix file. + */ + resolveDefaultNix = + v: + if pathIsDirectory v then + v + "/default.nix" + else if lib.isString v && hasSuffix "/" v then + # A path ending in `/` can only refer to a directory, so we take the hint, even if we can't verify the validity of the path's `/` assertion. + # A `/` is already present, so we don't add another one. + v + "default.nix" + else + v; } diff --git a/lib/tests/misc.nix b/lib/tests/misc.nix index 437714a2822e..a723d198cb88 100644 --- a/lib/tests/misc.nix +++ b/lib/tests/misc.nix @@ -4255,4 +4255,50 @@ runTests { }; }; }; + + testFilesystemResolveDefaultNixFile1 = { + expr = lib.filesystem.resolveDefaultNix ./foo.nix; + expected = ./foo.nix; + }; + + testFilesystemResolveDefaultNixFile2 = { + expr = lib.filesystem.resolveDefaultNix ./default.nix; + expected = ./default.nix; + }; + + testFilesystemResolveDefaultNixDir1 = { + expr = lib.filesystem.resolveDefaultNix ./.; + expected = ./default.nix; + }; + + testFilesystemResolveDefaultNixFile1_toString = { + expr = lib.filesystem.resolveDefaultNix (toString ./foo.nix); + expected = toString ./foo.nix; + }; + + testFilesystemResolveDefaultNixFile2_toString = { + expr = lib.filesystem.resolveDefaultNix (toString ./default.nix); + expected = toString ./default.nix; + }; + + testFilesystemResolveDefaultNixDir1_toString = { + expr = lib.filesystem.resolveDefaultNix (toString ./.); + expected = toString ./default.nix; + }; + + testFilesystemResolveDefaultNixDir1_toString2 = { + expr = lib.filesystem.resolveDefaultNix (toString ./.); + expected = toString ./. + "/default.nix"; + }; + + testFilesystemResolveDefaultNixNonExistent = { + expr = lib.filesystem.resolveDefaultNix "/non-existent/this/does/not/exist/for/real/please-dont-mess-with-your-local-fs"; + expected = "/non-existent/this/does/not/exist/for/real/please-dont-mess-with-your-local-fs"; + }; + + testFilesystemResolveDefaultNixNonExistentDir = { + expr = lib.filesystem.resolveDefaultNix "/non-existent/this/does/not/exist/for/real/please-dont-mess-with-your-local-fs/"; + expected = "/non-existent/this/does/not/exist/for/real/please-dont-mess-with-your-local-fs/default.nix"; + }; + } From 66016feb83de9c0dba793ee7dd1408c7cb50222b Mon Sep 17 00:00:00 2001 From: Robert Hensing Date: Sat, 21 Jun 2025 21:29:16 +0200 Subject: [PATCH 03/73] lib.callPackageWith: Use resolveDefaultNix MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Tested with: 1. Replace the callPackageWith call by `null`, to simulate an ancient Nix 2. Run the following commands in a terminal in nixpkgs: $ mkdir test/ $ echo '{ asdfasdfasdf }: null' >test/default.nix $ nix repl -f . nix-repl> callPackage ./test { } error: … while calling the 'abort' builtin at /home/user/src/nixpkgs/lib/customisation.nix:312:7: 311| else 312| abort "lib.customisation.callPackageWith: ${error}"; | ^ 313| error: evaluation aborted with the following error message: 'lib.customisation.callPackageWith: Function called without required argument "asdfasdfasdf" at /home/user/src/nixpkgs/test/default.nix' --- lib/customisation.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/customisation.nix b/lib/customisation.nix index 9c50e6a26c3d..c73f2f2911bb 100644 --- a/lib/customisation.nix +++ b/lib/customisation.nix @@ -291,7 +291,7 @@ rec { if loc != null then loc.file + ":" + toString loc.line else if !isFunction fn then - toString fn + optionalString (pathIsDirectory fn) "/default.nix" + toString (lib.filesystem.resolveDefaultNix fn) else ""; in From 8ff91dbe3a8200b6c0990158f8e8d0deb1995c7c Mon Sep 17 00:00:00 2001 From: Thibaut Smith Date: Sun, 22 Jun 2025 16:59:59 +0200 Subject: [PATCH 04/73] maintainers: add videl --- maintainers/maintainer-list.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 664ee433104b..39332dbc0390 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -26359,6 +26359,12 @@ githubId = 335406; name = "David Asabina"; }; + videl = { + email = "thibaut.smith@mailbox.org"; + github = "videl"; + githubId = 123554; + name = "Thibaut Smith"; + }; vidister = { email = "v@vidister.de"; github = "vidister"; From 20ab3c01cd31755a48ab25a674a43521a31ec643 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 28 Jun 2025 08:04:21 +0000 Subject: [PATCH 05/73] werf: 2.38.0 -> 2.39.1 --- pkgs/by-name/we/werf/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/we/werf/package.nix b/pkgs/by-name/we/werf/package.nix index 8ddc80fe6dcc..ef7cf8177825 100644 --- a/pkgs/by-name/we/werf/package.nix +++ b/pkgs/by-name/we/werf/package.nix @@ -10,17 +10,17 @@ }: buildGoModule (finalAttrs: { pname = "werf"; - version = "2.38.0"; + version = "2.39.1"; src = fetchFromGitHub { owner = "werf"; repo = "werf"; tag = "v${finalAttrs.version}"; - hash = "sha256-cZUzkThVKgPc8bsxmDc2+gsq9YxVswokO1rORvKVIws="; + hash = "sha256-xQ1nh9YL198/ih9rw52rItR3t5Nq901MpDlFVht6kAc="; }; proxyVendor = true; - vendorHash = "sha256-aQVDt6VDtQjHCkY2xcbmoKn+UUplJ+a6xfdwPSF/j9Y="; + vendorHash = "sha256-CLe5UuHwAXLk9c+6baOpfFqrE/pl4889PhlajBRV+UU="; subPackages = [ "cmd/werf" ]; From de3616195b79fb688fc49e2c9a8d148fa0f28e62 Mon Sep 17 00:00:00 2001 From: Nikolay Korotkiy Date: Sat, 28 Jun 2025 19:56:35 +0400 Subject: [PATCH 06/73] =?UTF-8?q?mapnik:=204.1.0=20=E2=86=92=204.1.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkgs/by-name/ma/mapnik/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ma/mapnik/package.nix b/pkgs/by-name/ma/mapnik/package.nix index 9410c72ebad3..974fa8c03a9a 100644 --- a/pkgs/by-name/ma/mapnik/package.nix +++ b/pkgs/by-name/ma/mapnik/package.nix @@ -29,13 +29,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "mapnik"; - version = "4.1.0"; + version = "4.1.1"; src = fetchFromGitHub { owner = "mapnik"; repo = "mapnik"; tag = "v${finalAttrs.version}"; - hash = "sha256-EhRMG0xPOGwcRAMQD2B4z7nVlXQf4HFFfL3oUaUfXBY="; + hash = "sha256-+PCN3bjLGqfK4MF6fWApnSua4Pn/mKo2m9CY8/c5xC4="; fetchSubmodules = true; }; From 08ad72526a75bab8020a59df7d34e06a82a07191 Mon Sep 17 00:00:00 2001 From: Nikolay Korotkiy Date: Sun, 29 Jun 2025 00:30:16 +0400 Subject: [PATCH 07/73] =?UTF-8?q?saga:=209.7.2=20=E2=86=92=209.8.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkgs/by-name/sa/saga/darwin-patch-1.patch | 30 ----------------------- pkgs/by-name/sa/saga/darwin-patch-2.patch | 24 ------------------ pkgs/by-name/sa/saga/package.nix | 12 ++------- 3 files changed, 2 insertions(+), 64 deletions(-) delete mode 100644 pkgs/by-name/sa/saga/darwin-patch-1.patch delete mode 100644 pkgs/by-name/sa/saga/darwin-patch-2.patch diff --git a/pkgs/by-name/sa/saga/darwin-patch-1.patch b/pkgs/by-name/sa/saga/darwin-patch-1.patch deleted file mode 100644 index 224a66204aca..000000000000 --- a/pkgs/by-name/sa/saga/darwin-patch-1.patch +++ /dev/null @@ -1,30 +0,0 @@ -commit 3bbd15676dfc077d7836e9d51810c1d6731f5789 -Author: Palmer Cox -Date: Sun Feb 23 16:41:18 2025 -0500 - - Fix copy/paste error in FindPostgres.cmake - - In f51c6b1513e312002c108fe87d26e33c48671406, EXEC_PROGRAM was changed to - execute_process. As part of that, it looks like the second and third - invocations were accidentally changed. - -diff --git a/saga-gis/cmake/modules/FindPostgres.cmake b/saga-gis/cmake/modules/FindPostgres.cmake -index f22806fd9..a4b6ec9ac 100644 ---- a/cmake/modules/FindPostgres.cmake -+++ b/cmake/modules/FindPostgres.cmake -@@ -77,13 +77,13 @@ ELSE(WIN32) - SET(POSTGRES_INCLUDE_DIR ${PG_TMP} CACHE STRING INTERNAL) - - # set LIBRARY_DIR -- execute_process(COMMAND ${POSTGRES_CONFIG} --includedir -+ execute_process(COMMAND ${POSTGRES_CONFIG} --libdir - OUTPUT_VARIABLE PG_TMP - OUTPUT_STRIP_TRAILING_WHITESPACE) - IF (APPLE) - SET(POSTGRES_LIBRARY ${PG_TMP}/libpq.dylib CACHE STRING INTERNAL) - ELSEIF (CYGWIN) -- execute_process(COMMAND ${POSTGRES_CONFIG} --includedir -+ execute_process(COMMAND ${POSTGRES_CONFIG} --libs - OUTPUT_VARIABLE PG_TMP - OUTPUT_STRIP_TRAILING_WHITESPACE) - diff --git a/pkgs/by-name/sa/saga/darwin-patch-2.patch b/pkgs/by-name/sa/saga/darwin-patch-2.patch deleted file mode 100644 index af601923d6ef..000000000000 --- a/pkgs/by-name/sa/saga/darwin-patch-2.patch +++ /dev/null @@ -1,24 +0,0 @@ -commit eb69f594ec439309432e87834bead5276b7dbc9b -Author: Palmer Cox -Date: Sun Feb 23 16:45:34 2025 -0500 - - On Apple, use FIND_LIBRARY to locate libpq - - I think FIND_LIBRARY() is better than just relying on what pg_config - said its libdir was, since, depending on how libpq was installed, it may - or may not be in that directory. If its not, FIND_LIBRARY() is able to - find it in other locations. - -diff --git a/saga-gis/cmake/modules/FindPostgres.cmake b/saga-gis/cmake/modules/FindPostgres.cmake -index a4b6ec9ac..65e7ac69b 100644 ---- a/cmake/modules/FindPostgres.cmake -+++ b/cmake/modules/FindPostgres.cmake -@@ -81,7 +81,7 @@ ELSE(WIN32) - OUTPUT_VARIABLE PG_TMP - OUTPUT_STRIP_TRAILING_WHITESPACE) - IF (APPLE) -- SET(POSTGRES_LIBRARY ${PG_TMP}/libpq.dylib CACHE STRING INTERNAL) -+ FIND_LIBRARY(POSTGRES_LIBRARY NAMES pq libpq PATHS ${PG_TMP}) - ELSEIF (CYGWIN) - execute_process(COMMAND ${POSTGRES_CONFIG} --libs - OUTPUT_VARIABLE PG_TMP diff --git a/pkgs/by-name/sa/saga/package.nix b/pkgs/by-name/sa/saga/package.nix index 4dec9b726133..5dcfabab65dd 100644 --- a/pkgs/by-name/sa/saga/package.nix +++ b/pkgs/by-name/sa/saga/package.nix @@ -33,23 +33,15 @@ stdenv.mkDerivation rec { pname = "saga"; - version = "9.7.2"; + version = "9.8.1"; src = fetchurl { url = "mirror://sourceforge/saga-gis/saga-${version}.tar.gz"; - hash = "sha256-1nWpFGRBS49uzKl7m/4YWFI+3lvm2zKByYpR9llxsgY="; + hash = "sha256-NCNeTxR4eWMJ3OHcBEQ2MZky9XiEExPscGhriDvXYf8="; }; sourceRoot = "saga-${version}/saga-gis"; - patches = [ - # Patches from https://sourceforge.net/p/saga-gis/code/merge-requests/38/. - # These are needed to fix building on Darwin (technically the first is not - # required, but the second doesn't apply without it). - ./darwin-patch-1.patch - ./darwin-patch-2.patch - ]; - nativeBuildInputs = [ cmake wrapGAppsHook3 From 591a9fba70f63dee3562d4dc325df846ab59214e Mon Sep 17 00:00:00 2001 From: aleksana Date: Fri, 27 Jun 2025 17:47:03 +0800 Subject: [PATCH 08/73] fawltydeps: init at 0.20.0 --- pkgs/by-name/fa/fawltydeps/package.nix | 57 ++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 pkgs/by-name/fa/fawltydeps/package.nix diff --git a/pkgs/by-name/fa/fawltydeps/package.nix b/pkgs/by-name/fa/fawltydeps/package.nix new file mode 100644 index 000000000000..391c03a4c156 --- /dev/null +++ b/pkgs/by-name/fa/fawltydeps/package.nix @@ -0,0 +1,57 @@ +{ + lib, + python3Packages, + fetchFromGitHub, + writableTmpDirAsHomeHook, +}: + +python3Packages.buildPythonApplication rec { + pname = "fawltydeps"; + version = "0.20.0"; + pyproject = true; + + src = fetchFromGitHub { + owner = "tweag"; + repo = "FawltyDeps"; + tag = "v${version}"; + hash = "sha256-RGwCi4SD0khuOZXcR9Leh9WtRautnlJIfuLBnosyUgk="; + }; + + build-system = with python3Packages; [ poetry-core ]; + + dependencies = with python3Packages; [ + pyyaml + importlib-metadata + isort + pip-requirements-parser + pydantic + ]; + + nativeCheckInputs = + [ + writableTmpDirAsHomeHook + ] + ++ (with python3Packages; [ + pytestCheckHook + hypothesis + ]); + + disabledTestPaths = [ + # Disable tests that require network + "tests/test_install_deps.py" + "tests/test_resolver.py" + ]; + + pythonImportsCheck = [ "fawltydeps" ]; + + meta = { + description = "Find undeclared and/or unused 3rd-party dependencies in your Python project"; + homepage = "https://tweag.github.io/FawltyDeps"; + license = lib.licenses.mit; + mainProgram = "fawltydeps"; + maintainers = with lib.maintainers; [ + aleksana + jherland + ]; + }; +} From d7eb93843091c469a7adfdc0a306dc2fc05a5c52 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 1 Jul 2025 06:43:51 +0000 Subject: [PATCH 09/73] cloak-pt: 2.10.0 -> 2.11.0 --- pkgs/by-name/cl/cloak-pt/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/cl/cloak-pt/package.nix b/pkgs/by-name/cl/cloak-pt/package.nix index bcd3441bb43f..42895c2d2180 100644 --- a/pkgs/by-name/cl/cloak-pt/package.nix +++ b/pkgs/by-name/cl/cloak-pt/package.nix @@ -4,7 +4,7 @@ fetchFromGitHub, }: let - version = "2.10.0"; + version = "2.11.0"; in buildGoModule { pname = "Cloak"; @@ -14,10 +14,10 @@ buildGoModule { owner = "cbeuw"; repo = "Cloak"; rev = "v${version}"; - hash = "sha256-JbwjsLVOxQc6v47+6rG2f1JLS8ieZI6jYV/twtaVx9M="; + hash = "sha256-afFOWjJiqlMeo8M8D2RsW572c2qTthMNbQvxEf7edHE="; }; - vendorHash = "sha256-0veClhg9GujI5VrHVzAevIXkjqtZ6r7RGTP2QeWbO2w="; + vendorHash = "sha256-P3/fB1vJjEMETyFxH9XNQySCEDQWrbZdaf0V4qFucbI="; doCheck = false; From 0b99d6a61314e88e52a7ba1e11e348ac987a5330 Mon Sep 17 00:00:00 2001 From: Paul Meyer Date: Tue, 1 Jul 2025 08:31:33 +0200 Subject: [PATCH 10/73] python3Packages.azure-mgmt-containerservice: 36.0.0 -> 37.0.0 Signed-off-by: Paul Meyer --- .../python-modules/azure-mgmt-containerservice/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/azure-mgmt-containerservice/default.nix b/pkgs/development/python-modules/azure-mgmt-containerservice/default.nix index 43d6f2fa3951..cab199d3eaa4 100644 --- a/pkgs/development/python-modules/azure-mgmt-containerservice/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-containerservice/default.nix @@ -11,7 +11,7 @@ buildPythonPackage rec { pname = "azure-mgmt-containerservice"; - version = "36.0.0"; + version = "37.0.0"; pyproject = true; disabled = pythonOlder "3.8"; @@ -19,7 +19,7 @@ buildPythonPackage rec { src = fetchPypi { pname = "azure_mgmt_containerservice"; inherit version; - hash = "sha256-l/PnbSs6auieHmxzmEjx4OB1jHKCqjNNV7MAhvbzbJ8="; + hash = "sha256-F02cVmGhYuxDoK95BbzxHNIJpugARaj0I31TcB0qkTs="; }; build-system = [ setuptools ]; From 4b8c506449d4145384bf659f5c85efc785096dd0 Mon Sep 17 00:00:00 2001 From: Paul Meyer Date: Tue, 1 Jul 2025 08:35:00 +0200 Subject: [PATCH 11/73] python3Packages.azure-multiapi-storage: 1.4.0 -> 1.4.1 Signed-off-by: Paul Meyer --- .../python-modules/azure-multiapi-storage/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/azure-multiapi-storage/default.nix b/pkgs/development/python-modules/azure-multiapi-storage/default.nix index 17d1a30156c2..57ddf17de1ab 100644 --- a/pkgs/development/python-modules/azure-multiapi-storage/default.nix +++ b/pkgs/development/python-modules/azure-multiapi-storage/default.nix @@ -14,14 +14,15 @@ buildPythonPackage rec { pname = "azure-multiapi-storage"; - version = "1.4.0"; + version = "1.4.1"; pyproject = true; disabled = pythonOlder "3.9"; src = fetchPypi { - inherit pname version; - hash = "sha256-RfFd+1xL2ouWJ3NLXMcsRfQ215bi4ha+iCOcYXjND3E="; + pname = "azure_multiapi_storage"; + inherit version; + hash = "sha256-INTvVn+1ysQHKRyI0Q4p43Ynyyj2BiBPVMcfaAEDCyg="; }; build-system = [ setuptools ]; From dcb2fea9cc4fd7c0f235b0596f6522b0535a23c6 Mon Sep 17 00:00:00 2001 From: Paul Meyer Date: Tue, 1 Jul 2025 08:44:17 +0200 Subject: [PATCH 12/73] azure-cli: 2.74.0 -> 2.75.0 Signed-off-by: Paul Meyer --- pkgs/by-name/az/azure-cli/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/az/azure-cli/package.nix b/pkgs/by-name/az/azure-cli/package.nix index be490aa33876..b780b8c8a1fa 100644 --- a/pkgs/by-name/az/azure-cli/package.nix +++ b/pkgs/by-name/az/azure-cli/package.nix @@ -26,14 +26,14 @@ }: let - version = "2.74.0"; + version = "2.75.0"; src = fetchFromGitHub { name = "azure-cli-${version}-src"; owner = "Azure"; repo = "azure-cli"; tag = "azure-cli-${version}"; - hash = "sha256-wX1XKC3snnKEQeqlW+btshjdcMR/5m2Z69QtcJe2Opc="; + hash = "sha256-u6umAqRUfiACt23mxTtfosLdxKSPvDVJMkVjPCtxr24="; }; # put packages that needs to be overridden in the py package scope From ce95db48d2b6e8fc68d8eeb0046e284a2d3dfdb8 Mon Sep 17 00:00:00 2001 From: Paul Meyer Date: Tue, 1 Jul 2025 08:46:04 +0200 Subject: [PATCH 13/73] azure-cli-extensions.data-transfer: init at 1.0.0b1 --- pkgs/by-name/az/azure-cli/extensions-generated.json | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkgs/by-name/az/azure-cli/extensions-generated.json b/pkgs/by-name/az/azure-cli/extensions-generated.json index 17a13455115a..721bb8c82362 100644 --- a/pkgs/by-name/az/azure-cli/extensions-generated.json +++ b/pkgs/by-name/az/azure-cli/extensions-generated.json @@ -279,6 +279,13 @@ "hash": "sha256-4Ou6/8XRwH5c1hXZy54hJE7fxEeyjLAYcTmhGNyIkrc=", "description": "Microsoft Azure Command-Line Tools Customlocation Extension" }, + "data-transfer": { + "pname": "data-transfer", + "version": "1.0.0b1", + "url": "https://azcliprod.blob.core.windows.net/cli-extensions/data_transfer-1.0.0b1-py3-none-any.whl", + "hash": "sha256-dnF7ZpUcGP7d3uywoXZdMmr/INH5y46glKuJwrlenfU=", + "description": "Microsoft Azure Command-Line Tools DataTransfer Extension" + }, "databox": { "pname": "databox", "version": "1.2.0", From 648841ebf343f3f5a16b5f2819bdab1ae192ad8d Mon Sep 17 00:00:00 2001 From: Paul Meyer Date: Tue, 1 Jul 2025 08:46:06 +0200 Subject: [PATCH 14/73] azure-cli-extensions.cloudhsm: init at 1.0.0b1 --- pkgs/by-name/az/azure-cli/extensions-generated.json | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkgs/by-name/az/azure-cli/extensions-generated.json b/pkgs/by-name/az/azure-cli/extensions-generated.json index 721bb8c82362..a5fbd8675982 100644 --- a/pkgs/by-name/az/azure-cli/extensions-generated.json +++ b/pkgs/by-name/az/azure-cli/extensions-generated.json @@ -209,6 +209,13 @@ "hash": "sha256-nqYWLTf8M5C+Tc5kywXFxYgHAQTz6SpwGrR1RzVlqKk=", "description": "Translate ARM template to executable Azure CLI scripts" }, + "cloudhsm": { + "pname": "cloudhsm", + "version": "1.0.0b1", + "url": "https://azcliprod.blob.core.windows.net/cli-extensions/cloudhsm-1.0.0b1-py3-none-any.whl", + "hash": "sha256-GOcr3wcJ+FE/UUcvaoB90bWmdthmYZpDznaAtLr48LU=", + "description": "Microsoft Azure Command-Line Tools Cloudhsm Extension" + }, "computeschedule": { "pname": "computeschedule", "version": "1.0.0b1", From 51ce0d1f541c273681cd17988c2eb54f6f8f9e4f Mon Sep 17 00:00:00 2001 From: Paul Meyer Date: Tue, 1 Jul 2025 08:46:08 +0200 Subject: [PATCH 15/73] azure-cli-extensions.dependency-map: init at 1.0.0b1 --- pkgs/by-name/az/azure-cli/extensions-generated.json | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkgs/by-name/az/azure-cli/extensions-generated.json b/pkgs/by-name/az/azure-cli/extensions-generated.json index a5fbd8675982..771d4eabddf0 100644 --- a/pkgs/by-name/az/azure-cli/extensions-generated.json +++ b/pkgs/by-name/az/azure-cli/extensions-generated.json @@ -342,6 +342,13 @@ "hash": "sha256-8agBvQw46y6/nC+04LQ6mEcK57QLvNBesqpZbWlXnJ4=", "description": "Microsoft Azure Command-Line Tools DataShareManagementClient Extension" }, + "dependency-map": { + "pname": "dependency-map", + "version": "1.0.0b1", + "url": "https://azcliprod.blob.core.windows.net/cli-extensions/dependency_map-1.0.0b1-py3-none-any.whl", + "hash": "sha256-/iqgYB47nWSUwT5AJ+1CnlVDX5+fw1DRew53AHRdVng=", + "description": "Microsoft Azure Command-Line Tools DependencyMap Extension" + }, "deploy-to-azure": { "pname": "deploy-to-azure", "version": "0.2.0", From db5da0cd90090f37b8ea8cd308923b248140a0d0 Mon Sep 17 00:00:00 2001 From: Paul Meyer Date: Tue, 1 Jul 2025 08:46:10 +0200 Subject: [PATCH 16/73] azure-cli-extensions.workload-orchestration: init at 1.0.0 --- pkgs/by-name/az/azure-cli/extensions-generated.json | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkgs/by-name/az/azure-cli/extensions-generated.json b/pkgs/by-name/az/azure-cli/extensions-generated.json index 771d4eabddf0..a498c42b64d2 100644 --- a/pkgs/by-name/az/azure-cli/extensions-generated.json +++ b/pkgs/by-name/az/azure-cli/extensions-generated.json @@ -1133,6 +1133,13 @@ "hash": "sha256-kIsN8HzvZSF2oPK/D9z1i10W+0kD7jwG9z8Ls5E6XA8=", "description": "Additional commands for Azure AppService" }, + "workload-orchestration": { + "pname": "workload-orchestration", + "version": "1.0.0", + "url": "https://azcliprod.blob.core.windows.net/cli-extensions/workload_orchestration-1.0.0-py3-none-any.whl", + "hash": "sha256-5o0meWmZDeM45AGTTkD9weX1/tcdg7JJzW1XJRWVdkE=", + "description": "Microsoft Azure Command-Line Tools WorkloadOperations Extension" + }, "workloads": { "pname": "workloads", "version": "1.1.0", From 5bfe69c1222c41c187d04f1ac60253ac4188b910 Mon Sep 17 00:00:00 2001 From: Paul Meyer Date: Tue, 1 Jul 2025 08:46:12 +0200 Subject: [PATCH 17/73] azure-cli-extensions.neon: 1.0.0b3 -> 1.0.0b4 --- pkgs/by-name/az/azure-cli/extensions-generated.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/az/azure-cli/extensions-generated.json b/pkgs/by-name/az/azure-cli/extensions-generated.json index a498c42b64d2..d0ae6d0cae0e 100644 --- a/pkgs/by-name/az/azure-cli/extensions-generated.json +++ b/pkgs/by-name/az/azure-cli/extensions-generated.json @@ -757,9 +757,9 @@ }, "neon": { "pname": "neon", - "version": "1.0.0b3", - "url": "https://azcliprod.blob.core.windows.net/cli-extensions/neon-1.0.0b3-py3-none-any.whl", - "hash": "sha256-tvnHv5o0GxltVyZNQmraPsJBMXE+/XAIaJcMAVKTUBo=", + "version": "1.0.0b4", + "url": "https://azcliprod.blob.core.windows.net/cli-extensions/neon-1.0.0b4-py3-none-any.whl", + "hash": "sha256-iak+Dt5UD+YpVO1mQzatzIYybEyVIZaRabL0Jbgr17M=", "description": "Microsoft Azure Command-Line Tools Neon Extension" }, "network-analytics": { From 8af6ab6bd84014da53653f9e2a8eaf1332de03f4 Mon Sep 17 00:00:00 2001 From: Paul Meyer Date: Tue, 1 Jul 2025 08:46:14 +0200 Subject: [PATCH 18/73] azure-cli-extensions.providerhub: 1.0.0b1 -> 1.0.0b2 --- pkgs/by-name/az/azure-cli/extensions-generated.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/az/azure-cli/extensions-generated.json b/pkgs/by-name/az/azure-cli/extensions-generated.json index d0ae6d0cae0e..2f0e236b253a 100644 --- a/pkgs/by-name/az/azure-cli/extensions-generated.json +++ b/pkgs/by-name/az/azure-cli/extensions-generated.json @@ -869,9 +869,9 @@ }, "providerhub": { "pname": "providerhub", - "version": "1.0.0b1", - "url": "https://azcliprod.blob.core.windows.net/cli-extensions/providerhub-1.0.0b1-py3-none-any.whl", - "hash": "sha256-e5PLfssfo6UgkJ1F5uZZfIun2qxPvBomw95mBDZ43Q0=", + "version": "1.0.0b2", + "url": "https://azcliprod.blob.core.windows.net/cli-extensions/providerhub-1.0.0b2-py3-none-any.whl", + "hash": "sha256-mqrXcCKvAEqWOzQZrBDSM4IO81Jduen2+fx5fhqFmtY=", "description": "Microsoft Azure Command-Line Tools ProviderHub Extension" }, "purview": { From 6f787539f66b0418eaa01e7149c5ccb9d7682c3c Mon Sep 17 00:00:00 2001 From: Paul Meyer Date: Tue, 1 Jul 2025 08:46:16 +0200 Subject: [PATCH 19/73] azure-cli-extensions.elastic-san: 1.3.0 -> 1.3.1b1 --- pkgs/by-name/az/azure-cli/extensions-generated.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/az/azure-cli/extensions-generated.json b/pkgs/by-name/az/azure-cli/extensions-generated.json index 2f0e236b253a..5ce65229ea6f 100644 --- a/pkgs/by-name/az/azure-cli/extensions-generated.json +++ b/pkgs/by-name/az/azure-cli/extensions-generated.json @@ -442,9 +442,9 @@ }, "elastic-san": { "pname": "elastic-san", - "version": "1.3.0", - "url": "https://azcliprod.blob.core.windows.net/cli-extensions/elastic_san-1.3.0-py3-none-any.whl", - "hash": "sha256-Y1XlsJaX3nixL9AeENaVufA2rFwLTIwowGc7pt1OoOw=", + "version": "1.3.1b1", + "url": "https://azcliprod.blob.core.windows.net/cli-extensions/elastic_san-1.3.1b1-py3-none-any.whl", + "hash": "sha256-L0ps/X+laOJO2aj3kqE7PVntTPxuY30BYeCmN/VWC44=", "description": "Microsoft Azure Command-Line Tools ElasticSan Extension" }, "eventgrid": { From e122bb748f9bb6026c2e4941c258da287e7836d9 Mon Sep 17 00:00:00 2001 From: Paul Meyer Date: Tue, 1 Jul 2025 08:46:18 +0200 Subject: [PATCH 20/73] azure-cli-extensions.vme: 1.0.0b1 -> 1.0.0b4 --- pkgs/by-name/az/azure-cli/extensions-generated.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/az/azure-cli/extensions-generated.json b/pkgs/by-name/az/azure-cli/extensions-generated.json index 5ce65229ea6f..2cd0d22ec680 100644 --- a/pkgs/by-name/az/azure-cli/extensions-generated.json +++ b/pkgs/by-name/az/azure-cli/extensions-generated.json @@ -1114,9 +1114,9 @@ }, "vme": { "pname": "vme", - "version": "1.0.0b1", - "url": "https://azcliprod.blob.core.windows.net/cli-extensions/vme-1.0.0b1-py3-none-any.whl", - "hash": "sha256-cCAZh8ytxz5sEtyNuV/EqZ9KqOifBXr1W8PBJWctz/8=", + "version": "1.0.0b4", + "url": "https://azcliprod.blob.core.windows.net/cli-extensions/vme-1.0.0b4-py3-none-any.whl", + "hash": "sha256-TMOUIL/cntB9DcQubv7B1OMs+nSwv2RRcFD6KCRwFrk=", "description": "Microsoft Azure Command-Line Tools Vme Extension" }, "vmware": { From a1269705aad6086b6903d4b707bc8ed133d904f8 Mon Sep 17 00:00:00 2001 From: Paul Meyer Date: Tue, 1 Jul 2025 08:46:20 +0200 Subject: [PATCH 21/73] azure-cli-extensions.managednetworkfabric: 8.0.0b3 -> 8.0.0b5 --- pkgs/by-name/az/azure-cli/extensions-generated.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/az/azure-cli/extensions-generated.json b/pkgs/by-name/az/azure-cli/extensions-generated.json index 2cd0d22ec680..0ddfa7a97349 100644 --- a/pkgs/by-name/az/azure-cli/extensions-generated.json +++ b/pkgs/by-name/az/azure-cli/extensions-generated.json @@ -680,9 +680,9 @@ }, "managednetworkfabric": { "pname": "managednetworkfabric", - "version": "8.0.0b3", - "url": "https://azcliprod.blob.core.windows.net/cli-extensions/managednetworkfabric-8.0.0b3-py3-none-any.whl", - "hash": "sha256-RoqlmB/Bl7S81w3IDL1MTooGkiabI14TxYFHaQ9Qi9U=", + "version": "8.0.0b5", + "url": "https://azcliprod.blob.core.windows.net/cli-extensions/managednetworkfabric-8.0.0b5-py3-none-any.whl", + "hash": "sha256-+6ueiYJnSMnGbawqTGoKkbN9Fvl5NCJuz3RUXW6mGBk=", "description": "Support for managednetworkfabric commands based on 2024-06-15-preview API version" }, "managementpartner": { From 9c808c70777173c353df7b4d56d88a7862665343 Mon Sep 17 00:00:00 2001 From: Paul Meyer Date: Tue, 1 Jul 2025 08:46:22 +0200 Subject: [PATCH 22/73] azure-cli-extensions.footprint: 1.0.0 -> 1.0.0 --- pkgs/by-name/az/azure-cli/extensions-generated.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/by-name/az/azure-cli/extensions-generated.json b/pkgs/by-name/az/azure-cli/extensions-generated.json index 0ddfa7a97349..e79f97990b30 100644 --- a/pkgs/by-name/az/azure-cli/extensions-generated.json +++ b/pkgs/by-name/az/azure-cli/extensions-generated.json @@ -485,7 +485,7 @@ "footprint": { "pname": "footprint", "version": "1.0.0", - "url": "https://azurecliprod.blob.core.windows.net/cli-extensions/footprint-1.0.0-py3-none-any.whl", + "url": "https://azcliprod.blob.core.windows.net/cli-extensions/footprint-1.0.0-py3-none-any.whl", "hash": "sha256-SqWSiL9Gz9aFGfH39j0+M68W2AYyuEwoPMcVISkmCyw=", "description": "Microsoft Azure Command-Line Tools FootprintMonitoringManagementClient Extension" }, From 24678024df0e2ba0986a358d2cc0fd4ed595ee1f Mon Sep 17 00:00:00 2001 From: Paul Meyer Date: Tue, 1 Jul 2025 08:46:24 +0200 Subject: [PATCH 23/73] azure-cli-extensions.scvmm: 1.1.2 -> 1.2.0 --- pkgs/by-name/az/azure-cli/extensions-generated.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/az/azure-cli/extensions-generated.json b/pkgs/by-name/az/azure-cli/extensions-generated.json index e79f97990b30..af3f1f107671 100644 --- a/pkgs/by-name/az/azure-cli/extensions-generated.json +++ b/pkgs/by-name/az/azure-cli/extensions-generated.json @@ -953,9 +953,9 @@ }, "scvmm": { "pname": "scvmm", - "version": "1.1.2", - "url": "https://azcliprod.blob.core.windows.net/cli-extensions/scvmm-1.1.2-py2.py3-none-any.whl", - "hash": "sha256-sbLmbA/wV5dtSPGKQ5YPT/WAK1UC6ebS1aXY8bTotvI=", + "version": "1.2.0", + "url": "https://azcliprod.blob.core.windows.net/cli-extensions/scvmm-1.2.0-py2.py3-none-any.whl", + "hash": "sha256-Cq6dSNRIM/vWgwDCaxTRhosVR9dCD5URYQUI+eBpN0Y=", "description": "Microsoft Azure Command-Line Tools SCVMM Extension" }, "self-help": { From ad8479a97f1949e8592f123f7461f60d6d0535e5 Mon Sep 17 00:00:00 2001 From: Paul Meyer Date: Tue, 1 Jul 2025 08:46:26 +0200 Subject: [PATCH 24/73] azure-cli-extensions.zones: 1.0.0b3 -> 1.0.0b4 --- pkgs/by-name/az/azure-cli/extensions-generated.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/az/azure-cli/extensions-generated.json b/pkgs/by-name/az/azure-cli/extensions-generated.json index af3f1f107671..86e0ded60e2b 100644 --- a/pkgs/by-name/az/azure-cli/extensions-generated.json +++ b/pkgs/by-name/az/azure-cli/extensions-generated.json @@ -1149,9 +1149,9 @@ }, "zones": { "pname": "zones", - "version": "1.0.0b3", - "url": "https://azcliprod.blob.core.windows.net/cli-extensions/zones-1.0.0b3-py3-none-any.whl", - "hash": "sha256-O9gcKKvWDFmlnZabIioDGNIxqn8XDaE4xeOt3/q+7Rk=", + "version": "1.0.0b4", + "url": "https://azcliprod.blob.core.windows.net/cli-extensions/zones-1.0.0b4-py3-none-any.whl", + "hash": "sha256-isb/41prZrUTuM4GYR4tL6KyBlmArIyNM9y4eMk28OQ=", "description": "Microsoft Azure Command-Line Tools Zones Extension" } } From e4c26700425f30a1e5103b933ed64c17633b1eba Mon Sep 17 00:00:00 2001 From: Paul Meyer Date: Tue, 1 Jul 2025 08:46:28 +0200 Subject: [PATCH 25/73] azure-cli-extensions.aem: 0.3.0 -> 1.0.0 --- pkgs/by-name/az/azure-cli/extensions-generated.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/az/azure-cli/extensions-generated.json b/pkgs/by-name/az/azure-cli/extensions-generated.json index 86e0ded60e2b..62eb843a415b 100644 --- a/pkgs/by-name/az/azure-cli/extensions-generated.json +++ b/pkgs/by-name/az/azure-cli/extensions-generated.json @@ -36,9 +36,9 @@ }, "aem": { "pname": "aem", - "version": "0.3.0", - "url": "https://azcliprod.blob.core.windows.net/cli-extensions/aem-0.3.0-py2.py3-none-any.whl", - "hash": "sha256-Jar5AGqx0RXXxITP2hya0ONhevbSFA24dJmq6oG2f/g=", + "version": "1.0.0", + "url": "https://azcliprod.blob.core.windows.net/cli-extensions/aem-1.0.0-py2.py3-none-any.whl", + "hash": "sha256-3QYsiwJ7avGM4Fg8H88shs3JKBo2cOSh0F39bTN/8vA=", "description": "Manage Azure Enhanced Monitoring Extensions for SAP" }, "ai-examples": { From ee5bad4973707545a1fad124790ed686a1fcc699 Mon Sep 17 00:00:00 2001 From: Paul Meyer Date: Tue, 1 Jul 2025 08:46:30 +0200 Subject: [PATCH 26/73] azure-cli-extensions.amg: 2.6.0 -> 2.6.1 --- pkgs/by-name/az/azure-cli/extensions-generated.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/az/azure-cli/extensions-generated.json b/pkgs/by-name/az/azure-cli/extensions-generated.json index 62eb843a415b..410d224c9cce 100644 --- a/pkgs/by-name/az/azure-cli/extensions-generated.json +++ b/pkgs/by-name/az/azure-cli/extensions-generated.json @@ -78,9 +78,9 @@ }, "amg": { "pname": "amg", - "version": "2.6.0", - "url": "https://azcliprod.blob.core.windows.net/cli-extensions/amg-2.6.0-py3-none-any.whl", - "hash": "sha256-I8WRrhs2VdqwpIuT5fqPeITwvfy14X3hWZLFN5IEz80=", + "version": "2.6.1", + "url": "https://azcliprod.blob.core.windows.net/cli-extensions/amg-2.6.1-py3-none-any.whl", + "hash": "sha256-ERGri8mXJtLy/acz8R2UqdmILr7JT4bTQaU6GtxhKjs=", "description": "Microsoft Azure Command-Line Tools Azure Managed Grafana Extension" }, "amlfs": { From 665d550027ad1fe6dd069afd86e2109a0986d1eb Mon Sep 17 00:00:00 2001 From: Paul Meyer Date: Tue, 1 Jul 2025 08:46:32 +0200 Subject: [PATCH 27/73] azure-cli-extensions.notification-hub: 1.0.0a1 -> 2.0.0b1 --- pkgs/by-name/az/azure-cli/extensions-generated.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/az/azure-cli/extensions-generated.json b/pkgs/by-name/az/azure-cli/extensions-generated.json index 410d224c9cce..5173131cc264 100644 --- a/pkgs/by-name/az/azure-cli/extensions-generated.json +++ b/pkgs/by-name/az/azure-cli/extensions-generated.json @@ -799,9 +799,9 @@ }, "notification-hub": { "pname": "notification-hub", - "version": "1.0.0a1", - "url": "https://azcliprod.blob.core.windows.net/cli-extensions/notification_hub-1.0.0a1-py3-none-any.whl", - "hash": "sha256-oDdRtxVwDg0Yo46Ai/7tFkM1AkyWCMS/1TrqzHMdEJk=", + "version": "2.0.0b1", + "url": "https://azcliprod.blob.core.windows.net/cli-extensions/notification_hub-2.0.0b1-py3-none-any.whl", + "hash": "sha256-vjdwj26RG1HlatFfN/Jqh5BObSJQ1WmM8DWL5kbD3uo=", "description": "Microsoft Azure Command-Line Tools Notification Hub Extension" }, "nsp": { From b2157248e27544978d6c5641e5483f93f5ae7fc2 Mon Sep 17 00:00:00 2001 From: Paul Meyer Date: Tue, 1 Jul 2025 08:46:34 +0200 Subject: [PATCH 28/73] azure-cli-extensions.azure-firewall: 1.2.3 -> 1.3.0 --- pkgs/by-name/az/azure-cli/extensions-generated.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/az/azure-cli/extensions-generated.json b/pkgs/by-name/az/azure-cli/extensions-generated.json index 5173131cc264..698a492f2943 100644 --- a/pkgs/by-name/az/azure-cli/extensions-generated.json +++ b/pkgs/by-name/az/azure-cli/extensions-generated.json @@ -141,9 +141,9 @@ }, "azure-firewall": { "pname": "azure-firewall", - "version": "1.2.3", - "url": "https://azcliprod.blob.core.windows.net/cli-extensions/azure_firewall-1.2.3-py2.py3-none-any.whl", - "hash": "sha256-bSUGhZI7L+XUsubSKhFwzw//uIXuA7qSLuEkyottgb4=", + "version": "1.3.0", + "url": "https://azcliprod.blob.core.windows.net/cli-extensions/azure_firewall-1.3.0-py2.py3-none-any.whl", + "hash": "sha256-AkelAJEIignnFomg7HJTrjl8UA1oeQZQTWjRqibUdDE=", "description": "Manage Azure Firewall resources" }, "azurelargeinstance": { From f8c663bfa1aba5f7d117f41cffa3f05e574836ee Mon Sep 17 00:00:00 2001 From: Paul Meyer Date: Tue, 1 Jul 2025 08:46:36 +0200 Subject: [PATCH 29/73] azure-cli-extensions.appservice-kube: 0.1.10 -> 0.1.11 --- pkgs/by-name/az/azure-cli/extensions-generated.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/az/azure-cli/extensions-generated.json b/pkgs/by-name/az/azure-cli/extensions-generated.json index 698a492f2943..564e64b2bf43 100644 --- a/pkgs/by-name/az/azure-cli/extensions-generated.json +++ b/pkgs/by-name/az/azure-cli/extensions-generated.json @@ -99,9 +99,9 @@ }, "appservice-kube": { "pname": "appservice-kube", - "version": "0.1.10", - "url": "https://azcliprod.blob.core.windows.net/cli-extensions/appservice_kube-0.1.10-py2.py3-none-any.whl", - "hash": "sha256-f9ctJ+Sw7O2jsrTzAcegwwaP6ouW1w+fyq0UIkDefQ0=", + "version": "0.1.11", + "url": "https://azcliprod.blob.core.windows.net/cli-extensions/appservice_kube-0.1.11-py2.py3-none-any.whl", + "hash": "sha256-gTI/rjFHJ8mx1QfWeWgJStemOubwqEPqKuS3jCPnuKI=", "description": "Microsoft Azure Command-Line Tools App Service on Kubernetes Extension" }, "arcgateway": { From cb354bb7a76d3c31c09f25bf0ecac3002068763d Mon Sep 17 00:00:00 2001 From: Paul Meyer Date: Tue, 1 Jul 2025 08:46:38 +0200 Subject: [PATCH 30/73] azure-cli-extensions.mcc: 1.0.0b2 -> 1.0.0b3 --- pkgs/by-name/az/azure-cli/extensions-generated.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/az/azure-cli/extensions-generated.json b/pkgs/by-name/az/azure-cli/extensions-generated.json index 564e64b2bf43..e368b5dd779e 100644 --- a/pkgs/by-name/az/azure-cli/extensions-generated.json +++ b/pkgs/by-name/az/azure-cli/extensions-generated.json @@ -694,9 +694,9 @@ }, "mcc": { "pname": "mcc", - "version": "1.0.0b2", - "url": "https://azcliprod.blob.core.windows.net/cli-extensions/mcc-1.0.0b2-py3-none-any.whl", - "hash": "sha256-z8u9+D5A5bq8WAUqeZx1H1Y+2ukQQXnAyefW51OvEU0=", + "version": "1.0.0b3", + "url": "https://azcliprod.blob.core.windows.net/cli-extensions/mcc-1.0.0b3-py3-none-any.whl", + "hash": "sha256-dY4oEzEbtxRSrnuDPYD2Jh2Rf5A+txfLFhy1wGevFSU=", "description": "Microsoft Connected Cache CLI Commands" }, "mdp": { From 7722b16f7803ade532fda6a05818b300d9a7e8ba Mon Sep 17 00:00:00 2001 From: Paul Meyer Date: Tue, 1 Jul 2025 08:46:40 +0200 Subject: [PATCH 31/73] azure-cli-extensions.bastion: 1.4.0 -> 1.4.1 --- pkgs/by-name/az/azure-cli/extensions-generated.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/az/azure-cli/extensions-generated.json b/pkgs/by-name/az/azure-cli/extensions-generated.json index e368b5dd779e..5f835365e6f8 100644 --- a/pkgs/by-name/az/azure-cli/extensions-generated.json +++ b/pkgs/by-name/az/azure-cli/extensions-generated.json @@ -169,9 +169,9 @@ }, "bastion": { "pname": "bastion", - "version": "1.4.0", - "url": "https://azcliprod.blob.core.windows.net/cli-extensions/bastion-1.4.0-py3-none-any.whl", - "hash": "sha256-G3kYIjI8MiRLO9ug2F6DjzL/V+I13xhIDTDhuq0t3jQ=", + "version": "1.4.1", + "url": "https://azcliprod.blob.core.windows.net/cli-extensions/bastion-1.4.1-py3-none-any.whl", + "hash": "sha256-Zx50jU9Vmt8vNe/50g8jWaxjeuXlHlMYVNG/v8exRmU=", "description": "Microsoft Azure Command-Line Tools Bastion Extension" }, "billing-benefits": { From 7220aeed34410ca2244359b00a453d40c47cced4 Mon Sep 17 00:00:00 2001 From: Paul Meyer Date: Tue, 1 Jul 2025 08:46:42 +0200 Subject: [PATCH 32/73] azure-cli-extensions.cli-translator: 0.3.0 -> 0.3.0 --- pkgs/by-name/az/azure-cli/extensions-generated.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/by-name/az/azure-cli/extensions-generated.json b/pkgs/by-name/az/azure-cli/extensions-generated.json index 5f835365e6f8..4d162b590514 100644 --- a/pkgs/by-name/az/azure-cli/extensions-generated.json +++ b/pkgs/by-name/az/azure-cli/extensions-generated.json @@ -205,7 +205,7 @@ "cli-translator": { "pname": "cli-translator", "version": "0.3.0", - "url": "https://azurecliprod.blob.core.windows.net/cli-extensions/cli_translator-0.3.0-py3-none-any.whl", + "url": "https://azcliprod.blob.core.windows.net/cli-extensions/cli_translator-0.3.0-py3-none-any.whl", "hash": "sha256-nqYWLTf8M5C+Tc5kywXFxYgHAQTz6SpwGrR1RzVlqKk=", "description": "Translate ARM template to executable Azure CLI scripts" }, From e7ffae68f7321d1b5c249b053113af4198f80063 Mon Sep 17 00:00:00 2001 From: Paul Meyer Date: Tue, 1 Jul 2025 08:46:44 +0200 Subject: [PATCH 33/73] azure-cli-extensions.amlfs: 1.0.0 -> 1.1.0 --- pkgs/by-name/az/azure-cli/extensions-generated.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/az/azure-cli/extensions-generated.json b/pkgs/by-name/az/azure-cli/extensions-generated.json index 4d162b590514..5aa580e88fc5 100644 --- a/pkgs/by-name/az/azure-cli/extensions-generated.json +++ b/pkgs/by-name/az/azure-cli/extensions-generated.json @@ -85,9 +85,9 @@ }, "amlfs": { "pname": "amlfs", - "version": "1.0.0", - "url": "https://azcliprod.blob.core.windows.net/cli-extensions/amlfs-1.0.0-py3-none-any.whl", - "hash": "sha256-IbWhKUPnJzFSiKoMocSaJYA6ZWt/OIw8Y3WWz99nvR0=", + "version": "1.1.0", + "url": "https://azcliprod.blob.core.windows.net/cli-extensions/amlfs-1.1.0-py3-none-any.whl", + "hash": "sha256-RbZNYIHcVsgziXGOHHcawoJSpEzphcv1loHY9dBpPvA=", "description": "Microsoft Azure Command-Line Tools Amlfs Extension" }, "apic-extension": { From 9634fcd875901667ef19d097cc56d971f7377953 Mon Sep 17 00:00:00 2001 From: Paul Meyer Date: Tue, 1 Jul 2025 08:46:46 +0200 Subject: [PATCH 34/73] azure-cli-extensions.storage-actions: 1.0.0b1 -> 1.0.0 --- pkgs/by-name/az/azure-cli/extensions-generated.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/az/azure-cli/extensions-generated.json b/pkgs/by-name/az/azure-cli/extensions-generated.json index 5aa580e88fc5..99c7a92d6520 100644 --- a/pkgs/by-name/az/azure-cli/extensions-generated.json +++ b/pkgs/by-name/az/azure-cli/extensions-generated.json @@ -1016,9 +1016,9 @@ }, "storage-actions": { "pname": "storage-actions", - "version": "1.0.0b1", - "url": "https://azcliprod.blob.core.windows.net/cli-extensions/storage_actions-1.0.0b1-py3-none-any.whl", - "hash": "sha256-B8W+JW7bviyB2DnkxtPZF6Vrk5IVFQKM+WI5PhF2Mxs=", + "version": "1.0.0", + "url": "https://azcliprod.blob.core.windows.net/cli-extensions/storage_actions-1.0.0-py3-none-any.whl", + "hash": "sha256-OzMuN2blvmoj9GuzU1X3O2PJ0Yr8rsnFXYzypAJlF58=", "description": "Microsoft Azure Command-Line Tools StorageActions Extension" }, "storage-blob-preview": { From 99a6cbdf67f0ddd9a0416c06224d451a152ea899 Mon Sep 17 00:00:00 2001 From: Paul Meyer Date: Tue, 1 Jul 2025 08:46:48 +0200 Subject: [PATCH 35/73] azure-cli-extensions.apic-extension: 1.2.0b1 -> 1.2.0b2 --- pkgs/by-name/az/azure-cli/extensions-generated.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/az/azure-cli/extensions-generated.json b/pkgs/by-name/az/azure-cli/extensions-generated.json index 99c7a92d6520..d5085d8ec16f 100644 --- a/pkgs/by-name/az/azure-cli/extensions-generated.json +++ b/pkgs/by-name/az/azure-cli/extensions-generated.json @@ -92,9 +92,9 @@ }, "apic-extension": { "pname": "apic-extension", - "version": "1.2.0b1", - "url": "https://azcliprod.blob.core.windows.net/cli-extensions/apic_extension-1.2.0b1-py3-none-any.whl", - "hash": "sha256-v8y6Jgg9dYCO/GuLEl44il77WC9nuKT9cRnMI43wZaM=", + "version": "1.2.0b2", + "url": "https://azcliprod.blob.core.windows.net/cli-extensions/apic_extension-1.2.0b2-py3-none-any.whl", + "hash": "sha256-QtaiixX5daX3pOpi7jnJFH2cXe+J0+J/q9PJVZqkE28=", "description": "Microsoft Azure Command-Line Tools ApicExtension Extension" }, "appservice-kube": { From 70c79a3c9ae6d0929e158aa401ca67751f490672 Mon Sep 17 00:00:00 2001 From: Paul Meyer Date: Tue, 1 Jul 2025 08:46:50 +0200 Subject: [PATCH 36/73] azure-cli-extensions.vmware: 7.2.0 -> 8.0.0 --- pkgs/by-name/az/azure-cli/extensions-generated.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/az/azure-cli/extensions-generated.json b/pkgs/by-name/az/azure-cli/extensions-generated.json index d5085d8ec16f..81d62edefac6 100644 --- a/pkgs/by-name/az/azure-cli/extensions-generated.json +++ b/pkgs/by-name/az/azure-cli/extensions-generated.json @@ -1121,9 +1121,9 @@ }, "vmware": { "pname": "vmware", - "version": "7.2.0", - "url": "https://azcliprod.blob.core.windows.net/cli-extensions/vmware-7.2.0-py2.py3-none-any.whl", - "hash": "sha256-4Pkx39w6vQ+sdw7P0DqUY/zM8v37nwmU2XqPqRLFdrI=", + "version": "8.0.0", + "url": "https://azcliprod.blob.core.windows.net/cli-extensions/vmware-8.0.0-py2.py3-none-any.whl", + "hash": "sha256-Y+3qoZWD1Jx+BrRsHoTZp2lwuFp/NI/l7EYTP8bebuw=", "description": "Azure VMware Solution commands" }, "webapp": { From b3f65e16df5e80c7b14d1f46bc4343aaa653ad97 Mon Sep 17 00:00:00 2001 From: Paul Meyer Date: Tue, 1 Jul 2025 08:46:52 +0200 Subject: [PATCH 37/73] azure-cli-extensions.aks-preview: 18.0.0b7 -> 18.0.0b15 --- pkgs/by-name/az/azure-cli/extensions-generated.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/az/azure-cli/extensions-generated.json b/pkgs/by-name/az/azure-cli/extensions-generated.json index 81d62edefac6..0d2c1457ba7f 100644 --- a/pkgs/by-name/az/azure-cli/extensions-generated.json +++ b/pkgs/by-name/az/azure-cli/extensions-generated.json @@ -50,9 +50,9 @@ }, "aks-preview": { "pname": "aks-preview", - "version": "18.0.0b7", - "url": "https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-18.0.0b7-py2.py3-none-any.whl", - "hash": "sha256-5xRE/WGe/PbTavC/b9MrrXMwXVsBoEEog44A8YJu9cY=", + "version": "18.0.0b15", + "url": "https://azcliprod.blob.core.windows.net/cli-extensions/aks_preview-18.0.0b15-py2.py3-none-any.whl", + "hash": "sha256-YjRPELWfLshLQHgZTa7jXS96nyYiZ7h2Gu25/wKvw7c=", "description": "Provides a preview for upcoming AKS features" }, "akshybrid": { From 161dc9609425e4a2b1ffbbc337a38119602138fd Mon Sep 17 00:00:00 2001 From: Paul Meyer Date: Tue, 1 Jul 2025 08:46:54 +0200 Subject: [PATCH 38/73] azure-cli-extensions.dev-spaces: 1.0.6 -> 1.0.6 --- pkgs/by-name/az/azure-cli/extensions-generated.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/by-name/az/azure-cli/extensions-generated.json b/pkgs/by-name/az/azure-cli/extensions-generated.json index 0d2c1457ba7f..97d10a0eef3c 100644 --- a/pkgs/by-name/az/azure-cli/extensions-generated.json +++ b/pkgs/by-name/az/azure-cli/extensions-generated.json @@ -366,7 +366,7 @@ "dev-spaces": { "pname": "dev-spaces", "version": "1.0.6", - "url": "https://azurecliprod.blob.core.windows.net/cli-extensions/dev_spaces-1.0.6-py2.py3-none-any.whl", + "url": "https://azcliprod.blob.core.windows.net/cli-extensions/dev_spaces-1.0.6-py2.py3-none-any.whl", "hash": "sha256-cQQYCLJ82dM/2QXFCAyX9hKRgW8t3dbc2y5muftuv1k=", "description": "Dev Spaces provides a rapid, iterative Kubernetes development experience for teams" }, From fa4d2f6476d6cdfa541cb43aa4f06858ea7487da Mon Sep 17 00:00:00 2001 From: Paul Meyer Date: Tue, 1 Jul 2025 08:46:56 +0200 Subject: [PATCH 39/73] azure-cli-extensions.qumulo: 2.0.0 -> 2.0.1 --- pkgs/by-name/az/azure-cli/extensions-generated.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/az/azure-cli/extensions-generated.json b/pkgs/by-name/az/azure-cli/extensions-generated.json index 97d10a0eef3c..eda2cf2c1a63 100644 --- a/pkgs/by-name/az/azure-cli/extensions-generated.json +++ b/pkgs/by-name/az/azure-cli/extensions-generated.json @@ -890,9 +890,9 @@ }, "qumulo": { "pname": "qumulo", - "version": "2.0.0", - "url": "https://azcliprod.blob.core.windows.net/cli-extensions/qumulo-2.0.0-py3-none-any.whl", - "hash": "sha256-fsUZyd0s+Rv1Sy6Lm2iq2xNMsrv+xU6KLLCOo6DkfmI=", + "version": "2.0.1", + "url": "https://azcliprod.blob.core.windows.net/cli-extensions/qumulo-2.0.1-py3-none-any.whl", + "hash": "sha256-HlMtkVEYvu86KqPPVBG/3i0zPg0S1P4qBedSnJwjIgg=", "description": "Microsoft Azure Command-Line Tools Qumulo Extension" }, "quota": { From 6c3c58f1bf0a4874f7e0eb09f866451f5e079c71 Mon Sep 17 00:00:00 2001 From: Paul Meyer Date: Tue, 1 Jul 2025 08:46:58 +0200 Subject: [PATCH 40/73] azure-cli-extensions.ai-examples: 0.2.5 -> 0.2.5 --- pkgs/by-name/az/azure-cli/extensions-generated.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/by-name/az/azure-cli/extensions-generated.json b/pkgs/by-name/az/azure-cli/extensions-generated.json index eda2cf2c1a63..3c4217df0a5e 100644 --- a/pkgs/by-name/az/azure-cli/extensions-generated.json +++ b/pkgs/by-name/az/azure-cli/extensions-generated.json @@ -44,7 +44,7 @@ "ai-examples": { "pname": "ai-examples", "version": "0.2.5", - "url": "https://azurecliprod.blob.core.windows.net/cli-extensions/ai_examples-0.2.5-py2.py3-none-any.whl", + "url": "https://azcliprod.blob.core.windows.net/cli-extensions/ai_examples-0.2.5-py2.py3-none-any.whl", "hash": "sha256-utvfX8LgtKhcQSTT/JKFm1gq348w9XJ0QM6BlCFACZo=", "description": "Add AI powered examples to help content" }, From 0cb7a2861816c98609ab9b4aa968cf7669c3f090 Mon Sep 17 00:00:00 2001 From: Paul Meyer Date: Tue, 1 Jul 2025 08:46:59 +0200 Subject: [PATCH 41/73] azure-cli-extensions.dns-resolver: 1.0.0 -> 1.1.0 --- pkgs/by-name/az/azure-cli/extensions-generated.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/az/azure-cli/extensions-generated.json b/pkgs/by-name/az/azure-cli/extensions-generated.json index 3c4217df0a5e..86fd1f04dbac 100644 --- a/pkgs/by-name/az/azure-cli/extensions-generated.json +++ b/pkgs/by-name/az/azure-cli/extensions-generated.json @@ -400,9 +400,9 @@ }, "dns-resolver": { "pname": "dns-resolver", - "version": "1.0.0", - "url": "https://azcliprod.blob.core.windows.net/cli-extensions/dns_resolver-1.0.0-py3-none-any.whl", - "hash": "sha256-DdTqcuNTVT8gVFyv8lePy3YqniY3pFamM1ERCOLsAOM=", + "version": "1.1.0", + "url": "https://azcliprod.blob.core.windows.net/cli-extensions/dns_resolver-1.1.0-py3-none-any.whl", + "hash": "sha256-xRmWnmsEcHW/TXuR2RsWCz7W3JDLrqPCxx19H8rZ2JE=", "description": "Microsoft Azure Command-Line Tools DnsResolverManagementClient Extension" }, "durabletask": { From 5ca13e2fb73a197dbca406d196dd4408b1ce1b09 Mon Sep 17 00:00:00 2001 From: Paul Meyer Date: Tue, 1 Jul 2025 08:47:01 +0200 Subject: [PATCH 42/73] azure-cli-extensions.confluent: 0.6.0 -> 1.0.0 --- pkgs/by-name/az/azure-cli/extensions-generated.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/az/azure-cli/extensions-generated.json b/pkgs/by-name/az/azure-cli/extensions-generated.json index 86fd1f04dbac..ad81ecd667a1 100644 --- a/pkgs/by-name/az/azure-cli/extensions-generated.json +++ b/pkgs/by-name/az/azure-cli/extensions-generated.json @@ -232,9 +232,9 @@ }, "confluent": { "pname": "confluent", - "version": "0.6.0", - "url": "https://azcliprod.blob.core.windows.net/cli-extensions/confluent-0.6.0-py3-none-any.whl", - "hash": "sha256-eYfSLg6craKAh6kAv6U0hlUxlB8rv+ln60bJCy4KEr4=", + "version": "1.0.0", + "url": "https://azcliprod.blob.core.windows.net/cli-extensions/confluent-1.0.0-py3-none-any.whl", + "hash": "sha256-CmHPSaZdVmhow/CwCb45gua03Dw2m+nP1Cu35agO7xk=", "description": "Microsoft Azure Command-Line Tools ConfluentManagementClient Extension" }, "connectedmachine": { From 12d718987dedca036da1fc944df755da302fface Mon Sep 17 00:00:00 2001 From: Paul Meyer Date: Tue, 1 Jul 2025 08:47:03 +0200 Subject: [PATCH 43/73] azure-cli-extensions.azurestackhci: remove --- pkgs/by-name/az/azure-cli/extensions-generated.json | 7 ------- pkgs/by-name/az/azure-cli/extensions-manual.nix | 1 + 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/pkgs/by-name/az/azure-cli/extensions-generated.json b/pkgs/by-name/az/azure-cli/extensions-generated.json index ad81ecd667a1..8b9c699cf8cc 100644 --- a/pkgs/by-name/az/azure-cli/extensions-generated.json +++ b/pkgs/by-name/az/azure-cli/extensions-generated.json @@ -153,13 +153,6 @@ "hash": "sha256-b+5Hi9kZkioFMlc/3qO1Qikl03S6ZknqAV1NM5QegZo=", "description": "Microsoft Azure Command-Line Tools Azurelargeinstance Extension" }, - "azurestackhci": { - "pname": "azurestackhci", - "version": "0.2.9", - "url": "https://hybridaksstorage.z13.web.core.windows.net/SelfServiceVM/CLI/azurestackhci-0.2.9-py3-none-any.whl", - "hash": "sha256-JVey/j+i+VGieUupZ1VbpUwuk+t1U4FS8hqy+1aP7xY=", - "description": "Microsoft Azure Command-Line Tools AzureStackHCI Extension" - }, "baremetal-infrastructure": { "pname": "baremetal-infrastructure", "version": "3.0.0b2", diff --git a/pkgs/by-name/az/azure-cli/extensions-manual.nix b/pkgs/by-name/az/azure-cli/extensions-manual.nix index 72a45c909cfd..3c9e21c208fb 100644 --- a/pkgs/by-name/az/azure-cli/extensions-manual.nix +++ b/pkgs/by-name/az/azure-cli/extensions-manual.nix @@ -151,6 +151,7 @@ // lib.optionalAttrs config.allowAliases { # Removed extensions adp = throw "The 'adp' extension for azure-cli was deprecated upstream"; # Added 2024-11-02, https://github.com/Azure/azure-cli-extensions/pull/8038 + azurestackhci = throw "The 'azurestackhci' extension for azure-cli was deprecated upstream"; # Added 2025-07-01, https://github.com/Azure/azure-cli-extensions/pull/8898 blockchain = throw "The 'blockchain' extension for azure-cli was deprecated upstream"; # Added 2024-04-26, https://github.com/Azure/azure-cli-extensions/pull/7370 compute-diagnostic-rp = throw "The 'compute-diagnostic-rp' extension for azure-cli was deprecated upstream"; # Added 2024-11-12, https://github.com/Azure/azure-cli-extensions/pull/8240 connection-monitor-preview = throw "The 'connection-monitor-preview' extension for azure-cli was deprecated upstream"; # Added 2024-11-02, https://github.com/Azure/azure-cli-extensions/pull/8194 From 1d9a9f621119831c6dcf0a66229242e181098be0 Mon Sep 17 00:00:00 2001 From: Paul Meyer Date: Tue, 1 Jul 2025 08:47:05 +0200 Subject: [PATCH 44/73] azure-cli-extensions.spring-cloud: remove --- pkgs/by-name/az/azure-cli/extensions-generated.json | 7 ------- pkgs/by-name/az/azure-cli/extensions-manual.nix | 1 + 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/pkgs/by-name/az/azure-cli/extensions-generated.json b/pkgs/by-name/az/azure-cli/extensions-generated.json index 8b9c699cf8cc..d3a7facc8983 100644 --- a/pkgs/by-name/az/azure-cli/extensions-generated.json +++ b/pkgs/by-name/az/azure-cli/extensions-generated.json @@ -972,13 +972,6 @@ "hash": "sha256-qxkULJouBhkLbawnLYzynhecnig/ll+OOk0pJ1uEfOU=", "description": "Microsoft Azure Command-Line Tools SiteRecovery Extension" }, - "spring-cloud": { - "pname": "spring-cloud", - "version": "3.1.9", - "url": "https://azcliprod.blob.core.windows.net/cli-extensions/spring_cloud-3.1.9-py3-none-any.whl", - "hash": "sha256-ySMrn4B/ff7cLESAZJUFrR5AajwTbAYeC0hd3ypJivU=", - "description": "Microsoft Azure Command-Line Tools spring-cloud Extension" - }, "stack-hci": { "pname": "stack-hci", "version": "1.1.0", diff --git a/pkgs/by-name/az/azure-cli/extensions-manual.nix b/pkgs/by-name/az/azure-cli/extensions-manual.nix index 3c9e21c208fb..c0ecf157bef9 100644 --- a/pkgs/by-name/az/azure-cli/extensions-manual.nix +++ b/pkgs/by-name/az/azure-cli/extensions-manual.nix @@ -159,5 +159,6 @@ logz = throw "The 'logz' extension for azure-cli was deprecated upstream"; # Added 2024-11-02, https://github.com/Azure/azure-cli-extensions/pull/8459 pinecone = throw "The 'pinecone' extension for azure-cli was removed upstream"; # Added 2025-06-03, https://github.com/Azure/azure-cli-extensions/pull/8763 spring = throw "The 'spring' extension for azure-cli was deprecated upstream"; # Added 2025-05-07, https://github.com/Azure/azure-cli-extensions/pull/8652 + spring-cloud = throw "The 'spring-cloud' extension for azure-cli was deprecated upstream"; # Added 2025-07-01 https://github.com/Azure/azure-cli-extensions/pull/8897 weights-and-biases = throw "The 'weights-and-biases' was removed upstream"; # Added 2025-06-03, https://github.com/Azure/azure-cli-extensions/pull/8764 } From f1ab3c351e09fbc2d737719a165d6f0d991ae4f5 Mon Sep 17 00:00:00 2001 From: Paul Meyer Date: Tue, 1 Jul 2025 08:47:07 +0200 Subject: [PATCH 45/73] azure-cli-extensions.sap-hana: remove --- pkgs/by-name/az/azure-cli/extensions-generated.json | 7 ------- pkgs/by-name/az/azure-cli/extensions-manual.nix | 1 + 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/pkgs/by-name/az/azure-cli/extensions-generated.json b/pkgs/by-name/az/azure-cli/extensions-generated.json index d3a7facc8983..4d0a3bd11a51 100644 --- a/pkgs/by-name/az/azure-cli/extensions-generated.json +++ b/pkgs/by-name/az/azure-cli/extensions-generated.json @@ -923,13 +923,6 @@ "hash": "sha256-p+Ug4CXDyrokp4JTY3cEjxdJqZzrVPAJ8zOS/JZDVw8=", "description": "Microsoft Azure Command-Line Tools ResourceMoverServiceAPI Extension" }, - "sap-hana": { - "pname": "sap-hana", - "version": "0.6.5", - "url": "https://github.com/Azure/azure-hanaonazure-cli-extension/releases/download/0.6.5/sap_hana-0.6.5-py2.py3-none-any.whl", - "hash": "sha256-tFVMEl86DrXIkc7DludwX26R1NgXiazvIOPE0XL6RUM=", - "description": "Additional commands for working with SAP HanaOnAzure instances" - }, "scenario-guide": { "pname": "scenario-guide", "version": "0.1.1", diff --git a/pkgs/by-name/az/azure-cli/extensions-manual.nix b/pkgs/by-name/az/azure-cli/extensions-manual.nix index c0ecf157bef9..3f2e31ef458e 100644 --- a/pkgs/by-name/az/azure-cli/extensions-manual.nix +++ b/pkgs/by-name/az/azure-cli/extensions-manual.nix @@ -158,6 +158,7 @@ deidservice = throw "The 'deidservice' extension for azure-cli was moved under healthcareapis"; # Added 2024-11-19, https://github.com/Azure/azure-cli-extensions/pull/8224 logz = throw "The 'logz' extension for azure-cli was deprecated upstream"; # Added 2024-11-02, https://github.com/Azure/azure-cli-extensions/pull/8459 pinecone = throw "The 'pinecone' extension for azure-cli was removed upstream"; # Added 2025-06-03, https://github.com/Azure/azure-cli-extensions/pull/8763 + sap-hana = throw "The 'sap-hana' extension for azure-cli was deprecated upstream"; # Added 2025-07-01, https://github.com/Azure/azure-cli-extensions/pull/8904 spring = throw "The 'spring' extension for azure-cli was deprecated upstream"; # Added 2025-05-07, https://github.com/Azure/azure-cli-extensions/pull/8652 spring-cloud = throw "The 'spring-cloud' extension for azure-cli was deprecated upstream"; # Added 2025-07-01 https://github.com/Azure/azure-cli-extensions/pull/8897 weights-and-biases = throw "The 'weights-and-biases' was removed upstream"; # Added 2025-06-03, https://github.com/Azure/azure-cli-extensions/pull/8764 From 3a661a77f76e64276f9da1c55785ed4af1392fb1 Mon Sep 17 00:00:00 2001 From: Matt Sturgeon Date: Tue, 1 Jul 2025 11:23:34 +0100 Subject: [PATCH 46/73] nexusmods-app: run tests in a passthru Avoid running `dotnet test` in the main package: - The test-suite is slow - Some tests fail intermittently - The package is often uncached; especially the unfree variant Instead, we can enable tests in a `passthru.tests` override. --- pkgs/by-name/ne/nexusmods-app/package.nix | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/pkgs/by-name/ne/nexusmods-app/package.nix b/pkgs/by-name/ne/nexusmods-app/package.nix index 35a6aa834ef2..70b90ec17b02 100644 --- a/pkgs/by-name/ne/nexusmods-app/package.nix +++ b/pkgs/by-name/ne/nexusmods-app/package.nix @@ -118,7 +118,12 @@ buildDotnetModule (finalAttrs: { "--property:DefineConstants=${lib.strings.concatStringsSep "%3B" constants}" ]; - doCheck = true; + # Avoid running `dotnet test` in the main package: + # - The test-suite is slow + # - Some tests fail intermittently + # - The package is often uncached; especially the unfree variant + # - We can enable tests in a `passthru.tests` override + doCheck = false; dotnetTestFlags = [ "--environment=USER=nobody" @@ -174,6 +179,14 @@ buildDotnetModule (finalAttrs: { runHook postInstallCheck ''; + passthru.tests = { + # Build the package and run `dotnet test` + app = finalAttrs.finalPackage.overrideAttrs { + pname = "${finalAttrs.pname}-tested"; + doCheck = true; + }; + }; + passthru.updateScript = nix-update-script { }; meta = { From 0fb5107f01a96b9b92b05d511db27876aff27df0 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 1 Jul 2025 12:47:52 +0000 Subject: [PATCH 47/73] tbls: 1.85.5 -> 1.86.0 --- pkgs/by-name/tb/tbls/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/tb/tbls/package.nix b/pkgs/by-name/tb/tbls/package.nix index b3c112af925b..5d556bdafb78 100644 --- a/pkgs/by-name/tb/tbls/package.nix +++ b/pkgs/by-name/tb/tbls/package.nix @@ -10,13 +10,13 @@ buildGoModule rec { pname = "tbls"; - version = "1.85.5"; + version = "1.86.0"; src = fetchFromGitHub { owner = "k1LoW"; repo = "tbls"; tag = "v${version}"; - hash = "sha256-djIGgZ5qehrkQZlxe2+3XzRb5FfewZVcquYiitGfFdo="; + hash = "sha256-vV7eAjPrPlNNw+rLyrMe9G1KzVvtyFIOSrb+BrK3l00="; }; vendorHash = "sha256-9IvnIFOlLdqmntisNomO5K6PU8gw7CSuEb46zG5ox2A="; From 92d288c8648a84c8ad7088103cdc26a8aece93de Mon Sep 17 00:00:00 2001 From: Robert Hensing Date: Wed, 2 Jul 2025 14:33:32 +0200 Subject: [PATCH 48/73] nixVersions.git.tests.srcVersion: fix The version is not an exact match, and that's expected, because we can't really update .version for each commit on master. --- pkgs/tools/package-management/nix/tests.nix | 25 +++++++++++++++++---- 1 file changed, 21 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/package-management/nix/tests.nix b/pkgs/tools/package-management/nix/tests.nix index 662cfe7d194c..c9c7ddf2f0c0 100644 --- a/pkgs/tools/package-management/nix/tests.nix +++ b/pkgs/tools/package-management/nix/tests.nix @@ -23,10 +23,27 @@ srcVersion=$(cat ${src}/.version) echo "Version in nix nix expression: $version" echo "Version in nix.src: $srcVersion" - if [ "$version" != "$srcVersion" ]; then - echo "Version mismatch!" - exit 1 - fi + ${ + if self_attribute_name == "git" then + # Major and minor must match, patch can be missing or have a suffix like a commit hash. That's all fine. + '' + majorMinor() { + echo "$1" | sed -n -e 's/\([0-9]*\.[0-9]*\).*/\1/p' + } + if (set -x; [ "$(majorMinor "$version")" != "$(majorMinor "$srcVersion")" ]); then + echo "Version mismatch!" + exit 1 + fi + '' + else + # exact match + '' + if [ "$version" != "$srcVersion" ]; then + echo "Version mismatch!" + exit 1 + fi + '' + } touch $out ''; From 23a32c9445d4d82448f4173ba00a2995df347d4b Mon Sep 17 00:00:00 2001 From: Wolfgang Walther Date: Wed, 2 Jul 2025 16:36:58 +0200 Subject: [PATCH 49/73] Reapply "workflows/labels: label stale issues" This reverts commit c18e94361ef21171c48522142adfbb1081be90bf. --- .github/stale.yml | 9 -- .github/workflows/labels.yml | 300 ++++++++++++++++++----------------- 2 files changed, 156 insertions(+), 153 deletions(-) delete mode 100644 .github/stale.yml diff --git a/.github/stale.yml b/.github/stale.yml deleted file mode 100644 index d6134c7ce112..000000000000 --- a/.github/stale.yml +++ /dev/null @@ -1,9 +0,0 @@ -# Configuration for probot-stale - https://github.com/probot/stale -daysUntilStale: 180 -daysUntilClose: false -exemptLabels: - - "1.severity: security" - - "2.status: never-stale" -staleLabel: "2.status: stale" -markComment: false -closeComment: false diff --git a/.github/workflows/labels.yml b/.github/workflows/labels.yml index d84f49b5895c..e61615091486 100644 --- a/.github/workflows/labels.yml +++ b/.github/workflows/labels.yml @@ -27,10 +27,8 @@ concurrency: # This is used as fallback without app only. # This happens when testing in forks without setting up that app. -# Labels will most likely not exist in forks, yet. For this case, -# we add the issues permission only here. permissions: - issues: write # needed to create *new* labels + issues: write pull-requests: write defaults: @@ -52,8 +50,7 @@ jobs: with: app-id: ${{ vars.NIXPKGS_CI_APP_ID }} private-key: ${{ secrets.NIXPKGS_CI_APP_PRIVATE_KEY }} - # No issues: write permission here, because labels in Nixpkgs should - # be created explicitly via the UI with color and description. + permission-issues: write permission-pull-requests: write - name: Log current API rate limits @@ -75,6 +72,7 @@ jobs: const artifactClient = new DefaultArtifactClient() const stats = { + issues: 0, prs: 0, requests: 0, artifacts: 0 @@ -123,6 +121,125 @@ jobs: // Update remaining requests every minute to account for other jobs running in parallel. const reservoirUpdater = setInterval(updateReservoir, 60 * 1000) + async function handlePullRequest(item) { + const log = (k,v) => core.info(`PR #${item.number} - ${k}: ${v}`) + + const pull_number = item.number + + // This API request is important for the merge-conflict label, because it triggers the + // creation of a new test merge commit. This is needed to actually determine the state of a PR. + const pull_request = (await github.rest.pulls.get({ + ...context.repo, + pull_number + })).data + + const approvals = new Set( + (await github.paginate(github.rest.pulls.listReviews, { + ...context.repo, + pull_number + })) + .filter(review => review.state == 'APPROVED') + .map(review => review.user?.id) + ) + + // After creation of a Pull Request, `merge_commit_sha` will be null initially: + // The very first merge commit will only be calculated after a little while. + // To avoid labeling the PR as conflicted before that, we wait a few minutes. + // This is intentionally less than the time that Eval takes, so that the label job + // running after Eval can indeed label the PR as conflicted if that is the case. + const merge_commit_sha_valid = new Date() - new Date(pull_request.created_at) > 3 * 60 * 1000 + + const prLabels = { + // We intentionally don't use the mergeable or mergeable_state attributes. + // Those have an intermediate state while the test merge commit is created. + // This doesn't work well for us, because we might have just triggered another + // test merge commit creation by request the pull request via API at the start + // of this function. + // The attribute merge_commit_sha keeps the old value of null or the hash *until* + // the new test merge commit has either successfully been created or failed so. + // This essentially means we are updating the merge conflict label in two steps: + // On the first pass of the day, we just fetch the pull request, which triggers + // the creation. At this stage, the label is likely not updated, yet. + // The second pass will then read the result from the first pass and set the label. + '2.status: merge conflict': merge_commit_sha_valid && !pull_request.merge_commit_sha, + '12.approvals: 1': approvals.size == 1, + '12.approvals: 2': approvals.size == 2, + '12.approvals: 3+': approvals.size >= 3, + '12.first-time contribution': + [ 'NONE', 'FIRST_TIMER', 'FIRST_TIME_CONTRIBUTOR' ].includes(pull_request.author_association), + } + + const run_id = (await github.rest.actions.listWorkflowRuns({ + ...context.repo, + workflow_id: 'pr.yml', + event: 'pull_request_target', + exclude_pull_requests: true, + head_sha: pull_request.head.sha + })).data.workflow_runs[0]?.id ?? + // TODO: Remove this after 2025-09-17, at which point all eval.yml artifacts will have expired. + (await github.rest.actions.listWorkflowRuns({ + ...context.repo, + // In older PRs, we need eval.yml instead of pr.yml. + workflow_id: 'eval.yml', + event: 'pull_request_target', + status: 'success', + exclude_pull_requests: true, + head_sha: pull_request.head.sha + })).data.workflow_runs[0]?.id + + // Newer PRs might not have run Eval to completion, yet. + // Older PRs might not have an eval.yml workflow, yet. + // In either case we continue without fetching an artifact on a best-effort basis. + log('Last eval run', run_id ?? '') + + const artifact = run_id && (await github.rest.actions.listWorkflowRunArtifacts({ + ...context.repo, + run_id, + name: 'comparison' + })).data.artifacts[0] + + // Instead of checking the boolean artifact.expired, we will give us a minute to + // actually download the artifact in the next step and avoid that race condition. + // Older PRs, where the workflow run was already eval.yml, but the artifact was not + // called "comparison", yet, will skip the download. + const expired = !artifact || new Date(artifact?.expires_at ?? 0) < new Date(new Date().getTime() + 60 * 1000) + log('Artifact expires at', artifact?.expires_at ?? '') + if (!expired) { + stats.artifacts++ + + await artifactClient.downloadArtifact(artifact.id, { + findBy: { + repositoryName: context.repo.repo, + repositoryOwner: context.repo.owner, + token: core.getInput('github-token') + }, + path: path.resolve(pull_number.toString()), + expectedHash: artifact.digest + }) + + const maintainers = new Set(Object.keys( + JSON.parse(await readFile(`${pull_number}/maintainers.json`, 'utf-8')) + ).map(m => Number.parseInt(m, 10))) + + const evalLabels = JSON.parse(await readFile(`${pull_number}/changed-paths.json`, 'utf-8')).labels + + Object.assign( + prLabels, + // Ignore `evalLabels` if it's an array. + // This can happen for older eval runs, before we switched to objects. + // The old eval labels would have been set by the eval run, + // so now they'll be present in `before`. + // TODO: Simplify once old eval results have expired (~2025-10) + (Array.isArray(evalLabels) ? undefined : evalLabels), + { + '12.approved-by: package-maintainer': Array.from(maintainers).some(m => approvals.has(m)), + } + ) + } + + return prLabels + } + async function handle(item) { try { const log = (k,v,skip) => { @@ -131,87 +248,19 @@ jobs: } log('Last updated at', item.updated_at) - stats.prs++ log('URL', item.html_url) - const pull_number = item.number const issue_number = item.number - // This API request is important for the merge-conflict label, because it triggers the - // creation of a new test merge commit. This is needed to actually determine the state of a PR. - const pull_request = (await github.rest.pulls.get({ - ...context.repo, - pull_number - })).data + const itemLabels = {} - const run_id = (await github.rest.actions.listWorkflowRuns({ - ...context.repo, - workflow_id: 'pr.yml', - event: 'pull_request_target', - exclude_pull_requests: true, - head_sha: pull_request.head.sha - })).data.workflow_runs[0]?.id ?? - // TODO: Remove this after 2025-09-17, at which point all eval.yml artifacts will have expired. - (await github.rest.actions.listWorkflowRuns({ - ...context.repo, - // In older PRs, we need eval.yml instead of pr.yml. - workflow_id: 'eval.yml', - event: 'pull_request_target', - status: 'success', - exclude_pull_requests: true, - head_sha: pull_request.head.sha - })).data.workflow_runs[0]?.id - - // Newer PRs might not have run Eval to completion, yet. - // Older PRs might not have an eval.yml workflow, yet. - // In either case we continue without fetching an artifact on a best-effort basis. - log('Last eval run', run_id ?? '') - - const artifact = run_id && (await github.rest.actions.listWorkflowRunArtifacts({ - ...context.repo, - run_id, - name: 'comparison' - })).data.artifacts[0] - - // Instead of checking the boolean artifact.expired, we will give us a minute to - // actually download the artifact in the next step and avoid that race condition. - // Older PRs, where the workflow run was already eval.yml, but the artifact was not - // called "comparison", yet, will skip the download. - const expired = !artifact || new Date(artifact?.expires_at ?? 0) < new Date(new Date().getTime() + 60 * 1000) - log('Artifact expires at', artifact?.expires_at ?? '') - if (!expired) { - stats.artifacts++ - - await artifactClient.downloadArtifact(artifact.id, { - findBy: { - repositoryName: context.repo.repo, - repositoryOwner: context.repo.owner, - token: core.getInput('github-token') - }, - path: path.resolve(pull_number.toString()), - expectedHash: artifact.digest - }) + if (item.pull_request) { + stats.prs++ + Object.assign(itemLabels, await handlePullRequest(item)) + } else { + stats.issues++ } - // Create a map (Label -> Boolean) of all currently set labels. - // Each label is set to True and can be disabled later. - const before = Object.fromEntries( - (await github.paginate(github.rest.issues.listLabelsOnIssue, { - ...context.repo, - issue_number - })) - .map(({ name }) => [name, true]) - ) - - const approvals = new Set( - (await github.paginate(github.rest.pulls.listReviews, { - ...context.repo, - pull_number - })) - .filter(review => review.state == 'APPROVED') - .map(review => review.user?.id) - ) - const latest_event_at = new Date( (await github.paginate( github.rest.issues.listEventsForTimeline, @@ -250,60 +299,21 @@ jobs: const stale_at = new Date(new Date().setDate(new Date().getDate() - 180)) - // After creation of a Pull Request, `merge_commit_sha` will be null initially: - // The very first merge commit will only be calculated after a little while. - // To avoid labeling the PR as conflicted before that, we wait a few minutes. - // This is intentionally less than the time that Eval takes, so that the label job - // running after Eval can indeed label the PR as conflicted if that is the case. - const merge_commit_sha_valid = new Date() - new Date(pull_request.created_at) > 3 * 60 * 1000 - - // Manage most of the labels, without eval results - const after = Object.assign( - {}, - before, - { - // We intentionally don't use the mergeable or mergeable_state attributes. - // Those have an intermediate state while the test merge commit is created. - // This doesn't work well for us, because we might have just triggered another - // test merge commit creation by request the pull request via API at the start - // of this function. - // The attribute merge_commit_sha keeps the old value of null or the hash *until* - // the new test merge commit has either successfully been created or failed so. - // This essentially means we are updating the merge conflict label in two steps: - // On the first pass of the day, we just fetch the pull request, which triggers - // the creation. At this stage, the label is likely not updated, yet. - // The second pass will then read the result from the first pass and set the label. - '2.status: merge conflict': merge_commit_sha_valid && !pull_request.merge_commit_sha, - '2.status: stale': !before['1.severity: security'] && latest_event_at < stale_at, - '12.approvals: 1': approvals.size == 1, - '12.approvals: 2': approvals.size == 2, - '12.approvals: 3+': approvals.size >= 3, - '12.first-time contribution': - [ 'NONE', 'FIRST_TIMER', 'FIRST_TIME_CONTRIBUTOR' ].includes(pull_request.author_association), - } + // Create a map (Label -> Boolean) of all currently set labels. + // Each label is set to True and can be disabled later. + const before = Object.fromEntries( + (await github.paginate(github.rest.issues.listLabelsOnIssue, { + ...context.repo, + issue_number + })) + .map(({ name }) => [name, true]) ) - // Manage labels based on eval results - if (!expired) { - const maintainers = new Set(Object.keys( - JSON.parse(await readFile(`${pull_number}/maintainers.json`, 'utf-8')) - ).map(m => Number.parseInt(m, 10))) + Object.assign(itemLabels, { + '2.status: stale': !before['1.severity: security'] && latest_event_at < stale_at, + }) - const evalLabels = JSON.parse(await readFile(`${pull_number}/changed-paths.json`, 'utf-8')).labels - - Object.assign( - after, - // Ignore `evalLabels` if it's an array. - // This can happen for older eval runs, before we switched to objects. - // The old eval labels would have been set by the eval run, - // so now they'll be present in `before`. - // TODO: Simplify once old eval results have expired (~2025-10) - (Array.isArray(evalLabels) ? undefined : evalLabels), - { - '12.approved-by: package-maintainer': Array.from(maintainers).some(m => approvals.has(m)), - } - ) - } + const after = Object.assign({}, before, itemLabels) // No need for an API request, if all labels are the same. const hasChanges = Object.keys(after).some(name => (before[name] ?? false) != after[name]) @@ -349,7 +359,6 @@ jobs: { q: [ `repo:"${process.env.GITHUB_REPOSITORY}"`, - 'type:pr', 'is:open', `updated:>=${cutoff.toISOString()}` ].join(' AND '), @@ -359,13 +368,11 @@ jobs: ) // The search endpoint only allows fetching the first 1000 records, but the - // pull request list endpoint does not support counting the total number - // of results. - // Thus, we use /search for counting and /pulls for reading the response. - const { total_count: total_pulls } = (await github.rest.search.issuesAndPullRequests({ + // list endpoints do not support counting the total number of results. + // Thus, we use /search for counting and /issues for reading the response. + const { total_count: total_items } = (await github.rest.search.issuesAndPullRequests({ q: [ `repo:"${process.env.GITHUB_REPOSITORY}"`, - 'type:pr', 'is:open' ].join(' AND '), sort: 'created', @@ -376,32 +383,37 @@ jobs: })).data const { total_count: total_runs } = workflowData - const allPulls = (await github.rest.pulls.list({ + // From GitHub's API docs: + // GitHub's REST API considers every pull request an issue, but not every issue is a pull request. + // For this reason, "Issues" endpoints may return both issues and pull requests in the response. + // You can identify pull requests by the pull_request key. + const allItems = (await github.rest.issues.listForRepo({ ...context.repo, state: 'open', sort: 'created', direction: 'asc', per_page: 100, - // We iterate through pages of 100 items across scheduled runs. With currently ~7000 open PRs and - // up to 6*24=144 scheduled runs per day, we hit every PR twice each day. - // We might not hit every PR on one iteration, because the pages will shift slightly when - // PRs are closed or merged. We assume this to be OK on the bigger scale, because a PR which was + // We iterate through pages of 100 items across scheduled runs. With currently ~7000 open PRs, + // 10000 open Issues and up to 6*24=144 scheduled runs per day, we hit every items a little less + // than once a day. + // We might not hit every item on one iteration, because the pages will shift slightly when + // items are closed or merged. We assume this to be OK on the bigger scale, because an item which was // missed once, would have to move through the whole page to be missed again. This is very unlikely, // so it should certainly be hit on the next iteration. // TODO: Evaluate after a while, whether the above holds still true and potentially implement // an overlap between runs. - page: (total_runs % Math.ceil(total_pulls / 100)) + 1 + page: (total_runs % Math.ceil(total_items / 100)) + 1 })).data // Some items might be in both search results, so filtering out duplicates as well. - const items = [].concat(updatedItems, allPulls) + const items = [].concat(updatedItems, allItems) .filter((thisItem, idx, arr) => idx == arr.findIndex(firstItem => firstItem.number == thisItem.number)) ;(await Promise.allSettled(items.map(handle))) .filter(({ status }) => status == 'rejected') .map(({ reason }) => core.setFailed(`${reason.message}\n${reason.cause.stack}`)) - core.notice(`Processed ${stats.prs} PRs, made ${stats.requests + stats.artifacts} API requests and downloaded ${stats.artifacts} artifacts.`) + core.notice(`Processed ${stats.prs} PRs, ${stats.issues} Issues, made ${stats.requests + stats.artifacts} API requests and downloaded ${stats.artifacts} artifacts.`) } } finally { clearInterval(reservoirUpdater) From e1c01ba24a06d24f3b24d328909e249447a12710 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 2 Jul 2025 17:15:37 +0000 Subject: [PATCH 50/73] check-jsonschema: 0.33.0 -> 0.33.1 --- pkgs/by-name/ch/check-jsonschema/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ch/check-jsonschema/package.nix b/pkgs/by-name/ch/check-jsonschema/package.nix index 769a5956f01a..df2839cedc18 100644 --- a/pkgs/by-name/ch/check-jsonschema/package.nix +++ b/pkgs/by-name/ch/check-jsonschema/package.nix @@ -6,14 +6,14 @@ python3Packages.buildPythonApplication rec { pname = "check-jsonschema"; - version = "0.33.0"; + version = "0.33.1"; pyproject = true; src = fetchFromGitHub { owner = "python-jsonschema"; repo = "check-jsonschema"; tag = version; - hash = "sha256-dygE9vFQpoDtTBtN4zoWY1JXUxBSgiX3GDzdk72BmgI="; + hash = "sha256-rcoZZ4fd6ATBL+aG1Lqvch6wnKtGmEYdCBd9F2danoE="; }; build-system = with python3Packages; [ setuptools ]; @@ -44,7 +44,7 @@ python3Packages.buildPythonApplication rec { description = "Jsonschema CLI and pre-commit hook"; mainProgram = "check-jsonschema"; homepage = "https://github.com/python-jsonschema/check-jsonschema"; - changelog = "https://github.com/python-jsonschema/check-jsonschema/blob/${version}/CHANGELOG.rst"; + changelog = "https://github.com/python-jsonschema/check-jsonschema/blob/${src.tag}/CHANGELOG.rst"; license = lib.licenses.asl20; maintainers = with lib.maintainers; [ sudosubin ]; }; From 5d75e9723bb5d7a5af8f58be3f623864212949b4 Mon Sep 17 00:00:00 2001 From: Sean Gilligan Date: Wed, 2 Jul 2025 12:18:02 -0700 Subject: [PATCH 51/73] maintainers: add msgilligan --- maintainers/maintainer-list.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 0948ed79fad0..9cd46db4204e 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -17054,6 +17054,13 @@ githubId = 30654959; name = "Michele Sciabarra"; }; + msgilligan = { + email = "sean@msgilligan.com"; + github = "msgilligan"; + githubId = 61612; + name = "Sean Gilligan"; + keys = [ { fingerprint = "3B66 ACFA D10F 02AA B1D5  2CB1 8DD0 D81D 7D1F C61A"; } ]; + }; msiedlarek = { email = "mikolaj@siedlarek.pl"; github = "msiedlarek"; From 5ea2a27c7d69ab11e55534bcbfc3987715bd70a6 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 2 Jul 2025 19:50:12 +0000 Subject: [PATCH 52/73] gof5: 0.1.4 -> 0.1.5 --- pkgs/by-name/go/gof5/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/go/gof5/package.nix b/pkgs/by-name/go/gof5/package.nix index d766ae3bd204..ae0da31368bd 100644 --- a/pkgs/by-name/go/gof5/package.nix +++ b/pkgs/by-name/go/gof5/package.nix @@ -6,16 +6,16 @@ buildGoModule rec { pname = "gof5"; - version = "0.1.4"; + version = "0.1.5"; src = fetchFromGitHub { owner = "kayrus"; repo = "gof5"; rev = "v${version}"; - sha256 = "10qh7rj8s540ghjdvymly53vny3n0qd0z0ixy24n026jjhgjvnpl"; + sha256 = "sha256-tvahwd/UBKGYOXIgGwN98P4udcf6Bqrsy9mZ/3YVkvM="; }; - vendorHash = null; + vendorHash = "sha256-kTdAjNYp/qQnUhHaCD6Hn1MlMpUsWaRxTSHWSUf6Uz8="; # The tests are broken and apparently you need to uncomment some lines in the # code in order for it to work. From bd8c33782435d749d781510b8d6f699f46eb4bc5 Mon Sep 17 00:00:00 2001 From: Ryan Omasta Date: Wed, 2 Jul 2025 13:52:02 -0600 Subject: [PATCH 53/73] ollama: 0.9.3 -> 0.9.5 https://github.com/ollama/ollama/releases/tag/v0.9.5 Diff: https://github.com/ollama/ollama/compare/v0.9.3...v0.9.5 --- pkgs/by-name/ol/ollama/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ol/ollama/package.nix b/pkgs/by-name/ol/ollama/package.nix index b15c86f24c46..1e5d79cdb81b 100644 --- a/pkgs/by-name/ol/ollama/package.nix +++ b/pkgs/by-name/ol/ollama/package.nix @@ -117,13 +117,13 @@ in goBuild (finalAttrs: { pname = "ollama"; # don't forget to invalidate all hashes each update - version = "0.9.3"; + version = "0.9.5"; src = fetchFromGitHub { owner = "ollama"; repo = "ollama"; tag = "v${finalAttrs.version}"; - hash = "sha256-bAxvlFeCxrxE8PuLbsjAwJYDeZfKb8BDuGBgX8uMgr8="; + hash = "sha256-QP70s6gPL1GJv5G4VhYwWpf5raRIcOVsjPq3Jdw89eU="; fetchSubmodules = true; }; From 388604a181d5b86874f0ea0ba15ba15fd723eaa9 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 2 Jul 2025 19:55:03 +0000 Subject: [PATCH 54/73] glusterfs: 11.1 -> 11.2 --- pkgs/by-name/gl/glusterfs/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/gl/glusterfs/package.nix b/pkgs/by-name/gl/glusterfs/package.nix index efe75a0f89cc..1b89ddca3f04 100644 --- a/pkgs/by-name/gl/glusterfs/package.nix +++ b/pkgs/by-name/gl/glusterfs/package.nix @@ -105,13 +105,13 @@ let in stdenv.mkDerivation rec { pname = "glusterfs"; - version = "11.1"; + version = "11.2"; src = fetchFromGitHub { owner = "gluster"; repo = "glusterfs"; rev = "v${version}"; - sha256 = "sha256-ZClMfozeFO3266fkuCSV04QwpZaYa8B0uq2lTPEN2rQ="; + sha256 = "sha256-MGTntR9SVmejgpAkZnhJOaIkZeCMNBGaQSorLOStdjo="; }; inherit buildInputs propagatedBuildInputs; From c22ce0864e21fefe562821e72ea003d1e0ada9d9 Mon Sep 17 00:00:00 2001 From: Sean Gilligan Date: Wed, 2 Jul 2025 13:05:03 -0700 Subject: [PATCH 55/73] sparrow: add msgilligan as maintainer --- pkgs/by-name/sp/sparrow/package.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/by-name/sp/sparrow/package.nix b/pkgs/by-name/sp/sparrow/package.nix index 11a8fd7dcd92..34bce0a244d6 100644 --- a/pkgs/by-name/sp/sparrow/package.nix +++ b/pkgs/by-name/sp/sparrow/package.nix @@ -291,6 +291,7 @@ stdenvNoCC.mkDerivation rec { license = licenses.asl20; maintainers = with maintainers; [ emmanuelrosa + msgilligan _1000101 ]; platforms = [ "x86_64-linux" ]; From 5b5a582132c053f0105bac93a21d649c4bb73cfc Mon Sep 17 00:00:00 2001 From: Jost Alemann Date: Wed, 2 Jul 2025 22:22:37 +0200 Subject: [PATCH 56/73] jujutsu: 0.30.0 -> 0.31.0 Changelog: https://github.com/jj-vcs/jj/releases/tag/v0.31.0 Diff: https://github.com/jj-vcs/jj/compare/v0.30.0...v0.31.0 --- pkgs/by-name/ju/jujutsu/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ju/jujutsu/package.nix b/pkgs/by-name/ju/jujutsu/package.nix index e91fdd85ce5f..2d3302a080cb 100644 --- a/pkgs/by-name/ju/jujutsu/package.nix +++ b/pkgs/by-name/ju/jujutsu/package.nix @@ -14,18 +14,18 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "jujutsu"; - version = "0.30.0"; + version = "0.31.0"; src = fetchFromGitHub { owner = "jj-vcs"; repo = "jj"; tag = "v${finalAttrs.version}"; - hash = "sha256-l+E3os5At/PV4zKvUDSv4Aez9Bg0M+BZDvwVOHX+h9s="; + hash = "sha256-4zDHSpi7Kk7rramrWFOlBelZnOxt0zgXIrHucYQUOz0="; }; useFetchCargoVendor = true; - cargoHash = "sha256-5H4yPbJ5364CM8YEt40rTbks3+tuQsrb6OQ0wRUQZRw="; + cargoHash = "sha256-QmMc7pG2FMJBI9AIGPRRh2juFoz7gRFw5CQIcNK6QZI="; nativeBuildInputs = [ installShellFiles From e9c3571e3b1b5d3a1498ab7b2d88256c43cdb52a Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 2 Jul 2025 21:44:02 +0000 Subject: [PATCH 57/73] palemoon-bin: 33.7.2 -> 33.8.0 --- pkgs/applications/networking/browsers/palemoon/bin.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/browsers/palemoon/bin.nix b/pkgs/applications/networking/browsers/palemoon/bin.nix index 476f8c8d9dbd..f06f97e6cf0a 100644 --- a/pkgs/applications/networking/browsers/palemoon/bin.nix +++ b/pkgs/applications/networking/browsers/palemoon/bin.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation (finalAttrs: { pname = "palemoon-bin"; - version = "33.7.2"; + version = "33.8.0"; src = finalAttrs.passthru.sources."gtk${if withGTK3 then "3" else "2"}"; @@ -174,11 +174,11 @@ stdenv.mkDerivation (finalAttrs: { { gtk3 = fetchzip { urls = urlRegionVariants "gtk3"; - hash = "sha256-GE45GZ+OmNNwRLTD2pcZpqRA66k4q/+lkQnGJG+z6nQ="; + hash = "sha256-cdPFMYlVEr6D+0mH7Mg5nGpf0KvePGLm3Y/ZytdFHHA="; }; gtk2 = fetchzip { urls = urlRegionVariants "gtk2"; - hash = "sha256-yJPmmQ9IkGzort9OPPWzv+LSeJci8VNoso3NLYev51Q="; + hash = "sha256-dgWKmkHl5B1ri3uev63MNz/+E767ip9wJ/YzSog8vdQ="; }; }; From 2fbf3490261347a110961ebe55e69dd1304ef272 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 2 Jul 2025 23:52:50 +0000 Subject: [PATCH 58/73] n98-magerun2: 8.1.1 -> 9.0.1 --- pkgs/by-name/n9/n98-magerun2/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/n9/n98-magerun2/package.nix b/pkgs/by-name/n9/n98-magerun2/package.nix index 41892a382a82..cbba74364510 100644 --- a/pkgs/by-name/n9/n98-magerun2/package.nix +++ b/pkgs/by-name/n9/n98-magerun2/package.nix @@ -7,16 +7,16 @@ php83.buildComposerProject2 (finalAttrs: { pname = "n98-magerun2"; - version = "8.1.1"; + version = "9.0.1"; src = fetchFromGitHub { owner = "netz98"; repo = "n98-magerun2"; tag = finalAttrs.version; - hash = "sha256-GnyIYgVNPumX+GLgPotSzD6BcUiUTlsfYFwFMX94hEk="; + hash = "sha256-Lq9TEwhcsoO4Cau2S7i/idEZYIzBeI0iXX1Ol7LnbAo="; }; - vendorHash = "sha256-kF8VXE0K/Gzho5K40H94hXtgSS2rogCtMow2ET8PinU="; + vendorHash = "sha256-JxUVqQjSBh8FYW1JbwooHHkzDRtMRaCuVO6o45UMzOk="; nativeInstallCheckInputs = [ versionCheckHook ]; versionCheckProgramArg = "--version"; From 9c0f7baefd89bc1d14da2d55f103cd2d7aad5ca9 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 3 Jul 2025 00:43:26 +0000 Subject: [PATCH 59/73] driversi686Linux.mesa: 25.1.4 -> 25.1.5 --- pkgs/development/libraries/mesa/common.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/mesa/common.nix b/pkgs/development/libraries/mesa/common.nix index d165c4e6d03a..0df3d11ae01b 100644 --- a/pkgs/development/libraries/mesa/common.nix +++ b/pkgs/development/libraries/mesa/common.nix @@ -5,14 +5,14 @@ # nix build .#legacyPackages.x86_64-darwin.mesa .#legacyPackages.aarch64-darwin.mesa rec { pname = "mesa"; - version = "25.1.4"; + version = "25.1.5"; src = fetchFromGitLab { domain = "gitlab.freedesktop.org"; owner = "mesa"; repo = "mesa"; rev = "mesa-${version}"; - hash = "sha256-DA6fE+Ns91z146KbGlQldqkJlvGAxhzNdcmdIO0lHK8="; + hash = "sha256-AZAd1/wiz8d0lXpim9obp6/K7ySP12rGFe8jZrc9Gl0="; }; meta = { From 279636cd349748f8953fe20a9f1b7a3f0f395caa Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 3 Jul 2025 01:04:27 +0000 Subject: [PATCH 60/73] release-plz: 0.3.136 -> 0.3.137 --- pkgs/by-name/re/release-plz/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/re/release-plz/package.nix b/pkgs/by-name/re/release-plz/package.nix index 8d7f9e490e14..a71a67fbfd56 100644 --- a/pkgs/by-name/re/release-plz/package.nix +++ b/pkgs/by-name/re/release-plz/package.nix @@ -11,17 +11,17 @@ rustPlatform.buildRustPackage rec { pname = "release-plz"; - version = "0.3.136"; + version = "0.3.137"; src = fetchFromGitHub { owner = "MarcoIeni"; repo = "release-plz"; rev = "release-plz-v${version}"; - hash = "sha256-C/8/lukqnuxCeHZR0kSuJSJzWl71kr3hdTTmS5lMRLA="; + hash = "sha256-7sCwnUhCLfA/MACseZUT6IWR5+JjxKUyBfLSGwno/qQ="; }; useFetchCargoVendor = true; - cargoHash = "sha256-MsSGFNMmIaKVYXqJks4NzLNnrip8cz7K9pETtxHyLuI="; + cargoHash = "sha256-IoFJPRW4SXAWxfBKNBrgtxBAYfbRwxuN9Aig3P9QkOk="; nativeBuildInputs = [ installShellFiles From e774ed67d7a854d79a83dc2b23fe47dcedb33cf1 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 3 Jul 2025 01:17:11 +0000 Subject: [PATCH 61/73] home-assistant-custom-lovelace-modules.universal-remote-card: 4.6.0 -> 4.6.1 --- .../universal-remote-card/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/servers/home-assistant/custom-lovelace-modules/universal-remote-card/package.nix b/pkgs/servers/home-assistant/custom-lovelace-modules/universal-remote-card/package.nix index b2eb22718dcd..92d757819a53 100644 --- a/pkgs/servers/home-assistant/custom-lovelace-modules/universal-remote-card/package.nix +++ b/pkgs/servers/home-assistant/custom-lovelace-modules/universal-remote-card/package.nix @@ -6,18 +6,18 @@ buildNpmPackage rec { pname = "universal-remote-card"; - version = "4.6.0"; + version = "4.6.1"; src = fetchFromGitHub { owner = "Nerwyn"; repo = "android-tv-card"; rev = version; - hash = "sha256-CiJJDMOl50QrMIdPIDLJa259FZSjyUhmwiZN29/oBsM="; + hash = "sha256-cJu07eIluZFZfIq+3D0xlQs2L3NmSKf3EBSA/S2jx7Y="; }; patches = [ ./dont-call-git.patch ]; - npmDepsHash = "sha256-Hv4TcUqwSGjA1OpAdd0RY0v+F9oTMIHgVm54sPjyrpQ="; + npmDepsHash = "sha256-eldbaWZq/TV7V3wPOmgZrYNQsNP1Dgt6vqEc0hiqy+c="; installPhase = '' runHook preInstall From 2fb3ceef1a68dc6ab001008811fd801d7a1b3a83 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 3 Jul 2025 04:46:51 +0000 Subject: [PATCH 62/73] libretro.gambatte: 0-unstable-2025-06-20 -> 0-unstable-2025-06-27 --- pkgs/applications/emulators/libretro/cores/gambatte.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/emulators/libretro/cores/gambatte.nix b/pkgs/applications/emulators/libretro/cores/gambatte.nix index 584f000788f8..7585e73cf5ea 100644 --- a/pkgs/applications/emulators/libretro/cores/gambatte.nix +++ b/pkgs/applications/emulators/libretro/cores/gambatte.nix @@ -5,13 +5,13 @@ }: mkLibretroCore { core = "gambatte"; - version = "0-unstable-2025-06-20"; + version = "0-unstable-2025-06-27"; src = fetchFromGitHub { owner = "libretro"; repo = "gambatte-libretro"; - rev = "a693367ab1aea60266c7fa7c666b0779035d4745"; - hash = "sha256-nQ/hh9EkcftcdV0MvPl3kRUGBxukOxbgLCM9786rtd4="; + rev = "9f591132e67f101780495a43df8da9bca43e08db"; + hash = "sha256-wauSnUlZRAtZwheONd+NusM0D1q2pLwha6H90R4R1aU="; }; meta = { From 8356c610d5800af22cc50ddec71f7dd46c4cfebf Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 3 Jul 2025 05:28:59 +0000 Subject: [PATCH 63/73] eww: 0.6.0-unstable-2025-06-17 -> 0.6.0-unstable-2025-06-30 --- pkgs/by-name/ew/eww/package.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/ew/eww/package.nix b/pkgs/by-name/ew/eww/package.nix index fc18e9da5565..4b95a10ff763 100644 --- a/pkgs/by-name/ew/eww/package.nix +++ b/pkgs/by-name/ew/eww/package.nix @@ -15,17 +15,17 @@ rustPlatform.buildRustPackage rec { pname = "eww"; - version = "0.6.0-unstable-2025-06-17"; + version = "0.6.0-unstable-2025-06-30"; src = fetchFromGitHub { owner = "elkowar"; repo = "eww"; - rev = "0e409d4a52bd3d37d0aa0ad4e2d7f3b9a8adcdb7"; - hash = "sha256-QGs9H+SBoMjvznTh3RZVjlwQPkcz6S6CbxC71cS49dk="; + rev = "fddb4a09b107237819e661151e007b99b5cab36d"; + hash = "sha256-PJW4LvW9FmkG9HyUtgXOq7MDjYtBc/iJuOxyf29nD0Y="; }; useFetchCargoVendor = true; - cargoHash = "sha256-SEdr9nW5nBm1g6fjC5fZhqPbHQ7H6Kk0RL1V6OEQRdA="; + cargoHash = "sha256-Kf99eojqXvdbZ3eRS8GBgyLYNpZKJGIJtsOsvhhSVDk="; nativeBuildInputs = [ installShellFiles From bfbbd1828b4306d5cad9e6d66b365b5244c048b6 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 3 Jul 2025 06:00:18 +0000 Subject: [PATCH 64/73] mame: 0.277 -> 0.278 --- pkgs/applications/emulators/mame/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/emulators/mame/default.nix b/pkgs/applications/emulators/mame/default.nix index e4e6c97518a3..26b79cd3c3fc 100644 --- a/pkgs/applications/emulators/mame/default.nix +++ b/pkgs/applications/emulators/mame/default.nix @@ -37,14 +37,14 @@ stdenv.mkDerivation rec { pname = "mame"; - version = "0.277"; + version = "0.278"; srcVersion = builtins.replaceStrings [ "." ] [ "" ] version; src = fetchFromGitHub { owner = "mamedev"; repo = "mame"; rev = "mame${srcVersion}"; - hash = "sha256-mGKTZ8/gvGQv9oXK4pgbJk580GAAXUS16hRQu4uHhdA="; + hash = "sha256-YJt+in9QV7a0tQZnfqFP3Iu6XQD0sryjud4FcgokYFg="; }; outputs = [ From f3fdcbb6e68d1c9956d24daa58cb3bd8f696e5b6 Mon Sep 17 00:00:00 2001 From: K900 Date: Thu, 3 Jul 2025 10:35:07 +0300 Subject: [PATCH 65/73] path-of-building.data: 2.55.2 -> 2.55.3 Diff: https://github.com/PathOfBuildingCommunity/PathOfBuilding/compare/v2.55.2...v2.55.3 --- pkgs/games/path-of-building/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/games/path-of-building/default.nix b/pkgs/games/path-of-building/default.nix index 4618a567c3d0..a467106884b9 100644 --- a/pkgs/games/path-of-building/default.nix +++ b/pkgs/games/path-of-building/default.nix @@ -17,13 +17,13 @@ let data = stdenv.mkDerivation (finalAttrs: { pname = "path-of-building-data"; - version = "2.55.2"; + version = "2.55.3"; src = fetchFromGitHub { owner = "PathOfBuildingCommunity"; repo = "PathOfBuilding"; rev = "v${finalAttrs.version}"; - hash = "sha256-i+9WeASdOj9QSB0HjDMP7qM7wQh3tyHuh74QlVWhi1c="; + hash = "sha256-LGn5dDH1oRD6bi3KGqyiQh7Gu/8k+RRgGRFkUaFa19E="; }; nativeBuildInputs = [ unzip ]; From f0e3dc0dcc84fc9fe5f7a41f674243ac2bb18a64 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 24 Jun 2025 01:34:05 +0000 Subject: [PATCH 66/73] minio: 2025-05-24T17-08-30Z -> 2025-06-13T11-33-47Z --- pkgs/servers/minio/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/minio/default.nix b/pkgs/servers/minio/default.nix index b8bf29be44e9..5bed1a79d65a 100644 --- a/pkgs/servers/minio/default.nix +++ b/pkgs/servers/minio/default.nix @@ -30,13 +30,13 @@ let in buildGoModule rec { pname = "minio"; - version = "2025-05-24T17-08-30Z"; + version = "2025-06-13T11-33-47Z"; src = fetchFromGitHub { owner = "minio"; repo = "minio"; rev = "RELEASE.${version}"; - hash = "sha256-BB7uEBc0JSJ3nBAy+0i6s4js7Nv/jYw51tbIE6bWjkI="; + hash = "sha256-pck/K/BJZC0OdjgeCr+3ErkOyqmVTCdZv61jG24tp2E="; }; vendorHash = "sha256-0UoEIlxbAveYlCbGZ2z1q+RAksJrVjdE+ymc6ozDGcE="; From f1cf3829b9776df5307b5ad43da30d8e9639e4b9 Mon Sep 17 00:00:00 2001 From: Alyssa Ross Date: Wed, 2 Jul 2025 10:50:03 +0200 Subject: [PATCH 67/73] binutils-unwrapped-all-targets: fix build on Darwin gas isn't built for Darwin, so previously this failed when trying to install it: make: Entering directory '/private/tmp/nix-build-binutils-2.44.drv-0/build' make: *** /private/tmp/nix-build-binutils-2.44.drv-0/build-arm64-apple-darwin/gas: No such file or directory. Stop. make: Leaving directory '/private/tmp/nix-build-binutils-2.44.drv-0/build' Fixes: 437ad124ac97 ("binutils-unwrapped-all-targets: per-target gas") --- pkgs/development/tools/misc/binutils/default.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/pkgs/development/tools/misc/binutils/default.nix b/pkgs/development/tools/misc/binutils/default.nix index 5c7ddde8c0c6..8e6f6605079d 100644 --- a/pkgs/development/tools/misc/binutils/default.nix +++ b/pkgs/development/tools/misc/binutils/default.nix @@ -38,6 +38,9 @@ let # on the PATH to both be usable. targetPrefix = lib.optionalString (targetPlatform != hostPlatform) "${targetPlatform.config}-"; + # gas is disabled for some targets via noconfigdirs in configure. + targetHasGas = !stdenv.targetPlatform.isDarwin; + # gas isn't multi-target, even with --enable-targets=all, so we do # separate builds of just gas for each target. # @@ -45,7 +48,9 @@ let # additional targets here as required. allGasTargets = allGasTargets' - ++ lib.optional (!lib.elem targetPlatform.config allGasTargets') targetPlatform.config; + ++ lib.optional ( + targetHasGas && !lib.elem targetPlatform.config allGasTargets' + ) targetPlatform.config; allGasTargets' = [ "aarch64-unknown-linux-gnu" "alpha-unknown-linux-gnu" @@ -328,6 +333,8 @@ stdenv.mkDerivation (finalAttrs: { $makeFlags "''${makeFlagsArray[@]}" $installFlags "''${installFlagsArray[@]}" \ install-exec-bindir done + '' + + lib.optionalString (withAllTargets && targetHasGas) '' ln -s $out/bin/${stdenv.targetPlatform.config}-as $out/bin/as ''; From 06a88df6207a8337835e2b7f816305e2df943477 Mon Sep 17 00:00:00 2001 From: Wolfgang Walther Date: Wed, 2 Jul 2025 17:53:28 +0200 Subject: [PATCH 68/73] workflows/labels: paginate with cursor Pagination via cursor is required above 10k items. To do so, we store the current cursor as an artifact and read it back in in the next scheduled run. --- .github/workflows/labels.yml | 91 +++++++++++++++++++++++------------- 1 file changed, 59 insertions(+), 32 deletions(-) diff --git a/.github/workflows/labels.yml b/.github/workflows/labels.yml index e61615091486..a226193233fb 100644 --- a/.github/workflows/labels.yml +++ b/.github/workflows/labels.yml @@ -67,7 +67,7 @@ jobs: const Bottleneck = require('bottleneck') const path = require('node:path') const { DefaultArtifactClient } = require('@actions/artifact') - const { readFile } = require('node:fs/promises') + const { readFile, writeFile } = require('node:fs/promises') const artifactClient = new DefaultArtifactClient() @@ -339,19 +339,19 @@ jobs: if (context.payload.pull_request) { await handle(context.payload.pull_request) } else { - const workflowData = (await github.rest.actions.listWorkflowRuns({ + const lastRun = (await github.rest.actions.listWorkflowRuns({ ...context.repo, workflow_id: 'labels.yml', event: 'schedule', status: 'success', exclude_pull_requests: true, per_page: 1 - })).data + })).data.workflow_runs[0] // Go back as far as the last successful run of this workflow to make sure // we are not leaving anyone behind on GHA failures. // Defaults to go back 1 hour on the first run. - const cutoff = new Date(workflowData.workflow_runs[0]?.created_at ?? new Date().getTime() - 1 * 60 * 60 * 1000) + const cutoff = new Date(lastRun?.created_at ?? new Date().getTime() - 1 * 60 * 60 * 1000) core.info('cutoff timestamp: ' + cutoff.toISOString()) const updatedItems = await github.paginate( @@ -367,46 +367,73 @@ jobs: } ) - // The search endpoint only allows fetching the first 1000 records, but the - // list endpoints do not support counting the total number of results. - // Thus, we use /search for counting and /issues for reading the response. - const { total_count: total_items } = (await github.rest.search.issuesAndPullRequests({ - q: [ - `repo:"${process.env.GITHUB_REPOSITORY}"`, - 'is:open' - ].join(' AND '), - sort: 'created', - direction: 'asc', - // TODO: Remove in 2025-10, when it becomes the default. - advanced_search: true, - per_page: 1 - })).data - const { total_count: total_runs } = workflowData + let cursor + + // No workflow run available the first time. + if (lastRun) { + // The cursor to iterate through the full list of issues and pull requests + // is passed between jobs as an artifact. + const artifact = (await github.rest.actions.listWorkflowRunArtifacts({ + ...context.repo, + run_id: lastRun.id, + name: 'pagination-cursor' + })).data.artifacts[0] + + // If the artifact is not available, the next iteration starts at the beginning. + if (artifact) { + stats.artifacts++ + + const { downloadPath } = await artifactClient.downloadArtifact(artifact.id, { + findBy: { + repositoryName: context.repo.repo, + repositoryOwner: context.repo.owner, + token: core.getInput('github-token') + }, + expectedHash: artifact.digest + }) + + cursor = await readFile(path.resolve(downloadPath, 'cursor'), 'utf-8') + } + } // From GitHub's API docs: // GitHub's REST API considers every pull request an issue, but not every issue is a pull request. // For this reason, "Issues" endpoints may return both issues and pull requests in the response. // You can identify pull requests by the pull_request key. - const allItems = (await github.rest.issues.listForRepo({ + const allItems = await github.rest.issues.listForRepo({ ...context.repo, state: 'open', sort: 'created', direction: 'asc', per_page: 100, - // We iterate through pages of 100 items across scheduled runs. With currently ~7000 open PRs, - // 10000 open Issues and up to 6*24=144 scheduled runs per day, we hit every items a little less - // than once a day. - // We might not hit every item on one iteration, because the pages will shift slightly when - // items are closed or merged. We assume this to be OK on the bigger scale, because an item which was - // missed once, would have to move through the whole page to be missed again. This is very unlikely, - // so it should certainly be hit on the next iteration. - // TODO: Evaluate after a while, whether the above holds still true and potentially implement - // an overlap between runs. - page: (total_runs % Math.ceil(total_items / 100)) + 1 - })).data + after: cursor + }) + + // Regex taken and comment adjusted from: + // https://github.com/octokit/plugin-paginate-rest.js/blob/8e5da25f975d2f31dda6b8b588d71f2c768a8df2/src/iterator.ts#L36-L41 + // `allItems.headers.link` format: + // ; rel="next", + // ; rel="prev" + // Sets `next` to undefined if "next" URL is not present or `link` header is not set. + const next = ((allItems.headers.link ?? '').match(/<([^<>]+)>;\s*rel="next"/) ?? [])[1] + if (next) { + cursor = new URL(next).searchParams.get('after') + const uploadPath = path.resolve('cursor') + await writeFile(uploadPath, cursor, 'utf-8') + // No stats.artifacts++, because this does not allow passing a custom token. + // Thus, the upload will not happen with the app token, but the default github.token. + await artifactClient.uploadArtifact( + 'pagination-cursor', + [uploadPath], + path.resolve('.'), + { + retentionDays: 1 + } + ) + } // Some items might be in both search results, so filtering out duplicates as well. - const items = [].concat(updatedItems, allItems) + const items = [].concat(updatedItems, allItems.data) .filter((thisItem, idx, arr) => idx == arr.findIndex(firstItem => firstItem.number == thisItem.number)) ;(await Promise.allSettled(items.map(handle))) From 1b4db183b0b71db849a171217aa79b4c2e1e3b22 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 3 Jul 2025 09:11:31 +0000 Subject: [PATCH 69/73] microsoft-edge: 138.0.3351.55 -> 138.0.3351.65 --- pkgs/by-name/mi/microsoft-edge/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/mi/microsoft-edge/package.nix b/pkgs/by-name/mi/microsoft-edge/package.nix index 73d2920605d1..81d6d647cd59 100644 --- a/pkgs/by-name/mi/microsoft-edge/package.nix +++ b/pkgs/by-name/mi/microsoft-edge/package.nix @@ -179,11 +179,11 @@ in stdenvNoCC.mkDerivation (finalAttrs: { pname = "microsoft-edge"; - version = "138.0.3351.55"; + version = "138.0.3351.65"; src = fetchurl { url = "https://packages.microsoft.com/repos/edge/pool/main/m/microsoft-edge-stable/microsoft-edge-stable_${finalAttrs.version}-1_amd64.deb"; - hash = "sha256-SZCtAjhzY8BqwM9IMS2081RWxRT+4gQgrjve7avM7Bo="; + hash = "sha256-+8bV3pwoYvp4e0eJHj5/NSu15QiFwVJuGxFJkS76gwI="; }; # With strictDeps on, some shebangs were not being patched correctly From 605cfcce80bf61ff47815aa8a8d3e275c0655312 Mon Sep 17 00:00:00 2001 From: Kerstin Humm Date: Wed, 2 Jul 2025 20:43:29 +0200 Subject: [PATCH 70/73] mastodon: 4.3.8 -> 4.3.9 Changelog: https://github.com/mastodon/mastodon/releases/tag/v4.3.9 --- pkgs/servers/mastodon/source.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/mastodon/source.nix b/pkgs/servers/mastodon/source.nix index 63f408e1f81e..de1b5f020c45 100644 --- a/pkgs/servers/mastodon/source.nix +++ b/pkgs/servers/mastodon/source.nix @@ -5,14 +5,14 @@ patches ? [ ], }: let - version = "4.3.8"; + version = "4.3.9"; in applyPatches { src = fetchFromGitHub { owner = "mastodon"; repo = "mastodon"; rev = "v${version}"; - hash = "sha256-08AApylDOz8oExZ0cRaZTgNAuP+1wiLkx0SDhkO2fMM="; + hash = "sha256-A2WxVwaarT866s97uwfStBVtv7T5czF7ymRswtZ2K4M="; passthru = { inherit version; From 18748c7d12b512e97c05df45781c2edac9ed892c Mon Sep 17 00:00:00 2001 From: Thibaut Smith Date: Sun, 22 Jun 2025 17:10:35 +0200 Subject: [PATCH 71/73] oklch-color-picker: init at 2.2.1 --- .../by-name/ok/oklch-color-picker/package.nix | 52 +++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 pkgs/by-name/ok/oklch-color-picker/package.nix diff --git a/pkgs/by-name/ok/oklch-color-picker/package.nix b/pkgs/by-name/ok/oklch-color-picker/package.nix new file mode 100644 index 000000000000..03f574bf83c0 --- /dev/null +++ b/pkgs/by-name/ok/oklch-color-picker/package.nix @@ -0,0 +1,52 @@ +{ + lib, + nix-update-script, + rustPlatform, + fetchFromGitHub, + versionCheckHook, + autoPatchelfHook, + wayland, + libxkbcommon, + libGL, + stdenv, +}: + +rustPlatform.buildRustPackage (finalAttrs: { + pname = "oklch-color-picker"; + version = "2.2.1"; + + src = fetchFromGitHub { + owner = "eero-lehtinen"; + repo = "oklch-color-picker"; + tag = "${finalAttrs.version}"; + hash = "sha256-tPYxcZghGR1YZl1bwoDDIBmbTVGuksCpfgLYwG+k4Ws="; + }; + + cargoHash = "sha256-tdIkvBYKfcbCYXhDbIwXNNbNb4X32uBwDh3mAyqt/IM="; + + nativeBuildInputs = lib.optionals stdenv.hostPlatform.isLinux [ autoPatchelfHook ]; + + runtimeDependencies = [ + wayland + libxkbcommon + libGL + ]; + + nativeInstallCheckInputs = [ versionCheckHook ]; + versionCheckProgramArg = "--version"; + doInstallCheck = true; + passthru.updateScript = nix-update-script { }; + + meta = { + description = "Color picker for Oklch"; + longDescription = '' + A standalone color picker application using the Oklch + colorspace (based on Oklab) + ''; + homepage = "https://github.com/eero-lehtinen/oklch-color-picker"; + changelog = "https://github.com/eero-lehtinen/oklch-color-picker/releases/tag/${finalAttrs.version}"; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ videl ]; + broken = stdenv.hostPlatform.isDarwin; + }; +}) From 02fbba5c9a04833f8d659dd32a0a3f9f795613a4 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 3 Jul 2025 11:04:19 +0000 Subject: [PATCH 72/73] ghostfolio: 2.173.0 -> 2.176.0 --- pkgs/by-name/gh/ghostfolio/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/gh/ghostfolio/package.nix b/pkgs/by-name/gh/ghostfolio/package.nix index f24c301d02c2..21f5a7b48630 100644 --- a/pkgs/by-name/gh/ghostfolio/package.nix +++ b/pkgs/by-name/gh/ghostfolio/package.nix @@ -11,13 +11,13 @@ buildNpmPackage rec { pname = "ghostfolio"; - version = "2.173.0"; + version = "2.176.0"; src = fetchFromGitHub { owner = "ghostfolio"; repo = "ghostfolio"; tag = version; - hash = "sha256-+x9xpY0Yd0tj8zZdMbfstMznypn1Up4hxFXkp6bjcAo="; + hash = "sha256-T14omi5NkMCrqiXF+gSi6ELEdfH4QMp7luJtuCWhGM4="; # populate values that require us to use git. By doing this in postFetch we # can delete .git afterwards and maintain better reproducibility of the src. leaveDotGit = true; @@ -27,7 +27,7 @@ buildNpmPackage rec { ''; }; - npmDepsHash = "sha256-0Kme7RwXfxJuJ/6vWPPalvBYhGy0SpRViP5o4YrVeLI="; + npmDepsHash = "sha256-0vFH4gdrtaBca1lWxm2uZ1VerP4hJEJgBQzygDbja3I="; nativeBuildInputs = [ prisma From 2eae27b1e7d80c648b6ea8fd22d917e9cf2d15c2 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 3 Jul 2025 11:21:40 +0000 Subject: [PATCH 73/73] phpunit: 12.2.3 -> 12.2.5 --- pkgs/by-name/ph/phpunit/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ph/phpunit/package.nix b/pkgs/by-name/ph/phpunit/package.nix index c3dcf8d5044d..aa0ca52f32d8 100644 --- a/pkgs/by-name/ph/phpunit/package.nix +++ b/pkgs/by-name/ph/phpunit/package.nix @@ -10,16 +10,16 @@ php.buildComposerProject2 (finalAttrs: { pname = "phpunit"; - version = "12.2.3"; + version = "12.2.5"; src = fetchFromGitHub { owner = "sebastianbergmann"; repo = "phpunit"; tag = finalAttrs.version; - hash = "sha256-wdUx2/f+VGaclDO5DtJprqsGuKMXXdw/CE10py19Dvc="; + hash = "sha256-xpIpcjteIC9rpDxySqcDwJu1e3oMs6qC8u0zYlInxMw="; }; - vendorHash = "sha256-zc9ZXFhS78gZ5VevbAs0r+R30+It5BzUkgPau8qLjFE="; + vendorHash = "sha256-G67bYh61xTtqg2dj2laxYed/wXVIRZsG31mZETxohjM="; passthru = { updateScript = nix-update-script { };