diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 86240ff1d2b2..dcdc69d8ee9d 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -644,6 +644,11 @@ githubId = 43479487; name = "Titouan Biteau"; }; + albertchae = { + github = "albertchae"; + githubId = 217050; + name = "Albert Chae"; + }; aldoborrero = { email = "aldoborrero+nixos@pm.me"; github = "aldoborrero"; @@ -1722,6 +1727,11 @@ githubId = 135230; name = "Aycan iRiCAN"; }; + aynish = { + github = "Chickensoupwithrice"; + githubId = 22575913; + name = "Anish Lakhwara"; + }; azahi = { name = "Azat Bahawi"; email = "azat@bahawi.net"; @@ -4329,6 +4339,11 @@ githubId = 997543; name = "Dmitry Malikov"; }; + DMills27 = { + github = "DMills27"; + githubId = 5251658; + name = "Dominic Mills"; + }; DmitryTsygankov = { email = "dmitry.tsygankov@gmail.com"; github = "DmitryTsygankov"; @@ -17178,6 +17193,12 @@ githubId = 27586264; name = "Tobias Schmidt"; }; + totalchaos = { + email = "basil.keeler@outlook.com"; + github = "totalchaos05"; + githubId = 70387628; + name = "Basil Keeler"; + }; totoroot = { name = "Matthias Thym"; email = "git@thym.at"; @@ -18566,6 +18587,13 @@ githubId = 647076; name = "Yorick van Pelt"; }; + YorikSar = { + name = "Yuriy Taraday"; + email = "yorik.sar@gmail.com"; + matrix = "@yorik.sar:matrix.org"; + github = "YorikSar"; + githubId = 428074; + }; yrashk = { email = "yrashk@gmail.com"; github = "yrashk"; diff --git a/maintainers/team-list.nix b/maintainers/team-list.nix index 975a1e2c42c9..5e3a01412ee8 100644 --- a/maintainers/team-list.nix +++ b/maintainers/team-list.nix @@ -732,6 +732,7 @@ with lib.maintainers; { fridh hexa jonringer + tjni ]; scope = "Maintain the Python interpreter and related packages."; shortName = "Python"; diff --git a/nixos/modules/security/pam.nix b/nixos/modules/security/pam.nix index ee260a097c69..a431817fe1bb 100644 --- a/nixos/modules/security/pam.nix +++ b/nixos/modules/security/pam.nix @@ -697,7 +697,7 @@ let session required ${config.systemd.package}/lib/security/pam_systemd_home.so '' + optionalString cfg.makeHomeDir '' - session required ${pkgs.pam}/lib/security/pam_mkhomedir.so silent skel=${config.security.pam.makeHomeDir.skelDirectory} umask=0077 + session required ${pkgs.pam}/lib/security/pam_mkhomedir.so silent skel=${config.security.pam.makeHomeDir.skelDirectory} umask=${config.security.pam.makeHomeDir.umask} '' + optionalString cfg.updateWtmp '' session required ${pkgs.pam}/lib/security/pam_lastlog.so silent @@ -902,6 +902,16 @@ in ''; }; + security.pam.makeHomeDir.umask = mkOption { + type = types.str; + default = "0077"; + example = "0022"; + description = lib.mdDoc '' + The user file mode creation mask to use on home directories + newly created by `pam_mkhomedir`. + ''; + }; + security.pam.enableSSHAgentAuth = mkOption { type = types.bool; default = false; diff --git a/nixos/modules/services/monitoring/datadog-agent.nix b/nixos/modules/services/monitoring/datadog-agent.nix index 58a0faed962c..1736b0c088a3 100644 --- a/nixos/modules/services/monitoring/datadog-agent.nix +++ b/nixos/modules/services/monitoring/datadog-agent.nix @@ -153,6 +153,18 @@ in { type = types.bool; }; + processAgentPackage = mkOption { + default = pkgs.datadog-process-agent; + defaultText = literalExpression "pkgs.datadog-process-agent"; + description = lib.mdDoc '' + Which DataDog v7 agent package to use. Note that the provided + package is expected to have an overridable `pythonPackages`-attribute + which configures the Python environment with the Datadog + checks. + ''; + type = types.package; + }; + enableTraceAgent = mkOption { description = lib.mdDoc '' Whether to enable the trace agent. @@ -270,7 +282,7 @@ in { path = [ ]; script = '' export DD_API_KEY=$(head -n 1 ${cfg.apiKeyFile}) - ${pkgs.datadog-process-agent}/bin/process-agent --config /etc/datadog-agent/datadog.yaml + ${cfg.processAgentPackage}/bin/process-agent --config /etc/datadog-agent/datadog.yaml ''; }); diff --git a/nixos/modules/services/networking/dae.nix b/nixos/modules/services/networking/dae.nix index b0ad2c0d4bb0..231c555b3303 100644 --- a/nixos/modules/services/networking/dae.nix +++ b/nixos/modules/services/networking/dae.nix @@ -20,8 +20,8 @@ in unitConfig = { Description = "dae Service"; Documentation = "https://github.com/daeuniverse/dae"; - After = [ "network.target" "systemd-sysctl.service" ]; - Wants = [ "network.target" ]; + After = [ "network-online.target" "systemd-sysctl.service" ]; + Wants = [ "network-online.target" ]; }; serviceConfig = { diff --git a/nixos/modules/services/web-servers/minio.nix b/nixos/modules/services/web-servers/minio.nix index 21bec4f63a87..0bc7421a0e32 100644 --- a/nixos/modules/services/web-servers/minio.nix +++ b/nixos/modules/services/web-servers/minio.nix @@ -30,8 +30,8 @@ in dataDir = mkOption { default = [ "/var/lib/minio/data" ]; - type = types.listOf types.path; - description = lib.mdDoc "The list of data directories for storing the objects. Use one path for regular operation and the minimum of 4 endpoints for Erasure Code mode."; + type = types.listOf (types.either types.path types.str); + description = lib.mdDoc "The list of data directories or nodes for storing the objects. Use one path for regular operation and the minimum of 4 endpoints for Erasure Code mode."; }; configDir = mkOption { @@ -99,7 +99,7 @@ in systemd = lib.mkMerge [{ tmpfiles.rules = [ "d '${cfg.configDir}' - minio minio - -" - ] ++ (map (x: "d '" + x + "' - minio minio - - ") cfg.dataDir); + ] ++ (map (x: "d '" + x + "' - minio minio - - ") (builtins.filter lib.types.path.check cfg.dataDir)); services.minio = { description = "Minio Object Storage"; diff --git a/pkgs/applications/audio/feishin/darwin.nix b/pkgs/applications/audio/feishin/darwin.nix index b8b28f476821..fb8a27abdc41 100644 --- a/pkgs/applications/audio/feishin/darwin.nix +++ b/pkgs/applications/audio/feishin/darwin.nix @@ -17,7 +17,7 @@ stdenv.mkDerivation { src = fetchurl { url = "https://github.com/jeffvli/feishin/releases/download/v${version}/${appname}-${version}-mac-x64.zip"; - hash = "sha256-WzU/Yd3cNMIpmkKWC29mQlviYXiYV5k8+80iyzilPGc="; + hash = "sha256-J5LB4uR/NJ6ykiTqBY1VepcLujprgqwpxy7sGD0NtZw="; }; nativeBuildInputs = [ makeWrapper unzip ]; diff --git a/pkgs/applications/audio/feishin/default.nix b/pkgs/applications/audio/feishin/default.nix index f9a670dbfa3e..aff0d5681ea2 100644 --- a/pkgs/applications/audio/feishin/default.nix +++ b/pkgs/applications/audio/feishin/default.nix @@ -8,7 +8,7 @@ let extraArgs = removeAttrs args [ "callPackage" ]; pname = "feishin"; - version = "0.2.0"; + version = "0.3.0"; appname = "Feishin"; meta = with lib; { diff --git a/pkgs/applications/audio/feishin/linux.nix b/pkgs/applications/audio/feishin/linux.nix index 08adc69bb7ee..eaa6b9fc043a 100644 --- a/pkgs/applications/audio/feishin/linux.nix +++ b/pkgs/applications/audio/feishin/linux.nix @@ -35,7 +35,7 @@ stdenv.mkDerivation { src = fetchurl { url = "https://github.com/jeffvli/feishin/releases/download/v${version}/${appname}-${version}-linux-x64.tar.xz"; - hash = "sha256-o+fEjdG2iN84FEchyAKWZCpsrqDm1K1k+Q2K+cwYBZE="; + hash = "sha256-sl2zM24bb0yBTfCxtNGizp6Yu+L4nj/Uf669zylnPmE="; }; diff --git a/pkgs/applications/audio/sony-headphones-client/default.nix b/pkgs/applications/audio/sony-headphones-client/default.nix index 72d22e9fb7e4..03fc6299d5c0 100644 --- a/pkgs/applications/audio/sony-headphones-client/default.nix +++ b/pkgs/applications/audio/sony-headphones-client/default.nix @@ -15,7 +15,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake pkg-config copyDesktopItems ]; buildInputs = [ bluez dbus glew glfw imgui ]; - sourceRoot = "./source/Client"; + sourceRoot = "./${src.name}/Client"; cmakeFlags = [ "-Wno-dev" ]; diff --git a/pkgs/applications/audio/termusic/default.nix b/pkgs/applications/audio/termusic/default.nix index 158f2e708b17..0df3cfcb46b8 100644 --- a/pkgs/applications/audio/termusic/default.nix +++ b/pkgs/applications/audio/termusic/default.nix @@ -1,39 +1,66 @@ -{ lib -, stdenv -, rustPlatform -, fetchCrate -, fetchpatch +{ + alsa-lib +, AppKit +, CoreAudio +, CoreGraphics +, dbus +, Foundation +, fetchFromGitHub +, glib +, gst_all_1 +, IOKit +, lib +, MediaPlayer +, openssl , pkg-config -, alsa-lib -, darwin +, protobuf +, rustPlatform +, Security +, sqlite +, stdenv }: rustPlatform.buildRustPackage rec { pname = "termusic"; - version = "0.7.10"; + version = "0.7.11"; - src = fetchCrate { - inherit pname version; - hash = "sha256-m0hi5u4BcRcEDEpg1BoWXc25dfhD6+OJtqSZfSdV0HM="; + src = fetchFromGitHub { + owner = "tramhao"; + repo = "termusic"; + rev = "v${version}"; + hash = "sha256-ykOBXM/WF+zasAt+6mgY2aSFCpGaYcqk+YI7YLM3MWs="; }; - cargoHash = "sha256-A83gLsaPm6t4nm7DJfcp9z1huDU/Sfy9gunP8pzBiCA="; + cargoHash = "sha256-BrOpU0RFdlRXQIMjfHfs/XYIdBCYKFSA+5by/rGzC8Y="; nativeBuildInputs = [ pkg-config + protobuf rustPlatform.bindgenHook ]; - buildInputs = lib.optionals stdenv.isLinux [ - alsa-lib + buildInputs = [ + dbus + glib + gst_all_1.gstreamer + openssl + sqlite ] ++ lib.optionals stdenv.isDarwin [ - darwin.apple_sdk.frameworks.AudioUnit + AppKit + CoreAudio + CoreGraphics + Foundation + IOKit + MediaPlayer + Security + ] ++ lib.optionals stdenv.isLinux [ + alsa-lib ]; - meta = with lib; { + meta = { description = "Terminal Music Player TUI written in Rust"; homepage = "https://github.com/tramhao/termusic"; - license = with licenses; [ gpl3Only ]; - maintainers = with maintainers; [ devhell ]; + license = with lib.licenses; [ gpl3Only ]; + maintainers = with lib.maintainers; [ devhell ]; }; } diff --git a/pkgs/applications/backup/proxmox-backup-client/default.nix b/pkgs/applications/backup/proxmox-backup-client/default.nix index ad8f6f0f9975..49ad9cccc9ce 100644 --- a/pkgs/applications/backup/proxmox-backup-client/default.nix +++ b/pkgs/applications/backup/proxmox-backup-client/default.nix @@ -16,38 +16,45 @@ proxmox-backup-client, }: -rustPlatform.buildRustPackage rec { +let pname = "proxmox-backup-client"; version = "3.0.1"; - srcs = [ - (fetchgit { - url = "git://git.proxmox.com/git/proxmox-backup.git"; - rev = "v${version}"; - name = "proxmox-backup"; - hash = "sha256-a6dPBZBBh//iANXoPmOdgxYO0qNszOYI3QtrjQr4Cxc="; - }) - (fetchgit { - url = "git://git.proxmox.com/git/proxmox.git"; - rev = "2a070da0651677411a245f1714895235b1caf584"; - name = "proxmox"; - hash = "sha256-WH6oW2MB2yN1Y2zqOuXewI9jHqev/xLcJtb7D1J4aUE="; - }) - (fetchgit { - url = "git://git.proxmox.com/git/proxmox-fuse.git"; - rev = "93099f76b6bbbc8a0bbaca9b459a1ce4dc5e0a79"; - name = "proxmox-fuse"; - hash = "sha256-3l0lAZVFQC0MYaqZvB+S+ihb1fTkEgs5i9q463+cbvQ="; - }) - (fetchgit { - url = "git://git.proxmox.com/git/pxar.git"; - rev = "6ad046f9f92b40413f59cc5f4c23d2bafdf141f2"; - name = "pxar"; - hash = "sha256-I9kk27oN9BDQpnLDWltjZMrh2yJitCpcD/XAhkmtJUg="; - }) - ]; + proxmox-backup_src = fetchgit { + url = "git://git.proxmox.com/git/proxmox-backup.git"; + rev = "v${version}"; + name = "proxmox-backup"; + hash = "sha256-a6dPBZBBh//iANXoPmOdgxYO0qNszOYI3QtrjQr4Cxc="; + }; - sourceRoot = "proxmox-backup"; + proxmox_src = fetchgit { + url = "git://git.proxmox.com/git/proxmox.git"; + rev = "2a070da0651677411a245f1714895235b1caf584"; + name = "proxmox"; + hash = "sha256-WH6oW2MB2yN1Y2zqOuXewI9jHqev/xLcJtb7D1J4aUE="; + }; + + proxmox-fuse_src = fetchgit { + url = "git://git.proxmox.com/git/proxmox-fuse.git"; + rev = "93099f76b6bbbc8a0bbaca9b459a1ce4dc5e0a79"; + name = "proxmox-fuse"; + hash = "sha256-3l0lAZVFQC0MYaqZvB+S+ihb1fTkEgs5i9q463+cbvQ="; + }; + + proxmox-pxar_src = fetchgit { + url = "git://git.proxmox.com/git/pxar.git"; + rev = "6ad046f9f92b40413f59cc5f4c23d2bafdf141f2"; + name = "pxar"; + hash = "sha256-I9kk27oN9BDQpnLDWltjZMrh2yJitCpcD/XAhkmtJUg="; + }; +in + +rustPlatform.buildRustPackage { + inherit pname version; + + srcs = [ proxmox-backup_src proxmox_src proxmox-fuse_src proxmox-pxar_src ]; + + sourceRoot = proxmox-backup_src.name; # These patches are essentially un-upstreamable, due to being "workarounds" related to the # project structure. diff --git a/pkgs/applications/blockchains/framesh/default.nix b/pkgs/applications/blockchains/framesh/default.nix index b22c97d143c6..28a25d8d5c89 100644 --- a/pkgs/applications/blockchains/framesh/default.nix +++ b/pkgs/applications/blockchains/framesh/default.nix @@ -2,10 +2,10 @@ let pname = "framesh"; - version = "0.6.6"; + version = "0.6.7"; src = fetchurl { url = "https://github.com/floating/frame/releases/download/v${version}/Frame-${version}.AppImage"; - sha256 = "sha256-5LLnITQP9m2lMdnB/rrK/M+p3AA3rYZ9GOrDdCFA/r4="; + sha256 = "sha256-yPNgrC9ZQcl1gCStMXMbZvk15jZylM2NgKM9H3XcJVQ="; }; appimageContents = appimageTools.extractType2 { diff --git a/pkgs/applications/editors/vscode/generic.nix b/pkgs/applications/editors/vscode/generic.nix index 532b04ea5545..f747acf9e877 100644 --- a/pkgs/applications/editors/vscode/generic.nix +++ b/pkgs/applications/editors/vscode/generic.nix @@ -69,7 +69,7 @@ let buildInputs = [ libsecret libXScrnSaver libxshmfence ] ++ lib.optionals (!stdenv.isDarwin) ([ at-spi2-atk libkrb5 ] ++ atomEnv.packages); - runtimeDependencies = lib.optionals stdenv.isLinux [ (lib.getLib systemd) fontconfig.lib libdbusmenu wayland ]; + runtimeDependencies = lib.optionals stdenv.isLinux [ (lib.getLib systemd) fontconfig.lib libdbusmenu wayland libsecret ]; nativeBuildInputs = [ unzip ] ++ lib.optionals stdenv.isLinux [ diff --git a/pkgs/applications/editors/vscode/vscodium.nix b/pkgs/applications/editors/vscode/vscodium.nix index 45db0854edae..e29227d11d60 100644 --- a/pkgs/applications/editors/vscode/vscodium.nix +++ b/pkgs/applications/editors/vscode/vscodium.nix @@ -15,11 +15,11 @@ let archive_fmt = if stdenv.isDarwin then "zip" else "tar.gz"; sha256 = { - x86_64-linux = "0dynpi8l2102z8kbzgdm8qwbpzm7jxjqvz8a3x0vsikxbfwhsdmy"; - x86_64-darwin = "1z3vzwgcjj57xrw8mklhsdr8n9214rb4vj6jfnqv5nxpdgx4dw55"; - aarch64-linux = "0jiwp6i9q8c87pfkhvj45viqi2m5x5aq94skrvxa8wjbkyafvm1d"; - aarch64-darwin = "1as6zfrv2jymxspmc3m453vs61b7y1lh5qh34xr0ps8c4h6dbjas"; - armv7l-linux = "17yd3bb4z99q4r0d91grifrbr50wln1fkz0bjp4s4snqnj9q9gfk"; + x86_64-linux = "0wx53ajjwil82s3nl6wvpdf01mh33yqasf1ia54s1rfzz10fa1m6"; + x86_64-darwin = "1avq0xlhsnxf6yfay1czi0rc0hy47ahj25rg07mzgb274p4x9q95"; + aarch64-linux = "1chdcy59w4zm27ga71iph7yqq88lv2rw73br1nmmjznbqgzk9lpc"; + aarch64-darwin = "140lrka50yqqd9dp9gb93jlc2zn2fjiq9palibwvgb14nzsb3x68"; + armv7l-linux = "0qf95nxy55f9m2z91fykwjgffj7wqvlqjn2d2xnfapa457v5lbir"; }.${system} or throwSystem; sourceRoot = lib.optionalString (!stdenv.isDarwin) "."; @@ -29,7 +29,7 @@ in # Please backport all compatible updates to the stable release. # This is important for the extension ecosystem. - version = "1.80.2.23209"; + version = "1.81.1.23222"; pname = "vscodium"; executableName = "codium"; diff --git a/pkgs/applications/misc/1password-gui/default.nix b/pkgs/applications/misc/1password-gui/default.nix index 7dbae3e43b46..cf2ac98bc090 100644 --- a/pkgs/applications/misc/1password-gui/default.nix +++ b/pkgs/applications/misc/1password-gui/default.nix @@ -9,43 +9,43 @@ let pname = "1password"; - version = if channel == "stable" then "8.10.8" else "8.10.9-29.BETA"; + version = if channel == "stable" then "8.10.9" else "8.10.12-10.BETA"; sources = { stable = { x86_64-linux = { url = "https://downloads.1password.com/linux/tar/stable/x86_64/1password-${version}.x64.tar.gz"; - hash = "sha256-E7lXyxoBL2ziMIIisskJJhZ5ymKyuv4zXEqigUtU41I="; + hash = "sha256-Ef0ee41WVN46IOYbdyF1w8Ud2s7ncR71/5TFnQwOnVU="; }; aarch64-linux = { url = "https://downloads.1password.com/linux/tar/stable/aarch64/1password-${version}.arm64.tar.gz"; - hash = "sha256-V/qJHt49pPEm1g92hEQCscmJ3ZkSHTY2oA69d6DxkmU="; + hash = "sha256-IuRPCphagpx0jynJmhL9ETSzS0JaWCpDaodt0TDm7xs="; }; x86_64-darwin = { url = "https://downloads.1password.com/mac/1Password-${version}-x86_64.zip"; - hash = "sha256-H2t4sEbm2Mp89a++r8oFSyvg19zc9dAsq3phX/h1VVg="; + hash = "sha256-KwMYxe6WpLFXaJ3jyEOc18IYO/pwZ7RiPF/7RN2c5xg="; }; aarch64-darwin = { url = "https://downloads.1password.com/mac/1Password-${version}-aarch64.zip"; - hash = "sha256-8lVc69Ra0wYxnlVcehtAIujrmUQXmsgsK8ATR4vkBe0="; + hash = "sha256-MDc2Okc8nZbAPPn0ihoraDe9kNI5xx654DdTe7AlD3E="; }; }; beta = { x86_64-linux = { url = "https://downloads.1password.com/linux/tar/beta/x86_64/1password-${version}.x64.tar.gz"; - hash = "sha256-gC+niXGxg37pzMWu/yzD5KcrzbI39u//syVlPne6nBQ="; + hash = "sha256-SnfFd+ksJc69r7GGFUYCLH0NAwwiSxEDyaIRTrj/VWo="; }; aarch64-linux = { url = "https://downloads.1password.com/linux/tar/beta/aarch64/1password-${version}.arm64.tar.gz"; - hash = "sha256-y9P7032GaNKbDzL922HUwiu3DxqKzTiA5g1I3V+852k="; + hash = "sha256-5PDlMe/EZNBkfIrf6se4B5TKVYycSSoqiv0iMEPiIrA="; }; x86_64-darwin = { url = "https://downloads.1password.com/mac/1Password-${version}-x86_64.zip"; - hash = "sha256-/avHauTuFmKQiHL1WpRI488F8rcwvEOe26kmGF7sv3k="; + hash = "sha256-nn8lnn52MkKcFRluH9k8IoAu4vZ1C9Uk/+k6TQ6CKFs="; }; aarch64-darwin = { url = "https://downloads.1password.com/mac/1Password-${version}-aarch64.zip"; - hash = "sha256-kMrA8PhAtOjkgbl9m7NtzIJin+a05llQKdEzlkLE0sY="; + hash = "sha256-ACeFyaDzo1I4w/9CrkQ5iO/JBHYRbxxzMDhTX4oI548="; }; }; }; diff --git a/pkgs/applications/misc/fuzzel/default.nix b/pkgs/applications/misc/fuzzel/default.nix index 2f8d26af436a..496ef38626bc 100644 --- a/pkgs/applications/misc/fuzzel/default.nix +++ b/pkgs/applications/misc/fuzzel/default.nix @@ -65,11 +65,12 @@ stdenv.mkDerivation rec { ]; meta = with lib; { + changelog = "https://codeberg.org/dnkl/fuzzel/releases/tag/${version}"; description = "Wayland-native application launcher, similar to rofi’s drun mode"; homepage = "https://codeberg.org/dnkl/fuzzel"; license = with licenses; [ mit zlib ]; + mainProgram = "fuzzel"; maintainers = with maintainers; [ fionera polykernel rodrgz ]; platforms = with platforms; linux; - changelog = "https://codeberg.org/dnkl/fuzzel/releases/tag/${version}"; }; } diff --git a/pkgs/applications/misc/jetbrains-toolbox/default.nix b/pkgs/applications/misc/jetbrains-toolbox/default.nix index 24e943268a72..f8485132fc78 100644 --- a/pkgs/applications/misc/jetbrains-toolbox/default.nix +++ b/pkgs/applications/misc/jetbrains-toolbox/default.nix @@ -10,11 +10,11 @@ }: let pname = "jetbrains-toolbox"; - version = "2.0.0.16559"; + version = "2.0.1.16621"; src = fetchzip { url = "https://download.jetbrains.com/toolbox/jetbrains-toolbox-${version}.tar.gz"; - sha256 = "sha256-z+udyilfVwcVnaFhp6GYHCXqh1d7T5fj/TbbjMoen2I="; + sha256 = "sha256-FZuoLzouwi3HfTJct+Sh8DNzdzQoEsErBb04SgYrZN0="; stripRoot = false; }; diff --git a/pkgs/applications/misc/swappy/default.nix b/pkgs/applications/misc/swappy/default.nix index 9b3787dec4ae..b0cfc24aab65 100644 --- a/pkgs/applications/misc/swappy/default.nix +++ b/pkgs/applications/misc/swappy/default.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation rec { owner = "jtheoof"; repo = pname; rev = "v${version}"; - sha256 = "sha256-/XPvy98Il4i8cDl9vH6f0/AZmiSqseSXnen7HfMqCDo="; + hash = "sha256-/XPvy98Il4i8cDl9vH6f0/AZmiSqseSXnen7HfMqCDo="; }; nativeBuildInputs = [ glib meson ninja pkg-config scdoc wrapGAppsHook ]; @@ -40,9 +40,10 @@ stdenv.mkDerivation rec { ]; meta = with lib; { - homepage = "https://github.com/jtheoof/swappy"; description = "A Wayland native snapshot editing tool, inspired by Snappy on macOS"; + homepage = "https://github.com/jtheoof/swappy"; license = licenses.mit; + mainProgram = "swappy"; maintainers = [ maintainers.matthiasbeyer ]; platforms = platforms.linux; }; diff --git a/pkgs/applications/misc/waypaper/default.nix b/pkgs/applications/misc/waypaper/default.nix new file mode 100644 index 000000000000..83715ae52541 --- /dev/null +++ b/pkgs/applications/misc/waypaper/default.nix @@ -0,0 +1,51 @@ +{ lib +, python3 +, fetchFromGitHub +, gobject-introspection +, gtk3 +, wrapGAppsHook +}: + +python3.pkgs.buildPythonApplication rec { + pname = "waypaper"; + version = "1.2"; + + src = fetchFromGitHub { + owner = "anufrievroman"; + repo = "waypaper"; + rev = "refs/tags/${version}"; + hash = "sha256-wD3DtxP4aUwIn+EoM3s1Y9VNEcUGhtyugNBEFHI9eqw="; + }; + + nativeBuildInputs = [ + gobject-introspection + wrapGAppsHook + ]; + + propagatedBuildInputs = with python3.pkgs; [ + pygobject3 + ]; + + # has no tests + doCheck = false; + + dontWrapGApps = true; + + preFixup = '' + makeWrapperArgs+=("''${gappsWrapperArgs[@]}") + ''; + + meta = with lib; { + changelog = "https://github.com/anufrievroman/waypaper/releases/tag/${version}"; + description = "GUI wallpaper setter for Wayland-based window managers"; + longDescription = '' + GUI wallpaper setter for Wayland-based window managers that works as a frontend for popular backends like swaybg and swww. + + If wallpaper does not change, make sure that swaybg or swww is installed. + ''; + homepage = "https://github.com/anufrievroman/waypaper"; + license = licenses.gpl3Only; + maintainers = with maintainers; [ totalchaos ]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/applications/networking/browsers/mullvad-browser/default.nix b/pkgs/applications/networking/browsers/mullvad-browser/default.nix index 84ddc3e75844..57f8d348164f 100644 --- a/pkgs/applications/networking/browsers/mullvad-browser/default.nix +++ b/pkgs/applications/networking/browsers/mullvad-browser/default.nix @@ -78,12 +78,15 @@ let ++ lib.optionals mediaSupport [ ffmpeg ] ); - version = "12.5.1"; + version = "12.5.2"; sources = { x86_64-linux = fetchurl { - url = "https://cdn.mullvad.net/browser/${version}/mullvad-browser-linux64-${version}_ALL.tar.xz"; - hash = "sha256-yG22oyTDb7i1OnM7L9uOSaMhDytONAxE68Tg5XQSYq4="; + urls = [ + "https://cdn.mullvad.net/browser/${version}/mullvad-browser-linux64-${version}_ALL.tar.xz" + "https://github.com/mullvad/mullvad-browser/releases/download/${version}/mullvad-browser-linux64-${version}_ALL.tar.xz" + ]; + hash = "sha256-sVVgQTpPQFiG1mEIih0CemNV5qjC2l+JTxef37/nC9k="; }; }; diff --git a/pkgs/applications/networking/cluster/argocd/default.nix b/pkgs/applications/networking/cluster/argocd/default.nix index 05635c26bce7..6c1918aa7bd8 100644 --- a/pkgs/applications/networking/cluster/argocd/default.nix +++ b/pkgs/applications/networking/cluster/argocd/default.nix @@ -2,17 +2,17 @@ buildGoModule rec { pname = "argocd"; - version = "2.7.10"; + version = "2.8.0"; src = fetchFromGitHub { owner = "argoproj"; repo = "argo-cd"; rev = "v${version}"; - sha256 = "sha256-MHEmbZZjPxKu0PyDOjkS3pIsWJYozERPVhJfhleeqbQ="; + sha256 = "sha256-/BMagPR74pANVYcmvdJZmV4tB48cEyAy0FKtBlpoLDE="; }; proxyVendor = true; # darwin/linux hash mismatch - vendorHash = "sha256-h4TKomZSG6fEUVxIDhsxNHaIO+1Xl40+pFWgJJ2VH4E="; + vendorHash = "sha256-xiCgQqP2XF+b2JQTBFqJ3h2klc6GjqyXoNUwatO0Ul8="; # Set target as ./cmd per cli-local # https://github.com/argoproj/argo-cd/blob/master/Makefile#L227 diff --git a/pkgs/applications/networking/cluster/k0sctl/default.nix b/pkgs/applications/networking/cluster/k0sctl/default.nix index dcce516e3da6..eb3847845d04 100644 --- a/pkgs/applications/networking/cluster/k0sctl/default.nix +++ b/pkgs/applications/networking/cluster/k0sctl/default.nix @@ -6,22 +6,23 @@ buildGoModule rec { pname = "k0sctl"; - version = "0.15.2"; + version = "0.15.4"; src = fetchFromGitHub { owner = "k0sproject"; repo = pname; rev = "v${version}"; - sha256 = "sha256-pti52JlnIxinKg2DxNfLewoJuhMohsAVmHgvR2N5shg="; + sha256 = "sha256-sMMYuE/KIWScZTCuzW9WQpCDHI+Og1zRxGlZzOuHgNo="; }; - vendorSha256 = "sha256-K4/sIHWVe1Wj8LJgrqfoOg1hHXvH3HEgU5vq82tzMSk="; + vendorSha256 = "sha256-6UWRh0NHFr7adJJSmrfTjzXH75Dmjed/+KxH6Kz//jk="; ldflags = [ "-s" "-w" "-X github.com/k0sproject/k0sctl/version.Environment=production" - "-X github.com/k0sproject/k0sctl/version.Version=${version}" + "-X github.com/carlmjohnson/versioninfo.Version=${version}" + "-X github.com/carlmjohnson/versioninfo.Revision=${version}" ]; nativeBuildInputs = [ installShellFiles ]; @@ -37,6 +38,6 @@ buildGoModule rec { description = "A bootstrapping and management tool for k0s clusters."; homepage = "https://k0sproject.io/"; license = licenses.asl20; - maintainers = with maintainers; [ nickcao ]; + maintainers = with maintainers; [ nickcao qjoly ]; }; } diff --git a/pkgs/applications/networking/cluster/terraform-providers/providers.json b/pkgs/applications/networking/cluster/terraform-providers/providers.json index 457bedc767ef..f7b906074752 100644 --- a/pkgs/applications/networking/cluster/terraform-providers/providers.json +++ b/pkgs/applications/networking/cluster/terraform-providers/providers.json @@ -110,13 +110,13 @@ "vendorHash": null }, "aws": { - "hash": "sha256-y4KAw4hX+Hl+laVzOoNVxUXo4AkjWEKYSf87ffpSh2w=", + "hash": "sha256-ajASdZaw61sDn5JsxLhvY0kI14KBF07Uc1GiRrQ7f8c=", "homepage": "https://registry.terraform.io/providers/hashicorp/aws", "owner": "hashicorp", "repo": "terraform-provider-aws", - "rev": "v5.11.0", + "rev": "v5.12.0", "spdx": "MPL-2.0", - "vendorHash": "sha256-lf/bx9Uwf2jkOKfgYc2JPJ9Rt0PKHpIHzHW5Dfmt5rM=" + "vendorHash": "sha256-hDiazrFZDqBn4ErjYGZamjHMuQ3ImZu3eSeXKImm9Ww=" }, "azuread": { "hash": "sha256-aLckXkWxMsDS1ddPucAmjFS6+mkwHeAO1+BlPNaF6cI=", @@ -128,11 +128,11 @@ "vendorHash": null }, "azurerm": { - "hash": "sha256-7ekMsiMvyJuwp+/fzKJcvp7RirunsGykTH62Z8Znz4Q=", + "hash": "sha256-6a6JXzTpXRIscWf1sSZwubnDww1KTFrDnGNO7+aqjoY=", "homepage": "https://registry.terraform.io/providers/hashicorp/azurerm", "owner": "hashicorp", "repo": "terraform-provider-azurerm", - "rev": "v3.68.0", + "rev": "v3.69.0", "spdx": "MPL-2.0", "vendorHash": null }, @@ -146,11 +146,11 @@ "vendorHash": null }, "baiducloud": { - "hash": "sha256-n+Rk2J7ZqQ93GQSvdLfnjKW2R3v7+iWj+P6EZQ5QxhA=", + "hash": "sha256-exVqL9iUP27PwLGxncFCnnhFnnVWd6KcPqv412W9YMA=", "homepage": "https://registry.terraform.io/providers/baidubce/baiducloud", "owner": "baidubce", "repo": "terraform-provider-baiducloud", - "rev": "v1.19.10", + "rev": "v1.19.11", "spdx": "MPL-2.0", "vendorHash": null }, @@ -191,13 +191,13 @@ "vendorHash": "sha256-oVXrSI+DU6NgmVIPcS4He4mHVrkA2tMxFUpxMnv0bu4=" }, "checkly": { - "hash": "sha256-69oRZpJNRFJCwAZNcmVfYTNKmtBgFocvEUZpr4jbJQg=", + "hash": "sha256-tOTrAi6hd4HFbHAj0p/LTYdxQl1R1WuQ9L4hzqmDVqI=", "homepage": "https://registry.terraform.io/providers/checkly/checkly", "owner": "checkly", "repo": "terraform-provider-checkly", - "rev": "v1.6.8", + "rev": "v1.6.9", "spdx": null, - "vendorHash": "sha256-cnvXf0zJrJvpRbQMm2pF7f2cuazxDR4193JCbyGuL2Y=" + "vendorHash": "sha256-EhsfA53xkGFgiwJxBtpD1ZKjb0+14dKD9rQ0Jrrm3ck=" }, "ciscoasa": { "hash": "sha256-xzc44FEy2MPo51Faq/VFwg411JK9e0kQucpt0vdN8yg=", @@ -664,13 +664,13 @@ "vendorHash": "sha256-9AmfvoEf7E6lAblPIWizElng5GQJG/hQ5o6Mo3AN+EA=" }, "launchdarkly": { - "hash": "sha256-dK7JxmC/GRjsMpiJb2e8EyFl+V/KcxKlw8/5IbyFlXY=", + "hash": "sha256-gXpnYX4G+KYEPr4385VgbVfbfkNRc0z2txaaH16nJqI=", "homepage": "https://registry.terraform.io/providers/launchdarkly/launchdarkly", "owner": "launchdarkly", "repo": "terraform-provider-launchdarkly", - "rev": "v2.13.4", + "rev": "v2.14.0", "spdx": "MPL-2.0", - "vendorHash": "sha256-jggXSnERsraNqkQKFpUtlglSOi02n4eAp4graJ6K+ZA=" + "vendorHash": "sha256-I+9hfKWBbclXXpthQc9LAHhZ7MYr/8I89mLeIVeae+Q=" }, "libvirt": { "hash": "sha256-VO9fbRLz7mDYT8WORodnN4l3II2j+TdpV8cZ9M+NjTM=", @@ -872,13 +872,13 @@ "vendorHash": "sha256-NnB8deqIeiB66Kba9LWT62fyI23HL57VcsTickoTRwI=" }, "opentelekomcloud": { - "hash": "sha256-+goODpTThegmo2cew5bKxGhtqAHd2ObeEzSG2vxWK4w=", + "hash": "sha256-WL7eER7FsuIpdFsp4K1RlrrhEEK6hMou7HYAn/XbvLU=", "homepage": "https://registry.terraform.io/providers/opentelekomcloud/opentelekomcloud", "owner": "opentelekomcloud", "repo": "terraform-provider-opentelekomcloud", - "rev": "v1.35.4", + "rev": "v1.35.5", "spdx": "MPL-2.0", - "vendorHash": "sha256-VPQml9PAb/41wwLHAFtHDSwGLwPYG9ePiPgKhtfdt9Y=" + "vendorHash": "sha256-C2wZjhO6PAiHuoKWN97QJLnC0tYNEyDXMSErGlv2Zpg=" }, "opsgenie": { "hash": "sha256-Jz3JMq39C2NvA0kvJdjjkOHNvZOMuw4Fq2+nyVHRIL4=", diff --git a/pkgs/applications/networking/deck/default.nix b/pkgs/applications/networking/deck/default.nix index 820098097549..ba5204b66139 100644 --- a/pkgs/applications/networking/deck/default.nix +++ b/pkgs/applications/networking/deck/default.nix @@ -1,6 +1,6 @@ { buildGoModule, lib, installShellFiles, fetchFromGitHub }: let - short_hash = "86497a5"; + short_hash = "63b9742"; in buildGoModule rec { pname = "deck"; version = "1.26.0"; diff --git a/pkgs/applications/networking/instant-messengers/discord/default.nix b/pkgs/applications/networking/instant-messengers/discord/default.nix index 8bc1c7cb5984..1c8d40091098 100644 --- a/pkgs/applications/networking/instant-messengers/discord/default.nix +++ b/pkgs/applications/networking/instant-messengers/discord/default.nix @@ -3,7 +3,7 @@ let versions = if stdenv.isLinux then { stable = "0.0.28"; ptb = "0.0.44"; - canary = "0.0.162"; + canary = "0.0.163"; development = "0.0.217"; } else { stable = "0.0.273"; @@ -24,7 +24,7 @@ let }; canary = fetchurl { url = "https://dl-canary.discordapp.net/apps/linux/${version}/discord-canary-${version}.tar.gz"; - sha256 = "sha256-eSWcwSw46hKJmDLxHtolBZgKrIS2QnTbVoYe0EI4Njs="; + sha256 = "sha256-QLQCv3hlCNZ8Ii/+GWHAZs4enBh+gOUEt+wlrkUP91Q="; }; development = fetchurl { url = "https://dl-development.discordapp.net/apps/linux/${version}/discord-development-${version}.tar.gz"; diff --git a/pkgs/applications/networking/kubo/default.nix b/pkgs/applications/networking/kubo/default.nix index 3f32abbd8fdc..dccd827b1295 100644 --- a/pkgs/applications/networking/kubo/default.nix +++ b/pkgs/applications/networking/kubo/default.nix @@ -25,10 +25,6 @@ buildGoModule rec { subPackages = [ "cmd/ipfs" ]; - buildInputs = [ openssl ]; - nativeBuildInputs = [ pkg-config ]; - tags = [ "openssl" ]; - passthru.tests.kubo = nixosTests.kubo; vendorSha256 = null; diff --git a/pkgs/applications/networking/sync/rsync/default.nix b/pkgs/applications/networking/sync/rsync/default.nix index d1a304f44001..9df26b6bb845 100644 --- a/pkgs/applications/networking/sync/rsync/default.nix +++ b/pkgs/applications/networking/sync/rsync/default.nix @@ -56,7 +56,8 @@ stdenv.mkDerivation rec { description = "Fast incremental file transfer utility"; homepage = "https://rsync.samba.org/"; license = licenses.gpl3Plus; - platforms = platforms.unix; + mainProgram = "rsync"; maintainers = with lib.maintainers; [ ehmry kampfschlaefer ivan ]; + platforms = platforms.unix; }; } diff --git a/pkgs/applications/office/libreoffice/darwin/default.nix b/pkgs/applications/office/libreoffice/darwin/default.nix index 99420d75db95..18b159cf32ad 100644 --- a/pkgs/applications/office/libreoffice/darwin/default.nix +++ b/pkgs/applications/office/libreoffice/darwin/default.nix @@ -36,7 +36,7 @@ stdenvNoCC.mkDerivation { }; nativeBuildInputs = [ undmg ]; - sourceRoot = "${appName}"; + sourceRoot = appName; installPhase = '' runHook preInstall diff --git a/pkgs/applications/science/electronics/xyce/default.nix b/pkgs/applications/science/electronics/xyce/default.nix index 06872eae740f..4709065e45bd 100644 --- a/pkgs/applications/science/electronics/xyce/default.nix +++ b/pkgs/applications/science/electronics/xyce/default.nix @@ -31,27 +31,32 @@ assert withMPI -> trilinos.withMPI; -stdenv.mkDerivation rec { - pname = "xyce"; +let version = "7.6.0"; - srcs = [ - # useing fetchurl or fetchFromGitHub doesn't include the manuals - # due to .gitattributes files - (fetchgit { - url = "https://github.com/Xyce/Xyce.git"; - rev = "Release-${version}"; - sha256 = "sha256-HYIzmODMWXBuVRZhcC7LntTysuyXN5A9lb2DeCQQtVw="; - }) - (fetchFromGitHub { - owner = "Xyce"; - repo = "Xyce_Regression"; - rev = "Release-${version}"; - sha256 = "sha256-uEoiKpYyHmdK7LZ1UNm2d3Jk8+sCwBwB0TCoHilIh74="; - }) - ]; + # useing fetchurl or fetchFromGitHub doesn't include the manuals + # due to .gitattributes files + xyce_src = fetchgit { + url = "https://github.com/Xyce/Xyce.git"; + rev = "Release-${version}"; + sha256 = "sha256-HYIzmODMWXBuVRZhcC7LntTysuyXN5A9lb2DeCQQtVw="; + }; - sourceRoot = "./Xyce"; + regression_src = fetchFromGitHub { + owner = "Xyce"; + repo = "Xyce_Regression"; + rev = "Release-${version}"; + sha256 = "sha256-uEoiKpYyHmdK7LZ1UNm2d3Jk8+sCwBwB0TCoHilIh74="; + }; +in + +stdenv.mkDerivation rec { + pname = "xyce"; + inherit version; + + srcs = [ xyce_src regression_src ]; + + sourceRoot = "./${xyce_src.name}"; preConfigure = "./bootstrap"; @@ -101,7 +106,7 @@ stdenv.mkDerivation rec { doCheck = enableTests; postPatch = '' - pushd ../source + pushd ../${regression_src.name} find Netlists -type f -regex ".*\.sh\|.*\.pl" -exec chmod ugo+x {} \; # some tests generate new files, some overwrite netlists find . -type d -exec chmod u+w {} \; @@ -124,7 +129,7 @@ stdenv.mkDerivation rec { checkPhase = '' XYCE_BINARY="$(pwd)/src/Xyce" EXECSTRING="${lib.optionalString withMPI "mpirun -np 2 "}$XYCE_BINARY" - TEST_ROOT="$(pwd)/../source" + TEST_ROOT="$(pwd)/../${regression_src.name}" # Honor the TMP variable sed -i -E 's|/tmp|\$TMP|' $TEST_ROOT/TestScripts/suggestXyceTagList.sh diff --git a/pkgs/applications/science/logic/cbmc/default.nix b/pkgs/applications/science/logic/cbmc/default.nix index c287a74010d5..228027d187bd 100644 --- a/pkgs/applications/science/logic/cbmc/default.nix +++ b/pkgs/applications/science/logic/cbmc/default.nix @@ -13,13 +13,13 @@ stdenv.mkDerivation rec { pname = "cbmc"; - version = "5.88.1"; + version = "5.89.0"; src = fetchFromGitHub { owner = "diffblue"; repo = pname; rev = "${pname}-${version}"; - sha256 = "sha256-bfrtYqTMU/Nib0wZjS/t0kg5sBsuQuq9GaHX4PxL7tU="; + sha256 = "sha256-pgZdR1X0aOCfCKAGo2h9bAIO2XTTiWL8ERgandOQj/M="; }; nativeBuildInputs = [ diff --git a/pkgs/applications/system/asusctl/Cargo.lock b/pkgs/applications/system/asusctl/Cargo.lock index 73ce8eea8d91..6377a21c7082 100644 --- a/pkgs/applications/system/asusctl/Cargo.lock +++ b/pkgs/applications/system/asusctl/Cargo.lock @@ -87,6 +87,15 @@ dependencies = [ "winit", ] +[[package]] +name = "addr2line" +version = "0.20.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f4fa78e18c64fce05e902adecd7a5eed15a5e0a3439f7b0e169f0252214865e3" +dependencies = [ + "gimli", +] + [[package]] name = "adler" version = "1.0.2" @@ -106,21 +115,21 @@ dependencies = [ [[package]] name = "aho-corasick" -version = "1.0.1" +version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "67fc08ce920c31afb70f013dcce1bfc3a3195de6a228474e45e1f145b36f8d04" +checksum = "43f6cb1bf222025340178f382c426f13757b2960e89779dfcb319c32542a5a41" dependencies = [ "memchr", ] [[package]] name = "android-activity" -version = "0.4.1" +version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7c77a0045eda8b888c76ea473c2b0515ba6f471d318f8927c5c72240937035a6" +checksum = "40bc1575e653f158cbdc6ebcd917b9564e66321c5325c232c3591269c257be69" dependencies = [ "android-properties", - "bitflags", + "bitflags 1.3.2", "cc", "jni-sys", "libc", @@ -128,7 +137,7 @@ dependencies = [ "ndk", "ndk-context", "ndk-sys", - "num_enum", + "num_enum 0.6.1", ] [[package]] @@ -138,10 +147,25 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fc7eb209b1518d6bb87b283c20095f5228ecda460da70b44f0802523dea6da04" [[package]] -name = "anyhow" -version = "1.0.70" +name = "android-tzdata" +version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7de8ce5e0f9f8d88245311066a578d72b7af3e7088f32783804676302df237e4" +checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" + +[[package]] +name = "android_system_properties" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" +dependencies = [ + "libc", +] + +[[package]] +name = "anyhow" +version = "1.0.72" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3b13c32d80ecc7ab747b80c3784bce54ee8a7a0cc4fbda9bf4cda2cf6fe90854" [[package]] name = "arboard" @@ -169,16 +193,16 @@ checksum = "6b4930d2cb77ce62f89ee5d5289b4ac049559b1c45539271f5ed4fdc7db34545" [[package]] name = "arrayvec" -version = "0.7.2" +version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8da52d66c7071e2e3fa2a1e5c6d088fec47b593032b254f5e980de8ea54454d6" +checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711" [[package]] name = "asusctl" -version = "4.6.2" +version = "4.7.0-RC3" dependencies = [ + "asusd", "cargo-husky", - "daemon", "gif", "glam", "gumdrop", @@ -192,6 +216,50 @@ dependencies = [ "toml 0.5.11", ] +[[package]] +name = "asusd" +version = "4.7.0-RC3" +dependencies = [ + "async-trait", + "cargo-husky", + "concat-idents", + "config-traits", + "env_logger", + "log", + "logind-zbus", + "rog_anime", + "rog_aura", + "rog_dbus", + "rog_platform", + "rog_profiles", + "serde", + "serde_derive", + "sysfs-class", + "systemd-zbus", + "tokio", + "zbus", +] + +[[package]] +name = "asusd-user" +version = "4.7.0-RC3" +dependencies = [ + "cargo-husky", + "config-traits", + "dirs", + "env_logger", + "log", + "rog_anime", + "rog_aura", + "rog_dbus", + "rog_platform", + "serde", + "serde_derive", + "serde_json", + "smol", + "zbus", +] + [[package]] name = "async-broadcast" version = "0.5.1" @@ -204,9 +272,9 @@ dependencies = [ [[package]] name = "async-channel" -version = "1.8.0" +version = "1.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cf46fee83e5ccffc220104713af3292ff9bc7c64c7de289f66dae8e38d826833" +checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35" dependencies = [ "concurrent-queue", "event-listener", @@ -222,7 +290,7 @@ dependencies = [ "async-lock", "async-task", "concurrent-queue", - "fastrand", + "fastrand 1.9.0", "futures-lite", "slab", ] @@ -253,7 +321,7 @@ dependencies = [ "log", "parking", "polling", - "rustix", + "rustix 0.37.23", "slab", "socket2", "waker-fn", @@ -293,7 +361,7 @@ dependencies = [ "cfg-if", "event-listener", "futures-lite", - "rustix", + "rustix 0.37.23", "signal-hook", "windows-sys 0.48.0", ] @@ -306,7 +374,7 @@ checksum = "0e97ce7de6cf12de5d7226c73f5ba9811622f4db3a5b91b55c53e987e5f91cba" dependencies = [ "proc-macro2", "quote", - "syn 2.0.15", + "syn 2.0.27", ] [[package]] @@ -317,13 +385,13 @@ checksum = "ecc7ab41815b3c653ccd2978ec3255c81349336702dfdf62ee6f7069b12a3aae" [[package]] name = "async-trait" -version = "0.1.68" +version = "0.1.72" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b9ccdd8f2a161be9bd5c023df56f1b2a0bd1d83872ae53b71a84a12c9bf6e842" +checksum = "cc6dde6e4ed435a4c1ee4e73592f5ba9da2151af10076cc04858746af9352d09" dependencies = [ "proc-macro2", "quote", - "syn 2.0.15", + "syn 2.0.27", ] [[package]] @@ -333,7 +401,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "39991bc421ddf72f70159011b323ff49b0f783cc676a7287c59453da2e2531cf" dependencies = [ "atk-sys", - "bitflags", + "bitflags 1.3.2", "glib", "libc", ] @@ -401,6 +469,21 @@ version = "1.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7b7e4c2464d97fe331d41de9d5db0def0a96f4d823b8b32a2efd503578988973" +[[package]] +name = "backtrace" +version = "0.3.68" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4319208da049c43661739c5fade2ba182f09d1dc2299b32298d3a31692b17e12" +dependencies = [ + "addr2line", + "cc", + "cfg-if", + "libc", + "miniz_oxide 0.7.1", + "object", + "rustc-demangle", +] + [[package]] name = "base64" version = "0.13.1" @@ -413,7 +496,7 @@ version = "0.63.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "36d860121800b2a9a94f9b5604b332d5cffb234ce17609ea479d723dbc9d3885" dependencies = [ - "bitflags", + "bitflags 1.3.2", "cexpr", "clang-sys", "lazy_static", @@ -433,6 +516,12 @@ version = "1.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" +[[package]] +name = "bitflags" +version = "2.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "630be753d4e58660abd17930c71b647fe46c27ea6b63cc59e1e3851406972e42" + [[package]] name = "block" version = "0.1.6" @@ -477,16 +566,16 @@ dependencies = [ "async-lock", "async-task", "atomic-waker", - "fastrand", + "fastrand 1.9.0", "futures-lite", "log", ] [[package]] name = "bumpalo" -version = "3.12.1" +version = "3.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9b1ce199063694f33ffb7dd4e0ee620741495c32833cde5aa08f02a0bf96f0c8" +checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1" [[package]] name = "bytemuck" @@ -505,7 +594,7 @@ checksum = "fdde5c9cd29ebd706ce1b35600920a33550e402fc998a2e53ad3b42c3c47a192" dependencies = [ "proc-macro2", "quote", - "syn 2.0.15", + "syn 2.0.27", ] [[package]] @@ -526,7 +615,7 @@ version = "0.16.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f3125b15ec28b84c238f6f476c6034016a5f6cc0221cb514ca46c532139fc97d" dependencies = [ - "bitflags", + "bitflags 1.3.2", "cairo-sys-rs", "glib", "libc", @@ -547,10 +636,11 @@ dependencies = [ [[package]] name = "calloop" -version = "0.10.5" +version = "0.10.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1a59225be45a478d772ce015d9743e49e92798ece9e34eda9a6aa2a6a7f40192" +checksum = "52e0d00eb1ea24371a97d2da6201c6747a633dc6dc1988ef503403b4c59504a8" dependencies = [ + "bitflags 1.3.2", "log", "nix 0.25.1", "slotmap", @@ -590,9 +680,9 @@ dependencies = [ [[package]] name = "cfg-expr" -version = "0.15.1" +version = "0.15.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c8790cf1286da485c72cf5fc7aeba308438800036ec67d89425924c4807268c9" +checksum = "215c0072ecc28f92eeb0eea38ba63ddfcb65c2828c46311d646f1a3ff5f9841c" dependencies = [ "smallvec", "target-lexicon", @@ -619,6 +709,20 @@ dependencies = [ "libc", ] +[[package]] +name = "chrono" +version = "0.4.26" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec837a71355b28f6556dbd569b37b3f363091c0bd4b2e735674521b4c5fd9bc5" +dependencies = [ + "android-tzdata", + "iana-time-zone", + "js-sys", + "num-traits", + "wasm-bindgen", + "winapi", +] + [[package]] name = "clang-sys" version = "1.6.1" @@ -658,12 +762,12 @@ dependencies = [ [[package]] name = "concat-idents" -version = "1.1.4" +version = "1.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0fe0e1d9f7de897d18e590a7496b5facbe87813f746cf4b8db596ba77e07e832" +checksum = "f76990911f2267d837d9d0ad060aa63aaad170af40904b29461734c339030d4d" dependencies = [ "quote", - "syn 1.0.109", + "syn 2.0.27", ] [[package]] @@ -677,7 +781,7 @@ dependencies = [ [[package]] name = "config-traits" -version = "4.6.2" +version = "4.7.0-RC3" dependencies = [ "cargo-husky", "log", @@ -710,7 +814,7 @@ version = "0.22.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2581bbab3b8ffc6fcbd550bf46c355135d16e9ff2a6ea032ad6b9bf1d7efe4fb" dependencies = [ - "bitflags", + "bitflags 1.3.2", "core-foundation", "core-graphics-types", "foreign-types", @@ -719,21 +823,20 @@ dependencies = [ [[package]] name = "core-graphics-types" -version = "0.1.1" +version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3a68b68b3446082644c91ac778bf50cd4104bfb002b5a6a7c44cca5a2c70788b" +checksum = "2bb142d41022986c1d8ff29103a1411c8a3dfad3552f87a4f8dc50d61d4f4e33" dependencies = [ - "bitflags", + "bitflags 1.3.2", "core-foundation", - "foreign-types", "libc", ] [[package]] name = "cpufeatures" -version = "0.2.7" +version = "0.2.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3e4c1eaa2012c47becbbad2ab175484c2a84d1185b566fb2cc5b8707343dfe58" +checksum = "a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1" dependencies = [ "libc", ] @@ -749,9 +852,9 @@ dependencies = [ [[package]] name = "crossbeam-utils" -version = "0.8.15" +version = "0.8.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c063cd8cc95f5c377ed0d4b49a4b21f632396ff690e8470c29b3359b346984b" +checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294" dependencies = [ "cfg-if", ] @@ -766,50 +869,6 @@ dependencies = [ "typenum", ] -[[package]] -name = "daemon" -version = "4.6.2" -dependencies = [ - "async-trait", - "cargo-husky", - "concat-idents", - "config-traits", - "env_logger", - "log", - "logind-zbus", - "rog_anime", - "rog_aura", - "rog_dbus", - "rog_platform", - "rog_profiles", - "serde", - "serde_derive", - "sysfs-class", - "systemd-zbus", - "tokio", - "zbus", -] - -[[package]] -name = "daemon-user" -version = "4.6.2" -dependencies = [ - "cargo-husky", - "config-traits", - "dirs", - "env_logger", - "log", - "rog_anime", - "rog_aura", - "rog_dbus", - "rog_platform", - "serde", - "serde_derive", - "serde_json", - "smol", - "zbus", -] - [[package]] name = "derivative" version = "2.2.0" @@ -823,9 +882,9 @@ dependencies = [ [[package]] name = "digest" -version = "0.10.6" +version = "0.10.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f" +checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" dependencies = [ "block-buffer", "crypto-common", @@ -880,11 +939,11 @@ checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b" [[package]] name = "dlib" -version = "0.5.0" +version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ac1b7517328c04c2aa68422fc60a41b92208182142ed04a25879c26c8f878794" +checksum = "330c60081dcc4c72131f8eb70510f1ac07223e5d4163db481a04a0befcffa412" dependencies = [ - "libloading", + "libloading 0.8.0", ] [[package]] @@ -967,9 +1026,9 @@ dependencies = [ [[package]] name = "either" -version = "1.8.1" +version = "1.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91" +checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" [[package]] name = "emath" @@ -1020,7 +1079,7 @@ checksum = "5e9a1f9f7d83e59740248a6e14ecf93929ade55027844dfcea78beafccc15745" dependencies = [ "proc-macro2", "quote", - "syn 2.0.15", + "syn 2.0.27", ] [[package]] @@ -1052,6 +1111,12 @@ dependencies = [ "parking_lot", ] +[[package]] +name = "equivalent" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" + [[package]] name = "errno" version = "0.3.1" @@ -1098,6 +1163,12 @@ dependencies = [ "instant", ] +[[package]] +name = "fastrand" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6999dc1837253364c2ebb0704ba97994bd874e8f195d665c50b7548f6ea92764" + [[package]] name = "fdeflate" version = "0.3.0" @@ -1109,22 +1180,22 @@ dependencies = [ [[package]] name = "field-offset" -version = "0.3.5" +version = "0.3.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a3cf3a800ff6e860c863ca6d4b16fd999db8b752819c1606884047b73e468535" +checksum = "38e2275cc4e4fc009b0669731a1e5ab7ebf11f469eaede2bab9309a5b4d6057f" dependencies = [ - "memoffset 0.8.0", + "memoffset 0.9.0", "rustc_version", ] [[package]] name = "flate2" -version = "1.0.25" +version = "1.0.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a8a2db397cb1c8772f31494cb8917e48cd1e64f0fa7efac59fbd741a0a8ce841" +checksum = "3b9429470923de8e8cbd4d2dc513535400b4b3fef0319fb5c4e1f520a7bef743" dependencies = [ "crc32fast", - "miniz_oxide 0.6.2", + "miniz_oxide 0.7.1", ] [[package]] @@ -1153,9 +1224,9 @@ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" [[package]] name = "form_urlencoded" -version = "1.1.0" +version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8" +checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652" dependencies = [ "percent-encoding", ] @@ -1198,7 +1269,7 @@ version = "1.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce" dependencies = [ - "fastrand", + "fastrand 1.9.0", "futures-core", "futures-io", "memchr", @@ -1215,7 +1286,7 @@ checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72" dependencies = [ "proc-macro2", "quote", - "syn 2.0.15", + "syn 2.0.27", ] [[package]] @@ -1253,7 +1324,7 @@ version = "0.16.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "aa9cb33da481c6c040404a11f8212d193889e9b435db2c14fd86987f630d3ce1" dependencies = [ - "bitflags", + "bitflags 1.3.2", "cairo-rs", "gdk-pixbuf", "gdk-sys", @@ -1269,7 +1340,7 @@ version = "0.16.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c3578c60dee9d029ad86593ed88cb40f35c1b83360e12498d055022385dd9a05" dependencies = [ - "bitflags", + "bitflags 1.3.2", "gdk-pixbuf-sys", "gio", "glib", @@ -1328,9 +1399,9 @@ dependencies = [ [[package]] name = "getrandom" -version = "0.2.9" +version = "0.2.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c85e1d9ab2eadba7e5040d4e09cbd6d072b76a557ad64e797c2cb9d4da21d7e4" +checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427" dependencies = [ "cfg-if", "libc", @@ -1347,13 +1418,19 @@ dependencies = [ "weezl", ] +[[package]] +name = "gimli" +version = "0.27.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6c80984affa11d98d1b88b66ac8853f143217b399d3c74116778ff8fdb4ed2e" + [[package]] name = "gio" version = "0.16.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2a1c84b4534a290a29160ef5c6eff2a9c95833111472e824fc5cb78b513dd092" dependencies = [ - "bitflags", + "bitflags 1.3.2", "futures-channel", "futures-core", "futures-io", @@ -1402,11 +1479,11 @@ dependencies = [ [[package]] name = "glib" -version = "0.16.7" +version = "0.16.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ddd4df61a866ed7259d6189b8bcb1464989a77f1d85d25d002279bbe9dd38b2f" +checksum = "16aa2475c9debed5a32832cb5ff2af5a3f9e1ab9e69df58eaadc1ab2004d6eba" dependencies = [ - "bitflags", + "bitflags 1.3.2", "futures-channel", "futures-core", "futures-executor", @@ -1429,7 +1506,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fb1a9325847aa46f1e96ffea37611b9d51fc4827e67f79e7de502a297560a67b" dependencies = [ "anyhow", - "heck 0.4.1", + "heck", "proc-macro-crate", "proc-macro-error", "proc-macro2", @@ -1455,9 +1532,9 @@ checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" [[package]] name = "glow" -version = "0.12.1" +version = "0.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4e007a07a24de5ecae94160f141029e9a347282cfe25d1d58d85d845cf3130f1" +checksum = "ca0fe580e4b60a8ab24a868bc08e2f03cbcb20d3d676601fa909386713333728" dependencies = [ "js-sys", "slotmap", @@ -1467,11 +1544,11 @@ dependencies = [ [[package]] name = "glutin" -version = "0.30.7" +version = "0.30.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f89bab9ec7715de13d5d5402238e66f48e3a5ae636ebb45aba4013c962e2ff15" +checksum = "23b0385782048be65f0a9dd046c469d6a758a53fe1aa63a8111dea394d2ffa2f" dependencies = [ - "bitflags", + "bitflags 1.3.2", "cfg_aliases", "cgl", "core-foundation", @@ -1479,7 +1556,7 @@ dependencies = [ "glutin_egl_sys", "glutin_glx_sys", "glutin_wgl_sys", - "libloading", + "libloading 0.7.4", "objc2", "once_cell", "raw-window-handle", @@ -1502,9 +1579,9 @@ dependencies = [ [[package]] name = "glutin_egl_sys" -version = "0.4.0" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e5aaf0abb5c4148685b33101ae326a207946b4d3764d6cdc79f8316cdaa8367d" +checksum = "1b3bcbddc51573b977fc6dca5d93867e4f29682cdbaf5d13e48f4fa4346d4d87" dependencies = [ "gl_generator", "windows-sys 0.45.0", @@ -1547,7 +1624,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e4d3507d43908c866c805f74c9dd593c0ce7ba5c38e576e41846639cdcd4bee6" dependencies = [ "atk", - "bitflags", + "bitflags 1.3.2", "cairo-rs", "field-offset", "futures-channel", @@ -1617,18 +1694,9 @@ dependencies = [ [[package]] name = "hashbrown" -version = "0.12.3" +version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" - -[[package]] -name = "heck" -version = "0.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c" -dependencies = [ - "unicode-segmentation", -] +checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a" [[package]] name = "heck" @@ -1638,18 +1706,9 @@ checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" [[package]] name = "hermit-abi" -version = "0.2.6" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7" -dependencies = [ - "libc", -] - -[[package]] -name = "hermit-abi" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286" +checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b" [[package]] name = "hex" @@ -1657,6 +1716,15 @@ version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" +[[package]] +name = "home" +version = "0.5.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb" +dependencies = [ + "windows-sys 0.48.0", +] + [[package]] name = "humantime" version = "2.1.0" @@ -1664,10 +1732,33 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" [[package]] -name = "idna" -version = "0.3.0" +name = "iana-time-zone" +version = "0.1.57" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6" +checksum = "2fad5b825842d2b38bd206f3e81d6957625fd7f0a361e345c30e01a0ae2dd613" +dependencies = [ + "android_system_properties", + "core-foundation-sys", + "iana-time-zone-haiku", + "js-sys", + "wasm-bindgen", + "windows 0.48.0", +] + +[[package]] +name = "iana-time-zone-haiku" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" +dependencies = [ + "cc", +] + +[[package]] +name = "idna" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c" dependencies = [ "unicode-bidi", "unicode-normalization", @@ -1675,21 +1766,21 @@ dependencies = [ [[package]] name = "indexmap" -version = "1.9.3" +version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" +checksum = "d5477fe2230a79769d8dc68e0eabf5437907c0457a5614a9e8dddb67f65eb65d" dependencies = [ - "autocfg", + "equivalent", "hashbrown", ] [[package]] name = "inotify" -version = "0.10.0" +version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "abf888f9575c290197b2c948dc9e9ff10bd1a39ad1ea8585f734585fa6b9d3f9" +checksum = "ff335215fb898bf09c45833b657233d8c0b699a616d7dd64d0513080da270ab6" dependencies = [ - "bitflags", + "bitflags 1.3.2", "futures-core", "inotify-sys", "libc", @@ -1719,24 +1810,23 @@ dependencies = [ [[package]] name = "io-lifetimes" -version = "1.0.10" +version = "1.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c66c74d2ae7e79a5a8f7ac924adbe38ee42a859c6539ad869eb51f0b52dc220" +checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2" dependencies = [ - "hermit-abi 0.3.1", + "hermit-abi", "libc", "windows-sys 0.48.0", ] [[package]] name = "is-terminal" -version = "0.4.7" +version = "0.4.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "adcf93614601c8129ddf72e2d5633df827ba6551541c6d8c59520a371475be1f" +checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b" dependencies = [ - "hermit-abi 0.3.1", - "io-lifetimes", - "rustix", + "hermit-abi", + "rustix 0.38.4", "windows-sys 0.48.0", ] @@ -1751,9 +1841,9 @@ dependencies = [ [[package]] name = "itoa" -version = "1.0.6" +version = "1.0.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6" +checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" [[package]] name = "jni" @@ -1833,15 +1923,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "08fcb2bea89cee9613982501ec83eaa2d09256b24540ae463c52a28906163918" dependencies = [ "gtk-sys", - "libloading", + "libloading 0.7.4", "once_cell", ] [[package]] name = "libc" -version = "0.2.142" +version = "0.2.147" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6a987beff54b60ffa6d51982e1aa1146bc42f19bd26be28b0586f252fccf5317" +checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3" [[package]] name = "libloading" @@ -1853,6 +1943,16 @@ dependencies = [ "winapi", ] +[[package]] +name = "libloading" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d580318f95776505201b28cf98eb1fa5e4be3b689633ba6a3e6cd880ff22d8cb" +dependencies = [ + "cfg-if", + "windows-sys 0.48.0", +] + [[package]] name = "libudev-sys" version = "0.1.4" @@ -1877,15 +1977,21 @@ dependencies = [ [[package]] name = "linux-raw-sys" -version = "0.3.4" +version = "0.3.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "36eb31c1778188ae1e64398743890d0877fef36d11521ac60406b42016e8c2cf" +checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519" + +[[package]] +name = "linux-raw-sys" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09fc20d2ca12cb9f044c93e3bd6d32d523e6e2ec3db4f7b2939cd99026ecd3f0" [[package]] name = "lock_api" -version = "0.4.9" +version = "0.4.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df" +checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16" dependencies = [ "autocfg", "scopeguard", @@ -1893,18 +1999,15 @@ dependencies = [ [[package]] name = "log" -version = "0.4.17" +version = "0.4.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" -dependencies = [ - "cfg-if", -] +checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4" [[package]] name = "logind-zbus" -version = "3.1.0" +version = "3.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3f2cfc54565c8d002ad7344ec08ce512c269b2de56dea59850708691e4b18fe3" +checksum = "14b36b364be05220b24411a1c1a1ee4df0ba77b09c9880e70e5f4c16ebdec157" dependencies = [ "serde", "zbus", @@ -1912,9 +2015,9 @@ dependencies = [ [[package]] name = "mac-notification-sys" -version = "0.5.6" +version = "0.5.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3e72d50edb17756489e79d52eb146927bec8eba9dd48faadf9ef08bca3791ad5" +checksum = "abc434554ad0e640d772f7f262aa28e61d485212533d3673abe5f3d1729bd42a" dependencies = [ "cc", "dirs-next", @@ -1967,9 +2070,9 @@ dependencies = [ [[package]] name = "memoffset" -version = "0.8.0" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d61c719bcfbcf5d62b3a09efa6088de8c54bc0bfcd3ea7ae39fcc186108b8de1" +checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c" dependencies = [ "autocfg", ] @@ -1996,15 +2099,6 @@ dependencies = [ "autocfg", ] -[[package]] -name = "miniz_oxide" -version = "0.6.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa" -dependencies = [ - "adler", -] - [[package]] name = "miniz_oxide" version = "0.7.1" @@ -2017,14 +2111,14 @@ dependencies = [ [[package]] name = "mio" -version = "0.8.6" +version = "0.8.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b9d9a46eff5b4ff64b45a9e316a6d1e0bc719ef429cbec4dc630684212bfdf9" +checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2" dependencies = [ "libc", "log", "wasi", - "windows-sys 0.45.0", + "windows-sys 0.48.0", ] [[package]] @@ -2033,10 +2127,10 @@ version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "451422b7e4718271c8b5b3aadf5adedba43dc76312454b387e98fae0fc951aa0" dependencies = [ - "bitflags", + "bitflags 1.3.2", "jni-sys", "ndk-sys", - "num_enum", + "num_enum 0.5.11", "raw-window-handle", "thiserror", ] @@ -2062,7 +2156,7 @@ version = "0.24.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fa52e972a9a719cecb6864fb88568781eb706bac2cd1d4f04a648542dbf78069" dependencies = [ - "bitflags", + "bitflags 1.3.2", "cfg-if", "libc", "memoffset 0.6.5", @@ -2075,7 +2169,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f346ff70e7dbfd675fe90590b92d59ef2de15a8779ae305ebcbfd3f0caf59be4" dependencies = [ "autocfg", - "bitflags", + "bitflags 1.3.2", "cfg-if", "libc", "memoffset 0.6.5", @@ -2087,7 +2181,7 @@ version = "0.26.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bfdda3d196821d6af13126e40375cdf7da646a96114af134d5f417a9a1dc8e1a" dependencies = [ - "bitflags", + "bitflags 1.3.2", "cfg-if", "libc", "memoffset 0.7.1", @@ -2124,20 +2218,20 @@ dependencies = [ [[package]] name = "num-traits" -version = "0.2.15" +version = "0.2.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" +checksum = "f30b0abd723be7e2ffca1272140fac1a2f084c77ec3e123c192b66af1ee9e6c2" dependencies = [ "autocfg", ] [[package]] name = "num_cpus" -version = "1.15.0" +version = "1.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b" +checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" dependencies = [ - "hermit-abi 0.2.6", + "hermit-abi", "libc", ] @@ -2147,7 +2241,16 @@ version = "0.5.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1f646caf906c20226733ed5b1374287eb97e3c2a5c227ce668c1f2ce20ae57c9" dependencies = [ - "num_enum_derive", + "num_enum_derive 0.5.11", +] + +[[package]] +name = "num_enum" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7a015b430d3c108a207fd776d2e2196aaf8b1cf8cf93253e3a097ff3085076a1" +dependencies = [ + "num_enum_derive 0.6.1", ] [[package]] @@ -2162,6 +2265,18 @@ dependencies = [ "syn 1.0.109", ] +[[package]] +name = "num_enum_derive" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "96667db765a921f7b295ffee8b60472b686a51d4f21c2ee4ffdb94c7013b65a6" +dependencies = [ + "proc-macro-crate", + "proc-macro2", + "quote", + "syn 2.0.27", +] + [[package]] name = "numtoa" version = "0.2.4" @@ -2224,21 +2339,27 @@ dependencies = [ ] [[package]] -name = "once_cell" -version = "1.17.1" +name = "object" +version = "0.31.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3" +checksum = "8bda667d9f2b5051b8833f59f3bf748b28ef54f850f4fcb389a252aa383866d1" +dependencies = [ + "memchr", +] + +[[package]] +name = "once_cell" +version = "1.18.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" [[package]] name = "orbclient" -version = "0.3.44" +version = "0.3.45" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0e9829e16c5e112e94efb5e2ad1fe17f8c1c99bb0fcdc8c65c44e935d904767d" +checksum = "221d488cd70617f1bd599ed8ceb659df2147d9393717954d82a0f5e8032a6ab1" dependencies = [ - "cfg-if", - "redox_syscall 0.2.16", - "wasm-bindgen", - "web-sys", + "redox_syscall 0.3.5", ] [[package]] @@ -2266,7 +2387,7 @@ version = "0.16.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cdff66b271861037b89d028656184059e03b0b6ccb36003820be19f7200b1e94" dependencies = [ - "bitflags", + "bitflags 1.3.2", "gio", "glib", "libc", @@ -2304,22 +2425,22 @@ dependencies = [ [[package]] name = "parking_lot_core" -version = "0.9.7" +version = "0.9.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521" +checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447" dependencies = [ "cfg-if", "libc", - "redox_syscall 0.2.16", + "redox_syscall 0.3.5", "smallvec", - "windows-sys 0.45.0", + "windows-targets 0.48.1", ] [[package]] name = "paste" -version = "1.0.12" +version = "1.0.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9f746c4065a8fa3fe23974dd82f15431cc8d40779821001404d10d2e79ca7d79" +checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c" [[package]] name = "peeking_take_while" @@ -2329,15 +2450,15 @@ checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099" [[package]] name = "percent-encoding" -version = "2.2.0" +version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e" +checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94" [[package]] name = "pin-project-lite" -version = "0.2.9" +version = "0.2.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116" +checksum = "4c40d25201921e5ff0c862a505c6557ea88568a4e3ace775ab55e93f2f4f9d57" [[package]] name = "pin-utils" @@ -2353,17 +2474,17 @@ checksum = "0c2b6992b377680150280d4708bda8207ba9e71f70507b5504f2e28d8e8e48c1" [[package]] name = "pkg-config" -version = "0.3.26" +version = "0.3.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160" +checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" [[package]] name = "png" -version = "0.17.8" +version = "0.17.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aaeebc51f9e7d2c150d3f3bfeb667f2aa985db5ef1e3d212847bdedb488beeaa" +checksum = "59871cc5b6cce7eaccca5a802b4173377a1c2ba90654246789a8fa2334426d11" dependencies = [ - "bitflags", + "bitflags 1.3.2", "crc32fast", "fdeflate", "flate2", @@ -2387,7 +2508,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4b2d323e8ca7996b3e23126511a523f7e62924d93ecd5ae73b333815b0eb3dce" dependencies = [ "autocfg", - "bitflags", + "bitflags 1.3.2", "cfg-if", "concurrent-queue", "libc", @@ -2438,9 +2559,9 @@ dependencies = [ [[package]] name = "proc-macro2" -version = "1.0.56" +version = "1.0.66" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2b63bdb0cd06f1f4dedf69b254734f9b45af66e4a031e42a7480257d9898b435" +checksum = "18fb31db3f9bddb2ea821cde30a9f70117e3f119938b5ee630b7403aa6e2ead9" dependencies = [ "unicode-ident", ] @@ -2456,9 +2577,9 @@ dependencies = [ [[package]] name = "quote" -version = "1.0.26" +version = "1.0.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4424af4bf778aae2051a77b60283332f386554255d722233d09fbfc7e30da2fc" +checksum = "50f3b39ccfb720540debaa0164757101c08ecb8d326b15358ce76a62c7e85965" dependencies = [ "proc-macro2", ] @@ -2505,7 +2626,7 @@ version = "0.2.16" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" dependencies = [ - "bitflags", + "bitflags 1.3.2", ] [[package]] @@ -2514,7 +2635,7 @@ version = "0.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" dependencies = [ - "bitflags", + "bitflags 1.3.2", ] [[package]] @@ -2530,9 +2651,21 @@ dependencies = [ [[package]] name = "regex" -version = "1.8.1" +version = "1.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af83e617f331cc6ae2da5443c602dfa5af81e517212d9d611a5b3ba1777b5370" +checksum = "b2eae68fc220f7cf2532e4494aded17545fce192d59cd996e0fe7887f4ceb575" +dependencies = [ + "aho-corasick", + "memchr", + "regex-automata", + "regex-syntax", +] + +[[package]] +name = "regex-automata" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "39354c10dd07468c2e73926b23bb9c2caca74c5501e38a35da70406f1d923310" dependencies = [ "aho-corasick", "memchr", @@ -2541,16 +2674,16 @@ dependencies = [ [[package]] name = "regex-syntax" -version = "0.7.1" +version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a5996294f19bd3aae0453a862ad728f60e6600695733dd5df01da90c54363a3c" +checksum = "e5ea92a5b6195c6ef2a0295ea818b312502c6fc94dde986c5553242e18fd4ce2" [[package]] name = "rog-control-center" -version = "4.6.2" +version = "4.7.0-RC3" dependencies = [ + "asusd", "cargo-husky", - "daemon", "dirs", "eframe", "egui", @@ -2580,7 +2713,7 @@ dependencies = [ [[package]] name = "rog_anime" -version = "4.6.2" +version = "4.7.0-RC3" dependencies = [ "cargo-husky", "gif", @@ -2591,13 +2724,13 @@ dependencies = [ "serde", "serde_derive", "sysfs-class", - "uhid-virt", + "typeshare", "zbus", ] [[package]] name = "rog_aura" -version = "4.6.2" +version = "4.7.0-RC3" dependencies = [ "cargo-husky", "log", @@ -2605,12 +2738,13 @@ dependencies = [ "serde", "serde_derive", "sysfs-class", + "typeshare", "zbus", ] [[package]] name = "rog_dbus" -version = "4.6.2" +version = "4.7.0-RC3" dependencies = [ "cargo-husky", "rog_anime", @@ -2622,32 +2756,47 @@ dependencies = [ [[package]] name = "rog_platform" -version = "4.6.2" +version = "4.7.0-RC3" dependencies = [ "cargo-husky", "concat-idents", "inotify", "log", "rog_aura", + "rog_profiles", "rusb", "serde", "serde_derive", "sysfs-class", + "typeshare", "udev 0.7.0", "zbus", ] [[package]] name = "rog_profiles" -version = "4.6.2" +version = "4.7.0-RC3" dependencies = [ "cargo-husky", + "log", "serde", "serde_derive", + "typeshare", "udev 0.7.0", "zbus", ] +[[package]] +name = "rog_simulators" +version = "4.7.0-RC3" +dependencies = [ + "glam", + "log", + "rog_anime", + "sdl2", + "uhid-virt", +] + [[package]] name = "ron" version = "0.8.0" @@ -2655,7 +2804,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "300a51053b1cb55c80b7a9fde4120726ddf25ca241a1cbb926626f62fb136bff" dependencies = [ "base64", - "bitflags", + "bitflags 1.3.2", "serde", ] @@ -2669,6 +2818,12 @@ dependencies = [ "libusb1-sys", ] +[[package]] +name = "rustc-demangle" +version = "0.1.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" + [[package]] name = "rustc-hash" version = "1.1.0" @@ -2686,23 +2841,36 @@ dependencies = [ [[package]] name = "rustix" -version = "0.37.15" +version = "0.37.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a0661814f891c57c930a610266415528da53c4933e6dea5fb350cbfe048a9ece" +checksum = "4d69718bf81c6127a49dc64e44a742e8bb9213c0ff8869a22c308f84c1d4ab06" dependencies = [ - "bitflags", + "bitflags 1.3.2", "errno", "io-lifetimes", "libc", - "linux-raw-sys", + "linux-raw-sys 0.3.8", + "windows-sys 0.48.0", +] + +[[package]] +name = "rustix" +version = "0.38.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0a962918ea88d644592894bc6dc55acc6c0956488adcebbfb6e273506b7fd6e5" +dependencies = [ + "bitflags 2.3.3", + "errno", + "libc", + "linux-raw-sys 0.4.3", "windows-sys 0.48.0", ] [[package]] name = "ryu" -version = "1.0.13" +version = "1.0.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041" +checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" [[package]] name = "same-file" @@ -2721,9 +2889,9 @@ checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" [[package]] name = "scopeguard" -version = "1.1.0" +version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" +checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" [[package]] name = "sctk-adwaita" @@ -2739,36 +2907,59 @@ dependencies = [ ] [[package]] -name = "semver" -version = "1.0.17" +name = "sdl2" +version = "0.35.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed" +checksum = "f7959277b623f1fb9e04aea73686c3ca52f01b2145f8ea16f4ff30d8b7623b1a" +dependencies = [ + "bitflags 1.3.2", + "lazy_static", + "libc", + "sdl2-sys", +] + +[[package]] +name = "sdl2-sys" +version = "0.35.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e3586be2cf6c0a8099a79a12b4084357aa9b3e0b0d7980e3b67aaf7a9d55f9f0" +dependencies = [ + "cfg-if", + "libc", + "version-compare", +] + +[[package]] +name = "semver" +version = "1.0.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b0293b4b29daaf487284529cc2f5675b8e57c61f70167ba415a463651fd6a918" [[package]] name = "serde" -version = "1.0.160" +version = "1.0.174" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bb2f3770c8bce3bcda7e149193a069a0f4365bda1fa5cd88e03bca26afc1216c" +checksum = "3b88756493a5bd5e5395d53baa70b194b05764ab85b59e43e4b8f4e1192fa9b1" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.160" +version = "1.0.174" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "291a097c63d8497e00160b166a967a4a79c64f3facdd01cbd7502231688d77df" +checksum = "6e5c3a298c7f978e53536f95a63bdc4c4a64550582f31a0359a9afda6aede62e" dependencies = [ "proc-macro2", "quote", - "syn 2.0.15", + "syn 2.0.27", ] [[package]] name = "serde_json" -version = "1.0.96" +version = "1.0.103" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "057d394a50403bcac12672b2b18fb387ab6d289d957dab67dd201875391e52f1" +checksum = "d03b412469450d4404fe8499a268edd7f8b79fecb074b0d812ad64ca21f4031b" dependencies = [ "itoa", "ryu", @@ -2777,20 +2968,20 @@ dependencies = [ [[package]] name = "serde_repr" -version = "0.1.12" +version = "0.1.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bcec881020c684085e55a25f7fd888954d56609ef363479dc5a1305eb0d40cab" +checksum = "e168eaaf71e8f9bd6037feb05190485708e019f4fd87d161b3c0a0d37daf85e5" dependencies = [ "proc-macro2", "quote", - "syn 2.0.15", + "syn 2.0.27", ] [[package]] name = "serde_spanned" -version = "0.6.1" +version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0efd8caf556a6cebd3b285caf480045fcc1ac04f6bd786b09a6f11af30c4fcf4" +checksum = "96426c9936fd7a0124915f9185ea1d20aa9445cc9821142f0a73bc9207a2e186" dependencies = [ "serde", ] @@ -2814,9 +3005,9 @@ checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3" [[package]] name = "signal-hook" -version = "0.3.15" +version = "0.3.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "732768f1176d21d09e076c23a93123d40bba92d50c4058da34d45c8de8e682b9" +checksum = "8621587d4798caf8eb44879d42e56b9a93ea5dcd315a6487c357130095b62801" dependencies = [ "libc", "signal-hook-registry", @@ -2857,9 +3048,9 @@ dependencies = [ [[package]] name = "smallvec" -version = "1.10.0" +version = "1.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" +checksum = "62bb4feee49fdd9f707ef802e22365a35de4b7b299de4763d44bfea899442ff9" [[package]] name = "smithay-client-toolkit" @@ -2867,7 +3058,7 @@ version = "0.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f307c47d32d2715eb2e0ece5589057820e0e5e70d07c247d1063e844e107f454" dependencies = [ - "bitflags", + "bitflags 1.3.2", "calloop", "dlib", "lazy_static", @@ -2931,35 +3122,14 @@ checksum = "9e08d8363704e6c71fc928674353e6b7c23dcea9d82d7012c8faf2a3a025f8d0" [[package]] name = "strict-num" -version = "0.1.0" +version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9df65f20698aeed245efdde3628a6b559ea1239bbb871af1b6e3b58c413b2bd1" - -[[package]] -name = "strum" -version = "0.22.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f7ac893c7d471c8a21f31cfe213ec4f6d9afeed25537c772e08ef3f005f8729e" -dependencies = [ - "strum_macros", -] - -[[package]] -name = "strum_macros" -version = "0.22.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "339f799d8b549e3744c7ac7feb216383e4005d94bdb22561b3ab8f3b808ae9fb" -dependencies = [ - "heck 0.3.3", - "proc-macro2", - "quote", - "syn 1.0.109", -] +checksum = "6637bab7722d379c8b41ba849228d680cc12d0a45ba1fa2b48f2a30577a06731" [[package]] name = "supergfxctl" version = "5.1.1" -source = "git+https://gitlab.com/asus-linux/supergfxctl.git#47cb9a2138c28a4484919131ec94d7103e0f1447" +source = "git+https://gitlab.com/asus-linux/supergfxctl.git#fcba63b1a29284fc76da65e60751a33b81380259" dependencies = [ "log", "logind-zbus", @@ -2969,8 +3139,6 @@ dependencies = [ "tokio", "udev 0.6.3", "zbus", - "zvariant", - "zvariant_derive", ] [[package]] @@ -2986,9 +3154,9 @@ dependencies = [ [[package]] name = "syn" -version = "2.0.15" +version = "2.0.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a34fcf3e8b60f57e6a14301a2e916d323af98b0ea63c599441eec8558660c822" +checksum = "b60f673f44a8255b9c8c657daf66a596d435f2da81a555b06dc644d080ba45e0" dependencies = [ "proc-macro2", "quote", @@ -3006,14 +3174,14 @@ dependencies = [ [[package]] name = "system-deps" -version = "6.0.5" +version = "6.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d0fe581ad25d11420b873cf9aedaca0419c2b411487b134d4d21065f3d092055" +checksum = "30c2de8a4d8f4b823d634affc9cd2a74ec98c53a756f317e529a48046cbf71f3" dependencies = [ "cfg-expr", - "heck 0.4.1", + "heck", "pkg-config", - "toml 0.7.3", + "toml 0.7.6", "version-compare", ] @@ -3029,32 +3197,31 @@ dependencies = [ [[package]] name = "target-lexicon" -version = "0.12.7" +version = "0.12.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fd1ba337640d60c3e96bc6f0638a939b9c9a7f2c316a1598c279828b3d1dc8c5" +checksum = "1d2faeef5759ab89935255b1a4cd98e0baf99d1085e37d36599c625dac49ae8e" [[package]] name = "tauri-winrt-notification" -version = "0.1.0" +version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c58de036c4d2e20717024de2a3c4bf56c301f07b21bc8ef9b57189fce06f1f3b" +checksum = "4f5bff1d532fead7c43324a0fa33643b8621a47ce2944a633be4cb6c0240898f" dependencies = [ "quick-xml", - "strum", "windows 0.39.0", ] [[package]] name = "tempfile" -version = "3.5.0" +version = "3.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b9fbec84f381d5795b08656e4912bec604d162bff9291d6189a78f4c8ab87998" +checksum = "5486094ee78b2e5038a6382ed7645bc084dc2ec433426ca4c3cb61e2007b8998" dependencies = [ "cfg-if", - "fastrand", + "fastrand 2.0.0", "redox_syscall 0.3.5", - "rustix", - "windows-sys 0.45.0", + "rustix 0.38.4", + "windows-sys 0.48.0", ] [[package]] @@ -3068,29 +3235,29 @@ dependencies = [ [[package]] name = "thiserror" -version = "1.0.40" +version = "1.0.44" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac" +checksum = "611040a08a0439f8248d1990b111c95baa9c704c805fa1f62104b39655fd7f90" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.40" +version = "1.0.44" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f" +checksum = "090198534930841fab3a5d1bb637cde49e339654e606195f8d9c76eeb081dc96" dependencies = [ "proc-macro2", "quote", - "syn 2.0.15", + "syn 2.0.27", ] [[package]] name = "time" -version = "0.3.20" +version = "0.3.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd0cbfecb4d19b5ea75bb31ad904eb5b9fa13f21079c3b92017ebdf4999a5890" +checksum = "59e399c068f43a5d116fedaf73b203fa4f9c519f17e2b34f63221d3792f81446" dependencies = [ "serde", "time-core", @@ -3098,9 +3265,9 @@ dependencies = [ [[package]] name = "time-core" -version = "0.1.0" +version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2e153e1f1acaef8acc537e68b44906d2db6436e2b35ac2c6b42640fff91f00fd" +checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb" [[package]] name = "tiny-skia" @@ -3153,11 +3320,12 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.28.0" +version = "1.29.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c3c786bf8134e5a3a166db9b29ab8f48134739014a3eca7bc6bfa95d673b136f" +checksum = "532826ff75199d5833b9d2c5fe410f29235e25704ee5f0ef599fb51c21f4a4da" dependencies = [ "autocfg", + "backtrace", "libc", "mio", "num_cpus", @@ -3175,7 +3343,7 @@ checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e" dependencies = [ "proc-macro2", "quote", - "syn 2.0.15", + "syn 2.0.27", ] [[package]] @@ -3189,9 +3357,9 @@ dependencies = [ [[package]] name = "toml" -version = "0.7.3" +version = "0.7.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b403acf6f2bb0859c93c7f0d967cb4a75a7ac552100f9322faf64dc047669b21" +checksum = "c17e963a819c331dcacd7ab957d80bc2b9a9c1e71c804826d2f283dd65306542" dependencies = [ "serde", "serde_spanned", @@ -3201,32 +3369,33 @@ dependencies = [ [[package]] name = "toml_datetime" -version = "0.6.1" +version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3ab8ed2edee10b50132aed5f331333428b011c99402b5a534154ed15746f9622" +checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b" dependencies = [ "serde", ] [[package]] name = "toml_edit" -version = "0.19.8" +version = "0.19.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "239410c8609e8125456927e6707163a3b1fdb40561e4b803bc041f466ccfdc13" +checksum = "f8123f27e969974a3dfba720fdb560be359f57b44302d280ba72e76a74480e8a" dependencies = [ "indexmap", "serde", "serde_spanned", "toml_datetime", - "winnow", + "winnow 0.5.0", ] [[package]] name = "tracing" -version = "0.1.38" +version = "0.1.37" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cf9cf6a813d3f40c88b0b6b6f29a5c95c6cdbf97c1f9cc53fb820200f5ad814d" +checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8" dependencies = [ + "cfg-if", "pin-project-lite", "tracing-attributes", "tracing-core", @@ -3234,29 +3403,29 @@ dependencies = [ [[package]] name = "tracing-attributes" -version = "0.1.24" +version = "0.1.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0f57e3ca2a01450b1a921183a9c9cbfda207fd822cef4ccb00a65402cbba7a74" +checksum = "5f4f31f56159e98206da9efd823404b79b6ef3143b4a7ab76e67b1751b25a4ab" dependencies = [ "proc-macro2", "quote", - "syn 2.0.15", + "syn 2.0.27", ] [[package]] name = "tracing-core" -version = "0.1.30" +version = "0.1.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a" +checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a" dependencies = [ "once_cell", ] [[package]] name = "ttf-parser" -version = "0.19.0" +version = "0.19.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "44dcf002ae3b32cd25400d6df128c5babec3927cd1eb7ce813cfff20eb6c3746" +checksum = "a464a4b34948a5f67fddd2b823c62d9d92e44be75058b99939eae6c5b6960b33" [[package]] name = "typenum" @@ -3264,6 +3433,28 @@ version = "1.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba" +[[package]] +name = "typeshare" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f44d1a2f454cb35fbe05b218c410792697e76bd868f48d3a418f2cd1a7d527d6" +dependencies = [ + "chrono", + "serde", + "serde_json", + "typeshare-annotation", +] + +[[package]] +name = "typeshare-annotation" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fc670d0e358428857cc3b4bf504c691e572fccaec9542ff09212d3f13d74b7a9" +dependencies = [ + "quote", + "syn 1.0.109", +] + [[package]] name = "udev" version = "0.6.3" @@ -3324,9 +3515,9 @@ checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" [[package]] name = "unicode-ident" -version = "1.0.8" +version = "1.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4" +checksum = "301abaae475aa91687eb82514b328ab47a211a533026cb25fc3e519b86adfc3c" [[package]] name = "unicode-normalization" @@ -3337,17 +3528,11 @@ dependencies = [ "tinyvec", ] -[[package]] -name = "unicode-segmentation" -version = "1.10.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36" - [[package]] name = "url" -version = "2.3.1" +version = "2.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643" +checksum = "50bff7831e19200a85b17131d085c25d7811bc4e186efdaf54bbd132994a88cb" dependencies = [ "form_urlencoded", "idna", @@ -3482,7 +3667,7 @@ version = "0.29.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3f3b068c05a039c9f755f881dc50f01732214f5685e379829759088967c46715" dependencies = [ - "bitflags", + "bitflags 1.3.2", "downcast-rs", "libc", "nix 0.24.3", @@ -3521,7 +3706,7 @@ version = "0.29.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b950621f9354b322ee817a23474e479b34be96c2e909c14f7bc0100e9a970bc6" dependencies = [ - "bitflags", + "bitflags 1.3.2", "wayland-client", "wayland-commons", "wayland-scanner", @@ -3573,12 +3758,12 @@ dependencies = [ [[package]] name = "webbrowser" -version = "0.8.9" +version = "0.8.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b692165700260bbd40fbc5ff23766c03e339fbaca907aeea5cb77bf0a553ca83" +checksum = "fd222aa310eb7532e3fd427a5d7db7e44bc0b0cf1c1e21139c345325511a85b6" dependencies = [ "core-foundation", - "dirs", + "home", "jni", "log", "ndk-context", @@ -3658,6 +3843,15 @@ dependencies = [ "windows-targets 0.42.2", ] +[[package]] +name = "windows" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f" +dependencies = [ + "windows-targets 0.48.1", +] + [[package]] name = "windows-implement" version = "0.44.0" @@ -3695,7 +3889,7 @@ version = "0.48.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" dependencies = [ - "windows-targets 0.48.0", + "windows-targets 0.48.1", ] [[package]] @@ -3715,9 +3909,9 @@ dependencies = [ [[package]] name = "windows-targets" -version = "0.48.0" +version = "0.48.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5" +checksum = "05d4b17490f70499f20b9e791dcf6a299785ce8af4d709018206dc5b4953e95f" dependencies = [ "windows_aarch64_gnullvm 0.48.0", "windows_aarch64_msvc 0.48.0", @@ -3844,12 +4038,12 @@ checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a" [[package]] name = "winit" -version = "0.28.3" +version = "0.28.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4f504e8c117b9015f618774f8d58cd4781f5a479bc41079c064f974cbb253874" +checksum = "866db3f712fffba75d31bf0cdecf357c8aeafd158c5b7ab51dba2a2b2d47f196" dependencies = [ "android-activity", - "bitflags", + "bitflags 1.3.2", "cfg_aliases", "core-foundation", "core-graphics", @@ -3886,6 +4080,15 @@ dependencies = [ "memchr", ] +[[package]] +name = "winnow" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "81fac9742fd1ad1bd9643b991319f72dd031016d44b77039a26977eb667141e7" +dependencies = [ + "memchr", +] + [[package]] name = "x11-dl" version = "2.21.0" @@ -3940,21 +4143,22 @@ dependencies = [ [[package]] name = "xml-rs" -version = "0.8.4" +version = "0.8.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d2d7d3948613f75c98fd9328cfdcc45acc4d360655289d0a7d4ec931392200a3" +checksum = "47430998a7b5d499ccee752b41567bc3afc57e1327dc855b1a2aa44ce29b5fa1" [[package]] name = "zbus" -version = "3.12.0" +version = "3.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "29242fa5ec5693629ae74d6eb1f69622a9511f600986d6d9779bccf36ac316e3" +checksum = "6c3d77c9966c28321f1907f0b6c5a5561189d1f7311eea6d94180c6be9daab29" dependencies = [ "async-broadcast", "async-executor", "async-fs", "async-io", "async-lock", + "async-process", "async-recursion", "async-task", "async-trait", @@ -3985,23 +4189,24 @@ dependencies = [ [[package]] name = "zbus_macros" -version = "3.12.0" +version = "3.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "537793e26e9af85f774801dc52c6f6292352b2b517c5cf0449ffd3735732a53a" +checksum = "f6e341d12edaff644e539ccbbf7f161601294c9a84ed3d7e015da33155b435af" dependencies = [ "proc-macro-crate", "proc-macro2", "quote", "regex", "syn 1.0.109", + "winnow 0.4.1", "zvariant_utils", ] [[package]] name = "zbus_names" -version = "2.5.0" +version = "2.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f34f314916bd89bdb9934154627fab152f4f28acdda03e7c4c68181b214fe7e3" +checksum = "fb80bb776dbda6e23d705cf0123c3b95df99c4ebeaec6c2599d4a5419902b4a9" dependencies = [ "serde", "static_assertions", @@ -4010,9 +4215,9 @@ dependencies = [ [[package]] name = "zvariant" -version = "3.12.0" +version = "3.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "46fe4914a985446d6fd287019b5fceccce38303d71407d9e6e711d44954a05d8" +checksum = "44b291bee0d960c53170780af148dca5fa260a63cdd24f1962fa82e03e53338c" dependencies = [ "byteorder", "enumflags2", @@ -4024,9 +4229,9 @@ dependencies = [ [[package]] name = "zvariant_derive" -version = "3.12.0" +version = "3.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34c20260af4b28b3275d6676c7e2a6be0d4332e8e0aba4616d34007fd84e462a" +checksum = "934d7a7dfc310d6ee06c87ffe88ef4eca7d3e37bb251dece2ef93da8f17d8ecd" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -4037,9 +4242,9 @@ dependencies = [ [[package]] name = "zvariant_utils" -version = "1.0.0" +version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "53b22993dbc4d128a17a3b6c92f1c63872dd67198537ee728d8b5d7c40640a8b" +checksum = "7234f0d811589db492d16893e3f21e8e2fd282e6d01b0cddee310322062cc200" dependencies = [ "proc-macro2", "quote", diff --git a/pkgs/applications/system/asusctl/default.nix b/pkgs/applications/system/asusctl/default.nix index 32bd49afb4cf..95b0f847feaf 100644 --- a/pkgs/applications/system/asusctl/default.nix +++ b/pkgs/applications/system/asusctl/default.nix @@ -13,13 +13,13 @@ rustPlatform.buildRustPackage rec { pname = "asusctl"; - version = "4.6.2"; + version = "4.7.0"; src = fetchFromGitLab { owner = "asus-linux"; repo = "asusctl"; rev = version; - hash = "sha256-qfl8MUSHjqlSnsaudoRD9fY5TM9zgy7L7DA+pctn/nc="; + hash = "sha256-SZijR9PotN0O72laj+FBSCVMXLXadmLRhCSD4XqobD0="; }; cargoHash = ""; @@ -28,22 +28,23 @@ rustPlatform.buildRustPackage rec { outputHashes = { "ecolor-0.21.0" = "sha256-m7eHX6flwO21umtx3dnIuVUnNsEs3ZCyOk5Vvp/lVfI="; "notify-rust-4.6.0" = "sha256-jhCgisA9f6AI9e9JQUYRtEt47gQnDv5WsdRKFoKvHJs="; - "supergfxctl-5.1.1" = "sha256-AThaZ9dp5T/DtLPE6gZ9qgkw0xksiq+VCL9Y4G41voE="; + "supergfxctl-5.1.1" = "sha256-H00QHNILEjOtavXdj4Jd+rdLprJpVSlSVV3qkTeknzQ="; }; }; postPatch = '' files=" - daemon-user/src/daemon.rs - daemon-user/src/config.rs - rog-control-center/src/main.rs + asusd-user/src/config.rs + asusd-user/src/daemon.rs + asusd/src/ctrl_anime/config.rs rog-aura/src/aura_detection.rs + rog-control-center/src/main.rs " for file in $files; do substituteInPlace $file --replace /usr/share $out/share done - substituteInPlace daemon/src/ctrl_platform.rs --replace /usr/bin/chattr ${e2fsprogs}/bin/chattr + substituteInPlace asusd/src/ctrl_platform.rs --replace /usr/bin/chattr ${e2fsprogs}/bin/chattr substituteInPlace data/asusd.rules --replace systemctl ${systemd}/bin/systemctl substituteInPlace data/asusd.service \ diff --git a/pkgs/applications/terminal-emulators/wezterm/default.nix b/pkgs/applications/terminal-emulators/wezterm/default.nix index b0cd6ea67bf0..26029c8d386c 100644 --- a/pkgs/applications/terminal-emulators/wezterm/default.nix +++ b/pkgs/applications/terminal-emulators/wezterm/default.nix @@ -140,6 +140,7 @@ rustPlatform.buildRustPackage rec { description = "GPU-accelerated cross-platform terminal emulator and multiplexer written by @wez and implemented in Rust"; homepage = "https://wezfurlong.org/wezterm"; license = licenses.mit; + mainProgram = "wezterm"; maintainers = with maintainers; [ SuperSandro2000 mimame ]; }; } diff --git a/pkgs/applications/version-management/gitqlient/default.nix b/pkgs/applications/version-management/gitqlient/default.nix index 622c0f045135..d7c1e46577e5 100644 --- a/pkgs/applications/version-management/gitqlient/default.nix +++ b/pkgs/applications/version-management/gitqlient/default.nix @@ -63,8 +63,8 @@ mkDerivation rec { postUnpack = '' for dep in AuxiliarCustomWidgets QPinnableTabWidget QLogger git; do - rmdir "source/src/$dep" - ln -sf "../../$dep" "source/src/$dep" + rmdir "${main_src.name}/src/$dep" + ln -sf "../../$dep" "${main_src.name}/src/$dep" done ''; diff --git a/pkgs/applications/video/mpv/scripts/mpv-playlistmanager.nix b/pkgs/applications/video/mpv/scripts/mpv-playlistmanager.nix index b59f9de38714..720fdaae5b3f 100644 --- a/pkgs/applications/video/mpv/scripts/mpv-playlistmanager.nix +++ b/pkgs/applications/video/mpv/scripts/mpv-playlistmanager.nix @@ -2,18 +2,19 @@ stdenvNoCC.mkDerivation rec { pname = "mpv-playlistmanager"; - version = "unstable-2022-08-26"; + version = "unstable-2023-08-09"; src = fetchFromGitHub { owner = "jonniek"; repo = "mpv-playlistmanager"; - rev = "07393162f7f78f8188e976f616f1b89813cec741"; - sha256 = "sha256-Vgh5F6c90ijp5LVrP2cdAOXo+QtJ9aXI9G/3C2HGqd4="; + rev = "e479cbc7e83a07c5444f335cfda13793681bcbd8"; + sha256 = "sha256-Nh4g8uSkHWPjwl5wyqWtM+DW9fkEbmCcOsZa4eAF6Cs="; }; postPatch = '' substituteInPlace playlistmanager.lua \ - --replace "youtube-dl" "${lib.getBin yt-dlp}/bin/yt-dlp" + --replace 'youtube_dl_executable = "youtube-dl",' \ + 'youtube_dl_executable = "${lib.getBin yt-dlp}/bin/yt-dlp"', ''; dontBuild = true; diff --git a/pkgs/applications/video/streamlink/default.nix b/pkgs/applications/video/streamlink/default.nix index 0f3fc27dc2b1..873354ab897d 100644 --- a/pkgs/applications/video/streamlink/default.nix +++ b/pkgs/applications/video/streamlink/default.nix @@ -45,8 +45,9 @@ python3Packages.buildPythonApplication rec { ]; meta = with lib; { - homepage = "https://streamlink.github.io/"; + changelog = "https://github.com/streamlink/streamlink/raw/${version}/CHANGELOG.md"; description = "CLI for extracting streams from various websites to video player of your choosing"; + homepage = "https://streamlink.github.io/"; longDescription = '' Streamlink is a CLI utility that pipes videos from online streaming services to a variety of video players such as VLC, or @@ -54,8 +55,8 @@ python3Packages.buildPythonApplication rec { Streamlink is a fork of the livestreamer project. ''; - changelog = "https://github.com/streamlink/streamlink/raw/${version}/CHANGELOG.md"; license = licenses.bsd2; + mainProgram = "streamlink"; maintainers = with maintainers; [ dezgeg zraexy DeeUnderscore ]; }; } diff --git a/pkgs/applications/virtualization/runc/default.nix b/pkgs/applications/virtualization/runc/default.nix index 6b2fae7b23a2..38a285945593 100644 --- a/pkgs/applications/virtualization/runc/default.nix +++ b/pkgs/applications/virtualization/runc/default.nix @@ -15,13 +15,13 @@ buildGoModule rec { pname = "runc"; - version = "1.1.8"; + version = "1.1.9"; src = fetchFromGitHub { owner = "opencontainers"; repo = "runc"; rev = "v${version}"; - hash = "sha256-rDJYEc64KW4Qa3Eg2oUjJqIKrg6THb5hxQFFbvb9Zp4="; + hash = "sha256-9vNzKoG+0Ze4+dhluNM6QtsUjV8/bpkuvEF8ASBfBRo="; }; vendorHash = null; diff --git a/pkgs/applications/window-managers/sway/bg.nix b/pkgs/applications/window-managers/sway/bg.nix index fe63f661c29b..aa5d12cdfc4f 100644 --- a/pkgs/applications/window-managers/sway/bg.nix +++ b/pkgs/applications/window-managers/sway/bg.nix @@ -26,14 +26,15 @@ stdenv.mkDerivation rec { meta = with lib; { description = "Wallpaper tool for Wayland compositors"; + inherit (src.meta) homepage; longDescription = '' A wallpaper utility for Wayland compositors, that is compatible with any Wayland compositor which implements the following Wayland protocols: wlr-layer-shell, xdg-output, and xdg-shell. ''; - inherit (src.meta) homepage; license = licenses.mit; - platforms = platforms.linux; + mainProgram = "swaybg"; maintainers = with maintainers; [ primeos ]; + platforms = platforms.linux; }; } diff --git a/pkgs/applications/window-managers/sway/idle.nix b/pkgs/applications/window-managers/sway/idle.nix index b410919022f1..0ee08dc7ca1d 100644 --- a/pkgs/applications/window-managers/sway/idle.nix +++ b/pkgs/applications/window-managers/sway/idle.nix @@ -12,7 +12,7 @@ stdenv.mkDerivation rec { owner = "swaywm"; repo = "swayidle"; rev = version; - sha256 = "sha256-/U6Y9H5ZqIJph3TZVcwr9+Qfd6NZNYComXuC1D9uGHg="; + hash = "sha256-/U6Y9H5ZqIJph3TZVcwr9+Qfd6NZNYComXuC1D9uGHg="; }; strictDeps = true; @@ -29,13 +29,14 @@ stdenv.mkDerivation rec { meta = with lib; { description = "Idle management daemon for Wayland"; + inherit (src.meta) homepage; longDescription = '' Sway's idle management daemon. It is compatible with any Wayland compositor which implements the KDE idle protocol. ''; - inherit (src.meta) homepage; license = licenses.mit; - platforms = platforms.linux; + mainProgram = "swayidle"; maintainers = with maintainers; [ primeos ]; + platforms = platforms.linux; }; } diff --git a/pkgs/build-support/trivial-builders/default.nix b/pkgs/build-support/trivial-builders/default.nix index 0c63cc5a9be9..7c4d204df407 100644 --- a/pkgs/build-support/trivial-builders/default.nix +++ b/pkgs/build-support/trivial-builders/default.nix @@ -304,6 +304,7 @@ rec { checkPhase = '' ${stdenv.shellDryRun} "$target" ''; + meta.mainProgram = name; }; /* diff --git a/pkgs/data/themes/mojave/default.nix b/pkgs/data/themes/mojave/default.nix index 0e4bbdbe5aae..82256441fbb1 100644 --- a/pkgs/data/themes/mojave/default.nix +++ b/pkgs/data/themes/mojave/default.nix @@ -103,7 +103,7 @@ stdenvNoCC.mkDerivation rec { done ${lib.optionalString wallpapers '' - for f in ../wallpapers/Mojave{,-timed}.xml; do + for f in ../${wallpapers_src.name}/Mojave{,-timed}.xml; do substituteInPlace $f --replace /usr $out done ''} @@ -123,9 +123,9 @@ stdenvNoCC.mkDerivation rec { ${lib.optionalString wallpapers '' mkdir -p $out/share/backgrounds/Mojave mkdir -p $out/share/gnome-background-properties - cp -a ../wallpapers/Mojave*.jpeg $out/share/backgrounds/Mojave/ - cp -a ../wallpapers/Mojave-timed.xml $out/share/backgrounds/Mojave/ - cp -a ../wallpapers/Mojave.xml $out/share/gnome-background-properties/ + cp -a ../${wallpapers_src.name}/Mojave*.jpeg $out/share/backgrounds/Mojave/ + cp -a ../${wallpapers_src.name}/Mojave-timed.xml $out/share/backgrounds/Mojave/ + cp -a ../${wallpapers_src.name}/Mojave.xml $out/share/gnome-background-properties/ ''} # Replace duplicate files with soft links to the first file in each diff --git a/pkgs/desktops/gnome/core/gnome-shell/default.nix b/pkgs/desktops/gnome/core/gnome-shell/default.nix index 5c49914cdf02..dfc986f06b6a 100644 --- a/pkgs/desktops/gnome/core/gnome-shell/default.nix +++ b/pkgs/desktops/gnome/core/gnome-shell/default.nix @@ -80,8 +80,10 @@ stdenv.mkDerivation rec { # Hardcode paths to various dependencies so that they can be found at runtime. (substituteAll { src = ./fix-paths.patch; - inherit libgnomekbd unzip; + gkbd_keyboard_display = "${lib.getBin libgnomekbd}/bin/gkbd-keyboard-display"; + glib_compile_schemas = "${glib.dev}/bin/glib-compile-schemas"; gsettings = "${glib.bin}/bin/gsettings"; + unzip = "${lib.getBin unzip}/bin/unzip"; }) # Use absolute path for libshew installation to make our patched gobject-introspection diff --git a/pkgs/desktops/gnome/core/gnome-shell/fix-paths.patch b/pkgs/desktops/gnome/core/gnome-shell/fix-paths.patch index 8b35736ecfcd..e70c4851e9d5 100644 --- a/pkgs/desktops/gnome/core/gnome-shell/fix-paths.patch +++ b/pkgs/desktops/gnome/core/gnome-shell/fix-paths.patch @@ -10,27 +10,62 @@ index de91167c5..1c9965678 100644 +ExecStart=@gsettings@ set org.gnome.shell disable-user-extensions true Restart=no diff --git a/js/ui/extensionDownloader.js b/js/ui/extensionDownloader.js -index 8bf4646a6..59e88bb4c 100644 +index 197cc1c1c..dd74aa167 100644 --- a/js/ui/extensionDownloader.js +++ b/js/ui/extensionDownloader.js -@@ -114,7 +114,7 @@ async function extractExtensionArchive(bytes, dir) { +@@ -110,7 +110,7 @@ async function extractExtensionArchive(bytes, dir) { stream.close_async(GLib.PRIORITY_DEFAULT, null); const unzip = Gio.Subprocess.new( - ['unzip', '-uod', dir.get_path(), '--', file.get_path()], -+ ['@unzip@/bin/unzip', '-uod', dir.get_path(), '--', file.get_path()], ++ ['@unzip@', '-uod', dir.get_path(), '--', file.get_path()], Gio.SubprocessFlags.NONE); await unzip.wait_check_async(null); - } + +@@ -132,7 +132,7 @@ async function extractExtensionArchive(bytes, dir) { + } + + const compileSchema = Gio.Subprocess.new( +- ['glib-compile-schemas', '--strict', schemasPath.get_path()], ++ ['@glib_compile_schemas@', '--strict', schemasPath.get_path()], + Gio.SubprocessFlags.NONE); + + try { diff --git a/js/ui/status/keyboard.js b/js/ui/status/keyboard.js -index bc50f3d37..868eb5abf 100644 +index fff4e73c2..92859b099 100644 --- a/js/ui/status/keyboard.js +++ b/js/ui/status/keyboard.js -@@ -1080,6 +1080,6 @@ class InputSourceIndicator extends PanelMenu.Button { +@@ -1092,6 +1092,6 @@ class InputSourceIndicator extends PanelMenu.Button { if (xkbVariant.length > 0) - description = '%s\t%s'.format(description, xkbVariant); + description = `${description}\t${xkbVariant}`; - Util.spawn(['gkbd-keyboard-display', '-l', description]); -+ Util.spawn(['@libgnomekbd@/bin/gkbd-keyboard-display', '-l', description]); ++ Util.spawn(['@gkbd_keyboard_display@', '-l', description]); } }); +diff --git a/subprojects/extensions-tool/src/command-install.c b/subprojects/extensions-tool/src/command-install.c +index 11fb4b6b7..e00e4807b 100644 +--- a/subprojects/extensions-tool/src/command-install.c ++++ b/subprojects/extensions-tool/src/command-install.c +@@ -158,7 +158,7 @@ install_extension (const char *bundle, + + schemapath = g_file_get_path (schemadir); + proc = g_subprocess_new (G_SUBPROCESS_FLAGS_STDERR_SILENCE, &error, +- "glib-compile-schemas", "--strict", schemapath, ++ "@glib_compile_schemas@", "--strict", schemapath, + NULL); + + if (!g_subprocess_wait_check (proc, NULL, &error)) +diff --git a/subprojects/extensions-tool/src/command-pack.c b/subprojects/extensions-tool/src/command-pack.c +index f2cfcd51a..2a9a7efdf 100644 +--- a/subprojects/extensions-tool/src/command-pack.c ++++ b/subprojects/extensions-tool/src/command-pack.c +@@ -168,7 +168,7 @@ extension_pack_add_schemas (ExtensionPack *pack, + #else + dstpath = g_file_get_path (dstdir); + proc = g_subprocess_new (G_SUBPROCESS_FLAGS_STDERR_SILENCE, error, +- "glib-compile-schemas", "--strict", dstpath, NULL); ++ "@glib_compile_schemas@", "--strict", dstpath, NULL); + + if (!g_subprocess_wait_check (proc, NULL, error)) + return FALSE; diff --git a/pkgs/development/compilers/acme/default.nix b/pkgs/development/compilers/acme/default.nix index 9aadbd2459bf..3f8110b5b5a4 100644 --- a/pkgs/development/compilers/acme/default.nix +++ b/pkgs/development/compilers/acme/default.nix @@ -10,7 +10,7 @@ stdenv.mkDerivation rec { sha256 = "1dzvip90yf1wg0fhfghn96dwrhg289d06b624px9a2wwy3vp5ryg"; }; - sourceRoot = "code-0-r${src.rev}/src"; + sourceRoot = "${src.name}/src"; postPatch = '' substituteInPlace Makefile \ diff --git a/pkgs/development/compilers/flutter/engine-artifacts/default.nix b/pkgs/development/compilers/flutter/engine-artifacts/default.nix index 249e9217325b..41201bdb94e5 100644 --- a/pkgs/development/compilers/flutter/engine-artifacts/default.nix +++ b/pkgs/development/compilers/flutter/engine-artifacts/default.nix @@ -6,13 +6,43 @@ , fetchzip , autoPatchelfHook , gtk3 +, flutterVersion , unzip +, stdenvNoCC }: let hashes = (import ./hashes.nix).${engineVersion} or (throw "There are no known artifact hashes for Flutter engine version ${engineVersion}."); + noticeText = stdenvNoCC.mkDerivation (finalAttrs: { + pname = "flutter-notice"; + version = engineVersion; + dontUnpack = true; + src = fetchurl { + url = "https://raw.githubusercontent.com/flutter/engine/${engineVersion}/sky/packages/sky_engine/LICENSE"; + sha256 = hashes.skyNotice; + }; + flutterNotice = fetchurl { + url = "https://raw.githubusercontent.com/flutter/flutter/${flutterVersion}/LICENSE"; + sha256 = hashes.flutterNotice; + }; + installPhase = + '' + SRC_TEXT="$(cat $src)" + FLUTTER_NOTICE_TEXT="$(cat $flutterNotice)" + cat << EOF > $out + This artifact is from the Flutter SDK's engine. + This file carries third-party notices for its dependencies. + See also other files, that have LICENSE in the name, in the artifact directory. + Appendix 1/2: merged sky_engine LICENSE file (also found at ${finalAttrs.src.url}) + $SRC_TEXT + + Appendix 2/2: Flutter license (also found at ${finalAttrs.flutterNotice.url}) + $FLUTTER_NOTICE_TEXT + EOF + ''; + }); artifacts = { common = { @@ -165,6 +195,17 @@ let destination = "$out/${if subdirectory == true then archiveBasename else if subdirectory != null then subdirectory else "."}"; in '' + # ship the notice near all artifacts. if the artifact directory is / multiple directories are nested in $src, link it there. If there isn't a directory, link it in root + # this *isn't the same as the subdirectory variable above* + DIR_CNT="$(echo */ | wc -w)" + if [[ "$DIR_CNT" == 0 ]]; then + ln -s ${noticeText} LICENSE.README + else + for dir in */ + do + ln -s ${noticeText} "$dir/LICENSE.README" + done + fi mkdir -p "${destination}" cp -r . "${destination}" ''; diff --git a/pkgs/development/compilers/flutter/engine-artifacts/hashes.nix b/pkgs/development/compilers/flutter/engine-artifacts/hashes.nix index fb5134739f76..f51e43b2474f 100644 --- a/pkgs/development/compilers/flutter/engine-artifacts/hashes.nix +++ b/pkgs/development/compilers/flutter/engine-artifacts/hashes.nix @@ -1,5 +1,7 @@ { "1a65d409c7a1438a34d21b60bf30a6fd5db59314" = { + skyNotice = "sha256-n9B26rLlfUqdR6s+2+PNK4H/fN95UE0T7/Vic19W6yo="; + flutterNotice = "sha256-pZjblLYpD/vhC17PkRBXtqlDNRxyf92p5fKJHWhwCiA="; android-arm = { "artifacts.zip" = "sha256-KDMiI6SQoZHfFV5LJJZ7VOGyEKC4UxzRc777j4BbXgM="; }; @@ -113,6 +115,8 @@ }; }; "45f6e009110df4f34ec2cf99f63cf73b71b7a420" = { + skyNotice = "sha256-n9B26rLlfUqdR6s+2+PNK4H/fN95UE0T7/Vic19W6yo="; + flutterNotice = "sha256-pZjblLYpD/vhC17PkRBXtqlDNRxyf92p5fKJHWhwCiA="; android-arm = { "artifacts.zip" = "sha256-NOpUM+iFSPVzr99Dz0DBdDUQnMC0ad1eZnVhtqu9HnU="; }; diff --git a/pkgs/development/compilers/flutter/wrapper.nix b/pkgs/development/compilers/flutter/wrapper.nix index 5685ddebd781..a650b1853fd4 100644 --- a/pkgs/development/compilers/flutter/wrapper.nix +++ b/pkgs/development/compilers/flutter/wrapper.nix @@ -56,7 +56,10 @@ }: let - engineArtifacts = callPackage ./engine-artifacts { inherit (flutter) engineVersion; }; + engineArtifacts = callPackage ./engine-artifacts { + inherit (flutter) engineVersion; + flutterVersion = flutter.version; + }; mkCommonArtifactLinkCommand = { artifact }: '' mkdir -p $out/artifacts/engine/common diff --git a/pkgs/development/compilers/gcl/2.6.13-pre.nix b/pkgs/development/compilers/gcl/2.6.13-pre.nix index 3e11738b462b..a4d01cba729f 100644 --- a/pkgs/development/compilers/gcl/2.6.13-pre.nix +++ b/pkgs/development/compilers/gcl/2.6.13-pre.nix @@ -21,7 +21,7 @@ stdenv.mkDerivation rec { sed -e 's/<= obj-date/<= (if (= 0 obj-date) 1 obj-date)/' -i lsp/make.lisp ''; - sourceRoot = "gcl/gcl"; + sourceRoot = "${src.name}/gcl"; # breaks when compiling in parallel enableParallelBuilding = false; diff --git a/pkgs/development/compilers/nextpnr/default.nix b/pkgs/development/compilers/nextpnr/default.nix index 2f6e4c86ac9e..d56f7e716301 100644 --- a/pkgs/development/compilers/nextpnr/default.nix +++ b/pkgs/development/compilers/nextpnr/default.nix @@ -11,29 +11,33 @@ let boostPython = boost.override { python = python3; enablePython = true; }; -in -stdenv.mkDerivation rec { + pname = "nextpnr"; version = "0.6"; - srcs = [ - (fetchFromGitHub { - owner = "YosysHQ"; - repo = "nextpnr"; - rev = "${pname}-${version}"; - hash = "sha256-S6qvTzvkS2tBMvuTpmuCx6h0OcKP5NBbmgRgOpAVtnA="; - name = "nextpnr"; - }) - (fetchFromGitHub { - owner = "YosysHQ"; - repo = "nextpnr-tests"; - rev = "00c55a9eb9ea2e062b51fe0d64741412b185d95d"; - sha256 = "sha256-83suMftMtnaRFq3T2/I7Uahb11WZlXhwYt6Q/rqi2Yo="; - name = "nextpnr-tests"; - }) - ]; + main_src = fetchFromGitHub { + owner = "YosysHQ"; + repo = "nextpnr"; + rev = "${pname}-${version}"; + hash = "sha256-S6qvTzvkS2tBMvuTpmuCx6h0OcKP5NBbmgRgOpAVtnA="; + name = "nextpnr"; + }; - sourceRoot = "nextpnr"; + test_src = fetchFromGitHub { + owner = "YosysHQ"; + repo = "nextpnr-tests"; + rev = "00c55a9eb9ea2e062b51fe0d64741412b185d95d"; + sha256 = "sha256-83suMftMtnaRFq3T2/I7Uahb11WZlXhwYt6Q/rqi2Yo="; + name = "nextpnr-tests"; + }; +in + +stdenv.mkDerivation rec { + inherit pname version; + + srcs = [ main_src test_src ]; + + sourceRoot = main_src.name; nativeBuildInputs = [ cmake ] @@ -66,7 +70,7 @@ stdenv.mkDerivation rec { ''; preBuild = '' - ln -s ../nextpnr-tests tests + ln -s ../${test_src.name} tests ''; doCheck = true; diff --git a/pkgs/development/compilers/rust/cargo-auditable.nix b/pkgs/development/compilers/rust/cargo-auditable.nix index dbbfff4dc6b6..b86ed5d7d4e1 100644 --- a/pkgs/development/compilers/rust/cargo-auditable.nix +++ b/pkgs/development/compilers/rust/cargo-auditable.nix @@ -1,4 +1,4 @@ -{ lib, fetchFromGitHub, makeRustPlatform, rustc, cargo, installShellFiles, stdenv }: +{ lib, buildPackages, fetchFromGitHub, makeRustPlatform, installShellFiles, stdenv }: let args = rec { @@ -30,8 +30,8 @@ let }; rustPlatform = makeRustPlatform { - inherit rustc; - cargo = cargo.override { + inherit (buildPackages) rustc; + cargo = buildPackages.cargo.override { auditable = false; }; }; diff --git a/pkgs/development/embedded/fpga/trellis/default.nix b/pkgs/development/embedded/fpga/trellis/default.nix index 566bf5bdf755..f0ff4a47b4c3 100644 --- a/pkgs/development/embedded/fpga/trellis/default.nix +++ b/pkgs/development/embedded/fpga/trellis/default.nix @@ -4,28 +4,29 @@ let rev = "488f4e71073062de314c55a037ede7cf03a3324c"; # git describe --tags realVersion = "1.2.1-14-g${builtins.substring 0 7 rev}"; + + main_src = fetchFromGitHub { + owner = "YosysHQ"; + repo = "prjtrellis"; + inherit rev; + hash = "sha256-Blbu+0rlM/3izbF0XCvkNpSAND0IclWEwK7anzyrpvw="; + name = "trellis"; + }; + + database_src = fetchFromGitHub { + owner = "YosysHQ"; + repo = "prjtrellis-db"; + rev = "35d900a94ff0db152679a67bf6e4fbf40ebc34aa"; + hash = "sha256-r6viR8y9ZjURGNbsa0/YY8lzy9kGzjuu408ntxwpqm0="; + name = "trellis-database"; + }; + in stdenv.mkDerivation rec { pname = "trellis"; version = "unstable-2022-09-14"; - srcs = [ - (fetchFromGitHub { - owner = "YosysHQ"; - repo = "prjtrellis"; - inherit rev; - hash = "sha256-Blbu+0rlM/3izbF0XCvkNpSAND0IclWEwK7anzyrpvw="; - name = "trellis"; - }) - - (fetchFromGitHub { - owner = "YosysHQ"; - repo = "prjtrellis-db"; - rev = "35d900a94ff0db152679a67bf6e4fbf40ebc34aa"; - hash = "sha256-r6viR8y9ZjURGNbsa0/YY8lzy9kGzjuu408ntxwpqm0="; - name = "trellis-database"; - }) - ]; - sourceRoot = "trellis"; + srcs = [ main_src database_src ]; + sourceRoot = main_src.name; buildInputs = [ boost ]; nativeBuildInputs = [ cmake python3 ]; @@ -36,7 +37,7 @@ in stdenv.mkDerivation rec { ]; preConfigure = '' - rmdir database && ln -sfv ${builtins.elemAt srcs 1} ./database + rmdir database && ln -sfv ${database_src} ./database cd libtrellis ''; diff --git a/pkgs/development/interpreters/nickel/default.nix b/pkgs/development/interpreters/nickel/default.nix index ea69852b7ab5..8ab3ec532fdb 100644 --- a/pkgs/development/interpreters/nickel/default.nix +++ b/pkgs/development/interpreters/nickel/default.nix @@ -43,6 +43,6 @@ rustPlatform.buildRustPackage rec { ''; changelog = "https://github.com/tweag/nickel/blob/${version}/RELEASES.md"; license = licenses.mit; - maintainers = with maintainers; [ AndersonTorres felschr ]; + maintainers = with maintainers; [ AndersonTorres felschr matthiasbeyer ]; }; } diff --git a/pkgs/development/interpreters/risor/default.nix b/pkgs/development/interpreters/risor/default.nix index d5c9c38cad2d..ac7ba0805f96 100644 --- a/pkgs/development/interpreters/risor/default.nix +++ b/pkgs/development/interpreters/risor/default.nix @@ -7,13 +7,13 @@ buildGoModule rec { pname = "risor"; - version = "0.12.0"; + version = "0.13.0"; src = fetchFromGitHub { owner = "risor-io"; repo = "risor"; rev = "v${version}"; - hash = "sha256-4Tw8QJj14MYfuQ4mNkSO1z4F8/3/6HjORKgARljlfs8="; + hash = "sha256-lalT9kwq0+y3xaYAcl/DqcwGXE27lNuL1DCr1wEE8ZE="; }; vendorHash = "sha256-diAbQwnlhMm43ZlLKq3llMl9mO3sIkc80aCI5UDn7F4="; diff --git a/pkgs/development/libraries/blst/default.nix b/pkgs/development/libraries/blst/default.nix index 71b2814100ef..ef174d1118a9 100644 --- a/pkgs/development/libraries/blst/default.nix +++ b/pkgs/development/libraries/blst/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation ( finalAttrs: { pname = "blst"; - version = "0.3.10"; + version = "0.3.11"; src = fetchFromGitHub { owner = "supranational"; repo = "blst"; rev = "v${finalAttrs.version}"; - hash = "sha256-xero1aTe2v4IhWIJaEDUsVDOfE77dOV5zKeHWntHogY="; + hash = "sha256-oqljy+ZXJAXEB/fJtmB8rlAr4UXM+Z2OkDa20gpILNA="; }; buildPhase = '' diff --git a/pkgs/development/libraries/bulletml/default.nix b/pkgs/development/libraries/bulletml/default.nix index 3da05302ac9f..8d562b58e24a 100644 --- a/pkgs/development/libraries/bulletml/default.nix +++ b/pkgs/development/libraries/bulletml/default.nix @@ -9,22 +9,25 @@ let sha256 = hash; }; -in stdenv.mkDerivation { + lib_src = fetchurl { + url = "http://shinh.skr.jp/libbulletml/libbulletml-${version}.tar.bz2"; + sha256 = "0yda0zgj2ydgkmby5676f5iiawabxadzh5p7bmy42998sp9g6dvw"; + }; + + cpp_src = fetchurl { + url = "http://shinh.skr.jp/d/d_cpp.tar.bz2"; + sha256 = "1ly9qmbb8q9nyadmdap1gmxs3vkniqgchlv2hw7riansz4gg1agh"; + }; +in + +stdenv.mkDerivation { pname = "bulletml"; inherit version; - srcs = [ - (fetchurl { - url = "http://shinh.skr.jp/libbulletml/libbulletml-${version}.tar.bz2"; - sha256 = "0yda0zgj2ydgkmby5676f5iiawabxadzh5p7bmy42998sp9g6dvw"; - }) - (fetchurl { - url = "http://shinh.skr.jp/d/d_cpp.tar.bz2"; - sha256 = "1ly9qmbb8q9nyadmdap1gmxs3vkniqgchlv2hw7riansz4gg1agh"; - }) - ]; - sourceRoot = "bulletml"; + srcs = [ lib_src cpp_src ]; + postUnpack = "mv d_cpp bulletml/"; + sourceRoot = "bulletml"; patches = [ (debianPatch "fixes" "0cnr968n0h50fjmjijx7idsa2pg2pv5cwy6nvfbkx9z8w2zf0mkl") diff --git a/pkgs/development/libraries/catch2/3.nix b/pkgs/development/libraries/catch2/3.nix index 72dd4552bf97..f064eb7a4fdb 100644 --- a/pkgs/development/libraries/catch2/3.nix +++ b/pkgs/development/libraries/catch2/3.nix @@ -7,13 +7,13 @@ stdenv.mkDerivation rec { pname = "catch2"; - version = "3.3.2"; + version = "3.4.0"; src = fetchFromGitHub { owner = "catchorg"; repo = "Catch2"; rev = "v${version}"; - hash = "sha256-t/4iCrzPeDZNNlgibVqx5rhe+d3lXwm1GmBMDDId0VQ="; + hash = "sha256-DqGGfNjKPW9HFJrX9arFHyNYjB61uoL6NabZatTWrr0="; }; nativeBuildInputs = [ diff --git a/pkgs/development/libraries/clipper/default.nix b/pkgs/development/libraries/clipper/default.nix index 9eb34f6b6863..929bf90d9c48 100644 --- a/pkgs/development/libraries/clipper/default.nix +++ b/pkgs/development/libraries/clipper/default.nix @@ -10,8 +10,6 @@ stdenv.mkDerivation rec { sourceRoot = "cpp"; - buildInputs = [ ]; - nativeBuildInputs = [ cmake ninja unzip ]; meta = with lib; { diff --git a/pkgs/development/libraries/example-robot-data/default.nix b/pkgs/development/libraries/example-robot-data/default.nix index 201275fb02ef..d9a107bf6497 100644 --- a/pkgs/development/libraries/example-robot-data/default.nix +++ b/pkgs/development/libraries/example-robot-data/default.nix @@ -33,6 +33,10 @@ stdenv.mkDerivation (finalAttrs: { ]; doCheck = true; + # The package expect to find an `example-robot-data/robots` folder somewhere + # either in install prefix or in the sources + # where it can find the meshes for unit tests + preCheck = "ln -s source ../../${finalAttrs.pname}"; pythonImportsCheck = [ "example_robot_data" ]; diff --git a/pkgs/development/libraries/freeimage/default.nix b/pkgs/development/libraries/freeimage/default.nix index dd5056ced93f..de1b616fc20a 100644 --- a/pkgs/development/libraries/freeimage/default.nix +++ b/pkgs/development/libraries/freeimage/default.nix @@ -3,7 +3,7 @@ , libjpeg, jxrlib, pkg-config , fixDarwinDylibNames, autoSignDarwinBinariesHook }: -stdenv.mkDerivation { +stdenv.mkDerivation (finalAttrs: { pname = "freeimage"; version = "unstable-2021-11-01"; @@ -12,7 +12,8 @@ stdenv.mkDerivation { rev = "1900"; sha256 = "rWoNlU/BWKZBPzRb1HqU6T0sT7aK6dpqKPe88+o/4sA="; }; - sourceRoot = "svn-r1900/FreeImage/trunk"; + + sourceRoot = "${finalAttrs.src.name}/FreeImage/trunk"; # Ensure that the bundled libraries are not used at all prePatch = '' @@ -74,4 +75,4 @@ stdenv.mkDerivation { maintainers = with lib.maintainers; [viric l-as]; platforms = with lib.platforms; unix; }; -} +}) diff --git a/pkgs/development/libraries/frozen/default.nix b/pkgs/development/libraries/frozen/default.nix new file mode 100644 index 000000000000..f6e58991a590 --- /dev/null +++ b/pkgs/development/libraries/frozen/default.nix @@ -0,0 +1,37 @@ +{ lib +, stdenv +, fetchFromGitHub +, meson +, ninja +}: + +stdenv.mkDerivation rec { + pname = "frozen"; + # pin to a newer release if frozen releases again, see cesanta/frozen#72 + version = "unstable-2021-02-23"; + + src = fetchFromGitHub { + owner = "cesanta"; + repo = "frozen"; + rev = "21f051e3abc2240d9a25b2add6629b38e963e102"; + hash = "sha256-BpuYK9fbWSpeF8iPT8ImrV3CKKaA5RQ2W0ZQ03TciR0="; + }; + + nativeBuildInputs = [ meson ninja ]; + + # frozen has a simple Makefile and a GN BUILD file as building scripts. + # Since it has only two source files, the best course of action to support + # cross compilation is to create a small meson.build file. + # Relevant upstream issue: https://github.com/cesanta/frozen/pull/71 + preConfigure = '' + cp ${./meson.build} meson.build + ''; + + meta = { + homepage = "https://github.com/cesanta/frozen"; + description = "Minimal JSON parser for C, targeted for embedded systems"; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ thillux ]; + platforms = lib.platforms.unix; + }; +} diff --git a/pkgs/development/libraries/frozen/meson.build b/pkgs/development/libraries/frozen/meson.build new file mode 100644 index 000000000000..1db9546491ce --- /dev/null +++ b/pkgs/development/libraries/frozen/meson.build @@ -0,0 +1,19 @@ +project( + 'frozen', + 'c', + default_options: [ + 'c_args=-Wextra -fno-builtin -pedantic', + 'c_std=c99', + 'werror=true' + ], + license: 'Apache-2.0', + version: '20210223' +) + +library( + 'frozen', + 'frozen.c', + install: true +) + +install_headers('frozen.h') diff --git a/pkgs/development/libraries/getdns/default.nix b/pkgs/development/libraries/getdns/default.nix index 509a9bbbba54..0c6fa4a1e633 100644 --- a/pkgs/development/libraries/getdns/default.nix +++ b/pkgs/development/libraries/getdns/default.nix @@ -16,13 +16,9 @@ in rec { outputs = [ "out" "dev" "lib" "man" ]; src = fetchurl { - url = "https://getdnsapi.net/releases/${pname}-${ - with builtins; - concatStringsSep "-" (splitVersion version) - }/${pname}-${version}.tar.gz"; - sha256 = - # upstream publishes hashes in hex format - "f1404ca250f02e37a118aa00cf0ec2cbe11896e060c6d369c6761baea7d55a2c"; + url = with lib; "https://getdnsapi.net/releases/${pname}-${concatStringsSep "-" (splitVersion version)}/${pname}-${version}.tar.gz"; + # upstream publishes hashes in hex format + sha256 = "f1404ca250f02e37a118aa00cf0ec2cbe11896e060c6d369c6761baea7d55a2c"; }; nativeBuildInputs = [ cmake doxygen ]; diff --git a/pkgs/development/libraries/libagar/default.nix b/pkgs/development/libraries/libagar/default.nix index 28d5e481324a..bff80ab996db 100644 --- a/pkgs/development/libraries/libagar/default.nix +++ b/pkgs/development/libraries/libagar/default.nix @@ -3,10 +3,14 @@ , libsndfile, portaudio, libmysqlclient, fontconfig }: -let srcs = import ./srcs.nix { inherit fetchurl; }; in -stdenv.mkDerivation { +stdenv.mkDerivation (finalAttrs: { pname = "libagar"; - inherit (srcs) version src; + version = "1.5.0"; + + src = fetchurl { + url = "http://stable.hypertriton.com/agar/agar-${finalAttrs.version}.tar.gz"; + sha256 = "001wcqk5z67qg0raw9zlwmv62drxiwqykvsbk10q2mrc6knjsd42"; + }; preConfigure = '' substituteInPlace configure.in \ @@ -40,4 +44,4 @@ stdenv.mkDerivation { maintainers = with maintainers; [ ramkromberg ]; platforms = with platforms; linux; }; -} +}) diff --git a/pkgs/development/libraries/libagar/libagar_test.nix b/pkgs/development/libraries/libagar/libagar_test.nix index 96574ca11887..c54a7957f436 100644 --- a/pkgs/development/libraries/libagar/libagar_test.nix +++ b/pkgs/development/libraries/libagar/libagar_test.nix @@ -1,11 +1,10 @@ { lib, stdenv, fetchurl, bsdbuild, libagar, perl, libjpeg, libpng, openssl }: -let srcs = import ./srcs.nix { inherit fetchurl; }; in stdenv.mkDerivation { pname = "libagar-test"; - inherit (srcs) version src; + inherit (libagar) version src; - sourceRoot = "agar-1.5.0/tests"; + sourceRoot = "agar-${libagar.version}/tests"; # Workaround build failure on -fno-common toolchains: # ld: textdlg.o:(.bss+0x0): multiple definition of `someString'; diff --git a/pkgs/development/libraries/libagar/srcs.nix b/pkgs/development/libraries/libagar/srcs.nix deleted file mode 100644 index 53c6a5b89dad..000000000000 --- a/pkgs/development/libraries/libagar/srcs.nix +++ /dev/null @@ -1,10 +0,0 @@ -{ fetchurl }: -rec { - version = "1.5.0"; - - src = fetchurl { - url = "http://stable.hypertriton.com/agar/agar-${version}.tar.gz"; - sha256 = "001wcqk5z67qg0raw9zlwmv62drxiwqykvsbk10q2mrc6knjsd42"; - }; - -} diff --git a/pkgs/development/libraries/libdivsufsort/default.nix b/pkgs/development/libraries/libdivsufsort/default.nix index 91b320826606..f2a2dae5f816 100644 --- a/pkgs/development/libraries/libdivsufsort/default.nix +++ b/pkgs/development/libraries/libdivsufsort/default.nix @@ -1,14 +1,18 @@ -{lib, stdenv, fetchurl}: +{lib, stdenv, fetchFromGitHub, cmake}: stdenv.mkDerivation rec { pname = "libdivsufsort"; version = "2.0.1"; - src = fetchurl { - url = "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/libdivsufsort/libdivsufsort-${version}.tar.bz2"; - sha256 = "1g0q40vb2k689bpasa914yi8sjsmih04017mw20zaqqpxa32rh2m"; + src = fetchFromGitHub { + owner = "y-256"; + repo = pname; + rev = "${version}"; + hash = "sha256-4p+L1bq9SBgWSHXx+WYWAe60V2g1AN+zlJvC+F367Tk="; }; + nativeBuildInputs = [ cmake ]; + meta = { homepage = "https://github.com/y-256/libdivsufsort"; license = lib.licenses.mit; diff --git a/pkgs/development/libraries/libtickit/default.nix b/pkgs/development/libraries/libtickit/default.nix index 782a5ae486c1..4b5296c89566 100644 --- a/pkgs/development/libraries/libtickit/default.nix +++ b/pkgs/development/libraries/libtickit/default.nix @@ -2,9 +2,10 @@ , stdenv , fetchFromGitHub , pkg-config +, libtool +, perl , libtermkey , unibilium -, libtool }: stdenv.mkDerivation rec { pname = "libtickit"; @@ -22,8 +23,21 @@ stdenv.mkDerivation rec { "LIBTOOL=${lib.getExe libtool}" ]; - nativeBuildInputs = [ pkg-config libtool ]; - buildInputs = [ libtermkey unibilium ]; + nativeBuildInputs = [ + pkg-config + libtool + ]; + buildInputs = [ + libtermkey + unibilium + ]; + nativeCheckInputs = [ perl ]; + + patches = [ + ./skipTestMacOS.patch + ]; + + doCheck = true; meta = with lib; { description = "A terminal interface construction kit"; diff --git a/pkgs/development/libraries/libtickit/skipTestMacOS.patch b/pkgs/development/libraries/libtickit/skipTestMacOS.patch new file mode 100644 index 000000000000..3ecdf75f06f8 --- /dev/null +++ b/pkgs/development/libraries/libtickit/skipTestMacOS.patch @@ -0,0 +1,27 @@ +From 6179359c0b9247ae981b8b2a2897eabc921147fd Mon Sep 17 00:00:00 2001 +From: Gustavo Coutinho de Souza +Date: Tue, 8 Aug 2023 15:45:43 -0300 +Subject: [PATCH] test: skip test 18 if on MacOS + +--- + t/18term-builder.c | 5 +++++ + 1 file changed, 5 insertions(+) + +diff --git a/t/18term-builder.c b/t/18term-builder.c +index 8b23ab4..c1b64a2 100644 +--- a/t/18term-builder.c ++++ b/t/18term-builder.c +@@ -21,6 +21,11 @@ static void output(TickitTerm *tt, const char *bytes, size_t len, void *user) + + int main(int argc, char *argv[]) + { ++ ++ #if defined(__APPLE__) || defined(__MACH__) ++ skip_all("the test does not seem to work on MacOS"); ++ return exit_status(); ++ #endif + // getstr override + { + /* We need a termtype that isn't xterm, but that will actually load. +-- +2.41.0 diff --git a/pkgs/development/libraries/minizip/default.nix b/pkgs/development/libraries/minizip/default.nix index 1fb737ed7a75..5619fe7039e6 100644 --- a/pkgs/development/libraries/minizip/default.nix +++ b/pkgs/development/libraries/minizip/default.nix @@ -2,8 +2,7 @@ stdenv.mkDerivation { pname = "minizip"; - version = zlib.version; - inherit (zlib) src; + inherit (zlib) src version; nativeBuildInputs = [ autoreconfHook ]; buildInputs = [ zlib ]; diff --git a/pkgs/development/libraries/pinocchio/default.nix b/pkgs/development/libraries/pinocchio/default.nix index ad3e3ba1299c..af7fff14e8f3 100644 --- a/pkgs/development/libraries/pinocchio/default.nix +++ b/pkgs/development/libraries/pinocchio/default.nix @@ -4,21 +4,23 @@ , cmake , boost , eigen +, collisionSupport ? !stdenv.isDarwin +, hpp-fcl , urdfdom , pythonSupport ? false , python3Packages }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "pinocchio"; - version = "2.6.19"; + version = "2.6.20"; src = fetchFromGitHub { owner = "stack-of-tasks"; - repo = pname; - rev = "v${version}"; + repo = finalAttrs.pname; + rev = "v${finalAttrs.version}"; fetchSubmodules = true; - hash = "sha256-P7jSAQ6LYcboJHqtpneT4W8Pu5G3fd3/a8Gju9im1e8="; + hash = "sha256-Pu/trCpqdue7sQKDbLhyxTfgj/+xRiVcG7Luz6ZQXtM="; }; # error: use of undeclared identifier '__sincos' @@ -38,20 +40,37 @@ stdenv.mkDerivation rec { ] ++ lib.optionals (!pythonSupport) [ boost eigen + ] ++ lib.optionals (!pythonSupport && collisionSupport) [ + hpp-fcl ] ++ lib.optionals pythonSupport [ python3Packages.boost python3Packages.eigenpy + ] ++ lib.optionals (pythonSupport && collisionSupport) [ + python3Packages.hpp-fcl ]; - cmakeFlags = lib.optionals (!pythonSupport) [ + cmakeFlags = lib.optionals collisionSupport [ + "-DBUILD_WITH_COLLISION_SUPPORT=ON" + ] ++ lib.optionals pythonSupport [ + "-DBUILD_WITH_LIBPYTHON=ON" + ] ++ lib.optionals (pythonSupport && stdenv.isDarwin) [ + # AssertionError: '.' != '/tmp/nix-build-pinocchio-2.6.20.drv/sou[84 chars].dae' + "-DCMAKE_CTEST_ARGUMENTS='--exclude-regex;test-py-bindings_geometry_model_urdf'" + ] ++ lib.optionals (!pythonSupport) [ "-DBUILD_PYTHON_INTERFACE=OFF" ]; + doCheck = true; + + pythonImportsCheck = lib.optionals (!pythonSupport) [ + "pinocchio" + ]; + meta = with lib; { description = "A fast and flexible implementation of Rigid Body Dynamics algorithms and their analytical derivatives"; homepage = "https://github.com/stack-of-tasks/pinocchio"; license = licenses.bsd2; - maintainers = with maintainers; [ wegank ]; + maintainers = with maintainers; [ nim65s wegank ]; platforms = platforms.unix; }; -} +}) diff --git a/pkgs/development/libraries/qgnomeplatform/default.nix b/pkgs/development/libraries/qgnomeplatform/default.nix index b32414f855d0..8136482d477b 100644 --- a/pkgs/development/libraries/qgnomeplatform/default.nix +++ b/pkgs/development/libraries/qgnomeplatform/default.nix @@ -33,6 +33,10 @@ stdenv.mkDerivation rec { src = ./hardcode-gsettings.patch; gds_gsettings_path = glib.getSchemaPath gsettings-desktop-schemas; }) + + # Backport cursor fix for Qt6 apps + # Ajusted from https://github.com/FedoraQt/QGnomePlatform/pull/138 + ./qt6-cursor-fix.patch ]; nativeBuildInputs = [ diff --git a/pkgs/development/libraries/qgnomeplatform/qt6-cursor-fix.patch b/pkgs/development/libraries/qgnomeplatform/qt6-cursor-fix.patch new file mode 100644 index 000000000000..40438aae33ed --- /dev/null +++ b/pkgs/development/libraries/qgnomeplatform/qt6-cursor-fix.patch @@ -0,0 +1,53 @@ +diff --git a/src/common/gnomesettings.cpp b/src/common/gnomesettings.cpp +index 961f75d..d947eb2 100644 +--- a/src/common/gnomesettings.cpp ++++ b/src/common/gnomesettings.cpp +@@ -210,7 +210,7 @@ GnomeSettingsPrivate::GnomeSettingsPrivate(QObject *parent) + QStringLiteral("SettingChanged"), this, SLOT(portalSettingChanged(QString,QString,QDBusVariant))); + } + +- if (QGuiApplication::platformName() != QStringLiteral("xcb")) { ++ if (true) { + cursorSizeChanged(); + cursorThemeChanged(); + } +@@ -347,11 +347,11 @@ void GnomeSettingsPrivate::gsettingPropertyChanged(GSettings *settings, gchar *k + } else if (changedProperty == QStringLiteral("monospace-font-name")) { + gnomeSettings->fontChanged(); + } else if (changedProperty == QStringLiteral("cursor-size")) { +- if (QGuiApplication::platformName() != QStringLiteral("xcb")) { ++ if (true) { + gnomeSettings->cursorSizeChanged(); + } + } else if (changedProperty == QStringLiteral("cursor-theme")) { +- if (QGuiApplication::platformName() != QStringLiteral("xcb")) { ++ if (true) { + gnomeSettings->cursorThemeChanged(); + } + // Org.gnome.wm.preferences +@@ -393,13 +393,23 @@ void GnomeSettingsPrivate::cursorBlinkTimeChanged() + void GnomeSettingsPrivate::cursorSizeChanged() + { + int cursorSize = getSettingsProperty(QStringLiteral("cursor-size")); +- qputenv("XCURSOR_SIZE", QString::number(cursorSize).toUtf8()); ++ if (QGuiApplication::platformName() != QStringLiteral("xcb")) { ++ qputenv("XCURSOR_SIZE", QString::number(cursorSize).toUtf8()); ++ } ++#if QT_VERSION >= QT_VERSION_CHECK(6, 5, 0) ++ m_hints[QPlatformTheme::MouseCursorSize] = QSize(cursorSize, cursorSize); ++#endif + } + + void GnomeSettingsPrivate::cursorThemeChanged() + { + const QString cursorTheme = getSettingsProperty(QStringLiteral("cursor-theme")); +- qputenv("XCURSOR_THEME", cursorTheme.toUtf8()); ++ if (QGuiApplication::platformName() != QStringLiteral("xcb")) { ++ qputenv("XCURSOR_THEME", cursorTheme.toUtf8()); ++ } ++#if QT_VERSION >= QT_VERSION_CHECK(6, 5, 0) ++ m_hints[QPlatformTheme::MouseCursorTheme] = cursorTheme; ++#endif + } + + void GnomeSettingsPrivate::fontChanged() diff --git a/pkgs/development/libraries/speechd/default.nix b/pkgs/development/libraries/speechd/default.nix index 16bc36a78124..9b44c8e46d0c 100644 --- a/pkgs/development/libraries/speechd/default.nix +++ b/pkgs/development/libraries/speechd/default.nix @@ -27,11 +27,11 @@ let inherit (python3Packages) python pyxdg wrapPython; in stdenv.mkDerivation rec { pname = "speech-dispatcher"; - version = "0.11.4"; + version = "0.11.5"; src = fetchurl { url = "https://github.com/brailcom/speechd/releases/download/${version}/${pname}-${version}.tar.gz"; - sha256 = "sha256-jAkiG7ctnbXInP17kZdxgyuGw6N3LWRWAWlklO31Zrk="; + sha256 = "sha256-HOR1n/q7rxrrQzpewHOb4Gdum9+66URKezvhsq8+wSs="; }; patches = [ diff --git a/pkgs/development/lisp-modules/ql.nix b/pkgs/development/lisp-modules/ql.nix index 2349cff0ec5b..33b3753a83e8 100644 --- a/pkgs/development/lisp-modules/ql.nix +++ b/pkgs/development/lisp-modules/ql.nix @@ -223,7 +223,43 @@ let lispLibs = o.lispLibs ++ [ self.mcclim ]; -}); + }); + cl-charms = super.cl-charms.overrideLispAttrs (o: { + nativeLibs = [ pkgs.ncurses ]; + }); + libusb-ffi = super.libusb-ffi.overrideLispAttrs (o: { + nativeLibs = [ pkgs.libusb-compat-0_1 ]; + }); + cl-fam = super.cl-fam.overrideLispAttrs (o: { + nativeLibs = [ pkgs.fam ]; + }); + jpeg-turbo = super.jpeg-turbo.overrideLispAttrs (o: { + nativeLibs = [ pkgs.libjpeg_turbo ]; + }); + vorbisfile-ffi = super.vorbisfile-ffi.overrideLispAttrs (o: { + nativeLibs = [ pkgs.libvorbis ]; + }); + png = super.png.overrideLispAttrs (o: { + nativeLibs = [ pkgs.libpng ]; + }); + zmq = super.zmq.overrideLispAttrs (o: { + nativeLibs = [ pkgs.czmq ]; + }); + consfigurator = super.consfigurator.overrideLispAttrs (o: { + nativeLibs = [ pkgs.acl pkgs.libcap ]; + }); + cl-gss = super.cl-gss.overrideLispAttrs (o: { + nativeLibs = [ pkgs.libkrb5 ]; + }); + magicffi = super.magicffi.overrideLispAttrs (o: { + nativeLibs = [ pkgs.file ]; + }); + keystone = super.keystone.overrideLispAttrs (o: { + nativeLibs = [ pkgs.keystone ]; + }); + capstone = super.capstone.overrideLispAttrs (o: { + nativeLibs = [ pkgs.capstone ]; + }); }); qlpkgs = diff --git a/pkgs/development/misc/datafusion/default.nix b/pkgs/development/misc/datafusion/default.nix index ee8c053be6b6..4bf6f8caca42 100644 --- a/pkgs/development/misc/datafusion/default.nix +++ b/pkgs/development/misc/datafusion/default.nix @@ -17,7 +17,7 @@ rustPlatform.buildRustPackage rec { sha256 = "sha256-TWvbtuLmAdYS8otD2TpVlZx2FJS6DF03U2zM28FNsfc="; }; - sourceRoot = "datafusion-cli-source/datafusion-cli"; + sourceRoot = "${src.name}/datafusion-cli"; cargoSha256 = "sha256-muWWVJDKm4rbpCK0SS7Zj6umFoMKGMScEAd2ZyZ5An8="; diff --git a/pkgs/development/mobile/maestro/default.nix b/pkgs/development/mobile/maestro/default.nix index eff9cb4f8794..11e24b3a2584 100644 --- a/pkgs/development/mobile/maestro/default.nix +++ b/pkgs/development/mobile/maestro/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { pname = "maestro"; - version = "1.30.4"; + version = "1.31.0"; src = fetchurl { url = "https://github.com/mobile-dev-inc/maestro/releases/download/cli-${version}/maestro.zip"; - sha256 = "1dc02krdysaal1w3lrwr9xcz04r72jgm0kg3bpv70gd830yp9bkr"; + sha256 = "0rgkviyxr0hwm0xhv8mfhdxk3wzhgqhbjpk8wv6c2b68xnwxwxha"; }; dontUnpack = true; diff --git a/pkgs/development/node-packages/node-packages.nix b/pkgs/development/node-packages/node-packages.nix index d5bb9cd33b46..153b9e23f41c 100644 --- a/pkgs/development/node-packages/node-packages.nix +++ b/pkgs/development/node-packages/node-packages.nix @@ -49,13 +49,13 @@ let sha512 = "/EvNkqB4HNxPWCZASmgrjqG8gIdPOolD67LGASvGMp/FY5ne0rbvpYg5o9x8RmgjAl8KdmNQ4YlV1et9DYiW8g=="; }; }; - "@adobe/css-tools-4.2.0" = { + "@adobe/css-tools-4.3.0" = { name = "_at_adobe_slash_css-tools"; packageName = "@adobe/css-tools"; - version = "4.2.0"; + version = "4.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/@adobe/css-tools/-/css-tools-4.2.0.tgz"; - sha512 = "E09FiIft46CmH5Qnjb0wsW54/YQd69LsxeKUOWawmws1XWvyFGURnAChH0mlr7YPFR1ofwvUQfcL0J3lMxXqPA=="; + url = "https://registry.npmjs.org/@adobe/css-tools/-/css-tools-4.3.0.tgz"; + sha512 = "+RNNcQvw2V1bmnBTPAtOLfW/9mhH2vC67+rUSi5T8EtEWt6lEnGNY2GuhZ1/YwbgikT1TkhvidCDmN5Q5YCo/w=="; }; }; "@akryum/winattr-3.0.0" = { @@ -94,87 +94,6 @@ let sha512 = "8mlX3l5Xc+pYyiK9G156NyMosNuvvukL+TtNMqw7ti2zgVpz+WqPMPb2J1WU8I03Jbm4cXF+Q0D53hWvQqLQ0Q=="; }; }; - "@alexbosworth/blockchain-1.5.0" = { - name = "_at_alexbosworth_slash_blockchain"; - packageName = "@alexbosworth/blockchain"; - version = "1.5.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@alexbosworth/blockchain/-/blockchain-1.5.0.tgz"; - sha512 = "3msan1PvMg7FgPMKzcGSAH5SLKyKCjQmqzG0Q4W+yKwkyTZ3Nec96umypVUuE9r6040hGFArH/BWus7IU/zVdg=="; - }; - }; - "@alexbosworth/caporal-1.4.4" = { - name = "_at_alexbosworth_slash_caporal"; - packageName = "@alexbosworth/caporal"; - version = "1.4.4"; - src = fetchurl { - url = "https://registry.npmjs.org/@alexbosworth/caporal/-/caporal-1.4.4.tgz"; - sha512 = "IUxyskkgV/N3Jk2+d6SE1CbHScKlqbAaakQjxJwk8NHmXszA8Fqh914VclQ1YvTkzjDNX9mMb1tdRAIhMHC7+A=="; - }; - }; - "@alexbosworth/cli-table3-0.6.1" = { - name = "_at_alexbosworth_slash_cli-table3"; - packageName = "@alexbosworth/cli-table3"; - version = "0.6.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@alexbosworth/cli-table3/-/cli-table3-0.6.1.tgz"; - sha512 = "K7EO1cd89xNdwctQaR2bY9aQFDArSIrYGSWSDCnqG7RKIZ1J+XASkKVylW9NCIeVcguD6Qemxai8ZFCWg9lLFg=="; - }; - }; - "@alexbosworth/fiat-1.0.4" = { - name = "_at_alexbosworth_slash_fiat"; - packageName = "@alexbosworth/fiat"; - version = "1.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/@alexbosworth/fiat/-/fiat-1.0.4.tgz"; - sha512 = "MNjRwLfb8o3jDxJea4kAcocGo0opUoGq1U/eJ+OEBxPu1BtSNme/ih758Qma7Z2vOrknhU6isbHiXIXg7vNPAw=="; - }; - }; - "@alexbosworth/fiat-2.0.0" = { - name = "_at_alexbosworth_slash_fiat"; - packageName = "@alexbosworth/fiat"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@alexbosworth/fiat/-/fiat-2.0.0.tgz"; - sha512 = "P70xovrdPDZZbeYhQlT5pSyWD/1gD03G7DmZjvRz306aP4zhnpTgGZ/knDnY9t1sFxgxJ9zUQtuQ5S9+IOJfVA=="; - }; - }; - "@alexbosworth/html2unicode-1.1.5" = { - name = "_at_alexbosworth_slash_html2unicode"; - packageName = "@alexbosworth/html2unicode"; - version = "1.1.5"; - src = fetchurl { - url = "https://registry.npmjs.org/@alexbosworth/html2unicode/-/html2unicode-1.1.5.tgz"; - sha512 = "CXMFAyovJHtLzKlraBpGlM/8TX9bvVz081IDZkQF3IMGHePgHCAs1vQdnKM38VMGekywNCbo7kt3fHooSMgA2w=="; - }; - }; - "@alexbosworth/node-fetch-2.6.2" = { - name = "_at_alexbosworth_slash_node-fetch"; - packageName = "@alexbosworth/node-fetch"; - version = "2.6.2"; - src = fetchurl { - url = "https://registry.npmjs.org/@alexbosworth/node-fetch/-/node-fetch-2.6.2.tgz"; - sha512 = "9ls0Zn0qXTmUdt1p9LA1P9Kor9wF1pXtfUTjipCpoYYQ4fEUsuCgQbiymk4oJccpsZ9dAG3vZ1Zt51WabjJTUw=="; - }; - }; - "@alexbosworth/prettyjson-1.2.2" = { - name = "_at_alexbosworth_slash_prettyjson"; - packageName = "@alexbosworth/prettyjson"; - version = "1.2.2"; - src = fetchurl { - url = "https://registry.npmjs.org/@alexbosworth/prettyjson/-/prettyjson-1.2.2.tgz"; - sha512 = "JsqGgC96z8HFceI94ZLAXLxPXw9oMmQh9XpK5tbRSoU6A4JGz1I7ssplLOTfc50Y73bWVoEJs1ja7BcEToMFmQ=="; - }; - }; - "@alexbosworth/saxophone-0.6.2" = { - name = "_at_alexbosworth_slash_saxophone"; - packageName = "@alexbosworth/saxophone"; - version = "0.6.2"; - src = fetchurl { - url = "https://registry.npmjs.org/@alexbosworth/saxophone/-/saxophone-0.6.2.tgz"; - sha512 = "o/xdK8b4P0t/xpCARgWXAeaiWeh9jeua6bP1jrcbfN39+Z4zC4x2jg4NysHNhz6spRG8dJFH3kJIUoIbs0Ckww=="; - }; - }; "@alloc/quick-lru-5.2.0" = { name = "_at_alloc_slash_quick-lru"; packageName = "@alloc/quick-lru"; @@ -193,31 +112,31 @@ let sha512 = "lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg=="; }; }; - "@angular-devkit/architect-0.1601.6" = { + "@angular-devkit/architect-0.1602.0" = { name = "_at_angular-devkit_slash_architect"; packageName = "@angular-devkit/architect"; - version = "0.1601.6"; + version = "0.1602.0"; src = fetchurl { - url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1601.6.tgz"; - sha512 = "dY+/FNUNrOj+m4iG5/v8N0PfbDmjkjjoy/YkquRHS1yo7fGGDFNqji2552mbtjN6/LwyWDhOO7fxdqppadjnvA=="; + url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1602.0.tgz"; + sha512 = "ZRmUTBeD+uGr605eOHnsovEn6f1mOBI+kxP64DRvagNweX5TN04s3iyQ8jmLSAHQD9ush31LFxv3dVNxv3ceXQ=="; }; }; - "@angular-devkit/core-16.1.6" = { + "@angular-devkit/core-16.2.0" = { name = "_at_angular-devkit_slash_core"; packageName = "@angular-devkit/core"; - version = "16.1.6"; + version = "16.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/@angular-devkit/core/-/core-16.1.6.tgz"; - sha512 = "3OjtrPWvsqVkMBwqPeE65ccCIw56FooNpVVAJ0XwhVQv5mA81pmbCzU7JsR6U449ZT7O4cQblzZMQvWvx74HCg=="; + url = "https://registry.npmjs.org/@angular-devkit/core/-/core-16.2.0.tgz"; + sha512 = "l1k6Rqm3YM16BEn3CWyQKrk9xfu+2ux7Bw3oS+h1TO4/RoxO2PgHj8LLRh/WNrYVarhaqO7QZ5ePBkXNMkzJ1g=="; }; }; - "@angular-devkit/schematics-16.1.6" = { + "@angular-devkit/schematics-16.2.0" = { name = "_at_angular-devkit_slash_schematics"; packageName = "@angular-devkit/schematics"; - version = "16.1.6"; + version = "16.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-16.1.6.tgz"; - sha512 = "KA8P78gaS76HMHGBOM8JHJXWLOxCIShYVB2Un/Cu6z3jVODvXq+ILZUc1Y0RsAce/vsl2wf8qpoh5Lku9KJHUQ=="; + url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-16.2.0.tgz"; + sha512 = "QMDJXPE0+YQJ9Ap3MMzb0v7rx6ZbBEokmHgpdIjN3eILYmbAdsSGE8HTV8NjS9nKmcyE9OGzFCMb7PFrDTlTAw=="; }; }; "@apidevtools/json-schema-ref-parser-9.0.6" = { @@ -526,13 +445,13 @@ let sha512 = "9Sp4vXjoG99qI6sFe09MfgIzsKwiOR0atqxmAcJJLn6fUNXhJEoW04n3w/YcRlk7P4gC9cOMsEyvb8xu+fDEOQ=="; }; }; - "@aws-sdk/client-cognito-identity-3.382.0" = { + "@aws-sdk/client-cognito-identity-3.388.0" = { name = "_at_aws-sdk_slash_client-cognito-identity"; packageName = "@aws-sdk/client-cognito-identity"; - version = "3.382.0"; + version = "3.388.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/client-cognito-identity/-/client-cognito-identity-3.382.0.tgz"; - sha512 = "EgKpWh5w2uWNzjtcD3S3JLSuuwLvvaeaVih60xNEoyaxpqwgjAe0vw/8GT9q2nqhS0J+B3bQVYdkCyA5oQDVEQ=="; + url = "https://registry.npmjs.org/@aws-sdk/client-cognito-identity/-/client-cognito-identity-3.388.0.tgz"; + sha512 = "5sCogMJ1utRlwLQiameyOrrcyhueknbsC2YK1G9Y7pgmgUl2zzUo7htQS2luW71SeBHiwkTQa3OZjbmGsotJvg=="; }; }; "@aws-sdk/client-s3-3.296.0" = { @@ -544,22 +463,13 @@ let sha512 = "PI6mjM0fmcV2fqkkRoivF3DYex4lnbEz7WIsOFAwpHJBbA9ykClQpiutCKcgl0x/yEWAeTNdQtrCVeAwbxYfvw=="; }; }; - "@aws-sdk/client-s3-3.379.1" = { + "@aws-sdk/client-s3-3.388.0" = { name = "_at_aws-sdk_slash_client-s3"; packageName = "@aws-sdk/client-s3"; - version = "3.379.1"; + version = "3.388.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.379.1.tgz"; - sha512 = "H4ECLySyEkLHRCBv7q5RS5AhesAsDlC7b3wK4YfbTjdqLVhQZIGqy4IJX98VStKZOea43txhndlDlGvKt8p7kA=="; - }; - }; - "@aws-sdk/client-s3-3.382.0" = { - name = "_at_aws-sdk_slash_client-s3"; - packageName = "@aws-sdk/client-s3"; - version = "3.382.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.382.0.tgz"; - sha512 = "7s5DI1dw5HUF9+tHuZzkJaZBcaE3kuGsMw17/enEa8YdF0CtL5rW46FlzQ3/7NYIKc9rhDtb0UMakEej1cWFtg=="; + url = "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.388.0.tgz"; + sha512 = "9UN8gtr/4e4YnHb3Kb4VsxGTDe6olkL90ivK09jKwG2SX8m5OY2fIHSjtyqUHDuFb67JOk3WVEMbZEfxfx46+w=="; }; }; "@aws-sdk/client-sso-3.296.0" = { @@ -571,22 +481,13 @@ let sha512 = "0P0x++jhlmhzViFPOHvTb7+Z6tSV9aONwB8CchIseg2enSPBbGfml7y5gQu1jdOTDS6pBUmrPZ+9sOI4/GvAfA=="; }; }; - "@aws-sdk/client-sso-3.379.1" = { + "@aws-sdk/client-sso-3.387.0" = { name = "_at_aws-sdk_slash_client-sso"; packageName = "@aws-sdk/client-sso"; - version = "3.379.1"; + version = "3.387.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.379.1.tgz"; - sha512 = "2N16TPnRcq+seNP8VY/Zq7kfnrUOrJMbVNpyDZWGe5Qglua3n8v/FzxmXFNI87MiSODq8IHtiXhggWhefCd+TA=="; - }; - }; - "@aws-sdk/client-sso-3.382.0" = { - name = "_at_aws-sdk_slash_client-sso"; - packageName = "@aws-sdk/client-sso"; - version = "3.382.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.382.0.tgz"; - sha512 = "ge11t4hJllOF8pBNF0p1X52lLqUsLGAoey24fvk3fyvvczeLpegGYh2kdLG0iwFTDgRxaUqK+kboH5Wy9ux/pw=="; + url = "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.387.0.tgz"; + sha512 = "E7uKSvbA0XMKSN5KLInf52hmMpe9/OKo6N9OPffGXdn3fNEQlvyQq3meUkqG7Is0ldgsQMz5EUBNtNybXzr3tQ=="; }; }; "@aws-sdk/client-sso-oidc-3.296.0" = { @@ -598,24 +499,6 @@ let sha512 = "GRycCVdlFICvWwv9z6Mc/2BvSBOvchWO7UTklvbKXeDn6D05C+02PfxeoocMTc4r8/eFoEQWs67h5u/lPpyHDw=="; }; }; - "@aws-sdk/client-sso-oidc-3.379.1" = { - name = "_at_aws-sdk_slash_client-sso-oidc"; - packageName = "@aws-sdk/client-sso-oidc"; - version = "3.379.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.379.1.tgz"; - sha512 = "B6hZ2ysPyvafCMf6gls1jHI/IUviVZ4+TURpNfUBqThg/hZ1IMxc4BLkXca6VlgzYR+bWU8GKiClS9fFH6mu0g=="; - }; - }; - "@aws-sdk/client-sso-oidc-3.382.0" = { - name = "_at_aws-sdk_slash_client-sso-oidc"; - packageName = "@aws-sdk/client-sso-oidc"; - version = "3.382.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.382.0.tgz"; - sha512 = "hTfvB1ftbrqaz7qiEkmRobzUQwG34oZlByobn8Frdr5ZQbJk969bX6evQAPyKlJEr26+kL9TnaX+rbLR/+gwHQ=="; - }; - }; "@aws-sdk/client-sts-3.296.0" = { name = "_at_aws-sdk_slash_client-sts"; packageName = "@aws-sdk/client-sts"; @@ -625,22 +508,13 @@ let sha512 = "ew7hSVNpitnLCIRVhnI2L1HZB/yYpRQFReR62fOqCUnpKqm6WGga37bnvgYbY5y0Rv23C0VHARovwunVg1gabA=="; }; }; - "@aws-sdk/client-sts-3.379.1" = { + "@aws-sdk/client-sts-3.388.0" = { name = "_at_aws-sdk_slash_client-sts"; packageName = "@aws-sdk/client-sts"; - version = "3.379.1"; + version = "3.388.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.379.1.tgz"; - sha512 = "gEnKuk9bYjThvmxCgOgCn1qa+rRX8IgIRE2+xhbWhlpDanozhkDq9aMB5moX4tBNYQEmi1LtGD+JOvOoZRnToQ=="; - }; - }; - "@aws-sdk/client-sts-3.382.0" = { - name = "_at_aws-sdk_slash_client-sts"; - packageName = "@aws-sdk/client-sts"; - version = "3.382.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.382.0.tgz"; - sha512 = "G5wgahrOqmrljjyLVGASIZUXIIdalbCo0z4PuFHdb2R2CVfwO8renfgrmk4brT9tIxIfen5bRA7ftXMe7yrgRA=="; + url = "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.388.0.tgz"; + sha512 = "y9FAcAYHT8O6T/jqhgsIQUb4gLiSTKD3xtzudDvjmFi8gl0oRIY1npbeckSiK6k07VQugm2s64I0nDnDxtWsBg=="; }; }; "@aws-sdk/config-resolver-3.296.0" = { @@ -652,13 +526,13 @@ let sha512 = "Ecdp7fmIitHo49NRCyIEHb9xlI43J7qkvhcwaKGGqN5jvoh0YhR2vNr195wWG8Ip/9PwsD4QV4g/XT5EY7XkMA=="; }; }; - "@aws-sdk/credential-provider-cognito-identity-3.382.0" = { + "@aws-sdk/credential-provider-cognito-identity-3.388.0" = { name = "_at_aws-sdk_slash_credential-provider-cognito-identity"; packageName = "@aws-sdk/credential-provider-cognito-identity"; - version = "3.382.0"; + version = "3.388.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-cognito-identity/-/credential-provider-cognito-identity-3.382.0.tgz"; - sha512 = "fEsmPSylpQdALSS1pKMa9QghMk9xFiQCanmUWbQ7ETkcjuYuc/DK6GIA0pRjq/BROJJNSxKrSxt3TZPzVpvb3w=="; + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-cognito-identity/-/credential-provider-cognito-identity-3.388.0.tgz"; + sha512 = "j1oyBc0/O76YouOC2wMZuQUfHOjfrKWgBibIwrwqEqacYWMx/IBxZkk9j2fFerIVaKhhMNkZHAGb+qBx0urR/Q=="; }; }; "@aws-sdk/credential-provider-env-3.296.0" = { @@ -670,13 +544,13 @@ let sha512 = "eDWSU3p04gytkkVXnYn05YzrP5SEaj/DQiafd4y+iBl8IFfF3zM6982rs6qFhvpwrHeSbLqHNfKR1HDWVwfG5g=="; }; }; - "@aws-sdk/credential-provider-env-3.378.0" = { + "@aws-sdk/credential-provider-env-3.387.0" = { name = "_at_aws-sdk_slash_credential-provider-env"; packageName = "@aws-sdk/credential-provider-env"; - version = "3.378.0"; + version = "3.387.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.378.0.tgz"; - sha512 = "B2OVdO9kBClDwGgWTBLAQwFV8qYTYGyVujg++1FZFSFMt8ORFdZ5fNpErvJtiSjYiOOQMzyBeSNhKyYNXCiJjQ=="; + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.387.0.tgz"; + sha512 = "PVqNk7XPIYe5CMYNvELkcALtkl/pIM8/uPtqEtTg+mgnZBeL4fAmgXZiZMahQo1DxP5t/JaK384f6JG+A0qDjA=="; }; }; "@aws-sdk/credential-provider-imds-3.296.0" = { @@ -697,22 +571,13 @@ let sha512 = "U0ecY0GX2jeDAgmTzaVO9YgjlLUfb8wgZSu1OwbOxCJscL/5eFkhcF0/xJQXDbRgcj4H4dlquqeSWsBVl/PgvQ=="; }; }; - "@aws-sdk/credential-provider-ini-3.379.1" = { + "@aws-sdk/credential-provider-ini-3.388.0" = { name = "_at_aws-sdk_slash_credential-provider-ini"; packageName = "@aws-sdk/credential-provider-ini"; - version = "3.379.1"; + version = "3.388.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.379.1.tgz"; - sha512 = "YhEsJIskzCFwIIKiMN9GSHQkgWwj/b7rq0ofhsXsCRimFtdVkmMlB9veE6vtFAuXpX/WOGWdlWek1az0V22uuw=="; - }; - }; - "@aws-sdk/credential-provider-ini-3.382.0" = { - name = "_at_aws-sdk_slash_credential-provider-ini"; - packageName = "@aws-sdk/credential-provider-ini"; - version = "3.382.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.382.0.tgz"; - sha512 = "31pi44WWri2WQmagqptUv7x3Nq8pQ6H06OCQx5goEm77SosSdwQwyBPrS9Pg0yI9aljFAxF+rZ75degsCorbQg=="; + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.388.0.tgz"; + sha512 = "3dg3A8AiZ5vXkSAYyyI3V/AW3Eo6KQJyE/glA+Nr2M0oAjT4z3vHhS3pf2B+hfKGZBTuKKgxusrrhrQABd/Diw=="; }; }; "@aws-sdk/credential-provider-node-3.296.0" = { @@ -724,22 +589,13 @@ let sha512 = "oCkmh2b1DQhHkhd/qA9jiSIOkrBBK7cMg1/PVIgLw8e15NkzUHBObLJ/ZQw6ZzCxZzjlMYaFv9oCB8hyO8txmA=="; }; }; - "@aws-sdk/credential-provider-node-3.379.1" = { + "@aws-sdk/credential-provider-node-3.388.0" = { name = "_at_aws-sdk_slash_credential-provider-node"; packageName = "@aws-sdk/credential-provider-node"; - version = "3.379.1"; + version = "3.388.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.379.1.tgz"; - sha512 = "39Y4OHKn6a8lY8YJhSLLw08aZytWxfvSjM4ObIEnE6hjLl8gsL9vROKKITsh3q6iGQ1EDSWMWZL50aOh3LJUIg=="; - }; - }; - "@aws-sdk/credential-provider-node-3.382.0" = { - name = "_at_aws-sdk_slash_credential-provider-node"; - packageName = "@aws-sdk/credential-provider-node"; - version = "3.382.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.382.0.tgz"; - sha512 = "q6AWCCb0E0cH/Y5Dtln0QssbCBXDbV4PoTV3EdRuGoJcHyNfHJ8X0mqcc7k44wG4Piazu+ufZThvn43W7W9a4g=="; + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.388.0.tgz"; + sha512 = "BqWAkIG08gj/wevpesaZhAjALjfUNVjseHQRk+DNUoHIfyibW7Ahf3q/GIPs11dA2o8ECwR9/fo68Sq+sK799A=="; }; }; "@aws-sdk/credential-provider-process-3.296.0" = { @@ -751,13 +607,13 @@ let sha512 = "AY7sTX2dGi8ripuCpcJLYHOZB2wJ6NnseyK/kK5TfJn/pgboKwuGtz0hkJCVprNWomKa6IpHksm7vLQ4O2E+UA=="; }; }; - "@aws-sdk/credential-provider-process-3.378.0" = { + "@aws-sdk/credential-provider-process-3.387.0" = { name = "_at_aws-sdk_slash_credential-provider-process"; packageName = "@aws-sdk/credential-provider-process"; - version = "3.378.0"; + version = "3.387.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.378.0.tgz"; - sha512 = "KFTIy7u+wXj3eDua4rgS0tODzMnXtXhAm1RxzCW9FL5JLBBrd82ymCj1Dp72217Sw5Do6NjCnDTTNkCHZMA77w=="; + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.387.0.tgz"; + sha512 = "tQScLHmDlqkQN+mqw4s3cxepEUeHYDhFl5eH+J8puvPqWjXMYpCEdY79SAtWs6SZd4CWiZ0VLeYU6xQBZengbQ=="; }; }; "@aws-sdk/credential-provider-sso-3.296.0" = { @@ -769,22 +625,13 @@ let sha512 = "zPFHDX/niXfcQrKQhmBv1XPYEe4b7im4vRKrzjYXgDRpG2M3LP0KaWIwN6Ap+GRYBNBthen86vhTlmKGzyU5YA=="; }; }; - "@aws-sdk/credential-provider-sso-3.379.1" = { + "@aws-sdk/credential-provider-sso-3.388.0" = { name = "_at_aws-sdk_slash_credential-provider-sso"; packageName = "@aws-sdk/credential-provider-sso"; - version = "3.379.1"; + version = "3.388.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.379.1.tgz"; - sha512 = "PhGtu1+JbUntYP/5CSfazQhWsjUBiksEuhg9fLhYl5OAgZVjVygbgoNVUz/gM7gZJSEMsasTazkn7yZVzO/k7w=="; - }; - }; - "@aws-sdk/credential-provider-sso-3.382.0" = { - name = "_at_aws-sdk_slash_credential-provider-sso"; - packageName = "@aws-sdk/credential-provider-sso"; - version = "3.382.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.382.0.tgz"; - sha512 = "tKCQKqxnAHeRD7pQNmDmLWwC7pt5koo6yiQTVQ382U+8xx7BNsApE1zdC4LrtrVN1FYqVbw5kXjYFtSCtaUxGA=="; + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.388.0.tgz"; + sha512 = "RH02+rntaO0UhnSBr42n+7q8HOztc+Dets/hh6cWovf3Yi9s9ghLgYLN9FXpSosfot3XkmT/HOCa+CphAmGN9A=="; }; }; "@aws-sdk/credential-provider-web-identity-3.296.0" = { @@ -796,22 +643,22 @@ let sha512 = "Rl6Ohoekxe+pccA55XXQDW5wApbg3rGWr6FkmPRcg7Ld6Vfe+HL8OtfsFf83/0eoFerevbif+00BdknXWT05LA=="; }; }; - "@aws-sdk/credential-provider-web-identity-3.378.0" = { + "@aws-sdk/credential-provider-web-identity-3.387.0" = { name = "_at_aws-sdk_slash_credential-provider-web-identity"; packageName = "@aws-sdk/credential-provider-web-identity"; - version = "3.378.0"; + version = "3.387.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.378.0.tgz"; - sha512 = "GWjydOszhc4xDF8xuPtBvboglXQr0gwCW1oHAvmLcOT38+Hd6qnKywnMSeoXYRPgoKfF9TkWQgW1jxplzCG0UA=="; + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.387.0.tgz"; + sha512 = "6ueMPl+J3KWv6ZaAWF4Z138QCuBVFZRVAgwbtP3BNqWrrs4Q6TPksOQJ79lRDMpv0EUoyVl04B6lldNlhN8RdA=="; }; }; - "@aws-sdk/credential-providers-3.382.0" = { + "@aws-sdk/credential-providers-3.388.0" = { name = "_at_aws-sdk_slash_credential-providers"; packageName = "@aws-sdk/credential-providers"; - version = "3.382.0"; + version = "3.388.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/credential-providers/-/credential-providers-3.382.0.tgz"; - sha512 = "+emgPCb8t5ODLpE1GeCkKaI6lx9M3RLQCYBGYkm/2o8FyvNeob9IBs6W8ufUTlnl4YRdKjDOlcfDtS00wCVHfA=="; + url = "https://registry.npmjs.org/@aws-sdk/credential-providers/-/credential-providers-3.388.0.tgz"; + sha512 = "5opHLYjj6rHrw2OaxE+IcLhC9JfiopPH7hRknzKjFnSrJ+HjzcHCML5xghwHLJOLGcoWU40CCSlwJVPLlJluMw=="; }; }; "@aws-sdk/eventstream-codec-3.296.0" = { @@ -913,13 +760,13 @@ let sha512 = "SCIt10cr5dud7hvwveU4wkLjvkGssJ3GrcbHCds2NwI+JHmpcaaNYLAqi305JAuT29T36U5ssTFDSmrrEOcfag=="; }; }; - "@aws-sdk/lib-storage-3.379.1" = { + "@aws-sdk/lib-storage-3.388.0" = { name = "_at_aws-sdk_slash_lib-storage"; packageName = "@aws-sdk/lib-storage"; - version = "3.379.1"; + version = "3.388.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/lib-storage/-/lib-storage-3.379.1.tgz"; - sha512 = "o/OFPQL/pZQ1ppjQnBu/3cXfIBz4h0qpwpA2B6osZGfuUzuZJYInEDKixswQligX1Sjxwxd+RL/2TEYNzx1vGw=="; + url = "https://registry.npmjs.org/@aws-sdk/lib-storage/-/lib-storage-3.388.0.tgz"; + sha512 = "LVCSi++ssMO2hXOXe5LgQzs3p+3/QVFI7aMr+Ebad+NJSpNGsngMxhGQIxlKwBNy+3MPfd9bS6y3VtuQ66Tk1g=="; }; }; "@aws-sdk/md5-js-3.296.0" = { @@ -940,13 +787,13 @@ let sha512 = "Xhzucs5psscjXJW7V6vMrjJWGmej8Xtw8XIKd91RLmbxdmecMy85/mQC3bIqxgTGhC/e3pKqWSp8z/YjV6iPZg=="; }; }; - "@aws-sdk/middleware-bucket-endpoint-3.378.0" = { + "@aws-sdk/middleware-bucket-endpoint-3.387.0" = { name = "_at_aws-sdk_slash_middleware-bucket-endpoint"; packageName = "@aws-sdk/middleware-bucket-endpoint"; - version = "3.378.0"; + version = "3.387.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/middleware-bucket-endpoint/-/middleware-bucket-endpoint-3.378.0.tgz"; - sha512 = "3o+AYU6JWUsPM49bWglCUOgNvySiHkbIma0J6F9a68e30vEDD0FUQtKzyHPZkF7iYDyesEl166gYjwVNAmASzw=="; + url = "https://registry.npmjs.org/@aws-sdk/middleware-bucket-endpoint/-/middleware-bucket-endpoint-3.387.0.tgz"; + sha512 = "o7Dsq0YTUHFcKXD6+30/fXv/Wzdxqz9WonhCu3ZFPwTDLZgOM4QDDKW8EcC1SplKP1IUyaEli8Affodag9T1cQ=="; }; }; "@aws-sdk/middleware-content-length-3.296.0" = { @@ -976,13 +823,13 @@ let sha512 = "aVCv9CdAVWt9AlZKQZRweIywkAszRrZUCo8K5bBUJNdD4061DoDqLK/6jmqXmObas0j1wQr/eNzjYbv99MZBCg=="; }; }; - "@aws-sdk/middleware-expect-continue-3.378.0" = { + "@aws-sdk/middleware-expect-continue-3.387.0" = { name = "_at_aws-sdk_slash_middleware-expect-continue"; packageName = "@aws-sdk/middleware-expect-continue"; - version = "3.378.0"; + version = "3.387.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/middleware-expect-continue/-/middleware-expect-continue-3.378.0.tgz"; - sha512 = "8maaNQvza3/IGDbIyVQkUbGlo+Oc6SY1gVG50UMcTUX8nwZrD1/ko+ft+pd2EDb2n+0JritoDj4bjr6pdesNBg=="; + url = "https://registry.npmjs.org/@aws-sdk/middleware-expect-continue/-/middleware-expect-continue-3.387.0.tgz"; + sha512 = "w415a4tjQc6a7isq0AEDWFBC0HWUCHXEDjDl94UACxfMmS9bVabuf04t9CQ+nBBVs6HdiNdfdc/pBR2pRwx2Yg=="; }; }; "@aws-sdk/middleware-flexible-checksums-3.296.0" = { @@ -994,13 +841,13 @@ let sha512 = "F5wVMhLIgA86PKsK/Az7LGIiNVDdZjoSn0+boe6fYW/AIAmgJhPf//500Md0GsKsLOCcPcxiQC43a0hVT2zbew=="; }; }; - "@aws-sdk/middleware-flexible-checksums-3.378.0" = { + "@aws-sdk/middleware-flexible-checksums-3.387.0" = { name = "_at_aws-sdk_slash_middleware-flexible-checksums"; packageName = "@aws-sdk/middleware-flexible-checksums"; - version = "3.378.0"; + version = "3.387.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.378.0.tgz"; - sha512 = "pHkcVTu2T+x/1fpPHMpRDpXY5zxDsjijv3C6Nz/nm3gQrZvQ3fYDrQdV3Oj6Xeg40B3kkcp/bzgDo7MDzG088A=="; + url = "https://registry.npmjs.org/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.387.0.tgz"; + sha512 = "QlH97rrKlcMyLG+2ps7+DtBHfPyRIpi7sD3y0iko2u3PGXk+PoLPK8wWyGql9sFopOYTl6/Jh2Rb1b6z6NbjEA=="; }; }; "@aws-sdk/middleware-host-header-3.296.0" = { @@ -1012,13 +859,13 @@ let sha512 = "V47dFtfkX5lXWv9GDp71gZVCRws4fEdQ9QF9BQ/2UMSNrYjQLg6mFe7NibH+IJoNOid2FIwWIl94Eos636VGYQ=="; }; }; - "@aws-sdk/middleware-host-header-3.379.1" = { + "@aws-sdk/middleware-host-header-3.387.0" = { name = "_at_aws-sdk_slash_middleware-host-header"; packageName = "@aws-sdk/middleware-host-header"; - version = "3.379.1"; + version = "3.387.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.379.1.tgz"; - sha512 = "LI4KpAFWNWVr2aH2vRVblr0Y8tvDz23lj8LOmbDmCrzd5M21nxuocI/8nEAQj55LiTIf9Zs+dHCdsyegnFXdrA=="; + url = "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.387.0.tgz"; + sha512 = "EWm9PXSr8dSp7hnRth1U7OfelXQp9dLf1yS1kUL+UhppYDJpjhdP7ql3NI4xJKw8e76sP2FuJYEuzWnJHuWoyQ=="; }; }; "@aws-sdk/middleware-location-constraint-3.296.0" = { @@ -1030,13 +877,13 @@ let sha512 = "KHkWaIrZOtJmV1/WO9KOf7kSK41ngfqts3YIun956NYglKTDKyrBIOPCgmXTT/03odnYsKVT/UfbEIh/v4RxGA=="; }; }; - "@aws-sdk/middleware-location-constraint-3.379.1" = { + "@aws-sdk/middleware-location-constraint-3.387.0" = { name = "_at_aws-sdk_slash_middleware-location-constraint"; packageName = "@aws-sdk/middleware-location-constraint"; - version = "3.379.1"; + version = "3.387.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/middleware-location-constraint/-/middleware-location-constraint-3.379.1.tgz"; - sha512 = "+bmy8DjX9jtqJk8WiDaHoP9M5ZcqjHSJf4mkv8IUZ/FNTUl9j6Dll//bG/JxuAw5e5shtCDjmZ027W5d9ITp0g=="; + url = "https://registry.npmjs.org/@aws-sdk/middleware-location-constraint/-/middleware-location-constraint-3.387.0.tgz"; + sha512 = "Ipdry2V58CpDcWD0ZTz6yFtpTASEBxbuWdqUUYW7pOkZ/5GPGH8NhBky7M38iGqAO6FNysvWEVCUpIqNGkI1lw=="; }; }; "@aws-sdk/middleware-logger-3.296.0" = { @@ -1048,13 +895,13 @@ let sha512 = "LzfEEFyBR9LXdWwLdtBrmi1vLdzgdJNntEgzqktVF8LwaCyY+9xIE6TGu/2V+9fJHAwECxjOC1eQbNQdAZ0Tmw=="; }; }; - "@aws-sdk/middleware-logger-3.378.0" = { + "@aws-sdk/middleware-logger-3.387.0" = { name = "_at_aws-sdk_slash_middleware-logger"; packageName = "@aws-sdk/middleware-logger"; - version = "3.378.0"; + version = "3.387.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.378.0.tgz"; - sha512 = "l1DyaDLm3KeBMNMuANI3scWh8Xvu248x+vw6Z7ExWOhGXFmQ1MW7YvASg/SdxWkhlF9HmkkTif1LdMB22x6QDA=="; + url = "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.387.0.tgz"; + sha512 = "FjAvJr1XyaInT81RxUwgifnbXoFJrRBFc64XeFJgFanGIQCWLYxRrK2HV9eBpao/AycbmuoHgLd/f0sa4hZFoQ=="; }; }; "@aws-sdk/middleware-recursion-detection-3.296.0" = { @@ -1066,13 +913,13 @@ let sha512 = "UG7TLDPz9ImQG0uVklHTxE9Us7rTImwN+6el6qZCpoTBuGeXgOkfb0/p8izJyFgY/hMUR4cZqs7IdCDUkxQF3w=="; }; }; - "@aws-sdk/middleware-recursion-detection-3.378.0" = { + "@aws-sdk/middleware-recursion-detection-3.387.0" = { name = "_at_aws-sdk_slash_middleware-recursion-detection"; packageName = "@aws-sdk/middleware-recursion-detection"; - version = "3.378.0"; + version = "3.387.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.378.0.tgz"; - sha512 = "mUMfHAz0oGNIWiTZHTVJb+I515Hqs2zx1j36Le4MMiiaMkPW1SRUF1FIwGuc1wh6E8jB5q+XfEMriDjRi4TZRA=="; + url = "https://registry.npmjs.org/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.387.0.tgz"; + sha512 = "ZF45T785ru8OwvYZw6awD9Z76OwSMM1eZzj2eY+FDz1cHfkpLjxEiti2iIH1FxbyK7n9ZqDUx29lVlCv238YyQ=="; }; }; "@aws-sdk/middleware-retry-3.296.0" = { @@ -1093,13 +940,13 @@ let sha512 = "zH4uZKEqumo01wn+dTwrYnvOui9GjDiuBHdECnSjnA0Mkxo/tfMPYzYD7mE8kUlBz7HfQcXeXlyaApj9fPkxvg=="; }; }; - "@aws-sdk/middleware-sdk-s3-3.379.1" = { + "@aws-sdk/middleware-sdk-s3-3.387.0" = { name = "_at_aws-sdk_slash_middleware-sdk-s3"; packageName = "@aws-sdk/middleware-sdk-s3"; - version = "3.379.1"; + version = "3.387.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.379.1.tgz"; - sha512 = "NVHRpNLfkHCqr3CE1Bmlf8Fhys8lL78kDX7UONnTZXvSiSXmCS7EbNtGDghZ8IKi+V9S/ifB4sLsX3tfzY0i6Q=="; + url = "https://registry.npmjs.org/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.387.0.tgz"; + sha512 = "OIUBDzGhglI6KjXVwPLh7hRbrfCpSTwWRkbXbLrPgZZuzWMoJJ3q59RVkpLnAV9Mdkg6+YA6JTw4k4hcmJblVw=="; }; }; "@aws-sdk/middleware-sdk-sts-3.296.0" = { @@ -1111,13 +958,13 @@ let sha512 = "0EnHtiRzcRcXaF6zEgcRGUtVgX0RqczwlGXjtryHcxiqU/+adqbRuckC7bdMF4Zva6GVPS25XppvGF4M+UzAEw=="; }; }; - "@aws-sdk/middleware-sdk-sts-3.379.1" = { + "@aws-sdk/middleware-sdk-sts-3.387.0" = { name = "_at_aws-sdk_slash_middleware-sdk-sts"; packageName = "@aws-sdk/middleware-sdk-sts"; - version = "3.379.1"; + version = "3.387.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/middleware-sdk-sts/-/middleware-sdk-sts-3.379.1.tgz"; - sha512 = "SK3gSyT0XbLiY12+AjLFYL9YngxOXHnZF3Z33Cdd4a+AUYrVBV7JBEEGD1Nlwrcmko+3XgaKlmgUaR5s91MYvg=="; + url = "https://registry.npmjs.org/@aws-sdk/middleware-sdk-sts/-/middleware-sdk-sts-3.387.0.tgz"; + sha512 = "7ZzRKOJ4V/JDQmKz9z+FjZqw59mrMATEMLR6ff0H0JHMX0Uk5IX8TQB058ss+ar14qeJ4UcteYzCqHNI0O1BHw=="; }; }; "@aws-sdk/middleware-serde-3.296.0" = { @@ -1138,13 +985,13 @@ let sha512 = "wyiG+WPDvugGTIPpKchGOdvvpcMZEN2IfP6iK//QAqGXsC6rDm5+SNZ3+elvduZjPUdVA06W0CcFYBAkVz8D7Q=="; }; }; - "@aws-sdk/middleware-signing-3.379.1" = { + "@aws-sdk/middleware-signing-3.387.0" = { name = "_at_aws-sdk_slash_middleware-signing"; packageName = "@aws-sdk/middleware-signing"; - version = "3.379.1"; + version = "3.387.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/middleware-signing/-/middleware-signing-3.379.1.tgz"; - sha512 = "kBk2ZUvR84EM4fICjr8K+Ykpf8SI1UzzPp2/UVYZ0X+4H/ZCjfSqohGRwHykMqeplne9qHSL7/rGJs1H3l3gPg=="; + url = "https://registry.npmjs.org/@aws-sdk/middleware-signing/-/middleware-signing-3.387.0.tgz"; + sha512 = "oJXlE0MES8gxNLo137PPNNiOICQGOaETTvq3kBSJgb/gtEAxQajMIlaNT7s1wsjOAruFHt4975nCXuY4lpx7GQ=="; }; }; "@aws-sdk/middleware-ssec-3.296.0" = { @@ -1156,13 +1003,13 @@ let sha512 = "vcSyXxEXAC9rWzUd7rq2/JxPdt87DKiA+wfiBrpGvFV+bacocIV0TFcpJncgZqMOoP8b6Osd+mW4BjlkwBamtA=="; }; }; - "@aws-sdk/middleware-ssec-3.378.0" = { + "@aws-sdk/middleware-ssec-3.387.0" = { name = "_at_aws-sdk_slash_middleware-ssec"; packageName = "@aws-sdk/middleware-ssec"; - version = "3.378.0"; + version = "3.387.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/middleware-ssec/-/middleware-ssec-3.378.0.tgz"; - sha512 = "WDT2LOd6OxlY1zkrRG9ZtW2vFms/dsqMg9VyE88RKG2oATxSXEhkr5zLbNVh3TyuUKnV9jydate56d/ECwHOHg=="; + url = "https://registry.npmjs.org/@aws-sdk/middleware-ssec/-/middleware-ssec-3.387.0.tgz"; + sha512 = "Jtie1gqqcs7ZuYDlz/kuI3CKCXoCL5Ov/Gj5X8/XmwrQJEpuB6z0KY5H1qY0xo+jtAhC8nDPv0GnuLoOfn85hw=="; }; }; "@aws-sdk/middleware-stack-3.296.0" = { @@ -1183,22 +1030,13 @@ let sha512 = "L7jacxSt6gxX1gD3tQtfwHqBDk5rT2wWD3rxBa6rs7f81b9ObgY/sPT2IgRT7JNCVzvKLYFxJaTklDj65mY1SQ=="; }; }; - "@aws-sdk/middleware-user-agent-3.379.1" = { + "@aws-sdk/middleware-user-agent-3.387.0" = { name = "_at_aws-sdk_slash_middleware-user-agent"; packageName = "@aws-sdk/middleware-user-agent"; - version = "3.379.1"; + version = "3.387.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.379.1.tgz"; - sha512 = "4zIGeAIuutcRieAvovs82uBNhJBHuxfxaAUqrKiw49xUBG7xeNVUl+DYPSpbALbEIy4ujfwWCBOOWVCt6dyUZg=="; - }; - }; - "@aws-sdk/middleware-user-agent-3.382.0" = { - name = "_at_aws-sdk_slash_middleware-user-agent"; - packageName = "@aws-sdk/middleware-user-agent"; - version = "3.382.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.382.0.tgz"; - sha512 = "LFRW1jmXOrOAd3911ktn6oaYmuurNnulbdRMOUdwz99GGdLVFipQhOi9idKswb8IOhPa4jEVQt25Kcv7ctvu0A=="; + url = "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.387.0.tgz"; + sha512 = "hTfFTwDtp86xS98BKa+RFuLfcvGftxwzrbZeisZV8hdb4ZhvNXjSxnvM3vetW0GUEnY9xHPSGyp2ERRTinPKFQ=="; }; }; "@aws-sdk/node-config-provider-3.296.0" = { @@ -1255,13 +1093,13 @@ let sha512 = "nLNZKVQfK42euv7101cE5qfg17YCtGcfccx3B5XSAzvyTROR46kwYqbEvYSsWisbZoRhbQc905gB/5E0U5HDIw=="; }; }; - "@aws-sdk/s3-presigned-post-3.379.1" = { + "@aws-sdk/s3-presigned-post-3.388.0" = { name = "_at_aws-sdk_slash_s3-presigned-post"; packageName = "@aws-sdk/s3-presigned-post"; - version = "3.379.1"; + version = "3.388.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/s3-presigned-post/-/s3-presigned-post-3.379.1.tgz"; - sha512 = "EFToAaAIW0bhV7QFEVwddpRjNuulmwJfgJyn2aNt36exETBBRRkeJrIxjOY6QevIwMCCEoq+RIYEPkV+llijoQ=="; + url = "https://registry.npmjs.org/@aws-sdk/s3-presigned-post/-/s3-presigned-post-3.388.0.tgz"; + sha512 = "SuQBVj99p4xyHcqonlKz3Ij/dpuDZK9WPceqe7i+WEzkWbRiVfCW0BhZikmEpv5QVAnOrTuXtCASZb+noX0EpQ=="; }; }; "@aws-sdk/s3-request-presigner-3.296.0" = { @@ -1273,13 +1111,13 @@ let sha512 = "BQv+oNA5EzJymrfh7cnMun/ougmTX3eo6bGCWn/bQdL1LyxodeVdRZacD5tN+lAUYtjhQ7yS23ozYh0lvWNEXw=="; }; }; - "@aws-sdk/s3-request-presigner-3.379.1" = { + "@aws-sdk/s3-request-presigner-3.388.0" = { name = "_at_aws-sdk_slash_s3-request-presigner"; packageName = "@aws-sdk/s3-request-presigner"; - version = "3.379.1"; + version = "3.388.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/s3-request-presigner/-/s3-request-presigner-3.379.1.tgz"; - sha512 = "99wY7+UzptKZIUo5VTfkkfowLt/K7eLE1MXGCsIfKZmHF756F86ZAy0CRZ1OPaAXOQI2uUbhwwBqLyQY6NbfPg=="; + url = "https://registry.npmjs.org/@aws-sdk/s3-request-presigner/-/s3-request-presigner-3.388.0.tgz"; + sha512 = "vMdIS5ce5zTEaZUsbpoMf8uQNjF2J2vRizsr5pomV71zLUdLYubSr5TA7fKBSimwjS3XMCyKX2rJkGGVK5JGmQ=="; }; }; "@aws-sdk/service-error-classification-3.296.0" = { @@ -1309,13 +1147,13 @@ let sha512 = "NQyJ/FClty4VmF1WoV4rOkbN0Unn0zevzy8iJrYhqxE3Sc7lySM4Btnsd4Iqelm2dR6l+jNRApGgD8NvoGjGig=="; }; }; - "@aws-sdk/signature-v4-crt-3.378.0" = { + "@aws-sdk/signature-v4-crt-3.387.0" = { name = "_at_aws-sdk_slash_signature-v4-crt"; packageName = "@aws-sdk/signature-v4-crt"; - version = "3.378.0"; + version = "3.387.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/signature-v4-crt/-/signature-v4-crt-3.378.0.tgz"; - sha512 = "+7ZnoHT4EuyfkJUAovAicRhHztACkApe/1i7e3PfxMhqexy+hAk/Z/b58iXFnVCRecNmRy/cESets/SdjbUepA=="; + url = "https://registry.npmjs.org/@aws-sdk/signature-v4-crt/-/signature-v4-crt-3.387.0.tgz"; + sha512 = "oYIslOckR50F8x41ARl1BWMo3+vO+8M/dQVycupSCRqQP+BFPOpUGMrRKXVjTdhow1CrQ3ef9BpvHLznl7UrFg=="; }; }; "@aws-sdk/signature-v4-multi-region-3.296.0" = { @@ -1327,13 +1165,13 @@ let sha512 = "BNMXS0YJEgflPhO2KxXG4f0iTMOGdyxslDMNGmMWGGQm6bbwtqZ7Y9ZyMQYKfzk3GUPpfGQcaaSNiGfURPOCOg=="; }; }; - "@aws-sdk/signature-v4-multi-region-3.378.0" = { + "@aws-sdk/signature-v4-multi-region-3.387.0" = { name = "_at_aws-sdk_slash_signature-v4-multi-region"; packageName = "@aws-sdk/signature-v4-multi-region"; - version = "3.378.0"; + version = "3.387.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.378.0.tgz"; - sha512 = "gtuABS7EeYZQeNzTrabY3Ruv4wWmoz4u8OMSGl47gYPDWA70WYEZ0aoi4zSGuKhXiqtVvTsO9wGEMIInwV5phQ=="; + url = "https://registry.npmjs.org/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.387.0.tgz"; + sha512 = "SGuUbEFi8BXYVv4M7Hc0488I7uZbTVBW19j/B7bnyfbKFrndBXM366s/mChx4iELtESQ61AAstyafx5nGj5tIg=="; }; }; "@aws-sdk/smithy-client-3.296.0" = { @@ -1354,22 +1192,13 @@ let sha512 = "yC1ku7A5S+o/CLlgbgDB2bx8+Wq43qj8xfohmTuIhpiP2m/NyUiRVv6S6ARONLI6bVeo1T2/BFk5Q9DfE2xzAQ=="; }; }; - "@aws-sdk/token-providers-3.379.1" = { + "@aws-sdk/token-providers-3.388.0" = { name = "_at_aws-sdk_slash_token-providers"; packageName = "@aws-sdk/token-providers"; - version = "3.379.1"; + version = "3.388.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.379.1.tgz"; - sha512 = "NlYPkArJ7A/txCrjqqkje+4hsv7pSOqm+Qdx3BUIOc7PRYrBVs/XwThxUkGceSntVXoNlO8g9DFL0NY53/wb8Q=="; - }; - }; - "@aws-sdk/token-providers-3.382.0" = { - name = "_at_aws-sdk_slash_token-providers"; - packageName = "@aws-sdk/token-providers"; - version = "3.382.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.382.0.tgz"; - sha512 = "axn4IyPpHdkXi8G06KCB3tPz79DipZFFH9N9YVDpLMnDYTdfX36HGdYzINaQc+z+XPbEpa1ZpoIzWScHRjFjdg=="; + url = "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.388.0.tgz"; + sha512 = "2lo1gFJl624kfjo/YdU6zW+k6dEwhoqjNkDNbOZEFgS1KDofHe9GX8W4/ReKb0Ggho5/EcjzZ53/1CjkzUq4tA=="; }; }; "@aws-sdk/types-3.296.0" = { @@ -1381,13 +1210,13 @@ let sha512 = "s0wIac64rrMEo2ioUxP9IarGiiCGmelCspNcoNTPSjGl25QqjhyfQqTeGgS58qJ4fHoQb07qra39930xp1IzJg=="; }; }; - "@aws-sdk/types-3.378.0" = { + "@aws-sdk/types-3.387.0" = { name = "_at_aws-sdk_slash_types"; packageName = "@aws-sdk/types"; - version = "3.378.0"; + version = "3.387.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/types/-/types-3.378.0.tgz"; - sha512 = "qP0CvR/ItgktmN8YXpGQglzzR/6s0nrsQ4zIfx3HMwpsBTwuouYahcCtF1Vr82P4NFcoDA412EJahJ2pIqEd+w=="; + url = "https://registry.npmjs.org/@aws-sdk/types/-/types-3.387.0.tgz"; + sha512 = "YTjFabNwjTF+6yl88f0/tWff018qmmgMmjlw45s6sdVKueWxdxV68U7gepNLF2nhaQPZa6FDOBoA51NaviVs0Q=="; }; }; "@aws-sdk/url-parser-3.296.0" = { @@ -1498,22 +1327,13 @@ let sha512 = "YraGGLJepXM6HCTaqEGTFf8RFRBdJ0C6uG5k0kVhiXmYxBkeupn8J07CVp9jfWqcPYWElAnMGVEZKU1OjRo4HQ=="; }; }; - "@aws-sdk/util-endpoints-3.378.0" = { + "@aws-sdk/util-endpoints-3.387.0" = { name = "_at_aws-sdk_slash_util-endpoints"; packageName = "@aws-sdk/util-endpoints"; - version = "3.378.0"; + version = "3.387.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.378.0.tgz"; - sha512 = "NU5C2l2xAXxpyB5nT0fIhahLPlJoJdzHWw4uC53KH9b4PrjHtgvgCN8beIsD3QxyfgeoM4A5J9Auo6WurfRnLw=="; - }; - }; - "@aws-sdk/util-endpoints-3.382.0" = { - name = "_at_aws-sdk_slash_util-endpoints"; - packageName = "@aws-sdk/util-endpoints"; - version = "3.382.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.382.0.tgz"; - sha512 = "flajPyjmjNG67fXk7l4GoTB/7J11VBqtFZXuuAZKhKU07Ia3IQupsFqNf5lV8D44ZgjnKH0fTGnv3dUALjW7Wg=="; + url = "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.387.0.tgz"; + sha512 = "g7kvuCXehGXHHBw9PkSQdwVyDFmNUZLmfrRmqMyrMDG9QLQrxr4pyWcSaYgTE16yUzhQQOR+QSey+BL6W9/N6g=="; }; }; "@aws-sdk/util-format-url-3.296.0" = { @@ -1525,13 +1345,13 @@ let sha512 = "CcYECzkUAnHL5q3uyPicafn2OY0GiklIYfuOUHPZ/4FMxIesd1BnCDDRjTlFxLWjuNuiihIdwB7Qb1pDzxc3Iw=="; }; }; - "@aws-sdk/util-format-url-3.378.0" = { + "@aws-sdk/util-format-url-3.387.0" = { name = "_at_aws-sdk_slash_util-format-url"; packageName = "@aws-sdk/util-format-url"; - version = "3.378.0"; + version = "3.387.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/util-format-url/-/util-format-url-3.378.0.tgz"; - sha512 = "CtW2HnCq08ildVD7B5OPn1zOxBAMBjkDxqzOcLw3Rk9F6OKuMM9hawulU62tMtouJPC0QSS6eLoNOrYGch5ehQ=="; + url = "https://registry.npmjs.org/@aws-sdk/util-format-url/-/util-format-url-3.387.0.tgz"; + sha512 = "kiy7+93M1JeEn3pLJhY/q4G3f9tGsSbsgHKg2mDTCIxJaUmnHIYINN9vhEYQcDCMcWvOF0rzkuB9L8uAzR4O3g=="; }; }; "@aws-sdk/util-hex-encoding-3.295.0" = { @@ -1606,13 +1426,13 @@ let sha512 = "MGGG+09VkF0N+8KEht8NNE6Q7bqmddgqLkUbvzSky0y18UPEZyq9LTC4JZtzDDOzf/swgbq2IQ/5wtB81iouog=="; }; }; - "@aws-sdk/util-user-agent-browser-3.378.0" = { + "@aws-sdk/util-user-agent-browser-3.387.0" = { name = "_at_aws-sdk_slash_util-user-agent-browser"; packageName = "@aws-sdk/util-user-agent-browser"; - version = "3.378.0"; + version = "3.387.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.378.0.tgz"; - sha512 = "FSCpagzftK1W+m7Ar6lpX7/Gr9y5P56nhFYz8U4EYQ4PkufS6czWX9YW+/FA5OYV0vlQ/SvPqMnzoHIPUNhZrQ=="; + url = "https://registry.npmjs.org/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.387.0.tgz"; + sha512 = "lpgSVvDqx+JjHZCTYs/yQSS7J71dPlJeAlvxc7bmx5m+vfwKe07HAnIs+929DngS0QbAp/VaXbTiMFsInLkO4Q=="; }; }; "@aws-sdk/util-user-agent-node-3.296.0" = { @@ -1624,13 +1444,13 @@ let sha512 = "AMWac8aIBnaa9nxAEpZ752j29a/UQTViRfR5gnCX38ECBKGfOQMpgYnee5HdlMr4GHJj0WkOzQxBtInW4pV58g=="; }; }; - "@aws-sdk/util-user-agent-node-3.378.0" = { + "@aws-sdk/util-user-agent-node-3.387.0" = { name = "_at_aws-sdk_slash_util-user-agent-node"; packageName = "@aws-sdk/util-user-agent-node"; - version = "3.378.0"; + version = "3.387.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.378.0.tgz"; - sha512 = "IdwVJV0E96MkJeFte4dlWqvB+oiqCiZ5lOlheY3W9NynTuuX0GGYNC8Y9yIsV8Oava1+ujpJq0ww6qXdYxmO4A=="; + url = "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.387.0.tgz"; + sha512 = "r9OVkcWpRYatjLhJacuHFgvO2T5s/Nu5DDbScMrkUD8b4aGIIqsrdZji0vZy9FCjsUFQMM92t9nt4SejrGjChA=="; }; }; "@aws-sdk/util-utf8-3.295.0" = { @@ -1705,13 +1525,13 @@ let sha512 = "TrRLIoSQVzfAJX9H1JeFjzAoDGcoK1IYX1UImfceTZpsyYfWr09Ss1aHW1y5TrrR3iq6RZLBwJ3E24uwPhwahw=="; }; }; - "@azure/core-auth-1.4.0" = { + "@azure/core-auth-1.5.0" = { name = "_at_azure_slash_core-auth"; packageName = "@azure/core-auth"; - version = "1.4.0"; + version = "1.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/@azure/core-auth/-/core-auth-1.4.0.tgz"; - sha512 = "HFrcTgmuSuukRf/EdPmqBrc5l6Q5Uu+2TbuhaKbgaCpP2TfAeiNaQPAadxO+CYBRHGUzIDteMAjFspFLDLnKVQ=="; + url = "https://registry.npmjs.org/@azure/core-auth/-/core-auth-1.5.0.tgz"; + sha512 = "udzoBuYG1VBoHVohDTrvKjyzel34zt77Bhp7dQntVGGD0ehVq48owENbBG8fIgkHRNUBQH5k1r0hpoMu5L8+kw=="; }; }; "@azure/core-client-1.7.3" = { @@ -1750,13 +1570,13 @@ let sha512 = "zqWdVIt+2Z+3wqxEOGzR5hXFZ8MGKK52x4vFLw8n58pR6ZfKRx3EXYTxTaYxYHc/PexPUTyimcTWFJbji9Z6Iw=="; }; }; - "@azure/core-rest-pipeline-1.11.0" = { + "@azure/core-rest-pipeline-1.12.0" = { name = "_at_azure_slash_core-rest-pipeline"; packageName = "@azure/core-rest-pipeline"; - version = "1.11.0"; + version = "1.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/@azure/core-rest-pipeline/-/core-rest-pipeline-1.11.0.tgz"; - sha512 = "nB4KXl6qAyJmBVLWA7SakT4tzpYZTCk4pvRBeI+Ye0WYSOrlTqlMhc4MSS/8atD3ufeYWdkN380LLoXlUUzThw=="; + url = "https://registry.npmjs.org/@azure/core-rest-pipeline/-/core-rest-pipeline-1.12.0.tgz"; + sha512 = "+MnSB0vGZjszSzr5AW8z93/9fkDu2RLtWmAN8gskURq7EW2sSwqy8jZa0V26rjuBVkwhdA3Hw8z3VWoeBUOw+A=="; }; }; "@azure/core-tracing-1.0.0-preview.13" = { @@ -1777,13 +1597,13 @@ let sha512 = "I5CGMoLtX+pI17ZdiFJZgxMJApsK6jjfm85hpgp3oazCdq5Wxgh4wMr7ge/TTWW1B5WBuvIOI1fMU/FrOAMKrw=="; }; }; - "@azure/core-util-1.3.2" = { + "@azure/core-util-1.4.0" = { name = "_at_azure_slash_core-util"; packageName = "@azure/core-util"; - version = "1.3.2"; + version = "1.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/@azure/core-util/-/core-util-1.3.2.tgz"; - sha512 = "2bECOUh88RvL1pMZTcc6OzfobBeWDBf5oBbhjIhT1MV9otMVWCzpOJkkiKtrnO88y5GGBelgY8At73KGAdbkeQ=="; + url = "https://registry.npmjs.org/@azure/core-util/-/core-util-1.4.0.tgz"; + sha512 = "eGAyJpm3skVQoLiRqm/xPa+SXi/NPDdSHMxbRAz2lSprd+Zs+qrpQGQQ2VQ3Nttu+nSZR4XoYQC71LbEI7jsig=="; }; }; "@azure/identity-2.1.0" = { @@ -1804,22 +1624,22 @@ let sha512 = "ustrPY8MryhloQj7OWGe+HrYx+aoiOxzbXTtgblbV3xwCqpzUK36phH3XNHQKj3EPonyFUuDTfR3qFhTEAuZEg=="; }; }; - "@azure/msal-browser-2.38.0" = { + "@azure/msal-browser-2.38.1" = { name = "_at_azure_slash_msal-browser"; packageName = "@azure/msal-browser"; - version = "2.38.0"; + version = "2.38.1"; src = fetchurl { - url = "https://registry.npmjs.org/@azure/msal-browser/-/msal-browser-2.38.0.tgz"; - sha512 = "gxBh83IumHgEP9uMCm9pJLKLRwICMQTxG9TX3AytdNt3oLUI3tytm/szYD5u5zKJgSkhHvwFSM+NPnM04hYw3w=="; + url = "https://registry.npmjs.org/@azure/msal-browser/-/msal-browser-2.38.1.tgz"; + sha512 = "NROo7mLpw7aWtj8tWy9ZPz3WWiudwVAOIDZ1K3PPrjDAA4kFYayWlbZiJl1T1sD5Oqwa6FOtwzFSvuUj1CWp6Q=="; }; }; - "@azure/msal-common-13.2.0" = { + "@azure/msal-common-13.2.1" = { name = "_at_azure_slash_msal-common"; packageName = "@azure/msal-common"; - version = "13.2.0"; + version = "13.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/@azure/msal-common/-/msal-common-13.2.0.tgz"; - sha512 = "rnstQ7Zgn3fSTKNQO+/YNV34/QXJs0vni7IA0/3QB1EEyrJg14xyRmTqlw9ta+pdSuT5OJwUP8kI3D/rBwUIBw=="; + url = "https://registry.npmjs.org/@azure/msal-common/-/msal-common-13.2.1.tgz"; + sha512 = "9CtyVdDtAOw+raemKg8gdBuE7gleObgSb7p4bzMIlUt8eM69/Gaow7uqr1gK3jLYINSrss32OZW8mBbdgVLiHg=="; }; }; "@azure/msal-common-7.6.0" = { @@ -1831,13 +1651,13 @@ let sha512 = "XqfbglUTVLdkHQ8F9UQJtKseRr3sSnr9ysboxtoswvaMVaEfvyLtMoHv9XdKUfOc0qKGzNgRFd9yRjIWVepl6Q=="; }; }; - "@azure/msal-node-1.18.0" = { + "@azure/msal-node-1.18.1" = { name = "_at_azure_slash_msal-node"; packageName = "@azure/msal-node"; - version = "1.18.0"; + version = "1.18.1"; src = fetchurl { - url = "https://registry.npmjs.org/@azure/msal-node/-/msal-node-1.18.0.tgz"; - sha512 = "N6GX1Twxw524e7gaJvj7hKtrPRmZl9qGY7U4pmUdx4XzoWYRFfYk4H1ZjVhQ7pwb5Ks88NNhbXVCagsuYPTEFg=="; + url = "https://registry.npmjs.org/@azure/msal-node/-/msal-node-1.18.1.tgz"; + sha512 = "B4kUOWJoN4vD8b3pGJ9Q9mIZhaDb8EnQM1aN0x1otlQgTfzDvEk6rWc6fy8uGdtXqcNddBtiXdc4oRiItroVkA=="; }; }; "@azure/storage-blob-12.11.0" = { @@ -1849,13 +1669,13 @@ let sha512 = "na+FisoARuaOWaHWpmdtk3FeuTWf2VWamdJ9/TJJzj5ZdXPLC3juoDgFs6XVuJIoK30yuBpyFBEDXVRK4pB7Tg=="; }; }; - "@babel/cli-7.22.9" = { + "@babel/cli-7.22.10" = { name = "_at_babel_slash_cli"; packageName = "@babel/cli"; - version = "7.22.9"; + version = "7.22.10"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/cli/-/cli-7.22.9.tgz"; - sha512 = "nb2O7AThqRo7/E53EGiuAkMaRbb7J5Qp3RvN+dmua1U+kydm0oznkhqbTEG15yk26G/C3yL6OdZjzgl+DMXVVA=="; + url = "https://registry.npmjs.org/@babel/cli/-/cli-7.22.10.tgz"; + sha512 = "rM9ZMmaII630zGvtMtQ3P4GyHs28CHLYE9apLG7L8TgaSqcfoIGrlLSLsh4Q8kDTdZQQEXZm1M0nQtOvU/2heg=="; }; }; "@babel/code-frame-7.10.4" = { @@ -1885,13 +1705,13 @@ let sha512 = "TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q=="; }; }; - "@babel/code-frame-7.22.5" = { + "@babel/code-frame-7.22.10" = { name = "_at_babel_slash_code-frame"; packageName = "@babel/code-frame"; - version = "7.22.5"; + version = "7.22.10"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.5.tgz"; - sha512 = "Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ=="; + url = "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.10.tgz"; + sha512 = "/KKIMG4UEL35WmI9OlvMhurwtytjvXoFcGNrOvyG9zIzA8YmPjVtIZUf7b05+TPO7G7/GEmLHDaoCgACHl9hhA=="; }; }; "@babel/compat-data-7.22.9" = { @@ -1912,13 +1732,13 @@ let sha512 = "nrvxS5u6QUN5gLl1GEakIcmOeoUHT1/gQtdMRq18WFURJ5osn4ppJLVSseMQo4zVWKJfBTF4muIYijXUnKlRLQ=="; }; }; - "@babel/core-7.22.9" = { + "@babel/core-7.22.10" = { name = "_at_babel_slash_core"; packageName = "@babel/core"; - version = "7.22.9"; + version = "7.22.10"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/core/-/core-7.22.9.tgz"; - sha512 = "G2EgeufBcYw27U4hhoIwFcgc1XU7TlXJ3mv04oOv1WCuo900U/anZSPzEqNjwdjgffkk2Gs0AN0dW1CKVLcG7w=="; + url = "https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz"; + sha512 = "fTmqbbUBAwCcre6zPzNngvsI0aNrPZe77AeqvDxWM9Nm+04RrJ3CAmGHA9f7lJQY6ZMhRztNemy4uslDxTX4Qw=="; }; }; "@babel/generator-7.18.2" = { @@ -1930,13 +1750,13 @@ let sha512 = "W1lG5vUwFvfMd8HVXqdfbuG7RuaSrTCCD8cl8fP8wOivdbtbIg2Db3IWUcgvfxKbbn6ZBGYRW/Zk1MIwK49mgw=="; }; }; - "@babel/generator-7.22.9" = { + "@babel/generator-7.22.10" = { name = "_at_babel_slash_generator"; packageName = "@babel/generator"; - version = "7.22.9"; + version = "7.22.10"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/generator/-/generator-7.22.9.tgz"; - sha512 = "KtLMbmicyuK2Ak/FTCJVbDnkN1SlT8/kceFTiuDiiRUUSMnHMidxSCdG4ndkTOHHpoomWe/4xkvHkEOncwjYIw=="; + url = "https://registry.npmjs.org/@babel/generator/-/generator-7.22.10.tgz"; + sha512 = "79KIf7YiWjjdZ81JnLujDRApWtl7BxTqWD88+FFdQEIOG8LJ0etDOM7CXuIgGJa55sGOwZVwuEsaLEm0PJ5/+A=="; }; }; "@babel/helper-annotate-as-pure-7.22.5" = { @@ -1948,31 +1768,31 @@ let sha512 = "LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg=="; }; }; - "@babel/helper-builder-binary-assignment-operator-visitor-7.22.5" = { + "@babel/helper-builder-binary-assignment-operator-visitor-7.22.10" = { name = "_at_babel_slash_helper-builder-binary-assignment-operator-visitor"; packageName = "@babel/helper-builder-binary-assignment-operator-visitor"; - version = "7.22.5"; + version = "7.22.10"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.5.tgz"; - sha512 = "m1EP3lVOPptR+2DwD125gziZNcmoNSHGmJROKoy87loWUQyJaVXDgpmruWqDARZSmtYQ+Dl25okU8+qhVzuykw=="; + url = "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.10.tgz"; + sha512 = "Av0qubwDQxC56DoUReVDeLfMEjYYSN1nZrTUrWkXd7hpU73ymRANkbuDm3yni9npkn+RXy9nNbEJZEzXr7xrfQ=="; }; }; - "@babel/helper-compilation-targets-7.22.9" = { + "@babel/helper-compilation-targets-7.22.10" = { name = "_at_babel_slash_helper-compilation-targets"; packageName = "@babel/helper-compilation-targets"; - version = "7.22.9"; + version = "7.22.10"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.9.tgz"; - sha512 = "7qYrNM6HjpnPHJbopxmb8hSPoZ0gsX8IvUS32JGVoy+pU9e5N0nLr1VjJoR6kA4d9dmGLxNYOjeB8sUDal2WMw=="; + url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.10.tgz"; + sha512 = "JMSwHD4J7SLod0idLq5PKgI+6g/hLD/iuWBq08ZX49xE14VpVEojJ5rHWptpirV2j020MvypRLAXAO50igCJ5Q=="; }; }; - "@babel/helper-create-class-features-plugin-7.22.9" = { + "@babel/helper-create-class-features-plugin-7.22.10" = { name = "_at_babel_slash_helper-create-class-features-plugin"; packageName = "@babel/helper-create-class-features-plugin"; - version = "7.22.9"; + version = "7.22.10"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.9.tgz"; - sha512 = "Pwyi89uO4YrGKxL/eNJ8lfEH55DnRloGPOseaA8NFNL6jAUnn+KccaISiFazCj5IolPPDjGSdzQzXVzODVRqUQ=="; + url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.10.tgz"; + sha512 = "5IBb77txKYQPpOEdUdIhBx8VrZyDCQ+H82H0+5dX1TmuscP5vJKEE3cKurjtIw/vFwzbVH48VweE78kVDBrqjA=="; }; }; "@babel/helper-create-regexp-features-plugin-7.22.9" = { @@ -2137,40 +1957,40 @@ let sha512 = "R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw=="; }; }; - "@babel/helper-wrap-function-7.22.9" = { + "@babel/helper-wrap-function-7.22.10" = { name = "_at_babel_slash_helper-wrap-function"; packageName = "@babel/helper-wrap-function"; - version = "7.22.9"; + version = "7.22.10"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.22.9.tgz"; - sha512 = "sZ+QzfauuUEfxSEjKFmi3qDSHgLsTPK/pEpoD/qonZKOtTPTLbf59oabPQ4rKekt9lFcj/hTZaOhWwFYrgjk+Q=="; + url = "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.22.10.tgz"; + sha512 = "OnMhjWjuGYtdoO3FmsEFWvBStBAe2QOgwOLsLNDjN+aaiMD8InJk1/O3HSD8lkqTjCgg5YI34Tz15KNNA3p+nQ=="; }; }; - "@babel/helpers-7.22.6" = { + "@babel/helpers-7.22.10" = { name = "_at_babel_slash_helpers"; packageName = "@babel/helpers"; - version = "7.22.6"; + version = "7.22.10"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.22.6.tgz"; - sha512 = "YjDs6y/fVOYFV8hAf1rxd1QvR9wJe1pDBZ2AREKq/SDayfPzgk0PBnVuTCE5X1acEpMMNOVUqoe+OwiZGJ+OaA=="; + url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.22.10.tgz"; + sha512 = "a41J4NW8HyZa1I1vAndrraTlPZ/eZoga2ZgS7fEr0tZJGVU4xqdE80CEm0CcNjha5EZ8fTBYLKHF0kqDUuAwQw=="; }; }; - "@babel/highlight-7.22.5" = { + "@babel/highlight-7.22.10" = { name = "_at_babel_slash_highlight"; packageName = "@babel/highlight"; - version = "7.22.5"; + version = "7.22.10"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.5.tgz"; - sha512 = "BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw=="; + url = "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.10.tgz"; + sha512 = "78aUtVcT7MUscr0K5mIEnkwxPE0MaxkR5RxRwuHaQ+JuU5AmTPhY+do2mdzVTnIJJpyBglql2pehuBIWHug+WQ=="; }; }; - "@babel/node-7.22.6" = { + "@babel/node-7.22.10" = { name = "_at_babel_slash_node"; packageName = "@babel/node"; - version = "7.22.6"; + version = "7.22.10"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/node/-/node-7.22.6.tgz"; - sha512 = "Lt6v+RUQOTsEOXLv+KfjogLFkFfsLPPSoXZqmbngfVatkWjQPnFGHO0xjFRcN6XEvm3vsnZn+AWQiRpgZFsdIA=="; + url = "https://registry.npmjs.org/@babel/node/-/node-7.22.10.tgz"; + sha512 = "FpSgdjIPabpEetDxtKYAcXCs0qRh12S2D40rhpRoo0w5h7/7Tu2ZroaX99cbKFNDODiSs484sZ1q0kutJbZ2iQ=="; }; }; "@babel/parser-7.16.4" = { @@ -2191,13 +2011,13 @@ let sha512 = "FDge0dFazETFcxGw/EXzOkN8uJp0PC7Qbm+Pe9T+av2zlBpOgunFHkQPPn+eRuClU73JF+98D531UgayY89tow=="; }; }; - "@babel/parser-7.22.7" = { + "@babel/parser-7.22.10" = { name = "_at_babel_slash_parser"; packageName = "@babel/parser"; - version = "7.22.7"; + version = "7.22.10"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/parser/-/parser-7.22.7.tgz"; - sha512 = "7NF8pOkHP5o2vpmGgNGcfAeCvOYhGLyA3Z4eBQkT1RJlWu47n63bCs93QfJ2hIAFCil7L5P2IWhs1oToVgrL0Q=="; + url = "https://registry.npmjs.org/@babel/parser/-/parser-7.22.10.tgz"; + sha512 = "lNbdGsQb9ekfsnjFGhEiF4hfFqGgfOP3H3d27re3n+CGhNuTSUEQdfWk556sTLNTloczcdM5TYF2LhzmDQKyvQ=="; }; }; "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.22.5" = { @@ -2245,13 +2065,13 @@ let sha512 = "cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ=="; }; }; - "@babel/plugin-proposal-decorators-7.22.7" = { + "@babel/plugin-proposal-decorators-7.22.10" = { name = "_at_babel_slash_plugin-proposal-decorators"; packageName = "@babel/plugin-proposal-decorators"; - version = "7.22.7"; + version = "7.22.10"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.22.7.tgz"; - sha512 = "omXqPF7Onq4Bb7wHxXjM3jSMSJvUUbvDvmmds7KI5n9Cq6Ln5I05I1W2nRlRof1rGdiUxJrxwe285WF96XlBXQ=="; + url = "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.22.10.tgz"; + sha512 = "KxN6TqZzcFi4uD3UifqXElBTBNLAEH1l3vzMQj6JwJZbL2sZlThxSViOKCYY+4Ah4V4JhQ95IVB7s/Y6SJSlMQ=="; }; }; "@babel/plugin-proposal-export-default-from-7.22.5" = { @@ -2362,13 +2182,13 @@ let sha512 = "b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw=="; }; }; - "@babel/plugin-syntax-decorators-7.22.5" = { + "@babel/plugin-syntax-decorators-7.22.10" = { name = "_at_babel_slash_plugin-syntax-decorators"; packageName = "@babel/plugin-syntax-decorators"; - version = "7.22.5"; + version = "7.22.10"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.22.5.tgz"; - sha512 = "avpUOBS7IU6al8MmF1XpAyj9QYeLPuSDJI5D4pVMSMdL7xQokKqJPYQC67RCT0aCTashUXPiGwMJ0DEXXCEmMA=="; + url = "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.22.10.tgz"; + sha512 = "z1KTVemBjnz+kSEilAsI4lbkPOl5TvJH7YDSY1CTIzvLWJ+KHXp+mRe8VPmfnyvqOPqar1V2gid2PleKzRUstQ=="; }; }; "@babel/plugin-syntax-dynamic-import-7.0.0" = { @@ -2560,13 +2380,13 @@ let sha512 = "26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw=="; }; }; - "@babel/plugin-transform-async-generator-functions-7.22.7" = { + "@babel/plugin-transform-async-generator-functions-7.22.10" = { name = "_at_babel_slash_plugin-transform-async-generator-functions"; packageName = "@babel/plugin-transform-async-generator-functions"; - version = "7.22.7"; + version = "7.22.10"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.22.7.tgz"; - sha512 = "7HmE7pk/Fmke45TODvxvkxRMV9RazV+ZZzhOL9AG8G29TLrr3jkjwF7uJfxZ30EoXpO+LJkq4oA8NjO2DTnEDg=="; + url = "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.22.10.tgz"; + sha512 = "eueE8lvKVzq5wIObKK/7dvoeKJ+xc6TvRn6aysIjS6pSCeLy7S/eVi7pEQknZqyqvzaNKdDtem8nUNTBgDVR2g=="; }; }; "@babel/plugin-transform-async-to-generator-7.22.5" = { @@ -2587,13 +2407,13 @@ let sha512 = "tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA=="; }; }; - "@babel/plugin-transform-block-scoping-7.22.5" = { + "@babel/plugin-transform-block-scoping-7.22.10" = { name = "_at_babel_slash_plugin-transform-block-scoping"; packageName = "@babel/plugin-transform-block-scoping"; - version = "7.22.5"; + version = "7.22.10"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.22.5.tgz"; - sha512 = "EcACl1i5fSQ6bt+YGuU/XGCeZKStLmyVGytWkpyhCLeQVA0eu6Wtiw92V+I1T/hnezUv7j74dA/Ro69gWcU+hg=="; + url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.22.10.tgz"; + sha512 = "1+kVpGAOOI1Albt6Vse7c8pHzcZQdQKW+wJH+g8mCaszOdDVwRXa/slHPqIw+oJAJANTKDMuM2cBdV0Dg618Vg=="; }; }; "@babel/plugin-transform-class-properties-7.22.5" = { @@ -2632,13 +2452,13 @@ let sha512 = "4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg=="; }; }; - "@babel/plugin-transform-destructuring-7.22.5" = { + "@babel/plugin-transform-destructuring-7.22.10" = { name = "_at_babel_slash_plugin-transform-destructuring"; packageName = "@babel/plugin-transform-destructuring"; - version = "7.22.5"; + version = "7.22.10"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.22.5.tgz"; - sha512 = "GfqcFuGW8vnEqTUBM7UtPd5A4q797LTvvwKxXTgRsFjoqaJiEg9deBG6kWeQYkVEL569NpnmpC0Pkr/8BLKGnQ=="; + url = "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.22.10.tgz"; + sha512 = "dPJrL0VOyxqLM9sritNbMSGx/teueHF/htMKrPT7DNxccXxRDPYqlgPFFdr8u+F+qUZOkZoXue/6rL5O5GduEw=="; }; }; "@babel/plugin-transform-dotall-regex-7.22.5" = { @@ -2848,13 +2668,13 @@ let sha512 = "pH8orJahy+hzZje5b8e2QIlBWQvGpelS76C63Z+jhZKsmzfNaPQ+LaW6dcJ9bxTpo1mtXbgHwy765Ro3jftmUg=="; }; }; - "@babel/plugin-transform-optional-chaining-7.22.6" = { + "@babel/plugin-transform-optional-chaining-7.22.10" = { name = "_at_babel_slash_plugin-transform-optional-chaining"; packageName = "@babel/plugin-transform-optional-chaining"; - version = "7.22.6"; + version = "7.22.10"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.22.6.tgz"; - sha512 = "Vd5HiWml0mDVtcLHIoEU5sw6HOUW/Zk0acLs/SAeuLzkGNOPc9DB4nkUajemhCmTIz3eiaKREZn2hQQqF79YTg=="; + url = "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.22.10.tgz"; + sha512 = "MMkQqZAZ+MGj+jGTG3OTuhKeBpNcO+0oCEbrGNEaOmiEn+1MzRyQlYsruGiU8RTK3zV6XwrVJTmwiDOyYK6J9g=="; }; }; "@babel/plugin-transform-parameters-7.22.5" = { @@ -2947,13 +2767,13 @@ let sha512 = "gP4k85wx09q+brArVinTXhWiyzLl9UpmGva0+mWyKxk6JZequ05x3eUcIUE+FyttPKJFRRVtAvQaJ6YF9h1ZpA=="; }; }; - "@babel/plugin-transform-regenerator-7.22.5" = { + "@babel/plugin-transform-regenerator-7.22.10" = { name = "_at_babel_slash_plugin-transform-regenerator"; packageName = "@babel/plugin-transform-regenerator"; - version = "7.22.5"; + version = "7.22.10"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.22.5.tgz"; - sha512 = "rR7KePOE7gfEtNTh9Qw+iO3Q/e4DEsoQ+hdvM6QUDH7JRJ5qxq5AA52ZzBWbI5i9lfNuvySgOGP8ZN7LAmaiPw=="; + url = "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.22.10.tgz"; + sha512 = "F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw=="; }; }; "@babel/plugin-transform-reserved-words-7.22.5" = { @@ -2974,13 +2794,13 @@ let sha512 = "yECRVxRu25Nsf6IY5v5XrXhcW9ZHomUQiq30VO8H7r3JYPcBJDTcxZmT+6v1O3QKKrDp1Wp40LinGbcd+jlp9A=="; }; }; - "@babel/plugin-transform-runtime-7.22.9" = { + "@babel/plugin-transform-runtime-7.22.10" = { name = "_at_babel_slash_plugin-transform-runtime"; packageName = "@babel/plugin-transform-runtime"; - version = "7.22.9"; + version = "7.22.10"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.22.9.tgz"; - sha512 = "9KjBH61AGJetCPYp/IEyLEp47SyybZb0nDRpBvmtEkm+rUIwxdlKpyNHI1TmsGkeuLclJdleQHRZ8XLBnnh8CQ=="; + url = "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.22.10.tgz"; + sha512 = "RchI7HePu1eu0CYNKHHHQdfenZcM4nz8rew5B1VWqeRKdcwW5aQ5HeG9eTUbWiAS1UrmHVLmoxTWHt3iLD/NhA=="; }; }; "@babel/plugin-transform-shorthand-properties-7.22.5" = { @@ -3028,22 +2848,22 @@ let sha512 = "bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA=="; }; }; - "@babel/plugin-transform-typescript-7.22.9" = { + "@babel/plugin-transform-typescript-7.22.10" = { name = "_at_babel_slash_plugin-transform-typescript"; packageName = "@babel/plugin-transform-typescript"; - version = "7.22.9"; + version = "7.22.10"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.22.9.tgz"; - sha512 = "BnVR1CpKiuD0iobHPaM1iLvcwPYN2uVFAqoLVSpEDKWuOikoCv5HbKLxclhKYUXlWkX86DoZGtqI4XhbOsyrMg=="; + url = "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.22.10.tgz"; + sha512 = "7++c8I/ymsDo4QQBAgbraXLzIM6jmfao11KgIBEYZRReWzNWH9NtNgJcyrZiXsOPh523FQm6LfpLyy/U5fn46A=="; }; }; - "@babel/plugin-transform-unicode-escapes-7.22.5" = { + "@babel/plugin-transform-unicode-escapes-7.22.10" = { name = "_at_babel_slash_plugin-transform-unicode-escapes"; packageName = "@babel/plugin-transform-unicode-escapes"; - version = "7.22.5"; + version = "7.22.10"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.22.5.tgz"; - sha512 = "biEmVg1IYB/raUO5wT1tgfacCef15Fbzhkx493D3urBI++6hpJ+RFG4SrWMn0NEZLfvilqKf3QDrRVZHo08FYg=="; + url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.22.10.tgz"; + sha512 = "lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg=="; }; }; "@babel/plugin-transform-unicode-property-regex-7.22.5" = { @@ -3091,13 +2911,13 @@ let sha512 = "Fnx1wWaWv2w2rl+VHxA9si//Da40941IQ29fKiRejVR7oN1FxSEL8+SyAX/2oKIye2gPvY/GBbJVEKQ/oi43zQ=="; }; }; - "@babel/preset-env-7.22.9" = { + "@babel/preset-env-7.22.10" = { name = "_at_babel_slash_preset-env"; packageName = "@babel/preset-env"; - version = "7.22.9"; + version = "7.22.10"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.22.9.tgz"; - sha512 = "wNi5H/Emkhll/bqPjsjQorSykrlfY5OWakd6AulLvMEytpKasMVUpVy8RL4qBIBs5Ac6/5i0/Rv0b/Fg6Eag/g=="; + url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.22.10.tgz"; + sha512 = "riHpLb1drNkpLlocmSyEg4oYJIQFeXAK/d7rI6mbD0XsvoTOOweXDmQPG/ErxsEhWk3rl3Q/3F6RFQlVFS8m0A=="; }; }; "@babel/preset-flow-7.22.5" = { @@ -3109,13 +2929,13 @@ let sha512 = "ta2qZ+LSiGCrP5pgcGt8xMnnkXQrq8Sa4Ulhy06BOlF5QbLw9q5hIx7bn5MrsvyTGAfh6kTOo07Q+Pfld/8Y5Q=="; }; }; - "@babel/preset-modules-0.1.6" = { + "@babel/preset-modules-0.1.6-no-external-plugins" = { name = "_at_babel_slash_preset-modules"; packageName = "@babel/preset-modules"; - version = "0.1.6"; + version = "0.1.6-no-external-plugins"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6.tgz"; - sha512 = "ID2yj6K/4lKfhuU3+EX4UvNbIt7eACFbHmNUjzA+ep+B5971CknnA/9DEWKbRokfbbtblxxxXFJJrH47UEAMVg=="; + url = "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz"; + sha512 = "HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA=="; }; }; "@babel/preset-react-7.0.0" = { @@ -3199,13 +3019,13 @@ let sha512 = "xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw=="; }; }; - "@babel/runtime-7.22.6" = { + "@babel/runtime-7.22.10" = { name = "_at_babel_slash_runtime"; packageName = "@babel/runtime"; - version = "7.22.6"; + version = "7.22.10"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.6.tgz"; - sha512 = "wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ=="; + url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.10.tgz"; + sha512 = "21t/fkKLMZI4pqP2wlmsQAWnYW1PDyKyyUV4vCi+B25ydmdaYTKXPwCj0BzSUnZf4seIiYvSA3jcZ3gdsMFkLQ=="; }; }; "@babel/runtime-7.9.0" = { @@ -3244,13 +3064,13 @@ let sha512 = "X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw=="; }; }; - "@babel/traverse-7.22.8" = { + "@babel/traverse-7.22.10" = { name = "_at_babel_slash_traverse"; packageName = "@babel/traverse"; - version = "7.22.8"; + version = "7.22.10"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.8.tgz"; - sha512 = "y6LPR+wpM2I3qJrsheCTwhIinzkETbplIgPBbwvqPKc+uljeA5gP+3nP8irdYt1mjQaDnlIcG+dw8OjAco4GXw=="; + url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.10.tgz"; + sha512 = "Q/urqV4pRByiNNpb/f5OSv28ZlGJiFiiTh+GAHktbIrkPhPbl90+uW6SmpoLyZqutrg9AEaEf3Q/ZBRHBXgxig=="; }; }; "@babel/types-7.19.0" = { @@ -3262,13 +3082,13 @@ let sha512 = "YuGopBq3ke25BVSiS6fgF49Ul9gH1x70Bcr6bqRLjWCkcX8Hre1/5+z+IiWOIerRMSSEfGZVB9z9kyq7wVs9YA=="; }; }; - "@babel/types-7.22.5" = { + "@babel/types-7.22.10" = { name = "_at_babel_slash_types"; packageName = "@babel/types"; - version = "7.22.5"; + version = "7.22.10"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/types/-/types-7.22.5.tgz"; - sha512 = "zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA=="; + url = "https://registry.npmjs.org/@babel/types/-/types-7.22.10.tgz"; + sha512 = "obaoigiLrlDZ7TUQln/8m4mSqIW2QFeOrCQc9r+xsaHGNoplVNYlRVpsfE8Vj35GEm2ZH4ZhrNYogs/3fj85kg=="; }; }; "@bconnorwhite/module-2.0.2" = { @@ -3298,13 +3118,13 @@ let sha512 = "yzZ6OK0W7frfoCqvl0s3KeVUUB22wYs74Qu3Y+VGgvW7yvq5m0M82RZQWghKdtLyQejc4469QlmhQsJmCF7ULg=="; }; }; - "@braintree/sanitize-url-6.0.3" = { + "@braintree/sanitize-url-6.0.4" = { name = "_at_braintree_slash_sanitize-url"; packageName = "@braintree/sanitize-url"; - version = "6.0.3"; + version = "6.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/@braintree/sanitize-url/-/sanitize-url-6.0.3.tgz"; - sha512 = "g2hMyGSFYOvt0eeY2c2wrG1B6dVWF1be4vGxG9mI1BEHJuQm4Hie2HrooxYHBDRDi8hANIzQ8cuvBgxSVlQOTQ=="; + url = "https://registry.npmjs.org/@braintree/sanitize-url/-/sanitize-url-6.0.4.tgz"; + sha512 = "s3jaWicZd0pkP0jf5ysyHUI/RE7MHos6qlToFcGWXVp+ykHOy77OUMrfbgJ9it2C5bow7OIQwYYaHjk9XlBQ2A=="; }; }; "@bugsnag/browser-7.20.2" = { @@ -3433,6 +3253,51 @@ let sha512 = "m7lZj00lP1fNMzXITOV1uNdsYXjsmMbFB7Sl8OXfhRWYDQuBr6EPNzIzAonzIcmvTA2JNs8WMq0ZU76XXzpP6w=="; }; }; + "@chevrotain/cst-dts-gen-11.0.2" = { + name = "_at_chevrotain_slash_cst-dts-gen"; + packageName = "@chevrotain/cst-dts-gen"; + version = "11.0.2"; + src = fetchurl { + url = "https://registry.npmjs.org/@chevrotain/cst-dts-gen/-/cst-dts-gen-11.0.2.tgz"; + sha512 = "thr6e9rb/v+7uzRDezhH2hjzrlZH6B7oauZka5Ks+8i/1uMaDsz4HtC+USO+wevf9L0qo9n1L8yjFEvpRPMcLw=="; + }; + }; + "@chevrotain/gast-11.0.2" = { + name = "_at_chevrotain_slash_gast"; + packageName = "@chevrotain/gast"; + version = "11.0.2"; + src = fetchurl { + url = "https://registry.npmjs.org/@chevrotain/gast/-/gast-11.0.2.tgz"; + sha512 = "TuYPcVX0KLFpLJPUH1zl4I3KNtmulax62R98jLyJbjUFM+0hPQvGqEtbR3Z8J6kODTCRiySSw8mRY67VdbrJ0g=="; + }; + }; + "@chevrotain/regexp-to-ast-11.0.2" = { + name = "_at_chevrotain_slash_regexp-to-ast"; + packageName = "@chevrotain/regexp-to-ast"; + version = "11.0.2"; + src = fetchurl { + url = "https://registry.npmjs.org/@chevrotain/regexp-to-ast/-/regexp-to-ast-11.0.2.tgz"; + sha512 = "VHVOLvRTehE1QMVRlRdhZkz8m/mmLOguaulbpDt100PH0/5Igod91wlQ8OljYYBMr/PoUGhW2piJxQv/FCawfA=="; + }; + }; + "@chevrotain/types-11.0.2" = { + name = "_at_chevrotain_slash_types"; + packageName = "@chevrotain/types"; + version = "11.0.2"; + src = fetchurl { + url = "https://registry.npmjs.org/@chevrotain/types/-/types-11.0.2.tgz"; + sha512 = "b7zJ8avGLtf4abOf1Lb7GwisyElybATnulfOFBk14IDqwz3o9mjVsz8OlmEYBi/NQSHNbYXePPzHU15WWDs3LA=="; + }; + }; + "@chevrotain/utils-11.0.2" = { + name = "_at_chevrotain_slash_utils"; + packageName = "@chevrotain/utils"; + version = "11.0.2"; + src = fetchurl { + url = "https://registry.npmjs.org/@chevrotain/utils/-/utils-11.0.2.tgz"; + sha512 = "xrpSVsW8NgJoP02UhumJgvJMc4aKvPZZmEl0DAGEfqawp98LQcwXfk1oCEwm1xIYNlotlTa/BxEBffrcFlgHaA=="; + }; + }; "@cloudflare/kv-asset-handler-0.2.0" = { name = "_at_cloudflare_slash_kv-asset-handler"; packageName = "@cloudflare/kv-asset-handler"; @@ -3442,49 +3307,49 @@ let sha512 = "MVbXLbTcAotOPUj0pAMhVtJ+3/kFkwJqc5qNOleOZTv6QkZZABDMS21dSrSlVswEHwrpWC03e4fWytjqKvuE2A=="; }; }; - "@cloudflare/workerd-darwin-64-1.20230724.0" = { + "@cloudflare/workerd-darwin-64-1.20230807.0" = { name = "_at_cloudflare_slash_workerd-darwin-64"; packageName = "@cloudflare/workerd-darwin-64"; - version = "1.20230724.0"; + version = "1.20230807.0"; src = fetchurl { - url = "https://registry.npmjs.org/@cloudflare/workerd-darwin-64/-/workerd-darwin-64-1.20230724.0.tgz"; - sha512 = "DQmFZWHhs8waQFYRb/Z8QmbitAvBMXnbUMUentp+3lS4eCYI0/iurTaQDiz5+ldUn9FTxD+1XuYZlTHzVNxoHw=="; + url = "https://registry.npmjs.org/@cloudflare/workerd-darwin-64/-/workerd-darwin-64-1.20230807.0.tgz"; + sha512 = "p1XgkX6OcomFSRSHiIo6XbWB40sMExnFUWtZFfSvB7oNmkrtEvUCI3iuh+ibFI5IDSZqsRKyIHx6Oe22Z0ei5A=="; }; }; - "@cloudflare/workerd-darwin-arm64-1.20230724.0" = { + "@cloudflare/workerd-darwin-arm64-1.20230807.0" = { name = "_at_cloudflare_slash_workerd-darwin-arm64"; packageName = "@cloudflare/workerd-darwin-arm64"; - version = "1.20230724.0"; + version = "1.20230807.0"; src = fetchurl { - url = "https://registry.npmjs.org/@cloudflare/workerd-darwin-arm64/-/workerd-darwin-arm64-1.20230724.0.tgz"; - sha512 = "C7T0v/lMjEX7c4iROSZKgIF1eGw3+sj/gFpBD6xwxfbIcrKBjncMypeLQNpRTCdBQr1W3sNpg9jagwuVX5ByZQ=="; + url = "https://registry.npmjs.org/@cloudflare/workerd-darwin-arm64/-/workerd-darwin-arm64-1.20230807.0.tgz"; + sha512 = "HjhjRFPvDg3Sh4TXyz38Z+AhaLA+0AiAmYKRadcnKhysjOaTew86POS3xdaKiZ3xG83J7rsLcqajW54znbmCkg=="; }; }; - "@cloudflare/workerd-linux-64-1.20230724.0" = { + "@cloudflare/workerd-linux-64-1.20230807.0" = { name = "_at_cloudflare_slash_workerd-linux-64"; packageName = "@cloudflare/workerd-linux-64"; - version = "1.20230724.0"; + version = "1.20230807.0"; src = fetchurl { - url = "https://registry.npmjs.org/@cloudflare/workerd-linux-64/-/workerd-linux-64-1.20230724.0.tgz"; - sha512 = "o0F/hj73UXOQwkPkYqZuIxpjG8gAs2eoAGqxX1HSIYRf7iUhfFcPrupwjqlNqf7Oo1h46M+sClSFjr/ZU/LCjg=="; + url = "https://registry.npmjs.org/@cloudflare/workerd-linux-64/-/workerd-linux-64-1.20230807.0.tgz"; + sha512 = "PPuGKoRILFTlZDC7uGXgrYBucopqkvicaov/ypbPmUVb/DfrXGqftEkNbXlyiXY1g0t10wXRiSZWi7hOBOIH7w=="; }; }; - "@cloudflare/workerd-linux-arm64-1.20230724.0" = { + "@cloudflare/workerd-linux-arm64-1.20230807.0" = { name = "_at_cloudflare_slash_workerd-linux-arm64"; packageName = "@cloudflare/workerd-linux-arm64"; - version = "1.20230724.0"; + version = "1.20230807.0"; src = fetchurl { - url = "https://registry.npmjs.org/@cloudflare/workerd-linux-arm64/-/workerd-linux-arm64-1.20230724.0.tgz"; - sha512 = "UpzCoo7LOuPWxFPw84TZQTPIawIDQNSb3XnC6ffMjUH/FVwHmHdngIFZxW+xjLHKMIzGNAqSn3eRHekKgO3QqA=="; + url = "https://registry.npmjs.org/@cloudflare/workerd-linux-arm64/-/workerd-linux-arm64-1.20230807.0.tgz"; + sha512 = "ESAf2tXarK8dJl07voa/NI2BBpH1duldfgeQQQmor437A3+gSqQSBhAEmh05bjHy6dYHXgZtwLPky+LL6hmyBA=="; }; }; - "@cloudflare/workerd-windows-64-1.20230724.0" = { + "@cloudflare/workerd-windows-64-1.20230807.0" = { name = "_at_cloudflare_slash_workerd-windows-64"; packageName = "@cloudflare/workerd-windows-64"; - version = "1.20230724.0"; + version = "1.20230807.0"; src = fetchurl { - url = "https://registry.npmjs.org/@cloudflare/workerd-windows-64/-/workerd-windows-64-1.20230724.0.tgz"; - sha512 = "wVpPNu19fnvgsD8V6NiGPSuET0bzKmgn3wJ6RwAwQA+GQ0hdDIDVYd13aImhgO6jLfQvkduCDxeZluGZ7PPojQ=="; + url = "https://registry.npmjs.org/@cloudflare/workerd-windows-64/-/workerd-windows-64-1.20230807.0.tgz"; + sha512 = "DYKkLtT4lNRdVx+2fbYgPxdF7ypJn9bT2HYMZ93N7XPwaKFx2svBRMrZkwBcvwuNb+99Z0jnaQwdcFnHcFLzZA=="; }; }; "@colors/colors-1.5.0" = { @@ -3532,31 +3397,31 @@ let sha512 = "+IS7vpC4Gd/x+uyQPTAt3hXs5NxnkqAZ3aqrHd5Bx/R9skyCAWusNlNbw3InDbAK6j166D9asQM8fnmYIa+CXQ=="; }; }; - "@commitlint/is-ignored-17.6.7" = { + "@commitlint/is-ignored-17.7.0" = { name = "_at_commitlint_slash_is-ignored"; packageName = "@commitlint/is-ignored"; - version = "17.6.7"; + version = "17.7.0"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/is-ignored/-/is-ignored-17.6.7.tgz"; - sha512 = "vqyNRqtbq72P2JadaoWiuoLtXIs9SaAWDqdtef6G2zsoXqKFc7vqj1f+thzVgosXG3X/5K9jNp+iYijmvOfc/g=="; + url = "https://registry.npmjs.org/@commitlint/is-ignored/-/is-ignored-17.7.0.tgz"; + sha512 = "043rA7m45tyEfW7Zv2vZHF++176MLHH9h70fnPoYlB1slKBeKl8BwNIlnPg4xBdRBVNPaCqvXxWswx2GR4c9Hw=="; }; }; - "@commitlint/lint-17.6.7" = { + "@commitlint/lint-17.7.0" = { name = "_at_commitlint_slash_lint"; packageName = "@commitlint/lint"; - version = "17.6.7"; + version = "17.7.0"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/lint/-/lint-17.6.7.tgz"; - sha512 = "TW+AozfuOFMrHn+jdwtz0IWu8REKFp0eryOvoBp2r8IXNc4KihKB1spAiUB6SFyHD6hVVeolz12aHnJ3Mb+xVQ=="; + url = "https://registry.npmjs.org/@commitlint/lint/-/lint-17.7.0.tgz"; + sha512 = "TCQihm7/uszA5z1Ux1vw+Nf3yHTgicus/+9HiUQk+kRSQawByxZNESeQoX9ujfVd3r4Sa+3fn0JQAguG4xvvbA=="; }; }; - "@commitlint/load-17.6.7" = { + "@commitlint/load-17.7.1" = { name = "_at_commitlint_slash_load"; packageName = "@commitlint/load"; - version = "17.6.7"; + version = "17.7.1"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/load/-/load-17.6.7.tgz"; - sha512 = "QZ2rJTbX55BQdYrCm/p6+hh/pFBgC9nTJxfsrK6xRPe2thiQzHN0AQDBqBwAirn6gIkHrjIbCbtAE6kiDYLjrw=="; + url = "https://registry.npmjs.org/@commitlint/load/-/load-17.7.1.tgz"; + sha512 = "S/QSOjE1ztdogYj61p6n3UbkUvweR17FQ0zDbNtoTLc+Hz7vvfS7ehoTMQ27hPSjVBpp7SzEcOQu081RLjKHJQ=="; }; }; "@commitlint/message-17.4.2" = { @@ -3568,13 +3433,13 @@ let sha512 = "3XMNbzB+3bhKA1hSAWPCQA3lNxR4zaeQAQcHj0Hx5sVdO6ryXtgUBGGv+1ZCLMgAPRixuc6en+iNAzZ4NzAa8Q=="; }; }; - "@commitlint/parse-17.6.7" = { + "@commitlint/parse-17.7.0" = { name = "_at_commitlint_slash_parse"; packageName = "@commitlint/parse"; - version = "17.6.7"; + version = "17.7.0"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/parse/-/parse-17.6.7.tgz"; - sha512 = "ibO03BgEns+JJpohpBZYD49mCdSNMg6fTv7vA5yqzEFWkBQk5NWhEBw2yG+Z1UClStIRkMkAYyI2HzoQG9tCQQ=="; + url = "https://registry.npmjs.org/@commitlint/parse/-/parse-17.7.0.tgz"; + sha512 = "dIvFNUMCUHqq5Abv80mIEjLVfw8QNuA4DS7OWip4pcK/3h5wggmjVnlwGCDvDChkw2TjK1K6O+tAEV78oxjxag=="; }; }; "@commitlint/read-17.5.1" = { @@ -3595,13 +3460,13 @@ let sha512 = "PfeoAwLHtbOaC9bGn/FADN156CqkFz6ZKiVDMjuC2N5N0740Ke56rKU7Wxdwya8R8xzLK9vZzHgNbuGhaOVKIg=="; }; }; - "@commitlint/rules-17.6.7" = { + "@commitlint/rules-17.7.0" = { name = "_at_commitlint_slash_rules"; packageName = "@commitlint/rules"; - version = "17.6.7"; + version = "17.7.0"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/rules/-/rules-17.6.7.tgz"; - sha512 = "x/SDwDTN3w3Gr5xkhrIORu96rlKCc8ZLYEMXRqi9+MB33st2mKcGvKa5uJuigHlbl3xm75bAAubATrodVrjguQ=="; + url = "https://registry.npmjs.org/@commitlint/rules/-/rules-17.7.0.tgz"; + sha512 = "J3qTh0+ilUE5folSaoK91ByOb8XeQjiGcdIdiB/8UT1/Rd1itKo0ju/eQVGyFzgTMYt8HrDJnGTmNWwcMR1rmA=="; }; }; "@commitlint/to-lines-17.4.0" = { @@ -3640,40 +3505,49 @@ let sha512 = "gB5C5nDIacLUdsMuW8YsM9SzK3vaFANe4J11CVXpovpy7bZUGrcJKmc6m/0gWG789pKr6XSZY2aEetjFvSRw5g=="; }; }; - "@cspell/cspell-bundled-dicts-6.31.2" = { + "@cspell/cspell-bundled-dicts-7.0.0" = { name = "_at_cspell_slash_cspell-bundled-dicts"; packageName = "@cspell/cspell-bundled-dicts"; - version = "6.31.2"; + version = "7.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-6.31.2.tgz"; - sha512 = "rQ5y/U1Ah5AaduIh3NU2z371hRrOr1cmNdhhP8oiuz2E4VqmcoVHflXIct9DgY8uIJpwsSCdR6ypOQWZYXYnwA=="; + url = "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-7.0.0.tgz"; + sha512 = "qfBAS4W35+loOfbprBDS8nN0Eitl9wmuPE8GQLbwYj9Qj+COlLg57KECeXF8cgGnHkahrIkc3t6V6eFF8nhXQw=="; }; }; - "@cspell/cspell-pipe-6.31.1" = { + "@cspell/cspell-json-reporter-7.0.0" = { + name = "_at_cspell_slash_cspell-json-reporter"; + packageName = "@cspell/cspell-json-reporter"; + version = "7.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@cspell/cspell-json-reporter/-/cspell-json-reporter-7.0.0.tgz"; + sha512 = "8OheTVzwwfOQqPZe3Enbe1F7Y0djjGunk5K7aC5MyXc3BuIV7Cx13xWo2gfAjiHBRuO5lqg9qidEfp6NE33amg=="; + }; + }; + "@cspell/cspell-pipe-7.0.0" = { name = "_at_cspell_slash_cspell-pipe"; packageName = "@cspell/cspell-pipe"; - version = "6.31.1"; + version = "7.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-6.31.1.tgz"; - sha512 = "zk1olZi4dr6GLm5PAjvsiZ01HURNSruUYFl1qSicGnTwYN8GaN4RhAwannAytcJ7zJPIcyXlid0YsB58nJf3wQ=="; + url = "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-7.0.0.tgz"; + sha512 = "MmQeLyyS5rZ/VvRtHGOLFUcCF9zy01WpWYthLZB61o96HCokqtlN4BBBPLYNxrotFNA4syVy9Si/wTxsC9oTiA=="; }; }; - "@cspell/cspell-service-bus-6.31.1" = { + "@cspell/cspell-service-bus-7.0.0" = { name = "_at_cspell_slash_cspell-service-bus"; packageName = "@cspell/cspell-service-bus"; - version = "6.31.1"; + version = "7.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/cspell-service-bus/-/cspell-service-bus-6.31.1.tgz"; - sha512 = "YyBicmJyZ1uwKVxujXw7sgs9x+Eps43OkWmCtDZmZlnq489HdTSuhF1kTbVi2yeFSeaXIS87+uHo12z97KkQpg=="; + url = "https://registry.npmjs.org/@cspell/cspell-service-bus/-/cspell-service-bus-7.0.0.tgz"; + sha512 = "0YMM5SJY+XooOTEoo5+xuqTBLO87FP6QR8OBLBDeWNHvON9M4TpeAAN5K+IM0vMSFzgt1aSSMJNO0HSmxn17Yw=="; }; }; - "@cspell/cspell-types-6.31.1" = { + "@cspell/cspell-types-7.0.0" = { name = "_at_cspell_slash_cspell-types"; packageName = "@cspell/cspell-types"; - version = "6.31.1"; + version = "7.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-6.31.1.tgz"; - sha512 = "1KeTQFiHMssW1eRoF2NZIEg4gPVIfXLsL2+VSD/AV6YN7lBcuf6gRRgV5KWYarhxtEfjxhDdDTmu26l/iJEUtw=="; + url = "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-7.0.0.tgz"; + sha512 = "b/Dee5lb362ODlEK+kQcUDJfCprDRUFWcddo5tyzsYm3ID08ll6+DzCtfRxf48isyX1tL7uBKMj/iIpAhRNu9Q=="; }; }; "@cspell/dict-ada-4.0.2" = { @@ -3694,13 +3568,13 @@ let sha512 = "K21CfB4ZpKYwwDQiPfic2zJA/uxkbsd4IQGejEvDAhE3z8wBs6g6BwwqdVO767M9NgZqc021yAVpr79N5pWe3w=="; }; }; - "@cspell/dict-aws-3.0.0" = { + "@cspell/dict-aws-4.0.0" = { name = "_at_cspell_slash_dict-aws"; packageName = "@cspell/dict-aws"; - version = "3.0.0"; + version = "4.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-aws/-/dict-aws-3.0.0.tgz"; - sha512 = "O1W6nd5y3Z00AMXQMzfiYrIJ1sTd9fB1oLr+xf/UD7b3xeHeMeYE2OtcWbt9uyeHim4tk+vkSTcmYEBKJgS5bQ=="; + url = "https://registry.npmjs.org/@cspell/dict-aws/-/dict-aws-4.0.0.tgz"; + sha512 = "1YkCMWuna/EGIDN/zKkW+j98/55mxigftrSFgsehXhPld+ZMJM5J9UuBA88YfL7+/ETvBdd7mwW6IwWsC+/ltQ=="; }; }; "@cspell/dict-bash-1.0.18" = { @@ -3730,13 +3604,13 @@ let sha512 = "Aw07qiTroqSST2P5joSrC4uOA05zTXzI2wMb+me3q4Davv1D9sCkzXY0TGoC2vzhNv5ooemRi9KATGaBSdU1sw=="; }; }; - "@cspell/dict-companies-3.0.17" = { + "@cspell/dict-companies-3.0.19" = { name = "_at_cspell_slash_dict-companies"; packageName = "@cspell/dict-companies"; - version = "3.0.17"; + version = "3.0.19"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-companies/-/dict-companies-3.0.17.tgz"; - sha512 = "vo1jbozgZWSzz2evIL26kLd35tVb+5kW/UTvTzAwaWutSWRloRyKx38nj2CaLJ2IFxBdiATteCFGTzKCvJJl6A=="; + url = "https://registry.npmjs.org/@cspell/dict-companies/-/dict-companies-3.0.19.tgz"; + sha512 = "hO7rS4DhFA333qyvf89wIVoclCtXe/2sftY6aS0oMIH1bMZLjLx2B2sQJj6dCiu6gG/By1S9YZ0fXabiPk2Tkg=="; }; }; "@cspell/dict-cpp-1.1.40" = { @@ -3820,13 +3694,13 @@ let sha512 = "cLkwo1KT5CJY5N5RJVHks2genFkNCl/WLfj+0fFjqNR+tk3tBI1LY7ldr9piCtSFSm4x9pO1x6IV3kRUY1lLiw=="; }; }; - "@cspell/dict-data-science-1.0.8" = { + "@cspell/dict-data-science-1.0.10" = { name = "_at_cspell_slash_dict-data-science"; packageName = "@cspell/dict-data-science"; - version = "1.0.8"; + version = "1.0.10"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-data-science/-/dict-data-science-1.0.8.tgz"; - sha512 = "uGx0rd3BftfZ5mvXtPxvLNkQ33y0ylNw4GpBAAfF3hgGtifKdvLSmphOGuNgDYUPpJ0+e025bsvtN0/ZZCzWTg=="; + url = "https://registry.npmjs.org/@cspell/dict-data-science/-/dict-data-science-1.0.10.tgz"; + sha512 = "7ZsRCnW0f4Bdo6Cqq8V4gHr8K58h+MP8majcDeMNhpMFUPiiSnvKsDuG9V5jciI/0t+lptPrZwGGIVEDF4Kqtg=="; }; }; "@cspell/dict-django-1.0.26" = { @@ -3955,13 +3829,22 @@ let sha512 = "VhIX+FVYAnqQrOuoFEtya6+H72J82cIicz9QddgknsTqZQ3dvgp6lmVnsQXPM3EnzA8n1peTGpLDwHzT7ociLA=="; }; }; - "@cspell/dict-fonts-3.0.2" = { + "@cspell/dict-fonts-4.0.0" = { name = "_at_cspell_slash_dict-fonts"; packageName = "@cspell/dict-fonts"; - version = "3.0.2"; + version = "4.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-fonts/-/dict-fonts-3.0.2.tgz"; - sha512 = "Z5QdbgEI7DV+KPXrAeDA6dDm/vTzyaW53SGlKqz6PI5VhkOjgkBXv3YtZjnxMZ4dY2ZIqq+RUK6qa9Pi8rQdGQ=="; + url = "https://registry.npmjs.org/@cspell/dict-fonts/-/dict-fonts-4.0.0.tgz"; + sha512 = "t9V4GeN/m517UZn63kZPUYP3OQg5f0OBLSd3Md5CU3eH1IFogSvTzHHnz4Wqqbv8NNRiBZ3HfdY/pqREZ6br3Q=="; + }; + }; + "@cspell/dict-fsharp-1.0.0" = { + name = "_at_cspell_slash_dict-fsharp"; + packageName = "@cspell/dict-fsharp"; + version = "1.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@cspell/dict-fsharp/-/dict-fsharp-1.0.0.tgz"; + sha512 = "dHPkMHwW4dWv3Lv9VWxHuVm4IylqvcfRBSnZ7usJTRThraetSVrOPIJwr6UJh7F5un/lGJx2lxWVApf2WQaB/A=="; }; }; "@cspell/dict-fullstack-1.0.39" = { @@ -4126,13 +4009,13 @@ let sha512 = "yqzspR+2ADeAGUxLTfZ4pXvPl7FmkENMRcGDECmddkOiuEwBCWMZdMP5fng9B0Q6j91hQ8w9CLvJKBz10TqNYg=="; }; }; - "@cspell/dict-lorem-ipsum-3.0.0" = { + "@cspell/dict-lorem-ipsum-4.0.0" = { name = "_at_cspell_slash_dict-lorem-ipsum"; packageName = "@cspell/dict-lorem-ipsum"; - version = "3.0.0"; + version = "4.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-lorem-ipsum/-/dict-lorem-ipsum-3.0.0.tgz"; - sha512 = "msEV24qEpzWZs2kcEicqYlhyBpR0amfDkJOs+iffC07si9ftqtQ+yP3lf1VFLpgqw3SQh1M1vtU7RD4sPrNlcQ=="; + url = "https://registry.npmjs.org/@cspell/dict-lorem-ipsum/-/dict-lorem-ipsum-4.0.0.tgz"; + sha512 = "1l3yjfNvMzZPibW8A7mQU4kTozwVZVw0AvFEdy+NcqtbxH+TvbSkNMqROOFWrkD2PjnKG0+Ea0tHI2Pi6Gchnw=="; }; }; "@cspell/dict-lua-1.0.16" = { @@ -4180,13 +4063,13 @@ let sha512 = "RwkuZGcYBxL3Yux3cSG/IOWGlQ1e9HLCpHeyMtTVGYKAIkFAVUnGrz20l16/Q7zUG7IEktBz5O42kAozrEnqMQ=="; }; }; - "@cspell/dict-npm-5.0.7" = { + "@cspell/dict-npm-5.0.8" = { name = "_at_cspell_slash_dict-npm"; packageName = "@cspell/dict-npm"; - version = "5.0.7"; + version = "5.0.8"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-npm/-/dict-npm-5.0.7.tgz"; - sha512 = "6SegF0HsVaBTl6PlHjeErG8Av+tRYkUG1yaXUQIGWXU0A8oxhI0o4PuL65UWH5lkCKhJyGai69Cd0iytL0oVFg=="; + url = "https://registry.npmjs.org/@cspell/dict-npm/-/dict-npm-5.0.8.tgz"; + sha512 = "KuqH8tEsFD6DPKqKwIfWr9E+admE3yghaC0AKXG8jPaf77N0lkctKaS3dm0oxWUXkYKA/eXj6LCtz3VcTyxFPg=="; }; }; "@cspell/dict-php-1.0.25" = { @@ -4243,13 +4126,13 @@ let sha512 = "KuyOQaby9NID/pn7EkXilpUxjVIvvyLzhr7BPsDS6FcvUE8Yhss6bJowEDHSv6pa+W2387phoqbDf2rTicquAA=="; }; }; - "@cspell/dict-python-4.1.4" = { + "@cspell/dict-python-4.1.5" = { name = "_at_cspell_slash_dict-python"; packageName = "@cspell/dict-python"; - version = "4.1.4"; + version = "4.1.5"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-4.1.4.tgz"; - sha512 = "4JJ6MjIyuZN4h2VkSxZxiQ55lVh6NccW/0H6rdu0aDz+E3uyFVFtlBp5kTY5jIA11PZqSZZpyowzGnwrJX6w0g=="; + url = "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-4.1.5.tgz"; + sha512 = "wWUWyHdyJtx5iG6Fz9rBQ17BtdpEsB17vmutao+gixQD28Jzb6XoLgDQ6606M0RnFjBSFhs5iT4CJBzlD2Kq6g=="; }; }; "@cspell/dict-r-2.0.1" = { @@ -4324,13 +4207,13 @@ let sha512 = "pfF3Ys2gRffu5ElqkH7FQMDMi/iZMyOzpGMb3FSH0PJ2AnRQ5rRNWght1h2L36YxvXl0mWVaFrrfwiOyRIc8ZQ=="; }; }; - "@cspell/dict-software-terms-3.2.0" = { + "@cspell/dict-software-terms-3.2.1" = { name = "_at_cspell_slash_dict-software-terms"; packageName = "@cspell/dict-software-terms"; - version = "3.2.0"; + version = "3.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-software-terms/-/dict-software-terms-3.2.0.tgz"; - sha512 = "RI6sv4Bc4i42YH/ofVelv8lXpJRhCyS9IhI2BtejUoMXKhKA9gC01ATXOylx+oaQmj3t5ark4R50xKFRvC7ENA=="; + url = "https://registry.npmjs.org/@cspell/dict-software-terms/-/dict-software-terms-3.2.1.tgz"; + sha512 = "+QXmyoONVc/3aNgKW+0F0u3XUCRTfNRkWKLZQA78i+9fOfde8ZT4JmROmZgRveH/MxD4n6pNFceIRcYI6C8WuQ=="; }; }; "@cspell/dict-sql-2.1.1" = { @@ -4387,22 +4270,22 @@ let sha512 = "niiEMPWPV9IeRBRzZ0TBZmNnkK3olkOPYxC1Ny2AX4TGlYRajcW0WUtoSHmvvjZNfWLSg2L6ruiBeuPSbjnG6A=="; }; }; - "@cspell/dynamic-import-6.31.1" = { + "@cspell/dynamic-import-7.0.0" = { name = "_at_cspell_slash_dynamic-import"; packageName = "@cspell/dynamic-import"; - version = "6.31.1"; + version = "7.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dynamic-import/-/dynamic-import-6.31.1.tgz"; - sha512 = "uliIUv9uZlnyYmjUlcw/Dm3p0xJOEnWJNczHAfqAl4Ytg6QZktw0GtUA9b1umbRXLv0KRTPtSC6nMq3cR7rRmQ=="; + url = "https://registry.npmjs.org/@cspell/dynamic-import/-/dynamic-import-7.0.0.tgz"; + sha512 = "GRSJvdQvVOC0y7Qla8eg6LLe8p8WnbnHLabGJGsqYfXgtfkUFev9v65kMybQSJt9qhDtGCRw6EN1UyaeeEtavQ=="; }; }; - "@cspell/strong-weak-map-6.31.1" = { + "@cspell/strong-weak-map-7.0.0" = { name = "_at_cspell_slash_strong-weak-map"; packageName = "@cspell/strong-weak-map"; - version = "6.31.1"; + version = "7.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/strong-weak-map/-/strong-weak-map-6.31.1.tgz"; - sha512 = "z8AuWvUuSnugFKJOA9Ke0aiFuehcqLFqia9bk8XaQNEWr44ahPVn3sEWnAncTxPbpWuUw5UajoJa0egRAE1CCg=="; + url = "https://registry.npmjs.org/@cspell/strong-weak-map/-/strong-weak-map-7.0.0.tgz"; + sha512 = "DT1R30i3V7aJIGLt7x1igaMLHhYSFv6pgc9gNwXvZWFl1xm/f7Jx07GPXKKKhwwXd4vy7G5rhwo63F4Pt9i8Ng=="; }; }; "@cspotcode/source-map-support-0.8.1" = { @@ -4432,13 +4315,13 @@ let sha512 = "wErmsWCbsmig8sQKkM6pFhr/oPha1bHfvxsUY5CYSQxwyhA9Ulrs8EqCgClhg4Tgg2XapVstGqSVcz0xOYizZA=="; }; }; - "@csstools/media-query-list-parser-2.1.3" = { + "@csstools/media-query-list-parser-2.1.4" = { name = "_at_csstools_slash_media-query-list-parser"; packageName = "@csstools/media-query-list-parser"; - version = "2.1.3"; + version = "2.1.4"; src = fetchurl { - url = "https://registry.npmjs.org/@csstools/media-query-list-parser/-/media-query-list-parser-2.1.3.tgz"; - sha512 = "ATul1u+pic4aVpstgueqxEv4MsObEbszAxfTXpx9LHaeD3LAh+wFqdCteyegWmjk0k5rkSCAvIOaJe9U3DD09w=="; + url = "https://registry.npmjs.org/@csstools/media-query-list-parser/-/media-query-list-parser-2.1.4.tgz"; + sha512 = "V/OUXYX91tAC1CDsiY+HotIcJR+vPtzrX8pCplCpT++i8ThZZsq5F5dzZh/bDM3WUOjrvC1ljed1oSJxMfjqhw=="; }; }; "@csstools/selector-specificity-3.0.0" = { @@ -4639,94 +4522,94 @@ let sha512 = "SPfI1JeIRNs/4EEE2Oc0X6gG3RqjD1TnKu2lwmwFXq0435xgZGKhc3UiKkYAdoMn2dNFD73nlabMKHBRoMRpxg=="; }; }; - "@electron-forge/core-6.2.1" = { + "@electron-forge/core-6.3.0" = { name = "_at_electron-forge_slash_core"; packageName = "@electron-forge/core"; - version = "6.2.1"; + version = "6.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/@electron-forge/core/-/core-6.2.1.tgz"; - sha512 = "udjU8r9dzuV/dPMPxONmkWYoqM0uY6ezpdjTLgO9aNdWTbBeBLIOMVT0jdx7GBoTuPu6ul/VhDEFNUaojEOrVA=="; + url = "https://registry.npmjs.org/@electron-forge/core/-/core-6.3.0.tgz"; + sha512 = "TMsNCOX6XKdBgXB+3WuteiMdDcYx1q64jWOCgBtUiuBr91CQKpmEdnbH2amSK89tyGY3rZ0iKouGqDZJwF8vCw=="; }; }; - "@electron-forge/core-utils-6.2.1" = { + "@electron-forge/core-utils-6.3.0" = { name = "_at_electron-forge_slash_core-utils"; packageName = "@electron-forge/core-utils"; - version = "6.2.1"; + version = "6.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/@electron-forge/core-utils/-/core-utils-6.2.1.tgz"; - sha512 = "mJUpy8mZ7/l1BddReFrNZyM5iNEuYwjpeIqZ2E0E/hQPH26QreAV3rPfTj7WhA3V69ftmn++QRt82pNZFhHVEg=="; + url = "https://registry.npmjs.org/@electron-forge/core-utils/-/core-utils-6.3.0.tgz"; + sha512 = "cvPpqqbbDWu8irmMSk21bXbBXmnGE/swiTtEuNk/TtBvLkUlztjbDyJ+06jNRAZuRqPLkswdGCPbO4nJQhfazQ=="; }; }; - "@electron-forge/maker-base-6.2.1" = { + "@electron-forge/maker-base-6.3.0" = { name = "_at_electron-forge_slash_maker-base"; packageName = "@electron-forge/maker-base"; - version = "6.2.1"; + version = "6.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/@electron-forge/maker-base/-/maker-base-6.2.1.tgz"; - sha512 = "LnvGtTJ/RNojKdUKktYEcbLqPggXdMBs1uscQRgXkI3XnVGdEi+/j5+Eg5ka4d6FnsaUkz//U5yhPtNFhDbNSw=="; + url = "https://registry.npmjs.org/@electron-forge/maker-base/-/maker-base-6.3.0.tgz"; + sha512 = "zAU2G7yh9gLyFbw08RfU4j8z/QAt5Sm4uaub3dE+GdRuXOc0NeqIfUiwP2xIl6Ja6mt5dU4gvdxQT/+hnqXqoQ=="; }; }; - "@electron-forge/plugin-base-6.2.1" = { + "@electron-forge/plugin-base-6.3.0" = { name = "_at_electron-forge_slash_plugin-base"; packageName = "@electron-forge/plugin-base"; - version = "6.2.1"; + version = "6.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/@electron-forge/plugin-base/-/plugin-base-6.2.1.tgz"; - sha512 = "8mVbFgTlxQKDZ7jzeHyWrzOSiv/DpE29flPLgpyeFuz/zbC7oLNdxBCYo7WptQgI+HArphqehKUBf1UOkXmRPg=="; + url = "https://registry.npmjs.org/@electron-forge/plugin-base/-/plugin-base-6.3.0.tgz"; + sha512 = "E5jLphxuDHOp0JqzdMKSaip+zw6+ncLQG8KNjNySmyYD3d4rz7tMYfsmMSxkYje+zU0swz762P6hNf5jUOUMzA=="; }; }; - "@electron-forge/publisher-base-6.2.1" = { + "@electron-forge/publisher-base-6.3.0" = { name = "_at_electron-forge_slash_publisher-base"; packageName = "@electron-forge/publisher-base"; - version = "6.2.1"; + version = "6.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/@electron-forge/publisher-base/-/publisher-base-6.2.1.tgz"; - sha512 = "clrrEPsamoe4543smfyZUBp2IRSZ4EEhdj/bm0zmODS2qs/V1cCEf7y8P29huxMskT5bXDxSzothG72or3b2WQ=="; + url = "https://registry.npmjs.org/@electron-forge/publisher-base/-/publisher-base-6.3.0.tgz"; + sha512 = "uZstBhR6X2LJwOkKv02+0Ci4KQPrnZ3z3bXu528h5FBDOVGfJxadWB5MV4HF0peVSYVC6HCrA8sJDmDfcbCVhw=="; }; }; - "@electron-forge/shared-types-6.2.1" = { + "@electron-forge/shared-types-6.3.0" = { name = "_at_electron-forge_slash_shared-types"; packageName = "@electron-forge/shared-types"; - version = "6.2.1"; + version = "6.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/@electron-forge/shared-types/-/shared-types-6.2.1.tgz"; - sha512 = "kLazG5XUAqb3Duyhq7XyGluINRwCQRaIiuvHwlvnZYYu6NZQTz9xUm6tQ9v05EtFblUx2iRjY67DJRZSt3dzTQ=="; + url = "https://registry.npmjs.org/@electron-forge/shared-types/-/shared-types-6.3.0.tgz"; + sha512 = "6L4XIC4ErueM3mbWjVJLNtRZPxjdw3aa64e58m8gBwXnrreKVuKL+DFDKMvI2FO7IZXeLsIn/CEka+wQRwW87w=="; }; }; - "@electron-forge/template-base-6.2.1" = { + "@electron-forge/template-base-6.3.0" = { name = "_at_electron-forge_slash_template-base"; packageName = "@electron-forge/template-base"; - version = "6.2.1"; + version = "6.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/@electron-forge/template-base/-/template-base-6.2.1.tgz"; - sha512 = "hSMaefJRptpszPsZLvEfHV22KO6/XK0kJ6Lota1x3xQEFQs4IpCwUv446JE5hde+5Fukw5vZawbK2m937Te24Q=="; + url = "https://registry.npmjs.org/@electron-forge/template-base/-/template-base-6.3.0.tgz"; + sha512 = "lbug/MypOtbNANQjtV3tW3jrks+dzfH7fxz2IANTzDW4U29Qx900HLi1jWj66FcJl+lCWZ5Wy76qq8UcC4nBqw=="; }; }; - "@electron-forge/template-vite-6.2.1" = { + "@electron-forge/template-vite-6.3.0" = { name = "_at_electron-forge_slash_template-vite"; packageName = "@electron-forge/template-vite"; - version = "6.2.1"; + version = "6.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/@electron-forge/template-vite/-/template-vite-6.2.1.tgz"; - sha512 = "t05p8ZWtkixjuUFJpaupq2t+ap8vjPjULO2knKC12TqWTxo53M8lKwx0f7h0zvgyqWdtEGQr8KiVfeFS0Lh3jA=="; + url = "https://registry.npmjs.org/@electron-forge/template-vite/-/template-vite-6.3.0.tgz"; + sha512 = "Wysn7T3xaaNhydLCz6LnTGhMj1Re786iWXCJlleScN1WzPF0n6E7M0vRIzEBCLZysp4FWGWXMrGqXOyMvDaMTw=="; }; }; - "@electron-forge/template-webpack-6.2.1" = { + "@electron-forge/template-webpack-6.3.0" = { name = "_at_electron-forge_slash_template-webpack"; packageName = "@electron-forge/template-webpack"; - version = "6.2.1"; + version = "6.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/@electron-forge/template-webpack/-/template-webpack-6.2.1.tgz"; - sha512 = "u2/Cm6HjCah07larN1npHDG1dhDZMyqdDnPDh0iQNv+BEV6kCMSHX/8R9Uc7uIpkRVj+uCfcYBnkoKHKbUgKcQ=="; + url = "https://registry.npmjs.org/@electron-forge/template-webpack/-/template-webpack-6.3.0.tgz"; + sha512 = "63G/LShpxYMqYPB2XWDVhli1nCgLlt/tDLV14QHSZeT/SblUp4Gz8+5ZNOofnAK5pfts8Q0aPB2Au5luC4lrFw=="; }; }; - "@electron-forge/template-webpack-typescript-6.2.1" = { + "@electron-forge/template-webpack-typescript-6.3.0" = { name = "_at_electron-forge_slash_template-webpack-typescript"; packageName = "@electron-forge/template-webpack-typescript"; - version = "6.2.1"; + version = "6.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/@electron-forge/template-webpack-typescript/-/template-webpack-typescript-6.2.1.tgz"; - sha512 = "8dXu54OsvfeBVGFyHfzVaBlxH+dPFxgLKu+/gsip82OEmLghXWyfvwhpXBw3rhxqG8V2/nbxDYUghSJackWZYA=="; + url = "https://registry.npmjs.org/@electron-forge/template-webpack-typescript/-/template-webpack-typescript-6.3.0.tgz"; + sha512 = "PoEdeEsdVlXRpANcSOadECeUe/CqLCqGgjDQdG49GxrKSltqdZZ7elBXxJDpmgWDrP2aQI4YhmygBWAJO1o1zw=="; }; }; "@electron/asar-3.2.4" = { @@ -5269,13 +5152,13 @@ let sha512 = "OU5P5mJyD3OoWYMWY+yIgwvgNS9cFAU10f+DDuvtogcWQOoJIsQ4Hy2McSfUfhKjq8L0FuWVb4Rt7kgA+XK86A=="; }; }; - "@exodus/schemasafe-1.1.1" = { + "@exodus/schemasafe-1.2.3" = { name = "_at_exodus_slash_schemasafe"; packageName = "@exodus/schemasafe"; - version = "1.1.1"; + version = "1.2.3"; src = fetchurl { - url = "https://registry.npmjs.org/@exodus/schemasafe/-/schemasafe-1.1.1.tgz"; - sha512 = "Pd7+aGvWIaTDL5ecV4ZBEtBrjXnk8/ly5xyHbikxVhgcq7qhihzHWHbcYmFupQBT2A5ggNZGvT7Bpj0M6AKHjA=="; + url = "https://registry.npmjs.org/@exodus/schemasafe/-/schemasafe-1.2.3.tgz"; + sha512 = "hmdFF4vVyvXosVdCCnZPCfrgwNPA79y3K5l0QzlKFcK5Qd3nkM9oGKcQYCTnTRWJXIV5SUMkkTFIEIdDFtxQPQ=="; }; }; "@expo/apple-utils-1.0.0" = { @@ -5431,22 +5314,22 @@ let sha512 = "ghUVhNJQOCTdQckSGTHctNp/0jzvVoMMkVh+6SHn+TZj8sU15U/npXIDt8NtQp0HedlPaCgkVdMu8Sacne0aEA=="; }; }; - "@expo/eas-build-job-1.0.13" = { + "@expo/eas-build-job-1.0.30" = { name = "_at_expo_slash_eas-build-job"; packageName = "@expo/eas-build-job"; - version = "1.0.13"; + version = "1.0.30"; src = fetchurl { - url = "https://registry.npmjs.org/@expo/eas-build-job/-/eas-build-job-1.0.13.tgz"; - sha512 = "Q0i3GposBj/b2OPL0CV00HczawtslorNpoJSBQfB4aNR6i7DBIZZ1jWJtrFP8+zHZqlUi4d21aoblNUrKpgBew=="; + url = "https://registry.npmjs.org/@expo/eas-build-job/-/eas-build-job-1.0.30.tgz"; + sha512 = "KQGn9POn5p3guMNQJ5ykG3wffRlSEpjTCLO87d5lJll9E4u1grpqHJH2chOh5ICxg7tiWcO4iXt5S8tU7Ogpig=="; }; }; - "@expo/eas-json-3.17.0" = { + "@expo/eas-json-4.1.0" = { name = "_at_expo_slash_eas-json"; packageName = "@expo/eas-json"; - version = "3.17.0"; + version = "4.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@expo/eas-json/-/eas-json-3.17.0.tgz"; - sha512 = "5Wae3BeXtU4hQrblcjRbxcitTgxKONPDUfAp1CtMUZw4WPRglA66XRfCo8XJRwWPa3tj+F06g1ZKcU+AN0ZZZQ=="; + url = "https://registry.npmjs.org/@expo/eas-json/-/eas-json-4.1.0.tgz"; + sha512 = "b/ZuNSt/RbUqNKvwtoGIs4B6xofRxznvLcb48v5rhY7CkR0zZ4EP6ljqFMSodS4IRG/r5LQSr+R3ONxaFO/8+A=="; }; }; "@expo/image-utils-0.3.21" = { @@ -5494,13 +5377,13 @@ let sha512 = "YaH6rVg11JoTS2P6LsW7ybS2CULjf40AbnAHw2F1eDPuheprNjARZMnyHFPkKv7GuxCy+B9GPcbOKgc4cgA80Q=="; }; }; - "@expo/logger-1.0.21" = { + "@expo/logger-1.0.30" = { name = "_at_expo_slash_logger"; packageName = "@expo/logger"; - version = "1.0.21"; + version = "1.0.30"; src = fetchurl { - url = "https://registry.npmjs.org/@expo/logger/-/logger-1.0.21.tgz"; - sha512 = "Vz+LHDGWUfowAwL10nBKqxrMYvO4qdZ8hLKcqUYc5mXBt+jmv7RP+8fcsMIejJEMWmYC2meO5eeCMLKKhEIgMA=="; + url = "https://registry.npmjs.org/@expo/logger/-/logger-1.0.30.tgz"; + sha512 = "8wEUDZNLAv+Wi4jvo0kFErQ7nc4ZFfArq5GDeSCoIrRfdKK8baot7YJoJVsmpQ9/JXnTEAgwGDP3vYaR5wzcyg=="; }; }; "@expo/metro-config-0.6.0" = { @@ -5692,13 +5575,22 @@ let sha512 = "sqPAjOEFTrjaTybrh9SnPFLInDXcoMC06psEFmH68jLTmoipSQCq8GCEfIoHhxRDALWB+DsiwXJSbXlE/iVIIQ=="; }; }; - "@expo/steps-1.0.28" = { + "@expo/spawn-async-1.7.2" = { + name = "_at_expo_slash_spawn-async"; + packageName = "@expo/spawn-async"; + version = "1.7.2"; + src = fetchurl { + url = "https://registry.npmjs.org/@expo/spawn-async/-/spawn-async-1.7.2.tgz"; + sha512 = "QdWi16+CHB9JYP7gma19OVVg0BFkvU8zNj9GjWorYI8Iv8FUxjOCcYRuAmX4s/h91e4e7BPsskc8cSrZYho9Ew=="; + }; + }; + "@expo/steps-1.0.34" = { name = "_at_expo_slash_steps"; packageName = "@expo/steps"; - version = "1.0.28"; + version = "1.0.34"; src = fetchurl { - url = "https://registry.npmjs.org/@expo/steps/-/steps-1.0.28.tgz"; - sha512 = "HyYzc9b6oftTGLoH73RD2ZK/h0dbC0aSezazcf1yvvhfHJpVQrpI0wZ3DHXEJocVSNGykH+RUHmoORVknkFJFA=="; + url = "https://registry.npmjs.org/@expo/steps/-/steps-1.0.34.tgz"; + sha512 = "jQoxeMWWl2mUwLGyiUD38z/FNao2jbDP8Tjvkr/YAfIOHaro36E3Vmn1YsKTYmtc41TGcFdCzqly95faRNrhvQ=="; }; }; "@expo/timeago.js-1.0.0" = { @@ -5899,31 +5791,31 @@ let sha512 = "k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw=="; }; }; - "@gitbeaker/core-39.10.2" = { + "@gitbeaker/core-39.10.3" = { name = "_at_gitbeaker_slash_core"; packageName = "@gitbeaker/core"; - version = "39.10.2"; + version = "39.10.3"; src = fetchurl { - url = "https://registry.npmjs.org/@gitbeaker/core/-/core-39.10.2.tgz"; - sha512 = "aYU4S+DOnuT7zmHD8h/ap4rJgfdMBHytQuinVMxQwD9k+iCrDNZ9TPT1C2e77ZXLkBwfx6gBlbn0/n1QPphiUQ=="; + url = "https://registry.npmjs.org/@gitbeaker/core/-/core-39.10.3.tgz"; + sha512 = "B0+j+dFVEVJlgz/EN4xoqqbUGxCDhm2Z4IhVv1JKutFhvJ1QznPUllFpLnWV/Vn51MyQVjtmcbgZiUUtzaiVJQ=="; }; }; - "@gitbeaker/requester-utils-39.10.2" = { + "@gitbeaker/requester-utils-39.10.3" = { name = "_at_gitbeaker_slash_requester-utils"; packageName = "@gitbeaker/requester-utils"; - version = "39.10.2"; + version = "39.10.3"; src = fetchurl { - url = "https://registry.npmjs.org/@gitbeaker/requester-utils/-/requester-utils-39.10.2.tgz"; - sha512 = "40XILUwFuuGoB+y/wvjxNzl4ybGxRXJ1Q/CZboS+3sZj1HviwML0m+eBKHtAGESH5wl4dNTtDt/ge6y1gHtIqQ=="; + url = "https://registry.npmjs.org/@gitbeaker/requester-utils/-/requester-utils-39.10.3.tgz"; + sha512 = "8/IL+RUeCqLMb3VGGirnYV8COIa+Lupx92JbYdl5tE+QABb+jyXDOwiwWS4YR/MCmLC5rz5aFYFeRVQ+jrRRzA=="; }; }; - "@gitbeaker/rest-39.10.2" = { + "@gitbeaker/rest-39.10.3" = { name = "_at_gitbeaker_slash_rest"; packageName = "@gitbeaker/rest"; - version = "39.10.2"; + version = "39.10.3"; src = fetchurl { - url = "https://registry.npmjs.org/@gitbeaker/rest/-/rest-39.10.2.tgz"; - sha512 = "54sMSqTuLn0zH9AXwrvJkiiuPe5XDYLnMTVH/VsRFUNM6OJSix2aapX3wTMjb9AsP/yQFFF7Bh1+k6Ce346PLw=="; + url = "https://registry.npmjs.org/@gitbeaker/rest/-/rest-39.10.3.tgz"; + sha512 = "wtLs7hCQ9JnAydrGBbWYSFnsa2raMqBBfOTU7UosKta9Kf1+PXriCcV5yS/2G84v45f9kXN3vyCimxez2br0SQ=="; }; }; "@glideapps/ts-necessities-2.1.3" = { @@ -5989,24 +5881,6 @@ let sha512 = "/LDNozZ+6qTS0yqMXo/ki6yJqTVx2s6ncOM/m/t4PjqeXrN8ejTwoiNDoDVZq18bsHjZBPP4o03M2goFYWJCHA=="; }; }; - "@grammyjs/types-2.12.1" = { - name = "_at_grammyjs_slash_types"; - packageName = "@grammyjs/types"; - version = "2.12.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@grammyjs/types/-/types-2.12.1.tgz"; - sha512 = "1hO6esfdo42mSvyArPHrlgSY/fgerTuVNAbSD5ZKHS/w5ZyrkA4pRp3VHK2XE3fm9/uMBT/39i8pPvx0+Kbxjg=="; - }; - }; - "@grammyjs/types-3.1.2" = { - name = "_at_grammyjs_slash_types"; - packageName = "@grammyjs/types"; - version = "3.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/@grammyjs/types/-/types-3.1.2.tgz"; - sha512 = "AsSkTUfZCfSEIacUBOQ94qLbZZy3UofkschWv4uBJKEHjuEfGnjeZZgiwhDfTDjmpmW+MbcasvS+FEfD2jiSLw=="; - }; - }; "@graphql-cli/common-4.1.0" = { name = "_at_graphql-cli_slash_common"; packageName = "@graphql-cli/common"; @@ -6043,13 +5917,13 @@ let sha512 = "hcV1JaY6NJQFQEwCKrYhpfLK8frSXDbtNMoTur98u10Cmecy1zrqNKSqhEyGetpgHxaJRqszGzKeI3RuroDN6A=="; }; }; - "@graphql-tools/batch-execute-9.0.0" = { + "@graphql-tools/batch-execute-9.0.1" = { name = "_at_graphql-tools_slash_batch-execute"; packageName = "@graphql-tools/batch-execute"; - version = "9.0.0"; + version = "9.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/batch-execute/-/batch-execute-9.0.0.tgz"; - sha512 = "lT9/1XmPSYzBcEybXPLsuA6C5E0t8438PVUELABcqdvwHgZ3VOOx29MLBEqhr2oewOlDChH6PXNkfxoOoAuzRg=="; + url = "https://registry.npmjs.org/@graphql-tools/batch-execute/-/batch-execute-9.0.1.tgz"; + sha512 = "cc96n/JNARtnYjru6KQl3u3MLrQLfFBu8VoDRRG2BQmShodw4QJ8fn7MzFABjkBHFQPydNGN1QOKBCjq6ui/3g=="; }; }; "@graphql-tools/code-file-loader-8.0.1" = { @@ -6061,13 +5935,13 @@ let sha512 = "pmg81lsIXGW3uW+nFSCIG0lFQIxWVbgDjeBkSWlnP8CZsrHTQEkB53DT7t4BHLryoxDS4G4cPxM52yNINDSL8w=="; }; }; - "@graphql-tools/delegate-10.0.0" = { + "@graphql-tools/delegate-10.0.2" = { name = "_at_graphql-tools_slash_delegate"; packageName = "@graphql-tools/delegate"; - version = "10.0.0"; + version = "10.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-10.0.0.tgz"; - sha512 = "ZW5/7Q0JqUM+guwn8/cM/1Hz16Zvj6WR6r3gnOwoPO7a9bCbe8QTCk4itT/EO+RiGT8RLUPYaunWR9jxfNqqOA=="; + url = "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-10.0.2.tgz"; + sha512 = "ZU7VnR2xFgHrGnsuw6+nRJkcvSucn7w5ooxb/lTKlVfrNJfTwJevNcNKMnbtPUSajG3+CaFym/nU6v44GXCmNw=="; }; }; "@graphql-tools/delegate-7.1.5" = { @@ -6097,13 +5971,13 @@ let sha512 = "GdvNc4vszmfeGvUqlcaH1FjBoguvMYzxAfT6tDd4/LgwymepHhinqLNA5otqwVLW+JETcDaK7xGENzFomuE6TA=="; }; }; - "@graphql-tools/executor-1.1.0" = { + "@graphql-tools/executor-1.2.0" = { name = "_at_graphql-tools_slash_executor"; packageName = "@graphql-tools/executor"; - version = "1.1.0"; + version = "1.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/executor/-/executor-1.1.0.tgz"; - sha512 = "+1wmnaUHETSYxiK/ELsT60x584Rw3QKBB7F/7fJ83HKPnLifmE2Dm/K9Eyt6L0Ppekf1jNUbWBpmBGb8P5hAeg=="; + url = "https://registry.npmjs.org/@graphql-tools/executor/-/executor-1.2.0.tgz"; + sha512 = "SKlIcMA71Dha5JnEWlw4XxcaJ+YupuXg0QCZgl2TOLFz4SkGCwU/geAsJvUJFwK2RbVLpQv/UMq67lOaBuwDtg=="; }; }; "@graphql-tools/executor-graphql-ws-0.0.14" = { @@ -6376,13 +6250,13 @@ let sha512 = "rPc9oDzMnycvz+X+wrN3PLrhMBQkG4+sd8EzaFN6dypcssiefgWKToXtRKI8HHK68n2xEq1PyrOpkjHFJB+GwA=="; }; }; - "@graphql-tools/utils-10.0.4" = { + "@graphql-tools/utils-10.0.5" = { name = "_at_graphql-tools_slash_utils"; packageName = "@graphql-tools/utils"; - version = "10.0.4"; + version = "10.0.5"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/utils/-/utils-10.0.4.tgz"; - sha512 = "MF+nZgGROSnFgyOYWhrl2PuJMlIBvaCH48vtnlnDQKSeDc2fUfOzUVloBAQvnYmK9JBmHHks4Pxv25Ybg3r45Q=="; + url = "https://registry.npmjs.org/@graphql-tools/utils/-/utils-10.0.5.tgz"; + sha512 = "ZTioQqg9z9eCG3j+KDy54k1gp6wRIsLqkx5yi163KVvXVkfjsrdErCyZjrEug21QnKE9piP4tyxMpMMOT1RuRw=="; }; }; "@graphql-tools/utils-6.2.4" = { @@ -6466,69 +6340,6 @@ let sha512 = "mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ=="; }; }; - "@grpc/grpc-js-1.8.1" = { - name = "_at_grpc_slash_grpc-js"; - packageName = "@grpc/grpc-js"; - version = "1.8.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.8.1.tgz"; - sha512 = "mdqYADWl/9Kb75XLstt6pvBnS1DpxSDFRKrbadkY1ymUd29hq49nP6tLcL7a7qLydgqFCpjNwa2RsyrqB3MsXA=="; - }; - }; - "@grpc/grpc-js-1.8.12" = { - name = "_at_grpc_slash_grpc-js"; - packageName = "@grpc/grpc-js"; - version = "1.8.12"; - src = fetchurl { - url = "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.8.12.tgz"; - sha512 = "MbUMvpVvakeKhdYux6gbSIPJaFMLNSY8jw4PqLI+FFztGrQRrYYAnHlR94+ncBQQewkpXQaW449m3tpH/B/ZnQ=="; - }; - }; - "@grpc/grpc-js-1.8.13" = { - name = "_at_grpc_slash_grpc-js"; - packageName = "@grpc/grpc-js"; - version = "1.8.13"; - src = fetchurl { - url = "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.8.13.tgz"; - sha512 = "iY3jsdfbc0ARoCLFvbvUB8optgyb0r1XLPb142u+QtgBcKJYkCIFt3Fd/881KqjLYWjsBJF57N3b8Eop9NDfUA=="; - }; - }; - "@grpc/grpc-js-1.8.14" = { - name = "_at_grpc_slash_grpc-js"; - packageName = "@grpc/grpc-js"; - version = "1.8.14"; - src = fetchurl { - url = "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.8.14.tgz"; - sha512 = "w84maJ6CKl5aApCMzFll0hxtFNT6or9WwMslobKaqWUEf1K+zhlL43bSQhFreyYWIWR+Z0xnVFC1KtLm4ZpM/A=="; - }; - }; - "@grpc/grpc-js-1.8.16" = { - name = "_at_grpc_slash_grpc-js"; - packageName = "@grpc/grpc-js"; - version = "1.8.16"; - src = fetchurl { - url = "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.8.16.tgz"; - sha512 = "Nvlq4V7XQmdRVDGgecR8ZPPCeY+uH1LhzbC+QxklwAahpQlq8YLsiOQgfkub9FiakRiohaDy361xqlTLkq9EHw=="; - }; - }; - "@grpc/grpc-js-1.8.17" = { - name = "_at_grpc_slash_grpc-js"; - packageName = "@grpc/grpc-js"; - version = "1.8.17"; - src = fetchurl { - url = "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.8.17.tgz"; - sha512 = "DGuSbtMFbaRsyffMf+VEkVu8HkSXEUfO3UyGJNtqxW9ABdtTIA+2UXAJpwbJS+xfQxuwqLUeELmL6FuZkOqPxw=="; - }; - }; - "@grpc/grpc-js-1.8.18" = { - name = "_at_grpc_slash_grpc-js"; - packageName = "@grpc/grpc-js"; - version = "1.8.18"; - src = fetchurl { - url = "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.8.18.tgz"; - sha512 = "2uWPtxhsXmVgd8WzDhfamSjHpZDXfMjMDciY6VRTq4Sn7rFzazyf0LLDa0oav+61UHIoEZb4KKaAV6S7NuJFbQ=="; - }; - }; "@grpc/grpc-js-1.8.21" = { name = "_at_grpc_slash_grpc-js"; packageName = "@grpc/grpc-js"; @@ -6538,51 +6349,6 @@ let sha512 = "KeyQeZpxeEBSqFVTi3q2K7PiPXmgBfECc4updA1ejCLjYmoAlvvM3ZMp5ztTDUCUQmoY3CpDxvchjO1+rFkoHg=="; }; }; - "@grpc/grpc-js-1.8.4" = { - name = "_at_grpc_slash_grpc-js"; - packageName = "@grpc/grpc-js"; - version = "1.8.4"; - src = fetchurl { - url = "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.8.4.tgz"; - sha512 = "oaETBotls7FTBpySg5dhyUCyXSxSeCMmkBBXHXG1iw57MiNoB6D7VRhkrXYbwyHM3Q3Afjp4KlsBX0Zb+ELZXw=="; - }; - }; - "@grpc/proto-loader-0.7.4" = { - name = "_at_grpc_slash_proto-loader"; - packageName = "@grpc/proto-loader"; - version = "0.7.4"; - src = fetchurl { - url = "https://registry.npmjs.org/@grpc/proto-loader/-/proto-loader-0.7.4.tgz"; - sha512 = "MnWjkGwqQ3W8fx94/c1CwqLsNmHHv2t0CFn+9++6+cDphC1lolpg9M2OU0iebIjK//pBNX9e94ho+gjx6vz39w=="; - }; - }; - "@grpc/proto-loader-0.7.5" = { - name = "_at_grpc_slash_proto-loader"; - packageName = "@grpc/proto-loader"; - version = "0.7.5"; - src = fetchurl { - url = "https://registry.npmjs.org/@grpc/proto-loader/-/proto-loader-0.7.5.tgz"; - sha512 = "mfcTuMbFowq1wh/Rn5KQl6qb95M21Prej3bewD9dUQMurYGVckGO/Pbe2Ocwto6sD05b/mxZLspvqwx60xO2Rg=="; - }; - }; - "@grpc/proto-loader-0.7.6" = { - name = "_at_grpc_slash_proto-loader"; - packageName = "@grpc/proto-loader"; - version = "0.7.6"; - src = fetchurl { - url = "https://registry.npmjs.org/@grpc/proto-loader/-/proto-loader-0.7.6.tgz"; - sha512 = "QyAXR8Hyh7uMDmveWxDSUcJr9NAWaZ2I6IXgAYvQmfflwouTM+rArE2eEaCtLlRqO81j7pRLCt81IefUei6Zbw=="; - }; - }; - "@grpc/proto-loader-0.7.7" = { - name = "_at_grpc_slash_proto-loader"; - packageName = "@grpc/proto-loader"; - version = "0.7.7"; - src = fetchurl { - url = "https://registry.npmjs.org/@grpc/proto-loader/-/proto-loader-0.7.7.tgz"; - sha512 = "1TIeXOi8TuSCQprPItwoMymZXxWT0CPxUhkrkeCUH+D8U7QDwQ6b7SUz2MaLuWM2llT+J/TVFLmQI5KtML3BhQ=="; - }; - }; "@grpc/proto-loader-0.7.8" = { name = "_at_grpc_slash_proto-loader"; packageName = "@grpc/proto-loader"; @@ -6592,15 +6358,6 @@ let sha512 = "GU12e2c8dmdXb7XUlOgYWZ2o2i+z9/VeACkxTA/zzAe2IjclC5PnVL0lpgjhrqfpDYHzM8B1TF6pqWegMYAzlA=="; }; }; - "@handsontable/formulajs-2.0.2" = { - name = "_at_handsontable_slash_formulajs"; - packageName = "@handsontable/formulajs"; - version = "2.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/@handsontable/formulajs/-/formulajs-2.0.2.tgz"; - sha512 = "maIyMJtYjA5e/R9nyA22Qd7Yw73MBSxClJvle0a8XWAS/5l6shc/OFpQqrmwMy4IXUCmywJ9ER0gOGz/YA720w=="; - }; - }; "@hapi/hoek-9.3.0" = { name = "_at_hapi_slash_hoek"; packageName = "@hapi/hoek"; @@ -6763,22 +6520,22 @@ let sha512 = "LBWf21EYmOJnM4azYPM4LsNbiH9GBK8rc1dwmDhuUELI43dEOGWSs2ateLn8/E9vyrVELGwQ1Y3Bu61YHa8kaA=="; }; }; - "@inquirer/checkbox-1.3.6" = { + "@inquirer/checkbox-1.3.7" = { name = "_at_inquirer_slash_checkbox"; packageName = "@inquirer/checkbox"; - version = "1.3.6"; + version = "1.3.7"; src = fetchurl { - url = "https://registry.npmjs.org/@inquirer/checkbox/-/checkbox-1.3.6.tgz"; - sha512 = "xeY5U/vwU62Hkt7bjAmw446V4iKNR5rzHQGErOREVicxtmipjkGku+qm8MV7y/dWZelxAH0MIkNBbBLqg6/MsQ=="; + url = "https://registry.npmjs.org/@inquirer/checkbox/-/checkbox-1.3.7.tgz"; + sha512 = "/mIDOe4IR3rMvyOh81XZHd+Tu1FTXSnMyv2SBj/7ifJqx6vYRgFBgQSotUq00JsYojcBAdve3rc8X8Plnm3Aig=="; }; }; - "@inquirer/confirm-2.0.7" = { + "@inquirer/confirm-2.0.8" = { name = "_at_inquirer_slash_confirm"; packageName = "@inquirer/confirm"; - version = "2.0.7"; + version = "2.0.8"; src = fetchurl { - url = "https://registry.npmjs.org/@inquirer/confirm/-/confirm-2.0.7.tgz"; - sha512 = "pEpvyeMaYNZYnHYxZL+9M8XtFsJly1Sk0gRPAr2wzRWMtqAvyWCclQo96Zu56S072L3Aez+ntcQ/Mvi+PGX42w=="; + url = "https://registry.npmjs.org/@inquirer/confirm/-/confirm-2.0.8.tgz"; + sha512 = "HonMGuoXu4aT7I2LYzOZK6aWgIU8hWemB/6KG1jYwRxcyP5fcMDJZoiTKGBGNn8dNibCmreZu6FSch1s7nwbNQ=="; }; }; "@inquirer/core-2.3.1" = { @@ -6790,49 +6547,49 @@ let sha512 = "faYAYnIfdEuns3jGKykaog5oUqFiEVbCx9nXGZfUhyEEpKcHt5bpJfZTb3eOBQKo8I/v4sJkZeBHmFlSZQuBCw=="; }; }; - "@inquirer/core-3.1.0" = { + "@inquirer/core-3.1.1" = { name = "_at_inquirer_slash_core"; packageName = "@inquirer/core"; - version = "3.1.0"; + version = "3.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/@inquirer/core/-/core-3.1.0.tgz"; - sha512 = "l+vA7cbkVnEnrV1zCStw9//4mrmJNTziE67C9vQA3ccyTeGx+o0APnFmXo1AMSf7r9N7+gom9KdSjk7v4bg2Wg=="; + url = "https://registry.npmjs.org/@inquirer/core/-/core-3.1.1.tgz"; + sha512 = "gPvWAiFBre2DJEV7yRT/ZoK2XyJvpTQlCV7F7+lWcejzdUKA1+wTqwa1e8x1LHxkulHc5hKCKZ855UMylE6ifA=="; }; }; - "@inquirer/editor-1.2.5" = { + "@inquirer/editor-1.2.6" = { name = "_at_inquirer_slash_editor"; packageName = "@inquirer/editor"; - version = "1.2.5"; - src = fetchurl { - url = "https://registry.npmjs.org/@inquirer/editor/-/editor-1.2.5.tgz"; - sha512 = "OyNWKv87U4BpmPSaKNFjiaayH1GYOrccbXiA5s0Zk+b/j8ESo67rMBv9GiBvm9fl1VbXydZpxGz7WKCIbn6cag=="; - }; - }; - "@inquirer/expand-1.1.6" = { - name = "_at_inquirer_slash_expand"; - packageName = "@inquirer/expand"; - version = "1.1.6"; - src = fetchurl { - url = "https://registry.npmjs.org/@inquirer/expand/-/expand-1.1.6.tgz"; - sha512 = "9sbFz0dorHOmJ9ndkg4vHq0pNSBAKJ1jlOHE9kwdONRhG4fl1bl1OIBAOaeNZ8XqS/1tEaoDcG2zpFmFDjG1Jw=="; - }; - }; - "@inquirer/input-1.2.6" = { - name = "_at_inquirer_slash_input"; - packageName = "@inquirer/input"; version = "1.2.6"; src = fetchurl { - url = "https://registry.npmjs.org/@inquirer/input/-/input-1.2.6.tgz"; - sha512 = "zmAAYCEJ7sblT36N3CL7Ugd0Js7hVZwb0BDmCWncTn4I0o+h4t8Kj8pBXh0Kdms2zxitOIBcbZDfFmUkZ5Zs1A=="; + url = "https://registry.npmjs.org/@inquirer/editor/-/editor-1.2.6.tgz"; + sha512 = "DTKL1eW2oufo21jz/qrAOELX4qJGNKjRQVzejj46pHhcSVE3ox1H/rf2Wkci4SdbsktPPsUSbYfL76InSQcK/g=="; }; }; - "@inquirer/password-1.1.6" = { + "@inquirer/expand-1.1.7" = { + name = "_at_inquirer_slash_expand"; + packageName = "@inquirer/expand"; + version = "1.1.7"; + src = fetchurl { + url = "https://registry.npmjs.org/@inquirer/expand/-/expand-1.1.7.tgz"; + sha512 = "6t4xpw1iejWHTxQ6Y11c2/aqRWS9zHM8U8HShyt2xZDvs9GDIG77OIPi7+29M/6OK6LGUcqY3KxqSE4peaxdiw=="; + }; + }; + "@inquirer/input-1.2.7" = { + name = "_at_inquirer_slash_input"; + packageName = "@inquirer/input"; + version = "1.2.7"; + src = fetchurl { + url = "https://registry.npmjs.org/@inquirer/input/-/input-1.2.7.tgz"; + sha512 = "h+/nI3eHii6qLKu9Ax/veALCcbeEzhwY0z/x+4DthU4QBU9wOeuXpg7BPq2DFfue73UHgkl50m8wLHqhbGX4XQ=="; + }; + }; + "@inquirer/password-1.1.7" = { name = "_at_inquirer_slash_password"; packageName = "@inquirer/password"; - version = "1.1.6"; + version = "1.1.7"; src = fetchurl { - url = "https://registry.npmjs.org/@inquirer/password/-/password-1.1.6.tgz"; - sha512 = "HV+7aECu+qT5SQi1PH+5i90ckrUSPqVQ/QWCC3bUYQFh1E/yuQIU479Jw59xldUy+1DxVeqEtBPHpUxNlqUBKw=="; + url = "https://registry.npmjs.org/@inquirer/password/-/password-1.1.7.tgz"; + sha512 = "wEPyZWAcrathyfGfHaDzEljZCmLnSxvbve64t0Yl5Idbxj29m9K81Q8AXMSpZUd48z3PEeNxkbUqqCHoCLYA/Q=="; }; }; "@inquirer/prompts-2.3.1" = { @@ -6844,22 +6601,22 @@ let sha512 = "YQeBFzIE+6fcec5N/U2mSz+IcKEG4wtGDwF7MBLIDgITWzB3o723JpKJ1rxWqdCvTXkYE+gDXK/seSN6omo3DQ=="; }; }; - "@inquirer/rawlist-1.2.6" = { + "@inquirer/rawlist-1.2.7" = { name = "_at_inquirer_slash_rawlist"; packageName = "@inquirer/rawlist"; - version = "1.2.6"; + version = "1.2.7"; src = fetchurl { - url = "https://registry.npmjs.org/@inquirer/rawlist/-/rawlist-1.2.6.tgz"; - sha512 = "EFwYq0ymYeF2ofDw7DkDGooBOvfrcsJgHMMSYKjvu9rp5PRKCBviUuRlmSPs6x97ttOvHKNa3L3FJGXykyskLw=="; + url = "https://registry.npmjs.org/@inquirer/rawlist/-/rawlist-1.2.7.tgz"; + sha512 = "p4hdCazqz2Hq5+U1jiH8kuaYW9xHWDflBbDwJNIC+dKfui0Tl+zd7CzEcK6R7i2oK0P5KuHWvnFxYzOnO3tUog=="; }; }; - "@inquirer/select-1.2.6" = { + "@inquirer/select-1.2.7" = { name = "_at_inquirer_slash_select"; packageName = "@inquirer/select"; - version = "1.2.6"; + version = "1.2.7"; src = fetchurl { - url = "https://registry.npmjs.org/@inquirer/select/-/select-1.2.6.tgz"; - sha512 = "FE2UQ9sfabDMzu8ynz83nnFoTmUjeoh52AmEwCmiMo61ulN785B5N4t0w8R8ezm6hQtngIGXkP0/FCuGTbsR6g=="; + url = "https://registry.npmjs.org/@inquirer/select/-/select-1.2.7.tgz"; + sha512 = "8QJXGEh8s3WYW+TjdO5S0VTyTGWOw+7Ox8hZ0ME/jM89hi0LQxvO7YTwgUpu/8PQ0VV7kMZvWVL4HK3Eh4HJ/g=="; }; }; "@inquirer/type-1.1.1" = { @@ -7736,15 +7493,6 @@ let sha512 = "HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ=="; }; }; - "@jridgewell/resolve-uri-3.1.0" = { - name = "_at_jridgewell_slash_resolve-uri"; - packageName = "@jridgewell/resolve-uri"; - version = "3.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz"; - sha512 = "F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w=="; - }; - }; "@jridgewell/resolve-uri-3.1.1" = { name = "_at_jridgewell_slash_resolve-uri"; packageName = "@jridgewell/resolve-uri"; @@ -7772,15 +7520,6 @@ let sha512 = "UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ=="; }; }; - "@jridgewell/sourcemap-codec-1.4.14" = { - name = "_at_jridgewell_slash_sourcemap-codec"; - packageName = "@jridgewell/sourcemap-codec"; - version = "1.4.14"; - src = fetchurl { - url = "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz"; - sha512 = "XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw=="; - }; - }; "@jridgewell/sourcemap-codec-1.4.15" = { name = "_at_jridgewell_slash_sourcemap-codec"; packageName = "@jridgewell/sourcemap-codec"; @@ -7790,13 +7529,13 @@ let sha512 = "eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg=="; }; }; - "@jridgewell/trace-mapping-0.3.18" = { + "@jridgewell/trace-mapping-0.3.19" = { name = "_at_jridgewell_slash_trace-mapping"; packageName = "@jridgewell/trace-mapping"; - version = "0.3.18"; + version = "0.3.19"; src = fetchurl { - url = "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz"; - sha512 = "w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA=="; + url = "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz"; + sha512 = "kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw=="; }; }; "@jridgewell/trace-mapping-0.3.9" = { @@ -7853,49 +7592,22 @@ let sha512 = "dOrye7NuafkHADt3jk0TxMu/2sOHXxOYTwAuKj9L1/Te1xFfw2fzni80J12rTBQeVQxLVFNgDynsl2J7cuFFtQ=="; }; }; - "@jsii/spec-1.85.0" = { + "@jsii/check-node-1.86.1" = { + name = "_at_jsii_slash_check-node"; + packageName = "@jsii/check-node"; + version = "1.86.1"; + src = fetchurl { + url = "https://registry.npmjs.org/@jsii/check-node/-/check-node-1.86.1.tgz"; + sha512 = "lxcuw/TgUkh1dD01B39V47pwmF8yWUm8BiQKb0jpOY0xaE9nSlq9kRfTR7XaXu37w59jeYepI5af/GyUf9+TXw=="; + }; + }; + "@jsii/spec-1.86.1" = { name = "_at_jsii_slash_spec"; packageName = "@jsii/spec"; - version = "1.85.0"; + version = "1.86.1"; src = fetchurl { - url = "https://registry.npmjs.org/@jsii/spec/-/spec-1.85.0.tgz"; - sha512 = "RIBLbuKf7JOC54v1JnRuykwlL+qmOgivQM8LHJxiAsUKiuY5ypSzG0JyeoJ1+lMQ9zZ50Ho0HY1ZO+XH18ZgNg=="; - }; - }; - "@json2csv/formatters-6.1.3" = { - name = "_at_json2csv_slash_formatters"; - packageName = "@json2csv/formatters"; - version = "6.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@json2csv/formatters/-/formatters-6.1.3.tgz"; - sha512 = "Yhs6eXTMhSrNFLTuVnhwjgJem2x+z0YZc0YxdCavoDf/tfz6LBVPVVoJPl9tXaCIfPZY9ybRB6sqPQqZTzkNuw=="; - }; - }; - "@json2csv/formatters-7.0.1" = { - name = "_at_json2csv_slash_formatters"; - packageName = "@json2csv/formatters"; - version = "7.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@json2csv/formatters/-/formatters-7.0.1.tgz"; - sha512 = "eCmYKIIoFDXUB0Fotet2RmcoFTtNLXLmSV7j6aEQH/D2GiO749Uan3ts03PtAhXpE11QghxBjS0toXom8VQNBw=="; - }; - }; - "@json2csv/plainjs-6.1.2" = { - name = "_at_json2csv_slash_plainjs"; - packageName = "@json2csv/plainjs"; - version = "6.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/@json2csv/plainjs/-/plainjs-6.1.2.tgz"; - sha512 = "XNcBd6W4G5mlP6ZL13idEx21diQAM5AJgIe78RxRfZctWRppaZrtpiGTzhc/sNv7UM1FpfO/aa5wel4+aQW7MQ=="; - }; - }; - "@json2csv/plainjs-7.0.1" = { - name = "_at_json2csv_slash_plainjs"; - packageName = "@json2csv/plainjs"; - version = "7.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@json2csv/plainjs/-/plainjs-7.0.1.tgz"; - sha512 = "UAdaZwahrUeYhMYYilJwDsRfE7wDRsmGMsszYH67j8FLD5gZitqG38RXpUgHEH0s6YjsY8iKYWeEQ19WILncFA=="; + url = "https://registry.npmjs.org/@jsii/spec/-/spec-1.86.1.tgz"; + sha512 = "wD0Y0pVg/1jjbZImk2FIuj+YdpwLFEsKCpoC3XKLJyNyUZPSoJzrt3phLV8HRLmH0m52kw6rh044OIowedcc9A=="; }; }; "@kurkle/color-0.3.2" = { @@ -7934,13 +7646,13 @@ let sha512 = "4w+P0VkbjzEXC7kv8T1GJ/9AVaP9I6uasMZ/JcdwZBS3qwvKo5A5z9uGhP5c7TvItzcmPb44b5Mw2kT+WjUuAA=="; }; }; - "@ledgerhq/devices-8.0.5" = { + "@ledgerhq/devices-8.0.6" = { name = "_at_ledgerhq_slash_devices"; packageName = "@ledgerhq/devices"; - version = "8.0.5"; + version = "8.0.6"; src = fetchurl { - url = "https://registry.npmjs.org/@ledgerhq/devices/-/devices-8.0.5.tgz"; - sha512 = "Cy4LOfcYhYGWLd2nRA/CY/AneJT+Q3RyNwzoRx28gqAN21vF3+IZtL0jqs1n78rZ2bTEHyBS1GMOX13s5Y+O4g=="; + url = "https://registry.npmjs.org/@ledgerhq/devices/-/devices-8.0.6.tgz"; + sha512 = "KWA68krUD9pFp6bJAhTe2nurhku4HnS5LwtHnCXg8PB0DbzWt27PTKgVOCKO7TEdJ3wu4eVcgP5RQrap22pQHQ=="; }; }; "@ledgerhq/errors-5.50.0" = { @@ -7952,13 +7664,13 @@ let sha512 = "gu6aJ/BHuRlpU7kgVpy2vcYk6atjB4iauP2ymF7Gk0ez0Y/6VSMVSJvubeEQN+IV60+OBK0JgeIZG7OiHaw8ow=="; }; }; - "@ledgerhq/errors-6.13.0" = { + "@ledgerhq/errors-6.13.1" = { name = "_at_ledgerhq_slash_errors"; packageName = "@ledgerhq/errors"; - version = "6.13.0"; + version = "6.13.1"; src = fetchurl { - url = "https://registry.npmjs.org/@ledgerhq/errors/-/errors-6.13.0.tgz"; - sha512 = "cMFNX2AN6Gdj4RVIizI/7vWb+JYRu5na0rQSjybf7xGW5MSVdFVRcOg90VvqnDRsNfgFBbJzhpf7o4D7S3yFgg=="; + url = "https://registry.npmjs.org/@ledgerhq/errors/-/errors-6.13.1.tgz"; + sha512 = "y5qOFiX7ILACF7GvCAB67S5nCABEP5rm8lxK66qKIBRApcLlTplbjUACDRfKQbAIwf0SJPuR31rtTKB92ykwKQ=="; }; }; "@ledgerhq/hw-transport-5.51.1" = { @@ -7970,31 +7682,31 @@ let sha512 = "6wDYdbWrw9VwHIcoDnqWBaDFyviyjZWv6H9vz9Vyhe4Qd7TIFmbTl/eWs6hZvtZBza9K8y7zD8ChHwRI4s9tSw=="; }; }; - "@ledgerhq/hw-transport-6.28.6" = { + "@ledgerhq/hw-transport-6.28.7" = { name = "_at_ledgerhq_slash_hw-transport"; packageName = "@ledgerhq/hw-transport"; - version = "6.28.6"; + version = "6.28.7"; src = fetchurl { - url = "https://registry.npmjs.org/@ledgerhq/hw-transport/-/hw-transport-6.28.6.tgz"; - sha512 = "0VVB4jIG6ZTRtHusI5kO2jPcc1yFQ+iIcNKiTaaBHytsdGjTfhipje+W4vxo+nCdOKdrkOqB80GwykmKuNNXyA=="; + url = "https://registry.npmjs.org/@ledgerhq/hw-transport/-/hw-transport-6.28.7.tgz"; + sha512 = "P6XWv/Blb3AvzNH/33ouqFvsUwjCsQN5iMTLuVJqxVKwj91QmdYZfYR9U9FB0gBKrIQ7BONUgTX/ko9EnDV6/g=="; }; }; - "@ledgerhq/hw-transport-node-hid-6.27.19" = { + "@ledgerhq/hw-transport-node-hid-6.27.20" = { name = "_at_ledgerhq_slash_hw-transport-node-hid"; packageName = "@ledgerhq/hw-transport-node-hid"; - version = "6.27.19"; + version = "6.27.20"; src = fetchurl { - url = "https://registry.npmjs.org/@ledgerhq/hw-transport-node-hid/-/hw-transport-node-hid-6.27.19.tgz"; - sha512 = "f8GZ5qpgFM4W8ndymlKPbmFVPIklle2mUDC9MGClFbo/BHb73Cz47AZSDsD++hQ3oX7xyHVUaRzubEBLD3TYVw=="; + url = "https://registry.npmjs.org/@ledgerhq/hw-transport-node-hid/-/hw-transport-node-hid-6.27.20.tgz"; + sha512 = "0uwngV37xxfkAcvXTrcJ2u6Rz/iswcDempY8LWVYJ8Vyh0nlNFmMenVAxeErBF+BPE9GqSxE9lQFsuBuDgfCOQ=="; }; }; - "@ledgerhq/hw-transport-node-hid-noevents-6.27.17" = { + "@ledgerhq/hw-transport-node-hid-noevents-6.27.18" = { name = "_at_ledgerhq_slash_hw-transport-node-hid-noevents"; packageName = "@ledgerhq/hw-transport-node-hid-noevents"; - version = "6.27.17"; + version = "6.27.18"; src = fetchurl { - url = "https://registry.npmjs.org/@ledgerhq/hw-transport-node-hid-noevents/-/hw-transport-node-hid-noevents-6.27.17.tgz"; - sha512 = "QCuySuUgD8wAvTBO9jSwxZvjbfaRfoGNgr7JcDuu25D8pTTIn7S1mCtvVX8TwgMT9hIHsjfkbw6L23FPClvldg=="; + url = "https://registry.npmjs.org/@ledgerhq/hw-transport-node-hid-noevents/-/hw-transport-node-hid-noevents-6.27.18.tgz"; + sha512 = "duVDQUzjdZ+BmKnp68XHxd3/osB7OeYVIMc/uYmk7InPsHUexpEPuyGBQMGPZlvJ/N6YpArEWJHzcxbcXoCZ2A=="; }; }; "@ledgerhq/hw-transport-u2f-5.36.0-deprecated" = { @@ -8051,22 +7763,22 @@ let sha512 = "Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A=="; }; }; - "@lerna/child-process-7.1.4" = { + "@lerna/child-process-7.1.5" = { name = "_at_lerna_slash_child-process"; packageName = "@lerna/child-process"; - version = "7.1.4"; + version = "7.1.5"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/child-process/-/child-process-7.1.4.tgz"; - sha512 = "cSiMDx9oI9vvVT+V/WHcbqrksNoc9PIPFiks1lPS7zrVWkEbgA6REQyYmRd2H71kihzqhX5TJ20f2dWv6oEPdA=="; + url = "https://registry.npmjs.org/@lerna/child-process/-/child-process-7.1.5.tgz"; + sha512 = "YXmxzxXTP3u9HQpSXvK8qqoAm7VWQIFria3FVMQKkOSkWkph1TNnvt3Q1JvKT7/Jgd1HfTc3QrK09a2FND9+8A=="; }; }; - "@lerna/create-7.1.4" = { + "@lerna/create-7.1.5" = { name = "_at_lerna_slash_create"; packageName = "@lerna/create"; - version = "7.1.4"; + version = "7.1.5"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/create/-/create-7.1.4.tgz"; - sha512 = "D5YWXsXIxWb1aGqcbtttczg86zMzkNhcs00/BleFNxdNYlTRdjLIReELOGBGrq3Hij05UN+7Dv9EKnPFJVbqAw=="; + url = "https://registry.npmjs.org/@lerna/create/-/create-7.1.5.tgz"; + sha512 = "/CDI/cvXJbycgSDzWXzP7DBuJ10qL/uYEouFt3/mxi9+hSfM885fu6lbVPV7QOf8A0otXcTs7PN2dVyMrnWQeg=="; }; }; "@lezer/common-0.15.12" = { @@ -8429,13 +8141,13 @@ let sha512 = "W6CLUJ2eBMw3Rec70qrsEW0jOm/3twwJv21mrmj2yORiaVmVYGS4sSS5yUwvQc1ZlDLYGPnClVWmUUMagKNsfA=="; }; }; - "@microsoft/rush-lib-5.100.2" = { + "@microsoft/rush-lib-5.101.0" = { name = "_at_microsoft_slash_rush-lib"; packageName = "@microsoft/rush-lib"; - version = "5.100.2"; + version = "5.101.0"; src = fetchurl { - url = "https://registry.npmjs.org/@microsoft/rush-lib/-/rush-lib-5.100.2.tgz"; - sha512 = "wuyvYok7qEdADNeN98C+tO5lU23CH04kSYbJ/lz4CQfqVIviFLQQExDEPnvRxNP0I1XmuMdsaIVG28m1tLCMMA=="; + url = "https://registry.npmjs.org/@microsoft/rush-lib/-/rush-lib-5.101.0.tgz"; + sha512 = "T414zNpEXnDaNG3N4SC9JXMsZHUmV0RmgTg9wZfTEVF3C6xR8+KmowW9x0o9P/nPXQN9JJYSPHiWa/Hnx0VrvQ=="; }; }; "@mischnic/json-sourcemap-0.1.0" = { @@ -8447,24 +8159,6 @@ let sha512 = "dQb3QnfNqmQNYA4nFSN/uLaByIic58gOXq4Y4XqLOWmOrw73KmJPt/HLyG0wvn1bnR6mBKs/Uwvkh+Hns1T0XA=="; }; }; - "@mitmaro/errors-1.0.0" = { - name = "_at_mitmaro_slash_errors"; - packageName = "@mitmaro/errors"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@mitmaro/errors/-/errors-1.0.0.tgz"; - sha512 = "KUU0J4rgHsJiMsAj6Ndj+OTAlsKsX/fe3geQ0UB1jYm1DoaqFoanh1sBshb9rLNJpPjsD7yNQFykGajAsPciyw=="; - }; - }; - "@mitmaro/http-authorization-header-1.0.0" = { - name = "_at_mitmaro_slash_http-authorization-header"; - packageName = "@mitmaro/http-authorization-header"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@mitmaro/http-authorization-header/-/http-authorization-header-1.0.0.tgz"; - sha512 = "cAm7w7S04aswBtsXAReyzHrq9EV7yNalYj8OObsnavCucDoxC10y14gE2Eg82UKnR5v2TWSJAVCLFea4gaiddQ=="; - }; - }; "@mongodb-js/zstd-1.1.0" = { name = "_at_mongodb-js_slash_zstd"; packageName = "@mongodb-js/zstd"; @@ -9248,15 +8942,6 @@ let sha512 = "Lmfuf6ubjQ4ifC/9bz1fSCHc6F6E653oyaRXxg+lgT4+bYf9bk+nqrUpAbrXyABkCqgIBiFr3J4zR/kiFdE1PA=="; }; }; - "@oclif/config-1.18.15" = { - name = "_at_oclif_slash_config"; - packageName = "@oclif/config"; - version = "1.18.15"; - src = fetchurl { - url = "https://registry.npmjs.org/@oclif/config/-/config-1.18.15.tgz"; - sha512 = "eBTiFXGfXSzghc4Yjp3EutYU+6MrHX1kzk4j5i4CsR5AEor43ynXFrzpO6v7IwbR1KyUo+9SYE2D69Y+sHIMpg=="; - }; - }; "@oclif/config-1.18.16" = { name = "_at_oclif_slash_config"; packageName = "@oclif/config"; @@ -9293,13 +8978,13 @@ let sha512 = "6jYuZgXvHfOIc9GIaS4T3CIKGTjPmfAxuMcbCbMRKJJl4aq/4xeRlEz0E8/hz8HxvxZBGvN2GwAUHlrGWQVrVw=="; }; }; - "@oclif/core-2.11.5" = { + "@oclif/core-2.11.8" = { name = "_at_oclif_slash_core"; packageName = "@oclif/core"; - version = "2.11.5"; + version = "2.11.8"; src = fetchurl { - url = "https://registry.npmjs.org/@oclif/core/-/core-2.11.5.tgz"; - sha512 = "ALv0YyaMwfy+LRGigKoqST/It8uYBwp1+3F4OpwmPpQl7BiRCGbOBnJSrWNNCAEMZiYpWNgF/3WQVB5VUQlYbQ=="; + url = "https://registry.npmjs.org/@oclif/core/-/core-2.11.8.tgz"; + sha512 = "GILmztcHBzze45GvxRpUvqQI5nM26kSE/Q21Y+6DtMR+C8etM/hFW26D3uqIAbGlGtg5QEZZ6pjA/Fqgz+gl3A=="; }; }; "@oclif/core-2.8.11" = { @@ -9338,13 +9023,13 @@ let sha512 = "fYaU4aDceETd89KXP+3cLyg9EHZsLD3RxF2IU9yxahhBpspWjkWi3Dy3bTgcwZ3V47BgxQaGapzJWDM33XIVDQ=="; }; }; - "@oclif/help-1.0.14" = { + "@oclif/help-1.0.15" = { name = "_at_oclif_slash_help"; packageName = "@oclif/help"; - version = "1.0.14"; + version = "1.0.15"; src = fetchurl { - url = "https://registry.npmjs.org/@oclif/help/-/help-1.0.14.tgz"; - sha512 = "Hu2/Dyo91cgLNaqN3wkvkBGuZ7eqb0TQNVKrzGButZyaBpJzmwW4L6D4tAF390WDYZG7EubmLePlNYb+rNB4jw=="; + url = "https://registry.npmjs.org/@oclif/help/-/help-1.0.15.tgz"; + sha512 = "Yt8UHoetk/XqohYX76DfdrUYLsPKMc5pgkzsZVHDyBSkLiGRzujVaGZdjr32ckVZU9q3a47IjhWxhip7Dz5W/g=="; }; }; "@oclif/linewrap-1.0.0" = { @@ -9428,22 +9113,22 @@ let sha512 = "B2cGOyRskorr8NiGrmIBYxEK0c4laJo+W16VeEblLVDW8w6BvnSwC6K4Vd6rkKmPHRsgqoYrA5BCfPTwvUdSCg=="; }; }; - "@oclif/plugin-help-5.2.15" = { + "@oclif/plugin-help-5.2.16" = { name = "_at_oclif_slash_plugin-help"; packageName = "@oclif/plugin-help"; - version = "5.2.15"; + version = "5.2.16"; src = fetchurl { - url = "https://registry.npmjs.org/@oclif/plugin-help/-/plugin-help-5.2.15.tgz"; - sha512 = "q3gC4kIRlTilA8sG/9Eq2BEW2wo2KWV0ZbQ+8i3uQCvrgY4qoCIp5JTfsbbKR5XWaqPDdZPWhWuS1Rveu5V4FA=="; + url = "https://registry.npmjs.org/@oclif/plugin-help/-/plugin-help-5.2.16.tgz"; + sha512 = "MHtNpV1xBHSPcNAzUggQXwrBJUDoz8b01SnVFxFEmOHT3iYhvSir8DD0JSU+lhkyq1bNhF/lkaQJ9FtSuvwiyA=="; }; }; - "@oclif/plugin-not-found-2.3.34" = { + "@oclif/plugin-not-found-2.3.36" = { name = "_at_oclif_slash_plugin-not-found"; packageName = "@oclif/plugin-not-found"; - version = "2.3.34"; + version = "2.3.36"; src = fetchurl { - url = "https://registry.npmjs.org/@oclif/plugin-not-found/-/plugin-not-found-2.3.34.tgz"; - sha512 = "uXUpw6o2e0aqnNn+XkGL7LbL+Th2rBD1JGtFbb6anmvUvz2skiGz0o23BYmrQW8tvU92ajPOykfClKD75ptZcw=="; + url = "https://registry.npmjs.org/@oclif/plugin-not-found/-/plugin-not-found-2.3.36.tgz"; + sha512 = "YMXvSpXOo13S3gNA8+0uJR6DoRQ+Bbxs06VnFpJST39RnZy51XyIAn3PYaIo6iyGoDCg+MqL+txLmhWlRLEn+w=="; }; }; "@oclif/plugin-plugins-2.4.7" = { @@ -9455,13 +9140,13 @@ let sha512 = "6fzUDLWrSK7n6+EBrEekEEYrYTCneRoOF9TzojkjuFn1+ailvUlr98G90bblxKOyy8fqMe7QjvqwTgIDQ9ZIzg=="; }; }; - "@oclif/plugin-update-3.1.28" = { + "@oclif/plugin-update-3.1.30" = { name = "_at_oclif_slash_plugin-update"; packageName = "@oclif/plugin-update"; - version = "3.1.28"; + version = "3.1.30"; src = fetchurl { - url = "https://registry.npmjs.org/@oclif/plugin-update/-/plugin-update-3.1.28.tgz"; - sha512 = "anP0kt73La0hzz9iqiBcxkXFwf7Mr+vQ+PdVnyKVTsI86yFWROFDmrBf5HSgF1rjvvGashvVGLq6hpKzSFUFJw=="; + url = "https://registry.npmjs.org/@oclif/plugin-update/-/plugin-update-3.1.30.tgz"; + sha512 = "x8EKvKcfCbh8+rZkZT0AFOUrSkPqkmbS3Bz434nfDLUmOiGh5zPajvvPhb10uod78G5j9nCoSVsc1d+MRiU/Xw=="; }; }; "@oclif/plugin-warn-if-update-available-2.0.46" = { @@ -9806,40 +9491,40 @@ let sha512 = "O2yRJce1GOc6PAy3QxFM4NzFiWzvScDC1/5ihYBL6BUEVdq0XMWN01sppE+H6bBXbaFYipjwFLEWLg5PaSOThA=="; }; }; - "@opentelemetry/core-1.15.1" = { + "@opentelemetry/core-1.15.2" = { name = "_at_opentelemetry_slash_core"; packageName = "@opentelemetry/core"; - version = "1.15.1"; + version = "1.15.2"; src = fetchurl { - url = "https://registry.npmjs.org/@opentelemetry/core/-/core-1.15.1.tgz"; - sha512 = "V6GoRTY6aANMDDOQ9CiHOiLWEK2b2b3OGZK+zk05Li5merb9jadFeV5ooTSGtjxfxVNMpQUaQERO1cdbdbeEGg=="; + url = "https://registry.npmjs.org/@opentelemetry/core/-/core-1.15.2.tgz"; + sha512 = "+gBv15ta96WqkHZaPpcDHiaz0utiiHZVfm2YOYSqFGrUaJpPkMoSuLBB58YFQGi6Rsb9EHos84X6X5+9JspmLw=="; }; }; - "@opentelemetry/resources-1.15.1" = { + "@opentelemetry/resources-1.15.2" = { name = "_at_opentelemetry_slash_resources"; packageName = "@opentelemetry/resources"; - version = "1.15.1"; + version = "1.15.2"; src = fetchurl { - url = "https://registry.npmjs.org/@opentelemetry/resources/-/resources-1.15.1.tgz"; - sha512 = "15JcpyKZHhFYQ1uiC08vR02sRY/2seSnqSJ0tIUhcdYDzOhd0FrqPYpLj3WkLhVdQP6vgJ+pelAmSaOrCxCpKA=="; + url = "https://registry.npmjs.org/@opentelemetry/resources/-/resources-1.15.2.tgz"; + sha512 = "xmMRLenT9CXmm5HMbzpZ1hWhaUowQf8UB4jMjFlAxx1QzQcsD3KFNAVX/CAWzFPtllTyTplrA4JrQ7sCH3qmYw=="; }; }; - "@opentelemetry/sdk-trace-base-1.15.1" = { + "@opentelemetry/sdk-trace-base-1.15.2" = { name = "_at_opentelemetry_slash_sdk-trace-base"; packageName = "@opentelemetry/sdk-trace-base"; - version = "1.15.1"; + version = "1.15.2"; src = fetchurl { - url = "https://registry.npmjs.org/@opentelemetry/sdk-trace-base/-/sdk-trace-base-1.15.1.tgz"; - sha512 = "5hccBe2yXzzXyExJNkTsIzDe1AM7HK0al+y/D2yEpslJqS1HUzsUSuCMY7Z4+Sfz5Gf0kTa6KYEt1QUQppnoBA=="; + url = "https://registry.npmjs.org/@opentelemetry/sdk-trace-base/-/sdk-trace-base-1.15.2.tgz"; + sha512 = "BEaxGZbWtvnSPchV98qqqqa96AOcb41pjgvhfzDij10tkBhIu9m0Jd6tZ1tJB5ZHfHbTffqYVYE0AOGobec/EQ=="; }; }; - "@opentelemetry/semantic-conventions-1.15.1" = { + "@opentelemetry/semantic-conventions-1.15.2" = { name = "_at_opentelemetry_slash_semantic-conventions"; packageName = "@opentelemetry/semantic-conventions"; - version = "1.15.1"; + version = "1.15.2"; src = fetchurl { - url = "https://registry.npmjs.org/@opentelemetry/semantic-conventions/-/semantic-conventions-1.15.1.tgz"; - sha512 = "n8Kur1/CZlYG32YCEj30CoUqA8R7UyDVZzoEU6SDP+13+kXDT2kFVu6MpcnEUTyGP3i058ID6Qjp5h6IJxdPPQ=="; + url = "https://registry.npmjs.org/@opentelemetry/semantic-conventions/-/semantic-conventions-1.15.2.tgz"; + sha512 = "CjbOKwk2s+3xPIMcd5UNYQzsf+v94RczbdNix9/kQh38WiQkM90sUOi3if8eyHFgiBjBjhwXrA7W3ydiSQP9mw=="; }; }; "@opentelemetry/semantic-conventions-1.3.1" = { @@ -10562,15 +10247,6 @@ let sha512 = "VtaY4spKTdN5LjJ04im/d/joXuvLbQdgy5Z4DXF4MFZhQ+MTrejbNMkfZBp1Bs3O5+bFqnJgyGdPuZQflvIa5A=="; }; }; - "@pkgjs/parseargs-0.11.0" = { - name = "_at_pkgjs_slash_parseargs"; - packageName = "@pkgjs/parseargs"; - version = "0.11.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz"; - sha512 = "+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg=="; - }; - }; "@playwright/test-1.36.2" = { name = "_at_playwright_slash_test"; packageName = "@playwright/test"; @@ -10787,13 +10463,13 @@ let sha512 = "J/p2PcgT39Za4wpukbN6iUkEUvL5aE7Bs9kXBeEkrjEgc0Uu7J7B2ypwx9J0qM3m3lk2273RT5/4oGv8pfFLcg=="; }; }; - "@prisma/engines-5.1.0" = { + "@prisma/engines-5.1.1" = { name = "_at_prisma_slash_engines"; packageName = "@prisma/engines"; - version = "5.1.0"; + version = "5.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/@prisma/engines/-/engines-5.1.0.tgz"; - sha512 = "HqaFsnPmZOdMWkPq6tT2eTVTQyaAXEDdKszcZ4yc7DGMBIYRP6j/zAJTtZUG9SsMV8FaucdL5vRyxY/p5Ni28g=="; + url = "https://registry.npmjs.org/@prisma/engines/-/engines-5.1.1.tgz"; + sha512 = "NV/4nVNWFZSJCCIA3HIFJbbDKO/NARc9ej0tX5S9k2EVbkrFJC4Xt9b0u4rNZWL4V+F5LAjvta8vzEUw0rw+HA=="; }; }; "@prisma/prisma-schema-wasm-5.1.0-28.a9b7003df90aa623086e4d6f4e43c72468e6339b" = { @@ -11048,13 +10724,13 @@ let sha512 = "9GWx27t7xWhDIR02PA18nzBdLcKQRgc46xNQvjFkrYk4UOmvKhJ/dawwiX0cCOeetN5LcaaiqQbVOWYK62SGHw=="; }; }; - "@redocly/openapi-core-1.0.0" = { + "@redocly/openapi-core-1.0.2" = { name = "_at_redocly_slash_openapi-core"; packageName = "@redocly/openapi-core"; - version = "1.0.0"; + version = "1.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@redocly/openapi-core/-/openapi-core-1.0.0.tgz"; - sha512 = "wECCRB0obZuepmqmIUdwU0BB+YO3ibu0sX4IMLGgqWGa7etV14Yq0zjggdcArs3ynki2tBiop7p/+Q37FtsCpw=="; + url = "https://registry.npmjs.org/@redocly/openapi-core/-/openapi-core-1.0.2.tgz"; + sha512 = "53dzhmG2bsi/8rcAAgBKk9ZLMR035VHgN7oSM3+BM4UAIoNBg6lMC/ChHSf9zO+GrX5qtuWVPqHhjjMti3SAlQ=="; }; }; "@repeaterjs/repeater-3.0.4" = { @@ -11210,103 +10886,112 @@ let sha512 = "iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ=="; }; }; - "@rushstack/heft-config-file-0.13.2" = { + "@rushstack/heft-config-file-0.13.3" = { name = "_at_rushstack_slash_heft-config-file"; packageName = "@rushstack/heft-config-file"; - version = "0.13.2"; + version = "0.13.3"; src = fetchurl { - url = "https://registry.npmjs.org/@rushstack/heft-config-file/-/heft-config-file-0.13.2.tgz"; - sha512 = "eJCuVnKR+uSG7qyeyICA57IOBD3OoOlNTpsJgNjcZZiTj+ZlKPaGmJ8/mzXwNiEpTIlRsVvoQURYFz9QY9sfnQ=="; + url = "https://registry.npmjs.org/@rushstack/heft-config-file/-/heft-config-file-0.13.3.tgz"; + sha512 = "r9tmesrmnjw6hdXfBGQ0Dc58eLu7kJcgY2JWJmO9s6kpx1b/fhvHpXj1x+pSLp5f+R5ZB3ELezYfrQK0SOCEvg=="; }; }; - "@rushstack/node-core-library-3.59.6" = { + "@rushstack/node-core-library-3.59.7" = { name = "_at_rushstack_slash_node-core-library"; packageName = "@rushstack/node-core-library"; - version = "3.59.6"; + version = "3.59.7"; src = fetchurl { - url = "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.59.6.tgz"; - sha512 = "bMYJwNFfWXRNUuHnsE9wMlW/mOB4jIwSUkRKtu02CwZhQdmzMsUbxE0s1xOLwTpNIwlzfW/YT7OnOHgDffLgYg=="; + url = "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-3.59.7.tgz"; + sha512 = "ln1Drq0h+Hwa1JVA65x5mlSgUrBa1uHL+V89FqVWQgXd1vVIMhrtqtWGQrhTnFHxru5ppX+FY39VWELF/FjQCw=="; }; }; - "@rushstack/package-deps-hash-4.0.41" = { + "@rushstack/package-deps-hash-4.0.44" = { name = "_at_rushstack_slash_package-deps-hash"; packageName = "@rushstack/package-deps-hash"; - version = "4.0.41"; + version = "4.0.44"; src = fetchurl { - url = "https://registry.npmjs.org/@rushstack/package-deps-hash/-/package-deps-hash-4.0.41.tgz"; - sha512 = "bx1g0I54BidJuIqyQHY2Vr4Azn2ThLgrc6hHjEIBzIVmXeznZxJfYViAPNFAu7BV/TaLIU1BSYeRn/yObu9KZA=="; + url = "https://registry.npmjs.org/@rushstack/package-deps-hash/-/package-deps-hash-4.0.44.tgz"; + sha512 = "3TicOuPpDOyl1wWvkaFwYvMgvC2tiqBIZkNbYuSntYCu4i5dh1wUC07Rfnm/K7s3/gNJgZCvOLIxetvUqfv0hg=="; }; }; - "@rushstack/package-extractor-0.3.11" = { + "@rushstack/package-extractor-0.4.1" = { name = "_at_rushstack_slash_package-extractor"; packageName = "@rushstack/package-extractor"; - version = "0.3.11"; + version = "0.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@rushstack/package-extractor/-/package-extractor-0.3.11.tgz"; - sha512 = "j5hRGB/ilCozT7qH5q3swM/xdf/TPFtolWkqciYCU8G8WFXxILbN2nwo4goWyWQaD9hFlCiw9S7z8LTEkSmapQ=="; + url = "https://registry.npmjs.org/@rushstack/package-extractor/-/package-extractor-0.4.1.tgz"; + sha512 = "KbTeAhp9wMi+IIOys7arqscNwlaIJbIba6H4t7oNMHGUMiVabB5DYCQeS0a6yAuhB1bMKX3k9hB3aTgdzW6f0g=="; }; }; - "@rushstack/rig-package-0.4.0" = { + "@rushstack/rig-package-0.4.1" = { name = "_at_rushstack_slash_rig-package"; packageName = "@rushstack/rig-package"; - version = "0.4.0"; + version = "0.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@rushstack/rig-package/-/rig-package-0.4.0.tgz"; - sha512 = "FnM1TQLJYwSiurP6aYSnansprK5l8WUK8VG38CmAaZs29ZeL1msjK0AP1VS4ejD33G0kE/2cpsPsS9jDenBMxw=="; + url = "https://registry.npmjs.org/@rushstack/rig-package/-/rig-package-0.4.1.tgz"; + sha512 = "AGRwpqlXNSp9LhUSz4HKI9xCluqQDt/obsQFdv/NYIekF3pTTPzc+HbQsIsjVjYnJ3DcmxOREVMhvrMEjpiq6g=="; }; }; - "@rushstack/rush-amazon-s3-build-cache-plugin-5.100.2" = { + "@rushstack/rush-amazon-s3-build-cache-plugin-5.101.0" = { name = "_at_rushstack_slash_rush-amazon-s3-build-cache-plugin"; packageName = "@rushstack/rush-amazon-s3-build-cache-plugin"; - version = "5.100.2"; + version = "5.101.0"; src = fetchurl { - url = "https://registry.npmjs.org/@rushstack/rush-amazon-s3-build-cache-plugin/-/rush-amazon-s3-build-cache-plugin-5.100.2.tgz"; - sha512 = "A49NzlRDcp0Hd5WZWN8jvnvI+0MoFOdRXL3iutVI12YAYBH6c7uSul+71MMY83x0yQqk4TcfGYVpFWx1j/n8/Q=="; + url = "https://registry.npmjs.org/@rushstack/rush-amazon-s3-build-cache-plugin/-/rush-amazon-s3-build-cache-plugin-5.101.0.tgz"; + sha512 = "En065l+dUSQKNFBPRTK1f9HI3UY5VTBO13Sormoe7YQHJAdWqLgnqSvxEzytqhlFfp/bqdFvOKOPW1AtKFJmUA=="; }; }; - "@rushstack/rush-azure-storage-build-cache-plugin-5.100.2" = { + "@rushstack/rush-azure-storage-build-cache-plugin-5.101.0" = { name = "_at_rushstack_slash_rush-azure-storage-build-cache-plugin"; packageName = "@rushstack/rush-azure-storage-build-cache-plugin"; - version = "5.100.2"; + version = "5.101.0"; src = fetchurl { - url = "https://registry.npmjs.org/@rushstack/rush-azure-storage-build-cache-plugin/-/rush-azure-storage-build-cache-plugin-5.100.2.tgz"; - sha512 = "FIAvmIfYLWhnygDCyUWSZOuyTWVRLFHYeG9xPmUpwJSPqxUL3HG5cRGVYlyRgK9oSJSEq+g0mpbe7nE8WwJgtg=="; + url = "https://registry.npmjs.org/@rushstack/rush-azure-storage-build-cache-plugin/-/rush-azure-storage-build-cache-plugin-5.101.0.tgz"; + sha512 = "3zloPj7AaRh4oua7+SomfWeeAPpXfqt5R3FDIl2Irpq7q0mtz8TH4pAsGeGKP8jZXQAvTBwaC851mfizqZXBWQ=="; }; }; - "@rushstack/rush-sdk-5.100.2" = { + "@rushstack/rush-http-build-cache-plugin-5.101.0" = { + name = "_at_rushstack_slash_rush-http-build-cache-plugin"; + packageName = "@rushstack/rush-http-build-cache-plugin"; + version = "5.101.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@rushstack/rush-http-build-cache-plugin/-/rush-http-build-cache-plugin-5.101.0.tgz"; + sha512 = "IPVmbePUzQflYYplhetGMorlMth7p9cflaFxf7ui2YfOQ32noaubOoxiunLbV4GjcwNml/6FIi0kd8pJ4XsFMA=="; + }; + }; + "@rushstack/rush-sdk-5.101.0" = { name = "_at_rushstack_slash_rush-sdk"; packageName = "@rushstack/rush-sdk"; - version = "5.100.2"; + version = "5.101.0"; src = fetchurl { - url = "https://registry.npmjs.org/@rushstack/rush-sdk/-/rush-sdk-5.100.2.tgz"; - sha512 = "+4DKbXj6R8vilRYswH8Lb+WIuIoD29/ZjMmazKBKXJTm3x7sgGJy45ozAZbfeXvdOTzqsg11NzIbwaDm8rRhLQ=="; + url = "https://registry.npmjs.org/@rushstack/rush-sdk/-/rush-sdk-5.101.0.tgz"; + sha512 = "irha++RUNVvFiss8L0zL+FvbeI+ZXd5lZX1gjvzUpmVhIY2v6JCCRiZ4iyu53RzSdVrAdY2dzwsRtIXFVlsUXw=="; }; }; - "@rushstack/stream-collator-4.0.259" = { + "@rushstack/stream-collator-4.0.262" = { name = "_at_rushstack_slash_stream-collator"; packageName = "@rushstack/stream-collator"; - version = "4.0.259"; + version = "4.0.262"; src = fetchurl { - url = "https://registry.npmjs.org/@rushstack/stream-collator/-/stream-collator-4.0.259.tgz"; - sha512 = "UfMRCp1avkUUs9pdtWQ8ZE8Nmuxeuw1a9bjLQ7cQJ3meuv8iDxKuxsyJRfrwIfCkVkNVw5OJ9eM6E/edUPP7qw=="; + url = "https://registry.npmjs.org/@rushstack/stream-collator/-/stream-collator-4.0.262.tgz"; + sha512 = "3qcNzW7mVcqNG0bZLjNec1LcdavDQhJ2uUIvyaGDqddgwsVCD6FGwd+lomTgZtp5ukQu6mReMJ5Xs0TW8ckdiA=="; }; }; - "@rushstack/terminal-0.5.34" = { + "@rushstack/terminal-0.5.37" = { name = "_at_rushstack_slash_terminal"; packageName = "@rushstack/terminal"; - version = "0.5.34"; + version = "0.5.37"; src = fetchurl { - url = "https://registry.npmjs.org/@rushstack/terminal/-/terminal-0.5.34.tgz"; - sha512 = "Q7YDkPTsvJZpHapapo5sK2VCxW7byoqhK89tXMUiva6dNwelomgEe0S+njKw4vcmGde4hQD7LAqQPJPYFeU4mw=="; + url = "https://registry.npmjs.org/@rushstack/terminal/-/terminal-0.5.37.tgz"; + sha512 = "Jh5HKBqnaBBn8DhwsIrp3NsBt/e1oiGhAUUnPKalhTLvWZZp0C5NRHC1mCZ/EocdBYoDtm7QFRszUZyfuO+HOQ=="; }; }; - "@rushstack/ts-command-line-4.15.1" = { + "@rushstack/ts-command-line-4.15.2" = { name = "_at_rushstack_slash_ts-command-line"; packageName = "@rushstack/ts-command-line"; - version = "4.15.1"; + version = "4.15.2"; src = fetchurl { - url = "https://registry.npmjs.org/@rushstack/ts-command-line/-/ts-command-line-4.15.1.tgz"; - sha512 = "EL4jxZe5fhb1uVL/P/wQO+Z8Rc8FMiWJ1G7VgnPDvdIt5GVjRfK7vwzder1CZQiX3x0PY6uxENYLNGTFd1InRQ=="; + url = "https://registry.npmjs.org/@rushstack/ts-command-line/-/ts-command-line-4.15.2.tgz"; + sha512 = "5+C2uoJY8b+odcZD6coEe2XNC4ZjGB4vCMESbqW/8DHRWC/qIHfANdmN9F1wz/lAgxz72i7xRoVtPY2j7e4gpQ=="; }; }; "@sailshq/lodash-3.10.4" = { @@ -11336,13 +11021,13 @@ let sha512 = "c/qwwcHyafOQuVQJj0IlBjf5yYgBI7YPJ77k4fOJYesb41jio65eaJODRUmfYKhTOFBrIZ66kgvGPlNbjuoRdQ=="; }; }; - "@schematics/angular-16.1.6" = { + "@schematics/angular-16.2.0" = { name = "_at_schematics_slash_angular"; packageName = "@schematics/angular"; - version = "16.1.6"; + version = "16.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/@schematics/angular/-/angular-16.1.6.tgz"; - sha512 = "BxghkeLfnMgV0D4DZDcbfPpox/Orw1ismSVGoQMIV/Daj2pqfSK+n97NAu0r0EsQyR5agPxOX9khVft+otODhg=="; + url = "https://registry.npmjs.org/@schematics/angular/-/angular-16.2.0.tgz"; + sha512 = "Ib0/ZCkjWt7a5p3209JVwEWwf41v03K3ylvlxLIEo1ZGijAZAlrBj4GrA5YQ+TmPm2hRyt+owss7x91/x+i0Gw=="; }; }; "@scure/base-1.1.1" = { @@ -11390,13 +11075,22 @@ let sha512 = "P33hHGdldxGabLFjPPpaTxVolMrzrcegejx+0GxjrIb9Zv48D8yAIA/QTDR2dFl7Uz7urX8aX6+5bCZslr+gWQ=="; }; }; - "@sentry-internal/tracing-7.61.0" = { + "@sentry-internal/tracing-7.62.0" = { name = "_at_sentry-internal_slash_tracing"; packageName = "@sentry-internal/tracing"; - version = "7.61.0"; + version = "7.62.0"; src = fetchurl { - url = "https://registry.npmjs.org/@sentry-internal/tracing/-/tracing-7.61.0.tgz"; - sha512 = "zTr+MXEG4SxNxif42LIgm2RQn+JRXL2NuGhRaKSD2i4lXKFqHVGlVdoWqY5UfqnnJPokiTWIj9ejR8I5HV8Ogw=="; + url = "https://registry.npmjs.org/@sentry-internal/tracing/-/tracing-7.62.0.tgz"; + sha512 = "LHT8i2c93JhQ1uBU1cqb5AIhmHPWlyovE4ZQjqEizk6Fk7jXc9L8kKhaIWELVPn8Xg6YtfGWhRBZk3ssj4JpfQ=="; + }; + }; + "@sentry-internal/tracing-7.63.0" = { + name = "_at_sentry-internal_slash_tracing"; + packageName = "@sentry-internal/tracing"; + version = "7.63.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@sentry-internal/tracing/-/tracing-7.63.0.tgz"; + sha512 = "Fxpc53p6NGvLSURg3iRvZA0k10K9yfeVhtczvJnpX30POBuV41wxpkLHkb68fjksirjEma1K3Ut1iLOEEDpPQg=="; }; }; "@sentry/core-6.19.7" = { @@ -11408,13 +11102,22 @@ let sha512 = "tOfZ/umqB2AcHPGbIrsFLcvApdTm9ggpi/kQZFkej7kMphjT+SGBiQfYtjyg9jcRW+ilAR4JXC9BGKsdEQ+8Vw=="; }; }; - "@sentry/core-7.61.0" = { + "@sentry/core-7.62.0" = { name = "_at_sentry_slash_core"; packageName = "@sentry/core"; - version = "7.61.0"; + version = "7.62.0"; src = fetchurl { - url = "https://registry.npmjs.org/@sentry/core/-/core-7.61.0.tgz"; - sha512 = "zl0ZKRjIoYJQWYTd3K/U6zZfS4GDY9yGd2EH4vuYO4kfYtEp/nJ8A+tfAeDo0c9FGxZ0Q+5t5F4/SfwbgyyQzg=="; + url = "https://registry.npmjs.org/@sentry/core/-/core-7.62.0.tgz"; + sha512 = "l6n+c3mSlWa+FhT/KBrAU1BtbaLYCljf5MuGlH6NKRpnBcrZCbzk8ZuFcSND+gr2SqxycQkhEWX1zxVHPDdZxw=="; + }; + }; + "@sentry/core-7.63.0" = { + name = "_at_sentry_slash_core"; + packageName = "@sentry/core"; + version = "7.63.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@sentry/core/-/core-7.63.0.tgz"; + sha512 = "13Ljiq8hv6ieCkO+Am99/PljYJO5ynKT/hRQrWgGy9IIEgUr8sV3fW+1W6K4/3MCeOJou0HsiGBjOD1mASItVg=="; }; }; "@sentry/hub-6.19.7" = { @@ -11426,13 +11129,13 @@ let sha512 = "y3OtbYFAqKHCWezF0EGGr5lcyI2KbaXW2Ik7Xp8Mu9TxbSTuwTe4rTntwg8ngPjUQU3SUHzgjqVB8qjiGqFXCA=="; }; }; - "@sentry/integrations-7.61.0" = { + "@sentry/integrations-7.63.0" = { name = "_at_sentry_slash_integrations"; packageName = "@sentry/integrations"; - version = "7.61.0"; + version = "7.63.0"; src = fetchurl { - url = "https://registry.npmjs.org/@sentry/integrations/-/integrations-7.61.0.tgz"; - sha512 = "NEQ+CatBfUM1TmA4FOOyHfsMvSIwSg4pA55Lxiq9quDykzkEtrXFzUfFpZbTunz4cegG8hucPOqbzKFrDPfGjQ=="; + url = "https://registry.npmjs.org/@sentry/integrations/-/integrations-7.63.0.tgz"; + sha512 = "+P8GNqFZNH/yS/KPbvUfUDERneoRNUrqp9ayvvp8aq4cTtrBdM72CYgI21oG6cti42SSM1VDLYZomTV3ElPzSg=="; }; }; "@sentry/minimal-6.19.7" = { @@ -11453,13 +11156,22 @@ let sha512 = "gtmRC4dAXKODMpHXKfrkfvyBL3cI8y64vEi3fDD046uqYcrWdgoQsffuBbxMAizc6Ez1ia+f0Flue6p15Qaltg=="; }; }; - "@sentry/node-7.61.0" = { + "@sentry/node-7.62.0" = { name = "_at_sentry_slash_node"; packageName = "@sentry/node"; - version = "7.61.0"; + version = "7.62.0"; src = fetchurl { - url = "https://registry.npmjs.org/@sentry/node/-/node-7.61.0.tgz"; - sha512 = "oTCqD/h92uvbRCrtCdiAqN6Mfe3vF7ywVHZ8Nq3hHmJp6XadUT+fCBwNQ7rjMyqJAOYAnx/vp6iN9n8C5qcYZQ=="; + url = "https://registry.npmjs.org/@sentry/node/-/node-7.62.0.tgz"; + sha512 = "2z1JmYV97eJ8zwshJA15hppjRdUeMhbaL8LSsbdtx7vTMmjuaIGfPR4EnI4Fhuw+J1Nnf5sE/CRKpZCCa74vXw=="; + }; + }; + "@sentry/node-7.63.0" = { + name = "_at_sentry_slash_node"; + packageName = "@sentry/node"; + version = "7.63.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@sentry/node/-/node-7.63.0.tgz"; + sha512 = "tSMyfQNbfjX1w8vJDZtvWeaD4QQ/Z4zVW/TLXfL/JZFIIksPgDZmqLdF+NJS4bSGTU5JiHiUh4pYhME4mHgNBQ=="; }; }; "@sentry/types-6.19.7" = { @@ -11471,13 +11183,22 @@ let sha512 = "jH84pDYE+hHIbVnab3Hr+ZXr1v8QABfhx39KknxqKWr2l0oEItzepV0URvbEhB446lk/S/59230dlUUIBGsXbg=="; }; }; - "@sentry/types-7.61.0" = { + "@sentry/types-7.62.0" = { name = "_at_sentry_slash_types"; packageName = "@sentry/types"; - version = "7.61.0"; + version = "7.62.0"; src = fetchurl { - url = "https://registry.npmjs.org/@sentry/types/-/types-7.61.0.tgz"; - sha512 = "/GLlIBNR35NKPE/SfWi9W10dK9hE8qTShzsuPVn5wAJxpT3Lb4+dkwmKCTLUYxdkmvRDEudkfOxgalsfQGTAWA=="; + url = "https://registry.npmjs.org/@sentry/types/-/types-7.62.0.tgz"; + sha512 = "oPy/fIT3o2VQWLTq01R2W/jt13APYMqZCVa0IT3lF9lgxzgfTbeZl3nX2FgCcc8ntDZC0dVw03dL+wLvjPqQpQ=="; + }; + }; + "@sentry/types-7.63.0" = { + name = "_at_sentry_slash_types"; + packageName = "@sentry/types"; + version = "7.63.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@sentry/types/-/types-7.63.0.tgz"; + sha512 = "pZNwJVW7RqNLGuTUAhoygt0c9zmc0js10eANAz0MstygJRhQI1tqPDuiELVdujPrbeL+IFKF+7NvRDAydR2Niw=="; }; }; "@sentry/utils-6.19.7" = { @@ -11489,13 +11210,22 @@ let sha512 = "z95ECmE3i9pbWoXQrD/7PgkBAzJYR+iXtPuTkpBjDKs86O3mT+PXOT3BAn79w2wkn7/i3vOGD2xVr1uiMl26dA=="; }; }; - "@sentry/utils-7.61.0" = { + "@sentry/utils-7.62.0" = { name = "_at_sentry_slash_utils"; packageName = "@sentry/utils"; - version = "7.61.0"; + version = "7.62.0"; src = fetchurl { - url = "https://registry.npmjs.org/@sentry/utils/-/utils-7.61.0.tgz"; - sha512 = "jfj14d0XBFiCU0G6dZZ12SizATiF5Mt4stBGzkM5iS9nXFj8rh1oTT7/p+aZoYzP2JTF+sDzkNjWxyKZkcTo0Q=="; + url = "https://registry.npmjs.org/@sentry/utils/-/utils-7.62.0.tgz"; + sha512 = "12w+Lpvn2iaocgjf6AxhtBz7XG8iFE5aMyt9BTuQp1/7sOjtEVNHlDlGrHbtPqxNCmL2SEcmNHka1panLqWHDw=="; + }; + }; + "@sentry/utils-7.63.0" = { + name = "_at_sentry_slash_utils"; + packageName = "@sentry/utils"; + version = "7.63.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@sentry/utils/-/utils-7.63.0.tgz"; + sha512 = "7FQv1RYAwnuTuarruP+1+Jd6YQuN7i/Y7KltwPMVEwU7j5mzYQaexLr/Jz1XIdR2KYVdkbXQyP8jj8BmA6u9Jw=="; }; }; "@serialport/binding-mock-10.2.2" = { @@ -11660,22 +11390,22 @@ let sha512 = "yokWzlsIaAd3TWzNgIDz6l8HZmtYZs9caaLuheZ0IiZ/bDWSCLBWn84HKkdWZOmFnYxejyPNJEOwE59mtSR3Ow=="; }; }; - "@shopify/cli-kit-3.48.0" = { + "@shopify/cli-kit-3.48.1" = { name = "_at_shopify_slash_cli-kit"; packageName = "@shopify/cli-kit"; - version = "3.48.0"; + version = "3.48.1"; src = fetchurl { - url = "https://registry.npmjs.org/@shopify/cli-kit/-/cli-kit-3.48.0.tgz"; - sha512 = "UQ1gmtQluS42UpVPJCyxNRi+v8pXICXJLGAm/v95NCQAjy6XWsf7AhyrfABlnXOc7ajKxmF2G1DFaswHoIGQVQ=="; + url = "https://registry.npmjs.org/@shopify/cli-kit/-/cli-kit-3.48.1.tgz"; + sha512 = "tRplafTFt7x/VOorC+YuM+Eeb0xfeg6vQ4z7S4gElpOLG+dtGHmbK3qQ3DiUznuEtWXK1xOnnBHjVYCqBljeuA=="; }; }; - "@shopify/plugin-did-you-mean-3.48.0" = { + "@shopify/plugin-did-you-mean-3.48.1" = { name = "_at_shopify_slash_plugin-did-you-mean"; packageName = "@shopify/plugin-did-you-mean"; - version = "3.48.0"; + version = "3.48.1"; src = fetchurl { - url = "https://registry.npmjs.org/@shopify/plugin-did-you-mean/-/plugin-did-you-mean-3.48.0.tgz"; - sha512 = "SL/75M8cpoOQop857PfZQ5gJ3sF/cg4oMFaJQlLjVKM4P0ZFVS/0myj3WLzxVF3QQHzdf/h+yS+KnoC7dykBNw=="; + url = "https://registry.npmjs.org/@shopify/plugin-did-you-mean/-/plugin-did-you-mean-3.48.1.tgz"; + sha512 = "aYTw7YiEQ+VS/WBtgIJXM5aqaiG7XmHbt/QtsoG1gKnadetoOtatwtHLX4k6wYbZ2H5Q9yFpUG5wzgBwmRzxqQ=="; }; }; "@sideway/address-4.1.4" = { @@ -11714,6 +11444,15 @@ let sha512 = "yLvrWDOh6uMOUlFCTJIZEnwOT9Xte7NPXUqVexEKGSF5XtBAuSg5du0kn3dRR0p47a4ah10Y0mNt8+uyeQXrBQ=="; }; }; + "@sigstore/bundle-1.1.0" = { + name = "_at_sigstore_slash_bundle"; + packageName = "@sigstore/bundle"; + version = "1.1.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@sigstore/bundle/-/bundle-1.1.0.tgz"; + sha512 = "PFutXEy0SmQxYI4texPw3dd2KewuNqv7OuK1ZFtY2fM754yhvG2KdgwIhRnoEE2uHdtdGNQ8s0lb94dW9sELog=="; + }; + }; "@sigstore/protobuf-specs-0.2.0" = { name = "_at_sigstore_slash_protobuf-specs"; packageName = "@sigstore/protobuf-specs"; @@ -11723,6 +11462,15 @@ let sha512 = "8ZhZKAVfXjIspDWwm3D3Kvj0ddbJ0HqDZ/pOs5cx88HpT8mVsotFrg7H1UMnXOuDHz6Zykwxn4mxG3QLuN+RUg=="; }; }; + "@sigstore/sign-1.0.0" = { + name = "_at_sigstore_slash_sign"; + packageName = "@sigstore/sign"; + version = "1.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@sigstore/sign/-/sign-1.0.0.tgz"; + sha512 = "INxFVNQteLtcfGmcoldzV6Je0sbbfh9I16DM4yJPw3j5+TFP8X6uIiA18mvpEa9yyeycAKgPmOA3X9hVdVTPUA=="; + }; + }; "@sigstore/tuf-1.0.3" = { name = "_at_sigstore_slash_tuf"; packageName = "@sigstore/tuf"; @@ -11849,13 +11597,13 @@ let sha512 = "CWr7a3rTVrN5Vs8GYReRAvTourbXHOqB1zglcskj05ICH4GZL5BOAza2ARai+qc3Nz0nY08Bozi1x0014KOqlg=="; }; }; - "@smithy/abort-controller-2.0.1" = { + "@smithy/abort-controller-2.0.2" = { name = "_at_smithy_slash_abort-controller"; packageName = "@smithy/abort-controller"; - version = "2.0.1"; + version = "2.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@smithy/abort-controller/-/abort-controller-2.0.1.tgz"; - sha512 = "0s7XjIbsTwZyUW9OwXQ8J6x1UiA1TNCh60Vaw56nHahL7kUZsLhmTlWiaxfLkFtO2Utkj8YewcpHTYpxaTzO+w=="; + url = "https://registry.npmjs.org/@smithy/abort-controller/-/abort-controller-2.0.2.tgz"; + sha512 = "ln5Cob0mksym62sLr7NiPOSqJ0jKao4qjfcNLDdgINM1lQI12hXrZBlKdPHbXJqpKhKiECDgonMoqCM8bigq4g=="; }; }; "@smithy/chunked-blob-reader-2.0.0" = { @@ -11876,112 +11624,112 @@ let sha512 = "HM8V2Rp1y8+1343tkZUKZllFhEQPNmpNdgFAncbTsxkZ18/gqjk23XXv3qGyXWp412f3o43ZZ1UZHVcHrpRnCQ=="; }; }; - "@smithy/config-resolver-2.0.1" = { + "@smithy/config-resolver-2.0.2" = { name = "_at_smithy_slash_config-resolver"; packageName = "@smithy/config-resolver"; - version = "2.0.1"; + version = "2.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-2.0.1.tgz"; - sha512 = "l83Pm7hV+8CBQOCmBRopWDtF+CURUJol7NsuPYvimiDhkC2F8Ba9T1imSFE+pD1UIJ9jlsDPAnZfPJT5cjnuEw=="; + url = "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-2.0.2.tgz"; + sha512 = "0kdsqBL6BdmSbdU6YaDkodVBMua5MuQQluC3nocJ7OJ6PnOuM7i2FEQHE46LBadLqT+CimlDSM+6j91uHNL1ng=="; }; }; - "@smithy/credential-provider-imds-2.0.1" = { + "@smithy/credential-provider-imds-2.0.2" = { name = "_at_smithy_slash_credential-provider-imds"; packageName = "@smithy/credential-provider-imds"; - version = "2.0.1"; + version = "2.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-2.0.1.tgz"; - sha512 = "8VxriuRINNEfVZjEFKBY75y9ZWAx73DZ5K/u+3LmB6r8WR2h3NaFxFKMlwlq0uzNdGhD1ouKBn9XWEGYHKiPLw=="; + url = "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-2.0.2.tgz"; + sha512 = "mbWFYEZ00LBRDk3WvcXViwpdpkJQcfrM3seuKzFxZnF6wIBLMwrcWcsj+OUC/1L+86m8aQY9imXMAaQsAoGxow=="; }; }; - "@smithy/eventstream-codec-2.0.1" = { + "@smithy/eventstream-codec-2.0.2" = { name = "_at_smithy_slash_eventstream-codec"; packageName = "@smithy/eventstream-codec"; - version = "2.0.1"; + version = "2.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@smithy/eventstream-codec/-/eventstream-codec-2.0.1.tgz"; - sha512 = "/IiNB7gQM2y2ZC/GAWOWDa8+iXfhr1g9Xe5979cQEOdCWDISvrAiv18cn3OtIQUhbYOR3gm7QtCpkq1to2takQ=="; + url = "https://registry.npmjs.org/@smithy/eventstream-codec/-/eventstream-codec-2.0.2.tgz"; + sha512 = "PQZiKx7fMnNwx4zxcUCm82VjnqK6wV4MEHSmMy3taj5dKfXV782IjRGyaDT+8TsmNqVdZIkve5zLRAzh+7kOhA=="; }; }; - "@smithy/eventstream-serde-browser-2.0.1" = { + "@smithy/eventstream-serde-browser-2.0.2" = { name = "_at_smithy_slash_eventstream-serde-browser"; packageName = "@smithy/eventstream-serde-browser"; - version = "2.0.1"; + version = "2.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@smithy/eventstream-serde-browser/-/eventstream-serde-browser-2.0.1.tgz"; - sha512 = "9E1/6ZGF7nB/Td3G1kcatU7VjjP8eZ/p/Q+0KsZc1AUPyv4lR15pmWnWj3iGBEGYI9qZBJ/7a/wPEPayabmA3Q=="; + url = "https://registry.npmjs.org/@smithy/eventstream-serde-browser/-/eventstream-serde-browser-2.0.2.tgz"; + sha512 = "qaHlcFI+ILE+gZV2B/aZMVXc9LG4v1Owa20dHlP0dLOiJ9WByOjtD2qZmYA/HO4qkkDZHEL/0baWc63aqLCHKQ=="; }; }; - "@smithy/eventstream-serde-config-resolver-2.0.1" = { + "@smithy/eventstream-serde-config-resolver-2.0.2" = { name = "_at_smithy_slash_eventstream-serde-config-resolver"; packageName = "@smithy/eventstream-serde-config-resolver"; - version = "2.0.1"; + version = "2.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@smithy/eventstream-serde-config-resolver/-/eventstream-serde-config-resolver-2.0.1.tgz"; - sha512 = "J8a+8HH8oDPIgq8Px/nPLfu9vpIjQ7XUPtP3orbs8KUh0GznNthSTy1xZP5RXjRqGQEkxPvsHf1po2+QOsgNFw=="; + url = "https://registry.npmjs.org/@smithy/eventstream-serde-config-resolver/-/eventstream-serde-config-resolver-2.0.2.tgz"; + sha512 = "iVC7/NFNWfSXllAxFNUuC4QlREdZjMmAOdISb6fwny/4mUDt1EtYLCrXq7gN1mIzhRPwMpL9YvQ8jpgvfA0Jdw=="; }; }; - "@smithy/eventstream-serde-node-2.0.1" = { + "@smithy/eventstream-serde-node-2.0.2" = { name = "_at_smithy_slash_eventstream-serde-node"; packageName = "@smithy/eventstream-serde-node"; - version = "2.0.1"; + version = "2.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@smithy/eventstream-serde-node/-/eventstream-serde-node-2.0.1.tgz"; - sha512 = "wklowUz0zXJuqC7FMpriz66J8OAko3z6INTg+iMJWYB1bWv4pc5V7q36PxlZ0RKRbj0u+EThlozWgzE7Stz2Sw=="; + url = "https://registry.npmjs.org/@smithy/eventstream-serde-node/-/eventstream-serde-node-2.0.2.tgz"; + sha512 = "p7py8jDpIS1bRewskwgEgJx1OkFvockA2bJnXtOAPJib42DtyRpp8oV14s2ZpjMq57r9KMCQy2j02g554DNavg=="; }; }; - "@smithy/eventstream-serde-universal-2.0.1" = { + "@smithy/eventstream-serde-universal-2.0.2" = { name = "_at_smithy_slash_eventstream-serde-universal"; packageName = "@smithy/eventstream-serde-universal"; - version = "2.0.1"; + version = "2.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@smithy/eventstream-serde-universal/-/eventstream-serde-universal-2.0.1.tgz"; - sha512 = "WPPylIgVZ6wOYVgpF0Rs1LlocYyj248MRtKEEehnDvC+0tV7wmGt7H/SchCh10W4y4YUxuzPlW+mUvVMGmLSVg=="; + url = "https://registry.npmjs.org/@smithy/eventstream-serde-universal/-/eventstream-serde-universal-2.0.2.tgz"; + sha512 = "zf/hm5VIDsvl+XpI1rop4xwXLKiBUe5pxgjRFdHi7AC1p6Zc8uJfyCExLiMUP/QspoIrVV1xGwFFxRCeddDH3g=="; }; }; - "@smithy/fetch-http-handler-2.0.1" = { + "@smithy/fetch-http-handler-2.0.2" = { name = "_at_smithy_slash_fetch-http-handler"; packageName = "@smithy/fetch-http-handler"; - version = "2.0.1"; + version = "2.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-2.0.1.tgz"; - sha512 = "/SoU/ClazgcdOxgE4zA7RX8euiELwpsrKCSvulVQvu9zpmqJRyEJn8ZTWYFV17/eHOBdHTs9kqodhNhsNT+cUw=="; + url = "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-2.0.2.tgz"; + sha512 = "Wo2m1RaiXNSLF4J3D62LpdSoj/YYb+6tn0H8is1tSrzr7eXAdiYVBc0wIa23N0wT4zmN0iG/yNY6gTCDQ6799A=="; }; }; - "@smithy/hash-blob-browser-2.0.1" = { + "@smithy/hash-blob-browser-2.0.2" = { name = "_at_smithy_slash_hash-blob-browser"; packageName = "@smithy/hash-blob-browser"; - version = "2.0.1"; + version = "2.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@smithy/hash-blob-browser/-/hash-blob-browser-2.0.1.tgz"; - sha512 = "i/o2+sHb4jDRz5nf2ilTTbC0nVmm4LO//FbODCAB7pbzMdywxbZ6z+q56FmEa8R+aFbtApxQ1SJ3umEiNz6IPg=="; + url = "https://registry.npmjs.org/@smithy/hash-blob-browser/-/hash-blob-browser-2.0.2.tgz"; + sha512 = "CmVGWbiyiEySGDRg3o2C3DLZYW+mH8fMoIEZrmwnBM8bQsepZGOME40tbpvv12BIhZIInJV8srMMHpQ6aKObLA=="; }; }; - "@smithy/hash-node-2.0.1" = { + "@smithy/hash-node-2.0.2" = { name = "_at_smithy_slash_hash-node"; packageName = "@smithy/hash-node"; - version = "2.0.1"; + version = "2.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@smithy/hash-node/-/hash-node-2.0.1.tgz"; - sha512 = "oTKYimQdF4psX54ZonpcIE+MXjMUWFxLCNosjPkJPFQ9whRX0K/PFX/+JZGRQh3zO9RlEOEUIbhy9NO+Wha6hw=="; + url = "https://registry.npmjs.org/@smithy/hash-node/-/hash-node-2.0.2.tgz"; + sha512 = "JKDzZ1YVR7JzOBaJoWy3ToJCE86OQE6D4kOBvvVsu93a3lcF9kv6KYTKBYEWAjwOn/CpK4NH7mKB01OQ8H+aiA=="; }; }; - "@smithy/hash-stream-node-2.0.1" = { + "@smithy/hash-stream-node-2.0.2" = { name = "_at_smithy_slash_hash-stream-node"; packageName = "@smithy/hash-stream-node"; - version = "2.0.1"; + version = "2.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@smithy/hash-stream-node/-/hash-stream-node-2.0.1.tgz"; - sha512 = "AequnQdPRuXf4AuvvFlSjnkWI460xxhAd6y362gFtOE4jjJLLXblbMAXVFrkV8/pDMGNjpVegVSpRmHXZsbKhg=="; + url = "https://registry.npmjs.org/@smithy/hash-stream-node/-/hash-stream-node-2.0.2.tgz"; + sha512 = "cDfGE81BbykXKZ50+eLU5Yat8WGiDFQpNa+5S3AfDIzz5h4D73DpxWwcwV4qYB7GoAw2chFqTCAGWgU/MgRS9g=="; }; }; - "@smithy/invalid-dependency-2.0.1" = { + "@smithy/invalid-dependency-2.0.2" = { name = "_at_smithy_slash_invalid-dependency"; packageName = "@smithy/invalid-dependency"; - version = "2.0.1"; + version = "2.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@smithy/invalid-dependency/-/invalid-dependency-2.0.1.tgz"; - sha512 = "2q/Eb0AE662zwyMV+z+TL7deBwcHCgaZZGc0RItamBE8kak3MzCi/EZCNoFWoBfxgQ4jfR12wm8KKsSXhJzJtQ=="; + url = "https://registry.npmjs.org/@smithy/invalid-dependency/-/invalid-dependency-2.0.2.tgz"; + sha512 = "inQZQ5gCO3WRWuXpsc1YJ4KBjsvj2qsoU32yTIKznBWTCQe/D5Dp+sSaysqBqxe0VTZ+8nFEHdUMWUX2BxQThw=="; }; }; "@smithy/is-array-buffer-2.0.0" = { @@ -11993,49 +11741,49 @@ let sha512 = "z3PjFjMyZNI98JFRJi/U0nGoLWMSJlDjAW4QUX2WNZLas5C0CmVV6LJ01JI0k90l7FvpmixjWxPFmENSClQ7ug=="; }; }; - "@smithy/md5-js-2.0.1" = { + "@smithy/md5-js-2.0.2" = { name = "_at_smithy_slash_md5-js"; packageName = "@smithy/md5-js"; - version = "2.0.1"; + version = "2.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@smithy/md5-js/-/md5-js-2.0.1.tgz"; - sha512 = "8WWOtwWMmIDgTkRv1o3opy3ABsRXs4/XunETK53ckxQRAiOML1PlnqLBK9Uwk9bvOD6cpmsC6dioIfmKGpJ25w=="; + url = "https://registry.npmjs.org/@smithy/md5-js/-/md5-js-2.0.2.tgz"; + sha512 = "qm9845tzkYOm3HM/nFiZVMsA9nE7klO69T1qrrbrQKpUJpEFV87XDInbnRpYzBAFUH4DRodbZ9spEnjF7ffoww=="; }; }; - "@smithy/middleware-content-length-2.0.1" = { + "@smithy/middleware-content-length-2.0.2" = { name = "_at_smithy_slash_middleware-content-length"; packageName = "@smithy/middleware-content-length"; - version = "2.0.1"; + version = "2.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@smithy/middleware-content-length/-/middleware-content-length-2.0.1.tgz"; - sha512 = "IZhRSk5GkVBcrKaqPXddBS2uKhaqwBgaSgbBb1OJyGsKe7SxRFbclWS0LqOR9fKUkDl+3lL8E2ffpo6EQg0igw=="; + url = "https://registry.npmjs.org/@smithy/middleware-content-length/-/middleware-content-length-2.0.2.tgz"; + sha512 = "FmHlNfuvYgDZE3fIx0G3rD/wLXfAmBYE4mVc/w6d7RllA7TygPzq2pfHL1iCMzWkWTdoAVnt3h4aavAZnhaxEQ=="; }; }; - "@smithy/middleware-endpoint-2.0.1" = { + "@smithy/middleware-endpoint-2.0.2" = { name = "_at_smithy_slash_middleware-endpoint"; packageName = "@smithy/middleware-endpoint"; - version = "2.0.1"; + version = "2.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-2.0.1.tgz"; - sha512 = "uz/KI1MBd9WHrrkVFZO4L4Wyv24raf0oR4EsOYEeG5jPJO5U+C7MZGLcMxX8gWERDn1sycBDqmGv8fjUMLxT6w=="; + url = "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-2.0.2.tgz"; + sha512 = "ropE7/c+g22QeluZ+By/B/WvVep0UFreX+IeRMGIO7EbOUPgqtJRXpbJFdG6JKB1uC+CdaJLn4MnZnVBpcyjuA=="; }; }; - "@smithy/middleware-retry-2.0.1" = { + "@smithy/middleware-retry-2.0.2" = { name = "_at_smithy_slash_middleware-retry"; packageName = "@smithy/middleware-retry"; - version = "2.0.1"; + version = "2.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-2.0.1.tgz"; - sha512 = "NKHF4i0gjSyjO6C0ZyjEpNqzGgIu7s8HOK6oT/1Jqws2Q1GynR1xV8XTUs1gKXeaNRzbzKQRewHHmfPwZjOtHA=="; + url = "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-2.0.2.tgz"; + sha512 = "wtBUXqtZVriiXppYaFkUrybAPhFVX7vebnW/yVPliLMWMcguOMS58qhOYPZe3t9Wki2+mASfyu+kO3An8lAg2A=="; }; }; - "@smithy/middleware-serde-2.0.1" = { + "@smithy/middleware-serde-2.0.2" = { name = "_at_smithy_slash_middleware-serde"; packageName = "@smithy/middleware-serde"; - version = "2.0.1"; + version = "2.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@smithy/middleware-serde/-/middleware-serde-2.0.1.tgz"; - sha512 = "uKxPaC6ItH9ZXdpdqNtf8sda7GcU4SPMp0tomq/5lUg9oiMa/Q7+kD35MUrpKaX3IVXVrwEtkjCU9dogZ/RAUA=="; + url = "https://registry.npmjs.org/@smithy/middleware-serde/-/middleware-serde-2.0.2.tgz"; + sha512 = "Kw9xLdlueIaivUWslKB67WZ/cCUg3QnzYVIA3t5KfgsseEEuU4UxXw8NSTvIt71gqQloY+Um8ugS+idgxrWWnw=="; }; }; "@smithy/middleware-stack-2.0.0" = { @@ -12047,58 +11795,58 @@ let sha512 = "31XC1xNF65nlbc16yuh3wwTudmqs6qy4EseQUGF8A/p2m/5wdd/cnXJqpniy/XvXVwkHPz/GwV36HqzHtIKATQ=="; }; }; - "@smithy/node-config-provider-2.0.1" = { + "@smithy/node-config-provider-2.0.2" = { name = "_at_smithy_slash_node-config-provider"; packageName = "@smithy/node-config-provider"; - version = "2.0.1"; + version = "2.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-2.0.1.tgz"; - sha512 = "Zoel4CPkKRTQ2XxmozZUfqBYqjPKL53/SvTDhJHj+VBSiJy6MXRav1iDCyFPS92t40Uh+Yi+Km5Ch3hQ+c/zSA=="; + url = "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-2.0.2.tgz"; + sha512 = "9wVJccASfuCctNWrzR0zrDkf0ox3HCHGEhFlWL2LBoghUYuK28pVRBbG69wvnkhlHnB8dDZHagxH+Nq9dm7eWw=="; }; }; - "@smithy/node-http-handler-2.0.1" = { + "@smithy/node-http-handler-2.0.2" = { name = "_at_smithy_slash_node-http-handler"; packageName = "@smithy/node-http-handler"; - version = "2.0.1"; + version = "2.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-2.0.1.tgz"; - sha512 = "Zv3fxk3p9tsmPT2CKMsbuwbbxnq2gzLDIulxv+yI6aE+02WPYorObbbe9gh7SW3weadMODL1vTfOoJ9yFypDzg=="; + url = "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-2.0.2.tgz"; + sha512 = "lpZjmtmyZqSAtMPsbrLhb7XoAQ2kAHeuLY/csW6I2k+QyFvOk7cZeQsqEngWmZ9SJaeYiDCBINxAIM61i5WGLw=="; }; }; - "@smithy/property-provider-2.0.1" = { + "@smithy/property-provider-2.0.2" = { name = "_at_smithy_slash_property-provider"; packageName = "@smithy/property-provider"; - version = "2.0.1"; + version = "2.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@smithy/property-provider/-/property-provider-2.0.1.tgz"; - sha512 = "pmJRyY9SF6sutWIktIhe+bUdSQDxv/qZ4mYr3/u+u45riTPN7nmRxPo+e4sjWVoM0caKFjRSlj3tf5teRFy0Vg=="; + url = "https://registry.npmjs.org/@smithy/property-provider/-/property-provider-2.0.2.tgz"; + sha512 = "DfaZ8cO+d/mgnMzIllcXcU4OYP+omiOl2LYdn/fTGpw/EAQSVzscYV2muV3sDDnuPYQ/r014hUqIxnF+pzh+SQ=="; }; }; - "@smithy/protocol-http-2.0.1" = { + "@smithy/protocol-http-2.0.2" = { name = "_at_smithy_slash_protocol-http"; packageName = "@smithy/protocol-http"; - version = "2.0.1"; + version = "2.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@smithy/protocol-http/-/protocol-http-2.0.1.tgz"; - sha512 = "mrkMAp0wtaDEIkgRObWYxI1Kun1tm6Iu6rK+X4utb6Ah7Uc3Kk4VIWwK/rBHdYGReiLIrxFCB1rq4a2gyZnSgg=="; + url = "https://registry.npmjs.org/@smithy/protocol-http/-/protocol-http-2.0.2.tgz"; + sha512 = "qWu8g1FUy+m36KpO1sREJSF7BaLmjw9AqOuwxLVVSdYz+nUQjc9tFAZ9LB6jJXKdsZFSjfkjHJBbhD78QdE7Rw=="; }; }; - "@smithy/querystring-builder-2.0.1" = { + "@smithy/querystring-builder-2.0.2" = { name = "_at_smithy_slash_querystring-builder"; packageName = "@smithy/querystring-builder"; - version = "2.0.1"; + version = "2.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@smithy/querystring-builder/-/querystring-builder-2.0.1.tgz"; - sha512 = "bp+93WFzx1FojVEIeFPtG0A1pKsFdCUcZvVdZdRlmNooOUrz9Mm9bneRd8hDwAQ37pxiZkCOxopSXXRQN10mYw=="; + url = "https://registry.npmjs.org/@smithy/querystring-builder/-/querystring-builder-2.0.2.tgz"; + sha512 = "H99LOMWEssfwqkOoTs4Y12UiZ7CTGQSX5Nrx5UkYgRbUEpC1GnnaprHiYrqclC58/xr4K76aNchdPyioxewMzA=="; }; }; - "@smithy/querystring-parser-2.0.1" = { + "@smithy/querystring-parser-2.0.2" = { name = "_at_smithy_slash_querystring-parser"; packageName = "@smithy/querystring-parser"; - version = "2.0.1"; + version = "2.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@smithy/querystring-parser/-/querystring-parser-2.0.1.tgz"; - sha512 = "h+e7k1z+IvI2sSbUBG9Aq46JsgLl4UqIUl6aigAlRBj+P6ocNXpM6Yn1vMBw5ijtXeZbYpd1YvCxwDgdw3jhmg=="; + url = "https://registry.npmjs.org/@smithy/querystring-parser/-/querystring-parser-2.0.2.tgz"; + sha512 = "L4VtKQ8O4/aWPQJbiFymbhAmxdfLnEaROh/Vs0OstJ7jtOZeBl2QJmuWY2V7hjt64W7V+tEn2sv6vVvnxkm/xQ=="; }; }; "@smithy/service-error-classification-2.0.0" = { @@ -12110,49 +11858,49 @@ let sha512 = "2z5Nafy1O0cTf69wKyNjGW/sNVMiqDnb4jgwfMG8ye8KnFJ5qmJpDccwIbJNhXIfbsxTg9SEec2oe1cexhMJvw=="; }; }; - "@smithy/shared-ini-file-loader-2.0.1" = { + "@smithy/shared-ini-file-loader-2.0.2" = { name = "_at_smithy_slash_shared-ini-file-loader"; packageName = "@smithy/shared-ini-file-loader"; - version = "2.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-2.0.1.tgz"; - sha512 = "a463YiZrPGvM+F336rIF8pLfQsHAdCRAn/BiI/EWzg5xLoxbC7GSxIgliDDXrOu0z8gT3nhVsif85eU6jyct3A=="; - }; - }; - "@smithy/signature-v4-2.0.1" = { - name = "_at_smithy_slash_signature-v4"; - packageName = "@smithy/signature-v4"; - version = "2.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@smithy/signature-v4/-/signature-v4-2.0.1.tgz"; - sha512 = "jztv5Mirca42ilxmMDjzLdXcoAmRhZskGafGL49sRo5u7swEZcToEFrq6vtX5YMbSyTVrE9Teog5EFexY5Ff2Q=="; - }; - }; - "@smithy/smithy-client-2.0.1" = { - name = "_at_smithy_slash_smithy-client"; - packageName = "@smithy/smithy-client"; - version = "2.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-2.0.1.tgz"; - sha512 = "LHC5m6tYpEu1iNbONfvMbwtErboyTZJfEIPoD78Ei5MVr36vZQCaCla5mvo36+q/a2NAk2//fA5Rx3I1Kf7+lQ=="; - }; - }; - "@smithy/types-2.0.2" = { - name = "_at_smithy_slash_types"; - packageName = "@smithy/types"; version = "2.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@smithy/types/-/types-2.0.2.tgz"; - sha512 = "wcymEjIXQ9+NEfE5Yt5TInAqe1o4n+Nh+rh00AwoazppmUt8tdo6URhc5gkDcOYrcvlDVAZE7uG69nDpEGUKxw=="; + url = "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-2.0.2.tgz"; + sha512 = "2VkNOM/82u4vatVdK5nfusgGIlvR48Fkq6me17Oc+V1iyxfR/1x0pG6LzW0br1qlGtzBYFZKmDyviBRcPVFTVw=="; }; }; - "@smithy/url-parser-2.0.1" = { + "@smithy/signature-v4-2.0.2" = { + name = "_at_smithy_slash_signature-v4"; + packageName = "@smithy/signature-v4"; + version = "2.0.2"; + src = fetchurl { + url = "https://registry.npmjs.org/@smithy/signature-v4/-/signature-v4-2.0.2.tgz"; + sha512 = "YMooDEw/UmGxcXY4qWnSXkbPFsRloluSvyXVT678YPDN/K2AS1GzKfRsvSU7fbccOB4WF8MHZf2UqcRGEltE3Q=="; + }; + }; + "@smithy/smithy-client-2.0.2" = { + name = "_at_smithy_slash_smithy-client"; + packageName = "@smithy/smithy-client"; + version = "2.0.2"; + src = fetchurl { + url = "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-2.0.2.tgz"; + sha512 = "mDfokI8WwLU5C0gcQ4ww/zJI/WLGSh2+vdIA42JRnjfYUjJNH/rKfX9YOnn2eBOxl3loATERVUqkHmKe+P8s2Q=="; + }; + }; + "@smithy/types-2.1.0" = { + name = "_at_smithy_slash_types"; + packageName = "@smithy/types"; + version = "2.1.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@smithy/types/-/types-2.1.0.tgz"; + sha512 = "KLsCsqxX0j2l99iP8s0f7LBlcsp7a7ceXGn0LPYPyVOsqmIKvSaPQajq0YevlL4T9Bm+DtcyXfBTbtBcLX1I7A=="; + }; + }; + "@smithy/url-parser-2.0.2" = { name = "_at_smithy_slash_url-parser"; packageName = "@smithy/url-parser"; - version = "2.0.1"; + version = "2.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@smithy/url-parser/-/url-parser-2.0.1.tgz"; - sha512 = "NpHVOAwddo+OyyIoujDL9zGL96piHWrTNXqltWmBvlUoWgt1HPyBuKs6oHjioyFnNZXUqveTOkEEq0U5w6Uv8A=="; + url = "https://registry.npmjs.org/@smithy/url-parser/-/url-parser-2.0.2.tgz"; + sha512 = "X1mHCzrSVDlhVy7d3S7Vq+dTfYzwh4n7xGHhyJumu77nJqIss0lazVug85Pwo0DKIoO314wAOvMnBxNYDa+7wA=="; }; }; "@smithy/util-base64-2.0.0" = { @@ -12200,22 +11948,22 @@ let sha512 = "xCQ6UapcIWKxXHEU4Mcs2s7LcFQRiU3XEluM2WcCjjBtQkUN71Tb+ydGmJFPxMUrW/GWMgQEEGipLym4XG0jZg=="; }; }; - "@smithy/util-defaults-mode-browser-2.0.1" = { + "@smithy/util-defaults-mode-browser-2.0.2" = { name = "_at_smithy_slash_util-defaults-mode-browser"; packageName = "@smithy/util-defaults-mode-browser"; - version = "2.0.1"; + version = "2.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-2.0.1.tgz"; - sha512 = "w72Qwsb+IaEYEFtYICn0Do42eFju78hTaBzzJfT107lFOPdbjWjKnFutV+6GL/nZd5HWXY7ccAKka++C3NrjHw=="; + url = "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-2.0.2.tgz"; + sha512 = "c2tMMjb624XLuzmlRoZpnFOkejVxcgw3WQKdmgdGZYZapcLzXyC0H9JhnXMjQCt30GqLTlsILRNVBYwFRbw/4Q=="; }; }; - "@smithy/util-defaults-mode-node-2.0.1" = { + "@smithy/util-defaults-mode-node-2.0.2" = { name = "_at_smithy_slash_util-defaults-mode-node"; packageName = "@smithy/util-defaults-mode-node"; - version = "2.0.1"; + version = "2.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-2.0.1.tgz"; - sha512 = "dNF45caelEBambo0SgkzQ0v76m4YM+aFKZNTtSafy7P5dVF8TbjZuR2UX1A5gJABD9XK6lzN+v/9Yfzj/EDgGg=="; + url = "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-2.0.2.tgz"; + sha512 = "gt7m5LLqUtEKldJLyc14DE4kb85vxwomvt9AfEMEvWM4VwfWS1kGJqiStZFb5KNqnQPXw8vvpgLTi8NrWAOXqg=="; }; }; "@smithy/util-hex-encoding-2.0.0" = { @@ -12245,13 +11993,13 @@ let sha512 = "/dvJ8afrElasuiiIttRJeoS2sy8YXpksQwiM/TcepqdRVp7u4ejd9C4IQURHNjlfPUT7Y6lCDSa2zQJbdHhVTg=="; }; }; - "@smithy/util-stream-2.0.1" = { + "@smithy/util-stream-2.0.2" = { name = "_at_smithy_slash_util-stream"; packageName = "@smithy/util-stream"; - version = "2.0.1"; + version = "2.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-2.0.1.tgz"; - sha512 = "2a0IOtwIKC46EEo7E7cxDN8u2jwOiYYJqcFKA6rd5rdXqKakHT2Gc+AqHWngr0IEHUfW92zX12wRQKwyoqZf2Q=="; + url = "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-2.0.2.tgz"; + sha512 = "Mg9IJcKIu4YKlbzvpp1KLvh4JZLdcPgpxk+LICuDwzZCfxe47R9enVK8dNEiuyiIGK2ExbfvzCVT8IBru62vZw=="; }; }; "@smithy/util-uri-escape-2.0.0" = { @@ -12272,13 +12020,13 @@ let sha512 = "rctU1VkziY84n5OXe3bPNpKR001ZCME2JCaBBFgtiM2hfKbHFudc/BkMuPab8hRbLd0j3vbnBTTZ1igBf0wgiQ=="; }; }; - "@smithy/util-waiter-2.0.1" = { + "@smithy/util-waiter-2.0.2" = { name = "_at_smithy_slash_util-waiter"; packageName = "@smithy/util-waiter"; - version = "2.0.1"; + version = "2.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@smithy/util-waiter/-/util-waiter-2.0.1.tgz"; - sha512 = "bSyGFicPRYuGFFWAr72UvYI7tE7KmEeFJJ5iaLuTTdo8RGaNBZ2kE25coGtzrejYh9AhwSfckBvbxgEDxIxhlA=="; + url = "https://registry.npmjs.org/@smithy/util-waiter/-/util-waiter-2.0.2.tgz"; + sha512 = "7XCEVXDLguf3Og0NIF/KYEAHtrzNXmCdtEwMfOXr4iBKOUWYzNj91YB9O7tLrct8VGvysGA0x2xYzbxMbvF0QQ=="; }; }; "@socket.io/component-emitter-3.1.0" = { @@ -12443,13 +12191,13 @@ let sha512 = "lyIc6JUlUA8Ve5ELywPC8I2Sdnh1zc1zmbYgVarhXIp9YeAB0ReeqmGEOWNtlHkbP2DAA1AL65Wfn2ncjK/jtQ=="; }; }; - "@stoplight/spectral-cli-6.10.0" = { + "@stoplight/spectral-cli-6.10.1" = { name = "_at_stoplight_slash_spectral-cli"; packageName = "@stoplight/spectral-cli"; - version = "6.10.0"; + version = "6.10.1"; src = fetchurl { - url = "https://registry.npmjs.org/@stoplight/spectral-cli/-/spectral-cli-6.10.0.tgz"; - sha512 = "mJOlLtKvhiVUSXslcjHFrb+MPIMe6yrqsuABFyXqb2SMk/zOsLDIEKgB/UQ1w6hTcr54o6CVTAYf+0lnhCsWQw=="; + url = "https://registry.npmjs.org/@stoplight/spectral-cli/-/spectral-cli-6.10.1.tgz"; + sha512 = "yjal3WE42buthVnqfwppw2YmjeXZJ8rmMaHjpx9/94xbbfS79RsReExH9sj1QZam6A9XPGWtjLdWSrklqydpYg=="; }; }; "@stoplight/spectral-core-1.18.3" = { @@ -12551,13 +12299,13 @@ let sha512 = "dwqYcDrGmEyUv5TWrDam5TGOxU72ufyQ7hnOIIDdmW5ezOwZaBFoR5XQ9AsH49w7wgvOqB2Bmo799pJPWnpCbg=="; }; }; - "@stoplight/types-13.17.0" = { + "@stoplight/types-13.18.0" = { name = "_at_stoplight_slash_types"; packageName = "@stoplight/types"; - version = "13.17.0"; + version = "13.18.0"; src = fetchurl { - url = "https://registry.npmjs.org/@stoplight/types/-/types-13.17.0.tgz"; - sha512 = "9wzSi8MZQXjO+GSYehwMWFSUHO5qtDr282RxrDDsxO9ZHn0a4nWE+kTWDWSdtbiZrIEantTSkycmQJxKxnnRTQ=="; + url = "https://registry.npmjs.org/@stoplight/types/-/types-13.18.0.tgz"; + sha512 = "TuoUfuQYDdJ71QxRJs9wWQS1alSFox85fsCF3PlQv0uEW3oPeOPQx6H9se3dx1z8FcaNPM3ZzEFpdvYAkyM8wg=="; }; }; "@stoplight/types-13.6.0" = { @@ -12587,24 +12335,6 @@ let sha512 = "sV+51I7WYnLJnKPn2EMWgS4EUfoP4iWEbrWwbXsj0MZCB/xOK8j6+C9fntIdOM50kpx45ZLC3s6kwKivWuqvyg=="; }; }; - "@streamparser/json-0.0.10" = { - name = "_at_streamparser_slash_json"; - packageName = "@streamparser/json"; - version = "0.0.10"; - src = fetchurl { - url = "https://registry.npmjs.org/@streamparser/json/-/json-0.0.10.tgz"; - sha512 = "juqNFdqqmY/nvsODq1Vba7PWIaqr01VcqICIrxbws97QKSQhQUMml8FqdHLmevwVpqH39H5mVXKFWiWCi1ke0w=="; - }; - }; - "@streamparser/json-0.0.15" = { - name = "_at_streamparser_slash_json"; - packageName = "@streamparser/json"; - version = "0.0.15"; - src = fetchurl { - url = "https://registry.npmjs.org/@streamparser/json/-/json-0.0.15.tgz"; - sha512 = "6oikjkMTYAHGqKmcC9leE4+kY4Ch4eiTImXUN/N4d2bNGBYs0LJ/tfxmpvF5eExSU7iiPlV9jYlADqvj3NWA3Q=="; - }; - }; "@stroncium/procfs-1.2.1" = { name = "_at_stroncium_slash_procfs"; packageName = "@stroncium/procfs"; @@ -12659,103 +12389,103 @@ let sha512 = "gqBJSmJMWomZFxlppaKea7NeAqFrDrrS0RMt24No92M3nJWcyI9YKGEQKl+EyJqZ5gh6w1s0cTklMHMzRwA1NA=="; }; }; - "@swc/core-1.3.73" = { + "@swc/core-1.3.76" = { name = "_at_swc_slash_core"; packageName = "@swc/core"; - version = "1.3.73"; + version = "1.3.76"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core/-/core-1.3.73.tgz"; - sha512 = "ihjj/mAQKnXakFdFPlIJOjAvfLLc2f7t9u3k5Vsv8o30utD4/4mw1SAEL9vsPYM14XrMJa6PUNegw6hNxX1D2g=="; + url = "https://registry.npmjs.org/@swc/core/-/core-1.3.76.tgz"; + sha512 = "aYYTA2aVYkwJAZepQXtPnkUthhOfn8qd6rsh+lrJxonFrjmpI7RHt2tMDVTXP6XDX7fvnvrVtT1bwZfmBFPh0Q=="; }; }; - "@swc/core-darwin-arm64-1.3.73" = { + "@swc/core-darwin-arm64-1.3.76" = { name = "_at_swc_slash_core-darwin-arm64"; packageName = "@swc/core-darwin-arm64"; - version = "1.3.73"; + version = "1.3.76"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.3.73.tgz"; - sha512 = "RwCDCDg3gmgt+p/Kc48o3PdLBSCoFQKLb8QgC7F32Ql9wjVMS3fzy2i6NZ+MnbEnYGQtTcqLbxEDtpV3eMsEHw=="; + url = "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.3.76.tgz"; + sha512 = "ovviEhZ/1E81Z9OGrO0ivLWk4VCa3I3ZzM+cd3gugglRRwVwtlIaoIYqY5S3KiCAupDd1+UCl5X7Vbio7a/V8g=="; }; }; - "@swc/core-darwin-x64-1.3.73" = { + "@swc/core-darwin-x64-1.3.76" = { name = "_at_swc_slash_core-darwin-x64"; packageName = "@swc/core-darwin-x64"; - version = "1.3.73"; + version = "1.3.76"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.3.73.tgz"; - sha512 = "cHmAWvCVRc7LTdv4LO4mZZXfW3E9NT/KNnLNG/PgWP9QK1bSQ7hUDVKsx70ygR4ONwfhqUuglakzu+xDfNoW+A=="; + url = "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.3.76.tgz"; + sha512 = "tcySTDqs0SHCebtW35sCdcLWsmTEo7bEwx0gNL/spetqVT9fpFi6qU8qcnt7i2KaZHbeNl9g1aadu+Yrni+GzA=="; }; }; - "@swc/core-linux-arm-gnueabihf-1.3.73" = { + "@swc/core-linux-arm-gnueabihf-1.3.76" = { name = "_at_swc_slash_core-linux-arm-gnueabihf"; packageName = "@swc/core-linux-arm-gnueabihf"; - version = "1.3.73"; + version = "1.3.76"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.3.73.tgz"; - sha512 = "EmJALh7KUJhcdr7uUQg7wTpdcX5k1Xjspgy3QMg8j2dwb4DsnFgrnArsFNXHBB1Dj7LlQSoyxQ5mBcJtUtCb8A=="; + url = "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.3.76.tgz"; + sha512 = "apgzpGWy1AwoMF4urAAASsAjE7rEzZFIF+p6utuxhS7cNHzE0AyEVDYJbo+pzBdlZ8orBdzzsHtFwoEgKOjebA=="; }; }; - "@swc/core-linux-arm64-gnu-1.3.73" = { + "@swc/core-linux-arm64-gnu-1.3.76" = { name = "_at_swc_slash_core-linux-arm64-gnu"; packageName = "@swc/core-linux-arm64-gnu"; - version = "1.3.73"; + version = "1.3.76"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.3.73.tgz"; - sha512 = "RK6jTm8ppvglh42YOq/k2AqpHS9uYP5h5FNMmA9OI8lupCCS8HMtexbwqw+Xd0MGmSrsJiURw3Z6az8cEObrag=="; + url = "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.3.76.tgz"; + sha512 = "c3c0zz6S0eludqidDpuqbadE0WT3OZczyQxe9Vw8lFFXES85mvNGtwYzyGK2o7TICpsuHrndwDIoYpmpWk879g=="; }; }; - "@swc/core-linux-arm64-musl-1.3.73" = { + "@swc/core-linux-arm64-musl-1.3.76" = { name = "_at_swc_slash_core-linux-arm64-musl"; packageName = "@swc/core-linux-arm64-musl"; - version = "1.3.73"; + version = "1.3.76"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.3.73.tgz"; - sha512 = "hhS6yfgZLKPVAklGjKlbyf9InAhDGj3u+jbZkjStrOgtYNBCk5tbkROZP9ib5enN9m9Oosl5gM5v6oTw27TbUw=="; + url = "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.3.76.tgz"; + sha512 = "Is3bpq7F2qtlnkzEeOD6HIZJPpOmu3q6c82lKww90Q0NnrlSluVMozTHJgwVoFZyizH7uLnk0LuNcEAWLnmJIw=="; }; }; - "@swc/core-linux-x64-gnu-1.3.73" = { + "@swc/core-linux-x64-gnu-1.3.76" = { name = "_at_swc_slash_core-linux-x64-gnu"; packageName = "@swc/core-linux-x64-gnu"; - version = "1.3.73"; + version = "1.3.76"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.3.73.tgz"; - sha512 = "ZGcY63EtFW5OLz1tsKhqhymzvoto329c0oRS9ptzMO66eUrjsHxTt5uPixrI24F6y+bn+qFqsgIw3nwMV8jTPw=="; + url = "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.3.76.tgz"; + sha512 = "iwCeRzd9oSvUzqt7nU6p/ztceAWfnO9XVxBn502R5gs6QCBbE1HCKrWHDO77aKPK7ss+0NcIGHvXTd9L8/wRzw=="; }; }; - "@swc/core-linux-x64-musl-1.3.73" = { + "@swc/core-linux-x64-musl-1.3.76" = { name = "_at_swc_slash_core-linux-x64-musl"; packageName = "@swc/core-linux-x64-musl"; - version = "1.3.73"; + version = "1.3.76"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.3.73.tgz"; - sha512 = "DMz2W0PnzMXAhbMPGArQUBVayyzzzuivvJyJkyFaMPiIwaI+QG+UvLgjSM7NmG/9Eq9hX2zZ1zdaalVKXyyCHQ=="; + url = "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.3.76.tgz"; + sha512 = "a671g4tW8kyFeuICsgq4uB9ukQfiIyXJT4V6YSnmqhCTz5mazWuDxZ5wKnx/1g5nXTl+U5cWH2TZaCJatp4GKA=="; }; }; - "@swc/core-win32-arm64-msvc-1.3.73" = { + "@swc/core-win32-arm64-msvc-1.3.76" = { name = "_at_swc_slash_core-win32-arm64-msvc"; packageName = "@swc/core-win32-arm64-msvc"; - version = "1.3.73"; + version = "1.3.76"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.3.73.tgz"; - sha512 = "yHB1jG3c4/5An//nA9+War6oiNrM/NUz6ivDPbrBfbJHtU/iPfgdAvxfm5/xpOFx4U18JJHnOt853sDyXJwi/A=="; + url = "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.3.76.tgz"; + sha512 = "+swEFtjdMezS0vKUhJC3psdSDtOJGY5pEOt4e8XOPvn7aQpKQ9LfF49XVtIwDSk5SGuWtVoLFzkSY3reWUJCyg=="; }; }; - "@swc/core-win32-ia32-msvc-1.3.73" = { + "@swc/core-win32-ia32-msvc-1.3.76" = { name = "_at_swc_slash_core-win32-ia32-msvc"; packageName = "@swc/core-win32-ia32-msvc"; - version = "1.3.73"; + version = "1.3.76"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.3.73.tgz"; - sha512 = "cA61i4VPTrABAZ8LDvNVqwcO1VLEDO+71iWettvhyk7p6/H/lXG4VQVyHcncmfrAUzDQalXVbgZm6MA3hpqhFQ=="; + url = "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.3.76.tgz"; + sha512 = "5CqwAykpGBJ3PqGLOlWGLGIPpBAG1IwWVDUfro3hhjQ7XJxV5Z1aQf5V5OJ90HJVtrEAVx2xx59UV/Dh081LOg=="; }; }; - "@swc/core-win32-x64-msvc-1.3.73" = { + "@swc/core-win32-x64-msvc-1.3.76" = { name = "_at_swc_slash_core-win32-x64-msvc"; packageName = "@swc/core-win32-x64-msvc"; - version = "1.3.73"; + version = "1.3.76"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.3.73.tgz"; - sha512 = "QwTO9IlIpEr2GsJvW8qNVvQXTzT1ASqf8C8aZDLtVwHKdreTMjlrNMRYw1883DVLRuHMs5RLP4IA2A47Oexp1Q=="; + url = "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.3.76.tgz"; + sha512 = "CiMpWLLlR3Cew9067E7XxaLBwYYJ90r9EhGSO6V1pvYSWj7ET/Ppmtj1ZhzPJMqRXAP6xflfl5R5o4ee1m4WLA=="; }; }; "@swc/helpers-0.5.1" = { @@ -12767,13 +12497,13 @@ let sha512 = "sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg=="; }; }; - "@swc/wasm-1.3.73" = { + "@swc/wasm-1.3.76" = { name = "_at_swc_slash_wasm"; packageName = "@swc/wasm"; - version = "1.3.73"; + version = "1.3.76"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/wasm/-/wasm-1.3.73.tgz"; - sha512 = "jpYN+J0WQkzET0Y9tk8fTgVr4JFzFoy9bmd4WdbfgCYEgiva3ANcRUMtyLZDXFZz5RpracHeRx1Q/7DzZAhuSA=="; + url = "https://registry.npmjs.org/@swc/wasm/-/wasm-1.3.76.tgz"; + sha512 = "AgI1dbzYFn4jXlD6sGJ/xn0KXSoAGHHUFlobSJi6EqA8AKUD3penlPSiRSUi+4rPQzhVDKLh8rKH1GgQOdWcBg=="; }; }; "@szmarczak/http-timer-1.1.2" = { @@ -12983,22 +12713,22 @@ let sha512 = "OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A=="; }; }; - "@toml-tools/lexer-0.3.1" = { + "@toml-tools/lexer-1.0.0" = { name = "_at_toml-tools_slash_lexer"; packageName = "@toml-tools/lexer"; - version = "0.3.1"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/@toml-tools/lexer/-/lexer-0.3.1.tgz"; - sha512 = "CCKHQb5OWpgFu47MQ2rcql4AnE9GaehNk/c1oJOyOBovED6XmdzQPXsvPSu+NJ9lToqJNoX+nLXQsB8WyQGdzQ=="; + url = "https://registry.npmjs.org/@toml-tools/lexer/-/lexer-1.0.0.tgz"; + sha512 = "rVoOC9FibF2CICwCBWQnYcjAEOmLCJExer178K2AsY0Nk9FjJNVoVJuR5UAtuq42BZOajvH+ainf6Gj2GpCnXQ=="; }; }; - "@toml-tools/parser-0.3.1" = { + "@toml-tools/parser-1.0.0" = { name = "_at_toml-tools_slash_parser"; packageName = "@toml-tools/parser"; - version = "0.3.1"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/@toml-tools/parser/-/parser-0.3.1.tgz"; - sha512 = "vadwVx5TkgByt19dbp/rfIUKPkDdn5werANYvziiGK9wHlqPA0BWnvOloQw/dPDxF31+Ag0+zarXJpPDdRsPPg=="; + url = "https://registry.npmjs.org/@toml-tools/parser/-/parser-1.0.0.tgz"; + sha512 = "j8cd3A3ccLHppGoWI69urbiVJslrpwI6sZ61ySDUPxM/FTkQWRx/JkkF8aipnl0Ds0feWXyjyvmWzn70mIohYg=="; }; }; "@tootallnate/once-1.1.2" = { @@ -13235,15 +12965,6 @@ let sha512 = "IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw=="; }; }; - "@types/caseless-0.12.2" = { - name = "_at_types_slash_caseless"; - packageName = "@types/caseless"; - version = "0.12.2"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/caseless/-/caseless-0.12.2.tgz"; - sha512 = "6ckxMjBBD8URvjB6J3NcnuAn5Pkl7t3TizAg+xdlzzQGSPSmBcXf8KoIH0ua/i+tio+ZRUHEXp0HEmvaR4kt0w=="; - }; - }; "@types/cli-progress-3.11.0" = { name = "_at_types_slash_cli-progress"; packageName = "@types/cli-progress"; @@ -13307,15 +13028,6 @@ let sha512 = "4x5FkPpLipqwthjPsF7ZRbOv3uoLUFkTA9G9v583qi4pACvq0uTELrB8OLUzPWUI4IJIyvM85vzkV1nyiI2Lig=="; }; }; - "@types/content-type-1.1.3" = { - name = "_at_types_slash_content-type"; - packageName = "@types/content-type"; - version = "1.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/content-type/-/content-type-1.1.3.tgz"; - sha512 = "pv8VcFrZ3fN93L4rTNIbbUzdkzjEyVMp5mPVjsFfOYTDOZMZiZ8P1dhu+kEv3faYyKzZgLlSvnyQNFg+p/v5ug=="; - }; - }; "@types/cookie-0.4.1" = { name = "_at_types_slash_cookie"; packageName = "@types/cookie"; @@ -13406,13 +13118,13 @@ let sha512 = "VNcvioYDH8/FxaeTKkM4/TiTwt6pBV9E3OfGmvaw8tPl0rrHCJ4Ll15HRT+pMiFAf/MLQvAzC+6RzUMEL9Ceng=="; }; }; - "@types/eslint-8.44.1" = { + "@types/eslint-8.44.2" = { name = "_at_types_slash_eslint"; packageName = "@types/eslint"; - version = "8.44.1"; + version = "8.44.2"; src = fetchurl { - url = "https://registry.npmjs.org/@types/eslint/-/eslint-8.44.1.tgz"; - sha512 = "XpNDc4Z5Tb4x+SW1MriMVeIsMoONHCkWFMkR/aPJbzEsxqHy+4Glu/BqTdPrApfDeMaXbtNh6bseNgl5KaWrSg=="; + url = "https://registry.npmjs.org/@types/eslint/-/eslint-8.44.2.tgz"; + sha512 = "sdPRb9K6iL5XZOmBubg8yiFp5yS/JdUDQsq5e6h95km91MCYMuvp7mh1fjPEYUhvHepKpZOjnEaMBR4PxjWDzg=="; }; }; "@types/eslint-scope-3.7.4" = { @@ -13469,15 +13181,6 @@ let sha512 = "TEbt+vaPFQ+xpxFLFssxUDXj5cWCxZJjIcB7Yg0k0GMHGtgtQgpvx/MUQUeAkNbA9AAGrwkAsoeItdTgS7FMyg=="; }; }; - "@types/express-4.17.15" = { - name = "_at_types_slash_express"; - packageName = "@types/express"; - version = "4.17.15"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/express/-/express-4.17.15.tgz"; - sha512 = "Yv0k4bXGOH+8a+7bELd2PqHQsuiANB+A8a4gnQrkRWzrkKlb6KHaVvyXhqs04sVW/OWlbPyYxRgYlIXLfrufMQ=="; - }; - }; "@types/express-4.17.17" = { name = "_at_types_slash_express"; packageName = "@types/express"; @@ -13721,13 +13424,13 @@ let sha512 = "HZQYqbiFVWufzCwexrvh694SOim8z2d+xJl5UNamcvQFejLY/2YUtzXHYi3cHdI7PMlS8ejH2slRAOJQ32aNbA=="; }; }; - "@types/lodash-4.14.196" = { + "@types/lodash-4.14.197" = { name = "_at_types_slash_lodash"; packageName = "@types/lodash"; - version = "4.14.196"; + version = "4.14.197"; src = fetchurl { - url = "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.196.tgz"; - sha512 = "22y3o88f4a94mKljsZcanlNWPzO0uBsBdzLAngf2tp533LzZcQzb6+eZPJ+vCTt+bqF2XnvT9gejTLsAcJAJyQ=="; + url = "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.197.tgz"; + sha512 = "BMVOiWs0uNxHVlHBgzTIqJYmj+PgCo4euloGF+5m4okL3rEYzM2EEv78mw8zWSMM57dM7kVIgJ2QDvwHSoCI5g=="; }; }; "@types/long-4.0.2" = { @@ -13928,13 +13631,13 @@ let sha512 = "XAMpaw1s1+6zM+jn2tmw8MyaRDIJfXxqmIQIS0HfoGYPuf7dUWeiUKopwq13KFX9lEp1+THGtlaaYx39Nxr58g=="; }; }; - "@types/node-16.18.39" = { + "@types/node-16.18.40" = { name = "_at_types_slash_node"; packageName = "@types/node"; - version = "16.18.39"; + version = "16.18.40"; src = fetchurl { - url = "https://registry.npmjs.org/@types/node/-/node-16.18.39.tgz"; - sha512 = "8q9ZexmdYYyc5/cfujaXb4YOucpQxAV4RMG0himLyDUOEr8Mr79VrqsFI+cQ2M2h89YIuy95lbxuYjxT4Hk4kQ=="; + url = "https://registry.npmjs.org/@types/node/-/node-16.18.40.tgz"; + sha512 = "+yno3ItTEwGxXiS/75Q/aHaa5srkpnJaH+kdkTVJ3DtJEwv92itpKbxU+FjPoh2m/5G9zmUQfrL4A4C13c+iGA=="; }; }; "@types/node-16.9.1" = { @@ -13946,76 +13649,31 @@ let sha512 = "QpLcX9ZSsq3YYUUnD3nFDY8H7wctAhQj/TFKL8Ya8v5fMm3CFXxo8zStsLAl780ltoYoo1WvKUVGBQK+1ifr7g=="; }; }; - "@types/node-18.11.18" = { + "@types/node-18.17.4" = { name = "_at_types_slash_node"; packageName = "@types/node"; - version = "18.11.18"; + version = "18.17.4"; src = fetchurl { - url = "https://registry.npmjs.org/@types/node/-/node-18.11.18.tgz"; - sha512 = "DHQpWGjyQKSHj3ebjFI/wRKcqQcdR+MoFBygntYOZytCqNfkd2ZC4ARDJ2DQqhjH5p85Nnd3jhUJIXrszFX/JA=="; + url = "https://registry.npmjs.org/@types/node/-/node-18.17.4.tgz"; + sha512 = "ATL4WLgr7/W40+Sp1WnNTSKbgVn6Pvhc/2RHAdt8fl6NsQyp4oPCi2eKcGOvA494bwf1K/W6nGgZ9TwDqvpjdw=="; }; }; - "@types/node-18.15.0" = { + "@types/node-20.4.7" = { name = "_at_types_slash_node"; packageName = "@types/node"; - version = "18.15.0"; + version = "20.4.7"; src = fetchurl { - url = "https://registry.npmjs.org/@types/node/-/node-18.15.0.tgz"; - sha512 = "z6nr0TTEOBGkzLGmbypWOGnpSpSIBorEhC4L+4HeQ2iezKCi4f77kyslRwvHeNitymGQ+oFyIWGP96l/DPSV9w=="; + url = "https://registry.npmjs.org/@types/node/-/node-20.4.7.tgz"; + sha512 = "bUBrPjEry2QUTsnuEjzjbS7voGWCc30W0qzgMf90GPeDGFRakvrz47ju+oqDAKCXLUCe39u57/ORMl/O/04/9g=="; }; }; - "@types/node-18.16.3" = { + "@types/node-20.4.9" = { name = "_at_types_slash_node"; packageName = "@types/node"; - version = "18.16.3"; + version = "20.4.9"; src = fetchurl { - url = "https://registry.npmjs.org/@types/node/-/node-18.16.3.tgz"; - sha512 = "OPs5WnnT1xkCBiuQrZA4+YAV4HEJejmHneyraIaxsbev5yCEr6KMwINNFP9wQeFIw8FWcoTqF3vQsa5CDaI+8Q=="; - }; - }; - "@types/node-18.17.1" = { - name = "_at_types_slash_node"; - packageName = "@types/node"; - version = "18.17.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/node/-/node-18.17.1.tgz"; - sha512 = "xlR1jahfizdplZYRU59JlUx9uzF1ARa8jbhM11ccpCJya8kvos5jwdm2ZAgxSCwOl0fq21svP18EVwPBXMQudw=="; - }; - }; - "@types/node-20.3.1" = { - name = "_at_types_slash_node"; - packageName = "@types/node"; - version = "20.3.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/node/-/node-20.3.1.tgz"; - sha512 = "EhcH/wvidPy1WeML3TtYFGR83UzjxeWRen9V402T8aUGYsCHOmfoisV3ZSg03gAFIbLq8TnWOJ0f4cALtnSEUg=="; - }; - }; - "@types/node-20.3.2" = { - name = "_at_types_slash_node"; - packageName = "@types/node"; - version = "20.3.2"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/node/-/node-20.3.2.tgz"; - sha512 = "vOBLVQeCQfIcF/2Y7eKFTqrMnizK5lRNQ7ykML/5RuwVXVWxYkgwS7xbt4B6fKCUPgbSL5FSsjHQpaGQP/dQmw=="; - }; - }; - "@types/node-20.4.2" = { - name = "_at_types_slash_node"; - packageName = "@types/node"; - version = "20.4.2"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/node/-/node-20.4.2.tgz"; - sha512 = "Dd0BYtWgnWJKwO1jkmTrzofjK2QXXcai0dmtzvIBhcA+RsG5h8R3xlyta0kGOZRNfL9GuRtb1knmPEhQrePCEw=="; - }; - }; - "@types/node-20.4.5" = { - name = "_at_types_slash_node"; - packageName = "@types/node"; - version = "20.4.5"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/node/-/node-20.4.5.tgz"; - sha512 = "rt40Nk13II9JwQBdeYqmbn2Q6IVTA5uPhvSO+JVqdXw/6/4glI6oR9ezty/A9Hg5u7JH4OmYmuQ+XvjKm0Datg=="; + url = "https://registry.npmjs.org/@types/node/-/node-20.4.9.tgz"; + sha512 = "8e2HYcg7ohnTUbHk8focoklEQYvemQmu9M/f43DZVx43kHn0tE3BY/6gSDxS7k0SprtS0NHvj+L80cGLnoOUcQ=="; }; }; "@types/node-6.14.13" = { @@ -14135,22 +13793,22 @@ let sha512 = "EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw=="; }; }; - "@types/react-17.0.62" = { + "@types/react-17.0.64" = { name = "_at_types_slash_react"; packageName = "@types/react"; - version = "17.0.62"; + version = "17.0.64"; src = fetchurl { - url = "https://registry.npmjs.org/@types/react/-/react-17.0.62.tgz"; - sha512 = "eANCyz9DG8p/Vdhr0ZKST8JV12PhH2ACCDYlFw6DIO+D+ca+uP4jtEDEpVqXZrh/uZdXQGwk7whJa3ah5DtyLw=="; + url = "https://registry.npmjs.org/@types/react/-/react-17.0.64.tgz"; + sha512 = "IlgbX/vglDTwrCRgad6fTCzOT+D/5C0xwuvrzfuqfhg9gJrkFqAGADpUFlEtqbrP1IEo9QLSbo41MaFfoIu9Aw=="; }; }; - "@types/react-18.2.18" = { + "@types/react-18.2.20" = { name = "_at_types_slash_react"; packageName = "@types/react"; - version = "18.2.18"; + version = "18.2.20"; src = fetchurl { - url = "https://registry.npmjs.org/@types/react/-/react-18.2.18.tgz"; - sha512 = "da4NTSeBv/P34xoZPhtcLkmZuJ+oYaCxHmyHzwaDQo9RQPBeXV+06gEk2FpqEcsX9XrnNLvRpVh6bdavDSjtiQ=="; + url = "https://registry.npmjs.org/@types/react/-/react-18.2.20.tgz"; + sha512 = "WKNtmsLWJM/3D5mG4U84cysVY31ivmyw85dE84fOCk5Hx78wezB/XEjVPWl2JTZ5FkEeaTJf+VgUAUn3PE7Isw=="; }; }; "@types/readdir-glob-1.1.1" = { @@ -14162,15 +13820,6 @@ let sha512 = "ImM6TmoF8bgOwvehGviEj3tRdRBbQujr1N+0ypaln/GWjaerOB26jb93vsRHmdMtvVQZQebOlqt2HROark87mQ=="; }; }; - "@types/request-2.48.8" = { - name = "_at_types_slash_request"; - packageName = "@types/request"; - version = "2.48.8"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/request/-/request-2.48.8.tgz"; - sha512 = "whjk1EDJPcAR2kYHRbFl/lKeeKYTi05A15K9bnLInCVroNDCtXce57xKdI0/rQaA3K+6q0eFyUBPmqfSndUZdQ=="; - }; - }; "@types/responselike-1.0.0" = { name = "_at_types_slash_responselike"; packageName = "@types/responselike"; @@ -14342,15 +13991,6 @@ let sha512 = "7axfYN8SW9pWg78NgenHasSproWQee5rzyPVLC9HpaQSDgNArsnKJD88EaMfi4Pl48AyciO3agYCFqpHS1gLpg=="; }; }; - "@types/tough-cookie-4.0.2" = { - name = "_at_types_slash_tough-cookie"; - packageName = "@types/tough-cookie"; - version = "4.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/tough-cookie/-/tough-cookie-4.0.2.tgz"; - sha512 = "Q5vtl1W5ue16D+nIaW8JWebSSraJVlK+EthKn7e7UcD4KWsaSJ8BqGPXNaPghgtcn/fhvrN17Tv8ksUsQpiplw=="; - }; - }; "@types/triple-beam-1.3.2" = { name = "_at_types_slash_triple-beam"; packageName = "@types/triple-beam"; @@ -14486,15 +14126,6 @@ let sha512 = "JQbbmxZTZehdc2iszGKs5oC3NFnjeay7mtAWrdt7qNtAVK0g19muApzAy4bm9byz79xa2ZnO/BOBC2R8RC5Lww=="; }; }; - "@types/ws-8.5.4" = { - name = "_at_types_slash_ws"; - packageName = "@types/ws"; - version = "8.5.4"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/ws/-/ws-8.5.4.tgz"; - sha512 = "zdQDHKUgcX/zBc4GrwsE/7dVdAD8JR4EuiAXiiUhhfyIJXXb2+PrGshFyeXWQPMmmZ2XxgaqclgpIC7eTXc1mg=="; - }; - }; "@types/ws-8.5.5" = { name = "_at_types_slash_ws"; packageName = "@types/ws"; @@ -14657,13 +14288,13 @@ let sha512 = "1O/biKiVhhn0EtvDF4UOvz325K4RrLupfL8rHcmqD2TBLv4qVDWQuzx4JGa1FfqjjRb+C9TNZ6w19f32Mq85Ug=="; }; }; - "@vercel/build-utils-6.8.2" = { + "@vercel/build-utils-6.8.3" = { name = "_at_vercel_slash_build-utils"; packageName = "@vercel/build-utils"; - version = "6.8.2"; + version = "6.8.3"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/build-utils/-/build-utils-6.8.2.tgz"; - sha512 = "pyDBREAzaLBM3zoURCCKjnKIqtqPprKcwDdd9eBTGI32qOSpbwswtyqtgj2zH/Ro0LI61jCr6sK87JHILCr1sg=="; + url = "https://registry.npmjs.org/@vercel/build-utils/-/build-utils-6.8.3.tgz"; + sha512 = "C86OPuPAvG/pSr27DPKecmptkYYsgyhOKdHTLv9jI3Pv1yvru78k+JjrAyn7N+0ev75KNV0Prv4P3p76168ePw=="; }; }; "@vercel/error-utils-1.0.10" = { @@ -14684,13 +14315,13 @@ let sha512 = "v329WHdtIce+y7oAmaWRvEx59Xfo0FxlQqK4BJG0u6VWYoKWPaflohDAiehIZf/YHCRVb59ZxnzmMOcm/LR8YQ=="; }; }; - "@vercel/gatsby-plugin-vercel-builder-1.3.15" = { + "@vercel/gatsby-plugin-vercel-builder-1.3.17" = { name = "_at_vercel_slash_gatsby-plugin-vercel-builder"; packageName = "@vercel/gatsby-plugin-vercel-builder"; - version = "1.3.15"; + version = "1.3.17"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/gatsby-plugin-vercel-builder/-/gatsby-plugin-vercel-builder-1.3.15.tgz"; - sha512 = "wtP7g9Xk01FGEVSHrrWQ0yuszoStHwJjlI1G+oPg1UXJb2s/xJP+WVL5Y9yjw6WCW88XV9Y6etCH7GvThSkQsg=="; + url = "https://registry.npmjs.org/@vercel/gatsby-plugin-vercel-builder/-/gatsby-plugin-vercel-builder-1.3.17.tgz"; + sha512 = "FxT9JZiaak1qCHF1qNKCbcgBPXNarxVLoZbAL2DvEkeyOE9CgadihAA+zTDsqMRFb/Y5dY2KP1+iZFop+K5tuQ=="; }; }; "@vercel/go-2.5.1" = { @@ -14711,13 +14342,13 @@ let sha512 = "1rzFB664G6Yzp7j4ezW9hvVjqnaU2BhyUdhchbsxtRuxkMpGgPBZKhjzRQHFvlmkz37XLC658T5Nb1P91b4sBw=="; }; }; - "@vercel/next-3.9.3" = { + "@vercel/next-3.9.4" = { name = "_at_vercel_slash_next"; packageName = "@vercel/next"; - version = "3.9.3"; + version = "3.9.4"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/next/-/next-3.9.3.tgz"; - sha512 = "jHuw1HYzaLt5qzJm+U1ydzKMSM9ptW5vHZ3AkFqkav7qaCDrvV0SKOiNQ8xoJhBLNFuXQY6Z4l8Ag86kUYevGA=="; + url = "https://registry.npmjs.org/@vercel/next/-/next-3.9.4.tgz"; + sha512 = "6qH/dNSEEN2pQW5iVi6RUfjro6v9mxdXLtiRf65gQim89CXfPR9CKcCW3AxcKSkYPX9Q7fPiaEGwTr68fPklCw=="; }; }; "@vercel/nft-0.22.5" = { @@ -14729,13 +14360,13 @@ let sha512 = "mug57Wd1BL7GMj9gXMgMeKUjdqO0e4u+0QLPYMFE1rwdJ+55oPy6lp3nIBCS8gOvigT62UI4QKUL2sGqcoW4Hw=="; }; }; - "@vercel/node-2.15.7" = { + "@vercel/node-2.15.9" = { name = "_at_vercel_slash_node"; packageName = "@vercel/node"; - version = "2.15.7"; + version = "2.15.9"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/node/-/node-2.15.7.tgz"; - sha512 = "zCmpQ15KsuvNd6KxJuNgrY+464ZdAo4Bc50Yixa61+rjxuFjy2ST8s+ybODY9as6NoPV0JVE2mmKPB1opkKKvg=="; + url = "https://registry.npmjs.org/@vercel/node/-/node-2.15.9.tgz"; + sha512 = "nsfTMBZOuXFxz3s7A2b+3rkt2QN016TXn7apPb+apWaO+UzMaRLE0Gubn8TXQ08N4ag6G5bBJXrWRJywL4whrQ=="; }; }; "@vercel/python-3.1.60" = { @@ -14756,13 +14387,13 @@ let sha512 = "j0XaXe4ZpGVHG7XQSmZ3kza6s+ZtOBfRhnSxA70yCkrvPNN3tZgF3fevSKXizfL9fzVDd7Tdj++SCGWMdGfsyA=="; }; }; - "@vercel/remix-builder-1.9.0" = { + "@vercel/remix-builder-1.10.0" = { name = "_at_vercel_slash_remix-builder"; packageName = "@vercel/remix-builder"; - version = "1.9.0"; + version = "1.10.0"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/remix-builder/-/remix-builder-1.9.0.tgz"; - sha512 = "XBaP9M4ytlamBKggKPZcT9IHRLy2w9zxK4GFYYHEVv2sfmh2gonRAbNwphr0OdAsr+yPDnPRt8L6jFPOqfABhQ=="; + url = "https://registry.npmjs.org/@vercel/remix-builder/-/remix-builder-1.10.0.tgz"; + sha512 = "yvCvj/e2xxkVaPukOb5aCBNCLGsEgi9VSfb79Fo8aWlm5aaCO6UJoGD28/7lF5MxAFAl+Jmbgq0EH+53v/CJ5g=="; }; }; "@vercel/routing-utils-2.2.1" = { @@ -14783,13 +14414,13 @@ let sha512 = "J8I0B7wAn8piGoPhBroBfJWgMEJTMEL/2o8MCoCyWdaE7MRtpXhI10pj8IvcUvAECoGJ+SM1Pm+SvBqtbtZ5FQ=="; }; }; - "@vercel/static-build-1.3.43" = { + "@vercel/static-build-1.3.45" = { name = "_at_vercel_slash_static-build"; packageName = "@vercel/static-build"; - version = "1.3.43"; + version = "1.3.45"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/static-build/-/static-build-1.3.43.tgz"; - sha512 = "FttkcVec7tYXz5G+WrummmWywv8XVJyib+XEQUDRs6kVGc5Z5h2Bg4OmgFfflEhummF/saLRrdwbTQgbEZORpA=="; + url = "https://registry.npmjs.org/@vercel/static-build/-/static-build-1.3.45.tgz"; + sha512 = "htXQUuxxSguvTvsZO0gZeJiGXSUjzMu5VAUpUbQxVSdaB2tY4KKUSo/wq1vLq4jO5YydlUwqazelf0nehSJj6A=="; }; }; "@vercel/static-config-2.0.17" = { @@ -15998,13 +15629,13 @@ let sha512 = "w9wKgDO4C95qnXZRwZTfCmLWqyRnooGjcIwG0wADWjw9/HN0p7dtvtgSvItZtUyNteEvgTrd8QojNEqV6DAGTA=="; }; }; - "@whatwg-node/node-fetch-0.4.11" = { + "@whatwg-node/node-fetch-0.4.13" = { name = "_at_whatwg-node_slash_node-fetch"; packageName = "@whatwg-node/node-fetch"; - version = "0.4.11"; + version = "0.4.13"; src = fetchurl { - url = "https://registry.npmjs.org/@whatwg-node/node-fetch/-/node-fetch-0.4.11.tgz"; - sha512 = "JRMx/yrBW/PXUH+0EIurUIQtAsEMrHtZBBKv6b+YCK1yG7pMNqtkl5Z39Rynq8ysVc/I6yTtNwkCy9bz5To1vw=="; + url = "https://registry.npmjs.org/@whatwg-node/node-fetch/-/node-fetch-0.4.13.tgz"; + sha512 = "Wijn8jtXq6VBX6EttABXHJIQBcoOP6RRQllXbiaHGORACTDr1xg6g2UnkoggY3dbDkm1VsMjdSe7NVBPc4ukYg=="; }; }; "@xmldom/xmldom-0.7.13" = { @@ -16367,58 +15998,58 @@ let sha512 = "nzvgl3VfhcELQ8LyVrYOru+UtAy1nrygk2+AGbTm8a5YcO6o8lSjAT+pfg3vJWxIoZKOUhrK6UU7xW/+00kQrg=="; }; }; - "@zwave-js/cc-11.8.1" = { + "@zwave-js/cc-11.10.0" = { name = "_at_zwave-js_slash_cc"; packageName = "@zwave-js/cc"; - version = "11.8.1"; + version = "11.10.0"; src = fetchurl { - url = "https://registry.npmjs.org/@zwave-js/cc/-/cc-11.8.1.tgz"; - sha512 = "7HFkBM/2MUW37CEla/fgXbqXFa6JKDlo1ThYhoLLqlhPowRZc6MhEGWa3rilJU4sgwSF4tFw5JAxgl5DkZ0O2A=="; + url = "https://registry.npmjs.org/@zwave-js/cc/-/cc-11.10.0.tgz"; + sha512 = "8xtEkn1pMF5pnzCYqg1cJ4Rhqd4DLoEeq8RgG+m2JKpY3NWs8WZwOfekDv2BaI7uWZPLlocgmYmwMpnsvRYyVw=="; }; }; - "@zwave-js/config-11.8.1" = { + "@zwave-js/config-11.10.0" = { name = "_at_zwave-js_slash_config"; packageName = "@zwave-js/config"; - version = "11.8.1"; + version = "11.10.0"; src = fetchurl { - url = "https://registry.npmjs.org/@zwave-js/config/-/config-11.8.1.tgz"; - sha512 = "/LQrX0xaXHV8E7qtT7KITUTnEzzhPBHKDAvjwAdiFWhW7jQbTYBennNMaS/btnrDQBZZtXdQOEuTpv8xwDn7wQ=="; + url = "https://registry.npmjs.org/@zwave-js/config/-/config-11.10.0.tgz"; + sha512 = "D0csSHnUBkPkKMtV6pB9uKRrRj3OIfpxjJ2kEo3nu61/eyDSx+HYoyNvt93mWp8A4kNLUIBcwcqIDE92jjclTQ=="; }; }; - "@zwave-js/core-11.8.1" = { + "@zwave-js/core-11.9.1" = { name = "_at_zwave-js_slash_core"; packageName = "@zwave-js/core"; - version = "11.8.1"; + version = "11.9.1"; src = fetchurl { - url = "https://registry.npmjs.org/@zwave-js/core/-/core-11.8.1.tgz"; - sha512 = "zL7p+wNSZrkucQ+XpliixxW/Q++aKv/a/yu3SbKpvoWlBlx1Gu2uiJtHE66sULc/QiTk/h/fQGSV5XrlFIxadQ=="; + url = "https://registry.npmjs.org/@zwave-js/core/-/core-11.9.1.tgz"; + sha512 = "bfkGk+kWobTC6p4xswgSkdKKF45oMh3dq6isuL1uL0KPVnD1kAq2QlRpisG6Fl3BVnXiB48o6TvWaRyhkHHk6w=="; }; }; - "@zwave-js/host-11.8.1" = { + "@zwave-js/host-11.10.0" = { name = "_at_zwave-js_slash_host"; packageName = "@zwave-js/host"; - version = "11.8.1"; + version = "11.10.0"; src = fetchurl { - url = "https://registry.npmjs.org/@zwave-js/host/-/host-11.8.1.tgz"; - sha512 = "GBzCZ8FJ+tIOLtTL8CBUo+6SqrxeDVnA6tVP/KELXHliSHy4VEcqzUgGD89jmsR4qaY7TX8aVrnlOXe2IQ0gXA=="; + url = "https://registry.npmjs.org/@zwave-js/host/-/host-11.10.0.tgz"; + sha512 = "5ZFKPg7NCLmAb4kHnPQOJ5xehCkba2ZkOYueYgeQMnBP4l0jByG4Q0M6fNxE1sLirOAT6USg1cN6P/RTWq259g=="; }; }; - "@zwave-js/nvmedit-11.8.1" = { + "@zwave-js/nvmedit-11.9.1" = { name = "_at_zwave-js_slash_nvmedit"; packageName = "@zwave-js/nvmedit"; - version = "11.8.1"; + version = "11.9.1"; src = fetchurl { - url = "https://registry.npmjs.org/@zwave-js/nvmedit/-/nvmedit-11.8.1.tgz"; - sha512 = "uX1Z45N1xLKD2B7A3oyztl/dpSx5uo+E8+TpQXmFFOZS3aZzF5Ms6ybO+9F26kZLmb9OSIW8FswlPI6JEU6nxg=="; + url = "https://registry.npmjs.org/@zwave-js/nvmedit/-/nvmedit-11.9.1.tgz"; + sha512 = "QfsJbb8t2VlkGIhB4V3XhzBA0u8ViDbA+2KcJqtQWTo5715wWJnJ2J2s9mcPmw946l4Hsv3dC5LfaztbgSxnUw=="; }; }; - "@zwave-js/serial-11.8.1" = { + "@zwave-js/serial-11.10.0" = { name = "_at_zwave-js_slash_serial"; packageName = "@zwave-js/serial"; - version = "11.8.1"; + version = "11.10.0"; src = fetchurl { - url = "https://registry.npmjs.org/@zwave-js/serial/-/serial-11.8.1.tgz"; - sha512 = "30h8TkZt9PDf1p7+bh/s8mJSMJAAg3vcH7dfmun6IngTjTM0UAURgD+FyaWiU44PBD++bVtgLi0pA9q/4h53tg=="; + url = "https://registry.npmjs.org/@zwave-js/serial/-/serial-11.10.0.tgz"; + sha512 = "S5GX1fMdDLcdhJGmgVmSIcG2YWuCDn5APpyqF9tKle1fMtRvGTi4Yq/EP7C3pZB2iSKju339Qms0V+oRCZ4u3w=="; }; }; "@zwave-js/shared-11.8.0" = { @@ -16430,13 +16061,13 @@ let sha512 = "xEh31zJ+qIjcmFv249yxPCCUlZExwk+qKRcLxXqOsDyt7GUyU5jzEqoGlDe0ijCWmZxlbJdmXzOU/a9IhAffzw=="; }; }; - "@zwave-js/testing-11.8.1" = { + "@zwave-js/testing-11.10.0" = { name = "_at_zwave-js_slash_testing"; packageName = "@zwave-js/testing"; - version = "11.8.1"; + version = "11.10.0"; src = fetchurl { - url = "https://registry.npmjs.org/@zwave-js/testing/-/testing-11.8.1.tgz"; - sha512 = "P4lJdsxpiihczzE47h38KlUv5G8iZmStMHtUpoNhMCALHrENGVbK1FCxCEne0rgX5PvLGqkgH/pUm5ltHWl5/Q=="; + url = "https://registry.npmjs.org/@zwave-js/testing/-/testing-11.10.0.tgz"; + sha512 = "9MmltpM7c2u98VLLIThk4y/V88ehDITzQ+CHxAjLybk4eK2hsB3jnDPeWhk9su0umRGMpG5LfxB7iZxMwEOxug=="; }; }; "CSSselect-0.4.1" = { @@ -16997,13 +16628,13 @@ let sha512 = "o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg=="; }; }; - "agentkeepalive-4.3.0" = { + "agentkeepalive-4.5.0" = { name = "agentkeepalive"; packageName = "agentkeepalive"; - version = "4.3.0"; + version = "4.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.3.0.tgz"; - sha512 = "7Epl1Blf4Sy37j4v9f9FjICCh4+KAQOyXgHEwlyBiAQLbhKdq/i2QQU3amQalS/wPhdPzDXPL5DMR5bkn+YeWg=="; + url = "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.5.0.tgz"; + sha512 = "5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew=="; }; }; "aggregate-error-3.1.0" = { @@ -17024,15 +16655,6 @@ let sha512 = "0poP0T7el6Vq3rstR8Mn4V/IQrpBLO6POkUSrN7RhyY+GF/InCFShQzsQ39T25gkHhLgSLByyAz+Kjb+c2L98w=="; }; }; - "airplay-js-0.2.16" = { - name = "airplay-js"; - packageName = "airplay-js"; - version = "0.2.16"; - src = fetchurl { - url = "https://registry.npmjs.org/airplay-js/-/airplay-js-0.2.16.tgz"; - sha512 = "e3H2TsznhnXTuSuw15dk9a+h0DctqJu69e8APtDllpUfq4GsMhq5jTdB/bmgigU03z1POC7QbuD90UTm1EWjeA=="; - }; - }; "airplay-js-0.3.0" = { name = "airplay-js"; packageName = "airplay-js"; @@ -17231,13 +16853,13 @@ let sha512 = "2Sy0hWhifVb8ycNFJgicL8fDPL2Ct1r62XOVxXnykn36z22MPZwnQlCmB2viQlY/lwfuO67GaQjUZ0rJgdVP7Q=="; }; }; - "all-package-names-2.0.706" = { + "all-package-names-2.0.711" = { name = "all-package-names"; packageName = "all-package-names"; - version = "2.0.706"; + version = "2.0.711"; src = fetchurl { - url = "https://registry.npmjs.org/all-package-names/-/all-package-names-2.0.706.tgz"; - sha512 = "91VRfOiiyjEWpYBXKJOGS+0V0a4Hms0M1g7av7DO3xG0klj2HMIgzj/Lph3k6xwrF6OqM5x+D/gKWHqlyk7aGA=="; + url = "https://registry.npmjs.org/all-package-names/-/all-package-names-2.0.711.tgz"; + sha512 = "aSHRneo39B6atB9qw3Iq+Xv0oOxZc3Fue7A61ifg+H4GlhTiQWS4QYUxX8Ncgg4IQy6mNV6s+lI3BjkbMZWS4A=="; }; }; "alphanum-sort-1.0.2" = { @@ -17465,24 +17087,6 @@ let sha512 = "1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw=="; }; }; - "ansi-regex-0.2.1" = { - name = "ansi-regex"; - packageName = "ansi-regex"; - version = "0.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-0.2.1.tgz"; - sha512 = "sGwIGMjhYdW26/IhwK2gkWWI8DRCVO6uj3hYgHT+zD+QL1pa37tM3ujhyfcJIYSbsxp7Gxhy7zrRW/1AHm4BmA=="; - }; - }; - "ansi-regex-1.1.1" = { - name = "ansi-regex"; - packageName = "ansi-regex"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-1.1.1.tgz"; - sha512 = "q5i8bFLg2wDfsuR56c1NzlJFPzVD+9mxhDrhqOGigEFa87OZHlF+9dWeGWzVTP/0ECiA/JUGzfzRr2t3eYORRw=="; - }; - }; "ansi-regex-2.1.1" = { name = "ansi-regex"; packageName = "ansi-regex"; @@ -17546,15 +17150,6 @@ let sha512 = "3iF4FIKdxaVYT3JqQuY3Wat/T2t7TRbbQ94Fu50ZUCbLy4TFbTzr90NOHQodQkNqmeEGCw8WbeP78WNi6SKYUA=="; }; }; - "ansi-styles-1.1.0" = { - name = "ansi-styles"; - packageName = "ansi-styles"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-1.1.0.tgz"; - sha512 = "f2PKUkN5QngiSemowa6Mrk9MPCdtFiOSmibjZ+j1qhLGHHYsqZwmBMRF3IRMVXo8sybDqx2fJl2d/8OphBoWkA=="; - }; - }; "ansi-styles-2.2.1" = { name = "ansi-styles"; packageName = "ansi-styles"; @@ -17807,15 +17402,6 @@ let sha512 = "ZbH3ezXfnT/YE3NdqduIt4lBV+H0ybvA2Qx3K76gIjQvh8gROpDFdDLpx6B1QJtW7zxisCbpTlCLhKqoR8cDBw=="; }; }; - "append-0.1.1" = { - name = "append"; - packageName = "append"; - version = "0.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/append/-/append-0.1.1.tgz"; - sha512 = "B93J4FCl2WcF6cQvsnX6nxPrQlb4fO1Hosp3S1Frf2nBqHDvOC89kasUoUtdeP+dAbwZxEW5k4E5RgWMJP/Z9g=="; - }; - }; "append-batch-0.0.2" = { name = "append-batch"; packageName = "append-batch"; @@ -17897,13 +17483,13 @@ let sha512 = "ZzXXpZpDRGcy6Pp5V319nDF9/+Ey7jNknEXZyaBajtC5onN0dcBem6ng5jcb3MPH2AjYWRI8XgyNEuzP/6Y5/A=="; }; }; - "applicationinsights-native-metrics-0.0.9" = { + "applicationinsights-native-metrics-0.0.10" = { name = "applicationinsights-native-metrics"; packageName = "applicationinsights-native-metrics"; - version = "0.0.9"; + version = "0.0.10"; src = fetchurl { - url = "https://registry.npmjs.org/applicationinsights-native-metrics/-/applicationinsights-native-metrics-0.0.9.tgz"; - sha512 = "JGnb6Ou/E4XuM3eKZP+nvpA9NWYLscclwoMFvAHyUknthiNJwREHYrNQT3c63P7AWoFsyf6cyUqeo9KX1jMp8w=="; + url = "https://registry.npmjs.org/applicationinsights-native-metrics/-/applicationinsights-native-metrics-0.0.10.tgz"; + sha512 = "uruIWFcc/sEowcRvNz0mKMWMsPs2trSzegjCtjTqsSBk8EbnctTNMJtPdye7w46say+BwosNHRW3zYiBmY8CIg=="; }; }; "aproba-1.2.0" = { @@ -17978,15 +17564,6 @@ let sha512 = "Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw=="; }; }; - "are-we-there-yet-1.0.6" = { - name = "are-we-there-yet"; - packageName = "are-we-there-yet"; - version = "1.0.6"; - src = fetchurl { - url = "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.0.6.tgz"; - sha512 = "Zfw6bteqM9gQXZ1BIWOgM8xEwMrUGoyL8nW13+O+OOgNX3YhuDN1GDgg1NzdTlmm3j+9sHy7uBZ12r+z9lXnZQ=="; - }; - }; "are-we-there-yet-1.1.7" = { name = "are-we-there-yet"; packageName = "are-we-there-yet"; @@ -18248,15 +17825,6 @@ let sha512 = "H3LU5RLiSsGXPhN+Nipar0iR0IofH+8r89G2y1tBKxQ/agagKyAjhkAFDRBfodP2caPrNKHpAWNIM/c9yeL7uA=="; }; }; - "array-find-0.1.1" = { - name = "array-find"; - packageName = "array-find"; - version = "0.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/array-find/-/array-find-0.1.1.tgz"; - sha512 = "r40SlXgo1T2nsHx9FZ7Nju4QuQPUffepHeJb/juqVY1T5SVJ8hoDdo7RFHZRhdUf6+LT8s/6tKLjL6H9POMoGQ=="; - }; - }; "array-find-index-1.0.2" = { name = "array-find-index"; packageName = "array-find-index"; @@ -18347,15 +17915,6 @@ let sha512 = "eOCut5rXlI6aCOS7Z7kCplKRKyiFQ6dHFBem4PwlwKeNFk2/XxTrhRh5T9PyaEWGy/NHTZWbY+nsZlNFJu9rYg=="; }; }; - "array-loop-1.0.0" = { - name = "array-loop"; - packageName = "array-loop"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/array-loop/-/array-loop-1.0.0.tgz"; - sha512 = "z87f4Wxh40inSJ3HUrhVz72WW3nRzMeUWPmrJL0F8CbL9c1bpHuUIS7zwZdXeUcFzuMmOd5s08UYHY6tKzu6yw=="; - }; - }; "array-lru-1.1.1" = { name = "array-lru"; packageName = "array-lru"; @@ -18392,15 +17951,6 @@ let sha512 = "L0XlBwfx9QetHOsbLDrE/vh2t018w9462HM3iaFfxRiK83aJjAt/Ja3NMkOW7FICwWTlQBa3ZbL5FKhuQWkDrg=="; }; }; - "array-shuffle-1.0.1" = { - name = "array-shuffle"; - packageName = "array-shuffle"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/array-shuffle/-/array-shuffle-1.0.1.tgz"; - sha512 = "PBqgo1Y2XWSksBzq3GFPEb798ZrW2snAcmr4drbVeF/6MT/5aBlkGJEvu5A/CzXHf4EjbHOj/ZowatjlIiVidA=="; - }; - }; "array-slice-1.1.0" = { name = "array-slice"; packageName = "array-slice"; @@ -18626,15 +18176,6 @@ let sha512 = "xpkr6sCDIYTPqzvjG8M3ncw1YOTaloWZOyrUmicoEifBEKzQzt+ooUpRpQ/AbOoJfO/p2ZKiyp79qHThzJDulQ=="; }; }; - "asciichart-1.5.25" = { - name = "asciichart"; - packageName = "asciichart"; - version = "1.5.25"; - src = fetchurl { - url = "https://registry.npmjs.org/asciichart/-/asciichart-1.5.25.tgz"; - sha512 = "PNxzXIPPOtWq8T7bgzBtk9cI2lgS4SJZthUHEiQ1aoIc3lNzGfUvIvo9LiAnq26TACo9t1/4qP6KTGAUbzX9Xg=="; - }; - }; "ascli-0.3.0" = { name = "ascli"; packageName = "ascli"; @@ -19121,24 +18662,6 @@ let sha512 = "eKEYj1+jDgQ15jazjmelcPGXO77pa5epzlyXyEQcwwLtnACtBTCrxaW+96uXF2j4rzIikmUtVlzXwejx6iIhWw=="; }; }; - "asyncjs-util-1.2.11" = { - name = "asyncjs-util"; - packageName = "asyncjs-util"; - version = "1.2.11"; - src = fetchurl { - url = "https://registry.npmjs.org/asyncjs-util/-/asyncjs-util-1.2.11.tgz"; - sha512 = "XPPs2Fwsj07cQ/NB8qAqYv6uqaJU9k1i2cwzHyF62PYuJynNv9Rp+ySm9mh5nQfLq/yOzlmDewFoLJIao21zNw=="; - }; - }; - "asyncjs-util-1.2.12" = { - name = "asyncjs-util"; - packageName = "asyncjs-util"; - version = "1.2.12"; - src = fetchurl { - url = "https://registry.npmjs.org/asyncjs-util/-/asyncjs-util-1.2.12.tgz"; - sha512 = "ZuiV9aMltl2Db9AB+4h0esHOc642ktBivOhyV3ZHQ4nHwSPH7KiLIxiPTubO4cyx6aJ1Cb5ASJVHUiTk+6DVQQ=="; - }; - }; "asynckit-0.4.0" = { name = "asynckit"; packageName = "asynckit"; @@ -19283,15 +18806,6 @@ let sha512 = "ooviqdwwgfIfNmDwo94wlshcdzfO64XV0Cg6oDsDYBJfITDz1EngD2z7DkbvCWn+XIMsIqW27sEVF6qcpJrRcg=="; }; }; - "autocast-0.0.4" = { - name = "autocast"; - packageName = "autocast"; - version = "0.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/autocast/-/autocast-0.0.4.tgz"; - sha512 = "yZrGUpWQTGfNpOabBN90vHuQrZcUWm0eNp9BzoFzysgQMPLLTlEp32cNFrluSMUCUAs4mfbubfjdyB+B7fB3TQ=="; - }; - }; "autodll-webpack-plugin-0.4.2" = { name = "autodll-webpack-plugin"; packageName = "autodll-webpack-plugin"; @@ -19328,13 +18842,13 @@ let sha512 = "d1W2aNSYcz/sxYO4pMGX9vq65qOTu0P800epMud+6cYYX0QcT7zyqcxec3VWzpgvdXo57UWmVbZpLMjX2m1I7Q=="; }; }; - "aws-crt-1.17.0" = { + "aws-crt-1.17.1" = { name = "aws-crt"; packageName = "aws-crt"; - version = "1.17.0"; + version = "1.17.1"; src = fetchurl { - url = "https://registry.npmjs.org/aws-crt/-/aws-crt-1.17.0.tgz"; - sha512 = "DP7xySX/3oxhXw1mH7HAnudylk31CFXEWeKplmWpIzei0eE9tvw1fnJuBcRZjKTi7/tt+MFbhdHi3glWk+TSfg=="; + url = "https://registry.npmjs.org/aws-crt/-/aws-crt-1.17.1.tgz"; + sha512 = "co9Y8jUKSrfHcr5+wK6kGzaTMlNy0nNdOhAvyl5FlZttYqIvKRzsQFNa08qPIgFGIhYZRV9KJbx+geYXkWL3AQ=="; }; }; "aws-sdk-1.18.0" = { @@ -19364,13 +18878,13 @@ let sha512 = "bSOfBCVPQ/0NWYpPl34MgqMbJf0eO6PsyVlmjbStlba+98hnE6X7z67tawBRot7S+qH3L49KW2u6dfJjvhDfdQ=="; }; }; - "aws-sdk-2.1427.0" = { + "aws-sdk-2.1433.0" = { name = "aws-sdk"; packageName = "aws-sdk"; - version = "2.1427.0"; + version = "2.1433.0"; src = fetchurl { - url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1427.0.tgz"; - sha512 = "PIbBIKwvkvvic7hNQevpzi5Xqbi0YzzbLaFv8NZMorwu73b8ydyF+/B/G2iJ0w82jlAzDPQpWqf/7MuP59X9Gg=="; + url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1433.0.tgz"; + sha512 = "QLZLC8eAk4+l8x9kUbrWPjuyWchE3Ho18llm0Qx5aNcoOq/el4+NxzYeqKjwjGjNJuJ/AeX3J+BzazazrNv9BQ=="; }; }; "aws-sign2-0.6.0" = { @@ -19490,15 +19004,6 @@ let sha512 = "mmMbNDjpkAKlyxVOYjkpvV6rDRoSjBXwHbfkWvnsplRTGYCergbHvZInRB1G3lqumllUQwo0A4uPoqEsYfzq3A=="; }; }; - "axios-digest-0.3.0" = { - name = "axios-digest"; - packageName = "axios-digest"; - version = "0.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/axios-digest/-/axios-digest-0.3.0.tgz"; - sha512 = "zl7zThkh+YLSDUYwDqY1hVPndpDn4ghbB59JVhLIj19X5GJBaIts9+SI82O6D0P2wxz9uXLz+Mwnh1WkNDuXgQ=="; - }; - }; "axios-retry-3.2.0" = { name = "axios-retry"; packageName = "axios-retry"; @@ -20048,13 +19553,13 @@ let sha512 = "x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw=="; }; }; - "bcfg-0.1.8" = { + "bcfg-0.2.1" = { name = "bcfg"; packageName = "bcfg"; - version = "0.1.8"; + version = "0.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/bcfg/-/bcfg-0.1.8.tgz"; - sha512 = "1zHJM1/sztv9ldutWyJDZSRYQJEuRBTIzLWZ2J5ncWoWI2T6b4/hahhvQmnzucfeleU5Mx5+bcwCsF2wcWt2vA=="; + url = "https://registry.npmjs.org/bcfg/-/bcfg-0.2.1.tgz"; + sha512 = "Q69DG2V9QJexdXvYoiXM4xfQ5m65tIOAzJCcW4USQdvbWEJJqBQ9MEDdyJb2ei5fadAJPVp8rUpLbFnkC37FZA=="; }; }; "bcrypt-5.0.1" = { @@ -20192,15 +19697,6 @@ let sha512 = "ct6s33iiwRCUPp9KXnJ4QMWDgHIgaw36caK/5XEQ9L8dCzSQlJt1Vk6VmHh1VD4AlGCAI4C2zmtfItifBBPrhQ=="; }; }; - "bessel-1.0.2" = { - name = "bessel"; - packageName = "bessel"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/bessel/-/bessel-1.0.2.tgz"; - sha512 = "Al3nHGQGqDYqqinXhQzmwmcRToe/3WyBv4N8aZc5Pef8xw2neZlR9VPi84Sa23JtgWcucu18HxVZrnI0fn2etw=="; - }; - }; "better-assert-1.0.2" = { name = "better-assert"; packageName = "better-assert"; @@ -20507,33 +20003,6 @@ let sha512 = "WDTmLRQUsiioBdTs9BmSEmkJza+8xfJmptsNJjxnoq3EydSa/ZBXT6rm66KoT3PJIRYMnhSKNR7S9YL1l7R40Q=="; }; }; - "bip65-1.0.3" = { - name = "bip65"; - packageName = "bip65"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/bip65/-/bip65-1.0.3.tgz"; - sha512 = "RQ1nc7xtnLa5XltnCqkoR2zmhuz498RjMJwrLKQzOE049D1HUqnYfon7cVSbwS5UGm0/EQlC2CH+NY3MyITA4Q=="; - }; - }; - "bip66-1.1.5" = { - name = "bip66"; - packageName = "bip66"; - version = "1.1.5"; - src = fetchurl { - url = "https://registry.npmjs.org/bip66/-/bip66-1.1.5.tgz"; - sha512 = "nemMHz95EmS38a26XbbdxIYj5csHd3RMP3H5bwQknX0WYHF01qhpufP42mLOwVICuH2JmhIhXiWs89MfUGL7Xw=="; - }; - }; - "bip68-1.0.4" = { - name = "bip68"; - packageName = "bip68"; - version = "1.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/bip68/-/bip68-1.0.4.tgz"; - sha512 = "O1htyufFTYy3EO0JkHg2CLykdXEtV2ssqw47Gq9A0WByp662xpJnMEB9m43LZjsSDjIAOozWRExlFQk2hlV1XQ=="; - }; - }; "bipf-1.9.0" = { name = "bipf"; packageName = "bipf"; @@ -20552,24 +20021,6 @@ let sha512 = "xChg+vwCPZckjT1s0bJU5KbGWVqA+LDsi4YOiXVFntl+yzlPpBMdyeDU/wTTqoKAZAdOMDfGjpOUyP+untdOWQ=="; }; }; - "bitcoin-ops-1.4.1" = { - name = "bitcoin-ops"; - packageName = "bitcoin-ops"; - version = "1.4.1"; - src = fetchurl { - url = "https://registry.npmjs.org/bitcoin-ops/-/bitcoin-ops-1.4.1.tgz"; - sha512 = "pef6gxZFztEhaE9RY9HmWVmiIHqCb2OyS4HPKkpc6CIiiOa3Qmuoylxc5P2EkU3w+5eTSifI9SEZC88idAIGow=="; - }; - }; - "bitcoinjs-lib-6.1.0" = { - name = "bitcoinjs-lib"; - packageName = "bitcoinjs-lib"; - version = "6.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/bitcoinjs-lib/-/bitcoinjs-lib-6.1.0.tgz"; - sha512 = "eupi1FBTJmPuAZdChnzTXLv2HBqFW2AICpzXZQLniP0V9FWWeeUQSMKES6sP8isy/xO0ijDexbgkdEyFVrsuJw=="; - }; - }; "bitcoinjs-lib-6.1.3" = { name = "bitcoinjs-lib"; packageName = "bitcoinjs-lib"; @@ -21074,69 +20525,6 @@ let sha512 = "ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA=="; }; }; - "bolt01-1.2.6" = { - name = "bolt01"; - packageName = "bolt01"; - version = "1.2.6"; - src = fetchurl { - url = "https://registry.npmjs.org/bolt01/-/bolt01-1.2.6.tgz"; - sha512 = "6aFEefm/kAqMQoTJnqUvm8GtVli2D5Jri53Tcht6v9KwYy7f8uWlDDluaU3/bxynscmTSZBN5uHArn+2SwdkMQ=="; - }; - }; - "bolt01-2.0.0" = { - name = "bolt01"; - packageName = "bolt01"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/bolt01/-/bolt01-2.0.0.tgz"; - sha512 = "861g8sEe0p7ILyADnpwJ8xAMkILDPHXWx3FXBDdc0rqz2D16YtrRUATmyvP8vu/WBH93wNBr6ak0s+2XzNeOyA=="; - }; - }; - "bolt03-1.3.1" = { - name = "bolt03"; - packageName = "bolt03"; - version = "1.3.1"; - src = fetchurl { - url = "https://registry.npmjs.org/bolt03/-/bolt03-1.3.1.tgz"; - sha512 = "msidkntm0oHouN6Vqg8BisEctg213KlH5PUxxPViYpXTj8ujwprCiImcz8CZFYTGVX1t3lxT9NhhwKG3e6po2A=="; - }; - }; - "bolt07-1.8.3" = { - name = "bolt07"; - packageName = "bolt07"; - version = "1.8.3"; - src = fetchurl { - url = "https://registry.npmjs.org/bolt07/-/bolt07-1.8.3.tgz"; - sha512 = "NXML2vzFmxRrdWt+wNqphU6f8FmS7tkebqDLIhfc8xKoOcGFv4Kf7WuJbKBqcfFDQVXpCpKAF7FQAgTIN2/30A=="; - }; - }; - "bolt07-1.8.4" = { - name = "bolt07"; - packageName = "bolt07"; - version = "1.8.4"; - src = fetchurl { - url = "https://registry.npmjs.org/bolt07/-/bolt07-1.8.4.tgz"; - sha512 = "UyZRSYmVE8K++Jg1BiJrUkxQak03aS/s7ESKDsBdBPzaTlk2E09Y0JYa9HhWN7MRn48Y2K1doOzkb1Hn6XixZw=="; - }; - }; - "bolt09-0.2.5" = { - name = "bolt09"; - packageName = "bolt09"; - version = "0.2.5"; - src = fetchurl { - url = "https://registry.npmjs.org/bolt09/-/bolt09-0.2.5.tgz"; - sha512 = "LH8wb3KbVP62SUpnwqUWqoyTUhda3JFQh4TSe6urt2mEAC0w53PSwqB4wqnHdG7QpE209Q2WQl/QH1XtVIsD3g=="; - }; - }; - "bolt09-1.0.0" = { - name = "bolt09"; - packageName = "bolt09"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/bolt09/-/bolt09-1.0.0.tgz"; - sha512 = "J8wh6mRTNnYJuC43iSJRvM2Te0RtO4+Cn0JCgF6q2xWXKWjZjdPV5AGamD8R8C39/Ei6L0I780aFvIZu+bATWw=="; - }; - }; "bonjour-3.5.0" = { name = "bonjour"; packageName = "bonjour"; @@ -22046,15 +21434,6 @@ let sha512 = "HNAysvwrmORbm5w5rB6yCz2Sab+ATCW6RSAOVWJmaRnPviPfuNO8+f3R0MyCJMUhL8sMx88LcawtIcfjHERhVA=="; }; }; - "buffer-shims-1.0.0" = { - name = "buffer-shims"; - packageName = "buffer-shims"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/buffer-shims/-/buffer-shims-1.0.0.tgz"; - sha512 = "Zy8ZXMyxIT6RMTeY7OP/bDndfj6bwCan7SS98CEndS6deHwWPpseeHlwarNcBim+etXnF9HBc1non5JgDaJU1g=="; - }; - }; "buffer-xor-1.0.3" = { name = "buffer-xor"; packageName = "buffer-xor"; @@ -22298,13 +21677,13 @@ let sha512 = "38WQyq94sgKaJbHSmkOwZqba6Ac0KIKPO0SMDNg/mCcwUos2NIrMg5Bb2LkzIer+RzS186IYusNeSrJrKdaqhA=="; }; }; - "bweb-0.1.12" = { + "bweb-0.2.0" = { name = "bweb"; packageName = "bweb"; - version = "0.1.12"; + version = "0.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/bweb/-/bweb-0.1.12.tgz"; - sha512 = "ctj1FnoTF+7/dRiRYVVwY/6lV/NYQ5Gz8HS0LsyUxae7fMJGKx2geHHIcIXeZ5DolS49Xq9e4rh29aG/vAJrWw=="; + url = "https://registry.npmjs.org/bweb/-/bweb-0.2.0.tgz"; + sha512 = "JfpXemYqylNySwrhR7b4HZTrxnDhbOzNiIXCPBVQU6O8rTZ1wFDLFDr/7uQqkwzjyNZ4ZWTp5wP/pJY2IizfDA=="; }; }; "byline-5.0.0" = { @@ -22478,15 +21857,6 @@ let sha512 = "2lJdWbgHFFxcSth9s2wpId3CR3v1YC63KjP4T9WhpW7LWlY7Hiiei3QwwqzkWqlJTfR8lSy9F5kRQECeyj+yQA=="; }; }; - "cache-content-type-1.0.1" = { - name = "cache-content-type"; - packageName = "cache-content-type"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/cache-content-type/-/cache-content-type-1.0.1.tgz"; - sha512 = "IKufZ1o4Ut42YUrZSo8+qnMTrFuKkvyoLXUywKz9GJ5BrhOFGhLdkx9sG4KAnVvbY6kEcSFjLQul+DVmBm2bgA=="; - }; - }; "cacheable-lookup-5.0.4" = { name = "cacheable-lookup"; packageName = "cacheable-lookup"; @@ -22865,13 +22235,13 @@ let sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw=="; }; }; - "caniuse-lite-1.0.30001518" = { + "caniuse-lite-1.0.30001519" = { name = "caniuse-lite"; packageName = "caniuse-lite"; - version = "1.0.30001518"; + version = "1.0.30001519"; src = fetchurl { - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001518.tgz"; - sha512 = "rup09/e3I0BKjncL+FesTayKtPrdwKhUufQFd3riFw1hHg8JmIFoInYfB102cFcY/pPgGmdyl/iy+jgiDi2vdA=="; + url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001519.tgz"; + sha512 = "0QHgqR+Jv4bxHMp8kZ1Kn8CH55OikjKJ6JmKkZYP1F3D7w+lnFXF70nG5eNfsZS89jadi5Ywy5UCSKLAglIRkg=="; }; }; "canvas-2.11.2" = { @@ -23018,24 +22388,6 @@ let sha512 = "Cg8/ZSBEa8ZVY9HspcGUYaK63d/bN7rqS3CYCzEGUxuYv6UlmcjzDUz2fCFFHyTvUW5Pk0I+3hkA3iXlIj6guA=="; }; }; - "cbor-8.1.0" = { - name = "cbor"; - packageName = "cbor"; - version = "8.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/cbor/-/cbor-8.1.0.tgz"; - sha512 = "DwGjNW9omn6EwP70aXsn7FQJx5kO12tX0bZkaTjzdVFM6/7nhA4t0EENocKGx6D2Bch9PE2KzCUf5SceBdeijg=="; - }; - }; - "cbor-9.0.0" = { - name = "cbor"; - packageName = "cbor"; - version = "9.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/cbor/-/cbor-9.0.0.tgz"; - sha512 = "87cFgOKxjUOnGpNeQMBVER4Mc/rZAk9xC+Ygfx5FLCAUt/tpVHphuZC5fJmp/KSDsEsBEDIPtEt0YbD/GFQw8Q=="; - }; - }; "ccount-1.1.0" = { name = "ccount"; packageName = "ccount"; @@ -23054,22 +22406,22 @@ let sha512 = "eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg=="; }; }; - "cdk8s-2.29.0" = { + "cdk8s-2.39.0" = { name = "cdk8s"; packageName = "cdk8s"; - version = "2.29.0"; + version = "2.39.0"; src = fetchurl { - url = "https://registry.npmjs.org/cdk8s/-/cdk8s-2.29.0.tgz"; - sha512 = "w6kc457K1xr6dWNRPHIUjDleGNSar+85RZWI+b46DxNw4WdhFuSAEDRAFwcSWyxIv1d++C3ukO/BsFSOXQYU+A=="; + url = "https://registry.npmjs.org/cdk8s/-/cdk8s-2.39.0.tgz"; + sha512 = "4jcvW7v0OmTCYkmVnwhHAFzAAJDMS1gM4ep4O6TIAkZ2bxU0cSxk4qj3PKkodlKPbdjC8zsAMfQCG8m9IgNbeg=="; }; }; - "cdk8s-plus-25-2.16.0" = { + "cdk8s-plus-25-2.19.0" = { name = "cdk8s-plus-25"; packageName = "cdk8s-plus-25"; - version = "2.16.0"; + version = "2.19.0"; src = fetchurl { - url = "https://registry.npmjs.org/cdk8s-plus-25/-/cdk8s-plus-25-2.16.0.tgz"; - sha512 = "QSxTfuu9sTm8mYuxicQX9kxaNZIYPwt0vkwNojZETLkqIQO7bGmc0Cn3nAwnRDNfRUMs3JwbIcu/SHahN/18/w=="; + url = "https://registry.npmjs.org/cdk8s-plus-25/-/cdk8s-plus-25-2.19.0.tgz"; + sha512 = "jftjiA/Vj1VcpHTzSyX+vWstxeeQMei/2U0WWAfBxygaE/CpX1IfMy8LhT19c5dskFaIolE4lqzbQnONymsopQ=="; }; }; "cdktf-0.17.3" = { @@ -23135,24 +22487,6 @@ let sha512 = "sQfYDlfv2DGVtjdoQqxS0cEZDroyG8h6TamA6rvxwlrU5BaSLDx9xhatBYl2pxZ7gmpNaPFVwBtdGdu5rQ+tYQ=="; }; }; - "chalk-0.5.1" = { - name = "chalk"; - packageName = "chalk"; - version = "0.5.1"; - src = fetchurl { - url = "https://registry.npmjs.org/chalk/-/chalk-0.5.1.tgz"; - sha512 = "bIKA54hP8iZhyDT81TOsJiQvR1gW+ZYSXFaZUAvoD4wCHdbHY2actmpTE4x344ZlFqHbvoxKOaESULTZN2gstg=="; - }; - }; - "chalk-1.0.0" = { - name = "chalk"; - packageName = "chalk"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/chalk/-/chalk-1.0.0.tgz"; - sha512 = "1TE3hpADga5iWinlcCpyhC7fTl9uQumLD8i2jJoJeVg7UbveY5jj7F6uCq8w0hQpSeLhaPn5QFe8e56toMVP1A=="; - }; - }; "chalk-1.1.3" = { name = "chalk"; packageName = "chalk"; @@ -23234,6 +22568,15 @@ let sha512 = "/ghrgmhfY8RaSdeo43hNXxpoHAtxdbskUHjPpfqUWGttFgycUhYPGx3YZBCnUCvOa7Doivn1IZec3DEGFoMgLg=="; }; }; + "chalk-template-1.1.0" = { + name = "chalk-template"; + packageName = "chalk-template"; + version = "1.1.0"; + src = fetchurl { + url = "https://registry.npmjs.org/chalk-template/-/chalk-template-1.1.0.tgz"; + sha512 = "T2VJbcDuZQ0Tb2EWwSotMPJjgpy1/tGee1BTpUNsGZ/qgNjV2t7Mvu+d4600U564nbLesN1x2dPL+xii174Ekg=="; + }; + }; "chance-1.0.18" = { name = "chance"; packageName = "chance"; @@ -23405,13 +22748,13 @@ let sha512 = "B07aAzxcrikjAPyV+01j7BmOpxtQETxTSlQ26BEYJ+3iUkbNKaOJ/nDbT6JjyqYxseM0ON12COHYdU2cTIjC7A=="; }; }; - "chart.js-4.3.2" = { + "chart.js-4.3.3" = { name = "chart.js"; packageName = "chart.js"; - version = "4.3.2"; + version = "4.3.3"; src = fetchurl { - url = "https://registry.npmjs.org/chart.js/-/chart.js-4.3.2.tgz"; - sha512 = "pvQNyFOY1QmbmIr8oDORL16/FFivfxj8V26VFpFilMo4cNvkV5WXLJetDio365pd9gKUHGdirUTbqJfw8tr+Dg=="; + url = "https://registry.npmjs.org/chart.js/-/chart.js-4.3.3.tgz"; + sha512 = "aTk7pBw+x6sQYhon/NR3ikfUJuym/LdgpTlgZRe2PaEhjUMKBKyNaFCMVRAyTEWYFNO7qRu7iQVqOw/OqzxZxQ=="; }; }; "chartjs-color-2.4.1" = { @@ -23549,13 +22892,13 @@ let sha512 = "9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g=="; }; }; - "chevrotain-4.1.1" = { + "chevrotain-11.0.2" = { name = "chevrotain"; packageName = "chevrotain"; - version = "4.1.1"; + version = "11.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/chevrotain/-/chevrotain-4.1.1.tgz"; - sha512 = "NQky1HQyiAzxsxpq4Ppt47SYO2U3JLtmfs85QPf3kYSzGBjjp5AA8kqjH8hCjGFRpaQ781QOk1ragQIOkBgUTA=="; + url = "https://registry.npmjs.org/chevrotain/-/chevrotain-11.0.2.tgz"; + sha512 = "kQAQeRduf3SpiA8hFX5TtJc2fWKzg7R3oy9o03R6xgJRlCCD38y80jujcMVYyr+AzOsejyCdFq83vkZ91Yw4tA=="; }; }; "child-process-ext-2.1.1" = { @@ -23720,24 +23063,6 @@ let sha512 = "p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg=="; }; }; - "chromecast-player-0.2.3" = { - name = "chromecast-player"; - packageName = "chromecast-player"; - version = "0.2.3"; - src = fetchurl { - url = "https://registry.npmjs.org/chromecast-player/-/chromecast-player-0.2.3.tgz"; - sha512 = "UgTIJ5EGPaXE5tGoEx0wvnZouxpPgRt1xEwpYrzqJpVoKrfD3fmQIydnQyxlrudLpj+Mpt6Jzj10gEr2G6X6mw=="; - }; - }; - "chromecast-scanner-0.5.0" = { - name = "chromecast-scanner"; - packageName = "chromecast-scanner"; - version = "0.5.0"; - src = fetchurl { - url = "https://registry.npmjs.org/chromecast-scanner/-/chromecast-scanner-0.5.0.tgz"; - sha512 = "xVQA3LjIT9uXIXcZ61PskEVsPk1qylzIk9AtJG8aUqvqAuLIY5nMHSt89Bkhcg9k+aMAnCj1xwCaSCmypsT9Pg=="; - }; - }; "chromecasts-1.10.2" = { name = "chromecasts"; packageName = "chromecasts"; @@ -24242,13 +23567,13 @@ let sha512 = "FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw=="; }; }; - "cli-width-4.0.0" = { + "cli-width-4.1.0" = { name = "cli-width"; packageName = "cli-width"; - version = "4.0.0"; + version = "4.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/cli-width/-/cli-width-4.0.0.tgz"; - sha512 = "ZksGS2xpa/bYkNzN3BAw1wEjsLV/ZKOf/CCrJ/QOBsxx6fOARIkwTutxp1XIOIohi6HKmOFjMoK/XaqDVUpEEw=="; + url = "https://registry.npmjs.org/cli-width/-/cli-width-4.1.0.tgz"; + sha512 = "ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ=="; }; }; "cliclopts-1.1.1" = { @@ -24386,15 +23711,6 @@ let sha512 = "BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ=="; }; }; - "clivas-0.1.4" = { - name = "clivas"; - packageName = "clivas"; - version = "0.1.4"; - src = fetchurl { - url = "https://registry.npmjs.org/clivas/-/clivas-0.1.4.tgz"; - sha512 = "aCgOy7EI+ZLuSHFRNNmgpncc3175pH1n6Emom92CgNhUfKYZBzYyhdtnWoY+tOOVYENV7acVOXbxadTO1KUKGA=="; - }; - }; "clivas-0.2.0" = { name = "clivas"; packageName = "clivas"; @@ -24566,15 +23882,6 @@ let sha512 = "RMr0FhtfXemyinomL4hrWcYJxmX6deFdCxpJzhDttxgO1+bcCnkk+9drydLVDmAMG7NE6aN/fl4F7ucU/90gAA=="; }; }; - "cmake-js-6.3.2" = { - name = "cmake-js"; - packageName = "cmake-js"; - version = "6.3.2"; - src = fetchurl { - url = "https://registry.npmjs.org/cmake-js/-/cmake-js-6.3.2.tgz"; - sha512 = "7MfiQ/ijzeE2kO+WFB9bv4QP5Dn2yVaAP2acFJr4NIFy2hT4w6O4EpOTLNcohR5IPX7M4wNf/5taIqMj7UA9ug=="; - }; - }; "cmd-extension-1.0.2" = { name = "cmd-extension"; packageName = "cmd-extension"; @@ -24620,15 +23927,6 @@ let sha512 = "VYtuH+8BzXuZfJI36mr1jZer/Gb96ApyInYwfwOYtm5QqOd/VNR73DLf49hubLzm5QyPaCoYafKBXmM/7vV+5Q=="; }; }; - "cmdln-4.4.0" = { - name = "cmdln"; - packageName = "cmdln"; - version = "4.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/cmdln/-/cmdln-4.4.0.tgz"; - sha512 = "5JQs/rztlvYArEAYgRalqAmSEX/92UlQmPjTiGhzYmOW1WK73Q8/T8A+xNJfLBY4Q8XmA7GhnKj0E3/1C4Ne3g=="; - }; - }; "co-3.1.0" = { name = "co"; packageName = "co"; @@ -24737,22 +24035,13 @@ let sha512 = "+xi2ENsvchtUNa8oBUU58gHgmyN6BEEeZ8NIEgeQ0XnC+AoyihivgZYe+OOiNi+fLy/NUowugwV5gP8XWYDm0Q=="; }; }; - "codemaker-1.85.0" = { + "codemaker-1.86.1" = { name = "codemaker"; packageName = "codemaker"; - version = "1.85.0"; + version = "1.86.1"; src = fetchurl { - url = "https://registry.npmjs.org/codemaker/-/codemaker-1.85.0.tgz"; - sha512 = "58SuiaUdM2tTrfjW0HZ8Udiv9nCWUyKLe6tg11QtinTrzPgO0txqBYwo3AX/H6fg/e9NwtlZAqi58cfxSxG9/g=="; - }; - }; - "codepage-1.4.0" = { - name = "codepage"; - packageName = "codepage"; - version = "1.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/codepage/-/codepage-1.4.0.tgz"; - sha512 = "qpnD+ycuCN+l3MKK3LkFaWKBx/j/jE3ZkGTjFyciX5HQurSg20mrh3dao4hCy0Ej9DXOObTsQPaf4N9bjTcOxA=="; + url = "https://registry.npmjs.org/codemaker/-/codemaker-1.86.1.tgz"; + sha512 = "W35+XgDv/ZNxWTFsvy7xf8XSIwZ8zkJUOlVq0zoOBiZCjk4j0n7HEWy25rI83OZj76ndmyL7EhTyLSTw1PzobA=="; }; }; "coffee-script-1.12.7" = { @@ -24917,15 +24206,6 @@ let sha512 = "Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g=="; }; }; - "colorette-2.0.19" = { - name = "colorette"; - packageName = "colorette"; - version = "2.0.19"; - src = fetchurl { - url = "https://registry.npmjs.org/colorette/-/colorette-2.0.19.tgz"; - sha512 = "3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ=="; - }; - }; "colorette-2.0.20" = { name = "colorette"; packageName = "colorette"; @@ -25124,15 +24404,6 @@ let sha512 = "y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug=="; }; }; - "commander-11.0.0" = { - name = "commander"; - packageName = "commander"; - version = "11.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/commander/-/commander-11.0.0.tgz"; - sha512 = "9HMlXtt/BNoYr8ooyjjNRdIilOTkVJXB+GhxMTtOKwk0R4j4lS4NpjuqmRxroBfnfTSHQIHQB7wryHhXarNjmQ=="; - }; - }; "commander-2.0.0" = { name = "commander"; packageName = "commander"; @@ -26052,15 +25323,6 @@ let sha512 = "JbZjwE1PzxQCvm+HUTIr+pbSekS8qdOZzMakdFyPtdkEWwFvwEJYONzjgMm0txCb2yBcIcfKDmg8xtCKTdecNQ=="; }; }; - "conventional-changelog-angular-5.0.13" = { - name = "conventional-changelog-angular"; - packageName = "conventional-changelog-angular"; - version = "5.0.13"; - src = fetchurl { - url = "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-5.0.13.tgz"; - sha512 = "i/gipMxs7s8L/QeuavPF2hLnJgH6pEZAttySB6aiQLWcX3puWDL3ACVmvBhJGxnAy52Qc15ua26BufY6KpmrVA=="; - }; - }; "conventional-changelog-angular-6.0.0" = { name = "conventional-changelog-angular"; packageName = "conventional-changelog-angular"; @@ -26088,15 +25350,6 @@ let sha512 = "wzchZt9HEaAZrenZAUUHMCFcuYzGoZ1wG/kTRMICxsnW5AXohYMRxnyecP9ob42Gvn5TilhC0q66AtTPRSNMfw=="; }; }; - "conventional-changelog-conventionalcommits-5.0.0" = { - name = "conventional-changelog-conventionalcommits"; - packageName = "conventional-changelog-conventionalcommits"; - version = "5.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-5.0.0.tgz"; - sha512 = "lCDbA+ZqVFQGUj7h9QBKoIpLhl8iihkO0nCTyRNzuXtcd7ubODpYB04IFy31JloiJgG0Uovu8ot8oxRzn7Nwtw=="; - }; - }; "conventional-changelog-conventionalcommits-6.1.0" = { name = "conventional-changelog-conventionalcommits"; packageName = "conventional-changelog-conventionalcommits"; @@ -26196,15 +25449,6 @@ let sha512 = "1ymej8b5LouPx9Ox0Dw/qAO2dVdfpRFq28e5Y0jJEU8ZrLdy0vOSkkIInwmxErFGhg6SALro60ZrwYFVTUDo4Q=="; }; }; - "conventional-commits-parser-3.2.4" = { - name = "conventional-commits-parser"; - packageName = "conventional-commits-parser"; - version = "3.2.4"; - src = fetchurl { - url = "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-3.2.4.tgz"; - sha512 = "nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q=="; - }; - }; "conventional-commits-parser-4.0.0" = { name = "conventional-commits-parser"; packageName = "conventional-commits-parser"; @@ -27105,22 +26349,22 @@ let sha512 = "pP2W2BvLrRKggS1fUk8qQw2FG8PhyV969dlwF3M0jAg/HH83n76H+KGdzGsmEut6VJFlJYQkd1ZZskjaeVWnrA=="; }; }; - "cspell-dictionary-6.31.1" = { + "cspell-dictionary-7.0.0" = { name = "cspell-dictionary"; packageName = "cspell-dictionary"; - version = "6.31.1"; + version = "7.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/cspell-dictionary/-/cspell-dictionary-6.31.1.tgz"; - sha512 = "7+K7aQGarqbpucky26wled7QSCJeg6VkLUWS+hLjyf0Cqc9Zew5xsLa4QjReExWUJx+a97jbiflITZNuWxgMrg=="; + url = "https://registry.npmjs.org/cspell-dictionary/-/cspell-dictionary-7.0.0.tgz"; + sha512 = "CYB02vB870JfCtmi4Njuzw1nCjbyRCjoqlsAQgHkhRSevRKcjFrK3+XsBhNA3Zo4ek4P35+oS/I4vMOHu6cdCg=="; }; }; - "cspell-gitignore-6.31.2" = { + "cspell-gitignore-7.0.0" = { name = "cspell-gitignore"; packageName = "cspell-gitignore"; - version = "6.31.2"; + version = "7.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-6.31.2.tgz"; - sha512 = "B1i8aiXCIbb/08u0K3xnDyXtg0qD+lb5B2itOOXi7KXlPkKvIuN4hWyXxhVDweWyYWEzyXD5wBpPrqICVrStHQ=="; + url = "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-7.0.0.tgz"; + sha512 = "9VVLuiVhntXO/It3K0nTDhxbPPc2nItvGLymItfUudfB0ZqgzBaomdoYZzXrcNOITjYiBXWCPuVOXLbyoL0DjQ=="; }; }; "cspell-glob-0.1.25" = { @@ -27132,22 +26376,22 @@ let sha512 = "/XaSHrGBpMJa+duFz3GKOWfrijrfdHT7a/XGgIcq3cymCSpOH+DPho42sl0jLI/hjM+8yv2m8aEoxRT8yVSnlg=="; }; }; - "cspell-glob-6.31.2" = { + "cspell-glob-7.0.0" = { name = "cspell-glob"; packageName = "cspell-glob"; - version = "6.31.2"; + version = "7.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/cspell-glob/-/cspell-glob-6.31.2.tgz"; - sha512 = "ceTjHM4HaBgvG5S3oiB+PTPYq58EQYG6MmYpycDHzpR5I2H1NurK9lxWHfANmLbi0DsHn58tIZNDMUnnQj19Jw=="; + url = "https://registry.npmjs.org/cspell-glob/-/cspell-glob-7.0.0.tgz"; + sha512 = "Wl47kChIuSiuStofVSPdgvwi8BRD4tN03j+yhpJ1q+lWT023ctFacZy+Lc+L6nxaTUriDy5ET+UoooPMJ2PskA=="; }; }; - "cspell-grammar-6.31.1" = { + "cspell-grammar-7.0.0" = { name = "cspell-grammar"; packageName = "cspell-grammar"; - version = "6.31.1"; + version = "7.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/cspell-grammar/-/cspell-grammar-6.31.1.tgz"; - sha512 = "AsRVP0idcNFVSb9+p9XjMumFj3BUV67WIPWApaAzJl/dYyiIygQObRE+si0/QtFWGNw873b7hNhWZiKjqIdoaQ=="; + url = "https://registry.npmjs.org/cspell-grammar/-/cspell-grammar-7.0.0.tgz"; + sha512 = "0k1qVvxMNwP4WXX1zIp3Ub+RQnUzjiBtB+BO4Lprnkp6/JuRndpBRDrXBsqNZBVzZ+JjyRSU1elNSN6/nudXvQ=="; }; }; "cspell-io-4.1.7" = { @@ -27159,13 +26403,13 @@ let sha512 = "V0/tUu9FnIS3v+vAvDT6NNa14Nc/zUNX8+YUUOfFAiDJJTdqefmvcWjOJBIMYBf3wIk9iWLmLbMM+bNHqr7DSQ=="; }; }; - "cspell-io-6.31.2" = { + "cspell-io-7.0.0" = { name = "cspell-io"; packageName = "cspell-io"; - version = "6.31.2"; + version = "7.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/cspell-io/-/cspell-io-6.31.2.tgz"; - sha512 = "Lp7LsF/f35LaOneROb/9mWiprShz2ONxjYFAt3bYP7gIxq41lWi8QhO+SN6spoqPp/wQXjSqJ7MuTZsemxPRnA=="; + url = "https://registry.npmjs.org/cspell-io/-/cspell-io-7.0.0.tgz"; + sha512 = "pGf+XlMcOxZfO7NIwJYmje8D30OEUt2Vb7cfZ2nazdFf9/NfiZpYp3JHOT+n53DhbIXTfdmojXo5bVezPXA48g=="; }; }; "cspell-lib-4.3.12" = { @@ -27177,13 +26421,13 @@ let sha512 = "yCCb6MoW1K8Tsr/WVEQoO4dfYhH9bCsjQayccb8MlyDaNNuWJHuX+gUGHsZSXSuChSh8PrTWKXJzs13/uM977g=="; }; }; - "cspell-lib-6.31.2" = { + "cspell-lib-7.0.0" = { name = "cspell-lib"; packageName = "cspell-lib"; - version = "6.31.2"; + version = "7.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/cspell-lib/-/cspell-lib-6.31.2.tgz"; - sha512 = "LqaB2ZfVfQHKL5aZzYoKU6/UxxAtWeXAYwpC9l+satXmajYyXtAh4kWmuW+y7kKRH2jA79rJQS3QE6ToeSqgQQ=="; + url = "https://registry.npmjs.org/cspell-lib/-/cspell-lib-7.0.0.tgz"; + sha512 = "CJAa7uV4hrm8OTnWdFPONSUP1Dp7J7fVhKu15aTrpNASUMAHe5YWqFqInCg+0+XhdRpGGYjQKhd+khsXL5a+bg=="; }; }; "cspell-trie-lib-4.2.8" = { @@ -27195,13 +26439,13 @@ let sha512 = "Nt3c0gxOYXIc3/yhALDukpje1BgR6guvlUKWQO2zb0r7qRWpwUw2j2YM4dWbHQeH/3Hx5ei4Braa6cMaiJ5YBw=="; }; }; - "cspell-trie-lib-6.31.1" = { + "cspell-trie-lib-7.0.0" = { name = "cspell-trie-lib"; packageName = "cspell-trie-lib"; - version = "6.31.1"; + version = "7.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-6.31.1.tgz"; - sha512 = "MtYh7s4Sbr1rKT31P2BK6KY+YfOy3dWsuusq9HnqCXmq6aZ1HyFgjH/9p9uvqGi/TboMqn1KOV8nifhXK3l3jg=="; + url = "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-7.0.0.tgz"; + sha512 = "mopXyfjNRVuYbrZcbBcLwOMrWeyTezh4w8zy+RywUmsF6IW6/HM2DkfE2BmH1IyE9af29lgQqdB5eDbJLWrP5A=="; }; }; "cspell-util-bundle-4.1.11" = { @@ -27258,15 +26502,6 @@ let sha512 = "zj5D7X1U2h2zsXOAM8EyUREBnnts6H+Jm+d1M2DbiQQcUtnqgQsMrdo8JW9R80YFUmIdBZeMu5wvYM7hcgWP/Q=="; }; }; - "css-color-names-1.0.1" = { - name = "css-color-names"; - packageName = "css-color-names"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/css-color-names/-/css-color-names-1.0.1.tgz"; - sha512 = "/loXYOch1qU1biStIFsHH8SxTmOseh1IJqFvy8IujXOm1h+QjUdDhkzOrR5HG8K8mlxREj0yfi8ewCHx0eMxzA=="; - }; - }; "css-declaration-sorter-4.0.1" = { name = "css-declaration-sorter"; packageName = "css-declaration-sorter"; @@ -27834,15 +27069,6 @@ let sha512 = "p6JFxJc3M4OTD2li2qaHkDCw9SfMw82Ldr6OC9Je1aXiGfhx2W8p3GaoeaGrPJTUN9NirTM/KTxHWMUdR1rsUg=="; }; }; - "custom-event-1.0.1" = { - name = "custom-event"; - packageName = "custom-event"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/custom-event/-/custom-event-1.0.1.tgz"; - sha512 = "GAj5FOq0Hd+RsCGVJxZuKaIDXDf3h6GQoNEjFgbLLI/trgtavwUbSnZ5pVfg27DVCaWjIohryS0JFwIJyT2cMg=="; - }; - }; "cwise-compiler-1.1.3" = { name = "cwise-compiler"; packageName = "cwise-compiler"; @@ -28905,15 +28131,6 @@ let sha512 = "Sr4SdOZ4vw6eQDvPYNxHogvrxmCIld/VenC5JbNrFwMiwd7lY/Z18ZFfo+EWNG4DD9nFlAujWAo/wGuOPHmy5A=="; }; }; - "debounced-seeker-1.0.0" = { - name = "debounced-seeker"; - packageName = "debounced-seeker"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/debounced-seeker/-/debounced-seeker-1.0.0.tgz"; - sha512 = "+uToa7HNIy+l0C2J8aOj8vZX3TPldK6/Im+OLoY36kSilrwAPBG2x8i8DGT7xkXHjxdiS947W9b3DA3k0o6Drg=="; - }; - }; "debug-0.5.0" = { name = "debug"; packageName = "debug"; @@ -29256,15 +28473,6 @@ let sha512 = "FXgye2Jr6oEk01S7gmSrHrPEQ1ontR7wwl+nYiZ8h4SXlHVm0DYda74BIPcHz2s2qPz4+375IcAz1vsWLwddgQ=="; }; }; - "deep-equal-1.0.1" = { - name = "deep-equal"; - packageName = "deep-equal"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/deep-equal/-/deep-equal-1.0.1.tgz"; - sha512 = "bHtC0iYvWhyaTzvV3CZgPeZQqCOBGyGsVV7v4eevpdkLHfiSrXUdBG+qAuSz4RI70sszvjQ1QSZ98An1yNwpSw=="; - }; - }; "deep-equal-1.1.1" = { name = "deep-equal"; packageName = "deep-equal"; @@ -29283,15 +28491,6 @@ let sha512 = "xjVyBf0w5vH0I42jdAZzOKVldmPgSulmiyPRywoyq7HXC9qdgo17kxJE+rdnif5Tz6+pIrpJI8dCpMNLIGkUiA=="; }; }; - "deep-extend-0.2.11" = { - name = "deep-extend"; - packageName = "deep-extend"; - version = "0.2.11"; - src = fetchurl { - url = "https://registry.npmjs.org/deep-extend/-/deep-extend-0.2.11.tgz"; - sha512 = "t2N+4ihO7YgydJOUI47I6GdXpONJ+jUZmYeTNiifALaEduiCja1mKcq3tuSp0RhA9mMfxdMN3YskpwB7puMAtw=="; - }; - }; "deep-extend-0.4.2" = { name = "deep-extend"; packageName = "deep-extend"; @@ -29364,15 +28563,6 @@ let sha512 = "R9hc1Xa/NOBi9WRVUWg19rl1UB7Tt4kuPd+thNJgFZoxXsTz7ncaPaeIm+40oSGuP33DfMb4sZt1QIGiJzC4EA=="; }; }; - "deepmerge-3.3.0" = { - name = "deepmerge"; - packageName = "deepmerge"; - version = "3.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/deepmerge/-/deepmerge-3.3.0.tgz"; - sha512 = "GRQOafGHwMHpjPx9iCvTgpu9NojZ49q794EEL94JVEw6VaeA8XTUyBKvAkOOjBX9oJNiV6G3P+T+tihFjo2TqA=="; - }; - }; "deepmerge-4.3.1" = { name = "deepmerge"; packageName = "deepmerge"; @@ -29994,15 +29184,6 @@ let sha512 = "gzZPsesqOh0Lj0GxjbNhPe42tppSt9qpcMXifcwtr2i3WnhgyhjlXTFrq/po9kl4X98M7+RxwmzpXzPt7hcXwA=="; }; }; - "di-0.0.1" = { - name = "di"; - packageName = "di"; - version = "0.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/di/-/di-0.0.1.tgz"; - sha512 = "uJaamHkagcZtHPqCIHZxnFrXlunQXgBOsZSUOWwFw31QJCAbyTBoHMW75YOTur5ZNx8pIeAKgf6GWIgaqqiLhA=="; - }; - }; "diagnostic-channel-1.1.0" = { name = "diagnostic-channel"; packageName = "diagnostic-channel"; @@ -30120,13 +29301,13 @@ let sha512 = "ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA=="; }; }; - "diff2html-3.4.35" = { + "diff2html-3.4.40" = { name = "diff2html"; packageName = "diff2html"; - version = "3.4.35"; + version = "3.4.40"; src = fetchurl { - url = "https://registry.npmjs.org/diff2html/-/diff2html-3.4.35.tgz"; - sha512 = "+pKs1BrA7l8DAwY33awHyznE3iuTIo58xmINmDBUwGsnou2KvBoSr6dAa6AvQAM7SH+nGtuOKNXmxumgbGp/Pw=="; + url = "https://registry.npmjs.org/diff2html/-/diff2html-3.4.40.tgz"; + sha512 = "4y2e1JgT0PyoUa/+Irdm6C8r0xFrzyz5t08jXIjNhEeiU3/NkayzP7taCfT3WSuxtpoR+J3ITn8WhPZcOHAaBA=="; }; }; "diffie-hellman-5.0.3" = { @@ -30228,15 +29409,6 @@ let sha512 = "cK6rH1PuGjSjpmEQbnpuTxq1Yv8B89SotyKUFcr4RhnsiZnfBfDOev7DD7v5vhtEyyj51NuMWFoRJzgy/m08Uw=="; }; }; - "diveSync-0.3.0" = { - name = "diveSync"; - packageName = "diveSync"; - version = "0.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/diveSync/-/diveSync-0.3.0.tgz"; - sha512 = "BQjohiPLYrLa4pLoXF6biOAEFoyoAQWxSCCdyIyGRkL32d9zFhb56bs8Ki6VjoThTnHHil9Zrmj3v7rGf5H3qA=="; - }; - }; "dlnacasts-0.1.0" = { name = "dlnacasts"; packageName = "dlnacasts"; @@ -30273,15 +29445,6 @@ let sha512 = "z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg=="; }; }; - "dns-js-0.2.1" = { - name = "dns-js"; - packageName = "dns-js"; - version = "0.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/dns-js/-/dns-js-0.2.1.tgz"; - sha512 = "D5ZrNcaDrDMmb6AKqnLUK+WyT4ST8lRNwfq0BpH26OAupFRtQxMNdSxq04HjXvYPQ6U7e2SPCVHWjM2vfOcRyA=="; - }; - }; "dns-packet-1.3.4" = { name = "dns-packet"; packageName = "dns-packet"; @@ -30426,15 +29589,6 @@ let sha512 = "gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA=="; }; }; - "dom-serialize-2.2.1" = { - name = "dom-serialize"; - packageName = "dom-serialize"; - version = "2.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/dom-serialize/-/dom-serialize-2.2.1.tgz"; - sha512 = "Yra4DbvoW7/Z6LBN560ZwXMjoNOSAN2wRsKFGc4iBeso+mpIA6qj1vfdf9HpMaKAqG6wXTy+1SYEzmNpKXOSsQ=="; - }; - }; "dom-serializer-0.0.1" = { name = "dom-serializer"; packageName = "dom-serializer"; @@ -31101,15 +30255,6 @@ let sha512 = "nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ=="; }; }; - "ecpair-2.1.0" = { - name = "ecpair"; - packageName = "ecpair"; - version = "2.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/ecpair/-/ecpair-2.1.0.tgz"; - sha512 = "cL/mh3MtJutFOvFc27GPZE2pWL3a3k4YvzUWEOvilnfZVlH3Jwgx/7d6tlD7/75tNk8TG2m+7Kgtz0SI1tWcqw=="; - }; - }; "ecstatic-4.1.4" = { name = "ecstatic"; packageName = "ecstatic"; @@ -31227,13 +30372,13 @@ let sha512 = "r1NDtlajsq7gf2EXgjRfblCVPquvD2yeg+6XGErOKblvxOpDi0iulZLVhgYDP4AEF1P5/HgbX/vwjlkEv7PEIQ=="; }; }; - "electron-to-chromium-1.4.480" = { + "electron-to-chromium-1.4.490" = { name = "electron-to-chromium"; packageName = "electron-to-chromium"; - version = "1.4.480"; + version = "1.4.490"; src = fetchurl { - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.480.tgz"; - sha512 = "IXTgg+bITkQv/FLP9FjX6f9KFCs5hQWeh5uNSKxB9mqYj/JXhHDbu+ekS43LVvbkL3eW6/oZy4+r9Om6lan1Uw=="; + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.490.tgz"; + sha512 = "6s7NVJz+sATdYnIwhdshx/N/9O6rvMxmhVoDSDFdj6iA45gHR8EQje70+RYsF4GeB+k0IeNSBnP7yG9ZXJFr7A=="; }; }; "electrum-client-git+https://github.com/janoside/electrum-client" = { @@ -31490,15 +30635,6 @@ let sha512 = "go5TQkd0YRXYhX+Lc3UrXkoKU5j+m72jEP5lHWr2Nh82L8wfZtH8toKgcg4T10o23ELIMGXQdwCbl+qAXIPDrw=="; }; }; - "end-of-stream-1.0.0" = { - name = "end-of-stream"; - packageName = "end-of-stream"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.0.0.tgz"; - sha512 = "oniaMOoG/dtbvWRLAlkFeJeJPM4IeE6BPFCHv0GTIIONB7A7kz1/liYWQiU7bqAhUlrKy1Z1MBsKa+qBgoVabw=="; - }; - }; "end-of-stream-1.4.4" = { name = "end-of-stream"; packageName = "end-of-stream"; @@ -31571,13 +30707,13 @@ let sha512 = "FKn/3oMiJjrOEOeUub2WCox6JhxBXq/Zn3fZOMCBxKnNYtsdKjxhl7yR3fZhM9PV+rdE75SU5SYMc+2PGzo+Tg=="; }; }; - "engine.io-6.5.1" = { + "engine.io-6.5.2" = { name = "engine.io"; packageName = "engine.io"; - version = "6.5.1"; + version = "6.5.2"; src = fetchurl { - url = "https://registry.npmjs.org/engine.io/-/engine.io-6.5.1.tgz"; - sha512 = "mGqhI+D7YxS9KJMppR6Iuo37Ed3abhU8NdfgSvJSDUafQutrN+sPTncJYTyM9+tkhSmWodKtVYGPPHyXJEwEQA=="; + url = "https://registry.npmjs.org/engine.io/-/engine.io-6.5.2.tgz"; + sha512 = "IXsMcGpw/xRfjra46sVZVHiSWo/nJ/3g1337q9KNXtS6YRzbW5yIzTCb9DjhrBe7r3GZQR0I4+nq+4ODk5g/cA=="; }; }; "engine.io-client-1.3.1" = { @@ -31607,13 +30743,13 @@ let sha512 = "qsgyc/CEhJ6cgMUwxRRtOndGVhIu5hpL5tR4umSpmX/MvkFoIxUTM7oFMDQumHNzlNLwSVy6qhstFPoWTf7dOw=="; }; }; - "engine.io-client-6.5.1" = { + "engine.io-client-6.5.2" = { name = "engine.io-client"; packageName = "engine.io-client"; - version = "6.5.1"; + version = "6.5.2"; src = fetchurl { - url = "https://registry.npmjs.org/engine.io-client/-/engine.io-client-6.5.1.tgz"; - sha512 = "hE5wKXH8Ru4L19MbM1GgYV/2Qo54JSMh1rlJbfpa40bEWkCKNo3ol2eOtGmowcr+ysgbI7+SGL+by42Q3pt/Ng=="; + url = "https://registry.npmjs.org/engine.io-client/-/engine.io-client-6.5.2.tgz"; + sha512 = "CQZqbrpEYnrpGqC07a9dJDz4gePZUgTPMU3NKJPSeQOyw27Tst4Pl3FemKoFGAlHzgZmKjoRmiJvbWfhCXUlIg=="; }; }; "engine.io-parser-1.0.6" = { @@ -31643,13 +30779,13 @@ let sha512 = "P+jDFbvK6lE3n1OL+q9KuzdOFWkkZ/cMV9gol/SbVfpyqfvrfrFTOFJ6fQm2VC3PZHlU3QPhVwmbsCnauHF2MQ=="; }; }; - "engine.io-parser-5.1.0" = { + "engine.io-parser-5.2.1" = { name = "engine.io-parser"; packageName = "engine.io-parser"; - version = "5.1.0"; + version = "5.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.1.0.tgz"; - sha512 = "enySgNiK5tyZFynt3z7iqBR+Bto9EVVVvDFuTT0ioHCGbzirZVGDGiQjZzEp8hWl6hd5FSVytJGuScX1C1C35w=="; + url = "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.2.1.tgz"; + sha512 = "9JktcM3u18nU9N2Lz3bWeBgxVgOKpw7yhRaoxQA3FUDZzzw+9WlA6p4G4u0RixNkg14fH7EfEc/RhpurtiROTQ=="; }; }; "enhanced-resolve-2.3.0" = { @@ -31706,15 +30842,6 @@ let sha512 = "VWU0/zXzVbeJNXvME/5EmLuEj2TauvoaTz6aFYK1Z92JCBlDlZ3Gu0tuGR42kpW1754ywTs+QB0g5TP0oj9Zaw=="; }; }; - "ent-2.2.0" = { - name = "ent"; - packageName = "ent"; - version = "2.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/ent/-/ent-2.2.0.tgz"; - sha512 = "GHrMyVZQWvTIdDtpiEXdHZnFQKzeO09apj8Cbl4pKWy4i0Oprcq17usfDt5aO63swf0JOeMWjWQE/LzgSRuWpA=="; - }; - }; "entities-1.0.0" = { name = "entities"; packageName = "entities"; @@ -32760,13 +31887,13 @@ let sha512 = "cIO74PvbW0qU8e0mIvk5IV3ToWdCq5FYG6gWPHHkx6gNdjlbAYvtfHmlCMXxjcoVaIdwy/IAt3+mDkZkfvb2Dg=="; }; }; - "eslint-config-prettier-8.9.0" = { + "eslint-config-prettier-8.10.0" = { name = "eslint-config-prettier"; packageName = "eslint-config-prettier"; - version = "8.9.0"; + version = "8.10.0"; src = fetchurl { - url = "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.9.0.tgz"; - sha512 = "+sbni7NfVXnOpnRadUA8S28AUlsZt9GjgFvABIRL9Hkn8KqNzOp+7Lw4QWtrwn20KzU3wqu1QoOj2m+7rKRqkA=="; + url = "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.10.0.tgz"; + sha512 = "SM8AMJdeQqRYT9O9zguiruQZaN7+z+E4eAP9oiLNGKMtomwaB1E9dcgUD6ZAn/eQAb52USbvezbiljfZUhbJcg=="; }; }; "eslint-config-standard-17.1.0" = { @@ -32796,13 +31923,13 @@ let sha512 = "IsUTtGxF1hrH6lMWiSl1WbGaiP01eT6kzywdY1U+zLc0MP+nwEnUiS9UI8IaOTUhTeQJLlCEWIbXINBH4YJbBQ=="; }; }; - "eslint-import-resolver-node-0.3.7" = { + "eslint-import-resolver-node-0.3.9" = { name = "eslint-import-resolver-node"; packageName = "eslint-import-resolver-node"; - version = "0.3.7"; + version = "0.3.9"; src = fetchurl { - url = "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz"; - sha512 = "gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA=="; + url = "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz"; + sha512 = "WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g=="; }; }; "eslint-module-utils-2.8.0" = { @@ -32904,13 +32031,13 @@ let sha512 = "oVNDqzBC9h3GO+NTgWeLMhhGigy6/bQaQbHS+0z7C4YEu/qK/yxHvca/2PTZtGNPsCrHwOTgKMrwu02A9iPBmw=="; }; }; - "eslint-plugin-vue-9.16.1" = { + "eslint-plugin-vue-9.17.0" = { name = "eslint-plugin-vue"; packageName = "eslint-plugin-vue"; - version = "9.16.1"; + version = "9.17.0"; src = fetchurl { - url = "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-9.16.1.tgz"; - sha512 = "2FtnTqazA6aYONfDuOZTk0QzwhAwi7Z4+uJ7+GHeGxcKapjqWlDsRWDenvyG/utyOfAS5bVRmAG3cEWiYEz2bA=="; + url = "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-9.17.0.tgz"; + sha512 = "r7Bp79pxQk9I5XDP0k2dpUC7Ots3OSWgvGZNu3BxmKK6Zg7NgVtcOB6OCna5Kb9oQwJPl5hq183WD0SY5tZtIQ=="; }; }; "eslint-rule-docs-1.1.235" = { @@ -33768,15 +32895,6 @@ let sha512 = "aIQN7Q04HGAV/I5BszisuHTZHXNoC23WtLkxdCLuYZMdWviRD0TMIt2bnUBi9MrHaF/hH8b3gwG9iaAUHKnJGA=="; }; }; - "exit-on-epipe-1.0.1" = { - name = "exit-on-epipe"; - packageName = "exit-on-epipe"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/exit-on-epipe/-/exit-on-epipe-1.0.1.tgz"; - sha512 = "h2z5mrROTxce56S+pnvAV890uu7ls7f1kEvVGJbw1OlFH3/mlJ5bkXu0KRyW94v37zzHPiUd55iLn3DA7TjWpw=="; - }; - }; "expand-brackets-0.1.5" = { name = "expand-brackets"; packageName = "expand-brackets"; @@ -34326,15 +33444,6 @@ let sha512 = "AEo4zm+TenK7zQorGK1f9mJ8L14hnTDi2ZQPR+Mub1NX8zimka1mXpV5LpH8x9HoUmFSHZCfLHqWvp0Y4FxxzQ=="; }; }; - "extract-zip-1.7.0" = { - name = "extract-zip"; - packageName = "extract-zip"; - version = "1.7.0"; - src = fetchurl { - url = "https://registry.npmjs.org/extract-zip/-/extract-zip-1.7.0.tgz"; - sha512 = "xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA=="; - }; - }; "extract-zip-2.0.1" = { name = "extract-zip"; packageName = "extract-zip"; @@ -34515,6 +33624,15 @@ let sha512 = "G3BSX9cfKttjr+2o1O22tYMLq0DPluZnYtq1rXumE1SpL/F/SLIfHx08WYQoWSIpeMYf8sRbJ8++71+v6Pnxfg=="; }; }; + "fast-equals-5.0.1" = { + name = "fast-equals"; + packageName = "fast-equals"; + version = "5.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/fast-equals/-/fast-equals-5.0.1.tgz"; + sha512 = "WF1Wi8PwwSY7/6Kx0vKXtw8RwuSGoM1bvDaJbu7MxDlR1vovZjIAKrnzyrThgAjm6JDTu0fVgWXDlMGspodfoQ=="; + }; + }; "fast-fifo-1.3.0" = { name = "fast-fifo"; packageName = "fast-fifo"; @@ -35262,13 +34380,13 @@ let sha512 = "hcFKyUG57yWGAzu1CMt/dPzYZuv+jAJUT85bL8mrXvNe6hWj6yEHEc4EdcgiA6Z3oi1/9wXJdZPXF2dZNgwgOg=="; }; }; - "filesize-10.0.8" = { + "filesize-10.0.11" = { name = "filesize"; packageName = "filesize"; - version = "10.0.8"; + version = "10.0.11"; src = fetchurl { - url = "https://registry.npmjs.org/filesize/-/filesize-10.0.8.tgz"; - sha512 = "/ylBrxZ1GAjgh2CEemKKLwTtmXfWqTtN1jRl6iqLwnMEucUX5cmaCCUPGstQOHVCcK9uYL6o1cPNakLQU2sasQ=="; + url = "https://registry.npmjs.org/filesize/-/filesize-10.0.11.tgz"; + sha512 = "gbHLdV7L2tTbJ8tUXjtfngakN6k+F6EQhxMxK5yfhwvy0XuyyXfFwG54130otkTZxU16pFRnPpPVn0gxxQ8HTQ=="; }; }; "filesize-3.6.1" = { @@ -35730,13 +34848,13 @@ let sha512 = "d+9na7t9FyH8gBJoNDSi28mE4NgQVGGvxQ4aHtFRetjyh5SXjuus+V5EZaxFmFdXVemSOrx0lsgEl/ZMjnOWJA=="; }; }; - "flow-parser-0.213.1" = { + "flow-parser-0.214.0" = { name = "flow-parser"; packageName = "flow-parser"; - version = "0.213.1"; + version = "0.214.0"; src = fetchurl { - url = "https://registry.npmjs.org/flow-parser/-/flow-parser-0.213.1.tgz"; - sha512 = "l+vyZO6hrWG60DredryA8mq62fK9vxL6/RR13HA/aVLBNh9No/wEJsKI+CJqPRkF4CIRUfcJQBeaMXSKcncxUQ=="; + url = "https://registry.npmjs.org/flow-parser/-/flow-parser-0.214.0.tgz"; + sha512 = "RW1Dh6BuT14DA7+gtNRKzgzvG3GTPdrceHCi4ddZ9VFGQ9HtO5L8wzxMGsor7XtInIrbWZZCSak0oxnBF7tApw=="; }; }; "fluent-ffmpeg-2.1.2" = { @@ -36693,15 +35811,6 @@ let sha512 = "vAcPiyomt1ioKAsAL2uxSABHJ4Ju/e4UeDM+g1OlR0vV4YhLGMNsdLNvZTpEDY4JCSt0E4hASCNM5t2ETtsbyg=="; }; }; - "fuzzyset.js-0.0.1" = { - name = "fuzzyset.js"; - packageName = "fuzzyset.js"; - version = "0.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/fuzzyset.js/-/fuzzyset.js-0.0.1.tgz"; - sha512 = "/FAzX0w4Zd4PaVMM06wSJfDfdkYmIqZs4c6iCUc2icEL8nz6VJqyqlCy6InPZInjf6HadfhkFxYd2a0RDZ3Htg=="; - }; - }; "fx-runner-1.3.0" = { name = "fx-runner"; packageName = "fx-runner"; @@ -37512,15 +36621,6 @@ let sha512 = "qVDEXufVtYUzYqI5hoDUONh9GCEPi0n+e35KNDafdsNt9fPxB0nvFW/kFiw7W42wkg8TUyhBqb+t24yyaoc87A=="; }; }; - "glob-10.2.7" = { - name = "glob"; - packageName = "glob"; - version = "10.2.7"; - src = fetchurl { - url = "https://registry.npmjs.org/glob/-/glob-10.2.7.tgz"; - sha512 = "jTKehsravOJo8IJxUGfZILnkvVJM/MOfHRs8QcXolVef2zNI9Tqyy5+SeuOAZd3upViEZQLyFpQhYiHLrMUNmA=="; - }; - }; "glob-10.3.3" = { name = "glob"; packageName = "glob"; @@ -37566,15 +36666,6 @@ let sha512 = "3tbJl15hKbgLoSBcHv5WCCrrMnjdXsholv2YfBgX53Tx6IRkZIJdLDVROiFtl7WT70jbzFd8yxgwZlx1p0iQdg=="; }; }; - "glob-7.0.6" = { - name = "glob"; - packageName = "glob"; - version = "7.0.6"; - src = fetchurl { - url = "https://registry.npmjs.org/glob/-/glob-7.0.6.tgz"; - sha512 = "f8c0rE8JiCxpa52kWPAOa3ZaYEnzofDzCQLCn3Vdk0Z5OVLq3BsRFJI4S4ykpeVW6QMGBUkMeUpoEgWnMTnw5Q=="; - }; - }; "glob-7.1.2" = { name = "glob"; packageName = "glob"; @@ -38116,33 +37207,6 @@ let sha512 = "YSwLaGMOgSBx9roJlNLL12c+FRiw7VECphinc6mGucphc/ZxTHgdEz6gmJqH6NOzYEd/yr64hwjom5pZ+tJVpg=="; }; }; - "goldengate-12.0.2" = { - name = "goldengate"; - packageName = "goldengate"; - version = "12.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/goldengate/-/goldengate-12.0.2.tgz"; - sha512 = "FrGuJWxYqWfptGEHkXQkR4CvLOOvbJL9cgPyiGGwtRMJCuUgJHyEdhkTVjQYbOl6pdXFTR9EHd9wkXHeA6zmGw=="; - }; - }; - "goldengate-12.0.5" = { - name = "goldengate"; - packageName = "goldengate"; - version = "12.0.5"; - src = fetchurl { - url = "https://registry.npmjs.org/goldengate/-/goldengate-12.0.5.tgz"; - sha512 = "UK5uXgffr6l/RJvI5ByLs2uieLGaPGGv3uDPu3vBEBzluQM2CEvTwTH1Hby2q2w1BA6+B122yhf/hjEsQiPlqg=="; - }; - }; - "goldengate-13.0.2" = { - name = "goldengate"; - packageName = "goldengate"; - version = "13.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/goldengate/-/goldengate-13.0.2.tgz"; - sha512 = "E6l+y6luuISI4LUari8dF6XtFZd0xREZ7jnRywTvT4dr19lE0E0F7/u8/1VnZIe20aGw3qyIFFGxPr8YeyJo+Q=="; - }; - }; "gonzales-pe-4.3.0" = { name = "gonzales-pe"; packageName = "gonzales-pe"; @@ -38224,15 +37288,6 @@ let sha512 = "17MflOq79BYcK01RrqHhtG5Dl88ztSu7gfD+4i1GrpzkbvLDKkJ7LoKiFKzBWzzd+Jd5VhIiLtQRvjRiKa6PUg=="; }; }; - "got-1.2.2" = { - name = "got"; - packageName = "got"; - version = "1.2.2"; - src = fetchurl { - url = "https://registry.npmjs.org/got/-/got-1.2.2.tgz"; - sha512 = "xrS9ZF6L3KCEonUoee6R++sYogHXf1uKWrsVziQowGJ4QMYkvUDhr+o1xgnhF2IaYQnvngGk/CNPsM+zuZwzTg=="; - }; - }; "got-11.5.2" = { name = "got"; packageName = "got"; @@ -38386,24 +37441,6 @@ let sha512 = "vH2bsdjoJLQ33sZCquG1GyiFyK+Qk8n04NzqHLWTnY9l8lg08AGUyA8ZgeZHdi3I81nrdcGO13V9qYyP6sdshw=="; }; }; - "grammy-1.13.1" = { - name = "grammy"; - packageName = "grammy"; - version = "1.13.1"; - src = fetchurl { - url = "https://registry.npmjs.org/grammy/-/grammy-1.13.1.tgz"; - sha512 = "kAxja6QDjw5oTJOFtrqhaQlLfCco3AwO4Mb4YRdP8A+v59roJA8mgEd0S5dOgFPyn74bPp8VWaKCI+of8wnPow=="; - }; - }; - "grammy-1.17.2" = { - name = "grammy"; - packageName = "grammy"; - version = "1.17.2"; - src = fetchurl { - url = "https://registry.npmjs.org/grammy/-/grammy-1.17.2.tgz"; - sha512 = "5TuAzqxupkVcKXB5Jfl8F9GMXgGh/h/RcoOJThlQSJz2MMT2+2o+W/7C8ZULzrZ4TEB9TIIliPR6UW0J+1fT4w=="; - }; - }; "grant-5.4.21" = { name = "grant"; packageName = "grant"; @@ -38863,13 +37900,13 @@ let sha512 = "9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg=="; }; }; - "handlebars-4.7.7" = { + "handlebars-4.7.8" = { name = "handlebars"; packageName = "handlebars"; - version = "4.7.7"; + version = "4.7.8"; src = fetchurl { - url = "https://registry.npmjs.org/handlebars/-/handlebars-4.7.7.tgz"; - sha512 = "aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA=="; + url = "https://registry.npmjs.org/handlebars/-/handlebars-4.7.8.tgz"; + sha512 = "vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ=="; }; }; "har-schema-1.0.5" = { @@ -38935,24 +37972,6 @@ let sha512 = "f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw=="; }; }; - "has-ansi-0.1.0" = { - name = "has-ansi"; - packageName = "has-ansi"; - version = "0.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/has-ansi/-/has-ansi-0.1.0.tgz"; - sha512 = "1YsTg1fk2/6JToQhtZkArMkurq8UoWU1Qe0aR3VUHjgij4nOylSWLWAtBXoZ4/dXOmugfLGm1c+QhuD0JyedFA=="; - }; - }; - "has-ansi-1.0.3" = { - name = "has-ansi"; - packageName = "has-ansi"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/has-ansi/-/has-ansi-1.0.3.tgz"; - sha512 = "XwLzIec2hoj/LW9F3nCcQpEwZ5fDJ1LOc6SAgc0pz79CGiY9zmZhIkbf7OnK+tC36UhpQBa03HPt13QavGoF6Q=="; - }; - }; "has-ansi-2.0.0" = { name = "has-ansi"; packageName = "has-ansi"; @@ -39682,15 +38701,6 @@ let sha512 = "1rRqesRFhMO/PRF+G86evnyJkCgaZFOI+Z6kdj15TA18funfoqJXvgPCLSf0SWq3SRfg1j3HlDs8o4s3EGq1oQ=="; }; }; - "highlight.js-11.8.0" = { - name = "highlight.js"; - packageName = "highlight.js"; - version = "11.8.0"; - src = fetchurl { - url = "https://registry.npmjs.org/highlight.js/-/highlight.js-11.8.0.tgz"; - sha512 = "MedQhoqVdr0U6SSnWPzfiadUcDHfN/Wzq25AkXiQv9oiOO/sG0S7XkvpFIqWBl9Yq1UYyYOOVORs5UW2XlPyzg=="; - }; - }; "highlight.js-8.2.0" = { name = "highlight.js"; packageName = "highlight.js"; @@ -39844,15 +38854,6 @@ let sha512 = "r0EI+HBMcXadMrugk0GCQ+6BQV39PiWAZVfq7oIckeGiN7sjRGyQxPdft3nQekFTCQbYxLBH+/axZMeH8UX6+w=="; }; }; - "hot-formula-parser-4.0.0" = { - name = "hot-formula-parser"; - packageName = "hot-formula-parser"; - version = "4.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/hot-formula-parser/-/hot-formula-parser-4.0.0.tgz"; - sha512 = "diG1UvuQ3HxtfezVUIpvndk/bVkqZJ9Rfv10MdVF7pJEj8P2Jd4iCZSMJCN3lDhnLegaVlfSYSA6+szYNFQUKg=="; - }; - }; "hot-shots-6.8.7" = { name = "hot-shots"; packageName = "hot-shots"; @@ -39898,15 +38899,6 @@ let sha512 = "A91dYTeIB6NoXG+PxTQpCCDDnfHsW9kc06Lvpu1TEe9gnd6ZFeiBoRO9JvzEv6xK7EX97/dUE8g/vBMTqTS3CA=="; }; }; - "hs-client-0.0.13" = { - name = "hs-client"; - packageName = "hs-client"; - version = "0.0.13"; - src = fetchurl { - url = "https://registry.npmjs.org/hs-client/-/hs-client-0.0.13.tgz"; - sha512 = "3Vm/4S0TDstbOW+OfdTeP2EQ4dolPNqMulTSr31RihwX8cX1DyT4il1Fc9STXXToXTsZuFro2WD/+1m0MWi5Ag=="; - }; - }; "hsl-regex-1.0.0" = { name = "hsl-regex"; packageName = "hsl-regex"; @@ -40168,15 +39160,6 @@ let sha512 = "GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA=="; }; }; - "http-assert-1.5.0" = { - name = "http-assert"; - packageName = "http-assert"; - version = "1.5.0"; - src = fetchurl { - url = "https://registry.npmjs.org/http-assert/-/http-assert-1.5.0.tgz"; - sha512 = "uPpH7OKX4H25hBmU6G1jWNaqJGpTXxey+YOUizJUAgu0AjLUeC8D73hTrhvDS5D+GJN1DN1+hhc/eF/wpxtp0w=="; - }; - }; "http-auth-2.0.7" = { name = "http-auth"; packageName = "http-auth"; @@ -40537,15 +39520,6 @@ let sha512 = "Eun8zV0kcYS1g19r78osiQLEFIRspRUDd9tIfBCTBPBeMieF/EsJNL8VI3xOIdYRDEkjQnqOYPsZ2DsWsVsFwQ=="; }; }; - "hue-sdk-0.1.0" = { - name = "hue-sdk"; - packageName = "hue-sdk"; - version = "0.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/hue-sdk/-/hue-sdk-0.1.0.tgz"; - sha512 = "Rz+tFQZs4n+7atl2mukSgXzi0EPGYwlN0Z4clFMQM9ktOyX+sIZ3fC8y9+8LMXMYQpUvdsweFQM6MGGoolOtLw=="; - }; - }; "human-signals-1.1.1" = { name = "human-signals"; packageName = "human-signals"; @@ -40600,15 +39574,6 @@ let sha512 = "Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ=="; }; }; - "humanize-number-0.0.2" = { - name = "humanize-number"; - packageName = "humanize-number"; - version = "0.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/humanize-number/-/humanize-number-0.0.2.tgz"; - sha512 = "un3ZAcNQGI7RzaWGZzQDH47HETM4Wrj6z6E4TId8Yeq9w5ZKUVB1nrT2jwFheTUjEmqcgTjXDc959jum+ai1kQ=="; - }; - }; "humanize-string-2.1.0" = { name = "humanize-string"; packageName = "humanize-string"; @@ -41059,13 +40024,13 @@ let sha512 = "15gZoQ38eYjEjxkorfbcgBKBL6R7T459OuK+CpcWt7O3KF4uPCx2tD0uFETlUDIyo+1789crbMhTvQBSR5yBMg=="; }; }; - "immutable-4.3.1" = { + "immutable-4.3.2" = { name = "immutable"; packageName = "immutable"; - version = "4.3.1"; + version = "4.3.2"; src = fetchurl { - url = "https://registry.npmjs.org/immutable/-/immutable-4.3.1.tgz"; - sha512 = "lj9cnmB/kVS0QHsJnYKD1uo3o39nrbKxszjnqS9Fr6NB7bZzW45U6WSGBPKXDL/CvDKqDNPA4r3DoDQ8GTxo2A=="; + url = "https://registry.npmjs.org/immutable/-/immutable-4.3.2.tgz"; + sha512 = "oGXzbEDem9OOpDWZu88jGiYCvIsLHMvGw+8OXlpsvTFvIQplQbjg1B1cvKg8f7Hoch6+NGjpPsH1Fr+Mc2D1aA=="; }; }; "import-cwd-2.1.0" = { @@ -41194,6 +40159,15 @@ let sha512 = "f8KcQ1D80V7RnqVm+/lirO9zkOxjGxhaTC1IPrBGd3MEfNgmNG67tSUO9gTi2F3Blr2Az6g1vocaxzkVnWl9MA=="; }; }; + "import-meta-resolve-3.0.0" = { + name = "import-meta-resolve"; + packageName = "import-meta-resolve"; + version = "3.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/import-meta-resolve/-/import-meta-resolve-3.0.0.tgz"; + sha512 = "4IwhLhNNA8yy445rPjD/lWh++7hMDOml2eHtd58eG7h+qK3EryMuuRbsHGPikCoAgIkkDnckKfWSk2iDla/ejg=="; + }; + }; "imurmurhash-0.1.4" = { name = "imurmurhash"; packageName = "imurmurhash"; @@ -41347,15 +40321,6 @@ let sha512 = "k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="; }; }; - "ini-1.1.0" = { - name = "ini"; - packageName = "ini"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/ini/-/ini-1.1.0.tgz"; - sha512 = "B6L/jfyFRcG2dqKiHggWnfby52Iy07iabE4F6srQAr/OmVKBRE5uU+B5MQ+nQ7NiYnjz93gENh1GhqHzpDgHgA=="; - }; - }; "ini-1.3.7" = { name = "ini"; packageName = "ini"; @@ -41536,15 +40501,6 @@ let sha512 = "bOetEz5+/WpgaW4D1NYOk1aD+JCqRjqu/FwRFgnIfiP7FC/zinsrfyO1vlS3nyH/R7S0IH3BIHBu4DBIDSqiGQ=="; }; }; - "inquirer-0.8.5" = { - name = "inquirer"; - packageName = "inquirer"; - version = "0.8.5"; - src = fetchurl { - url = "https://registry.npmjs.org/inquirer/-/inquirer-0.8.5.tgz"; - sha512 = "+rksrtdqQ8do7yOsmP5YIgbSdbZYuCIrnfH5vjFYGAr1XgJpMksb3rFZMJ3jiKuUyDVEA4MVDYbkA3ribJn3Tg=="; - }; - }; "inquirer-1.2.3" = { name = "inquirer"; packageName = "inquirer"; @@ -41599,31 +40555,22 @@ let sha512 = "nn4F01dxU8VeKfq192IjLsxu0/OmMZ4Lg3xKAns148rCaXP6ntAoEkVYZThWjwON8AlzdZZi6oqnhNbxUG9hVg=="; }; }; - "inquirer-8.2.5" = { + "inquirer-8.2.6" = { name = "inquirer"; packageName = "inquirer"; - version = "8.2.5"; + version = "8.2.6"; src = fetchurl { - url = "https://registry.npmjs.org/inquirer/-/inquirer-8.2.5.tgz"; - sha512 = "QAgPDQMEgrDssk1XiwwHoOGYF9BAbUcc1+j+FhEvaOt8/cKRqyLn0U5qA6F74fGhTMGxf92pOvPBeh29jQJDTQ=="; + url = "https://registry.npmjs.org/inquirer/-/inquirer-8.2.6.tgz"; + sha512 = "M1WuAmb7pn9zdFRtQYk26ZBoY043Sse0wVDdk4Bppr+JOXyQYybdtvK+l9wUibhtjdjvtoiNy8tk+EgsYIUqKg=="; }; }; - "inquirer-9.2.8" = { + "inquirer-9.2.10" = { name = "inquirer"; packageName = "inquirer"; - version = "9.2.8"; + version = "9.2.10"; src = fetchurl { - url = "https://registry.npmjs.org/inquirer/-/inquirer-9.2.8.tgz"; - sha512 = "SJ0fVfgIzZL1AD6WvFhivlh5/3hN6WeAvpvPrpPXH/8MOcQHeXhinmSm5CDJNRC2Q+sLh9YJ5k8F8/5APMXSfw=="; - }; - }; - "inquirer-9.2.9" = { - name = "inquirer"; - packageName = "inquirer"; - version = "9.2.9"; - src = fetchurl { - url = "https://registry.npmjs.org/inquirer/-/inquirer-9.2.9.tgz"; - sha512 = "0VXHov2GGwWquYxwxlcIcm3yOHvFb2jh/+HkY8/AUXSTWShpo6QJMlSfHi5Xo74NO40UePBM3rQcI3OkzOF/7A=="; + url = "https://registry.npmjs.org/inquirer/-/inquirer-9.2.10.tgz"; + sha512 = "tVVNFIXU8qNHoULiazz612GFl+yqNfjMTbLuViNJE/d860Qxrd3NMrse8dm40VUQLOQeULvaQF8lpAhvysjeyA=="; }; }; "inquirer-autocomplete-prompt-1.4.0" = { @@ -41941,24 +40888,6 @@ let sha512 = "CYdFeFexxhv/Bcny+Q0BfOV+ltRlJcd4BBZBYFX/O0u4npJrgZtIcjokegtiSMAvlMTJ+Koq0GBCc//3bueQxw=="; }; }; - "invoices-2.2.3" = { - name = "invoices"; - packageName = "invoices"; - version = "2.2.3"; - src = fetchurl { - url = "https://registry.npmjs.org/invoices/-/invoices-2.2.3.tgz"; - sha512 = "tYOmXKPsz8/jxtPDmy7HS7Z4VqQ9VK2Y3J37hhHEhU337AoL1CUlEqccTEb4nZQ36HHnFhlcKLoDz7C8W5lNdg=="; - }; - }; - "invoices-3.0.0" = { - name = "invoices"; - packageName = "invoices"; - version = "3.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/invoices/-/invoices-3.0.0.tgz"; - sha512 = "/WDTkfU2RMelQpQ54BwZssqGXYNWbPnWkZ/9QV57vAvD3RLdCDbhDuucOGti8CK3sgk8nmhRV6V0WfMrxojMmA=="; - }; - }; "io-ts-2.2.20" = { name = "io-ts"; packageName = "io-ts"; @@ -42454,13 +41383,13 @@ let sha512 = "H1U8Vz0cfXNujrJzEcvvwMDW9Ra+biSYA3ThdQvAnMLJkEHQXn6bWzLkxHtVYJ+Sdbx0b6finn3jZiaVe7MAHA=="; }; }; - "is-core-module-2.12.1" = { + "is-core-module-2.13.0" = { name = "is-core-module"; packageName = "is-core-module"; - version = "2.12.1"; + version = "2.13.0"; src = fetchurl { - url = "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.1.tgz"; - sha512 = "Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg=="; + url = "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz"; + sha512 = "Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ=="; }; }; "is-core-module-2.9.0" = { @@ -42913,15 +41842,6 @@ let sha512 = "aZMG0T3F34mTg4eTdszcGXx54oiZ4NtHSft3hWNJMGJXUUqdIj3cOZuHcU0nCWWcY3jd7yRe/3AEm3vSNTpBGQ=="; }; }; - "is-iojs-1.1.0" = { - name = "is-iojs"; - packageName = "is-iojs"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/is-iojs/-/is-iojs-1.1.0.tgz"; - sha512 = "tLn1j3wYSL6DkvEI+V/j0pKohpa5jk+ER74v6S4SgCXnjS0WA+DoZbwZBrrhgwksMvtuwndyGeG5F8YMsoBzSA=="; - }; - }; "is-json-2.0.1" = { name = "is-json"; packageName = "is-json"; @@ -44200,13 +43120,13 @@ let sha512 = "IoiNVk4SMPu6uTcK+1nA5QaHNok2BMDLjSl5UomrOixe5g4GkylhPwuiGdw00ysSCrXAKNMfFTu+u/Lk5f6OLQ=="; }; }; - "jackspeak-2.2.2" = { + "jackspeak-2.2.3" = { name = "jackspeak"; packageName = "jackspeak"; - version = "2.2.2"; + version = "2.2.3"; src = fetchurl { - url = "https://registry.npmjs.org/jackspeak/-/jackspeak-2.2.2.tgz"; - sha512 = "mgNtVv4vUuaKA97yxUHoA3+FkuhtxkjdXEWOyB/N76fjy0FjezEt34oy3epBtvCvS+7DyKwqCFWx/oJLV5+kCg=="; + url = "https://registry.npmjs.org/jackspeak/-/jackspeak-2.2.3.tgz"; + sha512 = "pF0kfjmg8DJLxDrizHoCZGUFz4P4czQ3HyfW4BU0ffebYkzAVlBywp5zaxW/TM+r0sGbmrQdi8EQQVTJFxnGsQ=="; }; }; "jade-0.26.3" = { @@ -44542,13 +43462,13 @@ let sha512 = "wBZPnqWs5GaYJmo1Jj0k/mrSkzdQzKDwhXNtHKcBdAcKVxMM3KNYFq+iJ2i1rwiG53Z8M4mTn3Qxrm17uH1D4Q=="; }; }; - "jquery.terminal-2.37.0" = { + "jquery.terminal-2.37.1" = { name = "jquery.terminal"; packageName = "jquery.terminal"; - version = "2.37.0"; + version = "2.37.1"; src = fetchurl { - url = "https://registry.npmjs.org/jquery.terminal/-/jquery.terminal-2.37.0.tgz"; - sha512 = "ykFwcz1g7660oNCOyp/zze1t4Zrdbongs22el1Q7c0YRbuZOUdj5kov4SDkaTjwp8BVD1PfqYx8AihFg+Gn9xQ=="; + url = "https://registry.npmjs.org/jquery.terminal/-/jquery.terminal-2.37.1.tgz"; + sha512 = "BpMocIY1DczEH3oUZ2nLu4pxaabYEGp+0aL7csMGKaARV0BMSG5s8sGwEvwYCd96ugZOERYS6NEPqy8q0P+wzA=="; }; }; "js-base64-2.6.3" = { @@ -44605,15 +43525,6 @@ let sha512 = "X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g=="; }; }; - "js-md5-0.7.3" = { - name = "js-md5"; - packageName = "js-md5"; - version = "0.7.3"; - src = fetchurl { - url = "https://registry.npmjs.org/js-md5/-/js-md5-0.7.3.tgz"; - sha512 = "ZC41vPSTLKGwIRjqDh8DfXoCrdQIyBgspJVPXHBGu4nZlAEvG3nf+jO9avM9RmLiGakg7vz974ms99nEV0tmTQ=="; - }; - }; "js-message-1.0.7" = { name = "js-message"; packageName = "js-message"; @@ -44659,15 +43570,6 @@ let sha512 = "gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q=="; }; }; - "js-sha512-0.8.0" = { - name = "js-sha512"; - packageName = "js-sha512"; - version = "0.8.0"; - src = fetchurl { - url = "https://registry.npmjs.org/js-sha512/-/js-sha512-0.8.0.tgz"; - sha512 = "PWsmefG6Jkodqt+ePTvBZCSMFgN7Clckjd0O7su3I0+BW2QWUTJNzjktHsztGLhncP2h8mcF9V9Y2Ha59pAViQ=="; - }; - }; "js-string-escape-1.0.1" = { name = "js-string-escape"; packageName = "js-string-escape"; @@ -44902,13 +43804,13 @@ let sha512 = "xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g=="; }; }; - "jsii-1.85.0" = { + "jsii-1.86.1" = { name = "jsii"; packageName = "jsii"; - version = "1.85.0"; + version = "1.86.1"; src = fetchurl { - url = "https://registry.npmjs.org/jsii/-/jsii-1.85.0.tgz"; - sha512 = "RKB3qZwIXafNUiILD+rKI1EQDtHtfpHN78VVVnfLcp1uAkPLA5zVVqy6cKu2cpAmlz8R5hzIFsw4uEnWA+XE4w=="; + url = "https://registry.npmjs.org/jsii/-/jsii-1.86.1.tgz"; + sha512 = "gAi/mGRdIpCYY7Na61VPE717Z6+/1HTYqgxjMC+VdLXxITbWpaQqO+DqsOnhtsIh+JyjIQM7VOSZ+5Ymf1A74A=="; }; }; "jsii-5.1.10" = { @@ -44920,31 +43822,31 @@ let sha512 = "OvFBUj0V7H+ex7yGyg8bJwghiHnE/T8DmQBxJxUG6qApwKP9lJE+jSz0ONKuqdaxTK1RaLbZhatLkCRrkQrbJQ=="; }; }; - "jsii-pacmak-1.85.0" = { + "jsii-pacmak-1.86.1" = { name = "jsii-pacmak"; packageName = "jsii-pacmak"; - version = "1.85.0"; + version = "1.86.1"; src = fetchurl { - url = "https://registry.npmjs.org/jsii-pacmak/-/jsii-pacmak-1.85.0.tgz"; - sha512 = "1pFHp7MtiNgt9lXvtv8Qs2PEwDWZ2eUSylxS+z4jH4Wo6SGq/5M0h8182dagxsJuoId50+5zTjdD1yACFZ3QTw=="; + url = "https://registry.npmjs.org/jsii-pacmak/-/jsii-pacmak-1.86.1.tgz"; + sha512 = "xmv2QRK9JLdBCHUXKdHf/DVtpm2BY+dKzfYWOwLh5CmPYRvvWwqP7lTC+FvxOw4Sk2mqu/o7PCnVTRAt8U8csQ=="; }; }; - "jsii-reflect-1.85.0" = { + "jsii-reflect-1.86.1" = { name = "jsii-reflect"; packageName = "jsii-reflect"; - version = "1.85.0"; + version = "1.86.1"; src = fetchurl { - url = "https://registry.npmjs.org/jsii-reflect/-/jsii-reflect-1.85.0.tgz"; - sha512 = "4/2JTt7xVDp717JgxnWbroXPBkXBWd25WEgKkIBxqN5DxGpzd+EPNpNkgJmSOCK5DKl9g1FjCuTkcRw5qMIoEg=="; + url = "https://registry.npmjs.org/jsii-reflect/-/jsii-reflect-1.86.1.tgz"; + sha512 = "Z9Avq431sdwuku+fpC3pM9DngpmbCA2U8QI4Bctg/M4b5PMDuKuMxBWcdAcU/LhtL14lxNZ66Src0hYmNVk4eQ=="; }; }; - "jsii-rosetta-1.85.0" = { + "jsii-rosetta-1.86.1" = { name = "jsii-rosetta"; packageName = "jsii-rosetta"; - version = "1.85.0"; + version = "1.86.1"; src = fetchurl { - url = "https://registry.npmjs.org/jsii-rosetta/-/jsii-rosetta-1.85.0.tgz"; - sha512 = "3kGi7xZjA7fpVYmbn2VXvDA6iuva47ffdqyb28DhYxVWnlEJgff8XWuvQJSqrtxEcJF60dVD58N79pPghyvOgg=="; + url = "https://registry.npmjs.org/jsii-rosetta/-/jsii-rosetta-1.86.1.tgz"; + sha512 = "QmuFIFKYXsks6SpWsrztlFnXZptiwl7m0kpvqfiP8NGeGU5r5hTBglAorNh4FO58W5dYVUKmebEN076brhGRIQ=="; }; }; "jsii-rosetta-5.1.9" = { @@ -44956,13 +43858,13 @@ let sha512 = "GgSLaxn9N0xnYBXkK8DIXrp1CWNSz2f7Q04kQW4n2htsLd3diPI3HNbbmJL5V+wwUIZhOpBe++5r1a7T7vFlqg=="; }; }; - "jsii-srcmak-0.1.949" = { + "jsii-srcmak-0.1.950" = { name = "jsii-srcmak"; packageName = "jsii-srcmak"; - version = "0.1.949"; + version = "0.1.950"; src = fetchurl { - url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.949.tgz"; - sha512 = "PqFQLfrLeEp57UoHVxfEgn2lOOayPLe6blnUAipBIzSLmtIcj1Wds9Oxa0rkrltL1vwqVSonUid9hrqD/tbdtA=="; + url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.950.tgz"; + sha512 = "tv40puwfmgeYfYiO8vZLWAgDe42tkrZeUSCfBat0mJW7cGWpJ3UAjSMas1d2XOBG4Y/e+0ysxVwyyt6EwM0OAA=="; }; }; "json-bigint-1.0.0" = { @@ -45631,15 +44533,6 @@ let sha512 = "gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ=="; }; }; - "jstat-1.9.6" = { - name = "jstat"; - packageName = "jstat"; - version = "1.9.6"; - src = fetchurl { - url = "https://registry.npmjs.org/jstat/-/jstat-1.9.6.tgz"; - sha512 = "rPBkJbK2TnA8pzs93QcDDPlKcrtZWuuCo2dVR0TFLOJSxhqfWOVCSp8aV3/oSbn+4uY4yw1URtLpHQedtmXfug=="; - }; - }; "jstransform-10.1.0" = { name = "jstransform"; packageName = "jstransform"; @@ -46180,24 +45073,6 @@ let sha512 = "uMCj6+hZYDoffuvAJjFAPz56E9uoowFHmTkqRtRq5WyC5Q6Cu/fTZKNQpX/RbzChBYLLl3lo8CjFZBAZXq9qFg=="; }; }; - "koa-2.14.2" = { - name = "koa"; - packageName = "koa"; - version = "2.14.2"; - src = fetchurl { - url = "https://registry.npmjs.org/koa/-/koa-2.14.2.tgz"; - sha512 = "VFI2bpJaodz6P7x2uyLiX6RLYpZmOJqNmoCst/Yyd7hQlszyPwG/I9CQJ63nOtKSxpt5M7NH67V6nJL2BwCl7g=="; - }; - }; - "koa-compose-3.2.1" = { - name = "koa-compose"; - packageName = "koa-compose"; - version = "3.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/koa-compose/-/koa-compose-3.2.1.tgz"; - sha512 = "8gen2cvKHIZ35eDEik5WOo8zbVp9t4cP8p4hW4uE55waxolLRexKKrqfCpwhGVppnB40jWeF8bZeTVg99eZgPw=="; - }; - }; "koa-compose-4.2.0" = { name = "koa-compose"; packageName = "koa-compose"; @@ -46207,60 +45082,6 @@ let sha512 = "/Io2dpt3uU/wWkn2pkRBj3vudzsi6hMssGkREZCxLIczAIvLWy5Jw9PW7ctTxvcfXKCisbgsMLsgE1BvSZB6Kw=="; }; }; - "koa-convert-2.0.0" = { - name = "koa-convert"; - packageName = "koa-convert"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/koa-convert/-/koa-convert-2.0.0.tgz"; - sha512 = "asOvN6bFlSnxewce2e/DK3p4tltyfC4VM7ZwuTuepI7dEQVcvpyFuBcEARu1+Hxg8DIwytce2n7jrZtRlPrARA=="; - }; - }; - "koa-logger-3.2.1" = { - name = "koa-logger"; - packageName = "koa-logger"; - version = "3.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/koa-logger/-/koa-logger-3.2.1.tgz"; - sha512 = "MjlznhLLKy9+kG8nAXKJLM0/ClsQp/Or2vI3a5rbSQmgl8IJBQO0KI5FA70BvW+hqjtxjp49SpH2E7okS6NmHg=="; - }; - }; - "koa-request-1.0.0" = { - name = "koa-request"; - packageName = "koa-request"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/koa-request/-/koa-request-1.0.0.tgz"; - sha512 = "azqs/VDpgIjXp4mikeGB5E6menPjNQRrevz11XVJl2v6gTB9g8MY4Lgezl8hrEdi330wDPyPSSTZM9Hmp+Ym4w=="; - }; - }; - "koa-router-7.4.0" = { - name = "koa-router"; - packageName = "koa-router"; - version = "7.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/koa-router/-/koa-router-7.4.0.tgz"; - sha512 = "IWhaDXeAnfDBEpWS6hkGdZ1ablgr6Q6pGdXCyK38RbzuH4LkUOpPqPw+3f8l8aTDrQmBQ7xJc0bs2yV4dzcO+g=="; - }; - }; - "koa-send-4.1.3" = { - name = "koa-send"; - packageName = "koa-send"; - version = "4.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/koa-send/-/koa-send-4.1.3.tgz"; - sha512 = "3UetMBdaXSiw24qM2Mx5mKmxLKw5ZTPRjACjfhK6Haca55RKm9hr/uHDrkrxhSl5/S1CKI/RivZVIopiatZuTA=="; - }; - }; - "koa-static-4.0.3" = { - name = "koa-static"; - packageName = "koa-static"; - version = "4.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/koa-static/-/koa-static-4.0.3.tgz"; - sha512 = "JGmxTuPWy4bH7bt6gD/OMWkhprawvRmzJSr8TWKmTL4N7+IMv3s0SedeQi5S4ilxM9Bo6ptkCyXj/7wf+VS5tg=="; - }; - }; "kuler-2.0.0" = { name = "kuler"; packageName = "kuler"; @@ -46342,15 +45163,6 @@ let sha512 = "U/VxvpX4N/rFvPzr3qG5EtLKEnNI0emvIQB3/ecEwv+8GHaUKbIB8vxv1Oai5FAF0d0r7LXHhLLe5K/yChm5GQ=="; }; }; - "latest-0.2.0" = { - name = "latest"; - packageName = "latest"; - version = "0.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/latest/-/latest-0.2.0.tgz"; - sha512 = "nsIM/FjwLcsKZ1KDAw5CivnM26zzMs3zGBL4SdjYXHI5tMcOWjGhFDMBKIum4WNAkZmeVw7zU1jR2H2UiKoQVA=="; - }; - }; "latest-version-1.0.1" = { name = "latest-version"; packageName = "latest-version"; @@ -46612,13 +45424,13 @@ let sha512 = "6PVFIYXxlYF0o6hrAsHtGpTmi06otkwNrMcmQ0K96SeSRHPREPa9J3nJZ1frliVH7XT0XFswoJFQoXsDukzGNQ=="; }; }; - "less-4.1.3" = { + "less-4.2.0" = { name = "less"; packageName = "less"; - version = "4.1.3"; + version = "4.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/less/-/less-4.1.3.tgz"; - sha512 = "w16Xk/Ta9Hhyei0Gpz9m7VS8F28nieJaL/VyShID7cYvP6IL5oHeL6p4TXSDJqZE/lNv0oJ2pGVjJsRkfwm5FA=="; + url = "https://registry.npmjs.org/less/-/less-4.2.0.tgz"; + sha512 = "P3b3HJDBtSzsXUl0im2L7gTO5Ubg8mEN6G8qoTS77iXxXX4Hvu4Qj540PZDvQ8V6DmX6iXo98k7Md0Cm1PrLaA=="; }; }; "level-5.0.1" = { @@ -46936,60 +45748,6 @@ let sha512 = "gPWxznF6TKmUHrOQjlVo2UbaL2EJ71mb2CCeRs/2qBpi4L/g4LUVc9+3lKQ6DTUZwJswfM7ainGrLO1+fOqa2g=="; }; }; - "lightning-7.0.3" = { - name = "lightning"; - packageName = "lightning"; - version = "7.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/lightning/-/lightning-7.0.3.tgz"; - sha512 = "oGnfMICKd0cmGxHdXG6VW5Ha/TLVgHJxCCYxHHyOO0PKAAweK8yUV8d0CUfgHaV/rUybTxbQ+oRhMQ6M7yPtyg=="; - }; - }; - "lightning-7.1.4" = { - name = "lightning"; - packageName = "lightning"; - version = "7.1.4"; - src = fetchurl { - url = "https://registry.npmjs.org/lightning/-/lightning-7.1.4.tgz"; - sha512 = "qcMnxsKAkn5eWdFCZGP1mwW/6zBTTtGJPMt1BW6056bmB6kTAnP8A3+MWp1bQpdcfMzUKhl18am8uLu00w/FoA=="; - }; - }; - "lightning-9.3.0" = { - name = "lightning"; - packageName = "lightning"; - version = "9.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/lightning/-/lightning-9.3.0.tgz"; - sha512 = "vkjo1vor1WNAEE/CkU9MDCj6soOszsBmLrpqBD+EN5YT+7B9twp+xkETulgFCPyF/Nb7ftA7ijiMH9Wq2UP4ew=="; - }; - }; - "lightning-9.7.1" = { - name = "lightning"; - packageName = "lightning"; - version = "9.7.1"; - src = fetchurl { - url = "https://registry.npmjs.org/lightning/-/lightning-9.7.1.tgz"; - sha512 = "/3bey499RqR1m1oOop6reoOcpm6939yI5BQR9XMuFFVC0+WuTRE/okugwgFdQ0hJJ6V3ijg/finOVVHtfMCpng=="; - }; - }; - "lightning-9.8.0" = { - name = "lightning"; - packageName = "lightning"; - version = "9.8.0"; - src = fetchurl { - url = "https://registry.npmjs.org/lightning/-/lightning-9.8.0.tgz"; - sha512 = "VJhAL13nuWLHr2hJSDbX5gweh2P1AiCBVG85ZPXR0Gf6/x1eTn1RWLRMxgk+5oiuAKa88GcAHXPYpQjWhKyOnQ=="; - }; - }; - "lightning-9.9.0" = { - name = "lightning"; - packageName = "lightning"; - version = "9.9.0"; - src = fetchurl { - url = "https://registry.npmjs.org/lightning/-/lightning-9.9.0.tgz"; - sha512 = "SSBzdv7qvxgQWH0a2Q/9hCcfbMH67VPwWm3FtFrl/e/89QVydnb+9yMTDMpPFh8R2E+kN1NiBEy4jihC4Y3EtA=="; - }; - }; "lightningcss-1.21.5" = { name = "lightningcss"; packageName = "lightningcss"; @@ -47269,24 +46027,6 @@ let sha512 = "+rAXGHh0fkEWdXBmX+L6mmfmXmXvDGEKzkjxO+8mP3+nI/r/CWznVBvsibXdxda9Zz0OW2e2ikphN3OwCT/jSg=="; }; }; - "livereload-0.9.3" = { - name = "livereload"; - packageName = "livereload"; - version = "0.9.3"; - src = fetchurl { - url = "https://registry.npmjs.org/livereload/-/livereload-0.9.3.tgz"; - sha512 = "q7Z71n3i4X0R9xthAryBdNGVGAO2R5X+/xXpmKeuPMrteg+W2U8VusTKV3YiJbXZwKsOlFlHe+go6uSNjfxrZw=="; - }; - }; - "livereload-js-3.4.1" = { - name = "livereload-js"; - packageName = "livereload-js"; - version = "3.4.1"; - src = fetchurl { - url = "https://registry.npmjs.org/livereload-js/-/livereload-js-3.4.1.tgz"; - sha512 = "5MP0uUeVCec89ZbNOT/i97Mc+q3SxXmiUGhRFOTmhrGPn//uWVQdCvcLJDy64MSBR5MidFdOR7B9viumoavy6g=="; - }; - }; "lmdb-2.5.3" = { name = "lmdb"; packageName = "lmdb"; @@ -47305,132 +46045,6 @@ let sha512 = "x9bD4hVp7PFLUoELL8RglbNXhAMt5CYhkmss+CEau9KlNoilsTzNi9QDsPZb3KMpOGZXG6jmXhW3bBxE2XVztw=="; }; }; - "ln-accounting-6.1.3" = { - name = "ln-accounting"; - packageName = "ln-accounting"; - version = "6.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/ln-accounting/-/ln-accounting-6.1.3.tgz"; - sha512 = "8eQvvZb/MiYcRUlg/iIaamWSSTLBpLidLiviqmZ3enpnliW1JIA6pgXsbfyKSWPK3bdzqPuRGnQKQevXsTAybQ=="; - }; - }; - "ln-accounting-7.0.2" = { - name = "ln-accounting"; - packageName = "ln-accounting"; - version = "7.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/ln-accounting/-/ln-accounting-7.0.2.tgz"; - sha512 = "Ts0PF1vJkaEXFynJXAYsmi0L24iQBGQKhGlfpecRkrOQhqixku0EL6hXBvx8wZgo9YuI28ij03T4j8WB2q9iSw=="; - }; - }; - "ln-service-54.10.5" = { - name = "ln-service"; - packageName = "ln-service"; - version = "54.10.5"; - src = fetchurl { - url = "https://registry.npmjs.org/ln-service/-/ln-service-54.10.5.tgz"; - sha512 = "dMT803JdsQgWUYid1n3nIZYmRU+Yd4FL3GcezEye5u1c6ab9f9/VcCvAwVL86FuhR4PB1+xajs2PHtNreejNRA=="; - }; - }; - "ln-service-54.9.0" = { - name = "ln-service"; - packageName = "ln-service"; - version = "54.9.0"; - src = fetchurl { - url = "https://registry.npmjs.org/ln-service/-/ln-service-54.9.0.tgz"; - sha512 = "aeuRa5B3EhCJf6RL2m2oTK7luClU90Evhqp9RRWcfxngQZc2BSbw47fav63WaoXwA/o7/3tgy6y/1bCZ5UfzgA=="; - }; - }; - "ln-service-56.3.0" = { - name = "ln-service"; - packageName = "ln-service"; - version = "56.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/ln-service/-/ln-service-56.3.0.tgz"; - sha512 = "8OhCO8o3bzbMzd1fTBSH95YDhx8e9v0xv4MnAl1UIMLkWpMY8EubBwtbLGwKcXumMMdLMUDXsfkKjwnlvtTMRw=="; - }; - }; - "ln-service-56.7.1" = { - name = "ln-service"; - packageName = "ln-service"; - version = "56.7.1"; - src = fetchurl { - url = "https://registry.npmjs.org/ln-service/-/ln-service-56.7.1.tgz"; - sha512 = "FXRt7TrbbOKmCtniR0IL4WNhHUAyMBpLNZdubJwHHhTpQ53ahdfei/nso2RjtdjSNJAXLqAvjytR8wNa85O3Qw=="; - }; - }; - "ln-service-56.8.0" = { - name = "ln-service"; - packageName = "ln-service"; - version = "56.8.0"; - src = fetchurl { - url = "https://registry.npmjs.org/ln-service/-/ln-service-56.8.0.tgz"; - sha512 = "TWKfTVMhEb7Df7xB6z3/fiNTaBONwyoqYWgl7dZ9JbdOMLrhtX0y9OJAsFWAgIo0SYDjO2MM7sq1UDfLf3Zcqg=="; - }; - }; - "ln-service-56.9.0" = { - name = "ln-service"; - packageName = "ln-service"; - version = "56.9.0"; - src = fetchurl { - url = "https://registry.npmjs.org/ln-service/-/ln-service-56.9.0.tgz"; - sha512 = "cximQT2aIhKOkckuaVO8U4J04HoLWejcFb3aIv2Pas65y7D9VqaIXyb1FCIH4o9Rf0Z9sNSdf5a6RR2G2Ov4uQ=="; - }; - }; - "ln-sync-4.2.0" = { - name = "ln-sync"; - packageName = "ln-sync"; - version = "4.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/ln-sync/-/ln-sync-4.2.0.tgz"; - sha512 = "yRQZ7nQOIa97p4vWeUo8iqGXX0nVMoROqA3PVm29RnW+AgKPk3sXtJ+LUDu+vMNkOauocrGz1vXS61Q+WNLutg=="; - }; - }; - "ln-sync-4.3.0" = { - name = "ln-sync"; - packageName = "ln-sync"; - version = "4.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/ln-sync/-/ln-sync-4.3.0.tgz"; - sha512 = "DQr68yZBk9QmcSKRJ9Nto6WxB2xjRS2XcUFSQXNDWkM+r9vMFCsqNUFU5IMVt/aLiKnf4PdKQ3mhfrvbH+TMuQ=="; - }; - }; - "ln-sync-4.3.2" = { - name = "ln-sync"; - packageName = "ln-sync"; - version = "4.3.2"; - src = fetchurl { - url = "https://registry.npmjs.org/ln-sync/-/ln-sync-4.3.2.tgz"; - sha512 = "bVHd1UnoosyDzcd0N0lr//+uJzl+389tQf94zwNAUIlQURPU346V2uN7Nncf1KS/R55ao/r17oSGzW1rgLDMKw=="; - }; - }; - "ln-sync-5.2.0" = { - name = "ln-sync"; - packageName = "ln-sync"; - version = "5.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/ln-sync/-/ln-sync-5.2.0.tgz"; - sha512 = "y4PedzCTMbOqa6cV2t6VW1ndxeimu5yUAvNJruPoXGblfBYthnSBQwI/2m/GG7XHBFZdkZ3OtAIyaZq9SoBiwA=="; - }; - }; - "ln-sync-5.2.3" = { - name = "ln-sync"; - packageName = "ln-sync"; - version = "5.2.3"; - src = fetchurl { - url = "https://registry.npmjs.org/ln-sync/-/ln-sync-5.2.3.tgz"; - sha512 = "8UCQFd0D2BaGXnjhByUsA9Y1zBj4JJ6TTQjFv67tuwspd9Vvo75xO50ABFljD1/5uu4hrq0xRSZs3AjtwYyk3g=="; - }; - }; - "ln-telegram-4.6.1" = { - name = "ln-telegram"; - packageName = "ln-telegram"; - version = "4.6.1"; - src = fetchurl { - url = "https://registry.npmjs.org/ln-telegram/-/ln-telegram-4.6.1.tgz"; - sha512 = "0zoS1dDGXKwT2ixtSxfWRJsHdcz7ap+PNoNB5KEB3vKeAR1fuGZAz1kr5lbKXGLK8Y8RaR/S/qK3hV8e5khfkg=="; - }; - }; "load-bmfont-1.4.1" = { name = "load-bmfont"; packageName = "load-bmfont"; @@ -47782,6 +46396,15 @@ let sha512 = "k8SE/OwvWfYZqx3MA/Ry1SHBDWre8Z8tCs0Ba0bF5OqVNvymxgFZ/4VDtbTxzTvcoG11JpTMFsaeZp/yGYvFnA=="; }; }; + "lodash-es-4.17.21" = { + name = "lodash-es"; + packageName = "lodash-es"; + version = "4.17.21"; + src = fetchurl { + url = "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz"; + sha512 = "mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw=="; + }; + }; "lodash-id-0.14.1" = { name = "lodash-id"; packageName = "lodash-id"; @@ -49501,15 +48124,6 @@ let sha512 = "OwQTGyq+57hmefrEv3Uhhyw4Z3l+aT/Q4nkdslVqy2n/7qIa4ML0wKnYcUUo54W1RRJYLdk2xKFsTaDGEVJLDw=="; }; }; - "lstream-0.0.4" = { - name = "lstream"; - packageName = "lstream"; - version = "0.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/lstream/-/lstream-0.0.4.tgz"; - sha512 = "usI61rjXiD5YoITGpWxUGe/AjYEwpKlQISNDgQ3D3DrWDcdX4A5Pu1xrmh7E1r65I/snMj9tpqRJgJRktOb00Q=="; - }; - }; "lt_donthave-1.0.1" = { name = "lt_donthave"; packageName = "lt_donthave"; @@ -49565,22 +48179,13 @@ let sha512 = "gYHAa180mKrNIUJCbwpmD0aTu9kV0dREDrwNnuyFAsO1Wt0EVYSZelPnJlbj9HplzXX/YWXHFTL45kvZ53M0pw=="; }; }; - "luxon-3.2.1" = { + "luxon-3.4.0" = { name = "luxon"; packageName = "luxon"; - version = "3.2.1"; + version = "3.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/luxon/-/luxon-3.2.1.tgz"; - sha512 = "QrwPArQCNLAKGO/C+ZIilgIuDnEnKx5QYODdDtbFaxzsbZcc/a7WFq7MhsVYgRlwawLtvOUESTlfJ+hc/USqPg=="; - }; - }; - "luxon-3.3.0" = { - name = "luxon"; - packageName = "luxon"; - version = "3.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/luxon/-/luxon-3.3.0.tgz"; - sha512 = "An0UCfG/rSiqtAIiBPO0Y9/zAnHUZxAMiCpTd5h2smgsj7GGmcenvrvww2cqNA8/4A5ZrD1gJpHN2mIHZQF+Mg=="; + url = "https://registry.npmjs.org/luxon/-/luxon-3.4.0.tgz"; + sha512 = "7eDo4Pt7aGhoCheGFIuq4Xa2fJm4ZpmldpGhjTYBNUYNCN6TIEP6v7chwwwt3KRp7YR+rghbfvjyo3V5y9hgBw=="; }; }; "macaddress-0.5.3" = { @@ -49592,15 +48197,6 @@ let sha512 = "vGBKTA+jwM4KgjGZ+S/8/Mkj9rWzePyGY6jManXPGhiWu63RYwW8dKPyk5koP+8qNVhPhHgFa1y/MJ4wrjsNrg=="; }; }; - "macaroon-3.0.4" = { - name = "macaroon"; - packageName = "macaroon"; - version = "3.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/macaroon/-/macaroon-3.0.4.tgz"; - sha512 = "Tja2jvupseKxltPZbu5RPSz2Pgh6peYA3O46YCTcYL8PI1VqtGwDqRhGfP8pows26xx9wTiygk+en62Bq+Y8JA=="; - }; - }; "machine-10.4.0" = { name = "machine"; packageName = "machine"; @@ -49673,13 +48269,13 @@ let sha512 = "8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA=="; }; }; - "magic-string-0.30.0" = { + "magic-string-0.30.1" = { name = "magic-string"; packageName = "magic-string"; - version = "0.30.0"; + version = "0.30.1"; src = fetchurl { - url = "https://registry.npmjs.org/magic-string/-/magic-string-0.30.0.tgz"; - sha512 = "LA+31JYDJLs82r2ScLrlz1GjSgu66ZV518eyWT+S8VhyQn/JL0u9MeBOvQMGYiPk1DBiSN9DDMOcXvigJZaViQ=="; + url = "https://registry.npmjs.org/magic-string/-/magic-string-0.30.1.tgz"; + sha512 = "mbVKXPmS0z0G4XqFDCTllmDQ6coZzn94aMlb0o/A4HEHJCKcanlDZwYJgwnkmgD3jyWhUgj9VsPrfd972yPffA=="; }; }; "magic-string-0.30.2" = { @@ -50771,15 +49367,6 @@ let sha512 = "9I7T9NDWYrnAbaV2OsEzR+RVa/WpQjRZKhpm95Fnd5T7HdTKzmGVSEI4pqdbvkfHiB2CB4eagr5dcCY8idZLag=="; }; }; - "mdns-js-1.0.3" = { - name = "mdns-js"; - packageName = "mdns-js"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/mdns-js/-/mdns-js-1.0.3.tgz"; - sha512 = "+6NHS48WZ7na7jkE9PB9dRbBGvY0FvAp8nTGp3/u/05WIyq/B37OVfMppIbHyoo9D4yocJGax4Krxfz3nU7EbQ=="; - }; - }; "mdns-js-packet-0.2.0" = { name = "mdns-js-packet"; packageName = "mdns-js-packet"; @@ -50969,15 +49556,6 @@ let sha512 = "ZS4Bp4r/Zoeq6+NLJpP+0Zzm0pR8whtGPf1XExKLJBAczGMnSi3It14OiNCStjQjM6NU1okjQGSxgEZN8eBYKg=="; }; }; - "memory-stream-0.0.3" = { - name = "memory-stream"; - packageName = "memory-stream"; - version = "0.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/memory-stream/-/memory-stream-0.0.3.tgz"; - sha512 = "q0D3m846qY6ZkIt+19ZemU5vH56lpOZZwoJc3AICARKh/menBuayQUjAGPrqtHQQMUYERSdOrej92J9kz7LgYA=="; - }; - }; "memorystore-1.6.7" = { name = "memorystore"; packageName = "memorystore"; @@ -51662,15 +50240,6 @@ let sha512 = "DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA=="; }; }; - "micromist-1.1.0" = { - name = "micromist"; - packageName = "micromist"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/micromist/-/micromist-1.1.0.tgz"; - sha512 = "+CQ76pabE9egniSEdmDuH+j2cYyIBKP97kujG8ZLZyLCRq5ExwtIy4DPHPFrq4jVbhMRBnyjuH50KU9Ohs8QCg=="; - }; - }; "middleware-handler-0.2.0" = { name = "middleware-handler"; packageName = "middleware-handler"; @@ -51977,13 +50546,13 @@ let sha512 = "LfHUYIA047rrqIZEn0gwbqbzarU5bmZ8yZ9SizeoiPwVq5cemE3foJTJZ3pCktUq/IPkKNGghFHJk1O8149mOA=="; }; }; - "miniflare-3.20230724.0" = { + "miniflare-3.20230801.0" = { name = "miniflare"; packageName = "miniflare"; - version = "3.20230724.0"; + version = "3.20230801.0"; src = fetchurl { - url = "https://registry.npmjs.org/miniflare/-/miniflare-3.20230724.0.tgz"; - sha512 = "YU8yUwoVJCiuzY2i9ZBJ+McjL/mqwKnMJfn23QedSCvx82Mys8GAlkHCH69mqSqzlSw8IVcdxec330meRRf9bg=="; + url = "https://registry.npmjs.org/miniflare/-/miniflare-3.20230801.0.tgz"; + sha512 = "jXl++AYc3PDMu9cxeMbFgzrnbgwU8VIkw49cdpOaIAz7jQgPcLuNLOyAw3G+uaLELnILHs81MM67fGR1hAc62A=="; }; }; "minilog-3.1.0" = { @@ -52175,15 +50744,6 @@ let sha512 = "+bMdgqjMN/Z77a6NlY/I3U5LlRDbnmaAk6lDveAPKwSpcPM4tKAuYsvYF8xjhOPXhOYGe/73vVLVez5PW+jqhw=="; }; }; - "minimist-1.2.6" = { - name = "minimist"; - packageName = "minimist"; - version = "1.2.6"; - src = fetchurl { - url = "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz"; - sha512 = "Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q=="; - }; - }; "minimist-1.2.8" = { name = "minimist"; packageName = "minimist"; @@ -52256,15 +50816,6 @@ let sha512 = "3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ=="; }; }; - "minipass-6.0.2" = { - name = "minipass"; - packageName = "minipass"; - version = "6.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/minipass/-/minipass-6.0.2.tgz"; - sha512 = "MzWSV5nYVT7mVyWCwn2o7JH13w2TBRmmSqSRCKzTw+lmft9X4z+3wjvs06Tzijo5z4W/kahUCDpRXTF+ZrmF/w=="; - }; - }; "minipass-7.0.2" = { name = "minipass"; packageName = "minipass"; @@ -52373,15 +50924,6 @@ let sha512 = "bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg=="; }; }; - "mired-0.0.0" = { - name = "mired"; - packageName = "mired"; - version = "0.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/mired/-/mired-0.0.0.tgz"; - sha512 = "uYi3iDaFHOmOwqFT3KEZsr2iPBboFf9k0teiUJVfS4Bgkpk02bOR6YqL8AlO0A1s8CPzPyz4zpLAZB2nQ2k4ww=="; - }; - }; "mirror-folder-3.1.0" = { name = "mirror-folder"; packageName = "mirror-folder"; @@ -52940,13 +51482,13 @@ let sha512 = "mpPs3qqTug6ahbblkThoUY2DQdNXcm4IapwOS3Vm/87vmpzLVelvp9h3It1y9l1VPpiFLV11vfOXnmeEwiIXwg=="; }; }; - "msgpackr-1.9.5" = { + "msgpackr-1.9.7" = { name = "msgpackr"; packageName = "msgpackr"; - version = "1.9.5"; + version = "1.9.7"; src = fetchurl { - url = "https://registry.npmjs.org/msgpackr/-/msgpackr-1.9.5.tgz"; - sha512 = "/IJ3cFSN6Ci3eG2wLhbFEL6GT63yEaoN/R5My2QkV6zro+OJaVRLPlwvxY7EtHYSmDlQpk8stvOQTL2qJFkDRg=="; + url = "https://registry.npmjs.org/msgpackr/-/msgpackr-1.9.7.tgz"; + sha512 = "baUNaLvKQvVhzfWTNO07njwbZK1Lxjtb0P1JL6/EhXdLTHzR57/mZqqJC39TtQKvOmkJA4pcejS4dbk7BDgLLA=="; }; }; "msgpackr-extract-3.0.2" = { @@ -53021,15 +51563,6 @@ let sha512 = "ZNgfHZkC1A1xec7aUE7Tq6ArIXE7pygzbf3jNX1wlK15STqenGGURrqM79puk3j2cscC9Keu/ULQM3dET3xLCQ=="; }; }; - "multicast-dns-4.0.1" = { - name = "multicast-dns"; - packageName = "multicast-dns"; - version = "4.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/multicast-dns/-/multicast-dns-4.0.1.tgz"; - sha512 = "e1WjgIOzW2lzbq4CnGDaB+5FiY5g5maPVIUhdbsoWl64lKBhqa68Gsi3MIglEf0Vdhux4vVQUKyVP6s//r1B1A=="; - }; - }; "multicast-dns-6.2.3" = { name = "multicast-dns"; packageName = "multicast-dns"; @@ -53174,15 +51707,6 @@ let sha512 = "71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ=="; }; }; - "mutate.js-0.2.0" = { - name = "mutate.js"; - packageName = "mutate.js"; - version = "0.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/mutate.js/-/mutate.js-0.2.0.tgz"; - sha512 = "vIvgot2QlLsAjk2ctpToTXtij/GdM73mCHxH63gr07u1rjhJyTOdrMAGNeJ2/ivP4YySWoPmFrgbK24jjxHcyg=="; - }; - }; "mutation-observer-1.0.3" = { name = "mutation-observer"; packageName = "mutation-observer"; @@ -53201,15 +51725,6 @@ let sha512 = "kDcwXR4PS7caBpuRYYBUz9iVixUk3anO3f5OYFiIPwK/20vCzKCHyKoulbiDY1S53zD2bxUpxN/IJ+TnXjfvxg=="; }; }; - "mute-stream-0.0.4" = { - name = "mute-stream"; - packageName = "mute-stream"; - version = "0.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.4.tgz"; - sha512 = "amvrY4m/7oZamehMoFi1tbwU/kXbVvRTGM2S7F+PZi3n51Jx+9AcSQ3EQsag3tR+hS2higfgOP/Kl8kri/X52A=="; - }; - }; "mute-stream-0.0.5" = { name = "mute-stream"; packageName = "mute-stream"; @@ -53931,15 +52446,6 @@ let sha512 = "5644wFwLQzom2zx/4CzQXO8OcOADf1otKe5vUvfAqXes18gruSv18wGIBHlNclTGQuOOLgzGPYKen26tfNIfBQ=="; }; }; - "network-address-0.0.5" = { - name = "network-address"; - packageName = "network-address"; - version = "0.0.5"; - src = fetchurl { - url = "https://registry.npmjs.org/network-address/-/network-address-0.0.5.tgz"; - sha512 = "XAY9TbtvRU8BX6Ih8h6pmMTy0jODse8e6DrfQwhnfQqkK5C8qP/tkSMuvMIgc/ct0asXBXjtSewUDa7ywwtTtA=="; - }; - }; "network-address-1.1.2" = { name = "network-address"; packageName = "network-address"; @@ -54750,15 +53256,6 @@ let sha512 = "yGUSsm7HKxcv1XU0X6BIMWaOl/SaXqrIhwZCdklmAzwjG6qt+hnJwzs+VigCuRMP+jhSyoVBvHnoc95VgxbcuQ=="; }; }; - "node-ssdp-3.3.0" = { - name = "node-ssdp"; - packageName = "node-ssdp"; - version = "3.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/node-ssdp/-/node-ssdp-3.3.0.tgz"; - sha512 = "hFBkfUJytKC2x64jljojAbktG8aOL0C1YuNjCK54ZGBBg2382J3oTuK17T+aFgmy47noKHE5arLnYppo0JjcLw=="; - }; - }; "node-static-0.7.11" = { name = "node-static"; packageName = "node-static"; @@ -54885,15 +53382,6 @@ let sha512 = "VGPaqQBNk193lrJFotBU8nvWZPqEZY2eIzymy2jjY0fJ9qIsxA0sxQ8ATPl0gZC645gijYEc1jtZvpS8QWzJGQ=="; }; }; - "nofilter-3.1.0" = { - name = "nofilter"; - packageName = "nofilter"; - version = "3.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/nofilter/-/nofilter-3.1.0.tgz"; - sha512 = "l2NNj07e9afPnhAhvgVrCD/oy2Ai1yfLpuo3EpiO1jFTsB4sFz6oIfAfSZyQzVpkZQ9xS8ZS5g1jCBgq4Hwo0g=="; - }; - }; "nomnom-1.8.1" = { name = "nomnom"; packageName = "nomnom"; @@ -55173,15 +53661,6 @@ let sha512 = "a4s1yESHcIwsrk/oaTekfbhb1R/2z2yyfVLX6Atl54w/9+QR01qeYyK3vMWgJ0UY+kYsGzQXausgvUX0pkmIMg=="; }; }; - "npm-2.15.12" = { - name = "npm"; - packageName = "npm"; - version = "2.15.12"; - src = fetchurl { - url = "https://registry.npmjs.org/npm/-/npm-2.15.12.tgz"; - sha512 = "WMoAJ518W0vHjWy1abYnTeyG9YQpSoYGPxAx7d0C0L7U7Jo44bZsrvTjccmDohCJGxpasdKfqsKsl6o/RUPx6A=="; - }; - }; "npm-bundled-1.1.2" = { name = "npm-bundled"; packageName = "npm-bundled"; @@ -55506,15 +53985,6 @@ let sha512 = "iTK+HI68GceCoGOHAQiJ/ik1iDfI7S+cgyG8A+PP18IU3X83kRhQIRhAUNj4Bp2JMx6Zrt5kCiozYa9uGWTjhA=="; }; }; - "npmlog-1.2.1" = { - name = "npmlog"; - packageName = "npmlog"; - version = "1.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/npmlog/-/npmlog-1.2.1.tgz"; - sha512 = "1J5KqSRvESP6XbjPaXt2H6qDzgizLTM7x0y1cXIjP2PpvdCqyNC7TO3cPRKsuYlElbi/DwkzRRdG2zpmE0IktQ=="; - }; - }; "npmlog-2.0.4" = { name = "npmlog"; packageName = "npmlog"; @@ -55659,15 +54129,6 @@ let sha512 = "wsJ9gfSz1/s4ZsJN01lyonwuxA1tml6X1yBDnfpMglypcBRFZZkus26EdPSlqS5GJfYddVZa22p3VNb3z5m5Ig=="; }; }; - "numeral-1.5.6" = { - name = "numeral"; - packageName = "numeral"; - version = "1.5.6"; - src = fetchurl { - url = "https://registry.npmjs.org/numeral/-/numeral-1.5.6.tgz"; - sha512 = "ajp+xurmcvkOLZURhHP2O7AyyF+v2xQDeCODlzALrNeAQnriYaWu0c8I/mu985WaVl2O2lgdOt0QgQHlCAQ3UA=="; - }; - }; "numeral-2.0.6" = { name = "numeral"; packageName = "numeral"; @@ -55822,15 +54283,6 @@ let sha512 = "9dSx/Gwm0J2Rvj4RH9+h7iXVnRXZ6biwWRgb2dCeQhCosODS0nYdM9I/G7BUGsjbgn0pHjGcn1zcCRtzj2SlRA=="; }; }; - "object-assign-1.0.0" = { - name = "object-assign"; - packageName = "object-assign"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/object-assign/-/object-assign-1.0.0.tgz"; - sha512 = "LpUkixU1BUMQ6bwUHbOue4IGGbdRbxi+IEZw7zHniw78erlxrKGHbhfLbHIsI35LGbGqys6QOrjVmLnD2ie+1A=="; - }; - }; "object-assign-2.1.1" = { name = "object-assign"; packageName = "object-assign"; @@ -56263,15 +54715,6 @@ let sha512 = "3ufOvnTvh39ah2/TT++HpLailHVmEVVrKtzKLKifAUyWbulKLGGJGOF7ywKC4k/iQGmn9KooV6WmQl/6BVwklA=="; }; }; - "once-1.2.0" = { - name = "once"; - packageName = "once"; - version = "1.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/once/-/once-1.2.0.tgz"; - sha512 = "WBd9yDi3JRrEsysh0s4px+jinLuW/DGRydS+ZGPTHVKu4JrIBmKj3uDC9LfnwEbXHFVLieUuZvunY74wln6arg=="; - }; - }; "once-1.3.0" = { name = "once"; packageName = "once"; @@ -56344,15 +54787,6 @@ let sha512 = "1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ=="; }; }; - "only-0.0.2" = { - name = "only"; - packageName = "only"; - version = "0.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/only/-/only-0.0.2.tgz"; - sha512 = "Fvw+Jemq5fjjyWz6CpKx6w9s7xxqo3+JCyM0WXWeCSOboZ8ABkyvP8ID4CZuChA/wxSx+XSJmdOm8rGVyJ1hdQ=="; - }; - }; "onml-2.1.0" = { name = "onml"; packageName = "onml"; @@ -56371,13 +54805,13 @@ let sha512 = "jQ31cORBFE6td25deYeD80wxKBMj+zBmHTrVxnc6CKhx8gho6ipmWM5zj/oeoqioZ99yqBls9Z/9Nss7J26G2g=="; }; }; - "oo-ascii-tree-1.85.0" = { + "oo-ascii-tree-1.86.1" = { name = "oo-ascii-tree"; packageName = "oo-ascii-tree"; - version = "1.85.0"; + version = "1.86.1"; src = fetchurl { - url = "https://registry.npmjs.org/oo-ascii-tree/-/oo-ascii-tree-1.85.0.tgz"; - sha512 = "5QKNfCtTeW5rcdKbd0owoZFzMxJ7oJl9I+FycBJ0/i8UVJYcZOKctN9TA82unIRgf/BrSaa0X3Nw0RJuiAnMfQ=="; + url = "https://registry.npmjs.org/oo-ascii-tree/-/oo-ascii-tree-1.86.1.tgz"; + sha512 = "pM4jJfP+5cWCOqoSN3RUgNNcOPqLYhmwzbw9QOHNZjCWAfrlgq2D/CSxer0vKDDm5AMkCBzlcknxQLKx9zNqXA=="; }; }; "open-0.0.2" = { @@ -56650,15 +55084,6 @@ let sha512 = "WfnNWLS3vr8omCm8nKYKaRbapuy6pEbx1O0B+eP5sUf/a++sT9/h8PflqBoHsY9N+YdzUT12T8snXigq13QpJg=="; }; }; - "opts-2.0.2" = { - name = "opts"; - packageName = "opts"; - version = "2.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/opts/-/opts-2.0.2.tgz"; - sha512 = "k41FwbcLnlgnFh69f4qdUfvDQ+5vaSDnVPFI/y5XuhKRq97EnVVneO9F1ESVCdiVu4fCS2L8usX3mU331hB7pg=="; - }; - }; "opusscript-0.0.6" = { name = "opusscript"; packageName = "opusscript"; @@ -57361,24 +55786,6 @@ let sha512 = "RRTnDb2TBG/epPRI2yYXsimO0v3BXC8Yd3ogr1545IaqKK17VGhbWVeGGN+XfCm/08OK8635nH31c8bATkHuSw=="; }; }; - "p2tr-1.3.3" = { - name = "p2tr"; - packageName = "p2tr"; - version = "1.3.3"; - src = fetchurl { - url = "https://registry.npmjs.org/p2tr/-/p2tr-1.3.3.tgz"; - sha512 = "j3M5EDh8iS1ONYu2WrFQ+w9Ap3pw8B9udXh7tHPcvjhKQDA/vt7v3JI8FEo/9R3ayTc3e/My8kSPQ8Rkns/ZMA=="; - }; - }; - "p2tr-2.0.0" = { - name = "p2tr"; - packageName = "p2tr"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/p2tr/-/p2tr-2.0.0.tgz"; - sha512 = "2Rp6mshhQc0JSMjXAGTGuvEzNIdzA6QCgzcwguF+/eF39Rglh7y0VsWd14kOmExf/klupOcb5HDkS/7leEGYHg=="; - }; - }; "pac-proxy-agent-4.1.0" = { name = "pac-proxy-agent"; packageName = "pac-proxy-agent"; @@ -57559,15 +55966,6 @@ let sha512 = "rJVZeIwHTUta23sIZgEIM62WYwbmGbThdbnkt81ravBplQv+HjyroqnLRNH2+sLJHcGZmLRmhPwACqhfTcOmnA=="; }; }; - "pad-0.0.5" = { - name = "pad"; - packageName = "pad"; - version = "0.0.5"; - src = fetchurl { - url = "https://registry.npmjs.org/pad/-/pad-0.0.5.tgz"; - sha512 = "SKvJWwNN3EsM9Bnnt+yta1ueZw8zOxsdL2zfWKjrb/43sVN0OaqX4KuwgIURA27IrM0Zzb5W1jr+T8dF+k6HaQ=="; - }; - }; "pad-2.3.0" = { name = "pad"; packageName = "pad"; @@ -57586,24 +55984,6 @@ let sha512 = "8EKVBxCRSvLnsX1p2LlSFSH3c2/wuhY9/BXXWu8boL78FbVKqn2L5SpURt1x5iw6Gq8PTqJ7MdPoe5nCtX3I+g=="; }; }; - "paid-services-4.3.0" = { - name = "paid-services"; - packageName = "paid-services"; - version = "4.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/paid-services/-/paid-services-4.3.0.tgz"; - sha512 = "OhwWeWAFnklitYkobAgIqM7UlQuJdsYI9WeEsfdiVrfJau02JYwljtNMZEID1XWE7sYW3vMD3H8tsJC+fagrPQ=="; - }; - }; - "paid-services-5.0.4" = { - name = "paid-services"; - packageName = "paid-services"; - version = "5.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/paid-services/-/paid-services-5.0.4.tgz"; - sha512 = "WfFA8DfcsdV4iB9CG3vNMw5kMQe23+HNe5mdleqd1RPDo3eRwv7lounrGJcQ3F1BGCnxvAeOrww4BDtviCb8uA=="; - }; - }; "pako-0.2.9" = { name = "pako"; packageName = "pako"; @@ -58279,15 +56659,6 @@ let sha512 = "CB97UUvDKJde2V0KDWWB3lyf6PC3FaZP7YxZ2G8OAtn9p4HI9j9JLP9qjOGZFvyl8uwNT8qM+hGnz/n16NI7oA=="; }; }; - "passthrough-counter-1.0.0" = { - name = "passthrough-counter"; - packageName = "passthrough-counter"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/passthrough-counter/-/passthrough-counter-1.0.0.tgz"; - sha512 = "Wy8PXTLqPAN0oEgBrlnsXPMww3SYJ44tQ8aVrGAI4h4JZYCS0oYqsPqtPR8OhJpv6qFbpbB7XAn0liKV7EXubA=="; - }; - }; "passwd-user-3.0.0" = { name = "passwd-user"; packageName = "passwd-user"; @@ -58702,15 +57073,6 @@ let sha512 = "sIWZ1nTL9l6mI9J18kW1AeByBwagvNzGJlMmQA9pM+otKQtTIwnigK8SR0nEFrNZYqZelI6RQ6g4udvtQ2TI1g=="; }; }; - "peerflix-0.34.0" = { - name = "peerflix"; - packageName = "peerflix"; - version = "0.34.0"; - src = fetchurl { - url = "https://registry.npmjs.org/peerflix/-/peerflix-0.34.0.tgz"; - sha512 = "uYmxamLlSGfRAjk21dVchcohFVzVCmXIVEHS5VL1zOPXAdHv5q3krR+b6a68XUdOSJH3EwGvt9XuofDTg4B1fA=="; - }; - }; "pegjs-0.10.0" = { name = "pegjs"; packageName = "pegjs"; @@ -59134,15 +57496,6 @@ let sha512 = "fnWVljUchTro6RiCFvCXBbNhJc2NijN7oIQxbwsyL0buWJPG85v81ehlHI9fXrJsMNgTofEoWIQeClKpgxFLrg=="; }; }; - "playerui-1.3.0" = { - name = "playerui"; - packageName = "playerui"; - version = "1.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/playerui/-/playerui-1.3.0.tgz"; - sha512 = "9l2NKEiOjU+PBOxSnfo8Rsct6WiNXugMtbvxzF0tEWdKlRipINzld9NwTuYMMRuSUQLHgm2DSJqBqX4NMheJ5A=="; - }; - }; "playwright-1.36.2" = { name = "playwright"; packageName = "playwright"; @@ -60970,13 +59323,13 @@ let sha512 = "tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q=="; }; }; - "prettier-3.0.0" = { + "prettier-3.0.1" = { name = "prettier"; packageName = "prettier"; - version = "3.0.0"; + version = "3.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/prettier/-/prettier-3.0.0.tgz"; - sha512 = "zBf5eHpwHOGPC47h0zrPyNn+eAEIdEzfywMoYn2XPi0P44Zp0tSq64rq0xAREh4auw2cJZHo9QUob+NqCQky4g=="; + url = "https://registry.npmjs.org/prettier/-/prettier-3.0.1.tgz"; + sha512 = "fcOWSnnpCrovBsmFZIGIy9UqK2FaI7Hqax+DIO0A9UxeVoY4iweyaFjS5TavZN97Hfehph0nhsZnjlVKzEQSrQ=="; }; }; "prettier-bytes-1.0.4" = { @@ -61222,15 +59575,6 @@ let sha512 = "HubhG4Rb2UH8YtV4ba0Vp5bQ7L78RTONYu/ujmCu5nBI8wGv24s4E9xSKBi0N1MowRpxk76pFCpJtW0KPzOK0w=="; }; }; - "probing-4.0.0" = { - name = "probing"; - packageName = "probing"; - version = "4.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/probing/-/probing-4.0.0.tgz"; - sha512 = "YZtWv+B6RrClSxWYjekPWbcScp/1H8HHbCNtHdN+Kz9F4Z3GadOvbWj2EoVSsjHxFKCmxwvobVp0vcN9qxEIMA=="; - }; - }; "proc-log-1.0.0" = { name = "proc-log"; packageName = "proc-log"; @@ -61384,15 +59728,6 @@ let sha512 = "sF308EhTenb/pDRPakm+WgiN+VdM/T1RaHj1x+MvAuT8UiQP8JmOEbxVqtkbfR4LrvOg5n7ic01kRBDGXjYikA=="; }; }; - "promiscuous-0.6.0" = { - name = "promiscuous"; - packageName = "promiscuous"; - version = "0.6.0"; - src = fetchurl { - url = "https://registry.npmjs.org/promiscuous/-/promiscuous-0.6.0.tgz"; - sha512 = "4L4dqsq7Pk7153Jkvv0FmP8tzXYpNdeUsxovkXUkXgHtBJgoO+yvWBISt8NcDUXLWR14bAmlzLeaSTGa1lr6UQ=="; - }; - }; "promise-7.3.1" = { name = "promise"; packageName = "promise"; @@ -61843,24 +60178,6 @@ let sha512 = "0VnamPPYHl4uaU/nSFeZZpR21QAWRz+sRv4iW9+v/GS/J5U5iZB5BNN6J0RMoOvdx2gWM2+ZFMIm58q24e4UYA=="; }; }; - "psbt-2.7.2" = { - name = "psbt"; - packageName = "psbt"; - version = "2.7.2"; - src = fetchurl { - url = "https://registry.npmjs.org/psbt/-/psbt-2.7.2.tgz"; - sha512 = "oNKHkpTazbcCCCaFADUNbUaxirPslcgjPlf5pxg685v5VB3ol5vIl4DMf8HsNarKiDg0FDYamM/E67HfUybQOA=="; - }; - }; - "psbt-3.0.0" = { - name = "psbt"; - packageName = "psbt"; - version = "3.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/psbt/-/psbt-3.0.0.tgz"; - sha512 = "Gg35WfXAdbVqION9AJ4cO7cdgqR2iL1Dyq00AmvKCosTbm7EQrrMmHGjkWACb7ue9+aaHjMi/UdDG1SZwqA6bg=="; - }; - }; "pseudomap-1.0.2" = { name = "pseudomap"; packageName = "pseudomap"; @@ -62644,15 +60961,6 @@ let sha512 = "XqtjwmjObiJYj/ojJskRayIzlmP6ufzG6Ec5oSd/qhlUWr4zMsAcJoiSPjUi079QFqvlb54HaWCBkbpg2zZiKQ=="; }; }; - "pump-0.3.5" = { - name = "pump"; - packageName = "pump"; - version = "0.3.5"; - src = fetchurl { - url = "https://registry.npmjs.org/pump/-/pump-0.3.5.tgz"; - sha512 = "U0S7cdRuBLfk1ylK32jc8No8ex3Xj2ok3XOPAYfXXXfVd3zMA2BT5Vl7XxfqXoIioNSxczI0/OGENv68XN7Oyg=="; - }; - }; "pump-1.0.3" = { name = "pump"; packageName = "pump"; @@ -62743,15 +61051,6 @@ let sha512 = "FLpr4flz5xZTSJxSeaheeMKN/EDzMdK7b8PTOC6a5PYFKTucWbdqjgqaEyH0shFiSJrVB1+Qqi4Tk19ccU6Aug=="; }; }; - "puppeteer-1.20.0" = { - name = "puppeteer"; - packageName = "puppeteer"; - version = "1.20.0"; - src = fetchurl { - url = "https://registry.npmjs.org/puppeteer/-/puppeteer-1.20.0.tgz"; - sha512 = "bt48RDBy2eIwZPrkgbcwHtb51mj2nKvHOPMaSH2IsWiv7lOG9k9zhaRzpDZafrk05ajMc3cu+lSQYYOfH2DkVQ=="; - }; - }; "puppeteer-13.7.0" = { name = "puppeteer"; packageName = "puppeteer"; @@ -62824,22 +61123,13 @@ let sha512 = "oQfzDroAv+SySQIXFiBVkShIh8Vgpr+hd7TrwyUna1kVrbv3i6D+QQC+31QdI7D6Jow61QLQW+uWToxv4cXI2w=="; }; }; - "pushdata-bitcoin-1.0.1" = { - name = "pushdata-bitcoin"; - packageName = "pushdata-bitcoin"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/pushdata-bitcoin/-/pushdata-bitcoin-1.0.1.tgz"; - sha512 = "hw7rcYTJRAl4olM8Owe8x0fBuJJ+WGbMhQuLWOXEMN3PxPCKQHRkhfL+XG0+iXUmSHjkMmb3Ba55Mt21cZc9kQ=="; - }; - }; - "pvtsutils-1.3.2" = { + "pvtsutils-1.3.3" = { name = "pvtsutils"; packageName = "pvtsutils"; - version = "1.3.2"; + version = "1.3.3"; src = fetchurl { - url = "https://registry.npmjs.org/pvtsutils/-/pvtsutils-1.3.2.tgz"; - sha512 = "+Ipe2iNUyrZz+8K/2IOo+kKikdtfhRKzNpQbruF2URmqPtoqAs8g3xS7TJvFF2GcPXjh7DkqMnpVveRFq4PgEQ=="; + url = "https://registry.npmjs.org/pvtsutils/-/pvtsutils-1.3.3.tgz"; + sha512 = "6sAOMlXyrJ+8tRN5IAaYfuYZRp1C2uJ0SyDynEFxL+VY8kCRib9Lpj/+KPaNFpaQWr/iRik5nrzz6iaNlxgEGA=="; }; }; "pvutils-1.1.3" = { @@ -62851,13 +61141,13 @@ let sha512 = "pMpnA0qRdFp32b1sJl1wOJNxZLQ2cbQx+k6tjNtZ8CpvVhNqEPRgivZ2WOUev2YMajecdH7ctUPDvEe87nariQ=="; }; }; - "pyright-1.1.319" = { + "pyright-1.1.321" = { name = "pyright"; packageName = "pyright"; - version = "1.1.319"; + version = "1.1.321"; src = fetchurl { - url = "https://registry.npmjs.org/pyright/-/pyright-1.1.319.tgz"; - sha512 = "6AC0r2r5rT0BpcPH7S27JS0CpFNKvvfdTRLinWwzeMdJCma9ceF8zUgnvMahHfLUcXn4fyypfth9Dito9tey8g=="; + url = "https://registry.npmjs.org/pyright/-/pyright-1.1.321.tgz"; + sha512 = "u6w4gMsA7KvySx/U21tu1+1J291/lARR4Y54uBf1Oj+o8e9JZTG+dbzo6/OV9U/Zt3cVB0dpCD3iCTvxMPVOgA=="; }; }; "q-1.1.2" = { @@ -62887,15 +61177,6 @@ let sha512 = "U0MV9LRz4u19xaK4gssnwyc7XWTnFdmDGrgG9hvV6nchKeu3XeITTclugWKT9rLiLK2GvN3utSkKY90+1tEHkw=="; }; }; - "qjobs-1.2.0" = { - name = "qjobs"; - packageName = "qjobs"; - version = "1.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/qjobs/-/qjobs-1.2.0.tgz"; - sha512 = "8YOJEHtxpySA3fFDyCRxA+UUV+fA+rTWnuWvylOK/NCjhY+b4ocCtmu8TtsWb+mYeU+GCHf/S66KZF/AsteKHg=="; - }; - }; "qrcode-1.5.3" = { name = "qrcode"; packageName = "qrcode"; @@ -63076,15 +61357,6 @@ let sha512 = "JK+1ma4YDuLjvKKcz9JZ70G+CM9qEOs/l1cZzstMMfwKUabTJ9sud5jvDGrUNuv03yKUgs82bLkHXJkDyhRmBw=="; }; }; - "query-string-1.0.1" = { - name = "query-string"; - packageName = "query-string"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/query-string/-/query-string-1.0.1.tgz"; - sha512 = "uXqAMcbt2Z3n/TGfXjwI8DofeZEiNyeD86AEvIm2f/fCcFexxve9ZktMKkr3L7+pK+iSjE6M2/DfHiREVwHkvQ=="; - }; - }; "query-string-4.3.4" = { name = "query-string"; packageName = "query-string"; @@ -63256,31 +61528,31 @@ let sha512 = "b3w19IEXnt5auacLAbePVsqPyVQUwmuhJQrrWnVhm4pP8PAMg2U9vFHbAD9XYXXbMDjdLJs0x5NLqwTV8uFK4g=="; }; }; - "quicktype-core-23.0.63" = { + "quicktype-core-23.0.65" = { name = "quicktype-core"; packageName = "quicktype-core"; - version = "23.0.63"; + version = "23.0.65"; src = fetchurl { - url = "https://registry.npmjs.org/quicktype-core/-/quicktype-core-23.0.63.tgz"; - sha512 = "bVJMCkFE1va8uTNQzTLeJZt0hXfdipkVDxO5g3O/T7DCSVO3oP/yI+Ymv/5+wpS1rcyDBu1pxroedKup6f7htQ=="; + url = "https://registry.npmjs.org/quicktype-core/-/quicktype-core-23.0.65.tgz"; + sha512 = "uil4lTMUJbnM6tTck/t2WImg4SsuAQjinyoZP6b8XNnV38compvBecs3qJeYuZ8gOxOV2O2WXWjjiJt97tHHgg=="; }; }; - "quicktype-graphql-input-23.0.63" = { + "quicktype-graphql-input-23.0.65" = { name = "quicktype-graphql-input"; packageName = "quicktype-graphql-input"; - version = "23.0.63"; + version = "23.0.65"; src = fetchurl { - url = "https://registry.npmjs.org/quicktype-graphql-input/-/quicktype-graphql-input-23.0.63.tgz"; - sha512 = "4EjqeQn6xM/UzG7RKj8a0WVnezq/41j5l4qmThBobM9EAqdbCGVoukxvjAznz6YDMAze1t1bFnoLzifU8TxrEQ=="; + url = "https://registry.npmjs.org/quicktype-graphql-input/-/quicktype-graphql-input-23.0.65.tgz"; + sha512 = "ze6ZYGA+waC7smVYLXEkDKIdSK99nCALLl6oNedZ7De2UiiTq+cyysHl/sjabUAHA91UD02FBk81YswZRhyDBA=="; }; }; - "quicktype-typescript-input-23.0.63" = { + "quicktype-typescript-input-23.0.65" = { name = "quicktype-typescript-input"; packageName = "quicktype-typescript-input"; - version = "23.0.63"; + version = "23.0.65"; src = fetchurl { - url = "https://registry.npmjs.org/quicktype-typescript-input/-/quicktype-typescript-input-23.0.63.tgz"; - sha512 = "VVKlMzMWbXvdWtL+00yOUwAtZC7piC75Ik3bHzdqY0V7bm1j3Lodguq07j4ed96saxqWRh6rfeXXsdbOhRyXRA=="; + url = "https://registry.npmjs.org/quicktype-typescript-input/-/quicktype-typescript-input-23.0.65.tgz"; + sha512 = "CxNXWtFYWOOhXHPRV4wYIFGV3Fpbaam47BHUUWT+koUW6g49SqrCCtlAvKiUsJnb2m3Vnm1ozbaL5d9a+buTwQ=="; }; }; "quotation-1.1.3" = { @@ -63625,15 +61897,6 @@ let sha512 = "lzUVMuJ06HF4rYveaz9Tv0WRlUMxJ0Y1hgSkkgg+50iEdaI0TthyEDe08KIHb0XsF6rn8WYTqPCaGTZg3sX+qA=="; }; }; - "rc-0.4.0" = { - name = "rc"; - packageName = "rc"; - version = "0.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/rc/-/rc-0.4.0.tgz"; - sha512 = "EKfbybKSjhlaJG8FYEDJSwSBnaYUQvV+NJaL2dM1HqqdRVkixkC2nRreI1yrTG5oORgMMh2Q3///e7wVUz//ag=="; - }; - }; "rc-1.2.8" = { name = "rc"; packageName = "rc"; @@ -63661,13 +61924,13 @@ let sha512 = "xdDTNV90z5x5u25Oc871Xnvu7yAr4tV7Eluh0VSvrhUkry39q1k+zkz7xroqHbRq+8PiazySHJPArqifUvz9VA=="; }; }; - "rcedit-3.0.1" = { + "rcedit-3.1.0" = { name = "rcedit"; packageName = "rcedit"; - version = "3.0.1"; + version = "3.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/rcedit/-/rcedit-3.0.1.tgz"; - sha512 = "XM0Jv40/y4hVAqj/MO70o/IWs4uOsaSoo2mLyk3klFDW+SStLnCtzuQu+1OBTIMGlM8CvaK9ftlYCp6DJ+cMsw=="; + url = "https://registry.npmjs.org/rcedit/-/rcedit-3.1.0.tgz"; + sha512 = "WRlRdY1qZbu1L11DklT07KuHfRk42l0NFFJdaExELEu4fEQ982bP5Z6OWGPj/wLLIuKRQDCxZJGAwoFsxhZhNA=="; }; }; "re-emitter-1.1.4" = { @@ -64246,15 +62509,6 @@ let sha512 = "TXcFfb63BQe1+ySzsHZI/5v1aJPCShfqvWJ64ayNImXMsN1Cd0YGk/wm8KB7/OeessgPc9QvS9Zou8QTkFzsLw=="; }; }; - "readable-stream-2.1.5" = { - name = "readable-stream"; - packageName = "readable-stream"; - version = "2.1.5"; - src = fetchurl { - url = "https://registry.npmjs.org/readable-stream/-/readable-stream-2.1.5.tgz"; - sha512 = "NkXT2AER7VKXeXtJNSaWLpWIhmtSE3K2PguaLEeWr4JILghcIKqoLt1A3wHrnpDC5+ekf8gfk1GKWkFXe4odMw=="; - }; - }; "readable-stream-2.3.8" = { name = "readable-stream"; packageName = "readable-stream"; @@ -64264,15 +62518,6 @@ let sha512 = "8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA=="; }; }; - "readable-stream-3.6.0" = { - name = "readable-stream"; - packageName = "readable-stream"; - version = "3.6.0"; - src = fetchurl { - url = "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz"; - sha512 = "BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA=="; - }; - }; "readable-stream-3.6.2" = { name = "readable-stream"; packageName = "readable-stream"; @@ -64363,15 +62608,6 @@ let sha512 = "gNva8/6UAe8QYepIQH/jQ2qn91Qj0B9sYjMBBs3QOB8F2CXcKgLxQaJRP76sWVRQt+QU+8fAkCbCvjjMFu7Ycw=="; }; }; - "readline2-0.1.1" = { - name = "readline2"; - packageName = "readline2"; - version = "0.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/readline2/-/readline2-0.1.1.tgz"; - sha512 = "qs8GGG+hLGMaDOGjd+mDglDoYcHDkjIY7z5RU0/ApsGT0qypyrWskNeemUqD+UxIXiZoMYT5aLwGp4ehoyZhIg=="; - }; - }; "readline2-1.0.1" = { name = "readline2"; packageName = "readline2"; @@ -64687,13 +62923,22 @@ let sha512 = "kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg=="; }; }; - "regenerator-transform-0.15.1" = { + "regenerator-runtime-0.14.0" = { + name = "regenerator-runtime"; + packageName = "regenerator-runtime"; + version = "0.14.0"; + src = fetchurl { + url = "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz"; + sha512 = "srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA=="; + }; + }; + "regenerator-transform-0.15.2" = { name = "regenerator-transform"; packageName = "regenerator-transform"; - version = "0.15.1"; + version = "0.15.2"; src = fetchurl { - url = "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.1.tgz"; - sha512 = "knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg=="; + url = "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz"; + sha512 = "hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg=="; }; }; "regex-cache-0.4.4" = { @@ -64714,15 +62959,6 @@ let sha512 = "J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A=="; }; }; - "regexp-to-ast-0.3.5" = { - name = "regexp-to-ast"; - packageName = "regexp-to-ast"; - version = "0.3.5"; - src = fetchurl { - url = "https://registry.npmjs.org/regexp-to-ast/-/regexp-to-ast-0.3.5.tgz"; - sha512 = "1CJygtdvsfNFwiyjaMLBWtg2tfEqx/jSZ8S6TV+GlNL8kiH8rb4cm5Pb7A/C2BpyM/fA8ZJEudlCwi/jvAY+Ow=="; - }; - }; "regexp.prototype.flags-1.5.0" = { name = "regexp.prototype.flags"; packageName = "regexp.prototype.flags"; @@ -66046,13 +64282,13 @@ let sha512 = "Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g=="; }; }; - "resolve-1.22.3" = { + "resolve-1.22.4" = { name = "resolve"; packageName = "resolve"; - version = "1.22.3"; + version = "1.22.4"; src = fetchurl { - url = "https://registry.npmjs.org/resolve/-/resolve-1.22.3.tgz"; - sha512 = "P8ur/gp/AmbEzjr729bZnLjXK5Z+4P0zhIJgBgzqRih7hL7BOukHGtSTA3ACMY467GRFz3duQsi0bDZdR7DKdw=="; + url = "https://registry.npmjs.org/resolve/-/resolve-1.22.4.tgz"; + sha512 = "PXNdCiPqDqeUou+w1C2eTQbNfxKSuMxqTCuvlmmMsk1NWHL5fRrhY6Pl0qEYYc6+QqGClco1Qj8XnjPego4wfg=="; }; }; "resolve-1.5.0" = { @@ -66190,15 +64426,6 @@ let sha512 = "rzB7NnQpOkPHBWFPP3prUMqOP6yg3HkRGgcvR+lDyvyHoY3fZLFLYDkPXh78SPVBAE6VTCk/V+j8we4djg6o4g=="; }; }; - "resolve-path-1.4.0" = { - name = "resolve-path"; - packageName = "resolve-path"; - version = "1.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/resolve-path/-/resolve-path-1.4.0.tgz"; - sha512 = "i1xevIst/Qa+nA9olDxLWnLk8YZbi8R/7JPbCMcgyWaFR6bKWaexgJgEB5oc2PKMjYdrHynyz0NY+if+H98t1w=="; - }; - }; "resolve-url-0.2.1" = { name = "resolve-url"; packageName = "resolve-url"; @@ -66442,15 +64669,6 @@ let sha512 = "xcBILK2pA9oh4SiinPEZfhP8HfrB/ha+a2fTMyl7Om2WjlDVrOQy99N2MXXlUHqGJz4qEu2duXxHJjDWuK/0xg=="; }; }; - "reveal.js-4.5.0" = { - name = "reveal.js"; - packageName = "reveal.js"; - version = "4.5.0"; - src = fetchurl { - url = "https://registry.npmjs.org/reveal.js/-/reveal.js-4.5.0.tgz"; - sha512 = "Lx1hUWhJR7Y7ScQNyGt7TFzxeviDAswK2B0cn9RwbPZogTMRgS8+FTr+/12KNHOegjvWKH0H0EGwBARNDPTgWQ=="; - }; - }; "reverse-http-1.3.0" = { name = "reverse-http"; packageName = "reverse-http"; @@ -66712,15 +64930,6 @@ let sha512 = "jFvBgyRueGU0QVa7EqXZOkarkzrqEnF3VTCzATRcBkzxXJ4/+pzDf1iouqOqGsx6ZpnIIu5gvFDGnyzoX58ldQ=="; }; }; - "router-0.6.2" = { - name = "router"; - packageName = "router"; - version = "0.6.2"; - src = fetchurl { - url = "https://registry.npmjs.org/router/-/router-0.6.2.tgz"; - sha512 = "tTMBCMVSP+sfSQyBbFrUuVPfxfKBhy6Hciz/SttYRxKteFqjPljrH2GqXoPSCOeubSgxPDRAbQOCvQzp2hNTOA=="; - }; - }; "router-1.3.8" = { name = "router"; packageName = "router"; @@ -66829,15 +65038,6 @@ let sha512 = "540WwVDOMxA6dN6We19EcT9sc3hkXPw5mzRNGM3FkdN/vtE9NFvj5lFAPNwUDmJjXidm3v7TC1cTE7t17Ulm1Q=="; }; }; - "run-con-1.2.12" = { - name = "run-con"; - packageName = "run-con"; - version = "1.2.12"; - src = fetchurl { - url = "https://registry.npmjs.org/run-con/-/run-con-1.2.12.tgz"; - sha512 = "5257ILMYIF4RztL9uoZ7V9Q97zHtNHn5bN3NobeAnzB1P3ASLgg8qocM2u+R18ttp+VEM78N2LK8XcNVtnSRrg=="; - }; - }; "run-parallel-1.2.0" = { name = "run-parallel"; packageName = "run-parallel"; @@ -66901,15 +65101,6 @@ let sha512 = "XgzRqLMfCcm9QfZuPav9cV3Xin5TRcIlp4X/SH3CvB+x5D2AakdlEepfJKDd8ByncvfpcxNWdRZVUl38PS6ZJg=="; }; }; - "rx-2.5.3" = { - name = "rx"; - packageName = "rx"; - version = "2.5.3"; - src = fetchurl { - url = "https://registry.npmjs.org/rx/-/rx-2.5.3.tgz"; - sha512 = "u5qvfulb7NXoY/+OE28920WEgFi6aiDjf5iF9rA2f9tBXejLgTLd0WxkclvIQWjFFHfNJlb7pSTsrjgiDh+Uug=="; - }; - }; "rx-4.1.0" = { name = "rx"; packageName = "rx"; @@ -67198,22 +65389,22 @@ let sha512 = "/MY/PEMbk2SuY5sScONwhUDsV2p77Znkb/q3nSVstq/yQzYJOH/Azh29p9oJLsl3LnQwSvZDKagDGBsBwSooag=="; }; }; - "sass-1.64.2" = { + "sass-1.65.1" = { name = "sass"; packageName = "sass"; - version = "1.64.2"; + version = "1.65.1"; src = fetchurl { - url = "https://registry.npmjs.org/sass/-/sass-1.64.2.tgz"; - sha512 = "TnDlfc+CRnUAgLO9D8cQLFu/GIjJIzJCGkE7o4ekIGQOH7T3GetiRR/PsTWJUHhkzcSPrARkPI+gNWn5alCzDg=="; + url = "https://registry.npmjs.org/sass/-/sass-1.65.1.tgz"; + sha512 = "9DINwtHmA41SEd36eVPQ9BJKpn7eKDQmUHmpI0y5Zv2Rcorrh0zS+cFrt050hdNbmmCNKTW3hV5mWfuegNRsEA=="; }; }; - "sass-formatter-0.7.6" = { + "sass-formatter-0.7.7" = { name = "sass-formatter"; packageName = "sass-formatter"; - version = "0.7.6"; + version = "0.7.7"; src = fetchurl { - url = "https://registry.npmjs.org/sass-formatter/-/sass-formatter-0.7.6.tgz"; - sha512 = "hXdxU6PCkiV3XAiSnX+XLqz2ohHoEnVUlrd8LEVMAI80uB1+OTScIkH9n6qQwImZpTye1r1WG1rbGUteHNhoHg=="; + url = "https://registry.npmjs.org/sass-formatter/-/sass-formatter-0.7.7.tgz"; + sha512 = "axtQ7c7Cf4UgHsD8e4okhIkkc90+tdgBIfUMx69+qJuMNq9EOo2k+RH/mDKj0XeA5z3nC1Ca5TCntuxRhI+1MA=="; }; }; "sax-0.5.8" = { @@ -67540,15 +65731,6 @@ let sha512 = "mfmm3/H9+67MCVix1h+IXTpDwL6710LyHuk7+cWC9T1mE0qz4iHhh6r4hU2wrIT9iTsAAC2XQRvfblL028cpLw=="; }; }; - "semver-5.4.1" = { - name = "semver"; - packageName = "semver"; - version = "5.4.1"; - src = fetchurl { - url = "https://registry.npmjs.org/semver/-/semver-5.4.1.tgz"; - sha512 = "WfG/X9+oATh81XtllIo/I8gOiY9EXRdv1cQdyykeXK17YcUW3EXUAi2To4pcH6nZtJPr7ZOpM5OMyWJZm+8Rsg=="; - }; - }; "semver-5.5.0" = { name = "semver"; packageName = "semver"; @@ -67648,15 +65830,6 @@ let sha512 = "NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A=="; }; }; - "semver-7.5.2" = { - name = "semver"; - packageName = "semver"; - version = "7.5.2"; - src = fetchurl { - url = "https://registry.npmjs.org/semver/-/semver-7.5.2.tgz"; - sha512 = "SoftuTROv/cRjCze/scjGyiDtcUyxw1rgYQSZY7XTmtR5hX+dm76iDbTH8TkLPHCQmlbQVSSbNZCPM2hb0knnQ=="; - }; - }; "semver-7.5.3" = { name = "semver"; packageName = "semver"; @@ -68548,6 +66721,15 @@ let sha512 = "ogU8qtQ3VFBawRJ8wjsBEX/vIFeHuGs1fm4jZtjWQwjo8pfAt7T/rh+udlAN4+QUe0IzA8qRSc/YZ7dHP6kh+w=="; }; }; + "sigstore-1.9.0" = { + name = "sigstore"; + packageName = "sigstore"; + version = "1.9.0"; + src = fetchurl { + url = "https://registry.npmjs.org/sigstore/-/sigstore-1.9.0.tgz"; + sha512 = "0Zjz0oe37d08VeOtBIuB6cRriqXse2e8w+7yIy2XSXjshRKxbc2KkhXjL229jXSxEm7UbcjS76wcJDGQddVI9A=="; + }; + }; "simple-concat-1.0.1" = { name = "simple-concat"; packageName = "simple-concat"; @@ -68728,15 +66910,6 @@ let sha512 = "Jvtruf4MmFtRS7ICivKX9RzEJuWHp8Hw2jHyAPOEWzMJ4U3u9ykc+N1UD9zMmsW7Hg0BAxYRH2wHxzMsyd4oUw=="; }; }; - "single-line-log-0.4.1" = { - name = "single-line-log"; - packageName = "single-line-log"; - version = "0.4.1"; - src = fetchurl { - url = "https://registry.npmjs.org/single-line-log/-/single-line-log-0.4.1.tgz"; - sha512 = "L3Y5LepaFaTPgD/ftnTVC0mdLeIL+e7wKFuJrdudiI4S9Bab4KfPDoJTmIWLaffa2HIQCExhvgYOLF7RKKvk5w=="; - }; - }; "single-line-log-1.1.2" = { name = "single-line-log"; packageName = "single-line-log"; @@ -68773,15 +66946,6 @@ let sha512 = "bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg=="; }; }; - "sjcl-1.0.8" = { - name = "sjcl"; - packageName = "sjcl"; - version = "1.0.8"; - src = fetchurl { - url = "https://registry.npmjs.org/sjcl/-/sjcl-1.0.8.tgz"; - sha512 = "LzIjEQ0S0DpIgnxMEayM1rq9aGwGRG4OnZhCdjx7glTaJtf4zRfpg87ImfjSJjoW9vKpagd82McDOwbRT5kQKQ=="; - }; - }; "skin-tone-1.0.0" = { name = "skin-tone"; packageName = "skin-tone"; @@ -69115,13 +67279,13 @@ let sha512 = "KMcaAi4l/8+xEjkRICl6ak8ySoxsYG+gG6/XfRCPJPQ/haCRIJBTL4wIl8YCsmtaBovcAXGLOShyVWQ/FG8GZA=="; }; }; - "socket.io-4.7.1" = { + "socket.io-4.7.2" = { name = "socket.io"; packageName = "socket.io"; - version = "4.7.1"; + version = "4.7.2"; src = fetchurl { - url = "https://registry.npmjs.org/socket.io/-/socket.io-4.7.1.tgz"; - sha512 = "W+utHys2w//dhFjy7iQQu9sGd3eokCjGbl2r59tyLqNiJJBdIebn3GAKEXBr3osqHTObJi2die/25bCx2zsaaw=="; + url = "https://registry.npmjs.org/socket.io/-/socket.io-4.7.2.tgz"; + sha512 = "bvKVS29/I5fl2FGLNHuXlQaUH/BlzX1IN6S+NKLNZpBsPZIDH+90eQmCs2Railn4YUiww4SzUedJ6+uzwFnKLw=="; }; }; "socket.io-adapter-0.2.0" = { @@ -69187,13 +67351,13 @@ let sha512 = "lOO9clmdgssDykiOmVQQitwBAF3I6mYcQAo7hQ7AM6Ny5X7fp8hIJ3HcQs3Rjz4SoggoxA1OgrQyY8EgTbcPYw=="; }; }; - "socket.io-client-4.7.1" = { + "socket.io-client-4.7.2" = { name = "socket.io-client"; packageName = "socket.io-client"; - version = "4.7.1"; + version = "4.7.2"; src = fetchurl { - url = "https://registry.npmjs.org/socket.io-client/-/socket.io-client-4.7.1.tgz"; - sha512 = "Qk3Xj8ekbnzKu3faejo4wk2MzXA029XppiXtTF/PkbTg+fcwaTw1PlDrTrrrU4mKoYC4dvlApOnSeyLCKwek2w=="; + url = "https://registry.npmjs.org/socket.io-client/-/socket.io-client-4.7.2.tgz"; + sha512 = "vtA0uD4ibrYD793SOIAwlo8cj6haOeMHrGvwPxJsxH7CeIksqJ+3Zc06RvWTIFgiSqx4A3sOnTXpfAEE2Zyz6w=="; }; }; "socket.io-parser-2.1.2" = { @@ -70033,15 +68197,6 @@ let sha512 = "UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg=="; }; }; - "splitargs-0.0.7" = { - name = "splitargs"; - packageName = "splitargs"; - version = "0.0.7"; - src = fetchurl { - url = "https://registry.npmjs.org/splitargs/-/splitargs-0.0.7.tgz"; - sha512 = "UUFYD2oWbNwULH6WoVtLUOw8ch586B+HUqcsAjjjeoBQAM1bD4wZRXu01koaxyd8UeYpybWqW4h+lO1Okv40Tg=="; - }; - }; "sprintf-0.1.5" = { name = "sprintf"; packageName = "sprintf"; @@ -70132,15 +68287,6 @@ let sha512 = "wvLeHgcVHKO8Sc/H/5lkGreJQVeYMm9rlmt8PuR1xE31rIuXhuzznUUqAt8MqLhB3MqJdFzlNAfpcWnxiFUcPw=="; }; }; - "srt2vtt-1.3.1" = { - name = "srt2vtt"; - packageName = "srt2vtt"; - version = "1.3.1"; - src = fetchurl { - url = "https://registry.npmjs.org/srt2vtt/-/srt2vtt-1.3.1.tgz"; - sha512 = "vTa4t3tIDJSj4kG3FqnfxQcBW1STLbEDZxjVb3R/MOUZzYpGlsDTUsTrMXH1ZPXxWdQB9sdZ9n/CaXUtLEIEvQ=="; - }; - }; "ssb-about-self-1.1.0" = { name = "ssb-about-self"; packageName = "ssb-about-self"; @@ -71239,15 +69385,6 @@ let sha512 = "6sNyqJpr5dIOQdgNy/xcDWwDuzAsAwVzhzrWlAPAQ7Lkjx/rv0wgvxEyKwTq6FmNd5rjTrELt/CLmaSw7crMGg=="; }; }; - "stream-transcoder-0.0.5" = { - name = "stream-transcoder"; - packageName = "stream-transcoder"; - version = "0.0.5"; - src = fetchurl { - url = "https://registry.npmjs.org/stream-transcoder/-/stream-transcoder-0.0.5.tgz"; - sha512 = "mPthCybIYrahVWlszOcDfCHn3TAiVvUzyZwGLAEgGE6J28HmjM6+gPwC2cu2M6uwaGojvs6xgGvrqJACHXvaLw=="; - }; - }; "stream-transform-0.1.2" = { name = "stream-transform"; packageName = "stream-transform"; @@ -71293,13 +69430,13 @@ let sha512 = "Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg=="; }; }; - "streamx-2.15.0" = { + "streamx-2.15.1" = { name = "streamx"; packageName = "streamx"; - version = "2.15.0"; + version = "2.15.1"; src = fetchurl { - url = "https://registry.npmjs.org/streamx/-/streamx-2.15.0.tgz"; - sha512 = "HcxY6ncGjjklGs1xsP1aR71INYcsXFJet5CU1CHqihQ2J5nOsbd4OjgjHO42w/4QNv9gZb3BueV+Vxok5pLEXg=="; + url = "https://registry.npmjs.org/streamx/-/streamx-2.15.1.tgz"; + sha512 = "fQMzy2O/Q47rgwErk/eGeLu/roaFWV0jVsogDmrszM9uIw8L5OA+t+V93MgYlufNptfjmYR1tOMWhei/Eh7TQA=="; }; }; "strftime-0.10.2" = { @@ -71671,24 +69808,6 @@ let sha512 = "behete+3uqxecWlDAm5lmskaSaISA+ThQ4oNNBDTBJt0x2ppR6IPqfZNuj6BLaLJ/Sji4TPZlcRyOis8wXQTLg=="; }; }; - "strip-ansi-0.3.0" = { - name = "strip-ansi"; - packageName = "strip-ansi"; - version = "0.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-0.3.0.tgz"; - sha512 = "DerhZL7j6i6/nEnVG0qViKXI0OKouvvpsAiaj7c+LfqZZZxdwZtv8+UiA/w4VUJpT8UzX0pR1dcHOii1GbmruQ=="; - }; - }; - "strip-ansi-2.0.1" = { - name = "strip-ansi"; - packageName = "strip-ansi"; - version = "2.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-2.0.1.tgz"; - sha512 = "2h8q2CP3EeOhDJ+jd932PRMpa3/pOJFGoF22J1U/DNbEK2gSW2DqeF46VjCXsSQXhC+k/l8/gaaRBQKL6hUPfQ=="; - }; - }; "strip-ansi-3.0.1" = { name = "strip-ansi"; packageName = "strip-ansi"; @@ -71905,15 +70024,6 @@ let sha512 = "mnVSV2l+Zv6BLpSD/8V87CW/y9EmmbYzGCIavsnsI6/nwn26DwffM/yztm30Z/I2DY9wdS3vXVCMnHDgZaVNoA=="; }; }; - "strip-json-comments-0.1.3" = { - name = "strip-json-comments"; - packageName = "strip-json-comments"; - version = "0.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-0.1.3.tgz"; - sha512 = "d2RPtrkLs8TurFFAIhW8IdM0+cOq+QFETWBGKHO+93eZ4Zt4P1CeJB5LHKW4EfEwabEpPL8/UTO3QX94+lqxwQ=="; - }; - }; "strip-json-comments-1.0.4" = { name = "strip-json-comments"; packageName = "strip-json-comments"; @@ -72382,15 +70492,6 @@ let sha512 = "e/tmW0bsnQ/33ivK6y3CapJT0Ovy4pk/ohNPGhIAGU2oasoNLRQ1cv6enua09NU9w6Y0H/fBu07cjzuiWvLXxw=="; }; }; - "supports-color-0.2.0" = { - name = "supports-color"; - packageName = "supports-color"; - version = "0.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/supports-color/-/supports-color-0.2.0.tgz"; - sha512 = "tdCZ28MnM7k7cJDJc7Eq80A9CsRFAAOZUy41npOZCs++qSjfIy7o5Rh46CBk+Dk5FbKJ33X3Tqg4YrV07N5RaA=="; - }; - }; "supports-color-1.2.0" = { name = "supports-color"; packageName = "supports-color"; @@ -72400,15 +70501,6 @@ let sha512 = "mS5xsnjTh5b7f2DM6bch6lR582UCOTphzINlZnDsfpIRrwI6r58rb6YSSGsdexkm8qw2bBVO2ID2fnJOTuLiPA=="; }; }; - "supports-color-1.3.1" = { - name = "supports-color"; - packageName = "supports-color"; - version = "1.3.1"; - src = fetchurl { - url = "https://registry.npmjs.org/supports-color/-/supports-color-1.3.1.tgz"; - sha512 = "OHbMkscHFRcNWEcW80fYhCrzAjheSIBwJChpFaBqA6zEz53nxumqi6ukciRb/UA0/v2nDNMk28ce/uBbYRDsng=="; - }; - }; "supports-color-2.0.0" = { name = "supports-color"; packageName = "supports-color"; @@ -72823,13 +70915,13 @@ let sha512 = "YPPlu67mdnHGTup2A8ff7BC2Pjq0e0Yp/IyTFN03zWO0RcK07uLcbi7C2KpGR2FvWbaB0+bfE27a+sBKebSo7w=="; }; }; - "systeminformation-5.18.10" = { + "systeminformation-5.18.15" = { name = "systeminformation"; packageName = "systeminformation"; - version = "5.18.10"; + version = "5.18.15"; src = fetchurl { - url = "https://registry.npmjs.org/systeminformation/-/systeminformation-5.18.10.tgz"; - sha512 = "p7Su6y3MhKODBVOeQuJQG8jk3HvaU9dtSgVHT/pkRGj2g97n4fmYhYCJ2+djK0Ed5Zq4nSQ7zzEYFVlW71RbHg=="; + url = "https://registry.npmjs.org/systeminformation/-/systeminformation-5.18.15.tgz"; + sha512 = "IS7UFVYDC7kILt/C1I5qYwxddC849uJidzR+56bv/RdpU6deOwXvXa5EgFaRP18TCPBULQj/zrri5++fXC9EGg=="; }; }; "sywac-1.3.0" = { @@ -72913,15 +71005,6 @@ let sha512 = "qHWOJ5g7lrpftZMyPv3ZaYZs7PuUTKWEP/TakZHfpq66bSwH25SQXn5616CCh6Hf/1iPcgQJQHGcJkzQuATabQ=="; }; }; - "tabtab-2.2.2" = { - name = "tabtab"; - packageName = "tabtab"; - version = "2.2.2"; - src = fetchurl { - url = "https://registry.npmjs.org/tabtab/-/tabtab-2.2.2.tgz"; - sha512 = "xEwHn571JmOrNGJB1Ehu/Dc2/5pu4aIvCnlKmxrJzzhAmZEy8+RL5cjxq/J66GE0Qf8FRvFg9V3jFos8oz0IQA=="; - }; - }; "tabtab-git+https://github.com/mixu/node-tabtab.git" = { name = "tabtab"; packageName = "tabtab"; @@ -72932,15 +71015,6 @@ let sha256 = "c824206b33da96cf5c01c21f1b133a0e3568e07ee4dcc9beefa8226864cd0272"; }; }; - "tabula-1.10.0" = { - name = "tabula"; - packageName = "tabula"; - version = "1.10.0"; - src = fetchurl { - url = "https://registry.npmjs.org/tabula/-/tabula-1.10.0.tgz"; - sha512 = "G8RjITVxDF+tZg7kbjrSsZBeVz3esl14LhyClLFpBmMKkD5q6g/Inv6Jjbb8bQ5UIAXOA3p3XoUqannhvIGN9Q=="; - }; - }; "taffydb-2.6.2" = { name = "taffydb"; packageName = "taffydb"; @@ -73742,15 +71816,6 @@ let sha512 = "Y9q1GaV/BO65Z9Yf4NOGMuwt3SGdptkZBnaaKfTQakrDyCLiuO1Kc5wxW4xLdsjzunRtqtOdhekiUFmZbklwYQ=="; }; }; - "time-line-1.0.1" = { - name = "time-line"; - packageName = "time-line"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/time-line/-/time-line-1.0.1.tgz"; - sha512 = "3wIHVPXu9EqiHV+m5TwXIi+2YQQREOsH5z5d2hIcxKndeHPmh1iRJDyHkoeFkWP7rM+nGFZnZ7widfayR2GxPQ=="; - }; - }; "time-ordered-set-1.0.2" = { name = "time-ordered-set"; packageName = "time-ordered-set"; @@ -73868,15 +71933,6 @@ let sha512 = "5ROII7nElnAirvFn8g7H7MtpfV1daMcyfTGQwsn/x2VtyV+VPiO5CjReCJtWLvoKTDEDmZocf3cNPraiMnBXLA=="; }; }; - "tiny-emitter-2.1.0" = { - name = "tiny-emitter"; - packageName = "tiny-emitter"; - version = "2.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/tiny-emitter/-/tiny-emitter-2.1.0.tgz"; - sha512 = "NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q=="; - }; - }; "tiny-glob-0.2.9" = { name = "tiny-glob"; packageName = "tiny-glob"; @@ -73904,24 +71960,6 @@ let sha512 = "EijGsv7kzd9I9g0ByCl6h42BWNGUZrlCSejfrb3AKeHC33SGbASu1VDf5O3rRiiUOhAC9CHdZxFPbZu0HmR70A=="; }; }; - "tiny-secp256k1-2.2.1" = { - name = "tiny-secp256k1"; - packageName = "tiny-secp256k1"; - version = "2.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/tiny-secp256k1/-/tiny-secp256k1-2.2.1.tgz"; - sha512 = "/U4xfVqnVxJXN4YVsru0E6t5wVncu2uunB8+RVR40fYUxkKYUPS10f+ePQZgFBoE/Jbf9H1NBveupF2VmB58Ng=="; - }; - }; - "tiny-secp256k1-2.2.2" = { - name = "tiny-secp256k1"; - packageName = "tiny-secp256k1"; - version = "2.2.2"; - src = fetchurl { - url = "https://registry.npmjs.org/tiny-secp256k1/-/tiny-secp256k1-2.2.2.tgz"; - sha512 = "KP3eqslmiUH9jxhyQuLY+GqI4wt1EiHWNHHqKVUxCZV41+MT+esucaK4mb6Ji0vKWVKBffJ6tlxU83Pq5TIUwg=="; - }; - }; "tiny-secp256k1-2.2.3" = { name = "tiny-secp256k1"; packageName = "tiny-secp256k1"; @@ -74741,15 +72779,6 @@ let sha512 = "95Pu1QXQvruGEhv62XCMO3Mm90GscOCClvrIUwCM0PYOXK3kaF3l3sIHxx71ThJfcbM2O5Au6SO3AWCSEfW4mQ=="; }; }; - "try-require-1.2.1" = { - name = "try-require"; - packageName = "try-require"; - version = "1.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/try-require/-/try-require-1.2.1.tgz"; - sha512 = "aMzrGUIA/R2LwUgvsOusx+GTy8ERyNjpBzbWgS1Qx4oTFlXCMxY3PyyXbPE1pvrvK/CXpO+BBREEqrTkNroC+A=="; - }; - }; "try-resolve-1.0.1" = { name = "try-resolve"; packageName = "try-resolve"; @@ -75119,13 +73148,13 @@ let sha512 = "vwz9tfvF7XN/jE0dGoBei3FXWuvll78ohzCZQuOb+ZjWrs3a0XhQVomJEb2Qh4VHTPNRO4GPZh0V7VRbiWwkRg=="; }; }; - "tus-js-client-3.1.0" = { + "tus-js-client-3.1.1" = { name = "tus-js-client"; packageName = "tus-js-client"; - version = "3.1.0"; + version = "3.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/tus-js-client/-/tus-js-client-3.1.0.tgz"; - sha512 = "Hfpc8ho4C9Lhs/OflPUA/nHUHZJUrKD5upoPBq7dYJJ9DQhWocsjJU2RZYfN16Y5n19j9dFDszwCvVZ5sfcogw=="; + url = "https://registry.npmjs.org/tus-js-client/-/tus-js-client-3.1.1.tgz"; + sha512 = "SZzWP62jEFLmROSRZx+uoGLKqsYWMGK/m+PiNehPVWbCm7/S9zRIMaDxiaOcKdMnFno4luaqP5E+Y1iXXPjP0A=="; }; }; "tv4-1.3.0" = { @@ -75164,15 +73193,6 @@ let sha512 = "9/c8c6qRMTfWuv54ETFhihgYoofi0M9HUovMSGJ1rLRUj6O5A0vuCg2L/qKfvmcjLVhaTgAJCLy2EqCLJK2QLw=="; }; }; - "tweetnacl-util-0.15.1" = { - name = "tweetnacl-util"; - packageName = "tweetnacl-util"; - version = "0.15.1"; - src = fetchurl { - url = "https://registry.npmjs.org/tweetnacl-util/-/tweetnacl-util-0.15.1.tgz"; - sha512 = "RKJBIj8lySrShN4w6i/BonWp2Z/uxwC3h4y7xsRrpP59ZboCd0GpEVsOnMDYLMmKBpYhb5TgHzZXy7wTfYFBRw=="; - }; - }; "twig-1.16.0" = { name = "twig"; packageName = "twig"; @@ -75371,15 +73391,6 @@ let sha512 = "RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA=="; }; }; - "type-fest-3.12.0" = { - name = "type-fest"; - packageName = "type-fest"; - version = "3.12.0"; - src = fetchurl { - url = "https://registry.npmjs.org/type-fest/-/type-fest-3.12.0.tgz"; - sha512 = "qj9wWsnFvVEMUDbESiilKeXeHL7FwwiFcogfhfyjmvT968RXSvnl23f1JOClTHYItsi7o501C/7qVllscUP3oA=="; - }; - }; "type-fest-3.13.1" = { name = "type-fest"; packageName = "type-fest"; @@ -75389,42 +73400,6 @@ let sha512 = "tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g=="; }; }; - "type-fest-3.5.1" = { - name = "type-fest"; - packageName = "type-fest"; - version = "3.5.1"; - src = fetchurl { - url = "https://registry.npmjs.org/type-fest/-/type-fest-3.5.1.tgz"; - sha512 = "70T99cpILFk2fzwuljwWxmazSphFrdOe3gRHbp6bqs71pxFBbJwFqnmkLO2lQL6aLHxHmYAnP/sL+AJWpT70jA=="; - }; - }; - "type-fest-3.6.1" = { - name = "type-fest"; - packageName = "type-fest"; - version = "3.6.1"; - src = fetchurl { - url = "https://registry.npmjs.org/type-fest/-/type-fest-3.6.1.tgz"; - sha512 = "htXWckxlT6U4+ilVgweNliPqlsVSSucbxVexRYllyMVJDtf5rTjv6kF/s+qAd4QSL1BZcnJPEJavYBPQiWuZDA=="; - }; - }; - "type-fest-3.9.0" = { - name = "type-fest"; - packageName = "type-fest"; - version = "3.9.0"; - src = fetchurl { - url = "https://registry.npmjs.org/type-fest/-/type-fest-3.9.0.tgz"; - sha512 = "hR8JP2e8UiH7SME5JZjsobBlEiatFoxpzCP+R3ZeCo7kAaG1jXQE5X/buLzogM6GJu8le9Y4OcfNuIQX0rZskA=="; - }; - }; - "type-fest-4.0.0" = { - name = "type-fest"; - packageName = "type-fest"; - version = "4.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/type-fest/-/type-fest-4.0.0.tgz"; - sha512 = "d/oYtUnPM9zar2fqqGLYPzgcY0qUlYK0evgNVti93xpzfjGkMgZHu9Lvgrkn0rqGXTgsFRxFamzjGoD9Uo+dgw=="; - }; - }; "type-is-1.6.18" = { name = "type-is"; packageName = "type-is"; @@ -75632,13 +73607,13 @@ let sha512 = "zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA=="; }; }; - "typescript-5.2.0-dev.20230801" = { + "typescript-5.3.0-dev.20230810" = { name = "typescript"; packageName = "typescript"; - version = "5.2.0-dev.20230801"; + version = "5.3.0-dev.20230810"; src = fetchurl { - url = "https://registry.npmjs.org/typescript/-/typescript-5.2.0-dev.20230801.tgz"; - sha512 = "f8FmzL+1+agawPPUzsd38vTiZD/z+RtGax/3+tzxsBP15O/4lMsliTEXRXF7ESC7a1s/f9HsNNRMne438PPZsw=="; + url = "https://registry.npmjs.org/typescript/-/typescript-5.3.0-dev.20230810.tgz"; + sha512 = "cD+0wvHU1AJDHnbOizHt2iJ9nEpJAa7t5WXbu6NaNeX3ZWO0lIt0A5TFgWsD4ZbXPHdxq6Uw6IKvTn8W0arAmA=="; }; }; "typescript-auto-import-cache-0.2.1" = { @@ -75758,15 +73733,6 @@ let sha512 = "+O8/qh/Qj8CgC6eYBVBykMrNtp5Gebn4dlGD/kKXVkJNDwyrAwSIqwz8CDf+tsAIWVycKcku6gIXJ0qwx/ZXaQ=="; }; }; - "ua-parser-js-0.7.35" = { - name = "ua-parser-js"; - packageName = "ua-parser-js"; - version = "0.7.35"; - src = fetchurl { - url = "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.35.tgz"; - sha512 = "veRf7dawaj9xaWEu9HoTVn5Pggtc/qj+kqTOFvNiN1l0YdxwC1kvel57UCjThjGa3BHBihE8/UJAHI+uQHmd/g=="; - }; - }; "ua-parser-js-1.0.33" = { name = "ua-parser-js"; packageName = "ua-parser-js"; @@ -76127,13 +74093,13 @@ let sha512 = "UR1khWeAjugW3548EfQmL9Z7pGMlBgXteQpr1IZeZBtnkCJQJIJ1Scj0mb9wQaPvUZ9Q17XqW6TIaPchJkyfqw=="; }; }; - "undici-5.22.1" = { + "undici-5.23.0" = { name = "undici"; packageName = "undici"; - version = "5.22.1"; + version = "5.23.0"; src = fetchurl { - url = "https://registry.npmjs.org/undici/-/undici-5.22.1.tgz"; - sha512 = "Ji2IJhFXZY0x/0tVBXeQwgPlLWw13GVzpsWPQ3rV50IFMMof2I55PZZxtm4P6iNq+L5znYN9nSTAq0ZyE6lSJw=="; + url = "https://registry.npmjs.org/undici/-/undici-5.23.0.tgz"; + sha512 = "1D7w+fvRsqlQ9GscLBwcAJinqcZGHUKjbOmXdlE/v8BvEGXjeWAax+341q44EuTcHXXnfyKNbKRq4Lg7OzhMmg=="; }; }; "unfetch-3.0.0" = { @@ -77045,15 +75011,6 @@ let sha512 = "ti4wZj+0bQTiX2KmKWuwj7lhV+2n//uXEotUmGuQqrbVZSEGFMbI68+c6JCQ8aAmUWYvtHEz2A8K6wXvueR/6g=="; }; }; - "unzipper-0.8.14" = { - name = "unzipper"; - packageName = "unzipper"; - version = "0.8.14"; - src = fetchurl { - url = "https://registry.npmjs.org/unzipper/-/unzipper-0.8.14.tgz"; - sha512 = "8rFtE7EP5ssOwGpN2dt1Q4njl0N1hUXJ7sSPz0leU2hRdq6+pra57z4YPBlVqm40vcgv6ooKZEAx48fMTv9x4w=="; - }; - }; "upath-1.2.0" = { name = "upath"; packageName = "upath"; @@ -77567,15 +75524,6 @@ let sha512 = "4+wkEYLBbWxqTahEsWrhxepcoVOJ+1z5PGIjPZxRkytcdSUaNjIjBM7Xn8E+pdSuV7SzvWovBFA54FO0JSoqhA=="; }; }; - "utfx-1.0.1" = { - name = "utfx"; - packageName = "utfx"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/utfx/-/utfx-1.0.1.tgz"; - sha512 = "56Kk2uOPZyTQ1p6H54tyBWs86tW8kIOvOCVF6zl8HtQZHzCZnrRQI1JzbuWBG6ajgqGL/KzUcGSBAesYjNFlyw=="; - }; - }; "utif-2.0.1" = { name = "utif"; packageName = "utif"; @@ -77936,13 +75884,13 @@ let sha512 = "X/p3UZerAIsbBfN/IwahhYaBbY68EN/UQBWHtsbXGT5bfrH/p4NQzUCG1kF/rtKaNpnJ7jAu6NGTdSNtyNIXMw=="; }; }; - "validator-13.9.0" = { + "validator-13.11.0" = { name = "validator"; packageName = "validator"; - version = "13.9.0"; + version = "13.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/validator/-/validator-13.9.0.tgz"; - sha512 = "B+dGG8U3fdtM0/aNK4/X8CXq/EcxU2WPrPEkJGslb47qyHsxmbggTWK0yEA4qnYVNF+nxNlN88o14hIcPmSIEA=="; + url = "https://registry.npmjs.org/validator/-/validator-13.11.0.tgz"; + sha512 = "Ii+sehpSfZy+At5nPdnyMhx78fEoPDkR2XW/zimHEL3MyGJQOCQ7WeP20jPYRz7ZCpcKLB21NxuXHF3bxjStBQ=="; }; }; "validator-5.7.0" = { @@ -78305,13 +76253,13 @@ let sha512 = "sJELfEuYQ238PRG+GOqQch8D69RYnJevYSGLsRGQD2LxNz3j+GlUX6Pid+gUEH5HJy22Q5L0vsTl2ZNhIr4teQ=="; }; }; - "vega-typings-0.24.1" = { + "vega-typings-0.24.2" = { name = "vega-typings"; packageName = "vega-typings"; - version = "0.24.1"; + version = "0.24.2"; src = fetchurl { - url = "https://registry.npmjs.org/vega-typings/-/vega-typings-0.24.1.tgz"; - sha512 = "WNw6tDxwMsynQ9osJb3RZi3g8GZruxVgXfe8N7nbqvNOgDQkUuVjqTZiwGg5kqjmLqx09lRRlskgp/ov7lEGeg=="; + url = "https://registry.npmjs.org/vega-typings/-/vega-typings-0.24.2.tgz"; + sha512 = "fW02GElYoqweCCaPqH6iH44UZnzXiX9kbm1qyecjU3k5s0vtufLI7Yuz/a/uL37mEAqTMQplBBAlk0T9e2e1Dw=="; }; }; "vega-util-1.17.2" = { @@ -78755,15 +76703,6 @@ let sha512 = "J637XF0DHDMV57R6JyVsTak7nIL8gy5KH4r1HiwWLf/4GBbb5MKL5y7LpmF4A8E2nR6XmzpmMFQ7V7ppPTmUQg=="; }; }; - "voc-1.2.0" = { - name = "voc"; - packageName = "voc"; - version = "1.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/voc/-/voc-1.2.0.tgz"; - sha512 = "BOuDjFFYvJdZO6e/N65AlaDItXo2TgyLjeyRYcqgAPkXpp5yTJcvkL2n+syO1r9Qc5g96tfBD2tuiMhYDmaGcA=="; - }; - }; "void-elements-2.0.1" = { name = "void-elements"; packageName = "void-elements"; @@ -80177,13 +78116,13 @@ let sha512 = "9lFZp/KHoqH6bPKjbWqa+3Dg/K/r2v0X/3/G2x4DBGchVS2QX2VXL3cZV994WQVnTM1/PD71Az25nAzryEUugw=="; }; }; - "when-exit-2.1.0" = { + "when-exit-2.1.1" = { name = "when-exit"; packageName = "when-exit"; - version = "2.1.0"; + version = "2.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/when-exit/-/when-exit-2.1.0.tgz"; - sha512 = "H85ulNwUBU1e6PGxkWUDgxnbohSXD++ah6Xw1VHAN7CtypcbZaC4aYjQ+C2PMVaDkURDuOinNAT+Lnz3utWXxQ=="; + url = "https://registry.npmjs.org/when-exit/-/when-exit-2.1.1.tgz"; + sha512 = "XLipGldz/UcleuGaoQjbYuWwD+ICRnzIjlldtwTaTWr7aZz8yQW49rXk6MHQnh+KxOiWiJpM1vIyaxprOnlW4g=="; }; }; "whet.extend-0.9.9" = { @@ -80429,24 +78368,6 @@ let sha512 = "UD7d8HFA2+PZsbKyaOCEy8gMh1oDtHgJh1LfgjQ4zVXmYjAT/kvz3PueITKuqDiIXQe7yzpPnxX3lNc+AhQMyw=="; }; }; - "window-size-1.1.1" = { - name = "window-size"; - packageName = "window-size"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/window-size/-/window-size-1.1.1.tgz"; - sha512 = "5D/9vujkmVQ7pSmc0SCBmHXbkv6eaHwXEx65MywhmUMsI8sGqJ972APq1lotfcwMKPFLuCFfL8xGHLIp7jaBmA=="; - }; - }; - "windows-no-runnable-0.0.6" = { - name = "windows-no-runnable"; - packageName = "windows-no-runnable"; - version = "0.0.6"; - src = fetchurl { - url = "https://registry.npmjs.org/windows-no-runnable/-/windows-no-runnable-0.0.6.tgz"; - sha512 = "THEnZzMKBYonb45BEffK8eE5fA4LaSw3Cog/pvwjdKP8kqOZov8Fqr1RZZuSn15dyd5rHMLA0+s8q7NsPypspQ=="; - }; - }; "windows-release-3.3.3" = { name = "windows-release"; packageName = "windows-release"; @@ -80564,15 +78485,6 @@ let sha512 = "oEXTISQnC8VlSAKf1KYSSd7J6IWuRPQqDdo8eoRNaYKLvwSb5+79Z3Yi1lrl6KDpU6/VWaxpakDAtb1oQ4n9aw=="; }; }; - "winston-3.7.2" = { - name = "winston"; - packageName = "winston"; - version = "3.7.2"; - src = fetchurl { - url = "https://registry.npmjs.org/winston/-/winston-3.7.2.tgz"; - sha512 = "QziIqtojHBoyzUOdQvQiar1DH0Xp9nF1A1y7NVy2DGEsz82SBDtOalS0ulTRGVT14xPX3WRWkCsdcJKqNflKng=="; - }; - }; "winston-3.8.2" = { name = "winston"; packageName = "winston"; @@ -80636,13 +78548,13 @@ let sha512 = "U0IUQHKXXn6PFo9nqsHphVCE5m3IntqZNB9Jjn7EB1lrR7YTDY3YWgFvEvwniTzXSvOH/XMzAZaIfJF/LvHYXg=="; }; }; - "wonka-6.3.3" = { + "wonka-6.3.4" = { name = "wonka"; packageName = "wonka"; - version = "6.3.3"; + version = "6.3.4"; src = fetchurl { - url = "https://registry.npmjs.org/wonka/-/wonka-6.3.3.tgz"; - sha512 = "id4wYGsT6aEc8/3+by7NTHvTe0DwsOjv7vah0K0+AorV1MHKuS3OQ2g8DGsem1OEXrNShbVLPsg4kG2O6GZ2SQ=="; + url = "https://registry.npmjs.org/wonka/-/wonka-6.3.4.tgz"; + sha512 = "CjpbqNtBGNAeyNS/9W6q3kSkKE52+FjIj7AkFlLr11s/VWGUu6a2CdYSdGxocIhIVjaW/zchesBQUKPVU69Cqg=="; }; }; "word-wrap-1.2.3" = { @@ -80726,13 +78638,13 @@ let sha512 = "rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw=="; }; }; - "workerd-1.20230724.0" = { + "workerd-1.20230807.0" = { name = "workerd"; packageName = "workerd"; - version = "1.20230724.0"; + version = "1.20230807.0"; src = fetchurl { - url = "https://registry.npmjs.org/workerd/-/workerd-1.20230724.0.tgz"; - sha512 = "++D7JqS4/dk7zvtGpk+i/7G9bZtEl6lTtgAsIoSSGR1qJAxxEu21ktm9+FH0EYh7uKfizuM5H9lrTsR+3u44PA=="; + url = "https://registry.npmjs.org/workerd/-/workerd-1.20230807.0.tgz"; + sha512 = "yDdHld8wm5lQ6M/WYD68tIzbAmPjcgAoVAYhAHQFaXZSpryjIw9mT3O/NEloyZ8xiickpoPuNSQ4ffxPLao2+Q=="; }; }; "workerpool-6.2.1" = { @@ -81591,15 +79503,6 @@ let sha512 = "FIr/DEeoHfj7ftfylnoFt3rAIRoWXpx2AoDfrT2qD2wtp7Dp+COajvs/Icb7uHqRW9m60f5iXZwdsJJO3kvb7w=="; }; }; - "xspfr-0.3.1" = { - name = "xspfr"; - packageName = "xspfr"; - version = "0.3.1"; - src = fetchurl { - url = "https://registry.npmjs.org/xspfr/-/xspfr-0.3.1.tgz"; - sha512 = "LF2/GULgkPijLxuwnLifHEXYfwRNchpUM9yvE7qBWc9XYpH/z+akAxdGwmGrydShN26xJLXtEsK6Jgg5wZxI9g=="; - }; - }; "xss-1.0.14" = { name = "xss"; packageName = "xss"; @@ -82221,15 +80124,6 @@ let sha512 = "sN1e01Db4fdd8P/n/yYvizfy77HdbwzvXmPxps9Gwz2D24slegrkSn+qyj+0nmZhtFwGX2i/cH29QDrvAFT9Aw=="; }; }; - "ylru-1.3.2" = { - name = "ylru"; - packageName = "ylru"; - version = "1.3.2"; - src = fetchurl { - url = "https://registry.npmjs.org/ylru/-/ylru-1.3.2.tgz"; - sha512 = "RXRJzMiK6U2ye0BlGGZnmpwJDPgakn6aNQ0A7gHRbD4I0uvK4TW6UqkK1V0pp9jskjJBAXd3dRrbzWkqJ+6cxA=="; - }; - }; "yn-3.1.1" = { name = "yn"; packageName = "yn"; @@ -82410,13 +80304,13 @@ let sha512 = "09W/9oyxeF1/wWnzCb6MursW+lOzgKi91QwE7eTBbC+t/qgfuLsUVDai3lHemSQnQu/UONAcT/fv3ZnDvbTeKg=="; }; }; - "zwave-js-11.8.1" = { + "zwave-js-11.10.0" = { name = "zwave-js"; packageName = "zwave-js"; - version = "11.8.1"; + version = "11.10.0"; src = fetchurl { - url = "https://registry.npmjs.org/zwave-js/-/zwave-js-11.8.1.tgz"; - sha512 = "lza3wJdDGS60cEKm/CoIyzaSxF+xf+ExYM131UAjPlN9JQKIiFG+cZH1tWg6bw4O+L6WRNaOl27afFjFWEnz2Q=="; + url = "https://registry.npmjs.org/zwave-js/-/zwave-js-11.10.0.tgz"; + sha512 = "ud0f11973uuqVgAyC0x/lxiV9epLSqkMJgrnwnGS0i1kkWxyGOwAWy5cK2koK8KbqEQYIsbdsDQ3rNOC0e4DkA=="; }; }; "zwitch-1.0.5" = { @@ -82443,15 +80337,15 @@ in "@angular/cli" = nodeEnv.buildNodePackage { name = "_at_angular_slash_cli"; packageName = "@angular/cli"; - version = "16.1.6"; + version = "16.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/@angular/cli/-/cli-16.1.6.tgz"; - sha512 = "yXVgUKMXxlAHkhc6xk3ljR7TXpMLBykyu8do+ooSP08VKEQnWjTdVgrcOHd0n5w9YHXUQgBSmjDKxtQaBmvyZQ=="; + url = "https://registry.npmjs.org/@angular/cli/-/cli-16.2.0.tgz"; + sha512 = "xT8vJOyw6Rc2364XDW2jHagLgKu7342ktd/lt+c0u6R+AB2XVFMePR7VceLohX9N/vRUsbQ0nVSZr+ru/hA+HA=="; }; dependencies = [ - sources."@angular-devkit/architect-0.1601.6" - sources."@angular-devkit/core-16.1.6" - sources."@angular-devkit/schematics-16.1.6" + sources."@angular-devkit/architect-0.1602.0" + sources."@angular-devkit/core-16.2.0" + sources."@angular-devkit/schematics-16.2.0" (sources."@isaacs/cliui-8.0.2" // { dependencies = [ sources."ansi-regex-6.0.1" @@ -82469,8 +80363,7 @@ in sources."@npmcli/node-gyp-3.0.0" sources."@npmcli/promise-spawn-6.0.2" sources."@npmcli/run-script-6.0.2" - sources."@pkgjs/parseargs-0.11.0" - sources."@schematics/angular-16.1.6" + sources."@schematics/angular-16.2.0" sources."@sigstore/bundle-1.0.0" sources."@sigstore/protobuf-specs-0.2.0" sources."@sigstore/tuf-1.0.3" @@ -82485,7 +80378,7 @@ in sources."@yarnpkg/lockfile-1.1.0" sources."abbrev-1.1.1" sources."agent-base-6.0.2" - sources."agentkeepalive-4.3.0" + sources."agentkeepalive-4.5.0" sources."aggregate-error-3.1.0" sources."ajv-8.12.0" sources."ajv-formats-2.1.1" @@ -82531,11 +80424,14 @@ in sources."which-2.0.2" ]; }) - sources."debug-4.3.4" + (sources."debug-4.3.4" // { + dependencies = [ + sources."ms-2.1.2" + ]; + }) sources."defaults-1.0.4" sources."define-lazy-prop-2.0.0" sources."delegates-1.0.0" - sources."depd-2.0.0" sources."eastasianwidth-0.2.0" sources."emoji-regex-8.0.0" (sources."encoding-0.1.13" // { @@ -82590,7 +80486,7 @@ in sources."inquirer-8.2.4" sources."ip-2.0.0" sources."is-binary-path-2.1.0" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" sources."is-docker-2.2.1" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" @@ -82601,7 +80497,7 @@ in sources."is-unicode-supported-0.1.0" sources."is-wsl-2.2.0" sources."isexe-2.0.0" - sources."jackspeak-2.2.2" + sources."jackspeak-2.2.3" sources."json-parse-even-better-errors-3.0.0" sources."json-schema-traverse-1.0.0" sources."jsonc-parser-3.2.0" @@ -82609,7 +80505,7 @@ in sources."lodash-4.17.21" sources."log-symbols-4.1.0" sources."lru-cache-7.18.3" - sources."magic-string-0.30.0" + sources."magic-string-0.30.1" sources."make-fetch-happen-11.1.1" sources."mimic-fn-2.1.0" sources."minimatch-3.1.2" @@ -82646,7 +80542,7 @@ in ]; }) sources."mkdirp-1.0.4" - sources."ms-2.1.2" + sources."ms-2.1.3" sources."mute-stream-0.0.8" sources."negotiator-0.6.3" (sources."node-gyp-9.4.0" // { @@ -82705,7 +80601,7 @@ in sources."rxjs-7.8.1" sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" - (sources."semver-7.5.3" // { + (sources."semver-7.5.4" // { dependencies = [ sources."lru-cache-6.0.0" ]; @@ -82836,14 +80732,14 @@ in sources."micromatch-4.0.5" sources."muggle-string-0.3.1" sources."picomatch-2.3.1" - sources."prettier-3.0.0" + sources."prettier-3.0.1" sources."prettier-plugin-astro-0.11.0" sources."queue-microtask-1.2.3" sources."request-light-0.7.0" sources."reusify-1.0.4" sources."run-parallel-1.2.0" sources."s.color-0.0.15" - sources."sass-formatter-0.7.6" + sources."sass-formatter-0.7.7" sources."semver-7.5.4" sources."suf-log-2.5.3" sources."to-regex-range-5.0.1" @@ -82888,22 +80784,22 @@ in "@babel/cli" = nodeEnv.buildNodePackage { name = "_at_babel_slash_cli"; packageName = "@babel/cli"; - version = "7.22.9"; + version = "7.22.10"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/cli/-/cli-7.22.9.tgz"; - sha512 = "nb2O7AThqRo7/E53EGiuAkMaRbb7J5Qp3RvN+dmua1U+kydm0oznkhqbTEG15yk26G/C3yL6OdZjzgl+DMXVVA=="; + url = "https://registry.npmjs.org/@babel/cli/-/cli-7.22.10.tgz"; + sha512 = "rM9ZMmaII630zGvtMtQ3P4GyHs28CHLYE9apLG7L8TgaSqcfoIGrlLSLsh4Q8kDTdZQQEXZm1M0nQtOvU/2heg=="; }; dependencies = [ sources."@ampproject/remapping-2.2.1" - sources."@babel/code-frame-7.22.5" + sources."@babel/code-frame-7.22.10" sources."@babel/compat-data-7.22.9" - (sources."@babel/core-7.22.9" // { + (sources."@babel/core-7.22.10" // { dependencies = [ sources."semver-6.3.1" ]; }) - sources."@babel/generator-7.22.9" - (sources."@babel/helper-compilation-targets-7.22.9" // { + sources."@babel/generator-7.22.10" + (sources."@babel/helper-compilation-targets-7.22.10" // { dependencies = [ sources."semver-6.3.1" ]; @@ -82918,22 +80814,22 @@ in sources."@babel/helper-string-parser-7.22.5" sources."@babel/helper-validator-identifier-7.22.5" sources."@babel/helper-validator-option-7.22.5" - sources."@babel/helpers-7.22.6" - sources."@babel/highlight-7.22.5" - sources."@babel/parser-7.22.7" + sources."@babel/helpers-7.22.10" + sources."@babel/highlight-7.22.10" + sources."@babel/parser-7.22.10" sources."@babel/template-7.22.5" - sources."@babel/traverse-7.22.8" - sources."@babel/types-7.22.5" + sources."@babel/traverse-7.22.10" + sources."@babel/types-7.22.10" sources."@jridgewell/gen-mapping-0.3.3" - sources."@jridgewell/resolve-uri-3.1.0" + sources."@jridgewell/resolve-uri-3.1.1" sources."@jridgewell/set-array-1.1.2" - sources."@jridgewell/sourcemap-codec-1.4.14" - sources."@jridgewell/trace-mapping-0.3.18" + sources."@jridgewell/sourcemap-codec-1.4.15" + sources."@jridgewell/trace-mapping-0.3.19" sources."ansi-styles-3.2.1" sources."balanced-match-1.0.2" sources."brace-expansion-1.1.11" sources."browserslist-4.21.10" - sources."caniuse-lite-1.0.30001518" + sources."caniuse-lite-1.0.30001519" sources."chalk-2.4.2" sources."color-convert-1.9.3" sources."color-name-1.1.3" @@ -82941,7 +80837,7 @@ in sources."concat-map-0.0.1" sources."convert-source-map-1.9.0" sources."debug-4.3.4" - sources."electron-to-chromium-1.4.480" + sources."electron-to-chromium-1.4.490" sources."escalade-3.1.1" sources."escape-string-regexp-1.0.5" sources."fs-readdir-recursive-1.1.0" @@ -82985,15 +80881,24 @@ in "@commitlint/cli" = nodeEnv.buildNodePackage { name = "_at_commitlint_slash_cli"; packageName = "@commitlint/cli"; - version = "17.6.7"; + version = "17.7.1"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/cli/-/cli-17.6.7.tgz"; - sha512 = "nzZmfO5KIOupYppn1MsnYX/80I+KDlxiwkks3CJT0XT+t34UgqGi3eSyEuzgcIjPlORk5/GMaAEiys78iLfGMg=="; + url = "https://registry.npmjs.org/@commitlint/cli/-/cli-17.7.1.tgz"; + sha512 = "BCm/AT06SNCQtvFv921iNhudOHuY16LswT0R3OeolVGLk8oP+Rk9TfQfgjH7QPMjhvp76bNqGFEcpKojxUNW1g=="; }; dependencies = [ - sources."@babel/code-frame-7.22.5" + (sources."@babel/code-frame-7.22.10" // { + dependencies = [ + sources."ansi-styles-3.2.1" + sources."chalk-2.4.2" + sources."color-convert-1.9.3" + sources."color-name-1.1.3" + sources."has-flag-3.0.0" + sources."supports-color-5.5.0" + ]; + }) sources."@babel/helper-validator-identifier-7.22.5" - (sources."@babel/highlight-7.22.5" // { + (sources."@babel/highlight-7.22.10" // { dependencies = [ sources."ansi-styles-3.2.1" sources."chalk-2.4.2" @@ -83007,14 +80912,14 @@ in sources."@commitlint/ensure-17.6.7" sources."@commitlint/execute-rule-17.4.0" sources."@commitlint/format-17.4.4" - sources."@commitlint/is-ignored-17.6.7" - sources."@commitlint/lint-17.6.7" - sources."@commitlint/load-17.6.7" + sources."@commitlint/is-ignored-17.7.0" + sources."@commitlint/lint-17.7.0" + sources."@commitlint/load-17.7.1" sources."@commitlint/message-17.4.2" - sources."@commitlint/parse-17.6.7" + sources."@commitlint/parse-17.7.0" sources."@commitlint/read-17.5.1" sources."@commitlint/resolve-extends-17.6.7" - sources."@commitlint/rules-17.6.7" + sources."@commitlint/rules-17.7.0" sources."@commitlint/to-lines-17.4.0" (sources."@commitlint/top-level-17.4.0" // { dependencies = [ @@ -83029,25 +80934,25 @@ in sources."@jridgewell/resolve-uri-3.1.1" sources."@jridgewell/sourcemap-codec-1.4.15" sources."@jridgewell/trace-mapping-0.3.9" - sources."@swc/core-1.3.73" - sources."@swc/core-darwin-arm64-1.3.73" - sources."@swc/core-darwin-x64-1.3.73" - sources."@swc/core-linux-arm-gnueabihf-1.3.73" - sources."@swc/core-linux-arm64-gnu-1.3.73" - sources."@swc/core-linux-arm64-musl-1.3.73" - sources."@swc/core-linux-x64-gnu-1.3.73" - sources."@swc/core-linux-x64-musl-1.3.73" - sources."@swc/core-win32-arm64-msvc-1.3.73" - sources."@swc/core-win32-ia32-msvc-1.3.73" - sources."@swc/core-win32-x64-msvc-1.3.73" + sources."@swc/core-1.3.76" + sources."@swc/core-darwin-arm64-1.3.76" + sources."@swc/core-darwin-x64-1.3.76" + sources."@swc/core-linux-arm-gnueabihf-1.3.76" + sources."@swc/core-linux-arm64-gnu-1.3.76" + sources."@swc/core-linux-arm64-musl-1.3.76" + sources."@swc/core-linux-x64-gnu-1.3.76" + sources."@swc/core-linux-x64-musl-1.3.76" + sources."@swc/core-win32-arm64-msvc-1.3.76" + sources."@swc/core-win32-ia32-msvc-1.3.76" + sources."@swc/core-win32-x64-msvc-1.3.76" sources."@swc/helpers-0.5.1" - sources."@swc/wasm-1.3.73" + sources."@swc/wasm-1.3.76" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.4" sources."@types/minimist-1.2.2" - sources."@types/node-20.4.5" + sources."@types/node-20.4.7" sources."@types/normalize-package-data-2.4.1" sources."JSONStream-1.3.5" sources."acorn-8.10.0" @@ -83067,8 +80972,8 @@ in sources."color-convert-2.0.1" sources."color-name-1.1.4" sources."compare-func-2.0.0" - sources."conventional-changelog-angular-5.0.13" - sources."conventional-commits-parser-3.2.4" + sources."conventional-changelog-angular-6.0.0" + sources."conventional-commits-parser-4.0.0" sources."cosmiconfig-8.2.0" sources."cosmiconfig-typescript-loader-4.4.0" sources."create-require-1.1.1" @@ -83110,7 +81015,7 @@ in sources."inherits-2.0.4" sources."ini-1.3.8" sources."is-arrayish-0.2.1" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" sources."is-fullwidth-code-point-3.0.0" sources."is-obj-2.0.0" sources."is-plain-obj-1.1.0" @@ -83159,7 +81064,6 @@ in sources."path-parse-1.0.7" sources."path-type-4.0.0" sources."punycode-2.3.0" - sources."q-1.5.1" sources."quick-lru-4.0.1" (sources."read-pkg-5.2.0" // { dependencies = [ @@ -83178,11 +81082,11 @@ in sources."redent-3.0.0" sources."require-directory-2.1.1" sources."require-from-string-2.0.2" - sources."resolve-1.22.3" + sources."resolve-1.22.4" sources."resolve-from-5.0.0" sources."resolve-global-1.0.0" sources."safe-buffer-5.2.1" - sources."semver-7.5.2" + sources."semver-7.5.4" sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" sources."signal-exit-3.0.7" @@ -83237,19 +81141,17 @@ in "@commitlint/config-conventional" = nodeEnv.buildNodePackage { name = "_at_commitlint_slash_config-conventional"; packageName = "@commitlint/config-conventional"; - version = "17.6.7"; + version = "17.7.0"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/config-conventional/-/config-conventional-17.6.7.tgz"; - sha512 = "4oTpEUC0HRM54QRHBPMOJW1pETp7usxXn9RuNYNWHcmu8wi1mpws95hvS20u2n6HtIkTn0jfn7vHioCm4AGUTw=="; + url = "https://registry.npmjs.org/@commitlint/config-conventional/-/config-conventional-17.7.0.tgz"; + sha512 = "iicqh2o6et+9kWaqsQiEYZzfLbtoWv9uZl8kbI8EGfnc0HeGafQBF7AJ0ylN9D/2kj6txltsdyQs8+2fTMwWEw=="; }; dependencies = [ sources."array-ify-1.0.0" sources."compare-func-2.0.0" - sources."conventional-changelog-conventionalcommits-5.0.0" + sources."conventional-changelog-conventionalcommits-6.1.0" sources."dot-prop-5.3.0" sources."is-obj-2.0.0" - sources."lodash-4.17.21" - sources."q-1.5.1" ]; buildInputs = globalBuildInputs; meta = { @@ -83313,21 +81215,21 @@ in sources."js-yaml-4.1.0" ]; }) - sources."@babel/code-frame-7.22.5" + sources."@babel/code-frame-7.22.10" sources."@babel/compat-data-7.22.9" - (sources."@babel/core-7.22.9" // { + (sources."@babel/core-7.22.10" // { dependencies = [ sources."semver-6.3.1" ]; }) - sources."@babel/generator-7.22.9" + sources."@babel/generator-7.22.10" sources."@babel/helper-annotate-as-pure-7.22.5" - (sources."@babel/helper-compilation-targets-7.22.9" // { + (sources."@babel/helper-compilation-targets-7.22.10" // { dependencies = [ sources."semver-6.3.1" ]; }) - (sources."@babel/helper-create-class-features-plugin-7.22.9" // { + (sources."@babel/helper-create-class-features-plugin-7.22.10" // { dependencies = [ sources."semver-6.3.1" ]; @@ -83347,9 +81249,9 @@ in sources."@babel/helper-string-parser-7.22.5" sources."@babel/helper-validator-identifier-7.22.5" sources."@babel/helper-validator-option-7.22.5" - sources."@babel/helpers-7.22.6" - sources."@babel/highlight-7.22.5" - sources."@babel/parser-7.22.7" + sources."@babel/helpers-7.22.10" + sources."@babel/highlight-7.22.10" + sources."@babel/parser-7.22.10" sources."@babel/plugin-syntax-class-static-block-7.14.5" sources."@babel/plugin-syntax-jsx-7.22.5" sources."@babel/plugin-syntax-numeric-separator-7.10.4" @@ -83359,13 +81261,13 @@ in sources."@babel/plugin-transform-class-static-block-7.22.5" sources."@babel/plugin-transform-modules-commonjs-7.22.5" sources."@babel/plugin-transform-numeric-separator-7.22.5" - sources."@babel/plugin-transform-optional-chaining-7.22.6" + sources."@babel/plugin-transform-optional-chaining-7.22.10" sources."@babel/plugin-transform-react-jsx-7.22.5" - sources."@babel/plugin-transform-typescript-7.22.9" + sources."@babel/plugin-transform-typescript-7.22.10" sources."@babel/preset-typescript-7.22.5" sources."@babel/template-7.22.5" - sources."@babel/traverse-7.22.8" - sources."@babel/types-7.22.5" + sources."@babel/traverse-7.22.10" + sources."@babel/types-7.22.10" sources."@colors/colors-1.5.0" (sources."@cspotcode/source-map-support-0.8.1" // { dependencies = [ @@ -83392,44 +81294,40 @@ in sources."@forge/tunnel-3.6.4" sources."@forge/util-1.3.1" sources."@jridgewell/gen-mapping-0.3.3" - sources."@jridgewell/resolve-uri-3.1.0" + sources."@jridgewell/resolve-uri-3.1.1" sources."@jridgewell/set-array-1.1.2" sources."@jridgewell/source-map-0.3.5" sources."@jridgewell/sourcemap-codec-1.4.15" - (sources."@jridgewell/trace-mapping-0.3.18" // { - dependencies = [ - sources."@jridgewell/sourcemap-codec-1.4.14" - ]; - }) + sources."@jridgewell/trace-mapping-0.3.19" sources."@jsdevtools/ono-7.1.3" sources."@leichtgewicht/ip-codec-2.0.4" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" sources."@polka/url-1.0.0-next.21" - sources."@sentry-internal/tracing-7.61.0" - sources."@sentry/core-7.61.0" - (sources."@sentry/node-7.61.0" // { + sources."@sentry-internal/tracing-7.62.0" + sources."@sentry/core-7.62.0" + (sources."@sentry/node-7.62.0" // { dependencies = [ sources."cookie-0.4.2" ]; }) - sources."@sentry/types-7.61.0" - sources."@sentry/utils-7.61.0" + sources."@sentry/types-7.62.0" + sources."@sentry/utils-7.62.0" sources."@sindresorhus/is-4.6.0" - sources."@swc/core-1.3.73" - sources."@swc/core-darwin-arm64-1.3.73" - sources."@swc/core-darwin-x64-1.3.73" - sources."@swc/core-linux-arm-gnueabihf-1.3.73" - sources."@swc/core-linux-arm64-gnu-1.3.73" - sources."@swc/core-linux-arm64-musl-1.3.73" - sources."@swc/core-linux-x64-gnu-1.3.73" - sources."@swc/core-linux-x64-musl-1.3.73" - sources."@swc/core-win32-arm64-msvc-1.3.73" - sources."@swc/core-win32-ia32-msvc-1.3.73" - sources."@swc/core-win32-x64-msvc-1.3.73" + sources."@swc/core-1.3.76" + sources."@swc/core-darwin-arm64-1.3.76" + sources."@swc/core-darwin-x64-1.3.76" + sources."@swc/core-linux-arm-gnueabihf-1.3.76" + sources."@swc/core-linux-arm64-gnu-1.3.76" + sources."@swc/core-linux-arm64-musl-1.3.76" + sources."@swc/core-linux-x64-gnu-1.3.76" + sources."@swc/core-linux-x64-musl-1.3.76" + sources."@swc/core-win32-arm64-msvc-1.3.76" + sources."@swc/core-win32-ia32-msvc-1.3.76" + sources."@swc/core-win32-x64-msvc-1.3.76" sources."@swc/helpers-0.5.1" - sources."@swc/wasm-1.3.73" + sources."@swc/wasm-1.3.76" sources."@szmarczak/http-timer-4.0.6" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" @@ -83440,7 +81338,7 @@ in sources."@types/cacheable-request-6.0.3" sources."@types/connect-3.4.35" sources."@types/connect-history-api-fallback-1.5.0" - sources."@types/eslint-8.44.1" + sources."@types/eslint-8.44.2" sources."@types/eslint-scope-3.7.4" sources."@types/estree-1.0.1" sources."@types/express-4.17.17" @@ -83452,7 +81350,7 @@ in sources."@types/json-schema-7.0.12" sources."@types/keyv-3.1.4" sources."@types/mime-1.3.2" - sources."@types/node-20.4.5" + sources."@types/node-20.4.9" sources."@types/node-fetch-2.6.4" sources."@types/qs-6.9.7" sources."@types/range-parser-1.2.4" @@ -83594,7 +81492,7 @@ in sources."call-bind-1.0.2" sources."call-me-maybe-1.0.2" sources."camel-case-4.1.2" - sources."caniuse-lite-1.0.30001518" + sources."caniuse-lite-1.0.30001519" sources."case-1.6.3" sources."chai-4.3.7" (sources."chalk-2.4.2" // { @@ -83631,7 +81529,11 @@ in sources."cli-spinners-2.9.0" sources."cli-table3-0.6.3" sources."cli-width-3.0.0" - sources."cliui-8.0.1" + (sources."cliui-8.0.1" // { + dependencies = [ + sources."wrap-ansi-7.0.0" + ]; + }) sources."clone-1.0.4" sources."clone-deep-4.0.1" (sources."clone-response-1.0.3" // { @@ -83724,7 +81626,7 @@ in sources."dot-prop-6.0.1" sources."duplexer-0.1.2" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.480" + sources."electron-to-chromium-1.4.490" (sources."elliptic-6.5.4" // { dependencies = [ sources."bn.js-4.12.0" @@ -83912,7 +81814,7 @@ in sources."inflight-1.0.6" sources."inherits-2.0.1" sources."ini-1.3.8" - (sources."inquirer-8.2.5" // { + (sources."inquirer-8.2.6" // { dependencies = [ sources."chalk-4.1.2" sources."ora-5.4.1" @@ -83929,7 +81831,7 @@ in sources."is-binary-path-2.1.0" sources."is-boolean-object-1.1.2" sources."is-callable-1.2.7" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" sources."is-date-object-1.0.5" sources."is-docker-2.2.1" sources."is-extglob-2.1.1" @@ -84224,7 +82126,7 @@ in sources."require-directory-2.1.1" sources."require-from-string-2.0.2" sources."requires-port-1.0.0" - sources."resolve-1.22.3" + sources."resolve-1.22.4" sources."resolve-alpn-1.2.1" sources."resolve-cwd-3.0.0" sources."resolve-from-5.0.0" @@ -84378,7 +82280,7 @@ in sources."typescript-4.9.5" (sources."typescript-json-schema-0.59.0" // { dependencies = [ - sources."@types/node-16.18.39" + sources."@types/node-16.18.40" ]; }) sources."unbox-primitive-1.0.2" @@ -84448,7 +82350,7 @@ in sources."which-typed-array-1.1.11" sources."wildcard-2.0.1" sources."winattr-3.0.0" - sources."wrap-ansi-7.0.0" + sources."wrap-ansi-6.2.0" sources."wrappy-1.0.2" sources."write-file-atomic-1.3.4" sources."ws-7.5.9" @@ -84480,9 +82382,18 @@ in sha512 = "S+NzmN4VSmIu6vHVJ6hYUQj3xsksOpE82SGP97nMimabR282BM1l/FT71jOqbf+UAgjm2Q9TyIOeGtsWDsW+CQ=="; }; dependencies = [ - sources."@babel/code-frame-7.22.5" + (sources."@babel/code-frame-7.22.10" // { + dependencies = [ + sources."ansi-styles-3.2.1" + sources."chalk-2.4.2" + sources."color-convert-1.9.3" + sources."color-name-1.1.3" + sources."has-flag-3.0.0" + sources."supports-color-5.5.0" + ]; + }) sources."@babel/helper-validator-identifier-7.22.5" - (sources."@babel/highlight-7.22.5" // { + (sources."@babel/highlight-7.22.10" // { dependencies = [ sources."ansi-styles-3.2.1" sources."chalk-2.4.2" @@ -84519,11 +82430,11 @@ in sources."@types/http-cache-semantics-4.0.1" sources."@types/keyv-3.1.4" sources."@types/minimist-1.2.2" - sources."@types/node-20.4.5" + sources."@types/node-20.4.9" sources."@types/normalize-package-data-2.4.1" sources."@types/responselike-1.0.0" sources."aggregate-error-4.0.1" - sources."all-package-names-2.0.706" + sources."all-package-names-2.0.711" sources."ansi-align-3.0.1" sources."ansi-escapes-4.3.2" sources."ansi-regex-5.0.1" @@ -84727,7 +82638,7 @@ in sources."inflight-1.0.6" sources."inherits-2.0.4" sources."ini-2.0.0" - sources."inquirer-8.2.5" + sources."inquirer-8.2.6" (sources."inquirer-autosubmit-prompt-0.2.0" // { dependencies = [ sources."ansi-escapes-3.2.0" @@ -84763,7 +82674,7 @@ in }) sources."is-arrayish-0.2.1" sources."is-ci-3.0.1" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" sources."is-docker-3.0.0" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" @@ -84909,12 +82820,12 @@ in (sources."np-8.0.4" // { dependencies = [ sources."chalk-5.3.0" - sources."cli-width-4.0.0" + sources."cli-width-4.1.0" sources."escape-string-regexp-5.0.0" sources."execa-7.2.0" sources."figures-5.0.0" sources."human-signals-4.3.1" - sources."inquirer-9.2.9" + sources."inquirer-9.2.10" sources."is-stream-3.0.0" sources."mimic-fn-4.0.0" sources."mute-stream-1.0.0" @@ -84924,7 +82835,6 @@ in sources."run-async-3.0.0" sources."strip-final-newline-3.0.0" sources."update-notifier-6.0.2" - sources."wrap-ansi-6.2.0" ]; }) sources."npm-name-7.1.0" @@ -85145,6 +83055,7 @@ in sources."type-fest-0.20.2" sources."unique-string-2.0.0" sources."widest-line-3.1.0" + sources."wrap-ansi-7.0.0" sources."xdg-basedir-4.0.0" ]; }) @@ -85163,7 +83074,7 @@ in sources."strip-ansi-7.1.0" ]; }) - sources."wrap-ansi-7.0.0" + sources."wrap-ansi-6.2.0" sources."wrappy-1.0.2" sources."write-file-atomic-3.0.3" sources."xdg-basedir-5.1.0" @@ -85190,7 +83101,7 @@ in sha512 = "tJNiTfZ5Q/rrTSp8GQdq2VU76bbRq9DTyk1OhfuGlIep6bvjRbKZ+hwMmWkQ5AtCi5PqZ1zVNPyOnigdJObgOg=="; }; dependencies = [ - sources."@babel/parser-7.22.7" + sources."@babel/parser-7.22.10" sources."@medable/mdctl-api-1.0.69" sources."@medable/mdctl-api-driver-1.0.69" sources."@medable/mdctl-axon-tools-1.0.69" @@ -85225,7 +83136,7 @@ in sources."@types/markdown-it-12.2.3" sources."@types/mdurl-1.0.2" sources."@types/minimatch-5.1.2" - sources."@types/node-20.4.5" + sources."@types/node-20.4.9" sources."@types/tough-cookie-2.3.8" sources."abbrev-1.1.1" sources."abort-controller-3.0.0" @@ -85512,7 +83423,7 @@ in ]; }) sources."graceful-fs-4.2.11" - (sources."handlebars-4.7.7" // { + (sources."handlebars-4.7.8" // { dependencies = [ sources."source-map-0.6.1" ]; @@ -85567,7 +83478,7 @@ in sources."ip-regex-2.1.0" sources."is-accessor-descriptor-1.0.0" sources."is-buffer-1.1.6" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" sources."is-data-descriptor-1.0.0" sources."is-descriptor-1.0.2" sources."is-extendable-0.1.1" @@ -85883,7 +83794,7 @@ in sources."require-directory-2.1.1" sources."require-main-filename-1.0.1" sources."requizzle-0.2.4" - sources."resolve-1.22.3" + sources."resolve-1.22.4" sources."resolve-url-0.2.1" sources."restore-cursor-2.0.0" sources."ret-0.1.15" @@ -86121,15 +84032,19 @@ in sha512 = "pbLhEJL99HHKDPUTnswotqfy+Zm/TsX9oseSNikrz07e47jq+UpVBJ22e9Co5qxPlP/E9VKoZHxkIz/A6M/2Ng=="; }; dependencies = [ - sources."@babel/code-frame-7.22.5" + (sources."@babel/code-frame-7.22.10" // { + dependencies = [ + sources."chalk-2.4.2" + ]; + }) sources."@babel/helper-validator-identifier-7.22.5" - (sources."@babel/highlight-7.22.5" // { + (sources."@babel/highlight-7.22.10" // { dependencies = [ sources."chalk-2.4.2" ]; }) sources."@puppeteer/browsers-0.5.0" - sources."@types/node-20.4.5" + sources."@types/node-20.4.9" sources."@types/yauzl-2.10.0" sources."agent-base-6.0.2" sources."ansi-regex-5.0.1" @@ -86236,10 +84151,10 @@ in "@microsoft/rush" = nodeEnv.buildNodePackage { name = "_at_microsoft_slash_rush"; packageName = "@microsoft/rush"; - version = "5.100.2"; + version = "5.101.0"; src = fetchurl { - url = "https://registry.npmjs.org/@microsoft/rush/-/rush-5.100.2.tgz"; - sha512 = "tASyUwsXoClXZM/CXD1OlBJO08OIDKL+NR+QQGCj1FJ49ELKqn6icpozIpuAEzTSxvRZwCNnCTMgbiTg48mqOw=="; + url = "https://registry.npmjs.org/@microsoft/rush/-/rush-5.101.0.tgz"; + sha512 = "g2jEJWDcc9r9kLNdpUww6neuQ+Mf28Hv8q91jkhCS/IGG4PXDLRFqjuIdmt48xDly59qNmYbh7HjVQ1z3W7w2Q=="; }; dependencies = [ (sources."@azure/abort-controller-1.1.0" // { @@ -86247,7 +84162,7 @@ in sources."tslib-2.6.1" ]; }) - (sources."@azure/core-auth-1.4.0" // { + (sources."@azure/core-auth-1.5.0" // { dependencies = [ sources."tslib-2.6.1" ]; @@ -86274,7 +84189,7 @@ in sources."tslib-2.6.1" ]; }) - (sources."@azure/core-rest-pipeline-1.11.0" // { + (sources."@azure/core-rest-pipeline-1.12.0" // { dependencies = [ sources."form-data-4.0.0" sources."tslib-2.6.1" @@ -86285,7 +84200,7 @@ in sources."tslib-2.6.1" ]; }) - (sources."@azure/core-util-1.3.2" // { + (sources."@azure/core-util-1.4.0" // { dependencies = [ sources."tslib-2.6.1" ]; @@ -86300,15 +84215,15 @@ in sources."tslib-2.6.1" ]; }) - (sources."@azure/msal-browser-2.38.0" // { + (sources."@azure/msal-browser-2.38.1" // { dependencies = [ - sources."@azure/msal-common-13.2.0" + sources."@azure/msal-common-13.2.1" ]; }) sources."@azure/msal-common-7.6.0" - (sources."@azure/msal-node-1.18.0" // { + (sources."@azure/msal-node-1.18.1" // { dependencies = [ - sources."@azure/msal-common-13.2.0" + sources."@azure/msal-common-13.2.1" ]; }) (sources."@azure/storage-blob-12.11.0" // { @@ -86317,38 +84232,34 @@ in sources."tslib-2.6.1" ]; }) - sources."@babel/code-frame-7.22.5" - sources."@babel/generator-7.22.9" + sources."@babel/code-frame-7.22.10" + sources."@babel/generator-7.22.10" sources."@babel/helper-environment-visitor-7.22.5" sources."@babel/helper-function-name-7.22.5" sources."@babel/helper-hoist-variables-7.22.5" sources."@babel/helper-split-export-declaration-7.22.6" sources."@babel/helper-string-parser-7.22.5" sources."@babel/helper-validator-identifier-7.22.5" - sources."@babel/highlight-7.22.5" + sources."@babel/highlight-7.22.10" sources."@babel/parser-7.16.4" (sources."@babel/template-7.22.5" // { dependencies = [ - sources."@babel/parser-7.22.7" + sources."@babel/parser-7.22.10" ]; }) - (sources."@babel/traverse-7.22.8" // { + (sources."@babel/traverse-7.22.10" // { dependencies = [ - sources."@babel/parser-7.22.7" + sources."@babel/parser-7.22.10" ]; }) - sources."@babel/types-7.22.5" + sources."@babel/types-7.22.10" sources."@devexpress/error-stack-parser-2.0.6" sources."@jridgewell/gen-mapping-0.3.3" - sources."@jridgewell/resolve-uri-3.1.0" + sources."@jridgewell/resolve-uri-3.1.1" sources."@jridgewell/set-array-1.1.2" sources."@jridgewell/sourcemap-codec-1.4.15" - (sources."@jridgewell/trace-mapping-0.3.18" // { - dependencies = [ - sources."@jridgewell/sourcemap-codec-1.4.14" - ]; - }) - sources."@microsoft/rush-lib-5.100.2" + sources."@jridgewell/trace-mapping-0.3.19" + sources."@microsoft/rush-lib-5.101.0" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" @@ -86384,29 +84295,30 @@ in sources."@pnpm/types-6.4.0" ]; }) - sources."@rushstack/heft-config-file-0.13.2" - (sources."@rushstack/node-core-library-3.59.6" // { + sources."@rushstack/heft-config-file-0.13.3" + (sources."@rushstack/node-core-library-3.59.7" // { dependencies = [ sources."import-lazy-4.0.0" ]; }) - sources."@rushstack/package-deps-hash-4.0.41" - (sources."@rushstack/package-extractor-0.3.11" // { + sources."@rushstack/package-deps-hash-4.0.44" + (sources."@rushstack/package-extractor-0.4.1" // { dependencies = [ sources."minimatch-3.0.8" ]; }) - (sources."@rushstack/rig-package-0.4.0" // { + (sources."@rushstack/rig-package-0.4.1" // { dependencies = [ sources."strip-json-comments-3.1.1" ]; }) - sources."@rushstack/rush-amazon-s3-build-cache-plugin-5.100.2" - sources."@rushstack/rush-azure-storage-build-cache-plugin-5.100.2" - sources."@rushstack/rush-sdk-5.100.2" - sources."@rushstack/stream-collator-4.0.259" - sources."@rushstack/terminal-0.5.34" - (sources."@rushstack/ts-command-line-4.15.1" // { + sources."@rushstack/rush-amazon-s3-build-cache-plugin-5.101.0" + sources."@rushstack/rush-azure-storage-build-cache-plugin-5.101.0" + sources."@rushstack/rush-http-build-cache-plugin-5.101.0" + sources."@rushstack/rush-sdk-5.101.0" + sources."@rushstack/stream-collator-4.0.262" + sources."@rushstack/terminal-0.5.37" + (sources."@rushstack/ts-command-line-4.15.2" // { dependencies = [ sources."argparse-1.0.10" ]; @@ -86415,29 +84327,29 @@ in sources."@szmarczak/http-timer-1.1.2" sources."@tootallnate/once-2.0.0" sources."@types/argparse-1.0.38" - sources."@types/lodash-4.14.196" + sources."@types/lodash-4.14.197" sources."@types/minimatch-3.0.5" sources."@types/minimist-1.2.2" - sources."@types/node-20.4.5" + sources."@types/node-20.4.9" sources."@types/node-fetch-2.6.2" sources."@types/normalize-package-data-2.4.1" sources."@types/parse-json-4.0.0" sources."@types/tunnel-0.0.3" (sources."@vue/compiler-core-3.3.4" // { dependencies = [ - sources."@babel/parser-7.22.7" + sources."@babel/parser-7.22.10" ]; }) sources."@vue/compiler-dom-3.3.4" (sources."@vue/compiler-sfc-3.3.4" // { dependencies = [ - sources."@babel/parser-7.22.7" + sources."@babel/parser-7.22.10" ]; }) sources."@vue/compiler-ssr-3.3.4" (sources."@vue/reactivity-transform-3.3.4" // { dependencies = [ - sources."@babel/parser-7.22.7" + sources."@babel/parser-7.22.10" ]; }) sources."@vue/shared-3.3.4" @@ -86578,7 +84490,7 @@ in sources."execa-5.1.1" sources."external-editor-3.1.0" sources."fast-deep-equal-3.1.3" - sources."fast-glob-3.3.1" + sources."fast-glob-3.2.12" sources."fastq-1.15.0" sources."figures-3.0.0" sources."fill-range-7.0.1" @@ -86602,7 +84514,7 @@ in sources."get-stream-6.0.1" sources."git-repo-info-2.1.1" sources."giturl-1.0.3" - sources."glob-7.0.6" + sources."glob-7.2.3" sources."glob-escape-0.0.2" sources."glob-parent-5.1.2" (sources."global-dirs-3.0.1" // { @@ -86647,7 +84559,7 @@ in sources."ignore-5.1.9" sources."ignore-walk-3.0.4" sources."immediate-3.0.6" - sources."immutable-4.3.1" + sources."immutable-4.3.2" sources."import-fresh-3.3.0" sources."import-lazy-2.1.0" sources."imurmurhash-0.1.4" @@ -86669,7 +84581,7 @@ in sources."is-arrayish-0.2.1" sources."is-binary-path-2.1.0" sources."is-ci-2.0.0" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" sources."is-docker-2.2.1" sources."is-es2016-keyword-1.0.0" sources."is-extglob-2.1.1" @@ -86811,11 +84723,7 @@ in sources."semver-5.7.2" ]; }) - (sources."npm-packlist-2.1.5" // { - dependencies = [ - sources."glob-7.2.3" - ]; - }) + sources."npm-packlist-2.1.5" sources."npm-run-path-4.0.1" sources."object-assign-4.1.1" sources."once-1.4.0" @@ -86901,7 +84809,6 @@ in }) (sources."read-package-json-2.1.2" // { dependencies = [ - sources."glob-7.2.3" sources."hosted-git-info-2.8.9" sources."normalize-package-data-2.5.0" sources."semver-5.7.2" @@ -86935,7 +84842,7 @@ in sources."require-from-string-2.0.2" sources."require-package-name-2.0.1" sources."requires-port-1.0.0" - sources."resolve-1.22.3" + sources."resolve-1.22.4" sources."resolve-from-4.0.0" sources."responselike-1.0.2" sources."restore-cursor-3.1.0" @@ -86946,7 +84853,7 @@ in sources."rxjs-6.6.7" sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" - sources."sass-1.64.2" + sources."sass-1.65.1" sources."sax-1.2.4" sources."scss-parser-1.0.6" sources."semver-7.5.4" @@ -87023,7 +84930,7 @@ in sources."uuid-8.3.2" sources."validate-npm-package-license-3.0.4" sources."validate-npm-package-name-3.0.0" - sources."validator-13.9.0" + sources."validator-13.11.0" sources."wcwidth-1.0.1" sources."webidl-conversions-3.0.1" sources."whatwg-url-5.0.0" @@ -87183,10 +85090,10 @@ in "@shopify/cli" = nodeEnv.buildNodePackage { name = "_at_shopify_slash_cli"; packageName = "@shopify/cli"; - version = "3.48.0"; + version = "3.48.1"; src = fetchurl { - url = "https://registry.npmjs.org/@shopify/cli/-/cli-3.48.0.tgz"; - sha512 = "0YTvLfECeAoVAx73/EcdTadgbm1vnyebuVB4qgYhPHUnG/Z+FlXOO4Y7jPP6ifALzF2BLn/A01atVh4yYFnNzQ=="; + url = "https://registry.npmjs.org/@shopify/cli/-/cli-3.48.1.tgz"; + sha512 = "34qDZxhbKMSw9Dtil/QXBeHd0A3Ecm+6f8HyXycPvRJBwNuCaUO17LhPnsgfzohwd2NIYOo3EJP4FuHNTpv2+g=="; }; dependencies = [ sources."@bugsnag/browser-7.20.2" @@ -87218,7 +85125,7 @@ in ]; }) sources."@pnpm/npm-conf-2.2.2" - (sources."@shopify/cli-kit-3.48.0" // { + (sources."@shopify/cli-kit-3.48.1" // { dependencies = [ sources."ansi-escapes-6.2.0" sources."ansi-regex-6.0.1" @@ -87234,21 +85141,21 @@ in sources."type-fest-3.13.1" ]; }) - sources."@shopify/plugin-did-you-mean-3.48.0" + sources."@shopify/plugin-did-you-mean-3.48.1" sources."@sindresorhus/is-5.6.0" - sources."@swc/core-1.3.73" - sources."@swc/core-darwin-arm64-1.3.73" - sources."@swc/core-darwin-x64-1.3.73" - sources."@swc/core-linux-arm-gnueabihf-1.3.73" - sources."@swc/core-linux-arm64-gnu-1.3.73" - sources."@swc/core-linux-arm64-musl-1.3.73" - sources."@swc/core-linux-x64-gnu-1.3.73" - sources."@swc/core-linux-x64-musl-1.3.73" - sources."@swc/core-win32-arm64-msvc-1.3.73" - sources."@swc/core-win32-ia32-msvc-1.3.73" - sources."@swc/core-win32-x64-msvc-1.3.73" + sources."@swc/core-1.3.76" + sources."@swc/core-darwin-arm64-1.3.76" + sources."@swc/core-darwin-x64-1.3.76" + sources."@swc/core-linux-arm-gnueabihf-1.3.76" + sources."@swc/core-linux-arm64-gnu-1.3.76" + sources."@swc/core-linux-arm64-musl-1.3.76" + sources."@swc/core-linux-x64-gnu-1.3.76" + sources."@swc/core-linux-x64-musl-1.3.76" + sources."@swc/core-win32-arm64-msvc-1.3.76" + sources."@swc/core-win32-ia32-msvc-1.3.76" + sources."@swc/core-win32-x64-msvc-1.3.76" sources."@swc/helpers-0.5.1" - sources."@swc/wasm-1.3.73" + sources."@swc/wasm-1.3.76" sources."@szmarczak/http-timer-5.0.1" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" @@ -87257,9 +85164,9 @@ in sources."@types/archiver-5.3.2" sources."@types/cli-progress-3.11.0" sources."@types/http-cache-semantics-4.0.1" - sources."@types/node-20.4.5" + sources."@types/node-20.4.9" sources."@types/prop-types-15.7.5" - sources."@types/react-18.2.18" + sources."@types/react-18.2.20" sources."@types/readdir-glob-1.1.1" sources."@types/scheduler-0.16.3" sources."@types/tinycolor2-1.4.3" @@ -87296,6 +85203,7 @@ in sources."balanced-match-1.0.2" sources."base64-js-1.5.1" sources."bl-4.1.0" + sources."bottleneck-2.19.5" sources."brace-expansion-2.0.1" sources."braces-3.0.2" sources."buffer-5.7.1" @@ -87499,7 +85407,7 @@ in sources."interpret-1.4.0" sources."is-arrayish-0.2.1" sources."is-ci-3.0.1" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" sources."is-docker-2.2.1" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" @@ -87650,7 +85558,7 @@ in sources."registry-auth-token-5.0.2" sources."registry-url-6.0.1" sources."require-from-string-2.0.2" - sources."resolve-1.22.3" + sources."resolve-1.22.4" sources."resolve-alpn-1.2.1" sources."responselike-3.0.0" (sources."restore-cursor-4.0.0" // { @@ -87750,7 +85658,7 @@ in sources."web-streams-polyfill-3.2.1" sources."webidl-conversions-3.0.1" sources."whatwg-url-5.0.0" - sources."when-exit-2.1.0" + sources."when-exit-2.1.1" sources."which-2.0.2" sources."widest-line-3.1.0" sources."wordwrap-1.0.0" @@ -87851,24 +85759,24 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@swc/core-1.3.73" - sources."@swc/core-darwin-arm64-1.3.73" - sources."@swc/core-darwin-x64-1.3.73" - sources."@swc/core-linux-arm-gnueabihf-1.3.73" - sources."@swc/core-linux-arm64-gnu-1.3.73" - sources."@swc/core-linux-arm64-musl-1.3.73" - sources."@swc/core-linux-x64-gnu-1.3.73" - sources."@swc/core-linux-x64-musl-1.3.73" - sources."@swc/core-win32-arm64-msvc-1.3.73" - sources."@swc/core-win32-ia32-msvc-1.3.73" - sources."@swc/core-win32-x64-msvc-1.3.73" + sources."@swc/core-1.3.76" + sources."@swc/core-darwin-arm64-1.3.76" + sources."@swc/core-darwin-x64-1.3.76" + sources."@swc/core-linux-arm-gnueabihf-1.3.76" + sources."@swc/core-linux-arm64-gnu-1.3.76" + sources."@swc/core-linux-arm64-musl-1.3.76" + sources."@swc/core-linux-x64-gnu-1.3.76" + sources."@swc/core-linux-x64-musl-1.3.76" + sources."@swc/core-win32-arm64-msvc-1.3.76" + sources."@swc/core-win32-ia32-msvc-1.3.76" + sources."@swc/core-win32-x64-msvc-1.3.76" sources."@swc/helpers-0.5.1" - sources."@swc/wasm-1.3.73" + sources."@swc/wasm-1.3.76" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.4" - sources."@types/node-20.4.5" + sources."@types/node-20.4.9" sources."acorn-8.10.0" sources."acorn-walk-8.2.0" sources."any-promise-1.3.0" @@ -87907,7 +85815,7 @@ in sources."inflight-1.0.6" sources."inherits-2.0.4" sources."is-binary-path-2.1.0" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" sources."is-extglob-2.1.1" sources."is-glob-4.0.3" sources."is-number-7.0.0" @@ -87940,7 +85848,7 @@ in sources."queue-microtask-1.2.3" sources."read-cache-1.0.0" sources."readdirp-3.6.0" - sources."resolve-1.22.3" + sources."resolve-1.22.4" sources."reusify-1.0.4" sources."run-parallel-1.2.0" sources."source-map-js-1.0.2" @@ -87993,24 +85901,24 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@swc/core-1.3.73" - sources."@swc/core-darwin-arm64-1.3.73" - sources."@swc/core-darwin-x64-1.3.73" - sources."@swc/core-linux-arm-gnueabihf-1.3.73" - sources."@swc/core-linux-arm64-gnu-1.3.73" - sources."@swc/core-linux-arm64-musl-1.3.73" - sources."@swc/core-linux-x64-gnu-1.3.73" - sources."@swc/core-linux-x64-musl-1.3.73" - sources."@swc/core-win32-arm64-msvc-1.3.73" - sources."@swc/core-win32-ia32-msvc-1.3.73" - sources."@swc/core-win32-x64-msvc-1.3.73" + sources."@swc/core-1.3.76" + sources."@swc/core-darwin-arm64-1.3.76" + sources."@swc/core-darwin-x64-1.3.76" + sources."@swc/core-linux-arm-gnueabihf-1.3.76" + sources."@swc/core-linux-arm64-gnu-1.3.76" + sources."@swc/core-linux-arm64-musl-1.3.76" + sources."@swc/core-linux-x64-gnu-1.3.76" + sources."@swc/core-linux-x64-musl-1.3.76" + sources."@swc/core-win32-arm64-msvc-1.3.76" + sources."@swc/core-win32-ia32-msvc-1.3.76" + sources."@swc/core-win32-x64-msvc-1.3.76" sources."@swc/helpers-0.5.1" - sources."@swc/wasm-1.3.73" + sources."@swc/wasm-1.3.76" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.4" - sources."@types/node-20.4.5" + sources."@types/node-20.4.9" sources."acorn-8.10.0" sources."acorn-walk-8.2.0" sources."any-promise-1.3.0" @@ -88049,7 +85957,7 @@ in sources."inflight-1.0.6" sources."inherits-2.0.4" sources."is-binary-path-2.1.0" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" sources."is-extglob-2.1.1" sources."is-glob-4.0.3" sources."is-number-7.0.0" @@ -88083,7 +85991,7 @@ in sources."queue-microtask-1.2.3" sources."read-cache-1.0.0" sources."readdirp-3.6.0" - sources."resolve-1.22.3" + sources."resolve-1.22.4" sources."reusify-1.0.4" sources."run-parallel-1.2.0" sources."source-map-js-1.0.2" @@ -88154,24 +86062,24 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@swc/core-1.3.73" - sources."@swc/core-darwin-arm64-1.3.73" - sources."@swc/core-darwin-x64-1.3.73" - sources."@swc/core-linux-arm-gnueabihf-1.3.73" - sources."@swc/core-linux-arm64-gnu-1.3.73" - sources."@swc/core-linux-arm64-musl-1.3.73" - sources."@swc/core-linux-x64-gnu-1.3.73" - sources."@swc/core-linux-x64-musl-1.3.73" - sources."@swc/core-win32-arm64-msvc-1.3.73" - sources."@swc/core-win32-ia32-msvc-1.3.73" - sources."@swc/core-win32-x64-msvc-1.3.73" + sources."@swc/core-1.3.76" + sources."@swc/core-darwin-arm64-1.3.76" + sources."@swc/core-darwin-x64-1.3.76" + sources."@swc/core-linux-arm-gnueabihf-1.3.76" + sources."@swc/core-linux-arm64-gnu-1.3.76" + sources."@swc/core-linux-arm64-musl-1.3.76" + sources."@swc/core-linux-x64-gnu-1.3.76" + sources."@swc/core-linux-x64-musl-1.3.76" + sources."@swc/core-win32-arm64-msvc-1.3.76" + sources."@swc/core-win32-ia32-msvc-1.3.76" + sources."@swc/core-win32-x64-msvc-1.3.76" sources."@swc/helpers-0.5.1" - sources."@swc/wasm-1.3.73" + sources."@swc/wasm-1.3.76" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.4" - sources."@types/node-20.4.5" + sources."@types/node-20.4.9" sources."acorn-8.10.0" sources."acorn-walk-8.2.0" sources."any-promise-1.3.0" @@ -88210,7 +86118,7 @@ in sources."inflight-1.0.6" sources."inherits-2.0.4" sources."is-binary-path-2.1.0" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" sources."is-extglob-2.1.1" sources."is-glob-4.0.3" sources."is-number-7.0.0" @@ -88243,7 +86151,7 @@ in sources."queue-microtask-1.2.3" sources."read-cache-1.0.0" sources."readdirp-3.6.0" - sources."resolve-1.22.3" + sources."resolve-1.22.4" sources."reusify-1.0.4" sources."run-parallel-1.2.0" sources."source-map-js-1.0.2" @@ -88296,24 +86204,24 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@swc/core-1.3.73" - sources."@swc/core-darwin-arm64-1.3.73" - sources."@swc/core-darwin-x64-1.3.73" - sources."@swc/core-linux-arm-gnueabihf-1.3.73" - sources."@swc/core-linux-arm64-gnu-1.3.73" - sources."@swc/core-linux-arm64-musl-1.3.73" - sources."@swc/core-linux-x64-gnu-1.3.73" - sources."@swc/core-linux-x64-musl-1.3.73" - sources."@swc/core-win32-arm64-msvc-1.3.73" - sources."@swc/core-win32-ia32-msvc-1.3.73" - sources."@swc/core-win32-x64-msvc-1.3.73" + sources."@swc/core-1.3.76" + sources."@swc/core-darwin-arm64-1.3.76" + sources."@swc/core-darwin-x64-1.3.76" + sources."@swc/core-linux-arm-gnueabihf-1.3.76" + sources."@swc/core-linux-arm64-gnu-1.3.76" + sources."@swc/core-linux-arm64-musl-1.3.76" + sources."@swc/core-linux-x64-gnu-1.3.76" + sources."@swc/core-linux-x64-musl-1.3.76" + sources."@swc/core-win32-arm64-msvc-1.3.76" + sources."@swc/core-win32-ia32-msvc-1.3.76" + sources."@swc/core-win32-x64-msvc-1.3.76" sources."@swc/helpers-0.5.1" - sources."@swc/wasm-1.3.73" + sources."@swc/wasm-1.3.76" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.4" - sources."@types/node-20.4.5" + sources."@types/node-20.4.9" sources."acorn-8.10.0" sources."acorn-walk-8.2.0" sources."any-promise-1.3.0" @@ -88352,7 +86260,7 @@ in sources."inflight-1.0.6" sources."inherits-2.0.4" sources."is-binary-path-2.1.0" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" sources."is-extglob-2.1.1" sources."is-glob-4.0.3" sources."is-number-7.0.0" @@ -88392,7 +86300,7 @@ in sources."queue-microtask-1.2.3" sources."read-cache-1.0.0" sources."readdirp-3.6.0" - sources."resolve-1.22.3" + sources."resolve-1.22.4" sources."reusify-1.0.4" sources."run-parallel-1.2.0" sources."source-map-js-1.0.2" @@ -88479,137 +86387,116 @@ in sources."tslib-1.14.1" ]; }) - sources."@aws-sdk/client-s3-3.382.0" - sources."@aws-sdk/client-sso-3.382.0" - sources."@aws-sdk/client-sso-oidc-3.382.0" - sources."@aws-sdk/client-sts-3.382.0" - sources."@aws-sdk/credential-provider-env-3.378.0" - sources."@aws-sdk/credential-provider-ini-3.382.0" - sources."@aws-sdk/credential-provider-node-3.382.0" - sources."@aws-sdk/credential-provider-process-3.378.0" - sources."@aws-sdk/credential-provider-sso-3.382.0" - sources."@aws-sdk/credential-provider-web-identity-3.378.0" - (sources."@aws-sdk/lib-storage-3.379.1" // { + sources."@aws-sdk/client-s3-3.388.0" + sources."@aws-sdk/client-sso-3.387.0" + sources."@aws-sdk/client-sts-3.388.0" + sources."@aws-sdk/credential-provider-env-3.387.0" + sources."@aws-sdk/credential-provider-ini-3.388.0" + sources."@aws-sdk/credential-provider-node-3.388.0" + sources."@aws-sdk/credential-provider-process-3.387.0" + sources."@aws-sdk/credential-provider-sso-3.388.0" + sources."@aws-sdk/credential-provider-web-identity-3.387.0" + (sources."@aws-sdk/lib-storage-3.388.0" // { dependencies = [ sources."buffer-5.6.0" ]; }) - sources."@aws-sdk/middleware-bucket-endpoint-3.378.0" - sources."@aws-sdk/middleware-expect-continue-3.378.0" - sources."@aws-sdk/middleware-flexible-checksums-3.378.0" - sources."@aws-sdk/middleware-host-header-3.379.1" - sources."@aws-sdk/middleware-location-constraint-3.379.1" - sources."@aws-sdk/middleware-logger-3.378.0" - sources."@aws-sdk/middleware-recursion-detection-3.378.0" - sources."@aws-sdk/middleware-sdk-s3-3.379.1" - sources."@aws-sdk/middleware-sdk-sts-3.379.1" - sources."@aws-sdk/middleware-signing-3.379.1" - sources."@aws-sdk/middleware-ssec-3.378.0" - sources."@aws-sdk/middleware-user-agent-3.382.0" - (sources."@aws-sdk/s3-presigned-post-3.379.1" // { - dependencies = [ - sources."@aws-sdk/client-s3-3.379.1" - sources."@aws-sdk/client-sso-3.379.1" - sources."@aws-sdk/client-sso-oidc-3.379.1" - sources."@aws-sdk/client-sts-3.379.1" - sources."@aws-sdk/credential-provider-ini-3.379.1" - sources."@aws-sdk/credential-provider-node-3.379.1" - sources."@aws-sdk/credential-provider-sso-3.379.1" - sources."@aws-sdk/middleware-user-agent-3.379.1" - sources."@aws-sdk/token-providers-3.379.1" - sources."@aws-sdk/util-endpoints-3.378.0" - ]; - }) - sources."@aws-sdk/s3-request-presigner-3.379.1" - sources."@aws-sdk/signature-v4-crt-3.378.0" - sources."@aws-sdk/signature-v4-multi-region-3.378.0" - sources."@aws-sdk/token-providers-3.382.0" - sources."@aws-sdk/types-3.378.0" + sources."@aws-sdk/middleware-bucket-endpoint-3.387.0" + sources."@aws-sdk/middleware-expect-continue-3.387.0" + sources."@aws-sdk/middleware-flexible-checksums-3.387.0" + sources."@aws-sdk/middleware-host-header-3.387.0" + sources."@aws-sdk/middleware-location-constraint-3.387.0" + sources."@aws-sdk/middleware-logger-3.387.0" + sources."@aws-sdk/middleware-recursion-detection-3.387.0" + sources."@aws-sdk/middleware-sdk-s3-3.387.0" + sources."@aws-sdk/middleware-sdk-sts-3.387.0" + sources."@aws-sdk/middleware-signing-3.387.0" + sources."@aws-sdk/middleware-ssec-3.387.0" + sources."@aws-sdk/middleware-user-agent-3.387.0" + sources."@aws-sdk/s3-presigned-post-3.388.0" + sources."@aws-sdk/s3-request-presigner-3.388.0" + sources."@aws-sdk/signature-v4-crt-3.387.0" + sources."@aws-sdk/signature-v4-multi-region-3.387.0" + sources."@aws-sdk/token-providers-3.388.0" + sources."@aws-sdk/types-3.387.0" sources."@aws-sdk/util-arn-parser-3.310.0" - sources."@aws-sdk/util-endpoints-3.382.0" - sources."@aws-sdk/util-format-url-3.378.0" + sources."@aws-sdk/util-endpoints-3.387.0" + sources."@aws-sdk/util-format-url-3.387.0" sources."@aws-sdk/util-locate-window-3.310.0" - sources."@aws-sdk/util-user-agent-browser-3.378.0" - sources."@aws-sdk/util-user-agent-node-3.378.0" + sources."@aws-sdk/util-user-agent-browser-3.387.0" + sources."@aws-sdk/util-user-agent-node-3.387.0" sources."@aws-sdk/util-utf8-browser-3.259.0" sources."@aws-sdk/xml-builder-3.310.0" sources."@httptoolkit/websocket-stream-6.0.1" sources."@redis/bloom-1.0.2" - (sources."@redis/client-1.2.0" // { - dependencies = [ - sources."yallist-4.0.0" - ]; - }) + sources."@redis/client-1.2.0" sources."@redis/graph-1.0.1" sources."@redis/json-1.0.3" sources."@redis/search-1.0.6" sources."@redis/time-series-1.0.3" sources."@sindresorhus/is-4.6.0" - sources."@smithy/abort-controller-2.0.1" + sources."@smithy/abort-controller-2.0.2" sources."@smithy/chunked-blob-reader-2.0.0" sources."@smithy/chunked-blob-reader-native-2.0.0" - sources."@smithy/config-resolver-2.0.1" - sources."@smithy/credential-provider-imds-2.0.1" - sources."@smithy/eventstream-codec-2.0.1" - sources."@smithy/eventstream-serde-browser-2.0.1" - sources."@smithy/eventstream-serde-config-resolver-2.0.1" - sources."@smithy/eventstream-serde-node-2.0.1" - sources."@smithy/eventstream-serde-universal-2.0.1" - sources."@smithy/fetch-http-handler-2.0.1" - sources."@smithy/hash-blob-browser-2.0.1" - sources."@smithy/hash-node-2.0.1" - sources."@smithy/hash-stream-node-2.0.1" - sources."@smithy/invalid-dependency-2.0.1" + sources."@smithy/config-resolver-2.0.2" + sources."@smithy/credential-provider-imds-2.0.2" + sources."@smithy/eventstream-codec-2.0.2" + sources."@smithy/eventstream-serde-browser-2.0.2" + sources."@smithy/eventstream-serde-config-resolver-2.0.2" + sources."@smithy/eventstream-serde-node-2.0.2" + sources."@smithy/eventstream-serde-universal-2.0.2" + sources."@smithy/fetch-http-handler-2.0.2" + sources."@smithy/hash-blob-browser-2.0.2" + sources."@smithy/hash-node-2.0.2" + sources."@smithy/hash-stream-node-2.0.2" + sources."@smithy/invalid-dependency-2.0.2" sources."@smithy/is-array-buffer-2.0.0" - sources."@smithy/md5-js-2.0.1" - sources."@smithy/middleware-content-length-2.0.1" - sources."@smithy/middleware-endpoint-2.0.1" - sources."@smithy/middleware-retry-2.0.1" - sources."@smithy/middleware-serde-2.0.1" + sources."@smithy/md5-js-2.0.2" + sources."@smithy/middleware-content-length-2.0.2" + sources."@smithy/middleware-endpoint-2.0.2" + sources."@smithy/middleware-retry-2.0.2" + sources."@smithy/middleware-serde-2.0.2" sources."@smithy/middleware-stack-2.0.0" - sources."@smithy/node-config-provider-2.0.1" - sources."@smithy/node-http-handler-2.0.1" - sources."@smithy/property-provider-2.0.1" - sources."@smithy/protocol-http-2.0.1" - sources."@smithy/querystring-builder-2.0.1" - sources."@smithy/querystring-parser-2.0.1" + sources."@smithy/node-config-provider-2.0.2" + sources."@smithy/node-http-handler-2.0.2" + sources."@smithy/property-provider-2.0.2" + sources."@smithy/protocol-http-2.0.2" + sources."@smithy/querystring-builder-2.0.2" + sources."@smithy/querystring-parser-2.0.2" sources."@smithy/service-error-classification-2.0.0" - sources."@smithy/shared-ini-file-loader-2.0.1" - sources."@smithy/signature-v4-2.0.1" - sources."@smithy/smithy-client-2.0.1" - sources."@smithy/types-2.0.2" - sources."@smithy/url-parser-2.0.1" + sources."@smithy/shared-ini-file-loader-2.0.2" + sources."@smithy/signature-v4-2.0.2" + sources."@smithy/smithy-client-2.0.2" + sources."@smithy/types-2.1.0" + sources."@smithy/url-parser-2.0.2" sources."@smithy/util-base64-2.0.0" sources."@smithy/util-body-length-browser-2.0.0" sources."@smithy/util-body-length-node-2.0.0" sources."@smithy/util-buffer-from-2.0.0" sources."@smithy/util-config-provider-2.0.0" - sources."@smithy/util-defaults-mode-browser-2.0.1" - sources."@smithy/util-defaults-mode-node-2.0.1" + sources."@smithy/util-defaults-mode-browser-2.0.2" + sources."@smithy/util-defaults-mode-node-2.0.2" sources."@smithy/util-hex-encoding-2.0.0" sources."@smithy/util-middleware-2.0.0" sources."@smithy/util-retry-2.0.0" - sources."@smithy/util-stream-2.0.1" + sources."@smithy/util-stream-2.0.2" sources."@smithy/util-uri-escape-2.0.0" sources."@smithy/util-utf8-2.0.0" - sources."@smithy/util-waiter-2.0.1" + sources."@smithy/util-waiter-2.0.2" sources."@szmarczak/http-timer-4.0.6" sources."@types/cacheable-request-6.0.3" sources."@types/http-cache-semantics-4.0.1" sources."@types/keyv-3.1.4" - sources."@types/node-20.4.5" + sources."@types/node-20.4.9" sources."@types/responselike-1.0.0" sources."@types/ws-8.5.5" sources."accepts-1.3.8" - sources."ansi-0.3.1" - sources."ansi-regex-2.1.1" sources."ansi-styles-4.3.0" - sources."are-we-there-yet-1.0.6" sources."array-flatten-1.1.1" sources."asn1.js-5.4.1" sources."asynckit-0.4.0" sources."atob-2.1.2" - sources."aws-crt-1.17.0" + sources."aws-crt-1.17.1" sources."axios-0.24.0" sources."balanced-match-1.0.2" sources."base64-js-1.5.1" @@ -88618,8 +86505,6 @@ in sources."safe-buffer-5.1.2" ]; }) - sources."big-integer-1.6.51" - sources."binary-0.3.0" sources."bintrees-1.0.2" (sources."bl-4.1.0" // { dependencies = [ @@ -88627,7 +86512,6 @@ in sources."readable-stream-3.6.2" ]; }) - sources."bluebird-3.7.2" sources."bn.js-4.12.0" (sources."body-parser-1.20.0" // { dependencies = [ @@ -88641,29 +86525,14 @@ in sources."buffer-6.0.3" sources."buffer-equal-constant-time-1.0.1" sources."buffer-from-1.1.2" - sources."buffer-indexof-polyfill-1.0.2" - sources."buffer-shims-1.0.0" - sources."buffers-0.1.1" sources."bufferutil-4.0.7" sources."bytes-3.1.2" sources."cacheable-lookup-5.0.4" sources."cacheable-request-7.0.4" sources."call-bind-1.0.2" - sources."camelcase-2.1.1" - sources."chainsaw-0.1.0" sources."chalk-4.1.2" - sources."chownr-1.1.4" - sources."cliui-3.2.0" sources."clone-response-1.0.3" sources."cluster-key-slot-1.1.0" - (sources."cmake-js-6.3.2" // { - dependencies = [ - sources."axios-0.21.4" - sources."semver-5.7.2" - sources."tar-4.4.19" - ]; - }) - sources."code-point-at-1.1.0" sources."color-convert-2.0.1" sources."color-name-1.1.4" sources."combine-errors-3.0.3" @@ -88692,20 +86561,16 @@ in sources."ms-2.1.2" ]; }) - sources."decamelize-1.2.0" (sources."decompress-response-6.0.0" // { dependencies = [ sources."mimic-response-3.1.0" ]; }) - sources."deep-extend-0.6.0" sources."defer-to-connect-2.0.1" sources."define-properties-1.2.0" sources."delayed-stream-1.0.0" - sources."delegates-1.0.0" sources."depd-2.0.0" sources."destroy-1.2.0" - sources."duplexer2-0.1.4" sources."duplexify-3.7.1" sources."ecdsa-sig-formatter-1.0.11" sources."ee-first-1.1.1" @@ -88754,12 +86619,8 @@ in sources."form-data-3.0.1" sources."forwarded-0.2.0" sources."fresh-0.5.2" - sources."fs-extra-5.0.0" - sources."fs-minipass-1.2.7" sources."fs.realpath-1.0.0" - sources."fstream-1.0.12" sources."function-bind-1.1.1" - sources."gauge-1.2.7" sources."generic-pool-3.8.2" sources."get-intrinsic-1.2.1" sources."get-stream-5.2.0" @@ -88776,7 +86637,6 @@ in sources."has-property-descriptors-1.0.0" sources."has-proto-1.0.1" sources."has-symbols-1.0.3" - sources."has-unicode-2.0.1" sources."hash.js-1.1.7" sources."helmet-4.6.0" (sources."help-me-3.0.0" // { @@ -88792,20 +86652,14 @@ in sources."ieee754-1.2.1" sources."inflight-1.0.6" sources."inherits-2.0.4" - sources."ini-1.3.8" - sources."invert-kv-1.0.0" sources."ipaddr.js-2.1.0" - sources."is-fullwidth-code-point-1.0.0" - sources."is-iojs-1.1.0" sources."is-nan-1.3.2" sources."is-stream-2.0.1" sources."isarray-1.0.0" - sources."isexe-2.0.0" sources."isomorphic-ws-4.0.1" sources."js-base64-3.7.5" sources."js-sdsl-4.3.0" sources."json-buffer-3.0.1" - sources."jsonfile-4.0.0" (sources."jsonwebtoken-8.5.1" // { dependencies = [ sources."jwa-1.4.1" @@ -88817,9 +86671,7 @@ in sources."jwk-to-pem-2.0.5" sources."jws-4.0.0" sources."keyv-4.5.3" - sources."lcid-1.0.0" sources."leven-2.1.0" - sources."listenercount-1.0.1" sources."lodash-4.17.21" sources."lodash._baseiteratee-4.7.0" sources."lodash._basetostring-4.12.0" @@ -88834,27 +86686,13 @@ in sources."lodash.isplainobject-4.0.6" sources."lodash.isstring-4.0.1" sources."lodash.once-4.1.1" - sources."lodash.pad-4.5.1" - sources."lodash.padend-4.6.1" - sources."lodash.padstart-4.6.1" sources."lodash.throttle-4.1.1" sources."lodash.uniqby-4.5.0" sources."long-timeout-0.1.1" sources."lowercase-keys-2.0.0" - (sources."lru-cache-6.0.0" // { - dependencies = [ - sources."yallist-4.0.0" - ]; - }) + sources."lru-cache-6.0.0" sources."luxon-1.28.1" sources."media-typer-0.3.0" - (sources."memory-stream-0.0.3" // { - dependencies = [ - sources."isarray-0.0.1" - sources."readable-stream-1.0.34" - sources."string_decoder-0.10.31" - ]; - }) sources."merge-descriptors-1.0.1" sources."methods-1.1.2" sources."mime-1.6.0" @@ -88865,9 +86703,6 @@ in sources."minimalistic-crypto-utils-1.0.1" sources."minimatch-3.1.2" sources."minimist-1.2.8" - sources."minipass-2.9.0" - sources."minizlib-1.3.3" - sources."mkdirp-0.5.6" sources."moment-2.29.4" sources."moment-timezone-0.5.43" (sources."morgan-1.10.0" // { @@ -88890,9 +86725,7 @@ in sources."node-gyp-build-4.6.0" sources."node-schedule-2.1.0" sources."normalize-url-6.1.0" - sources."npmlog-1.2.1" sources."number-allocator-1.0.14" - sources."number-is-nan-1.0.1" sources."oauth-sign-0.9.0" sources."object-assign-4.1.1" sources."object-inspect-1.12.3" @@ -88900,7 +86733,6 @@ in sources."on-finished-2.4.1" sources."on-headers-1.0.2" sources."once-1.4.0" - sources."os-locale-1.4.0" sources."p-cancelable-2.1.1" sources."parseurl-1.3.3" sources."path-is-absolute-1.0.1" @@ -88922,7 +86754,6 @@ in sources."randombytes-2.1.0" sources."range-parser-1.2.1" sources."raw-body-2.5.1" - sources."rc-1.2.8" (sources."readable-stream-2.3.8" // { dependencies = [ sources."safe-buffer-5.1.2" @@ -88937,7 +86768,6 @@ in sources."responselike-2.0.1" sources."retry-0.12.0" sources."rfdc-1.3.0" - sources."rimraf-2.7.1" sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" sources."semver-7.5.3" @@ -88953,7 +86783,6 @@ in sources."serialize-error-2.1.0" sources."serialize-javascript-6.0.1" sources."serve-static-1.15.0" - sources."setimmediate-1.0.5" sources."setprototypeof-1.2.0" sources."side-channel-1.0.4" sources."signal-exit-3.0.7" @@ -88963,7 +86792,6 @@ in sources."readable-stream-3.6.2" ]; }) - sources."splitargs-0.0.7" sources."statuses-2.0.1" (sources."stream-browserify-3.0.0" // { dependencies = [ @@ -88971,70 +86799,33 @@ in ]; }) sources."stream-shift-1.0.1" - sources."string-width-1.0.2" (sources."string_decoder-1.1.1" // { dependencies = [ sources."safe-buffer-5.1.2" ]; }) - sources."strip-ansi-3.0.1" - sources."strip-json-comments-2.0.1" sources."strnum-1.0.5" sources."supports-color-7.2.0" - (sources."tar-6.1.15" // { - dependencies = [ - sources."chownr-2.0.0" - (sources."fs-minipass-2.1.0" // { - dependencies = [ - sources."minipass-3.3.6" - ]; - }) - sources."minipass-5.0.0" - (sources."minizlib-2.1.2" // { - dependencies = [ - sources."minipass-3.3.6" - ]; - }) - sources."mkdirp-1.0.4" - sources."yallist-4.0.0" - ]; - }) sources."tdigest-0.1.2" sources."toidentifier-1.0.1" - sources."traverse-0.3.9" sources."tslib-2.6.1" - sources."tus-js-client-3.1.0" + sources."tus-js-client-3.1.1" sources."type-is-1.6.18" sources."typedarray-0.0.6" sources."uid-safe-2.1.5" - sources."universalify-0.1.2" sources."unpipe-1.0.0" - (sources."unzipper-0.8.14" // { - dependencies = [ - sources."bluebird-3.4.7" - sources."process-nextick-args-1.0.7" - sources."readable-stream-2.1.5" - sources."string_decoder-0.10.31" - ]; - }) - sources."url-join-0.0.1" sources."url-parse-1.5.10" sources."url-value-parser-2.2.0" sources."utf-8-validate-5.0.10" sources."util-deprecate-1.0.2" sources."utils-merge-1.0.1" sources."uuid-8.3.2" - sources."validator-13.9.0" + sources."validator-13.11.0" sources."vary-1.1.2" - sources."which-1.3.1" - sources."window-size-0.1.4" - sources."wrap-ansi-2.1.0" sources."wrappy-1.0.2" sources."ws-8.8.1" sources."xtend-4.0.2" - sources."y18n-3.2.2" - sources."yallist-3.1.1" - sources."yargs-3.32.0" + sources."yallist-4.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -89055,7 +86846,7 @@ in sha512 = "+/kSxBAkZbeVBePoG2qRSvCkVIslk1dNlU5wQHAcbzOFTi7pEQR6C+kjoj94I+vGXVGMFfDwOYm07sPsd8dM6w=="; }; dependencies = [ - sources."@babel/parser-7.22.7" + sources."@babel/parser-7.22.10" sources."@emmetio/abbreviation-2.3.3" sources."@emmetio/css-abbreviation-2.1.8" sources."@emmetio/scanner-1.0.4" @@ -89189,24 +86980,33 @@ in sources."@apollo/utils.usagereporting-1.0.1" sources."@apollographql/apollo-tools-0.5.4" sources."@apollographql/graphql-playground-html-1.6.29" - sources."@babel/code-frame-7.22.5" + (sources."@babel/code-frame-7.22.10" // { + dependencies = [ + sources."ansi-styles-3.2.1" + sources."chalk-2.4.2" + sources."color-convert-1.9.3" + sources."color-name-1.1.3" + sources."has-flag-3.0.0" + sources."supports-color-5.5.0" + ]; + }) sources."@babel/compat-data-7.22.9" - (sources."@babel/core-7.22.9" // { + (sources."@babel/core-7.22.10" // { dependencies = [ sources."semver-6.3.1" ]; }) - sources."@babel/generator-7.22.9" + sources."@babel/generator-7.22.10" sources."@babel/helper-annotate-as-pure-7.22.5" - sources."@babel/helper-builder-binary-assignment-operator-visitor-7.22.5" - (sources."@babel/helper-compilation-targets-7.22.9" // { + sources."@babel/helper-builder-binary-assignment-operator-visitor-7.22.10" + (sources."@babel/helper-compilation-targets-7.22.10" // { dependencies = [ sources."lru-cache-5.1.1" sources."semver-6.3.1" sources."yallist-3.1.1" ]; }) - (sources."@babel/helper-create-class-features-plugin-7.22.9" // { + (sources."@babel/helper-create-class-features-plugin-7.22.10" // { dependencies = [ sources."semver-6.3.1" ]; @@ -89233,9 +87033,9 @@ in sources."@babel/helper-string-parser-7.22.5" sources."@babel/helper-validator-identifier-7.22.5" sources."@babel/helper-validator-option-7.22.5" - sources."@babel/helper-wrap-function-7.22.9" - sources."@babel/helpers-7.22.6" - (sources."@babel/highlight-7.22.5" // { + sources."@babel/helper-wrap-function-7.22.10" + sources."@babel/helpers-7.22.10" + (sources."@babel/highlight-7.22.10" // { dependencies = [ sources."ansi-styles-3.2.1" sources."chalk-2.4.2" @@ -89245,14 +87045,13 @@ in sources."supports-color-5.5.0" ]; }) - sources."@babel/parser-7.22.7" + sources."@babel/parser-7.22.10" sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.22.5" sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.22.5" sources."@babel/plugin-proposal-class-properties-7.18.6" sources."@babel/plugin-proposal-nullish-coalescing-operator-7.18.6" sources."@babel/plugin-proposal-optional-chaining-7.21.0" sources."@babel/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2" - sources."@babel/plugin-proposal-unicode-property-regex-7.18.6" sources."@babel/plugin-syntax-async-generators-7.8.4" sources."@babel/plugin-syntax-class-properties-7.12.13" sources."@babel/plugin-syntax-class-static-block-7.14.5" @@ -89275,15 +87074,15 @@ in sources."@babel/plugin-syntax-typescript-7.22.5" sources."@babel/plugin-syntax-unicode-sets-regex-7.18.6" sources."@babel/plugin-transform-arrow-functions-7.22.5" - sources."@babel/plugin-transform-async-generator-functions-7.22.7" + sources."@babel/plugin-transform-async-generator-functions-7.22.10" sources."@babel/plugin-transform-async-to-generator-7.22.5" sources."@babel/plugin-transform-block-scoped-functions-7.22.5" - sources."@babel/plugin-transform-block-scoping-7.22.5" + sources."@babel/plugin-transform-block-scoping-7.22.10" sources."@babel/plugin-transform-class-properties-7.22.5" sources."@babel/plugin-transform-class-static-block-7.22.5" sources."@babel/plugin-transform-classes-7.22.6" sources."@babel/plugin-transform-computed-properties-7.22.5" - sources."@babel/plugin-transform-destructuring-7.22.5" + sources."@babel/plugin-transform-destructuring-7.22.10" sources."@babel/plugin-transform-dotall-regex-7.22.5" sources."@babel/plugin-transform-duplicate-keys-7.22.5" sources."@babel/plugin-transform-dynamic-import-7.22.5" @@ -89307,30 +87106,30 @@ in sources."@babel/plugin-transform-object-rest-spread-7.22.5" sources."@babel/plugin-transform-object-super-7.22.5" sources."@babel/plugin-transform-optional-catch-binding-7.22.5" - sources."@babel/plugin-transform-optional-chaining-7.22.6" + sources."@babel/plugin-transform-optional-chaining-7.22.10" sources."@babel/plugin-transform-parameters-7.22.5" sources."@babel/plugin-transform-private-methods-7.22.5" sources."@babel/plugin-transform-private-property-in-object-7.22.5" sources."@babel/plugin-transform-property-literals-7.22.5" - sources."@babel/plugin-transform-regenerator-7.22.5" + sources."@babel/plugin-transform-regenerator-7.22.10" sources."@babel/plugin-transform-reserved-words-7.22.5" sources."@babel/plugin-transform-shorthand-properties-7.22.5" sources."@babel/plugin-transform-spread-7.22.5" sources."@babel/plugin-transform-sticky-regex-7.22.5" sources."@babel/plugin-transform-template-literals-7.22.5" sources."@babel/plugin-transform-typeof-symbol-7.22.5" - sources."@babel/plugin-transform-typescript-7.22.9" - sources."@babel/plugin-transform-unicode-escapes-7.22.5" + sources."@babel/plugin-transform-typescript-7.22.10" + sources."@babel/plugin-transform-unicode-escapes-7.22.10" sources."@babel/plugin-transform-unicode-property-regex-7.22.5" sources."@babel/plugin-transform-unicode-regex-7.22.5" sources."@babel/plugin-transform-unicode-sets-regex-7.22.5" - (sources."@babel/preset-env-7.22.9" // { + (sources."@babel/preset-env-7.22.10" // { dependencies = [ sources."semver-6.3.1" ]; }) sources."@babel/preset-flow-7.22.5" - sources."@babel/preset-modules-0.1.6" + sources."@babel/preset-modules-0.1.6-no-external-plugins" sources."@babel/preset-typescript-7.22.5" (sources."@babel/register-7.22.5" // { dependencies = [ @@ -89340,10 +87139,10 @@ in ]; }) sources."@babel/regjsgen-0.8.0" - sources."@babel/runtime-7.22.6" + sources."@babel/runtime-7.22.10" sources."@babel/template-7.22.5" - sources."@babel/traverse-7.22.8" - sources."@babel/types-7.22.5" + sources."@babel/traverse-7.22.10" + sources."@babel/types-7.22.10" sources."@graphql-tools/merge-8.3.1" (sources."@graphql-tools/mock-8.7.20" // { dependencies = [ @@ -89360,14 +87159,10 @@ in sources."@hapi/topo-5.1.0" sources."@josephg/resolvable-1.0.1" sources."@jridgewell/gen-mapping-0.3.3" - sources."@jridgewell/resolve-uri-3.1.0" + sources."@jridgewell/resolve-uri-3.1.1" sources."@jridgewell/set-array-1.1.2" sources."@jridgewell/sourcemap-codec-1.4.15" - (sources."@jridgewell/trace-mapping-0.3.18" // { - dependencies = [ - sources."@jridgewell/sourcemap-codec-1.4.14" - ]; - }) + sources."@jridgewell/trace-mapping-0.3.19" sources."@node-ipc/js-queue-2.0.3" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" @@ -89403,7 +87198,7 @@ in }) sources."@types/long-4.0.2" sources."@types/mime-3.0.1" - sources."@types/node-20.4.5" + sources."@types/node-20.4.9" sources."@types/normalize-package-data-2.4.1" sources."@types/qs-6.9.7" sources."@types/range-parser-1.2.4" @@ -89512,7 +87307,7 @@ in }) sources."call-bind-1.0.2" sources."camelcase-6.3.0" - sources."caniuse-lite-1.0.30001518" + sources."caniuse-lite-1.0.30001519" sources."caw-2.0.1" sources."chalk-4.1.2" sources."chardet-0.7.0" @@ -89622,7 +87417,7 @@ in sources."easy-stack-1.0.1" sources."ee-first-1.1.1" sources."ejs-3.1.9" - sources."electron-to-chromium-1.4.480" + sources."electron-to-chromium-1.4.490" sources."emoji-regex-8.0.0" sources."encodeurl-1.0.2" sources."encoding-0.1.13" @@ -89733,7 +87528,7 @@ in sources."which-2.0.2" ]; }) - sources."flow-parser-0.213.1" + sources."flow-parser-0.214.0" sources."for-in-1.0.2" sources."forwarded-0.2.0" sources."fragment-cache-0.2.1" @@ -89808,13 +87603,17 @@ in sources."inflight-1.0.6" sources."inherits-2.0.4" sources."ini-2.0.0" - sources."inquirer-8.2.5" + (sources."inquirer-8.2.6" // { + dependencies = [ + sources."wrap-ansi-6.2.0" + ]; + }) sources."into-stream-3.1.0" sources."ipaddr.js-1.9.1" sources."is-accessor-descriptor-1.0.0" sources."is-arrayish-0.2.1" sources."is-buffer-1.1.6" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" sources."is-data-descriptor-1.0.0" sources."is-descriptor-1.0.2" sources."is-docker-2.2.1" @@ -90047,8 +87846,8 @@ in sources."recast-0.20.5" sources."regenerate-1.4.2" sources."regenerate-unicode-properties-10.1.0" - sources."regenerator-runtime-0.13.11" - sources."regenerator-transform-0.15.1" + sources."regenerator-runtime-0.14.0" + sources."regenerator-transform-0.15.2" sources."regex-not-1.0.2" sources."regexpu-core-5.3.2" (sources."regjsparser-0.9.1" // { @@ -90059,7 +87858,7 @@ in sources."repeat-element-1.1.4" sources."repeat-string-1.6.1" sources."require-directory-2.1.1" - sources."resolve-1.22.3" + sources."resolve-1.22.4" sources."resolve-url-0.2.1" sources."responselike-1.0.2" sources."restore-cursor-3.1.0" @@ -90435,23 +88234,19 @@ in sha512 = "7SWOLN+1eZ5e9gohQPVdA8XQstGIYei/70T5kmLP6vC41zy8BBYNt35OgLZmbpg3iOQ1vWT17ZMhVikSJySSRg=="; }; dependencies = [ - sources."@babel/code-frame-7.22.5" - sources."@babel/generator-7.22.9" + sources."@babel/code-frame-7.22.10" + sources."@babel/generator-7.22.10" sources."@babel/helper-string-parser-7.22.5" sources."@babel/helper-validator-identifier-7.22.5" - sources."@babel/highlight-7.22.5" - sources."@babel/parser-7.22.7" + sources."@babel/highlight-7.22.10" + sources."@babel/parser-7.22.10" sources."@babel/template-7.22.5" - sources."@babel/types-7.22.5" + sources."@babel/types-7.22.10" sources."@jridgewell/gen-mapping-0.3.3" - sources."@jridgewell/resolve-uri-3.1.0" + sources."@jridgewell/resolve-uri-3.1.1" sources."@jridgewell/set-array-1.1.2" sources."@jridgewell/sourcemap-codec-1.4.15" - (sources."@jridgewell/trace-mapping-0.3.18" // { - dependencies = [ - sources."@jridgewell/sourcemap-codec-1.4.14" - ]; - }) + sources."@jridgewell/trace-mapping-0.3.19" sources."@webassemblyjs/ast-1.11.1" sources."@webassemblyjs/floating-point-hex-parser-1.11.1" sources."@webassemblyjs/helper-api-error-1.11.1" @@ -90524,9 +88319,9 @@ in sha512 = "YbVCn9CZZDtH5wzGYt0mTergstBhGmm9jnGaG4UmO2nCQLD6swj5eqHIHnNKWAh62EtwItMai3dPNFbux6KOHw=="; }; dependencies = [ - sources."@babel/code-frame-7.22.5" + sources."@babel/code-frame-7.22.10" sources."@babel/helper-validator-identifier-7.22.5" - sources."@babel/highlight-7.22.5" + sources."@babel/highlight-7.22.10" sources."@isaacs/cliui-8.0.2" sources."@npmcli/config-6.2.1" (sources."@npmcli/map-workspaces-3.0.4" // { @@ -90536,7 +88331,6 @@ in ]; }) sources."@npmcli/name-from-folder-2.0.0" - sources."@pkgjs/parseargs-0.11.0" sources."@pnpm/config.env-replace-1.1.0" (sources."@pnpm/network.ca-file-1.0.2" // { dependencies = [ @@ -90558,7 +88352,7 @@ in sources."@types/minimist-1.2.2" sources."@types/ms-0.7.31" sources."@types/nlcst-1.0.1" - sources."@types/node-18.17.1" + sources."@types/node-18.17.4" sources."@types/normalize-package-data-2.4.1" sources."@types/supports-color-8.1.1" sources."@types/unist-2.0.7" @@ -90710,7 +88504,7 @@ in sources."is-arrayish-0.2.1" sources."is-buffer-2.0.5" sources."is-ci-3.0.1" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" sources."is-decimal-2.0.1" sources."is-empty-1.2.0" sources."is-fullwidth-code-point-3.0.0" @@ -90724,7 +88518,7 @@ in sources."is-yarn-global-0.4.1" sources."isarray-0.0.1" sources."isexe-2.0.0" - sources."jackspeak-2.2.2" + sources."jackspeak-2.2.3" sources."js-tokens-4.0.0" sources."json-buffer-3.0.1" sources."json-parse-even-better-errors-2.3.1" @@ -91064,11 +88858,11 @@ in }; dependencies = [ sources."@ampproject/remapping-2.2.1" - sources."@babel/code-frame-7.22.5" + sources."@babel/code-frame-7.22.10" sources."@babel/compat-data-7.22.9" - sources."@babel/core-7.22.9" - sources."@babel/generator-7.22.9" - sources."@babel/helper-compilation-targets-7.22.9" + sources."@babel/core-7.22.10" + sources."@babel/generator-7.22.10" + sources."@babel/helper-compilation-targets-7.22.10" sources."@babel/helper-environment-visitor-7.22.5" sources."@babel/helper-function-name-7.22.5" sources."@babel/helper-hoist-variables-7.22.5" @@ -91079,21 +88873,17 @@ in sources."@babel/helper-string-parser-7.22.5" sources."@babel/helper-validator-identifier-7.22.5" sources."@babel/helper-validator-option-7.22.5" - sources."@babel/helpers-7.22.6" - sources."@babel/highlight-7.22.5" - sources."@babel/parser-7.22.7" + sources."@babel/helpers-7.22.10" + sources."@babel/highlight-7.22.10" + sources."@babel/parser-7.22.10" sources."@babel/template-7.22.5" - sources."@babel/traverse-7.22.8" - sources."@babel/types-7.22.5" + sources."@babel/traverse-7.22.10" + sources."@babel/types-7.22.10" sources."@jridgewell/gen-mapping-0.3.3" - sources."@jridgewell/resolve-uri-3.1.0" + sources."@jridgewell/resolve-uri-3.1.1" sources."@jridgewell/set-array-1.1.2" sources."@jridgewell/sourcemap-codec-1.4.15" - (sources."@jridgewell/trace-mapping-0.3.18" // { - dependencies = [ - sources."@jridgewell/sourcemap-codec-1.4.14" - ]; - }) + sources."@jridgewell/trace-mapping-0.3.19" sources."@xmldom/xmldom-0.8.10" sources."JSV-4.0.2" sources."ansi-styles-3.2.1" @@ -91102,7 +88892,7 @@ in sources."balanced-match-1.0.2" sources."brace-expansion-2.0.1" sources."browserslist-4.21.10" - sources."caniuse-lite-1.0.30001518" + sources."caniuse-lite-1.0.30001519" sources."chalk-2.4.2" sources."color-convert-1.9.3" sources."color-name-1.1.3" @@ -91112,7 +88902,7 @@ in sources."convert-source-map-1.9.0" sources."debug-4.3.4" sources."ejs-3.1.6" - sources."electron-to-chromium-1.4.480" + sources."electron-to-chromium-1.4.490" sources."ensure-posix-path-1.1.1" sources."escalade-3.1.1" sources."escape-string-regexp-1.0.5" @@ -91143,7 +88933,7 @@ in sources."homedir-polyfill-1.0.3" sources."ini-1.3.8" sources."is-3.3.0" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" sources."is-windows-1.0.2" sources."isexe-2.0.0" (sources."jake-10.8.7" // { @@ -91183,7 +88973,7 @@ in sources."path-parse-1.0.7" sources."picocolors-1.0.0" sources."pkginfo-0.4.1" - sources."resolve-1.22.3" + sources."resolve-1.22.4" sources."sax-0.5.8" sources."semver-6.3.1" sources."source-map-0.7.4" @@ -91221,7 +89011,7 @@ in dependencies = [ sources."@types/glob-7.2.0" sources."@types/minimatch-5.1.2" - sources."@types/node-20.4.5" + sources."@types/node-20.4.9" sources."balanced-match-1.0.2" sources."brace-expansion-1.1.11" sources."chromium-pickle-js-0.2.0" @@ -91306,8 +89096,8 @@ in }; dependencies = [ sources."browserslist-4.21.10" - sources."caniuse-lite-1.0.30001518" - sources."electron-to-chromium-1.4.480" + sources."caniuse-lite-1.0.30001519" + sources."electron-to-chromium-1.4.490" sources."escalade-3.1.1" sources."fraction.js-4.2.0" sources."nanoid-3.3.6" @@ -91340,7 +89130,7 @@ in dependencies = [ sources."commander-7.2.0" sources."encoding-0.1.13" - sources."handlebars-4.7.7" + sources."handlebars-4.7.8" sources."iconv-lite-0.6.3" sources."lru-cache-6.0.0" sources."minimist-1.2.8" @@ -91377,7 +89167,7 @@ in }; dependencies = [ sources."@tootallnate/once-1.1.2" - sources."@types/node-20.4.5" + sources."@types/node-20.4.9" sources."@types/yauzl-2.10.0" sources."acorn-8.10.0" sources."acorn-walk-8.2.0" @@ -91387,7 +89177,7 @@ in sources."ansi-styles-4.3.0" sources."ast-types-0.13.4" sources."available-typed-arrays-1.0.5" - (sources."aws-sdk-2.1427.0" // { + (sources."aws-sdk-2.1433.0" // { dependencies = [ sources."uuid-8.0.0" ]; @@ -91488,7 +89278,7 @@ in sources."inflight-1.0.6" sources."inherits-2.0.4" sources."ini-3.0.1" - sources."inquirer-8.2.5" + sources."inquirer-8.2.6" sources."ip-1.1.8" sources."is-arguments-1.1.1" sources."is-callable-1.2.7" @@ -91590,7 +89380,7 @@ in sources."whatwg-url-5.0.0" sources."which-typed-array-1.1.11" sources."word-wrap-1.2.5" - sources."wrap-ansi-7.0.0" + sources."wrap-ansi-6.2.0" sources."wrappy-1.0.2" sources."ws-8.5.0" sources."xml2js-0.5.0" @@ -91612,10 +89402,10 @@ in aws-cdk = nodeEnv.buildNodePackage { name = "aws-cdk"; packageName = "aws-cdk"; - version = "2.89.0"; + version = "2.90.0"; src = fetchurl { - url = "https://registry.npmjs.org/aws-cdk/-/aws-cdk-2.89.0.tgz"; - sha512 = "4FF/5jNd86x9iSk/xQB1KRFWkhMWd/Z7x7tOwztgZYDj6aYR/3Xru7pb2BD6s6Oli/eeQaXTG11+eY9zdrJIQA=="; + url = "https://registry.npmjs.org/aws-cdk/-/aws-cdk-2.90.0.tgz"; + sha512 = "6u9pCZeDyIo03tQBdutLD723tuHBsbOQDor72FRxq1uNFWRbVCmZ8ROk2/APAjYJbl4BK2lW9SEgAb8hapaybA=="; }; dependencies = [ sources."fsevents-2.3.2" @@ -91639,9 +89429,18 @@ in sha512 = "s4peLfrUG1sSt/i7h5CbezkYxyVWGylL1xbntB2JMzu4x3CVCGHtzZ5kQygMxMKYsBReVr8PcXVJ2v+Jg7jSvA=="; }; dependencies = [ - sources."@babel/code-frame-7.22.5" + (sources."@babel/code-frame-7.22.10" // { + dependencies = [ + sources."ansi-styles-3.2.1" + sources."chalk-2.4.2" + sources."color-convert-1.9.3" + sources."color-name-1.1.3" + sources."has-flag-3.0.0" + sources."supports-color-5.5.0" + ]; + }) sources."@babel/helper-validator-identifier-7.22.5" - (sources."@babel/highlight-7.22.5" // { + (sources."@babel/highlight-7.22.10" // { dependencies = [ sources."ansi-styles-3.2.1" sources."chalk-2.4.2" @@ -91766,7 +89565,7 @@ in sources."is-alphanumerical-1.0.4" sources."is-arrayish-0.2.1" sources."is-buffer-2.0.5" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" sources."is-decimal-1.0.4" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" @@ -91932,7 +89731,7 @@ in sources."remark-parse-9.0.0" sources."remark-stringify-9.0.1" sources."repeat-string-1.6.1" - sources."resolve-1.22.3" + sources."resolve-1.22.4" sources."responselike-1.0.2" sources."restore-cursor-3.1.0" sources."reusify-1.0.4" @@ -92167,7 +89966,7 @@ in sources."inherits-2.0.4" sources."intersect-1.0.1" sources."is-arrayish-0.2.1" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" sources."is-finite-1.1.0" sources."is-plain-obj-1.1.0" sources."is-utf8-0.2.1" @@ -92218,7 +90017,7 @@ in sources."read-pkg-up-1.0.1" sources."redent-1.0.0" sources."repeating-2.0.1" - sources."resolve-1.22.3" + sources."resolve-1.22.4" (sources."rimraf-2.7.1" // { dependencies = [ sources."glob-7.2.3" @@ -92367,7 +90166,7 @@ in sources."is-arguments-1.1.1" sources."is-buffer-1.1.6" sources."is-callable-1.2.7" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" sources."is-generator-function-1.0.10" sources."is-typed-array-1.1.12" sources."isarray-1.0.0" @@ -92417,7 +90216,7 @@ in sources."string_decoder-1.1.1" ]; }) - sources."resolve-1.22.3" + sources."resolve-1.22.4" sources."ripemd160-2.0.2" sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" @@ -92480,7 +90279,7 @@ in sources."@socket.io/component-emitter-3.1.0" sources."@types/cookie-0.4.1" sources."@types/cors-2.8.13" - sources."@types/node-20.4.5" + sources."@types/node-20.4.9" sources."accepts-1.3.8" sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" @@ -92524,9 +90323,9 @@ in sources."ee-first-1.1.1" sources."emoji-regex-8.0.0" sources."encodeurl-1.0.2" - sources."engine.io-6.5.1" - sources."engine.io-client-6.5.1" - sources."engine.io-parser-5.1.0" + sources."engine.io-6.5.2" + sources."engine.io-client-6.5.2" + sources."engine.io-parser-5.2.1" sources."escalade-3.1.1" sources."escape-html-1.0.3" sources."etag-1.8.1" @@ -92627,9 +90426,9 @@ in sources."serve-static-1.13.2" sources."server-destroy-1.0.1" sources."setprototypeof-1.2.0" - sources."socket.io-4.7.1" + sources."socket.io-4.7.2" sources."socket.io-adapter-2.5.2" - sources."socket.io-client-4.7.1" + sources."socket.io-client-4.7.2" sources."socket.io-parser-4.2.4" sources."statuses-1.3.1" sources."stream-throttle-0.1.3" @@ -92715,48 +90514,47 @@ in sources."tslib-1.14.1" ]; }) - sources."@aws-sdk/client-cognito-identity-3.382.0" - sources."@aws-sdk/client-s3-3.382.0" - sources."@aws-sdk/client-sso-3.382.0" - sources."@aws-sdk/client-sso-oidc-3.382.0" - sources."@aws-sdk/client-sts-3.382.0" - sources."@aws-sdk/credential-provider-cognito-identity-3.382.0" - sources."@aws-sdk/credential-provider-env-3.378.0" - sources."@aws-sdk/credential-provider-ini-3.382.0" - sources."@aws-sdk/credential-provider-node-3.382.0" - sources."@aws-sdk/credential-provider-process-3.378.0" - sources."@aws-sdk/credential-provider-sso-3.382.0" - sources."@aws-sdk/credential-provider-web-identity-3.378.0" - sources."@aws-sdk/credential-providers-3.382.0" - sources."@aws-sdk/middleware-bucket-endpoint-3.378.0" - sources."@aws-sdk/middleware-expect-continue-3.378.0" - sources."@aws-sdk/middleware-flexible-checksums-3.378.0" - sources."@aws-sdk/middleware-host-header-3.379.1" - sources."@aws-sdk/middleware-location-constraint-3.379.1" - sources."@aws-sdk/middleware-logger-3.378.0" - sources."@aws-sdk/middleware-recursion-detection-3.378.0" - sources."@aws-sdk/middleware-sdk-s3-3.379.1" - sources."@aws-sdk/middleware-sdk-sts-3.379.1" - sources."@aws-sdk/middleware-signing-3.379.1" - sources."@aws-sdk/middleware-ssec-3.378.0" - sources."@aws-sdk/middleware-user-agent-3.382.0" - sources."@aws-sdk/signature-v4-crt-3.378.0" - sources."@aws-sdk/signature-v4-multi-region-3.378.0" - sources."@aws-sdk/token-providers-3.382.0" - sources."@aws-sdk/types-3.378.0" + sources."@aws-sdk/client-cognito-identity-3.388.0" + sources."@aws-sdk/client-s3-3.388.0" + sources."@aws-sdk/client-sso-3.387.0" + sources."@aws-sdk/client-sts-3.388.0" + sources."@aws-sdk/credential-provider-cognito-identity-3.388.0" + sources."@aws-sdk/credential-provider-env-3.387.0" + sources."@aws-sdk/credential-provider-ini-3.388.0" + sources."@aws-sdk/credential-provider-node-3.388.0" + sources."@aws-sdk/credential-provider-process-3.387.0" + sources."@aws-sdk/credential-provider-sso-3.388.0" + sources."@aws-sdk/credential-provider-web-identity-3.387.0" + sources."@aws-sdk/credential-providers-3.388.0" + sources."@aws-sdk/middleware-bucket-endpoint-3.387.0" + sources."@aws-sdk/middleware-expect-continue-3.387.0" + sources."@aws-sdk/middleware-flexible-checksums-3.387.0" + sources."@aws-sdk/middleware-host-header-3.387.0" + sources."@aws-sdk/middleware-location-constraint-3.387.0" + sources."@aws-sdk/middleware-logger-3.387.0" + sources."@aws-sdk/middleware-recursion-detection-3.387.0" + sources."@aws-sdk/middleware-sdk-s3-3.387.0" + sources."@aws-sdk/middleware-sdk-sts-3.387.0" + sources."@aws-sdk/middleware-signing-3.387.0" + sources."@aws-sdk/middleware-ssec-3.387.0" + sources."@aws-sdk/middleware-user-agent-3.387.0" + sources."@aws-sdk/signature-v4-crt-3.387.0" + sources."@aws-sdk/signature-v4-multi-region-3.387.0" + sources."@aws-sdk/token-providers-3.388.0" + sources."@aws-sdk/types-3.387.0" sources."@aws-sdk/util-arn-parser-3.310.0" - sources."@aws-sdk/util-endpoints-3.382.0" + sources."@aws-sdk/util-endpoints-3.387.0" sources."@aws-sdk/util-locate-window-3.310.0" - sources."@aws-sdk/util-user-agent-browser-3.378.0" - sources."@aws-sdk/util-user-agent-node-3.378.0" + sources."@aws-sdk/util-user-agent-browser-3.387.0" + sources."@aws-sdk/util-user-agent-node-3.387.0" sources."@aws-sdk/util-utf8-browser-3.259.0" sources."@aws-sdk/xml-builder-3.310.0" - sources."@babel/code-frame-7.22.5" + sources."@babel/code-frame-7.22.10" sources."@babel/helper-string-parser-7.22.5" sources."@babel/helper-validator-identifier-7.22.5" - sources."@babel/highlight-7.22.5" - sources."@babel/parser-7.22.7" - sources."@babel/types-7.22.5" + sources."@babel/highlight-7.22.10" + sources."@babel/parser-7.22.10" + sources."@babel/types-7.22.10" sources."@httptoolkit/websocket-stream-6.0.1" (sources."@janoside/app-utils-git+https://github.com/janoside/app-utils#0f52c7028951c1c2b67b06b2ce50fd74001bba93" // { dependencies = [ @@ -92790,67 +90588,63 @@ in sources."@noble/hashes-1.3.1" sources."@popperjs/core-2.11.8" sources."@redis/bloom-1.2.0" - (sources."@redis/client-1.5.8" // { - dependencies = [ - sources."yallist-4.0.0" - ]; - }) + sources."@redis/client-1.5.8" sources."@redis/graph-1.1.0" sources."@redis/json-1.0.4" sources."@redis/search-1.1.3" sources."@redis/time-series-1.0.4" sources."@scure/base-1.1.1" - sources."@smithy/abort-controller-2.0.1" + sources."@smithy/abort-controller-2.0.2" sources."@smithy/chunked-blob-reader-2.0.0" sources."@smithy/chunked-blob-reader-native-2.0.0" - sources."@smithy/config-resolver-2.0.1" - sources."@smithy/credential-provider-imds-2.0.1" - sources."@smithy/eventstream-codec-2.0.1" - sources."@smithy/eventstream-serde-browser-2.0.1" - sources."@smithy/eventstream-serde-config-resolver-2.0.1" - sources."@smithy/eventstream-serde-node-2.0.1" - sources."@smithy/eventstream-serde-universal-2.0.1" - sources."@smithy/fetch-http-handler-2.0.1" - sources."@smithy/hash-blob-browser-2.0.1" - sources."@smithy/hash-node-2.0.1" - sources."@smithy/hash-stream-node-2.0.1" - sources."@smithy/invalid-dependency-2.0.1" + sources."@smithy/config-resolver-2.0.2" + sources."@smithy/credential-provider-imds-2.0.2" + sources."@smithy/eventstream-codec-2.0.2" + sources."@smithy/eventstream-serde-browser-2.0.2" + sources."@smithy/eventstream-serde-config-resolver-2.0.2" + sources."@smithy/eventstream-serde-node-2.0.2" + sources."@smithy/eventstream-serde-universal-2.0.2" + sources."@smithy/fetch-http-handler-2.0.2" + sources."@smithy/hash-blob-browser-2.0.2" + sources."@smithy/hash-node-2.0.2" + sources."@smithy/hash-stream-node-2.0.2" + sources."@smithy/invalid-dependency-2.0.2" sources."@smithy/is-array-buffer-2.0.0" - sources."@smithy/md5-js-2.0.1" - sources."@smithy/middleware-content-length-2.0.1" - sources."@smithy/middleware-endpoint-2.0.1" - sources."@smithy/middleware-retry-2.0.1" - sources."@smithy/middleware-serde-2.0.1" + sources."@smithy/md5-js-2.0.2" + sources."@smithy/middleware-content-length-2.0.2" + sources."@smithy/middleware-endpoint-2.0.2" + sources."@smithy/middleware-retry-2.0.2" + sources."@smithy/middleware-serde-2.0.2" sources."@smithy/middleware-stack-2.0.0" - sources."@smithy/node-config-provider-2.0.1" - sources."@smithy/node-http-handler-2.0.1" - sources."@smithy/property-provider-2.0.1" - sources."@smithy/protocol-http-2.0.1" - sources."@smithy/querystring-builder-2.0.1" - sources."@smithy/querystring-parser-2.0.1" + sources."@smithy/node-config-provider-2.0.2" + sources."@smithy/node-http-handler-2.0.2" + sources."@smithy/property-provider-2.0.2" + sources."@smithy/protocol-http-2.0.2" + sources."@smithy/querystring-builder-2.0.2" + sources."@smithy/querystring-parser-2.0.2" sources."@smithy/service-error-classification-2.0.0" - sources."@smithy/shared-ini-file-loader-2.0.1" - sources."@smithy/signature-v4-2.0.1" - sources."@smithy/smithy-client-2.0.1" - sources."@smithy/types-2.0.2" - sources."@smithy/url-parser-2.0.1" + sources."@smithy/shared-ini-file-loader-2.0.2" + sources."@smithy/signature-v4-2.0.2" + sources."@smithy/smithy-client-2.0.2" + sources."@smithy/types-2.1.0" + sources."@smithy/url-parser-2.0.2" sources."@smithy/util-base64-2.0.0" sources."@smithy/util-body-length-browser-2.0.0" sources."@smithy/util-body-length-node-2.0.0" sources."@smithy/util-buffer-from-2.0.0" sources."@smithy/util-config-provider-2.0.0" - sources."@smithy/util-defaults-mode-browser-2.0.1" - sources."@smithy/util-defaults-mode-node-2.0.1" + sources."@smithy/util-defaults-mode-browser-2.0.2" + sources."@smithy/util-defaults-mode-node-2.0.2" sources."@smithy/util-hex-encoding-2.0.0" sources."@smithy/util-middleware-2.0.0" sources."@smithy/util-retry-2.0.0" - sources."@smithy/util-stream-2.0.1" + sources."@smithy/util-stream-2.0.2" sources."@smithy/util-uri-escape-2.0.0" sources."@smithy/util-utf8-2.0.0" - sources."@smithy/util-waiter-2.0.1" + sources."@smithy/util-waiter-2.0.2" sources."@types/connect-3.4.35" sources."@types/minimist-1.2.2" - sources."@types/node-20.4.5" + sources."@types/node-20.4.9" sources."@types/normalize-package-data-2.4.1" sources."@types/webidl-conversions-7.0.0" sources."@types/whatwg-url-8.2.2" @@ -92859,15 +90653,13 @@ in sources."accepts-1.3.8" sources."acorn-7.4.1" sources."agent-base-6.0.2" - sources."ansi-0.3.1" - sources."ansi-regex-2.1.1" + sources."ansi-regex-5.0.1" (sources."ansi-styles-3.2.1" // { dependencies = [ sources."color-convert-1.9.3" sources."color-name-1.1.3" ]; }) - sources."are-we-there-yet-1.0.6" sources."argparse-2.0.1" sources."array-flatten-1.1.1" sources."arrify-1.0.1" @@ -92875,7 +90667,7 @@ in sources."assert-never-1.2.1" sources."async-3.2.4" sources."asynckit-0.4.0" - (sources."aws-crt-1.17.0" // { + (sources."aws-crt-1.17.1" // { dependencies = [ sources."axios-0.24.0" ]; @@ -92891,9 +90683,7 @@ in ]; }) sources."bech32-2.0.0" - sources."big-integer-1.6.51" sources."bignumber.js-9.1.1" - sources."binary-0.3.0" sources."bindings-1.5.0" sources."bip174-2.1.0" sources."bip32-4.0.0" @@ -92904,7 +90694,6 @@ in sources."readable-stream-3.6.2" ]; }) - sources."bluebird-3.7.2" (sources."body-parser-1.20.2" // { dependencies = [ sources."debug-2.6.9" @@ -92924,35 +90713,19 @@ in sources."bson-5.4.0" sources."buffer-6.0.3" sources."buffer-from-1.1.2" - sources."buffer-indexof-polyfill-1.0.2" - sources."buffer-shims-1.0.0" - sources."buffers-0.1.1" sources."bufferutil-4.0.7" sources."bytes-3.1.2" sources."call-bind-1.0.2" - sources."camelcase-2.1.1" - (sources."camelcase-keys-6.2.2" // { - dependencies = [ - sources."camelcase-5.3.1" - ]; - }) - sources."chainsaw-0.1.0" + sources."camelcase-5.3.1" + sources."camelcase-keys-6.2.2" sources."chalk-2.4.2" sources."character-parser-2.2.0" sources."charenc-0.0.2" - sources."chart.js-4.3.2" + sources."chart.js-4.3.3" sources."chownr-1.1.4" sources."cipher-base-1.0.4" - sources."cliui-3.2.0" + sources."cliui-6.0.0" sources."cluster-key-slot-1.1.2" - (sources."cmake-js-6.3.2" // { - dependencies = [ - sources."axios-0.21.4" - sources."semver-5.7.2" - sources."tar-4.4.19" - ]; - }) - sources."code-point-at-1.1.0" sources."color-4.2.3" sources."color-convert-2.0.1" sources."color-name-1.1.4" @@ -93011,14 +90784,12 @@ in sources."deep-extend-0.6.0" sources."delay-5.0.0" sources."delayed-stream-1.0.0" - sources."delegates-1.0.0" sources."depd-2.0.0" sources."destroy-1.2.0" sources."detect-libc-2.0.2" sources."dijkstrajs-1.0.3" sources."doctypes-1.1.0" sources."dotenv-13.0.1" - sources."duplexer2-0.1.4" sources."duplexify-3.7.1" sources."ee-first-1.1.1" sources."electrum-client-git+https://github.com/janoside/electrum-client" @@ -93071,12 +90842,8 @@ in sources."forwarded-0.2.0" sources."fresh-0.5.2" sources."fs-constants-1.0.0" - sources."fs-extra-5.0.0" - sources."fs-minipass-1.2.7" sources."fs.realpath-1.0.0" - sources."fstream-1.0.12" sources."function-bind-1.1.1" - sources."gauge-1.2.7" sources."gaxios-5.1.3" sources."gcp-metadata-5.3.0" sources."generic-pool-3.9.0" @@ -93084,14 +90851,12 @@ in sources."get-intrinsic-1.2.1" sources."github-from-package-0.0.0" sources."glob-7.2.3" - sources."graceful-fs-4.2.11" sources."hard-rejection-2.1.0" sources."has-1.0.3" sources."has-flag-3.0.0" sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" - sources."has-unicode-2.0.1" (sources."hash-base-3.1.0" // { dependencies = [ sources."readable-stream-3.6.2" @@ -93105,7 +90870,6 @@ in (sources."hosted-git-info-4.1.0" // { dependencies = [ sources."lru-cache-6.0.0" - sources."yallist-4.0.0" ]; }) sources."http-errors-2.0.0" @@ -93116,21 +90880,18 @@ in sources."inflight-1.0.6" sources."inherits-2.0.4" sources."ini-1.3.8" - sources."invert-kv-1.0.0" sources."ip-2.0.0" sources."ipaddr.js-1.9.1" sources."is-arrayish-0.3.2" sources."is-buffer-1.1.6" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" sources."is-expression-4.0.0" - sources."is-fullwidth-code-point-1.0.0" - sources."is-iojs-1.1.0" + sources."is-fullwidth-code-point-3.0.0" sources."is-plain-obj-1.1.0" sources."is-promise-2.2.2" sources."is-regex-1.1.4" sources."is-stream-2.0.1" sources."isarray-1.0.0" - sources."isexe-2.0.0" sources."isomorphic-ws-4.0.1" (sources."jayson-4.1.0" // { dependencies = [ @@ -93146,23 +90907,16 @@ in sources."json-bigint-1.0.0" sources."json-parse-even-better-errors-2.3.1" sources."json-stringify-safe-5.0.1" - sources."jsonfile-4.0.0" sources."jsonparse-1.3.1" sources."jstransformer-1.0.0" sources."kerberos-2.0.1" sources."kind-of-6.0.3" - sources."lcid-1.0.0" sources."leven-2.1.0" sources."lines-and-columns-1.2.4" sources."linkify-it-4.0.1" - sources."listenercount-1.0.1" sources."locate-path-5.0.0" - sources."lodash-4.17.21" - sources."lodash.pad-4.5.1" - sources."lodash.padend-4.6.1" - sources."lodash.padstart-4.6.1" sources."lru-cache-9.1.2" - sources."luxon-3.3.0" + sources."luxon-3.4.0" sources."map-obj-4.3.0" sources."markdown-it-13.0.1" sources."md5-2.3.0" @@ -93170,13 +90924,6 @@ in sources."mdurl-1.0.1" sources."media-typer-0.3.0" sources."memory-pager-1.5.0" - (sources."memory-stream-0.0.3" // { - dependencies = [ - sources."isarray-0.0.1" - sources."readable-stream-1.0.34" - sources."string_decoder-0.10.31" - ]; - }) (sources."memorystore-1.6.7" // { dependencies = [ sources."lru-cache-4.1.5" @@ -93194,9 +90941,6 @@ in sources."minimatch-3.1.2" sources."minimist-1.2.8" sources."minimist-options-4.1.0" - sources."minipass-2.9.0" - sources."minizlib-1.3.3" - sources."mkdirp-0.5.6" sources."mkdirp-classic-0.5.3" sources."moment-2.29.4" sources."moment-duration-format-2.3.2" @@ -93216,7 +90960,6 @@ in sources."readable-stream-3.6.2" sources."utf-8-validate-5.0.10" sources."ws-7.5.9" - sources."yallist-4.0.0" ]; }) sources."mqtt-packet-6.10.0" @@ -93235,15 +90978,12 @@ in }) sources."node-gyp-build-4.6.0" sources."normalize-package-data-3.0.3" - sources."npmlog-1.2.1" sources."number-allocator-1.0.14" - sources."number-is-nan-1.0.1" sources."object-assign-4.1.1" sources."object-inspect-1.12.3" sources."on-finished-2.4.1" sources."on-headers-1.0.2" sources."once-1.4.0" - sources."os-locale-1.4.0" sources."p-limit-2.3.0" sources."p-locate-4.1.0" sources."p-try-2.2.0" @@ -93276,21 +91016,7 @@ in sources."pug-walk-2.0.0" sources."pump-3.0.0" sources."punycode-2.3.0" - (sources."qrcode-1.5.3" // { - dependencies = [ - sources."ansi-regex-5.0.1" - sources."ansi-styles-4.3.0" - sources."camelcase-5.3.1" - sources."cliui-6.0.0" - sources."is-fullwidth-code-point-3.0.0" - sources."string-width-4.2.3" - sources."strip-ansi-6.0.1" - sources."wrap-ansi-6.2.0" - sources."y18n-4.0.3" - sources."yargs-15.4.1" - sources."yargs-parser-18.1.3" - ]; - }) + sources."qrcode-1.5.3" sources."qs-6.11.0" sources."quick-lru-4.0.1" sources."random-bytes-1.0.0" @@ -93324,9 +91050,8 @@ in sources."reinterval-1.1.0" sources."require-directory-2.1.1" sources."require-main-filename-2.0.0" - sources."resolve-1.22.3" + sources."resolve-1.22.4" sources."rfdc-1.3.0" - sources."rimraf-2.7.1" sources."ripemd160-2.0.2" sources."rndm-1.2.0" sources."safe-buffer-5.2.1" @@ -93335,7 +91060,6 @@ in (sources."semver-7.5.4" // { dependencies = [ sources."lru-cache-6.0.0" - sources."yallist-4.0.0" ]; }) (sources."send-0.18.0" // { @@ -93356,7 +91080,6 @@ in }) sources."serve-static-1.15.0" sources."set-blocking-2.0.0" - sources."setimmediate-1.0.5" sources."setprototypeof-1.2.0" sources."sha.js-2.4.11" (sources."sharp-0.31.3" // { @@ -93382,39 +91105,20 @@ in sources."readable-stream-3.6.2" ]; }) - sources."splitargs-0.0.7" sources."statuses-2.0.1" sources."stream-shift-1.0.1" - sources."string-width-1.0.2" + sources."string-width-4.2.3" (sources."string_decoder-1.1.1" // { dependencies = [ sources."safe-buffer-5.1.2" ]; }) - sources."strip-ansi-3.0.1" + sources."strip-ansi-6.0.1" sources."strip-indent-3.0.0" sources."strip-json-comments-2.0.1" sources."strnum-1.0.5" sources."supports-color-5.5.0" sources."supports-preserve-symlinks-flag-1.0.0" - (sources."tar-6.1.15" // { - dependencies = [ - sources."chownr-2.0.0" - (sources."fs-minipass-2.1.0" // { - dependencies = [ - sources."minipass-3.3.6" - ]; - }) - sources."minipass-5.0.0" - (sources."minizlib-2.1.2" // { - dependencies = [ - sources."minipass-3.3.6" - ]; - }) - sources."mkdirp-1.0.4" - sources."yallist-4.0.0" - ]; - }) sources."tar-fs-2.1.1" (sources."tar-stream-2.2.0" // { dependencies = [ @@ -93427,7 +91131,6 @@ in sources."toidentifier-1.0.1" sources."token-stream-1.0.0" sources."tr46-3.0.0" - sources."traverse-0.3.9" sources."trim-newlines-3.0.1" sources."tslib-2.6.1" sources."tsscmp-1.0.6" @@ -93439,17 +91142,7 @@ in sources."uc.micro-1.0.6" sources."uid-safe-2.1.5" sources."uint8array-tools-0.0.7" - sources."universalify-0.1.2" sources."unpipe-1.0.0" - (sources."unzipper-0.8.14" // { - dependencies = [ - sources."bluebird-3.4.7" - sources."process-nextick-args-1.0.7" - sources."readable-stream-2.1.5" - sources."string_decoder-0.10.31" - ]; - }) - sources."url-join-0.0.1" sources."utf-8-validate-6.0.3" sources."util-deprecate-1.0.2" sources."utils-merge-1.0.1" @@ -93460,22 +91153,28 @@ in sources."void-elements-3.1.0" sources."webidl-conversions-7.0.0" sources."whatwg-url-11.0.0" - sources."which-1.3.1" sources."which-module-2.0.1" (sources."wif-2.0.6" // { dependencies = [ sources."bs58check-2.1.2" ]; }) - sources."window-size-0.1.4" sources."with-7.0.2" - sources."wrap-ansi-2.1.0" + (sources."wrap-ansi-6.2.0" // { + dependencies = [ + sources."ansi-styles-4.3.0" + ]; + }) sources."wrappy-1.0.2" sources."ws-8.13.0" sources."xtend-4.0.2" - sources."y18n-3.2.2" - sources."yallist-3.1.1" - sources."yargs-3.32.0" + sources."y18n-4.0.3" + sources."yallist-4.0.0" + (sources."yargs-15.4.1" // { + dependencies = [ + sources."yargs-parser-18.1.3" + ]; + }) sources."yargs-parser-20.2.9" sources."zeromq-5.3.1" ]; @@ -93498,9 +91197,7 @@ in sha512 = "nad2waGHrt4ISKU3VAPdf+cyeXdPRVuNmJSQtLD4KSNcPwR3wqpgCo7Y4PBZYdYU+E0IRSaS5a1QfIU25Inqxw=="; }; dependencies = [ - sources."@babel/code-frame-7.22.5" - sources."@babel/helper-validator-identifier-7.22.5" - (sources."@babel/highlight-7.22.5" // { + (sources."@babel/code-frame-7.22.10" // { dependencies = [ sources."ansi-styles-3.2.1" sources."chalk-2.4.2" @@ -93510,7 +91207,22 @@ in sources."supports-color-5.5.0" ]; }) - sources."@babel/runtime-7.22.6" + sources."@babel/helper-validator-identifier-7.22.5" + (sources."@babel/highlight-7.22.10" // { + dependencies = [ + sources."ansi-styles-3.2.1" + sources."chalk-2.4.2" + sources."color-convert-1.9.3" + sources."color-name-1.1.3" + sources."has-flag-3.0.0" + sources."supports-color-5.5.0" + ]; + }) + (sources."@babel/runtime-7.22.10" // { + dependencies = [ + sources."regenerator-runtime-0.14.0" + ]; + }) sources."@jimp/bmp-0.14.0" sources."@jimp/core-0.14.0" sources."@jimp/custom-0.14.0" @@ -93557,7 +91269,7 @@ in sources."@szmarczak/http-timer-5.0.1" sources."@types/http-cache-semantics-4.0.1" sources."@types/minimist-1.2.2" - sources."@types/node-20.4.5" + sources."@types/node-20.4.9" sources."@types/normalize-package-data-2.4.1" sources."@xmldom/xmldom-0.8.10" sources."aggregate-error-3.1.0" @@ -93759,7 +91471,7 @@ in }) sources."is-arrayish-0.2.1" sources."is-ci-3.0.1" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" sources."is-docker-2.2.1" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-2.0.0" @@ -93898,7 +91610,7 @@ in sources."registry-auth-token-5.0.2" sources."registry-url-6.0.1" sources."render-gif-2.0.4" - sources."resolve-1.22.3" + sources."resolve-1.22.4" sources."resolve-alpn-1.2.1" sources."responselike-3.0.0" (sources."restore-cursor-2.0.0" // { @@ -94129,16 +91841,16 @@ in cdk8s-cli = nodeEnv.buildNodePackage { name = "cdk8s-cli"; packageName = "cdk8s-cli"; - version = "2.15.1"; + version = "2.30.0"; src = fetchurl { - url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-2.15.1.tgz"; - sha512 = "Ydx9EhMTvJTp0X11y5FtAkeTCokxOdhg525MYTe98iMiLIIeZA0DFZxNN+q3CGrHm5z2PhlWCZnMWawt+oBAog=="; + url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-2.30.0.tgz"; + sha512 = "6I4qluvAOICF/6d4EqpJph3Lbm+VT8YukgpMMe7FftuwAyHRK4wXu1JC0eKZYk/PyE6s4EbH2R45cun9fYfMIQ=="; }; dependencies = [ sources."@colors/colors-1.5.0" sources."@dabh/diagnostics-2.0.3" - sources."@jsii/check-node-1.85.0" - sources."@jsii/spec-1.85.0" + sources."@jsii/check-node-1.86.1" + sources."@jsii/spec-1.86.1" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" @@ -94154,7 +91866,7 @@ in sources."@octokit/request-error-2.1.0" sources."@octokit/rest-18.12.0" sources."@octokit/types-6.41.0" - sources."@types/node-16.18.39" + sources."@types/node-16.18.40" sources."@types/triple-beam-1.3.2" sources."@xmldom/xmldom-0.8.10" sources."aggregate-error-3.1.0" @@ -94188,8 +91900,8 @@ in sources."buffer-5.7.1" sources."camelcase-6.3.0" sources."case-1.6.3" - sources."cdk8s-2.29.0" - sources."cdk8s-plus-25-2.16.0" + sources."cdk8s-2.39.0" + sources."cdk8s-plus-25-2.19.0" sources."chalk-4.1.2" sources."chardet-0.7.0" sources."clean-stack-2.2.0" @@ -94198,7 +91910,7 @@ in sources."cli-width-3.0.0" sources."cliui-7.0.4" sources."clone-2.1.2" - (sources."codemaker-1.85.0" // { + (sources."codemaker-1.86.1" // { dependencies = [ sources."fs-extra-10.1.0" ]; @@ -94237,7 +91949,7 @@ in sources."dotenv-16.3.1" (sources."downlevel-dts-0.11.0" // { dependencies = [ - sources."typescript-5.2.0-dev.20230801" + sources."typescript-5.3.0-dev.20230810" ]; }) sources."emoji-regex-8.0.0" @@ -94289,10 +92001,14 @@ in sources."indent-string-4.0.0" sources."inflight-1.0.6" sources."inherits-2.0.4" - sources."inquirer-8.2.5" + (sources."inquirer-8.2.6" // { + dependencies = [ + sources."wrap-ansi-6.2.0" + ]; + }) sources."interpret-1.4.0" sources."is-arrayish-0.3.2" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" sources."is-glob-4.0.3" @@ -94303,31 +92019,32 @@ in sources."is-plain-object-5.0.0" sources."is-stream-2.0.1" sources."is-unicode-supported-0.1.0" - (sources."jsii-1.85.0" // { + (sources."jsii-1.86.1" // { dependencies = [ sources."fs-extra-10.1.0" sources."yargs-16.2.0" ]; }) - (sources."jsii-pacmak-1.85.0" // { + (sources."jsii-pacmak-1.86.1" // { dependencies = [ sources."fs-extra-10.1.0" sources."yargs-16.2.0" ]; }) - (sources."jsii-reflect-1.85.0" // { + (sources."jsii-reflect-1.86.1" // { dependencies = [ sources."fs-extra-10.1.0" sources."yargs-16.2.0" ]; }) - (sources."jsii-rosetta-1.85.0" // { + (sources."jsii-rosetta-1.86.1" // { dependencies = [ sources."yargs-16.2.0" ]; }) - (sources."jsii-srcmak-0.1.949" // { + (sources."jsii-srcmak-0.1.950" // { dependencies = [ + sources."@jsii/check-node-1.85.0" sources."cliui-8.0.1" sources."fs-extra-9.1.0" (sources."jsii-5.1.10" // { @@ -94373,7 +92090,7 @@ in sources."once-1.4.0" sources."one-time-1.0.0" sources."onetime-5.1.2" - sources."oo-ascii-tree-1.85.0" + sources."oo-ascii-tree-1.86.1" sources."ora-5.4.1" sources."os-tmpdir-1.0.2" sources."p-limit-2.3.0" @@ -94392,7 +92109,7 @@ in sources."require-directory-2.1.1" sources."require-from-string-2.0.2" sources."require-main-filename-2.0.0" - sources."resolve-1.22.3" + sources."resolve-1.22.4" sources."restore-cursor-3.1.0" sources."reusify-1.0.4" sources."rfdc-1.3.0" @@ -94493,11 +92210,7 @@ in sha512 = "wVOjzfwF4KUkGbdxuQ+/TfLuENbl0Lymp4Kz3cwbxXdEOOy//GlYjHIV+HA+kIl7bS6UtcyfKFXP3QDjjyb/3w=="; }; dependencies = [ - sources."@babel/code-frame-7.22.5" - sources."@babel/generator-7.22.9" - sources."@babel/helper-string-parser-7.22.5" - sources."@babel/helper-validator-identifier-7.22.5" - (sources."@babel/highlight-7.22.5" // { + (sources."@babel/code-frame-7.22.10" // { dependencies = [ sources."ansi-styles-3.2.1" sources."chalk-2.4.2" @@ -94508,9 +92221,23 @@ in sources."supports-color-5.5.0" ]; }) - sources."@babel/parser-7.22.7" + sources."@babel/generator-7.22.10" + sources."@babel/helper-string-parser-7.22.5" + sources."@babel/helper-validator-identifier-7.22.5" + (sources."@babel/highlight-7.22.10" // { + dependencies = [ + sources."ansi-styles-3.2.1" + sources."chalk-2.4.2" + sources."color-convert-1.9.3" + sources."color-name-1.1.3" + sources."escape-string-regexp-1.0.5" + sources."has-flag-3.0.0" + sources."supports-color-5.5.0" + ]; + }) + sources."@babel/parser-7.22.10" sources."@babel/template-7.22.5" - sources."@babel/types-7.22.5" + sources."@babel/types-7.22.10" sources."@cdktf/cli-core-0.17.3" sources."@cdktf/commons-0.17.3" (sources."@cdktf/hcl2cdk-0.17.3" // { @@ -94535,15 +92262,15 @@ in sources."@types/node-16.18.23" ]; }) - (sources."@inquirer/checkbox-1.3.6" // { + (sources."@inquirer/checkbox-1.3.7" // { dependencies = [ - sources."@inquirer/core-3.1.0" + sources."@inquirer/core-3.1.1" sources."cli-spinners-2.9.0" ]; }) - (sources."@inquirer/confirm-2.0.7" // { + (sources."@inquirer/confirm-2.0.8" // { dependencies = [ - sources."@inquirer/core-3.1.0" + sources."@inquirer/core-3.1.1" sources."cli-spinners-2.9.0" ]; }) @@ -94552,35 +92279,35 @@ in sources."cli-spinners-2.9.0" ]; }) - (sources."@inquirer/editor-1.2.5" // { + (sources."@inquirer/editor-1.2.6" // { dependencies = [ - sources."@inquirer/core-3.1.0" + sources."@inquirer/core-3.1.1" sources."cli-spinners-2.9.0" ]; }) - (sources."@inquirer/expand-1.1.6" // { + (sources."@inquirer/expand-1.1.7" // { dependencies = [ - sources."@inquirer/core-3.1.0" + sources."@inquirer/core-3.1.1" sources."cli-spinners-2.9.0" ]; }) - (sources."@inquirer/input-1.2.6" // { + (sources."@inquirer/input-1.2.7" // { dependencies = [ - sources."@inquirer/core-3.1.0" + sources."@inquirer/core-3.1.1" sources."cli-spinners-2.9.0" ]; }) - sources."@inquirer/password-1.1.6" + sources."@inquirer/password-1.1.7" sources."@inquirer/prompts-2.3.1" - (sources."@inquirer/rawlist-1.2.6" // { + (sources."@inquirer/rawlist-1.2.7" // { dependencies = [ - sources."@inquirer/core-3.1.0" + sources."@inquirer/core-3.1.1" sources."cli-spinners-2.9.0" ]; }) - (sources."@inquirer/select-1.2.6" // { + (sources."@inquirer/select-1.2.7" // { dependencies = [ - sources."@inquirer/core-3.1.0" + sources."@inquirer/core-3.1.1" sources."cli-spinners-2.9.0" ]; }) @@ -94596,21 +92323,16 @@ in ]; }) sources."@jridgewell/gen-mapping-0.3.3" - sources."@jridgewell/resolve-uri-3.1.0" + sources."@jridgewell/resolve-uri-3.1.1" sources."@jridgewell/set-array-1.1.2" sources."@jridgewell/sourcemap-codec-1.4.15" - (sources."@jridgewell/trace-mapping-0.3.18" // { - dependencies = [ - sources."@jridgewell/sourcemap-codec-1.4.14" - ]; - }) + sources."@jridgewell/trace-mapping-0.3.19" sources."@jsii/check-node-1.85.0" - sources."@jsii/spec-1.85.0" + sources."@jsii/spec-1.86.1" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" sources."@npmcli/ci-detect-1.4.0" - sources."@pkgjs/parseargs-0.11.0" sources."@sentry/core-6.19.7" sources."@sentry/hub-6.19.7" sources."@sentry/minimal-6.19.7" @@ -94618,9 +92340,9 @@ in sources."@sentry/types-6.19.7" sources."@sentry/utils-6.19.7" sources."@types/mute-stream-0.0.1" - sources."@types/node-20.4.5" + sources."@types/node-20.4.9" sources."@types/prop-types-15.7.5" - sources."@types/react-18.2.18" + sources."@types/react-18.2.20" sources."@types/scheduler-0.16.3" sources."@types/wrap-ansi-3.0.0" sources."@types/yauzl-2.10.0" @@ -94674,11 +92396,11 @@ in sources."cli-cursor-3.1.0" sources."cli-spinners-2.7.0" sources."cli-truncate-2.1.0" - sources."cli-width-4.0.0" + sources."cli-width-4.1.0" sources."cliui-6.0.0" sources."clone-2.1.2" sources."code-excerpt-3.0.0" - (sources."codemaker-1.85.0" // { + (sources."codemaker-1.86.1" // { dependencies = [ sources."camelcase-6.3.0" sources."decamelize-5.0.1" @@ -94719,7 +92441,7 @@ in sources."detect-port-1.5.1" (sources."downlevel-dts-0.11.0" // { dependencies = [ - sources."typescript-5.2.0-dev.20230801" + sources."typescript-5.3.0-dev.20230810" ]; }) sources."eastasianwidth-0.2.0" @@ -94820,7 +92542,7 @@ in sources."is-boolean-object-1.1.2" sources."is-callable-1.2.7" sources."is-ci-2.0.0" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" sources."is-date-object-1.0.5" sources."is-docker-2.2.1" sources."is-extglob-2.1.1" @@ -94842,17 +92564,18 @@ in sources."is-wsl-2.2.0" sources."isarray-1.0.0" sources."isexe-2.0.0" - sources."jackspeak-2.2.2" + sources."jackspeak-2.2.3" sources."js-tokens-4.0.0" sources."jsesc-2.5.2" sources."jsii-5.1.10" - (sources."jsii-pacmak-1.85.0" // { + (sources."jsii-pacmak-1.86.1" // { dependencies = [ + sources."@jsii/check-node-1.86.1" sources."cliui-7.0.4" sources."escape-string-regexp-4.0.0" sources."fs-extra-10.1.0" - sources."jsii-1.85.0" - sources."jsii-rosetta-1.85.0" + sources."jsii-1.86.1" + sources."jsii-rosetta-1.86.1" sources."jsonfile-6.1.0" sources."typescript-3.9.10" sources."universalify-2.0.0" @@ -94862,8 +92585,9 @@ in sources."yargs-parser-20.2.9" ]; }) - (sources."jsii-reflect-1.85.0" // { + (sources."jsii-reflect-1.86.1" // { dependencies = [ + sources."@jsii/check-node-1.86.1" sources."cliui-7.0.4" sources."fs-extra-10.1.0" sources."jsonfile-6.1.0" @@ -94875,7 +92599,7 @@ in ]; }) sources."jsii-rosetta-5.1.9" - (sources."jsii-srcmak-0.1.949" // { + (sources."jsii-srcmak-0.1.950" // { dependencies = [ sources."fs-extra-9.1.0" sources."jsonfile-6.1.0" @@ -94937,7 +92661,7 @@ in sources."obliterator-2.0.4" sources."once-1.4.0" sources."onetime-5.1.2" - sources."oo-ascii-tree-1.85.0" + sources."oo-ascii-tree-1.86.1" sources."open-7.4.2" sources."os-tmpdir-1.0.2" sources."p-limit-2.3.0" @@ -94989,7 +92713,7 @@ in sources."require-from-string-2.0.2" sources."require-main-filename-2.0.0" sources."reserved-words-0.1.2" - sources."resolve-1.22.3" + sources."resolve-1.22.4" sources."restore-cursor-3.1.0" sources."reusify-1.0.4" sources."rfdc-1.3.0" @@ -95149,9 +92873,9 @@ in sha512 = "DbwDqv+O4AIbUqLmT3w7J/Fo8uT9bNmy7oRzykTUEIcrEL0DozGNOjxjiwwcKSLLf1fXKmjdLolui+OB3j1vYg=="; }; dependencies = [ - sources."@babel/code-frame-7.22.5" + sources."@babel/code-frame-7.22.10" sources."@babel/helper-validator-identifier-7.22.5" - sources."@babel/highlight-7.22.5" + sources."@babel/highlight-7.22.10" sources."@types/minimist-1.2.2" sources."@types/normalize-package-data-2.4.1" sources."ansi-styles-3.2.1" @@ -95185,7 +92909,7 @@ in sources."human-signals-2.1.0" sources."indent-string-5.0.0" sources."is-arrayish-0.2.1" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" sources."is-docker-2.2.1" sources."is-plain-obj-1.1.0" sources."is-stream-2.0.1" @@ -95461,10 +93185,10 @@ in coc-explorer = nodeEnv.buildNodePackage { name = "coc-explorer"; packageName = "coc-explorer"; - version = "0.26.5"; + version = "0.26.6"; src = fetchurl { - url = "https://registry.npmjs.org/coc-explorer/-/coc-explorer-0.26.5.tgz"; - sha512 = "018ohWL8bP6IdoBT0DtsBD12qCawlbw79la3kPBqHCwOIHqQDiHMaOgN314i4+RFWPsVf7WmbO6j1jXq0DcLwA=="; + url = "https://registry.npmjs.org/coc-explorer/-/coc-explorer-0.26.6.tgz"; + sha512 = "ZUYUVZBVLL73Axtw5Et+Dw1r0mxZ/oNaCOWNhqKX+Gu6wd1EQDMpM+qRIM855p3jdmSGv8u2YGwqY2BbFMCP+Q=="; }; dependencies = [ sources."@sindresorhus/chunkify-0.2.0" @@ -95578,10 +93302,10 @@ in coc-go = nodeEnv.buildNodePackage { name = "coc-go"; packageName = "coc-go"; - version = "1.3.20"; + version = "1.3.21"; src = fetchurl { - url = "https://registry.npmjs.org/coc-go/-/coc-go-1.3.20.tgz"; - sha512 = "o2Ofmpz0DDg+O4K34v99RA8U7lJKHeHKfMi5qLuSIGFvwbBUI1dP4C7WR/QTv0DoRnttwDkUtMqnbvRUAB8k8g=="; + url = "https://registry.npmjs.org/coc-go/-/coc-go-1.3.21.tgz"; + sha512 = "Qzt0Wm4peDUuXlH1uj2eKIdW3fux16j5ADLB7JtpMPhQqILCELJUigl2ASe5mET0dnbr+ZbD/ZhNO1FcSp72EA=="; }; dependencies = [ sources."isexe-2.0.0" @@ -96073,14 +93797,14 @@ in coc-pyright = nodeEnv.buildNodePackage { name = "coc-pyright"; packageName = "coc-pyright"; - version = "1.1.316"; + version = "1.1.320"; src = fetchurl { - url = "https://registry.npmjs.org/coc-pyright/-/coc-pyright-1.1.316.tgz"; - sha512 = "ETYx8Hq41MP7Zd2lGnLtro8nuqnjWLFeOygcWabI5YDDOjXf5P59ZB1UBZFte/FRh5/8jiFDxYW18lwnDmC6Xw=="; + url = "https://registry.npmjs.org/coc-pyright/-/coc-pyright-1.1.320.tgz"; + sha512 = "Xu4ExozlIe5vsQtI3CBxogwcj+6NXeHNMQYNeo2Plxg3qCmi2GBoiWjz+YQWj20IQdB1rlhWvm7oANeWYRr8Bw=="; }; dependencies = [ sources."fsevents-2.3.2" - sources."pyright-1.1.319" + sources."pyright-1.1.321" ]; buildInputs = globalBuildInputs; meta = { @@ -96423,11 +94147,15 @@ in }; dependencies = [ sources."@ampproject/remapping-2.2.1" - sources."@babel/code-frame-7.22.5" + (sources."@babel/code-frame-7.22.10" // { + dependencies = [ + sources."chalk-2.4.2" + ]; + }) sources."@babel/compat-data-7.22.9" - sources."@babel/core-7.22.9" - sources."@babel/generator-7.22.9" - sources."@babel/helper-compilation-targets-7.22.9" + sources."@babel/core-7.22.10" + sources."@babel/generator-7.22.10" + sources."@babel/helper-compilation-targets-7.22.10" sources."@babel/helper-environment-visitor-7.22.5" sources."@babel/helper-function-name-7.22.5" sources."@babel/helper-hoist-variables-7.22.5" @@ -96438,25 +94166,21 @@ in sources."@babel/helper-string-parser-7.22.5" sources."@babel/helper-validator-identifier-7.22.5" sources."@babel/helper-validator-option-7.22.5" - sources."@babel/helpers-7.22.6" - (sources."@babel/highlight-7.22.5" // { + sources."@babel/helpers-7.22.10" + (sources."@babel/highlight-7.22.10" // { dependencies = [ sources."chalk-2.4.2" ]; }) - sources."@babel/parser-7.22.7" + sources."@babel/parser-7.22.10" sources."@babel/template-7.22.5" - sources."@babel/traverse-7.22.8" - sources."@babel/types-7.22.5" + sources."@babel/traverse-7.22.10" + sources."@babel/types-7.22.10" sources."@jridgewell/gen-mapping-0.3.3" - sources."@jridgewell/resolve-uri-3.1.0" + sources."@jridgewell/resolve-uri-3.1.1" sources."@jridgewell/set-array-1.1.2" sources."@jridgewell/sourcemap-codec-1.4.15" - (sources."@jridgewell/trace-mapping-0.3.18" // { - dependencies = [ - sources."@jridgewell/sourcemap-codec-1.4.14" - ]; - }) + sources."@jridgewell/trace-mapping-0.3.19" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" @@ -96490,7 +94214,7 @@ in sources."callsites-3.1.0" sources."camelcase-5.3.1" sources."camelcase-keys-6.2.2" - sources."caniuse-lite-1.0.30001518" + sources."caniuse-lite-1.0.30001519" (sources."chalk-4.1.2" // { dependencies = [ sources."ansi-styles-4.3.0" @@ -96527,7 +94251,7 @@ in sources."domelementtype-1.3.1" sources."domhandler-2.4.2" sources."domutils-1.7.0" - sources."electron-to-chromium-1.4.480" + sources."electron-to-chromium-1.4.490" sources."emoji-regex-8.0.0" sources."entities-1.1.2" sources."error-ex-1.3.2" @@ -96584,7 +94308,7 @@ in sources."is-alphanumerical-1.0.4" sources."is-arrayish-0.2.1" sources."is-buffer-2.0.5" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" sources."is-decimal-1.0.4" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" @@ -96691,7 +94415,7 @@ in sources."remark-stringify-9.0.1" sources."repeat-string-1.6.1" sources."require-from-string-2.0.2" - sources."resolve-1.22.3" + sources."resolve-1.22.4" sources."resolve-from-5.0.0" sources."reusify-1.0.4" sources."rimraf-3.0.2" @@ -96880,9 +94604,9 @@ in sha512 = "5Zxv2Adtb6Mlpv2YdKErhf8ntxiBl1UyrbEqo7gR9nFIAfi3o0Ue6TJTpZfOhQViFQxLjJAS65IQVRaNlbhkxw=="; }; dependencies = [ - sources."@babel/code-frame-7.22.5" + sources."@babel/code-frame-7.22.10" sources."@babel/helper-validator-identifier-7.22.5" - sources."@babel/highlight-7.22.5" + sources."@babel/highlight-7.22.10" sources."ansi-styles-3.2.1" sources."argparse-1.0.10" sources."balanced-match-1.0.2" @@ -96903,7 +94627,7 @@ in sources."has-flag-3.0.0" sources."inflight-1.0.6" sources."inherits-2.0.4" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" sources."js-tokens-4.0.0" sources."js-yaml-3.14.1" sources."minimatch-3.1.2" @@ -96912,7 +94636,7 @@ in sources."once-1.4.0" sources."path-is-absolute-1.0.1" sources."path-parse-1.0.7" - sources."resolve-1.22.3" + sources."resolve-1.22.4" sources."semver-5.7.2" sources."sprintf-js-1.0.3" sources."supports-color-5.5.0" @@ -97017,7 +94741,7 @@ in sources."@aashutoshrathi/word-wrap-1.2.6" sources."@babel/code-frame-7.12.11" sources."@babel/helper-validator-identifier-7.22.5" - (sources."@babel/highlight-7.22.5" // { + (sources."@babel/highlight-7.22.10" // { dependencies = [ sources."chalk-2.4.2" sources."escape-string-regexp-1.0.5" @@ -97115,7 +94839,7 @@ in sources."imurmurhash-0.1.4" sources."inflight-1.0.6" sources."inherits-2.0.4" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" sources."is-expression-4.0.0" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" @@ -97151,7 +94875,7 @@ in sources."punycode-2.3.0" sources."regexpp-3.2.0" sources."require-from-string-2.0.2" - sources."resolve-1.22.3" + sources."resolve-1.22.4" sources."resolve-from-4.0.0" sources."rimraf-3.0.2" sources."semver-7.5.4" @@ -97549,7 +95273,7 @@ in sha512 = "nnLMxO2LU492mTUj9qX/az/lESonSZu81UznYDoXtz1IQf996ixVqPAgHXwvHiHCAef/7S8HIK+fTFK7Ifk8YA=="; }; dependencies = [ - sources."@babel/runtime-7.22.6" + sources."@babel/runtime-7.22.10" sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" (sources."chalk-4.1.2" // { @@ -97567,7 +95291,7 @@ in sources."has-flag-4.0.0" sources."is-fullwidth-code-point-3.0.0" sources."lodash-4.17.21" - sources."regenerator-runtime-0.13.11" + sources."regenerator-runtime-0.14.0" sources."require-directory-2.1.1" sources."rxjs-7.8.1" sources."shell-quote-1.8.1" @@ -97660,9 +95384,9 @@ in sha512 = "3zMYi0IrfNd6AAHdPMrcgCg5DbcffiqNaEBf8cYrlntXPbBIXaELTbnRmUy5TQAe0Hkgi0J6+/VmRCkkJQflcQ=="; }; dependencies = [ - sources."@babel/code-frame-7.22.5" + sources."@babel/code-frame-7.22.10" sources."@babel/helper-validator-identifier-7.22.5" - sources."@babel/highlight-7.22.5" + sources."@babel/highlight-7.22.10" sources."@hutson/parse-repository-url-3.0.2" sources."@types/minimist-1.2.2" sources."@types/normalize-package-data-2.4.1" @@ -97723,7 +95447,7 @@ in sources."git-semver-tags-5.0.1" sources."gitconfiglocal-1.0.0" sources."graceful-fs-4.2.11" - sources."handlebars-4.7.7" + sources."handlebars-4.7.8" sources."hard-rejection-2.1.0" sources."has-1.0.3" sources."has-flag-3.0.0" @@ -97732,7 +95456,7 @@ in sources."inherits-2.0.4" sources."ini-1.3.8" sources."is-arrayish-0.2.1" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" sources."is-fullwidth-code-point-3.0.0" sources."is-obj-2.0.0" sources."is-plain-obj-1.1.0" @@ -97809,7 +95533,7 @@ in sources."readable-stream-3.6.2" sources."redent-3.0.0" sources."require-directory-2.1.1" - sources."resolve-1.22.3" + sources."resolve-1.22.4" sources."safe-buffer-5.2.1" sources."semver-7.5.4" sources."source-map-0.6.1" @@ -97918,7 +95642,6 @@ in sources."which-3.0.1" ]; }) - sources."@pkgjs/parseargs-0.11.0" sources."@sigstore/bundle-1.0.0" sources."@sigstore/protobuf-specs-0.2.0" sources."@sigstore/tuf-1.0.3" @@ -97935,7 +95658,7 @@ in sources."abort-controller-3.0.0" sources."accepts-1.3.8" sources."agent-base-6.0.2" - sources."agentkeepalive-4.3.0" + sources."agentkeepalive-4.5.0" sources."aggregate-error-3.1.0" sources."ajv-8.12.0" sources."ajv-formats-2.1.1" @@ -98056,7 +95779,11 @@ in sources."mimic-fn-3.1.0" ]; }) - sources."debug-4.3.4" + (sources."debug-4.3.4" // { + dependencies = [ + sources."ms-2.1.2" + ]; + }) sources."dedent-0.7.0" sources."delayed-stream-1.0.0" sources."delegates-1.0.0" @@ -98215,7 +95942,7 @@ in }) sources."ip-2.0.0" sources."ipaddr.js-1.9.1" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" sources."is-docker-2.2.1" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" @@ -98229,7 +95956,7 @@ in sources."isexe-2.0.0" sources."isobject-4.0.0" sources."isstream-0.1.2" - sources."jackspeak-2.2.2" + sources."jackspeak-2.2.3" sources."jsbn-0.1.1" sources."json-parse-even-better-errors-3.0.0" sources."json-schema-0.4.0" @@ -98316,7 +96043,7 @@ in ]; }) sources."mkdirp-1.0.4" - sources."ms-2.1.2" + sources."ms-2.1.3" sources."mute-stream-1.0.0" sources."negotiator-0.6.3" (sources."node-gyp-9.4.0" // { @@ -98435,7 +96162,7 @@ in }) sources."require-from-string-2.0.2" sources."requires-port-1.0.0" - sources."resolve-1.22.3" + sources."resolve-1.22.4" sources."resolve-from-4.0.0" (sources."restore-cursor-2.0.0" // { dependencies = [ @@ -98464,7 +96191,6 @@ in sources."ms-2.0.0" ]; }) - sources."ms-2.1.3" ]; }) sources."serve-static-1.15.0" @@ -98509,7 +96235,7 @@ in sources."strip-final-newline-2.0.0" sources."supports-color-7.2.0" sources."supports-preserve-symlinks-flag-1.0.0" - sources."systeminformation-5.18.10" + sources."systeminformation-5.18.15" (sources."tar-6.1.15" // { dependencies = [ sources."minipass-5.0.0" @@ -98598,9 +96324,9 @@ in sha512 = "fb+DZYbL9KHc0BC4NYqGRrDIJZPXUmjjtqdw4XRRg8iV8dIfghUX/WiL+q4/B/KFTy3sK6jsbUhBaz0/Hxg7IQ=="; }; dependencies = [ - sources."@babel/code-frame-7.22.5" + sources."@babel/code-frame-7.22.10" sources."@babel/helper-validator-identifier-7.22.5" - sources."@babel/highlight-7.22.5" + sources."@babel/highlight-7.22.10" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" @@ -98646,7 +96372,7 @@ in sources."ignore-5.2.4" sources."indent-string-5.0.0" sources."is-arrayish-0.2.1" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" sources."is-extglob-2.1.1" sources."is-glob-4.0.3" sources."is-number-7.0.0" @@ -98751,7 +96477,7 @@ in sources."@cycle/run-3.4.0" sources."@cycle/time-0.10.1" sources."@types/cookiejar-2.1.2" - sources."@types/node-20.4.5" + sources."@types/node-20.4.9" sources."@types/superagent-3.8.2" sources."ansi-escapes-3.2.0" sources."ansi-regex-2.1.1" @@ -99017,38 +96743,38 @@ in cspell = nodeEnv.buildNodePackage { name = "cspell"; packageName = "cspell"; - version = "6.31.2"; + version = "7.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/cspell/-/cspell-6.31.2.tgz"; - sha512 = "HJcQ8jqL/1N3Mj5dufFnIZCX3ACuRoFTSVY6h3Bo5wBqd2iiJTyeQ1SY9Zymlxtb2KyJ6jQRiFmkWeFx2HVs7w=="; + url = "https://registry.npmjs.org/cspell/-/cspell-7.0.0.tgz"; + sha512 = "E8wQP30bTLROJsSNwYnhhRUdzVa4vQo6zILv7PqgTCSaveg8Af1HEh4ocRPRhppRgIXDpccG27+ATlpEzxiPGQ=="; }; dependencies = [ - sources."@babel/code-frame-7.22.5" - sources."@babel/helper-validator-identifier-7.22.5" - (sources."@babel/highlight-7.22.5" // { + (sources."@babel/code-frame-7.22.10" // { dependencies = [ - sources."ansi-styles-3.2.1" sources."chalk-2.4.2" - sources."color-convert-1.9.3" - sources."color-name-1.1.3" - sources."has-flag-3.0.0" - sources."supports-color-5.5.0" ]; }) - sources."@cspell/cspell-bundled-dicts-6.31.2" - sources."@cspell/cspell-pipe-6.31.1" - sources."@cspell/cspell-service-bus-6.31.1" - sources."@cspell/cspell-types-6.31.1" + sources."@babel/helper-validator-identifier-7.22.5" + (sources."@babel/highlight-7.22.10" // { + dependencies = [ + sources."chalk-2.4.2" + ]; + }) + sources."@cspell/cspell-bundled-dicts-7.0.0" + sources."@cspell/cspell-json-reporter-7.0.0" + sources."@cspell/cspell-pipe-7.0.0" + sources."@cspell/cspell-service-bus-7.0.0" + sources."@cspell/cspell-types-7.0.0" sources."@cspell/dict-ada-4.0.2" - sources."@cspell/dict-aws-3.0.0" + sources."@cspell/dict-aws-4.0.0" sources."@cspell/dict-bash-4.1.1" - sources."@cspell/dict-companies-3.0.17" + sources."@cspell/dict-companies-3.0.19" sources."@cspell/dict-cpp-5.0.4" sources."@cspell/dict-cryptocurrencies-3.0.1" sources."@cspell/dict-csharp-4.0.2" sources."@cspell/dict-css-4.0.6" sources."@cspell/dict-dart-2.0.3" - sources."@cspell/dict-data-science-1.0.8" + sources."@cspell/dict-data-science-1.0.10" sources."@cspell/dict-django-4.1.0" sources."@cspell/dict-docker-1.1.7" sources."@cspell/dict-dotnet-5.0.0" @@ -99057,7 +96783,8 @@ in sources."@cspell/dict-en-gb-1.1.33" sources."@cspell/dict-en_us-4.3.6" sources."@cspell/dict-filetypes-3.0.1" - sources."@cspell/dict-fonts-3.0.2" + sources."@cspell/dict-fonts-4.0.0" + sources."@cspell/dict-fsharp-1.0.0" sources."@cspell/dict-fullstack-3.1.5" sources."@cspell/dict-gaming-terms-1.0.4" sources."@cspell/dict-git-2.0.0" @@ -99068,61 +96795,75 @@ in sources."@cspell/dict-java-5.0.5" sources."@cspell/dict-k8s-1.0.1" sources."@cspell/dict-latex-4.0.0" - sources."@cspell/dict-lorem-ipsum-3.0.0" + sources."@cspell/dict-lorem-ipsum-4.0.0" sources."@cspell/dict-lua-4.0.1" sources."@cspell/dict-node-4.0.2" - sources."@cspell/dict-npm-5.0.7" + sources."@cspell/dict-npm-5.0.8" sources."@cspell/dict-php-4.0.1" sources."@cspell/dict-powershell-5.0.2" sources."@cspell/dict-public-licenses-2.0.3" - sources."@cspell/dict-python-4.1.4" + sources."@cspell/dict-python-4.1.5" sources."@cspell/dict-r-2.0.1" sources."@cspell/dict-ruby-5.0.0" sources."@cspell/dict-rust-4.0.1" sources."@cspell/dict-scala-5.0.0" - sources."@cspell/dict-software-terms-3.2.0" + sources."@cspell/dict-software-terms-3.2.1" sources."@cspell/dict-sql-2.1.1" sources."@cspell/dict-svelte-1.0.2" sources."@cspell/dict-swift-2.0.1" sources."@cspell/dict-typescript-3.1.1" sources."@cspell/dict-vue-3.0.0" - sources."@cspell/dynamic-import-6.31.1" - sources."@cspell/strong-weak-map-6.31.1" + sources."@cspell/dynamic-import-7.0.0" + sources."@cspell/strong-weak-map-7.0.0" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."ansi-regex-5.0.1" - sources."ansi-styles-4.3.0" + sources."ansi-regex-6.0.1" + sources."ansi-styles-3.2.1" sources."argparse-2.0.1" sources."array-timsort-1.0.3" sources."balanced-match-1.0.2" sources."brace-expansion-1.1.11" sources."braces-3.0.2" sources."callsites-3.1.0" - sources."chalk-4.1.2" + sources."chalk-5.3.0" + sources."chalk-template-1.1.0" sources."clear-module-4.1.2" - sources."color-convert-2.0.1" - sources."color-name-1.1.4" + sources."color-convert-1.9.3" + sources."color-name-1.1.3" sources."commander-10.0.1" sources."comment-json-4.2.3" sources."concat-map-0.0.1" - sources."configstore-5.0.1" + sources."configstore-6.0.0" sources."core-util-is-1.0.3" sources."cosmiconfig-8.0.0" - sources."crypto-random-string-2.0.0" - sources."cspell-dictionary-6.31.1" - sources."cspell-gitignore-6.31.2" - sources."cspell-glob-6.31.2" - sources."cspell-grammar-6.31.1" - sources."cspell-io-6.31.2" - sources."cspell-lib-6.31.2" - sources."cspell-trie-lib-6.31.1" - sources."dot-prop-5.3.0" + sources."crypto-random-string-4.0.0" + (sources."cspell-dictionary-7.0.0" // { + dependencies = [ + sources."fast-equals-4.0.3" + ]; + }) + sources."cspell-gitignore-7.0.0" + sources."cspell-glob-7.0.0" + sources."cspell-grammar-7.0.0" + sources."cspell-io-7.0.0" + (sources."cspell-lib-7.0.0" // { + dependencies = [ + sources."find-up-6.3.0" + sources."locate-path-7.2.0" + sources."p-limit-4.0.0" + sources."p-locate-6.0.0" + sources."path-exists-5.0.0" + sources."yocto-queue-1.0.0" + ]; + }) + sources."cspell-trie-lib-7.0.0" + sources."dot-prop-6.0.1" sources."encoding-0.1.13" sources."error-ex-1.3.2" sources."escape-string-regexp-1.0.5" sources."esprima-4.0.1" - sources."fast-equals-4.0.3" + sources."fast-equals-5.0.1" sources."fast-glob-3.3.1" sources."fast-json-stable-stringify-2.1.0" sources."fastq-1.15.0" @@ -99133,12 +96874,12 @@ in sources."flatted-3.2.7" sources."fs.realpath-1.0.0" sources."gensequence-5.0.2" - sources."get-stdin-8.0.0" + sources."get-stdin-9.0.0" sources."glob-7.2.3" sources."glob-parent-5.1.2" sources."global-dirs-0.1.1" sources."graceful-fs-4.2.11" - sources."has-flag-4.0.0" + sources."has-flag-3.0.0" sources."has-own-prop-2.0.0" sources."iconv-lite-0.6.3" (sources."import-fresh-3.3.0" // { @@ -99147,7 +96888,7 @@ in sources."resolve-from-4.0.0" ]; }) - sources."import-meta-resolve-2.2.2" + sources."import-meta-resolve-3.0.0" sources."imurmurhash-0.1.4" sources."inflight-1.0.6" sources."inherits-2.0.4" @@ -99164,11 +96905,6 @@ in sources."lines-and-columns-1.2.4" sources."locate-path-6.0.0" sources."lru-cache-6.0.0" - (sources."make-dir-3.1.0" // { - dependencies = [ - sources."semver-6.3.1" - ]; - }) sources."merge2-1.4.1" sources."micromatch-4.0.5" sources."minimatch-3.1.2" @@ -99192,19 +96928,20 @@ in sources."safer-buffer-2.1.2" sources."semver-7.5.4" sources."signal-exit-3.0.7" - sources."strip-ansi-6.0.1" - sources."supports-color-7.2.0" + sources."strip-ansi-7.1.0" + sources."supports-color-5.5.0" sources."to-regex-range-5.0.1" sources."tr46-0.0.3" + sources."type-fest-1.4.0" sources."typedarray-to-buffer-3.1.5" - sources."unique-string-2.0.0" + sources."unique-string-3.0.0" sources."vscode-languageserver-textdocument-1.0.10" sources."vscode-uri-3.0.7" sources."webidl-conversions-3.0.1" sources."whatwg-url-5.0.0" sources."wrappy-1.0.2" sources."write-file-atomic-3.0.3" - sources."xdg-basedir-4.0.0" + sources."xdg-basedir-5.1.0" sources."yallist-4.0.0" sources."yocto-queue-0.1.0" ]; @@ -99994,63 +97731,83 @@ in diff2html-cli = nodeEnv.buildNodePackage { name = "diff2html-cli"; packageName = "diff2html-cli"; - version = "5.2.9"; + version = "5.2.13"; src = fetchurl { - url = "https://registry.npmjs.org/diff2html-cli/-/diff2html-cli-5.2.9.tgz"; - sha512 = "XnmHoandwNeT7dW8bVnims4Jgeb70Rgg34ruUFSxDq9UH04fM42coF5InrATCerXIL8fWGH4qx4da/IqdeI4iw=="; + url = "https://registry.npmjs.org/diff2html-cli/-/diff2html-cli-5.2.13.tgz"; + sha512 = "IKcBLHHVBPE1o3R1RL6uJmIL5pXChirciHG7JxgwtLxeMG54J/GOEZdnmnt6lj5WdqUPXmo4/4Ovl8yl8Q8QGg=="; }; dependencies = [ sources."abbrev-1.1.1" sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" sources."arch-2.2.0" - sources."clipboardy-2.3.0" + sources."big-integer-1.6.51" + sources."bplist-parser-0.2.0" + sources."bundle-name-3.0.0" + sources."clipboardy-3.0.0" sources."cliui-8.0.1" sources."color-convert-2.0.1" sources."color-name-1.1.4" - sources."cross-spawn-6.0.5" - sources."define-lazy-prop-2.0.0" + sources."cross-spawn-7.0.3" + sources."data-uri-to-buffer-4.0.1" + (sources."default-browser-4.0.0" // { + dependencies = [ + sources."execa-7.2.0" + sources."human-signals-4.3.1" + sources."is-stream-3.0.0" + sources."mimic-fn-4.0.0" + sources."npm-run-path-5.1.0" + sources."onetime-6.0.0" + sources."path-key-4.0.0" + sources."strip-final-newline-3.0.0" + ]; + }) + sources."default-browser-id-3.0.0" + sources."define-lazy-prop-3.0.0" sources."diff-5.1.0" - sources."diff2html-3.4.35" + sources."diff2html-3.4.40" sources."emoji-regex-8.0.0" - sources."encoding-0.1.13" - sources."end-of-stream-1.4.4" sources."escalade-3.1.1" - sources."execa-1.0.0" + sources."execa-5.1.1" + sources."fetch-blob-3.2.0" + sources."formdata-polyfill-4.0.10" sources."get-caller-file-2.0.5" - sources."get-stream-4.1.0" + sources."get-stream-6.0.1" sources."hogan.js-3.0.2" - sources."iconv-lite-0.6.3" + sources."human-signals-2.1.0" sources."is-docker-2.2.1" sources."is-fullwidth-code-point-3.0.0" - sources."is-stream-1.1.0" + (sources."is-inside-container-1.0.0" // { + dependencies = [ + sources."is-docker-3.0.0" + ]; + }) + sources."is-stream-2.0.1" sources."is-wsl-2.2.0" sources."isexe-2.0.0" + sources."merge-stream-2.0.0" + sources."mimic-fn-2.1.0" sources."mkdirp-0.3.0" - sources."nice-try-1.0.5" - sources."node-fetch-2.6.12" + sources."node-domexception-1.0.0" + sources."node-fetch-3.3.2" sources."nopt-1.0.10" - sources."npm-run-path-2.0.2" - sources."once-1.4.0" - sources."open-8.4.2" - sources."p-finally-1.0.0" - sources."path-key-2.0.1" - sources."pump-3.0.0" + sources."npm-run-path-4.0.1" + sources."onetime-5.1.2" + sources."open-9.1.0" + sources."path-key-3.1.1" sources."require-directory-2.1.1" - sources."safer-buffer-2.1.2" - sources."semver-5.7.2" - sources."shebang-command-1.2.0" - sources."shebang-regex-1.0.0" + sources."run-applescript-5.0.0" + sources."shebang-command-2.0.0" + sources."shebang-regex-3.0.0" sources."signal-exit-3.0.7" sources."string-width-4.2.3" sources."strip-ansi-6.0.1" - sources."strip-eof-1.0.0" - sources."tr46-0.0.3" - sources."webidl-conversions-3.0.1" - sources."whatwg-url-5.0.0" - sources."which-1.3.1" + sources."strip-final-newline-2.0.0" + sources."titleize-3.0.0" + sources."untildify-4.0.0" + sources."web-streams-polyfill-3.2.1" + sources."which-2.0.2" sources."wrap-ansi-7.0.0" - sources."wrappy-1.0.2" sources."y18n-5.0.8" sources."yargs-17.7.2" sources."yargs-parser-21.1.1" @@ -100144,46 +97901,46 @@ in sources."@oclif/color-1.0.10" sources."@oclif/core-1.26.2" sources."@oclif/linewrap-1.0.0" - (sources."@oclif/plugin-help-5.2.15" // { + (sources."@oclif/plugin-help-5.2.16" // { dependencies = [ - sources."@oclif/core-2.11.5" + sources."@oclif/core-2.11.8" ]; }) - (sources."@oclif/plugin-not-found-2.3.34" // { + (sources."@oclif/plugin-not-found-2.3.36" // { dependencies = [ - sources."@oclif/core-2.11.5" + sources."@oclif/core-2.11.8" ]; }) - (sources."@oclif/plugin-update-3.1.28" // { + (sources."@oclif/plugin-update-3.1.30" // { dependencies = [ - sources."@oclif/core-2.11.5" + sources."@oclif/core-2.11.8" ]; }) (sources."@oclif/plugin-warn-if-update-available-2.0.46" // { dependencies = [ - sources."@oclif/core-2.11.5" + sources."@oclif/core-2.11.8" ]; }) sources."@oclif/screen-3.0.6" - sources."@swc/core-1.3.73" - sources."@swc/core-darwin-arm64-1.3.73" - sources."@swc/core-darwin-x64-1.3.73" - sources."@swc/core-linux-arm-gnueabihf-1.3.73" - sources."@swc/core-linux-arm64-gnu-1.3.73" - sources."@swc/core-linux-arm64-musl-1.3.73" - sources."@swc/core-linux-x64-gnu-1.3.73" - sources."@swc/core-linux-x64-musl-1.3.73" - sources."@swc/core-win32-arm64-msvc-1.3.73" - sources."@swc/core-win32-ia32-msvc-1.3.73" - sources."@swc/core-win32-x64-msvc-1.3.73" + sources."@swc/core-1.3.76" + sources."@swc/core-darwin-arm64-1.3.76" + sources."@swc/core-darwin-x64-1.3.76" + sources."@swc/core-linux-arm-gnueabihf-1.3.76" + sources."@swc/core-linux-arm64-gnu-1.3.76" + sources."@swc/core-linux-arm64-musl-1.3.76" + sources."@swc/core-linux-x64-gnu-1.3.76" + sources."@swc/core-linux-x64-musl-1.3.76" + sources."@swc/core-win32-arm64-msvc-1.3.76" + sources."@swc/core-win32-ia32-msvc-1.3.76" + sources."@swc/core-win32-x64-msvc-1.3.76" sources."@swc/helpers-0.5.1" - sources."@swc/wasm-1.3.73" + sources."@swc/wasm-1.3.76" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.4" sources."@types/cli-progress-3.11.0" - sources."@types/node-20.4.5" + sources."@types/node-20.4.9" sources."acorn-8.10.0" sources."acorn-walk-8.2.0" sources."ansi-escapes-4.3.2" @@ -100271,7 +98028,11 @@ in sources."ignore-5.2.4" sources."indent-string-4.0.0" sources."inherits-2.0.4" - sources."inquirer-8.2.5" + (sources."inquirer-8.2.6" // { + dependencies = [ + sources."wrap-ansi-6.2.0" + ]; + }) sources."is-arrayish-0.2.1" sources."is-docker-2.2.1" sources."is-extglob-2.1.1" @@ -100545,22 +98306,22 @@ in "@electron-forge/cli" = nodeEnv.buildNodePackage { name = "_at_electron-forge_slash_cli"; packageName = "@electron-forge/cli"; - version = "6.2.1"; + version = "6.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/@electron-forge/cli/-/cli-6.2.1.tgz"; - sha512 = "AyCJ1m7LBgttgUTS3kDwiBLhPHJ+6mFwoMSqu847EJ4Fe1DJ1Hi6gnMsSga7Mv4KsF7iA23Ss1fo+3TGZnvrWw=="; + url = "https://registry.npmjs.org/@electron-forge/cli/-/cli-6.3.0.tgz"; + sha512 = "lBLWxAj9qR4GAngo3SYYidf/Iw6qvvvo3luah87DtgDil4fzXoLneAtvEbvLaXz9AkQsLsqYejbF8Mil8Ih3Eg=="; }; dependencies = [ - sources."@electron-forge/core-6.2.1" - sources."@electron-forge/core-utils-6.2.1" - sources."@electron-forge/maker-base-6.2.1" - sources."@electron-forge/plugin-base-6.2.1" - sources."@electron-forge/publisher-base-6.2.1" - sources."@electron-forge/shared-types-6.2.1" - sources."@electron-forge/template-base-6.2.1" - sources."@electron-forge/template-vite-6.2.1" - sources."@electron-forge/template-webpack-6.2.1" - sources."@electron-forge/template-webpack-typescript-6.2.1" + sources."@electron-forge/core-6.3.0" + sources."@electron-forge/core-utils-6.3.0" + sources."@electron-forge/maker-base-6.3.0" + sources."@electron-forge/plugin-base-6.3.0" + sources."@electron-forge/publisher-base-6.3.0" + sources."@electron-forge/shared-types-6.3.0" + sources."@electron-forge/template-base-6.3.0" + sources."@electron-forge/template-vite-6.3.0" + sources."@electron-forge/template-webpack-6.3.0" + sources."@electron-forge/template-webpack-typescript-6.3.0" (sources."@electron/asar-3.2.4" // { dependencies = [ sources."commander-5.1.0" @@ -100593,20 +98354,19 @@ in sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" sources."@npmcli/fs-3.1.0" - sources."@pkgjs/parseargs-0.11.0" sources."@sindresorhus/is-4.6.0" sources."@szmarczak/http-timer-4.0.6" sources."@tootallnate/once-2.0.0" sources."@types/cacheable-request-6.0.3" sources."@types/http-cache-semantics-4.0.1" sources."@types/keyv-3.1.4" - sources."@types/node-20.4.5" + sources."@types/node-20.4.9" sources."@types/responselike-1.0.0" sources."@types/yauzl-2.10.0" sources."@xmldom/xmldom-0.8.10" sources."abbrev-1.1.1" sources."agent-base-6.0.2" - sources."agentkeepalive-4.3.0" + sources."agentkeepalive-4.5.0" sources."aggregate-error-3.1.0" sources."ansi-colors-4.1.3" (sources."ansi-escapes-4.3.2" // { @@ -100697,7 +98457,6 @@ in sources."defer-to-connect-2.0.1" sources."define-properties-1.2.0" sources."delegates-1.0.0" - sources."depd-2.0.0" sources."detect-libc-2.0.2" sources."detect-node-2.1.0" sources."dir-compare-3.3.0" @@ -100819,7 +98578,7 @@ in sources."interpret-3.1.1" sources."ip-2.0.0" sources."is-arrayish-0.2.1" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" sources."is-docker-2.2.1" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" @@ -100833,7 +98592,7 @@ in sources."is-wsl-2.2.0" sources."isbinaryfile-4.0.10" sources."isexe-2.0.0" - sources."jackspeak-2.2.2" + sources."jackspeak-2.2.3" sources."json-buffer-3.0.1" sources."json-stringify-safe-5.0.1" sources."jsonfile-6.1.0" @@ -100975,7 +98734,7 @@ in sources."pump-3.0.0" sources."queue-microtask-1.2.3" sources."quick-lru-5.1.1" - sources."rcedit-3.0.1" + sources."rcedit-3.1.0" sources."read-pkg-2.0.0" (sources."read-pkg-up-2.0.0" // { dependencies = [ @@ -100985,7 +98744,7 @@ in sources."readable-stream-3.6.2" sources."rechoir-0.8.0" sources."require-directory-2.1.1" - sources."resolve-1.22.3" + sources."resolve-1.22.4" sources."resolve-alpn-1.2.1" sources."resolve-dir-1.0.1" sources."resolve-package-1.0.1" @@ -101131,16 +98890,16 @@ in eas-cli = nodeEnv.buildNodePackage { name = "eas-cli"; packageName = "eas-cli"; - version = "3.17.1"; + version = "4.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/eas-cli/-/eas-cli-3.17.1.tgz"; - sha512 = "+lntd0QFJyZcg6HaFYVc1R9DVk6jPyHq9vXcmQWQNdL8CzkpdqooZE1KYJ/sQoTeyHRO90rEuSr+ocUu3njgKg=="; + url = "https://registry.npmjs.org/eas-cli/-/eas-cli-4.1.2.tgz"; + sha512 = "PIz6fIoO+HvJATSQ/tK1xmvY+oXhHK9H2EQS0ALb1reCGQZQ2v86J2Ru//TkTUgCS+fVaC9MRb2/9eZ4IPzl5Q=="; }; dependencies = [ sources."@0no-co/graphql.web-1.0.4" sources."@babel/code-frame-7.10.4" sources."@babel/helper-validator-identifier-7.22.5" - (sources."@babel/highlight-7.22.5" // { + (sources."@babel/highlight-7.22.10" // { dependencies = [ sources."chalk-2.4.2" ]; @@ -101163,8 +98922,13 @@ in ]; }) sources."@expo/config-types-49.0.0" - sources."@expo/eas-build-job-1.0.13" - (sources."@expo/eas-json-3.17.0" // { + (sources."@expo/eas-build-job-1.0.30" // { + dependencies = [ + sources."joi-17.9.2" + sources."semver-7.5.4" + ]; + }) + (sources."@expo/eas-json-4.1.0" // { dependencies = [ sources."@babel/code-frame-7.18.6" ]; @@ -101178,7 +98942,7 @@ in ]; }) sources."@expo/json-file-8.2.37" - sources."@expo/logger-1.0.21" + sources."@expo/logger-1.0.30" sources."@expo/multipart-body-parser-1.1.0" sources."@expo/osascript-2.0.33" (sources."@expo/package-manager-0.0.57" // { @@ -101219,25 +98983,27 @@ in sources."which-2.0.2" ]; }) - (sources."@expo/steps-1.0.28" // { + (sources."@expo/steps-1.0.34" // { dependencies = [ - sources."@expo/package-manager-1.0.2" + sources."@expo/spawn-async-1.7.2" + sources."cross-spawn-7.0.3" sources."fs-extra-11.1.1" + sources."joi-17.9.2" + sources."path-key-3.1.1" + sources."shebang-command-2.0.0" + sources."shebang-regex-3.0.0" sources."universalify-2.0.0" + sources."which-2.0.2" ]; }) sources."@expo/timeago.js-1.0.0" sources."@hapi/hoek-9.3.0" sources."@hapi/topo-5.1.0" sources."@jridgewell/gen-mapping-0.3.3" - sources."@jridgewell/resolve-uri-3.1.0" + sources."@jridgewell/resolve-uri-3.1.1" sources."@jridgewell/set-array-1.1.2" sources."@jridgewell/sourcemap-codec-1.4.15" - (sources."@jridgewell/trace-mapping-0.3.18" // { - dependencies = [ - sources."@jridgewell/sourcemap-codec-1.4.14" - ]; - }) + sources."@jridgewell/trace-mapping-0.3.19" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" @@ -101267,7 +99033,7 @@ in sources."@sideway/formula-3.0.1" sources."@sideway/pinpoint-2.0.0" sources."@types/bunyan-1.8.8" - sources."@types/node-20.4.5" + sources."@types/node-20.4.9" sources."@urql/core-4.0.11" sources."@urql/exchange-retry-1.2.0" sources."@xmldom/xmldom-0.8.10" @@ -101612,7 +99378,7 @@ in sources."whatwg-url-5.0.0" sources."which-1.3.1" sources."widest-line-3.1.0" - sources."wonka-6.3.3" + sources."wonka-6.3.4" (sources."wrap-ansi-7.0.0" // { dependencies = [ sources."ansi-styles-4.3.0" @@ -101737,16 +99503,16 @@ in }; dependencies = [ sources."@ampproject/remapping-2.2.1" - sources."@babel/code-frame-7.22.5" + sources."@babel/code-frame-7.22.10" sources."@babel/compat-data-7.22.9" - (sources."@babel/core-7.22.9" // { + (sources."@babel/core-7.22.10" // { dependencies = [ sources."semver-6.3.1" ]; }) - sources."@babel/generator-7.22.9" + sources."@babel/generator-7.22.10" sources."@babel/helper-annotate-as-pure-7.22.5" - (sources."@babel/helper-compilation-targets-7.22.9" // { + (sources."@babel/helper-compilation-targets-7.22.10" // { dependencies = [ sources."lru-cache-5.1.1" sources."semver-6.3.1" @@ -101764,31 +99530,27 @@ in sources."@babel/helper-string-parser-7.22.5" sources."@babel/helper-validator-identifier-7.22.5" sources."@babel/helper-validator-option-7.22.5" - sources."@babel/helpers-7.22.6" - sources."@babel/highlight-7.22.5" - sources."@babel/parser-7.22.7" + sources."@babel/helpers-7.22.10" + sources."@babel/highlight-7.22.10" + sources."@babel/parser-7.22.10" sources."@babel/plugin-proposal-object-rest-spread-7.20.7" sources."@babel/plugin-syntax-jsx-7.22.5" sources."@babel/plugin-syntax-object-rest-spread-7.8.3" - sources."@babel/plugin-transform-destructuring-7.22.5" + sources."@babel/plugin-transform-destructuring-7.22.10" sources."@babel/plugin-transform-parameters-7.22.5" sources."@babel/plugin-transform-react-jsx-7.22.5" sources."@babel/template-7.22.5" - sources."@babel/traverse-7.22.8" - sources."@babel/types-7.22.5" + sources."@babel/traverse-7.22.10" + sources."@babel/types-7.22.10" sources."@jridgewell/gen-mapping-0.3.3" - sources."@jridgewell/resolve-uri-3.1.0" + sources."@jridgewell/resolve-uri-3.1.1" sources."@jridgewell/set-array-1.1.2" sources."@jridgewell/sourcemap-codec-1.4.15" - (sources."@jridgewell/trace-mapping-0.3.18" // { - dependencies = [ - sources."@jridgewell/sourcemap-codec-1.4.14" - ]; - }) + sources."@jridgewell/trace-mapping-0.3.19" sources."@types/minimist-1.2.2" sources."@types/normalize-package-data-2.4.1" sources."@types/prop-types-15.7.5" - sources."@types/react-18.2.18" + sources."@types/react-18.2.20" sources."@types/scheduler-0.16.3" sources."@types/yoga-layout-1.9.2" sources."ajv-6.12.6" @@ -101813,7 +99575,7 @@ in sources."callsites-3.1.0" sources."camelcase-5.3.1" sources."camelcase-keys-6.2.2" - sources."caniuse-lite-1.0.30001518" + sources."caniuse-lite-1.0.30001519" sources."chalk-2.4.2" sources."ci-info-2.0.0" sources."cli-boxes-2.2.1" @@ -101843,7 +99605,7 @@ in ]; }) sources."dot-prop-5.3.0" - sources."electron-to-chromium-1.4.480" + sources."electron-to-chromium-1.4.490" sources."emoji-regex-8.0.0" sources."emojilib-2.4.0" sources."end-of-stream-1.4.4" @@ -101893,7 +99655,7 @@ in }) sources."is-arrayish-0.2.1" sources."is-ci-2.0.0" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" sources."is-docker-2.2.1" sources."is-fullwidth-code-point-3.0.0" sources."is-obj-2.0.0" @@ -101991,7 +99753,7 @@ in ]; }) sources."redent-3.0.0" - sources."resolve-1.22.3" + sources."resolve-1.22.4" sources."resolve-from-3.0.0" sources."restore-cursor-3.1.0" sources."rimraf-3.0.2" @@ -102237,24 +99999,25 @@ in sources."@ampproject/remapping-2.2.1" sources."@babel/code-frame-7.10.4" sources."@babel/compat-data-7.22.9" - (sources."@babel/core-7.22.9" // { + (sources."@babel/core-7.22.10" // { dependencies = [ - sources."@babel/code-frame-7.22.5" + sources."@babel/code-frame-7.22.10" + sources."chalk-2.4.2" sources."json5-2.2.3" sources."semver-6.3.1" ]; }) - sources."@babel/generator-7.22.9" + sources."@babel/generator-7.22.10" sources."@babel/helper-annotate-as-pure-7.22.5" - sources."@babel/helper-builder-binary-assignment-operator-visitor-7.22.5" - (sources."@babel/helper-compilation-targets-7.22.9" // { + sources."@babel/helper-builder-binary-assignment-operator-visitor-7.22.10" + (sources."@babel/helper-compilation-targets-7.22.10" // { dependencies = [ sources."lru-cache-5.1.1" sources."semver-6.3.1" sources."yallist-3.1.1" ]; }) - (sources."@babel/helper-create-class-features-plugin-7.22.9" // { + (sources."@babel/helper-create-class-features-plugin-7.22.10" // { dependencies = [ sources."semver-6.3.1" ]; @@ -102281,30 +100044,29 @@ in sources."@babel/helper-string-parser-7.22.5" sources."@babel/helper-validator-identifier-7.22.5" sources."@babel/helper-validator-option-7.22.5" - sources."@babel/helper-wrap-function-7.22.9" - sources."@babel/helpers-7.22.6" - (sources."@babel/highlight-7.22.5" // { + sources."@babel/helper-wrap-function-7.22.10" + sources."@babel/helpers-7.22.10" + (sources."@babel/highlight-7.22.10" // { dependencies = [ sources."chalk-2.4.2" ]; }) - sources."@babel/parser-7.22.7" + sources."@babel/parser-7.22.10" sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.22.5" sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.22.5" sources."@babel/plugin-proposal-async-generator-functions-7.20.7" sources."@babel/plugin-proposal-class-properties-7.18.6" - sources."@babel/plugin-proposal-decorators-7.22.7" + sources."@babel/plugin-proposal-decorators-7.22.10" sources."@babel/plugin-proposal-export-default-from-7.22.5" sources."@babel/plugin-proposal-nullish-coalescing-operator-7.18.6" sources."@babel/plugin-proposal-object-rest-spread-7.20.7" sources."@babel/plugin-proposal-optional-catch-binding-7.18.6" sources."@babel/plugin-proposal-optional-chaining-7.21.0" sources."@babel/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2" - sources."@babel/plugin-proposal-unicode-property-regex-7.18.6" sources."@babel/plugin-syntax-async-generators-7.8.4" sources."@babel/plugin-syntax-class-properties-7.12.13" sources."@babel/plugin-syntax-class-static-block-7.14.5" - sources."@babel/plugin-syntax-decorators-7.22.5" + sources."@babel/plugin-syntax-decorators-7.22.10" sources."@babel/plugin-syntax-dynamic-import-7.8.3" sources."@babel/plugin-syntax-export-default-from-7.22.5" sources."@babel/plugin-syntax-export-namespace-from-7.8.3" @@ -102325,15 +100087,15 @@ in sources."@babel/plugin-syntax-typescript-7.22.5" sources."@babel/plugin-syntax-unicode-sets-regex-7.18.6" sources."@babel/plugin-transform-arrow-functions-7.22.5" - sources."@babel/plugin-transform-async-generator-functions-7.22.7" + sources."@babel/plugin-transform-async-generator-functions-7.22.10" sources."@babel/plugin-transform-async-to-generator-7.22.5" sources."@babel/plugin-transform-block-scoped-functions-7.22.5" - sources."@babel/plugin-transform-block-scoping-7.22.5" + sources."@babel/plugin-transform-block-scoping-7.22.10" sources."@babel/plugin-transform-class-properties-7.22.5" sources."@babel/plugin-transform-class-static-block-7.22.5" sources."@babel/plugin-transform-classes-7.22.6" sources."@babel/plugin-transform-computed-properties-7.22.5" - sources."@babel/plugin-transform-destructuring-7.22.5" + sources."@babel/plugin-transform-destructuring-7.22.10" sources."@babel/plugin-transform-dotall-regex-7.22.5" sources."@babel/plugin-transform-duplicate-keys-7.22.5" sources."@babel/plugin-transform-dynamic-import-7.22.5" @@ -102357,7 +100119,7 @@ in sources."@babel/plugin-transform-object-rest-spread-7.22.5" sources."@babel/plugin-transform-object-super-7.22.5" sources."@babel/plugin-transform-optional-catch-binding-7.22.5" - sources."@babel/plugin-transform-optional-chaining-7.22.6" + sources."@babel/plugin-transform-optional-chaining-7.22.10" sources."@babel/plugin-transform-parameters-7.22.5" sources."@babel/plugin-transform-private-methods-7.22.5" sources."@babel/plugin-transform-private-property-in-object-7.22.5" @@ -102366,9 +100128,9 @@ in sources."@babel/plugin-transform-react-jsx-7.22.5" sources."@babel/plugin-transform-react-jsx-self-7.22.5" sources."@babel/plugin-transform-react-jsx-source-7.22.5" - sources."@babel/plugin-transform-regenerator-7.22.5" + sources."@babel/plugin-transform-regenerator-7.22.10" sources."@babel/plugin-transform-reserved-words-7.22.5" - (sources."@babel/plugin-transform-runtime-7.22.9" // { + (sources."@babel/plugin-transform-runtime-7.22.10" // { dependencies = [ sources."semver-6.3.1" ]; @@ -102378,36 +100140,38 @@ in sources."@babel/plugin-transform-sticky-regex-7.22.5" sources."@babel/plugin-transform-template-literals-7.22.5" sources."@babel/plugin-transform-typeof-symbol-7.22.5" - sources."@babel/plugin-transform-typescript-7.22.9" - sources."@babel/plugin-transform-unicode-escapes-7.22.5" + sources."@babel/plugin-transform-typescript-7.22.10" + sources."@babel/plugin-transform-unicode-escapes-7.22.10" sources."@babel/plugin-transform-unicode-property-regex-7.22.5" sources."@babel/plugin-transform-unicode-regex-7.22.5" sources."@babel/plugin-transform-unicode-sets-regex-7.22.5" - (sources."@babel/preset-env-7.22.9" // { + (sources."@babel/preset-env-7.22.10" // { dependencies = [ sources."semver-6.3.1" ]; }) - sources."@babel/preset-modules-0.1.6" + sources."@babel/preset-modules-0.1.6-no-external-plugins" sources."@babel/regjsgen-0.8.0" sources."@babel/runtime-7.9.0" (sources."@babel/template-7.22.5" // { dependencies = [ - sources."@babel/code-frame-7.22.5" + sources."@babel/code-frame-7.22.10" + sources."chalk-2.4.2" ]; }) - (sources."@babel/traverse-7.22.8" // { + (sources."@babel/traverse-7.22.10" // { dependencies = [ - sources."@babel/code-frame-7.22.5" + sources."@babel/code-frame-7.22.10" + sources."chalk-2.4.2" ]; }) - sources."@babel/types-7.22.5" + sources."@babel/types-7.22.10" sources."@colors/colors-1.5.0" sources."@expo/apple-utils-1.0.0" sources."@expo/bunyan-4.0.0" (sources."@expo/cli-0.7.3" // { dependencies = [ - sources."@babel/runtime-7.22.6" + sources."@babel/runtime-7.22.10" (sources."@expo/config-8.0.5" // { dependencies = [ sources."semver-7.3.2" @@ -102455,6 +100219,7 @@ in sources."semver-5.7.2" ]; }) + sources."regenerator-runtime-0.14.0" sources."semver-6.3.1" sources."temp-dir-1.0.0" sources."type-fest-0.3.1" @@ -102543,15 +100308,11 @@ in sources."@hapi/topo-5.1.0" sources."@jest/types-26.6.2" sources."@jridgewell/gen-mapping-0.3.3" - sources."@jridgewell/resolve-uri-3.1.0" + sources."@jridgewell/resolve-uri-3.1.1" sources."@jridgewell/set-array-1.1.2" sources."@jridgewell/source-map-0.3.5" sources."@jridgewell/sourcemap-codec-1.4.15" - (sources."@jridgewell/trace-mapping-0.3.18" // { - dependencies = [ - sources."@jridgewell/sourcemap-codec-1.4.14" - ]; - }) + sources."@jridgewell/trace-mapping-0.3.19" sources."@leichtgewicht/ip-codec-2.0.4" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" @@ -102580,7 +100341,7 @@ in sources."@types/cacheable-request-6.0.3" sources."@types/connect-3.4.35" sources."@types/connect-history-api-fallback-1.5.0" - sources."@types/eslint-8.44.1" + sources."@types/eslint-8.44.2" sources."@types/eslint-scope-3.7.4" sources."@types/estree-1.0.1" sources."@types/express-4.17.17" @@ -102597,7 +100358,7 @@ in sources."@types/keyv-3.1.4" sources."@types/mime-1.3.2" sources."@types/minimatch-5.1.2" - sources."@types/node-20.4.5" + sources."@types/node-20.4.9" sources."@types/qs-6.9.7" sources."@types/range-parser-1.2.4" sources."@types/responselike-1.0.0" @@ -102727,7 +100488,7 @@ in sources."camel-case-4.1.2" sources."camelcase-6.3.0" sources."caniuse-api-3.0.0" - sources."caniuse-lite-1.0.30001518" + sources."caniuse-lite-1.0.30001519" (sources."chalk-4.1.2" // { dependencies = [ sources."ansi-styles-4.3.0" @@ -102869,7 +100630,7 @@ in sources."dot-case-3.0.4" sources."duplexer3-0.1.5" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.480" + sources."electron-to-chromium-1.4.490" sources."emoji-regex-8.0.0" sources."emojis-list-3.0.0" sources."encodeurl-1.0.2" @@ -102908,7 +100669,7 @@ in }) (sources."expo-48.0.20" // { dependencies = [ - sources."@babel/runtime-7.22.6" + sources."@babel/runtime-7.22.10" (sources."@expo/config-8.0.5" // { dependencies = [ sources."semver-7.3.2" @@ -102919,6 +100680,7 @@ in sources."commander-7.2.0" sources."expo-modules-autolinking-1.2.0" sources."fs-extra-9.1.0" + sources."regenerator-runtime-0.14.0" sources."semver-7.5.4" sources."uuid-3.4.0" ]; @@ -103088,7 +100850,7 @@ in sources."ipaddr.js-1.9.1" sources."is-binary-path-2.1.0" sources."is-buffer-1.1.6" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" sources."is-docker-2.2.1" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" @@ -103447,7 +101209,7 @@ in sources."regenerate-1.4.2" sources."regenerate-unicode-properties-10.1.0" sources."regenerator-runtime-0.13.11" - sources."regenerator-transform-0.15.1" + sources."regenerator-transform-0.15.2" sources."regexpu-core-5.3.2" sources."registry-auth-token-3.3.2" sources."registry-url-3.1.0" @@ -103467,7 +101229,7 @@ in }) sources."requires-port-1.0.0" sources."reselect-4.1.8" - sources."resolve-1.22.3" + sources."resolve-1.22.4" sources."resolve-alpn-1.2.1" sources."resolve-from-5.0.0" sources."responselike-2.0.1" @@ -103803,12 +101565,12 @@ in }; dependencies = [ sources."@ampproject/remapping-2.2.1" - sources."@babel/code-frame-7.22.5" + sources."@babel/code-frame-7.22.10" sources."@babel/compat-data-7.22.9" - sources."@babel/core-7.22.9" - sources."@babel/generator-7.22.9" + sources."@babel/core-7.22.10" + sources."@babel/generator-7.22.10" sources."@babel/helper-annotate-as-pure-7.22.5" - sources."@babel/helper-compilation-targets-7.22.9" + sources."@babel/helper-compilation-targets-7.22.10" sources."@babel/helper-environment-visitor-7.22.5" sources."@babel/helper-function-name-7.22.5" sources."@babel/helper-hoist-variables-7.22.5" @@ -103820,32 +101582,28 @@ in sources."@babel/helper-string-parser-7.22.5" sources."@babel/helper-validator-identifier-7.22.5" sources."@babel/helper-validator-option-7.22.5" - sources."@babel/helpers-7.22.6" - sources."@babel/highlight-7.22.5" - sources."@babel/parser-7.22.7" + sources."@babel/helpers-7.22.10" + sources."@babel/highlight-7.22.10" + sources."@babel/parser-7.22.10" sources."@babel/plugin-proposal-object-rest-spread-7.20.7" sources."@babel/plugin-syntax-jsx-7.22.5" sources."@babel/plugin-syntax-object-rest-spread-7.8.3" - sources."@babel/plugin-transform-destructuring-7.22.5" + sources."@babel/plugin-transform-destructuring-7.22.10" sources."@babel/plugin-transform-parameters-7.22.5" sources."@babel/plugin-transform-react-jsx-7.22.5" sources."@babel/template-7.22.5" - sources."@babel/traverse-7.22.8" - sources."@babel/types-7.22.5" + sources."@babel/traverse-7.22.10" + sources."@babel/types-7.22.10" sources."@jridgewell/gen-mapping-0.3.3" - sources."@jridgewell/resolve-uri-3.1.0" + sources."@jridgewell/resolve-uri-3.1.1" sources."@jridgewell/set-array-1.1.2" sources."@jridgewell/sourcemap-codec-1.4.15" - (sources."@jridgewell/trace-mapping-0.3.18" // { - dependencies = [ - sources."@jridgewell/sourcemap-codec-1.4.14" - ]; - }) + sources."@jridgewell/trace-mapping-0.3.19" sources."@types/minimist-1.2.2" - sources."@types/node-20.4.5" + sources."@types/node-20.4.9" sources."@types/normalize-package-data-2.4.1" sources."@types/prop-types-15.7.5" - sources."@types/react-18.2.18" + sources."@types/react-18.2.20" sources."@types/scheduler-0.16.3" sources."@types/yauzl-2.10.0" sources."@types/yoga-layout-1.9.2" @@ -103873,7 +101631,7 @@ in sources."callsites-3.1.0" sources."camelcase-5.3.1" sources."camelcase-keys-6.2.2" - sources."caniuse-lite-1.0.30001518" + sources."caniuse-lite-1.0.30001519" sources."chalk-2.4.2" sources."chownr-1.1.4" sources."ci-info-2.0.0" @@ -103899,7 +101657,7 @@ in }) sources."delay-5.0.0" sources."devtools-protocol-0.0.981744" - sources."electron-to-chromium-1.4.480" + sources."electron-to-chromium-1.4.490" sources."emoji-regex-8.0.0" sources."encoding-0.1.13" sources."end-of-stream-1.4.4" @@ -103946,7 +101704,7 @@ in sources."ink-spinner-4.0.3" sources."is-arrayish-0.2.1" sources."is-ci-2.0.0" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" sources."is-fullwidth-code-point-3.0.0" sources."is-plain-obj-1.1.0" sources."js-tokens-4.0.0" @@ -104023,7 +101781,7 @@ in }) sources."readable-stream-3.6.2" sources."redent-3.0.0" - sources."resolve-1.22.3" + sources."resolve-1.22.4" sources."resolve-from-3.0.0" sources."restore-cursor-3.1.0" sources."rimraf-3.0.2" @@ -104122,9 +101880,8 @@ in sources."@oclif/command-1.8.35" sources."@oclif/config-1.18.16" sources."@oclif/errors-1.3.6" - (sources."@oclif/help-1.0.14" // { + (sources."@oclif/help-1.0.15" // { dependencies = [ - sources."@oclif/config-1.18.15" sources."wrap-ansi-6.2.0" ]; }) @@ -104324,9 +102081,10 @@ in sources."indent-string-4.0.0" sources."inherits-2.0.4" sources."ini-1.3.8" - (sources."inquirer-8.2.5" // { + (sources."inquirer-8.2.6" // { dependencies = [ sources."ansi-escapes-4.3.2" + sources."wrap-ansi-6.2.0" ]; }) sources."into-stream-3.1.0" @@ -104506,10 +102264,10 @@ in firebase-tools = nodeEnv.buildNodePackage { name = "firebase-tools"; packageName = "firebase-tools"; - version = "12.4.6"; + version = "12.4.7"; src = fetchurl { - url = "https://registry.npmjs.org/firebase-tools/-/firebase-tools-12.4.6.tgz"; - sha512 = "WcHCxBsmFschPDdiKrVQla7kGdTDHuDBKbL01yYEVXCQA3lPXUUfTRS5D1LKi/8RH3Kv0MkvO2eXNuxIGo2qmg=="; + url = "https://registry.npmjs.org/firebase-tools/-/firebase-tools-12.4.7.tgz"; + sha512 = "L5nULzh0PElm2OK5lXsj7zkIwBBB4KsGOg0CvCnjdvJ1ROMN2IqffJ0KR/8paXuGWf5SA0VJj2QjG37jFxrAjg=="; }; dependencies = [ (sources."@apidevtools/json-schema-ref-parser-9.1.2" // { @@ -104517,7 +102275,7 @@ in sources."js-yaml-4.1.0" ]; }) - sources."@babel/parser-7.22.7" + sources."@babel/parser-7.22.10" sources."@colors/colors-1.5.0" sources."@dabh/diagnostics-2.0.3" sources."@google-cloud/paginator-4.0.1" @@ -104546,7 +102304,6 @@ in sources."@npmcli/fs-3.1.0" sources."@opentelemetry/api-1.4.1" sources."@opentelemetry/semantic-conventions-1.3.1" - sources."@pkgjs/parseargs-0.11.0" sources."@pnpm/config.env-replace-1.1.0" (sources."@pnpm/network.ca-file-1.0.2" // { dependencies = [ @@ -104574,7 +102331,7 @@ in sources."@types/markdown-it-12.2.3" sources."@types/mdurl-1.0.2" sources."@types/minimatch-5.1.2" - sources."@types/node-20.4.5" + sources."@types/node-20.4.9" sources."@types/rimraf-3.0.2" sources."@types/triple-beam-1.3.2" sources."abbrev-1.1.1" @@ -104583,7 +102340,7 @@ in sources."acorn-8.10.0" sources."acorn-jsx-5.3.2" sources."agent-base-6.0.2" - sources."agentkeepalive-4.3.0" + sources."agentkeepalive-4.5.0" sources."aggregate-error-3.1.0" sources."ajv-6.12.6" (sources."ajv-formats-2.1.1" // { @@ -104920,7 +102677,11 @@ in sources."inflight-1.0.6" sources."inherits-2.0.4" sources."ini-2.0.0" - sources."inquirer-8.2.5" + (sources."inquirer-8.2.6" // { + dependencies = [ + sources."wrap-ansi-6.2.0" + ]; + }) sources."install-artifact-from-github-1.3.3" sources."ip-1.1.8" sources."ip-regex-4.3.0" @@ -104950,7 +102711,7 @@ in sources."isexe-2.0.0" sources."isomorphic-fetch-3.0.0" sources."isstream-0.1.2" - sources."jackspeak-2.2.2" + sources."jackspeak-2.2.3" sources."jju-1.4.0" sources."join-path-1.1.1" (sources."js-yaml-3.14.1" // { @@ -105425,9 +103186,19 @@ in sha512 = "EkJbYwI1Wt3oujxNlFF0Mq3hqdkDtQz7cPhZnXzUxmNhaxVopDqiwnB3zZmVvt2t6uKvplh21kLTTJ11hWH+0w=="; }; dependencies = [ - sources."@babel/code-frame-7.22.5" + (sources."@babel/code-frame-7.22.10" // { + dependencies = [ + sources."ansi-styles-3.2.1" + sources."chalk-2.4.2" + sources."color-convert-1.9.3" + sources."color-name-1.1.3" + sources."escape-string-regexp-1.0.5" + sources."has-flag-3.0.0" + sources."supports-color-5.5.0" + ]; + }) sources."@babel/helper-validator-identifier-7.22.5" - (sources."@babel/highlight-7.22.5" // { + (sources."@babel/highlight-7.22.10" // { dependencies = [ sources."ansi-styles-3.2.1" sources."chalk-2.4.2" @@ -105499,7 +103270,7 @@ in sources."ieee754-1.2.1" sources."indent-string-5.0.0" sources."inherits-2.0.4" - (sources."inquirer-8.2.5" // { + (sources."inquirer-8.2.6" // { dependencies = [ sources."ansi-regex-5.0.1" sources."emoji-regex-8.0.0" @@ -105515,7 +103286,7 @@ in ]; }) sources."is-arrayish-0.2.1" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" sources."is-fullwidth-code-point-4.0.0" sources."is-interactive-1.0.0" sources."is-plain-obj-1.1.0" @@ -105615,7 +103386,7 @@ in sources."validate-npm-package-license-3.0.4" sources."wcwidth-1.0.1" sources."which-2.0.2" - (sources."wrap-ansi-7.0.0" // { + (sources."wrap-ansi-6.2.0" // { dependencies = [ sources."ansi-regex-5.0.1" sources."emoji-regex-8.0.0" @@ -105650,7 +103421,7 @@ in sources."@types/atob-2.1.2" sources."@types/bn.js-5.1.1" sources."@types/inquirer-6.5.0" - sources."@types/node-20.4.5" + sources."@types/node-20.4.9" sources."@types/pbkdf2-3.1.0" sources."@types/secp256k1-4.0.3" sources."@types/through-0.0.30" @@ -106344,7 +104115,7 @@ in sources."@trufflesuite/uws-js-unofficial-20.10.0-unofficial.2" sources."@types/bn.js-5.1.1" sources."@types/lru-cache-5.1.1" - sources."@types/node-20.4.5" + sources."@types/node-20.4.9" sources."@types/seedrandom-3.0.1" sources."abstract-level-1.0.3" (sources."abstract-leveldown-7.2.0" // { @@ -106391,21 +104162,25 @@ in }; dependencies = [ sources."@ampproject/remapping-2.2.1" - sources."@babel/code-frame-7.22.5" + (sources."@babel/code-frame-7.22.10" // { + dependencies = [ + sources."chalk-2.4.2" + ]; + }) sources."@babel/compat-data-7.22.9" - (sources."@babel/core-7.22.9" // { + (sources."@babel/core-7.22.10" // { dependencies = [ sources."semver-6.3.1" ]; }) - sources."@babel/generator-7.22.9" + sources."@babel/generator-7.22.10" sources."@babel/helper-annotate-as-pure-7.22.5" - (sources."@babel/helper-compilation-targets-7.22.9" // { + (sources."@babel/helper-compilation-targets-7.22.10" // { dependencies = [ sources."semver-6.3.1" ]; }) - (sources."@babel/helper-create-class-features-plugin-7.22.9" // { + (sources."@babel/helper-create-class-features-plugin-7.22.10" // { dependencies = [ sources."semver-6.3.1" ]; @@ -106425,33 +104200,29 @@ in sources."@babel/helper-string-parser-7.22.5" sources."@babel/helper-validator-identifier-7.22.5" sources."@babel/helper-validator-option-7.22.5" - sources."@babel/helpers-7.22.6" - (sources."@babel/highlight-7.22.5" // { + sources."@babel/helpers-7.22.10" + (sources."@babel/highlight-7.22.10" // { dependencies = [ sources."chalk-2.4.2" ]; }) - sources."@babel/parser-7.22.7" + sources."@babel/parser-7.22.10" sources."@babel/plugin-syntax-jsx-7.22.5" sources."@babel/plugin-syntax-typescript-7.22.5" sources."@babel/plugin-transform-modules-commonjs-7.22.5" - sources."@babel/plugin-transform-typescript-7.22.9" + sources."@babel/plugin-transform-typescript-7.22.10" sources."@babel/preset-typescript-7.22.5" - sources."@babel/runtime-7.22.6" + sources."@babel/runtime-7.22.10" sources."@babel/template-7.22.5" - sources."@babel/traverse-7.22.8" - sources."@babel/types-7.22.5" + sources."@babel/traverse-7.22.10" + sources."@babel/types-7.22.10" sources."@hapi/hoek-9.3.0" sources."@hapi/topo-5.1.0" sources."@jridgewell/gen-mapping-0.3.3" - sources."@jridgewell/resolve-uri-3.1.0" + sources."@jridgewell/resolve-uri-3.1.1" sources."@jridgewell/set-array-1.1.2" sources."@jridgewell/sourcemap-codec-1.4.15" - (sources."@jridgewell/trace-mapping-0.3.18" // { - dependencies = [ - sources."@jridgewell/sourcemap-codec-1.4.14" - ]; - }) + sources."@jridgewell/trace-mapping-0.3.19" sources."@lmdb/lmdb-darwin-arm64-2.5.3" sources."@lmdb/lmdb-darwin-x64-2.5.3" sources."@lmdb/lmdb-linux-arm-2.5.3" @@ -106476,7 +104247,7 @@ in sources."@types/common-tags-1.8.1" sources."@types/http-cache-semantics-4.0.1" sources."@types/keyv-3.1.4" - sources."@types/node-20.4.5" + sources."@types/node-20.4.9" sources."@types/node-fetch-2.6.4" sources."@types/responselike-1.0.0" sources."@types/yoga-layout-1.9.2" @@ -106503,7 +104274,7 @@ in ]; }) sources."camelcase-6.3.0" - sources."caniuse-lite-1.0.30001518" + sources."caniuse-lite-1.0.30001519" (sources."chalk-4.1.2" // { dependencies = [ sources."ansi-styles-4.3.0" @@ -106564,7 +104335,7 @@ in sources."domhandler-4.3.1" sources."domutils-2.8.0" sources."dot-prop-5.3.0" - sources."electron-to-chromium-1.4.480" + sources."electron-to-chromium-1.4.490" sources."emoji-regex-8.0.0" sources."encoding-0.1.13" sources."end-of-stream-1.4.4" @@ -106666,7 +104437,7 @@ in sources."mimic-response-1.0.1" sources."minimatch-3.1.2" sources."ms-2.1.2" - sources."msgpackr-1.9.5" + sources."msgpackr-1.9.7" (sources."msgpackr-extract-3.0.2" // { dependencies = [ sources."node-gyp-build-optional-packages-5.0.7" @@ -106711,7 +104482,7 @@ in sources."readable-stream-3.6.2" sources."readable-web-to-node-stream-3.0.2" sources."redux-4.2.1" - sources."regenerator-runtime-0.13.11" + sources."regenerator-runtime-0.14.0" (sources."renderkid-2.0.7" // { dependencies = [ sources."strip-ansi-3.0.1" @@ -106819,9 +104590,18 @@ in sha512 = "rbpBpdiUDTfqWrXPNqEEt/TLkB0tlLtPmgQ4o/la481ar/Sc7rIR/9CN+3SovpbGxQYLb8bqMOyfY1HWqFcJ1A=="; }; dependencies = [ - sources."@babel/code-frame-7.22.5" + (sources."@babel/code-frame-7.22.10" // { + dependencies = [ + sources."ansi-styles-3.2.1" + sources."chalk-2.4.2" + sources."color-convert-1.9.3" + sources."color-name-1.1.3" + sources."has-flag-3.0.0" + sources."supports-color-5.5.0" + ]; + }) sources."@babel/helper-validator-identifier-7.22.5" - (sources."@babel/highlight-7.22.5" // { + (sources."@babel/highlight-7.22.10" // { dependencies = [ sources."ansi-styles-3.2.1" sources."chalk-2.4.2" @@ -107013,9 +104793,9 @@ in sources."@octokit/request-error-2.1.0" sources."@octokit/rest-18.12.0" sources."@octokit/types-6.41.0" - sources."@pkgjs/parseargs-0.11.0" - sources."@sigstore/bundle-1.0.0" + sources."@sigstore/bundle-1.1.0" sources."@sigstore/protobuf-specs-0.2.0" + sources."@sigstore/sign-1.0.0" sources."@sigstore/tuf-1.0.3" sources."@tootallnate/once-2.0.0" sources."@tufjs/canonical-json-1.0.0" @@ -107032,7 +104812,7 @@ in sources."abbrev-1.1.1" sources."abort-controller-3.0.0" sources."agent-base-6.0.2" - sources."agentkeepalive-4.3.0" + sources."agentkeepalive-4.5.0" sources."aggregate-error-3.1.0" (sources."ansi-escapes-4.3.2" // { dependencies = [ @@ -107118,7 +104898,6 @@ in ]; }) sources."delegates-1.0.0" - sources."depd-2.0.0" sources."deprecation-2.3.1" sources."dezalgo-1.0.4" sources."diff-5.1.0" @@ -107205,15 +104984,15 @@ in sources."infer-owner-1.0.4" sources."inflight-1.0.6" sources."inherits-2.0.4" - (sources."inquirer-8.2.5" // { + (sources."inquirer-8.2.6" // { dependencies = [ - sources."wrap-ansi-7.0.0" + sources."wrap-ansi-6.2.0" ]; }) sources."interpret-1.4.0" sources."ip-2.0.0" sources."is-arrayish-0.2.1" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" sources."is-glob-4.0.3" @@ -107229,7 +105008,7 @@ in sources."isarray-1.0.0" sources."isbinaryfile-5.0.0" sources."isexe-2.0.0" - sources."jackspeak-2.2.2" + sources."jackspeak-2.2.3" (sources."jake-10.8.7" // { dependencies = [ sources."brace-expansion-1.1.11" @@ -107403,7 +105182,7 @@ in sources."remove-trailing-separator-1.1.0" sources."replace-ext-1.0.1" sources."request-light-0.7.0" - sources."resolve-1.22.3" + sources."resolve-1.22.4" sources."restore-cursor-3.1.0" sources."retry-0.12.0" sources."reusify-1.0.4" @@ -107425,7 +105204,7 @@ in sources."shebang-regex-3.0.0" sources."shelljs-0.8.5" sources."signal-exit-3.0.7" - sources."sigstore-1.8.0" + sources."sigstore-1.9.0" sources."slash-3.0.0" sources."smart-buffer-4.2.0" sources."socks-2.7.1" @@ -107913,15 +105692,15 @@ in "@gitbeaker/cli" = nodeEnv.buildNodePackage { name = "_at_gitbeaker_slash_cli"; packageName = "@gitbeaker/cli"; - version = "39.10.2"; + version = "39.10.3"; src = fetchurl { - url = "https://registry.npmjs.org/@gitbeaker/cli/-/cli-39.10.2.tgz"; - sha512 = "kDM08MsuMDs2cjt7XvKKxpziCsewVIbBu9wUl/RRuaXtqneUyFJB4eD80w3T2xwAzOJ5Py1Qj/CaIxc+BGqQCA=="; + url = "https://registry.npmjs.org/@gitbeaker/cli/-/cli-39.10.3.tgz"; + sha512 = "JzlRWoJ0WMbG/+xBpX6LpqyhzNkT5xHvGL9nx2d/V8PWVoc5i/sr0giay5hHy5pHHMM0YNE+ad/v8fHrIczvnw=="; }; dependencies = [ - sources."@gitbeaker/core-39.10.2" - sources."@gitbeaker/requester-utils-39.10.2" - sources."@gitbeaker/rest-39.10.2" + sources."@gitbeaker/core-39.10.3" + sources."@gitbeaker/requester-utils-39.10.3" + sources."@gitbeaker/rest-39.10.3" sources."ansi-styles-4.3.0" sources."call-bind-1.0.2" sources."chalk-4.1.2" @@ -107959,9 +105738,19 @@ in sha512 = "AmVaz1ojRfSxpRcdTIjaF+onoZCq0jQ3AYfKh/ixhTJzQ5giBye4j1jPnJ6QYXmfAic62Gd8wN+dmePG84PazA=="; }; dependencies = [ - sources."@babel/code-frame-7.22.5" + (sources."@babel/code-frame-7.22.10" // { + dependencies = [ + sources."ansi-styles-3.2.1" + sources."chalk-2.4.2" + sources."color-convert-1.9.3" + sources."color-name-1.1.3" + sources."escape-string-regexp-1.0.5" + sources."has-flag-3.0.0" + sources."supports-color-5.5.0" + ]; + }) sources."@babel/helper-validator-identifier-7.22.5" - (sources."@babel/highlight-7.22.5" // { + (sources."@babel/highlight-7.22.10" // { dependencies = [ sources."ansi-styles-3.2.1" sources."chalk-2.4.2" @@ -108026,7 +105815,7 @@ in sources."cli-boxes-3.0.0" sources."cli-cursor-3.1.0" sources."cli-spinners-2.9.0" - sources."cli-width-4.0.0" + sources."cli-width-4.1.0" sources."clone-1.0.4" sources."color-convert-2.0.1" sources."color-name-1.1.4" @@ -108134,7 +105923,7 @@ in sources."indent-string-5.0.0" sources."inherits-2.0.4" sources."ini-2.0.0" - (sources."inquirer-9.2.9" // { + (sources."inquirer-9.2.10" // { dependencies = [ sources."is-unicode-supported-0.1.0" (sources."ora-5.4.1" // { @@ -108154,7 +105943,7 @@ in sources."ip-1.1.8" sources."is-arrayish-0.2.1" sources."is-ci-3.0.1" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" sources."is-fullwidth-code-point-3.0.0" sources."is-installed-globally-0.4.0" sources."is-interactive-1.0.0" @@ -108327,11 +106116,11 @@ in sources."uri-js-4.4.1" sources."util-deprecate-1.0.2" sources."validate-npm-package-license-3.0.4" - sources."validator-13.9.0" + sources."validator-13.11.0" sources."vm2-3.9.19" sources."wcwidth-1.0.1" sources."web-streams-polyfill-3.2.1" - sources."when-exit-2.1.0" + sources."when-exit-2.1.1" sources."which-2.0.2" (sources."widest-line-4.0.1" // { dependencies = [ @@ -108370,7 +106159,6 @@ in }; dependencies = [ sources."@isaacs/cliui-8.0.2" - sources."@pkgjs/parseargs-0.11.0" sources."ansi-regex-5.0.1" sources."ansi-styles-6.2.1" sources."balanced-match-1.0.2" @@ -108383,7 +106171,7 @@ in sources."foreground-child-3.1.1" sources."is-fullwidth-code-point-3.0.0" sources."isexe-2.0.0" - sources."jackspeak-2.2.2" + sources."jackspeak-2.2.3" sources."lru-cache-10.0.0" sources."minimatch-9.0.3" sources."minipass-7.0.2" @@ -108660,9 +106448,7 @@ in }; dependencies = [ sources."@ardatan/aggregate-error-0.0.6" - sources."@babel/code-frame-7.22.5" - sources."@babel/helper-validator-identifier-7.22.5" - (sources."@babel/highlight-7.22.5" // { + (sources."@babel/code-frame-7.22.10" // { dependencies = [ sources."ansi-styles-3.2.1" sources."chalk-2.4.2" @@ -108672,7 +106458,18 @@ in sources."supports-color-5.5.0" ]; }) - sources."@exodus/schemasafe-1.1.1" + sources."@babel/helper-validator-identifier-7.22.5" + (sources."@babel/highlight-7.22.10" // { + dependencies = [ + sources."ansi-styles-3.2.1" + sources."chalk-2.4.2" + sources."color-convert-1.9.3" + sources."color-name-1.1.3" + sources."has-flag-3.0.0" + sources."supports-color-5.5.0" + ]; + }) + sources."@exodus/schemasafe-1.2.3" sources."@graphql-cli/common-4.1.0" (sources."@graphql-cli/init-4.1.0" // { dependencies = [ @@ -108769,7 +106566,7 @@ in sources."@nodelib/fs.walk-1.2.8" sources."@sindresorhus/is-0.14.0" sources."@szmarczak/http-timer-1.1.2" - sources."@types/node-20.4.5" + sources."@types/node-20.4.9" sources."@types/parse-json-4.0.0" sources."@types/websocket-1.0.2" sources."abort-controller-3.0.0" @@ -109251,11 +107048,11 @@ in dependencies = [ sources."@ampproject/remapping-2.2.1" sources."@ardatan/sync-fetch-0.0.1" - sources."@babel/code-frame-7.22.5" + sources."@babel/code-frame-7.22.10" sources."@babel/compat-data-7.22.9" - sources."@babel/core-7.22.9" - sources."@babel/generator-7.22.9" - sources."@babel/helper-compilation-targets-7.22.9" + sources."@babel/core-7.22.10" + sources."@babel/generator-7.22.10" + sources."@babel/helper-compilation-targets-7.22.10" sources."@babel/helper-environment-visitor-7.22.5" sources."@babel/helper-function-name-7.22.5" sources."@babel/helper-hoist-variables-7.22.5" @@ -109267,18 +107064,18 @@ in sources."@babel/helper-string-parser-7.22.5" sources."@babel/helper-validator-identifier-7.22.5" sources."@babel/helper-validator-option-7.22.5" - sources."@babel/helpers-7.22.6" - sources."@babel/highlight-7.22.5" - sources."@babel/parser-7.22.7" + sources."@babel/helpers-7.22.10" + sources."@babel/highlight-7.22.10" + sources."@babel/parser-7.22.10" sources."@babel/plugin-syntax-import-assertions-7.22.5" sources."@babel/polyfill-7.12.1" sources."@babel/template-7.22.5" - sources."@babel/traverse-7.22.8" - sources."@babel/types-7.22.5" - sources."@graphql-tools/batch-execute-9.0.0" + sources."@babel/traverse-7.22.10" + sources."@babel/types-7.22.10" + sources."@graphql-tools/batch-execute-9.0.1" sources."@graphql-tools/code-file-loader-8.0.1" - sources."@graphql-tools/delegate-10.0.0" - sources."@graphql-tools/executor-1.1.0" + sources."@graphql-tools/delegate-10.0.2" + sources."@graphql-tools/executor-1.2.0" sources."@graphql-tools/executor-graphql-ws-1.1.0" sources."@graphql-tools/executor-http-1.0.2" sources."@graphql-tools/executor-legacy-ws-1.0.1" @@ -109290,25 +107087,21 @@ in sources."@graphql-tools/merge-9.0.0" sources."@graphql-tools/schema-10.0.0" sources."@graphql-tools/url-loader-8.0.0" - sources."@graphql-tools/utils-10.0.4" + sources."@graphql-tools/utils-10.0.5" sources."@graphql-tools/wrap-10.0.0" sources."@graphql-typed-document-node/core-3.2.0" sources."@iarna/toml-2.2.5" sources."@jridgewell/gen-mapping-0.3.3" - sources."@jridgewell/resolve-uri-3.1.0" + sources."@jridgewell/resolve-uri-3.1.1" sources."@jridgewell/set-array-1.1.2" sources."@jridgewell/sourcemap-codec-1.4.15" - (sources."@jridgewell/trace-mapping-0.3.18" // { - dependencies = [ - sources."@jridgewell/sourcemap-codec-1.4.14" - ]; - }) + sources."@jridgewell/trace-mapping-0.3.19" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" sources."@repeaterjs/repeater-3.0.4" sources."@types/estree-1.0.1" - sources."@types/node-20.4.5" + sources."@types/node-20.4.9" sources."@types/ws-8.5.5" sources."@types/yargs-16.0.5" sources."@types/yargs-parser-21.0.0" @@ -109320,7 +107113,7 @@ in sources."@vue/shared-3.3.4" sources."@whatwg-node/events-0.1.1" sources."@whatwg-node/fetch-0.9.9" - sources."@whatwg-node/node-fetch-0.4.11" + sources."@whatwg-node/node-fetch-0.4.13" sources."acorn-8.10.0" sources."ansi-regex-5.0.1" sources."ansi-styles-3.2.1" @@ -109335,7 +107128,7 @@ in sources."bufferutil-4.0.7" sources."busboy-1.6.0" sources."callsites-3.1.0" - sources."caniuse-lite-1.0.30001518" + sources."caniuse-lite-1.0.30001519" sources."chalk-2.4.2" sources."cliui-7.0.4" (sources."code-red-1.0.3" // { @@ -109358,7 +107151,7 @@ in sources."dir-glob-3.0.1" sources."dotenv-8.2.0" sources."dset-3.1.2" - sources."electron-to-chromium-1.4.480" + sources."electron-to-chromium-1.4.490" sources."emoji-regex-8.0.0" sources."encoding-0.1.13" sources."error-ex-1.3.2" @@ -109521,9 +107314,19 @@ in }; dependencies = [ sources."@ardatan/sync-fetch-0.0.1" - sources."@babel/code-frame-7.22.5" + (sources."@babel/code-frame-7.22.10" // { + dependencies = [ + sources."ansi-styles-3.2.1" + sources."chalk-2.4.2" + sources."color-convert-1.9.3" + sources."color-name-1.1.3" + sources."escape-string-regexp-1.0.5" + sources."has-flag-3.0.0" + sources."supports-color-5.5.0" + ]; + }) sources."@babel/helper-validator-identifier-7.22.5" - (sources."@babel/highlight-7.22.5" // { + (sources."@babel/highlight-7.22.10" // { dependencies = [ sources."ansi-styles-3.2.1" sources."chalk-2.4.2" @@ -109604,7 +107407,7 @@ in sources."@peculiar/webcrypto-1.4.3" sources."@repeaterjs/repeater-3.0.4" sources."@types/json-schema-7.0.9" - sources."@types/node-20.4.5" + sources."@types/node-20.4.9" sources."@types/ws-8.5.5" sources."@whatwg-node/events-0.0.3" sources."@whatwg-node/fetch-0.8.8" @@ -109811,7 +107614,7 @@ in sources."pngjs-6.0.0" sources."proxy-addr-2.0.7" sources."punycode-1.4.1" - sources."pvtsutils-1.3.2" + sources."pvtsutils-1.3.3" sources."pvutils-1.1.3" sources."qs-6.5.1" sources."queue-microtask-1.2.3" @@ -109942,7 +107745,7 @@ in sources."ini-1.3.8" sources."interpret-1.1.0" sources."is-absolute-1.0.0" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" sources."is-extglob-2.1.1" sources."is-glob-4.0.3" sources."is-number-7.0.0" @@ -109971,7 +107774,7 @@ in sources."path-root-regex-0.1.2" sources."picomatch-2.3.1" sources."rechoir-0.7.1" - sources."resolve-1.22.3" + sources."resolve-1.22.4" sources."resolve-dir-1.0.1" sources."supports-preserve-symlinks-flag-1.0.0" sources."to-regex-range-5.0.1" @@ -110359,7 +108162,7 @@ in sources."is-arrayish-0.2.1" sources."is-binary-path-1.0.1" sources."is-buffer-1.1.6" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" sources."is-data-descriptor-1.0.0" sources."is-descriptor-1.0.2" sources."is-extendable-0.1.1" @@ -110473,7 +108276,7 @@ in sources."replace-homedir-1.0.0" sources."require-directory-2.1.1" sources."require-main-filename-1.0.1" - sources."resolve-1.22.3" + sources."resolve-1.22.4" sources."resolve-dir-1.0.1" sources."resolve-options-1.1.0" sources."resolve-url-0.2.1" @@ -110764,7 +108567,7 @@ in }) sources."is-arrayish-0.2.1" sources."is-buffer-1.1.6" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" (sources."is-data-descriptor-1.0.0" // { dependencies = [ sources."kind-of-6.0.3" @@ -110881,7 +108684,7 @@ in sources."replace-homedir-1.0.0" sources."require-directory-2.1.1" sources."require-main-filename-1.0.1" - sources."resolve-1.22.3" + sources."resolve-1.22.4" sources."resolve-dir-1.0.1" sources."resolve-url-0.2.1" sources."ret-0.1.15" @@ -111146,13 +108949,13 @@ in hsd = nodeEnv.buildNodePackage { name = "hsd"; packageName = "hsd"; - version = "5.1.0"; + version = "6.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/hsd/-/hsd-5.1.0.tgz"; - sha512 = "t0MWWDMFpjx9UUe1S/kkrnFVxK7FOaQDxZGoMXrsv/UCy+cbTW1OnLqkOIyk8ep5897FsVoCkCgmxvE2JfsXPA=="; + url = "https://registry.npmjs.org/hsd/-/hsd-6.0.0.tgz"; + sha512 = "pl57FtFzrzL2jSsiOru/WvHLlhZuwM+wskme/d6S96tpj5kOmp8zJaNsZ9bpXZBIawtrM6+hZvRaNvE4pegbLg=="; }; dependencies = [ - sources."bcfg-0.1.8" + sources."bcfg-0.2.1" (sources."bcrypto-5.4.0" // { dependencies = [ sources."bufio-1.0.7" @@ -111190,9 +108993,8 @@ in sources."bufio-1.2.0" sources."bupnp-0.2.6" sources."bval-0.1.8" - sources."bweb-0.1.12" + sources."bweb-0.2.0" sources."goosig-0.10.0" - sources."hs-client-0.0.13" sources."loady-0.0.5" sources."mrmr-0.1.10" sources."n64-0.2.10" @@ -111239,13 +109041,13 @@ in hs-client = nodeEnv.buildNodePackage { name = "hs-client"; packageName = "hs-client"; - version = "0.0.13"; + version = "6.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/hs-client/-/hs-client-0.0.13.tgz"; - sha512 = "3Vm/4S0TDstbOW+OfdTeP2EQ4dolPNqMulTSr31RihwX8cX1DyT4il1Fc9STXXToXTsZuFro2WD/+1m0MWi5Ag=="; + url = "https://registry.npmjs.org/hs-client/-/hs-client-6.0.0.tgz"; + sha512 = "zjAOSyMeDtzGpOmIg+GPgZ+D/3CHtswSSn0C1CJUcHL3goPr9Tmc5ZpBxQeFkwkAys3RADWPfxiWNcL8nvDCtQ=="; }; dependencies = [ - sources."bcfg-0.1.8" + sources."bcfg-0.2.1" sources."bcurl-0.2.0" sources."brq-0.1.8" sources."bsert-0.0.12" @@ -111254,7 +109056,7 @@ in buildInputs = globalBuildInputs; meta = { description = "HSD node and wallet client"; - homepage = "https://github.com/handshake-org/hs-client"; + homepage = "https://github.com/handshake-org/hsd"; license = "MIT"; }; production = true; @@ -111283,7 +109085,7 @@ in sources."async-2.6.4" sources."asynckit-0.4.0" sources."available-typed-arrays-1.0.5" - sources."aws-sdk-2.1427.0" + sources."aws-sdk-2.1433.0" sources."aws-sign2-0.7.0" sources."aws4-1.12.0" sources."base64-js-1.5.1" @@ -111806,10 +109608,10 @@ in immich = nodeEnv.buildNodePackage { name = "immich"; packageName = "immich"; - version = "0.40.2"; + version = "0.41.0"; src = fetchurl { - url = "https://registry.npmjs.org/immich/-/immich-0.40.2.tgz"; - sha512 = "OT3ysAfWq/0XkFNdf+SIJxUYvMoaNNLQZGm6peezzb/jNTkUoEVzE5uZNPqQ08Yy8JEOfB6h5qxOHujMOnPBkA=="; + url = "https://registry.npmjs.org/immich/-/immich-0.41.0.tgz"; + sha512 = "F+DIJ41/1L4Cqs0NqubcD2qttYcxTs32DCZS2l6U7d+a4SVtbxYwtEkvljSKACka1vokmHetpveGyRau2FdZ8w=="; }; dependencies = [ sources."ansi-regex-5.0.1" @@ -111837,7 +109639,7 @@ in sources."string-width-4.2.3" sources."strip-ansi-6.0.1" sources."supports-color-5.5.0" - sources."systeminformation-5.18.10" + sources."systeminformation-5.18.15" sources."yocto-queue-0.1.0" ]; buildInputs = globalBuildInputs; @@ -111912,7 +109714,7 @@ in sources."is-wsl-2.2.0" sources."isexe-2.0.0" sources."jquery-3.7.0" - sources."jquery.terminal-2.37.0" + sources."jquery.terminal-2.37.1" sources."keyboardevent-key-polyfill-1.1.0" sources."line-reader-0.4.0" sources."nice-try-1.0.5" @@ -111953,10 +109755,10 @@ in }; dependencies = [ sources."@azure/abort-controller-1.1.0" - sources."@azure/core-auth-1.4.0" + sources."@azure/core-auth-1.5.0" sources."@azure/core-http-2.3.2" sources."@azure/core-tracing-1.0.0-preview.13" - sources."@azure/core-util-1.3.2" + sources."@azure/core-util-1.4.0" sources."@azure/logger-1.0.4" sources."@bmewburn/js-beautify-1.14.7" sources."@bmewburn/vscode-html-languageserver-1.9.0" @@ -111970,10 +109772,10 @@ in sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" sources."@opentelemetry/api-1.4.1" - sources."@opentelemetry/core-1.15.1" - sources."@opentelemetry/resources-1.15.1" - sources."@opentelemetry/sdk-trace-base-1.15.1" - sources."@opentelemetry/semantic-conventions-1.15.1" + sources."@opentelemetry/core-1.15.2" + sources."@opentelemetry/resources-1.15.2" + sources."@opentelemetry/sdk-trace-base-1.15.2" + sources."@opentelemetry/semantic-conventions-1.15.2" sources."@protobufjs/aspromise-1.1.2" sources."@protobufjs/base64-1.1.2" sources."@protobufjs/codegen-2.0.4" @@ -111985,7 +109787,7 @@ in sources."@protobufjs/pool-1.1.0" sources."@protobufjs/utf8-1.1.0" sources."@selderee/plugin-htmlparser2-0.11.0" - sources."@types/node-20.4.5" + sources."@types/node-20.4.9" (sources."@types/node-fetch-2.6.4" // { dependencies = [ sources."form-data-3.0.1" @@ -111998,7 +109800,7 @@ in sources."ajv-6.12.6" sources."ansi-regex-5.0.1" sources."applicationinsights-2.3.6" - sources."applicationinsights-native-metrics-0.0.9" + sources."applicationinsights-native-metrics-0.0.10" sources."aproba-2.0.0" sources."are-we-there-yet-2.0.0" sources."asn1-0.2.6" @@ -112815,7 +110617,7 @@ in sources."@aws-sdk/service-error-classification-3.296.0" sources."@aws-sdk/shared-ini-file-loader-3.296.0" sources."@aws-sdk/signature-v4-3.296.0" - sources."@aws-sdk/signature-v4-crt-3.378.0" + sources."@aws-sdk/signature-v4-crt-3.387.0" sources."@aws-sdk/signature-v4-multi-region-3.296.0" sources."@aws-sdk/smithy-client-3.296.0" sources."@aws-sdk/token-providers-3.296.0" @@ -112845,8 +110647,8 @@ in sources."@aws-sdk/util-utf8-browser-3.259.0" sources."@aws-sdk/util-waiter-3.296.0" sources."@aws-sdk/xml-builder-3.295.0" - sources."@babel/runtime-7.22.6" - sources."@braintree/sanitize-url-6.0.3" + sources."@babel/runtime-7.22.10" + sources."@braintree/sanitize-url-6.0.4" sources."@cronvel/get-pixels-3.4.1" sources."@gar/promisify-1.1.3" sources."@httptoolkit/websocket-stream-6.0.1" @@ -112859,34 +110661,14 @@ in sources."@joplin/turndown-4.0.67" sources."@joplin/turndown-plugin-gfm-1.0.49" sources."@joplin/utils-2.11.2" - (sources."@mapbox/node-pre-gyp-1.0.11" // { - dependencies = [ - sources."are-we-there-yet-2.0.0" - sources."gauge-3.0.2" - sources."is-fullwidth-code-point-3.0.0" - sources."npmlog-5.0.1" - sources."readable-stream-3.6.2" - sources."rimraf-3.0.2" - sources."semver-7.5.4" - sources."string-width-4.2.3" - ]; - }) - (sources."@npmcli/fs-1.1.1" // { - dependencies = [ - sources."semver-7.5.4" - ]; - }) - (sources."@npmcli/move-file-1.1.2" // { - dependencies = [ - sources."mkdirp-1.0.4" - sources."rimraf-3.0.2" - ]; - }) - sources."@smithy/eventstream-codec-2.0.1" + sources."@mapbox/node-pre-gyp-1.0.11" + sources."@npmcli/fs-1.1.1" + sources."@npmcli/move-file-1.1.2" + sources."@smithy/eventstream-codec-2.0.2" sources."@smithy/is-array-buffer-2.0.0" - sources."@smithy/querystring-parser-2.0.1" - sources."@smithy/signature-v4-2.0.1" - sources."@smithy/types-2.0.2" + sources."@smithy/querystring-parser-2.0.2" + sources."@smithy/signature-v4-2.0.2" + sources."@smithy/types-2.1.0" sources."@smithy/util-buffer-from-2.0.0" sources."@smithy/util-hex-encoding-2.0.0" sources."@smithy/util-middleware-2.0.0" @@ -112894,7 +110676,7 @@ in sources."@smithy/util-utf8-2.0.0" sources."@tootallnate/once-2.0.0" sources."@types/nanoid-3.0.0" - sources."@types/node-20.4.5" + sources."@types/node-20.4.9" sources."@types/ws-8.5.5" sources."abab-2.0.6" sources."abbrev-1.1.1" @@ -112902,20 +110684,15 @@ in sources."acorn-globals-7.0.1" sources."acorn-walk-8.2.0" sources."agent-base-6.0.2" - (sources."agentkeepalive-4.3.0" // { - dependencies = [ - sources."depd-2.0.0" - ]; - }) + sources."agentkeepalive-4.5.0" sources."aggregate-error-3.1.0" sources."ajv-6.12.6" - sources."ansi-0.3.1" (sources."ansi-escape-sequences-4.1.0" // { dependencies = [ sources."array-back-3.1.0" ]; }) - sources."ansi-regex-2.1.1" + sources."ansi-regex-3.0.1" (sources."ansi-styles-4.3.0" // { dependencies = [ sources."color-convert-2.0.1" @@ -112924,7 +110701,11 @@ in }) sources."anymatch-3.1.3" sources."aproba-2.0.0" - sources."are-we-there-yet-1.0.6" + (sources."are-we-there-yet-2.0.0" // { + dependencies = [ + sources."readable-stream-3.6.2" + ]; + }) sources."argparse-2.0.1" sources."array-back-2.0.0" sources."asap-2.0.6" @@ -112934,7 +110715,7 @@ in sources."asynckit-0.4.0" sources."atob-2.1.2" sources."available-typed-arrays-1.0.5" - sources."aws-crt-1.17.0" + sources."aws-crt-1.17.1" (sources."aws-sdk-2.1340.0" // { dependencies = [ sources."buffer-4.9.2" @@ -112953,8 +110734,6 @@ in sources."base64-js-1.5.1" sources."base64-stream-1.0.0" sources."bcrypt-pbkdf-1.0.2" - sources."big-integer-1.6.51" - sources."binary-0.3.0" sources."binary-extensions-2.2.0" (sources."bl-4.1.0" // { dependencies = [ @@ -112962,61 +110741,36 @@ in sources."readable-stream-3.6.2" ]; }) - sources."bluebird-3.7.2" sources."bowser-2.11.0" sources."brace-expansion-1.1.11" sources."braces-3.0.2" sources."buffer-6.0.3" sources."buffer-from-1.1.2" - sources."buffer-indexof-polyfill-1.0.2" - sources."buffer-shims-1.0.0" - sources."buffers-0.1.1" sources."bufferutil-4.0.7" sources."builtin-modules-3.3.0" (sources."cacache-15.3.0" // { dependencies = [ - sources."chownr-2.0.0" - sources."fs-minipass-2.1.0" sources."minipass-3.3.6" - sources."mkdirp-1.0.4" - sources."rimraf-3.0.2" - sources."yallist-4.0.0" ]; }) sources."call-bind-1.0.2" sources."camel-case-3.0.0" - sources."camelcase-2.1.1" + sources."camelcase-4.1.0" sources."canvas-2.11.2" sources."caseless-0.12.0" - sources."chainsaw-0.1.0" sources."chalk-4.1.2" sources."charenc-0.0.2" sources."chokidar-3.5.3" - sources."chownr-1.1.4" + sources."chownr-2.0.0" sources."chroma-js-2.4.2" sources."clean-css-4.2.4" sources."clean-stack-2.2.0" (sources."cliss-0.0.2" // { dependencies = [ - sources."ansi-regex-3.0.1" - sources."camelcase-4.1.0" sources."strip-ansi-4.0.0" sources."yargs-parser-7.0.0" ]; }) - (sources."cliui-3.2.0" // { - dependencies = [ - sources."strip-ansi-3.0.1" - ]; - }) - (sources."cmake-js-6.3.2" // { - dependencies = [ - sources."axios-0.21.4" - sources."fs-extra-5.0.0" - sources."tar-4.4.19" - ]; - }) - sources."code-point-at-1.1.0" sources."color-3.2.1" sources."color-convert-1.9.3" sources."color-name-1.1.3" @@ -113036,11 +110790,7 @@ in }) sources."console-control-strings-1.1.0" sources."core-util-is-1.0.3" - (sources."cross-spawn-7.0.3" // { - dependencies = [ - sources."which-2.0.2" - ]; - }) + sources."cross-spawn-7.0.3" sources."crypt-0.0.2" sources."crypto-js-4.1.1" sources."css-3.0.0" @@ -113123,7 +110873,6 @@ in sources."data-urls-4.0.0" sources."datauri-4.1.0" sources."debug-4.3.4" - sources."decamelize-1.2.0" sources."decimal.js-10.4.3" sources."decode-uri-component-0.2.2" sources."decompress-response-4.2.1" @@ -113152,12 +110901,12 @@ in sources."domhandler-5.0.3" ]; }) - sources."duplexer2-0.1.4" sources."duplexify-3.7.1" sources."ecc-jsbn-0.1.2" sources."emoji-regex-8.0.0" (sources."emphasize-1.5.0" // { dependencies = [ + sources."ansi-regex-2.1.1" sources."ansi-styles-2.2.1" sources."chalk-1.1.3" sources."highlight.js-9.12.0" @@ -113205,12 +110954,15 @@ in sources."universalify-2.0.0" ]; }) - sources."fs-minipass-1.2.7" + (sources."fs-minipass-2.1.0" // { + dependencies = [ + sources."minipass-3.3.6" + ]; + }) sources."fs.realpath-1.0.0" sources."fsevents-2.3.2" - sources."fstream-1.0.12" sources."function-bind-1.1.1" - sources."gauge-1.2.7" + sources."gauge-3.0.2" sources."get-intrinsic-1.2.1" sources."get-prototype-chain-1.0.1" sources."get-stdin-5.0.1" @@ -113226,7 +110978,11 @@ in sources."har-schema-2.0.0" sources."har-validator-5.1.5" sources."has-1.0.3" - sources."has-ansi-2.0.0" + (sources."has-ansi-2.0.0" // { + dependencies = [ + sources."ansi-regex-2.1.1" + ]; + }) sources."has-flag-4.0.0" sources."has-proto-1.0.1" sources."has-symbols-1.0.3" @@ -113255,7 +111011,7 @@ in (sources."image-data-uri-2.0.1" // { dependencies = [ sources."fs-extra-0.26.7" - sources."jsonfile-2.4.0" + sources."rimraf-2.7.1" ]; }) sources."image-size-1.0.0" @@ -113294,7 +111050,6 @@ in ]; }) sources."internmap-2.0.3" - sources."invert-kv-1.0.0" sources."iota-array-1.0.0" sources."ip-2.0.0" sources."ip-regex-4.3.0" @@ -113305,10 +111060,9 @@ in sources."is-callable-1.2.7" sources."is-docker-2.2.1" sources."is-extglob-2.1.1" - sources."is-fullwidth-code-point-1.0.0" + sources."is-fullwidth-code-point-3.0.0" sources."is-generator-function-1.0.10" sources."is-glob-4.0.3" - sources."is-iojs-1.1.0" sources."is-lambda-1.0.1" sources."is-number-7.0.0" sources."is-potential-custom-element-name-1.0.1" @@ -113332,7 +111086,7 @@ in sources."json-schema-0.4.0" sources."json-schema-traverse-0.4.1" sources."json-stringify-safe-5.0.1" - sources."jsonfile-4.0.0" + sources."jsonfile-2.4.0" sources."jsprim-1.4.2" (sources."katex-0.13.24" // { dependencies = [ @@ -113343,16 +111097,12 @@ in sources."khroma-2.0.0" sources."klaw-1.3.1" sources."lazyness-1.2.0" - sources."lcid-1.0.0" sources."leven-2.1.0" sources."levenshtein-1.0.5" sources."linkify-it-4.0.1" - sources."listenercount-1.0.1" sources."locate-path-2.0.0" sources."lodash-4.17.21" - sources."lodash.pad-4.5.1" sources."lodash.padend-4.6.1" - sources."lodash.padstart-4.6.1" sources."lodash.repeat-4.1.0" sources."lower-case-1.1.4" (sources."lowlight-1.9.2" // { @@ -113360,11 +111110,7 @@ in sources."highlight.js-9.12.0" ]; }) - (sources."lru-cache-6.0.0" // { - dependencies = [ - sources."yallist-4.0.0" - ]; - }) + sources."lru-cache-6.0.0" sources."magicli-0.0.8" (sources."make-dir-3.1.0" // { dependencies = [ @@ -113376,7 +111122,6 @@ in sources."@tootallnate/once-1.1.2" sources."http-proxy-agent-4.0.1" sources."minipass-3.3.6" - sources."yallist-4.0.0" ]; }) (sources."markdown-it-13.0.1" // { @@ -113399,13 +111144,6 @@ in sources."md5-2.3.0" sources."md5-file-5.0.0" sources."mdurl-1.0.1" - (sources."memory-stream-0.0.3" // { - dependencies = [ - sources."isarray-0.0.1" - sources."readable-stream-1.0.34" - sources."string_decoder-0.10.31" - ]; - }) sources."merge-stream-2.0.0" sources."mermaid-9.2.2" sources."mime-db-1.52.0" @@ -113415,40 +111153,38 @@ in sources."mimic-response-2.1.0" sources."minimatch-3.1.2" sources."minimist-1.2.8" - sources."minipass-2.9.0" + sources."minipass-5.0.0" (sources."minipass-collect-1.0.2" // { dependencies = [ sources."minipass-3.3.6" - sources."yallist-4.0.0" ]; }) (sources."minipass-fetch-1.4.1" // { dependencies = [ sources."minipass-3.3.6" - sources."minizlib-2.1.2" - sources."yallist-4.0.0" ]; }) (sources."minipass-flush-1.0.5" // { dependencies = [ sources."minipass-3.3.6" - sources."yallist-4.0.0" ]; }) (sources."minipass-pipeline-1.2.4" // { dependencies = [ sources."minipass-3.3.6" - sources."yallist-4.0.0" ]; }) (sources."minipass-sized-1.0.3" // { dependencies = [ sources."minipass-3.3.6" - sources."yallist-4.0.0" ]; }) - sources."minizlib-1.3.3" - sources."mkdirp-0.5.6" + (sources."minizlib-2.1.2" // { + dependencies = [ + sources."minipass-3.3.6" + ]; + }) + sources."mkdirp-1.0.4" sources."mkdirp-classic-0.5.3" sources."moment-2.29.4" sources."moment-mini-2.29.4" @@ -113472,11 +111208,7 @@ in sources."negotiator-0.6.3" sources."nextgen-events-1.5.3" sources."no-case-2.3.2" - (sources."node-abi-3.45.0" // { - dependencies = [ - sources."semver-7.5.4" - ]; - }) + sources."node-abi-3.45.0" sources."node-addon-api-4.3.0" sources."node-bitmap-0.0.1" sources."node-emoji-1.11.0" @@ -113491,21 +111223,14 @@ in dependencies = [ sources."are-we-there-yet-3.0.1" sources."gauge-4.0.4" - sources."is-fullwidth-code-point-3.0.0" sources."npmlog-6.0.2" sources."readable-stream-3.6.2" - sources."rimraf-3.0.2" - sources."semver-7.5.4" - sources."string-width-4.2.3" - sources."which-2.0.2" ]; }) sources."node-gyp-build-4.6.0" (sources."node-notifier-10.0.1" // { dependencies = [ - sources."semver-7.5.4" sources."uuid-8.3.2" - sources."which-2.0.2" ]; }) sources."node-persist-3.1.3" @@ -113514,9 +111239,8 @@ in sources."nopt-5.0.0" sources."normalize-path-3.0.0" sources."npm-run-path-4.0.1" - sources."npmlog-1.2.1" + sources."npmlog-5.0.1" sources."number-allocator-1.0.14" - sources."number-is-nan-1.0.1" sources."nwsapi-2.2.7" sources."oauth-sign-0.9.0" sources."object-assign-4.1.1" @@ -113530,7 +111254,6 @@ in sources."once-1.4.0" sources."onetime-5.1.2" sources."open-8.4.2" - sources."os-locale-1.4.0" sources."p-limit-1.3.0" sources."p-locate-2.0.0" sources."p-map-4.0.0" @@ -113582,7 +111305,7 @@ in sources."readdirp-3.6.0" sources."reduce-flatten-1.0.1" sources."redux-4.2.1" - sources."regenerator-runtime-0.13.11" + sources."regenerator-runtime-0.14.0" sources."reinterval-1.1.0" sources."relateurl-0.2.7" sources."relative-3.0.2" @@ -113597,7 +111320,7 @@ in sources."reselect-4.1.8" sources."retry-0.12.0" sources."rfdc-1.3.0" - sources."rimraf-2.7.1" + sources."rimraf-3.0.2" sources."robust-predicates-3.0.2" sources."rrweb-cssom-0.6.0" sources."rw-1.3.3" @@ -113605,7 +111328,7 @@ in sources."safer-buffer-2.1.2" sources."sax-1.2.4" sources."saxes-6.0.0" - sources."semver-5.7.2" + sources."semver-7.5.4" sources."server-destroy-1.0.1" sources."set-blocking-2.0.0" sources."setimmediate-1.0.5" @@ -113619,7 +111342,6 @@ in sources."decompress-response-6.0.0" sources."mimic-response-3.1.0" sources."node-addon-api-6.1.0" - sources."semver-7.5.4" sources."simple-get-4.0.1" ]; }) @@ -113647,14 +111369,12 @@ in sources."readable-stream-3.6.2" ]; }) - sources."splitargs-0.0.7" sources."sprintf-js-1.1.2" sources."sqlite3-5.1.6" sources."sshpk-1.17.0" (sources."ssri-8.0.1" // { dependencies = [ sources."minipass-3.3.6" - sources."yallist-4.0.0" ]; }) sources."statuses-1.5.0" @@ -113667,11 +111387,7 @@ in sources."readable-stream-3.6.2" ]; }) - (sources."string-width-1.0.2" // { - dependencies = [ - sources."strip-ansi-3.0.1" - ]; - }) + sources."string-width-4.2.3" (sources."string_decoder-1.1.1" // { dependencies = [ sources."safe-buffer-5.1.2" @@ -113694,25 +111410,12 @@ in sources."supports-color-7.2.0" sources."symbol-tree-3.2.4" sources."table-layout-0.4.5" - (sources."tar-6.1.15" // { + sources."tar-6.1.15" + (sources."tar-fs-2.1.1" // { dependencies = [ - sources."chownr-2.0.0" - (sources."fs-minipass-2.1.0" // { - dependencies = [ - sources."minipass-3.3.6" - ]; - }) - sources."minipass-5.0.0" - (sources."minizlib-2.1.2" // { - dependencies = [ - sources."minipass-3.3.6" - ]; - }) - sources."mkdirp-1.0.4" - sources."yallist-4.0.0" + sources."chownr-1.1.4" ]; }) - sources."tar-fs-2.1.1" (sources."tar-stream-2.2.0" // { dependencies = [ sources."readable-stream-3.6.2" @@ -113726,7 +111429,6 @@ in sources."terminal-kit-3.0.0" (sources."tkwidgets-0.5.27" // { dependencies = [ - sources."ansi-regex-3.0.1" sources."ansi-styles-3.2.1" sources."chalk-2.4.2" sources."has-flag-3.0.0" @@ -113737,18 +111439,12 @@ in sources."strip-ansi-4.0.0" sources."supports-color-5.5.0" sources."terminal-kit-1.49.4" - sources."wrap-ansi-3.0.1" ]; }) sources."to-regex-range-5.0.1" sources."toidentifier-1.0.1" - (sources."tough-cookie-4.1.3" // { - dependencies = [ - sources."universalify-0.2.0" - ]; - }) + sources."tough-cookie-4.1.3" sources."tr46-4.1.1" - sources."traverse-0.3.9" sources."tree-kit-0.7.5" sources."tslib-2.6.1" sources."tunnel-agent-0.6.0" @@ -113762,17 +111458,9 @@ in sources."uniq-1.0.1" sources."unique-filename-1.1.1" sources."unique-slug-2.0.2" - sources."universalify-0.1.2" + sources."universalify-0.2.0" sources."unorm-1.6.0" sources."unpack-string-0.0.2" - (sources."unzipper-0.8.14" // { - dependencies = [ - sources."bluebird-3.4.7" - sources."process-nextick-args-1.0.7" - sources."readable-stream-2.1.5" - sources."string_decoder-0.10.31" - ]; - }) sources."upper-case-1.1.3" sources."uri-js-4.4.1" (sources."url-0.10.3" // { @@ -113780,7 +111468,6 @@ in sources."punycode-1.3.2" ]; }) - sources."url-join-0.0.1" sources."url-parse-1.5.10" sources."utf-8-validate-6.0.3" sources."util-0.12.5" @@ -113796,15 +111483,16 @@ in sources."whatwg-encoding-2.0.0" sources."whatwg-mimetype-3.0.0" sources."whatwg-url-12.0.1" - sources."which-1.3.1" + sources."which-2.0.2" sources."which-typed-array-1.1.11" sources."wide-align-1.1.5" - sources."window-size-0.1.4" sources."word-wrap-1.2.3" sources."wordwrapjs-3.0.0" - (sources."wrap-ansi-2.1.0" // { + (sources."wrap-ansi-3.0.1" // { dependencies = [ - sources."strip-ansi-3.0.1" + sources."is-fullwidth-code-point-2.0.0" + sources."string-width-2.1.1" + sources."strip-ansi-4.0.0" ]; }) sources."wrappy-1.0.2" @@ -113814,9 +111502,7 @@ in sources."xmlbuilder-11.0.1" sources."xmlchars-2.2.0" sources."xtend-4.0.2" - sources."y18n-3.2.2" - sources."yallist-3.1.1" - sources."yargs-3.32.0" + sources."yallist-4.0.0" sources."yargs-parser-21.1.1" ]; buildInputs = globalBuildInputs; @@ -113903,7 +111589,7 @@ in sha512 = "e8cIg2z62InH7azBBi3EsSEqrKx+nUtAS5bBcYTSpZFA+vhNPyhv8PTFZ0WsjOPDj04/dOLlm08EDcQJDqaGQg=="; }; dependencies = [ - sources."@babel/parser-7.22.7" + sources."@babel/parser-7.22.10" sources."@jsdoc/salty-0.2.5" sources."@types/linkify-it-3.0.2" sources."@types/markdown-it-12.2.3" @@ -114213,7 +111899,7 @@ in }) sources."eslint-config-standard-17.1.0" sources."eslint-config-standard-jsx-11.0.0" - (sources."eslint-import-resolver-node-0.3.7" // { + (sources."eslint-import-resolver-node-0.3.9" // { dependencies = [ sources."debug-3.2.7" sources."ms-2.1.3" @@ -114323,7 +112009,7 @@ in sources."is-bigint-1.0.4" sources."is-boolean-object-1.1.2" sources."is-callable-1.2.7" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" sources."is-date-object-1.0.5" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" @@ -114433,7 +112119,7 @@ in sources."regexp.prototype.flags-1.5.0" sources."regexpp-3.2.0" sources."require-directory-2.1.1" - sources."resolve-1.22.3" + sources."resolve-1.22.4" sources."resolve-from-4.0.0" sources."reusify-1.0.4" sources."rimraf-3.0.2" @@ -114742,7 +112428,7 @@ in sources."is-arrayish-0.2.1" sources."is-binary-path-1.0.1" sources."is-buffer-1.1.6" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" (sources."is-data-descriptor-1.0.0" // { dependencies = [ sources."kind-of-6.0.3" @@ -114969,7 +112655,7 @@ in }) sources."require-directory-2.1.1" sources."require-main-filename-1.0.1" - sources."resolve-1.22.3" + sources."resolve-1.22.4" sources."resolve-url-0.2.1" sources."ret-0.1.15" sources."safe-buffer-5.1.2" @@ -115135,9 +112821,8 @@ in sources."@oclif/command-1.8.35" sources."@oclif/config-1.18.16" sources."@oclif/errors-1.3.6" - (sources."@oclif/help-1.0.14" // { + (sources."@oclif/help-1.0.15" // { dependencies = [ - sources."@oclif/config-1.18.15" sources."wrap-ansi-6.2.0" ]; }) @@ -115371,17 +113056,17 @@ in }; dependencies = [ sources."@ampproject/remapping-2.2.1" - sources."@babel/cli-7.22.9" - sources."@babel/code-frame-7.22.5" + sources."@babel/cli-7.22.10" + sources."@babel/code-frame-7.22.10" sources."@babel/compat-data-7.22.9" - (sources."@babel/core-7.22.9" // { + (sources."@babel/core-7.22.10" // { dependencies = [ sources."semver-6.3.1" ]; }) - sources."@babel/generator-7.22.9" + sources."@babel/generator-7.22.10" sources."@babel/helper-annotate-as-pure-7.22.5" - (sources."@babel/helper-compilation-targets-7.22.9" // { + (sources."@babel/helper-compilation-targets-7.22.10" // { dependencies = [ sources."semver-6.3.1" ]; @@ -115397,21 +113082,21 @@ in sources."@babel/helper-string-parser-7.22.5" sources."@babel/helper-validator-identifier-7.22.5" sources."@babel/helper-validator-option-7.22.5" - sources."@babel/helpers-7.22.6" - sources."@babel/highlight-7.22.5" - sources."@babel/node-7.22.6" - sources."@babel/parser-7.22.7" + sources."@babel/helpers-7.22.10" + sources."@babel/highlight-7.22.10" + sources."@babel/node-7.22.10" + sources."@babel/parser-7.22.10" sources."@babel/plugin-syntax-jsx-7.22.5" sources."@babel/plugin-transform-react-jsx-7.22.5" sources."@babel/register-7.22.5" sources."@babel/template-7.22.5" - sources."@babel/traverse-7.22.8" - sources."@babel/types-7.22.5" + sources."@babel/traverse-7.22.10" + sources."@babel/types-7.22.10" sources."@jridgewell/gen-mapping-0.3.3" - sources."@jridgewell/resolve-uri-3.1.0" + sources."@jridgewell/resolve-uri-3.1.1" sources."@jridgewell/set-array-1.1.2" - sources."@jridgewell/sourcemap-codec-1.4.14" - sources."@jridgewell/trace-mapping-0.3.18" + sources."@jridgewell/sourcemap-codec-1.4.15" + sources."@jridgewell/trace-mapping-0.3.19" (sources."@mapbox/node-pre-gyp-1.0.11" // { dependencies = [ sources."lru-cache-6.0.0" @@ -115512,7 +113197,7 @@ in sources."bufferutil-4.0.7" sources."bytes-3.1.2" sources."call-bind-1.0.2" - sources."caniuse-lite-1.0.30001518" + sources."caniuse-lite-1.0.30001519" sources."canvas-2.11.2" sources."chalk-2.4.2" sources."chardet-1.6.0" @@ -115571,7 +113256,7 @@ in }) sources."dotenv-8.6.0" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.480" + sources."electron-to-chromium-1.4.490" sources."emoji-regex-8.0.0" sources."encodeurl-1.0.2" sources."encoding-0.1.13" @@ -115846,7 +113531,7 @@ in sources."psl-1.9.0" sources."pump-3.0.0" sources."punycode-2.3.0" - sources."pvtsutils-1.3.2" + sources."pvtsutils-1.3.3" sources."pvutils-1.1.3" sources."qs-6.11.0" sources."query-string-6.14.1" @@ -115861,13 +113546,13 @@ in }) sources."rc-1.2.8" sources."readable-stream-3.6.2" - sources."regenerator-runtime-0.13.11" + sources."regenerator-runtime-0.14.0" sources."regexp.prototype.flags-1.5.0" sources."require-directory-2.1.1" sources."requires-port-1.0.0" - (sources."resolve-1.22.3" // { + (sources."resolve-1.22.4" // { dependencies = [ - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" ]; }) sources."reusify-1.0.4" @@ -115962,7 +113647,7 @@ in sources."uuid-8.3.2" sources."v8flags-3.2.0" sources."valid-url-1.0.9" - sources."validator-13.9.0" + sources."validator-13.11.0" sources."vary-1.1.2" sources."w3c-hr-time-1.0.2" sources."w3c-xmlserializer-2.0.0" @@ -116568,15 +114253,24 @@ in lerna = nodeEnv.buildNodePackage { name = "lerna"; packageName = "lerna"; - version = "7.1.4"; + version = "7.1.5"; src = fetchurl { - url = "https://registry.npmjs.org/lerna/-/lerna-7.1.4.tgz"; - sha512 = "/cabvmTTkmayyALIZx7OpHRex72i8xSOkiJchEkrKxAZHoLNaGSwqwKkj+x6WtmchhWl/gLlqwQXGRuxrJKiBw=="; + url = "https://registry.npmjs.org/lerna/-/lerna-7.1.5.tgz"; + sha512 = "5bvfmoIH4Czk5mdoLaRPYkM3M63Ei6+TOuXs3MgXmvqD8vs+vQpHuBVmiYFp5Mwsck3FkidJ+eTxfucltA2Lmw=="; }; dependencies = [ - sources."@babel/code-frame-7.22.5" + (sources."@babel/code-frame-7.22.10" // { + dependencies = [ + sources."ansi-styles-3.2.1" + sources."chalk-2.4.2" + sources."color-convert-1.9.3" + sources."color-name-1.1.3" + sources."has-flag-3.0.0" + sources."supports-color-5.5.0" + ]; + }) sources."@babel/helper-validator-identifier-7.22.5" - (sources."@babel/highlight-7.22.5" // { + (sources."@babel/highlight-7.22.10" // { dependencies = [ sources."ansi-styles-3.2.1" sources."chalk-2.4.2" @@ -116589,8 +114283,8 @@ in sources."@hutson/parse-repository-url-3.0.2" sources."@isaacs/cliui-8.0.2" sources."@jest/schemas-29.6.0" - sources."@lerna/child-process-7.1.4" - sources."@lerna/create-7.1.4" + sources."@lerna/child-process-7.1.5" + sources."@lerna/create-7.1.5" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" @@ -116641,25 +114335,25 @@ in sources."@octokit/tsconfig-1.0.2" sources."@octokit/types-9.3.2" sources."@parcel/watcher-2.0.4" - sources."@pkgjs/parseargs-0.11.0" - sources."@sigstore/bundle-1.0.0" + sources."@sigstore/bundle-1.1.0" sources."@sigstore/protobuf-specs-0.2.0" + sources."@sigstore/sign-1.0.0" sources."@sigstore/tuf-1.0.3" sources."@sinclair/typebox-0.27.8" sources."@swc-node/core-1.10.4" sources."@swc-node/register-1.6.6" sources."@swc-node/sourcemap-support-0.3.0" - sources."@swc/core-1.3.73" - sources."@swc/core-darwin-arm64-1.3.73" - sources."@swc/core-darwin-x64-1.3.73" - sources."@swc/core-linux-arm-gnueabihf-1.3.73" - sources."@swc/core-linux-arm64-gnu-1.3.73" - sources."@swc/core-linux-arm64-musl-1.3.73" - sources."@swc/core-linux-x64-gnu-1.3.73" - sources."@swc/core-linux-x64-musl-1.3.73" - sources."@swc/core-win32-arm64-msvc-1.3.73" - sources."@swc/core-win32-ia32-msvc-1.3.73" - sources."@swc/core-win32-x64-msvc-1.3.73" + sources."@swc/core-1.3.76" + sources."@swc/core-darwin-arm64-1.3.76" + sources."@swc/core-darwin-x64-1.3.76" + sources."@swc/core-linux-arm-gnueabihf-1.3.76" + sources."@swc/core-linux-arm64-gnu-1.3.76" + sources."@swc/core-linux-arm64-musl-1.3.76" + sources."@swc/core-linux-x64-gnu-1.3.76" + sources."@swc/core-linux-x64-musl-1.3.76" + sources."@swc/core-win32-arm64-msvc-1.3.76" + sources."@swc/core-win32-ia32-msvc-1.3.76" + sources."@swc/core-win32-x64-msvc-1.3.76" sources."@swc/helpers-0.5.1" sources."@tootallnate/once-2.0.0" sources."@tufjs/canonical-json-1.0.0" @@ -116684,7 +114378,7 @@ in sources."abbrev-1.1.1" sources."add-stream-1.0.0" sources."agent-base-6.0.2" - sources."agentkeepalive-4.3.0" + sources."agentkeepalive-4.5.0" sources."aggregate-error-3.1.0" sources."ansi-colors-4.1.3" (sources."ansi-escapes-4.3.2" // { @@ -116787,7 +114481,11 @@ in }) sources."dargs-7.0.0" sources."dateformat-3.0.3" - sources."debug-4.3.4" + (sources."debug-4.3.4" // { + dependencies = [ + sources."ms-2.1.2" + ]; + }) sources."decamelize-1.2.0" (sources."decamelize-keys-1.1.1" // { dependencies = [ @@ -116799,7 +114497,6 @@ in sources."define-lazy-prop-2.0.0" sources."delayed-stream-1.0.0" sources."delegates-1.0.0" - sources."depd-2.0.0" sources."deprecation-2.3.1" sources."detect-indent-5.0.0" sources."diff-sequences-29.4.3" @@ -116891,7 +114588,7 @@ in sources."glob-parent-5.1.2" sources."globby-11.1.0" sources."graceful-fs-4.2.11" - sources."handlebars-4.7.7" + sources."handlebars-4.7.8" sources."hard-rejection-2.1.0" sources."has-1.0.3" sources."has-flag-4.0.0" @@ -116928,7 +114625,7 @@ in sources."npm-package-arg-10.1.0" ]; }) - (sources."inquirer-8.2.5" // { + (sources."inquirer-8.2.6" // { dependencies = [ sources."ansi-styles-4.3.0" sources."chalk-4.1.2" @@ -116936,13 +114633,13 @@ in sources."mute-stream-0.0.8" sources."string-width-4.2.3" sources."strip-ansi-6.0.1" - sources."wrap-ansi-7.0.0" + sources."wrap-ansi-6.2.0" ]; }) sources."ip-2.0.0" sources."is-arrayish-0.2.1" sources."is-ci-3.0.1" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" sources."is-docker-2.2.1" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" @@ -116961,7 +114658,7 @@ in sources."isarray-1.0.0" sources."isexe-2.0.0" sources."isobject-3.0.1" - sources."jackspeak-2.2.2" + sources."jackspeak-2.2.3" (sources."jake-10.8.7" // { dependencies = [ sources."minimatch-3.1.2" @@ -117076,7 +114773,7 @@ in }) sources."mkdirp-1.0.4" sources."modify-values-1.0.1" - sources."ms-2.1.2" + sources."ms-2.1.3" (sources."multimatch-5.0.0" // { dependencies = [ sources."arrify-2.0.1" @@ -117265,7 +114962,7 @@ in sources."readable-stream-3.6.2" sources."redent-3.0.0" sources."require-directory-2.1.1" - sources."resolve-1.22.3" + sources."resolve-1.22.4" sources."resolve-cwd-3.0.0" sources."resolve-from-5.0.0" sources."restore-cursor-3.1.0" @@ -117294,7 +114991,7 @@ in sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" sources."signal-exit-3.0.7" - sources."sigstore-1.8.0" + sources."sigstore-1.9.0" sources."slash-3.0.0" sources."smart-buffer-4.2.0" sources."socks-2.7.1" @@ -117445,10 +115142,10 @@ in less = nodeEnv.buildNodePackage { name = "less"; packageName = "less"; - version = "4.1.3"; + version = "4.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/less/-/less-4.1.3.tgz"; - sha512 = "w16Xk/Ta9Hhyei0Gpz9m7VS8F28nieJaL/VyShID7cYvP6IL5oHeL6p4TXSDJqZE/lNv0oJ2pGVjJsRkfwm5FA=="; + url = "https://registry.npmjs.org/less/-/less-4.2.0.tgz"; + sha512 = "P3b3HJDBtSzsXUl0im2L7gTO5Ubg8mEN6G8qoTS77iXxXX4Hvu4Qj540PZDvQ8V6DmX6iXo98k7Md0Cm1PrLaA=="; }; dependencies = [ sources."copy-anything-2.0.6" @@ -118429,7 +116126,7 @@ in sources."@types/commander-2.12.2" sources."@types/diff-3.5.5" sources."@types/get-stdin-5.0.1" - sources."@types/node-20.4.5" + sources."@types/node-20.4.9" sources."commander-2.20.3" sources."diff-3.5.0" sources."get-stdin-5.0.1" @@ -118611,17 +116308,17 @@ in version = "0.0.10"; src = ../../applications/editors/vim/plugins/markdown-preview-nvim; dependencies = [ - sources."@babel/code-frame-7.22.5" + sources."@babel/code-frame-7.22.10" sources."@babel/compat-data-7.22.9" (sources."@babel/core-7.0.0" // { dependencies = [ sources."debug-3.2.7" ]; }) - sources."@babel/generator-7.22.9" + sources."@babel/generator-7.22.10" sources."@babel/helper-annotate-as-pure-7.22.5" - sources."@babel/helper-builder-binary-assignment-operator-visitor-7.22.5" - (sources."@babel/helper-compilation-targets-7.22.9" // { + sources."@babel/helper-builder-binary-assignment-operator-visitor-7.22.10" + (sources."@babel/helper-compilation-targets-7.22.10" // { dependencies = [ sources."semver-6.3.1" ]; @@ -118651,18 +116348,18 @@ in sources."@babel/helper-string-parser-7.22.5" sources."@babel/helper-validator-identifier-7.22.5" sources."@babel/helper-validator-option-7.22.5" - (sources."@babel/helper-wrap-function-7.22.9" // { + (sources."@babel/helper-wrap-function-7.22.10" // { dependencies = [ sources."@babel/template-7.22.5" ]; }) - (sources."@babel/helpers-7.22.6" // { + (sources."@babel/helpers-7.22.10" // { dependencies = [ sources."@babel/template-7.22.5" ]; }) - sources."@babel/highlight-7.22.5" - sources."@babel/parser-7.22.7" + sources."@babel/highlight-7.22.10" + sources."@babel/parser-7.22.10" sources."@babel/plugin-proposal-async-generator-functions-7.20.7" sources."@babel/plugin-proposal-class-properties-7.0.0" sources."@babel/plugin-proposal-json-strings-7.18.6" @@ -118679,14 +116376,14 @@ in sources."@babel/plugin-transform-arrow-functions-7.22.5" sources."@babel/plugin-transform-async-to-generator-7.22.5" sources."@babel/plugin-transform-block-scoped-functions-7.22.5" - sources."@babel/plugin-transform-block-scoping-7.22.5" + sources."@babel/plugin-transform-block-scoping-7.22.10" sources."@babel/plugin-transform-classes-7.22.6" (sources."@babel/plugin-transform-computed-properties-7.22.5" // { dependencies = [ sources."@babel/template-7.22.5" ]; }) - sources."@babel/plugin-transform-destructuring-7.22.5" + sources."@babel/plugin-transform-destructuring-7.22.10" sources."@babel/plugin-transform-dotall-regex-7.22.5" sources."@babel/plugin-transform-duplicate-keys-7.22.5" sources."@babel/plugin-transform-exponentiation-operator-7.22.5" @@ -118704,10 +116401,10 @@ in sources."@babel/plugin-transform-react-jsx-7.22.5" sources."@babel/plugin-transform-react-jsx-self-7.22.5" sources."@babel/plugin-transform-react-jsx-source-7.22.5" - sources."@babel/plugin-transform-regenerator-7.22.5" + sources."@babel/plugin-transform-regenerator-7.22.10" (sources."@babel/plugin-transform-runtime-7.0.0" // { dependencies = [ - sources."resolve-1.22.3" + sources."resolve-1.22.4" ]; }) sources."@babel/plugin-transform-shorthand-properties-7.22.5" @@ -118730,19 +116427,15 @@ in ]; }) sources."@babel/template-7.0.0" - sources."@babel/traverse-7.22.8" - sources."@babel/types-7.22.5" + sources."@babel/traverse-7.22.10" + sources."@babel/types-7.22.10" sources."@chemzqm/msgpack-lite-0.1.29" sources."@chemzqm/neovim-5.9.5" sources."@jridgewell/gen-mapping-0.3.3" - sources."@jridgewell/resolve-uri-3.1.0" + sources."@jridgewell/resolve-uri-3.1.1" sources."@jridgewell/set-array-1.1.2" sources."@jridgewell/sourcemap-codec-1.4.15" - (sources."@jridgewell/trace-mapping-0.3.18" // { - dependencies = [ - sources."@jridgewell/sourcemap-codec-1.4.14" - ]; - }) + sources."@jridgewell/trace-mapping-0.3.19" sources."@webassemblyjs/ast-1.7.8" sources."@webassemblyjs/floating-point-hex-parser-1.7.8" sources."@webassemblyjs/helper-api-error-1.7.8" @@ -118880,7 +116573,7 @@ in }) sources."cache-base-1.0.1" sources."call-bind-1.0.2" - sources."caniuse-lite-1.0.30001518" + sources."caniuse-lite-1.0.30001519" sources."case-sensitive-paths-webpack-plugin-2.1.2" sources."chalk-2.4.2" sources."chart.js-2.9.4" @@ -118967,7 +116660,7 @@ in sources."domain-browser-1.2.0" sources."duplexify-3.7.1" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.480" + sources."electron-to-chromium-1.4.490" (sources."elliptic-6.5.4" // { dependencies = [ sources."bn.js-4.12.0" @@ -119163,7 +116856,7 @@ in sources."is-buffer-1.1.6" sources."is-callable-1.2.7" sources."is-ci-1.2.1" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" sources."is-data-descriptor-1.0.0" sources."is-date-object-1.0.5" sources."is-descriptor-1.0.2" @@ -119282,7 +116975,7 @@ in sources."node-releases-2.0.13" (sources."normalize-package-data-2.5.0" // { dependencies = [ - sources."resolve-1.22.3" + sources."resolve-1.22.4" ]; }) sources."normalize-path-3.0.0" @@ -119388,10 +117081,10 @@ in sources."reflect.ownkeys-0.2.0" sources."regenerate-1.4.2" sources."regenerate-unicode-properties-10.1.0" - sources."regenerator-runtime-0.13.11" - (sources."regenerator-transform-0.15.1" // { + sources."regenerator-runtime-0.14.0" + (sources."regenerator-transform-0.15.2" // { dependencies = [ - sources."@babel/runtime-7.22.6" + sources."@babel/runtime-7.22.10" ]; }) sources."regex-not-1.0.2" @@ -119872,7 +117565,7 @@ in sources."inherits-2.0.4" sources."inquirer-0.12.0" sources."interpret-1.4.0" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" sources."is-fullwidth-code-point-1.0.0" sources."is-my-ip-valid-1.0.1" sources."is-my-json-valid-2.20.6" @@ -119950,7 +117643,7 @@ in sources."replace-ext-0.0.1" sources."request-2.88.0" sources."require-uncached-1.0.3" - sources."resolve-1.22.3" + sources."resolve-1.22.4" sources."resolve-from-1.0.1" sources."restore-cursor-1.0.1" sources."rimraf-2.6.3" @@ -120353,9 +118046,18 @@ in sha512 = "0EaNAw5SKSIIJrJajG32CNMGfBtZTgIrOVKSXBTWpvo+F0OozsbvuO4UG3ZSRNThXHijxybp58SqPiU3JuzXGA=="; }; dependencies = [ - sources."@babel/code-frame-7.22.5" + (sources."@babel/code-frame-7.22.10" // { + dependencies = [ + sources."ansi-styles-3.2.1" + sources."chalk-2.4.2" + sources."color-convert-1.9.3" + sources."color-name-1.1.3" + sources."has-flag-3.0.0" + sources."supports-color-5.5.0" + ]; + }) sources."@babel/helper-validator-identifier-7.22.5" - (sources."@babel/highlight-7.22.5" // { + (sources."@babel/highlight-7.22.10" // { dependencies = [ sources."ansi-styles-3.2.1" sources."chalk-2.4.2" @@ -120368,11 +118070,11 @@ in sources."@jest/environment-27.5.1" sources."@jest/fake-timers-27.5.1" sources."@jest/types-27.5.1" - sources."@ledgerhq/devices-8.0.5" - sources."@ledgerhq/errors-6.13.0" - sources."@ledgerhq/hw-transport-6.28.6" - sources."@ledgerhq/hw-transport-node-hid-6.27.19" - sources."@ledgerhq/hw-transport-node-hid-noevents-6.27.17" + sources."@ledgerhq/devices-8.0.6" + sources."@ledgerhq/errors-6.13.1" + sources."@ledgerhq/hw-transport-6.28.7" + sources."@ledgerhq/hw-transport-node-hid-6.27.20" + sources."@ledgerhq/hw-transport-node-hid-noevents-6.27.18" (sources."@ledgerhq/hw-transport-u2f-5.36.0-deprecated" // { dependencies = [ sources."@ledgerhq/devices-5.51.1" @@ -120406,7 +118108,7 @@ in sources."@types/istanbul-lib-coverage-2.0.4" sources."@types/istanbul-lib-report-3.0.0" sources."@types/istanbul-reports-3.0.1" - sources."@types/node-20.4.5" + sources."@types/node-20.4.9" sources."@types/stack-utils-2.0.1" sources."@types/w3c-web-usb-1.0.6" sources."@types/yargs-16.0.5" @@ -120790,11 +118492,10 @@ in dependencies = [ sources."@isaacs/cliui-8.0.2" sources."@npmcli/fs-3.1.0" - sources."@pkgjs/parseargs-0.11.0" sources."@tootallnate/once-2.0.0" sources."abbrev-1.1.1" sources."agent-base-6.0.2" - sources."agentkeepalive-4.3.0" + sources."agentkeepalive-4.5.0" sources."aggregate-error-3.1.0" sources."ansi-regex-5.0.1" sources."ansi-styles-6.2.1" @@ -120817,9 +118518,12 @@ in sources."concat-map-0.0.1" sources."console-control-strings-1.1.0" sources."cross-spawn-7.0.3" - sources."debug-4.3.4" + (sources."debug-4.3.4" // { + dependencies = [ + sources."ms-2.1.2" + ]; + }) sources."delegates-1.0.0" - sources."depd-2.0.0" sources."eastasianwidth-0.2.0" sources."emoji-regex-9.2.2" sources."encoding-0.1.13" @@ -120853,7 +118557,7 @@ in sources."is-fullwidth-code-point-3.0.0" sources."is-lambda-1.0.1" sources."isexe-2.0.0" - sources."jackspeak-2.2.2" + sources."jackspeak-2.2.3" sources."lru-cache-7.18.3" sources."make-fetch-happen-11.1.1" sources."minimatch-3.1.2" @@ -120885,7 +118589,7 @@ in ]; }) sources."mkdirp-1.0.4" - sources."ms-2.1.2" + sources."ms-2.1.3" sources."negotiator-0.6.3" sources."nopt-6.0.0" sources."npmlog-6.0.2" @@ -121107,7 +118811,7 @@ in sources."invert-kv-1.0.0" sources."ipaddr.js-1.9.1" sources."is-arrayish-0.2.1" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" sources."is-finite-1.1.0" sources."is-fullwidth-code-point-1.0.0" sources."is-typedarray-1.0.0" @@ -121197,7 +118901,7 @@ in sources."qs-6.4.1" ]; }) - sources."resolve-1.22.3" + sources."resolve-1.22.4" sources."rimraf-2.2.8" sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" @@ -121403,7 +119107,7 @@ in sha512 = "B6q576kLw96eKOiqNpNJsUiwl5vRipc46T0w/LUI7O3fPAVxwu5zklIBhE6Iefj8FV1IdbLwXULESqMWlwjlGQ=="; }; dependencies = [ - sources."@babel/runtime-7.22.6" + sources."@babel/runtime-7.22.10" sources."@mapbox/node-pre-gyp-1.0.11" sources."@node-red/editor-api-3.0.2" sources."@node-red/editor-client-3.0.2" @@ -121423,7 +119127,7 @@ in sources."@types/cacheable-request-6.0.3" sources."@types/http-cache-semantics-4.0.1" sources."@types/keyv-3.1.4" - sources."@types/node-20.4.5" + sources."@types/node-20.4.9" sources."@types/responselike-1.0.0" sources."abbrev-1.1.1" sources."accepts-1.3.8" @@ -121712,7 +119416,7 @@ in sources."safe-buffer-5.1.2" ]; }) - sources."regenerator-runtime-0.13.11" + sources."regenerator-runtime-0.14.0" sources."reinterval-1.1.0" sources."require-from-string-2.0.2" sources."resolve-alpn-1.2.1" @@ -121865,7 +119569,7 @@ in sources."inflight-1.0.6" sources."inherits-2.0.4" sources."ini-1.3.8" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" sources."is-fullwidth-code-point-1.0.0" sources."is-typedarray-1.0.0" sources."isarray-1.0.0" @@ -121936,7 +119640,7 @@ in ]; }) sources."request-2.88.2" - sources."resolve-1.22.3" + sources."resolve-1.22.4" sources."retry-0.10.1" sources."rimraf-2.2.8" sources."safe-buffer-5.2.1" @@ -122063,9 +119767,14 @@ in sha512 = "a4s1yESHcIwsrk/oaTekfbhb1R/2z2yyfVLX6Atl54w/9+QR01qeYyK3vMWgJ0UY+kYsGzQXausgvUX0pkmIMg=="; }; dependencies = [ - sources."@babel/code-frame-7.22.5" + (sources."@babel/code-frame-7.22.10" // { + dependencies = [ + sources."chalk-2.4.2" + sources."escape-string-regexp-1.0.5" + ]; + }) sources."@babel/helper-validator-identifier-7.22.5" - (sources."@babel/highlight-7.22.5" // { + (sources."@babel/highlight-7.22.10" // { dependencies = [ sources."chalk-2.4.2" sources."escape-string-regexp-1.0.5" @@ -122098,11 +119807,11 @@ in sources."@types/http-cache-semantics-4.0.1" sources."@types/keyv-3.1.4" sources."@types/minimist-1.2.2" - sources."@types/node-20.4.5" + sources."@types/node-20.4.9" sources."@types/normalize-package-data-2.4.1" sources."@types/responselike-1.0.0" sources."aggregate-error-4.0.1" - sources."all-package-names-2.0.706" + sources."all-package-names-2.0.711" sources."ansi-align-3.0.1" sources."ansi-escapes-4.3.2" sources."ansi-regex-5.0.1" @@ -122159,7 +119868,7 @@ in sources."strip-ansi-3.0.1" ]; }) - sources."cli-width-4.0.0" + sources."cli-width-4.1.0" sources."clone-1.0.4" sources."clone-response-1.0.3" sources."code-point-at-1.1.0" @@ -122278,7 +119987,7 @@ in sources."inflight-1.0.6" sources."inherits-2.0.4" sources."ini-2.0.0" - sources."inquirer-9.2.9" + sources."inquirer-9.2.10" (sources."inquirer-autosubmit-prompt-0.2.0" // { dependencies = [ sources."ansi-escapes-3.2.0" @@ -122310,7 +120019,7 @@ in }) sources."is-arrayish-0.2.1" sources."is-ci-3.0.1" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" sources."is-docker-3.0.0" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" @@ -122715,10 +120424,10 @@ in npm-check-updates = nodeEnv.buildNodePackage { name = "npm-check-updates"; packageName = "npm-check-updates"; - version = "16.10.17"; + version = "16.10.18"; src = fetchurl { - url = "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-16.10.17.tgz"; - sha512 = "ZoIbWYJhlgMDoByq1WC6Ys3E76IvNCxgS54tPUFbK5J/nqf/BCJt6xiMPAEa7G1HuyAruG+orUF9uTsTGUZl8g=="; + url = "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-16.10.18.tgz"; + sha512 = "dmfhCMX7+UNrBeftBGb1rMX4Qi6+FOI5cuu1VkLeE4LIazbiEYsdgTG+GQywYry+BR9R3EfOXITYPfgRhcdznw=="; }; dependencies = [ sources."@colors/colors-1.5.0" @@ -122739,7 +120448,6 @@ in sources."@npmcli/node-gyp-3.0.0" sources."@npmcli/promise-spawn-6.0.2" sources."@npmcli/run-script-6.0.2" - sources."@pkgjs/parseargs-0.11.0" sources."@pnpm/config.env-replace-1.1.0" (sources."@pnpm/network.ca-file-1.0.2" // { dependencies = [ @@ -122747,8 +120455,9 @@ in ]; }) sources."@pnpm/npm-conf-2.2.2" - sources."@sigstore/bundle-1.0.0" + sources."@sigstore/bundle-1.1.0" sources."@sigstore/protobuf-specs-0.2.0" + sources."@sigstore/sign-1.0.0" sources."@sigstore/tuf-1.0.3" sources."@sindresorhus/is-5.6.0" sources."@szmarczak/http-timer-5.0.1" @@ -122758,7 +120467,7 @@ in sources."@types/http-cache-semantics-4.0.1" sources."abbrev-1.1.1" sources."agent-base-6.0.2" - sources."agentkeepalive-4.3.0" + sources."agentkeepalive-4.5.0" sources."aggregate-error-3.1.0" sources."ansi-align-3.0.1" sources."ansi-regex-5.0.1" @@ -122816,7 +120525,11 @@ in sources."type-fest-1.4.0" ]; }) - sources."debug-4.3.4" + (sources."debug-4.3.4" // { + dependencies = [ + sources."ms-2.1.2" + ]; + }) (sources."decompress-response-6.0.0" // { dependencies = [ sources."mimic-response-3.1.0" @@ -122825,7 +120538,6 @@ in sources."deep-extend-0.6.0" sources."defer-to-connect-2.0.1" sources."delegates-1.0.0" - sources."depd-2.0.0" sources."dir-glob-3.0.1" sources."dot-prop-6.0.1" sources."eastasianwidth-0.2.0" @@ -122888,7 +120600,7 @@ in sources."ini-4.1.1" sources."ip-2.0.0" sources."is-ci-3.0.1" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" sources."is-glob-4.0.3" @@ -122901,7 +120613,7 @@ in sources."is-typedarray-1.0.0" sources."is-yarn-global-0.4.1" sources."isexe-2.0.0" - sources."jackspeak-2.2.2" + sources."jackspeak-2.2.3" sources."jju-1.4.0" sources."js-yaml-4.1.0" sources."json-buffer-3.0.1" @@ -122956,7 +120668,7 @@ in ]; }) sources."mkdirp-1.0.4" - sources."ms-2.1.2" + sources."ms-2.1.3" sources."negotiator-0.6.3" (sources."node-gyp-9.4.0" // { dependencies = [ @@ -123051,7 +120763,7 @@ in sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" sources."signal-exit-3.0.7" - sources."sigstore-1.8.0" + sources."sigstore-1.9.0" sources."sisteransi-1.0.5" sources."slash-3.0.0" sources."smart-buffer-4.2.0" @@ -123243,7 +120955,7 @@ in sources."@asyncapi/specs-4.3.1" sources."@esbuild/android-arm-0.15.18" sources."@esbuild/linux-loong64-0.15.18" - sources."@exodus/schemasafe-1.1.1" + sources."@exodus/schemasafe-1.2.3" sources."@ibm-cloud/openapi-ruleset-0.45.5" sources."@ibm-cloud/openapi-ruleset-utilities-0.0.1" sources."@jsdevtools/ono-7.1.3" @@ -123275,7 +120987,7 @@ in sources."@stoplight/json-ref-resolver-3.1.6" sources."@stoplight/ordered-object-literal-1.0.4" sources."@stoplight/path-1.3.2" - (sources."@stoplight/spectral-cli-6.10.0" // { + (sources."@stoplight/spectral-cli-6.10.1" // { dependencies = [ sources."fast-glob-3.2.12" ]; @@ -123298,13 +121010,13 @@ in sources."@stoplight/types-12.5.0" ]; }) - sources."@stoplight/types-13.17.0" + sources."@stoplight/types-13.18.0" sources."@stoplight/yaml-4.2.3" sources."@stoplight/yaml-ast-parser-0.0.48" sources."@types/es-aggregate-error-1.0.2" sources."@types/estree-0.0.39" sources."@types/json-schema-7.0.12" - sources."@types/node-20.4.5" + sources."@types/node-20.4.9" sources."@types/urijs-1.19.19" sources."abort-controller-3.0.0" sources."acorn-8.10.0" @@ -123447,7 +121159,7 @@ in sources."is-binary-path-2.1.0" sources."is-boolean-object-1.1.2" sources."is-callable-1.2.7" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" sources."is-date-object-1.0.5" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" @@ -123546,7 +121258,7 @@ in sources."require-directory-2.1.1" sources."require-from-string-2.0.2" sources."reserved-0.1.2" - sources."resolve-1.22.3" + sources."resolve-1.22.4" sources."reusify-1.0.4" sources."rollup-2.79.1" sources."run-parallel-1.2.0" @@ -123597,7 +121309,7 @@ in sources."urijs-1.19.11" sources."utility-types-3.10.0" sources."validate-npm-package-name-3.0.0" - sources."validator-13.9.0" + sources."validator-13.11.0" sources."wcwidth-1.0.1" sources."webidl-conversions-3.0.1" sources."whatwg-url-5.0.0" @@ -123633,23 +121345,23 @@ in }; dependencies = [ sources."@ampproject/remapping-2.2.1" - sources."@babel/code-frame-7.22.5" + sources."@babel/code-frame-7.22.10" sources."@babel/compat-data-7.22.9" - (sources."@babel/core-7.22.9" // { + (sources."@babel/core-7.22.10" // { dependencies = [ sources."json5-2.2.3" sources."semver-6.3.1" ]; }) - sources."@babel/generator-7.22.9" + sources."@babel/generator-7.22.10" sources."@babel/helper-annotate-as-pure-7.22.5" - sources."@babel/helper-builder-binary-assignment-operator-visitor-7.22.5" - (sources."@babel/helper-compilation-targets-7.22.9" // { + sources."@babel/helper-builder-binary-assignment-operator-visitor-7.22.10" + (sources."@babel/helper-compilation-targets-7.22.10" // { dependencies = [ sources."semver-6.3.1" ]; }) - (sources."@babel/helper-create-class-features-plugin-7.22.9" // { + (sources."@babel/helper-create-class-features-plugin-7.22.10" // { dependencies = [ sources."semver-6.3.1" ]; @@ -123676,14 +121388,13 @@ in sources."@babel/helper-string-parser-7.22.5" sources."@babel/helper-validator-identifier-7.22.5" sources."@babel/helper-validator-option-7.22.5" - sources."@babel/helper-wrap-function-7.22.9" - sources."@babel/helpers-7.22.6" - sources."@babel/highlight-7.22.5" - sources."@babel/parser-7.22.7" + sources."@babel/helper-wrap-function-7.22.10" + sources."@babel/helpers-7.22.10" + sources."@babel/highlight-7.22.10" + sources."@babel/parser-7.22.10" sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.22.5" sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.22.5" sources."@babel/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2" - sources."@babel/plugin-proposal-unicode-property-regex-7.18.6" sources."@babel/plugin-syntax-async-generators-7.8.4" sources."@babel/plugin-syntax-class-properties-7.12.13" sources."@babel/plugin-syntax-class-static-block-7.14.5" @@ -123705,15 +121416,15 @@ in sources."@babel/plugin-syntax-top-level-await-7.14.5" sources."@babel/plugin-syntax-unicode-sets-regex-7.18.6" sources."@babel/plugin-transform-arrow-functions-7.22.5" - sources."@babel/plugin-transform-async-generator-functions-7.22.7" + sources."@babel/plugin-transform-async-generator-functions-7.22.10" sources."@babel/plugin-transform-async-to-generator-7.22.5" sources."@babel/plugin-transform-block-scoped-functions-7.22.5" - sources."@babel/plugin-transform-block-scoping-7.22.5" + sources."@babel/plugin-transform-block-scoping-7.22.10" sources."@babel/plugin-transform-class-properties-7.22.5" sources."@babel/plugin-transform-class-static-block-7.22.5" sources."@babel/plugin-transform-classes-7.22.6" sources."@babel/plugin-transform-computed-properties-7.22.5" - sources."@babel/plugin-transform-destructuring-7.22.5" + sources."@babel/plugin-transform-destructuring-7.22.10" sources."@babel/plugin-transform-dotall-regex-7.22.5" sources."@babel/plugin-transform-duplicate-keys-7.22.5" sources."@babel/plugin-transform-dynamic-import-7.22.5" @@ -123737,45 +121448,41 @@ in sources."@babel/plugin-transform-object-rest-spread-7.22.5" sources."@babel/plugin-transform-object-super-7.22.5" sources."@babel/plugin-transform-optional-catch-binding-7.22.5" - sources."@babel/plugin-transform-optional-chaining-7.22.6" + sources."@babel/plugin-transform-optional-chaining-7.22.10" sources."@babel/plugin-transform-parameters-7.22.5" sources."@babel/plugin-transform-private-methods-7.22.5" sources."@babel/plugin-transform-private-property-in-object-7.22.5" sources."@babel/plugin-transform-property-literals-7.22.5" sources."@babel/plugin-transform-react-jsx-7.22.5" - sources."@babel/plugin-transform-regenerator-7.22.5" + sources."@babel/plugin-transform-regenerator-7.22.10" sources."@babel/plugin-transform-reserved-words-7.22.5" sources."@babel/plugin-transform-shorthand-properties-7.22.5" sources."@babel/plugin-transform-spread-7.22.5" sources."@babel/plugin-transform-sticky-regex-7.22.5" sources."@babel/plugin-transform-template-literals-7.22.5" sources."@babel/plugin-transform-typeof-symbol-7.22.5" - sources."@babel/plugin-transform-unicode-escapes-7.22.5" + sources."@babel/plugin-transform-unicode-escapes-7.22.10" sources."@babel/plugin-transform-unicode-property-regex-7.22.5" sources."@babel/plugin-transform-unicode-regex-7.22.5" sources."@babel/plugin-transform-unicode-sets-regex-7.22.5" - (sources."@babel/preset-env-7.22.9" // { + (sources."@babel/preset-env-7.22.10" // { dependencies = [ sources."semver-6.3.1" ]; }) - sources."@babel/preset-modules-0.1.6" + sources."@babel/preset-modules-0.1.6-no-external-plugins" sources."@babel/regjsgen-0.8.0" - sources."@babel/runtime-7.22.6" + sources."@babel/runtime-7.22.10" sources."@babel/template-7.22.5" - sources."@babel/traverse-7.22.8" - sources."@babel/types-7.22.5" + sources."@babel/traverse-7.22.10" + sources."@babel/types-7.22.10" sources."@iarna/toml-2.2.5" sources."@jridgewell/gen-mapping-0.3.3" - sources."@jridgewell/resolve-uri-3.1.0" + sources."@jridgewell/resolve-uri-3.1.1" sources."@jridgewell/set-array-1.1.2" sources."@jridgewell/source-map-0.3.5" sources."@jridgewell/sourcemap-codec-1.4.15" - (sources."@jridgewell/trace-mapping-0.3.18" // { - dependencies = [ - sources."@jridgewell/sourcemap-codec-1.4.14" - ]; - }) + sources."@jridgewell/trace-mapping-0.3.19" sources."@mrmlnc/readdir-enhanced-2.2.1" sources."@nodelib/fs.stat-1.1.3" sources."@parcel/fs-1.11.0" @@ -123899,7 +121606,7 @@ in sources."caller-path-2.0.0" sources."callsites-2.0.0" sources."caniuse-api-3.0.0" - sources."caniuse-lite-1.0.30001518" + sources."caniuse-lite-1.0.30001519" sources."caseless-0.12.0" sources."chalk-2.4.2" sources."chokidar-2.1.8" @@ -124032,7 +121739,7 @@ in sources."duplexer2-0.1.4" sources."ecc-jsbn-0.1.2" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.480" + sources."electron-to-chromium-1.4.490" (sources."elliptic-6.5.4" // { dependencies = [ sources."bn.js-4.12.0" @@ -124185,7 +121892,7 @@ in sources."is-buffer-1.1.6" sources."is-callable-1.2.7" sources."is-color-stop-1.1.0" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" (sources."is-data-descriptor-1.0.0" // { dependencies = [ sources."kind-of-6.0.3" @@ -124457,8 +122164,8 @@ in sources."readdirp-2.2.1" sources."regenerate-1.4.2" sources."regenerate-unicode-properties-10.1.0" - sources."regenerator-runtime-0.13.11" - sources."regenerator-transform-0.15.1" + sources."regenerator-runtime-0.14.0" + sources."regenerator-transform-0.15.2" (sources."regex-not-1.0.2" // { dependencies = [ sources."extend-shallow-3.0.2" @@ -124479,7 +122186,7 @@ in sources."request-2.88.2" sources."request-promise-core-1.1.4" sources."request-promise-native-1.0.9" - sources."resolve-1.22.3" + sources."resolve-1.22.4" sources."resolve-from-3.0.0" sources."resolve-url-0.2.1" sources."restore-cursor-2.0.0" @@ -124699,23 +122406,23 @@ in sha512 = "2GTVocFkwblV/TIg9AmT7TI2fO4xdWkyN8aFUEVtiVNWt96GTR3FgQyHFValfCbcj1k9Xf962Ws2hYXYUr9k1Q=="; }; dependencies = [ - sources."@babel/code-frame-7.22.5" + (sources."@babel/code-frame-7.22.10" // { + dependencies = [ + sources."chalk-2.4.2" + ]; + }) sources."@babel/helper-validator-identifier-7.22.5" - (sources."@babel/highlight-7.22.5" // { + (sources."@babel/highlight-7.22.10" // { dependencies = [ sources."chalk-2.4.2" ]; }) sources."@jridgewell/gen-mapping-0.3.3" - sources."@jridgewell/resolve-uri-3.1.0" + sources."@jridgewell/resolve-uri-3.1.1" sources."@jridgewell/set-array-1.1.2" sources."@jridgewell/source-map-0.3.5" sources."@jridgewell/sourcemap-codec-1.4.15" - (sources."@jridgewell/trace-mapping-0.3.18" // { - dependencies = [ - sources."@jridgewell/sourcemap-codec-1.4.14" - ]; - }) + sources."@jridgewell/trace-mapping-0.3.19" sources."@lezer/common-0.15.12" sources."@lezer/lr-0.15.8" sources."@lmdb/lmdb-darwin-arm64-2.7.11" @@ -124810,17 +122517,17 @@ in sources."@parcel/watcher-win32-arm64-2.2.0" sources."@parcel/watcher-win32-x64-2.2.0" sources."@parcel/workers-2.9.3" - sources."@swc/core-1.3.73" - sources."@swc/core-darwin-arm64-1.3.73" - sources."@swc/core-darwin-x64-1.3.73" - sources."@swc/core-linux-arm-gnueabihf-1.3.73" - sources."@swc/core-linux-arm64-gnu-1.3.73" - sources."@swc/core-linux-arm64-musl-1.3.73" - sources."@swc/core-linux-x64-gnu-1.3.73" - sources."@swc/core-linux-x64-musl-1.3.73" - sources."@swc/core-win32-arm64-msvc-1.3.73" - sources."@swc/core-win32-ia32-msvc-1.3.73" - sources."@swc/core-win32-x64-msvc-1.3.73" + sources."@swc/core-1.3.76" + sources."@swc/core-darwin-arm64-1.3.76" + sources."@swc/core-darwin-x64-1.3.76" + sources."@swc/core-linux-arm-gnueabihf-1.3.76" + sources."@swc/core-linux-arm64-gnu-1.3.76" + sources."@swc/core-linux-arm64-musl-1.3.76" + sources."@swc/core-linux-x64-gnu-1.3.76" + sources."@swc/core-linux-x64-musl-1.3.76" + sources."@swc/core-win32-arm64-msvc-1.3.76" + sources."@swc/core-win32-ia32-msvc-1.3.76" + sources."@swc/core-win32-x64-msvc-1.3.76" sources."@swc/helpers-0.5.1" sources."@trysound/sax-0.2.0" sources."abab-2.0.6" @@ -124853,7 +122560,7 @@ in sources."buffer-from-1.1.2" sources."callsites-3.1.0" sources."caniuse-api-3.0.0" - sources."caniuse-lite-1.0.30001518" + sources."caniuse-lite-1.0.30001519" sources."caseless-0.12.0" (sources."chalk-4.1.2" // { dependencies = [ @@ -124903,7 +122610,7 @@ in sources."dotenv-7.0.0" sources."dotenv-expand-5.1.0" sources."ecc-jsbn-0.1.2" - sources."electron-to-chromium-1.4.480" + sources."electron-to-chromium-1.4.490" sources."entities-4.5.0" sources."error-ex-1.3.2" sources."escalade-3.1.1" @@ -125278,7 +122985,7 @@ in sources."getpass-0.1.7" sources."glob-7.2.3" sources."graceful-fs-4.2.11" - sources."handlebars-4.7.7" + sources."handlebars-4.7.8" sources."har-schema-2.0.0" sources."har-validator-5.1.5" sources."has-1.0.3" @@ -125668,7 +123375,7 @@ in sources."ipaddr.js-2.1.0" sources."is-arguments-1.1.1" sources."is-arrayish-0.2.1" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" sources."is-date-object-1.0.5" sources."is-finite-1.1.0" sources."is-fullwidth-code-point-1.0.0" @@ -125764,7 +123471,7 @@ in sources."redent-1.0.0" sources."regexp.prototype.flags-1.5.0" sources."repeating-2.0.1" - sources."resolve-1.22.3" + sources."resolve-1.22.4" sources."restore-cursor-2.0.0" sources."reverse-http-1.3.0" sources."rimraf-2.7.1" @@ -126263,14 +123970,10 @@ in sources."@babel/parser-7.18.4" sources."@babel/types-7.19.0" sources."@jridgewell/gen-mapping-0.3.3" - sources."@jridgewell/resolve-uri-3.1.0" + sources."@jridgewell/resolve-uri-3.1.1" sources."@jridgewell/set-array-1.1.2" sources."@jridgewell/sourcemap-codec-1.4.15" - (sources."@jridgewell/trace-mapping-0.3.18" // { - dependencies = [ - sources."@jridgewell/sourcemap-codec-1.4.14" - ]; - }) + sources."@jridgewell/trace-mapping-0.3.19" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" @@ -126366,9 +124069,9 @@ in sources."rc-1.2.8" sources."readable-stream-2.3.8" sources."require-directory-2.1.1" - (sources."resolve-1.22.3" // { + (sources."resolve-1.22.4" // { dependencies = [ - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" ]; }) sources."reusify-1.0.4" @@ -126536,7 +124239,7 @@ in sources."ini-1.3.8" sources."ip-1.1.8" sources."is-binary-path-2.1.0" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" sources."is-extglob-2.1.1" sources."is-glob-4.0.3" sources."is-number-7.0.0" @@ -126588,7 +124291,7 @@ in sources."read-1.0.7" sources."readdirp-3.6.0" sources."require-in-the-middle-5.2.0" - sources."resolve-1.22.3" + sources."resolve-1.22.4" sources."run-series-1.1.9" sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" @@ -126612,7 +124315,7 @@ in sources."sprintf-js-1.1.2" sources."supports-color-7.2.0" sources."supports-preserve-symlinks-flag-1.0.0" - sources."systeminformation-5.18.10" + sources."systeminformation-5.18.15" sources."to-regex-range-5.0.1" sources."tslib-2.6.1" sources."tv4-1.3.0" @@ -126643,10 +124346,10 @@ in pnpm = nodeEnv.buildNodePackage { name = "pnpm"; packageName = "pnpm"; - version = "8.6.11"; + version = "8.6.12"; src = fetchurl { - url = "https://registry.npmjs.org/pnpm/-/pnpm-8.6.11.tgz"; - sha512 = "jqknppuj45tDzJsLcLqkAxytBHZXIx9JTYkGNq0/7pSRggpio9wRxTDj4NA2ilOHPlJ5BVjB5Ij5dx65woMi5A=="; + url = "https://registry.npmjs.org/pnpm/-/pnpm-8.6.12.tgz"; + sha512 = "Eza4C5SO/Xl5IYozupbZ5NOA5leBRPYxmXmXfe7G4/4uCkRLhks84rB33aitxNZU/uMrnDGGjwrLktoKvPjqHA=="; }; buildInputs = globalBuildInputs; meta = { @@ -126725,24 +124428,24 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@swc/core-1.3.73" - sources."@swc/core-darwin-arm64-1.3.73" - sources."@swc/core-darwin-x64-1.3.73" - sources."@swc/core-linux-arm-gnueabihf-1.3.73" - sources."@swc/core-linux-arm64-gnu-1.3.73" - sources."@swc/core-linux-arm64-musl-1.3.73" - sources."@swc/core-linux-x64-gnu-1.3.73" - sources."@swc/core-linux-x64-musl-1.3.73" - sources."@swc/core-win32-arm64-msvc-1.3.73" - sources."@swc/core-win32-ia32-msvc-1.3.73" - sources."@swc/core-win32-x64-msvc-1.3.73" + sources."@swc/core-1.3.76" + sources."@swc/core-darwin-arm64-1.3.76" + sources."@swc/core-darwin-x64-1.3.76" + sources."@swc/core-linux-arm-gnueabihf-1.3.76" + sources."@swc/core-linux-arm64-gnu-1.3.76" + sources."@swc/core-linux-arm64-musl-1.3.76" + sources."@swc/core-linux-x64-gnu-1.3.76" + sources."@swc/core-linux-x64-musl-1.3.76" + sources."@swc/core-win32-arm64-msvc-1.3.76" + sources."@swc/core-win32-ia32-msvc-1.3.76" + sources."@swc/core-win32-x64-msvc-1.3.76" sources."@swc/helpers-0.5.1" - sources."@swc/wasm-1.3.73" + sources."@swc/wasm-1.3.76" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.4" - sources."@types/node-20.4.5" + sources."@types/node-20.4.9" sources."acorn-8.10.0" sources."acorn-walk-8.2.0" sources."ansi-regex-5.0.1" @@ -126889,10 +124592,10 @@ in prettier = nodeEnv.buildNodePackage { name = "prettier"; packageName = "prettier"; - version = "3.0.0"; + version = "3.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/prettier/-/prettier-3.0.0.tgz"; - sha512 = "zBf5eHpwHOGPC47h0zrPyNn+eAEIdEzfywMoYn2XPi0P44Zp0tSq64rq0xAREh4auw2cJZHo9QUob+NqCQky4g=="; + url = "https://registry.npmjs.org/prettier/-/prettier-3.0.1.tgz"; + sha512 = "fcOWSnnpCrovBsmFZIGIy9UqK2FaI7Hqax+DIO0A9UxeVoY4iweyaFjS5TavZN97Hfehph0nhsZnjlVKzEQSrQ=="; }; buildInputs = globalBuildInputs; meta = { @@ -126918,12 +124621,12 @@ in sources."function-bind-1.1.1" sources."has-1.0.3" sources."has-flag-4.0.0" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" sources."minimist-1.2.8" sources."nanolru-1.0.0" sources."path-parse-1.0.7" sources."prettier-2.8.8" - sources."resolve-1.22.3" + sources."resolve-1.22.4" sources."supports-color-8.1.1" sources."supports-preserve-symlinks-flag-1.0.0" ]; @@ -126940,21 +124643,27 @@ in prettier-plugin-toml = nodeEnv.buildNodePackage { name = "prettier-plugin-toml"; packageName = "prettier-plugin-toml"; - version = "0.3.1"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/prettier-plugin-toml/-/prettier-plugin-toml-0.3.1.tgz"; - sha512 = "j47DEO/dN/acU1nSL/B7q4A4Z2SYJhpWPCLPkcmfAXIQC6A5GD6Ao/bi9HRHZ8ueIDOauqjuAQbnvRxLXMjazA=="; + url = "https://registry.npmjs.org/prettier-plugin-toml/-/prettier-plugin-toml-1.0.0.tgz"; + sha512 = "YMn4Fqy/ANHommZh61s5qqtpfcgPB00Ty890bFPr73B0HAy77zgyH89SvAK+NyPPx3AdM56a4Yo66LH9GPnuZw=="; }; dependencies = [ - sources."@toml-tools/lexer-0.3.1" - sources."@toml-tools/parser-0.3.1" - sources."chevrotain-4.1.1" - sources."prettier-1.19.1" - sources."regexp-to-ast-0.3.5" + sources."@chevrotain/cst-dts-gen-11.0.2" + sources."@chevrotain/gast-11.0.2" + sources."@chevrotain/regexp-to-ast-11.0.2" + sources."@chevrotain/types-11.0.2" + sources."@chevrotain/utils-11.0.2" + sources."@toml-tools/lexer-1.0.0" + sources."@toml-tools/parser-1.0.0" + sources."chevrotain-11.0.2" + sources."lodash-es-4.17.21" + sources."prettier-3.0.1" ]; buildInputs = globalBuildInputs; meta = { description = "TOML Prettier Plugin"; + homepage = "https://github.com/un-ts/toml-tools/tree/master#readme"; license = "MIT"; }; production = true; @@ -126964,13 +124673,13 @@ in prisma = nodeEnv.buildNodePackage { name = "prisma"; packageName = "prisma"; - version = "5.1.0"; + version = "5.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/prisma/-/prisma-5.1.0.tgz"; - sha512 = "wkXvh+6wxk03G8qwpZMOed4Y3j+EQ+bMTlvbDZHeal6k1E8QuGKzRO7DRXlE1NV0WNgOAas8kwZqcLETQ2+BiQ=="; + url = "https://registry.npmjs.org/prisma/-/prisma-5.1.1.tgz"; + sha512 = "WJFG/U7sMmcc6TjJTTifTfpI6Wjoh55xl4AzopVwAdyK68L9/ogNo8QQ2cxuUjJf/Wa82z/uhyh3wMzvRIBphg=="; }; dependencies = [ - sources."@prisma/engines-5.1.0" + sources."@prisma/engines-5.1.1" ]; buildInputs = globalBuildInputs; meta = { @@ -126992,11 +124701,11 @@ in }; dependencies = [ sources."@ampproject/remapping-2.2.1" - sources."@babel/code-frame-7.22.5" + sources."@babel/code-frame-7.22.10" sources."@babel/compat-data-7.22.9" - sources."@babel/core-7.22.9" - sources."@babel/generator-7.22.9" - sources."@babel/helper-compilation-targets-7.22.9" + sources."@babel/core-7.22.10" + sources."@babel/generator-7.22.10" + sources."@babel/helper-compilation-targets-7.22.10" sources."@babel/helper-environment-visitor-7.22.5" sources."@babel/helper-function-name-7.22.5" sources."@babel/helper-hoist-variables-7.22.5" @@ -127007,23 +124716,19 @@ in sources."@babel/helper-string-parser-7.22.5" sources."@babel/helper-validator-identifier-7.22.5" sources."@babel/helper-validator-option-7.22.5" - sources."@babel/helpers-7.22.6" - sources."@babel/highlight-7.22.5" - sources."@babel/parser-7.22.7" + sources."@babel/helpers-7.22.10" + sources."@babel/highlight-7.22.10" + sources."@babel/parser-7.22.10" sources."@babel/template-7.22.5" - sources."@babel/traverse-7.22.8" - sources."@babel/types-7.22.5" + sources."@babel/traverse-7.22.10" + sources."@babel/types-7.22.10" sources."@istanbuljs/load-nyc-config-1.1.0" sources."@istanbuljs/schema-0.1.3" sources."@jridgewell/gen-mapping-0.3.3" - sources."@jridgewell/resolve-uri-3.1.0" + sources."@jridgewell/resolve-uri-3.1.1" sources."@jridgewell/set-array-1.1.2" sources."@jridgewell/sourcemap-codec-1.4.15" - (sources."@jridgewell/trace-mapping-0.3.18" // { - dependencies = [ - sources."@jridgewell/sourcemap-codec-1.4.14" - ]; - }) + sources."@jridgewell/trace-mapping-0.3.19" sources."@prisma/prisma-schema-wasm-5.1.0-28.a9b7003df90aa623086e4d6f4e43c72468e6339b" sources."@types/js-levenshtein-1.1.1" sources."aggregate-error-3.1.0" @@ -127037,7 +124742,7 @@ in sources."browserslist-4.21.10" sources."caching-transform-4.0.0" sources."camelcase-5.3.1" - sources."caniuse-lite-1.0.30001518" + sources."caniuse-lite-1.0.30001519" sources."chalk-2.4.2" sources."clean-stack-2.2.0" sources."cliui-6.0.0" @@ -127050,7 +124755,7 @@ in sources."debug-4.3.4" sources."decamelize-1.2.0" sources."default-require-extensions-3.0.1" - sources."electron-to-chromium-1.4.480" + sources."electron-to-chromium-1.4.490" sources."emoji-regex-8.0.0" sources."es6-error-4.1.1" sources."escalade-3.1.1" @@ -127186,7 +124891,6 @@ in }; dependencies = [ sources."@isaacs/cliui-8.0.2" - sources."@pkgjs/parseargs-0.11.0" sources."ansi-regex-5.0.1" sources."ansi-styles-6.2.1" sources."balanced-match-1.0.2" @@ -127219,7 +124923,7 @@ in sources."inherits-2.0.4" sources."is-fullwidth-code-point-3.0.0" sources."isexe-2.0.0" - sources."jackspeak-2.2.2" + sources."jackspeak-2.2.3" sources."keypress-0.2.1" sources."lodash-4.17.21" sources."lru-cache-10.0.0" @@ -127408,7 +125112,7 @@ in ]; }) sources."is-buffer-1.1.6" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" sources."isarray-1.0.0" sources."isexe-2.0.0" sources."json-stable-stringify-0.0.1" @@ -127480,7 +125184,7 @@ in sources."string_decoder-1.1.1" ]; }) - sources."resolve-1.22.3" + sources."resolve-1.22.4" sources."rimraf-2.7.1" sources."ripemd160-2.0.2" sources."safe-buffer-5.2.1" @@ -127765,10 +125469,10 @@ in pyright = nodeEnv.buildNodePackage { name = "pyright"; packageName = "pyright"; - version = "1.1.319"; + version = "1.1.321"; src = fetchurl { - url = "https://registry.npmjs.org/pyright/-/pyright-1.1.319.tgz"; - sha512 = "6AC0r2r5rT0BpcPH7S27JS0CpFNKvvfdTRLinWwzeMdJCma9ceF8zUgnvMahHfLUcXn4fyypfth9Dito9tey8g=="; + url = "https://registry.npmjs.org/pyright/-/pyright-1.1.321.tgz"; + sha512 = "u6w4gMsA7KvySx/U21tu1+1J291/lARR4Y54uBf1Oj+o8e9JZTG+dbzo6/OV9U/Zt3cVB0dpCD3iCTvxMPVOgA=="; }; dependencies = [ sources."fsevents-2.3.2" @@ -127786,10 +125490,10 @@ in quicktype = nodeEnv.buildNodePackage { name = "quicktype"; packageName = "quicktype"; - version = "23.0.63"; + version = "23.0.65"; src = fetchurl { - url = "https://registry.npmjs.org/quicktype/-/quicktype-23.0.63.tgz"; - sha512 = "ncTNNEHeQJPGZm7uoHdE5RpFNCmOb0DUSp2vi8Dd+IGNwJtHtf5AOIIWWN6f7PnficD+wY8huMmVRYDDxFpjnQ=="; + url = "https://registry.npmjs.org/quicktype/-/quicktype-23.0.65.tgz"; + sha512 = "GGZ8WaLHh1B+U0xsYnD7sclBvq3GnIVeRzpoJDJuFH1eRPoB6lg2rtDl0Rt8jwXCuUiFGS8TsVCLvOCBETnw6g=="; }; dependencies = [ (sources."@75lb/deep-merge-1.1.1" // { @@ -127807,25 +125511,25 @@ in sources."typescript-4.9.4" ]; }) - sources."@swc/core-1.3.73" - sources."@swc/core-darwin-arm64-1.3.73" - sources."@swc/core-darwin-x64-1.3.73" - sources."@swc/core-linux-arm-gnueabihf-1.3.73" - sources."@swc/core-linux-arm64-gnu-1.3.73" - sources."@swc/core-linux-arm64-musl-1.3.73" - sources."@swc/core-linux-x64-gnu-1.3.73" - sources."@swc/core-linux-x64-musl-1.3.73" - sources."@swc/core-win32-arm64-msvc-1.3.73" - sources."@swc/core-win32-ia32-msvc-1.3.73" - sources."@swc/core-win32-x64-msvc-1.3.73" + sources."@swc/core-1.3.76" + sources."@swc/core-darwin-arm64-1.3.76" + sources."@swc/core-darwin-x64-1.3.76" + sources."@swc/core-linux-arm-gnueabihf-1.3.76" + sources."@swc/core-linux-arm64-gnu-1.3.76" + sources."@swc/core-linux-arm64-musl-1.3.76" + sources."@swc/core-linux-x64-gnu-1.3.76" + sources."@swc/core-linux-x64-musl-1.3.76" + sources."@swc/core-win32-arm64-msvc-1.3.76" + sources."@swc/core-win32-ia32-msvc-1.3.76" + sources."@swc/core-win32-x64-msvc-1.3.76" sources."@swc/helpers-0.5.1" - sources."@swc/wasm-1.3.73" + sources."@swc/wasm-1.3.76" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.4" sources."@types/json-schema-7.0.12" - sources."@types/node-16.18.39" + sources."@types/node-16.18.40" sources."@types/urijs-1.19.19" sources."abort-controller-3.0.0" sources."acorn-8.10.0" @@ -127888,9 +125592,9 @@ in sources."path-is-absolute-1.0.1" sources."pluralize-8.0.0" sources."process-0.11.10" - sources."quicktype-core-23.0.63" - sources."quicktype-graphql-input-23.0.63" - sources."quicktype-typescript-input-23.0.63" + sources."quicktype-core-23.0.65" + sources."quicktype-graphql-input-23.0.65" + sources."quicktype-typescript-input-23.0.65" sources."readable-stream-4.4.2" sources."require-directory-2.1.1" sources."safe-buffer-5.2.1" @@ -128067,23 +125771,23 @@ in }; dependencies = [ sources."@ampproject/remapping-2.2.1" - sources."@babel/cli-7.22.9" - sources."@babel/code-frame-7.22.5" + sources."@babel/cli-7.22.10" + sources."@babel/code-frame-7.22.10" sources."@babel/compat-data-7.22.9" - (sources."@babel/core-7.22.9" // { + (sources."@babel/core-7.22.10" // { dependencies = [ sources."semver-6.3.1" ]; }) - sources."@babel/generator-7.22.9" + sources."@babel/generator-7.22.10" sources."@babel/helper-annotate-as-pure-7.22.5" - sources."@babel/helper-builder-binary-assignment-operator-visitor-7.22.5" - (sources."@babel/helper-compilation-targets-7.22.9" // { + sources."@babel/helper-builder-binary-assignment-operator-visitor-7.22.10" + (sources."@babel/helper-compilation-targets-7.22.10" // { dependencies = [ sources."semver-6.3.1" ]; }) - (sources."@babel/helper-create-class-features-plugin-7.22.9" // { + (sources."@babel/helper-create-class-features-plugin-7.22.10" // { dependencies = [ sources."semver-6.3.1" ]; @@ -128110,17 +125814,16 @@ in sources."@babel/helper-string-parser-7.22.5" sources."@babel/helper-validator-identifier-7.22.5" sources."@babel/helper-validator-option-7.22.5" - sources."@babel/helper-wrap-function-7.22.9" - sources."@babel/helpers-7.22.6" - sources."@babel/highlight-7.22.5" - sources."@babel/parser-7.22.7" + sources."@babel/helper-wrap-function-7.22.10" + sources."@babel/helpers-7.22.10" + sources."@babel/highlight-7.22.10" + sources."@babel/parser-7.22.10" sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.22.5" sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.22.5" sources."@babel/plugin-proposal-class-properties-7.18.6" sources."@babel/plugin-proposal-export-default-from-7.22.5" sources."@babel/plugin-proposal-optional-chaining-7.21.0" sources."@babel/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2" - sources."@babel/plugin-proposal-unicode-property-regex-7.18.6" sources."@babel/plugin-syntax-async-generators-7.8.4" sources."@babel/plugin-syntax-class-properties-7.12.13" sources."@babel/plugin-syntax-class-static-block-7.14.5" @@ -128142,15 +125845,15 @@ in sources."@babel/plugin-syntax-top-level-await-7.14.5" sources."@babel/plugin-syntax-unicode-sets-regex-7.18.6" sources."@babel/plugin-transform-arrow-functions-7.22.5" - sources."@babel/plugin-transform-async-generator-functions-7.22.7" + sources."@babel/plugin-transform-async-generator-functions-7.22.10" sources."@babel/plugin-transform-async-to-generator-7.22.5" sources."@babel/plugin-transform-block-scoped-functions-7.22.5" - sources."@babel/plugin-transform-block-scoping-7.22.5" + sources."@babel/plugin-transform-block-scoping-7.22.10" sources."@babel/plugin-transform-class-properties-7.22.5" sources."@babel/plugin-transform-class-static-block-7.22.5" sources."@babel/plugin-transform-classes-7.22.6" sources."@babel/plugin-transform-computed-properties-7.22.5" - sources."@babel/plugin-transform-destructuring-7.22.5" + sources."@babel/plugin-transform-destructuring-7.22.10" sources."@babel/plugin-transform-dotall-regex-7.22.5" sources."@babel/plugin-transform-duplicate-keys-7.22.5" sources."@babel/plugin-transform-dynamic-import-7.22.5" @@ -128173,7 +125876,7 @@ in sources."@babel/plugin-transform-object-rest-spread-7.22.5" sources."@babel/plugin-transform-object-super-7.22.5" sources."@babel/plugin-transform-optional-catch-binding-7.22.5" - sources."@babel/plugin-transform-optional-chaining-7.22.6" + sources."@babel/plugin-transform-optional-chaining-7.22.10" sources."@babel/plugin-transform-parameters-7.22.5" sources."@babel/plugin-transform-private-methods-7.22.5" sources."@babel/plugin-transform-private-property-in-object-7.22.5" @@ -128182,9 +125885,9 @@ in sources."@babel/plugin-transform-react-jsx-7.22.5" sources."@babel/plugin-transform-react-jsx-development-7.22.5" sources."@babel/plugin-transform-react-pure-annotations-7.22.5" - sources."@babel/plugin-transform-regenerator-7.22.5" + sources."@babel/plugin-transform-regenerator-7.22.10" sources."@babel/plugin-transform-reserved-words-7.22.5" - (sources."@babel/plugin-transform-runtime-7.22.9" // { + (sources."@babel/plugin-transform-runtime-7.22.10" // { dependencies = [ sources."semver-6.3.1" ]; @@ -128194,39 +125897,39 @@ in sources."@babel/plugin-transform-sticky-regex-7.22.5" sources."@babel/plugin-transform-template-literals-7.22.5" sources."@babel/plugin-transform-typeof-symbol-7.22.5" - sources."@babel/plugin-transform-unicode-escapes-7.22.5" + sources."@babel/plugin-transform-unicode-escapes-7.22.10" sources."@babel/plugin-transform-unicode-property-regex-7.22.5" sources."@babel/plugin-transform-unicode-regex-7.22.5" sources."@babel/plugin-transform-unicode-sets-regex-7.22.5" - (sources."@babel/preset-env-7.22.9" // { + (sources."@babel/preset-env-7.22.10" // { dependencies = [ sources."semver-6.3.1" ]; }) - sources."@babel/preset-modules-0.1.6" + sources."@babel/preset-modules-0.1.6-no-external-plugins" sources."@babel/preset-react-7.22.5" sources."@babel/preset-stage-0-7.8.3" sources."@babel/register-7.22.5" sources."@babel/regjsgen-0.8.0" - sources."@babel/runtime-7.22.6" + sources."@babel/runtime-7.22.10" sources."@babel/template-7.22.5" - sources."@babel/traverse-7.22.8" - sources."@babel/types-7.22.5" + sources."@babel/traverse-7.22.10" + sources."@babel/types-7.22.10" sources."@jridgewell/gen-mapping-0.3.3" - sources."@jridgewell/resolve-uri-3.1.0" + sources."@jridgewell/resolve-uri-3.1.1" sources."@jridgewell/set-array-1.1.2" - sources."@jridgewell/sourcemap-codec-1.4.14" - sources."@jridgewell/trace-mapping-0.3.18" + sources."@jridgewell/sourcemap-codec-1.4.15" + sources."@jridgewell/trace-mapping-0.3.19" sources."@reach/router-1.3.4" sources."@sindresorhus/is-0.7.0" sources."@types/glob-7.2.0" sources."@types/json-schema-7.0.12" sources."@types/minimatch-5.1.2" - sources."@types/node-20.4.5" + sources."@types/node-20.4.9" sources."@types/parse-json-4.0.0" sources."@types/prop-types-15.7.5" sources."@types/q-1.5.5" - sources."@types/react-17.0.62" + sources."@types/react-17.0.64" sources."@types/scheduler-0.16.3" sources."@webassemblyjs/ast-1.9.0" sources."@webassemblyjs/floating-point-hex-parser-1.9.0" @@ -128416,7 +126119,7 @@ in sources."camel-case-3.0.0" sources."camelcase-5.3.1" sources."caniuse-api-3.0.0" - sources."caniuse-lite-1.0.30001518" + sources."caniuse-lite-1.0.30001519" sources."case-sensitive-paths-webpack-plugin-2.4.0" sources."caw-2.0.1" sources."chalk-2.4.2" @@ -128637,7 +126340,7 @@ in sources."duplexify-3.7.1" sources."ee-first-1.1.1" sources."ejs-2.7.4" - sources."electron-to-chromium-1.4.480" + sources."electron-to-chromium-1.4.490" (sources."elliptic-6.5.4" // { dependencies = [ sources."bn.js-4.12.0" @@ -128946,7 +126649,7 @@ in sources."is-buffer-1.1.6" sources."is-callable-1.2.7" sources."is-color-stop-1.1.0" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" sources."is-data-descriptor-1.0.0" sources."is-date-object-1.0.5" sources."is-deflate-1.0.0" @@ -129378,8 +127081,8 @@ in sources."readdirp-3.6.0" sources."regenerate-1.4.2" sources."regenerate-unicode-properties-10.1.0" - sources."regenerator-runtime-0.13.11" - sources."regenerator-transform-0.15.1" + sources."regenerator-runtime-0.14.0" + sources."regenerator-transform-0.15.2" sources."regex-not-1.0.2" sources."regexp.prototype.flags-1.5.0" sources."regexpu-core-5.3.2" @@ -129409,7 +127112,7 @@ in sources."require-directory-2.1.1" sources."require-main-filename-2.0.0" sources."requires-port-1.0.0" - sources."resolve-1.22.3" + sources."resolve-1.22.4" (sources."resolve-cwd-2.0.0" // { dependencies = [ sources."resolve-from-3.0.0" @@ -129948,12 +127651,21 @@ in }; dependencies = [ sources."@ampproject/remapping-2.2.1" - sources."@babel/code-frame-7.22.5" + (sources."@babel/code-frame-7.22.10" // { + dependencies = [ + sources."ansi-styles-3.2.1" + sources."chalk-2.4.2" + sources."color-convert-1.9.3" + sources."color-name-1.1.3" + sources."has-flag-3.0.0" + sources."supports-color-5.5.0" + ]; + }) sources."@babel/compat-data-7.22.9" - sources."@babel/core-7.22.9" - sources."@babel/generator-7.22.9" + sources."@babel/core-7.22.10" + sources."@babel/generator-7.22.10" sources."@babel/helper-annotate-as-pure-7.22.5" - sources."@babel/helper-compilation-targets-7.22.9" + sources."@babel/helper-compilation-targets-7.22.10" sources."@babel/helper-environment-visitor-7.22.5" sources."@babel/helper-function-name-7.22.5" sources."@babel/helper-hoist-variables-7.22.5" @@ -129965,8 +127677,8 @@ in sources."@babel/helper-string-parser-7.22.5" sources."@babel/helper-validator-identifier-7.22.5" sources."@babel/helper-validator-option-7.22.5" - sources."@babel/helpers-7.22.6" - (sources."@babel/highlight-7.22.5" // { + sources."@babel/helpers-7.22.10" + (sources."@babel/highlight-7.22.10" // { dependencies = [ sources."ansi-styles-3.2.1" sources."chalk-2.4.2" @@ -129976,26 +127688,26 @@ in sources."supports-color-5.5.0" ]; }) - sources."@babel/parser-7.22.7" + sources."@babel/parser-7.22.10" sources."@babel/plugin-syntax-jsx-7.22.5" - sources."@babel/runtime-7.22.6" + sources."@babel/runtime-7.22.10" sources."@babel/template-7.22.5" - sources."@babel/traverse-7.22.8" - sources."@babel/types-7.22.5" + sources."@babel/traverse-7.22.10" + sources."@babel/types-7.22.10" sources."@emotion/is-prop-valid-1.2.1" sources."@emotion/memoize-0.8.1" sources."@emotion/stylis-0.8.5" sources."@emotion/unitless-0.7.5" - sources."@exodus/schemasafe-1.1.1" + sources."@exodus/schemasafe-1.2.3" sources."@jridgewell/gen-mapping-0.3.3" - sources."@jridgewell/resolve-uri-3.1.0" + sources."@jridgewell/resolve-uri-3.1.1" sources."@jridgewell/set-array-1.1.2" sources."@jridgewell/source-map-0.3.5" - sources."@jridgewell/sourcemap-codec-1.4.14" - sources."@jridgewell/trace-mapping-0.3.18" + sources."@jridgewell/sourcemap-codec-1.4.15" + sources."@jridgewell/trace-mapping-0.3.19" sources."@redocly/ajv-8.11.0" - sources."@redocly/openapi-core-1.0.0" - sources."@types/eslint-8.44.1" + sources."@redocly/openapi-core-1.0.2" + sources."@types/eslint-8.44.2" sources."@types/eslint-scope-3.7.4" sources."@types/estree-1.0.1" sources."@types/json-schema-7.0.12" @@ -130069,7 +127781,7 @@ in sources."call-me-maybe-1.0.2" sources."camelcase-6.3.0" sources."camelize-1.0.1" - sources."caniuse-lite-1.0.30001518" + sources."caniuse-lite-1.0.30001519" sources."chalk-4.1.2" sources."chokidar-3.5.3" sources."chrome-trace-event-1.0.3" @@ -130107,7 +127819,7 @@ in }) sources."domain-browser-1.2.0" sources."dompurify-2.4.7" - sources."electron-to-chromium-1.4.480" + sources."electron-to-chromium-1.4.490" (sources."elliptic-6.5.4" // { dependencies = [ sources."bn.js-4.12.0" @@ -130145,7 +127857,7 @@ in sources."glob-to-regexp-0.4.1" sources."globals-11.12.0" sources."graceful-fs-4.2.11" - sources."handlebars-4.7.7" + sources."handlebars-4.7.8" sources."has-1.0.3" sources."has-flag-4.0.0" sources."has-proto-1.0.1" @@ -130271,7 +127983,7 @@ in ]; }) sources."reftools-1.1.9" - sources."regenerator-runtime-0.13.11" + sources."regenerator-runtime-0.14.0" sources."require-directory-2.1.1" sources."require-from-string-2.0.2" sources."ripemd160-2.0.2" @@ -130371,7 +128083,7 @@ in }; dependencies = [ sources."@types/prop-types-15.7.5" - sources."@types/react-18.2.18" + sources."@types/react-18.2.20" sources."@types/scheduler-0.16.3" sources."@types/yoga-layout-1.9.2" sources."ansi-escapes-4.3.2" @@ -130411,7 +128123,7 @@ in sources."ink-2.7.1" sources."is-arrayish-0.2.1" sources."is-ci-2.0.0" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" sources."is-fullwidth-code-point-3.0.0" sources."is-plain-obj-1.1.0" sources."js-tokens-4.0.0" @@ -130466,7 +128178,7 @@ in sources."read-pkg-3.0.0" sources."read-pkg-up-3.0.0" sources."redent-2.0.0" - sources."resolve-1.22.3" + sources."resolve-1.22.4" sources."restore-cursor-3.1.0" sources."scheduler-0.18.0" sources."semver-5.7.2" @@ -130534,7 +128246,6 @@ in }; dependencies = [ sources."@isaacs/cliui-8.0.2" - sources."@pkgjs/parseargs-0.11.0" sources."ansi-regex-5.0.1" sources."ansi-styles-6.2.1" sources."balanced-match-1.0.2" @@ -130548,7 +128259,7 @@ in sources."glob-10.3.3" sources."is-fullwidth-code-point-3.0.0" sources."isexe-2.0.0" - sources."jackspeak-2.2.2" + sources."jackspeak-2.2.3" sources."lru-cache-10.0.0" sources."minimatch-9.0.3" sources."minipass-7.0.2" @@ -130594,11 +128305,14 @@ in rollup = nodeEnv.buildNodePackage { name = "rollup"; packageName = "rollup"; - version = "3.27.0"; + version = "3.28.0"; src = fetchurl { - url = "https://registry.npmjs.org/rollup/-/rollup-3.27.0.tgz"; - sha512 = "aOltLCrYZ0FhJDm7fCqwTjIUEVjWjcydKBV/Zeid6Mn8BWgDCUBBWT5beM5ieForYNo/1ZHuGJdka26kvQ3Gzg=="; + url = "https://registry.npmjs.org/rollup/-/rollup-3.28.0.tgz"; + sha512 = "d7zhvo1OUY2SXSM6pfNjgD5+d0Nz87CUp4mt8l/GgVP3oBsPwzNvSzyu1me6BSG9JIgWNTVcafIXBIyM8yQ3yw=="; }; + dependencies = [ + sources."fsevents-2.3.2" + ]; buildInputs = globalBuildInputs; meta = { description = "Next-generation ES module bundler"; @@ -130748,7 +128462,7 @@ in sources."minimatch-3.1.2" ]; }) - sources."eslint-config-prettier-8.9.0" + sources."eslint-config-prettier-8.10.0" sources."eslint-scope-5.1.1" sources."eslint-visitor-keys-3.4.2" sources."espree-9.6.1" @@ -131106,10 +128820,10 @@ in sass = nodeEnv.buildNodePackage { name = "sass"; packageName = "sass"; - version = "1.64.2"; + version = "1.65.1"; src = fetchurl { - url = "https://registry.npmjs.org/sass/-/sass-1.64.2.tgz"; - sha512 = "TnDlfc+CRnUAgLO9D8cQLFu/GIjJIzJCGkE7o4ekIGQOH7T3GetiRR/PsTWJUHhkzcSPrARkPI+gNWn5alCzDg=="; + url = "https://registry.npmjs.org/sass/-/sass-1.65.1.tgz"; + sha512 = "9DINwtHmA41SEd36eVPQ9BJKpn7eKDQmUHmpI0y5Zv2Rcorrh0zS+cFrt050hdNbmmCNKTW3hV5mWfuegNRsEA=="; }; dependencies = [ sources."anymatch-3.1.3" @@ -131119,7 +128833,7 @@ in sources."fill-range-7.0.1" sources."fsevents-2.3.2" sources."glob-parent-5.1.2" - sources."immutable-4.3.1" + sources."immutable-4.3.2" sources."is-binary-path-2.1.0" sources."is-extglob-2.1.1" sources."is-glob-4.0.3" @@ -131293,10 +129007,10 @@ in serverless = nodeEnv.buildNodePackage { name = "serverless"; packageName = "serverless"; - version = "3.33.0"; + version = "3.34.0"; src = fetchurl { - url = "https://registry.npmjs.org/serverless/-/serverless-3.33.0.tgz"; - sha512 = "qmG0RMelsWmnS5Smxoy0CbjpecgnJlM89wzSIgJqfkGlmOo2nJdd8y0/E6KlaTsaozlPKkjUBDzis2nF8VNO2g=="; + url = "https://registry.npmjs.org/serverless/-/serverless-3.34.0.tgz"; + sha512 = "xtWAg78NGgboolP/GArdorx+UHyESJgriGSE6Qpgg9trTYsKMyd8YKaMIM3sidy89e45XZopRSpvnPYoQCJOBA=="; }; dependencies = [ sources."2-thenable-1.0.0" @@ -131331,9 +129045,10 @@ in sources."@types/cacheable-request-6.0.3" sources."@types/http-cache-semantics-4.0.1" sources."@types/keyv-3.1.4" - sources."@types/lodash-4.14.196" - sources."@types/node-20.4.5" + sources."@types/lodash-4.14.197" + sources."@types/node-20.4.9" sources."@types/responselike-1.0.0" + sources."abort-controller-3.0.0" sources."adm-zip-0.5.10" sources."agent-base-6.0.2" sources."ajv-8.12.0" @@ -131360,7 +129075,7 @@ in sources."asynckit-0.4.0" sources."at-least-node-1.0.0" sources."available-typed-arrays-1.0.5" - (sources."aws-sdk-2.1427.0" // { + (sources."aws-sdk-2.1433.0" // { dependencies = [ sources."buffer-4.9.2" sources."ieee754-1.1.13" @@ -131519,6 +129234,7 @@ in sources."esprima-4.0.1" sources."essentials-1.2.0" sources."event-emitter-0.3.5" + sources."event-target-shim-5.0.1" sources."events-1.1.1" sources."ext-1.7.0" sources."ext-list-2.2.2" @@ -131534,7 +129250,7 @@ in sources."file-type-16.5.4" sources."filename-reserved-regex-2.0.0" sources."filenamify-4.3.0" - sources."filesize-10.0.8" + sources."filesize-10.0.11" sources."fill-range-7.0.1" sources."find-requires-1.0.0" sources."flat-5.0.2" @@ -131579,7 +129295,7 @@ in sources."imurmurhash-0.1.4" sources."inflight-1.0.6" sources."inherits-2.0.4" - sources."inquirer-8.2.5" + sources."inquirer-8.2.6" sources."is-arguments-1.1.1" sources."is-binary-path-2.1.0" sources."is-callable-1.2.7" @@ -131807,7 +129523,7 @@ in sources."whatwg-url-5.0.0" sources."which-1.3.1" sources."which-typed-array-1.1.11" - sources."wrap-ansi-7.0.0" + sources."wrap-ansi-6.2.0" sources."wrappy-1.0.2" sources."write-file-atomic-4.0.2" sources."ws-7.5.9" @@ -132470,17 +130186,17 @@ in snyk = nodeEnv.buildNodePackage { name = "snyk"; packageName = "snyk"; - version = "1.1198.0"; + version = "1.1200.0"; src = fetchurl { - url = "https://registry.npmjs.org/snyk/-/snyk-1.1198.0.tgz"; - sha512 = "FlG2HYVFJOMqYePririH2wM8hal4SJ/GqRGZ1J/X6hcxs48uEtc53cw1qq/snyPbHVQOlC92itxaVKtEc2uaGA=="; + url = "https://registry.npmjs.org/snyk/-/snyk-1.1200.0.tgz"; + sha512 = "sWC5mC489SN7jylQuFDN9HyYI2eAiFbRjx+R0me902/+k20I/WHMdIwyJEcPz/rCYDUy9xALpVGb7r1GBwoKjQ=="; }; dependencies = [ - sources."@sentry-internal/tracing-7.61.0" - sources."@sentry/core-7.61.0" - sources."@sentry/node-7.61.0" - sources."@sentry/types-7.61.0" - sources."@sentry/utils-7.61.0" + sources."@sentry-internal/tracing-7.62.0" + sources."@sentry/core-7.62.0" + sources."@sentry/node-7.62.0" + sources."@sentry/types-7.62.0" + sources."@sentry/utils-7.62.0" sources."agent-base-6.0.2" sources."boolean-3.2.0" sources."cookie-0.4.2" @@ -132526,24 +130242,24 @@ in "socket.io" = nodeEnv.buildNodePackage { name = "socket.io"; packageName = "socket.io"; - version = "4.7.1"; + version = "4.7.2"; src = fetchurl { - url = "https://registry.npmjs.org/socket.io/-/socket.io-4.7.1.tgz"; - sha512 = "W+utHys2w//dhFjy7iQQu9sGd3eokCjGbl2r59tyLqNiJJBdIebn3GAKEXBr3osqHTObJi2die/25bCx2zsaaw=="; + url = "https://registry.npmjs.org/socket.io/-/socket.io-4.7.2.tgz"; + sha512 = "bvKVS29/I5fl2FGLNHuXlQaUH/BlzX1IN6S+NKLNZpBsPZIDH+90eQmCs2Railn4YUiww4SzUedJ6+uzwFnKLw=="; }; dependencies = [ sources."@socket.io/component-emitter-3.1.0" sources."@types/cookie-0.4.1" sources."@types/cors-2.8.13" - sources."@types/node-20.4.5" + sources."@types/node-20.4.9" sources."accepts-1.3.8" sources."base64id-2.0.0" sources."bufferutil-4.0.7" sources."cookie-0.4.2" sources."cors-2.8.5" sources."debug-4.3.4" - sources."engine.io-6.5.1" - sources."engine.io-parser-5.1.0" + sources."engine.io-6.5.2" + sources."engine.io-parser-5.2.1" sources."mime-db-1.52.0" sources."mime-types-2.1.35" sources."ms-2.1.2" @@ -132575,9 +130291,18 @@ in sha512 = "CIlLQsG8ffQ2B+2A/s3rXiaTXDWlEKBMya64ajzDcpDZ8bpB5dOyznWQJB+lyUn6/lJ8P+5xe4jKO60S6yLoMw=="; }; dependencies = [ - sources."@babel/code-frame-7.22.5" + (sources."@babel/code-frame-7.22.10" // { + dependencies = [ + sources."ansi-styles-3.2.1" + sources."chalk-2.4.2" + sources."color-convert-1.9.3" + sources."color-name-1.1.3" + sources."has-flag-3.0.0" + sources."supports-color-5.5.0" + ]; + }) sources."@babel/helper-validator-identifier-7.22.5" - (sources."@babel/highlight-7.22.5" // { + (sources."@babel/highlight-7.22.10" // { dependencies = [ sources."ansi-styles-3.2.1" sources."chalk-2.4.2" @@ -132633,7 +130358,7 @@ in sources."indent-string-5.0.0" sources."inherits-2.0.4" sources."is-arrayish-0.2.1" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" sources."is-fullwidth-code-point-4.0.0" sources."is-interactive-2.0.0" sources."is-plain-obj-1.1.0" @@ -133078,7 +130803,7 @@ in sources."is-buffer-zero-1.0.0" sources."is-callable-1.2.7" sources."is-canonical-base64-1.1.1" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" (sources."is-data-descriptor-1.0.0" // { dependencies = [ sources."kind-of-6.0.3" @@ -133458,7 +131183,7 @@ in sources."remove-trailing-separator-1.1.0" sources."repeat-element-1.1.4" sources."repeat-string-1.6.1" - sources."resolve-1.22.3" + sources."resolve-1.22.4" sources."resolve-url-0.2.1" sources."restore-cursor-1.0.1" sources."resumer-0.0.0" @@ -133851,7 +131576,7 @@ in sources."async-limiter-1.0.1" sources."asynckit-0.4.0" sources."available-typed-arrays-1.0.5" - (sources."aws-sdk-2.1427.0" // { + (sources."aws-sdk-2.1433.0" // { dependencies = [ sources."uuid-8.0.0" ]; @@ -134121,7 +131846,7 @@ in sources."is-arrayish-0.2.1" sources."is-buffer-1.1.6" sources."is-callable-1.2.7" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" (sources."is-expression-3.0.0" // { dependencies = [ sources."acorn-4.0.13" @@ -134375,7 +132100,7 @@ in sources."require-directory-2.1.1" sources."require-main-filename-1.0.1" sources."requires-port-1.0.0" - sources."resolve-1.22.3" + sources."resolve-1.22.4" sources."ret-0.2.2" sources."rethinkdb-2.4.2" sources."retry-0.9.0" @@ -134664,12 +132389,12 @@ in sha512 = "UxqSb3hB74g4DTO45QhUHkJMjKKU//lNUAOWyvPBVPZbCknJ5HjOWWZo+UDuhHa9FLeVdHBZXxu43eXkjyIPWg=="; }; dependencies = [ - sources."@babel/code-frame-7.22.5" + sources."@babel/code-frame-7.22.10" sources."@babel/helper-validator-identifier-7.22.5" - sources."@babel/highlight-7.22.5" + sources."@babel/highlight-7.22.10" sources."@csstools/css-parser-algorithms-2.3.1" sources."@csstools/css-tokenizer-2.2.0" - sources."@csstools/media-query-list-parser-2.1.3" + sources."@csstools/media-query-list-parser-2.1.4" sources."@csstools/selector-specificity-3.0.0" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" @@ -134749,7 +132474,7 @@ in sources."inherits-2.0.4" sources."ini-1.3.8" sources."is-arrayish-0.2.1" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" sources."is-glob-4.0.3" @@ -135004,11 +132729,11 @@ in }; dependencies = [ sources."@ampproject/remapping-2.2.1" - sources."@babel/code-frame-7.22.5" + sources."@babel/code-frame-7.22.10" sources."@babel/compat-data-7.22.9" - sources."@babel/core-7.22.9" - sources."@babel/generator-7.22.9" - sources."@babel/helper-compilation-targets-7.22.9" + sources."@babel/core-7.22.10" + sources."@babel/generator-7.22.10" + sources."@babel/helper-compilation-targets-7.22.10" sources."@babel/helper-environment-visitor-7.22.5" sources."@babel/helper-function-name-7.22.5" sources."@babel/helper-hoist-variables-7.22.5" @@ -135019,44 +132744,44 @@ in sources."@babel/helper-string-parser-7.22.5" sources."@babel/helper-validator-identifier-7.22.5" sources."@babel/helper-validator-option-7.22.5" - sources."@babel/helpers-7.22.6" - sources."@babel/highlight-7.22.5" - sources."@babel/parser-7.22.7" + sources."@babel/helpers-7.22.10" + sources."@babel/highlight-7.22.10" + sources."@babel/parser-7.22.10" sources."@babel/template-7.22.5" - sources."@babel/traverse-7.22.8" - sources."@babel/types-7.22.5" + sources."@babel/traverse-7.22.10" + sources."@babel/types-7.22.10" (sources."@cspotcode/source-map-support-0.8.1" // { dependencies = [ sources."@jridgewell/trace-mapping-0.3.9" ]; }) sources."@jridgewell/gen-mapping-0.3.3" - sources."@jridgewell/resolve-uri-3.1.0" + sources."@jridgewell/resolve-uri-3.1.1" sources."@jridgewell/set-array-1.1.2" - sources."@jridgewell/sourcemap-codec-1.4.14" - sources."@jridgewell/trace-mapping-0.3.18" + sources."@jridgewell/sourcemap-codec-1.4.15" + sources."@jridgewell/trace-mapping-0.3.19" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@swc/core-1.3.73" - sources."@swc/core-darwin-arm64-1.3.73" - sources."@swc/core-darwin-x64-1.3.73" - sources."@swc/core-linux-arm-gnueabihf-1.3.73" - sources."@swc/core-linux-arm64-gnu-1.3.73" - sources."@swc/core-linux-arm64-musl-1.3.73" - sources."@swc/core-linux-x64-gnu-1.3.73" - sources."@swc/core-linux-x64-musl-1.3.73" - sources."@swc/core-win32-arm64-msvc-1.3.73" - sources."@swc/core-win32-ia32-msvc-1.3.73" - sources."@swc/core-win32-x64-msvc-1.3.73" + sources."@swc/core-1.3.76" + sources."@swc/core-darwin-arm64-1.3.76" + sources."@swc/core-darwin-x64-1.3.76" + sources."@swc/core-linux-arm-gnueabihf-1.3.76" + sources."@swc/core-linux-arm64-gnu-1.3.76" + sources."@swc/core-linux-arm64-musl-1.3.76" + sources."@swc/core-linux-x64-gnu-1.3.76" + sources."@swc/core-linux-x64-musl-1.3.76" + sources."@swc/core-win32-arm64-msvc-1.3.76" + sources."@swc/core-win32-ia32-msvc-1.3.76" + sources."@swc/core-win32-x64-msvc-1.3.76" sources."@swc/helpers-0.5.1" - sources."@swc/wasm-1.3.73" + sources."@swc/wasm-1.3.76" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.4" sources."@types/estree-1.0.1" - sources."@types/node-20.4.5" + sources."@types/node-20.4.9" sources."@types/pug-2.0.6" sources."acorn-8.10.0" sources."acorn-walk-8.2.0" @@ -135077,7 +132802,7 @@ in sources."buffer-crc32-0.2.13" sources."call-bind-1.0.2" sources."callsites-3.1.0" - sources."caniuse-lite-1.0.30001518" + sources."caniuse-lite-1.0.30001519" sources."chalk-2.4.2" sources."character-parser-2.2.0" sources."chokidar-3.5.3" @@ -135098,7 +132823,7 @@ in sources."detect-indent-6.1.0" sources."diff-4.0.2" sources."doctypes-1.1.0" - sources."electron-to-chromium-1.4.480" + sources."electron-to-chromium-1.4.490" sources."errno-0.1.8" sources."es6-promise-3.3.1" sources."escalade-3.1.1" @@ -135123,12 +132848,12 @@ in sources."has-tostringtag-1.0.0" sources."iconv-lite-0.6.3" sources."image-size-0.5.5" - sources."immutable-4.3.1" + sources."immutable-4.3.2" sources."import-fresh-3.3.0" sources."inflight-1.0.6" sources."inherits-2.0.4" sources."is-binary-path-2.1.0" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" (sources."is-expression-4.0.0" // { dependencies = [ sources."acorn-7.4.1" @@ -135146,7 +132871,7 @@ in sources."jsesc-2.5.2" sources."json5-2.2.3" sources."jstransformer-1.0.0" - sources."less-4.1.3" + sources."less-4.2.0" sources."lilconfig-2.1.0" sources."locate-character-3.0.0" sources."lru-cache-5.1.1" @@ -135203,7 +132928,7 @@ in sources."pug-walk-2.0.0" sources."queue-microtask-1.2.3" sources."readdirp-3.6.0" - sources."resolve-1.22.3" + sources."resolve-1.22.4" sources."resolve-from-4.0.0" sources."reusify-1.0.4" sources."rimraf-2.7.1" @@ -135211,7 +132936,7 @@ in sources."sade-1.8.1" sources."safer-buffer-2.1.2" sources."sander-0.5.1" - sources."sass-1.64.2" + sources."sass-1.65.1" sources."sax-1.2.4" sources."semver-6.3.1" sources."sorcery-0.11.0" @@ -135232,7 +132957,6 @@ in sources."supports-preserve-symlinks-flag-1.0.0" (sources."svelte-4.1.2" // { dependencies = [ - sources."@jridgewell/sourcemap-codec-1.4.15" sources."magic-string-0.30.2" ]; }) @@ -135272,11 +132996,11 @@ in }; dependencies = [ sources."@ampproject/remapping-2.2.1" - sources."@babel/code-frame-7.22.5" + sources."@babel/code-frame-7.22.10" sources."@babel/compat-data-7.22.9" - sources."@babel/core-7.22.9" - sources."@babel/generator-7.22.9" - sources."@babel/helper-compilation-targets-7.22.9" + sources."@babel/core-7.22.10" + sources."@babel/generator-7.22.10" + sources."@babel/helper-compilation-targets-7.22.10" sources."@babel/helper-environment-visitor-7.22.5" sources."@babel/helper-function-name-7.22.5" sources."@babel/helper-hoist-variables-7.22.5" @@ -135287,12 +133011,12 @@ in sources."@babel/helper-string-parser-7.22.5" sources."@babel/helper-validator-identifier-7.22.5" sources."@babel/helper-validator-option-7.22.5" - sources."@babel/helpers-7.22.6" - sources."@babel/highlight-7.22.5" - sources."@babel/parser-7.22.7" + sources."@babel/helpers-7.22.10" + sources."@babel/highlight-7.22.10" + sources."@babel/parser-7.22.10" sources."@babel/template-7.22.5" - sources."@babel/traverse-7.22.8" - sources."@babel/types-7.22.5" + sources."@babel/traverse-7.22.10" + sources."@babel/types-7.22.10" (sources."@cspotcode/source-map-support-0.8.1" // { dependencies = [ sources."@jridgewell/trace-mapping-0.3.9" @@ -135302,31 +133026,31 @@ in sources."@emmetio/css-abbreviation-2.1.8" sources."@emmetio/scanner-1.0.4" sources."@jridgewell/gen-mapping-0.3.3" - sources."@jridgewell/resolve-uri-3.1.0" + sources."@jridgewell/resolve-uri-3.1.1" sources."@jridgewell/set-array-1.1.2" - sources."@jridgewell/sourcemap-codec-1.4.14" - sources."@jridgewell/trace-mapping-0.3.18" + sources."@jridgewell/sourcemap-codec-1.4.15" + sources."@jridgewell/trace-mapping-0.3.19" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@swc/core-1.3.73" - sources."@swc/core-darwin-arm64-1.3.73" - sources."@swc/core-darwin-x64-1.3.73" - sources."@swc/core-linux-arm-gnueabihf-1.3.73" - sources."@swc/core-linux-arm64-gnu-1.3.73" - sources."@swc/core-linux-arm64-musl-1.3.73" - sources."@swc/core-linux-x64-gnu-1.3.73" - sources."@swc/core-linux-x64-musl-1.3.73" - sources."@swc/core-win32-arm64-msvc-1.3.73" - sources."@swc/core-win32-ia32-msvc-1.3.73" - sources."@swc/core-win32-x64-msvc-1.3.73" + sources."@swc/core-1.3.76" + sources."@swc/core-darwin-arm64-1.3.76" + sources."@swc/core-darwin-x64-1.3.76" + sources."@swc/core-linux-arm-gnueabihf-1.3.76" + sources."@swc/core-linux-arm64-gnu-1.3.76" + sources."@swc/core-linux-arm64-musl-1.3.76" + sources."@swc/core-linux-x64-gnu-1.3.76" + sources."@swc/core-linux-x64-musl-1.3.76" + sources."@swc/core-win32-arm64-msvc-1.3.76" + sources."@swc/core-win32-ia32-msvc-1.3.76" + sources."@swc/core-win32-x64-msvc-1.3.76" sources."@swc/helpers-0.5.1" - sources."@swc/wasm-1.3.73" + sources."@swc/wasm-1.3.76" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.4" - sources."@types/node-20.4.5" + sources."@types/node-20.4.9" sources."@types/pug-2.0.6" (sources."@vscode/emmet-helper-2.8.4" // { dependencies = [ @@ -135350,7 +133074,7 @@ in sources."browserslist-4.21.10" sources."buffer-crc32-0.2.13" sources."call-bind-1.0.2" - sources."caniuse-lite-1.0.30001518" + sources."caniuse-lite-1.0.30001519" sources."chalk-2.4.2" sources."character-parser-2.2.0" sources."chokidar-3.5.3" @@ -135369,7 +133093,7 @@ in sources."detect-indent-6.1.0" sources."diff-4.0.2" sources."doctypes-1.1.0" - sources."electron-to-chromium-1.4.480" + sources."electron-to-chromium-1.4.490" sources."emmet-2.4.6" sources."errno-0.1.8" sources."es6-promise-3.3.1" @@ -135395,11 +133119,11 @@ in sources."has-tostringtag-1.0.0" sources."iconv-lite-0.6.3" sources."image-size-0.5.5" - sources."immutable-4.3.1" + sources."immutable-4.3.2" sources."inflight-1.0.6" sources."inherits-2.0.4" sources."is-binary-path-2.1.0" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" (sources."is-expression-4.0.0" // { dependencies = [ sources."acorn-7.4.1" @@ -135417,7 +133141,7 @@ in sources."json5-2.2.3" sources."jsonc-parser-2.3.1" sources."jstransformer-1.0.0" - sources."less-4.1.3" + sources."less-4.2.0" sources."lilconfig-2.1.0" sources."lodash-4.17.21" sources."lower-case-2.0.2" @@ -135475,13 +133199,13 @@ in sources."pug-walk-2.0.0" sources."queue-microtask-1.2.3" sources."readdirp-3.6.0" - sources."resolve-1.22.3" + sources."resolve-1.22.4" sources."reusify-1.0.4" sources."rimraf-2.7.1" sources."run-parallel-1.2.0" sources."safer-buffer-2.1.2" sources."sander-0.5.1" - sources."sass-1.64.2" + sources."sass-1.65.1" sources."sax-1.2.4" sources."semver-6.3.1" sources."sorcery-0.11.0" @@ -135808,7 +133532,7 @@ in ]; }) sources."growl-1.9.2" - (sources."handlebars-4.7.7" // { + (sources."handlebars-4.7.8" // { dependencies = [ sources."minimist-1.2.8" sources."source-map-0.6.1" @@ -136265,24 +133989,24 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@swc/core-1.3.73" - sources."@swc/core-darwin-arm64-1.3.73" - sources."@swc/core-darwin-x64-1.3.73" - sources."@swc/core-linux-arm-gnueabihf-1.3.73" - sources."@swc/core-linux-arm64-gnu-1.3.73" - sources."@swc/core-linux-arm64-musl-1.3.73" - sources."@swc/core-linux-x64-gnu-1.3.73" - sources."@swc/core-linux-x64-musl-1.3.73" - sources."@swc/core-win32-arm64-msvc-1.3.73" - sources."@swc/core-win32-ia32-msvc-1.3.73" - sources."@swc/core-win32-x64-msvc-1.3.73" + sources."@swc/core-1.3.76" + sources."@swc/core-darwin-arm64-1.3.76" + sources."@swc/core-darwin-x64-1.3.76" + sources."@swc/core-linux-arm-gnueabihf-1.3.76" + sources."@swc/core-linux-arm64-gnu-1.3.76" + sources."@swc/core-linux-arm64-musl-1.3.76" + sources."@swc/core-linux-x64-gnu-1.3.76" + sources."@swc/core-linux-x64-musl-1.3.76" + sources."@swc/core-win32-arm64-msvc-1.3.76" + sources."@swc/core-win32-ia32-msvc-1.3.76" + sources."@swc/core-win32-x64-msvc-1.3.76" sources."@swc/helpers-0.5.1" - sources."@swc/wasm-1.3.73" + sources."@swc/wasm-1.3.76" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.4" - sources."@types/node-20.4.5" + sources."@types/node-20.4.9" sources."acorn-8.10.0" sources."acorn-walk-8.2.0" sources."any-promise-1.3.0" @@ -136321,7 +134045,7 @@ in sources."inflight-1.0.6" sources."inherits-2.0.4" sources."is-binary-path-2.1.0" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" sources."is-extglob-2.1.1" sources."is-glob-4.0.3" sources."is-number-7.0.0" @@ -136354,7 +134078,7 @@ in sources."queue-microtask-1.2.3" sources."read-cache-1.0.0" sources."readdirp-3.6.0" - sources."resolve-1.22.3" + sources."resolve-1.22.4" sources."reusify-1.0.4" sources."run-parallel-1.2.0" sources."source-map-js-1.0.2" @@ -136722,15 +134446,11 @@ in }; dependencies = [ sources."@jridgewell/gen-mapping-0.3.3" - sources."@jridgewell/resolve-uri-3.1.0" + sources."@jridgewell/resolve-uri-3.1.1" sources."@jridgewell/set-array-1.1.2" sources."@jridgewell/source-map-0.3.5" sources."@jridgewell/sourcemap-codec-1.4.15" - (sources."@jridgewell/trace-mapping-0.3.18" // { - dependencies = [ - sources."@jridgewell/sourcemap-codec-1.4.14" - ]; - }) + sources."@jridgewell/trace-mapping-0.3.19" sources."acorn-8.10.0" sources."buffer-from-1.1.2" sources."commander-2.20.3" @@ -136827,7 +134547,7 @@ in sources."is-alphanumerical-1.0.4" sources."is-arrayish-0.2.1" sources."is-buffer-2.0.5" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" sources."is-decimal-1.0.4" sources."is-file-1.0.0" sources."is-fullwidth-code-point-3.0.0" @@ -136916,7 +134636,7 @@ in sources."remark-parse-9.0.0" sources."repeat-string-1.6.1" sources."require-from-string-2.0.2" - sources."resolve-1.22.3" + sources."resolve-1.22.4" sources."rimraf-2.6.3" sources."semver-5.7.2" sources."slice-ansi-4.0.0" @@ -137023,9 +134743,9 @@ in sha512 = "z/Xo1WHxAn7eueUbRLXoMNew+R3dzGENPG/yiCt/KT2WgAfRuQ7GeF855kLcnCCqdTnl6W7sYq8TKy+/DLpiqQ=="; }; dependencies = [ - sources."@babel/code-frame-7.22.5" + sources."@babel/code-frame-7.22.10" sources."@babel/helper-validator-identifier-7.22.5" - sources."@babel/highlight-7.22.5" + sources."@babel/highlight-7.22.10" sources."@sindresorhus/is-0.14.0" sources."@szmarczak/http-timer-1.1.2" sources."@textlint/ast-node-types-13.3.3" @@ -137165,7 +134885,7 @@ in sources."is-arrayish-0.2.1" sources."is-buffer-2.0.5" sources."is-ci-2.0.0" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" sources."is-decimal-1.0.4" sources."is-empty-1.2.0" sources."is-fullwidth-code-point-3.0.0" @@ -137281,7 +135001,7 @@ in sources."remark-retext-4.0.0" sources."remark-stringify-8.1.1" sources."repeat-string-1.6.1" - sources."resolve-1.22.3" + sources."resolve-1.22.4" sources."resolve-from-5.0.0" sources."responselike-1.0.2" sources."retext-english-3.0.4" @@ -137764,7 +135484,7 @@ in }; dependencies = [ sources."@aashutoshrathi/word-wrap-1.2.6" - sources."@babel/runtime-7.22.6" + sources."@babel/runtime-7.22.10" sources."@eslint-community/eslint-utils-4.4.0" sources."@eslint-community/regexpp-4.6.2" (sources."@eslint/eslintrc-2.1.1" // { @@ -137838,7 +135558,7 @@ in sources."ms-2.1.2" ]; }) - sources."eslint-import-resolver-node-0.3.7" + sources."eslint-import-resolver-node-0.3.9" sources."eslint-module-utils-2.8.0" sources."eslint-plugin-import-2.28.0" sources."eslint-plugin-jsx-a11y-6.7.1" @@ -137893,7 +135613,7 @@ in sources."is-bigint-1.0.4" sources."is-boolean-object-1.1.2" sources."is-callable-1.2.7" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" sources."is-date-object-1.0.5" sources."is-extglob-2.1.1" sources."is-glob-4.0.3" @@ -137949,9 +135669,9 @@ in sources."punycode-2.3.0" sources."queue-microtask-1.2.3" sources."react-is-16.13.1" - sources."regenerator-runtime-0.13.11" + sources."regenerator-runtime-0.14.0" sources."regexp.prototype.flags-1.5.0" - sources."resolve-1.22.3" + sources."resolve-1.22.4" sources."resolve-from-4.0.0" sources."reusify-1.0.4" sources."rimraf-3.0.2" @@ -138029,7 +135749,7 @@ in sources."@types/cors-2.8.13" sources."@types/http-cache-semantics-4.0.1" sources."@types/keyv-3.1.4" - sources."@types/node-20.4.5" + sources."@types/node-20.4.9" sources."@types/responselike-1.0.0" sources."abbrev-1.1.1" sources."abstract-logging-2.0.1" @@ -138040,13 +135760,7 @@ in sources."ms-2.1.2" ]; }) - (sources."agentkeepalive-4.3.0" // { - dependencies = [ - sources."debug-4.3.4" - sources."depd-2.0.0" - sources."ms-2.1.2" - ]; - }) + sources."agentkeepalive-4.5.0" sources."aggregate-error-3.1.0" sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" @@ -139117,7 +136831,7 @@ in sources."@types/cacheable-request-6.0.3" sources."@types/http-cache-semantics-4.0.1" sources."@types/keyv-3.1.4" - sources."@types/node-20.4.5" + sources."@types/node-20.4.9" sources."@types/responselike-1.0.0" sources."abbrev-1.1.1" sources."abstract-logging-2.0.1" @@ -139585,7 +137299,7 @@ in sources."@types/cacheable-request-6.0.3" sources."@types/http-cache-semantics-4.0.1" sources."@types/keyv-3.1.4" - sources."@types/node-20.4.5" + sources."@types/node-20.4.9" sources."@types/responselike-1.0.0" sources."abbrev-1.1.1" sources."abstract-logging-2.0.1" @@ -140484,7 +138198,7 @@ in sources."@types/cacheable-request-6.0.3" sources."@types/http-cache-semantics-4.0.1" sources."@types/keyv-3.1.4" - sources."@types/node-20.4.5" + sources."@types/node-20.4.9" sources."@types/responselike-1.0.0" sources."@xmldom/xmldom-0.8.10" sources."ajv-6.12.6" @@ -140687,24 +138401,24 @@ in sources."@jridgewell/resolve-uri-3.1.1" sources."@jridgewell/sourcemap-codec-1.4.15" sources."@jridgewell/trace-mapping-0.3.9" - sources."@swc/core-1.3.73" - sources."@swc/core-darwin-arm64-1.3.73" - sources."@swc/core-darwin-x64-1.3.73" - sources."@swc/core-linux-arm-gnueabihf-1.3.73" - sources."@swc/core-linux-arm64-gnu-1.3.73" - sources."@swc/core-linux-arm64-musl-1.3.73" - sources."@swc/core-linux-x64-gnu-1.3.73" - sources."@swc/core-linux-x64-musl-1.3.73" - sources."@swc/core-win32-arm64-msvc-1.3.73" - sources."@swc/core-win32-ia32-msvc-1.3.73" - sources."@swc/core-win32-x64-msvc-1.3.73" + sources."@swc/core-1.3.76" + sources."@swc/core-darwin-arm64-1.3.76" + sources."@swc/core-darwin-x64-1.3.76" + sources."@swc/core-linux-arm-gnueabihf-1.3.76" + sources."@swc/core-linux-arm64-gnu-1.3.76" + sources."@swc/core-linux-arm64-musl-1.3.76" + sources."@swc/core-linux-x64-gnu-1.3.76" + sources."@swc/core-linux-x64-musl-1.3.76" + sources."@swc/core-win32-arm64-msvc-1.3.76" + sources."@swc/core-win32-ia32-msvc-1.3.76" + sources."@swc/core-win32-x64-msvc-1.3.76" sources."@swc/helpers-0.5.1" - sources."@swc/wasm-1.3.73" + sources."@swc/wasm-1.3.76" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.4" - sources."@types/node-20.4.5" + sources."@types/node-20.4.9" sources."acorn-8.10.0" sources."acorn-walk-8.2.0" sources."arg-4.1.3" @@ -140821,7 +138535,7 @@ in sources."@types/cookie-0.4.1" sources."@types/cors-2.8.13" sources."@types/http-cache-semantics-4.0.1" - sources."@types/node-16.18.39" + sources."@types/node-16.18.40" sources."@types/triple-beam-1.3.2" sources."JSONStream-1.3.5" sources."abbrev-1.1.1" @@ -140935,7 +138649,7 @@ in sources."destroy-1.2.0" sources."detective-5.2.1" sources."diff-5.1.0" - sources."diff2html-3.4.35" + sources."diff2html-3.4.40" (sources."diffie-hellman-5.0.3" // { dependencies = [ sources."bn.js-4.12.0" @@ -141033,7 +138747,7 @@ in sources."is-arrayish-0.2.1" sources."is-buffer-1.1.6" sources."is-callable-1.2.7" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" sources."is-docker-2.2.1" sources."is-fullwidth-code-point-3.0.0" sources."is-generator-function-1.0.10" @@ -141152,7 +138866,7 @@ in sources."registry-auth-token-5.0.2" sources."registry-url-6.0.1" sources."require-directory-2.1.1" - sources."resolve-1.22.3" + sources."resolve-1.22.4" sources."resolve-alpn-1.2.1" sources."responselike-3.0.0" sources."rimraf-4.1.4" @@ -141298,19 +139012,18 @@ in sha512 = "5+qWt66my+GdFZLK7Hgv3jpzzlQRsH3LgPlFL8BaApBq3KXSoNShVrPDtE2m8oyDKIfTKJZQ6Ai4Od25B7qQfw=="; }; dependencies = [ - sources."@babel/code-frame-7.22.5" + sources."@babel/code-frame-7.22.10" sources."@babel/helper-validator-identifier-7.22.5" - sources."@babel/highlight-7.22.5" + sources."@babel/highlight-7.22.10" sources."@isaacs/cliui-8.0.2" sources."@npmcli/config-6.2.1" sources."@npmcli/map-workspaces-3.0.4" sources."@npmcli/name-from-folder-2.0.0" - sources."@pkgjs/parseargs-0.11.0" sources."@types/concat-stream-2.0.0" sources."@types/debug-4.1.8" sources."@types/is-empty-1.2.1" sources."@types/ms-0.7.31" - sources."@types/node-18.17.1" + sources."@types/node-18.17.4" sources."@types/supports-color-8.1.1" sources."@types/unist-2.0.7" sources."abbrev-2.0.0" @@ -141354,7 +139067,7 @@ in sources."is-fullwidth-code-point-3.0.0" sources."is-plain-obj-4.1.0" sources."isexe-2.0.0" - sources."jackspeak-2.2.2" + sources."jackspeak-2.2.3" sources."js-tokens-4.0.0" sources."json-parse-even-better-errors-3.0.0" sources."lines-and-columns-2.0.3" @@ -141601,7 +139314,7 @@ in sources."vega-statistics-1.9.0" sources."vega-time-2.1.1" sources."vega-transforms-4.10.2" - sources."vega-typings-0.24.1" + sources."vega-typings-0.24.2" sources."vega-util-1.17.2" sources."vega-view-5.11.1" sources."vega-view-transforms-4.5.9" @@ -141717,7 +139430,7 @@ in sources."vega-statistics-1.9.0" sources."vega-time-2.1.1" sources."vega-transforms-4.10.2" - sources."vega-typings-0.24.1" + sources."vega-typings-0.24.2" sources."vega-util-1.17.2" sources."vega-view-5.11.1" sources."vega-view-transforms-4.5.9" @@ -141743,10 +139456,10 @@ in vercel = nodeEnv.buildNodePackage { name = "vercel"; packageName = "vercel"; - version = "31.2.1"; + version = "31.2.3"; src = fetchurl { - url = "https://registry.npmjs.org/vercel/-/vercel-31.2.1.tgz"; - sha512 = "I73NWAHTLYgDYbz16AQdHaxcSBxk2Ck1YRpM+qi3yhr8859bkYEImMJ48UYmFQ+4KrS8y+o+PDhvJL8meB2yvw=="; + url = "https://registry.npmjs.org/vercel/-/vercel-31.2.3.tgz"; + sha512 = "wbdO/3DGBGRcEYYeYBPc1oAiK+TeQ5CPa0CzT1J/BaBoXor2v3TgcnMwNI70wuxq5pXu4rk54E1Ew11EHQiwqQ=="; }; dependencies = [ sources."@babel/runtime-7.12.1" @@ -141772,40 +139485,39 @@ in sources."@nodelib/fs.walk-1.2.8" sources."@rollup/pluginutils-4.2.1" sources."@sinclair/typebox-0.25.24" - sources."@swc/core-1.3.73" - sources."@swc/core-darwin-arm64-1.3.73" - sources."@swc/core-darwin-x64-1.3.73" - sources."@swc/core-linux-arm-gnueabihf-1.3.73" - sources."@swc/core-linux-arm64-gnu-1.3.73" - sources."@swc/core-linux-arm64-musl-1.3.73" - sources."@swc/core-linux-x64-gnu-1.3.73" - sources."@swc/core-linux-x64-musl-1.3.73" - sources."@swc/core-win32-arm64-msvc-1.3.73" - sources."@swc/core-win32-ia32-msvc-1.3.73" - sources."@swc/core-win32-x64-msvc-1.3.73" + sources."@swc/core-1.3.76" + sources."@swc/core-darwin-arm64-1.3.76" + sources."@swc/core-darwin-x64-1.3.76" + sources."@swc/core-linux-arm-gnueabihf-1.3.76" + sources."@swc/core-linux-arm64-gnu-1.3.76" + sources."@swc/core-linux-arm64-musl-1.3.76" + sources."@swc/core-linux-x64-gnu-1.3.76" + sources."@swc/core-linux-x64-musl-1.3.76" + sources."@swc/core-win32-arm64-msvc-1.3.76" + sources."@swc/core-win32-ia32-msvc-1.3.76" + sources."@swc/core-win32-x64-msvc-1.3.76" sources."@swc/helpers-0.5.1" - sources."@swc/wasm-1.3.73" + sources."@swc/wasm-1.3.76" sources."@ts-morph/common-0.11.1" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.4" - sources."@types/content-type-1.1.3" sources."@types/json-schema-7.0.12" sources."@types/node-14.18.33" sources."@types/node-fetch-2.6.3" - sources."@vercel/build-utils-6.8.2" + sources."@vercel/build-utils-6.8.3" sources."@vercel/error-utils-1.0.10" sources."@vercel/gatsby-plugin-vercel-analytics-1.0.10" - sources."@vercel/gatsby-plugin-vercel-builder-1.3.15" + sources."@vercel/gatsby-plugin-vercel-builder-1.3.17" sources."@vercel/go-2.5.1" sources."@vercel/hydrogen-0.0.64" - sources."@vercel/next-3.9.3" + sources."@vercel/next-3.9.4" sources."@vercel/nft-0.22.5" - sources."@vercel/node-2.15.7" + sources."@vercel/node-2.15.9" sources."@vercel/python-3.1.60" sources."@vercel/redwood-1.1.15" - (sources."@vercel/remix-builder-1.9.0" // { + (sources."@vercel/remix-builder-1.10.0" // { dependencies = [ sources."semver-7.3.8" ]; @@ -141818,7 +139530,7 @@ in ]; }) sources."@vercel/ruby-1.3.76" - sources."@vercel/static-build-1.3.43" + sources."@vercel/static-build-1.3.45" sources."@vercel/static-config-2.0.17" sources."abbrev-1.1.1" sources."acorn-8.10.0" @@ -141842,7 +139554,7 @@ in sources."combined-stream-1.0.8" sources."concat-map-0.0.1" sources."console-control-strings-1.1.0" - sources."content-type-1.0.4" + sources."content-type-1.0.5" sources."convert-hrtime-3.0.0" sources."create-require-1.1.1" sources."debug-4.3.4" @@ -142023,9 +139735,19 @@ in }; dependencies = [ sources."@aashutoshrathi/word-wrap-1.2.6" - sources."@babel/code-frame-7.22.5" + (sources."@babel/code-frame-7.22.10" // { + dependencies = [ + sources."ansi-styles-3.2.1" + sources."chalk-2.4.2" + sources."color-convert-1.9.3" + sources."color-name-1.1.3" + sources."escape-string-regexp-1.0.5" + sources."has-flag-3.0.0" + sources."supports-color-5.5.0" + ]; + }) sources."@babel/helper-validator-identifier-7.22.5" - (sources."@babel/highlight-7.22.5" // { + (sources."@babel/highlight-7.22.10" // { dependencies = [ sources."ansi-styles-3.2.1" sources."chalk-2.4.2" @@ -142072,7 +139794,7 @@ in sources."doctrine-3.0.0" sources."escape-string-regexp-4.0.0" sources."eslint-8.46.0" - sources."eslint-plugin-vue-9.16.1" + sources."eslint-plugin-vue-9.17.0" sources."eslint-scope-7.2.2" sources."eslint-visitor-keys-3.4.2" sources."espree-9.6.1" @@ -142106,7 +139828,7 @@ in sources."imurmurhash-0.1.4" sources."inflight-1.0.6" sources."inherits-2.0.4" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" (sources."is-expression-4.0.0" // { dependencies = [ sources."acorn-7.4.1" @@ -142149,7 +139871,7 @@ in sources."pug-lexer-5.0.1" sources."punycode-2.3.0" sources."queue-microtask-1.2.3" - sources."resolve-1.22.3" + sources."resolve-1.22.4" sources."resolve-from-4.0.0" sources."reusify-1.0.4" sources."rimraf-3.0.2" @@ -142471,7 +140193,7 @@ in sources."got-6.7.1" sources."graceful-fs-4.2.11" sources."gray-matter-4.0.3" - sources."handlebars-4.7.7" + sources."handlebars-4.7.8" sources."har-schema-2.0.0" sources."har-validator-5.1.5" sources."has-flag-3.0.0" @@ -142654,10 +140376,10 @@ in sha512 = "/dd2bJLxOmX8Ie0EPTlmU+F8cxAekn/1m8K9OAFoijm4fc8SdHznFUUEKuz2RMMhsaL5+rccj8xLFAJELYNbaA=="; }; dependencies = [ - sources."@adobe/css-tools-4.2.0" - sources."@babel/code-frame-7.22.5" + sources."@adobe/css-tools-4.3.0" + sources."@babel/code-frame-7.22.10" sources."@babel/helper-validator-identifier-7.22.5" - sources."@babel/highlight-7.22.5" + sources."@babel/highlight-7.22.10" sources."@emmetio/extract-abbreviation-0.1.6" sources."@mrmlnc/readdir-enhanced-2.2.1" sources."@nodelib/fs.stat-1.1.3" @@ -142678,7 +140400,7 @@ in sources."@starptech/rehype-webparser-0.10.0" sources."@starptech/webparser-0.10.0" sources."@szmarczak/http-timer-1.1.2" - sources."@types/node-20.4.5" + sources."@types/node-20.4.9" sources."@types/unist-2.0.7" sources."@types/vfile-3.0.2" sources."@types/vfile-message-2.0.0" @@ -143049,7 +140771,7 @@ in sources."is-binary-path-2.1.0" sources."is-buffer-2.0.5" sources."is-ci-2.0.0" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" sources."is-data-descriptor-1.0.0" sources."is-decimal-1.0.4" sources."is-descriptor-1.0.2" @@ -143309,7 +141031,7 @@ in sources."resolve-from-1.0.1" ]; }) - sources."resolve-1.22.3" + sources."resolve-1.22.4" sources."resolve-from-5.0.0" sources."resolve-url-0.2.1" sources."responselike-1.0.2" @@ -143662,7 +141384,11 @@ in sha512 = "EwAUg6706mBujMLbb4Czhe9Ax5Dw3x64t/X2hn+vIVvVexAANSifVg3yB7ILZmeRSGmv9uYo6kL5J1c/DiGdaw=="; }; dependencies = [ - sources."@babel/runtime-7.22.6" + (sources."@babel/runtime-7.22.10" // { + dependencies = [ + sources."regenerator-runtime-0.14.0" + ]; + }) sources."@jimp/bmp-0.16.13" sources."@jimp/core-0.16.13" sources."@jimp/custom-0.16.13" @@ -143813,9 +141539,19 @@ in }; dependencies = [ sources."@aashutoshrathi/word-wrap-1.2.6" - sources."@babel/code-frame-7.22.5" + (sources."@babel/code-frame-7.22.10" // { + dependencies = [ + sources."ansi-styles-3.2.1" + sources."chalk-2.4.2" + sources."color-convert-1.9.3" + sources."color-name-1.1.3" + sources."escape-string-regexp-1.0.5" + sources."has-flag-3.0.0" + sources."supports-color-5.5.0" + ]; + }) sources."@babel/helper-validator-identifier-7.22.5" - (sources."@babel/highlight-7.22.5" // { + (sources."@babel/highlight-7.22.10" // { dependencies = [ sources."ansi-styles-3.2.1" sources."chalk-2.4.2" @@ -143861,7 +141597,7 @@ in sources."@szmarczak/http-timer-5.0.1" sources."@types/http-cache-semantics-4.0.1" sources."@types/minimatch-3.0.5" - sources."@types/node-20.4.5" + sources."@types/node-20.4.9" sources."@types/yauzl-2.10.0" sources."abort-controller-3.0.0" sources."accepts-1.3.8" @@ -144513,16 +142249,16 @@ in }; dependencies = [ sources."@jridgewell/gen-mapping-0.3.3" - sources."@jridgewell/resolve-uri-3.1.0" + sources."@jridgewell/resolve-uri-3.1.1" sources."@jridgewell/set-array-1.1.2" sources."@jridgewell/source-map-0.3.5" - sources."@jridgewell/sourcemap-codec-1.4.14" - sources."@jridgewell/trace-mapping-0.3.18" - sources."@types/eslint-8.44.1" + sources."@jridgewell/sourcemap-codec-1.4.15" + sources."@jridgewell/trace-mapping-0.3.19" + sources."@types/eslint-8.44.2" sources."@types/eslint-scope-3.7.4" sources."@types/estree-1.0.1" sources."@types/json-schema-7.0.12" - sources."@types/node-20.4.5" + sources."@types/node-20.4.9" sources."@webassemblyjs/ast-1.11.6" sources."@webassemblyjs/floating-point-hex-parser-1.11.6" sources."@webassemblyjs/helper-api-error-1.11.6" @@ -144546,10 +142282,10 @@ in sources."ajv-keywords-3.5.2" sources."browserslist-4.21.10" sources."buffer-from-1.1.2" - sources."caniuse-lite-1.0.30001518" + sources."caniuse-lite-1.0.30001519" sources."chrome-trace-event-1.0.3" sources."commander-2.20.3" - sources."electron-to-chromium-1.4.480" + sources."electron-to-chromium-1.4.490" sources."enhanced-resolve-5.15.0" sources."es-module-lexer-1.3.0" sources."escalade-3.1.1" @@ -144614,16 +142350,16 @@ in dependencies = [ sources."@discoveryjs/json-ext-0.5.7" sources."@jridgewell/gen-mapping-0.3.3" - sources."@jridgewell/resolve-uri-3.1.0" + sources."@jridgewell/resolve-uri-3.1.1" sources."@jridgewell/set-array-1.1.2" sources."@jridgewell/source-map-0.3.5" - sources."@jridgewell/sourcemap-codec-1.4.14" - sources."@jridgewell/trace-mapping-0.3.18" - sources."@types/eslint-8.44.1" + sources."@jridgewell/sourcemap-codec-1.4.15" + sources."@jridgewell/trace-mapping-0.3.19" + sources."@types/eslint-8.44.2" sources."@types/eslint-scope-3.7.4" sources."@types/estree-1.0.1" sources."@types/json-schema-7.0.12" - sources."@types/node-20.4.5" + sources."@types/node-20.4.9" sources."@webassemblyjs/ast-1.11.6" sources."@webassemblyjs/floating-point-hex-parser-1.11.6" sources."@webassemblyjs/helper-api-error-1.11.6" @@ -144650,13 +142386,13 @@ in sources."ajv-keywords-3.5.2" sources."browserslist-4.21.10" sources."buffer-from-1.1.2" - sources."caniuse-lite-1.0.30001518" + sources."caniuse-lite-1.0.30001519" sources."chrome-trace-event-1.0.3" sources."clone-deep-4.0.1" sources."colorette-2.0.20" sources."commander-10.0.1" sources."cross-spawn-7.0.3" - sources."electron-to-chromium-1.4.480" + sources."electron-to-chromium-1.4.490" sources."enhanced-resolve-5.15.0" sources."envinfo-7.10.0" sources."es-module-lexer-1.3.0" @@ -144680,7 +142416,7 @@ in sources."has-flag-4.0.0" sources."import-local-3.1.0" sources."interpret-3.1.1" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" sources."is-plain-object-2.0.4" sources."isexe-2.0.0" sources."isobject-3.0.1" @@ -144706,7 +142442,7 @@ in sources."punycode-2.3.0" sources."randombytes-2.1.0" sources."rechoir-0.8.0" - sources."resolve-1.22.3" + sources."resolve-1.22.4" sources."resolve-cwd-3.0.0" sources."resolve-from-5.0.0" sources."safe-buffer-5.2.1" @@ -144756,17 +142492,17 @@ in }; dependencies = [ sources."@jridgewell/gen-mapping-0.3.3" - sources."@jridgewell/resolve-uri-3.1.0" + sources."@jridgewell/resolve-uri-3.1.1" sources."@jridgewell/set-array-1.1.2" sources."@jridgewell/source-map-0.3.5" - sources."@jridgewell/sourcemap-codec-1.4.14" - sources."@jridgewell/trace-mapping-0.3.18" + sources."@jridgewell/sourcemap-codec-1.4.15" + sources."@jridgewell/trace-mapping-0.3.19" sources."@leichtgewicht/ip-codec-2.0.4" sources."@types/body-parser-1.19.2" sources."@types/bonjour-3.5.10" sources."@types/connect-3.4.35" sources."@types/connect-history-api-fallback-1.5.0" - sources."@types/eslint-8.44.1" + sources."@types/eslint-8.44.2" sources."@types/eslint-scope-3.7.4" sources."@types/estree-1.0.1" sources."@types/express-4.17.17" @@ -144775,7 +142511,7 @@ in sources."@types/http-proxy-1.17.11" sources."@types/json-schema-7.0.12" sources."@types/mime-1.3.2" - sources."@types/node-20.4.5" + sources."@types/node-20.4.9" sources."@types/qs-6.9.7" sources."@types/range-parser-1.2.4" sources."@types/retry-0.12.0" @@ -144826,7 +142562,7 @@ in sources."bufferutil-4.0.7" sources."bytes-3.0.0" sources."call-bind-1.0.2" - sources."caniuse-lite-1.0.30001518" + sources."caniuse-lite-1.0.30001519" sources."chokidar-3.5.3" sources."chrome-trace-event-1.0.3" sources."colorette-2.0.20" @@ -144854,7 +142590,7 @@ in sources."dns-equal-1.0.0" sources."dns-packet-5.6.0" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.480" + sources."electron-to-chromium-1.4.490" sources."encodeurl-1.0.2" sources."enhanced-resolve-5.15.0" sources."es-module-lexer-1.3.0" @@ -145093,19 +142829,19 @@ in }; dependencies = [ sources."@jridgewell/gen-mapping-0.3.3" - sources."@jridgewell/resolve-uri-3.1.0" + sources."@jridgewell/resolve-uri-3.1.1" sources."@jridgewell/set-array-1.1.2" sources."@jridgewell/source-map-0.3.5" - sources."@jridgewell/sourcemap-codec-1.4.14" - sources."@jridgewell/trace-mapping-0.3.18" + sources."@jridgewell/sourcemap-codec-1.4.15" + sources."@jridgewell/trace-mapping-0.3.19" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@types/eslint-8.44.1" + sources."@types/eslint-8.44.2" sources."@types/eslint-scope-3.7.4" sources."@types/estree-1.0.1" sources."@types/json-schema-7.0.12" - sources."@types/node-20.4.5" + sources."@types/node-20.4.9" sources."@webassemblyjs/ast-1.11.6" sources."@webassemblyjs/floating-point-hex-parser-1.11.6" sources."@webassemblyjs/helper-api-error-1.11.6" @@ -145131,11 +142867,11 @@ in sources."braces-3.0.2" sources."browserslist-4.21.10" sources."buffer-from-1.1.2" - sources."caniuse-lite-1.0.30001518" + sources."caniuse-lite-1.0.30001519" sources."chrome-trace-event-1.0.3" sources."commander-2.20.3" sources."dir-glob-3.0.1" - sources."electron-to-chromium-1.4.480" + sources."electron-to-chromium-1.4.490" sources."enhanced-resolve-5.15.0" sources."es-module-lexer-1.3.0" sources."escalade-3.1.1" @@ -145248,7 +142984,7 @@ in sources."@protobufjs/pool-1.1.0" sources."@protobufjs/utf8-1.1.0" sources."@types/long-4.0.2" - sources."@types/node-20.4.5" + sources."@types/node-20.4.9" sources."@webtorrent/http-node-1.3.0" sources."addr-to-ip-port-1.5.4" sources."airplay-js-0.3.0" @@ -145339,7 +143075,11 @@ in sources."cli-cursor-3.1.0" sources."cli-spinners-2.9.0" sources."cli-width-3.0.0" - sources."cliui-8.0.1" + (sources."cliui-8.0.1" // { + dependencies = [ + sources."wrap-ansi-7.0.0" + ]; + }) sources."clone-1.0.4" sources."color-convert-2.0.1" sources."color-name-1.1.4" @@ -145395,7 +143135,7 @@ in sources."ieee754-1.2.1" sources."immediate-chunk-store-2.2.0" sources."inherits-2.0.4" - sources."inquirer-8.2.5" + sources."inquirer-8.2.6" sources."ip-1.1.8" sources."ip-set-2.1.0" sources."ipaddr.js-2.1.0" @@ -145555,7 +143295,7 @@ in sources."stream-to-blob-2.0.1" sources."stream-to-blob-url-3.0.2" sources."stream-with-known-length-to-buffer-1.0.4" - sources."streamx-2.15.0" + sources."streamx-2.15.1" sources."string-width-4.2.3" sources."string2compact-1.3.2" sources."string_decoder-1.1.1" @@ -145611,7 +143351,7 @@ in ]; }) sources."winreg-1.2.4" - sources."wrap-ansi-7.0.0" + sources."wrap-ansi-6.2.0" sources."wrappy-1.0.2" sources."ws-7.5.9" sources."xml2js-0.4.23" @@ -145634,10 +143374,10 @@ in "@withgraphite/graphite-cli" = nodeEnv.buildNodePackage { name = "_at_withgraphite_slash_graphite-cli"; packageName = "@withgraphite/graphite-cli"; - version = "0.21.5"; + version = "0.22.1"; src = fetchurl { - url = "https://registry.npmjs.org/@withgraphite/graphite-cli/-/graphite-cli-0.21.5.tgz"; - sha512 = "RD86gEIlbZV7/IRrDvNlCQBiy9kuNNsSom8QV8Kki7ZXhBqHZqa7iFkxALBJl6D2BeEminddxvxjBXO5JbqxMg=="; + url = "https://registry.npmjs.org/@withgraphite/graphite-cli/-/graphite-cli-0.22.1.tgz"; + sha512 = "Zs4XDLDXBRbG9D4tgiNBYBE0UBrQxuf1vIs9uEG8RjCuCfvglNfaFxjIzr1s+SB968jH9YjB6C/gLzjA9dUuUw=="; }; dependencies = [ sources."ansi-regex-5.0.1" @@ -145676,18 +143416,18 @@ in wrangler = nodeEnv.buildNodePackage { name = "wrangler"; packageName = "wrangler"; - version = "3.4.0"; + version = "3.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/wrangler/-/wrangler-3.4.0.tgz"; - sha512 = "sATQ84zH/zFUHSaa4hY3V24TBrad3R9HhGV47U6Ek7XRQDLQHBm0jt84mJD3sSV/hhaq5s+xidIYulhm+m1/Tg=="; + url = "https://registry.npmjs.org/wrangler/-/wrangler-3.5.0.tgz"; + sha512 = "lvYo2JUxRXdobzd0hs96FT354DvKAYoAiPslceEpKmr0oHCreMWhU5AStfZwg1PEaJJZCwP17LqA5GgjvQ6zyg=="; }; dependencies = [ sources."@cloudflare/kv-asset-handler-0.2.0" - sources."@cloudflare/workerd-darwin-64-1.20230724.0" - sources."@cloudflare/workerd-darwin-arm64-1.20230724.0" - sources."@cloudflare/workerd-linux-64-1.20230724.0" - sources."@cloudflare/workerd-linux-arm64-1.20230724.0" - sources."@cloudflare/workerd-windows-64-1.20230724.0" + sources."@cloudflare/workerd-darwin-64-1.20230807.0" + sources."@cloudflare/workerd-darwin-arm64-1.20230807.0" + sources."@cloudflare/workerd-linux-64-1.20230807.0" + sources."@cloudflare/workerd-linux-arm64-1.20230807.0" + sources."@cloudflare/workerd-windows-64-1.20230807.0" sources."@esbuild-plugins/node-globals-polyfill-0.1.1" sources."@esbuild-plugins/node-modules-polyfill-0.1.4" sources."@esbuild/android-arm-0.16.3" @@ -145767,7 +143507,7 @@ in sources."magic-string-0.25.9" sources."mime-3.0.0" sources."mimic-response-3.1.0" - sources."miniflare-3.20230724.0" + sources."miniflare-3.20230801.0" sources."minimist-1.2.8" sources."mkdirp-classic-0.5.3" sources."ms-2.1.2" @@ -145813,10 +143553,10 @@ in sources."to-regex-range-5.0.1" sources."tslib-2.6.1" sources."tunnel-agent-0.6.0" - sources."undici-5.22.1" + sources."undici-5.23.0" sources."utf-8-validate-6.0.3" sources."util-deprecate-1.0.2" - sources."workerd-1.20230724.0" + sources."workerd-1.20230807.0" sources."wrappy-1.0.2" sources."ws-8.13.0" sources."xxhash-wasm-1.0.2" @@ -145862,7 +143602,7 @@ in }; dependencies = [ sources."@aashutoshrathi/word-wrap-1.2.6" - sources."@babel/runtime-7.22.6" + sources."@babel/runtime-7.22.10" sources."@eslint-community/eslint-utils-4.4.0" sources."@eslint-community/regexpp-4.6.2" (sources."@eslint/eslintrc-2.1.1" // { @@ -145933,7 +143673,7 @@ in sources."ms-2.1.2" ]; }) - sources."eslint-import-resolver-node-0.3.7" + sources."eslint-import-resolver-node-0.3.9" sources."eslint-module-utils-2.8.0" sources."eslint-plugin-import-2.28.0" sources."eslint-plugin-jsx-a11y-6.7.1" @@ -145988,7 +143728,7 @@ in sources."is-bigint-1.0.4" sources."is-boolean-object-1.1.2" sources."is-callable-1.2.7" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" sources."is-date-object-1.0.5" sources."is-extglob-2.1.1" sources."is-glob-4.0.3" @@ -146044,9 +143784,9 @@ in sources."punycode-2.3.0" sources."queue-microtask-1.2.3" sources."react-is-16.13.1" - sources."regenerator-runtime-0.13.11" + sources."regenerator-runtime-0.14.0" sources."regexp.prototype.flags-1.5.0" - sources."resolve-1.22.3" + sources."resolve-1.22.4" sources."resolve-from-4.0.0" sources."reusify-1.0.4" sources."rimraf-3.0.2" @@ -146240,9 +143980,7 @@ in sha512 = "KKp5WNPq0KdqfJY4W6HSiDG4DcgvmL4InWfkg5SVG9oYp+DTUUuc5ZmDw9VAvK0Z2J6XeEumDHcWh8NDhzrtOw=="; }; dependencies = [ - sources."@babel/code-frame-7.22.5" - sources."@babel/helper-validator-identifier-7.22.5" - (sources."@babel/highlight-7.22.5" // { + (sources."@babel/code-frame-7.22.10" // { dependencies = [ sources."ansi-styles-3.2.1" sources."chalk-2.4.2" @@ -146252,7 +143990,18 @@ in sources."supports-color-5.5.0" ]; }) - sources."@babel/runtime-7.22.6" + sources."@babel/helper-validator-identifier-7.22.5" + (sources."@babel/highlight-7.22.10" // { + dependencies = [ + sources."ansi-styles-3.2.1" + sources."chalk-2.4.2" + sources."color-convert-1.9.3" + sources."color-name-1.1.3" + sources."has-flag-3.0.0" + sources."supports-color-5.5.0" + ]; + }) + sources."@babel/runtime-7.22.10" sources."@gar/promisify-1.1.3" sources."@isaacs/string-locale-compare-1.1.0" sources."@nodelib/fs.scandir-2.1.5" @@ -146316,12 +144065,7 @@ in sources."ms-2.1.2" ]; }) - (sources."agentkeepalive-4.3.0" // { - dependencies = [ - sources."debug-4.3.4" - sources."ms-2.1.2" - ]; - }) + sources."agentkeepalive-4.5.0" sources."aggregate-error-3.1.0" sources."ansi-0.3.1" sources."ansi-align-3.0.1" @@ -146370,6 +144114,7 @@ in dependencies = [ sources."camelcase-6.3.0" sources."type-fest-0.20.2" + sources."wrap-ansi-7.0.0" ]; }) sources."brace-expansion-2.0.1" @@ -146452,7 +144197,6 @@ in sources."define-lazy-prop-2.0.0" sources."define-properties-1.2.0" sources."delegates-1.0.0" - sources."depd-2.0.0" sources."detect-node-2.1.0" sources."dezalgo-1.0.4" sources."diff-5.1.0" @@ -146597,7 +144341,7 @@ in sources."inflight-1.0.6" sources."inherits-2.0.4" sources."ini-1.3.8" - sources."inquirer-8.2.5" + sources."inquirer-8.2.6" (sources."into-stream-3.1.0" // { dependencies = [ sources."p-is-promise-1.1.0" @@ -146606,7 +144350,7 @@ in sources."ip-2.0.0" sources."is-arrayish-0.2.1" sources."is-ci-2.0.0" - sources."is-core-module-2.12.1" + sources."is-core-module-2.13.0" sources."is-docker-2.2.1" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" @@ -146977,12 +144721,12 @@ in sources."indent-string-3.2.0" ]; }) - sources."regenerator-runtime-0.13.11" + sources."regenerator-runtime-0.14.0" sources."registry-auth-token-4.2.2" sources."registry-url-5.1.0" sources."remove-trailing-separator-1.1.0" sources."replace-ext-1.0.1" - sources."resolve-1.22.3" + sources."resolve-1.22.4" sources."resolve-alpn-1.2.1" sources."responselike-1.0.2" sources."restore-cursor-3.1.0" @@ -147154,7 +144898,7 @@ in }) sources."wide-align-1.1.5" sources."widest-line-3.1.0" - sources."wrap-ansi-7.0.0" + sources."wrap-ansi-6.2.0" sources."wrappy-1.0.2" sources."write-file-atomic-3.0.3" sources."xdg-basedir-4.0.0" @@ -147296,12 +145040,12 @@ in sources."@esm2cjs/responselike-3.0.0" sources."@homebridge/ciao-1.1.7" sources."@leichtgewicht/ip-codec-2.0.4" - sources."@sentry-internal/tracing-7.61.0" - sources."@sentry/core-7.61.0" - sources."@sentry/integrations-7.61.0" - sources."@sentry/node-7.61.0" - sources."@sentry/types-7.61.0" - sources."@sentry/utils-7.61.0" + sources."@sentry-internal/tracing-7.63.0" + sources."@sentry/core-7.63.0" + sources."@sentry/integrations-7.63.0" + sources."@sentry/node-7.63.0" + sources."@sentry/types-7.63.0" + sources."@sentry/utils-7.63.0" sources."@serialport/binding-mock-10.2.2" sources."@serialport/bindings-cpp-10.8.0" sources."@serialport/bindings-interface-1.2.2" @@ -147318,14 +145062,14 @@ in sources."@serialport/stream-10.5.0" sources."@types/http-cache-semantics-4.0.1" sources."@types/triple-beam-1.3.2" - sources."@zwave-js/cc-11.8.1" - sources."@zwave-js/config-11.8.1" - sources."@zwave-js/core-11.8.1" - sources."@zwave-js/host-11.8.1" - sources."@zwave-js/nvmedit-11.8.1" - sources."@zwave-js/serial-11.8.1" + sources."@zwave-js/cc-11.10.0" + sources."@zwave-js/config-11.10.0" + sources."@zwave-js/core-11.9.1" + sources."@zwave-js/host-11.10.0" + sources."@zwave-js/nvmedit-11.9.1" + sources."@zwave-js/serial-11.10.0" sources."@zwave-js/shared-11.8.0" - sources."@zwave-js/testing-11.8.1" + sources."@zwave-js/testing-11.10.0" sources."agent-base-6.0.2" sources."alcalzone-shared-4.0.8" sources."ansi-colors-4.1.3" @@ -147453,7 +145197,7 @@ in sources."yallist-4.0.0" sources."yargs-17.7.2" sources."yargs-parser-21.1.1" - sources."zwave-js-11.8.1" + sources."zwave-js-11.10.0" ]; buildInputs = globalBuildInputs; meta = { diff --git a/pkgs/development/ocaml-modules/camlpdf/default.nix b/pkgs/development/ocaml-modules/camlpdf/default.nix index cbcb67e2d295..6627ac75a86e 100644 --- a/pkgs/development/ocaml-modules/camlpdf/default.nix +++ b/pkgs/development/ocaml-modules/camlpdf/default.nix @@ -5,14 +5,14 @@ then throw "camlpdf is not available for OCaml ${ocaml.version}" else stdenv.mkDerivation rec { - version = "2.5"; + version = "2.6"; pname = "ocaml${ocaml.version}-camlpdf"; src = fetchFromGitHub { owner = "johnwhitington"; repo = "camlpdf"; rev = "v${version}"; - sha256 = "sha256:1qmsa0xgi960y7r20mvf8hxiiml7l1908s4dm7nq262f19w51gsl"; + hash = "sha256-CJWVvZSbvSzG3PIr7w0vmbmY6tH59AgBAWRfDpQ9MCk="; }; nativeBuildInputs = [ which ocaml findlib ]; diff --git a/pkgs/development/ocaml-modules/cpdf/default.nix b/pkgs/development/ocaml-modules/cpdf/default.nix index e919f3b56157..3660182df370 100644 --- a/pkgs/development/ocaml-modules/cpdf/default.nix +++ b/pkgs/development/ocaml-modules/cpdf/default.nix @@ -6,13 +6,13 @@ else stdenv.mkDerivation rec { pname = "ocaml${ocaml.version}-cpdf"; - version = "2.5.1"; + version = "2.6"; src = fetchFromGitHub { owner = "johnwhitington"; repo = "cpdf-source"; rev = "v${version}"; - hash = "sha256-B1wYLcxTRUyzREtE9uvPMwSiwtB+q0RQsY02F0u3aa0="; + hash = "sha256-5gEv/lmca3FR16m4uxbCJ3y/XtTSBvoIojeKszc24ss="; }; nativeBuildInputs = [ ocaml findlib ]; diff --git a/pkgs/development/python-modules/acquire/default.nix b/pkgs/development/python-modules/acquire/default.nix index 3b88d6bbb553..e944a1d21013 100644 --- a/pkgs/development/python-modules/acquire/default.nix +++ b/pkgs/development/python-modules/acquire/default.nix @@ -17,16 +17,16 @@ buildPythonPackage rec { pname = "acquire"; - version = "3.7"; + version = "3.8"; format = "pyproject"; - disabled = pythonOlder "3.7"; + disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "fox-it"; repo = "acquire"; rev = "refs/tags/${version}"; - hash = "sha256-wGoMah3Pj7hS5+k/l5pEaDaM25RzdWRIG9Hrf3oWkR8="; + hash = "sha256-JfZ0sc7hFj71XxGWTTZ50uGWuKoWKY4vYm0v+zS2YiQ="; }; SETUPTOOLS_SCM_PRETEND_VERSION = version; diff --git a/pkgs/development/python-modules/aioairzone/default.nix b/pkgs/development/python-modules/aioairzone/default.nix index e1af7fa3927c..a525085af29d 100644 --- a/pkgs/development/python-modules/aioairzone/default.nix +++ b/pkgs/development/python-modules/aioairzone/default.nix @@ -8,7 +8,7 @@ buildPythonPackage rec { pname = "aioairzone"; - version = "0.6.4"; + version = "0.6.5"; format = "pyproject"; disabled = pythonOlder "3.8"; @@ -17,7 +17,7 @@ buildPythonPackage rec { owner = "Noltari"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-kOx28JmtB5hpCwsNk00bMLrU4K2tU/JY/ZWn6KmPDP4="; + hash = "sha256-HcO4t+9JigS6SVkwDk+rEWzqSfe0h5ZADdk3Jvxnr3Y="; }; nativeBuildInputs = [ diff --git a/pkgs/development/python-modules/aioesphomeapi/default.nix b/pkgs/development/python-modules/aioesphomeapi/default.nix index b126a756b2e5..205409520618 100644 --- a/pkgs/development/python-modules/aioesphomeapi/default.nix +++ b/pkgs/development/python-modules/aioesphomeapi/default.nix @@ -14,7 +14,7 @@ buildPythonPackage rec { pname = "aioesphomeapi"; - version = "15.1.15"; + version = "16.0.0"; format = "setuptools"; disabled = pythonOlder "3.9"; @@ -23,7 +23,7 @@ buildPythonPackage rec { owner = "esphome"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-qNljw3V0rfMb6GDtTd+jy/hHBaM3kc9y+RCEoNTKHFM="; + hash = "sha256-ATfAI8srh5G1ejkp/2wl2Soowatjprq9e8h8tSAAXGs="; }; propagatedBuildInputs = [ diff --git a/pkgs/development/python-modules/aiohomekit/default.nix b/pkgs/development/python-modules/aiohomekit/default.nix index 897c299de700..4e9ac6f7b7da 100644 --- a/pkgs/development/python-modules/aiohomekit/default.nix +++ b/pkgs/development/python-modules/aiohomekit/default.nix @@ -19,7 +19,7 @@ buildPythonPackage rec { pname = "aiohomekit"; - version = "2.6.14"; + version = "2.6.15"; format = "pyproject"; disabled = pythonOlder "3.9"; @@ -28,7 +28,7 @@ buildPythonPackage rec { owner = "Jc2k"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-JPI1+sQVZe2/5YxW6OxZRosp36e93KEW+V1DAcLaYNY="; + hash = "sha256-PX2OIgfVOlCEudObJrz/WRQXW7c6Gq9PQqD52D3lmmo="; }; nativeBuildInputs = [ diff --git a/pkgs/development/python-modules/aioslimproto/default.nix b/pkgs/development/python-modules/aioslimproto/default.nix index af681eec8ad4..2294960ce59a 100644 --- a/pkgs/development/python-modules/aioslimproto/default.nix +++ b/pkgs/development/python-modules/aioslimproto/default.nix @@ -2,10 +2,13 @@ , async-timeout , buildPythonPackage , fetchFromGitHub +, fetchpatch , pillow +, pytest-asyncio , pytestCheckHook , pythonOlder , setuptools +, wheel }: buildPythonPackage rec { @@ -13,7 +16,7 @@ buildPythonPackage rec { version = "2.3.3"; format = "pyproject"; - disabled = pythonOlder "3.9"; + disabled = pythonOlder "3.10"; src = fetchFromGitHub { owner = "home-assistant-libs"; @@ -22,8 +25,18 @@ buildPythonPackage rec { hash = "sha256-d+PEzCF1Cw/7NmumxIRRlr3hojpNsZM/JMQ0KWdosXk="; }; + patches = [ + # https://github.com/home-assistant-libs/aioslimproto/pull/189 + (fetchpatch { + name = "unpin-setuptools-version.patch"; + url = "https://github.com/home-assistant-libs/aioslimproto/commit/06fd56987be8903ff147bad38af84b21bc31bc18.patch"; + hash = "sha256-kTu1+IwDrcdqelyK/vfhxw8MQBis5I1jag7YTytKQhs="; + }) + ]; + nativeBuildInputs = [ setuptools + wheel ]; propagatedBuildInputs = [ @@ -32,14 +45,10 @@ buildPythonPackage rec { ]; nativeCheckInputs = [ + pytest-asyncio pytestCheckHook ]; - disabledTests = [ - # AssertionError: assert ['mixer', 'volume', '50'] == ['volume', '50'] - "test_msg_instantiation" - ]; - pythonImportsCheck = [ "aioslimproto" ]; diff --git a/pkgs/development/python-modules/aiounifi/default.nix b/pkgs/development/python-modules/aiounifi/default.nix index d99ff10cfa8d..b2b6a866992e 100644 --- a/pkgs/development/python-modules/aiounifi/default.nix +++ b/pkgs/development/python-modules/aiounifi/default.nix @@ -14,7 +14,7 @@ buildPythonPackage rec { pname = "aiounifi"; - version = "51"; + version = "52"; format = "setuptools"; disabled = pythonOlder "3.9"; @@ -23,7 +23,7 @@ buildPythonPackage rec { owner = "Kane610"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-XR/yZLxTHVHxm/QLCKrp9XFJ7yZybPjPxKEhf1SOzD0="; + hash = "sha256-mghAUZrRBKHM+mIeUGnbJqWD+NhZyikdGsIhf1uohiM="; }; propagatedBuildInputs = [ diff --git a/pkgs/development/python-modules/awkward-cpp/default.nix b/pkgs/development/python-modules/awkward-cpp/default.nix index c64d29d03990..a32ff89555ce 100644 --- a/pkgs/development/python-modules/awkward-cpp/default.nix +++ b/pkgs/development/python-modules/awkward-cpp/default.nix @@ -11,14 +11,14 @@ buildPythonPackage rec { pname = "awkward-cpp"; - version = "17"; + version = "21"; format = "pyproject"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-gTO7rxgkjdUgSkF6Ztq5bhti5VUpsrhocOLz7L6xllE="; + hash = "sha256-sobmPegDBI/4EvdpxrY28TsNO8vyLhuRsV9s+5WThR4="; }; nativeBuildInputs = [ diff --git a/pkgs/development/python-modules/awkward/default.nix b/pkgs/development/python-modules/awkward/default.nix index 27bd89a039f2..81881d519392 100644 --- a/pkgs/development/python-modules/awkward/default.nix +++ b/pkgs/development/python-modules/awkward/default.nix @@ -8,20 +8,21 @@ , numba , numpy , packaging +, setuptools , typing-extensions , pytestCheckHook }: buildPythonPackage rec { pname = "awkward"; - version = "2.2.4"; + version = "2.3.1"; format = "pyproject"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-v06mYdoP/WfIfz6x6+MJvS4YOsTsyWqhCyAykZ1d5v4="; + hash = "sha256-NLROXEbh4MKvBFuj+4+Wa2u37P9vuQ0Ww8kK+CYWt5E="; }; nativeBuildInputs = [ @@ -42,6 +43,7 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook numba + setuptools ]; disabledTestPaths = [ diff --git a/pkgs/development/python-modules/build/default.nix b/pkgs/development/python-modules/build/default.nix index e7c45afdd317..0eaad47c44f0 100644 --- a/pkgs/development/python-modules/build/default.nix +++ b/pkgs/development/python-modules/build/default.nix @@ -86,6 +86,6 @@ buildPythonPackage rec { homepage = "https://github.com/pypa/build"; changelog = "https://github.com/pypa/build/blob/${version}/CHANGELOG.rst"; license = licenses.mit; - maintainers = with maintainers; [ fab ]; + maintainers = teams.python.members ++ [ maintainers.fab ]; }; } diff --git a/pkgs/development/python-modules/bx-python/default.nix b/pkgs/development/python-modules/bx-python/default.nix index 085fc210f1b8..5fc21676d261 100644 --- a/pkgs/development/python-modules/bx-python/default.nix +++ b/pkgs/development/python-modules/bx-python/default.nix @@ -1,27 +1,49 @@ -{ lib, fetchFromGitHub, buildPythonPackage, pythonOlder, numpy, cython, zlib, six -, python-lzo, nose }: +{ lib +, fetchFromGitHub +, buildPythonPackage +, pythonOlder +, numpy +, cython +, zlib +, python-lzo +, nose +}: buildPythonPackage rec { pname = "bx-python"; - version = "0.9.0"; - disabled = pythonOlder "3.6"; + version = "0.10.0"; + format = "setuptools"; + + disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "bxlab"; repo = "bx-python"; rev = "refs/tags/v${version}"; - hash = "sha256-Pi4hV3FatCXoXY3nNgqm5UfWYIrpP/v5PzzCi3gmIbE="; + hash = "sha256-j2GKj2IGDBk4LBnISRx6ZW/lh5VSdQBasC0gCRj0Fiw="; }; - nativeBuildInputs = [ cython ]; - buildInputs = [ zlib ]; - propagatedBuildInputs = [ numpy six python-lzo ]; - nativeCheckInputs = [ nose ]; + nativeBuildInputs = [ + cython + ]; + + buildInputs = [ + zlib + ]; + + propagatedBuildInputs = [ + numpy + python-lzo + ]; + + nativeCheckInputs = [ + nose + ]; postInstall = '' cp -r scripts/* $out/bin - # This is a small hack; the test suit uses the scripts which need to + # This is a small hack; the test suite uses the scripts which need to # be patched. Linking the patched scripts in $out back to the # working directory allows the tests to run rm -rf scripts @@ -29,11 +51,11 @@ buildPythonPackage rec { ''; meta = with lib; { + description = "Tools for manipulating biological data, particularly multiple sequence alignments"; homepage = "https://github.com/bxlab/bx-python"; - description = - "Tools for manipulating biological data, particularly multiple sequence alignments"; + changelog = "https://github.com/bxlab/bx-python/releases/tag/v${version}"; license = licenses.mit; - maintainers = [ maintainers.jbedo ]; + maintainers = with maintainers; [ jbedo ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/development/python-modules/ciscoconfparse/default.nix b/pkgs/development/python-modules/ciscoconfparse/default.nix index edf15661dfec..33bd43c7043b 100644 --- a/pkgs/development/python-modules/ciscoconfparse/default.nix +++ b/pkgs/development/python-modules/ciscoconfparse/default.nix @@ -31,6 +31,14 @@ buildPythonPackage rec { ]; postPatch = '' + # The line below is in the [build-system] section, which is invalid and + # rejected by PyPA's build tool. It belongs in [project] but upstream has + # had problems with putting that there (see comment in pyproject.toml). + sed -i '/requires-python/d' pyproject.toml + + substituteInPlace pyproject.toml \ + --replace '"poetry>=1.3.2",' "" + patchShebangs tests ''; diff --git a/pkgs/development/python-modules/colour/default.nix b/pkgs/development/python-modules/colour/default.nix index f7419666f535..2dd31a02bbe7 100644 --- a/pkgs/development/python-modules/colour/default.nix +++ b/pkgs/development/python-modules/colour/default.nix @@ -1,15 +1,36 @@ -{ lib, buildPythonPackage, fetchPypi, d2to1 }: +{ lib +, buildPythonPackage +, fetchPypi +, pytestCheckHook +}: buildPythonPackage rec { pname = "colour"; version = "0.1.5"; + format = "setuptools"; src = fetchPypi { inherit pname version; - sha256 = "af20120fefd2afede8b001fbef2ea9da70ad7d49fafdb6489025dae8745c3aee"; + hash = "sha256-ryASD+/Sr+3osAH77y6p2nCtfUn6/bZIkCXa6HRcOu4="; }; - buildInputs = [ d2to1 ]; + patches = [ + # https://github.com/vaab/colour/pull/66 (but does not merge cleanly) + ./remove-unmaintained-d2to1.diff + ]; + + nativeCheckInputs = [ + pytestCheckHook + ]; + + pytestFlagsArray = [ + "--doctest-glob=\"*.rst\"" + "--doctest-modules" + ]; + + pythonImportsCheck = [ + "colour" + ]; meta = with lib; { description = "Converts and manipulates common color representation (RGB, HSV, web, ...)"; diff --git a/pkgs/development/python-modules/colour/remove-unmaintained-d2to1.diff b/pkgs/development/python-modules/colour/remove-unmaintained-d2to1.diff new file mode 100644 index 000000000000..2cac787bf501 --- /dev/null +++ b/pkgs/development/python-modules/colour/remove-unmaintained-d2to1.diff @@ -0,0 +1,65 @@ +diff --git a/setup.cfg b/setup.cfg +index 41de928..1c18182 100644 +--- a/setup.cfg ++++ b/setup.cfg +@@ -1,18 +1,14 @@ + [metadata] + name = colour + version = 0.1.5 +-summary = converts and manipulates various color representation (HSL, RVB, web, X11, ...) +-description-file = +- README.rst +- CHANGELOG.rst +- TODO.rst +-license_file = LICENSE +-requires-dist = ++description = converts and manipulates various color representation (HSL, RVB, web, X11, ...) ++long_description = file: README.rst, CHANGELOG.rst, TODO.rst ++license_files = LICENSE + author = Valentin LAB + author_email = valentin.lab@kalysto.org +-home_page = http://github.com/vaab/colour ++url = http://github.com/vaab/colour + license = BSD 3-Clause License +-classifier = ++classifiers = + Programming Language :: Python + Topic :: Software Development :: Libraries :: Python Modules + Development Status :: 3 - Alpha +@@ -26,16 +22,8 @@ classifier = + Programming Language :: Python :: 3.5 + Programming Language :: Python :: 3.6 + +-[files] +-modules = colour +-extra_files = +- README.rst +- CHANGELOG.rst +- TODO.rst +- setup.py +- +-[backwards_compat] +-zip-safe = False ++[options] ++zip_safe = False + + [bdist_wheel] + universal = 1 +diff --git a/setup.py b/setup.py +index 47038f9..11a8d3a 100644 +--- a/setup.py ++++ b/setup.py +@@ -54,12 +54,4 @@ if "%%short-version%%".startswith("%%"): + sys.exit(errlvl) + + +-## +-## Normal d2to1 setup +-## +- +-setup( +- setup_requires=['d2to1'], +- extras_require={'test': ['nose', ]}, +- d2to1=True +-) ++setup(extras_require={'test': ['nose', ]}) diff --git a/pkgs/development/python-modules/cvxpy/default.nix b/pkgs/development/python-modules/cvxpy/default.nix index 5820914737ca..3d15d8d7776c 100644 --- a/pkgs/development/python-modules/cvxpy/default.nix +++ b/pkgs/development/python-modules/cvxpy/default.nix @@ -11,6 +11,7 @@ , scipy , scs , setuptools +, wheel , useOpenmp ? (!stdenv.isDarwin) }: @@ -26,6 +27,16 @@ buildPythonPackage rec { hash = "sha256-C2heUEDxmfPXA/MPXSLR+GVZdiNFUVPR3ddwJFrvCXU="; }; + # we need to patch out numpy version caps from upstream + postPatch = '' + sed -i 's/\(numpy>=[0-9.]*\),<[0-9.]*;/\1;/g' pyproject.toml + ''; + + nativeBuildInputs = [ + setuptools + wheel + ]; + propagatedBuildInputs = [ cvxopt ecos diff --git a/pkgs/development/python-modules/d2to1/default.nix b/pkgs/development/python-modules/d2to1/default.nix deleted file mode 100644 index eaad9fc9095b..000000000000 --- a/pkgs/development/python-modules/d2to1/default.nix +++ /dev/null @@ -1,25 +0,0 @@ -{ buildPythonPackage -, lib -, fetchFromGitHub -, nose -}: -buildPythonPackage rec { - pname = "d2to1"; - version = "0.2.12.post1"; - - nativeCheckInputs = [ nose ]; - - src = fetchFromGitHub { - owner = "embray"; - repo = pname; - rev = version; - sha256 = "1hzq51qbzsc27yy8swp08kf42mamag7qcabbrigzj4m6ivb5chi2"; - }; - - meta = with lib;{ - description = "Support for distutils2-like setup.cfg files as package metadata"; - homepage = "https://github.com/embray/d2to1"; - license = licenses.bsd2; - maintainers = with maintainers; [ makefu ]; - }; -} diff --git a/pkgs/development/python-modules/datrie/default.nix b/pkgs/development/python-modules/datrie/default.nix index 414474af6ccb..73f4764d742d 100644 --- a/pkgs/development/python-modules/datrie/default.nix +++ b/pkgs/development/python-modules/datrie/default.nix @@ -2,6 +2,7 @@ , buildPythonPackage , fetchPypi , setuptools +, wheel , cython , pytestCheckHook , hypothesis @@ -17,17 +18,20 @@ buildPythonPackage rec { hash = "sha256-UlsI9jjVz2EV32zNgY5aASmM0jCy2skcj/LmSZ0Ydl0="; }; + postPatch = '' + substituteInPlace setup.py \ + --replace '"pytest-runner", ' "" + ''; + nativeBuildInputs = [ setuptools + wheel cython ]; nativeCheckInputs = [ - pytestCheckHook - ]; - - checkInputs = [ hypothesis + pytestCheckHook ]; pythonImportsCheck = [ "datrie" ]; diff --git a/pkgs/development/python-modules/dbt-core/default.nix b/pkgs/development/python-modules/dbt-core/default.nix index bd346c3262d7..0a926744a814 100644 --- a/pkgs/development/python-modules/dbt-core/default.nix +++ b/pkgs/development/python-modules/dbt-core/default.nix @@ -40,7 +40,7 @@ buildPythonPackage rec { hash = "sha256-ZgP11fVMtXpzo9QaTkejvKl0LzCAkIyGBMcOquBirxQ="; }; - sourceRoot = "source/core"; + sourceRoot = "${src.name}/core"; nativeBuildInputs = [ pythonRelaxDepsHook diff --git a/pkgs/development/python-modules/dbt-postgres/default.nix b/pkgs/development/python-modules/dbt-postgres/default.nix index f5be13ccff7a..0478e748f1c6 100644 --- a/pkgs/development/python-modules/dbt-postgres/default.nix +++ b/pkgs/development/python-modules/dbt-postgres/default.nix @@ -11,7 +11,7 @@ buildPythonPackage { inherit (dbt-core) version src; - sourceRoot = "source/plugins/postgres"; + sourceRoot = "${dbt-core.src.name}/plugins/postgres"; env.DBT_PSYCOPG2_NAME = "psycopg2"; diff --git a/pkgs/development/python-modules/dissect-cstruct/default.nix b/pkgs/development/python-modules/dissect-cstruct/default.nix index 46093c1268bb..556927b63a08 100644 --- a/pkgs/development/python-modules/dissect-cstruct/default.nix +++ b/pkgs/development/python-modules/dissect-cstruct/default.nix @@ -9,16 +9,16 @@ buildPythonPackage rec { pname = "dissect-cstruct"; - version = "3.8"; + version = "3.9"; format = "pyproject"; - disabled = pythonOlder "3.8"; + disabled = pythonOlder "3.9"; src = fetchFromGitHub { owner = "fox-it"; repo = "dissect.cstruct"; rev = "refs/tags/${version}"; - hash = "sha256-ART7m0OR0KjkZYHXDoNGJDX0v7h+FgctAaWXNFohGV8="; + hash = "sha256-v0giDdH6bYCSrotd9WGSlIMzylTz7FHeCE/JkCw7frY="; }; SETUPTOOLS_SCM_PRETEND_VERSION = version; diff --git a/pkgs/development/python-modules/dissect-etl/default.nix b/pkgs/development/python-modules/dissect-etl/default.nix index 06e9d2f282dd..de6a49ba9e26 100644 --- a/pkgs/development/python-modules/dissect-etl/default.nix +++ b/pkgs/development/python-modules/dissect-etl/default.nix @@ -11,7 +11,7 @@ buildPythonPackage rec { pname = "dissect-etl"; - version = "3.6"; + version = "3.7"; format = "pyproject"; disabled = pythonOlder "3.7"; @@ -20,7 +20,7 @@ buildPythonPackage rec { owner = "fox-it"; repo = "dissect.etl"; rev = "refs/tags/${version}"; - hash = "sha256-Z6IdSLHXwZULqV6aTZlXjRo5Xq/rRNw7b/nOhuKOth4="; + hash = "sha256-z6P7XpA+j9JIJJsp/Z4uewFw9OAPSZV+57eJu7rd17I="; }; SETUPTOOLS_SCM_PRETEND_VERSION = version; diff --git a/pkgs/development/python-modules/dissect-ntfs/default.nix b/pkgs/development/python-modules/dissect-ntfs/default.nix index e81211286003..96b3cb3a6745 100644 --- a/pkgs/development/python-modules/dissect-ntfs/default.nix +++ b/pkgs/development/python-modules/dissect-ntfs/default.nix @@ -11,7 +11,7 @@ buildPythonPackage rec { pname = "dissect-ntfs"; - version = "3.6"; + version = "3.7"; format = "pyproject"; disabled = pythonOlder "3.7"; @@ -20,7 +20,7 @@ buildPythonPackage rec { owner = "fox-it"; repo = "dissect.ntfs"; rev = "refs/tags/${version}"; - hash = "sha256-kGvy1+MSjJ6IQjffmsT02toBNaSbBZXeYmC9AqwbfFk="; + hash = "sha256-bnFimn5ektIKiX73NZ+1Iz3Uoew138a0nFJgypffC4o="; }; SETUPTOOLS_SCM_PRETEND_VERSION = version; diff --git a/pkgs/development/python-modules/dissect-regf/default.nix b/pkgs/development/python-modules/dissect-regf/default.nix index 726c9aad178c..bc0d8798255f 100644 --- a/pkgs/development/python-modules/dissect-regf/default.nix +++ b/pkgs/development/python-modules/dissect-regf/default.nix @@ -11,7 +11,7 @@ buildPythonPackage rec { pname = "dissect-regf"; - version = "3.6"; + version = "3.7"; format = "pyproject"; disabled = pythonOlder "3.7"; @@ -20,7 +20,7 @@ buildPythonPackage rec { owner = "fox-it"; repo = "dissect.regf"; rev = "refs/tags/${version}"; - hash = "sha256-doyyBmkRPH2wRZA44/7ldkUdNLX1lulo/XcSVFxaIfM="; + hash = "sha256-WUrND1RnXTeN3WosR+m+yVJLe/imBTx7nmUZrSIc1E0="; }; SETUPTOOLS_SCM_PRETEND_VERSION = version; diff --git a/pkgs/development/python-modules/dissect-target/default.nix b/pkgs/development/python-modules/dissect-target/default.nix index 1a5bc7756f86..1f79a43759b3 100644 --- a/pkgs/development/python-modules/dissect-target/default.nix +++ b/pkgs/development/python-modules/dissect-target/default.nix @@ -39,16 +39,16 @@ buildPythonPackage rec { pname = "dissect-target"; - version = "3.10"; + version = "3.11"; format = "pyproject"; - disabled = pythonOlder "3.10"; + disabled = pythonOlder "3.11"; src = fetchFromGitHub { owner = "fox-it"; repo = "dissect.target"; rev = "refs/tags/${version}"; - hash = "sha256-zAcNkRwCnU/53h8/WsaGjCpgPovPb+5VOu/6SHXu31g="; + hash = "sha256-WnF0Z/1jIUKSDAToQzKpiYQgn58KvQJfxk6r8oXANvU="; }; SETUPTOOLS_SCM_PRETEND_VERSION = version; diff --git a/pkgs/development/python-modules/dissect-util/default.nix b/pkgs/development/python-modules/dissect-util/default.nix index 22c1fe568279..bcd15ffbd250 100644 --- a/pkgs/development/python-modules/dissect-util/default.nix +++ b/pkgs/development/python-modules/dissect-util/default.nix @@ -9,16 +9,16 @@ buildPythonPackage rec { pname = "dissect-util"; - version = "3.9"; + version = "3.10"; format = "pyproject"; - disabled = pythonOlder "3.9"; + disabled = pythonOlder "3.10"; src = fetchFromGitHub { owner = "fox-it"; repo = "dissect.util"; rev = "refs/tags/${version}"; - hash = "sha256-u8FPGSG9bZi+bxqI5zABwHcqwmM24hURvHcHTKz8dYw="; + hash = "sha256-H89lPX//AlTEJLuZFzzn9wUc4lZC1TGd98t4+TYlbWs="; }; SETUPTOOLS_SCM_PRETEND_VERSION = version; diff --git a/pkgs/development/python-modules/dissect/default.nix b/pkgs/development/python-modules/dissect/default.nix index aedb4dcbb7e9..236371c41b96 100644 --- a/pkgs/development/python-modules/dissect/default.nix +++ b/pkgs/development/python-modules/dissect/default.nix @@ -32,16 +32,16 @@ buildPythonPackage rec { pname = "dissect"; - version = "3.7"; + version = "3.8"; format = "pyproject"; - disabled = pythonOlder "3.7"; + disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "fox-it"; repo = "dissect"; rev = "refs/tags/${version}"; - hash = "sha256-noo7yDRTPPSIrSt8Hewb9mZsMuPgDmL3aIxI/bknsGc="; + hash = "sha256-TEzIKEGAp+1QHJtnPp5JhopuVVBNo9/Cwj0z3YcBCcg="; }; SETUPTOOLS_SCM_PRETEND_VERSION = version; diff --git a/pkgs/development/python-modules/django-auth-ldap/default.nix b/pkgs/development/python-modules/django-auth-ldap/default.nix index df24499b37c3..89432c28198c 100644 --- a/pkgs/development/python-modules/django-auth-ldap/default.nix +++ b/pkgs/development/python-modules/django-auth-ldap/default.nix @@ -17,14 +17,14 @@ buildPythonPackage rec { pname = "django-auth-ldap"; - version = "4.4.0"; + version = "4.5.0"; format = "pyproject"; disabled = isPy27; src = fetchPypi { inherit pname version; - hash = "sha256-eXkxrF1VxMoUwXnViSQgzCqYqoHkQyPVlfVBnBtFwwY="; + hash = "sha256-B6L+NbQCUIluErjWLROW0eQ3AEYwNwN2BJPOzXkfqI8="; }; nativeBuildInputs = [ diff --git a/pkgs/development/python-modules/dvc-data/default.nix b/pkgs/development/python-modules/dvc-data/default.nix index 1c29e3f7d192..d1653962294c 100644 --- a/pkgs/development/python-modules/dvc-data/default.nix +++ b/pkgs/development/python-modules/dvc-data/default.nix @@ -14,7 +14,7 @@ buildPythonPackage rec { pname = "dvc-data"; - version = "2.12.1"; + version = "2.12.2"; format = "pyproject"; disabled = pythonOlder "3.8"; @@ -23,7 +23,7 @@ buildPythonPackage rec { owner = "iterative"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-BmI2D1nMeqcV0jPMJ6jzHO38AscfzDMgwh91ekKlXEs="; + hash = "sha256-DNFnh+ajfKgsZEj5Vyfk+jqSs9nv/PHIIpkkarxugww="; }; SETUPTOOLS_SCM_PRETEND_VERSION = version; diff --git a/pkgs/development/python-modules/dvc-objects/default.nix b/pkgs/development/python-modules/dvc-objects/default.nix index a4c3fb583873..70f843f883a4 100644 --- a/pkgs/development/python-modules/dvc-objects/default.nix +++ b/pkgs/development/python-modules/dvc-objects/default.nix @@ -16,7 +16,7 @@ buildPythonPackage rec { pname = "dvc-objects"; - version = "0.24.1"; + version = "0.25.0"; format = "pyproject"; disabled = pythonOlder "3.8"; @@ -25,7 +25,7 @@ buildPythonPackage rec { owner = "iterative"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-DpRnbvGF6HOCAcQ7HRf9x1bzrHHnL95Fz/TzpCosRZo="; + hash = "sha256-RzVvF9fv2VtSWzhD3+TJ3I2WKSu016+MlfnFEFj3YxQ="; }; SETUPTOOLS_SCM_PRETEND_VERSION = version; diff --git a/pkgs/development/python-modules/dvc/default.nix b/pkgs/development/python-modules/dvc/default.nix index c80c66709363..2de9aebc0975 100644 --- a/pkgs/development/python-modules/dvc/default.nix +++ b/pkgs/development/python-modules/dvc/default.nix @@ -55,14 +55,14 @@ buildPythonPackage rec { pname = "dvc"; - version = "3.8.1"; + version = "3.14.0"; format = "pyproject"; src = fetchFromGitHub { owner = "iterative"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-ZHB2XAYjPwhCWHqq2Kro4CzDW34YBaknv9xBotCDkOw="; + hash = "sha256-UVDzcbVRG94vM7s78uscsJ7Oq8HvHowAN2Hj+thbrvU="; }; pythonRelaxDeps = [ diff --git a/pkgs/development/python-modules/flit-core/default.nix b/pkgs/development/python-modules/flit-core/default.nix index c81a8567de2f..0d0c3785f881 100644 --- a/pkgs/development/python-modules/flit-core/default.nix +++ b/pkgs/development/python-modules/flit-core/default.nix @@ -36,7 +36,8 @@ buildPythonPackage rec { meta = with lib; { description = "Distribution-building parts of Flit. See flit package for more information"; homepage = "https://github.com/pypa/flit"; + changelog = "https://github.com/pypa/flit/blob/${src.rev}/doc/history.rst"; license = licenses.bsd3; - maintainers = with maintainers; [ fridh ]; + maintainers = teams.python.members; }; } diff --git a/pkgs/development/python-modules/flow-record/default.nix b/pkgs/development/python-modules/flow-record/default.nix index bd21e113f75b..0f4cea423e46 100644 --- a/pkgs/development/python-modules/flow-record/default.nix +++ b/pkgs/development/python-modules/flow-record/default.nix @@ -15,16 +15,16 @@ buildPythonPackage rec { pname = "flow-record"; - version = "3.10"; + version = "3.11"; format = "pyproject"; - disabled = pythonOlder "3.10"; + disabled = pythonOlder "3.11"; src = fetchFromGitHub { owner = "fox-it"; repo = "flow.record"; rev = "refs/tags/${version}"; - hash = "sha256-pOEK53+rIwzTxDEla1xoWo/xgy+eN0nxR0MeW7VQFds="; + hash = "sha256-/mrsm7WoqnTIaGOHuIZk1eMXAMi38eVpctgi6+RQ3WQ="; }; SETUPTOOLS_SCM_PRETEND_VERSION = version; diff --git a/pkgs/development/python-modules/git-url-parse/default.nix b/pkgs/development/python-modules/git-url-parse/default.nix new file mode 100644 index 000000000000..b0c4c2077faf --- /dev/null +++ b/pkgs/development/python-modules/git-url-parse/default.nix @@ -0,0 +1,48 @@ +{ lib +, buildPythonPackage +, fetchFromGitHub +, pbr +, pytestCheckHook +}: + +buildPythonPackage rec { + pname = "git-url-parse"; + version = "1.2.2"; + format = "setuptools"; + + src = fetchFromGitHub { + owner = "coala"; + repo = "git-url-parse"; + rev = version; + hash = "sha256-+0V/C3wE02ppdDGn7iqdvmgsUwTR7THUakUilvkzoYg="; + }; + + postPatch = '' + substituteInPlace pytest.ini \ + --replace " --cov giturlparse --cov-report term-missing" "" + ''; + + + # Manually set version because prb wants to get it from the git + # upstream repository (and we are installing from tarball instead) + env.PBR_VERSION = version; + + propagatedBuildInputs = [ + pbr + ]; + + pythonImportsCheck = [ "giturlparse" ]; + + nativeCheckInputs = [ + pytestCheckHook + ]; + + meta = with lib; { + description = "A simple GIT URL parser"; + homepage = "https://github.com/coala/git-url-parse"; + changelog = "https://github.com/coala/git-url-parse/blob/${src.rev}/CHANGELOG.rst"; + license = licenses.mit; + maintainers = with maintainers; [ blaggacao ]; + }; +} + diff --git a/pkgs/development/python-modules/glyphslib/default.nix b/pkgs/development/python-modules/glyphslib/default.nix index 1aae1c347e32..7a44e6488643 100644 --- a/pkgs/development/python-modules/glyphslib/default.nix +++ b/pkgs/development/python-modules/glyphslib/default.nix @@ -16,7 +16,7 @@ buildPythonPackage rec { pname = "glyphslib"; - version = "6.2.5"; + version = "6.3.0"; format = "pyproject"; @@ -24,7 +24,7 @@ buildPythonPackage rec { owner = "googlefonts"; repo = "glyphsLib"; rev = "refs/tags/v${version}"; - hash = "sha256-El2hRY+ELzdW/Bv34JURsisRr74MEv19sFt9tWFHIes="; + hash = "sha256-wBtotr7nH7KL5ISaJFs4i8CCv4OCZnVOREUon8jhQdY="; }; SETUPTOOLS_SCM_PRETEND_VERSION = version; diff --git a/pkgs/development/python-modules/gsd/default.nix b/pkgs/development/python-modules/gsd/default.nix index 69ac2d4a6442..922a892be593 100644 --- a/pkgs/development/python-modules/gsd/default.nix +++ b/pkgs/development/python-modules/gsd/default.nix @@ -9,7 +9,7 @@ buildPythonPackage rec { pname = "gsd"; - version = "3.0.1"; + version = "3.1.1"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -18,7 +18,7 @@ buildPythonPackage rec { owner = "glotzerlab"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-jfik8Rz4gqBNQn8cb20VcSUodupS/FNgpQJtW/DMzPY="; + hash = "sha256-YeMdBELr5kfymVUEE8+cqGLgOPBqbbD+vh1e9XbRLB8="; }; nativeBuildInputs = [ diff --git a/pkgs/development/python-modules/installer/default.nix b/pkgs/development/python-modules/installer/default.nix index 9d3c8185322a..02934550273b 100644 --- a/pkgs/development/python-modules/installer/default.nix +++ b/pkgs/development/python-modules/installer/default.nix @@ -13,7 +13,7 @@ buildPythonPackage rec { format = "pyproject"; src = fetchFromGitHub { - owner = "pradyunsg"; + owner = "pypa"; repo = pname; rev = version; hash = "sha256-thHghU+1Alpay5r9Dc3v7ATRFfYKV8l9qR0nbGOOX/A="; @@ -27,10 +27,10 @@ buildPythonPackage rec { ]; meta = with lib; { - changelog = "https://github.com/pypa/installer/blob/${src.rev}/docs/changelog.md"; - homepage = "https://github.com/pradyunsg/installer"; description = "A low-level library for installing a Python package from a wheel distribution"; + homepage = "https://github.com/pypa/installer"; + changelog = "https://github.com/pypa/installer/blob/${src.rev}/docs/changelog.md"; license = licenses.mit; - maintainers = with maintainers; [ cpcloud fridh ]; + maintainers = teams.python.members ++ [ maintainers.cpcloud ]; }; } diff --git a/pkgs/development/python-modules/jenkinsapi/default.nix b/pkgs/development/python-modules/jenkinsapi/default.nix index f5a646a16f31..eafc2b49e74c 100644 --- a/pkgs/development/python-modules/jenkinsapi/default.nix +++ b/pkgs/development/python-modules/jenkinsapi/default.nix @@ -1,43 +1,52 @@ -{ lib, stdenv +{ lib , buildPythonPackage -, pythonAtLeast , fetchPypi +, flit-core , mock -, pytest +, pbr , pytest-mock +, pytestCheckHook , pytz , requests -, requests-kerberos -, toml +, six }: buildPythonPackage rec { pname = "jenkinsapi"; version = "0.3.13"; - format = "setuptools"; - - disabled = pythonAtLeast "3.6"; + format = "pyproject"; src = fetchPypi { inherit pname version; hash = "sha256-JGqYpj5h9UoV0WEFyxVIjFZwc030HobHrw1dnAryQLk="; }; - propagatedBuildInputs = [ pytz requests ]; - nativeCheckInputs = [ mock pytest pytest-mock requests-kerberos toml ]; - # TODO requests-kerberos is broken on darwin, weeding out the broken tests without - # access to macOS is not an adventure I am ready to embark on - @rski - doCheck = !stdenv.isDarwin; - # don't run tests that try to spin up jenkins, and a few more that are mysteriously broken - checkPhase = '' - py.test jenkinsapi_tests \ - -k "not systests and not test_plugins and not test_view" - ''; + nativeBuildInputs = [ + flit-core + pbr + ]; + + propagatedBuildInputs = [ + pytz + requests + six + ]; + + nativeCheckInputs = [ + mock + pytest-mock + pytestCheckHook + ]; + + # don't run tests that try to spin up jenkins + disabledTests = [ "systests" ]; + + pythonImportsCheck = [ "jenkinsapi" ]; meta = with lib; { description = "A Python API for accessing resources on a Jenkins continuous-integration server"; homepage = "https://github.com/salimfadhley/jenkinsapi"; - maintainers = with maintainers; [ drets ]; + maintainers = with maintainers; [ drets ] ++ teams.deshaw.members; license = licenses.mit; }; diff --git a/pkgs/development/python-modules/langchain/default.nix b/pkgs/development/python-modules/langchain/default.nix index 0a2f4ecf46ef..d03ce98f2fe7 100644 --- a/pkgs/development/python-modules/langchain/default.nix +++ b/pkgs/development/python-modules/langchain/default.nix @@ -97,7 +97,7 @@ buildPythonPackage rec { hash = "sha256-YQFIF1tA/CjvmD6xGgVre2lbcHR+UYx/sy1dOfpvkPY="; }; - sourceRoot = "source/libs/langchain"; + sourceRoot = "${src.name}/libs/langchain"; postPatch = '' substituteInPlace langchain/utilities/bash.py \ diff --git a/pkgs/development/python-modules/langsmith/default.nix b/pkgs/development/python-modules/langsmith/default.nix index af1a1c1afeac..910ba98e8815 100644 --- a/pkgs/development/python-modules/langsmith/default.nix +++ b/pkgs/development/python-modules/langsmith/default.nix @@ -8,7 +8,7 @@ , pytest-asyncio }: -buildPythonPackage { +buildPythonPackage rec { pname = "langsmith"; version = "0.0.14"; format = "pyproject"; @@ -22,7 +22,7 @@ buildPythonPackage { hash = "sha256-U8fs16Uq80EB7Ey5YuQhUKKI9DOXJWlabM5JdoDnWP0="; }; - sourceRoot = "source/python"; + sourceRoot = "${src.name}/python"; nativeBuildInputs = [ poetry-core diff --git a/pkgs/development/python-modules/md-toc/default.nix b/pkgs/development/python-modules/md-toc/default.nix index 193fca714ad5..800fc6227b01 100644 --- a/pkgs/development/python-modules/md-toc/default.nix +++ b/pkgs/development/python-modules/md-toc/default.nix @@ -9,7 +9,7 @@ buildPythonPackage rec { pname = "md-toc"; - version = "8.1.9"; + version = "8.2.0"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -18,7 +18,7 @@ buildPythonPackage rec { owner = "frnmst"; repo = pname; rev = version; - hash = "sha256-t3G8nQCVUUuDb+W+Gw+f2miXQ2i/hdVfT6yGxdNWKpw="; + hash = "sha256-7Udmon/5E741+v2vBHHL7h31r91RR33hN1WhL3FiDQc="; }; propagatedBuildInputs = [ diff --git a/pkgs/development/python-modules/memory_profiler/default.nix b/pkgs/development/python-modules/memory_profiler/default.nix index df1a5410ffbf..7473514cd628 100644 --- a/pkgs/development/python-modules/memory_profiler/default.nix +++ b/pkgs/development/python-modules/memory_profiler/default.nix @@ -5,11 +5,11 @@ python.pkgs.buildPythonPackage rec { pname = "memory_profiler"; - version = "0.55.0"; + version = "0.61.0"; src = fetchPypi { inherit pname version; - sha256 = "1hdgh5f59bya079w4ahx4l0hf4gc5yvaz44irp5x57cj9hkpp92z"; + sha256 = "sha256-Tltz14ZKHRKS+3agPoKj5475NNBoKKaY2dradtogZ7A="; }; propagatedBuildInputs = with python.pkgs; [ diff --git a/pkgs/development/python-modules/mkdocs-autorefs/default.nix b/pkgs/development/python-modules/mkdocs-autorefs/default.nix index 3b98ff015cca..1a0b64efe1e1 100644 --- a/pkgs/development/python-modules/mkdocs-autorefs/default.nix +++ b/pkgs/development/python-modules/mkdocs-autorefs/default.nix @@ -4,26 +4,31 @@ , markdown , mkdocs , pytestCheckHook -, pdm-pep517 +, pdm-backend , pythonOlder }: buildPythonPackage rec { pname = "mkdocs-autorefs"; - version = "0.4.1"; + version = "0.5.0"; format = "pyproject"; - disabled = pythonOlder "3.7"; + disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "mkdocstrings"; repo = "autorefs"; - rev = version; - hash = "sha256-kiHb/XSFw6yaUbLJHBvHaQAOVUM6UfyFeomgniDZqgU="; + rev = "refs/tags/${version}"; + hash = "sha256-GZKQlOXhQIQhS/z4cbmS6fhAKYgnVhSXh5a8Od7+TWc="; }; + postPatch = '' + substituteInPlace pyproject.toml \ + --replace 'dynamic = ["version"]' 'version = "${version}"' + ''; + nativeBuildInputs = [ - pdm-pep517 + pdm-backend ]; propagatedBuildInputs = [ @@ -35,11 +40,6 @@ buildPythonPackage rec { pytestCheckHook ]; - postPatch = '' - substituteInPlace pyproject.toml \ - --replace 'dynamic = ["version"]' 'version = "${version}"' - ''; - pythonImportsCheck = [ "mkdocs_autorefs" ]; @@ -47,6 +47,7 @@ buildPythonPackage rec { meta = with lib; { description = "Automatically link across pages in MkDocs"; homepage = "https://github.com/mkdocstrings/autorefs/"; + changelog = "https://github.com/mkdocstrings/autorefs/blob/${version}/CHANGELOG.md"; license = licenses.isc; maintainers = with maintainers; [ fab ]; }; diff --git a/pkgs/development/python-modules/mpmath/default.nix b/pkgs/development/python-modules/mpmath/default.nix index 412965ab11ab..1a8e4c030979 100644 --- a/pkgs/development/python-modules/mpmath/default.nix +++ b/pkgs/development/python-modules/mpmath/default.nix @@ -1,31 +1,33 @@ { lib , buildPythonPackage -, fetchPypi -, fetchpatch -, setuptools-scm +, fetchFromGitHub +, gmpy2 +, isPyPy +, setuptools , pytestCheckHook }: buildPythonPackage rec { pname = "mpmath"; - version = "1.2.1"; + version = "1.3.0"; + format = "setuptools"; - src = fetchPypi { - inherit pname version; - sha256 = "79ffb45cf9f4b101a807595bcb3e72e0396202e0b1d25d689134b48c4216a81a"; + src = fetchFromGitHub { + owner = "mpmath"; + repo = "mpmath"; + rev = "refs/tags/${version}"; + hash = "sha256-9BGcaC3TyolGeO65/H42T/WQY6z5vc1h+MA+8MGFChU="; }; - patches = [ - (fetchpatch { - name = "CVE-2021-29063.patch"; - url = "https://github.com/fredrik-johansson/mpmath/commit/46d44c3c8f3244017fe1eb102d564eb4ab8ef750.patch"; - hash = "sha256-DaZ6nj9rEsjTAomu481Ujun364bL5E6lkXFvgBfHyeA="; - }) + nativeBuildInputs = [ + setuptools ]; - nativeBuildInputs = [ - setuptools-scm - ]; + passthru.optional-dependencies = { + gmpy = lib.optionals (!isPyPy) [ + gmpy2 + ]; + }; nativeCheckInputs = [ pytestCheckHook @@ -38,5 +40,4 @@ buildPythonPackage rec { maintainers = with maintainers; [ lovek323 ]; platforms = platforms.unix; }; - } diff --git a/pkgs/development/python-modules/msgspec/default.nix b/pkgs/development/python-modules/msgspec/default.nix index c385661738b1..2c3a0b153e43 100644 --- a/pkgs/development/python-modules/msgspec/default.nix +++ b/pkgs/development/python-modules/msgspec/default.nix @@ -8,7 +8,7 @@ buildPythonPackage rec { pname = "msgspec"; - version = "0.17.0"; + version = "0.18.0"; format = "setuptools"; disabled = pythonOlder "3.8"; @@ -17,7 +17,7 @@ buildPythonPackage rec { owner = "jcrist"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-IDu+Yu9BKk4/ITkNY6YLVmJ5zNR6F4LF1vj8QIEW108="; + hash = "sha256-FZq8SEtn/p7x43Je2d0gIGDi8S4uz4cdV0KkQecCFT4="; }; # Requires libasan to be accessible diff --git a/pkgs/development/python-modules/netutils/default.nix b/pkgs/development/python-modules/netutils/default.nix index 19a5be4077d2..bee05b436cdc 100644 --- a/pkgs/development/python-modules/netutils/default.nix +++ b/pkgs/development/python-modules/netutils/default.nix @@ -1,8 +1,9 @@ -{ stdenv -, lib +{ lib +, stdenv , buildPythonPackage , fetchFromGitHub , jinja2 +, napalm , poetry-core , pytestCheckHook , pythonOlder @@ -12,22 +13,26 @@ buildPythonPackage rec { pname = "netutils"; - version = "1.4.1"; + version = "1.5.0"; format = "pyproject"; - disabled = pythonOlder "3.7"; + disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "networktocode"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-hSSHCWi0L/ZfFz0JQ6Al5mjhb2g0DpykLF66uMKMIN8="; + hash = "sha256-uUw48EBUpEUw+A8wxw3qXrnqmFWQzg/zb+8qAGRSlUw="; }; nativeBuildInputs = [ poetry-core ]; + propagatedBuildInputs = [ + napalm + ]; + nativeCheckInputs = [ jinja2 pytestCheckHook @@ -49,6 +54,9 @@ buildPythonPackage rec { # OSError: [Errno 22] Invalid argument "test_compare_type5" "test_encrypt_type5" + "test_compare_cisco_type5" + "test_get_napalm_getters_napalm_installed_default" + "test_encrypt_cisco_type5" ]; meta = with lib; { diff --git a/pkgs/development/python-modules/numba/default.nix b/pkgs/development/python-modules/numba/default.nix index da0f72a43375..2e2d3a20badb 100644 --- a/pkgs/development/python-modules/numba/default.nix +++ b/pkgs/development/python-modules/numba/default.nix @@ -27,7 +27,8 @@ let inherit (cudaPackages) cudatoolkit; in buildPythonPackage rec { - # Using an untagged version, with numpy 1.25 support + # Using an untagged version, with numpy 1.25 support, when it's released + # also drop the versioneer patch in postPatch version = "unstable-2023-08-02"; pname = "numba"; format = "setuptools"; @@ -77,6 +78,13 @@ in buildPythonPackage rec { cuda_toolkit_lib_path = cudatoolkit.lib; }) ]; + # with untagged version we need to specify the correct version ourselves + + postPatch = '' + substituteInPlace setup.py --replace "version=versioneer.get_version()" "version='0.57.1'" + substituteInPlace numba/_version.py \ + --replace 'git_refnames = ""' 'git_refnames = "0.57.1"' + ''; postFixup = lib.optionalString cudaSupport '' find $out -type f \( -name '*.so' -or -name '*.so.*' \) | while read lib; do diff --git a/pkgs/development/python-modules/opentelemetry-api/default.nix b/pkgs/development/python-modules/opentelemetry-api/default.nix index 2a4de0a92cc9..1ccb00617ac0 100644 --- a/pkgs/development/python-modules/opentelemetry-api/default.nix +++ b/pkgs/development/python-modules/opentelemetry-api/default.nix @@ -12,7 +12,7 @@ }: let - self = buildPythonPackage { + self = buildPythonPackage rec { pname = "opentelemetry-api"; version = "1.18.0"; disabled = pythonOlder "3.7"; @@ -25,7 +25,7 @@ let hash = "sha256-8xf4TqEkBeueejQBckFGwBNN4Gyo+/7/my6Z1Mnei5Q="; }; - sourceRoot = "source/opentelemetry-api"; + sourceRoot = "${src.name}/opentelemetry-api"; format = "pyproject"; diff --git a/pkgs/development/python-modules/opentelemetry-exporter-otlp-proto-common/default.nix b/pkgs/development/python-modules/opentelemetry-exporter-otlp-proto-common/default.nix index a786318a58ba..71c742c0ba2a 100644 --- a/pkgs/development/python-modules/opentelemetry-exporter-otlp-proto-common/default.nix +++ b/pkgs/development/python-modules/opentelemetry-exporter-otlp-proto-common/default.nix @@ -14,7 +14,7 @@ buildPythonPackage { pname = "opentelemetry-exporter-otlp-proto-common"; disabled = pythonOlder "3.7"; - sourceRoot = "source/exporter/opentelemetry-exporter-otlp-proto-common"; + sourceRoot = "${opentelemetry-api.src.name}/exporter/opentelemetry-exporter-otlp-proto-common"; format = "pyproject"; diff --git a/pkgs/development/python-modules/opentelemetry-exporter-otlp-proto-grpc/default.nix b/pkgs/development/python-modules/opentelemetry-exporter-otlp-proto-grpc/default.nix index d4f2f4c4305b..b727d16b8e65 100644 --- a/pkgs/development/python-modules/opentelemetry-exporter-otlp-proto-grpc/default.nix +++ b/pkgs/development/python-modules/opentelemetry-exporter-otlp-proto-grpc/default.nix @@ -17,7 +17,7 @@ buildPythonPackage { pname = "opentelemetry-exporter-otlp-proto-grpc"; disabled = pythonOlder "3.7"; - sourceRoot = "source/exporter/opentelemetry-exporter-otlp-proto-grpc"; + sourceRoot = "${opentelemetry-api.src.name}/exporter/opentelemetry-exporter-otlp-proto-grpc"; format = "pyproject"; diff --git a/pkgs/development/python-modules/opentelemetry-exporter-otlp-proto-http/default.nix b/pkgs/development/python-modules/opentelemetry-exporter-otlp-proto-http/default.nix index 6d7bf23dafa3..2478826cd67e 100644 --- a/pkgs/development/python-modules/opentelemetry-exporter-otlp-proto-http/default.nix +++ b/pkgs/development/python-modules/opentelemetry-exporter-otlp-proto-http/default.nix @@ -17,7 +17,7 @@ buildPythonPackage { pname = "opentelemetry-exporter-otlp-proto-http"; disabled = pythonOlder "3.7"; - sourceRoot = "source/exporter/opentelemetry-exporter-otlp-proto-http"; + sourceRoot = "${opentelemetry-api.src.name}/exporter/opentelemetry-exporter-otlp-proto-http"; format = "pyproject"; diff --git a/pkgs/development/python-modules/opentelemetry-exporter-otlp/default.nix b/pkgs/development/python-modules/opentelemetry-exporter-otlp/default.nix index a3606148883f..7dcc282e1536 100644 --- a/pkgs/development/python-modules/opentelemetry-exporter-otlp/default.nix +++ b/pkgs/development/python-modules/opentelemetry-exporter-otlp/default.nix @@ -14,7 +14,7 @@ buildPythonPackage { pname = "opentelemetry-exporter-otlp"; disabled = pythonOlder "3.7"; - sourceRoot = "source/exporter/opentelemetry-exporter-otlp"; + sourceRoot = "${opentelemetry-api.src.name}/exporter/opentelemetry-exporter-otlp"; format = "pyproject"; diff --git a/pkgs/development/python-modules/opentelemetry-exporter-prometheus/default.nix b/pkgs/development/python-modules/opentelemetry-exporter-prometheus/default.nix index 1e74b3fd502f..7708b404a980 100644 --- a/pkgs/development/python-modules/opentelemetry-exporter-prometheus/default.nix +++ b/pkgs/development/python-modules/opentelemetry-exporter-prometheus/default.nix @@ -14,7 +14,7 @@ buildPythonPackage { pname = "opentelemetry-exporter-prometheus"; disabled = pythonOlder "3.7"; - sourceRoot = "source/exporter/opentelemetry-exporter-prometheus"; + sourceRoot = "${opentelemetry-api.src.name}/exporter/opentelemetry-exporter-prometheus"; format = "pyproject"; diff --git a/pkgs/development/python-modules/opentelemetry-instrumentation-aiohttp-client/default.nix b/pkgs/development/python-modules/opentelemetry-instrumentation-aiohttp-client/default.nix index de0823c0aac9..cdd40d447050 100644 --- a/pkgs/development/python-modules/opentelemetry-instrumentation-aiohttp-client/default.nix +++ b/pkgs/development/python-modules/opentelemetry-instrumentation-aiohttp-client/default.nix @@ -17,7 +17,7 @@ buildPythonPackage { pname = "opentelemetry-instrumentation-aiohttp-client"; disabled = pythonOlder "3.7"; - sourceRoot = "source/instrumentation/opentelemetry-instrumentation-aiohttp-client"; + sourceRoot = "${opentelemetry-instrumentation.src.name}/instrumentation/opentelemetry-instrumentation-aiohttp-client"; format = "pyproject"; diff --git a/pkgs/development/python-modules/opentelemetry-instrumentation-asgi/default.nix b/pkgs/development/python-modules/opentelemetry-instrumentation-asgi/default.nix index 5777498873b7..952824cd1b72 100644 --- a/pkgs/development/python-modules/opentelemetry-instrumentation-asgi/default.nix +++ b/pkgs/development/python-modules/opentelemetry-instrumentation-asgi/default.nix @@ -16,7 +16,7 @@ buildPythonPackage { pname = "opentelemetry-instrumentation-asgi"; disabled = pythonOlder "3.7"; - sourceRoot = "source/instrumentation/opentelemetry-instrumentation-asgi"; + sourceRoot = "${opentelemetry-instrumentation.src.name}/instrumentation/opentelemetry-instrumentation-asgi"; format = "pyproject"; diff --git a/pkgs/development/python-modules/opentelemetry-instrumentation-django/default.nix b/pkgs/development/python-modules/opentelemetry-instrumentation-django/default.nix index ec19eacf0e3d..39058d16e259 100644 --- a/pkgs/development/python-modules/opentelemetry-instrumentation-django/default.nix +++ b/pkgs/development/python-modules/opentelemetry-instrumentation-django/default.nix @@ -18,7 +18,7 @@ buildPythonPackage { pname = "opentelemetry-instrumentation-django"; disabled = pythonOlder "3.7"; - sourceRoot = "source/instrumentation/opentelemetry-instrumentation-django"; + sourceRoot = "${opentelemetry-instrumentation.src.name}/instrumentation/opentelemetry-instrumentation-django"; format = "pyproject"; diff --git a/pkgs/development/python-modules/opentelemetry-instrumentation-grpc/default.nix b/pkgs/development/python-modules/opentelemetry-instrumentation-grpc/default.nix index 8313faa8d6dd..ad408c3dfbaa 100644 --- a/pkgs/development/python-modules/opentelemetry-instrumentation-grpc/default.nix +++ b/pkgs/development/python-modules/opentelemetry-instrumentation-grpc/default.nix @@ -17,7 +17,7 @@ buildPythonPackage { pname = "opentelemetry-instrumentation-grpc"; disabled = pythonOlder "3.7"; - sourceRoot = "source/instrumentation/opentelemetry-instrumentation-grpc"; + sourceRoot = "${opentelemetry-instrumentation.src.name}/instrumentation/opentelemetry-instrumentation-grpc"; format = "pyproject"; diff --git a/pkgs/development/python-modules/opentelemetry-instrumentation-wsgi/default.nix b/pkgs/development/python-modules/opentelemetry-instrumentation-wsgi/default.nix index 408cfb692329..0b1fda0276c9 100644 --- a/pkgs/development/python-modules/opentelemetry-instrumentation-wsgi/default.nix +++ b/pkgs/development/python-modules/opentelemetry-instrumentation-wsgi/default.nix @@ -15,7 +15,7 @@ buildPythonPackage { pname = "opentelemetry-instrumentation-wsgi"; disabled = pythonOlder "3.7"; - sourceRoot = "source/instrumentation/opentelemetry-instrumentation-wsgi"; + sourceRoot = "${opentelemetry-instrumentation.src.name}/instrumentation/opentelemetry-instrumentation-wsgi"; format = "pyproject"; diff --git a/pkgs/development/python-modules/opentelemetry-instrumentation/default.nix b/pkgs/development/python-modules/opentelemetry-instrumentation/default.nix index 8716ef4efede..331a5e864374 100644 --- a/pkgs/development/python-modules/opentelemetry-instrumentation/default.nix +++ b/pkgs/development/python-modules/opentelemetry-instrumentation/default.nix @@ -24,7 +24,7 @@ buildPythonPackage rec { hash = "sha256-MPBOdurEQhA9BPRgVftejjtkvN/zRQEJDjQcS2QW3xc="; }; - sourceRoot = "source/opentelemetry-instrumentation"; + sourceRoot = "${src.name}/opentelemetry-instrumentation"; format = "pyproject"; diff --git a/pkgs/development/python-modules/opentelemetry-proto/default.nix b/pkgs/development/python-modules/opentelemetry-proto/default.nix index c673dee3986b..21b84dd5898f 100644 --- a/pkgs/development/python-modules/opentelemetry-proto/default.nix +++ b/pkgs/development/python-modules/opentelemetry-proto/default.nix @@ -12,7 +12,7 @@ buildPythonPackage { pname = "opentelemetry-proto"; disabled = pythonOlder "3.7"; - sourceRoot = "source/opentelemetry-proto"; + sourceRoot = "${opentelemetry-api.src.name}/opentelemetry-proto"; format = "pyproject"; diff --git a/pkgs/development/python-modules/opentelemetry-sdk/default.nix b/pkgs/development/python-modules/opentelemetry-sdk/default.nix index 1b4683137d95..ba5e7de5db83 100644 --- a/pkgs/development/python-modules/opentelemetry-sdk/default.nix +++ b/pkgs/development/python-modules/opentelemetry-sdk/default.nix @@ -17,7 +17,7 @@ let pname = "opentelemetry-sdk"; disabled = pythonOlder "3.7"; - sourceRoot = "source/opentelemetry-sdk"; + sourceRoot = "${opentelemetry-api.src.name}/opentelemetry-sdk"; format = "pyproject"; diff --git a/pkgs/development/python-modules/opentelemetry-semantic-conventions/default.nix b/pkgs/development/python-modules/opentelemetry-semantic-conventions/default.nix index 0ae9fb34d06f..d57a7f13fa53 100644 --- a/pkgs/development/python-modules/opentelemetry-semantic-conventions/default.nix +++ b/pkgs/development/python-modules/opentelemetry-semantic-conventions/default.nix @@ -11,7 +11,7 @@ buildPythonPackage { pname = "opentelemetry-semantic-conventions"; disabled = pythonOlder "3.7"; - sourceRoot = "source/opentelemetry-semantic-conventions"; + sourceRoot = "${opentelemetry-api.src.name}/opentelemetry-semantic-conventions"; format = "pyproject"; diff --git a/pkgs/development/python-modules/opentelemetry-test-utils/default.nix b/pkgs/development/python-modules/opentelemetry-test-utils/default.nix index 71e87b0737a9..4e2405058b86 100644 --- a/pkgs/development/python-modules/opentelemetry-test-utils/default.nix +++ b/pkgs/development/python-modules/opentelemetry-test-utils/default.nix @@ -13,7 +13,7 @@ buildPythonPackage { pname = "opentelemetry-test-utils"; disabled = pythonOlder "3.7"; - sourceRoot = "source/tests/opentelemetry-test-utils"; + sourceRoot = "${opentelemetry-api.src.name}/tests/opentelemetry-test-utils"; format = "pyproject"; diff --git a/pkgs/development/python-modules/opentelemetry-util-http/default.nix b/pkgs/development/python-modules/opentelemetry-util-http/default.nix index 49ec52a380b0..85e28f2a6d49 100644 --- a/pkgs/development/python-modules/opentelemetry-util-http/default.nix +++ b/pkgs/development/python-modules/opentelemetry-util-http/default.nix @@ -14,7 +14,7 @@ buildPythonPackage { pname = "opentelemetry-util-http"; disabled = pythonOlder "3.7"; - sourceRoot = "source/util/opentelemetry-util-http"; + sourceRoot = "${opentelemetry-instrumentation.src.name}/util/opentelemetry-util-http"; format = "pyproject"; diff --git a/pkgs/development/python-modules/prophet/default.nix b/pkgs/development/python-modules/prophet/default.nix index 7bb71fb778b6..889f835861ed 100644 --- a/pkgs/development/python-modules/prophet/default.nix +++ b/pkgs/development/python-modules/prophet/default.nix @@ -44,7 +44,7 @@ buildPythonPackage rec { }) ]; - sourceRoot = "source/python"; + sourceRoot = "${src.name}/python"; env.PROPHET_REPACKAGE_CMDSTAN = "false"; diff --git a/pkgs/development/python-modules/protego/default.nix b/pkgs/development/python-modules/protego/default.nix index 6db79056d302..7ff0690f3a58 100644 --- a/pkgs/development/python-modules/protego/default.nix +++ b/pkgs/development/python-modules/protego/default.nix @@ -1,29 +1,30 @@ { lib , buildPythonPackage , fetchPypi -, six -, pytest +, pytestCheckHook +, pythonOlder }: buildPythonPackage rec { - pname = "Protego"; - version = "0.2.1"; + pname = "protego"; + version = "0.3.0"; + + disabled = pythonOlder "3.7"; src = fetchPypi { - inherit pname version; - hash = "sha256-32ZtQwTat3Ti3J/rIIuxrI1x6lzuwS9MmeujD71kL/I="; + inherit version; + pname = "Protego"; + hash = "sha256-BCKL/95Ma8ujHPZSm6LP1uG3CAj9wdLLQwG+ayjWxWg="; }; - propagatedBuildInputs = [ six ]; - nativeCheckInputs = [ pytest ]; + nativeCheckInputs = [ pytestCheckHook ]; - checkPhase = '' - pytest tests - ''; + pythonImportsCheck = [ "protego" ]; meta = with lib; { description = "A pure-Python robots.txt parser with support for modern conventions"; homepage = "https://github.com/scrapy/protego"; + changelog = "https://github.com/scrapy/protego/blob/${version}/CHANGELOG.rst"; license = licenses.bsd3; maintainers = [ maintainers.marsam ]; }; diff --git a/pkgs/development/python-modules/publicsuffixlist/default.nix b/pkgs/development/python-modules/publicsuffixlist/default.nix index 0c70cafa97c6..7ed1f25ee6b6 100644 --- a/pkgs/development/python-modules/publicsuffixlist/default.nix +++ b/pkgs/development/python-modules/publicsuffixlist/default.nix @@ -9,14 +9,14 @@ buildPythonPackage rec { pname = "publicsuffixlist"; - version = "0.10.0.20230806"; + version = "0.10.0.20230811"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-jDDqegAZOG0UTKPbh1H3V+5GrMGU6m2WGesXUEFJHJY="; + hash = "sha256-C6IKX6e5/lxtx4fZeMa+IS5TyWKhpBeipZSMnSikxUk="; }; passthru.optional-dependencies = { diff --git a/pkgs/development/python-modules/pydeck/default.nix b/pkgs/development/python-modules/pydeck/default.nix index 1a0e86e5f47a..ccdc8509b8cb 100644 --- a/pkgs/development/python-modules/pydeck/default.nix +++ b/pkgs/development/python-modules/pydeck/default.nix @@ -1,53 +1,61 @@ { lib , buildPythonPackage , fetchPypi -, fetchpatch , ipykernel , ipywidgets -, pythonOlder -, pytestCheckHook -, pandas , jinja2 , numpy +, pandas +, pytestCheckHook +, pythonOlder +, setuptools , traitlets +, wheel }: buildPythonPackage rec { pname = "pydeck"; - version = "0.7.1"; + version = "0.8.0"; format = "pyproject"; disabled = pythonOlder "3.7"; - patches = [ - # fixes build with latest setuptools - (fetchpatch { - url = "https://github.com/visgl/deck.gl/commit/9e68f73b28aa3bf0f2a887a4d8ccd2dc35677039.patch"; - hash = "sha256-YVVoVbVdY5nV+17OwYIs9AwKGyzgKZHi655f4BLcdMU="; - stripLen = 2; - }) - ]; - src = fetchPypi { inherit pname version; - sha256 = "907601c99f7510e16d27d7cb62bfa145216d166a2b5c9c50cfe2b65b032ebd2e"; + hash = "sha256-B+3egz98/O9nSRJDURlap9zSRmPUkJ/XiY29C2+8Aew="; + }; + + nativeBuildInputs = [ + setuptools + wheel + ]; + + propagatedBuildInputs = [ + jinja2 + numpy + ]; + + passthru.optional-dependencies = { + carto = [ + # pydeck-carto + ]; + jupyter = [ + ipykernel + ipywidgets + traitlets + ]; }; pythonImportsCheck = [ "pydeck" ]; - nativeCheckInputs = [ pytestCheckHook pandas ]; + nativeCheckInputs = [ + pytestCheckHook + pandas + ] ++ passthru.optional-dependencies.jupyter; # tries to start a jupyter server disabledTests = [ "test_nbconvert" ]; - propagatedBuildInputs = [ - ipykernel - ipywidgets - jinja2 - numpy - traitlets - ]; - meta = with lib; { homepage = "https://github.com/visgl/deck.gl/tree/master/bindings/pydeck"; description = "Large-scale interactive data visualization in Python"; diff --git a/pkgs/development/python-modules/pyftdi/default.nix b/pkgs/development/python-modules/pyftdi/default.nix index baf57da4160e..f004ac7c88c4 100644 --- a/pkgs/development/python-modules/pyftdi/default.nix +++ b/pkgs/development/python-modules/pyftdi/default.nix @@ -8,7 +8,7 @@ buildPythonPackage rec { pname = "pyftdi"; - version = "0.54.0"; + version = "0.55.0"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -17,7 +17,7 @@ buildPythonPackage rec { owner = "eblot"; repo = pname; rev = "v${version}"; - hash = "sha256-vL8jSgTtDvaHuCvaCYmFixILQFasTl82yINL5yRtOwU="; + hash = "sha256-EEMHY5EKftci72huF5UmJyh2wJAc8uNh/QhGSSAVXIU="; }; propagatedBuildInputs = [ diff --git a/pkgs/development/python-modules/pynina/default.nix b/pkgs/development/python-modules/pynina/default.nix index a167f8cf1d65..acdb8f0b14c0 100644 --- a/pkgs/development/python-modules/pynina/default.nix +++ b/pkgs/development/python-modules/pynina/default.nix @@ -7,7 +7,7 @@ buildPythonPackage rec { pname = "pynina"; - version = "0.3.1"; + version = "0.3.2"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -15,7 +15,7 @@ buildPythonPackage rec { src = fetchPypi { pname = "PyNINA"; inherit version; - hash = "sha256-HyOk3W95dEl+p8YGh3xP29HcvbncqxsUaWSQUiKgTWM="; + hash = "sha256-uiNUkNL/3FGGhqctE9AZNdSD4o7jTk829GAT5Gy2Xeo="; }; propagatedBuildInputs = [ diff --git a/pkgs/development/python-modules/pynws/default.nix b/pkgs/development/python-modules/pynws/default.nix index 145f20e4c589..4b9c70a044b6 100644 --- a/pkgs/development/python-modules/pynws/default.nix +++ b/pkgs/development/python-modules/pynws/default.nix @@ -13,14 +13,14 @@ buildPythonPackage rec { pname = "pynws"; - version = "1.5.0"; + version = "1.5.1"; disabled = pythonOlder "3.6"; src = fetchFromGitHub { owner = "MatthewFlamm"; repo = pname; rev = "v${version}"; - hash = "sha256-UGwK7HasDAPw3edQUdrzWOmrbbM9l5R1BVw3M+FNm1s="; + hash = "sha256-Mq8kYS4p53gdSGF83AkSPecVizoEBbeKvyk7nCsRYdM="; }; propagatedBuildInputs = [ diff --git a/pkgs/development/python-modules/pyproject-hooks/default.nix b/pkgs/development/python-modules/pyproject-hooks/default.nix index 76bf3902c3d2..d751160b54d8 100644 --- a/pkgs/development/python-modules/pyproject-hooks/default.nix +++ b/pkgs/development/python-modules/pyproject-hooks/default.nix @@ -26,8 +26,7 @@ buildPythonPackage rec { flit-core ]; - propagatedBuildInputs = [ - ] ++ lib.optionals (pythonOlder "3.11") [ + propagatedBuildInputs = lib.optionals (pythonOlder "3.11") [ tomli ]; @@ -52,6 +51,6 @@ buildPythonPackage rec { homepage = "https://github.com/pypa/pyproject-hooks"; changelog = "https://github.com/pypa/pyproject-hooks/blob/v${version}/docs/changelog.rst"; license = licenses.mit; - maintainers = with maintainers; [ hexa ]; + maintainers = teams.python.members; }; } diff --git a/pkgs/development/python-modules/pytest-bdd/default.nix b/pkgs/development/python-modules/pytest-bdd/default.nix index 7908a04fa40f..b5b558a0faf5 100644 --- a/pkgs/development/python-modules/pytest-bdd/default.nix +++ b/pkgs/development/python-modules/pytest-bdd/default.nix @@ -1,6 +1,7 @@ { lib , buildPythonPackage , fetchFromGitHub +, fetchpatch , mako , parse , parse-type @@ -8,7 +9,6 @@ , pytest , pytestCheckHook , pythonOlder -, setuptools , typing-extensions }: @@ -26,6 +26,14 @@ buildPythonPackage rec { hash = "sha256-+76jIgfDQPdIoesTr1+QUu8wmOnrdf4KT+TJr9F2Hqk="; }; + patches = [ + (fetchpatch { + name = "remove-setuptools.patch"; + url = "https://github.com/pytest-dev/pytest-bdd/commit/5d8eda3a30b47d3bd27849884a851adafca765cb.patch"; + hash = "sha256-G2WHaRKlQ9HINufh8wl7+ly7HfDGobMLzzlbwDwd+o8="; + }) + ]; + nativeBuildInputs = [ poetry-core ]; @@ -43,7 +51,6 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook - setuptools ]; preCheck = '' diff --git a/pkgs/development/python-modules/radian/default.nix b/pkgs/development/python-modules/radian/default.nix index de60c93f9f8a..d8ffc2bff9ef 100644 --- a/pkgs/development/python-modules/radian/default.nix +++ b/pkgs/development/python-modules/radian/default.nix @@ -11,24 +11,29 @@ , prompt-toolkit , pygments , rchitect -, six , R , rPackages +, pythonOlder }: buildPythonPackage rec { pname = "radian"; - version = "0.6.5"; + version = "0.6.6"; + format = "setuptools"; + + disabled = pythonOlder "3.6"; src = fetchFromGitHub { owner = "randy3k"; repo = pname; - rev = "v${version}"; - sha256 = "iuD4EkGZ1GwNxR8Gpg9ANe3lMHJYZ/Q/RyuN6vZZWME="; + rev = "refs/tags/v${version}"; + hash = "sha256-zA7R9UIB0hOWev10Y4oySIKeIxTOo0V6Q3Fxe+FeHSU="; }; postPatch = '' - substituteInPlace setup.py --replace '"pytest-runner"' "" + substituteInPlace setup.py \ + --replace '"pytest-runner"' "" \ + --replace '0.3.39,<0.4.0' '0.3.39' ''; nativeBuildInputs = [ @@ -40,7 +45,6 @@ buildPythonPackage rec { prompt-toolkit pygments rchitect - six ] ++ (with rPackages; [ reticulate askpass @@ -65,6 +69,7 @@ buildPythonPackage rec { meta = with lib; { description = "A 21 century R console"; homepage = "https://github.com/randy3k/radian"; + changelog = "https://github.com/randy3k/radian/blob/v${version}/CHANGELOG.md"; license = licenses.mit; maintainers = with maintainers; [ savyajha ]; }; diff --git a/pkgs/development/python-modules/rchitect/default.nix b/pkgs/development/python-modules/rchitect/default.nix index 9e0b1b48d29d..ad1484dfc254 100644 --- a/pkgs/development/python-modules/rchitect/default.nix +++ b/pkgs/development/python-modules/rchitect/default.nix @@ -2,25 +2,31 @@ , buildPythonPackage , fetchFromGitHub , cffi -, six , pytestCheckHook , pytest-mock +, pythonOlder , R -, rPackages }: +, rPackages +, six +}: buildPythonPackage rec { pname = "rchitect"; - version = "0.3.40"; + version = "0.4.1"; + format = "setuptools"; + + disabled = pythonOlder "3.6"; src = fetchFromGitHub { owner = "randy3k"; repo = pname; - rev = "v${version}"; - sha256 = "yJMiPmusZ62dd6+5VkA2uSjq57a0C3arG8CgiUUHKpk="; + rev = "refs/tags/v${version}"; + hash = "sha256-fXL2UX0n9kKAVwMUP0z8V3UtJAy4xbAjnPIggUHllN0="; }; postPatch = '' - substituteInPlace setup.py --replace '"pytest-runner"' "" + substituteInPlace setup.py \ + --replace '"pytest-runner"' "" ''; propagatedBuildInputs = [ @@ -46,6 +52,7 @@ buildPythonPackage rec { meta = with lib; { description = "Interoperate R with Python"; homepage = "https://github.com/randy3k/rchitect"; + changelog = "https://github.com/randy3k/rchitect/blob/v${version}/CHANGELOG.md"; license = licenses.mit; maintainers = with maintainers; [ savyajha ]; }; diff --git a/pkgs/development/python-modules/rdflib/default.nix b/pkgs/development/python-modules/rdflib/default.nix index 208f3ae1278b..dc5ddf9cdfdb 100644 --- a/pkgs/development/python-modules/rdflib/default.nix +++ b/pkgs/development/python-modules/rdflib/default.nix @@ -18,6 +18,7 @@ , html5lib # tests +, pip , pytest-cov , pytestCheckHook }: @@ -53,7 +54,10 @@ buildPythonPackage rec { ]; }; + __darwinAllowLocalNetworking = true; + nativeCheckInputs = [ + pip pytest-cov pytestCheckHook ] diff --git a/pkgs/development/python-modules/sagemaker/default.nix b/pkgs/development/python-modules/sagemaker/default.nix index ab2d25c2b50f..4624f14b988a 100644 --- a/pkgs/development/python-modules/sagemaker/default.nix +++ b/pkgs/development/python-modules/sagemaker/default.nix @@ -26,7 +26,7 @@ buildPythonPackage rec { pname = "sagemaker"; - version = "2.175.0"; + version = "2.176.0"; format = "setuptools"; disabled = pythonOlder "3.6"; @@ -35,7 +35,7 @@ buildPythonPackage rec { owner = "aws"; repo = "sagemaker-python-sdk"; rev = "refs/tags/v${version}"; - hash = "sha256-7wITaGTHazC34bUF78ZFXFQYz48g1fZlPE8jvIBvE9w="; + hash = "sha256-Um1iL3muMyPlXgFj2OJ7eanvifCXrLvGG0V+pk00oqo="; }; nativeBuildInputs = [ diff --git a/pkgs/development/python-modules/scmrepo/default.nix b/pkgs/development/python-modules/scmrepo/default.nix index c429c6f6478c..c1773ffc48c3 100644 --- a/pkgs/development/python-modules/scmrepo/default.nix +++ b/pkgs/development/python-modules/scmrepo/default.nix @@ -17,7 +17,7 @@ buildPythonPackage rec { pname = "scmrepo"; - version = "1.1.0"; + version = "1.2.1"; format = "pyproject"; disabled = pythonOlder "3.7"; @@ -26,7 +26,7 @@ buildPythonPackage rec { owner = "iterative"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-ggqSS5SWJvKxYzCz4Q9LkA0hXmj/3iGhMKeNb/UQVXg="; + hash = "sha256-9xSuBh3y6vYvbwn7uslM+R7yhZKP/+Sjbae1a+QMoOA="; }; SETUPTOOLS_SCM_PRETEND_VERSION = version; diff --git a/pkgs/development/python-modules/sqlobject/default.nix b/pkgs/development/python-modules/sqlobject/default.nix index 21c48ad86ef7..4054cfcacf98 100644 --- a/pkgs/development/python-modules/sqlobject/default.nix +++ b/pkgs/development/python-modules/sqlobject/default.nix @@ -11,7 +11,7 @@ buildPythonPackage rec { pname = "sqlobject"; - version = "3.10.1"; + version = "3.10.2"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -19,7 +19,7 @@ buildPythonPackage rec { src = fetchPypi { pname = "SQLObject"; inherit version; - hash = "sha256-/PPqJ/ha8GRQpY/uQOLIF0v90p9tZKrHTCMkusiIuEQ="; + hash = "sha256-dW9IsIdOSnCG3thWhYwIsz0Oa5runnXD84S5ITPH3ww="; }; propagatedBuildInputs = [ @@ -45,6 +45,7 @@ buildPythonPackage rec { meta = with lib; { description = "Object Relational Manager for providing an object interface to your database"; homepage = "http://www.sqlobject.org/"; + changelog = "https://github.com/sqlobject/sqlobject/blob/${version}/docs/News.rst"; license = licenses.lgpl21Only; maintainers = with maintainers; [ ]; }; diff --git a/pkgs/development/python-modules/tensorboardx/default.nix b/pkgs/development/python-modules/tensorboardx/default.nix index 36992eace585..6097d2ecfd81 100644 --- a/pkgs/development/python-modules/tensorboardx/default.nix +++ b/pkgs/development/python-modules/tensorboardx/default.nix @@ -2,88 +2,55 @@ , buildPythonPackage , crc32c , fetchFromGitHub -, fetchpatch , lib , matplotlib , moto , numpy -, pillow , protobuf , pytestCheckHook , torch -, six +, setuptools-scm , soundfile , stdenv , tensorboard , torchvision -, which }: buildPythonPackage rec { pname = "tensorboardx"; - version = "2.5.1"; + version = "2.6.2"; format = "setuptools"; src = fetchFromGitHub { owner = "lanpa"; repo = "tensorboardX"; rev = "refs/tags/v${version}"; - hash = "sha256-Np0Ibn51qL0ORwq1IY8lUle05MQDdb5XkI1uzGOKJno="; + hash = "sha256-m7RLDOMuRNLacnIudptBGjhcTlMk8+v/onz6Amqxb90="; }; - patches = [ - (fetchpatch { - name = "fix-test-multiprocess-fork-on-darwin.patch"; - url = "https://github.com/lanpa/tensorboardX/commit/246a867237ff12893351b9275a1e297ee2861319.patch"; - hash = "sha256-ObUaIi1gFcGZAvDOEtZFd9TjZZUp3k89tYwmDQ5yOWg="; - }) - # https://github.com/lanpa/tensorboardX/pull/706 - (fetchpatch { - name = "fix-test-use-matplotlib-agg-backend.patch"; - url = "https://github.com/lanpa/tensorboardX/commit/751821c7af7f7f2cb724938e36fa04e814c0e4de.patch"; - hash = "sha256-Tu76ZRTh8fGj+/CzpqJO65hKrDFASbmzoLVIZ0kyLQA="; - }) - # https://github.com/lanpa/tensorboardX/pull/707 - (fetchpatch { - name = "fix-test-handle-numpy-float128-missing.patch"; - url = "https://github.com/lanpa/tensorboardX/commit/38f57ffc3b3dd91e76b13ec97404278065fbc782.patch"; - hash = "sha256-5Po41lHiO5hKi4ZtWR98/wwDe9HKZdADNTv40mgIEvk="; - }) - # https://github.com/lanpa/tensorboardX/pull/708 - (fetchpatch { - name = "fix-test-respect-tmpdir.patch"; - url = "https://github.com/lanpa/tensorboardX/commit/b0191d1cfb8a23def76e465d20fd59302c894f32.patch"; - hash = "sha256-6rSncJ16P1u70Cz9nObo8lMD7Go50BR3DZLgP4bODk4="; - }) - ]; - - postPatch = '' - # Version detection seems broken here, the version reported by python is - # newer than the protobuf package itself. - sed -i -e "s/'protobuf[^']*'/'protobuf'/" setup.py - ''; - nativeBuildInputs = [ - which protobuf + setuptools-scm ]; # required to make tests deterministic - PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION = "python"; + env.PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION = "python"; + + env.SETUPTOOLS_SCM_PRETEND_VERSION = version; propagatedBuildInputs = [ crc32c numpy - six - soundfile ]; + pythonImportsCheck = [ "tensorboardX" ]; + nativeCheckInputs = [ boto3 matplotlib moto - pillow pytestCheckHook + soundfile torch tensorboard torchvision @@ -107,7 +74,9 @@ buildPythonPackage rec { meta = with lib; { description = "Library for writing tensorboard-compatible logs"; - homepage = "https://github.com/lanpa/tensorboardX"; + homepage = "https://tensorboardx.readthedocs.io"; + downloadPage = "https://github.com/lanpa/tensorboardX"; + changelog = "https://github.com/lanpa/tensorboardX/blob/${src.rev}/HISTORY.rst"; license = licenses.mit; maintainers = with maintainers; [ lebastr akamaus ]; platforms = platforms.all; diff --git a/pkgs/development/python-modules/todoist-api-python/default.nix b/pkgs/development/python-modules/todoist-api-python/default.nix index ed7ae3ab0e71..d62f5b8ad2ac 100644 --- a/pkgs/development/python-modules/todoist-api-python/default.nix +++ b/pkgs/development/python-modules/todoist-api-python/default.nix @@ -1,5 +1,4 @@ { lib -, attrs , buildPythonPackage , fetchFromGitHub , fetchpatch @@ -13,16 +12,16 @@ buildPythonPackage rec { pname = "todoist-api-python"; - version = "2.0.2"; + version = "2.1.1"; format = "pyproject"; - disabled = pythonOlder "3.7"; + disabled = pythonOlder "3.11"; src = fetchFromGitHub { owner = "Doist"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-CKOsUb35+7WjSNf4Xo0SK5loIqWJbEnHdmhw9QXWFAI="; + hash = "sha256-mBQCC1beBAB+vDV/TrQHQB7cTjjoCDZlqpiYP8IphUA="; }; patches = [ @@ -39,7 +38,6 @@ buildPythonPackage rec { ]; propagatedBuildInputs = [ - attrs requests ]; diff --git a/pkgs/development/python-modules/tubeup/default.nix b/pkgs/development/python-modules/tubeup/default.nix index 854657c618f6..9b4139821cf4 100644 --- a/pkgs/development/python-modules/tubeup/default.nix +++ b/pkgs/development/python-modules/tubeup/default.nix @@ -11,14 +11,14 @@ buildPythonPackage rec { pname = "tubeup"; - version = "2023.8.9"; + version = "2023.8.10"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - sha256 = "sha256-v2fDB76OM/cpi/lJRKH/JnVXl9r/W9jCzlTAJ31N7VU="; + sha256 = "sha256-9jSPFKS1+mGprgGj1c6hOrOo/w2e7A+OXSUjQUm+NCg="; }; nativeBuildInputs = [ diff --git a/pkgs/development/python-modules/validators/default.nix b/pkgs/development/python-modules/validators/default.nix index 40c4b0b1fc98..1c0131c0549d 100644 --- a/pkgs/development/python-modules/validators/default.nix +++ b/pkgs/development/python-modules/validators/default.nix @@ -34,9 +34,9 @@ buildPythonPackage rec { meta = with lib; { description = "Python Data Validation for Humans"; - homepage = "https://github.com/kvesteri/validators"; + homepage = "https://github.com/python-validators/validators"; changelog = "https://github.com/python-validators/validators/blob/${version}/CHANGES.md"; - license = licenses.bsd3; + license = licenses.mit; maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/wheel-filename/default.nix b/pkgs/development/python-modules/wheel-filename/default.nix index e874894b1323..1937d7710f3c 100644 --- a/pkgs/development/python-modules/wheel-filename/default.nix +++ b/pkgs/development/python-modules/wheel-filename/default.nix @@ -1,9 +1,11 @@ { lib , buildPythonPackage , fetchFromGitHub +, fetchpatch , pytestCheckHook , pythonOlder , setuptools +, wheel }: buildPythonPackage rec { @@ -20,8 +22,17 @@ buildPythonPackage rec { hash = "sha256-M3XGHG733X5qKuMS6mvFSFHYOwWPaBMXw+w0eYo6ByE="; }; + patches = [ + (fetchpatch { + name = "remove-wheel-dependency-constraint.patch"; + url = "https://github.com/jwodder/wheel-filename/commit/11cfa57c8a32fa2a52fb5fe537859997bb642e75.patch"; + hash = "sha256-ssePCVlJuHPJpPyFET3FnnWRlslLnZbnfn42g52yVN4="; + }) + ]; + nativeBuildInputs = [ setuptools + wheel ]; nativeCheckInputs = [ diff --git a/pkgs/development/python-modules/xarray/default.nix b/pkgs/development/python-modules/xarray/default.nix index bf8b03aa0969..45e79fdd89d0 100644 --- a/pkgs/development/python-modules/xarray/default.nix +++ b/pkgs/development/python-modules/xarray/default.nix @@ -6,8 +6,9 @@ , pandas , pytestCheckHook , pythonOlder -, setuptoolsBuildHook +, setuptools , setuptools-scm +, wheel }: buildPythonPackage rec { @@ -22,11 +23,12 @@ buildPythonPackage rec { hash = "sha256-2s4v2/G3/xhdnBImokv4PCrlLzJT2/6A4X0RYmANBVw="; }; - SETUPTOOLS_SCM_PRETEND_VERSION = version; + env.SETUPTOOLS_SCM_PRETEND_VERSION = version; nativeBuildInputs = [ - setuptoolsBuildHook + setuptools setuptools-scm + wheel ]; propagatedBuildInputs = [ diff --git a/pkgs/development/ruby-modules/with-packages/Gemfile b/pkgs/development/ruby-modules/with-packages/Gemfile index 30cd0f6b72b9..ebc5d4c0b8e7 100644 --- a/pkgs/development/ruby-modules/with-packages/Gemfile +++ b/pkgs/development/ruby-modules/with-packages/Gemfile @@ -113,6 +113,7 @@ gem 'pry-byebug' gem 'pry-doc' gem 'public_suffix' gem 'puma' +gem 'pwntools' gem 'rails' gem 'rainbow' # gem 'rbczmq' deprecated diff --git a/pkgs/development/tools/analysis/checkov/default.nix b/pkgs/development/tools/analysis/checkov/default.nix index 1df7e59abc8e..c8ee0e1b657d 100644 --- a/pkgs/development/tools/analysis/checkov/default.nix +++ b/pkgs/development/tools/analysis/checkov/default.nix @@ -22,14 +22,14 @@ with py.pkgs; buildPythonApplication rec { pname = "checkov"; - version = "2.3.360"; + version = "2.3.361"; format = "setuptools"; src = fetchFromGitHub { owner = "bridgecrewio"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-3EyaJiApKm2Kaj1nAfadMyn/qnrx3on2rYQAXc6jG8E="; + hash = "sha256-k357VjGB+mKsKsd+l0S2lMh1f5za5Htlm4AWEVisQss="; }; patches = [ diff --git a/pkgs/development/tools/analysis/rizin/cutter.nix b/pkgs/development/tools/analysis/rizin/cutter.nix index 18ca4e13d843..bb8ecb6e196a 100644 --- a/pkgs/development/tools/analysis/rizin/cutter.nix +++ b/pkgs/development/tools/analysis/rizin/cutter.nix @@ -1,4 +1,6 @@ { fetchFromGitHub, lib, mkDerivation +# for passthru.plugins +, pkgs # nativeBuildInputs , qmake, pkg-config, cmake # Qt @@ -10,7 +12,7 @@ , wrapQtAppsHook }: -mkDerivation rec { +let cutter = mkDerivation rec { pname = "cutter"; version = "2.3.0"; @@ -37,10 +39,24 @@ mkDerivation rec { qtWrapperArgs+=(--prefix PYTHONPATH : "$PYTHONPATH") ''; + passthru = rec { + plugins = rizin.plugins // { + rz-ghidra = rizin.plugins.rz-ghidra.override { + inherit cutter qtbase qtsvg; + enableCutterPlugin = true; + }; + }; + withPlugins = filter: pkgs.callPackage ./wrapper.nix { + unwrapped = cutter; + inherit rizin; + plugins = filter plugins; + }; + }; + meta = with lib; { description = "Free and Open Source Reverse Engineering Platform powered by rizin"; homepage = src.meta.homepage; license = licenses.gpl3; maintainers = with maintainers; [ mic92 dtzWill ]; }; -} +}; in cutter diff --git a/pkgs/development/tools/analysis/rizin/default.nix b/pkgs/development/tools/analysis/rizin/default.nix index df44b8fbbaab..46fe132a463e 100644 --- a/pkgs/development/tools/analysis/rizin/default.nix +++ b/pkgs/development/tools/analysis/rizin/default.nix @@ -1,4 +1,5 @@ { lib +, pkgs # for passthru.plugins , stdenv , fetchurl , pkg-config @@ -22,7 +23,7 @@ , tree-sitter }: -stdenv.mkDerivation rec { +let rizin = stdenv.mkDerivation rec { pname = "rizin"; version = "0.6.0"; @@ -42,8 +43,17 @@ stdenv.mkDerivation rec { "-Duse_sys_openssl=enabled" "-Duse_sys_libmspack=enabled" "-Duse_sys_tree_sitter=enabled" + # this is needed for wrapping (adding plugins) to work + "-Dportable=true" ]; + # Normally, Rizin only looks for files in the install prefix. With + # portable=true, it instead looks for files in relation to the parent + # of the directory of the binary file specified in /proc/self/exe, + # caching it. This patch replaces the entire logic to only look at + # the env var NIX_RZ_PREFIX + patches = [ ./librz-wrapper-support.patch ]; + nativeBuildInputs = [ pkg-config meson @@ -94,6 +104,25 @@ stdenv.mkDerivation rec { --replace "import('python').find_installation()" "find_program('python3')" ''; + passthru = rec { + plugins = { + jsdec = pkgs.callPackage ./jsdec.nix { + inherit rizin openssl; + }; + rz-ghidra = pkgs.libsForQt5.callPackage ./rz-ghidra.nix { + inherit rizin openssl; + enableCutterPlugin = false; + }; + # sigdb isn't a real plugin, but it's separated from the main rizin + # derivation so that only those who need it will download it + sigdb = pkgs.callPackage ./sigdb.nix { }; + }; + withPlugins = filter: pkgs.callPackage ./wrapper.nix { + unwrapped = rizin; + plugins = filter plugins; + }; + }; + meta = { description = "UNIX-like reverse engineering framework and command-line toolset."; homepage = "https://rizin.re/"; @@ -101,4 +130,4 @@ stdenv.mkDerivation rec { maintainers = with lib.maintainers; [ raskin makefu mic92 ]; platforms = with lib.platforms; unix; }; -} +}; in rizin diff --git a/pkgs/development/tools/analysis/rizin/jsdec.nix b/pkgs/development/tools/analysis/rizin/jsdec.nix new file mode 100644 index 000000000000..df291d169eb5 --- /dev/null +++ b/pkgs/development/tools/analysis/rizin/jsdec.nix @@ -0,0 +1,35 @@ +{ lib +, stdenv +, fetchFromGitHub +, meson +, pkg-config +, ninja +, rizin +, openssl +}: + +stdenv.mkDerivation rec { + pname = "jsdec"; + version = "0.6.0"; + + src = fetchFromGitHub { + owner = "rizinorg"; + repo = "jsdec"; + rev = "v${version}"; + hash = "sha256-iVaxxPBIJRhZrmejAOL/Fb4k66mGsZOBs7UikgMj5WA="; + }; + + nativeBuildInputs = [ meson ninja pkg-config ]; + preConfigure = '' + cd p + ''; + mesonFlags = [ "-Djsc_folder=.." ]; + buildInputs = [ openssl rizin ]; + + meta = with lib; { + description = "Simple decompiler for Rizin"; + homepage = src.meta.homepage; + license = with licenses; [ asl20 bsd3 mit ]; + maintainers = with maintainers; [ chayleaf ]; + }; +} diff --git a/pkgs/development/tools/analysis/rizin/librz-wrapper-support.patch b/pkgs/development/tools/analysis/rizin/librz-wrapper-support.patch new file mode 100644 index 000000000000..23df0d22c69a --- /dev/null +++ b/pkgs/development/tools/analysis/rizin/librz-wrapper-support.patch @@ -0,0 +1,13 @@ +diff --git a/librz/util/path.c b/librz/util/path.c +index 8ea3d67..f4a8918 100644 +--- a/librz/util/path.c ++++ b/librz/util/path.c +@@ -35,6 +35,8 @@ static void fini_portable_prefix(void) { + } + + static char *set_portable_prefix(void) { ++ return rz_sys_getenv("NIX_RZ_PREFIX"); ++ + char *pid_to_path = rz_sys_pid_to_path(rz_sys_getpid()); + if (!pid_to_path) { + return NULL; diff --git a/pkgs/development/tools/analysis/rizin/rz-ghidra.nix b/pkgs/development/tools/analysis/rizin/rz-ghidra.nix new file mode 100644 index 000000000000..d349a33af814 --- /dev/null +++ b/pkgs/development/tools/analysis/rizin/rz-ghidra.nix @@ -0,0 +1,62 @@ +{ lib +, stdenv +, fetchFromGitHub +, fetchpatch +, cmake +# buildInputs +, rizin +, openssl +, pugixml +# optional buildInputs +, enableCutterPlugin ? true +, cutter +, qtbase +, qtsvg +}: + +stdenv.mkDerivation rec { + pname = "rz-ghidra"; + version = "0.6.0"; + + src = fetchFromGitHub { + owner = "rizinorg"; + repo = "rz-ghidra"; + rev = "v${version}"; + hash = "sha256-tQAurouRr6fP1tbIkfd0a9UfeYcwiU1BpjOTcooXkT0="; + fetchSubmodules = true; + }; + + patches = [ + (fetchpatch { + url = "https://github.com/rizinorg/rz-ghidra/pull/327/commits/eba20e2c743ed3dfc5d1be090a5018f7267baa49.patch"; + hash = "sha256-aoXFClXZBcOnHl+6lLYrnui7sRb3cRJQhQfNDLxHtcs="; + }) + ]; + + nativeBuildInputs = [ cmake ]; + buildInputs = [ + openssl + pugixml + rizin + ] ++ lib.optionals enableCutterPlugin [ + cutter + qtbase + qtsvg + ]; + + dontWrapQtApps = true; + + cmakeFlags = [ + "-DUSE_SYSTEM_PUGIXML=ON" + ] ++ lib.optionals enableCutterPlugin [ + "-DBUILD_CUTTER_PLUGIN=ON" + "-DCUTTER_INSTALL_PLUGDIR=share/rizin/cutter/plugins/native" + ]; + + meta = with lib; { + description = "Deep ghidra decompiler and sleigh disassembler integration for rizin"; + homepage = src.meta.homepage; + license = licenses.lgpl3; + maintainers = with maintainers; [ chayleaf ]; + }; +} diff --git a/pkgs/development/tools/analysis/rizin/sigdb.nix b/pkgs/development/tools/analysis/rizin/sigdb.nix new file mode 100644 index 000000000000..2c4bdaebbaba --- /dev/null +++ b/pkgs/development/tools/analysis/rizin/sigdb.nix @@ -0,0 +1,36 @@ +{ lib +, fetchFromGitHub +, stdenvNoCC +}: + +stdenvNoCC.mkDerivation rec { + pname = "rizin-sigdb"; + version = "unstable-2023-02-13"; + + src = fetchFromGitHub { + owner = "rizinorg"; + # sigdb-source: source files (.pat and etc), around 2.5gb total + # sigdb: built and deflated .sig files, around 50mb total + repo = "sigdb"; + rev = "829baf835e3515923266898fd597f7f75046ebd2"; + hash = "sha256-zvGna2CEsDctc9P7hWTaz7kdtxAtPsXHNWOrRQ9ocdc="; + }; + + buildPhase = '' + mkdir installdir + cp -r elf pe installdir + .scripts/verify-sigs-install.sh + ''; + + installPhase = '' + mkdir -p $out/share/rizin + mv installdir $out/share/rizin/sigdb + ''; + + meta = with lib; { + description = "Rizin FLIRT Signature Database"; + homepage = src.meta.homepage; + license = licenses.lgpl3; + maintainers = with lib.maintainers; [ chayleaf ]; + }; +} diff --git a/pkgs/development/tools/analysis/rizin/wrapper.nix b/pkgs/development/tools/analysis/rizin/wrapper.nix new file mode 100644 index 000000000000..5ddee52f2324 --- /dev/null +++ b/pkgs/development/tools/analysis/rizin/wrapper.nix @@ -0,0 +1,46 @@ +{ lib +, makeWrapper +, symlinkJoin +, unwrapped +, plugins +# NIX_RZ_PREFIX only changes where *Rizin* locates files (plugins, +# themes, etc). But we must change it even for wrapping Cutter, because +# Cutter plugins often have associated Rizin plugins. This means that +# NIX_RZ_PREFIX must always contain Rizin files, even if we only wrap +# Cutter - so for Cutter, include Rizin to symlinkJoin paths. +, rizin ? null +}: + +symlinkJoin { + name = "${unwrapped.pname}-with-plugins-${unwrapped.version}"; + + paths = [ unwrapped ] ++ lib.optional (rizin != null) rizin ++ plugins; + + nativeBuildInputs = [ makeWrapper ]; + + passthru = { + inherit unwrapped; + }; + + postBuild = '' + rm $out/bin/* + wrapperArgs=(--set NIX_RZ_PREFIX $out) + if [ -d $out/share/rizin/cutter ]; then + wrapperArgs+=(--prefix XDG_DATA_DIRS : $out/share) + fi + for binary in $(ls ${unwrapped}/bin); do + makeWrapper ${unwrapped}/bin/$binary $out/bin/$binary "''${wrapperArgs[@]}" + done + ${lib.optionalString (rizin != null) '' + for binary in $(ls ${rizin}/bin); do + makeWrapper ${rizin}/bin/$binary $out/bin/$binary "''${wrapperArgs[@]}" + done + ''} + ''; + + meta = unwrapped.meta // { + # prefer wrapped over unwrapped, prefer cutter wrapper over rizin wrapper + # (because cutter versions of plugins also contain rizin plugins) + priority = (unwrapped.meta.priority or 0) - (if rizin != null then 2 else 1); + }; +} diff --git a/pkgs/development/tools/bundletool/default.nix b/pkgs/development/tools/bundletool/default.nix index 5e54b8e8a995..6ee77fdec355 100644 --- a/pkgs/development/tools/bundletool/default.nix +++ b/pkgs/development/tools/bundletool/default.nix @@ -2,11 +2,11 @@ stdenvNoCC.mkDerivation rec { pname = "bundletool"; - version = "1.15.2"; + version = "1.15.4"; src = fetchurl { url = "https://github.com/google/bundletool/releases/download/${version}/bundletool-all-${version}.jar"; - sha256 = "sha256-lmMVIZUq0GTMJVSotA2lFxirAKZz8wrwGkkUR9ZP/dA="; + sha256 = "sha256-5fVFl9u1IR8FDo3dA9TXMam036VoTHaHkotlSo3cISo="; }; dontUnpack = true; @@ -23,6 +23,7 @@ stdenvNoCC.mkDerivation rec { description = "Command-line tool to manipulate Android App Bundles"; homepage = "https://developer.android.com/studio/command-line/bundletool"; changelog = "https://github.com/google/bundletool/releases/tag/${version}"; + sourceProvenance = with sourceTypes; [ binaryBytecode ]; maintainers = with maintainers; [ marsam ]; platforms = jre_headless.meta.platforms; license = licenses.asl20; diff --git a/pkgs/development/tools/ceedling/Gemfile b/pkgs/development/tools/ceedling/Gemfile new file mode 100644 index 000000000000..01d6e98e76aa --- /dev/null +++ b/pkgs/development/tools/ceedling/Gemfile @@ -0,0 +1,2 @@ +source 'https://rubygems.org' +gem 'ceedling' diff --git a/pkgs/development/tools/ceedling/Gemfile.lock b/pkgs/development/tools/ceedling/Gemfile.lock new file mode 100644 index 000000000000..2709a0edab5f --- /dev/null +++ b/pkgs/development/tools/ceedling/Gemfile.lock @@ -0,0 +1,21 @@ +GEM + remote: https://rubygems.org/ + specs: + ceedling (0.31.1) + constructor (~> 2) + deep_merge (~> 1.2) + rake (>= 12, < 14) + thor (~> 0.14) + constructor (2.0.0) + deep_merge (1.2.2) + rake (13.0.6) + thor (0.20.3) + +PLATFORMS + x86_64-linux + +DEPENDENCIES + ceedling + +BUNDLED WITH + 2.4.17 diff --git a/pkgs/development/tools/ceedling/default.nix b/pkgs/development/tools/ceedling/default.nix new file mode 100644 index 000000000000..5910b47b7424 --- /dev/null +++ b/pkgs/development/tools/ceedling/default.nix @@ -0,0 +1,16 @@ +{ lib +, bundlerApp +}: + +bundlerApp { + pname = "ceedling"; + gemdir = ./.; + exes = [ "ceedling" ]; + + meta = with lib; { + description = "A build system for C projects that is something of an extension around Ruby's Rake"; + homepage = "http://www.throwtheswitch.org/ceedling"; + license = licenses.mit; + platforms = platforms.unix; + }; +} diff --git a/pkgs/development/tools/ceedling/gemset.nix b/pkgs/development/tools/ceedling/gemset.nix new file mode 100644 index 000000000000..e094c7dd4d67 --- /dev/null +++ b/pkgs/development/tools/ceedling/gemset.nix @@ -0,0 +1,53 @@ +{ + ceedling = { + dependencies = ["constructor" "deep_merge" "rake" "thor"]; + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1jjvz14dg85v8c4raxvk618rq7f6kyna5148901xciz2zjpm3bri"; + type = "gem"; + }; + version = "0.31.1"; + }; + constructor = { + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "02qmp08kcvi5dkz3lxm5yck9msfwfx1msvrrz9d6z4klc14q889y"; + type = "gem"; + }; + version = "2.0.0"; + }; + deep_merge = { + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0fjn4civid68a3zxnbgyjj6krs3l30dy8b4djpg6fpzrsyix7kl3"; + type = "gem"; + }; + version = "1.2.2"; + }; + rake = { + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "15whn7p9nrkxangbs9hh75q585yfn66lv0v2mhj6q6dl6x8bzr2w"; + type = "gem"; + }; + version = "13.0.6"; + }; + thor = { + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1yhrnp9x8qcy5vc7g438amd5j9sw83ih7c30dr6g6slgw9zj3g29"; + type = "gem"; + }; + version = "0.20.3"; + }; +} diff --git a/pkgs/development/tools/golangci-lint/default.nix b/pkgs/development/tools/golangci-lint/default.nix index cd31dbd7a3a1..09c59eccb8f9 100644 --- a/pkgs/development/tools/golangci-lint/default.nix +++ b/pkgs/development/tools/golangci-lint/default.nix @@ -2,16 +2,16 @@ buildGoModule rec { pname = "golangci-lint"; - version = "1.54.0"; + version = "1.54.1"; src = fetchFromGitHub { owner = "golangci"; repo = "golangci-lint"; rev = "v${version}"; - hash = "sha256-UXN5gN1SNv3uvBCliJQ+5PSGHRL7RyU6pmZtGUTFsrQ="; + hash = "sha256-Dymo/ABlDh8JwaTMTQgsWARuAkqHbakyUzujTgtMTyQ="; }; - vendorHash = "sha256-jUlK/A0HxBrIby2C0zYFtnxQX1bgKVyypI3QdH4u/rg="; + vendorHash = "sha256-rMektYjs8laN9ykc3bcYOgJ9twnjKl1gIEEL/wPkhfE="; subPackages = [ "cmd/golangci-lint" ]; diff --git a/pkgs/development/tools/java/jprofiler/default.nix b/pkgs/development/tools/java/jprofiler/default.nix index 2044771fa9b3..3a74e491f0e5 100644 --- a/pkgs/development/tools/java/jprofiler/default.nix +++ b/pkgs/development/tools/java/jprofiler/default.nix @@ -86,7 +86,7 @@ let runHook postUnpack ''; - sourceRoot = "${nameApp}"; + sourceRoot = nameApp; installPhase = '' runHook preInstall diff --git a/pkgs/development/tools/language-servers/typst-lsp/Cargo.lock b/pkgs/development/tools/language-servers/typst-lsp/Cargo.lock index f4ccfe90d70a..ababbc9b3753 100644 --- a/pkgs/development/tools/language-servers/typst-lsp/Cargo.lock +++ b/pkgs/development/tools/language-servers/typst-lsp/Cargo.lock @@ -18,10 +18,21 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" [[package]] -name = "aho-corasick" -version = "1.0.2" +name = "ahash" +version = "0.7.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "43f6cb1bf222025340178f382c426f13757b2960e89779dfcb319c32542a5a41" +checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47" +dependencies = [ + "getrandom", + "once_cell", + "version_check", +] + +[[package]] +name = "aho-corasick" +version = "1.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "86b8f9420f797f2d9e935edf629310eb938a0d839f984e25327f3c7eed22300c" dependencies = [ "memchr", ] @@ -70,6 +81,19 @@ dependencies = [ "futures-core", ] +[[package]] +name = "async-compression" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "62b74f44609f0f91493e3082d3734d98497e094777144380ea4db9f9905dd5b6" +dependencies = [ + "flate2", + "futures-core", + "memchr", + "pin-project-lite", + "tokio", +] + [[package]] name = "async-trait" version = "0.1.72" @@ -78,7 +102,7 @@ checksum = "cc6dde6e4ed435a4c1ee4e73592f5ba9da2151af10076cc04858746af9352d09" dependencies = [ "proc-macro2", "quote", - "syn 2.0.27", + "syn 2.0.28", ] [[package]] @@ -135,7 +159,7 @@ dependencies = [ "chrono", "numerals", "paste", - "strum", + "strum 0.24.1", "unicode-normalization", "unscanny", ] @@ -164,12 +188,6 @@ version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb" -[[package]] -name = "bit_field" -version = "0.10.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dc827186963e592360843fb5ba4b973e145841266c1357f7180c43526f2e5b61" - [[package]] name = "bitflags" version = "1.3.2" @@ -185,6 +203,16 @@ dependencies = [ "serde", ] +[[package]] +name = "bpaf" +version = "0.9.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c359c5e742f51d3238e83af24b289903591fbce38990eb9fcc903c7f8d5d95f9" +dependencies = [ + "owo-colors", + "supports-color", +] + [[package]] name = "bumpalo" version = "3.13.0" @@ -217,9 +245,12 @@ checksum = "a2698f953def977c68f935bb0dfa959375ad4638570e969e2f1e9f433cbf1af6" [[package]] name = "cc" -version = "1.0.79" +version = "1.0.82" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f" +checksum = "305fe645edc1442a0fa8b6726ba61d422798d37a52e12eaecf4b022ebbb88f01" +dependencies = [ + "libc", +] [[package]] name = "cfg-if" @@ -299,6 +330,16 @@ dependencies = [ "crossbeam-utils", ] +[[package]] +name = "core-foundation" +version = "0.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146" +dependencies = [ + "core-foundation-sys", + "libc", +] + [[package]] name = "core-foundation-sys" version = "0.8.4" @@ -324,30 +365,6 @@ dependencies = [ "crossbeam-utils", ] -[[package]] -name = "crossbeam-deque" -version = "0.8.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef" -dependencies = [ - "cfg-if", - "crossbeam-epoch", - "crossbeam-utils", -] - -[[package]] -name = "crossbeam-epoch" -version = "0.9.15" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ae211234986c545741a7dc064309f67ee1e5ad243d0e48335adc0484d960bcc7" -dependencies = [ - "autocfg", - "cfg-if", - "crossbeam-utils", - "memoffset", - "scopeguard", -] - [[package]] name = "crossbeam-utils" version = "0.8.16" @@ -357,12 +374,6 @@ dependencies = [ "cfg-if", ] -[[package]] -name = "crunchy" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" - [[package]] name = "csv" version = "1.2.2" @@ -395,15 +406,15 @@ dependencies = [ "openssl-probe", "openssl-sys", "schannel", - "socket2", + "socket2 0.4.9", "winapi", ] [[package]] name = "curl-sys" -version = "0.4.64+curl-8.2.0" +version = "0.4.65+curl-8.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f96069f0b1cb1241c838740659a771ef143363f52772a9ce1bd9c04c75eee0dc" +checksum = "961ba061c9ef2fe34bbd12b807152d96f0badd2bebe7b90ce6c8c8b7572a0986" dependencies = [ "cc", "libc", @@ -433,6 +444,12 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8d7439c3735f405729d52c3fbbe4de140eaf938a1fe47d227c27f8254d4302a5" +[[package]] +name = "deranged" +version = "0.3.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7684a49fb1af197853ef7b2ee694bc1f5b4179556f1e5710e1760c5db6f5e929" + [[package]] name = "dirs" version = "5.0.1" @@ -462,7 +479,7 @@ checksum = "487585f4d0c6655fe74905e2504d8ad6908e4db67f744eb140876906c2f3175d" dependencies = [ "proc-macro2", "quote", - "syn 2.0.27", + "syn 2.0.28", ] [[package]] @@ -470,6 +487,9 @@ name = "ecow" version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c5c5051925c54d9a42c8652313b5358a7432eed209466b443ed5220431243a14" +dependencies = [ + "serde", +] [[package]] name = "either" @@ -479,12 +499,22 @@ checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" [[package]] name = "elsa" -version = "1.8.1" -source = "git+https://github.com/nvarner/elsa.git#1b7eb00c782c92b106379696d72aee581b53326a" +version = "1.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "714f766f3556b44e7e4776ad133fcc3445a489517c25c704ace411bb14790194" dependencies = [ "stable_deref_trait", ] +[[package]] +name = "encoding_rs" +version = "0.8.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394" +dependencies = [ + "cfg-if", +] + [[package]] name = "enum-ordinalize" version = "3.1.13" @@ -495,7 +525,7 @@ dependencies = [ "num-traits", "proc-macro2", "quote", - "syn 2.0.27", + "syn 2.0.28", ] [[package]] @@ -504,33 +534,38 @@ version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" +[[package]] +name = "errno" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6b30f669a7961ef1631673d2766cc92f52d64f7ef354d4fe0ddfd30ed52f0f4f" +dependencies = [ + "errno-dragonfly", + "libc", + "windows-sys", +] + +[[package]] +name = "errno-dragonfly" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" +dependencies = [ + "cc", + "libc", +] + [[package]] name = "event-listener" version = "2.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" -[[package]] -name = "exr" -version = "1.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d1e481eb11a482815d3e9d618db8c42a93207134662873809335a92327440c18" -dependencies = [ - "bit_field", - "flume", - "half", - "lebe", - "miniz_oxide", - "rayon-core", - "smallvec", - "zune-inflate", -] - [[package]] name = "fancy-regex" -version = "0.7.1" +version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9d6b8560a05112eb52f04b00e5d3790c0dd75d9d980eb8a122fb23b92a623ccf" +checksum = "b95f7c0680e4142284cf8b22c14a476e87d61b004a3a0861872b32ef7ead40a2" dependencies = [ "bit-set", "regex", @@ -545,6 +580,12 @@ dependencies = [ "instant", ] +[[package]] +name = "fastrand" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6999dc1837253364c2ebb0704ba97994bd874e8f195d665c50b7548f6ea92764" + [[package]] name = "fdeflate" version = "0.3.0" @@ -554,6 +595,18 @@ dependencies = [ "simd-adler32", ] +[[package]] +name = "filetime" +version = "0.2.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d4029edd3e734da6fe05b6cd7bd2960760a616bd2ddd0d59a0124746d6272af0" +dependencies = [ + "cfg-if", + "libc", + "redox_syscall 0.3.5", + "windows-sys", +] + [[package]] name = "flate2" version = "1.0.26" @@ -570,19 +623,6 @@ version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4" -[[package]] -name = "flume" -version = "0.10.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1657b4441c3403d9f7b3409e47575237dac27b1b5726df654a6ecbf92f0f7577" -dependencies = [ - "futures-core", - "futures-sink", - "nanorand", - "pin-project", - "spin", -] - [[package]] name = "fnv" version = "1.0.7" @@ -601,6 +641,21 @@ dependencies = [ "ttf-parser", ] +[[package]] +name = "foreign-types" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" +dependencies = [ + "foreign-types-shared", +] + +[[package]] +name = "foreign-types-shared" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" + [[package]] name = "form_urlencoded" version = "1.2.0" @@ -664,7 +719,7 @@ version = "1.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce" dependencies = [ - "fastrand", + "fastrand 1.9.0", "futures-core", "futures-io", "memchr", @@ -681,7 +736,7 @@ checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72" dependencies = [ "proc-macro2", "quote", - "syn 2.0.27", + "syn 2.0.28", ] [[package]] @@ -721,10 +776,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427" dependencies = [ "cfg-if", - "js-sys", "libc", "wasi", - "wasm-bindgen", ] [[package]] @@ -744,12 +797,22 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b6c80984affa11d98d1b88b66ac8853f143217b399d3c74116778ff8fdb4ed2e" [[package]] -name = "half" -version = "2.2.1" +name = "h2" +version = "0.3.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "02b4af3693f1b705df946e9fe5631932443781d0aabb423b62fcd4d73f6d2fd0" +checksum = "97ec8491ebaf99c8eaa73058b045fe58073cd6be7f596ac993ced0b0a0c01049" dependencies = [ - "crunchy", + "bytes", + "fnv", + "futures-core", + "futures-sink", + "futures-util", + "http", + "indexmap 1.9.3", + "slab", + "tokio", + "tokio-util", + "tracing", ] [[package]] @@ -757,6 +820,9 @@ name = "hashbrown" version = "0.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" +dependencies = [ + "ahash", +] [[package]] name = "hashbrown" @@ -777,7 +843,7 @@ dependencies = [ "linked-hash-map", "paste", "regex", - "strum", + "strum 0.24.1", "thiserror", "unic-langid", "unicode-segmentation", @@ -808,6 +874,17 @@ dependencies = [ "itoa", ] +[[package]] +name = "http-body" +version = "0.4.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" +dependencies = [ + "bytes", + "http", + "pin-project-lite", +] + [[package]] name = "httparse" version = "1.8.0" @@ -815,10 +892,67 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" [[package]] -name = "hypher" -version = "0.1.1" +name = "httpdate" +version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f0cf92443ef10ecfc1b8b4b65a93e31d983f020a355699d83874b12a7c797ac3" +checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421" + +[[package]] +name = "hyper" +version = "0.14.27" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468" +dependencies = [ + "bytes", + "futures-channel", + "futures-core", + "futures-util", + "h2", + "http", + "http-body", + "httparse", + "httpdate", + "itoa", + "pin-project-lite", + "socket2 0.4.9", + "tokio", + "tower-service", + "tracing", + "want", +] + +[[package]] +name = "hyper-rustls" +version = "0.24.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8d78e1e73ec14cf7375674f74d7dde185c8206fd9dea6fb6295e8a98098aaa97" +dependencies = [ + "futures-util", + "http", + "hyper", + "rustls", + "tokio", + "tokio-rustls", +] + +[[package]] +name = "hyper-tls" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905" +dependencies = [ + "bytes", + "hyper", + "native-tls", + "tokio", + "tokio-native-tls", +] + +[[package]] +name = "hypher" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "927f74d31cdbfd8de201340c0bc474c52c9145193ccd8885fcede14005591aad" [[package]] name = "iana-time-zone" @@ -973,21 +1107,18 @@ checksum = "cb56e1aa765b4b4f3aadfab769793b7087bb03a4ea4920644a6d238e2df5b9ed" [[package]] name = "image" -version = "0.24.6" +version = "0.24.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "527909aa81e20ac3a44803521443a765550f09b5130c2c2fa1ea59c2f8f50a3a" +checksum = "6f3dfdbdd72063086ff443e297b61695500514b1e41095b6fb9a5ab48a70a711" dependencies = [ "bytemuck", "byteorder", "color_quant", - "exr", "gif", "jpeg-decoder", "num-rational", "num-traits", "png", - "qoi", - "tiff", ] [[package]] @@ -1031,6 +1162,39 @@ version = "3.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8bb03732005da905c88227371639bf1ad885cc712789c011c31c5fb3ab3ccf02" +[[package]] +name = "internment" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "161079c3ad892faa215fcfcf3fd7a6a3c9288df2b06a2c2bad7fbfad4f01d69d" +dependencies = [ + "hashbrown 0.12.3", + "parking_lot", +] + +[[package]] +name = "ipnet" +version = "2.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "28b29a3cd74f0f4598934efe3aeba42bae0eb4680554128851ebbecb02af14e6" + +[[package]] +name = "is-terminal" +version = "0.4.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b" +dependencies = [ + "hermit-abi", + "rustix", + "windows-sys", +] + +[[package]] +name = "is_ci" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "616cde7c720bb2bb5824a224687d8f77bfd38922027f01d825cd7453be5099fb" + [[package]] name = "isahc" version = "1.7.2" @@ -1067,9 +1231,9 @@ dependencies = [ [[package]] name = "itertools" -version = "0.10.5" +version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" +checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57" dependencies = [ "either", ] @@ -1085,9 +1249,6 @@ name = "jpeg-decoder" version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bc0000e42512c92e31c2252315bda326620a4e034105e900c98ec492fa077b3e" -dependencies = [ - "rayon", -] [[package]] name = "js-sys" @@ -1113,12 +1274,6 @@ version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" -[[package]] -name = "lebe" -version = "0.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "03087c2bad5e1034e8cace5926dec053fb3790248370865f5117a7d0213354c8" - [[package]] name = "libc" version = "0.2.147" @@ -1133,9 +1288,9 @@ checksum = "f7012b1bbb0719e1097c47611d3898568c546d597c2e74d66f6087edd5233ff4" [[package]] name = "libz-sys" -version = "1.1.11" +version = "1.1.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "121f7402cc6ab5821dad08d1b9d11618a9ea4da992343909fecf8e430e86364c" +checksum = "d97137b25e321a73eef1418d1d5d2eda4d77e12813f8e6dead84bc52c5870a7b" dependencies = [ "cc", "libc", @@ -1149,6 +1304,12 @@ version = "0.5.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" +[[package]] +name = "linux-raw-sys" +version = "0.4.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "57bcfdad1b858c2db7c38303a6d2ad4dfaf5eb53dfeb0910128b2c26d6158503" + [[package]] name = "lipsum" version = "0.9.0" @@ -1183,9 +1344,9 @@ checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4" [[package]] name = "lsp-types" -version = "0.94.0" +version = "0.94.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b63735a13a1f9cd4f4835223d828ed9c2e35c8c5e61837774399f558b6a1237" +checksum = "c66bfd44a06ae10647fe3f8214762e9369fd4248df1350924b4ef9e770a85ea1" dependencies = [ "bitflags 1.3.2", "serde", @@ -1219,13 +1380,10 @@ dependencies = [ ] [[package]] -name = "memoffset" -version = "0.9.0" +name = "mime" +version = "0.3.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c" -dependencies = [ - "autocfg", -] +checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" [[package]] name = "miniz_oxide" @@ -1249,12 +1407,21 @@ dependencies = [ ] [[package]] -name = "nanorand" -version = "0.7.0" +name = "native-tls" +version = "0.2.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6a51313c5820b0b02bd422f4b44776fbf47961755c74ce64afc73bfad10226c3" +checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e" dependencies = [ - "getrandom", + "lazy_static", + "libc", + "log", + "openssl", + "openssl-probe", + "openssl-sys", + "schannel", + "security-framework", + "security-framework-sys", + "tempfile", ] [[package]] @@ -1330,6 +1497,32 @@ version = "1.18.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" +[[package]] +name = "openssl" +version = "0.10.56" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "729b745ad4a5575dd06a3e1af1414bd330ee561c01b3899eb584baeaa8def17e" +dependencies = [ + "bitflags 1.3.2", + "cfg-if", + "foreign-types", + "libc", + "once_cell", + "openssl-macros", + "openssl-sys", +] + +[[package]] +name = "openssl-macros" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.28", +] + [[package]] name = "openssl-probe" version = "0.1.5" @@ -1338,9 +1531,9 @@ checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" [[package]] name = "openssl-sys" -version = "0.9.90" +version = "0.9.91" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "374533b0e45f3a7ced10fcaeccca020e66656bc03dac384f852e4e5a7a8104a6" +checksum = "866b5f16f90776b9bb8dc1e1802ac6f0513de3a7a7465867bfbc563dc737faac" dependencies = [ "cc", "libc", @@ -1350,9 +1543,9 @@ dependencies = [ [[package]] name = "opentelemetry" -version = "0.19.0" +version = "0.20.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f4b8347cc26099d3aeee044065ecc3ae11469796b4d65d065a23a584ed92a6f" +checksum = "9591d937bc0e6d2feb6f71a559540ab300ea49955229c347a517a28d27784c54" dependencies = [ "opentelemetry_api", "opentelemetry_sdk", @@ -1360,9 +1553,9 @@ dependencies = [ [[package]] name = "opentelemetry-http" -version = "0.8.0" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a819b71d6530c4297b49b3cae2939ab3a8cc1b9f382826a1bc29dd0ca3864906" +checksum = "c7594ec0e11d8e33faf03530a4c49af7064ebba81c1480e01be67d90b356508b" dependencies = [ "async-trait", "bytes", @@ -1373,43 +1566,41 @@ dependencies = [ [[package]] name = "opentelemetry-jaeger" -version = "0.18.0" +version = "0.19.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08e028dc9f4f304e9320ce38c80e7cf74067415b1ad5a8750a38bae54a4d450d" +checksum = "876958ba9084f390f913fcf04ddf7bbbb822898867bb0a51cc28f2b9e5c1b515" dependencies = [ "async-trait", - "futures", - "futures-executor", + "futures-core", + "futures-util", "http", "isahc", - "once_cell", "opentelemetry", "opentelemetry-http", "opentelemetry-semantic-conventions", - "thiserror", "thrift", "tokio", ] [[package]] name = "opentelemetry-semantic-conventions" -version = "0.11.0" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "24e33428e6bf08c6f7fcea4ddb8e358fab0fe48ab877a87c70c6ebe20f673ce5" +checksum = "73c9f9340ad135068800e7f1b24e9e09ed9e7143f5bf8518ded3d3ec69789269" dependencies = [ "opentelemetry", ] [[package]] name = "opentelemetry_api" -version = "0.19.0" +version = "0.20.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ed41783a5bf567688eb38372f2b7a8530f5a607a4b49d38dd7573236c23ca7e2" +checksum = "8a81f725323db1b1206ca3da8bb19874bbd3f57c3bcd59471bfb04525b265b9b" dependencies = [ - "fnv", "futures-channel", "futures-util", "indexmap 1.9.3", + "js-sys", "once_cell", "pin-project-lite", "thiserror", @@ -1418,21 +1609,21 @@ dependencies = [ [[package]] name = "opentelemetry_sdk" -version = "0.19.0" +version = "0.20.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b3a2a91fdbfdd4d212c0dcc2ab540de2c2bcbbd90be17de7a7daf8822d010c1" +checksum = "fa8e705a0612d48139799fcbaba0d4a90f06277153e43dd2bdc16c6f0edd8026" dependencies = [ "async-trait", "crossbeam-channel", - "dashmap", - "fnv", "futures-channel", "futures-executor", "futures-util", "once_cell", "opentelemetry_api", + "ordered-float 3.7.0", "percent-encoding", "rand", + "regex", "thiserror", "tokio", "tokio-stream", @@ -1453,6 +1644,21 @@ dependencies = [ "num-traits", ] +[[package]] +name = "ordered-float" +version = "3.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2fc2dbde8f8a79f2102cc474ceb0ad68e3b80b85289ea62389b60e66777e4213" +dependencies = [ + "num-traits", +] + +[[package]] +name = "owo-colors" +version = "3.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c1b04fb49957986fdce4d6ee7a65027d55d4b6d2265e5848bbb507b58ccfdb6f" + [[package]] name = "parking" version = "2.1.0" @@ -1531,29 +1737,29 @@ checksum = "5be167a7af36ee22fe3115051bc51f6e6c7054c9348e28deb4f49bd6f705a315" [[package]] name = "pin-project" -version = "1.1.2" +version = "1.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "030ad2bc4db10a8944cb0d837f158bdfec4d4a4873ab701a95046770d11f8842" +checksum = "fda4ed1c6c173e3fc7a83629421152e01d7b1f9b7f65fb301e490e8cfc656422" dependencies = [ "pin-project-internal", ] [[package]] name = "pin-project-internal" -version = "1.1.2" +version = "1.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ec2e072ecce94ec471b13398d5402c188e76ac03cf74dd1a975161b23a3f6d9c" +checksum = "4359fd9c9171ec6e8c62926d6faaf553a8dc3f64e1507e76da7911b4f6a04405" dependencies = [ "proc-macro2", "quote", - "syn 2.0.27", + "syn 2.0.28", ] [[package]] name = "pin-project-lite" -version = "0.2.10" +version = "0.2.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4c40d25201921e5ff0c862a505c6557ea88568a4e3ace775ab55e93f2f4f9d57" +checksum = "12cc1b0bf1727a77a54b6654e7b5f1af8604923edc8b81885f8ec92f9e3f0a05" [[package]] name = "pin-utils" @@ -1663,15 +1869,6 @@ dependencies = [ "cc", ] -[[package]] -name = "qoi" -version = "0.4.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f6d64c71eb498fe9eae14ce4ec935c555749aef511cca85b5568910d6e48001" -dependencies = [ - "bytemuck", -] - [[package]] name = "quote" version = "1.0.32" @@ -1711,28 +1908,6 @@ dependencies = [ "getrandom", ] -[[package]] -name = "rayon" -version = "1.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1d2df5196e37bcc87abebc0053e20787d73847bb33134a69841207dd0a47f03b" -dependencies = [ - "either", - "rayon-core", -] - -[[package]] -name = "rayon-core" -version = "1.11.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d" -dependencies = [ - "crossbeam-channel", - "crossbeam-deque", - "crossbeam-utils", - "num_cpus", -] - [[package]] name = "rctree" version = "0.5.0" @@ -1770,39 +1945,77 @@ dependencies = [ [[package]] name = "regex" -version = "1.9.1" +version = "1.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b2eae68fc220f7cf2532e4494aded17545fce192d59cd996e0fe7887f4ceb575" +checksum = "81bc1d4caf89fac26a70747fe603c130093b53c773888797a6329091246d651a" dependencies = [ "aho-corasick", "memchr", "regex-automata", - "regex-syntax 0.7.4", + "regex-syntax", ] [[package]] name = "regex-automata" -version = "0.3.3" +version = "0.3.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "39354c10dd07468c2e73926b23bb9c2caca74c5501e38a35da70406f1d923310" +checksum = "fed1ceff11a1dddaee50c9dc8e4938bd106e9d89ae372f192311e7da498e3b69" dependencies = [ "aho-corasick", "memchr", - "regex-syntax 0.7.4", + "regex-syntax", ] -[[package]] -name = "regex-syntax" -version = "0.6.29" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" - [[package]] name = "regex-syntax" version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e5ea92a5b6195c6ef2a0295ea818b312502c6fc94dde986c5553242e18fd4ce2" +[[package]] +name = "reqwest" +version = "0.11.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cde824a14b7c14f85caff81225f411faacc04a2013f41670f41443742b1c1c55" +dependencies = [ + "base64", + "bytes", + "encoding_rs", + "futures-core", + "futures-util", + "h2", + "http", + "http-body", + "hyper", + "hyper-rustls", + "hyper-tls", + "ipnet", + "js-sys", + "log", + "mime", + "native-tls", + "once_cell", + "percent-encoding", + "pin-project-lite", + "rustls", + "rustls-pemfile", + "serde", + "serde_json", + "serde_urlencoded", + "tokio", + "tokio-native-tls", + "tokio-rustls", + "tokio-util", + "tower-service", + "url", + "wasm-bindgen", + "wasm-bindgen-futures", + "wasm-streams", + "web-sys", + "webpki-roots", + "winreg", +] + [[package]] name = "resvg" version = "0.32.0" @@ -1826,6 +2039,21 @@ dependencies = [ "bytemuck", ] +[[package]] +name = "ring" +version = "0.16.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc" +dependencies = [ + "cc", + "libc", + "once_cell", + "spin", + "untrusted", + "web-sys", + "winapi", +] + [[package]] name = "rosvgtree" version = "0.3.0" @@ -1854,6 +2082,50 @@ version = "0.1.23" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" +[[package]] +name = "rustix" +version = "0.38.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "19ed4fa021d81c8392ce04db050a3da9a60299050b7ae1cf482d862b54a7218f" +dependencies = [ + "bitflags 2.3.3", + "errno", + "libc", + "linux-raw-sys", + "windows-sys", +] + +[[package]] +name = "rustls" +version = "0.21.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d1feddffcfcc0b33f5c6ce9a29e341e4cd59c3f78e7ee45f4a40c038b1d6cbb" +dependencies = [ + "log", + "ring", + "rustls-webpki", + "sct", +] + +[[package]] +name = "rustls-pemfile" +version = "1.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2d3987094b1d07b653b7dfdc3f70ce9a1da9c51ac18c1b06b662e4f9a0e9f4b2" +dependencies = [ + "base64", +] + +[[package]] +name = "rustls-webpki" +version = "0.101.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "261e9e0888cba427c3316e6322805653c9425240b6fd96cee7cb671ab70ab8d0" +dependencies = [ + "ring", + "untrusted", +] + [[package]] name = "rustversion" version = "1.0.14" @@ -1907,30 +2179,63 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" [[package]] -name = "serde" -version = "1.0.175" +name = "sct" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5d25439cd7397d044e2748a6fe2432b5e85db703d6d097bd014b3c0ad1ebff0b" +checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4" +dependencies = [ + "ring", + "untrusted", +] + +[[package]] +name = "security-framework" +version = "2.9.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "05b64fb303737d99b81884b2c63433e9ae28abebe5eb5045dcdd175dc2ecf4de" +dependencies = [ + "bitflags 1.3.2", + "core-foundation", + "core-foundation-sys", + "libc", + "security-framework-sys", +] + +[[package]] +name = "security-framework-sys" +version = "2.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e932934257d3b408ed8f30db49d85ea163bfe74961f017f405b025af298f0c7a" +dependencies = [ + "core-foundation-sys", + "libc", +] + +[[package]] +name = "serde" +version = "1.0.183" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32ac8da02677876d532745a130fc9d8e6edfa81a269b107c5b00829b91d8eb3c" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.175" +version = "1.0.183" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b23f7ade6f110613c0d63858ddb8b94c1041f550eab58a16b371bdf2c9c80ab4" +checksum = "aafe972d60b0b9bee71a91b92fee2d4fb3c9d7e8f6b179aa99f27203d99a4816" dependencies = [ "proc-macro2", "quote", - "syn 2.0.27", + "syn 2.0.28", ] [[package]] name = "serde_json" -version = "1.0.103" +version = "1.0.104" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d03b412469450d4404fe8499a268edd7f8b79fecb074b0d812ad64ca21f4031b" +checksum = "076066c5f1078eac5b722a31827a8832fe108bed65dfa75e233c89f8206e976c" dependencies = [ "itoa", "ryu", @@ -1939,13 +2244,13 @@ dependencies = [ [[package]] name = "serde_repr" -version = "0.1.15" +version = "0.1.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e168eaaf71e8f9bd6037feb05190485708e019f4fd87d161b3c0a0d37daf85e5" +checksum = "8725e1dfadb3a50f7e5ce0b1a540466f6ed3fe7a0fca2ac2b8b831d31316bd00" dependencies = [ "proc-macro2", "quote", - "syn 2.0.27", + "syn 2.0.28", ] [[package]] @@ -1957,6 +2262,18 @@ dependencies = [ "serde", ] +[[package]] +name = "serde_urlencoded" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" +dependencies = [ + "form_urlencoded", + "itoa", + "ryu", + "serde", +] + [[package]] name = "serde_yaml" version = "0.8.26" @@ -2045,14 +2362,21 @@ dependencies = [ ] [[package]] -name = "spin" -version = "0.9.8" +name = "socket2" +version = "0.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" +checksum = "2538b18701741680e0322a2302176d3253a35388e2e62f172f64f4f16605f877" dependencies = [ - "lock_api", + "libc", + "windows-sys", ] +[[package]] +name = "spin" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" + [[package]] name = "stable_deref_trait" version = "1.2.0" @@ -2087,7 +2411,16 @@ version = "0.24.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "063e6045c0e62079840579a7e47a355ae92f60eb74daaf156fb1e84ba164e63f" dependencies = [ - "strum_macros", + "strum_macros 0.24.3", +] + +[[package]] +name = "strum" +version = "0.25.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125" +dependencies = [ + "strum_macros 0.25.2", ] [[package]] @@ -2103,16 +2436,39 @@ dependencies = [ "syn 1.0.109", ] +[[package]] +name = "strum_macros" +version = "0.25.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ad8d03b598d3d0fff69bf533ee3ef19b8eeb342729596df84bcc7e1f96ec4059" +dependencies = [ + "heck", + "proc-macro2", + "quote", + "rustversion", + "syn 2.0.28", +] + [[package]] name = "subsetter" version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "09eab8a83bff89ba2200bd4c59be45c7c787f988431b936099a5a266c957f2f9" +[[package]] +name = "supports-color" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4950e7174bffabe99455511c39707310e7e9b440364a2fcb1cc21521be57b354" +dependencies = [ + "is-terminal", + "is_ci", +] + [[package]] name = "svg2pdf" version = "0.5.0" -source = "git+https://github.com/typst/svg2pdf#14eb3eb5be2f70d6735c88661387fddf0e110871" +source = "git+https://github.com/typst/svg2pdf.git#39daf9fc2ee84b62b0e3b174ff8c9017f655af6b" dependencies = [ "image", "miniz_oxide", @@ -2143,9 +2499,9 @@ dependencies = [ [[package]] name = "syn" -version = "2.0.27" +version = "2.0.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b60f673f44a8255b9c8c657daf66a596d435f2da81a555b06dc644d080ba45e0" +checksum = "04361975b3f5e348b2189d8dc55bc942f278b2d482a6a0365de5bdd62d351567" dependencies = [ "proc-macro2", "quote", @@ -2166,25 +2522,42 @@ dependencies = [ [[package]] name = "syntect" -version = "5.0.0" +version = "5.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c6c454c27d9d7d9a84c7803aaa3c50cd088d2906fe3c6e42da3209aa623576a8" +checksum = "e02b4b303bf8d08bfeb0445cba5068a3d306b6baece1d5582171a9bf49188f91" dependencies = [ "bincode", "bitflags 1.3.2", "fancy-regex", "flate2", "fnv", - "lazy_static", "once_cell", - "regex-syntax 0.6.29", + "regex-syntax", "serde", - "serde_derive", "serde_json", "thiserror", "walkdir", ] +[[package]] +name = "temp-dir" +version = "0.1.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "af547b166dd1ea4b472165569fc456cfb6818116f854690b0ff205e636523dab" + +[[package]] +name = "tempfile" +version = "3.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc02fddf48964c42031a0b3fe0428320ecf3a73c401040fc0096f97794310651" +dependencies = [ + "cfg-if", + "fastrand 2.0.0", + "redox_syscall 0.3.5", + "rustix", + "windows-sys", +] + [[package]] name = "thiserror" version = "1.0.44" @@ -2202,7 +2575,7 @@ checksum = "090198534930841fab3a5d1bb637cde49e339654e606195f8d9c76eeb081dc96" dependencies = [ "proc-macro2", "quote", - "syn 2.0.27", + "syn 2.0.28", ] [[package]] @@ -2233,27 +2606,17 @@ dependencies = [ "byteorder", "integer-encoding", "log", - "ordered-float", + "ordered-float 2.10.0", "threadpool", ] -[[package]] -name = "tiff" -version = "0.8.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7449334f9ff2baf290d55d73983a7d6fa15e01198faef72af07e2a8db851e471" -dependencies = [ - "flate2", - "jpeg-decoder", - "weezl", -] - [[package]] name = "time" -version = "0.3.23" +version = "0.3.25" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "59e399c068f43a5d116fedaf73b203fa4f9c519f17e2b34f63221d3792f81446" +checksum = "b0fdd63d58b18d663fbdf70e049f00a22c8e42be082203be7f26589213cd75ea" dependencies = [ + "deranged", "itoa", "serde", "time-core", @@ -2268,9 +2631,9 @@ checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb" [[package]] name = "time-macros" -version = "0.2.10" +version = "0.2.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "96ba15a897f3c86766b757e5ac7221554c6750054d74d5b28844fce5fb36a6c4" +checksum = "eb71511c991639bb078fd5bf97757e03914361c48100d52878b8e52b46fb92cd" dependencies = [ "time-core", ] @@ -2329,17 +2692,17 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.29.1" +version = "1.30.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "532826ff75199d5833b9d2c5fe410f29235e25704ee5f0ef599fb51c21f4a4da" +checksum = "2d3ce25f50619af8b0aec2eb23deebe84249e19e2ddd393a6e16e3300a6dadfd" dependencies = [ - "autocfg", "backtrace", + "bytes", "libc", "mio", "num_cpus", "pin-project-lite", - "socket2", + "socket2 0.5.3", "tokio-macros", "windows-sys", ] @@ -2352,7 +2715,27 @@ checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e" dependencies = [ "proc-macro2", "quote", - "syn 2.0.27", + "syn 2.0.28", +] + +[[package]] +name = "tokio-native-tls" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2" +dependencies = [ + "native-tls", + "tokio", +] + +[[package]] +name = "tokio-rustls" +version = "0.24.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081" +dependencies = [ + "rustls", + "tokio", ] [[package]] @@ -2366,6 +2749,21 @@ dependencies = [ "tokio", ] +[[package]] +name = "tokio-tar" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9d5714c010ca3e5c27114c1cdeb9d14641ace49874aa5626d7149e47aedace75" +dependencies = [ + "filetime", + "futures-core", + "libc", + "redox_syscall 0.3.5", + "tokio", + "tokio-stream", + "xattr", +] + [[package]] name = "tokio-util" version = "0.7.8" @@ -2495,7 +2893,7 @@ checksum = "5f4f31f56159e98206da9efd823404b79b6ef3143b4a7ab76e67b1751b25a4ab" dependencies = [ "proc-macro2", "quote", - "syn 2.0.27", + "syn 2.0.28", ] [[package]] @@ -2531,9 +2929,9 @@ dependencies = [ [[package]] name = "tracing-opentelemetry" -version = "0.19.0" +version = "0.20.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "00a39dcf9bfc1742fa4d6215253b33a6e474be78275884c216fc2a06267b3600" +checksum = "fc09e402904a5261e42cf27aea09ccb7d5318c6717a9eec3d8e2e65c56b18f19" dependencies = [ "once_cell", "opentelemetry", @@ -2554,6 +2952,12 @@ dependencies = [ "tracing-core", ] +[[package]] +name = "try-lock" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" + [[package]] name = "ttf-parser" version = "0.18.1" @@ -2568,8 +2972,8 @@ checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a" [[package]] name = "typst" -version = "0.5.0" -source = "git+https://github.com/typst/typst.git?rev=30bb33aafced4f1bf4a00803550f0e1e42672ded#30bb33aafced4f1bf4a00803550f0e1e42672ded" +version = "0.6.0" +source = "git+https://github.com/typst/typst.git?tag=v0.6.0#2dfd44fedd99ab9414c17f358179e1c37e953f30" dependencies = [ "bitflags 2.3.3", "bytemuck", @@ -2596,6 +3000,7 @@ dependencies = [ "svg2pdf", "time", "tiny-skia", + "toml", "tracing", "ttf-parser", "typst-macros", @@ -2610,8 +3015,8 @@ dependencies = [ [[package]] name = "typst-library" -version = "0.5.0" -source = "git+https://github.com/typst/typst.git?rev=30bb33aafced4f1bf4a00803550f0e1e42672ded#30bb33aafced4f1bf4a00803550f0e1e42672ded" +version = "0.6.0" +source = "git+https://github.com/typst/typst.git?tag=v0.6.0#2dfd44fedd99ab9414c17f358179e1c37e953f30" dependencies = [ "az", "chinese-number", @@ -2649,16 +3054,19 @@ dependencies = [ [[package]] name = "typst-lsp" -version = "0.7.2" +version = "0.8.1" dependencies = [ "anyhow", + "async-compression", + "bpaf", "chrono", "comemo", "dirs", "elsa", "futures", "if_chain", - "indexmap 1.9.3", + "indexmap 2.0.0", + "internment", "itertools", "lazy_static", "memmap2 0.7.1", @@ -2667,12 +3075,17 @@ dependencies = [ "opentelemetry-jaeger", "parking_lot", "regex", + "reqwest", "same-file", "serde", "serde_json", "siphasher", - "strum", + "strum 0.25.0", + "temp-dir", + "thiserror", "tokio", + "tokio-tar", + "tokio-util", "tower-lsp", "tracing", "tracing-opentelemetry", @@ -2684,13 +3097,13 @@ dependencies = [ [[package]] name = "typst-macros" -version = "0.5.0" -source = "git+https://github.com/typst/typst.git?rev=30bb33aafced4f1bf4a00803550f0e1e42672ded#30bb33aafced4f1bf4a00803550f0e1e42672ded" +version = "0.6.0" +source = "git+https://github.com/typst/typst.git?tag=v0.6.0#2dfd44fedd99ab9414c17f358179e1c37e953f30" dependencies = [ "heck", "proc-macro2", "quote", - "syn 2.0.27", + "syn 2.0.28", ] [[package]] @@ -2786,6 +3199,12 @@ version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e9df2af067a7953e9c3831320f35c1cc0600c30d44d9f7a12b01db1cd88d6b47" +[[package]] +name = "untrusted" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" + [[package]] name = "url" version = "2.4.0" @@ -2904,6 +3323,15 @@ dependencies = [ "winapi-util", ] +[[package]] +name = "want" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" +dependencies = [ + "try-lock", +] + [[package]] name = "wasi" version = "0.11.0+wasi-snapshot-preview1" @@ -2931,10 +3359,22 @@ dependencies = [ "once_cell", "proc-macro2", "quote", - "syn 2.0.27", + "syn 2.0.28", "wasm-bindgen-shared", ] +[[package]] +name = "wasm-bindgen-futures" +version = "0.4.37" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c02dbc21516f9f1f04f187958890d7e6026df8d16540b7ad9492bc34a67cea03" +dependencies = [ + "cfg-if", + "js-sys", + "wasm-bindgen", + "web-sys", +] + [[package]] name = "wasm-bindgen-macro" version = "0.2.87" @@ -2953,7 +3393,7 @@ checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b" dependencies = [ "proc-macro2", "quote", - "syn 2.0.27", + "syn 2.0.28", "wasm-bindgen-backend", "wasm-bindgen-shared", ] @@ -2964,6 +3404,48 @@ version = "0.2.87" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1" +[[package]] +name = "wasm-streams" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6bbae3363c08332cadccd13b67db371814cd214c2524020932f0804b8cf7c078" +dependencies = [ + "futures-util", + "js-sys", + "wasm-bindgen", + "wasm-bindgen-futures", + "web-sys", +] + +[[package]] +name = "web-sys" +version = "0.3.64" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b" +dependencies = [ + "js-sys", + "wasm-bindgen", +] + +[[package]] +name = "webpki" +version = "0.22.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd" +dependencies = [ + "ring", + "untrusted", +] + +[[package]] +name = "webpki-roots" +version = "0.22.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6c71e40d7d2c34a5106301fb632274ca37242cd0c9d3e64dbece371a40a2d87" +dependencies = [ + "webpki", +] + [[package]] name = "weezl" version = "0.1.7" @@ -3078,19 +3560,37 @@ checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a" [[package]] name = "winnow" -version = "0.5.1" +version = "0.5.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "25b5872fa2e10bd067ae946f927e726d7d603eaeb6e02fa6a350e0722d2b8c11" +checksum = "50be2474cf85af7994b8ddd153dcde06fbcf847ced8f14d2e401ac3c33df143c" dependencies = [ "memchr", ] +[[package]] +name = "winreg" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d" +dependencies = [ + "winapi", +] + [[package]] name = "writeable" version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "60e49e42bdb1d5dc76f4cd78102f8f0714d32edfa3efb82286eb0f0b1fc0da0f" +[[package]] +name = "xattr" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f4686009f71ff3e5c4dbcf1a282d0a44db3f021ba69350cd42086b3e5f1c6985" +dependencies = [ + "libc", +] + [[package]] name = "xmlparser" version = "0.13.5" @@ -3186,12 +3686,3 @@ dependencies = [ "syn 1.0.109", "synstructure", ] - -[[package]] -name = "zune-inflate" -version = "0.2.54" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "73ab332fe2f6680068f3582b16a24f90ad7096d5d39b974d1c0aff0125116f02" -dependencies = [ - "simd-adler32", -] diff --git a/pkgs/development/tools/language-servers/typst-lsp/default.nix b/pkgs/development/tools/language-servers/typst-lsp/default.nix index 04c048a956c2..732c979bbefb 100644 --- a/pkgs/development/tools/language-servers/typst-lsp/default.nix +++ b/pkgs/development/tools/language-servers/typst-lsp/default.nix @@ -1,34 +1,49 @@ { lib , rustPlatform , fetchFromGitHub +, pkg-config +, openssl +, stdenv +, darwin }: rustPlatform.buildRustPackage rec { pname = "typst-lsp"; - version = "0.7.2"; + version = "0.8.1"; src = fetchFromGitHub { owner = "nvarner"; - repo = pname; + repo = "typst-lsp"; rev = "v${version}"; - hash = "sha256-z6IG0qJXzwisazR/tLq6dwsZzgzhYKh/NnKmnYySS18="; + hash = "sha256-Aq9KP9L9s42NmX45YVnGUMpP0MXKB1Pjd4W0f0U8T7o="; }; cargoLock = { lockFile = ./Cargo.lock; outputHashes = { - "elsa-1.8.1" = "sha256-/85IriplPxx24TE/CsvjIsve100QUZiVqS0TWgPFRbw="; - "svg2pdf-0.5.0" = "sha256-v/ARFI+Uw5KtLe2F3ty9u3uKkWSradRmLnD2VJ+jmSI="; - "typst-0.5.0" = "sha256-obUe9OVQ8M7MORudQGN7zaYjUv4zjeh7XidHHmUibTA="; + "svg2pdf-0.5.0" = "sha256-yBQpvDAnJ7C0PWIM/o0PzOg9JlDZCEiVdCTDDPSwrmE="; + "typst-0.6.0" = "sha256-8e6BNffKgAUNwic4uEfDh77y2nIyYt9BwZr+ypv+d5A="; }; }; + nativeBuildInputs = [ + pkg-config + ]; + + buildInputs = [ + openssl + ] ++ lib.optionals stdenv.isDarwin [ + darwin.apple_sdk.frameworks.Security + ]; + patches = [ - # typst-library tries to access the workspace with include_bytes, which - # fails when it is vendored as its own separate crate - # this patch moves the required assets into the crate and fixes the issue - # see https://github.com/typst/typst/pull/1515 - ./move-typst-assets.patch + # `rustPlatform.importCargoLock` has trouble parsing the `??` in the url + ./remove-svg2pdf-patch.patch + ]; + + checkFlags = [ + # requires internet access + "--skip=workspace::package::external::repo::test::full_download" ]; meta = with lib; { diff --git a/pkgs/development/tools/language-servers/typst-lsp/move-typst-assets.patch b/pkgs/development/tools/language-servers/typst-lsp/move-typst-assets.patch deleted file mode 100644 index a23ee367a795..000000000000 --- a/pkgs/development/tools/language-servers/typst-lsp/move-typst-assets.patch +++ /dev/null @@ -1,40 +0,0 @@ ---- a/Cargo.lock -+++ b/Cargo.lock -@@ -2569,7 +2569,7 @@ checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a" - [[package]] - name = "typst" - version = "0.5.0" --source = "git+https://github.com/typst/typst.git?tag=v0.5.0#3a8b9cce471934031ba57c5972d194ac1d7d2a6c" -+source = "git+https://github.com/typst/typst.git?rev=30bb33aafced4f1bf4a00803550f0e1e42672ded#30bb33aafced4f1bf4a00803550f0e1e42672ded" - dependencies = [ - "bitflags 2.3.3", - "bytemuck", -@@ -2611,7 +2611,7 @@ dependencies = [ - [[package]] - name = "typst-library" - version = "0.5.0" --source = "git+https://github.com/typst/typst.git?tag=v0.5.0#3a8b9cce471934031ba57c5972d194ac1d7d2a6c" -+source = "git+https://github.com/typst/typst.git?rev=30bb33aafced4f1bf4a00803550f0e1e42672ded#30bb33aafced4f1bf4a00803550f0e1e42672ded" - dependencies = [ - "az", - "chinese-number", -@@ -2685,7 +2685,7 @@ dependencies = [ - [[package]] - name = "typst-macros" - version = "0.5.0" --source = "git+https://github.com/typst/typst.git?tag=v0.5.0#3a8b9cce471934031ba57c5972d194ac1d7d2a6c" -+source = "git+https://github.com/typst/typst.git?rev=30bb33aafced4f1bf4a00803550f0e1e42672ded#30bb33aafced4f1bf4a00803550f0e1e42672ded" - dependencies = [ - "heck", - "proc-macro2", ---- a/Cargo.toml -+++ b/Cargo.toml -@@ -49,6 +49,6 @@ tracing-subscriber = { version = "0.3.17", default-features = false, features = - "registry", - "fmt", - ] } --typst = { git = "https://github.com/typst/typst.git", tag = "v0.5.0" } --typst-library = { git = "https://github.com/typst/typst.git", tag = "v0.5.0" } -+typst = { git = "https://github.com/typst/typst.git", rev = "30bb33aafced4f1bf4a00803550f0e1e42672ded" } -+typst-library = { git = "https://github.com/typst/typst.git", rev = "30bb33aafced4f1bf4a00803550f0e1e42672ded" } - walkdir = "2.3" diff --git a/pkgs/development/tools/language-servers/typst-lsp/remove-svg2pdf-patch.patch b/pkgs/development/tools/language-servers/typst-lsp/remove-svg2pdf-patch.patch new file mode 100644 index 000000000000..ad277caa81b5 --- /dev/null +++ b/pkgs/development/tools/language-servers/typst-lsp/remove-svg2pdf-patch.patch @@ -0,0 +1,27 @@ +--- a/Cargo.lock ++++ b/Cargo.lock +@@ -2468,7 +2468,7 @@ dependencies = [ + [[package]] + name = "svg2pdf" + version = "0.5.0" +-source = "git+https://github.com/typst/svg2pdf.git??tag=v0.5.0#39daf9fc2ee84b62b0e3b174ff8c9017f655af6b" ++source = "git+https://github.com/typst/svg2pdf.git#39daf9fc2ee84b62b0e3b174ff8c9017f655af6b" + dependencies = [ + "image", + "miniz_oxide", +--- a/Cargo.toml ++++ b/Cargo.toml +@@ -84,13 +84,5 @@ reqwest = { version = "0.11.18", default-features = false, features = [ + "rustls-tls", + ] } + +- +-# Typst 0.6.0 does not specify a tag or ref for svg2pdf, so provide one... +-# ...but Cargo doesn't want to make our lives too easy, and we can't replace the +-# dependency with another at the same URL. Use a workaroud inspired by +-# StackOverflow: https://stackoverflow.com/a/72261235 +-[patch."https://github.com/typst/svg2pdf"] +-svg2pdf = { git = "https://github.com/typst/svg2pdf.git?", tag = "v0.5.0" } +- + [dev-dependencies] + temp-dir = "0.1.11" diff --git a/pkgs/development/tools/misc/gf/default.nix b/pkgs/development/tools/misc/gf/default.nix index 53746bb37780..47b20cfe92e5 100644 --- a/pkgs/development/tools/misc/gf/default.nix +++ b/pkgs/development/tools/misc/gf/default.nix @@ -10,15 +10,15 @@ , extensions ? [ ] }: -stdenv.mkDerivation rec { +stdenv.mkDerivation { pname = "gf"; - version = "unstable-2022-09-26"; + version = "unstable-2023-08-09"; src = fetchFromGitHub { repo = "gf"; owner = "nakst"; - rev = "404fc6d66c60bb01e9bcbb69021e66c543bda2d5"; - hash = "sha256-HRejpEN/29Q+wukU3Jv3vZoK6/VjZK6VnZdvPuFBC9I="; + rev = "4190211d63c1e5378a9e841d22fa2b96a1099e68"; + hash = "sha256-28Xgw/KxwZ94r/TXsdISeUtXHSips4irB0D+tEefMYE="; }; nativeBuildInputs = [ makeWrapper pkg-config ]; @@ -59,6 +59,7 @@ stdenv.mkDerivation rec { homepage = "https://github.com/nakst/gf"; license = licenses.mit; platforms = platforms.linux; + mainProgram = "gf2"; maintainers = with maintainers; [ _0xd61 ]; }; } diff --git a/pkgs/development/tools/ocaml/camlp5/default.nix b/pkgs/development/tools/ocaml/camlp5/default.nix index 9d81c46e20c9..a09f226b3f13 100644 --- a/pkgs/development/tools/ocaml/camlp5/default.nix +++ b/pkgs/development/tools/ocaml/camlp5/default.nix @@ -1,31 +1,57 @@ -{ lib, stdenv, fetchFromGitHub, ocaml, perl }: +{ lib, stdenv, fetchFromGitHub, ocaml, findlib, perl, makeWrapper +, rresult, bos, ocaml_pcre, re, camlp-streams +}: if lib.versionOlder ocaml.version "4.02" -|| lib.versionOlder "4.13" ocaml.version then throw "camlp5 is not available for OCaml ${ocaml.version}" else -stdenv.mkDerivation rec { +let params = + if lib.versionAtLeast ocaml.version "4.12" + then rec { + version = "8.00.05"; - pname = "camlp5"; - version = "7.14"; + src = fetchFromGitHub { + owner = "camlp5"; + repo = "camlp5"; + rev = version; + hash = "sha256-Havr3RB6iUP7QzV+LUGwMHtGzmRdS5RqYsqJ0N5w6gE="; + }; - src = fetchFromGitHub { - owner = "camlp5"; - repo = "camlp5"; - rev = "rel${builtins.replaceStrings [ "." ] [ "" ] version}"; - sha256 = "1dd68bisbpqn5lq2pslm582hxglcxnbkgfkwhdz67z4w9d5nvr7w"; - }; + nativeBuildInputs = [ makeWrapper ocaml findlib perl ]; + buildInputs = [ bos ocaml_pcre re rresult ]; + propagatedBuildInputs = [ camlp-streams ]; + + postFixup = '' + for p in camlp5 camlp5o camlp5r camlp5sch mkcamlp5 ocpp5 + do + wrapProgram $out/bin/$p \ + --suffix CAML_LD_LIBRARY_PATH : ${ocaml_pcre}/lib/ocaml/${ocaml.version}/site-lib/stublibs + done + ''; + } else rec { + version = "7.14"; + src = fetchFromGitHub { + owner = "camlp5"; + repo = "camlp5"; + rev = "rel${builtins.replaceStrings [ "." ] [ "" ] version}"; + sha256 = "1dd68bisbpqn5lq2pslm582hxglcxnbkgfkwhdz67z4w9d5nvr7w"; + }; + nativeBuildInputs = [ ocaml perl ]; + } +; in + +stdenv.mkDerivation (params // { + + pname = "ocaml${ocaml.version}-camlp5"; strictDeps = true; - nativeBuildInputs = [ ocaml perl ]; - prefixKey = "-prefix "; preConfigure = '' configureFlagsArray=(--strict --libdir $out/lib/ocaml/${ocaml.version}/site-lib) - patchShebangs ./config/find_stuffversion.pl + patchShebangs ./config/find_stuffversion.pl etc/META.pl ''; buildFlags = [ "world.opt" ]; @@ -45,4 +71,4 @@ stdenv.mkDerivation rec { maggesi vbgl ]; }; -} +}) diff --git a/pkgs/development/tools/rust/cargo-about/default.nix b/pkgs/development/tools/rust/cargo-about/default.nix index cc30bfb24faa..7af3b28817ae 100644 --- a/pkgs/development/tools/rust/cargo-about/default.nix +++ b/pkgs/development/tools/rust/cargo-about/default.nix @@ -35,6 +35,6 @@ rustPlatform.buildRustPackage rec { homepage = "https://github.com/EmbarkStudios/cargo-about"; changelog = "https://github.com/EmbarkStudios/cargo-about/blob/${version}/CHANGELOG.md"; license = with licenses; [ mit /* or */ asl20 ]; - maintainers = with maintainers; [ evanjs figsoda ]; + maintainers = with maintainers; [ evanjs figsoda matthiasbeyer ]; }; } diff --git a/pkgs/development/tools/rust/cargo-all-features/default.nix b/pkgs/development/tools/rust/cargo-all-features/default.nix index 0a7aeb9accb3..b4ba6b52afad 100644 --- a/pkgs/development/tools/rust/cargo-all-features/default.nix +++ b/pkgs/development/tools/rust/cargo-all-features/default.nix @@ -18,6 +18,6 @@ rustPlatform.buildRustPackage rec { description = "A Cargo subcommand to build and test all feature flag combinations"; homepage = "https://github.com/frewsxcv/cargo-all-features"; license = with licenses; [ asl20 /* or */ mit ]; - maintainers = with maintainers; [ figsoda ]; + maintainers = with maintainers; [ figsoda matthiasbeyer ]; }; } diff --git a/pkgs/development/tools/rust/cargo-binstall/default.nix b/pkgs/development/tools/rust/cargo-binstall/default.nix index c0bf5131b2f6..1d53e3724b69 100644 --- a/pkgs/development/tools/rust/cargo-binstall/default.nix +++ b/pkgs/development/tools/rust/cargo-binstall/default.nix @@ -11,16 +11,16 @@ rustPlatform.buildRustPackage rec { pname = "cargo-binstall"; - version = "1.1.2"; + version = "1.2.1"; src = fetchFromGitHub { owner = "cargo-bins"; repo = "cargo-binstall"; rev = "v${version}"; - hash = "sha256-TAHM+R66S8I0QmCI5RHb0mJUf5Ffq6CKH28rxlFoE/I="; + hash = "sha256-xqY1C3ZPGY9GeyuSgV0s4+eSkm4r+jOQkNgSzqE2QUI="; }; - cargoHash = "sha256-ef7Q+qQRadNseQwoVvAHWADSE7IgrgKppMmMUL2JB10="; + cargoHash = "sha256-yAda80b62WGYuKo5YtCLRtx08fmNs5HLDcNWhq+FG/I="; nativeBuildInputs = [ pkg-config diff --git a/pkgs/development/tools/rust/cargo-binutils/default.nix b/pkgs/development/tools/rust/cargo-binutils/default.nix index af3673e28bce..ddb5e3c199bf 100644 --- a/pkgs/development/tools/rust/cargo-binutils/default.nix +++ b/pkgs/development/tools/rust/cargo-binutils/default.nix @@ -19,6 +19,6 @@ rustPlatform.buildRustPackage rec { homepage = "https://github.com/rust-embedded/cargo-binutils"; changelog = "https://github.com/rust-embedded/cargo-binutils/blob/v${version}/CHANGELOG.md"; license = with licenses; [ asl20 mit ]; - maintainers = with maintainers; [ stupremee ]; + maintainers = with maintainers; [ stupremee matthiasbeyer ]; }; } diff --git a/pkgs/development/tools/rust/cargo-bloat/default.nix b/pkgs/development/tools/rust/cargo-bloat/default.nix index 0742b6b904fb..03f8922ba632 100644 --- a/pkgs/development/tools/rust/cargo-bloat/default.nix +++ b/pkgs/development/tools/rust/cargo-bloat/default.nix @@ -18,7 +18,7 @@ rustPlatform.buildRustPackage rec { homepage = "https://github.com/RazrFalcon/cargo-bloat"; license = licenses.mit; platforms = platforms.unix; - maintainers = with maintainers; [ xrelkd ]; + maintainers = with maintainers; [ xrelkd matthiasbeyer ]; }; } diff --git a/pkgs/development/tools/rust/cargo-bundle-licenses/default.nix b/pkgs/development/tools/rust/cargo-bundle-licenses/default.nix index df8ff3c0e2c3..3d78e18dd57a 100644 --- a/pkgs/development/tools/rust/cargo-bundle-licenses/default.nix +++ b/pkgs/development/tools/rust/cargo-bundle-licenses/default.nix @@ -21,6 +21,6 @@ rustPlatform.buildRustPackage rec { homepage = "https://github.com/sstadick/cargo-bundle-licenses"; changelog = "https://github.com/sstadick/cargo-bundle-licenses/blob/${src.rev}/CHANGELOG.md"; license = with licenses; [ mit asl20 ]; - maintainers = with maintainers; [ figsoda ]; + maintainers = with maintainers; [ figsoda matthiasbeyer ]; }; } diff --git a/pkgs/development/tools/rust/cargo-cache/default.nix b/pkgs/development/tools/rust/cargo-cache/default.nix index 581b48211666..8e37c1489dfd 100644 --- a/pkgs/development/tools/rust/cargo-cache/default.nix +++ b/pkgs/development/tools/rust/cargo-cache/default.nix @@ -21,6 +21,6 @@ rustPlatform.buildRustPackage rec { description = "Manage cargo cache (\${CARGO_HOME}, ~/.cargo/), print sizes of dirs and remove dirs selectively"; homepage = "https://github.com/matthiaskrgr/cargo-cache"; license = with licenses; [ asl20 /* or */ mit ]; - maintainers = with maintainers; [ Br1ght0ne ]; + maintainers = with maintainers; [ Br1ght0ne matthiasbeyer ]; }; } diff --git a/pkgs/development/tools/rust/cargo-careful/default.nix b/pkgs/development/tools/rust/cargo-careful/default.nix index ce1815352e6a..d64aeb320d97 100644 --- a/pkgs/development/tools/rust/cargo-careful/default.nix +++ b/pkgs/development/tools/rust/cargo-careful/default.nix @@ -20,6 +20,6 @@ rustPlatform.buildRustPackage rec { description = "A tool to execute Rust code carefully, with extra checking along the way"; homepage = "https://github.com/RalfJung/cargo-careful"; license = with licenses; [ asl20 mit ]; - maintainers = with maintainers; [ figsoda ]; + maintainers = with maintainers; [ figsoda matthiasbeyer ]; }; } diff --git a/pkgs/development/tools/rust/cargo-clone/default.nix b/pkgs/development/tools/rust/cargo-clone/default.nix index 68af8c0a2d39..844839717b55 100644 --- a/pkgs/development/tools/rust/cargo-clone/default.nix +++ b/pkgs/development/tools/rust/cargo-clone/default.nix @@ -36,6 +36,6 @@ rustPlatform.buildRustPackage rec { homepage = "https://github.com/janlikar/cargo-clone"; changelog = "https://github.com/janlikar/cargo-clone/blob/v${version}/CHANGELOG.md"; license = with licenses; [ asl20 mit ]; - maintainers = with maintainers; [ figsoda ]; + maintainers = with maintainers; [ figsoda matthiasbeyer ]; }; } diff --git a/pkgs/development/tools/rust/cargo-crev/default.nix b/pkgs/development/tools/rust/cargo-crev/default.nix index 61a8e94a436b..a4ac31210796 100644 --- a/pkgs/development/tools/rust/cargo-crev/default.nix +++ b/pkgs/development/tools/rust/cargo-crev/default.nix @@ -41,6 +41,6 @@ rustPlatform.buildRustPackage rec { description = "A cryptographically verifiable code review system for the cargo (Rust) package manager"; homepage = "https://github.com/crev-dev/cargo-crev"; license = with licenses; [ asl20 mit mpl20 ]; - maintainers = with maintainers; [ b4dm4n ]; + maintainers = with maintainers; [ b4dm4n matthiasbeyer ]; }; } diff --git a/pkgs/development/tools/rust/cargo-criterion/default.nix b/pkgs/development/tools/rust/cargo-criterion/default.nix index d33f455c9b93..cc9f5ae255cc 100644 --- a/pkgs/development/tools/rust/cargo-criterion/default.nix +++ b/pkgs/development/tools/rust/cargo-criterion/default.nix @@ -17,6 +17,6 @@ rustPlatform.buildRustPackage rec { description = "Cargo extension for running Criterion.rs benchmarks"; homepage = "https://github.com/bheisler/cargo-criterion"; license = with licenses; [ asl20 /* or */ mit ]; - maintainers = with maintainers; [ humancalico ]; + maintainers = with maintainers; [ humancalico matthiasbeyer ]; }; } diff --git a/pkgs/development/tools/rust/cargo-deadlinks/default.nix b/pkgs/development/tools/rust/cargo-deadlinks/default.nix index 21ac416882f9..ead5705c59ae 100644 --- a/pkgs/development/tools/rust/cargo-deadlinks/default.nix +++ b/pkgs/development/tools/rust/cargo-deadlinks/default.nix @@ -27,6 +27,6 @@ rustPlatform.buildRustPackage rec { homepage = "https://github.com/deadlinks/cargo-deadlinks"; changelog = "https://github.com/deadlinks/cargo-deadlinks/blob/${version}/CHANGELOG.md"; license = with licenses; [ asl20 /* or */ mit ]; - maintainers = with maintainers; [ newam ]; + maintainers = with maintainers; [ newam matthiasbeyer ]; }; } diff --git a/pkgs/development/tools/rust/cargo-deb/default.nix b/pkgs/development/tools/rust/cargo-deb/default.nix index 2cc64a771e11..a9b76710605e 100644 --- a/pkgs/development/tools/rust/cargo-deb/default.nix +++ b/pkgs/development/tools/rust/cargo-deb/default.nix @@ -36,6 +36,6 @@ rustPlatform.buildRustPackage rec { description = "A cargo subcommand that generates Debian packages from information in Cargo.toml"; homepage = "https://github.com/kornelski/cargo-deb"; license = licenses.mit; - maintainers = with maintainers; [ Br1ght0ne ]; + maintainers = with maintainers; [ Br1ght0ne matthiasbeyer ]; }; } diff --git a/pkgs/development/tools/rust/cargo-depgraph/default.nix b/pkgs/development/tools/rust/cargo-depgraph/default.nix index 57c71687243a..1e7c63574c99 100644 --- a/pkgs/development/tools/rust/cargo-depgraph/default.nix +++ b/pkgs/development/tools/rust/cargo-depgraph/default.nix @@ -18,6 +18,6 @@ rustPlatform.buildRustPackage rec { homepage = "https://sr.ht/~jplatte/cargo-depgraph"; changelog = "https://git.sr.ht/~jplatte/cargo-depgraph/tree/${src.rev}/item/CHANGELOG.md"; license = licenses.gpl3Plus; - maintainers = with maintainers; [ figsoda ]; + maintainers = with maintainers; [ figsoda matthiasbeyer ]; }; } diff --git a/pkgs/development/tools/rust/cargo-dephell/default.nix b/pkgs/development/tools/rust/cargo-dephell/default.nix index 6a6cfa46d5fd..63a8cabccefa 100644 --- a/pkgs/development/tools/rust/cargo-dephell/default.nix +++ b/pkgs/development/tools/rust/cargo-dephell/default.nix @@ -47,6 +47,6 @@ rustPlatform.buildRustPackage rec { description = "A tool to analyze the third-party dependencies imported by a rust crate or rust workspace"; homepage = "https://github.com/mimoo/cargo-dephell"; license = with licenses; [ mit /* or */ asl20 ]; - maintainers = with maintainers; [ figsoda ]; + maintainers = with maintainers; [ figsoda matthiasbeyer ]; }; } diff --git a/pkgs/development/tools/rust/cargo-deps/default.nix b/pkgs/development/tools/rust/cargo-deps/default.nix index 51b6f14136dc..67e33406b6ce 100644 --- a/pkgs/development/tools/rust/cargo-deps/default.nix +++ b/pkgs/development/tools/rust/cargo-deps/default.nix @@ -15,6 +15,6 @@ rustPlatform.buildRustPackage rec { description = "Cargo subcommand for building dependency graphs of Rust projects"; homepage = "https://github.com/m-cat/cargo-deps"; license = licenses.mit; - maintainers = with maintainers; [ arcnmx ]; + maintainers = with maintainers; [ arcnmx matthiasbeyer ]; }; } diff --git a/pkgs/development/tools/rust/cargo-diet/default.nix b/pkgs/development/tools/rust/cargo-diet/default.nix index da3036187e2d..60aadca13d00 100644 --- a/pkgs/development/tools/rust/cargo-diet/default.nix +++ b/pkgs/development/tools/rust/cargo-diet/default.nix @@ -18,6 +18,6 @@ rustPlatform.buildRustPackage rec { homepage = "https://github.com/the-lean-crate/cargo-diet"; changelog = "https://github.com/the-lean-crate/cargo-diet/blob/v${version}/CHANGELOG.md"; license = licenses.mit; - maintainers = with maintainers; [ figsoda ]; + maintainers = with maintainers; [ figsoda matthiasbeyer ]; }; } diff --git a/pkgs/development/tools/rust/cargo-dist/default.nix b/pkgs/development/tools/rust/cargo-dist/default.nix index 50e9f240ba1d..1c9e073ecdd7 100644 --- a/pkgs/development/tools/rust/cargo-dist/default.nix +++ b/pkgs/development/tools/rust/cargo-dist/default.nix @@ -6,21 +6,23 @@ , xz , zstd , stdenv +, darwin +, git , rustup }: rustPlatform.buildRustPackage rec { pname = "cargo-dist"; - version = "0.0.7"; + version = "0.1.0"; src = fetchFromGitHub { owner = "axodotdev"; repo = "cargo-dist"; rev = "v${version}"; - hash = "sha256-uXC+iaOcEIyGMVNtAduhT68GuE29aL/3S6uEMllAWNA="; + hash = "sha256-yuBf6WgY+sGk7Y5/gZFHeawbHhsVIxabFlpiL4AUzK8="; }; - cargoHash = "sha256-/TLi+ESOZhJ4Xg3hdUEWhM0K4asI9+L1M1+hWuDOj9Q="; + cargoHash = "sha256-vfpSMa3NO95SPU4jSW1qKMUy4EGZloYNC3SyGwlTGC0="; nativeBuildInputs = [ pkg-config @@ -30,21 +32,30 @@ rustPlatform.buildRustPackage rec { bzip2 xz zstd + ] ++ lib.optionals stdenv.isDarwin [ + darwin.apple_sdk.frameworks.Security + ]; + + nativeCheckInputs = [ + git + ] ++ lib.optionals stdenv.isDarwin [ + rustup ]; env = { ZSTD_SYS_USE_PKG_CONFIG = true; }; - nativeCheckInputs = lib.optionals stdenv.isDarwin [ - rustup - ]; + # remove tests that require internet access + postPatch = '' + rm cargo-dist/tests/integration-tests.rs + ''; meta = with lib; { description = "A tool for building final distributable artifacts and uploading them to an archive"; homepage = "https://github.com/axodotdev/cargo-dist"; changelog = "https://github.com/axodotdev/cargo-dist/blob/${src.rev}/CHANGELOG.md"; license = with licenses; [ asl20 mit ]; - maintainers = with maintainers; [ figsoda ]; + maintainers = with maintainers; [ figsoda matthiasbeyer ]; }; } diff --git a/pkgs/development/tools/rust/cargo-docset/default.nix b/pkgs/development/tools/rust/cargo-docset/default.nix index 8565d7f08408..95fa48e4aba9 100644 --- a/pkgs/development/tools/rust/cargo-docset/default.nix +++ b/pkgs/development/tools/rust/cargo-docset/default.nix @@ -29,6 +29,6 @@ rustPlatform.buildRustPackage rec { homepage = "https://github.com/Robzz/cargo-docset"; changelog = "https://github.com/Robzz/cargo-docset/blob/${version}/CHANGELOG.md"; license = licenses.asl20; - maintainers = with maintainers; [ colinsane ]; + maintainers = with maintainers; [ colinsane matthiasbeyer ]; }; } diff --git a/pkgs/development/tools/rust/cargo-duplicates/default.nix b/pkgs/development/tools/rust/cargo-duplicates/default.nix index a3983162a93b..781764d3c313 100644 --- a/pkgs/development/tools/rust/cargo-duplicates/default.nix +++ b/pkgs/development/tools/rust/cargo-duplicates/default.nix @@ -41,6 +41,6 @@ rustPlatform.buildRustPackage rec { description = "A cargo subcommand for displaying when different versions of a same dependency are pulled in"; homepage = "https://github.com/Keruspe/cargo-duplicates"; license = licenses.mit; - maintainers = with maintainers; [ figsoda ]; + maintainers = with maintainers; [ figsoda matthiasbeyer ]; }; } diff --git a/pkgs/development/tools/rust/cargo-feature/default.nix b/pkgs/development/tools/rust/cargo-feature/default.nix index 88c48cd85944..855fb65fdfb7 100644 --- a/pkgs/development/tools/rust/cargo-feature/default.nix +++ b/pkgs/development/tools/rust/cargo-feature/default.nix @@ -20,7 +20,7 @@ rustPlatform.buildRustPackage rec { homepage = "https://github.com/Riey/cargo-feature"; license = licenses.mit; platforms = platforms.unix; - maintainers = with maintainers; [ riey ]; + maintainers = with maintainers; [ riey matthiasbeyer ]; }; } diff --git a/pkgs/development/tools/rust/cargo-flamegraph/default.nix b/pkgs/development/tools/rust/cargo-flamegraph/default.nix index 4c1ea48e4a56..f2890b0cd63e 100644 --- a/pkgs/development/tools/rust/cargo-flamegraph/default.nix +++ b/pkgs/development/tools/rust/cargo-flamegraph/default.nix @@ -33,6 +33,6 @@ rustPlatform.buildRustPackage rec { description = "Easy flamegraphs for Rust projects and everything else, without Perl or pipes <3"; homepage = "https://github.com/flamegraph-rs/flamegraph"; license = with licenses; [ asl20 /* or */ mit ]; - maintainers = with maintainers; [ killercup ]; + maintainers = with maintainers; [ killercup matthiasbeyer ]; }; } diff --git a/pkgs/development/tools/rust/cargo-fuzz/default.nix b/pkgs/development/tools/rust/cargo-fuzz/default.nix index 5893fd2c828c..6abe4fbc129e 100644 --- a/pkgs/development/tools/rust/cargo-fuzz/default.nix +++ b/pkgs/development/tools/rust/cargo-fuzz/default.nix @@ -21,6 +21,6 @@ rustPlatform.buildRustPackage rec { description = "Command line helpers for fuzzing"; homepage = "https://github.com/rust-fuzz/cargo-fuzz"; license = with licenses; [ mit asl20 ]; - maintainers = [ maintainers.ekleog ]; + maintainers = with maintainers; [ ekleog matthiasbeyer ]; }; } diff --git a/pkgs/development/tools/rust/cargo-geiger/default.nix b/pkgs/development/tools/rust/cargo-geiger/default.nix index 6d35e4d3ab8a..5c48aeeb3829 100644 --- a/pkgs/development/tools/rust/cargo-geiger/default.nix +++ b/pkgs/development/tools/rust/cargo-geiger/default.nix @@ -54,6 +54,6 @@ rustPlatform.buildRustPackage rec { code is appropriate. ''; license = with licenses; [ asl20 /* or */ mit ]; - maintainers = with maintainers; [ evanjs jk ]; + maintainers = with maintainers; [ evanjs jk matthiasbeyer ]; }; } diff --git a/pkgs/development/tools/rust/cargo-generate/default.nix b/pkgs/development/tools/rust/cargo-generate/default.nix index c0687938d03b..65dc535f71ab 100644 --- a/pkgs/development/tools/rust/cargo-generate/default.nix +++ b/pkgs/development/tools/rust/cargo-generate/default.nix @@ -53,6 +53,6 @@ rustPlatform.buildRustPackage rec { homepage = "https://github.com/cargo-generate/cargo-generate"; changelog = "https://github.com/cargo-generate/cargo-generate/blob/v${version}/CHANGELOG.md"; license = with licenses; [ asl20 /* or */ mit ]; - maintainers = with maintainers; [ figsoda turbomack ]; + maintainers = with maintainers; [ figsoda turbomack matthiasbeyer ]; }; } diff --git a/pkgs/development/tools/rust/cargo-graph/default.nix b/pkgs/development/tools/rust/cargo-graph/default.nix index 37fd43a1bcf1..81416af36cfc 100644 --- a/pkgs/development/tools/rust/cargo-graph/default.nix +++ b/pkgs/development/tools/rust/cargo-graph/default.nix @@ -17,6 +17,6 @@ rustPlatform.buildRustPackage rec { meta = with lib; { description = "A cargo subcommand for creating GraphViz DOT files and dependency graphs"; license = with licenses; [ mit ]; - maintainers = with maintainers; [ basvandijk ]; + maintainers = with maintainers; [ basvandijk matthiasbeyer ]; }; } diff --git a/pkgs/development/tools/rust/cargo-info/default.nix b/pkgs/development/tools/rust/cargo-info/default.nix index bc53e09feb47..9e05699e6c43 100644 --- a/pkgs/development/tools/rust/cargo-info/default.nix +++ b/pkgs/development/tools/rust/cargo-info/default.nix @@ -35,6 +35,6 @@ rustPlatform.buildRustPackage rec { homepage = "https://gitlab.com/imp/cargo-info"; changelog = "https://gitlab.com/imp/cargo-info/-/blob/${src.rev}/CHANGELOG.md"; license = with licenses; [ mit asl20 ]; - maintainers = with maintainers; [ figsoda ]; + maintainers = with maintainers; [ figsoda matthiasbeyer ]; }; } diff --git a/pkgs/development/tools/rust/cargo-inspect/default.nix b/pkgs/development/tools/rust/cargo-inspect/default.nix index 1644929074bb..4a9f642b700f 100644 --- a/pkgs/development/tools/rust/cargo-inspect/default.nix +++ b/pkgs/development/tools/rust/cargo-inspect/default.nix @@ -19,6 +19,6 @@ rustPlatform.buildRustPackage rec { description = "See what Rust is doing behind the curtains"; homepage = "https://github.com/mre/cargo-inspect"; license = with licenses; [ mit asl20 ]; - maintainers = with maintainers; [ minijackson ]; + maintainers = with maintainers; [ minijackson matthiasbeyer ]; }; } diff --git a/pkgs/development/tools/rust/cargo-insta/default.nix b/pkgs/development/tools/rust/cargo-insta/default.nix index 2fd9eaeb3852..5db787197a1d 100644 --- a/pkgs/development/tools/rust/cargo-insta/default.nix +++ b/pkgs/development/tools/rust/cargo-insta/default.nix @@ -23,6 +23,6 @@ rustPlatform.buildRustPackage rec { homepage = "https://github.com/mitsuhiko/insta"; changelog = "https://github.com/mitsuhiko/insta/blob/${version}/CHANGELOG.md"; license = licenses.asl20; - maintainers = with lib.maintainers; [ figsoda oxalica ]; + maintainers = with lib.maintainers; [ figsoda oxalica matthiasbeyer ]; }; } diff --git a/pkgs/development/tools/rust/cargo-kcov/default.nix b/pkgs/development/tools/rust/cargo-kcov/default.nix index f94c4fa5c0f0..1b7c3b0eead9 100644 --- a/pkgs/development/tools/rust/cargo-kcov/default.nix +++ b/pkgs/development/tools/rust/cargo-kcov/default.nix @@ -30,6 +30,6 @@ rustPlatform.buildRustPackage rec { description = "Cargo subcommand to run kcov to get coverage report on Linux"; homepage = "https://github.com/kennytm/cargo-kcov"; license = with licenses; [ mit ]; - maintainers = with maintainers; [ saschagrunert ]; + maintainers = with maintainers; [ saschagrunert matthiasbeyer ]; }; } diff --git a/pkgs/development/tools/rust/cargo-license/default.nix b/pkgs/development/tools/rust/cargo-license/default.nix index 5d2f8765cdf9..085286a7eb0b 100644 --- a/pkgs/development/tools/rust/cargo-license/default.nix +++ b/pkgs/development/tools/rust/cargo-license/default.nix @@ -15,6 +15,6 @@ rustPlatform.buildRustPackage rec { description = "Cargo subcommand to see license of dependencies"; homepage = "https://github.com/onur/cargo-license"; license = with licenses; [ mit ]; - maintainers = with maintainers; [ basvandijk figsoda ]; + maintainers = with maintainers; [ basvandijk figsoda matthiasbeyer ]; }; } diff --git a/pkgs/development/tools/rust/cargo-limit/default.nix b/pkgs/development/tools/rust/cargo-limit/default.nix index 37ecf5642688..f52f76a3de5e 100644 --- a/pkgs/development/tools/rust/cargo-limit/default.nix +++ b/pkgs/development/tools/rust/cargo-limit/default.nix @@ -29,6 +29,6 @@ rustPlatform.buildRustPackage rec { description = "Cargo subcommand \"limit\": reduces the noise of compiler messages"; homepage = "https://github.com/alopatindev/cargo-limit"; license = with licenses; [ asl20 /* or */ mit ]; - maintainers = with maintainers; [ otavio ]; + maintainers = with maintainers; [ otavio matthiasbeyer ]; }; } diff --git a/pkgs/development/tools/rust/cargo-llvm-cov/default.nix b/pkgs/development/tools/rust/cargo-llvm-cov/default.nix index 681242cbf898..b1cb0c300552 100644 --- a/pkgs/development/tools/rust/cargo-llvm-cov/default.nix +++ b/pkgs/development/tools/rust/cargo-llvm-cov/default.nix @@ -39,6 +39,6 @@ rustPlatform.buildRustPackage rec { library (e.g. fenix or rust-overlay) ''; license = with lib.licenses; [ asl20 /* or */ mit ]; - maintainers = with lib.maintainers; [ wucke13 ]; + maintainers = with lib.maintainers; [ wucke13 matthiasbeyer ]; }; } diff --git a/pkgs/development/tools/rust/cargo-llvm-lines/default.nix b/pkgs/development/tools/rust/cargo-llvm-lines/default.nix index 8ccc4d9a29ec..3ad67d41c3a9 100644 --- a/pkgs/development/tools/rust/cargo-llvm-lines/default.nix +++ b/pkgs/development/tools/rust/cargo-llvm-lines/default.nix @@ -18,6 +18,6 @@ rustPlatform.buildRustPackage rec { homepage = "https://github.com/dtolnay/cargo-llvm-lines"; changelog = "https://github.com/dtolnay/cargo-llvm-lines/releases/tag/${src.rev}"; license = with licenses; [ asl20 /* or */ mit ]; - maintainers = with maintainers; [ figsoda ]; + maintainers = with maintainers; [ figsoda matthiasbeyer ]; }; } diff --git a/pkgs/development/tools/rust/cargo-lock/default.nix b/pkgs/development/tools/rust/cargo-lock/default.nix index 01769487e536..af5f5eae1719 100644 --- a/pkgs/development/tools/rust/cargo-lock/default.nix +++ b/pkgs/development/tools/rust/cargo-lock/default.nix @@ -18,6 +18,6 @@ rustPlatform.buildRustPackage rec { homepage = "https://github.com/rustsec/rustsec/tree/main/cargo-lock"; changelog = "https://github.com/rustsec/rustsec/blob/cargo-lock/v${version}/cargo-lock/CHANGELOG.md"; license = with licenses; [ asl20 /* or */ mit ]; - maintainers = with maintainers; [ figsoda ]; + maintainers = with maintainers; [ figsoda matthiasbeyer ]; }; } diff --git a/pkgs/development/tools/rust/cargo-machete/default.nix b/pkgs/development/tools/rust/cargo-machete/default.nix index b68aecced887..5078ddf6043c 100644 --- a/pkgs/development/tools/rust/cargo-machete/default.nix +++ b/pkgs/development/tools/rust/cargo-machete/default.nix @@ -24,6 +24,6 @@ rustPlatform.buildRustPackage rec { homepage = "https://github.com/bnjbvr/cargo-machete"; changelog = "https://github.com/bnjbvr/cargo-machete/blob/${src.rev}/CHANGELOG.md"; license = licenses.mit; - maintainers = with maintainers; [ figsoda ]; + maintainers = with maintainers; [ figsoda matthiasbeyer ]; }; } diff --git a/pkgs/development/tools/rust/cargo-modules/default.nix b/pkgs/development/tools/rust/cargo-modules/default.nix index 50ffa47e0d3c..be530890da51 100644 --- a/pkgs/development/tools/rust/cargo-modules/default.nix +++ b/pkgs/development/tools/rust/cargo-modules/default.nix @@ -22,6 +22,6 @@ rustPlatform.buildRustPackage rec { homepage = "https://github.com/regexident/cargo-modules"; changelog = "https://github.com/regexident/cargo-modules/blob/${version}/CHANGELOG.md"; license = with licenses; [ mpl20 ]; - maintainers = with maintainers; [ figsoda rvarago ]; + maintainers = with maintainers; [ figsoda rvarago matthiasbeyer ]; }; } diff --git a/pkgs/development/tools/rust/cargo-msrv/default.nix b/pkgs/development/tools/rust/cargo-msrv/default.nix index e8476474c03f..f1b9e8eb0ec0 100644 --- a/pkgs/development/tools/rust/cargo-msrv/default.nix +++ b/pkgs/development/tools/rust/cargo-msrv/default.nix @@ -49,6 +49,6 @@ rustPlatform.buildRustPackage rec { description = "Cargo subcommand \"msrv\": assists with finding your minimum supported Rust version (MSRV)"; homepage = "https://github.com/foresterre/cargo-msrv"; license = with licenses; [ asl20 /* or */ mit ]; - maintainers = with maintainers; [ otavio ]; + maintainers = with maintainers; [ otavio matthiasbeyer ]; }; } diff --git a/pkgs/development/tools/rust/cargo-nextest/default.nix b/pkgs/development/tools/rust/cargo-nextest/default.nix index ba38d5be85b6..c8dea37daf06 100644 --- a/pkgs/development/tools/rust/cargo-nextest/default.nix +++ b/pkgs/development/tools/rust/cargo-nextest/default.nix @@ -30,6 +30,6 @@ rustPlatform.buildRustPackage rec { homepage = "https://github.com/nextest-rs/nextest"; changelog = "https://nexte.st/CHANGELOG.html"; license = with licenses; [ mit asl20 ]; - maintainers = with maintainers; [ ekleog figsoda ]; + maintainers = with maintainers; [ ekleog figsoda matthiasbeyer ]; }; } diff --git a/pkgs/development/tools/rust/cargo-outdated/default.nix b/pkgs/development/tools/rust/cargo-outdated/default.nix index c30cd5925d8d..40114a810d26 100644 --- a/pkgs/development/tools/rust/cargo-outdated/default.nix +++ b/pkgs/development/tools/rust/cargo-outdated/default.nix @@ -35,6 +35,6 @@ rustPlatform.buildRustPackage rec { homepage = "https://github.com/kbknapp/cargo-outdated"; changelog = "https://github.com/kbknapp/cargo-outdated/blob/v${version}/CHANGELOG.md"; license = with licenses; [ asl20 /* or */ mit ]; - maintainers = with maintainers; [ ivan ]; + maintainers = with maintainers; [ ivan matthiasbeyer ]; }; } diff --git a/pkgs/development/tools/rust/cargo-readme/default.nix b/pkgs/development/tools/rust/cargo-readme/default.nix index fb45763b50be..35d3fb133e85 100644 --- a/pkgs/development/tools/rust/cargo-readme/default.nix +++ b/pkgs/development/tools/rust/cargo-readme/default.nix @@ -29,6 +29,6 @@ rustPlatform.buildRustPackage rec { description = "Generate README.md from docstrings"; homepage = "https://github.com/livioribeiro/cargo-readme"; license = with licenses; [ mit asl20 ]; - maintainers = with maintainers; [ baloo ]; + maintainers = with maintainers; [ baloo matthiasbeyer ]; }; } diff --git a/pkgs/development/tools/rust/cargo-rr/default.nix b/pkgs/development/tools/rust/cargo-rr/default.nix index f36205bec9c9..5ffbb9fe992a 100644 --- a/pkgs/development/tools/rust/cargo-rr/default.nix +++ b/pkgs/development/tools/rust/cargo-rr/default.nix @@ -36,6 +36,6 @@ rustPlatform.buildRustPackage rec { description = "Cargo subcommand \"rr\": a light wrapper around rr, the time-travelling debugger"; homepage = "https://github.com/danielzfranklin/cargo-rr"; license = with licenses; [ mit ]; - maintainers = with maintainers; [ otavio ]; + maintainers = with maintainers; [ otavio matthiasbeyer ]; }; } diff --git a/pkgs/development/tools/rust/cargo-show-asm/default.nix b/pkgs/development/tools/rust/cargo-show-asm/default.nix index d0ec880ac2e3..88107c0dbc6e 100644 --- a/pkgs/development/tools/rust/cargo-show-asm/default.nix +++ b/pkgs/development/tools/rust/cargo-show-asm/default.nix @@ -41,7 +41,7 @@ rustPlatform.buildRustPackage rec { homepage = "https://github.com/pacak/cargo-show-asm"; changelog = "https://github.com/pacak/cargo-show-asm/blob/${version}/Changelog.md"; license = with licenses; [ asl20 mit ]; - maintainers = with maintainers; [ figsoda oxalica ]; + maintainers = with maintainers; [ figsoda oxalica matthiasbeyer ]; mainProgram = "cargo-asm"; }; } diff --git a/pkgs/development/tools/rust/cargo-sort/default.nix b/pkgs/development/tools/rust/cargo-sort/default.nix index f3ee10065132..bb0d96bdd638 100644 --- a/pkgs/development/tools/rust/cargo-sort/default.nix +++ b/pkgs/development/tools/rust/cargo-sort/default.nix @@ -18,6 +18,6 @@ rustPlatform.buildRustPackage rec { homepage = "https://github.com/devinr528/cargo-sort"; changelog = "https://github.com/devinr528/cargo-sort/blob/v${version}/changelog.md"; license = with licenses; [ mit /* or */ asl20 ]; - maintainers = with maintainers; [ figsoda ]; + maintainers = with maintainers; [ figsoda matthiasbeyer ]; }; } diff --git a/pkgs/development/tools/rust/cargo-spellcheck/default.nix b/pkgs/development/tools/rust/cargo-spellcheck/default.nix index 6e4051618bc1..679dfc54e80f 100644 --- a/pkgs/development/tools/rust/cargo-spellcheck/default.nix +++ b/pkgs/development/tools/rust/cargo-spellcheck/default.nix @@ -33,6 +33,6 @@ rustPlatform.buildRustPackage rec { homepage = "https://github.com/drahnr/cargo-spellcheck"; changelog = "https://github.com/drahnr/cargo-spellcheck/blob/v${version}/CHANGELOG.md"; license = with licenses; [ asl20 /* or */ mit ]; - maintainers = with maintainers; [ newam ]; + maintainers = with maintainers; [ newam matthiasbeyer ]; }; } diff --git a/pkgs/development/tools/rust/cargo-supply-chain/default.nix b/pkgs/development/tools/rust/cargo-supply-chain/default.nix index 5865c98b11a9..bedbc17a22a6 100644 --- a/pkgs/development/tools/rust/cargo-supply-chain/default.nix +++ b/pkgs/development/tools/rust/cargo-supply-chain/default.nix @@ -27,6 +27,6 @@ rustPlatform.buildRustPackage rec { homepage = "https://github.com/rust-secure-code/cargo-supply-chain"; changelog = "https://github.com/rust-secure-code/cargo-supply-chain/blob/${src.rev}/CHANGELOG.md"; license = with licenses; [ asl20 mit zlib ]; # any of three - maintainers = with maintainers; [ figsoda ]; + maintainers = with maintainers; [ figsoda matthiasbeyer ]; }; } diff --git a/pkgs/development/tools/rust/cargo-sweep/default.nix b/pkgs/development/tools/rust/cargo-sweep/default.nix index 9efa337f1b19..2b682000c1b1 100644 --- a/pkgs/development/tools/rust/cargo-sweep/default.nix +++ b/pkgs/development/tools/rust/cargo-sweep/default.nix @@ -17,6 +17,6 @@ rustPlatform.buildRustPackage rec { description = "A Cargo subcommand for cleaning up unused build files generated by Cargo"; homepage = "https://github.com/holmgr/cargo-sweep"; license = licenses.mit; - maintainers = with maintainers; [ xrelkd ]; + maintainers = with maintainers; [ xrelkd matthiasbeyer ]; }; } diff --git a/pkgs/development/tools/rust/cargo-sync-readme/default.nix b/pkgs/development/tools/rust/cargo-sync-readme/default.nix index 904404c65c30..a761e42c1540 100644 --- a/pkgs/development/tools/rust/cargo-sync-readme/default.nix +++ b/pkgs/development/tools/rust/cargo-sync-readme/default.nix @@ -18,6 +18,6 @@ rustPlatform.buildRustPackage rec { homepage = "https://github.com/phaazon/cargo-sync-readme"; changelog = "https://github.com/phaazon/cargo-sync-readme/blob/${version}/CHANGELOG.md"; license = licenses.bsd3; - maintainers = with maintainers; [ b4dm4n ]; + maintainers = with maintainers; [ b4dm4n matthiasbeyer ]; }; } diff --git a/pkgs/development/tools/rust/cargo-tally/default.nix b/pkgs/development/tools/rust/cargo-tally/default.nix index 63e6a8456f6c..b340dc338a27 100644 --- a/pkgs/development/tools/rust/cargo-tally/default.nix +++ b/pkgs/development/tools/rust/cargo-tally/default.nix @@ -22,6 +22,6 @@ rustPlatform.buildRustPackage rec { homepage = "https://github.com/dtolnay/cargo-tally"; changelog = "https://github.com/dtolnay/cargo-tally/releases/tag/${version}"; license = with licenses; [ asl20 /* or */ mit ]; - maintainers = with maintainers; [ figsoda ]; + maintainers = with maintainers; [ figsoda matthiasbeyer ]; }; } diff --git a/pkgs/development/tools/rust/cargo-temp/default.nix b/pkgs/development/tools/rust/cargo-temp/default.nix index c138fb6292d1..706e33235c6d 100644 --- a/pkgs/development/tools/rust/cargo-temp/default.nix +++ b/pkgs/development/tools/rust/cargo-temp/default.nix @@ -18,6 +18,6 @@ rustPlatform.buildRustPackage rec { homepage = "https://github.com/yozhgoor/cargo-temp"; changelog = "https://github.com/yozhgoor/cargo-temp/releases/tag/${src.rev}"; license = with licenses; [ mit /* or */ asl20 ]; - maintainers = with maintainers; [ figsoda ]; + maintainers = with maintainers; [ figsoda matthiasbeyer ]; }; } diff --git a/pkgs/development/tools/rust/cargo-toml-lint/default.nix b/pkgs/development/tools/rust/cargo-toml-lint/default.nix index bcaf9c158f59..187dc636afbc 100644 --- a/pkgs/development/tools/rust/cargo-toml-lint/default.nix +++ b/pkgs/development/tools/rust/cargo-toml-lint/default.nix @@ -19,6 +19,6 @@ rustPlatform.buildRustPackage rec { homepage = "https://github.com/fuellabs/cargo-toml-lint"; changelog = "https://github.com/fuellabs/cargo-toml-lint/releases/tag/v${version}"; license = with licenses; [ asl20 /* or */ mit ]; - maintainers = with maintainers; [ mitchmindtree ]; + maintainers = with maintainers; [ mitchmindtree matthiasbeyer ]; }; } diff --git a/pkgs/development/tools/rust/cargo-udeps/default.nix b/pkgs/development/tools/rust/cargo-udeps/default.nix index 5c7a45fba5e2..8ff6c841758e 100644 --- a/pkgs/development/tools/rust/cargo-udeps/default.nix +++ b/pkgs/development/tools/rust/cargo-udeps/default.nix @@ -26,6 +26,6 @@ rustPlatform.buildRustPackage rec { description = "Find unused dependencies in Cargo.toml"; homepage = "https://github.com/est31/cargo-udeps"; license = licenses.mit; - maintainers = with maintainers; [ b4dm4n ]; + maintainers = with maintainers; [ b4dm4n matthiasbeyer ]; }; } diff --git a/pkgs/development/tools/rust/cargo-ui/default.nix b/pkgs/development/tools/rust/cargo-ui/default.nix index 764648055bdb..7af23346f0fb 100644 --- a/pkgs/development/tools/rust/cargo-ui/default.nix +++ b/pkgs/development/tools/rust/cargo-ui/default.nix @@ -53,6 +53,6 @@ rustPlatform.buildRustPackage rec { homepage = "https://github.com/slint-ui/cargo-ui"; changelog = "https://github.com/slint-ui/cargo-ui/blob/v${version}/CHANGELOG.md"; license = with licenses; [ mit asl20 gpl3Only ]; - maintainers = with maintainers; [ figsoda ]; + maintainers = with maintainers; [ figsoda matthiasbeyer ]; }; } diff --git a/pkgs/development/tools/rust/cargo-unused-features/default.nix b/pkgs/development/tools/rust/cargo-unused-features/default.nix index b320c2768eca..f6e3057ecffe 100644 --- a/pkgs/development/tools/rust/cargo-unused-features/default.nix +++ b/pkgs/development/tools/rust/cargo-unused-features/default.nix @@ -38,7 +38,7 @@ rustPlatform.buildRustPackage rec { description = "A tool to find potential unused enabled feature flags and prune them"; homepage = "https://github.com/timonpost/cargo-unused-features"; license = licenses.mit; - maintainers = with maintainers; [ figsoda ]; + maintainers = with maintainers; [ figsoda matthiasbeyer ]; mainProgram = "unused-features"; }; } diff --git a/pkgs/development/tools/rust/cargo-update/default.nix b/pkgs/development/tools/rust/cargo-update/default.nix index d3b5abbc0273..f9ec56b49d90 100644 --- a/pkgs/development/tools/rust/cargo-update/default.nix +++ b/pkgs/development/tools/rust/cargo-update/default.nix @@ -60,6 +60,6 @@ rustPlatform.buildRustPackage rec { homepage = "https://github.com/nabijaczleweli/cargo-update"; changelog = "https://github.com/nabijaczleweli/cargo-update/releases/tag/v${version}"; license = licenses.mit; - maintainers = with maintainers; [ gerschtli Br1ght0ne johntitor ]; + maintainers = with maintainers; [ gerschtli Br1ght0ne johntitor matthiasbeyer ]; }; } diff --git a/pkgs/development/tools/rust/cargo-valgrind/default.nix b/pkgs/development/tools/rust/cargo-valgrind/default.nix index 7b0647c14c45..aa6b38bf398b 100644 --- a/pkgs/development/tools/rust/cargo-valgrind/default.nix +++ b/pkgs/development/tools/rust/cargo-valgrind/default.nix @@ -38,6 +38,6 @@ rustPlatform.buildRustPackage rec { description = ''Cargo subcommand "valgrind": runs valgrind and collects its output in a helpful manner''; homepage = "https://github.com/jfrimmel/cargo-valgrind"; license = with licenses; [ asl20 /* or */ mit ]; - maintainers = with maintainers; [ otavio ]; + maintainers = with maintainers; [ otavio matthiasbeyer ]; }; } diff --git a/pkgs/development/tools/rust/cargo-watch/default.nix b/pkgs/development/tools/rust/cargo-watch/default.nix index 2ed8f739a570..85661f78e9fc 100644 --- a/pkgs/development/tools/rust/cargo-watch/default.nix +++ b/pkgs/development/tools/rust/cargo-watch/default.nix @@ -34,6 +34,6 @@ rustPlatform.buildRustPackage rec { description = "A Cargo subcommand for watching over Cargo project's source"; homepage = "https://github.com/watchexec/cargo-watch"; license = licenses.cc0; - maintainers = with maintainers; [ xrelkd ivan ]; + maintainers = with maintainers; [ xrelkd ivan matthiasbeyer ]; }; } diff --git a/pkgs/development/tools/rust/cargo-whatfeatures/default.nix b/pkgs/development/tools/rust/cargo-whatfeatures/default.nix index e5b2a34b4d1d..b2a5993343ef 100644 --- a/pkgs/development/tools/rust/cargo-whatfeatures/default.nix +++ b/pkgs/development/tools/rust/cargo-whatfeatures/default.nix @@ -22,6 +22,6 @@ rustPlatform.buildRustPackage rec { description = "A simple cargo plugin to get a list of features for a specific crate"; homepage = "https://github.com/museun/cargo-whatfeatures"; license = with licenses; [ mit asl20 ]; - maintainers = with maintainers; [ ivan-babrou ]; + maintainers = with maintainers; [ ivan-babrou matthiasbeyer ]; }; } diff --git a/pkgs/development/tools/rust/cargo-workspaces/default.nix b/pkgs/development/tools/rust/cargo-workspaces/default.nix index 06a1cc09b65a..0c5ded210275 100644 --- a/pkgs/development/tools/rust/cargo-workspaces/default.nix +++ b/pkgs/development/tools/rust/cargo-workspaces/default.nix @@ -44,6 +44,6 @@ rustPlatform.buildRustPackage rec { ''; homepage = "https://github.com/pksunkara/cargo-workspaces"; license = licenses.mit; - maintainers = with maintainers; [ macalinao ]; + maintainers = with maintainers; [ macalinao matthiasbeyer ]; }; } diff --git a/pkgs/development/tools/yq-go/default.nix b/pkgs/development/tools/yq-go/default.nix index c471a118ac83..a18f88d6d158 100644 --- a/pkgs/development/tools/yq-go/default.nix +++ b/pkgs/development/tools/yq-go/default.nix @@ -2,16 +2,16 @@ buildGoModule rec { pname = "yq-go"; - version = "4.34.2"; + version = "4.35.1"; src = fetchFromGitHub { owner = "mikefarah"; repo = "yq"; rev = "v${version}"; - hash = "sha256-g+IqMYUgsab3bC9SX7Kgo6UGKfMQRtxTUxPg6MgFsXg="; + hash = "sha256-L0F3e2SsBAI6b3lrBJl9W2392ZlW0jHwJJ7MlvJ64es="; }; - vendorHash = "sha256-iI0BHSXiOTm5TlLWTDPVlZRGdTHJS9aNzEXimk8xJUM="; + vendorHash = "sha256-XJW7ftx+V7H22EraQZlRFi+Li8fsl7ZALVnaiuE1rXI="; nativeBuildInputs = [ installShellFiles ]; diff --git a/pkgs/games/keeperrl/default.nix b/pkgs/games/keeperrl/default.nix index 8fb6d563329b..c66ffdee920d 100644 --- a/pkgs/games/keeperrl/default.nix +++ b/pkgs/games/keeperrl/default.nix @@ -13,18 +13,18 @@ , libtheora , unfree_assets ? false }: -stdenv.mkDerivation rec { +let pname = "keeperrl"; version = "alpha34"; - free-src = fetchFromGitHub { + free_src = fetchFromGitHub { owner = "miki151"; - repo = "keeperrl"; + repo = pname; rev = version; sha256 = "sha256-0sww+ppctXvxMouclG3OdXpcNgrrOZJw9z8s2GhJ+IE="; }; - assets = if unfree_assets then requireFile rec { + assets = requireFile rec { name = "keeperrl_data_${version}.tar.gz"; message = '' This nix expression requires that the KeeperRL art assets are already @@ -39,11 +39,15 @@ stdenv.mkDerivation rec { "nix-prefetch-url file://\$PWD/${name}". ''; sha256 = "0115pxdzdyma2vicxgr0j21pp82gxdyrlj090s8ihp0b50f0nlll"; - } else null; + }; +in - sourceRoot = free-src.name; +stdenv.mkDerivation { + inherit pname version; - srcs = [ free-src ] ++ lib.optional unfree_assets assets; + srcs = [ free_src ] ++ lib.optional unfree_assets assets; + + sourceRoot = free_src.name; postUnpack = lib.optionalString unfree_assets '' mv data $sourceRoot diff --git a/pkgs/misc/moonfire-nvr/default.nix b/pkgs/misc/moonfire-nvr/default.nix index 27b7ae7766db..8c9de0e7da9d 100644 --- a/pkgs/misc/moonfire-nvr/default.nix +++ b/pkgs/misc/moonfire-nvr/default.nix @@ -21,7 +21,7 @@ let ui = buildNpmPackage { inherit version src; pname = "${pname}-ui"; - sourceRoot = "source/ui"; + sourceRoot = "${src.name}/ui"; npmDepsHash = "sha256-IpZWgMo6Y3vRn9h495ifMB3tQxobLeTLC0xXS1vrKLA="; installPhase = '' runHook preInstall @@ -34,7 +34,7 @@ let in rustPlatform.buildRustPackage { inherit pname version src; - sourceRoot = "source/server"; + sourceRoot = "${src.name}/server"; cargoLock = { lockFile = ./Cargo.lock; diff --git a/pkgs/misc/t-rec/default.nix b/pkgs/misc/t-rec/default.nix index 2bbfeda4d321..3d6317f71c0d 100644 --- a/pkgs/misc/t-rec/default.nix +++ b/pkgs/misc/t-rec/default.nix @@ -32,6 +32,6 @@ rustPlatform.buildRustPackage rec { description = "Blazingly fast terminal recorder that generates animated gif images for the web written in rust"; homepage = "https://github.com/sassman/t-rec-rs"; license = with licenses; [ gpl3Only ]; - maintainers = [ maintainers.hoverbear ]; + maintainers = with maintainers; [ hoverbear matthiasbeyer ]; }; } diff --git a/pkgs/misc/uq/default.nix b/pkgs/misc/uq/default.nix index e0c62ca92cab..81c09685be8b 100755 --- a/pkgs/misc/uq/default.nix +++ b/pkgs/misc/uq/default.nix @@ -20,6 +20,6 @@ rustPlatform.buildRustPackage rec { description = "A simple, user-friendly alternative to sort | uniq"; homepage = "https://github.com/lostutils/uq"; license = licenses.mit; - maintainers = with maintainers; [ doronbehar ]; + maintainers = with maintainers; [ doronbehar matthiasbeyer ]; }; } diff --git a/pkgs/misc/wiki-tui/default.nix b/pkgs/misc/wiki-tui/default.nix index 89959e3fcf78..76059258e0ff 100644 --- a/pkgs/misc/wiki-tui/default.nix +++ b/pkgs/misc/wiki-tui/default.nix @@ -37,6 +37,6 @@ rustPlatform.buildRustPackage rec { homepage = "https://github.com/builditluc/wiki-tui"; changelog = "https://github.com/Builditluc/wiki-tui/releases/tag/v${version}"; license = licenses.mit; - maintainers = with maintainers; [ lom builditluc ]; + maintainers = with maintainers; [ lom builditluc matthiasbeyer ]; }; } diff --git a/pkgs/os-specific/darwin/dark-mode-notify/default.nix b/pkgs/os-specific/darwin/dark-mode-notify/default.nix new file mode 100644 index 000000000000..31d1a2c8d8b9 --- /dev/null +++ b/pkgs/os-specific/darwin/dark-mode-notify/default.nix @@ -0,0 +1,40 @@ +{ lib +, fetchFromGitHub +, stdenv +, swift +, swiftpm +, darwin +}: + +stdenv.mkDerivation (final: { + pname = "dark-mode-notify"; + version = "unstable-2022-07-18"; + + src = fetchFromGitHub { + owner = "bouk"; + repo = "dark-mode-notify"; + rev = "4d7fe211f81c5b67402fad4bed44995344a260d1"; + hash = "sha256-LsAQ5v5jgJw7KsJnQ3Mh6+LNj1EMHICMoD5WzF3hRmU="; + }; + + nativeBuildInputs = [ + swift + swiftpm + ]; + + buildInputs = with darwin.apple_sdk.frameworks; [ + Foundation + Cocoa + ]; + + makeFlags = [ "prefix=$(out)" ]; + + meta = { + description = "Run a script whenever dark mode changes in macOS"; + homepage = "https://github.com/bouk/dark-mode-notify"; + # Doesn't build on x86_64 because of some CoreGraphics issue, even with SDK 11.0 + platforms = [ "aarch64-darwin" ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ YorikSar ]; + }; +}) diff --git a/pkgs/os-specific/linux/kernel/linux-4.14.nix b/pkgs/os-specific/linux/kernel/linux-4.14.nix index b285ab30f342..1ac89334fb15 100644 --- a/pkgs/os-specific/linux/kernel/linux-4.14.nix +++ b/pkgs/os-specific/linux/kernel/linux-4.14.nix @@ -3,7 +3,7 @@ with lib; buildLinux (args // rec { - version = "4.14.321"; + version = "4.14.322"; # modDirVersion needs to be x.y.z, will automatically add .0 if needed modDirVersion = versions.pad 3 version; @@ -13,6 +13,6 @@ buildLinux (args // rec { src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; - sha256 = "058p6ba24gx0q1fxyf5gnbnl49r82iaz97z01h7c4z2lgba2pqyh"; + sha256 = "1r71g5p0cnbi0nixv91nyhv24dqmvh49rqb2lnbhsdq81fqm8ssm"; }; } // (args.argsOverride or {})) diff --git a/pkgs/os-specific/linux/kernel/linux-4.19.nix b/pkgs/os-specific/linux/kernel/linux-4.19.nix index 938a790abaeb..0dcf967ddda2 100644 --- a/pkgs/os-specific/linux/kernel/linux-4.19.nix +++ b/pkgs/os-specific/linux/kernel/linux-4.19.nix @@ -3,7 +3,7 @@ with lib; buildLinux (args // rec { - version = "4.19.290"; + version = "4.19.291"; # modDirVersion needs to be x.y.z, will automatically add .0 if needed modDirVersion = versions.pad 3 version; @@ -13,6 +13,6 @@ buildLinux (args // rec { src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; - sha256 = "1kqflbf78aamnbdc2v973qk9ymignl1cy6q0rpw865brgm5y59cz"; + sha256 = "0cxmq8mrkw179jb8sqvad3dskllwn579g2lxcjn21jyqsf85nwz6"; }; } // (args.argsOverride or {})) diff --git a/pkgs/os-specific/linux/kernel/linux-5.10.nix b/pkgs/os-specific/linux/kernel/linux-5.10.nix index 3ef8b3238ac0..43307d140397 100644 --- a/pkgs/os-specific/linux/kernel/linux-5.10.nix +++ b/pkgs/os-specific/linux/kernel/linux-5.10.nix @@ -3,7 +3,7 @@ with lib; buildLinux (args // rec { - version = "5.10.189"; + version = "5.10.190"; # modDirVersion needs to be x.y.z, will automatically add .0 if needed modDirVersion = versions.pad 3 version; @@ -13,6 +13,6 @@ buildLinux (args // rec { src = fetchurl { url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; - sha256 = "1jcqj0yh8k81a02y8wq1psy109w9s0r5j5zgm8gmf5ylw5m520sc"; + sha256 = "15zmz9pg91gph2dhigjf1z3w6gkv1kwslki5dpzhgzs03pq3swi9"; }; } // (args.argsOverride or {})) diff --git a/pkgs/os-specific/linux/kernel/linux-5.15.nix b/pkgs/os-specific/linux/kernel/linux-5.15.nix index ec49d21fab7f..020b8f64da37 100644 --- a/pkgs/os-specific/linux/kernel/linux-5.15.nix +++ b/pkgs/os-specific/linux/kernel/linux-5.15.nix @@ -3,7 +3,7 @@ with lib; buildLinux (args // rec { - version = "5.15.125"; + version = "5.15.126"; # modDirVersion needs to be x.y.z, will automatically add .0 if needed modDirVersion = versions.pad 3 version; @@ -13,6 +13,6 @@ buildLinux (args // rec { src = fetchurl { url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; - sha256 = "1izyv1ibiy4dapwb8745dshfbb9b6xqyz77l6mhkmlkcnx33h3qm"; + sha256 = "0vzdncrvwqxzjkpgf3gjxvl8iwz92szfyzc33cayx28ghjwsmx5d"; }; } // (args.argsOverride or { })) diff --git a/pkgs/os-specific/linux/kernel/linux-5.4.nix b/pkgs/os-specific/linux/kernel/linux-5.4.nix index eda901585455..10784fb1a0c7 100644 --- a/pkgs/os-specific/linux/kernel/linux-5.4.nix +++ b/pkgs/os-specific/linux/kernel/linux-5.4.nix @@ -3,7 +3,7 @@ with lib; buildLinux (args // rec { - version = "5.4.252"; + version = "5.4.253"; # modDirVersion needs to be x.y.z, will automatically add .0 if needed modDirVersion = versions.pad 3 version; @@ -13,6 +13,6 @@ buildLinux (args // rec { src = fetchurl { url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; - sha256 = "0rw2b1rr3rb5498rv1zmj0ml3p67awrvd2ch66kp80wl4dsmhy1s"; + sha256 = "1rr6mnkbw6gwdm9bqjhf4z2xqr458fn2qdv5b4mgm65a15gvmchz"; }; } // (args.argsOverride or {})) diff --git a/pkgs/os-specific/linux/kernel/linux-6.1.nix b/pkgs/os-specific/linux/kernel/linux-6.1.nix index 92692d57af03..3b796e510a81 100644 --- a/pkgs/os-specific/linux/kernel/linux-6.1.nix +++ b/pkgs/os-specific/linux/kernel/linux-6.1.nix @@ -3,7 +3,7 @@ with lib; buildLinux (args // rec { - version = "6.1.44"; + version = "6.1.45"; # modDirVersion needs to be x.y.z, will automatically add .0 if needed modDirVersion = versions.pad 3 version; @@ -13,6 +13,6 @@ buildLinux (args // rec { src = fetchurl { url = "mirror://kernel/linux/kernel/v6.x/linux-${version}.tar.xz"; - sha256 = "19d1fdvdp8lc5mvlcawd8hcpzjh7pdr5gq6fczhjl20xw4gx8l9f"; + sha256 = "14piy4cwv18a0yqp4gkrvr51z4zccyhab29n9ybxinkxdqwl68xx"; }; } // (args.argsOverride or { })) diff --git a/pkgs/os-specific/linux/kernel/linux-6.4.nix b/pkgs/os-specific/linux/kernel/linux-6.4.nix index 47e927fb39b1..54e83d676c39 100644 --- a/pkgs/os-specific/linux/kernel/linux-6.4.nix +++ b/pkgs/os-specific/linux/kernel/linux-6.4.nix @@ -3,7 +3,7 @@ with lib; buildLinux (args // rec { - version = "6.4.9"; + version = "6.4.10"; # modDirVersion needs to be x.y.z, will automatically add .0 if needed modDirVersion = versions.pad 3 version; @@ -13,6 +13,6 @@ buildLinux (args // rec { src = fetchurl { url = "mirror://kernel/linux/kernel/v6.x/linux-${version}.tar.xz"; - sha256 = "17ycanx738bgxg5wn536kbad4zzvj5ngygp9qhvz76draaca5f5q"; + sha256 = "0fgjym6y0zj7wz1byqhxmv3pc3wq412vm1dxbj4gv23pm6r3y2wq"; }; } // (args.argsOverride or { })) diff --git a/pkgs/os-specific/linux/kernel/linux-rt-5.15.nix b/pkgs/os-specific/linux/kernel/linux-rt-5.15.nix index 08fefe0218b3..d810d64527cb 100644 --- a/pkgs/os-specific/linux/kernel/linux-rt-5.15.nix +++ b/pkgs/os-specific/linux/kernel/linux-rt-5.15.nix @@ -6,7 +6,7 @@ , ... } @ args: let - version = "5.15.119-rt65"; # updated by ./update-rt.sh + version = "5.15.125-rt66"; # updated by ./update-rt.sh branch = lib.versions.majorMinor version; kversion = builtins.elemAt (lib.splitString "-" version) 0; in buildLinux (args // { @@ -18,14 +18,14 @@ in buildLinux (args // { src = fetchurl { url = "mirror://kernel/linux/kernel/v5.x/linux-${kversion}.tar.xz"; - sha256 = "1kygpqf6sgkrwg77sv01di23c3n3rn5d44g8k5apx5106pys19bs"; + sha256 = "1izyv1ibiy4dapwb8745dshfbb9b6xqyz77l6mhkmlkcnx33h3qm"; }; kernelPatches = let rt-patch = { name = "rt"; patch = fetchurl { url = "mirror://kernel/linux/kernel/projects/rt/${branch}/older/patch-${version}.patch.xz"; - sha256 = "1lkr3l0gad30brdq7kdgvqr3zz4xrd7ai8jh94di6l5krhi7s1w0"; + sha256 = "0ildcydqy980b2rw38q07dbf8z61l0dfjddqyvvyfq5gd6qkmcsb"; }; }; in [ rt-patch ] ++ kernelPatches; diff --git a/pkgs/os-specific/linux/trelay/default.nix b/pkgs/os-specific/linux/trelay/default.nix index 48148a0b1a0d..aea5b57dfca1 100644 --- a/pkgs/os-specific/linux/trelay/default.nix +++ b/pkgs/os-specific/linux/trelay/default.nix @@ -2,7 +2,7 @@ let version = "22.03.5"; in -stdenv.mkDerivation { +stdenv.mkDerivation (finalAttrs: { pname = "trelay"; version = "${version}-${kernel.version}"; @@ -13,7 +13,7 @@ stdenv.mkDerivation { sparseCheckout = [ "package/kernel/trelay/src" ]; }; - sourceRoot = "openwrt/package/kernel/trelay/src"; + sourceRoot = "${finalAttrs.src.name}/package/kernel/trelay/src"; hardeningDisable = [ "pic" "format" ]; nativeBuildInputs = [ kmod ] ++ kernel.moduleBuildDependencies; @@ -43,4 +43,4 @@ stdenv.mkDerivation { platforms = platforms.linux; broken = lib.versionOlder kernel.version "5.10"; }; -} +}) diff --git a/pkgs/servers/frr/clippy-helper.nix b/pkgs/servers/frr/clippy-helper.nix new file mode 100644 index 000000000000..bb5887bda0f3 --- /dev/null +++ b/pkgs/servers/frr/clippy-helper.nix @@ -0,0 +1,59 @@ +{ lib +, stdenv +, frrSource +, frrVersion + + # build time +, autoreconfHook +, flex +, bison +, pkg-config +, libelf +, perl +, python3 + +}: + +stdenv.mkDerivation rec { + pname = "frr-clippy-helper"; + version = frrVersion; + + src = frrSource; + + nativeBuildInputs = [ + autoreconfHook + bison + flex + perl + pkg-config + ]; + + buildInputs = [ + libelf + python3 + ]; + + configureFlags = [ + "--enable-clippy-only" + ]; + + installPhase = '' + mkdir -p $out/bin + cp lib/clippy $out/bin + ''; + + enableParallelBuilding = true; + + meta = with lib; { + homepage = "https://frrouting.org/"; + description = "FRR routing daemon suite: CLI helper tool clippy"; + longDescription = '' + This small tool is used to support generating CLI code for FRR. It is split out here, + to support cross-compiling, because it needs to be compiled with the build system toolchain + and not the target host one. + ''; + license = with licenses; [ gpl2Plus lgpl21Plus ]; + maintainers = with maintainers; [ thillux ]; + platforms = platforms.unix; + }; +} diff --git a/pkgs/servers/frr/default.nix b/pkgs/servers/frr/default.nix index f50e3c0b2a8c..87fd2064a563 100644 --- a/pkgs/servers/frr/default.nix +++ b/pkgs/servers/frr/default.nix @@ -9,6 +9,7 @@ , perl , pkg-config , texinfo +, buildPackages # runtime , c-ares @@ -28,8 +29,58 @@ # tests , nettools , nixosTests + +# FRR's configure.ac gets SNMP options by executing net-snmp-config on the build host +# This leads to compilation errors when cross compiling. +# E.g. net-snmp-config for x86_64 does not return the ARM64 paths. +# +# SNMP_LIBS="`${NETSNMP_CONFIG} --agent-libs`" +# SNMP_CFLAGS="`${NETSNMP_CONFIG} --base-cflags`" +, snmpSupport ? stdenv.buildPlatform.canExecute stdenv.hostPlatform + +# other general options besides snmp support +, rpkiSupport ? true +, numMultipath ? 64 +, watchfrrSupport ? true +, cumulusSupport ? false +, datacenterSupport ? true +, rtadvSupport ? true +, irdpSupport ? true +, routeReplacementSupport ? true + +# routing daemon options +, bgpdSupport ? true +, ripdSupport ? true +, ripngdSupport ? true +, ospfdSupport ? true +, ospf6dSupport ? true +, ldpdSupport ? true +, nhrpdSupport ? true +, eigrpdSupport ? true +, babeldSupport ? true +, isisdSupport ? true +, pimdSupport ? true +, pim6dSupport ? true +, sharpdSupport ? true +, fabricdSupport ? true +, vrrpdSupport ? true +, pathdSupport ? true +, bfddSupport ? true +, pbrdSupport ? true +, staticdSupport ? true + +# BGP options +, bgpAnnounce ? true +, bgpBmp ? true +, bgpVnc ? true + +# OSPF options +, ospfApi ? true }: +lib.warnIf (!(stdenv.buildPlatform.canExecute stdenv.hostPlatform)) + "cannot enable SNMP support due to cross-compilation issues with net-snmp-config" + stdenv.mkDerivation rec { pname = "frr"; version = "8.5.2"; @@ -57,7 +108,6 @@ stdenv.mkDerivation rec { libelf libunwind libyang - net-snmp openssl pam pcre2 @@ -66,21 +116,69 @@ stdenv.mkDerivation rec { rtrlib ] ++ lib.optionals stdenv.isLinux [ libcap + ] ++ lib.optionals snmpSupport [ + net-snmp ]; + # otherwise in cross-compilation: "configure: error: no working python version found" + depsBuildBuild = [ + buildPackages.python3 + ]; + + # cross-compiling: clippy is compiled with the build host toolchain, split it out to ease + # navigation in dependency hell + clippy-helper = buildPackages.callPackage ./clippy-helper.nix { frrVersion = version; frrSource = src; }; + configureFlags = [ + "--disable-silent-rules" "--disable-exampledir" "--enable-configfile-mask=0640" "--enable-group=frr" "--enable-logfile-mask=0640" - "--enable-multipath=64" - "--enable-snmp" + "--enable-multipath=${toString numMultipath}" "--enable-user=frr" "--enable-vty-group=frrvty" "--localstatedir=/run/frr" "--sbindir=$(out)/libexec/frr" "--sysconfdir=/etc/frr" - "--enable-rpki" + "--with-clippy=${clippy-helper}/bin/clippy" + # general options + (lib.strings.enableFeature snmpSupport "snmp") + (lib.strings.enableFeature rpkiSupport "rpki") + (lib.strings.enableFeature watchfrrSupport "watchfrr") + (lib.strings.enableFeature rtadvSupport "rtadv") + (lib.strings.enableFeature irdpSupport "irdp") + (lib.strings.enableFeature routeReplacementSupport "rr-semantics") + # routing protocols + (lib.strings.enableFeature bgpdSupport "bgpd") + (lib.strings.enableFeature ripdSupport "ripd") + (lib.strings.enableFeature ripngdSupport "ripngd") + (lib.strings.enableFeature ospfdSupport "ospfd") + (lib.strings.enableFeature ospf6dSupport "ospf6d") + (lib.strings.enableFeature ldpdSupport "ldpd") + (lib.strings.enableFeature nhrpdSupport "nhrpd") + (lib.strings.enableFeature eigrpdSupport "eigrpd") + (lib.strings.enableFeature babeldSupport "babeld") + (lib.strings.enableFeature isisdSupport "isisd") + (lib.strings.enableFeature pimdSupport "pimd") + (lib.strings.enableFeature pim6dSupport "pim6d") + (lib.strings.enableFeature sharpdSupport "sharpd") + (lib.strings.enableFeature fabricdSupport "fabricd") + (lib.strings.enableFeature vrrpdSupport "vrrpd") + (lib.strings.enableFeature pathdSupport "pathd") + (lib.strings.enableFeature bfddSupport "bfdd") + (lib.strings.enableFeature pbrdSupport "pbrd") + (lib.strings.enableFeature staticdSupport "staticd") + # BGP options + (lib.strings.enableFeature bgpAnnounce "bgp-announce") + (lib.strings.enableFeature bgpBmp "bgp-bmp") + (lib.strings.enableFeature bgpVnc "bgp-vnc") + # OSPF options + (lib.strings.enableFeature ospfApi "ospfapi") + # Cumulus options + (lib.strings.enableFeature cumulusSupport "cumulus") + # Datacenter options + (lib.strings.enableFeature datacenterSupport "datacenter") ]; postPatch = '' @@ -123,7 +221,7 @@ stdenv.mkDerivation rec { private clouds. ''; license = with licenses; [ gpl2Plus lgpl21Plus ]; - maintainers = with maintainers; [ woffs ]; + maintainers = with maintainers; [ woffs thillux ]; platforms = platforms.unix; }; diff --git a/pkgs/servers/matrix-synapse/plugins/mjolnir-antispam.nix b/pkgs/servers/matrix-synapse/plugins/mjolnir-antispam.nix index 2cf0f50901bf..2d0fa4115cc5 100644 --- a/pkgs/servers/matrix-synapse/plugins/mjolnir-antispam.nix +++ b/pkgs/servers/matrix-synapse/plugins/mjolnir-antispam.nix @@ -11,7 +11,7 @@ buildPythonPackage rec { sha256 = "sha256-/vnojWLpu/fktqPUhAdL1QTESxDwFrBVYAkyF79Fj9w="; }; - sourceRoot = "./source/synapse_antispam"; + sourceRoot = "./${src.name}/synapse_antispam"; buildInputs = [ matrix-synapse ]; diff --git a/pkgs/servers/nfs-ganesha/default.nix b/pkgs/servers/nfs-ganesha/default.nix index e203bc209b88..16e649684df6 100644 --- a/pkgs/servers/nfs-ganesha/default.nix +++ b/pkgs/servers/nfs-ganesha/default.nix @@ -5,13 +5,13 @@ stdenv.mkDerivation rec { pname = "nfs-ganesha"; - version = "5.4"; + version = "5.5"; src = fetchFromGitHub { owner = "nfs-ganesha"; repo = "nfs-ganesha"; rev = "V${version}"; - sha256 = "sha256-zKIFjplZtxOEPIH9PUw1gGPS4VSdgv2Zj1oOp3If9W0="; + sha256 = "sha256-ebnR/ukbVTwpFNzGf189NmsaDh97ThEGWew5kp50UGg="; }; preConfigure = "cd src"; diff --git a/pkgs/servers/search/qdrant/Cargo.lock b/pkgs/servers/search/qdrant/Cargo.lock index 5d60e5374840..78034d24be32 100644 --- a/pkgs/servers/search/qdrant/Cargo.lock +++ b/pkgs/servers/search/qdrant/Cargo.lock @@ -452,13 +452,14 @@ checksum = "3b13c32d80ecc7ab747b80c3784bce54ee8a7a0cc4fbda9bf4cda2cf6fe90854" [[package]] name = "api" -version = "1.4.0" +version = "1.4.1" dependencies = [ "chrono", "env_logger", "log", "parking_lot", "prost", + "prost-build", "prost-types", "rand 0.8.5", "schemars", @@ -867,9 +868,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "cgroups-rs" -version = "0.3.2" +version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b098e7c3a70d03c288fa0a96ccf13e770eb3d78c4cc0e1549b3c13215d5f965" +checksum = "1fb3af90c8d48ad5f432d8afb521b5b40c2a2fce46dd60e05912de51c47fba64" dependencies = [ "libc", "log", @@ -978,9 +979,9 @@ dependencies = [ [[package]] name = "clap" -version = "4.3.19" +version = "4.3.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5fd304a20bff958a57f04c4e96a2e7594cc4490a0e809cbd48bb6437edaa452d" +checksum = "c27cdf28c0f604ba3f512b0c9a409f8de8513e4816705deb0498b627e7c3a3fd" dependencies = [ "clap_builder", "clap_derive", @@ -989,9 +990,9 @@ dependencies = [ [[package]] name = "clap_builder" -version = "4.3.19" +version = "4.3.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "01c6a3f08f1fe5662a35cfe393aec09c4df95f60ee93b7556505260f75eee9e1" +checksum = "08a9f1ab5e9f01a9b81f202e8562eb9a10de70abf9eaeac1be465c28b75aa4aa" dependencies = [ "anstream", "anstyle", @@ -2272,9 +2273,9 @@ dependencies = [ [[package]] name = "indicatif" -version = "0.17.5" +version = "0.17.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ff8cc23a7393a397ed1d7f56e6365cba772aba9f9912ab968b03043c395d057" +checksum = "0b297dc40733f23a0e52728a58fa9489a5b7638a324932de16b41adc3ef80730" dependencies = [ "console", "instant", @@ -2463,9 +2464,9 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" [[package]] name = "libc" -version = "0.2.146" +version = "0.2.147" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f92be4933c13fd498862a9e02a3055f8a8d9c039ce33db97306fd5a6caa7f29b" +checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3" [[package]] name = "libloading" @@ -3515,6 +3516,8 @@ dependencies = [ "prettyplease 0.1.22", "prost", "prost-types", + "pulldown-cmark", + "pulldown-cmark-to-cmark", "regex", "syn 1.0.107", "tempfile", @@ -3562,9 +3565,29 @@ dependencies = [ "syn 1.0.107", ] +[[package]] +name = "pulldown-cmark" +version = "0.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77a1a2f1f0a7ecff9c31abbe177637be0e97a0aef46cf8738ece09327985d998" +dependencies = [ + "bitflags 1.3.2", + "memchr", + "unicase", +] + +[[package]] +name = "pulldown-cmark-to-cmark" +version = "10.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0194e6e1966c23cc5fd988714f85b18d548d773e81965413555d96569931833d" +dependencies = [ + "pulldown-cmark", +] + [[package]] name = "qdrant" -version = "1.4.0" +version = "1.4.1" dependencies = [ "actix-cors", "actix-files", @@ -4328,6 +4351,7 @@ dependencies = [ "serde-value", "serde_cbor", "serde_json", + "smol_str", "sysinfo", "tar", "tempfile", @@ -4346,9 +4370,9 @@ checksum = "b0293b4b29daaf487284529cc2f5675b8e57c61f70167ba415a463651fd6a918" [[package]] name = "serde" -version = "1.0.180" +version = "1.0.183" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0ea67f183f058fe88a4e3ec6e2788e003840893b91bac4559cabedd00863b3ed" +checksum = "32ac8da02677876d532745a130fc9d8e6edfa81a269b107c5b00829b91d8eb3c" dependencies = [ "serde_derive", ] @@ -4375,9 +4399,9 @@ dependencies = [ [[package]] name = "serde_derive" -version = "1.0.180" +version = "1.0.183" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "24e744d7782b686ab3b73267ef05697159cc0e5abbed3f47f9933165e5219036" +checksum = "aafe972d60b0b9bee71a91b92fee2d4fb3c9d7e8f6b179aa99f27203d99a4816" dependencies = [ "proc-macro2", "quote", @@ -4541,6 +4565,15 @@ version = "1.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" +[[package]] +name = "smol_str" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "74212e6bbe9a4352329b2f68ba3130c15a3f26fe88ff22dbdc6cdd58fa85e99c" +dependencies = [ + "serde", +] + [[package]] name = "socket2" version = "0.4.9" @@ -4719,9 +4752,9 @@ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" [[package]] name = "tar" -version = "0.4.39" +version = "0.4.40" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ec96d2ffad078296368d46ff1cb309be1c23c513b4ab0e22a45de0185275ac96" +checksum = "b16afcea1f22891c49a00c751c7b63b2233284064f11a200fc624137c51e2ddb" dependencies = [ "filetime", "libc", @@ -4730,9 +4763,9 @@ dependencies = [ [[package]] name = "tempfile" -version = "3.7.0" +version = "3.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5486094ee78b2e5038a6382ed7645bc084dc2ec433426ca4c3cb61e2007b8998" +checksum = "dc02fddf48964c42031a0b3fe0428320ecf3a73c401040fc0096f97794310651" dependencies = [ "cfg-if", "fastrand", @@ -5733,9 +5766,9 @@ dependencies = [ [[package]] name = "xattr" -version = "0.2.3" +version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6d1526bbe5aaeb5eb06885f4d987bcdfa5e23187055de9b83fe00156a821fabc" +checksum = "f4686009f71ff3e5c4dbcf1a282d0a44db3f021ba69350cd42086b3e5f1c6985" dependencies = [ "libc", ] diff --git a/pkgs/servers/search/qdrant/default.nix b/pkgs/servers/search/qdrant/default.nix index bc98872429d3..82461e6f0175 100644 --- a/pkgs/servers/search/qdrant/default.nix +++ b/pkgs/servers/search/qdrant/default.nix @@ -11,13 +11,13 @@ rustPlatform.buildRustPackage rec { pname = "qdrant"; - version = "1.4.0"; + version = "1.4.1"; src = fetchFromGitHub { owner = "qdrant"; repo = "qdrant"; rev = "refs/tags/v${version}"; - sha256 = "sha256-ccvtDz6woANSotTn6GwTAbGd0UlrpddvfH8+GR1dI3g="; + sha256 = "sha256-28ugr0AiAgyE3KGK3LYHti2iTRslAhEKfy35xKyW/N8="; }; cargoLock = { diff --git a/pkgs/servers/sql/postgresql/ext/apache_datasketches.nix b/pkgs/servers/sql/postgresql/ext/apache_datasketches.nix index 47873e725c4b..e146ec04175e 100644 --- a/pkgs/servers/sql/postgresql/ext/apache_datasketches.nix +++ b/pkgs/servers/sql/postgresql/ext/apache_datasketches.nix @@ -1,32 +1,38 @@ { stdenv, lib, fetchFromGitHub, postgresql, boost182, nixosTests }: -stdenv.mkDerivation (finalAttrs: { - pname = "apache_datasketches"; +let version = "1.6.0"; - srcs = [ - ( fetchFromGitHub { - name = "datasketches-postgresql"; - owner = "apache"; - repo = "datasketches-postgresql"; - rev = "refs/tags/${finalAttrs.version}"; - hash = "sha256-sz94fIe7nyWhjiw8FAm6ZzVpB0sAK5YxUrtbaZt/guA="; - }) - ( fetchFromGitHub { - name = "datasketches-cpp"; - owner = "apache"; - repo = "datasketches-cpp"; - rev = "refs/tags/4.1.0"; - hash = "sha256-vPoFzRxOXlEAiiHH9M5S6255ahzaKsGNYS0cdHwrRYw="; - }) - ]; - sourceRoot = "datasketches-postgresql"; + main_src = fetchFromGitHub { + name = "datasketches-postgresql"; + owner = "apache"; + repo = "datasketches-postgresql"; + rev = "refs/tags/${version}"; + hash = "sha256-sz94fIe7nyWhjiw8FAm6ZzVpB0sAK5YxUrtbaZt/guA="; + }; + + cpp_src = fetchFromGitHub { + name = "datasketches-cpp"; + owner = "apache"; + repo = "datasketches-cpp"; + rev = "refs/tags/4.1.0"; + hash = "sha256-vPoFzRxOXlEAiiHH9M5S6255ahzaKsGNYS0cdHwrRYw="; + }; +in + +stdenv.mkDerivation { + pname = "apache_datasketches"; + inherit version; + + srcs = [ main_src cpp_src ]; + + sourceRoot = main_src.name; buildInputs = [ postgresql boost182 ]; patchPhase = '' runHook prePatch - cp -r ../datasketches-cpp . + cp -r ../${cpp_src.name} . runHook postPatch ''; @@ -43,10 +49,10 @@ stdenv.mkDerivation (finalAttrs: { sql/datasketches_aod_sketch.sql \ sql/datasketches_req_float_sketch.sql \ sql/datasketches_quantiles_double_sketch.sql \ - > sql/datasketches--${finalAttrs.version}.sql + > sql/datasketches--${version}.sql install -D -m 644 ./datasketches.control -t $out/share/postgresql/extension install -D -m 644 \ - ./sql/datasketches--${finalAttrs.version}.sql \ + ./sql/datasketches--${version}.sql \ ./sql/datasketches--1.3.0--1.4.0.sql \ ./sql/datasketches--1.4.0--1.5.0.sql \ ./sql/datasketches--1.5.0--1.6.0.sql \ @@ -68,4 +74,4 @@ stdenv.mkDerivation (finalAttrs: { license = lib.licenses.asl20; maintainers = with lib.maintainers; [ mmusnjak ]; }; -}) +} diff --git a/pkgs/servers/web-apps/lemmy/package.json b/pkgs/servers/web-apps/lemmy/package.json index 8f0b48b50d39..f9b990ec203b 100644 --- a/pkgs/servers/web-apps/lemmy/package.json +++ b/pkgs/servers/web-apps/lemmy/package.json @@ -1,6 +1,6 @@ { "name": "lemmy-ui", - "version": "0.18.3", + "version": "0.18.4", "description": "An isomorphic UI for lemmy", "repository": "https://github.com/LemmyNet/lemmy-ui", "license": "AGPL-3.0", @@ -34,9 +34,9 @@ ] }, "dependencies": { - "@babel/plugin-proposal-decorators": "^7.21.0", - "@babel/plugin-transform-runtime": "^7.21.4", - "@babel/plugin-transform-typescript": "^7.21.3", + "@babel/plugin-proposal-decorators": "^7.21.5", + "@babel/plugin-transform-runtime": "^7.21.5", + "@babel/plugin-transform-typescript": "^7.21.5", "@babel/preset-env": "7.21.5", "@babel/preset-typescript": "^7.21.5", "@babel/runtime": "^7.21.5", @@ -44,7 +44,7 @@ "autosize": "^6.0.1", "babel-loader": "^9.1.2", "babel-plugin-inferno": "^6.6.0", - "bootstrap": "^5.2.3", + "bootstrap": "^5.3.1", "check-password-strength": "^2.0.7", "classnames": "^2.3.1", "clean-webpack-plugin": "^4.0.0", @@ -58,7 +58,7 @@ "express": "~4.18.2", "history": "^5.3.0", "html-to-text": "^9.0.5", - "i18next": "^23.2.8", + "i18next": "^23.3.0", "inferno": "^8.2.2", "inferno-create-element": "^8.2.2", "inferno-helmet": "^5.2.1", @@ -81,20 +81,21 @@ "register-service-worker": "^1.7.2", "run-node-webpack-plugin": "^1.3.0", "sanitize-html": "^2.11.0", - "sass": "^1.63.6", + "sass": "^1.64.1", "sass-loader": "^13.3.2", "serialize-javascript": "^6.0.1", "service-worker-webpack": "^1.0.0", - "sharp": "^0.32.1", + "sharp": "^0.32.4", "tippy.js": "^6.3.7", "toastify-js": "^1.12.0", "tributejs": "^5.1.3", - "webpack": "5.88.1", + "webpack": "5.88.2", "webpack-cli": "^5.1.4", "webpack-node-externals": "^3.0.0" }, "devDependencies": { - "@babel/core": "^7.21.8", + "@babel/core": "^7.21.5", + "@babel/plugin-proposal-class-properties": "^7.18.6", "@types/autosize": "^4.0.0", "@types/bootstrap": "^5.2.6", "@types/cookie": "^0.5.1", @@ -102,29 +103,29 @@ "@types/html-to-text": "^9.0.0", "@types/lodash.isequal": "^4.5.6", "@types/markdown-it": "^12.2.3", - "@types/markdown-it-container": "^2.0.5", - "@types/node": "^20.4.0", + "@types/markdown-it-container": "^2.0.6", + "@types/node": "^20.4.5", "@types/path-browserify": "^1.0.0", "@types/sanitize-html": "^2.9.0", "@types/serialize-javascript": "^5.0.1", - "@types/toastify-js": "^1.11.1", - "@typescript-eslint/eslint-plugin": "^5.61.0", - "@typescript-eslint/parser": "^5.61.0", - "eslint": "^8.44.0", + "@types/toastify-js": "^1.12.0", + "@typescript-eslint/eslint-plugin": "^6.2.0", + "@typescript-eslint/parser": "^6.2.0", + "eslint": "^8.45.0", "eslint-plugin-inferno": "^7.32.2", "eslint-plugin-jsx-a11y": "^6.7.1", - "eslint-plugin-prettier": "^4.2.1", + "eslint-plugin-prettier": "^5.0.0", "husky": "^8.0.3", "import-sort-style-module": "^6.0.0", "lint-staged": "^13.2.3", - "prettier": "^2.8.8", + "prettier": "^3.0.0", "prettier-plugin-import-sort": "^0.0.7", - "prettier-plugin-organize-imports": "^3.2.2", - "prettier-plugin-packagejson": "^2.4.4", + "prettier-plugin-organize-imports": "^3.2.3", + "prettier-plugin-packagejson": "^2.4.5", "rimraf": "^5.0.0", "sortpack": "^2.3.4", "style-loader": "^3.3.2", - "terser": "^5.18.2", + "terser": "^5.19.2", "typescript": "^5.1.6", "typescript-language-server": "^3.3.2", "webpack-bundle-analyzer": "^4.9.0", diff --git a/pkgs/servers/web-apps/lemmy/pin.json b/pkgs/servers/web-apps/lemmy/pin.json index e9250c01347c..a2cd10515833 100644 --- a/pkgs/servers/web-apps/lemmy/pin.json +++ b/pkgs/servers/web-apps/lemmy/pin.json @@ -1,8 +1,8 @@ { - "serverVersion": "0.18.3", - "uiVersion": "0.18.3", - "serverHash": "sha256-1feDR3WX4hwaAPEGkM3syb+CsYS3zkzQb2q8be/4UC4=", - "serverCargoHash": "sha256-CVZyOwM0BAeIVy74tj4NNE6occ6yo8eWpMhMb1DnoJY=", - "uiHash": "sha256-asmn5KQ4hhy1yGoeUrQJZLWXPelnb16utQWYplDqIOg=", - "uiYarnDepsHash": "sha256-fRJpA9WstNNNOePoqotJKYmlikkcjc34iM0WO8+a/3Q=" + "serverVersion": "0.18.4", + "uiVersion": "0.18.4", + "serverHash": "sha256-J+kjsirEcLz0th3IGVheSShVLbQma1Eip329/q5/3S8=", + "serverCargoHash": "sha256-0UDhHa2QvHoNYJIArpc/o+lkq87tBX/XVgXsr7y/+Rk=", + "uiHash": "sha256-E/rSNWVjiZE5Hl0iIocQfkIdOFSeB0zYXQDq9A3h3lI=", + "uiYarnDepsHash": "sha256-rLP1CQd75nVfI6C0sC21TUskzVfbGHm2fblcYr6JcGc=" } diff --git a/pkgs/servers/web-apps/lemmy/update.py b/pkgs/servers/web-apps/lemmy/update.py index 939008253132..4e867553b790 100755 --- a/pkgs/servers/web-apps/lemmy/update.py +++ b/pkgs/servers/web-apps/lemmy/update.py @@ -1,5 +1,5 @@ #! /usr/bin/env nix-shell -#! nix shell -i python3 -p python3 python3.pkgs.semver nix-prefetch-github +#! nix-shell -i python3 -p python3 python3.pkgs.semver nix-prefetch-github from urllib.request import Request, urlopen import dataclasses import subprocess diff --git a/pkgs/servers/web-apps/pict-rs/default.nix b/pkgs/servers/web-apps/pict-rs/default.nix index d569fdfbb594..37c344931e4f 100644 --- a/pkgs/servers/web-apps/pict-rs/default.nix +++ b/pkgs/servers/web-apps/pict-rs/default.nix @@ -13,17 +13,17 @@ rustPlatform.buildRustPackage rec { pname = "pict-rs"; - version = "0.4.0"; + version = "0.4.2"; src = fetchFromGitea { domain = "git.asonix.dog"; owner = "asonix"; repo = pname; rev = "v${version}"; - sha256 = "sha256-1WNd7Ei21g01S5ko6y+uyhHP+xlGtnrwU8MLMxnW3P8="; + sha256 = "sha256-3iY16ld2yKf5PffaS1FUwhWD657OAdY4eWHe5f3fIuQ="; }; - cargoHash = "sha256-xD2LvB0xBDAShp4k4VnnhnOWowhU/0OKvkEzI6RzuJY="; + cargoHash = "sha256-uRDRBe3rxkTSmO/uWSLQ6JI/t0KFta2kkf2ZihVYw0A="; # needed for internal protobuf c wrapper library PROTOC = "${protobuf}/bin/protoc"; diff --git a/pkgs/tools/admin/azure-cli/default.nix b/pkgs/tools/admin/azure-cli/default.nix index 786620088a1d..958a0fcd9e2c 100644 --- a/pkgs/tools/admin/azure-cli/default.nix +++ b/pkgs/tools/admin/azure-cli/default.nix @@ -2,10 +2,9 @@ let version = "2.50.0"; - srcName = "azure-cli-${version}-src"; src = fetchFromGitHub { - name = srcName; + name = "azure-cli-${version}-src"; owner = "Azure"; repo = "azure-cli"; rev = "azure-cli-${version}"; @@ -17,11 +16,12 @@ let inherit stdenv src version python3 fetchPypi; }; in + py.pkgs.toPythonApplication (py.pkgs.buildAzureCliPackage { pname = "azure-cli"; inherit version src; - sourceRoot = "${srcName}/src/azure-cli"; + sourceRoot = "${src.name}/src/azure-cli"; prePatch = '' substituteInPlace setup.py \ diff --git a/pkgs/tools/archivers/unar/default.nix b/pkgs/tools/archivers/unar/default.nix index 550e14355992..2fdaf2def590 100644 --- a/pkgs/tools/archivers/unar/default.nix +++ b/pkgs/tools/archivers/unar/default.nix @@ -67,7 +67,7 @@ stdenv.mkDerivation rec { dontConfigure = true; - sourceRoot = "./source/XADMaster"; + sourceRoot = "./${src.name}/XADMaster"; installPhase = '' runHook preInstall diff --git a/pkgs/tools/filesystems/hfsprogs/default.nix b/pkgs/tools/filesystems/hfsprogs/default.nix index cb3cbe5d7f28..2ac17286fb41 100644 --- a/pkgs/tools/filesystems/hfsprogs/default.nix +++ b/pkgs/tools/filesystems/hfsprogs/default.nix @@ -1,27 +1,34 @@ { lib, stdenv, fetchurl, fetchFromGitHub, openssl, libbsd }: -stdenv.mkDerivation rec { +let version = "332.25"; + + apple_src = fetchFromGitHub { + owner = "apple-oss-distributions"; + repo = "diskdev_cmds"; + rev = "diskdev_cmds-${version}"; + hash = "sha256-cycPGPx2Gbjn4FKGKuQKJkh+dWGbJfy6C+LTz8rrs0A="; + name = "diskdev_cmds-${version}"; + }; +in + +stdenv.mkDerivation rec { pname = "hfsprogs"; + inherit version; + srcs = [ (fetchurl { url = "http://ftp.de.debian.org/debian/pool/main/h/hfsprogs/hfsprogs_${version}-11.debian.tar.gz"; sha256 = "62d9b8599c66ebffbc57ce5d776e20b41341130d9b27341d63bda08460ebde7c"; }) - (fetchFromGitHub { - owner = "apple-oss-distributions"; - repo = "diskdev_cmds"; - rev = "diskdev_cmds-${version}"; - hash = "sha256-cycPGPx2Gbjn4FKGKuQKJkh+dWGbJfy6C+LTz8rrs0A="; - name = sourceRoot; - }) + apple_src ]; postPatch = '' sed -ie '/sys\/sysctl.h/d' newfs_hfs.tproj/makehfs.c ''; - sourceRoot = "diskdev_cmds-" + version; + sourceRoot = apple_src.name; patches = [ "../debian/patches/*.patch" ]; buildInputs = [ openssl libbsd ]; diff --git a/pkgs/tools/games/pokefinder/default.nix b/pkgs/tools/games/pokefinder/default.nix index 1ddde132d1a3..16439309b413 100644 --- a/pkgs/tools/games/pokefinder/default.nix +++ b/pkgs/tools/games/pokefinder/default.nix @@ -14,21 +14,14 @@ stdenv.mkDerivation rec { pname = "pokefinder"; - version = "4.1.1"; + version = "4.1.2"; src = fetchFromGitHub { owner = "Admiral-Fish"; repo = "PokeFinder"; rev = "v${version}"; - sha256 = "fYBeWc9eYLbj4+ku1jwaO5ISL8a7WJnBHJ4qz4W8RHA="; + sha256 = "ps8F6IcbCNybrZ02tbLNyB3YEvKlcYgCpv5Em7Riv+Q="; fetchSubmodules = true; - # the repo has identical cmake and CMake folders, causing issues on macOS - postFetch = if stdenv.isDarwin then '' - mv $out/cmake $out/cmake.tmp - mv $out/cmake.tmp $out/CMake - '' else '' - rm -rf $out/cmake - ''; }; patches = [ ./set-desktop-file-name.patch ]; diff --git a/pkgs/tools/graphics/welkin/default.nix b/pkgs/tools/graphics/welkin/default.nix index 93677adefe72..111abc745be5 100644 --- a/pkgs/tools/graphics/welkin/default.nix +++ b/pkgs/tools/graphics/welkin/default.nix @@ -10,7 +10,7 @@ stdenv.mkDerivation rec { sha256 = "1bqh3vam7y805xrmdw7k0ckcfwjg88wypxgv3njkkwyn7kxnfnqp"; }; - sourceRoot = "welkin-r9638/tags/${version}"; + sourceRoot = "${src.name}/tags/${version}"; nativeBuildInputs = [ makeWrapper ]; buildInputs = [ jre ]; diff --git a/pkgs/tools/misc/clipbuzz/default.nix b/pkgs/tools/misc/clipbuzz/default.nix index 47dbbc6e6ff2..7bece66a786d 100644 --- a/pkgs/tools/misc/clipbuzz/default.nix +++ b/pkgs/tools/misc/clipbuzz/default.nix @@ -1,23 +1,21 @@ { lib , stdenv -, fetchFromSourcehut +, fetchzip , libX11 , libXfixes -, zig_0_10 +, zig_0_11 }: stdenv.mkDerivation (finalAttrs: { pname = "clipbuzz"; - version = "2.0.0"; + version = "2.0.1"; - src = fetchFromSourcehut { - owner = "~cnx"; - repo = "clipbuzz"; - rev = finalAttrs.version; - hash = "sha256-V5bAZHoScTzFZBPUhPd7xc/c32SXPLAJp+vsc/lCyeI="; + src = fetchzip { + url = "https://trong.loang.net/~cnx/clipbuzz/snapshot/clipbuzz-${finalAttrs.version}.tar.gz"; + hash = "sha256-2//IwthAjGyVSZaXjgpM1pUJGYWZVkrJ6JyrVbzOtr8="; }; - nativeBuildInputs = [ zig_0_10.hook ]; + nativeBuildInputs = [ zig_0_11.hook ]; buildInputs = [ libX11 @@ -26,7 +24,7 @@ stdenv.mkDerivation (finalAttrs: { meta = { description = "Buzz on new X11 clipboard events"; - homepage = "https://git.sr.ht/~cnx/clipbuzz"; + homepage = "https://trong.loang.net/~cnx/clipbuzz"; license = lib.licenses.unlicense; maintainers = [ lib.maintainers.McSinyx ]; }; diff --git a/pkgs/tools/misc/fx-cast-bridge/default.nix b/pkgs/tools/misc/fx-cast-bridge/default.nix index c67289fb822b..5f2274101e56 100644 --- a/pkgs/tools/misc/fx-cast-bridge/default.nix +++ b/pkgs/tools/misc/fx-cast-bridge/default.nix @@ -10,7 +10,7 @@ buildNpmPackage rec { rev = "v${version}"; hash = "sha256-hB4NVJW2exHoKsMp0CKzHerYgj8aR77rV+ZsCoWA1Dg="; }; - sourceRoot = "source/app"; + sourceRoot = "${src.name}/app"; npmDepsHash = "sha256-GLrDRZqKcX1PDGREx+MLZ1TEjr88r9nz4TvZ9nvo40g="; nativeBuildInputs = [ python3 ]; diff --git a/pkgs/tools/misc/intermodal/default.nix b/pkgs/tools/misc/intermodal/default.nix index 555f4a529b92..e4a296333569 100644 --- a/pkgs/tools/misc/intermodal/default.nix +++ b/pkgs/tools/misc/intermodal/default.nix @@ -2,16 +2,16 @@ rustPlatform.buildRustPackage rec { pname = "intermodal"; - version = "0.1.12"; + version = "0.1.13"; src = fetchFromGitHub { owner = "casey"; repo = pname; rev = "v${version}"; - hash = "sha256-yPyKo2j0Up8gDzi2xOBqpMwIw6rpXDCxc8fCuEblwFY="; + hash = "sha256-hKMO7ZicXSYESXWKmDC2ILD996KoYDXS5HJExyXMdX4="; }; - cargoHash = "sha256-inJZTP4YwCZZ0JvSdGWnZbLN0A0B/+fz4g0XsfIQeq8="; + cargoHash = "sha256-7vtUMG6mxAHKnbouyTsaUf1myJssxYoqAIOjc6m86Fo="; # include_hidden test tries to use `chflags` on darwin checkFlagsArray = lib.optionals stdenv.isDarwin [ "--skip=subcommand::torrent::create::tests::include_hidden" ]; @@ -28,6 +28,7 @@ rustPlatform.buildRustPackage rec { meta = with lib; { description = "User-friendly and featureful command-line BitTorrent metainfo utility"; homepage = "https://github.com/casey/intermodal"; + changelog = "https://github.com/casey/intermodal/releases/tag/v${version}"; license = licenses.cc0; maintainers = with maintainers; [ Br1ght0ne xrelkd ]; mainProgram = "imdl"; diff --git a/pkgs/tools/misc/krapslog/default.nix b/pkgs/tools/misc/krapslog/default.nix index e09b1ad9aff4..379612ea3862 100644 --- a/pkgs/tools/misc/krapslog/default.nix +++ b/pkgs/tools/misc/krapslog/default.nix @@ -2,16 +2,16 @@ rustPlatform.buildRustPackage rec { pname = "krapslog"; - version = "0.5.2"; + version = "0.5.3"; src = fetchFromGitHub { owner = "acj"; repo = "krapslog-rs"; rev = version; - sha256 = "sha256-MjFTdEtsgF4URN/gPMEieChWeKQYpJ1c9i4Zh7Bb+ps="; + sha256 = "sha256-Y5OdRi9OhVeT04BnHCCcNBr1G9vxSFwvNl1aL38AFWQ="; }; - cargoHash = "sha256-nxjdwp99KVJo7PME27QG66x+CAC91s26ccL0nyXE3Ac="; + cargoHash = "sha256-fdrcV4XmxaWiAVOL51sRUfTEDnnCKduYgj7I5unLpRI="; buildInputs = lib.optional stdenv.isDarwin libiconv; diff --git a/pkgs/tools/misc/ocs-url/default.nix b/pkgs/tools/misc/ocs-url/default.nix index 0544bb6829eb..564c7b81c742 100644 --- a/pkgs/tools/misc/ocs-url/default.nix +++ b/pkgs/tools/misc/ocs-url/default.nix @@ -1,24 +1,33 @@ { lib, stdenv, fetchgit, libsForQt5 }: +let + version = "3.1.0"; + + main_src = fetchgit { + url = "https://www.opencode.net/dfn2/ocs-url.git"; + rev = "release-${version}"; + sha256 = "RvbkcSj8iUAHAEOyETwfH+3XnCCY/p8XM8LgVrZxrws="; + }; + + qtil_src = fetchgit { + url = "https://github.com/akiraohgaki/qtil"; + rev = "v0.4.0"; + sha256 = "XRSp0F7ggfkof1RNAnQU3+O9DcXDy81VR7NakITOXrw="; + }; +in + stdenv.mkDerivation rec { pname = "ocs-url"; - version = "3.1.0"; + inherit version; - srcs = [ - (fetchgit { - url = "https://www.opencode.net/dfn2/ocs-url.git"; - rev = "release-${version}"; - sha256 = "RvbkcSj8iUAHAEOyETwfH+3XnCCY/p8XM8LgVrZxrws="; - }) + srcs = [ main_src qtil_src ]; + sourceRoot = main_src.name; - (fetchgit { - url = "https://github.com/akiraohgaki/qtil"; - rev = "v0.4.0"; - sha256 = "XRSp0F7ggfkof1RNAnQU3+O9DcXDy81VR7NakITOXrw="; - }) - ]; - - sourceRoot = "ocs-url"; + # We are NOT in $sourceRoot here + postUnpack = '' + mkdir -p $sourceRoot/lib/qtil + cp -r ${qtil_src.name}/* $sourceRoot/lib/qtil/ + ''; buildInputs = with libsForQt5.qt5; [ qtbase @@ -28,12 +37,6 @@ stdenv.mkDerivation rec { wrapQtAppsHook ]; - # We are NOT in $sourceRoot here - postUnpack = '' - mkdir -p $sourceRoot/lib/qtil - cp -r qtil/* $sourceRoot/lib/qtil/ - ''; - meta = with lib; { description = "Open Collaboration System for use with DE store websites"; license = licenses.gpl3Only; diff --git a/pkgs/tools/misc/see/default.nix b/pkgs/tools/misc/see/default.nix new file mode 100644 index 000000000000..60f55e8144c5 --- /dev/null +++ b/pkgs/tools/misc/see/default.nix @@ -0,0 +1,31 @@ +{ lib, python3, fetchFromGitHub }: + +python3.pkgs.buildPythonApplication { + pname = "see"; + version = "unstable-2023-03-19"; + format = "pyproject"; + + src = fetchFromGitHub { + owner = "Textualize"; + repo = "textualize-see"; + rev = "eef61dd348178ec60c5b0a01062e0b621eb57315"; + hash = "sha256-SqjDHcFKWbk4ouWkhGohDl5kGjM/9fzqFDexVcaY1gw="; + }; + + nativeBuildInputs = with python3.pkgs; [ + poetry-core + ]; + + propagatedBuildInputs = with python3.pkgs; [ + click + colorama + toml + ]; + + meta = { + description = "Textualize See is a command line tool to open files in the terminal."; + homepage = "https://github.com/Textualize/textualize-see"; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ anselmschueler ]; + }; +} diff --git a/pkgs/tools/misc/xfstests/default.nix b/pkgs/tools/misc/xfstests/default.nix index 11fb3f5b7045..e06aa0cc5725 100644 --- a/pkgs/tools/misc/xfstests/default.nix +++ b/pkgs/tools/misc/xfstests/default.nix @@ -5,12 +5,12 @@ stdenv.mkDerivation rec { pname = "xfstests"; - version = "2022.09.04"; + version = "2023.05.14"; src = fetchgit { url = "https://git.kernel.org/pub/scm/fs/xfs/xfstests-dev.git"; rev = "v${version}"; - sha256 = "sha256-hPFoqNmB8pewvBN1nzVMkTrMHCo0xc8tmmIODaiDeRw="; + sha256 = "sha256-yyjY9Q3eUH+q+o15zFUjOcNz1HpXPCwdcxWXoycOx98="; }; nativeBuildInputs = [ diff --git a/pkgs/tools/networking/bully/default.nix b/pkgs/tools/networking/bully/default.nix index b49af33cd9e9..c82971d8217a 100644 --- a/pkgs/tools/networking/bully/default.nix +++ b/pkgs/tools/networking/bully/default.nix @@ -15,7 +15,7 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - sourceRoot = "./source/src"; + sourceRoot = "./${src.name}/src"; installPhase = '' install -Dm555 -t $out/bin bully diff --git a/pkgs/tools/networking/dd-agent/datadog-agent.nix b/pkgs/tools/networking/dd-agent/datadog-agent.nix index c9a27df0bd4e..1fa275ab2b53 100644 --- a/pkgs/tools/networking/dd-agent/datadog-agent.nix +++ b/pkgs/tools/networking/dd-agent/datadog-agent.nix @@ -1,7 +1,7 @@ { lib , stdenv , cmake -, buildGoModule +, buildGo118Module , makeWrapper , fetchFromGitHub , pythonPackages @@ -14,12 +14,12 @@ let # keep this in sync with github.com/DataDog/agent-payload dependency - payloadVersion = "4.78.0"; + payloadVersion = "5.0.89"; python = pythonPackages.python; owner = "DataDog"; repo = "datadog-agent"; goPackagePath = "github.com/${owner}/${repo}"; - version = "7.38.1"; + version = "7.45.1"; src = fetchFromGitHub { inherit owner repo; @@ -35,7 +35,7 @@ let cmakeFlags = ["-DBUILD_DEMO=OFF" "-DDISABLE_PYTHON2=ON"]; }; -in buildGoModule rec { +in buildGo118Module rec { pname = "datadog-agent"; inherit src version; diff --git a/pkgs/tools/networking/netbird/default.nix b/pkgs/tools/networking/netbird/default.nix index c2a0fe1bc4da..25c2f9a3aeb5 100644 --- a/pkgs/tools/networking/netbird/default.nix +++ b/pkgs/tools/networking/netbird/default.nix @@ -30,13 +30,13 @@ let in buildGoModule rec { pname = "netbird"; - version = "0.22.2"; + version = "0.22.3"; src = fetchFromGitHub { owner = "netbirdio"; repo = pname; rev = "v${version}"; - sha256 = "sha256-NLi6FJoSYwe1tr3z2F9m3INTfQiltvyq/VfoMwAhxZQ="; + sha256 = "sha256-1LUHS3G46EnDz0FgAXXOqluGD+fTRaALypZKNgXtCf0="; }; vendorHash = "sha256-Fj80sYoNXt/rHUC8IEevbNbSIvWHPaKd90UQQTkd/7w="; diff --git a/pkgs/tools/networking/wget/default.nix b/pkgs/tools/networking/wget/default.nix index 1c18e632b19f..d5cec9284550 100644 --- a/pkgs/tools/networking/wget/default.nix +++ b/pkgs/tools/networking/wget/default.nix @@ -47,14 +47,15 @@ stdenv.mkDerivation rec { meta = with lib; { description = "Tool for retrieving files using HTTP, HTTPS, and FTP"; + homepage = "https://www.gnu.org/software/wget/"; + license = licenses.gpl3Plus; longDescription = '' GNU Wget is a free software package for retrieving files using HTTP, HTTPS and FTP, the most widely-used Internet protocols. It is a non-interactive commandline tool, so it may easily be called from scripts, cron jobs, terminals without X-Windows support, etc. ''; - license = licenses.gpl3Plus; - homepage = "https://www.gnu.org/software/wget/"; + mainProgram = "wget"; maintainers = with maintainers; [ fpletz ]; platforms = platforms.all; }; diff --git a/pkgs/tools/package-management/nixpkgs-review/default.nix b/pkgs/tools/package-management/nixpkgs-review/default.nix index 5899c491ef3e..6cbf981cedd9 100644 --- a/pkgs/tools/package-management/nixpkgs-review/default.nix +++ b/pkgs/tools/package-management/nixpkgs-review/default.nix @@ -60,10 +60,11 @@ python3.pkgs.buildPythonApplication rec { ''; meta = with lib; { + changelog = "https://github.com/Mic92/nixpkgs-review/releases/tag/${version}"; description = "Review pull-requests on https://github.com/NixOS/nixpkgs"; homepage = "https://github.com/Mic92/nixpkgs-review"; - changelog = "https://github.com/Mic92/nixpkgs-review/releases/tag/${version}"; license = licenses.mit; + mainProgram = "nixpkgs-review"; maintainers = with maintainers; [ figsoda mic92 ]; }; } diff --git a/pkgs/tools/security/argocd-vault-plugin/default.nix b/pkgs/tools/security/argocd-vault-plugin/default.nix index 297c62681800..6dab3a98d9ab 100644 --- a/pkgs/tools/security/argocd-vault-plugin/default.nix +++ b/pkgs/tools/security/argocd-vault-plugin/default.nix @@ -2,16 +2,16 @@ buildGoModule rec { pname = "argocd-vault-plugin"; - version = "1.15.0"; + version = "1.16.0"; src = fetchFromGitHub { owner = "argoproj-labs"; repo = pname; rev = "v${version}"; - hash = "sha256-59Q6T+k+bFvglhgbydH+GYqcLsZ7EeMTpVa+3EJrZpU="; + hash = "sha256-9gM4CD3MbZX3ZCZ3XCAkdOkE381jgGvg/swto4B74g8="; }; - vendorHash = "sha256-n/bRVShxRmaXL3obRdNQ8OVWVZqWZ9qt59gRxGEUtzk="; + vendorHash = "sha256-r9Pcm95gU0QTiREdiQiyJMOKZb5Lt2bIJywLerzgbdg="; # integration tests require filesystem and network access for credentials doCheck = false; diff --git a/pkgs/tools/security/cnspec/default.nix b/pkgs/tools/security/cnspec/default.nix index 88952936432a..65a3765e200b 100644 --- a/pkgs/tools/security/cnspec/default.nix +++ b/pkgs/tools/security/cnspec/default.nix @@ -5,17 +5,17 @@ buildGoModule rec { pname = "cnspec"; - version = "8.20.0"; + version = "8.22.1"; src = fetchFromGitHub { owner = "mondoohq"; repo = "cnspec"; rev = "refs/tags/v${version}"; - hash = "sha256-VPXxeI4dO6bHUagS38l7358sXW3ot/v/j9MUrD/akNg="; + hash = "sha256-xTYPAipdfrwAhtLcLZkClnmB1qRlgfTwt8Qpq6iSZPk="; }; proxyVendor = true; - vendorHash = "sha256-LH9ts/hD16rF9VBJIfwTAQXq9MMAiBKBR3ulKGNrlow="; + vendorHash = "sha256-PE5RLMUi1bqFjUntvUU3dXmygFfzFJF+HerW5A+OktA="; subPackages = [ "apps/cnspec" diff --git a/pkgs/tools/security/cryptomator/default.nix b/pkgs/tools/security/cryptomator/default.nix index 238a74cc9545..90dcfcde1eea 100644 --- a/pkgs/tools/security/cryptomator/default.nix +++ b/pkgs/tools/security/cryptomator/default.nix @@ -4,19 +4,25 @@ , maven, jdk, makeShellWrapper, glib, wrapGAppsHook }: -maven.buildMavenPackage rec { + +let + mavenJdk = maven.override { + jdk = jdk; + }; +in +mavenJdk.buildMavenPackage rec { pname = "cryptomator"; - version = "1.8.0"; + version = "1.9.1"; src = fetchFromGitHub { owner = "cryptomator"; repo = "cryptomator"; rev = version; - hash = "sha256-4MjF2PDH0JB1biY4HO2wOC0i6EIGSlzkK6tDm8nzvIo="; + hash = "sha256-CiM18Rdt7B/TrU7AoNbxouFGC5Gfvm4oLxypYOCAFzA="; }; mvnParameters = "-Dmaven.test.skip=true"; - mvnHash = "sha256-rHLLYkZq3GGE0uhTgZT0tnsh+ChzQdpQ2e+SG1TwBvw="; + mvnHash = "sha256-7gv++Pc+wqmVYaAMgHhSy7xwChfVBgpDFxExzu3bXO0="; preBuild = '' VERSION=${version} diff --git a/pkgs/tools/security/exploitdb/default.nix b/pkgs/tools/security/exploitdb/default.nix index e01cb9626e1b..bb322ce4f32c 100644 --- a/pkgs/tools/security/exploitdb/default.nix +++ b/pkgs/tools/security/exploitdb/default.nix @@ -6,13 +6,13 @@ stdenv.mkDerivation rec { pname = "exploitdb"; - version = "2023-08-09"; + version = "2023-08-11"; src = fetchFromGitLab { owner = "exploit-database"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-o6rLIp6bOJK+JB0zd+aHbcWUBlEj9Y8FUdTYdnBp8wg="; + hash = "sha256-Fv5vGPo9KZCNTllQhVHlGh496vdwpdTx1V0StaS9Flk="; }; nativeBuildInputs = [ diff --git a/pkgs/tools/security/iaito/default.nix b/pkgs/tools/security/iaito/default.nix index 466a9c5ff777..9fcc80ef28b9 100644 --- a/pkgs/tools/security/iaito/default.nix +++ b/pkgs/tools/security/iaito/default.nix @@ -11,30 +11,35 @@ , wrapQtAppsHook }: -stdenv.mkDerivation rec { +let pname = "iaito"; version = "5.8.6"; - srcs = [ - (fetchFromGitHub rec { - owner = "radareorg"; - repo = "iaito"; - rev = version; - hash = "sha256-rl8bOIR0oS6YvZA5pr8oSj7HcKK4YeCjAEi7saVdvk8="; - name = repo; - }) - (fetchFromGitHub rec { - owner = "radareorg"; - repo = "iaito-translations"; - rev = "e66b3a962a7fc7dfd730764180011ecffbb206bf"; - hash = "sha256-6NRTZ/ydypsB5TwbivvwOH9TEMAff/LH69hCXTvMPp8="; - name = repo; - }) - ]; - sourceRoot = "iaito/src"; + main_src = fetchFromGitHub rec { + owner = "radareorg"; + repo = pname; + rev = version; + hash = "sha256-rl8bOIR0oS6YvZA5pr8oSj7HcKK4YeCjAEi7saVdvk8="; + name = repo; + }; + + translations_src = fetchFromGitHub rec { + owner = "radareorg"; + repo = "iaito-translations"; + rev = "e66b3a962a7fc7dfd730764180011ecffbb206bf"; + hash = "sha256-6NRTZ/ydypsB5TwbivvwOH9TEMAff/LH69hCXTvMPp8="; + name = repo; + }; +in + +stdenv.mkDerivation rec { + inherit pname version; + + srcs = [ main_src translations_src ]; + sourceRoot = "${main_src.name}/src"; postUnpack = '' - chmod -R u+w iaito-translations + chmod -R u+w ${translations_src.name} ''; postPatch = '' @@ -60,7 +65,7 @@ stdenv.mkDerivation rec { env.NIX_CFLAGS_COMPILE = toString [ "-I" "${radare2.src}/shlr/sdb/include/sdb" ]; postBuild = '' - pushd ../../../iaito-translations + pushd ../../../${translations_src.name} make build -j$NIX_BUILD_CORES PREFIX=$out popd ''; @@ -73,7 +78,7 @@ stdenv.mkDerivation rec { install -m644 -Dt $out/share/applications ../org.radare.iaito.desktop install -m644 -Dt $out/share/pixmaps ../img/iaito-o.svg - pushd ../../../iaito-translations + pushd ../../../${translations_src.name} make install -j$NIX_BUILD_CORES PREFIX=$out popd diff --git a/pkgs/tools/security/mpw/default.nix b/pkgs/tools/security/mpw/default.nix index d91b92890a78..0fe45039b9be 100644 --- a/pkgs/tools/security/mpw/default.nix +++ b/pkgs/tools/security/mpw/default.nix @@ -15,7 +15,7 @@ in stdenv.mkDerivation rec { inherit rev; }; - sourceRoot = "./source/platform-independent/c/cli"; + sourceRoot = "./${src.name}/platform-independent/c/cli"; postPatch = '' rm build diff --git a/pkgs/tools/security/tlsx/default.nix b/pkgs/tools/security/tlsx/default.nix index cd40cf1c7697..42c5a84cd3c3 100644 --- a/pkgs/tools/security/tlsx/default.nix +++ b/pkgs/tools/security/tlsx/default.nix @@ -5,16 +5,16 @@ buildGoModule rec { pname = "tlsx"; - version = "1.1.1"; + version = "1.1.3"; src = fetchFromGitHub { owner = "projectdiscovery"; repo = pname; rev = "v${version}"; - hash = "sha256-sYyIZKhn2VJxNxoVb58WQj8a+sYHzuu4SjgPHyLsJK4="; + hash = "sha256-dCtMfrkN43zJqztCobT3RSkn4crGigqzI6NSP8wrCf0="; }; - vendorHash = "sha256-hutHe0n3IAeCP+Lw7dZLfRLyvaOwrWFIrA6chsn+BEw="; + vendorHash = "sha256-33eVwWV9PnrP2MSPXTAcYe9ruJc5lauASc4uubBd9S4="; # Tests require network access doCheck = false; diff --git a/pkgs/tools/security/trufflehog/default.nix b/pkgs/tools/security/trufflehog/default.nix index 6b6e970a38ca..c9f55216dbdb 100644 --- a/pkgs/tools/security/trufflehog/default.nix +++ b/pkgs/tools/security/trufflehog/default.nix @@ -7,16 +7,16 @@ buildGoModule rec { pname = "trufflehog"; - version = "3.46.3"; + version = "3.47.0"; src = fetchFromGitHub { owner = "trufflesecurity"; repo = "trufflehog"; rev = "refs/tags/v${version}"; - hash = "sha256-IdLNDJYg86dTj+E2w7+sXmNf/MY7eqW9NMAmuhrzm10="; + hash = "sha256-qdVWq+YESSHAmylyOWLygchy1VBxHDOmgk9CxSl22es="; }; - vendorHash = "sha256-ecEms2Zf4EckP2OLoL41S1ZTTnGJhpdMDhknq/mO7qI="; + vendorHash = "sha256-AlyONwUP4Z8S8Qj3hbGFCyhUlYzlN6AIxGzrnQaXBLY="; ldflags = [ "-s" diff --git a/pkgs/tools/text/csvdiff/default.nix b/pkgs/tools/text/csvdiff/default.nix index f85d725d6ca4..236993b2dd25 100644 --- a/pkgs/tools/text/csvdiff/default.nix +++ b/pkgs/tools/text/csvdiff/default.nix @@ -11,10 +11,10 @@ buildGoModule rec { owner = "aswinkarthik"; repo = "csvdiff"; rev = "v${version}"; - sha256 = "0cd1ikxsypjqisfnmr7zix3g7x8p892w77086465chyd39gpk97b"; + hash = "sha256-66R5XxrNQ1YMMQicw0VCF/XzRo//5Gqdjlher/uMoTE="; }; - vendorSha256 = "1612s4kc0r8zw5y2n6agwdx9kwhxkdrjzagn4g22lzmjq02a64xf"; + vendorHash = "sha256-rhOjBMCyfirEI/apL3ObHfKZeuNPGSt84R9lwCbRIpg="; meta = with lib; { homepage = "https://aswinkarthik.github.io/csvdiff/"; diff --git a/pkgs/tools/text/mdbook/default.nix b/pkgs/tools/text/mdbook/default.nix index 084980ebda29..7ca5e4a634bc 100644 --- a/pkgs/tools/text/mdbook/default.nix +++ b/pkgs/tools/text/mdbook/default.nix @@ -26,6 +26,6 @@ rustPlatform.buildRustPackage rec { homepage = "https://github.com/rust-lang/mdBook"; changelog = "https://github.com/rust-lang/mdBook/blob/v${version}/CHANGELOG.md"; license = [ licenses.mpl20 ]; - maintainers = with maintainers; [ havvy Frostman ]; + maintainers = with maintainers; [ havvy Frostman matthiasbeyer ]; }; } diff --git a/pkgs/tools/wayland/slurp/default.nix b/pkgs/tools/wayland/slurp/default.nix index 50c02d83be23..327cc7e91d1f 100644 --- a/pkgs/tools/wayland/slurp/default.nix +++ b/pkgs/tools/wayland/slurp/default.nix @@ -47,11 +47,12 @@ stdenv.mkDerivation (finalAttrs: { mesonFlags = [ (lib.mesonEnable "man-pages" buildDocs) ]; meta = with lib; { - homepage = "https://github.com/emersion/slurp"; - description = "Select a region in a Wayland compositor"; changelog = "https://github.com/emersion/slurp/releases/tag/v${finalAttrs.version}"; - license = licenses.mit; - maintainers = with maintainers; [ buffet ]; + description = "Select a region in a Wayland compositor"; inherit (wayland.meta) platforms; + homepage = "https://github.com/emersion/slurp"; + license = licenses.mit; + mainProgram = "slurp"; + maintainers = with maintainers; [ buffet ]; }; }) diff --git a/pkgs/tools/wayland/wl-clip-persist/default.nix b/pkgs/tools/wayland/wl-clip-persist/default.nix index 0d5626ba1895..0828a34be840 100644 --- a/pkgs/tools/wayland/wl-clip-persist/default.nix +++ b/pkgs/tools/wayland/wl-clip-persist/default.nix @@ -29,11 +29,12 @@ rustPlatform.buildRustPackage { ]; meta = with lib; { - inherit (wayland.meta) platforms; - homepage = "https://github.com/Linus789/wl-clip-persist"; - description = "Keep Wayland clipboard even after programs close"; - license = licenses.mit; - maintainers = with maintainers; [ thiagokokada ]; broken = stdenv.isDarwin; + description = "Keep Wayland clipboard even after programs close"; + homepage = "https://github.com/Linus789/wl-clip-persist"; + inherit (wayland.meta) platforms; + license = licenses.mit; + mainProgram = "wl-clip-persist"; + maintainers = with maintainers; [ thiagokokada ]; }; } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index e4308b162703..10840d298bd1 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1944,7 +1944,9 @@ with pkgs; tere = callPackage ../tools/misc/tere { }; - termusic = callPackage ../applications/audio/termusic { }; + termusic = darwin.apple_sdk_11_0.callPackage ../applications/audio/termusic { + inherit (darwin.apple_sdk_11_0.frameworks) AppKit CoreAudio CoreGraphics Foundation IOKit MediaPlayer Security; + }; tfk8s = callPackage ../tools/misc/tfk8s { }; @@ -3594,6 +3596,8 @@ with pkgs; dcap = callPackage ../tools/networking/dcap { }; + dark-mode-notify = callPackage ../os-specific/darwin/dark-mode-notify { }; + deltachat-cursed = callPackage ../applications/networking/instant-messengers/deltachat-cursed { }; delayarchitect = callPackage ../applications/audio/delayarchitect { }; @@ -6175,6 +6179,8 @@ with pkgs; scour = with python3Packages; toPythonApplication scour; + see = callPackage ../tools/misc/see { }; + s2png = callPackage ../tools/graphics/s2png { }; sfz = callPackage ../tools/misc/sfz { }; @@ -10142,7 +10148,7 @@ with pkgs; lact = callPackage ../tools/system/lact { }; ledit = callPackage ../tools/misc/ledit { - inherit (ocaml-ng.ocamlPackages_4_12) ocaml camlp5; + inherit (ocaml-ng.ocamlPackages_4_11) ocaml camlp5; }; ledmon = callPackage ../tools/system/ledmon { }; @@ -19770,8 +19776,12 @@ with pkgs; rizin = pkgs.callPackage ../development/tools/analysis/rizin { }; + rizinPlugins = recurseIntoAttrs rizin.plugins; + cutter = libsForQt5.callPackage ../development/tools/analysis/rizin/cutter.nix { }; + cutterPlugins = recurseIntoAttrs rizin.plugins; + ragel = ragelStable; randoop = callPackage ../development/tools/analysis/randoop { }; @@ -20624,6 +20634,8 @@ with pkgs; inherit (darwin.apple_sdk.frameworks) Foundation; }; + ceedling = callPackage ../development/tools/ceedling { }; + celt = callPackage ../development/libraries/celt { }; celt_0_7 = callPackage ../development/libraries/celt/0.7.nix { }; celt_0_5_1 = callPackage ../development/libraries/celt/0.5.1.nix { }; @@ -21192,6 +21204,8 @@ with pkgs; fribidi = callPackage ../development/libraries/fribidi { }; + frozen = callPackage ../development/libraries/frozen { }; + funambol = callPackage ../development/libraries/funambol { }; function-runner = callPackage ../development/web/function-runner { }; @@ -27541,7 +27555,7 @@ with pkgs; criu = callPackage ../os-specific/linux/criu { }; cryptomator = callPackage ../tools/security/cryptomator { - jdk = jdk.override { enableJavaFX = true; }; + jdk = jdk20.override { enableJavaFX = true; }; }; cryptsetup = callPackage ../os-specific/linux/cryptsetup { }; @@ -36100,6 +36114,8 @@ with pkgs; watershot = callPackage ../applications/misc/watershot { }; + waypaper = callPackage ../applications/misc/waypaper { }; + w3m = callPackage ../applications/networking/browsers/w3m { }; # Should always be the version with the most features @@ -39251,7 +39267,7 @@ with pkgs; hol = callPackage ../applications/science/logic/hol { }; - inherit (ocaml-ng.ocamlPackages_4_12) hol_light; + inherit (ocamlPackages) hol_light; hologram = callPackage ../tools/security/hologram { }; diff --git a/pkgs/top-level/python-aliases.nix b/pkgs/top-level/python-aliases.nix index 9a2fc3586909..70e4855f7939 100644 --- a/pkgs/top-level/python-aliases.nix +++ b/pkgs/top-level/python-aliases.nix @@ -80,6 +80,7 @@ mapAliases ({ cozy = throw "cozy was removed because it was not actually https://pypi.org/project/Cozy/."; # added 2022-01-14 cryptography_vectors = "cryptography_vectors is no longer exposed in python*Packages because it is used for testing cryptography only."; # Added 2022-03-23 cx_Freeze = cx-freeze; # added 2023-08-02 + d2to1 = throw "d2to1 is archived and no longer works with setuptools v68"; # added 2023-07-30 dask-xgboost = throw "dask-xgboost was removed because its features are available in xgboost"; # added 2022-05-24 dateutil = python-dateutil; # added 2021-07-03 demjson = throw "demjson has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; # added 2022-01-18 diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index b947b64b83be..425082dce950 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -2365,8 +2365,6 @@ self: super: with self; { cytoolz = callPackage ../development/python-modules/cytoolz { }; - d2to1 = callPackage ../development/python-modules/d2to1 { }; - dacite = callPackage ../development/python-modules/dacite { }; daemonize = callPackage ../development/python-modules/daemonize { }; @@ -4239,6 +4237,8 @@ self: super: with self; { git-sweep = callPackage ../development/python-modules/git-sweep { }; + git-url-parse = callPackage ../development/python-modules/git-url-parse { }; + gitdb = callPackage ../development/python-modules/gitdb { }; github-to-sqlite = callPackage ../development/python-modules/github-to-sqlite { }; diff --git a/pkgs/top-level/ruby-packages.nix b/pkgs/top-level/ruby-packages.nix index 3ee1a09bb2e1..6ae4443678a8 100644 --- a/pkgs/top-level/ruby-packages.nix +++ b/pkgs/top-level/ruby-packages.nix @@ -5,10 +5,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1d72cqx1h9c0yl1vc8xakvji00krg118ih6lwqlg5nbw50gbx25c"; + sha256 = "1dbzp5lk7canhdrs8n8cap3mwnanfn6i7yn76ba8kzn0h1cx077a"; type = "gem"; }; - version = "7.0.6"; + version = "7.0.7"; }; actionmailbox = { dependencies = ["actionpack" "activejob" "activerecord" "activestorage" "activesupport" "mail" "net-imap" "net-pop" "net-smtp"]; @@ -16,10 +16,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "12xkyfdpr7ljnd31yhc2kzl0rqrlwxzpg4qcn4yb2h364hwc6fh8"; + sha256 = "09640w7sqmxv1gxsw9gfnfdl95qgm90s38n49jyqyqavxnwgnbbs"; type = "gem"; }; - version = "7.0.6"; + version = "7.0.7"; }; actionmailer = { dependencies = ["actionpack" "actionview" "activejob" "activesupport" "mail" "net-imap" "net-pop" "net-smtp" "rails-dom-testing"]; @@ -27,10 +27,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "01x11ijfg56585vj7a7az0235idnxcnyjp1nb1jvkm08jjll5d1k"; + sha256 = "15ni57icsw1ilz5srlasff4h31h2ckgmxbdd8jnbniscvz4x2sd0"; type = "gem"; }; - version = "7.0.6"; + version = "7.0.7"; }; actionpack = { dependencies = ["actionview" "activesupport" "rack" "rack-test" "rails-dom-testing" "rails-html-sanitizer"]; @@ -38,10 +38,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0d66w1d9rhvafd0dilqyr1ymsvr060l8hi0xvwij7cyvzzxrlrbc"; + sha256 = "150sjsk12vzj9aswjy3cz124l8n8sn52bhd0wwly73rwc1a750sg"; type = "gem"; }; - version = "7.0.6"; + version = "7.0.7"; }; actiontext = { dependencies = ["actionpack" "activerecord" "activestorage" "activesupport" "globalid" "nokogiri"]; @@ -49,10 +49,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0bpyfh8g0mzgkb8bxvf245mwnx1awbr1y6dxcdckyhsjjgrfynfl"; + sha256 = "0m6bdgspimlsakvi2dwndlf6i9wc1iwcjcm2nmpdfn2jj836fprm"; type = "gem"; }; - version = "7.0.6"; + version = "7.0.7"; }; actionview = { dependencies = ["activesupport" "builder" "erubi" "rails-dom-testing" "rails-html-sanitizer"]; @@ -60,10 +60,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1icfh9pgjpd29apzn07cnqa9nlpvjv7i4vrygack5gp7hp54l8m7"; + sha256 = "1nn21k5psxdv2fkwxs679lr0b8n1nzli2ks343cx4azn6snp8b8a"; type = "gem"; }; - version = "7.0.6"; + version = "7.0.7"; }; activejob = { dependencies = ["activesupport" "globalid"]; @@ -71,10 +71,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1gawwb6550ra1xgbrki03aq4q5wafa3xfrpdr3cva4ghy3qqn53q"; + sha256 = "0s5r5z9jm57jjabh8w2823rpjd1agn8z2rlqgyyn4s9pbbhgalzy"; type = "gem"; }; - version = "7.0.6"; + version = "7.0.7"; }; activemodel = { dependencies = ["activesupport"]; @@ -82,10 +82,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "072iv0d3vpbp0xijg4jj99sjil1rykmqfj9addxj76bm5mbzwcaj"; + sha256 = "1rspbw4yxx9fh2wyl2wvgwadwapfyx7j9zlirpd4pmk31wkhl4hf"; type = "gem"; }; - version = "7.0.6"; + version = "7.0.7"; }; activerecord = { dependencies = ["activemodel" "activesupport"]; @@ -93,10 +93,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1l0rn43bhyzlfa4wwcfz016vb4lkzvl0jf5zibkjy4sppxxixzrq"; + sha256 = "1ygg145wxlgm12b1x5r0rsk2aa6i2wjz7bgb21j8vmyqyfl272cy"; type = "gem"; }; - version = "7.0.6"; + version = "7.0.7"; }; activestorage = { dependencies = ["actionpack" "activejob" "activerecord" "activesupport" "marcel" "mini_mime"]; @@ -104,10 +104,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "036mv935r5mmh7fljz10lyr43c5y5bn8b6h7gdkv8spfgwzihw4j"; + sha256 = "1gaxpqw4mv7xrk1iaw9jspf4m201mkmchc0c22ax3snm3v6jg2qv"; type = "gem"; }; - version = "7.0.6"; + version = "7.0.7"; }; activesupport = { dependencies = ["concurrent-ruby" "i18n" "minitest" "tzinfo"]; @@ -115,10 +115,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1cjsf26656996hv48wgv2mkwxf0fy1qc68ikgzq7mzfq2mmvmayk"; + sha256 = "1wzbnv3hns0yiwbgh1m3q5j0d7b0k52nlpwirhxyv3l0ycmljfr9"; type = "gem"; }; - version = "7.0.6"; + version = "7.0.7"; }; addressable = { dependencies = ["public_suffix"]; @@ -126,10 +126,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "15s8van7r2ad3dq6i03l3z4hqnvxcq75a3h72kxvf9an53sqma20"; + sha256 = "05r1fwy487klqkya7vzia8hnklcxy4vr92m9dmni3prfwk6zpw33"; type = "gem"; }; - version = "2.8.4"; + version = "2.8.5"; }; algoliasearch = { dependencies = ["httpclient" "json"]; @@ -213,6 +213,16 @@ }; version = "1.2.0"; }; + base64 = { + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0cydk9p2cv25qysm0sn2pb97fcpz1isa7n3c8xm1gd99li8x6x8c"; + type = "gem"; + }; + version = "0.1.1"; + }; benchmark = { groups = ["default"]; platforms = []; @@ -223,6 +233,16 @@ }; version = "0.2.1"; }; + bindata = { + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "04y4zgh4bbcb8wmkxwfqg4saky1d1f3xw8z6yk543q13h8ky8rz5"; + type = "gem"; + }; + version = "2.4.15"; + }; builder = { groups = ["default"]; platforms = []; @@ -685,10 +705,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "074162raa8pc92q6833hgqdlfr3z5jgid9avdz5k25cnls2rqwrf"; + sha256 = "1lb5slzbqrca49h0gaifg82xky5r7i9xgm4560pin1xl5fp15lzx"; type = "gem"; }; - version = "0.23.9"; + version = "0.23.10"; }; concurrent-ruby = { groups = ["default"]; @@ -710,6 +730,17 @@ }; version = "2.4.1"; }; + crabstone = { + dependencies = ["ffi"]; + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "154g3l1flndm5pvnhjnrn47ndnsxvfm8y1kv4zhnwiys28pv40nb"; + type = "gem"; + }; + version = "4.0.4"; + }; crass = { groups = ["default"]; platforms = []; @@ -771,6 +802,17 @@ }; version = "3.3.3"; }; + dentaku = { + dependencies = ["concurrent-ruby"]; + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0ssmjs7x733n7x6zvcwkaq2rnl0sz1qslli19s730a7ny7pialqg"; + type = "gem"; + }; + version = "3.4.2"; + }; dep-selector-libgecode = { groups = ["default"]; platforms = []; @@ -875,6 +917,17 @@ }; version = "0.1.0"; }; + elftools = { + dependencies = ["bindata"]; + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0p96wj4sz3sfv9yxyl8z530554bkbf82vj24w6x7yf91qa1p8z6i"; + type = "gem"; + }; + version = "1.1.3"; + }; em-websocket = { dependencies = ["eventmachine" "http_parser.rb"]; groups = ["default"]; @@ -1940,6 +1993,17 @@ }; version = "2.7.1"; }; + keystone-engine = { + dependencies = ["ffi"]; + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0waz2bj1dsl63416k1n0vvrwva425rm94gsza7ci49mm1wjdabh2"; + type = "gem"; + }; + version = "0.9.0"; + }; kramdown = { dependencies = ["rexml"]; groups = ["default"]; @@ -2145,20 +2209,20 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0ipw892jbksbxxcrlx9g5ljq60qx47pm24ywgfbyjskbcl78pkvb"; + sha256 = "1s95nyppk5wrpfgqrzf6f00g7nk0662zmxm4mr2vbdbl83q3k72x"; type = "gem"; }; - version = "3.4.1"; + version = "3.5.0"; }; mime-types-data = { groups = ["default"]; platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1pky3vzaxlgm9gw5wlqwwi7wsw3jrglrfflrppvvnsrlaiz043z9"; + sha256 = "17zdim7kzrh5j8c97vjqp4xp78wbyz7smdp4hi5iyzk0s9imdn5a"; type = "gem"; }; - version = "3.2023.0218.1"; + version = "3.2023.0808"; }; mini_magick = { groups = ["default"]; @@ -2175,10 +2239,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0lbim375gw2dk6383qirz13hgdmxlan0vc5da2l072j3qw6fqjm5"; + sha256 = "1vycif7pjzkr29mfk4dlqv3disc5dn0va04lkwajlpr1wkibg0c6"; type = "gem"; }; - version = "1.1.2"; + version = "1.1.5"; }; mini_portile2 = { groups = ["default"]; @@ -2362,10 +2426,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0yx0pb5fmziz92bw8qzbh8vf20lr56nd3s6q8h0gsgr307lki687"; + sha256 = "1jyj6j7w9zpj2zhp4dyhdjiwsn9rqwksj7s7fzpnn7rx2xvz2a1a"; type = "gem"; }; - version = "7.1.0"; + version = "7.2.0"; }; netrc = { groups = ["default"]; @@ -2420,6 +2484,17 @@ }; version = "0.2.3"; }; + one_gadget = { + dependencies = ["elftools"]; + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0v079xkzzr1bjff5z2wlzs0k11nk4b04kgy1p63lwhbl12jl7qz1"; + type = "gem"; + }; + version = "1.7.4"; + }; openssl = { groups = ["default"]; platforms = []; @@ -2662,6 +2737,17 @@ }; version = "6.3.0"; }; + pwntools = { + dependencies = ["crabstone" "dentaku" "elftools" "keystone-engine" "method_source" "one_gadget" "rainbow" "ruby2ruby" "rubyserial"]; + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0pxc3lcgnywglv0skzj1r8i4p8mwcj27hlwzwqf8sj2mn3iqyjnd"; + type = "gem"; + }; + version = "1.2.1"; + }; racc = { groups = ["default"]; platforms = []; @@ -2677,10 +2763,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "16w217k9z02c4hqizym8dkj6bqmmzx4qdvqpnskgzf174a5pwdxk"; + sha256 = "15rdwbyk71c9nxvd527bvb8jxkcys8r3dj3vqra5b3sa63qs30vv"; type = "gem"; }; - version = "2.2.7"; + version = "2.2.8"; }; rack-protection = { dependencies = ["rack"]; @@ -2688,10 +2774,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1kpm67az1wxlg76h620in2r7agfyhv177ps268j5ggsanzddzih8"; + sha256 = "0xsz78hccgza144n37bfisdkzpr2c8m0xl6rnlzgxdbsm1zrkg7r"; type = "gem"; }; - version = "3.0.6"; + version = "3.1.0"; }; rack-test = { dependencies = ["rack"]; @@ -2710,10 +2796,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "08glp6jhq5yh8i5jjxzqa3aqx819l6ci6m68bx1asmimla0x9ysx"; + sha256 = "06rd03bpdg29gql5xb6ijdq9br5060v4bykaz739zx2qm8xnjs9j"; type = "gem"; }; - version = "7.0.6"; + version = "7.0.7"; }; rails-dom-testing = { dependencies = ["activesupport" "minitest" "nokogiri"]; @@ -2721,10 +2807,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "17g05y7q7934z0ib4aph8h71c2qwjmlakkm7nb2ab45q0aqkfgjd"; + sha256 = "0fx9dx1ag0s1lr6lfr34lbx5i1bvn3bhyf3w3mx6h7yz90p725g5"; type = "gem"; }; - version = "2.1.1"; + version = "2.2.0"; }; rails-html-sanitizer = { dependencies = ["loofah" "nokogiri"]; @@ -2743,10 +2829,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0dcabk5bl5flmspnb9d2qcvclcaw0nd5yr9w6m5pzsmylg3y63pv"; + sha256 = "0in2b84qqmfnigx0li9bgi6l4knmgbj3a29fzm1zzb5jnv4r1gbr"; type = "gem"; }; - version = "7.0.6"; + version = "7.0.7"; }; rainbow = { groups = ["default"]; @@ -2867,10 +2953,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "10r5z5mg1x5kjx3wvwx5d8bqgd2j8pc4dlaasq7nmnl3nsn7sn9k"; + sha256 = "00qqqzgh7f0f2j6rkbm5v7976mg8ik4sapk2vnb3rq98m8xc1wfw"; type = "gem"; }; - version = "5.0.6"; + version = "5.0.7"; }; redis-client = { dependencies = ["connection_pool"]; @@ -2878,10 +2964,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0ih4zghnb888jd5vh8ymvvkfx9bq7cyhi750zgvl7s64bzphwz9v"; + sha256 = "0fbs2fbl1g5lra43qk6rawbvynj2qgdzyx1gnjsjcxbl8247bahl"; type = "gem"; }; - version = "0.14.1"; + version = "0.15.0"; }; redis-rack = { dependencies = ["rack" "redis-store"]; @@ -3033,15 +3119,15 @@ version = "3.12.1"; }; rubocop = { - dependencies = ["json" "language_server-protocol" "parallel" "parser" "rainbow" "regexp_parser" "rexml" "rubocop-ast" "ruby-progressbar" "unicode-display_width"]; + dependencies = ["base64" "json" "language_server-protocol" "parallel" "parser" "rainbow" "regexp_parser" "rexml" "rubocop-ast" "ruby-progressbar" "unicode-display_width"]; groups = ["default"]; platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "17c94wl2abqzf4fj469mdxzap1sd3410x421nl6mh2w49jsgvpki"; + sha256 = "1ig23w64f9y1gi6l4pv69m0nfhn3nnr3q4s81br9vl1b1z02n5cn"; type = "gem"; }; - version = "1.55.0"; + version = "1.56.0"; }; rubocop-ast = { dependencies = ["parser"]; @@ -3103,10 +3189,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1iyxcr34p3hy7rjgrrlg6z9libiqy1als62rk3d37ixsbjdy6iyd"; + sha256 = "0xzl5na2n3g47w9arf0cj0dpdlxssd0bhbsg5h12kpa8lp24ki1y"; type = "gem"; }; - version = "0.7.4"; + version = "0.8.0"; }; ruby-lxc = { groups = ["default"]; @@ -3169,6 +3255,39 @@ }; version = "0.0.5"; }; + ruby2ruby = { + dependencies = ["ruby_parser" "sexp_processor"]; + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "04bz2jw3ida07mgk450l9m6xklhzbv0z4s6ak6bl7vp4rhcy41f8"; + type = "gem"; + }; + version = "2.5.0"; + }; + ruby_parser = { + dependencies = ["sexp_processor"]; + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0j8w4mqhqaw53jd27cfhq1mq02d1r606x9fmrpfzz0fwjnk8j8ld"; + type = "gem"; + }; + version = "3.20.3"; + }; + rubyserial = { + dependencies = ["ffi"]; + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1vj5yan6srbvkf5vfp9d9b9z8wyygd0zxcy54c35yhkjl6kwd22q"; + type = "gem"; + }; + version = "0.6.0"; + }; rubyzip = { groups = ["default"]; platforms = []; @@ -3269,10 +3388,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0zm5lfvhc1j7nq73s7i4g93kfbb3fg81jicf3sbfh2w5gm59nq7v"; + sha256 = "1jan1hyrsxi964caqm81w364fmczz4xrbd2fi9ciw1hmyb9cm7m4"; type = "gem"; }; - version = "5.70.0"; + version = "5.71.0"; }; sequel_pg = { dependencies = ["pg" "sequel"]; @@ -3285,6 +3404,16 @@ }; version = "1.17.1"; }; + sexp_processor = { + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0vzz9mhg4kkdqf179pm30i204h7iskanxrk53j0csf0qrrs4iajd"; + type = "gem"; + }; + version = "4.17.0"; + }; simplecov = { dependencies = ["docile" "simplecov-html" "simplecov_json_formatter"]; groups = ["default"]; @@ -3333,10 +3462,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1q0ghxfqgjhg2dq9699mn5qx6m6q2cgldg312kh41pzwwy71a7hx"; + sha256 = "00541cnypsh1mnilfxxqlz6va9afrixf9m1asn4wzjp5m59777p8"; type = "gem"; }; - version = "3.0.6"; + version = "3.1.0"; }; slather = { dependencies = ["CFPropertyList" "activesupport" "clamp" "nokogiri" "xcodeproj"]; @@ -3395,10 +3524,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0n197kk9nqf955lsphns835sbkz7wcgbpppad482iqx95bhf8i6l"; + sha256 = "1abdrhb4sf5wwlvli87nh5jiy13dy2szv448h6a4bzyrg3nf47fx"; type = "gem"; }; - version = "0.5.10932"; + version = "0.5.10957"; }; sqlite3 = { dependencies = ["mini_portile2"]; @@ -3651,16 +3780,6 @@ }; version = "7.0.0"; }; - webrick = { - groups = ["default"]; - platforms = []; - source = { - remotes = ["https://rubygems.org"]; - sha256 = "13qm7s0gr2pmfcl7dxrmq38asaza4w0i2n9my4yzs499j731wh8r"; - type = "gem"; - }; - version = "1.8.1"; - }; websocket-driver = { dependencies = ["websocket-extensions"]; groups = ["default"]; @@ -3728,10 +3847,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0v14hl814knwi8pm2n09bpgcd107jafv4lnj9zmcsgfwbqxin3sq"; + sha256 = "1mwdd445w63khz13hpv17m2br5xngyjl3jdj08xizjbm78i2zrxd"; type = "gem"; }; - version = "2.6.9"; + version = "2.6.11"; }; zookeeper = { groups = ["default"];