nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

Merge staging-next into staging

authored by

nixpkgs-ci[bot] and committed by
GitHub
303760a0 493c0935

+589 -272
+3 -3
pkgs/applications/networking/sync/rclone/default.nix
··· 17 17 18 18 buildGoModule rec { 19 19 pname = "rclone"; 20 - version = "1.70.1"; 20 + version = "1.70.2"; 21 21 22 22 outputs = [ 23 23 "out" ··· 28 28 owner = "rclone"; 29 29 repo = "rclone"; 30 30 tag = "v${version}"; 31 - hash = "sha256-lfBwVRYqMjmSQBq3D20G8TfxnTUTspPM3x88UAqReVE="; 31 + hash = "sha256-XQGrXa2sXY+vjyQJnDAEGYp8n7/nGD2ZJFkTN0k4keg="; 32 32 }; 33 33 34 - vendorHash = "sha256-9yEWEM96cRUzp1mRXEzxvOaBZQsf7Zifoe163OtJCPw="; 34 + vendorHash = "sha256-/A9Sq7KlHitqHxvElVMQtuXUWhweiB0ukut7AJYaJHw="; 35 35 36 36 subPackages = [ "." ]; 37 37
+2 -2
pkgs/applications/video/kodi/addons/inputstream-ffmpegdirect/default.nix
··· 11 11 buildKodiBinaryAddon rec { 12 12 pname = "inputstream-ffmpegdirect"; 13 13 namespace = "inputstream.ffmpegdirect"; 14 - version = "21.3.7"; 14 + version = "21.3.8"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "xbmc"; 18 18 repo = "inputstream.ffmpegdirect"; 19 19 rev = "${version}-${rel}"; 20 - sha256 = "sha256-s1Owbj95DT+RR8eBRwMuUHrJwr6JR05efx5M11vH8cQ="; 20 + sha256 = "sha256-IgCSEJzu3a2un7FdiZCEVs/boxvIhSNleTPpOCljCZo="; 21 21 }; 22 22 23 23 extraBuildInputs = [
+18 -20
pkgs/by-name/ag/agate/package.nix
··· 1 1 { 2 2 lib, 3 - stdenv, 4 - nixosTests, 5 3 fetchFromGitHub, 6 4 rustPlatform, 7 - openssl, 5 + 8 6 pkg-config, 7 + openssl, 8 + 9 + versionCheckHook, 10 + 9 11 nix-update-script, 12 + nixosTests, 10 13 }: 11 14 12 - rustPlatform.buildRustPackage rec { 15 + rustPlatform.buildRustPackage (finalAttrs: { 13 16 pname = "agate"; 14 - version = "3.3.16"; 17 + version = "3.3.17"; 18 + 19 + __darwinAllowLocalNetworking = true; 15 20 16 21 src = fetchFromGitHub { 17 22 owner = "mbrubeck"; 18 23 repo = "agate"; 19 - tag = "v${version}"; 20 - hash = "sha256-TLLmoQXrvgDskmH9sKxUi5AqYrCR0ZaJJdbOV03IbMc="; 24 + tag = "v${finalAttrs.version}"; 25 + hash = "sha256-zT56JGP2SfOqLL/sLxo3PHnbAvLI+lifmCvLdPwzCZM="; 21 26 }; 22 27 23 - useFetchCargoVendor = true; 24 - cargoHash = "sha256-HA1h06ZlWvq7z5hJFqKxGtXNk8/GHxUivigaVqWQCvA="; 28 + cargoHash = "sha256-vemmO7xYf83rBNEvJKaq5CjobG1LUxt7M5zeQegTUmM="; 25 29 26 30 nativeBuildInputs = [ pkg-config ]; 27 - 28 31 buildInputs = [ openssl ]; 29 32 30 - doInstallCheck = true; 31 - installCheckPhase = '' 32 - runHook preInstallCheck 33 - $out/bin/agate --help 34 - $out/bin/agate --version 2>&1 | grep "agate ${version}" 35 - runHook postInstallCheck 36 - ''; 33 + nativeInstallCheckInputs = [ versionCheckHook ]; 37 34 38 - __darwinAllowLocalNetworking = true; 35 + doInstallCheck = true; 39 36 40 37 passthru = { 41 38 tests = { ··· 43 46 44 47 meta = { 45 48 homepage = "https://github.com/mbrubeck/agate"; 46 - changelog = "https://github.com/mbrubeck/agate/releases/tag/v${version}"; 49 + changelog = "https://github.com/mbrubeck/agate/releases/tag/v${finalAttrs.version}"; 47 50 description = "Very simple server for the Gemini hypertext protocol"; 48 51 mainProgram = "agate"; 49 52 longDescription = '' ··· 54 57 ''; 55 58 license = with lib.licenses; [ 56 59 asl20 60 + # or 57 61 mit 58 62 ]; 59 63 maintainers = with lib.maintainers; [ jk ]; 60 64 }; 61 - } 65 + })
+3 -3
pkgs/by-name/ca/cargo-fuzz/package.nix
··· 6 6 7 7 rustPlatform.buildRustPackage rec { 8 8 pname = "cargo-fuzz"; 9 - version = "0.12.0"; 9 + version = "0.13.1"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "rust-fuzz"; 13 13 repo = "cargo-fuzz"; 14 14 rev = version; 15 - hash = "sha256-PC36O5+eB+yVLpz+EywBDGcMAtHl79FYwUo/l/JL8hM="; 15 + hash = "sha256-wOzzPhAuCaJfp7uRZ1kPpzMIr03couRaIbbrjL0EyYo="; 16 16 }; 17 17 18 18 useFetchCargoVendor = true; 19 - cargoHash = "sha256-lyw7UJrGBL1+ATma3TWBpgjstSHGYMWAyTiq1nJNhgE="; 19 + cargoHash = "sha256-7HCdWkjIycVKZty760ZnLBtLOZ3gwPhwseIqxqf8xPQ="; 20 20 21 21 doCheck = false; 22 22
+2 -2
pkgs/by-name/co/codeql/package.nix
··· 11 11 12 12 stdenv.mkDerivation rec { 13 13 pname = "codeql"; 14 - version = "2.21.4"; 14 + version = "2.22.1"; 15 15 16 16 dontConfigure = true; 17 17 dontBuild = true; ··· 19 19 20 20 src = fetchzip { 21 21 url = "https://github.com/github/codeql-cli-binaries/releases/download/v${version}/codeql.zip"; 22 - hash = "sha256-iC6P/GhMw7Sf8Ic6oglB+GFLWBrZZ+YuOJbyNm99ypc="; 22 + hash = "sha256-wXwFrAFODwVj/6b9Nh2wWnNjMMyjlnGXOWiT2/HW2r4="; 23 23 }; 24 24 25 25 nativeBuildInputs = [
+12 -35
pkgs/by-name/ff/ffsend/package.nix
··· 22 22 23 23 rustPlatform.buildRustPackage rec { 24 24 pname = "ffsend"; 25 - version = "0.2.76"; 25 + version = "0.2.77"; 26 26 27 27 src = fetchFromGitLab { 28 28 owner = "timvisee"; 29 29 repo = "ffsend"; 30 - rev = "v${version}"; 31 - hash = "sha256-L1j1lXPxy9nWMeED9uzQHV5y7XTE6+DB57rDnXa4kMo="; 30 + tag = "v${version}"; 31 + hash = "sha256-qq1nLNe4ddcsFJZaGfNQbNtqchz6tPh1kpEH/oDW3jk="; 32 32 }; 33 33 34 - useFetchCargoVendor = true; 35 - cargoHash = "sha256-Gv70H3SLgiO7SWKYfCKzBhgAHxhjx3Gv7ZPLrGeQ+HY="; 34 + cargoHash = "sha256-DQcuyp61r0y9fi8AV33qxN2cOrl0M8q4/VoXuV47gxQ="; 36 35 37 36 cargoPatches = [ 38 - 39 - # Update dependencies (needed for the below patch to merge cleanly) 37 + # https://gitlab.com/timvisee/ffsend/-/merge_requests/44 40 38 (fetchpatch { 41 - name = "Update-dependencies-1"; 42 - url = "https://github.com/timvisee/ffsend/commit/afb004680b9ed672c7e87ff23f16bb2c51fea06e.patch"; 43 - hash = "sha256-eDcbyi05aOq+muVWdLmlLzLXUKcrv/9Y0R+0aHgL4+s="; 44 - }) 45 - 46 - # Disable unused features in prettytable-rs crate (needed for the below patch to merge cleanly) 47 - (fetchpatch { 48 - name = "Disable-unused-features"; 49 - url = "https://github.com/timvisee/ffsend/commit/9b8dee12ea839f911ed207ff9602d929cab5d34b.patch"; 50 - hash = "sha256-6LK1Fqov+zEbPZ4+B6JCLXtXmgSad9vr9YO2oYodBSM="; 51 - }) 52 - 53 - # Update dependencies (needed for the below patch to merge cleanly) 54 - (fetchpatch { 55 - name = "Update-dependencies-2"; 56 - url = "https://github.com/timvisee/ffsend/commit/fd5b38f9ab9cbc5f962d1024f4809eb36ba8986c.patch"; 57 - hash = "sha256-BDZKrVtQHpOewmB2Lb6kUfy02swcNK+CYZ3lj3kwFV4="; 58 - }) 59 - 60 - # Fix seg fault 61 - (fetchpatch { 62 - name = "Fix-segfault"; 63 - url = "https://github.com/timvisee/ffsend/commit/3c1c2dc28ca1d88c45f87496a7a96052f5c37858.patch"; 64 - hash = "sha256-2hWlFXDopNy26Df74nJoB1J8qzPEOpf61wEOEtxOVx8="; 39 + name = "rust-1.87.0-compat.patch"; 40 + url = "https://gitlab.com/timvisee/ffsend/-/commit/29eb167d4367929a2546c20b3f2bbf890b63c631.patch"; 41 + hash = "sha256-BxJ+0QJP2fzQT1X3BZG1Yy9V+csIEk8xocUKSBgdG9M="; 65 42 }) 66 43 ]; 67 44 ··· 63 86 ''; 64 87 # There's also .elv and .ps1 completion files but I don't know where to install those 65 88 66 - meta = with lib; { 89 + meta = { 67 90 description = "Easily and securely share files from the command line. A fully featured Firefox Send client"; 68 91 longDescription = '' 69 92 Easily and securely share files and directories from the command line through a safe, private ··· 72 95 web browser. 73 96 ''; 74 97 homepage = "https://gitlab.com/timvisee/ffsend"; 75 - license = licenses.gpl3Only; 76 - maintainers = with maintainers; [ equirosa ]; 77 - platforms = platforms.unix; 98 + license = lib.licenses.gpl3Only; 99 + maintainers = with lib.maintainers; [ equirosa ]; 100 + platforms = lib.platforms.unix; 78 101 mainProgram = "ffsend"; 79 102 }; 80 103 }
+3 -3
pkgs/by-name/fi/firezone-gateway/package.nix
··· 6 6 }: 7 7 rustPlatform.buildRustPackage rec { 8 8 pname = "firezone-gateway"; 9 - version = "1.4.10"; 9 + version = "1.4.11"; 10 10 src = fetchFromGitHub { 11 11 owner = "firezone"; 12 12 repo = "firezone"; 13 13 tag = "gateway-${version}"; 14 - hash = "sha256-3iU7AHu3GupqiZEDkuOEb+rFPA2KB1fjVNX1BY4abXc="; 14 + hash = "sha256-tKkp9EHcwAEGHImEjfXrxIhdNyDYe/0w5wXb31EIHjc="; 15 15 }; 16 16 17 17 useFetchCargoVendor = true; 18 - cargoHash = "sha256-p2zLhLFL6NbHvVojQU5+1amf+Kh0jRAbIESPt2vqWwg="; 18 + cargoHash = "sha256-NCKT6GS6V/5W1BaNl6uQ4hiNTj6ExQTRPR8T7pxMopc="; 19 19 sourceRoot = "${src.name}/rust"; 20 20 buildAndTestSubdir = "gateway"; 21 21 RUSTFLAGS = "--cfg system_certs";
+2 -2
pkgs/by-name/ku/kuzu/package.nix
··· 10 10 11 11 stdenv.mkDerivation (finalAttrs: { 12 12 pname = "kuzu"; 13 - version = "0.10.0"; 13 + version = "0.10.1"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "kuzudb"; 17 17 repo = "kuzu"; 18 18 tag = "v${finalAttrs.version}"; 19 - hash = "sha256-mc9MLIdlxMTQjvpKAa2N8AlhWJDzydd70x/YU6xX6h0="; 19 + hash = "sha256-c4KXtix7CQOdo+/pUhAMauMdGVuMJH/ttNQUI9CS1Nc="; 20 20 }; 21 21 22 22 outputs = [
+3 -3
pkgs/by-name/la/laze/package.nix
··· 13 13 14 14 rustPlatform.buildRustPackage (finalAttrs: { 15 15 pname = "laze"; 16 - version = "0.1.36"; 16 + version = "0.1.37"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "kaspar030"; 20 20 repo = "laze"; 21 21 tag = finalAttrs.version; 22 - hash = "sha256-516VJ6yzQOn8a1ufpxbJ8lCHcs09PVzPmXyWU7F+REk="; 22 + hash = "sha256-jO9GVC4wfMUCpS77tgjcU/1rau5ho+2949gtd1S7GxA="; 23 23 }; 24 24 25 25 useFetchCargoVendor = true; 26 - cargoHash = "sha256-vLlkgF8vfL4RbFH7S3pQaAgHs08glHJaIkFIBYLoAWE="; 26 + cargoHash = "sha256-jUIvVUQTDNsaIjwt1fFqeUjMNfw342pQByWvNPbgGts="; 27 27 28 28 passthru.updateScript = nix-update-script { }; 29 29
+2 -2
pkgs/by-name/le/ledger-live-desktop/package.nix
··· 8 8 9 9 let 10 10 pname = "ledger-live-desktop"; 11 - version = "2.117.0"; 11 + version = "2.118.1"; 12 12 13 13 src = fetchurl { 14 14 url = "https://download.live.ledger.com/${pname}-${version}-linux-x86_64.AppImage"; 15 - hash = "sha256-YcnTJFbkbPTr9ZfiOEnN1oHjTMl9S2XsJyMxozPXxa8="; 15 + hash = "sha256-FG1vlcLUjQpXfoEczvTOyqLFuCYU/72KeAdsg/SMjLQ="; 16 16 }; 17 17 18 18 appimageContents = appimageTools.extractType2 {
+3 -3
pkgs/by-name/pa/parseable/package.nix
··· 11 11 12 12 rustPlatform.buildRustPackage rec { 13 13 pname = "parseable"; 14 - version = "2.3.3"; 14 + version = "2.3.5"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "parseablehq"; 18 18 repo = "parseable"; 19 19 tag = "v${version}"; 20 - hash = "sha256-E2leEt4M+p9hc7zR0dVO8n/O796kmv1s4wFlZ79VCy0="; 20 + hash = "sha256-3kSbhTMnAPA86obH7F8nig8xIvlFpBanWuzgNVU1xFU="; 21 21 }; 22 22 23 23 LOCAL_ASSETS_PATH = fetchzip { ··· 26 26 }; 27 27 28 28 useFetchCargoVendor = true; 29 - cargoHash = "sha256-WeWWQReKCM+xCjZKKrBSWLUhD+mOXspMHiUNmLKdRrM="; 29 + cargoHash = "sha256-oXcOozjFKN10+693Eofg8vS2XryDEezAKkAhbGGNZ0A="; 30 30 31 31 nativeBuildInputs = [ pkg-config ]; 32 32
+2 -2
pkgs/by-name/pk/pkgsite/package.nix
··· 7 7 8 8 buildGoModule { 9 9 pname = "pkgsite"; 10 - version = "0-unstable-2025-06-11"; 10 + version = "0-unstable-2025-06-24"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "golang"; 14 14 repo = "pkgsite"; 15 - rev = "041c7c0b878cb88962867185208d4d2ec79de7d0"; 15 + rev = "ae590d8f0828128c9ff20b8ed794e7cf3ff86a7c"; 16 16 hash = "sha256-dyBOdUwod03c8eU1qfJecSDyKzol//yFpANCOihiseo="; 17 17 }; 18 18
+10 -10
pkgs/by-name/qq/qq/sources.nix
··· 1 1 # Generated by ./update.sh - do not update manually! 2 - # Last updated: 2025-06-17 2 + # Last updated: 2025-06-28 3 3 { fetchurl }: 4 4 let 5 5 any-darwin = { 6 - version = "6.9.75-2025.6.16"; 6 + version = "6.9.75-2025.6.26"; 7 7 src = fetchurl { 8 - url = "https://dldir1v6.qq.com/qqfile/qq/QQNT/Mac/QQ_6.9.75_250616_01.dmg"; 9 - hash = "sha256-MS2WGrAuBGlbzzxfUlcixoD1snchEaLu4Ecvt84Hdfo="; 8 + url = "https://dldir1v6.qq.com/qqfile/qq/QQNT/Mac/QQ_6.9.75_250626_01.dmg"; 9 + hash = "sha256-tWT0R88tXz0ypPQTDzASrh4znvBvq/ohBhpeDv2PlVc="; 10 10 }; 11 11 }; 12 12 in ··· 14 14 aarch64-darwin = any-darwin; 15 15 x86_64-darwin = any-darwin; 16 16 aarch64-linux = { 17 - version = "3.2.18-2025.6.16"; 17 + version = "3.2.18-2025.6.26"; 18 18 src = fetchurl { 19 - url = "https://dldir1v6.qq.com/qqfile/qq/QQNT/Linux/QQ_3.2.18_250616_arm64_01.deb"; 20 - hash = "sha256-wwZC+hyyrmmjhlk4hdJTnf5WkRxjit6smUmD4jPKbM0="; 19 + url = "https://dldir1v6.qq.com/qqfile/qq/QQNT/Linux/QQ_3.2.18_250626_arm64_01.deb"; 20 + hash = "sha256-7teJWRvvz5baJsaHmOwnkLgBcBxWOUCGpV2+MHH7Tic="; 21 21 }; 22 22 }; 23 23 x86_64-linux = { 24 - version = "3.2.18-2025.6.16"; 24 + version = "3.2.18-2025.6.26"; 25 25 src = fetchurl { 26 - url = "https://dldir1v6.qq.com/qqfile/qq/QQNT/Linux/QQ_3.2.18_250616_amd64_01.deb"; 27 - hash = "sha256-7/c1PwlcWogXO229e7f1gYWktCT+hpyQI1+22TkvzLQ="; 26 + url = "https://dldir1v6.qq.com/qqfile/qq/QQNT/Linux/QQ_3.2.18_250626_amd64_01.deb"; 27 + hash = "sha256-xEw6tE+qX90XQS3e2MTudeUJNfx25hwgq1YFROHqfng="; 28 28 }; 29 29 }; 30 30 }
+488 -150
pkgs/by-name/sh/shopify-cli/manifests/package-lock.json
··· 1 1 { 2 2 "name": "shopify", 3 - "version": "3.69.3", 3 + "version": "3.81.2", 4 4 "lockfileVersion": 3, 5 5 "requires": true, 6 6 "packages": { 7 7 "": { 8 8 "name": "shopify", 9 - "version": "3.69.3", 9 + "version": "3.81.2", 10 10 "dependencies": { 11 - "@shopify/cli": "3.69.3" 11 + "@shopify/cli": "3.81.2" 12 12 }, 13 13 "bin": { 14 14 "shopify": "node_modules/@shopify/cli/bin/run.js" 15 15 } 16 16 }, 17 17 "node_modules/@ast-grep/napi": { 18 - "version": "0.11.0", 19 - "resolved": "https://registry.npmjs.org/@ast-grep/napi/-/napi-0.11.0.tgz", 20 - "integrity": "sha512-b+R8h20+ClsYZBJqcyguLy4THfGmg2a54HgfZ0a1vdCkfe9ftjblALiZf2DsOc0+Si8BDWd09TMNn2psUuibJA==", 18 + "version": "0.33.0", 19 + "resolved": "https://registry.npmjs.org/@ast-grep/napi/-/napi-0.33.0.tgz", 20 + "integrity": "sha512-6heRMmomhSD0dkummRQ+R4xWXXmc41OaDPoPI49mKJXPyvwJPdPZUcQjXdIitOVL4uJV+qM2ZBucDPENDBSixw==", 21 21 "license": "MIT", 22 22 "engines": { 23 23 "node": ">= 10" 24 24 }, 25 25 "optionalDependencies": { 26 - "@ast-grep/napi-darwin-arm64": "0.11.0", 27 - "@ast-grep/napi-darwin-x64": "0.11.0", 28 - "@ast-grep/napi-linux-x64-gnu": "0.11.0", 29 - "@ast-grep/napi-win32-arm64-msvc": "0.11.0", 30 - "@ast-grep/napi-win32-ia32-msvc": "0.11.0", 31 - "@ast-grep/napi-win32-x64-msvc": "0.11.0" 26 + "@ast-grep/napi-darwin-arm64": "0.33.0", 27 + "@ast-grep/napi-darwin-x64": "0.33.0", 28 + "@ast-grep/napi-linux-arm64-gnu": "0.33.0", 29 + "@ast-grep/napi-linux-arm64-musl": "0.33.0", 30 + "@ast-grep/napi-linux-x64-gnu": "0.33.0", 31 + "@ast-grep/napi-linux-x64-musl": "0.33.0", 32 + "@ast-grep/napi-win32-arm64-msvc": "0.33.0", 33 + "@ast-grep/napi-win32-ia32-msvc": "0.33.0", 34 + "@ast-grep/napi-win32-x64-msvc": "0.33.0" 32 35 } 33 36 }, 34 37 "node_modules/@ast-grep/napi-darwin-arm64": { 35 - "version": "0.11.0", 36 - "resolved": "https://registry.npmjs.org/@ast-grep/napi-darwin-arm64/-/napi-darwin-arm64-0.11.0.tgz", 37 - "integrity": "sha512-IxY3b102tNNm+cYLngZvUKzM1fNKCpDDWz69Yt+QnKCZNx10Hvd7mqrYE2aXTtkaNalmg/p1n6kMA8KmshGgCA==", 38 + "version": "0.33.0", 39 + "resolved": "https://registry.npmjs.org/@ast-grep/napi-darwin-arm64/-/napi-darwin-arm64-0.33.0.tgz", 40 + "integrity": "sha512-FsBQiBNGbqeU6z2sjFgnV6MXuBa0wYUb4PViMnqsKLeWiO7kRii5crmXLCtdTD2hufXTG6Rll8X46AkYOAwGGQ==", 38 41 "cpu": [ 39 42 "arm64" 40 43 ], ··· 51 48 } 52 49 }, 53 50 "node_modules/@ast-grep/napi-darwin-x64": { 54 - "version": "0.11.0", 55 - "resolved": "https://registry.npmjs.org/@ast-grep/napi-darwin-x64/-/napi-darwin-x64-0.11.0.tgz", 56 - "integrity": "sha512-6afu1fNUwTkyE7tknVx8+d+BPKVL3623QLI9uJbJ0SZQShzSb1+dRegT4NpzPaPtFdPkflh6KfvOQ4chTw8hUg==", 51 + "version": "0.33.0", 52 + "resolved": "https://registry.npmjs.org/@ast-grep/napi-darwin-x64/-/napi-darwin-x64-0.33.0.tgz", 53 + "integrity": "sha512-rWo1wG7fc7K20z9ExIeN6U4QqjHhoQSpBDDnmxKTR0nIwPfyMq338sS4sWZomutxprcZDtWrekxH1lXjNvfuiA==", 57 54 "cpu": [ 58 55 "x64" 59 56 ], ··· 66 63 "node": ">= 10" 67 64 } 68 65 }, 66 + "node_modules/@ast-grep/napi-linux-arm64-gnu": { 67 + "version": "0.33.0", 68 + "resolved": "https://registry.npmjs.org/@ast-grep/napi-linux-arm64-gnu/-/napi-linux-arm64-gnu-0.33.0.tgz", 69 + "integrity": "sha512-3ZnA2k57kxfvLg4s9+6rHaCx1FbWt0EF8fumJMf5nwevu7GbVOOhCkzAetZe80FBgZuIOSR4IS2QMj9ZHI0UdQ==", 70 + "cpu": [ 71 + "arm64" 72 + ], 73 + "license": "MIT", 74 + "optional": true, 75 + "os": [ 76 + "linux" 77 + ], 78 + "engines": { 79 + "node": ">= 10" 80 + } 81 + }, 82 + "node_modules/@ast-grep/napi-linux-arm64-musl": { 83 + "version": "0.33.0", 84 + "resolved": "https://registry.npmjs.org/@ast-grep/napi-linux-arm64-musl/-/napi-linux-arm64-musl-0.33.0.tgz", 85 + "integrity": "sha512-oUGZgCaVCijFgvC+X52ttgoWUqgrIsSVJZgn+1VBY3n4mpzcoYAghFomSUbRTBUL2ebvZweA33Klqks4okY61w==", 86 + "cpu": [ 87 + "arm64" 88 + ], 89 + "license": "MIT", 90 + "optional": true, 91 + "os": [ 92 + "linux" 93 + ], 94 + "engines": { 95 + "node": ">= 10" 96 + } 97 + }, 69 98 "node_modules/@ast-grep/napi-linux-x64-gnu": { 70 - "version": "0.11.0", 71 - "resolved": "https://registry.npmjs.org/@ast-grep/napi-linux-x64-gnu/-/napi-linux-x64-gnu-0.11.0.tgz", 72 - "integrity": "sha512-Rm0biBfIxg14tL9yAMxW6RngAEA2vYLIq1guff6Uc9Vb7yQ3HE8dnW8WAysyieIqXdVkraTTV2ZwfoUqeKfc1Q==", 99 + "version": "0.33.0", 100 + "resolved": "https://registry.npmjs.org/@ast-grep/napi-linux-x64-gnu/-/napi-linux-x64-gnu-0.33.0.tgz", 101 + "integrity": "sha512-QTAkfxQSsOGRza0hnkeAgJDQqR00iDerRNq42dOGIzgF+Kse491By3UmBEMG4oCbv17yYcBBlknQkzKSKtigjw==", 102 + "cpu": [ 103 + "x64" 104 + ], 105 + "license": "MIT", 106 + "optional": true, 107 + "os": [ 108 + "linux" 109 + ], 110 + "engines": { 111 + "node": ">= 10" 112 + } 113 + }, 114 + "node_modules/@ast-grep/napi-linux-x64-musl": { 115 + "version": "0.33.0", 116 + "resolved": "https://registry.npmjs.org/@ast-grep/napi-linux-x64-musl/-/napi-linux-x64-musl-0.33.0.tgz", 117 + "integrity": "sha512-PW6bZO7MyQsBNZv0idI/Ah6ak66T8LqZ21wBGjtQp9NDGViOtkLeu+eJJGaZjMqUdidKHKgmMKXksZHl2m8ulQ==", 73 118 "cpu": [ 74 119 "x64" 75 120 ], ··· 131 80 } 132 81 }, 133 82 "node_modules/@ast-grep/napi-win32-arm64-msvc": { 134 - "version": "0.11.0", 135 - "resolved": "https://registry.npmjs.org/@ast-grep/napi-win32-arm64-msvc/-/napi-win32-arm64-msvc-0.11.0.tgz", 136 - "integrity": "sha512-TfX6KXxtXGQS/sWzJ1wWwWbpm3OJWpqiWGttpifSGs6DJmzfwuK0b63yX5JlhNXeUVqXkZyfYqIh5RPIPOtXSA==", 83 + "version": "0.33.0", 84 + "resolved": "https://registry.npmjs.org/@ast-grep/napi-win32-arm64-msvc/-/napi-win32-arm64-msvc-0.33.0.tgz", 85 + "integrity": "sha512-ijmFQcFc32JOIQlSfnhDJpb3qFb2RhrRqfeY0EHHN1xRSGwZHfsHTSS66nKR2sREmxTIMgxXOtylKicbyyMVKA==", 137 86 "cpu": [ 138 87 "arm64" 139 88 ], ··· 147 96 } 148 97 }, 149 98 "node_modules/@ast-grep/napi-win32-ia32-msvc": { 150 - "version": "0.11.0", 151 - "resolved": "https://registry.npmjs.org/@ast-grep/napi-win32-ia32-msvc/-/napi-win32-ia32-msvc-0.11.0.tgz", 152 - "integrity": "sha512-oQGbxYYfQn6LPbMKQ1T2cjQ+DelYDO06w/gFPmdWrE6M/YUIv+KfKdEscBkr3ehJyvXZW5h3vmxuApiMuCyfAQ==", 99 + "version": "0.33.0", 100 + "resolved": "https://registry.npmjs.org/@ast-grep/napi-win32-ia32-msvc/-/napi-win32-ia32-msvc-0.33.0.tgz", 101 + "integrity": "sha512-NNIb2VK3Z2BwKp0QJSw8gkhwOUp85SgTsxJ38p+wIUAA/KzAKCJOmyOaZ301qGHt4gL+jTHgTIvJJX+9eT/REg==", 153 102 "cpu": [ 154 103 "ia32" 155 104 ], ··· 163 112 } 164 113 }, 165 114 "node_modules/@ast-grep/napi-win32-x64-msvc": { 166 - "version": "0.11.0", 167 - "resolved": "https://registry.npmjs.org/@ast-grep/napi-win32-x64-msvc/-/napi-win32-x64-msvc-0.11.0.tgz", 168 - "integrity": "sha512-qrXI4+S8W7IF6e1nlDYX2KfdzxGHyAOj5kGvWk+TqBuAnA0rWQ513hJzdviiGpbB5VPnJkEhOVsDets8acKd6w==", 115 + "version": "0.33.0", 116 + "resolved": "https://registry.npmjs.org/@ast-grep/napi-win32-x64-msvc/-/napi-win32-x64-msvc-0.33.0.tgz", 117 + "integrity": "sha512-gW7viQQjdPA1HoCkpCqoonC81TOwcpP828w/XqZFE/L6uhD8SF2usul8KNBQOiX3O7/fqYEOnbtWMCrwZIqG1Q==", 169 118 "cpu": [ 170 119 "x64" 171 120 ], ··· 178 127 "node": ">= 10" 179 128 } 180 129 }, 130 + "node_modules/@esbuild/aix-ppc64": { 131 + "version": "0.25.5", 132 + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.5.tgz", 133 + "integrity": "sha512-9o3TMmpmftaCMepOdA5k/yDw8SfInyzWWTjYTFCX3kPSDJMROQTb8jg+h9Cnwnmm1vOzvxN7gIfB5V2ewpjtGA==", 134 + "cpu": [ 135 + "ppc64" 136 + ], 137 + "license": "MIT", 138 + "optional": true, 139 + "os": [ 140 + "aix" 141 + ], 142 + "engines": { 143 + "node": ">=18" 144 + } 145 + }, 181 146 "node_modules/@esbuild/android-arm": { 182 - "version": "0.19.8", 183 - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.19.8.tgz", 184 - "integrity": "sha512-31E2lxlGM1KEfivQl8Yf5aYU/mflz9g06H6S15ITUFQueMFtFjESRMoDSkvMo8thYvLBax+VKTPlpnx+sPicOA==", 147 + "version": "0.25.5", 148 + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.5.tgz", 149 + "integrity": "sha512-AdJKSPeEHgi7/ZhuIPtcQKr5RQdo6OO2IL87JkianiMYMPbCtot9fxPbrMiBADOWWm3T2si9stAiVsGbTQFkbA==", 185 150 "cpu": [ 186 151 "arm" 187 152 ], ··· 207 140 "android" 208 141 ], 209 142 "engines": { 210 - "node": ">=12" 143 + "node": ">=18" 211 144 } 212 145 }, 213 146 "node_modules/@esbuild/android-arm64": { 214 - "version": "0.19.8", 215 - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.19.8.tgz", 216 - "integrity": "sha512-B8JbS61bEunhfx8kasogFENgQfr/dIp+ggYXwTqdbMAgGDhRa3AaPpQMuQU0rNxDLECj6FhDzk1cF9WHMVwrtA==", 147 + "version": "0.25.5", 148 + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.5.tgz", 149 + "integrity": "sha512-VGzGhj4lJO+TVGV1v8ntCZWJktV7SGCs3Pn1GRWI1SBFtRALoomm8k5E9Pmwg3HOAal2VDc2F9+PM/rEY6oIDg==", 217 150 "cpu": [ 218 151 "arm64" 219 152 ], ··· 223 156 "android" 224 157 ], 225 158 "engines": { 226 - "node": ">=12" 159 + "node": ">=18" 227 160 } 228 161 }, 229 162 "node_modules/@esbuild/android-x64": { 230 - "version": "0.19.8", 231 - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.19.8.tgz", 232 - "integrity": "sha512-rdqqYfRIn4jWOp+lzQttYMa2Xar3OK9Yt2fhOhzFXqg0rVWEfSclJvZq5fZslnz6ypHvVf3CT7qyf0A5pM682A==", 163 + "version": "0.25.5", 164 + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.5.tgz", 165 + "integrity": "sha512-D2GyJT1kjvO//drbRT3Hib9XPwQeWd9vZoBJn+bu/lVsOZ13cqNdDeqIF/xQ5/VmWvMduP6AmXvylO/PIc2isw==", 233 166 "cpu": [ 234 167 "x64" 235 168 ], ··· 239 172 "android" 240 173 ], 241 174 "engines": { 242 - "node": ">=12" 175 + "node": ">=18" 243 176 } 244 177 }, 245 178 "node_modules/@esbuild/darwin-arm64": { 246 - "version": "0.19.8", 247 - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.19.8.tgz", 248 - "integrity": "sha512-RQw9DemMbIq35Bprbboyf8SmOr4UXsRVxJ97LgB55VKKeJOOdvsIPy0nFyF2l8U+h4PtBx/1kRf0BelOYCiQcw==", 179 + "version": "0.25.5", 180 + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.5.tgz", 181 + "integrity": "sha512-GtaBgammVvdF7aPIgH2jxMDdivezgFu6iKpmT+48+F8Hhg5J/sfnDieg0aeG/jfSvkYQU2/pceFPDKlqZzwnfQ==", 249 182 "cpu": [ 250 183 "arm64" 251 184 ], ··· 255 188 "darwin" 256 189 ], 257 190 "engines": { 258 - "node": ">=12" 191 + "node": ">=18" 259 192 } 260 193 }, 261 194 "node_modules/@esbuild/darwin-x64": { 262 - "version": "0.19.8", 263 - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.19.8.tgz", 264 - "integrity": "sha512-3sur80OT9YdeZwIVgERAysAbwncom7b4bCI2XKLjMfPymTud7e/oY4y+ci1XVp5TfQp/bppn7xLw1n/oSQY3/Q==", 195 + "version": "0.25.5", 196 + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.5.tgz", 197 + "integrity": "sha512-1iT4FVL0dJ76/q1wd7XDsXrSW+oLoquptvh4CLR4kITDtqi2e/xwXwdCVH8hVHU43wgJdsq7Gxuzcs6Iq/7bxQ==", 265 198 "cpu": [ 266 199 "x64" 267 200 ], ··· 271 204 "darwin" 272 205 ], 273 206 "engines": { 274 - "node": ">=12" 207 + "node": ">=18" 275 208 } 276 209 }, 277 210 "node_modules/@esbuild/freebsd-arm64": { 278 - "version": "0.19.8", 279 - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.19.8.tgz", 280 - "integrity": "sha512-WAnPJSDattvS/XtPCTj1tPoTxERjcTpH6HsMr6ujTT+X6rylVe8ggxk8pVxzf5U1wh5sPODpawNicF5ta/9Tmw==", 211 + "version": "0.25.5", 212 + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.5.tgz", 213 + "integrity": "sha512-nk4tGP3JThz4La38Uy/gzyXtpkPW8zSAmoUhK9xKKXdBCzKODMc2adkB2+8om9BDYugz+uGV7sLmpTYzvmz6Sw==", 281 214 "cpu": [ 282 215 "arm64" 283 216 ], ··· 287 220 "freebsd" 288 221 ], 289 222 "engines": { 290 - "node": ">=12" 223 + "node": ">=18" 291 224 } 292 225 }, 293 226 "node_modules/@esbuild/freebsd-x64": { 294 - "version": "0.19.8", 295 - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.19.8.tgz", 296 - "integrity": "sha512-ICvZyOplIjmmhjd6mxi+zxSdpPTKFfyPPQMQTK/w+8eNK6WV01AjIztJALDtwNNfFhfZLux0tZLC+U9nSyA5Zg==", 227 + "version": "0.25.5", 228 + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.5.tgz", 229 + "integrity": "sha512-PrikaNjiXdR2laW6OIjlbeuCPrPaAl0IwPIaRv+SMV8CiM8i2LqVUHFC1+8eORgWyY7yhQY+2U2fA55mBzReaw==", 297 230 "cpu": [ 298 231 "x64" 299 232 ], ··· 303 236 "freebsd" 304 237 ], 305 238 "engines": { 306 - "node": ">=12" 239 + "node": ">=18" 307 240 } 308 241 }, 309 242 "node_modules/@esbuild/linux-arm": { 310 - "version": "0.19.8", 311 - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.19.8.tgz", 312 - "integrity": "sha512-H4vmI5PYqSvosPaTJuEppU9oz1dq2A7Mr2vyg5TF9Ga+3+MGgBdGzcyBP7qK9MrwFQZlvNyJrvz6GuCaj3OukQ==", 243 + "version": "0.25.5", 244 + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.5.tgz", 245 + "integrity": "sha512-cPzojwW2okgh7ZlRpcBEtsX7WBuqbLrNXqLU89GxWbNt6uIg78ET82qifUy3W6OVww6ZWobWub5oqZOVtwolfw==", 313 246 "cpu": [ 314 247 "arm" 315 248 ], ··· 319 252 "linux" 320 253 ], 321 254 "engines": { 322 - "node": ">=12" 255 + "node": ">=18" 323 256 } 324 257 }, 325 258 "node_modules/@esbuild/linux-arm64": { 326 - "version": "0.19.8", 327 - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.19.8.tgz", 328 - "integrity": "sha512-z1zMZivxDLHWnyGOctT9JP70h0beY54xDDDJt4VpTX+iwA77IFsE1vCXWmprajJGa+ZYSqkSbRQ4eyLCpCmiCQ==", 259 + "version": "0.25.5", 260 + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.5.tgz", 261 + "integrity": "sha512-Z9kfb1v6ZlGbWj8EJk9T6czVEjjq2ntSYLY2cw6pAZl4oKtfgQuS4HOq41M/BcoLPzrUbNd+R4BXFyH//nHxVg==", 329 262 "cpu": [ 330 263 "arm64" 331 264 ], ··· 335 268 "linux" 336 269 ], 337 270 "engines": { 338 - "node": ">=12" 271 + "node": ">=18" 339 272 } 340 273 }, 341 274 "node_modules/@esbuild/linux-ia32": { 342 - "version": "0.19.8", 343 - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.19.8.tgz", 344 - "integrity": "sha512-1a8suQiFJmZz1khm/rDglOc8lavtzEMRo0v6WhPgxkrjcU0LkHj+TwBrALwoz/OtMExvsqbbMI0ChyelKabSvQ==", 275 + "version": "0.25.5", 276 + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.5.tgz", 277 + "integrity": "sha512-sQ7l00M8bSv36GLV95BVAdhJ2QsIbCuCjh/uYrWiMQSUuV+LpXwIqhgJDcvMTj+VsQmqAHL2yYaasENvJ7CDKA==", 345 278 "cpu": [ 346 279 "ia32" 347 280 ], ··· 351 284 "linux" 352 285 ], 353 286 "engines": { 354 - "node": ">=12" 287 + "node": ">=18" 355 288 } 356 289 }, 357 290 "node_modules/@esbuild/linux-loong64": { 358 - "version": "0.19.8", 359 - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.19.8.tgz", 360 - "integrity": "sha512-fHZWS2JJxnXt1uYJsDv9+b60WCc2RlvVAy1F76qOLtXRO+H4mjt3Tr6MJ5l7Q78X8KgCFudnTuiQRBhULUyBKQ==", 291 + "version": "0.25.5", 292 + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.5.tgz", 293 + "integrity": "sha512-0ur7ae16hDUC4OL5iEnDb0tZHDxYmuQyhKhsPBV8f99f6Z9KQM02g33f93rNH5A30agMS46u2HP6qTdEt6Q1kg==", 361 294 "cpu": [ 362 295 "loong64" 363 296 ], ··· 367 300 "linux" 368 301 ], 369 302 "engines": { 370 - "node": ">=12" 303 + "node": ">=18" 371 304 } 372 305 }, 373 306 "node_modules/@esbuild/linux-mips64el": { 374 - "version": "0.19.8", 375 - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.19.8.tgz", 376 - "integrity": "sha512-Wy/z0EL5qZYLX66dVnEg9riiwls5IYnziwuju2oUiuxVc+/edvqXa04qNtbrs0Ukatg5HEzqT94Zs7J207dN5Q==", 307 + "version": "0.25.5", 308 + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.5.tgz", 309 + "integrity": "sha512-kB/66P1OsHO5zLz0i6X0RxlQ+3cu0mkxS3TKFvkb5lin6uwZ/ttOkP3Z8lfR9mJOBk14ZwZ9182SIIWFGNmqmg==", 377 310 "cpu": [ 378 311 "mips64el" 379 312 ], ··· 383 316 "linux" 384 317 ], 385 318 "engines": { 386 - "node": ">=12" 319 + "node": ">=18" 387 320 } 388 321 }, 389 322 "node_modules/@esbuild/linux-ppc64": { 390 - "version": "0.19.8", 391 - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.19.8.tgz", 392 - "integrity": "sha512-ETaW6245wK23YIEufhMQ3HSeHO7NgsLx8gygBVldRHKhOlD1oNeNy/P67mIh1zPn2Hr2HLieQrt6tWrVwuqrxg==", 323 + "version": "0.25.5", 324 + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.5.tgz", 325 + "integrity": "sha512-UZCmJ7r9X2fe2D6jBmkLBMQetXPXIsZjQJCjgwpVDz+YMcS6oFR27alkgGv3Oqkv07bxdvw7fyB71/olceJhkQ==", 393 326 "cpu": [ 394 327 "ppc64" 395 328 ], ··· 399 332 "linux" 400 333 ], 401 334 "engines": { 402 - "node": ">=12" 335 + "node": ">=18" 403 336 } 404 337 }, 405 338 "node_modules/@esbuild/linux-riscv64": { 406 - "version": "0.19.8", 407 - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.19.8.tgz", 408 - "integrity": "sha512-T2DRQk55SgoleTP+DtPlMrxi/5r9AeFgkhkZ/B0ap99zmxtxdOixOMI570VjdRCs9pE4Wdkz7JYrsPvsl7eESg==", 339 + "version": "0.25.5", 340 + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.5.tgz", 341 + "integrity": "sha512-kTxwu4mLyeOlsVIFPfQo+fQJAV9mh24xL+y+Bm6ej067sYANjyEw1dNHmvoqxJUCMnkBdKpvOn0Ahql6+4VyeA==", 409 342 "cpu": [ 410 343 "riscv64" 411 344 ], ··· 415 348 "linux" 416 349 ], 417 350 "engines": { 418 - "node": ">=12" 351 + "node": ">=18" 419 352 } 420 353 }, 421 354 "node_modules/@esbuild/linux-s390x": { 422 - "version": "0.19.8", 423 - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.19.8.tgz", 424 - "integrity": "sha512-NPxbdmmo3Bk7mbNeHmcCd7R7fptJaczPYBaELk6NcXxy7HLNyWwCyDJ/Xx+/YcNH7Im5dHdx9gZ5xIwyliQCbg==", 355 + "version": "0.25.5", 356 + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.5.tgz", 357 + "integrity": "sha512-K2dSKTKfmdh78uJ3NcWFiqyRrimfdinS5ErLSn3vluHNeHVnBAFWC8a4X5N+7FgVE1EjXS1QDZbpqZBjfrqMTQ==", 425 358 "cpu": [ 426 359 "s390x" 427 360 ], ··· 431 364 "linux" 432 365 ], 433 366 "engines": { 434 - "node": ">=12" 367 + "node": ">=18" 435 368 } 436 369 }, 437 370 "node_modules/@esbuild/linux-x64": { 438 - "version": "0.19.8", 439 - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.19.8.tgz", 440 - "integrity": "sha512-lytMAVOM3b1gPypL2TRmZ5rnXl7+6IIk8uB3eLsV1JwcizuolblXRrc5ShPrO9ls/b+RTp+E6gbsuLWHWi2zGg==", 371 + "version": "0.25.5", 372 + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.5.tgz", 373 + "integrity": "sha512-uhj8N2obKTE6pSZ+aMUbqq+1nXxNjZIIjCjGLfsWvVpy7gKCOL6rsY1MhRh9zLtUtAI7vpgLMK6DxjO8Qm9lJw==", 441 374 "cpu": [ 442 375 "x64" 443 376 ], ··· 447 380 "linux" 448 381 ], 449 382 "engines": { 450 - "node": ">=12" 383 + "node": ">=18" 384 + } 385 + }, 386 + "node_modules/@esbuild/netbsd-arm64": { 387 + "version": "0.25.5", 388 + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.5.tgz", 389 + "integrity": "sha512-pwHtMP9viAy1oHPvgxtOv+OkduK5ugofNTVDilIzBLpoWAM16r7b/mxBvfpuQDpRQFMfuVr5aLcn4yveGvBZvw==", 390 + "cpu": [ 391 + "arm64" 392 + ], 393 + "license": "MIT", 394 + "optional": true, 395 + "os": [ 396 + "netbsd" 397 + ], 398 + "engines": { 399 + "node": ">=18" 451 400 } 452 401 }, 453 402 "node_modules/@esbuild/netbsd-x64": { 454 - "version": "0.19.8", 455 - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.19.8.tgz", 456 - "integrity": "sha512-hvWVo2VsXz/8NVt1UhLzxwAfo5sioj92uo0bCfLibB0xlOmimU/DeAEsQILlBQvkhrGjamP0/el5HU76HAitGw==", 403 + "version": "0.25.5", 404 + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.5.tgz", 405 + "integrity": "sha512-WOb5fKrvVTRMfWFNCroYWWklbnXH0Q5rZppjq0vQIdlsQKuw6mdSihwSo4RV/YdQ5UCKKvBy7/0ZZYLBZKIbwQ==", 457 406 "cpu": [ 458 407 "x64" 459 408 ], ··· 479 396 "netbsd" 480 397 ], 481 398 "engines": { 482 - "node": ">=12" 399 + "node": ">=18" 400 + } 401 + }, 402 + "node_modules/@esbuild/openbsd-arm64": { 403 + "version": "0.25.5", 404 + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.5.tgz", 405 + "integrity": "sha512-7A208+uQKgTxHd0G0uqZO8UjK2R0DDb4fDmERtARjSHWxqMTye4Erz4zZafx7Di9Cv+lNHYuncAkiGFySoD+Mw==", 406 + "cpu": [ 407 + "arm64" 408 + ], 409 + "license": "MIT", 410 + "optional": true, 411 + "os": [ 412 + "openbsd" 413 + ], 414 + "engines": { 415 + "node": ">=18" 483 416 } 484 417 }, 485 418 "node_modules/@esbuild/openbsd-x64": { 486 - "version": "0.19.8", 487 - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.19.8.tgz", 488 - "integrity": "sha512-/7Y7u77rdvmGTxR83PgaSvSBJCC2L3Kb1M/+dmSIvRvQPXXCuC97QAwMugBNG0yGcbEGfFBH7ojPzAOxfGNkwQ==", 419 + "version": "0.25.5", 420 + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.5.tgz", 421 + "integrity": "sha512-G4hE405ErTWraiZ8UiSoesH8DaCsMm0Cay4fsFWOOUcz8b8rC6uCvnagr+gnioEjWn0wC+o1/TAHt+It+MpIMg==", 489 422 "cpu": [ 490 423 "x64" 491 424 ], ··· 511 412 "openbsd" 512 413 ], 513 414 "engines": { 514 - "node": ">=12" 415 + "node": ">=18" 515 416 } 516 417 }, 517 418 "node_modules/@esbuild/sunos-x64": { 518 - "version": "0.19.8", 519 - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.19.8.tgz", 520 - "integrity": "sha512-9Lc4s7Oi98GqFA4HzA/W2JHIYfnXbUYgekUP/Sm4BG9sfLjyv6GKKHKKVs83SMicBF2JwAX6A1PuOLMqpD001w==", 419 + "version": "0.25.5", 420 + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.5.tgz", 421 + "integrity": "sha512-l+azKShMy7FxzY0Rj4RCt5VD/q8mG/e+mDivgspo+yL8zW7qEwctQ6YqKX34DTEleFAvCIUviCFX1SDZRSyMQA==", 521 422 "cpu": [ 522 423 "x64" 523 424 ], ··· 527 428 "sunos" 528 429 ], 529 430 "engines": { 530 - "node": ">=12" 431 + "node": ">=18" 531 432 } 532 433 }, 533 434 "node_modules/@esbuild/win32-arm64": { 534 - "version": "0.19.8", 535 - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.19.8.tgz", 536 - "integrity": "sha512-rq6WzBGjSzihI9deW3fC2Gqiak68+b7qo5/3kmB6Gvbh/NYPA0sJhrnp7wgV4bNwjqM+R2AApXGxMO7ZoGhIJg==", 435 + "version": "0.25.5", 436 + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.5.tgz", 437 + "integrity": "sha512-O2S7SNZzdcFG7eFKgvwUEZ2VG9D/sn/eIiz8XRZ1Q/DO5a3s76Xv0mdBzVM5j5R639lXQmPmSo0iRpHqUUrsxw==", 537 438 "cpu": [ 538 439 "arm64" 539 440 ], ··· 543 444 "win32" 544 445 ], 545 446 "engines": { 546 - "node": ">=12" 447 + "node": ">=18" 547 448 } 548 449 }, 549 450 "node_modules/@esbuild/win32-ia32": { 550 - "version": "0.19.8", 551 - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.19.8.tgz", 552 - "integrity": "sha512-AIAbverbg5jMvJznYiGhrd3sumfwWs8572mIJL5NQjJa06P8KfCPWZQ0NwZbPQnbQi9OWSZhFVSUWjjIrn4hSw==", 451 + "version": "0.25.5", 452 + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.5.tgz", 453 + "integrity": "sha512-onOJ02pqs9h1iMJ1PQphR+VZv8qBMQ77Klcsqv9CNW2w6yLqoURLcgERAIurY6QE63bbLuqgP9ATqajFLK5AMQ==", 553 454 "cpu": [ 554 455 "ia32" 555 456 ], ··· 559 460 "win32" 560 461 ], 561 462 "engines": { 562 - "node": ">=12" 463 + "node": ">=18" 563 464 } 564 465 }, 565 466 "node_modules/@esbuild/win32-x64": { 566 - "version": "0.19.8", 567 - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.19.8.tgz", 568 - "integrity": "sha512-bfZ0cQ1uZs2PqpulNL5j/3w+GDhP36k1K5c38QdQg+Swy51jFZWWeIkteNsufkQxp986wnqRRsb/bHbY1WQ7TA==", 467 + "version": "0.25.5", 468 + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.5.tgz", 469 + "integrity": "sha512-TXv6YnJ8ZMVdX+SXWVBo/0p8LTcrUYngpWjvm91TMjjBQii7Oz11Lw5lbDV5Y0TzuhSJHwiH4hEtC1I42mMS0g==", 569 470 "cpu": [ 570 471 "x64" 571 472 ], ··· 575 476 "win32" 576 477 ], 577 478 "engines": { 578 - "node": ">=12" 479 + "node": ">=18" 579 480 } 580 481 }, 581 482 "node_modules/@shopify/cli": { 582 - "version": "3.69.3", 583 - "resolved": "https://registry.npmjs.org/@shopify/cli/-/cli-3.69.3.tgz", 584 - "integrity": "sha512-tc7gH5EOgDvAuSGazTP4zl0Yj4547gwypyDzmUfxb15PExMpj7lMyIQujKyAGwEfu1+LRF3K13Hfgib1sqvUUQ==", 483 + "version": "3.81.2", 484 + "resolved": "https://registry.npmjs.org/@shopify/cli/-/cli-3.81.2.tgz", 485 + "integrity": "sha512-dX5ILPQ86FIvPdUDoYe4A9Jl2cRQ6vZPCD6uT31mRG1xk7cBy/y4rz8PDSZJnB59LjEmiuJQuWC79bq0F1vXVA==", 585 486 "license": "MIT", 586 487 "os": [ 587 488 "darwin", ··· 589 490 "win32" 590 491 ], 591 492 "dependencies": { 592 - "@ast-grep/napi": "0.11.0", 593 - "esbuild": "0.19.8" 493 + "@ast-grep/napi": "0.33.0", 494 + "esbuild": "0.25.5", 495 + "global-agent": "3.0.0" 594 496 }, 595 497 "bin": { 596 498 "shopify": "bin/run.js" 597 499 }, 598 500 "engines": { 599 - "node": "^18.20.0 || >=20.10.0" 501 + "node": ">=20.10.0" 600 502 } 601 503 }, 504 + "node_modules/boolean": { 505 + "version": "3.2.0", 506 + "resolved": "https://registry.npmjs.org/boolean/-/boolean-3.2.0.tgz", 507 + "integrity": "sha512-d0II/GO9uf9lfUHH2BQsjxzRJZBdsjgsBiW4BvhWk/3qoKwQFjIDVN19PfX8F2D/r9PCMTtLWjYVCFrpeYUzsw==", 508 + "deprecated": "Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.", 509 + "license": "MIT" 510 + }, 511 + "node_modules/define-data-property": { 512 + "version": "1.1.4", 513 + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", 514 + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", 515 + "license": "MIT", 516 + "dependencies": { 517 + "es-define-property": "^1.0.0", 518 + "es-errors": "^1.3.0", 519 + "gopd": "^1.0.1" 520 + }, 521 + "engines": { 522 + "node": ">= 0.4" 523 + }, 524 + "funding": { 525 + "url": "https://github.com/sponsors/ljharb" 526 + } 527 + }, 528 + "node_modules/define-properties": { 529 + "version": "1.2.1", 530 + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", 531 + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", 532 + "license": "MIT", 533 + "dependencies": { 534 + "define-data-property": "^1.0.1", 535 + "has-property-descriptors": "^1.0.0", 536 + "object-keys": "^1.1.1" 537 + }, 538 + "engines": { 539 + "node": ">= 0.4" 540 + }, 541 + "funding": { 542 + "url": "https://github.com/sponsors/ljharb" 543 + } 544 + }, 545 + "node_modules/detect-node": { 546 + "version": "2.1.0", 547 + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", 548 + "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", 549 + "license": "MIT" 550 + }, 551 + "node_modules/es-define-property": { 552 + "version": "1.0.1", 553 + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", 554 + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", 555 + "license": "MIT", 556 + "engines": { 557 + "node": ">= 0.4" 558 + } 559 + }, 560 + "node_modules/es-errors": { 561 + "version": "1.3.0", 562 + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", 563 + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", 564 + "license": "MIT", 565 + "engines": { 566 + "node": ">= 0.4" 567 + } 568 + }, 569 + "node_modules/es6-error": { 570 + "version": "4.1.1", 571 + "resolved": "https://registry.npmjs.org/es6-error/-/es6-error-4.1.1.tgz", 572 + "integrity": "sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==", 573 + "license": "MIT" 574 + }, 602 575 "node_modules/esbuild": { 603 - "version": "0.19.8", 604 - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.19.8.tgz", 605 - "integrity": "sha512-l7iffQpT2OrZfH2rXIp7/FkmaeZM0vxbxN9KfiCwGYuZqzMg/JdvX26R31Zxn/Pxvsrg3Y9N6XTcnknqDyyv4w==", 576 + "version": "0.25.5", 577 + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.5.tgz", 578 + "integrity": "sha512-P8OtKZRv/5J5hhz0cUAdu/cLuPIKXpQl1R9pZtvmHWQvrAUVd0UNIPT4IB4W3rNOqVO0rlqHmCIbSwxh/c9yUQ==", 606 579 "hasInstallScript": true, 607 580 "license": "MIT", 608 581 "bin": { 609 582 "esbuild": "bin/esbuild" 610 583 }, 611 584 "engines": { 612 - "node": ">=12" 585 + "node": ">=18" 613 586 }, 614 587 "optionalDependencies": { 615 - "@esbuild/android-arm": "0.19.8", 616 - "@esbuild/android-arm64": "0.19.8", 617 - "@esbuild/android-x64": "0.19.8", 618 - "@esbuild/darwin-arm64": "0.19.8", 619 - "@esbuild/darwin-x64": "0.19.8", 620 - "@esbuild/freebsd-arm64": "0.19.8", 621 - "@esbuild/freebsd-x64": "0.19.8", 622 - "@esbuild/linux-arm": "0.19.8", 623 - "@esbuild/linux-arm64": "0.19.8", 624 - "@esbuild/linux-ia32": "0.19.8", 625 - "@esbuild/linux-loong64": "0.19.8", 626 - "@esbuild/linux-mips64el": "0.19.8", 627 - "@esbuild/linux-ppc64": "0.19.8", 628 - "@esbuild/linux-riscv64": "0.19.8", 629 - "@esbuild/linux-s390x": "0.19.8", 630 - "@esbuild/linux-x64": "0.19.8", 631 - "@esbuild/netbsd-x64": "0.19.8", 632 - "@esbuild/openbsd-x64": "0.19.8", 633 - "@esbuild/sunos-x64": "0.19.8", 634 - "@esbuild/win32-arm64": "0.19.8", 635 - "@esbuild/win32-ia32": "0.19.8", 636 - "@esbuild/win32-x64": "0.19.8" 588 + "@esbuild/aix-ppc64": "0.25.5", 589 + "@esbuild/android-arm": "0.25.5", 590 + "@esbuild/android-arm64": "0.25.5", 591 + "@esbuild/android-x64": "0.25.5", 592 + "@esbuild/darwin-arm64": "0.25.5", 593 + "@esbuild/darwin-x64": "0.25.5", 594 + "@esbuild/freebsd-arm64": "0.25.5", 595 + "@esbuild/freebsd-x64": "0.25.5", 596 + "@esbuild/linux-arm": "0.25.5", 597 + "@esbuild/linux-arm64": "0.25.5", 598 + "@esbuild/linux-ia32": "0.25.5", 599 + "@esbuild/linux-loong64": "0.25.5", 600 + "@esbuild/linux-mips64el": "0.25.5", 601 + "@esbuild/linux-ppc64": "0.25.5", 602 + "@esbuild/linux-riscv64": "0.25.5", 603 + "@esbuild/linux-s390x": "0.25.5", 604 + "@esbuild/linux-x64": "0.25.5", 605 + "@esbuild/netbsd-arm64": "0.25.5", 606 + "@esbuild/netbsd-x64": "0.25.5", 607 + "@esbuild/openbsd-arm64": "0.25.5", 608 + "@esbuild/openbsd-x64": "0.25.5", 609 + "@esbuild/sunos-x64": "0.25.5", 610 + "@esbuild/win32-arm64": "0.25.5", 611 + "@esbuild/win32-ia32": "0.25.5", 612 + "@esbuild/win32-x64": "0.25.5" 613 + } 614 + }, 615 + "node_modules/escape-string-regexp": { 616 + "version": "4.0.0", 617 + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", 618 + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", 619 + "license": "MIT", 620 + "engines": { 621 + "node": ">=10" 622 + }, 623 + "funding": { 624 + "url": "https://github.com/sponsors/sindresorhus" 625 + } 626 + }, 627 + "node_modules/global-agent": { 628 + "version": "3.0.0", 629 + "resolved": "https://registry.npmjs.org/global-agent/-/global-agent-3.0.0.tgz", 630 + "integrity": "sha512-PT6XReJ+D07JvGoxQMkT6qji/jVNfX/h364XHZOWeRzy64sSFr+xJ5OX7LI3b4MPQzdL4H8Y8M0xzPpsVMwA8Q==", 631 + "license": "BSD-3-Clause", 632 + "dependencies": { 633 + "boolean": "^3.0.1", 634 + "es6-error": "^4.1.1", 635 + "matcher": "^3.0.0", 636 + "roarr": "^2.15.3", 637 + "semver": "^7.3.2", 638 + "serialize-error": "^7.0.1" 639 + }, 640 + "engines": { 641 + "node": ">=10.0" 642 + } 643 + }, 644 + "node_modules/globalthis": { 645 + "version": "1.0.4", 646 + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz", 647 + "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==", 648 + "license": "MIT", 649 + "dependencies": { 650 + "define-properties": "^1.2.1", 651 + "gopd": "^1.0.1" 652 + }, 653 + "engines": { 654 + "node": ">= 0.4" 655 + }, 656 + "funding": { 657 + "url": "https://github.com/sponsors/ljharb" 658 + } 659 + }, 660 + "node_modules/gopd": { 661 + "version": "1.2.0", 662 + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", 663 + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", 664 + "license": "MIT", 665 + "engines": { 666 + "node": ">= 0.4" 667 + }, 668 + "funding": { 669 + "url": "https://github.com/sponsors/ljharb" 670 + } 671 + }, 672 + "node_modules/has-property-descriptors": { 673 + "version": "1.0.2", 674 + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", 675 + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", 676 + "license": "MIT", 677 + "dependencies": { 678 + "es-define-property": "^1.0.0" 679 + }, 680 + "funding": { 681 + "url": "https://github.com/sponsors/ljharb" 682 + } 683 + }, 684 + "node_modules/json-stringify-safe": { 685 + "version": "5.0.1", 686 + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", 687 + "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==", 688 + "license": "ISC" 689 + }, 690 + "node_modules/matcher": { 691 + "version": "3.0.0", 692 + "resolved": "https://registry.npmjs.org/matcher/-/matcher-3.0.0.tgz", 693 + "integrity": "sha512-OkeDaAZ/bQCxeFAozM55PKcKU0yJMPGifLwV4Qgjitu+5MoAfSQN4lsLJeXZ1b8w0x+/Emda6MZgXS1jvsapng==", 694 + "license": "MIT", 695 + "dependencies": { 696 + "escape-string-regexp": "^4.0.0" 697 + }, 698 + "engines": { 699 + "node": ">=10" 700 + } 701 + }, 702 + "node_modules/object-keys": { 703 + "version": "1.1.1", 704 + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", 705 + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", 706 + "license": "MIT", 707 + "engines": { 708 + "node": ">= 0.4" 709 + } 710 + }, 711 + "node_modules/roarr": { 712 + "version": "2.15.4", 713 + "resolved": "https://registry.npmjs.org/roarr/-/roarr-2.15.4.tgz", 714 + "integrity": "sha512-CHhPh+UNHD2GTXNYhPWLnU8ONHdI+5DI+4EYIAOaiD63rHeYlZvyh8P+in5999TTSFgUYuKUAjzRI4mdh/p+2A==", 715 + "license": "BSD-3-Clause", 716 + "dependencies": { 717 + "boolean": "^3.0.1", 718 + "detect-node": "^2.0.4", 719 + "globalthis": "^1.0.1", 720 + "json-stringify-safe": "^5.0.1", 721 + "semver-compare": "^1.0.0", 722 + "sprintf-js": "^1.1.2" 723 + }, 724 + "engines": { 725 + "node": ">=8.0" 726 + } 727 + }, 728 + "node_modules/semver": { 729 + "version": "7.7.2", 730 + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz", 731 + "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==", 732 + "license": "ISC", 733 + "bin": { 734 + "semver": "bin/semver.js" 735 + }, 736 + "engines": { 737 + "node": ">=10" 738 + } 739 + }, 740 + "node_modules/semver-compare": { 741 + "version": "1.0.0", 742 + "resolved": "https://registry.npmjs.org/semver-compare/-/semver-compare-1.0.0.tgz", 743 + "integrity": "sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==", 744 + "license": "MIT" 745 + }, 746 + "node_modules/serialize-error": { 747 + "version": "7.0.1", 748 + "resolved": "https://registry.npmjs.org/serialize-error/-/serialize-error-7.0.1.tgz", 749 + "integrity": "sha512-8I8TjW5KMOKsZQTvoxjuSIa7foAwPWGOts+6o7sgjz41/qMD9VQHEDxi6PBvK2l0MXUmqZyNpUK+T2tQaaElvw==", 750 + "license": "MIT", 751 + "dependencies": { 752 + "type-fest": "^0.13.1" 753 + }, 754 + "engines": { 755 + "node": ">=10" 756 + }, 757 + "funding": { 758 + "url": "https://github.com/sponsors/sindresorhus" 759 + } 760 + }, 761 + "node_modules/sprintf-js": { 762 + "version": "1.1.3", 763 + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.3.tgz", 764 + "integrity": "sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==", 765 + "license": "BSD-3-Clause" 766 + }, 767 + "node_modules/type-fest": { 768 + "version": "0.13.1", 769 + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.13.1.tgz", 770 + "integrity": "sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==", 771 + "license": "(MIT OR CC0-1.0)", 772 + "engines": { 773 + "node": ">=10" 774 + }, 775 + "funding": { 776 + "url": "https://github.com/sponsors/sindresorhus" 637 777 } 638 778 } 639 779 }
+2 -2
pkgs/by-name/sh/shopify-cli/manifests/package.json
··· 1 1 { 2 2 "name": "shopify", 3 - "version": "3.69.3", 3 + "version": "3.81.2", 4 4 "private": true, 5 5 "bin": { 6 6 "shopify": "node_modules/@shopify/cli/bin/run.js" 7 7 }, 8 8 "dependencies": { 9 - "@shopify/cli": "3.69.3" 9 + "@shopify/cli": "3.81.2" 10 10 } 11 11 }
+2 -2
pkgs/by-name/sh/shopify-cli/package.nix
··· 5 5 shopify-cli, 6 6 }: 7 7 let 8 - version = "3.69.3"; 8 + version = "3.81.2"; 9 9 in 10 10 buildNpmPackage { 11 11 pname = "shopify"; ··· 13 13 14 14 src = ./manifests; 15 15 16 - npmDepsHash = "sha256-QhbOKOs/0GEOeySG4uROzgtD4o7C+6tS/TAaPcmC3xk="; 16 + npmDepsHash = "sha256-64D+QM8fZmsknoHpj4S24fNsv8e2YcZfWCZhJRnwgUc="; 17 17 dontNpmBuild = true; 18 18 19 19 passthru = {
+3
pkgs/by-name/so/socklog/package.nix
··· 50 50 51 51 doCheck = true; 52 52 53 + # Needed for tests 54 + __darwinAllowLocalNetworking = true; 55 + 53 56 meta = { 54 57 description = "System and kernel logging services"; 55 58 homepage = "https://smarden.org/socklog/";
+2 -2
pkgs/by-name/yo/youtrack/package.nix
··· 10 10 11 11 stdenvNoCC.mkDerivation (finalAttrs: { 12 12 pname = "youtrack"; 13 - version = "2025.1.76253"; 13 + version = "2025.1.82518"; 14 14 15 15 src = fetchzip { 16 16 url = "https://download.jetbrains.com/charisma/youtrack-${finalAttrs.version}.zip"; 17 - hash = "sha256-DW3LZAlkfB7Uqy+xj4Oe3LkYD5fQyi4lDcgv/6brSEs="; 17 + hash = "sha256-xltAkkD6JuRk+Bl3yP9l44ix/6+rTVuhgKqlroIUIFs="; 18 18 }; 19 19 20 20 nativeBuildInputs = [ makeBinaryWrapper ];
+4 -4
pkgs/development/python-modules/daqp/default.nix
··· 3 3 fetchFromGitHub, 4 4 buildPythonPackage, 5 5 unittestCheckHook, 6 - cython_0, 6 + cython, 7 7 setuptools, 8 8 wheel, 9 9 numpy, 10 10 }: 11 11 buildPythonPackage rec { 12 12 pname = "daqp"; 13 - version = "0.6.0"; 13 + version = "0.7.1"; 14 14 format = "pyproject"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "darnstrom"; 18 18 repo = "daqp"; 19 19 tag = "v${version}"; 20 - hash = "sha256-9sPYyd8J78HKDxbwkogu8tW38rgYIctEWqrriqJKy0M="; 20 + hash = "sha256-s22LVnK1qGjIpat21eXYF/Io49IYbWf1y+VUbYuPZaY="; 21 21 }; 22 22 23 23 sourceRoot = "${src.name}/interfaces/daqp-python"; ··· 38 38 ]; 39 39 40 40 nativeBuildInputs = [ 41 - cython_0 41 + cython 42 42 setuptools 43 43 wheel 44 44 ];
+2 -2
pkgs/development/python-modules/gluonts/default.nix
··· 28 28 29 29 buildPythonPackage rec { 30 30 pname = "gluonts"; 31 - version = "0.16.1"; 31 + version = "0.16.2"; 32 32 pyproject = true; 33 33 34 34 src = fetchFromGitHub { 35 35 owner = "awslabs"; 36 36 repo = "gluonts"; 37 37 tag = "v${version}"; 38 - hash = "sha256-i4yCNe8C9BZw6AZUDOZC1E9PQOOOoUovSZnOF1yzycM="; 38 + hash = "sha256-h0+RYgGMz0gPchiKGIu0/NGcWBky5AWNTJKzoupn/iQ="; 39 39 }; 40 40 41 41 build-system = [
+2 -2
pkgs/development/python-modules/icalendar/default.nix
··· 12 12 }: 13 13 14 14 buildPythonPackage rec { 15 - version = "6.3.0"; 15 + version = "6.3.1"; 16 16 pname = "icalendar"; 17 17 pyproject = true; 18 18 ··· 20 20 owner = "collective"; 21 21 repo = "icalendar"; 22 22 tag = "v${version}"; 23 - hash = "sha256-sAZVVVkugwd3veMGAqnhKA46KZpGdZdeWFbCUgyG1js="; 23 + hash = "sha256-lLcMuwKFdZbjscrp4dW5ybPHwcx9RHf44RH3BWwO6ng="; 24 24 }; 25 25 26 26 patches = [
+2 -2
pkgs/development/python-modules/paddleocr/default.nix
··· 32 32 33 33 buildPythonPackage rec { 34 34 pname = "paddleocr"; 35 - version = "3.0.2"; 35 + version = "3.0.3"; 36 36 pyproject = true; 37 37 38 38 src = fetchFromGitHub { 39 39 owner = "PaddlePaddle"; 40 40 repo = "PaddleOCR"; 41 41 tag = "v${version}"; 42 - hash = "sha256-PatqxQQR0uwZwNFYBAeAF5JfsRNhA6fzcy7lufWZARg="; 42 + hash = "sha256-K01RIyxlh9gp0RerGkqY/AiUy6/u1GAICwj2oz27muw="; 43 43 }; 44 44 45 45 patches = [
+2 -2
pkgs/development/python-modules/plaid-python/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "plaid-python"; 14 - version = "31.0.0"; 14 + version = "34.0.0"; 15 15 pyproject = true; 16 16 17 17 disabled = pythonOlder "3.6"; ··· 19 19 src = fetchPypi { 20 20 pname = "plaid_python"; 21 21 inherit version; 22 - hash = "sha256-cQAmKq3xqDih57MnUB8dSSHHVofj/4xFiY5gQ+EER9M="; 22 + hash = "sha256-x6ry7kMzxBNTQmAVCeSiq82TUi8spu/SKFFNGnInWhk="; 23 23 }; 24 24 25 25 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/pywikibot/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "pywikibot"; 13 - version = "10.0.0"; 13 + version = "10.2.0"; 14 14 format = "setuptools"; 15 15 16 16 disabled = pythonOlder "3.8"; 17 17 18 18 src = fetchPypi { 19 19 inherit pname version; 20 - hash = "sha256-tpwjokLZZUPiKDCD4hPfjBdg11p29LZv44a3hiTeIuE="; 20 + hash = "sha256-pwXF2JgcK6rA1YNQ2VQ1svBDsc8xt3Xx2+o0Xr+cOZM="; 21 21 }; 22 22 23 23 propagatedBuildInputs = [
+3 -2
pkgs/development/python-modules/sagemaker/default.nix
··· 40 40 41 41 buildPythonPackage rec { 42 42 pname = "sagemaker"; 43 - version = "2.243.0"; 43 + version = "2.244.0"; 44 44 pyproject = true; 45 45 46 46 src = fetchFromGitHub { 47 47 owner = "aws"; 48 48 repo = "sagemaker-python-sdk"; 49 49 tag = "v${version}"; 50 - hash = "sha256-Os26VMK/kR23plt+wq8kV3K+17PfP5XuBy7MIz9PQ6s="; 50 + hash = "sha256-T4E1zoZBDUbvnpndhUGYeIG845i5SvpOeYI3VSThUeU="; 51 51 }; 52 52 53 53 build-system = [ ··· 61 61 "importlib-metadata" 62 62 "numpy" 63 63 "omegaconf" 64 + "packaging" 64 65 "protobuf" 65 66 ]; 66 67
+2 -2
pkgs/development/python-modules/toggl-cli/default.nix
··· 29 29 30 30 buildPythonPackage rec { 31 31 pname = "toggl-cli"; 32 - version = "3.0.3"; 32 + version = "4.0.0"; 33 33 pyproject = true; 34 34 35 35 src = fetchFromGitHub { 36 36 owner = "AuHau"; 37 37 repo = "toggl-cli"; 38 38 tag = "v${version}"; 39 - hash = "sha256-x73gs0L+/m1cJPRkzZfna5KxU2KNjsqeUCyFo2JjkdE="; 39 + hash = "sha256-d/0w6VCth1TszolqkaWxHs6SLNiRg3sZj3H4CY+yPdw="; 40 40 }; 41 41 42 42 env.PBR_VERSION = version;
+2 -2
pkgs/development/python-modules/trl/default.nix
··· 16 16 17 17 buildPythonPackage rec { 18 18 pname = "trl"; 19 - version = "0.17.0"; 19 + version = "0.19.0"; 20 20 pyproject = true; 21 21 22 22 src = fetchFromGitHub { 23 23 owner = "huggingface"; 24 24 repo = "trl"; 25 25 tag = "v${version}"; 26 - hash = "sha256-kRZhtrKGNTJ9TJypRG9dABNn00w77dwx+JxT+2PUrfY="; 26 + hash = "sha256-TlTq3tIQfNuI+CPvIy/qPFiKPhoSQd7g7FDj4F7C3CQ="; 27 27 }; 28 28 29 29 build-system = [
+2 -2
pkgs/development/python-modules/wagtail-localize/default.nix
··· 18 18 19 19 buildPythonPackage rec { 20 20 pname = "wagtail-localize"; 21 - version = "1.11.3"; 21 + version = "1.12.1"; 22 22 pyproject = true; 23 23 24 24 disabled = pythonOlder "3.9"; ··· 27 27 repo = "wagtail-localize"; 28 28 owner = "wagtail"; 29 29 tag = "v${version}"; 30 - hash = "sha256-uTZqpitexB5e2/W9HtNo0j4gOW9vDS2BsaVq16BUFM4="; 30 + hash = "sha256-EvKz56XbanL1G5F65RvN1rN95nsole/we5YV/2ToMZ8="; 31 31 }; 32 32 33 33 build-system = [ flit-core ];
+4 -4
pkgs/os-specific/linux/kernel/xanmod-kernels.nix
··· 14 14 # kernel config in the xanmod version commit 15 15 variants = { 16 16 lts = { 17 - version = "6.12.34"; 18 - hash = "sha256-pMc6WzpgxOlgwGfsXyI8404HfHcC52tvmBGoEQidtqc="; 17 + version = "6.12.35"; 18 + hash = "sha256-cvpt18bGeTj6hcUnGLPGAHeWdWyRNh/NmXROBoRUhqw="; 19 19 }; 20 20 main = { 21 - version = "6.14.11"; 22 - hash = "sha256-NhJxhyC0HrduWfEl7TnDbGVhJk23L4rzNorPMtuMXyU="; 21 + version = "6.15.4"; 22 + hash = "sha256-6c60l4bQm6zoWhFXD9KZObnIqV6gGFRt9EdKZmBAaq8="; 23 23 }; 24 24 }; 25 25