diff --git a/.git-blame-ignore-revs b/.git-blame-ignore-revs
index f6ffeb9b122a..d83dc1efe44f 100644
--- a/.git-blame-ignore-revs
+++ b/.git-blame-ignore-revs
@@ -153,3 +153,6 @@ bdfde18037f8d9f9b641a4016c8ada4dc4cbf856
# nixos/ollama: format with nixfmt-rfc-style (#329561)
246d1ee533810ac1946d863bbd9de9b525818d56
+
+# nixos/nvidia: apply nixfmt-rfc-style (#313440)
+fbdcdde04a7caa007e825a8b822c75fab9adb2d6
diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix
index faeca5bde79d..0fd6c293a7ad 100644
--- a/maintainers/maintainer-list.nix
+++ b/maintainers/maintainer-list.nix
@@ -4693,6 +4693,11 @@
githubId = 3179832;
name = "D. Bohdan";
};
+ d-brasher = {
+ github = "d-brasher";
+ githubId = 175485311;
+ name = "D. Brasher";
+ };
dbrgn = {
email = "nix@dbrgn.ch";
github = "dbrgn";
@@ -14920,6 +14925,12 @@
githubId = 16027994;
name = "Nathan Viets";
};
+ nw = {
+ email = "nixpkgs@nwhirschfeld.de";
+ github = "nwhirschfeld";
+ githubId = 5047052;
+ name = "Niclas Hirschfeld";
+ };
nyadiia = {
email = "nyadiia@pm.me";
github = "nyadiia";
@@ -15953,6 +15964,12 @@
githubId = 34967;
name = "Julius de Bruijn";
};
+ pinage404 = {
+ email = "pinage404+nixpkgs@gmail.com";
+ github = "pinage404";
+ githubId = 6325757;
+ name = "pinage404";
+ };
pineapplehunter = {
email = "peshogo+nixpkgs@gmail.com";
github = "pineapplehunter";
diff --git a/maintainers/team-list.nix b/maintainers/team-list.nix
index 5497412aa2b6..8ce7e4273feb 100644
--- a/maintainers/team-list.nix
+++ b/maintainers/team-list.nix
@@ -749,7 +749,10 @@ with lib.maintainers;
};
openstack = {
- members = [ SuperSandro2000 ];
+ members = [
+ SuperSandro2000
+ anthonyroussel
+ ];
scope = "Maintain the ecosystem around OpenStack";
shortName = "OpenStack";
};
diff --git a/nixos/modules/hardware/video/nvidia.nix b/nixos/modules/hardware/video/nvidia.nix
index 1aa79166dee7..b4e833186e55 100644
--- a/nixos/modules/hardware/video/nvidia.nix
+++ b/nixos/modules/hardware/video/nvidia.nix
@@ -472,7 +472,6 @@ in
hardware.graphics = {
extraPackages = [ pkgs.nvidia-vaapi-driver ];
- extraPackages32 = [ pkgs.pkgsi686Linux.nvidia-vaapi-driver ];
};
environment.systemPackages =
diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix
index 91a334edf210..53c314bb05d5 100644
--- a/nixos/modules/module-list.nix
+++ b/nixos/modules/module-list.nix
@@ -1244,6 +1244,7 @@
./services/networking/websockify.nix
./services/networking/wg-access-server.nix
./services/networking/wg-netmanager.nix
+ ./services/networking/wvdial.nix
./services/networking/webhook.nix
./services/networking/wg-quick.nix
./services/networking/wgautomesh.nix
diff --git a/nixos/modules/services/backup/mysql-backup.nix b/nixos/modules/services/backup/mysql-backup.nix
index 00381be4b75d..e3fa7f45844f 100644
--- a/nixos/modules/services/backup/mysql-backup.nix
+++ b/nixos/modules/services/backup/mysql-backup.nix
@@ -20,7 +20,7 @@ let
'';
backupDatabaseScript = db: ''
dest="${cfg.location}/${db}.gz"
- if ${mariadb}/bin/mysqldump ${optionalString cfg.singleTransaction "--single-transaction"} ${db} | ${gzip}/bin/gzip -c > $dest.tmp; then
+ if ${mariadb}/bin/mysqldump ${optionalString cfg.singleTransaction "--single-transaction"} ${db} | ${gzip}/bin/gzip -c ${cfg.gzipOptions} > $dest.tmp; then
mv $dest.tmp $dest
echo "Backed up to $dest"
else
@@ -78,6 +78,14 @@ in
Whether to create database dump in a single transaction
'';
};
+
+ gzipOptions = mkOption {
+ default = "--no-name --rsyncable";
+ type = types.str;
+ description = ''
+ Command line options to use when invoking `gzip`.
+ '';
+ };
};
};
diff --git a/nixos/modules/services/networking/wvdial.nix b/nixos/modules/services/networking/wvdial.nix
new file mode 100644
index 000000000000..8e06d64940d0
--- /dev/null
+++ b/nixos/modules/services/networking/wvdial.nix
@@ -0,0 +1,47 @@
+# Global configuration for wvdial.
+
+{
+ config,
+ lib,
+ pkgs,
+ ...
+}:
+
+let
+ cfg = config.environment.wvdial;
+in
+{
+ options = {
+ environment.wvdial = {
+ dialerDefaults = lib.mkOption {
+ default = "";
+ type = lib.types.str;
+ example = ''Init1 = AT+CGDCONT=1,"IP","internet.t-mobile"'';
+ description = ''
+ Contents of the "Dialer Defaults" section of
+ /etc/wvdial.conf.
+ '';
+ };
+ pppDefaults = lib.mkOption {
+ default = ''
+ noipdefault
+ usepeerdns
+ defaultroute
+ persist
+ noauth
+ '';
+ type = lib.types.str;
+ description = "Default ppp settings for wvdial.";
+ };
+ };
+ };
+
+ config = lib.mkIf (cfg.dialerDefaults != "") {
+ environment.etc."wvdial.conf".source = pkgs.writeText "wvdial.conf" ''
+ [Dialer Defaults]
+ PPPD PATH = ${pkgs.ppp}/sbin/pppd
+ ${config.environment.wvdial.dialerDefaults}
+ '';
+ environment.etc."ppp/peers/wvdial".source = pkgs.writeText "wvdial" cfg.pppDefaults;
+ };
+}
diff --git a/pkgs/applications/audio/lingot/default.nix b/pkgs/applications/audio/lingot/default.nix
index 4cc31ae42154..b024b42a6f1a 100644
--- a/pkgs/applications/audio/lingot/default.nix
+++ b/pkgs/applications/audio/lingot/default.nix
@@ -46,6 +46,6 @@ stdenv.mkDerivation rec {
homepage = "https://www.nongnu.org/lingot/";
license = lib.licenses.gpl2Plus;
platforms = with lib.platforms; linux;
- maintainers = with lib.maintainers; [ viric ];
+ maintainers = [ ];
};
}
diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages.nix
index 7880d7f7a117..34469eb19628 100644
--- a/pkgs/applications/editors/emacs/elisp-packages/manual-packages.nix
+++ b/pkgs/applications/editors/emacs/elisp-packages/manual-packages.nix
@@ -4,111 +4,33 @@ self:
let
inherit (self) callPackage;
in
-{
+lib.packagesFromDirectoryRecursive {
+ inherit callPackage;
+ directory = ./manual-packages;
+}
+// {
inherit (pkgs) emacspeak;
- acm = callPackage ./manual-packages/acm { };
-
- acm-terminal = callPackage ./manual-packages/acm-terminal { };
-
- agda2-mode = callPackage ./manual-packages/agda2-mode { };
-
- cask = callPackage ./manual-packages/cask { };
-
codeium = callPackage ./manual-packages/codeium {
inherit (pkgs) codeium;
};
- consult-gh = callPackage ./manual-packages/consult-gh { };
-
- control-lock = callPackage ./manual-packages/control-lock { };
-
- copilot = callPackage ./manual-packages/copilot { };
-
- ebuild-mode = callPackage ./manual-packages/ebuild-mode { };
-
- el-easydraw = callPackage ./manual-packages/el-easydraw { };
-
- elisp-ffi = callPackage ./manual-packages/elisp-ffi { };
-
- emacs-conflict = callPackage ./manual-packages/emacs-conflict { };
-
- evil-markdown = callPackage ./manual-packages/evil-markdown { };
-
- font-lock-plus = callPackage ./manual-packages/font-lock-plus { };
-
- git-undo = callPackage ./manual-packages/git-undo { };
-
- grid = callPackage ./manual-packages/grid { };
-
- helm-words = callPackage ./manual-packages/helm-words { };
-
- icicles = callPackage ./manual-packages/icicles { };
-
- idris2-mode = callPackage ./manual-packages/idris2-mode { };
-
- isearch-plus = callPackage ./manual-packages/isearch-plus { };
-
- isearch-prop = callPackage ./manual-packages/isearch-prop { };
-
- jam-mode = callPackage ./manual-packages/jam-mode { };
-
- ligo-mode = callPackage ./manual-packages/ligo-mode { };
-
- llvm-mode = callPackage ./manual-packages/llvm-mode { };
-
lsp-bridge = callPackage ./manual-packages/lsp-bridge {
inherit (pkgs) basedpyright git go gopls python3;
};
- lspce = callPackage ./manual-packages/lspce { };
-
matrix-client = callPackage ./manual-packages/matrix-client {
_map = self.map;
};
- mu4e = callPackage ./manual-packages/mu4e { };
-
- notdeft = callPackage ./manual-packages/notdeft { };
-
- ott-mode = callPackage ./manual-packages/ott-mode { };
-
- pod-mode = callPackage ./manual-packages/pod-mode { };
-
- prisma-mode = callPackage ./manual-packages/prisma-mode { };
-
structured-haskell-mode = self.shm;
- sv-kalender = callPackage ./manual-packages/sv-kalender { };
-
texpresso = callPackage ./manual-packages/texpresso { inherit (pkgs) texpresso; };
tree-sitter-langs = callPackage ./manual-packages/tree-sitter-langs { final = self; };
- treesit-grammars = callPackage ./manual-packages/treesit-grammars { };
-
- tsc = callPackage ./manual-packages/tsc { };
-
- urweb-mode = callPackage ./manual-packages/urweb-mode { };
-
- voicemacs = callPackage ./manual-packages/voicemacs { };
-
- wat-mode = callPackage ./manual-packages/wat-mode { };
-
- xapian-lite = callPackage ./manual-packages/xapian-lite { };
-
- yes-no = callPackage ./manual-packages/yes-no { };
-
- youtube-dl = callPackage ./manual-packages/youtube-dl { };
-
# From old emacsPackages (pre emacsPackagesNg)
cedille = callPackage ./manual-packages/cedille { inherit (pkgs) cedille; };
- color-theme-solarized = callPackage ./manual-packages/color-theme-solarized { };
- hsc3-mode = callPackage ./manual-packages/hsc3 { };
- prolog-mode = callPackage ./manual-packages/prolog { };
- rect-mark = callPackage ./manual-packages/rect-mark { };
- session-management-for-emacs = callPackage ./manual-packages/session-management-for-emacs { };
- sunrise-commander = callPackage ./manual-packages/sunrise-commander { };
# camelCase aliases for some of the kebab-case expressions above
colorThemeSolarized = self.color-theme-solarized;
diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/acm-terminal/default.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/acm-terminal/package.nix
similarity index 100%
rename from pkgs/applications/editors/emacs/elisp-packages/manual-packages/acm-terminal/default.nix
rename to pkgs/applications/editors/emacs/elisp-packages/manual-packages/acm-terminal/package.nix
diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/acm/default.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/acm/package.nix
similarity index 100%
rename from pkgs/applications/editors/emacs/elisp-packages/manual-packages/acm/default.nix
rename to pkgs/applications/editors/emacs/elisp-packages/manual-packages/acm/package.nix
diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/agda2-mode/default.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/agda2-mode/package.nix
similarity index 100%
rename from pkgs/applications/editors/emacs/elisp-packages/manual-packages/agda2-mode/default.nix
rename to pkgs/applications/editors/emacs/elisp-packages/manual-packages/agda2-mode/package.nix
diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/cask/default.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/cask/package.nix
similarity index 100%
rename from pkgs/applications/editors/emacs/elisp-packages/manual-packages/cask/default.nix
rename to pkgs/applications/editors/emacs/elisp-packages/manual-packages/cask/package.nix
diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/color-theme-solarized/default.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/color-theme-solarized/package.nix
similarity index 100%
rename from pkgs/applications/editors/emacs/elisp-packages/manual-packages/color-theme-solarized/default.nix
rename to pkgs/applications/editors/emacs/elisp-packages/manual-packages/color-theme-solarized/package.nix
diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/consult-gh/default.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/consult-gh/package.nix
similarity index 100%
rename from pkgs/applications/editors/emacs/elisp-packages/manual-packages/consult-gh/default.nix
rename to pkgs/applications/editors/emacs/elisp-packages/manual-packages/consult-gh/package.nix
diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/control-lock/default.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/control-lock/package.nix
similarity index 100%
rename from pkgs/applications/editors/emacs/elisp-packages/manual-packages/control-lock/default.nix
rename to pkgs/applications/editors/emacs/elisp-packages/manual-packages/control-lock/package.nix
diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/copilot/default.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/copilot/package.nix
similarity index 100%
rename from pkgs/applications/editors/emacs/elisp-packages/manual-packages/copilot/default.nix
rename to pkgs/applications/editors/emacs/elisp-packages/manual-packages/copilot/package.nix
diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/ebuild-mode/default.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/ebuild-mode/package.nix
similarity index 100%
rename from pkgs/applications/editors/emacs/elisp-packages/manual-packages/ebuild-mode/default.nix
rename to pkgs/applications/editors/emacs/elisp-packages/manual-packages/ebuild-mode/package.nix
diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/el-easydraw/default.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/el-easydraw/package.nix
similarity index 100%
rename from pkgs/applications/editors/emacs/elisp-packages/manual-packages/el-easydraw/default.nix
rename to pkgs/applications/editors/emacs/elisp-packages/manual-packages/el-easydraw/package.nix
diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/elisp-ffi/default.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/elisp-ffi/package.nix
similarity index 100%
rename from pkgs/applications/editors/emacs/elisp-packages/manual-packages/elisp-ffi/default.nix
rename to pkgs/applications/editors/emacs/elisp-packages/manual-packages/elisp-ffi/package.nix
diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/emacs-conflict/default.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/emacs-conflict/package.nix
similarity index 100%
rename from pkgs/applications/editors/emacs/elisp-packages/manual-packages/emacs-conflict/default.nix
rename to pkgs/applications/editors/emacs/elisp-packages/manual-packages/emacs-conflict/package.nix
diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/evil-markdown/default.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/evil-markdown/package.nix
similarity index 100%
rename from pkgs/applications/editors/emacs/elisp-packages/manual-packages/evil-markdown/default.nix
rename to pkgs/applications/editors/emacs/elisp-packages/manual-packages/evil-markdown/package.nix
diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/font-lock-plus/default.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/font-lock-plus/package.nix
similarity index 100%
rename from pkgs/applications/editors/emacs/elisp-packages/manual-packages/font-lock-plus/default.nix
rename to pkgs/applications/editors/emacs/elisp-packages/manual-packages/font-lock-plus/package.nix
diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/git-undo/default.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/git-undo/package.nix
similarity index 100%
rename from pkgs/applications/editors/emacs/elisp-packages/manual-packages/git-undo/default.nix
rename to pkgs/applications/editors/emacs/elisp-packages/manual-packages/git-undo/package.nix
diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/grid/default.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/grid/package.nix
similarity index 100%
rename from pkgs/applications/editors/emacs/elisp-packages/manual-packages/grid/default.nix
rename to pkgs/applications/editors/emacs/elisp-packages/manual-packages/grid/package.nix
diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/helm-words/default.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/helm-words/package.nix
similarity index 100%
rename from pkgs/applications/editors/emacs/elisp-packages/manual-packages/helm-words/default.nix
rename to pkgs/applications/editors/emacs/elisp-packages/manual-packages/helm-words/package.nix
diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/hsc3/default.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/hsc3-mode/package.nix
similarity index 100%
rename from pkgs/applications/editors/emacs/elisp-packages/manual-packages/hsc3/default.nix
rename to pkgs/applications/editors/emacs/elisp-packages/manual-packages/hsc3-mode/package.nix
diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/icicles/default.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/icicles/package.nix
similarity index 100%
rename from pkgs/applications/editors/emacs/elisp-packages/manual-packages/icicles/default.nix
rename to pkgs/applications/editors/emacs/elisp-packages/manual-packages/icicles/package.nix
diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/idris2-mode/default.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/idris2-mode/package.nix
similarity index 75%
rename from pkgs/applications/editors/emacs/elisp-packages/manual-packages/idris2-mode/default.nix
rename to pkgs/applications/editors/emacs/elisp-packages/manual-packages/idris2-mode/package.nix
index 5148daad1903..2a7b7b571d12 100644
--- a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/idris2-mode/default.nix
+++ b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/idris2-mode/package.nix
@@ -3,11 +3,15 @@
fetchFromGitHub,
melpaBuild,
prop-menu,
+ gitUpdater,
}:
-melpaBuild rec {
- pname = "idris2-mode";
+let
version = "1.1";
+in
+melpaBuild {
+ pname = "idris2-mode";
+ inherit version;
src = fetchFromGitHub {
owner = "idris-community";
@@ -20,10 +24,12 @@ melpaBuild rec {
prop-menu
];
+ passthru.updateScript = gitUpdater { };
+
meta = {
homepage = "https://github.com/idris-community/idris2-mode";
description = "Emacs mode for editing Idris 2 code";
license = lib.licenses.gpl3Only;
- maintainers = with lib.maintainers; [ wuyoli ];
+ maintainers = with lib.maintainers; [ wuyoli AndersonTorres ];
};
}
diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/isearch-plus/default.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/isearch-plus/package.nix
similarity index 100%
rename from pkgs/applications/editors/emacs/elisp-packages/manual-packages/isearch-plus/default.nix
rename to pkgs/applications/editors/emacs/elisp-packages/manual-packages/isearch-plus/package.nix
diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/isearch-prop/default.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/isearch-prop/package.nix
similarity index 100%
rename from pkgs/applications/editors/emacs/elisp-packages/manual-packages/isearch-prop/default.nix
rename to pkgs/applications/editors/emacs/elisp-packages/manual-packages/isearch-prop/package.nix
diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/jam-mode/default.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/jam-mode/package.nix
similarity index 100%
rename from pkgs/applications/editors/emacs/elisp-packages/manual-packages/jam-mode/default.nix
rename to pkgs/applications/editors/emacs/elisp-packages/manual-packages/jam-mode/package.nix
diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/ligo-mode/default.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/ligo-mode/package.nix
similarity index 100%
rename from pkgs/applications/editors/emacs/elisp-packages/manual-packages/ligo-mode/default.nix
rename to pkgs/applications/editors/emacs/elisp-packages/manual-packages/ligo-mode/package.nix
diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/llvm-mode/default.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/llvm-mode/package.nix
similarity index 100%
rename from pkgs/applications/editors/emacs/elisp-packages/manual-packages/llvm-mode/default.nix
rename to pkgs/applications/editors/emacs/elisp-packages/manual-packages/llvm-mode/package.nix
diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/lspce/default.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/lspce/package.nix
similarity index 100%
rename from pkgs/applications/editors/emacs/elisp-packages/manual-packages/lspce/default.nix
rename to pkgs/applications/editors/emacs/elisp-packages/manual-packages/lspce/package.nix
diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/mu4e/default.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/mu4e/package.nix
similarity index 100%
rename from pkgs/applications/editors/emacs/elisp-packages/manual-packages/mu4e/default.nix
rename to pkgs/applications/editors/emacs/elisp-packages/manual-packages/mu4e/package.nix
diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/notdeft/default.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/notdeft/package.nix
similarity index 100%
rename from pkgs/applications/editors/emacs/elisp-packages/manual-packages/notdeft/default.nix
rename to pkgs/applications/editors/emacs/elisp-packages/manual-packages/notdeft/package.nix
diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/ott-mode/default.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/ott-mode/package.nix
similarity index 100%
rename from pkgs/applications/editors/emacs/elisp-packages/manual-packages/ott-mode/default.nix
rename to pkgs/applications/editors/emacs/elisp-packages/manual-packages/ott-mode/package.nix
diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/pod-mode/default.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/pod-mode/package.nix
similarity index 100%
rename from pkgs/applications/editors/emacs/elisp-packages/manual-packages/pod-mode/default.nix
rename to pkgs/applications/editors/emacs/elisp-packages/manual-packages/pod-mode/package.nix
diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/prisma-mode/default.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/prisma-mode/package.nix
similarity index 100%
rename from pkgs/applications/editors/emacs/elisp-packages/manual-packages/prisma-mode/default.nix
rename to pkgs/applications/editors/emacs/elisp-packages/manual-packages/prisma-mode/package.nix
diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/prolog/default.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/prolog-mode/package.nix
similarity index 100%
rename from pkgs/applications/editors/emacs/elisp-packages/manual-packages/prolog/default.nix
rename to pkgs/applications/editors/emacs/elisp-packages/manual-packages/prolog-mode/package.nix
diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/rect-mark/default.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/rect-mark/package.nix
similarity index 100%
rename from pkgs/applications/editors/emacs/elisp-packages/manual-packages/rect-mark/default.nix
rename to pkgs/applications/editors/emacs/elisp-packages/manual-packages/rect-mark/package.nix
diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/session-management-for-emacs/default.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/session-management-for-emacs/package.nix
similarity index 100%
rename from pkgs/applications/editors/emacs/elisp-packages/manual-packages/session-management-for-emacs/default.nix
rename to pkgs/applications/editors/emacs/elisp-packages/manual-packages/session-management-for-emacs/package.nix
diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/sunrise-commander/default.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/sunrise-commander/package.nix
similarity index 100%
rename from pkgs/applications/editors/emacs/elisp-packages/manual-packages/sunrise-commander/default.nix
rename to pkgs/applications/editors/emacs/elisp-packages/manual-packages/sunrise-commander/package.nix
diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/sv-kalender/default.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/sv-kalender/package.nix
similarity index 100%
rename from pkgs/applications/editors/emacs/elisp-packages/manual-packages/sv-kalender/default.nix
rename to pkgs/applications/editors/emacs/elisp-packages/manual-packages/sv-kalender/package.nix
diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/treesit-grammars/default.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/treesit-grammars/package.nix
similarity index 100%
rename from pkgs/applications/editors/emacs/elisp-packages/manual-packages/treesit-grammars/default.nix
rename to pkgs/applications/editors/emacs/elisp-packages/manual-packages/treesit-grammars/package.nix
diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/tsc/default.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/tsc/package.nix
similarity index 100%
rename from pkgs/applications/editors/emacs/elisp-packages/manual-packages/tsc/default.nix
rename to pkgs/applications/editors/emacs/elisp-packages/manual-packages/tsc/package.nix
diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/urweb-mode/default.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/urweb-mode/package.nix
similarity index 100%
rename from pkgs/applications/editors/emacs/elisp-packages/manual-packages/urweb-mode/default.nix
rename to pkgs/applications/editors/emacs/elisp-packages/manual-packages/urweb-mode/package.nix
diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/voicemacs/default.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/voicemacs/package.nix
similarity index 100%
rename from pkgs/applications/editors/emacs/elisp-packages/manual-packages/voicemacs/default.nix
rename to pkgs/applications/editors/emacs/elisp-packages/manual-packages/voicemacs/package.nix
diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/wat-mode/default.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/wat-mode/package.nix
similarity index 100%
rename from pkgs/applications/editors/emacs/elisp-packages/manual-packages/wat-mode/default.nix
rename to pkgs/applications/editors/emacs/elisp-packages/manual-packages/wat-mode/package.nix
diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/xapian-lite/default.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/xapian-lite/package.nix
similarity index 100%
rename from pkgs/applications/editors/emacs/elisp-packages/manual-packages/xapian-lite/default.nix
rename to pkgs/applications/editors/emacs/elisp-packages/manual-packages/xapian-lite/package.nix
diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/yes-no/default.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/yes-no/package.nix
similarity index 100%
rename from pkgs/applications/editors/emacs/elisp-packages/manual-packages/yes-no/default.nix
rename to pkgs/applications/editors/emacs/elisp-packages/manual-packages/yes-no/package.nix
diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/youtube-dl/default.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/youtube-dl/package.nix
similarity index 100%
rename from pkgs/applications/editors/emacs/elisp-packages/manual-packages/youtube-dl/default.nix
rename to pkgs/applications/editors/emacs/elisp-packages/manual-packages/youtube-dl/package.nix
diff --git a/pkgs/applications/editors/vscode/extensions/default.nix b/pkgs/applications/editors/vscode/extensions/default.nix
index 3d2342d99fdb..8d20bea3c3d6 100644
--- a/pkgs/applications/editors/vscode/extensions/default.nix
+++ b/pkgs/applications/editors/vscode/extensions/default.nix
@@ -1099,6 +1099,23 @@ let
};
};
+ csharpier.csharpier-vscode = buildVscodeMarketplaceExtension {
+ mktplcRef = {
+ name = "csharpier-vscode";
+ publisher = "csharpier";
+ version = "1.7.3";
+ hash = "sha256-/ZLjnlLl6xmgEazdCbnuE6UuuV1tDwAjpxz+vmBuYHE=";
+ };
+ meta = {
+ changelog = "https://marketplace.visualstudio.com/items/csharpier.csharpier-vscode/changelog";
+ description = "CSharpier code formatter for Visual Studio Code";
+ downloadPage = "https://marketplace.visualstudio.com/items?itemName=csharpier.csharpier-vscode";
+ homepage = "https://github.com/belav/csharpier";
+ license = lib.licenses.mit;
+ maintainers = [ lib.maintainers.magnouvean ];
+ };
+ };
+
cweijan.dbclient-jdbc = buildVscodeMarketplaceExtension {
mktplcRef = {
name = "dbclient-jdbc";
@@ -1782,8 +1799,8 @@ let
mktplcRef = {
name = "dependi";
publisher = "fill-labs";
- version = "0.7.4";
- hash = "sha256-6nU0bVAe/vwq43ECLwypIkMAG/q5+P2bE1RPAjeTCX4=";
+ version = "0.7.5";
+ hash = "sha256-troydfNj88c8A24ZtaCToE231VWzcCiQVLTSdVPM/XE=";
};
meta = {
changelog = "https://marketplace.visualstudio.com/items/fill-labs.dependi/changelog";
@@ -3109,6 +3126,72 @@ let
ms-dotnettools.csdevkit = callPackage ./ms-dotnettools.csdevkit { };
ms-dotnettools.csharp = callPackage ./ms-dotnettools.csharp { };
+ ms-dotnettools.vscode-dotnet-runtime = buildVscodeMarketplaceExtension {
+ mktplcRef = {
+ name = "vscode-dotnet-runtime";
+ publisher = "ms-dotnettools";
+ version = "2.1.1";
+ hash = "sha256-k14bjWITPDduJi79W59SnMV2TFNRCeAymhs6u1Y0vzk=";
+ };
+ meta = {
+ changelog = "https://marketplace.visualstudio.com/items/ms-dotnettools.vscode-dotnet-runtime/changelog";
+ description = "Provides a way for other Visual Studio Code extensions to install local versions of .NET SDK/Runtime";
+ downloadPage = "https://marketplace.visualstudio.com/items?itemName=ms-dotnettools.vscode-dotnet-runtime";
+ homepage = "https://github.com/dotnet/vscode-dotnet-runtime";
+ license = lib.licenses.mit;
+ maintainers = [ lib.maintainers.magnouvean ];
+ };
+ };
+
+ ms-dotnettools.vscodeintellicode-csharp = buildVscodeMarketplaceExtension {
+ mktplcRef =
+ let
+ sources = {
+ "x86_64-linux" = {
+ arch = "linux-x64";
+ hash = "sha256-oQMwzQuW5vjxtDboRCeiEO5aytsAY6rb14JDTmK3JPg=";
+ };
+ "x86_64-darwin" = {
+ arch = "darwin-x64";
+ hash = "sha256-/9+qtLDNYUFvdoehit3BihA38p6RqJ7na5Q27xxpZk0=";
+ };
+ "aarch64-linux" = {
+ arch = "linux-arm64";
+ hash = "sha256-JqLlYMKyTXaEzuTPPxVaO8WJiuCUN+9xBzyA6+aYdSc=";
+ };
+ "aarch64-darwin" = {
+ arch = "darwin-arm64";
+ hash = "sha256-dhiUePePkO3MxRQ5UP+lOxRax503JlERe/GWJ8pPUIg=";
+ };
+ };
+ in
+ {
+ name = "vscodeintellicode-csharp";
+ publisher = "ms-dotnettools";
+ version = "2.1.11";
+ }
+ // sources.${stdenv.system};
+ nativeBuildInputs = lib.optionals stdenv.isLinux [ autoPatchelfHook ];
+ buildInputs = [
+ stdenv.cc.cc.lib
+ zlib
+ ];
+ meta = {
+ changelog = "https://marketplace.visualstudio.com/items/ms-dotnettools.vscodeintellicode-csharp/changelog";
+ description = "AI-assisted development features for C# in Visual Studio Code";
+ downloadPage = "https://marketplace.visualstudio.com/items?itemName=ms-dotnettools.vscodeintellicode-csharp";
+ homepage = "https://github.com/MicrosoftDocs/intellicode";
+ license = lib.licenses.unfree;
+ maintainers = [ lib.maintainers.magnouvean ];
+ platforms = [
+ "x86_64-linux"
+ "x86_64-darwin"
+ "aarch64-darwin"
+ "aarch64-linux"
+ ];
+ };
+ };
+
ms-kubernetes-tools.vscode-kubernetes-tools = buildVscodeMarketplaceExtension {
mktplcRef = {
name = "vscode-kubernetes-tools";
diff --git a/pkgs/applications/graphics/comical/default.nix b/pkgs/applications/graphics/comical/default.nix
index 208c0ea821cd..d8e869316619 100644
--- a/pkgs/applications/graphics/comical/default.nix
+++ b/pkgs/applications/graphics/comical/default.nix
@@ -45,7 +45,7 @@ stdenv.mkDerivation rec {
description = "Viewer of CBR and CBZ files, often used to store scanned comics";
homepage = "https://comical.sourceforge.net/";
license = lib.licenses.gpl2Plus;
- maintainers = with lib.maintainers; [ viric wegank ];
+ maintainers = with lib.maintainers; [ wegank ];
platforms = with lib.platforms; unix;
mainProgram = "comical";
};
diff --git a/pkgs/applications/graphics/feh/default.nix b/pkgs/applications/graphics/feh/default.nix
index bc27d93db667..56f4936ceff1 100644
--- a/pkgs/applications/graphics/feh/default.nix
+++ b/pkgs/applications/graphics/feh/default.nix
@@ -51,7 +51,7 @@ stdenv.mkDerivation (finalAttrs: {
# released under a variant of the MIT license
# https://spdx.org/licenses/MIT-feh.html
license = licenses.mit-feh;
- maintainers = with maintainers; [ gepbird globin viric willibutz ];
+ maintainers = with maintainers; [ gepbird globin willibutz ];
platforms = platforms.unix;
mainProgram = "feh";
};
diff --git a/pkgs/applications/graphics/meshlab/default.nix b/pkgs/applications/graphics/meshlab/default.nix
index 549780a8acb7..658e4b4e9c70 100644
--- a/pkgs/applications/graphics/meshlab/default.nix
+++ b/pkgs/applications/graphics/meshlab/default.nix
@@ -95,7 +95,7 @@ mkDerivation rec {
mainProgram = "meshlab";
homepage = "https://www.meshlab.net/";
license = lib.licenses.gpl3Only;
- maintainers = with lib.maintainers; [ viric ];
+ maintainers = [ ];
platforms = with lib.platforms; linux;
};
}
diff --git a/pkgs/applications/graphics/minidjvu/default.nix b/pkgs/applications/graphics/minidjvu/default.nix
index ca9e77391eb3..a8d3db4d0a94 100644
--- a/pkgs/applications/graphics/minidjvu/default.nix
+++ b/pkgs/applications/graphics/minidjvu/default.nix
@@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
homepage = "https://djvu.sourceforge.net/djview4.html";
description = "Black-and-white djvu page encoder and decoder that use interpage information";
license = lib.licenses.gpl2Plus;
- maintainers = [ lib.maintainers.viric ];
+ maintainers = [ ];
platforms = lib.platforms.unix;
mainProgram = "minidjvu";
};
diff --git a/pkgs/applications/graphics/tesseract/tesseract3.nix b/pkgs/applications/graphics/tesseract/tesseract3.nix
index d796e506a877..5ee965a25e09 100644
--- a/pkgs/applications/graphics/tesseract/tesseract3.nix
+++ b/pkgs/applications/graphics/tesseract/tesseract3.nix
@@ -42,7 +42,7 @@ stdenv.mkDerivation rec {
description = "OCR engine";
homepage = "https://github.com/tesseract-ocr/tesseract";
license = lib.licenses.asl20;
- maintainers = with lib.maintainers; [ viric erikarvstedt ];
+ maintainers = with lib.maintainers; [ erikarvstedt ];
platforms = with lib.platforms; linux ++ darwin;
mainProgram = "tesseract";
};
diff --git a/pkgs/applications/graphics/tesseract/tesseract4.nix b/pkgs/applications/graphics/tesseract/tesseract4.nix
index bfee4bdb2774..e73e237cfea5 100644
--- a/pkgs/applications/graphics/tesseract/tesseract4.nix
+++ b/pkgs/applications/graphics/tesseract/tesseract4.nix
@@ -47,7 +47,7 @@ stdenv.mkDerivation rec {
description = "OCR engine";
homepage = "https://github.com/tesseract-ocr/tesseract";
license = lib.licenses.asl20;
- maintainers = with lib.maintainers; [ viric erikarvstedt ];
+ maintainers = with lib.maintainers; [ erikarvstedt ];
platforms = with lib.platforms; linux ++ darwin;
mainProgram = "tesseract";
};
diff --git a/pkgs/applications/graphics/wings/default.nix b/pkgs/applications/graphics/wings/default.nix
index 87e0a47cc5ae..85237c94846a 100644
--- a/pkgs/applications/graphics/wings/default.nix
+++ b/pkgs/applications/graphics/wings/default.nix
@@ -48,7 +48,7 @@ stdenv.mkDerivation rec {
homepage = "http://www.wings3d.com/";
description = "Subdivision modeler inspired by Nendo and Mirai from Izware";
license = lib.licenses.tcltk;
- maintainers = with lib.maintainers; [ viric ];
+ maintainers = [ ];
platforms = with lib.platforms; linux;
mainProgram = "wings";
};
diff --git a/pkgs/applications/misc/junction/default.nix b/pkgs/applications/misc/junction/default.nix
index 66658cfe7402..cf03a315b2cf 100644
--- a/pkgs/applications/misc/junction/default.nix
+++ b/pkgs/applications/misc/junction/default.nix
@@ -17,13 +17,13 @@
stdenv.mkDerivation rec {
pname = "junction";
- version = "1.7";
+ version = "1.8";
src = fetchFromGitHub {
owner = "sonnyp";
repo = "junction";
rev = "v${version}";
- hash = "sha256-qPseu2rzK6xp7eb/SrWK6fML/6xh4raP0MEreyZgqVI=";
+ hash = "sha256-0zY6Dp0aKHtBHSTiGbI5o6876BsARbo8/BbArl0RaMY=";
fetchSubmodules = true;
};
@@ -65,7 +65,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
mainProgram = "re.sonny.Junction";
description = "Choose the application to open files and links";
- homepage = "https://apps.gnome.org/en/app/re.sonny.Junction/";
+ homepage = "https://apps.gnome.org/Junction/";
license = licenses.gpl3Only;
maintainers = with maintainers; [ hqurve ];
platforms = platforms.linux;
diff --git a/pkgs/applications/misc/kondo/default.nix b/pkgs/applications/misc/kondo/default.nix
index eba5799a9172..03fc56ceb016 100644
--- a/pkgs/applications/misc/kondo/default.nix
+++ b/pkgs/applications/misc/kondo/default.nix
@@ -1,4 +1,4 @@
-{ lib, rustPlatform, fetchFromGitHub }:
+{ lib, stdenv, rustPlatform, fetchFromGitHub, installShellFiles }:
rustPlatform.buildRustPackage rec {
pname = "kondo";
@@ -13,6 +13,15 @@ rustPlatform.buildRustPackage rec {
cargoHash = "sha256-WF4GHj/5VYrTUh1E3t29zbpSLjJ6g7RWVpLYqg9msZg=";
+ nativeBuildInputs = [ installShellFiles ];
+
+ postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
+ installShellCompletion --cmd kondo \
+ --bash <($out/bin/kondo --completions bash) \
+ --fish <($out/bin/kondo --completions fish) \
+ --zsh <($out/bin/kondo --completions zsh)
+ '';
+
meta = with lib; {
description = "Save disk space by cleaning unneeded files from software projects";
homepage = "https://github.com/tbillington/kondo";
diff --git a/pkgs/applications/misc/librecad/default.nix b/pkgs/applications/misc/librecad/default.nix
index 3ce387c410d9..ae1f5c9813ac 100644
--- a/pkgs/applications/misc/librecad/default.nix
+++ b/pkgs/applications/misc/librecad/default.nix
@@ -72,7 +72,7 @@ mkDerivation rec {
description = "2D CAD package based on Qt";
homepage = "https://librecad.org";
license = licenses.gpl2Only;
- maintainers = with maintainers; [ viric ];
+ maintainers = [ ];
platforms = platforms.linux;
};
}
diff --git a/pkgs/applications/misc/lyx/default.nix b/pkgs/applications/misc/lyx/default.nix
index dc79cc5922fb..bf3c3b06dc83 100644
--- a/pkgs/applications/misc/lyx/default.nix
+++ b/pkgs/applications/misc/lyx/default.nix
@@ -1,34 +1,48 @@
-{ fetchurl, lib, mkDerivation, pkg-config, python3, file, bc
-, qtbase, qtsvg, hunspell, makeWrapper #, mythes, boost
+{
+ fetchurl,
+ lib,
+ mkDerivation,
+ pkg-config,
+ python3,
+ file,
+ bc,
+ qtbase,
+ qtsvg,
+ hunspell,
+ makeWrapper, # , mythes, boost
}:
mkDerivation rec {
- version = "2.3.7-1";
+ version = "2.4.1";
pname = "lyx";
src = fetchurl {
- url = "ftp://ftp.lyx.org/pub/lyx/stable/2.3.x/${pname}-${version}.tar.xz";
- sha256 = "sha256-Ob6IZPuGs06IMQ5w+4Dl6eKWYB8IVs8WGqCUFxcY2O0=";
+ url = "ftp://ftp.lyx.org/pub/lyx/stable/2.4.x/${pname}-${version}.tar.xz";
+ hash = "sha256-dN4ooH7zeqlHG8mWLbGCFSolMQx9H0f2drubxj2XE8U=";
};
- # Needed with GCC 12
- postPatch = ''
- sed '1i#include ' -i src/lyxfind.cpp
- sed '1i#include ' -i src/insets/InsetListings.cpp
- '';
-
# LaTeX is used from $PATH, as people often want to have it with extra pkgs
- nativeBuildInputs = [ pkg-config makeWrapper python3 qtbase ];
+ nativeBuildInputs = [
+ pkg-config
+ makeWrapper
+ python3
+ qtbase
+ ];
buildInputs = [
- qtbase qtsvg file/*for libmagic*/ bc
+ qtbase
+ qtsvg
+ file # for libmagic
+ bc
hunspell # enchant
];
configureFlags = [
"--enable-qt5"
#"--without-included-boost"
- /* Boost is a huge dependency from which 1.4 MB of libs would be used.
- Using internal boost stuff only increases executable by around 0.2 MB. */
+ /*
+ Boost is a huge dependency from which 1.4 MB of libs would be used.
+ Using internal boost stuff only increases executable by around 0.2 MB.
+ */
#"--without-included-mythes" # such a small library isn't worth a separate package
];
@@ -36,9 +50,7 @@ mkDerivation rec {
doCheck = true;
# python is run during runtime to do various tasks
- qtWrapperArgs = [
- " --prefix PATH : ${python3}/bin"
- ];
+ qtWrapperArgs = [ " --prefix PATH : ${python3}/bin" ];
meta = with lib; {
description = "WYSIWYM frontend for LaTeX, DocBook";
@@ -48,4 +60,3 @@ mkDerivation rec {
platforms = platforms.linux;
};
}
-
diff --git a/pkgs/applications/misc/tuckr/default.nix b/pkgs/applications/misc/tuckr/default.nix
index d660248deef8..46dcf25f08e9 100644
--- a/pkgs/applications/misc/tuckr/default.nix
+++ b/pkgs/applications/misc/tuckr/default.nix
@@ -2,16 +2,16 @@
rustPlatform.buildRustPackage rec {
pname = "tuckr";
- version = "0.8.1";
+ version = "0.9.0";
src = fetchFromGitHub {
owner = "RaphGL";
repo = "Tuckr";
rev = version;
- hash = "sha256-oQSuR0Zt1T8YU3O2Dq/qHl4ysVDl+3EVvp9r2mD3hRA=";
+ hash = "sha256-cIyqka/+CrO9RuKr7tI79QvpPA0mDL/YzWWWrcwin8E=";
};
- cargoHash = "sha256-ESDfUZsoqwBurXuwNIRSqxoDWnA2VpDZ9Q9GGaV8B4Y=";
+ cargoHash = "sha256-5Z7UpkLlNMW8prtdJO+Xr45fpacjhDBoD/RFv/H44t0=";
doCheck = false; # test result: FAILED. 5 passed; 3 failed;
diff --git a/pkgs/applications/misc/xfontsel/default.nix b/pkgs/applications/misc/xfontsel/default.nix
index 5bfdb209c1ff..203b94b0845f 100644
--- a/pkgs/applications/misc/xfontsel/default.nix
+++ b/pkgs/applications/misc/xfontsel/default.nix
@@ -34,7 +34,7 @@ stdenv.mkDerivation rec {
description = "Allows testing the fonts available in an X server";
mainProgram = "xfontsel";
license = with licenses; [ x11 smlnj mit ];
- maintainers = with maintainers; [ viric ];
+ maintainers = [ ];
platforms = platforms.unix;
};
}
diff --git a/pkgs/applications/networking/browsers/chromium/common.nix b/pkgs/applications/networking/browsers/chromium/common.nix
index 83a0482d7044..a3333b7b5919 100644
--- a/pkgs/applications/networking/browsers/chromium/common.nix
+++ b/pkgs/applications/networking/browsers/chromium/common.nix
@@ -388,6 +388,10 @@ let
find . -type f -perm -0100 -exec sed -i -e '$a\' {} +
patchShebangs .
+ '' + lib.optionalString (ungoogled) ''
+ # Prune binaries (ungoogled only) *before* linking our own binaries:
+ ${ungoogler}/utils/prune_binaries.py . ${ungoogler}/pruning.list || echo "some errors"
+ '' + ''
# Link to our own Node.js and Java (required during the build):
mkdir -p third_party/node/linux/node-linux-x64/bin
ln -s${lib.optionalString (chromiumVersionAtLeast "127") "f"} "${pkgsBuildHost.nodejs}/bin/node" third_party/node/linux/node-linux-x64/bin/node
@@ -400,7 +404,6 @@ let
substituteInPlace build/toolchain/linux/BUILD.gn \
--replace 'toolprefix = "aarch64-linux-gnu-"' 'toolprefix = ""'
'' + lib.optionalString ungoogled ''
- ${ungoogler}/utils/prune_binaries.py . ${ungoogler}/pruning.list || echo "some errors"
${ungoogler}/utils/patches.py . ${ungoogler}/patches
${ungoogler}/utils/domain_substitution.py apply -r ${ungoogler}/domain_regex.list -f ${ungoogler}/domain_substitution.list -c ./ungoogled-domsubcache.tar.gz .
'';
diff --git a/pkgs/applications/networking/browsers/chromium/upstream-info.nix b/pkgs/applications/networking/browsers/chromium/upstream-info.nix
index 4d04fec278fa..0129b89e3cfb 100644
--- a/pkgs/applications/networking/browsers/chromium/upstream-info.nix
+++ b/pkgs/applications/networking/browsers/chromium/upstream-info.nix
@@ -21,17 +21,17 @@
ungoogled-chromium = {
deps = {
gn = {
- hash = "sha256-mNoQeHSSM+rhR0UHrpbyzLJC9vFqfxK1SD0X8GiRsqw=";
- rev = "df98b86690c83b81aedc909ded18857296406159";
+ hash = "sha256-vzZu/Mo4/xATSD9KgKcRuBKVg9CoRZC9i0PEajYr4UM=";
+ rev = "b3a0bff47dd81073bfe67a402971bad92e4f2423";
url = "https://gn.googlesource.com/gn";
- version = "2024-05-13";
+ version = "2024-06-06";
};
ungoogled-patches = {
- hash = "sha256-jDWL4gXcWF6GMlFJ/sua4dfVURs9vWYXRMjnYNqESWc=";
- rev = "126.0.6478.182-1";
+ hash = "sha256-IBdOV+eFJWD+kCxnhSWWjiBgMbP/DxF+gUVIIpWf4rc=";
+ rev = "127.0.6533.72-1";
};
};
- hash = "sha256-vZ7P8+vHTMCo6lXkV84ENqRZVG3/fDEwl+BTNJTGMn4=";
- version = "126.0.6478.182";
+ hash = "sha256-m99HaGCuIihDdbVnmu6xatnC/QDxgLVby2TWY/L+RHk=";
+ version = "127.0.6533.72";
};
}
diff --git a/pkgs/applications/networking/circumflex/default.nix b/pkgs/applications/networking/circumflex/default.nix
index 8fce759acff6..354bc383271a 100644
--- a/pkgs/applications/networking/circumflex/default.nix
+++ b/pkgs/applications/networking/circumflex/default.nix
@@ -2,16 +2,16 @@
buildGoModule rec {
pname = "circumflex";
- version = "3.6";
+ version = "3.7";
src = fetchFromGitHub {
owner = "bensadeh";
repo = "circumflex";
rev = version;
- hash = "sha256-FzJUmF2X4Iyf83cIEa8b8EFCcWUyYEZBVyvXuhiaaWM=";
+ hash = "sha256-jjtjOT8lFPsk300Q9EtsX/w8Bck0pwrS/GyouoBsZ+0=";
};
- vendorHash = "sha256-x/NgcodS/hirXJHxBHeUP9MgOBHq1yQWHprMrlpqsas=";
+ vendorHash = "sha256-Nlv8H5YqHrqACW2kEXg+mkc3bCgXVudrSNfyu+xeFBA=";
nativeBuildInputs = [ makeWrapper ];
diff --git a/pkgs/applications/networking/cluster/atmos/default.nix b/pkgs/applications/networking/cluster/atmos/default.nix
index 03d181325ac7..ab481ba74cb3 100644
--- a/pkgs/applications/networking/cluster/atmos/default.nix
+++ b/pkgs/applications/networking/cluster/atmos/default.nix
@@ -2,16 +2,16 @@
buildGoModule rec {
pname = "atmos";
- version = "1.83.1";
+ version = "1.85.0";
src = fetchFromGitHub {
owner = "cloudposse";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-B1s+9oLShbrziYm9P8xE5UPwxTchlGPUmjYSWGhsGjY=";
+ sha256 = "sha256-nIW7Wt4mThxjnHHF+rD6q9vZ7KsB//nSpkWtkiTo16Y=";
};
- vendorHash = "sha256-dklmWu+PHSEeQM2MWBkYMiyw5rX9S8SI3l86nst6v9E=";
+ vendorHash = "sha256-swQN0WjVfLo/LjZrvjX46CnfBGnrVzLj8Cv4IP0eL7Y=";
ldflags = [ "-s" "-w" "-X github.com/cloudposse/atmos/cmd.Version=v${version}" ];
diff --git a/pkgs/applications/networking/cluster/linkerd/edge.nix b/pkgs/applications/networking/cluster/linkerd/edge.nix
index 7c02bedbd170..518037d60706 100644
--- a/pkgs/applications/networking/cluster/linkerd/edge.nix
+++ b/pkgs/applications/networking/cluster/linkerd/edge.nix
@@ -2,7 +2,7 @@
(callPackage ./generic.nix { }) {
channel = "edge";
- version = "24.7.2";
- sha256 = "1kl1ik1w0j3m0qlfbdagzjgd67kabx358xaa2rn0clg8jk43nk3n";
- vendorHash = "sha256-/dYLPoPg3Oac4W1eLytJJiP7kzK4PTSjh8BRKjJAnU0=";
+ version = "24.7.5";
+ sha256 = "03hsz87vpysw4y45afsbr3amkrqnank1zcclfh6qj0yf98ymxxbn";
+ vendorHash = "sha256-0NKoQICbKM3UA62LNySqu5pS2bPuuEfmOEukxB/6Ges=";
}
diff --git a/pkgs/applications/networking/cluster/rke2/update-script.sh b/pkgs/applications/networking/cluster/rke2/update-script.sh
index 608f49bb6490..029933b8f802 100755
--- a/pkgs/applications/networking/cluster/rke2/update-script.sh
+++ b/pkgs/applications/networking/cluster/rke2/update-script.sh
@@ -5,7 +5,9 @@ set -x -eu -o pipefail
CHANNEL_NAME="${1:?Must provide a release channel, like 'stable', as the only argument}"
-mkdir --parents --verbose ./${CHANNEL_NAME}
+WORKDIR=$(cd $(dirname ${BASH_SOURCE[0]}) && pwd -P)
+
+mkdir --parents --verbose "${WORKDIR}/${CHANNEL_NAME}"
LATEST_TAG_NAME=$(curl --silent --fail https://update.rke2.io/v1-release/channels | \
yq eval ".data[] | select(.id == \"${CHANNEL_NAME}\").latest" - | \
@@ -35,9 +37,9 @@ KUBERNETES_EOL=$(curl --silent --fail \
https://endoflife.date/api/kubernetes/${KUBERNETES_CYCLES}.json | \
yq eval ".eol" -)
-FAKE_HASH="sha256-AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=";
+FAKE_HASH="sha256-AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA="
-cat > ./${CHANNEL_NAME}/versions.nix << EOF
+cat << EOF > "${WORKDIR}/${CHANNEL_NAME}/versions.nix"
{
rke2Version = "${RKE2_VERSION}";
rke2RepoSha256 = "${RKE2_REPO_SHA256}";
@@ -54,15 +56,13 @@ cat > ./${CHANNEL_NAME}/versions.nix << EOF
}
EOF
-NIXPKGS_ROOT=$(git rev-parse --show-toplevel)
-
set +e
-RKE2_VENDOR_HASH=$(nix-prefetch -I nixpkgs=${NIXPKGS_ROOT} \
- "{ sha256 }: (import ${NIXPKGS_ROOT}/. {}).rke2_${CHANNEL_NAME}.goModules.overrideAttrs (_: { vendorHash = sha256; })")
+RKE2_VENDOR_HASH=$(nix-prefetch -I nixpkgs=$(git rev-parse --show-toplevel) \
+ "{ sha256 }: rke2_${CHANNEL_NAME}.goModules.overrideAttrs (_: { vendorHash = sha256; })")
set -e
if [ -n "${RKE2_VENDOR_HASH:-}" ]; then
- sed -i "s#${FAKE_HASH}#${RKE2_VENDOR_HASH}#g" ./${CHANNEL_NAME}/versions.nix
+ sed -i "s#${FAKE_HASH}#${RKE2_VENDOR_HASH}#g" ${WORKDIR}/${CHANNEL_NAME}/versions.nix
else
echo "Update failed. 'RKE2_VENDOR_HASH' is empty."
exit 1
@@ -70,17 +70,15 @@ fi
# Implement commit
# See: https://nixos.org/manual/nixpkgs/stable/#var-passthru-updateScript-commit
-OLD_VERSION=$(nix-instantiate --eval -E \
- "with import ${NIXPKGS_ROOT}/. {}; rke2.version or (builtins.parseDrvName rke2.name).version" | \
- tr -d '"')
-
cat << EOF
-[{
- "attrPath": "rke2_${CHANNEL_NAME}",
- "oldVersion": "${OLD_VERSION}",
- "newVersion": "${RKE2_VERSION}",
- "files": [
- "${PWD}/${CHANNEL_NAME}/versions.nix"
- ]
-}]
+[
+ {
+ "attrPath": "rke2_${CHANNEL_NAME}",
+ "oldVersion": "${UPDATE_NIX_OLD_VERSION}",
+ "newVersion": "${RKE2_VERSION}",
+ "files": [
+ "${WORKDIR}/${CHANNEL_NAME}/versions.nix"
+ ]
+ }
+]
EOF
diff --git a/pkgs/applications/networking/cluster/terraspace/Gemfile b/pkgs/applications/networking/cluster/terraspace/Gemfile
index 7a6bbf7cc943..3e9579dd75cf 100644
--- a/pkgs/applications/networking/cluster/terraspace/Gemfile
+++ b/pkgs/applications/networking/cluster/terraspace/Gemfile
@@ -1,2 +1,2 @@
source "https://rubygems.org"
-gem "terraspace", '~> 2.2.8'
+gem "terraspace"
diff --git a/pkgs/applications/networking/cluster/terraspace/Gemfile.lock b/pkgs/applications/networking/cluster/terraspace/Gemfile.lock
index 4fce1f819664..aa9e1600198b 100644
--- a/pkgs/applications/networking/cluster/terraspace/Gemfile.lock
+++ b/pkgs/applications/networking/cluster/terraspace/Gemfile.lock
@@ -1,36 +1,45 @@
GEM
remote: https://rubygems.org/
specs:
- activesupport (7.0.6)
+ activesupport (7.1.3.4)
+ base64
+ bigdecimal
concurrent-ruby (~> 1.0, >= 1.0.2)
+ connection_pool (>= 2.2.5)
+ drb
i18n (>= 1.6, < 2)
minitest (>= 5.1)
+ mutex_m
tzinfo (~> 2.0)
- aws-eventstream (1.2.0)
- aws-partitions (1.785.0)
- aws-sdk-core (3.177.0)
- aws-eventstream (~> 1, >= 1.0.2)
+ aws-eventstream (1.3.0)
+ aws-partitions (1.956.0)
+ aws-sdk-core (3.201.1)
+ aws-eventstream (~> 1, >= 1.3.0)
aws-partitions (~> 1, >= 1.651.0)
- aws-sigv4 (~> 1.5)
+ aws-sigv4 (~> 1.8)
jmespath (~> 1, >= 1.6.1)
- aws-sdk-kms (1.70.0)
- aws-sdk-core (~> 3, >= 3.177.0)
- aws-sigv4 (~> 1.1)
- aws-sdk-s3 (1.128.0)
- aws-sdk-core (~> 3, >= 3.177.0)
+ aws-sdk-kms (1.88.0)
+ aws-sdk-core (~> 3, >= 3.201.0)
+ aws-sigv4 (~> 1.5)
+ aws-sdk-s3 (1.156.0)
+ aws-sdk-core (~> 3, >= 3.201.0)
aws-sdk-kms (~> 1)
- aws-sigv4 (~> 1.6)
- aws-sigv4 (1.6.0)
+ aws-sigv4 (~> 1.5)
+ aws-sigv4 (1.8.0)
aws-eventstream (~> 1, >= 1.0.2)
- cli-format (0.2.2)
+ base64 (0.2.0)
+ bigdecimal (3.1.8)
+ cli-format (0.6.1)
activesupport
text-table
zeitwerk
- concurrent-ruby (1.2.2)
+ concurrent-ruby (1.3.3)
+ connection_pool (2.4.1)
deep_merge (1.2.2)
- diff-lcs (1.5.0)
- dotenv (2.8.1)
- dsl_evaluator (0.3.1)
+ diff-lcs (1.5.1)
+ dotenv (3.1.2)
+ drb (2.2.1)
+ dsl_evaluator (0.3.2)
activesupport
memoist
rainbow
@@ -38,40 +47,42 @@ GEM
eventmachine (1.2.7)
eventmachine-tail (0.6.5)
eventmachine
- graph (2.11.0)
+ graph (2.11.1)
hcl_parser (0.2.2)
rhcl
- i18n (1.14.1)
+ i18n (1.14.5)
concurrent-ruby (~> 1.0)
jmespath (1.6.2)
memoist (0.16.2)
- minitest (5.18.1)
- nokogiri (1.15.3)
- racc (~> 1.4)
+ mini_portile2 (2.8.7)
+ minitest (5.24.1)
+ mutex_m (0.2.0)
+ nokogiri (1.16.6)
mini_portile2 (~> 2.8.2)
- racc (1.7.1)
- mini_portile2 (2.8.2)
+ racc (~> 1.4)
+ racc (1.8.0)
rainbow (3.1.1)
render_me_pretty (0.9.0)
activesupport
rainbow
tilt
- rexml (3.2.5)
+ rexml (3.3.2)
+ strscan
rhcl (0.1.0)
deep_merge
- rspec (3.12.0)
- rspec-core (~> 3.12.0)
- rspec-expectations (~> 3.12.0)
- rspec-mocks (~> 3.12.0)
- rspec-core (3.12.2)
- rspec-support (~> 3.12.0)
- rspec-expectations (3.12.3)
+ rspec (3.13.0)
+ rspec-core (~> 3.13.0)
+ rspec-expectations (~> 3.13.0)
+ rspec-mocks (~> 3.13.0)
+ rspec-core (3.13.0)
+ rspec-support (~> 3.13.0)
+ rspec-expectations (3.13.1)
diff-lcs (>= 1.2.0, < 2.0)
- rspec-support (~> 3.12.0)
- rspec-mocks (3.12.5)
+ rspec-support (~> 3.13.0)
+ rspec-mocks (3.13.1)
diff-lcs (>= 1.2.0, < 2.0)
- rspec-support (~> 3.12.0)
- rspec-support (3.12.1)
+ rspec-support (~> 3.13.0)
+ rspec-support (3.13.1)
rspec-terraspace (0.3.3)
activesupport
memoist
@@ -79,7 +90,8 @@ GEM
rspec
zeitwerk
rubyzip (2.3.2)
- terraspace (2.2.8)
+ strscan (3.1.0)
+ terraspace (2.2.17)
activesupport
bundler
cli-format
@@ -110,20 +122,20 @@ GEM
thor
zeitwerk
text-table (1.2.4)
- thor (1.2.2)
- tilt (2.2.0)
+ thor (1.3.1)
+ tilt (2.4.0)
tty-tree (0.4.0)
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
- zeitwerk (2.6.8)
+ zeitwerk (2.6.16)
zip_folder (0.1.0)
rubyzip
PLATFORMS
- x86_64-linux
+ ruby
DEPENDENCIES
- terraspace (~> 2.2.8)
+ terraspace
BUNDLED WITH
- 2.3.26
+ 2.5.11
diff --git a/pkgs/applications/networking/cluster/terraspace/gemset.nix b/pkgs/applications/networking/cluster/terraspace/gemset.nix
index a4e082c6d0d8..606e450c4270 100644
--- a/pkgs/applications/networking/cluster/terraspace/gemset.nix
+++ b/pkgs/applications/networking/cluster/terraspace/gemset.nix
@@ -1,34 +1,34 @@
{
activesupport = {
- dependencies = ["concurrent-ruby" "i18n" "minitest" "tzinfo"];
+ dependencies = ["base64" "bigdecimal" "concurrent-ruby" "connection_pool" "drb" "i18n" "minitest" "mutex_m" "tzinfo"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1cjsf26656996hv48wgv2mkwxf0fy1qc68ikgzq7mzfq2mmvmayk";
+ sha256 = "0283wk1zxb76lg79dk501kcf5xy9h25qiw15m86s4nrfv11vqns5";
type = "gem";
};
- version = "7.0.6";
+ version = "7.1.3.4";
};
aws-eventstream = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1pyis1nvnbjxk12a43xvgj2gv0mvp4cnkc1gzw0v1018r61399gz";
+ sha256 = "0gvdg4yx4p9av2glmp7vsxhs0n8fj1ga9kq2xdb8f95j7b04qhzi";
type = "gem";
};
- version = "1.2.0";
+ version = "1.3.0";
};
aws-partitions = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "05m0c3h1z0jhaqiciil55fshrjvc725cf1lc0g933pf98vqflb0r";
+ sha256 = "03zb6x4x68y91gywsyi4a6hxy4pdyng8mnxwd858bhjfymml8kkf";
type = "gem";
};
- version = "1.785.0";
+ version = "1.956.0";
};
aws-sdk-core = {
dependencies = ["aws-eventstream" "aws-partitions" "aws-sigv4" "jmespath"];
@@ -36,10 +36,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "09firi4bin3ay4pd59qgxspq2f1isfi1li8rabpw6lvvbhnar168";
+ sha256 = "1ihl7iwndl3jjy89sh427wf8mdb7ii76bsjf6fkxq9ha30nz4f3g";
type = "gem";
};
- version = "3.177.0";
+ version = "3.201.1";
};
aws-sdk-kms = {
dependencies = ["aws-sdk-core" "aws-sigv4"];
@@ -47,10 +47,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1x73qj2c39ap926by14x56cjmp2cd5jpq5gv33xynypy1idyb0fj";
+ sha256 = "02g3l3lcyddqncrwjxgawxl33p2p715k1gbrdlgyiv0yvy88sn0k";
type = "gem";
};
- version = "1.70.0";
+ version = "1.88.0";
};
aws-sdk-s3 = {
dependencies = ["aws-sdk-core" "aws-sdk-kms" "aws-sigv4"];
@@ -58,10 +58,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "11cxk6b3p1bsl1gg3pi93qx2ynbjrrsrsc68nnqsjm4npvaj052v";
+ sha256 = "0ika0xmmrkc7jiwdi5gqia5wywkcbw1nal2dhl436dkh38fxl0lk";
type = "gem";
};
- version = "1.128.0";
+ version = "1.156.0";
};
aws-sigv4 = {
dependencies = ["aws-eventstream"];
@@ -69,10 +69,30 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0z889c4c1w7wsjm3szg64ay5j51kjl4pdf94nlr1yks2rlanm7na";
+ sha256 = "1g3w27wzjy4si6kp49w10as6ml6g6zl3xrfqs5ikpfciidv9kpc4";
type = "gem";
};
- version = "1.6.0";
+ version = "1.8.0";
+ };
+ base64 = {
+ groups = ["default"];
+ platforms = [];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "01qml0yilb9basf7is2614skjp8384h2pycfx86cr8023arfj98g";
+ type = "gem";
+ };
+ version = "0.2.0";
+ };
+ bigdecimal = {
+ groups = ["default"];
+ platforms = [];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "1gi7zqgmqwi5lizggs1jhc3zlwaqayy9rx2ah80sxy24bbnng558";
+ type = "gem";
+ };
+ version = "3.1.8";
};
cli-format = {
dependencies = ["activesupport" "text-table" "zeitwerk"];
@@ -80,20 +100,30 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1mr8vkw5zwb3flhhf8s923mi7r85g1ky0lmjz4q5xhwb48ji55qf";
+ sha256 = "0rrjck5r25dlcg1gwz6pb5f4rllx77lg6a514a5l3lajfd95shm3";
type = "gem";
};
- version = "0.2.2";
+ version = "0.6.1";
};
concurrent-ruby = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0krcwb6mn0iklajwngwsg850nk8k9b35dhmc2qkbdqvmifdi2y9q";
+ sha256 = "0skwdasxq7mnlcccn6aqabl7n9r3jd7k19ryzlzzip64cn4x572g";
type = "gem";
};
- version = "1.2.2";
+ version = "1.3.3";
+ };
+ connection_pool = {
+ groups = ["default"];
+ platforms = [];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "1x32mcpm2cl5492kd6lbjbaf17qsssmpx9kdyr7z1wcif2cwyh0g";
+ type = "gem";
+ };
+ version = "2.4.1";
};
deep_merge = {
groups = ["default"];
@@ -110,20 +140,30 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0rwvjahnp7cpmracd8x732rjgnilqv2sx7d1gfrysslc3h039fa9";
+ sha256 = "1znxccz83m4xgpd239nyqxlifdb7m8rlfayk6s259186nkgj6ci7";
type = "gem";
};
- version = "1.5.0";
+ version = "1.5.1";
};
dotenv = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1n0pi8x8ql5h1mijvm8lgn6bhq4xjb5a500p5r1krq4s6j9lg565";
+ sha256 = "0y24jabiz4cf9ni9vi4j8sab8b5phpf2mpw3981r0r94l4m6q0q8";
type = "gem";
};
- version = "2.8.1";
+ version = "3.1.2";
+ };
+ drb = {
+ groups = ["default"];
+ platforms = [];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "0h5kbj9hvg5hb3c7l425zpds0vb42phvln2knab8nmazg2zp5m79";
+ type = "gem";
+ };
+ version = "2.2.1";
};
dsl_evaluator = {
dependencies = ["activesupport" "memoist" "rainbow" "zeitwerk"];
@@ -131,10 +171,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0mck2j0gr851kj9l7pix97jmmwwazfjq83ryamx5rpdbgv5mrh51";
+ sha256 = "0hd079baa5pfyyc2wc9p5h82qjp7fnx0s0shn2i19ig186cizh2x";
type = "gem";
};
- version = "0.3.1";
+ version = "0.3.2";
};
eventmachine = {
groups = ["default"];
@@ -162,10 +202,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "10l1bdqc9yzdk6kqwh9vw918lyw846gpqw2z8kfcwl53zdjdzcl9";
+ sha256 = "1bwssjgl9nfq9jhn9bfc7pqfl2c2xi0wnpng66l029m03kmdq8k4";
type = "gem";
};
- version = "2.11.0";
+ version = "2.11.1";
};
hcl_parser = {
dependencies = ["rhcl"];
@@ -184,10 +224,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0qaamqsh5f3szhcakkak8ikxlzxqnv49n2p7504hcz2l0f4nj0wx";
+ sha256 = "1ffix518y7976qih9k1lgnc17i3v6yrlh0a3mckpxdb4wc2vrp16";
type = "gem";
};
- version = "1.14.1";
+ version = "1.14.5";
};
jmespath = {
groups = ["default"];
@@ -214,20 +254,30 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0z7f38iq37h376n9xbl4gajdrnwzq284c9v1py4imw3gri2d5cj6";
+ sha256 = "1q1f2sdw3y3y9mnym9dhjgsjr72sq975cfg5c4yx7gwv8nmzbvhk";
type = "gem";
};
- version = "2.8.2";
+ version = "2.8.7";
};
minitest = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1kg9wh7jlc9zsr3hkhpzkbn0ynf4np5ap9m2d8xdrb8shy0y6pmb";
+ sha256 = "0jj629q3vw5yn90q4di4dyb87pil4a8qfm2srhgy5nc8j2n33v1i";
type = "gem";
};
- version = "5.18.1";
+ version = "5.24.1";
+ };
+ mutex_m = {
+ groups = ["default"];
+ platforms = [];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "1ma093ayps1m92q845hmpk0dmadicvifkbf05rpq9pifhin0rvxn";
+ type = "gem";
+ };
+ version = "0.2.0";
};
nokogiri = {
dependencies = ["mini_portile2" "racc"];
@@ -235,20 +285,20 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1jw8a20a9k05fpz3q24im19b97idss3179z76yn5scc5b8lk2rl7";
+ sha256 = "1vz1ychq2fhfqjgqdrx8bqkaxg5dzcgwnah00m57ydylczfy8pwk";
type = "gem";
};
- version = "1.15.3";
+ version = "1.16.6";
};
racc = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "11v3l46mwnlzlc371wr3x6yylpgafgwdf0q7hc7c1lzx6r414r5g";
+ sha256 = "021s7maw0c4d9a6s07vbmllrzqsj2sgmrwimlh8ffkvwqdjrld09";
type = "gem";
};
- version = "1.7.1";
+ version = "1.8.0";
};
rainbow = {
groups = ["default"];
@@ -272,14 +322,15 @@
version = "0.9.0";
};
rexml = {
+ dependencies = ["strscan"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "08ximcyfjy94pm1rhcx04ny1vx2sk0x4y185gzn86yfsbzwkng53";
+ sha256 = "0zr5qpa8lampaqzhdcjcvyqnrqcjl7439mqjlkjz43wdhmpnh4s5";
type = "gem";
};
- version = "3.2.5";
+ version = "3.3.2";
};
rhcl = {
dependencies = ["deep_merge"];
@@ -298,10 +349,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "171rc90vcgjl8p1bdrqa92ymrj8a87qf6w20x05xq29mljcigi6c";
+ sha256 = "14xrp8vq6i9zx37vh0yp4h9m0anx9paw200l1r5ad9fmq559346l";
type = "gem";
};
- version = "3.12.0";
+ version = "3.13.0";
};
rspec-core = {
dependencies = ["rspec-support"];
@@ -309,10 +360,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0l95bnjxdabrn79hwdhn2q1n7mn26pj7y1w5660v5qi81x458nqm";
+ sha256 = "0k252n7s80bvjvpskgfm285a3djjjqyjcarlh3aq7a4dx2s94xsm";
type = "gem";
};
- version = "3.12.2";
+ version = "3.13.0";
};
rspec-expectations = {
dependencies = ["diff-lcs" "rspec-support"];
@@ -320,10 +371,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "05j44jfqlv7j2rpxb5vqzf9hfv7w8ba46wwgxwcwd8p0wzi1hg89";
+ sha256 = "0022nxs9gqfhx35n4klibig770n0j31pnkd8anz00yvrvkdghk41";
type = "gem";
};
- version = "3.12.3";
+ version = "3.13.1";
};
rspec-mocks = {
dependencies = ["diff-lcs" "rspec-support"];
@@ -331,20 +382,20 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1hfm17xakfvwya236graj6c2arr4sb9zasp35q5fykhyz8mhs0w2";
+ sha256 = "0f3vgp43hajw716vmgjv6f4ar6f97zf50snny6y3fy9kkj4qjw88";
type = "gem";
};
- version = "3.12.5";
+ version = "3.13.1";
};
rspec-support = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1ky86j3ksi26ng9ybd7j0qsdf1lpr8mzrmn98yy9gzv801fvhsgr";
+ sha256 = "03z7gpqz5xkw9rf53835pa8a9vgj4lic54rnix9vfwmp2m7pv1s8";
type = "gem";
};
- version = "3.12.1";
+ version = "3.13.1";
};
rspec-terraspace = {
dependencies = ["activesupport" "memoist" "rainbow" "rspec" "zeitwerk"];
@@ -367,16 +418,26 @@
};
version = "2.3.2";
};
+ strscan = {
+ groups = ["default"];
+ platforms = [];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "0mamrl7pxacbc79ny5hzmakc9grbjysm3yy6119ppgsg44fsif01";
+ type = "gem";
+ };
+ version = "3.1.0";
+ };
terraspace = {
dependencies = ["activesupport" "cli-format" "deep_merge" "dotenv" "dsl_evaluator" "eventmachine-tail" "graph" "hcl_parser" "memoist" "rainbow" "render_me_pretty" "rexml" "rspec-terraspace" "terraspace-bundler" "thor" "tty-tree" "zeitwerk" "zip_folder"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1zhcdaiq0sgk2gcy4krkzm4qrvcaibkf5n755qgqgcp1f1b0w6gl";
+ sha256 = "1zmnp71fwcj453cafmb8iicbk93flk98wh0wdk0q9xd3mgm3qh6x";
type = "gem";
};
- version = "2.2.8";
+ version = "2.2.17";
};
terraspace-bundler = {
dependencies = ["activesupport" "aws-sdk-s3" "dsl_evaluator" "memoist" "nokogiri" "rainbow" "rubyzip" "thor" "zeitwerk"];
@@ -404,20 +465,20 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0k7j2wn14h1pl4smibasw0bp66kg626drxb59z7rzflch99cd4rg";
+ sha256 = "1vq1fjp45az9hfp6fxljhdrkv75cvbab1jfrwcw738pnsiqk8zps";
type = "gem";
};
- version = "1.2.2";
+ version = "1.3.1";
};
tilt = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0bmjgbv8158klwp2r3klxjwaj93nh1sbl4xvj9wsha0ic478avz7";
+ sha256 = "0kds7wkxmb038cwp6ravnwn8k65ixc68wpm8j5jx5bhx8ndg4x6z";
type = "gem";
};
- version = "2.2.0";
+ version = "2.4.0";
};
tty-tree = {
groups = ["default"];
@@ -445,10 +506,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0ck6bj7wa73dkdh13735jl06k6cfny98glxjkas82aivlmyzqqbk";
+ sha256 = "08cfb35232p9s1r4jqv8wacv38vxh699mgbr9y03ga89gx9lipqp";
type = "gem";
};
- version = "2.6.8";
+ version = "2.6.16";
};
zip_folder = {
dependencies = ["rubyzip"];
diff --git a/pkgs/applications/networking/instant-messengers/signal-desktop/signal-desktop-beta.nix b/pkgs/applications/networking/instant-messengers/signal-desktop/signal-desktop-beta.nix
index c251258772bf..79c501a2e6ce 100644
--- a/pkgs/applications/networking/instant-messengers/signal-desktop/signal-desktop-beta.nix
+++ b/pkgs/applications/networking/instant-messengers/signal-desktop/signal-desktop-beta.nix
@@ -2,7 +2,7 @@
callPackage ./generic.nix { } rec {
pname = "signal-desktop-beta";
dir = "Signal Beta";
- version = "7.17.0-beta.1";
+ version = "7.18.0-beta.1";
url = "https://updates.signal.org/desktop/apt/pool/s/signal-desktop-beta/signal-desktop-beta_${version}_amd64.deb";
- hash = "sha256-sK42Bqh+j4b8SduZk6eMhgBhRMG0q/ee5lAqFYVc4Tg=";
+ hash = "sha256-ZNFssB0SiNAAW7SupxNqdbEtEpemrv+IoyfdWVKu8CI=";
}
diff --git a/pkgs/applications/networking/instant-messengers/signal-desktop/signal-desktop.nix b/pkgs/applications/networking/instant-messengers/signal-desktop/signal-desktop.nix
index 26d43cf11da0..ebe2cbc9d9a2 100644
--- a/pkgs/applications/networking/instant-messengers/signal-desktop/signal-desktop.nix
+++ b/pkgs/applications/networking/instant-messengers/signal-desktop/signal-desktop.nix
@@ -2,7 +2,7 @@
callPackage ./generic.nix { } rec {
pname = "signal-desktop";
dir = "Signal";
- version = "7.16.0";
+ version = "7.17.0";
url = "https://updates.signal.org/desktop/apt/pool/s/signal-desktop/signal-desktop_${version}_amd64.deb";
- hash = "sha256-DfPQb3TGhVVZ7webNoMmyhjhRKKO3lWf12ZIpi7D7tc=";
+ hash = "sha256-4Yp81aBY01cVZ/KDSqPO3R3HglLup/+sczQ5XNtQn84=";
}
diff --git a/pkgs/applications/networking/instant-messengers/silc-client/default.nix b/pkgs/applications/networking/instant-messengers/silc-client/default.nix
index 9dd94225acfe..7a64e5cc1233 100644
--- a/pkgs/applications/networking/instant-messengers/silc-client/default.nix
+++ b/pkgs/applications/networking/instant-messengers/silc-client/default.nix
@@ -33,7 +33,7 @@ stdenv.mkDerivation rec {
description = "Secure Internet Live Conferencing server";
mainProgram = "silc";
license = lib.licenses.gpl2;
- maintainers = with lib.maintainers; [viric];
+ maintainers = [ ];
platforms = with lib.platforms; linux;
};
}
diff --git a/pkgs/applications/networking/irc/irssi/fish/default.nix b/pkgs/applications/networking/irc/irssi/fish/default.nix
index b26b2cb1daf4..a5ee8b7cef62 100644
--- a/pkgs/applications/networking/irc/irssi/fish/default.nix
+++ b/pkgs/applications/networking/irc/irssi/fish/default.nix
@@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
homepage = "https://github.com/falsovsky/FiSH-irssi";
license = licenses.mit;
- maintainers = with maintainers; [ viric ];
+ maintainers = [ ];
platforms = platforms.unix;
};
}
diff --git a/pkgs/applications/networking/iroh/default.nix b/pkgs/applications/networking/iroh/default.nix
index b0eb919cb4c2..c976b7f82628 100644
--- a/pkgs/applications/networking/iroh/default.nix
+++ b/pkgs/applications/networking/iroh/default.nix
@@ -7,16 +7,16 @@
rustPlatform.buildRustPackage rec {
pname = "iroh";
- version = "0.20.0";
+ version = "0.21.0";
src = fetchFromGitHub {
owner = "n0-computer";
repo = pname;
rev = "v${version}";
- hash = "sha256-1ke1S5IBrg8XYO67iUaH0T4dA59TkyqelsghIK+TuyM=";
+ hash = "sha256-g/x5lVVrm1NrJbqmhza/wryEwuXHh1tDBf+x6vL+2n0=";
};
- cargoHash = "sha256-O6HHZtZes8BO2XuCMdVuuHphzYiqkS5axbYIxsGZw6k=";
+ cargoHash = "sha256-Sp2yMF/M3SuNB1DDQ79Lau5IxtSM1NPLJi9TnHWqnuc=";
buildInputs = lib.optionals stdenv.isDarwin (
with darwin.apple_sdk.frameworks; [
diff --git a/pkgs/applications/networking/offrss/default.nix b/pkgs/applications/networking/offrss/default.nix
index 8d7889663fff..081f7d96c1aa 100644
--- a/pkgs/applications/networking/offrss/default.nix
+++ b/pkgs/applications/networking/offrss/default.nix
@@ -36,7 +36,7 @@ stdenv.mkDerivation rec {
homepage = "http://vicerveza.homeunix.net/~viric/cgi-bin/offrss";
description = "Offline RSS/Atom reader";
license = licenses.agpl3Plus;
- maintainers = with maintainers; [ viric ];
+ maintainers = [ ];
platforms = lib.platforms.linux;
mainProgram = "offrss";
};
diff --git a/pkgs/applications/networking/siproxd/default.nix b/pkgs/applications/networking/siproxd/default.nix
index 76ef0338dccf..7c6319e450bd 100644
--- a/pkgs/applications/networking/siproxd/default.nix
+++ b/pkgs/applications/networking/siproxd/default.nix
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
homepage = "http://siproxd.sourceforge.net/";
description = "Masquerading SIP Proxy Server";
mainProgram = "siproxd";
- maintainers = with lib.maintainers; [viric];
+ maintainers = [ ];
platforms = with lib.platforms; linux;
license = lib.licenses.gpl2Plus;
};
diff --git a/pkgs/applications/office/mmex/default.nix b/pkgs/applications/office/mmex/default.nix
index c4508df84b7b..14f3c4098102 100644
--- a/pkgs/applications/office/mmex/default.nix
+++ b/pkgs/applications/office/mmex/default.nix
@@ -71,7 +71,7 @@ stdenv.mkDerivation rec {
description = "Easy-to-use personal finance software";
homepage = "https://www.moneymanagerex.org/";
license = lib.licenses.gpl2Plus;
- maintainers = with lib.maintainers; [ viric ];
+ maintainers = [ ];
platforms = with lib.platforms; unix;
mainProgram = "mmex";
};
diff --git a/pkgs/applications/science/electronics/caneda/default.nix b/pkgs/applications/science/electronics/caneda/default.nix
index 4a4cf61c7f65..7eac675eca4e 100644
--- a/pkgs/applications/science/electronics/caneda/default.nix
+++ b/pkgs/applications/science/electronics/caneda/default.nix
@@ -19,7 +19,7 @@ mkDerivation rec {
mainProgram = "caneda";
homepage = "http://caneda.org";
license = lib.licenses.gpl2Plus;
- maintainers = with lib.maintainers; [viric];
+ maintainers = [ ];
platforms = with lib.platforms; linux;
};
}
diff --git a/pkgs/applications/science/electronics/xoscope/default.nix b/pkgs/applications/science/electronics/xoscope/default.nix
index 0fa0c1bc79bf..37b9076c01cc 100644
--- a/pkgs/applications/science/electronics/xoscope/default.nix
+++ b/pkgs/applications/science/electronics/xoscope/default.nix
@@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
mainProgram = "xoscope";
homepage = "https://xoscope.sourceforge.net";
license = lib.licenses.gpl2Plus;
- maintainers = with lib.maintainers; [viric];
+ maintainers = [ ];
platforms = with lib.platforms; linux;
};
}
diff --git a/pkgs/applications/science/math/yacas/default.nix b/pkgs/applications/science/math/yacas/default.nix
index 7fa2fe1a6075..ad4e3f37d07f 100644
--- a/pkgs/applications/science/math/yacas/default.nix
+++ b/pkgs/applications/science/math/yacas/default.nix
@@ -80,7 +80,7 @@ stdenv.mkDerivation rec {
description = "Easy to use, general purpose Computer Algebra System${lib.optionalString enableGui ", built with GUI."}";
homepage = "http://www.yacas.org/";
license = lib.licenses.gpl2Plus;
- maintainers = with lib.maintainers; [ viric ];
+ maintainers = [ ];
platforms = with lib.platforms; linux;
};
}
diff --git a/pkgs/applications/search/doodle/default.nix b/pkgs/applications/search/doodle/default.nix
index 928548e7e718..ced330bd647e 100644
--- a/pkgs/applications/search/doodle/default.nix
+++ b/pkgs/applications/search/doodle/default.nix
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
homepage = "https://grothoff.org/christian/doodle/";
description = "Tool to quickly index and search documents on a computer";
license = lib.licenses.gpl2Plus;
- maintainers = with lib.maintainers; [ viric ];
+ maintainers = [ ];
platforms = with lib.platforms; linux;
mainProgram = "doodle";
};
diff --git a/pkgs/applications/version-management/fossil/default.nix b/pkgs/applications/version-management/fossil/default.nix
index 49829a2fd4bc..b1b828d47959 100644
--- a/pkgs/applications/version-management/fossil/default.nix
+++ b/pkgs/applications/version-management/fossil/default.nix
@@ -86,7 +86,7 @@ stdenv.mkDerivation (finalAttrs: {
'';
homepage = "https://www.fossil-scm.org/";
license = licenses.bsd2;
- maintainers = with maintainers; [ maggesi viric ];
+ maintainers = with maintainers; [ maggesi ];
platforms = platforms.all;
mainProgram = "fossil";
};
diff --git a/pkgs/applications/version-management/rapidsvn/default.nix b/pkgs/applications/version-management/rapidsvn/default.nix
index 53df3af4a79d..8887d5126fde 100644
--- a/pkgs/applications/version-management/rapidsvn/default.nix
+++ b/pkgs/applications/version-management/rapidsvn/default.nix
@@ -51,7 +51,7 @@ stdenv.mkDerivation rec {
description = "Multi-platform GUI front-end for the Subversion revision system";
homepage = "http://rapidsvn.tigris.org/";
license = lib.licenses.gpl3Plus;
- maintainers = [ lib.maintainers.viric ];
+ maintainers = [ ];
platforms = lib.platforms.unix;
mainProgram = "rapidsvn";
};
diff --git a/pkgs/applications/window-managers/dwm/default.nix b/pkgs/applications/window-managers/dwm/default.nix
index 10fef61b49a1..74d5022219a0 100644
--- a/pkgs/applications/window-managers/dwm/default.nix
+++ b/pkgs/applications/window-managers/dwm/default.nix
@@ -49,7 +49,7 @@ stdenv.mkDerivation rec {
tags.
'';
license = licenses.mit;
- maintainers = with maintainers; [ viric neonfuz ];
+ maintainers = with maintainers; [ neonfuz ];
platforms = platforms.all;
mainProgram = "dwm";
};
diff --git a/pkgs/build-support/build-fhsenv-bubblewrap/buildFHSEnv.nix b/pkgs/build-support/build-fhsenv-bubblewrap/buildFHSEnv.nix
index ffd19cfd4a8a..c00aff0b2288 100644
--- a/pkgs/build-support/build-fhsenv-bubblewrap/buildFHSEnv.nix
+++ b/pkgs/build-support/build-fhsenv-bubblewrap/buildFHSEnv.nix
@@ -51,7 +51,7 @@ let
# list of packages which are for x86 (only multiPkgs, only for x86_64 hosts)
multiPaths = multiPkgs pkgsi686Linux;
- # base packages of the chroot
+ # base packages of the fhsenv
# these match the host's architecture, glibc_multi is used for multilib
# builds. glibcLocales must be before glibc or glibc_multi as otherwiese
# the wrong LOCALE_ARCHIVE will be used where only C.UTF-8 is available.
@@ -84,7 +84,7 @@ let
'';
etcProfile = writeText "profile" ''
- export PS1='${name}-chrootenv:\u@\h:\w\$ '
+ export PS1='${name}-fhsenv:\u@\h:\w\$ '
export LOCALE_ARCHIVE='/usr/lib/locale/locale-archive'
export LD_LIBRARY_PATH="/run/opengl-driver/lib:/run/opengl-driver-32/lib''${LD_LIBRARY_PATH:+:}$LD_LIBRARY_PATH"
export PATH="/run/wrappers/bin:/usr/bin:/usr/sbin:$PATH"
@@ -123,8 +123,8 @@ let
${profile}
'';
- # Compose /etc for the chroot environment
- etcPkg = runCommandLocal "${name}-chrootenv-etc" { } ''
+ # Compose /etc for the fhs environment
+ etcPkg = runCommandLocal "${name}-fhs-etc" { } ''
mkdir -p $out/etc
pushd $out/etc
@@ -215,7 +215,7 @@ let
then setupLibDirsTarget
else setupLibDirsMulti;
- # the target profile is the actual profile that will be used for the chroot
+ # the target profile is the actual profile that will be used for the fhs
setupTargetProfile = ''
mkdir -m0755 usr
pushd usr
diff --git a/pkgs/by-name/an/ananicy-cpp/package.nix b/pkgs/by-name/an/ananicy-cpp/package.nix
index 1906773921b4..e34bebff8f26 100644
--- a/pkgs/by-name/an/ananicy-cpp/package.nix
+++ b/pkgs/by-name/an/ananicy-cpp/package.nix
@@ -1,27 +1,29 @@
-{ lib
-, clangStdenv
-, fetchFromGitLab
-, fetchpatch
-, cmake
-, pkg-config
-, spdlog
-, nlohmann_json
-, systemd
-, libbpf
-, elfutils
-, bpftools
-, pcre2
-, zlib
+{
+ lib,
+ clangStdenv,
+ fetchFromGitLab,
+ fetchpatch,
+ cmake,
+ pkg-config,
+ spdlog,
+ nlohmann_json,
+ systemd,
+ libbpf,
+ elfutils,
+ bpftools,
+ pcre2,
+ zlib,
+ withBpf ? true,
}:
-clangStdenv.mkDerivation rec {
+clangStdenv.mkDerivation (finalAttrs: {
pname = "ananicy-cpp";
version = "1.1.1";
src = fetchFromGitLab {
owner = "ananicy-cpp";
repo = "ananicy-cpp";
- rev = "v${version}";
+ rev = "v${finalAttrs.version}";
fetchSubmodules = true;
hash = "sha256-oPinSc00+Z6SxjfTh7DttcXSjsLv1X0NI+O37C8M8GY=";
};
@@ -41,6 +43,7 @@ clangStdenv.mkDerivation rec {
nativeBuildInputs = [
cmake
pkg-config
+ ] ++ lib.optionals withBpf [
bpftools
];
@@ -49,23 +52,29 @@ clangStdenv.mkDerivation rec {
spdlog
nlohmann_json
systemd
+ zlib
+ ] ++ lib.optionals withBpf [
libbpf
elfutils
- zlib
];
# BPF A call to built-in function '__stack_chk_fail' is not supported.
- hardeningDisable = [ "stackprotector" "zerocallusedregs" ];
+ hardeningDisable = [
+ "stackprotector"
+ "zerocallusedregs"
+ ];
cmakeFlags = [
- "-DUSE_EXTERNAL_JSON=ON"
- "-DUSE_EXTERNAL_SPDLOG=ON"
- "-DUSE_EXTERNAL_FMTLIB=ON"
- "-DUSE_BPF_PROC_IMPL=ON"
- "-DBPF_BUILD_LIBBPF=OFF"
- "-DENABLE_SYSTEMD=ON"
- "-DENABLE_REGEX_SUPPORT=ON"
- "-DVERSION=${version}"
+ (lib.mapAttrsToList lib.cmakeBool {
+ "USE_EXTERNAL_JSON" = true;
+ "USE_EXTERNAL_SPDLOG" = true;
+ "USE_EXTERNAL_FMTLIB" = true;
+ "USE_BPF_PROC_IMPL" = withBpf;
+ "BPF_BUILD_LIBBPF" = false;
+ "ENABLE_SYSTEMD" = true;
+ "ENABLE_REGEX_SUPPORT" = true;
+ })
+ (lib.cmakeFeature "VERSION" finalAttrs.version)
];
postInstall = ''
@@ -85,4 +94,4 @@ clangStdenv.mkDerivation rec {
];
mainProgram = "ananicy-cpp";
};
-}
+})
diff --git a/pkgs/by-name/be/beeper-bridge-manager/package.nix b/pkgs/by-name/be/beeper-bridge-manager/package.nix
new file mode 100644
index 000000000000..17030eb6ccd9
--- /dev/null
+++ b/pkgs/by-name/be/beeper-bridge-manager/package.nix
@@ -0,0 +1,27 @@
+{ lib
+, buildGoModule
+, fetchFromGitHub
+}:
+
+buildGoModule rec {
+ pname = "bbctl";
+ version = "0.12.0";
+
+ src = fetchFromGitHub {
+ owner = "beeper";
+ repo = "bridge-manager";
+ rev = "refs/tags/v${version}";
+ hash = "sha256-xaBLI5Y7PxHbmlwD72AKNrgnz3D+3WVhb2GJr5cmyfs=";
+ };
+
+ vendorHash = "sha256-VnqihTEGfrLxRfuscrWWBbhZ/tr8BhVnCd+FKblW5gI=";
+
+ meta = {
+ description = "Tool for running self-hosted bridges with the Beeper Matrix server. ";
+ homepage = "https://github.com/beeper/bridge-manager";
+ license = lib.licenses.asl20;
+ maintainers = [ lib.maintainers.heywoodlh ];
+ mainProgram = "bbctl";
+ changelog = "https://github.com/beeper/bridge-manager/releases/tag/v{version}";
+ };
+}
diff --git a/pkgs/by-name/bs/bsc/package.nix b/pkgs/by-name/bs/bsc/package.nix
new file mode 100644
index 000000000000..48a1c8f994de
--- /dev/null
+++ b/pkgs/by-name/bs/bsc/package.nix
@@ -0,0 +1,36 @@
+{
+ lib,
+ stdenv,
+ fetchFromGitHub,
+ llvmPackages,
+}:
+
+stdenv.mkDerivation (finalAttrs: {
+ pname = "bsc";
+ version = "3.3.4";
+
+ src = fetchFromGitHub {
+ owner = "IlyaGrebnov";
+ repo = "libbsc";
+ rev = "refs/tags/v${finalAttrs.version}";
+ sha256 = "sha256-reGg5xvoZBbNFFYPPyT2P1LA7oSCUIm9NIDjXyvkP9Q=";
+ };
+
+ enableParallelBuilding = true;
+
+ buildInputs = lib.optional stdenv.isDarwin llvmPackages.openmp;
+
+ makeFlags = [
+ "CC=$(CXX)"
+ "PREFIX=${placeholder "out"}"
+ ];
+
+ meta = with lib; {
+ description = "High performance block-sorting data compression library";
+ homepage = "http://libbsc.com/";
+ maintainers = with maintainers; [ sigmanificient ];
+ license = lib.licenses.asl20;
+ platforms = platforms.unix;
+ mainProgram = "bsc";
+ };
+})
diff --git a/pkgs/by-name/ca/cameractrls/package.nix b/pkgs/by-name/ca/cameractrls/package.nix
new file mode 100644
index 000000000000..2b715397150c
--- /dev/null
+++ b/pkgs/by-name/ca/cameractrls/package.nix
@@ -0,0 +1,133 @@
+{
+ lib,
+ python3Packages,
+ fetchFromGitHub,
+ glibc,
+ SDL2,
+ libjpeg_turbo,
+ alsa-lib,
+ libspnav,
+ desktop-file-utils,
+ gobject-introspection,
+ wrapGAppsHook3,
+ wrapGAppsHook4,
+ cameractrls-gtk3,
+ cameractrls-gtk4,
+ withGtk ? null,
+}:
+
+assert lib.assertOneOf "'withGtk' in cameractrls" withGtk [
+ 3
+ 4
+ null
+];
+
+let
+ mainExecutable =
+ "cameractrls" + lib.optionalString (withGtk != null) "gtk" + lib.optionalString (withGtk == 4) "4";
+
+ modulePath = "${placeholder "out"}/${python3Packages.python.sitePackages}/CameraCtrls";
+
+ installExecutables = [
+ "cameractrls"
+ "cameractrlsd"
+ "cameraptzgame"
+ "cameraptzmidi"
+ "cameraptzspnav"
+ "cameraview"
+ ] ++ lib.optionals (withGtk != null) [ mainExecutable ];
+in
+python3Packages.buildPythonApplication rec {
+ pname = "cameractrls";
+ version = "0.6.6";
+ pyproject = false;
+
+ src = fetchFromGitHub {
+ owner = "soyersoyer";
+ repo = "cameractrls";
+ rev = "v${version}";
+ hash = "sha256-QjjLd5L+8Slxc3ywurhsWp1pZ2E1Y7NOdnCV2ZYBlqU=";
+ };
+
+ postPatch = ''
+ substituteInPlace cameractrlsd.py \
+ --replace-fail "ctypes.util.find_library('c')" '"${lib.getLib glibc}/lib/libc.so.6"'
+ substituteInPlace cameraptzgame.py cameraview.py \
+ --replace-fail "ctypes.util.find_library('SDL2-2.0')" '"${lib.getLib SDL2}/lib/libSDL2-2.0.so.0"'
+ substituteInPlace cameraview.py \
+ --replace-fail "ctypes.util.find_library('turbojpeg')" '"${lib.getLib libjpeg_turbo}/lib/libturbojpeg.so"'
+ substituteInPlace cameraptzmidi.py \
+ --replace-fail "ctypes.util.find_library('asound')" '"${lib.getLib alsa-lib}/lib/libasound.so"'
+ substituteInPlace cameraptzspnav.py \
+ --replace-fail "ctypes.util.find_library('spnav')" '"${lib.getLib libspnav}/lib/libspnav.so"'
+ '';
+
+ nativeBuildInputs =
+ lib.optionals (withGtk != null) [
+ desktop-file-utils
+ gobject-introspection
+ ]
+ ++ lib.optionals (withGtk == 3) [ wrapGAppsHook3 ]
+ ++ lib.optionals (withGtk == 4) [ wrapGAppsHook4 ];
+
+ # Only used when withGtk != null
+ dependencies = with python3Packages; [ pygobject3 ];
+
+ installPhase =
+ ''
+ runHook preInstall
+
+ mkdir -p $out/bin
+
+ for file in ${lib.concatStringsSep " " installExecutables}; do
+ install -Dm755 $file.py -t ${modulePath}
+ ln -s ${modulePath}/$file.py $out/bin/$file
+ done
+ ''
+ + lib.optionalString (withGtk != null) ''
+ install -Dm644 pkg/hu.irl.cameractrls.svg -t $out/share/icons/hicolor/scalable/apps
+ install -Dm644 pkg/hu.irl.cameractrls.metainfo.xml -t $out/share/metainfo
+ mkdir -p $out/share/applications
+ desktop-file-install \
+ --dir="$out/share/applications" \
+ --set-key=Exec --set-value="${mainExecutable}" \
+ pkg/hu.irl.cameractrls.desktop
+ ''
+ + ''
+ runHook postInstall
+ '';
+
+ dontWrapGApps = true;
+ dontWrapPythonPrograms = true;
+
+ postFixup = lib.optionalString (withGtk != null) ''
+ wrapPythonPrograms
+ patchPythonScript ${modulePath}/${mainExecutable}.py
+ wrapProgram $out/bin/${mainExecutable} ''${makeWrapperArgs[@]} ''${gappsWrapperArgs[@]}
+ '';
+
+ passthru.tests = {
+ # Also build these packages in ofBorg (defined in top-level/all-packages.nix)
+ inherit cameractrls-gtk3 cameractrls-gtk4;
+ };
+
+ meta = {
+ description = "Camera controls for Linux";
+ longDescription = ''
+ It's a standalone Python CLI and GUI (GTK3, GTK4) and
+ camera Viewer (SDL) to set the camera controls in Linux.
+ It can set the V4L2 controls and it is extendable with
+ the non standard controls. Currently it has a Logitech
+ extension (LED mode, LED frequency, BRIO FoV, Relative
+ Pan/Tilt, PTZ presets), Kiyo Pro extension (HDR, HDR
+ mode, FoV, AF mode, Save), Preset extension (Save and
+ restore controls), Control Restore Daemon (to restore
+ presets at device connection).
+ '';
+ homepage = "https://github.com/soyersoyer/cameractrls";
+ license = lib.licenses.gpl3Plus;
+ mainProgram = mainExecutable;
+ maintainers = with lib.maintainers; [ aleksana ];
+ platforms = lib.platforms.linux;
+ };
+}
diff --git a/pkgs/by-name/ca/cartridges/package.nix b/pkgs/by-name/ca/cartridges/package.nix
index eeb20dbfda77..42575689ea19 100644
--- a/pkgs/by-name/ca/cartridges/package.nix
+++ b/pkgs/by-name/ca/cartridges/package.nix
@@ -15,19 +15,16 @@
}:
python3Packages.buildPythonApplication rec {
pname = "cartridges";
- version = "2.8.5";
+ version = "2.9.3";
pyproject = false;
src = fetchFromGitHub {
owner = "kra-mo";
repo = "cartridges";
- rev = "v${version}";
- hash = "sha256-7T+q3T8z8SCpAn3ayodZeETOsTwL+hhVWzY2JyBEoi4=";
+ rev = "refs/tags/v${version}";
+ hash = "sha256-37i8p6KaS/G7ybw850XYaPiG83/Lffn/+21xVk5xva0=";
};
- # TODO: remove this when #286814 hits master
- mesonFlags = [ "-Dtiff_compression=jpeg" ];
-
nativeBuildInputs = [
appstream
blueprint-compiler
@@ -54,6 +51,10 @@ python3Packages.buildPythonApplication rec {
dontWrapGApps = true;
makeWrapperArgs = [ ''''${gappsWrapperArgs[@]}'' ];
+ postFixup = ''
+ wrapPythonProgramsIn $out/libexec $out $pythonPath
+ '';
+
meta = {
description = "GTK4 + Libadwaita game launcher";
longDescription = ''
diff --git a/pkgs/by-name/ea/ear2ctl/package.nix b/pkgs/by-name/ea/ear2ctl/package.nix
index 4d4e038f85f0..24f7b4649690 100644
--- a/pkgs/by-name/ea/ear2ctl/package.nix
+++ b/pkgs/by-name/ea/ear2ctl/package.nix
@@ -1,4 +1,11 @@
-{ lib, rustPlatform, fetchFromGitLab, pkg-config, dbus }:
+{
+ lib,
+ rustPlatform,
+ fetchFromGitLab,
+ pkg-config,
+ dbus,
+ nix-update-script,
+}:
rustPlatform.buildRustPackage rec {
pname = "ear2ctl";
@@ -17,6 +24,8 @@ rustPlatform.buildRustPackage rec {
buildInputs = [ dbus ];
+ passthru.updateScript = nix-update-script { };
+
meta = {
description = "Linux controller for the Nothing Ear (2)";
homepage = "https://gitlab.com/bharadwaj-raju/ear2ctl";
diff --git a/pkgs/by-name/em/emulationstation/package.nix b/pkgs/by-name/em/emulationstation/package.nix
index 62a3537cc5cd..8be475d885fc 100644
--- a/pkgs/by-name/em/emulationstation/package.nix
+++ b/pkgs/by-name/em/emulationstation/package.nix
@@ -1,31 +1,33 @@
-{ lib
-, SDL2
-, alsa-lib
-, boost
-, cmake
-, curl
-, fetchFromGitHub
-, freeimage
-, freetype
-, libGL
-, libGLU
-, libvlc
-, pkg-config
-, rapidjson
-, stdenv
+{
+ lib,
+ SDL2,
+ alsa-lib,
+ boost,
+ callPackage,
+ cmake,
+ curl,
+ freeimage,
+ freetype,
+ libGL,
+ libGLU,
+ libvlc,
+ pkg-config,
+ rapidjson,
+ stdenv,
}:
-stdenv.mkDerivation (finalAttrs: {
- pname = "emulationstation";
- version = "2.11.2";
+let
+ sources = callPackage ./sources.nix { };
+in
+stdenv.mkDerivation {
+ inherit (sources.emulationstation) pname version src;
- src = fetchFromGitHub {
- owner = "RetroPie";
- repo = "EmulationStation";
- rev = "v${finalAttrs.version}";
- fetchSubmodules = true;
- hash = "sha256-J5h/578FVe4DXJx/AvpRnCIUpqBeFtmvFhUDYH5SErQ=";
- };
+ postUnpack = ''
+ pushd $sourceRoot/external/pugixml
+ cp --verbose --archive ${sources.pugixml.src}/* .
+ chmod --recursive 744 .
+ popd
+ '';
nativeBuildInputs = [
SDL2
@@ -46,11 +48,9 @@ stdenv.mkDerivation (finalAttrs: {
rapidjson
];
- strictDeps = true;
+ cmakeFlags = [ (lib.cmakeBool "GL" true) ];
- cmakeFlags = [
- (lib.cmakeBool "GL" true)
- ];
+ strictDeps = true;
installPhase = ''
runHook preInstall
@@ -59,7 +59,7 @@ stdenv.mkDerivation (finalAttrs: {
mkdir -p $out/share/emulationstation/
cp -r ../resources $out/share/emulationstation/
- runHook preInstall
+ runHook postInstall
'';
# es-core/src/resources/ResourceManager.cpp: resources are searched at the
@@ -70,12 +70,19 @@ stdenv.mkDerivation (finalAttrs: {
popd
'';
+ passthru = {
+ inherit sources;
+ };
+
meta = {
homepage = "https://github.com/RetroPie/EmulationStation";
description = "Flexible emulator front-end supporting keyboardless navigation and custom system themes (forked by RetroPie)";
license = with lib.licenses; [ mit ];
mainProgram = "emulationstation";
- maintainers = with lib.maintainers; [ AndersonTorres edwtjo ];
+ maintainers = with lib.maintainers; [
+ AndersonTorres
+ edwtjo
+ ];
platforms = lib.platforms.linux;
};
-})
+}
diff --git a/pkgs/by-name/em/emulationstation/sources.nix b/pkgs/by-name/em/emulationstation/sources.nix
new file mode 100644
index 000000000000..88273e845fee
--- /dev/null
+++ b/pkgs/by-name/em/emulationstation/sources.nix
@@ -0,0 +1,35 @@
+{ fetchFromGitHub }:
+
+{
+ emulationstation =
+ let
+ self = {
+ pname = "emulationstation";
+ version = "2.11.2";
+
+ src = fetchFromGitHub {
+ owner = "RetroPie";
+ repo = "EmulationStation";
+ rev = "v${self.version}";
+ hash = "sha256-f2gRkp+3Pp2qnvg2RBzaHPpzhAnwx0+5x1Pe3kD90xE=";
+ };
+ };
+ in
+ self;
+
+ pugixml =
+ let
+ self = {
+ pname = "pugixml";
+ version = "1.8.1";
+
+ src = fetchFromGitHub {
+ owner = "zeux";
+ repo = "pugixml";
+ rev = "v${self.version}";
+ hash = "sha256-LbjTN1hnIbqI79C+gCdwuDG0+B/5yXf7hg0Q+cDFIf4=";
+ };
+ };
+ in
+ self;
+}
diff --git a/pkgs/by-name/fr/freecad/package.nix b/pkgs/by-name/fr/freecad/package.nix
index b0146582b1a3..04c40ee03c67 100644
--- a/pkgs/by-name/fr/freecad/package.nix
+++ b/pkgs/by-name/fr/freecad/package.nix
@@ -191,7 +191,7 @@ stdenv.mkDerivation (finalAttrs: {
right at home with FreeCAD.
'';
license = lib.licenses.lgpl2Plus;
- maintainers = with lib.maintainers; [ viric gebner AndersonTorres ];
+ maintainers = with lib.maintainers; [ gebner AndersonTorres ];
platforms = lib.platforms.linux;
};
})
diff --git a/pkgs/by-name/gi/git-igitt/package.nix b/pkgs/by-name/gi/git-igitt/package.nix
new file mode 100644
index 000000000000..19183790b8ea
--- /dev/null
+++ b/pkgs/by-name/gi/git-igitt/package.nix
@@ -0,0 +1,46 @@
+{
+ lib,
+ rustPlatform,
+ fetchFromGitHub,
+ pkg-config,
+ libgit2,
+ oniguruma,
+ zlib,
+}:
+
+let
+ pname = "git-igitt";
+ version = "0.1.18";
+in
+rustPlatform.buildRustPackage {
+ inherit pname version;
+
+ src = fetchFromGitHub {
+ owner = "mlange-42";
+ repo = pname;
+ rev = version;
+ hash = "sha256-JXEWnekL9Mtw0S3rI5aeO1HB9kJ7bRJDJ6EJ4ATlFeQ=";
+ };
+
+ cargoHash = "sha256-5UgcgM/WuyApNFCd8YBodx9crJP3+Bygu9nSBJqPCaQ=";
+
+ nativeBuildInputs = [ pkg-config ];
+
+ buildInputs = [
+ libgit2
+ oniguruma
+ zlib
+ ];
+
+ env = {
+ RUSTONIG_SYSTEM_LIBONIG = true;
+ };
+
+ meta = {
+ description = "Interactive, cross-platform Git terminal application with clear git graphs arranged for your branching model";
+ homepage = "https://github.com/mlange-42/git-igitt";
+ license = lib.licenses.mit;
+ maintainers = [ lib.maintainers.pinage404 ];
+ mainProgram = "git-igitt";
+ };
+}
diff --git a/pkgs/by-name/go/google-chrome/package.nix b/pkgs/by-name/go/google-chrome/package.nix
index 87ff8448d626..7e3749e5db1d 100644
--- a/pkgs/by-name/go/google-chrome/package.nix
+++ b/pkgs/by-name/go/google-chrome/package.nix
@@ -64,11 +64,11 @@ let
in stdenv.mkDerivation (finalAttrs: {
pname = "google-chrome";
- version = "126.0.6478.182";
+ version = "127.0.6533.72";
src = fetchurl {
url = "https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_${finalAttrs.version}-1_amd64.deb";
- hash = "sha256-izz3oEJAScI1MV3pBHLzwxCKs6M+rTORernvLv3sBYA=";
+ hash = "sha256-DpEYK/6SEaNfEa8uzGhXhALSSxt51X9X5ksaia8srJg=";
};
nativeBuildInputs = [ patchelf makeWrapper ];
@@ -157,6 +157,7 @@ in stdenv.mkDerivation (finalAttrs: {
meta = {
description = "Freeware web browser developed by Google";
homepage = "https://www.google.com/chrome/browser/";
+ changelog = "https://chromereleases.googleblog.com/";
license = lib.licenses.unfree;
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
maintainers = with lib.maintainers; [ jnsgruk johnrtitor ];
diff --git a/pkgs/by-name/ha/hare/cross-compilation-tests.nix b/pkgs/by-name/ha/hare/cross-compilation-tests.nix
index 26611fea9d65..c5797a9a1566 100644
--- a/pkgs/by-name/ha/hare/cross-compilation-tests.nix
+++ b/pkgs/by-name/ha/hare/cross-compilation-tests.nix
@@ -1,31 +1,40 @@
-{ lib
-, buildPackages
-, hare
-, runCommandNoCC
-, stdenv
-, writeText
+{
+ lib,
+ file,
+ hare,
+ runCommandNoCC,
+ writeText,
}:
let
- inherit (stdenv.hostPlatform.uname) processor;
- inherit (stdenv.hostPlatform) emulator;
+ archs = lib.concatStringsSep " " (
+ builtins.map (lib.removeSuffix "-linux") (
+ builtins.filter (lib.hasSuffix "-linux") hare.meta.platforms
+ )
+ );
mainDotHare = writeText "main.ha" ''
- use fmt;
- use os;
- export fn main() void = {
- const machine = os::machine();
- if (machine == "${processor}") {
- fmt::println("os::machine() matches ${processor}")!;
- } else {
- fmt::fatalf("os::machine() does not match ${processor}: {}", machine);
- };
- };
+ export fn main() void = void;
'';
in
-runCommandNoCC "${hare.pname}-cross-compilation-test" { meta.timeout = 60; } ''
- HARECACHE="$(mktemp -d --tmpdir harecache.XXXXXXXX)"
- export HARECACHE
- outbin="test-${processor}"
- ${lib.getExe hare} build -q -a "${processor}" -o "$outbin" ${mainDotHare}
- ${emulator buildPackages} "./$outbin"
- : 1>$out
-''
+runCommandNoCC "${hare.pname}-cross-compilation-test"
+ {
+ nativeBuildInputs = [
+ hare
+ file
+ ];
+ }
+ ''
+ HARECACHE="$(mktemp -d)"
+ export HARECACHE
+ readonly binprefix="bin"
+ for a in ${archs}; do
+ outbin="$binprefix-$a"
+ set -x
+ hare build -o "$outbin" -q -R -a "$a" ${mainDotHare}
+ set +x
+ printf -- 'Built "%s" target\n' "$a"
+ done
+
+ file -- "$binprefix-"*
+
+ : 1>$out
+ ''
diff --git a/pkgs/by-name/ha/hare/package.nix b/pkgs/by-name/ha/hare/package.nix
index 6090106f7b43..c809d73c3897 100644
--- a/pkgs/by-name/ha/hare/package.nix
+++ b/pkgs/by-name/ha/hare/package.nix
@@ -161,7 +161,12 @@ stdenv.mkDerivation (finalAttrs: {
}
// lib.optionalAttrs (stdenv.buildPlatform.canExecute stdenv.hostPlatform) {
mimeModule = callPackage ./mime-module-test.nix { hare = finalAttrs.finalPackage; };
- };
+ }
+ //
+ lib.optionalAttrs (enableCrossCompilation && stdenv.buildPlatform.canExecute stdenv.hostPlatform)
+ {
+ crossCompilation = callPackage ./cross-compilation-tests.nix { hare = finalAttrs.finalPackage; };
+ };
# To be propagated by `hareHook`.
inherit harec qbe;
};
diff --git a/pkgs/by-name/ht/httm/package.nix b/pkgs/by-name/ht/httm/package.nix
index d008e766fef4..d8c023c533cb 100644
--- a/pkgs/by-name/ht/httm/package.nix
+++ b/pkgs/by-name/ht/httm/package.nix
@@ -7,16 +7,16 @@
rustPlatform.buildRustPackage rec {
pname = "httm";
- version = "0.40.1";
+ version = "0.40.4";
src = fetchFromGitHub {
owner = "kimono-koans";
repo = pname;
rev = version;
- hash = "sha256-iJs151HdwcSNlgbbSX/CKBOeGvfEJes8Q8nm/HDfssg=";
+ hash = "sha256-dWL27Fe8bU8/ikNSh0T3/67XBvFkxd71uvArbJRbqKA=";
};
- cargoHash = "sha256-n/UKM+/rXuf4vbc+1TGUTZzmRyYjLNMttmYnUs7HZPw=";
+ cargoHash = "sha256-BAOFPsHjd5EaWhtzzUxzKvsBtO/kOB5mUo3nUlf7mlY=";
nativeBuildInputs = [ installShellFiles ];
diff --git a/pkgs/by-name/ia/ia-writer-quattro/package.nix b/pkgs/by-name/ia/ia-writer-quattro/package.nix
index 2f103f7cdbb7..2a3cdd5feccd 100644
--- a/pkgs/by-name/ia/ia-writer-quattro/package.nix
+++ b/pkgs/by-name/ia/ia-writer-quattro/package.nix
@@ -17,6 +17,7 @@ stdenvNoCC.mkDerivation {
mkdir -p $out/share/fonts/truetype
cp -R $src/iA\ Writer\ Quattro/Static/*.ttf $out/share/fonts/truetype
+ cp -R $src/iA\ Writer\ Quattro/Variable/*.ttf $out/share/fonts/truetype
runHook postInstall
'';
diff --git a/pkgs/by-name/ky/kyverno-chainsaw/package.nix b/pkgs/by-name/ky/kyverno-chainsaw/package.nix
index fe83e66e7d42..f7035840d813 100644
--- a/pkgs/by-name/ky/kyverno-chainsaw/package.nix
+++ b/pkgs/by-name/ky/kyverno-chainsaw/package.nix
@@ -11,16 +11,16 @@
buildGoModule rec {
pname = "kyverno-chainsaw";
- version = "0.2.6";
+ version = "0.2.7";
src = fetchFromGitHub {
owner = "kyverno";
repo = "chainsaw";
rev = "v${version}";
- hash = "sha256-UnLsy+htNG7DWU1Qw9HJZOPshq4L7YCtXSkh4jZe/XA=";
+ hash = "sha256-Ft3xWXUu57DHKTDyvtIvYExauP/La0xWu2rjbpcvxzM=";
};
- vendorHash = "sha256-UQCn5GKhhfHsHIOqYYVkKP76e2NTRtwjw2VvCwRPUB4=";
+ vendorHash = "sha256-ilQOf1GMVmf9FhwfMuK+eGFOnqmL+kW/ma+/KaTWqc4=";
ldflags = [
"-s"
diff --git a/pkgs/by-name/ll/lldap-cli/package.nix b/pkgs/by-name/ll/lldap-cli/package.nix
new file mode 100644
index 000000000000..6bec2c242662
--- /dev/null
+++ b/pkgs/by-name/ll/lldap-cli/package.nix
@@ -0,0 +1,61 @@
+{ stdenv
+, lib
+, fetchFromGitHub
+, bash
+, coreutils
+, gnugrep
+, gnused
+, jq
+, curl
+, makeWrapper
+}:
+stdenv.mkDerivation {
+ pname = "lldap-cli";
+ version = "0-unstable-2024-02-24";
+
+ src = fetchFromGitHub {
+ owner = "Zepmann";
+ repo = "lldap-cli";
+ rev = "d1fe50006c4a3a1796d4fb2d73d8c8dcfc875fd5";
+ hash = "sha256-ZKRTYdgtOfV7TgpaVKLhYrCttYvB/bUexMshmmF8NyY=";
+ };
+
+ nativeBuildInputs = [ makeWrapper ];
+
+ patchPhase = ''
+ runHook prePatch
+
+ # fix .lldap-cli-wrapped showing up in usage
+ substituteInPlace lldap-cli \
+ --replace-fail '$(basename $0)' lldap-cli
+
+ runHook postPatch
+ '';
+
+ dontConfigure = true;
+ dontBuild = true;
+
+ installPhase = ''
+ install -Dm555 lldap-cli -t $out/bin
+ wrapProgram $out/bin/lldap-cli \
+ --prefix PATH : ${lib.makeBinPath [ bash coreutils gnugrep gnused jq curl ]}
+ '';
+
+ meta = {
+ description = "Command line tool for managing LLDAP";
+ longDescription = ''
+ LDAP-CLI is a command line interface for LLDAP.
+
+ LLDAP uses GraphQL to offer an HTTP-based API.
+ This API is used by an included web-based user interface.
+ Unfortunately, LLDAP lacks a command-line interface,
+ which is a necessity for any serious administrator.
+ LLDAP-CLI translates CLI commands to GraphQL API calls.
+ '';
+ homepage = "https://github.com/Zepmann/lldap-cli";
+ license = lib.licenses.gpl3Only;
+ maintainers = [ lib.maintainers.nw ];
+ mainProgram = "lldap-cli";
+ platforms = lib.platforms.unix;
+ };
+}
diff --git a/pkgs/by-name/md/md-tui/package.nix b/pkgs/by-name/md/md-tui/package.nix
index 6530ed3f4b7f..0149042406d5 100644
--- a/pkgs/by-name/md/md-tui/package.nix
+++ b/pkgs/by-name/md/md-tui/package.nix
@@ -10,16 +10,16 @@
rustPlatform.buildRustPackage rec {
pname = "md-tui";
- version = "0.8.1";
+ version = "0.8.3";
src = fetchFromGitHub {
owner = "henriklovhaug";
repo = "md-tui";
rev = "refs/tags/v${version}";
- hash = "sha256-AwJvB1xLsJCr+r0RJi8jH50QlPq7mbUibvmvYZJi9XE=";
+ hash = "sha256-21h1r6rhjFTOhebMS9PO3/OLKKEeFPVpWThFdgxKhh4=";
};
- cargoHash = "sha256-QapogSDuAiQWbCFFwPiaSpvLHn0oRLwBEBuB44MN/t0=";
+ cargoHash = "sha256-wONvublKzJnVVUjf1z9V4RwSkHg+HSoTGYvnMdslAYg=";
nativeBuildInputs = [ pkg-config ];
diff --git a/pkgs/by-name/mi/mihomo/package.nix b/pkgs/by-name/mi/mihomo/package.nix
index 50529dec4b77..dc7c362bc5a3 100644
--- a/pkgs/by-name/mi/mihomo/package.nix
+++ b/pkgs/by-name/mi/mihomo/package.nix
@@ -6,16 +6,16 @@
buildGoModule rec {
pname = "mihomo";
- version = "1.18.6";
+ version = "1.18.7";
src = fetchFromGitHub {
owner = "MetaCubeX";
repo = "mihomo";
rev = "v${version}";
- hash = "sha256-h/H5T9UBCp/gXM+c5muRs8luz3LoHofBGwP3jofQ9Qg=";
+ hash = "sha256-+9tVkMOOGwdmOXhoXanOpp8/7TEGGLR2aTeOsw+FzKc=";
};
- vendorHash = "sha256-lBHL4vD+0JDOlc6SWFsj0cerE/ypImoh8UFbL736SmA=";
+ vendorHash = "sha256-wbJgJY1EH3ajmoWXWRCSpD2C0eknajkwD1DaQz2EsUU=";
excludedPackages = [ "./test" ];
diff --git a/pkgs/by-name/mi/misconfig-mapper/package.nix b/pkgs/by-name/mi/misconfig-mapper/package.nix
index cc39fdf44641..6d5a487e7759 100644
--- a/pkgs/by-name/mi/misconfig-mapper/package.nix
+++ b/pkgs/by-name/mi/misconfig-mapper/package.nix
@@ -6,13 +6,13 @@
buildGoModule rec {
pname = "misconfig-mapper";
- version = "1.7.0";
+ version = "1.8.0";
src = fetchFromGitHub {
owner = "intigriti";
repo = "misconfig-mapper";
rev = "refs/tags/v${version}";
- hash = "sha256-QxZDxEt0IHuJh0BBGHFRofXm1nY+Owkyc3GDhDpQSAU=";
+ hash = "sha256-rHEtjbvb907G8RJWLnvrw2xscdWPHQOYSBgYk4yk6ng=";
};
vendorHash = "sha256-rpDzsUGtYIIUKf8P8Qkd16fuMbwKhKQMATYPVeNhstk=";
diff --git a/pkgs/by-name/ne/nerdfetch/package.nix b/pkgs/by-name/ne/nerdfetch/package.nix
index 35f74f1b52cd..447e46586eda 100644
--- a/pkgs/by-name/ne/nerdfetch/package.nix
+++ b/pkgs/by-name/ne/nerdfetch/package.nix
@@ -5,13 +5,13 @@
}:
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "nerdfetch";
- version = "8.1.2";
+ version = "8.2.0";
src = fetchFromGitHub {
owner = "ThatOneCalculator";
repo = "NerdFetch";
rev = "v${finalAttrs.version}";
- hash = "sha256-hKs/Of6GIQ9Xtav7VfL+2DzMNpgUoDk5C/2lqldd/So=";
+ hash = "sha256-fSITel2WhlmKx+wMNKfur3zDqKYJs5+AZNJBd2MtGRw=";
};
dontUnpack = true;
diff --git a/pkgs/by-name/ob/obj-magic/package.nix b/pkgs/by-name/ob/obj-magic/package.nix
new file mode 100644
index 000000000000..4f120323d0a3
--- /dev/null
+++ b/pkgs/by-name/ob/obj-magic/package.nix
@@ -0,0 +1,38 @@
+{ lib
+, stdenv
+, fetchFromGitHub
+}:
+
+stdenv.mkDerivation {
+ pname = "obj-magic";
+ version = "0.5-unstable-2020-09-20";
+
+ src = fetchFromGitHub {
+ owner = "tapio";
+ repo = "obj-magic";
+ rev = "f25c9b78cee6529a3295ed314d1c200677dc56c0";
+ hash = "sha256-4A8TasyLOh6oz21/AwBbE5s3055EPftFh8mymrveTvY=";
+ };
+
+ buildPhase = ''
+ runHook preBuild
+ ./make.sh
+ runHook postBuild
+ '';
+
+ installPhase = ''
+ runHook preInstall
+ install -D obj-magic $out/bin/obj-magic
+ runHook postInstall
+ '';
+
+ meta = {
+ description = "Command line tool for manipulating Wavefront OBJ 3D meshes";
+ homepage = "https://github.com/tapio/obj-magic";
+ license = lib.licenses.gpl3Only;
+ maintainers = with lib.maintainers; [ lorenz ];
+ platforms = lib.platforms.unix;
+ mainProgram = "obj-magic";
+ };
+}
+
diff --git a/pkgs/by-name/of/offat/package.nix b/pkgs/by-name/of/offat/package.nix
index 80e092eab889..07bdc8589ac9 100644
--- a/pkgs/by-name/of/offat/package.nix
+++ b/pkgs/by-name/of/offat/package.nix
@@ -6,14 +6,14 @@
python3.pkgs.buildPythonApplication rec {
pname = "offat";
- version = "0.18.0";
+ version = "0.19.1";
pyproject = true;
src = fetchFromGitHub {
owner = "OWASP";
repo = "OFFAT";
rev = "refs/tags/v${version}";
- hash = "sha256-AROfhVVV9MN+yRGWrzC2y9lfErT4C3Mg8qPz8lSODFM=";
+ hash = "sha256-USSvUtY5THzsWlJtVYxrCquRJWfAoD7b7NHP7pB27sg=";
};
sourceRoot = "${src.name}/src";
diff --git a/pkgs/by-name/op/openvas-scanner/package.nix b/pkgs/by-name/op/openvas-scanner/package.nix
index d3b352eec84e..a554b6403dff 100644
--- a/pkgs/by-name/op/openvas-scanner/package.nix
+++ b/pkgs/by-name/op/openvas-scanner/package.nix
@@ -31,13 +31,13 @@
stdenv.mkDerivation rec {
pname = "openvas-scanner";
- version = "23.5.1";
+ version = "23.6.0";
src = fetchFromGitHub {
owner = "greenbone";
repo = "openvas-scanner";
rev = "refs/tags/v${version}";
- hash = "sha256-jIPSQUdW+v0SV6sINkLujqZPysZSdaqHa5+sxTRdpH4=";
+ hash = "sha256-VIjkrlE39eq8a7Kgj4QZSZ5R9bAnw0oodUc8m/4bSCQ=";
};
nativeBuildInputs = [
diff --git a/pkgs/by-name/pi/picom/package.nix b/pkgs/by-name/pi/picom/package.nix
index 676ac95fb512..8074e38cf501 100644
--- a/pkgs/by-name/pi/picom/package.nix
+++ b/pkgs/by-name/pi/picom/package.nix
@@ -43,6 +43,8 @@ stdenv.mkDerivation (finalAttrs: {
fetchSubmodules = true;
};
+ strictDeps = true;
+
nativeBuildInputs = [
asciidoc
docbook_xml_dtd_45
@@ -51,7 +53,6 @@ stdenv.mkDerivation (finalAttrs: {
meson
ninja
pkg-config
- uthash
];
buildInputs = [
@@ -69,6 +70,7 @@ stdenv.mkDerivation (finalAttrs: {
libxslt
pcre2
pixman
+ uthash
xcbutil
xcbutilimage
xcbutilrenderutil
diff --git a/pkgs/by-name/pi/pixi/Cargo.lock b/pkgs/by-name/pi/pixi/Cargo.lock
index 50e299718e76..caf8c8ea08df 100644
--- a/pkgs/by-name/pi/pixi/Cargo.lock
+++ b/pkgs/by-name/pi/pixi/Cargo.lock
@@ -83,6 +83,12 @@ dependencies = [
"alloc-no-stdlib",
]
+[[package]]
+name = "allocator-api2"
+version = "0.2.18"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5c6cb57a04249c6480766f7f7cef5467412af1490f8d1e243141daddada3264f"
+
[[package]]
name = "android-tzdata"
version = "0.1.1"
@@ -153,6 +159,15 @@ version = "1.0.86"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da"
+[[package]]
+name = "arbitrary"
+version = "1.3.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7d5a26814d8dcb93b0e5a0ff3c6d80a8843bafb21b39e8e18a6f05471870e110"
+dependencies = [
+ "derive_arbitrary",
+]
+
[[package]]
name = "archspec"
version = "0.1.3"
@@ -450,6 +465,14 @@ dependencies = [
"backtrace",
]
+[[package]]
+name = "barrier_cell"
+version = "0.1.0"
+dependencies = [
+ "thiserror",
+ "tokio",
+]
+
[[package]]
name = "base64"
version = "0.13.1"
@@ -676,7 +699,7 @@ dependencies = [
[[package]]
name = "cache-key"
version = "0.0.1"
-source = "git+https://github.com/astral-sh/uv?rev=65b17f6e81125064ea04c5cfef685516ab660cf5#65b17f6e81125064ea04c5cfef685516ab660cf5"
+source = "git+https://github.com/astral-sh/uv?tag=0.2.18#13b0beb56fdc607c1f38d820dbf8c95c8fd0ce84"
dependencies = [
"hex",
"seahash",
@@ -780,9 +803,9 @@ dependencies = [
[[package]]
name = "clap"
-version = "4.5.4"
+version = "4.5.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "90bc066a67923782aa8515dbaea16946c5bcc5addbd668bb80af688e53e548a0"
+checksum = "64acc1846d54c1fe936a78dc189c34e28d3f5afc348403f28ecf53660b9b8462"
dependencies = [
"clap_builder",
"clap_derive",
@@ -800,9 +823,9 @@ dependencies = [
[[package]]
name = "clap_builder"
-version = "4.5.2"
+version = "4.5.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ae129e2e766ae0ec03484e609954119f123cc1fe650337e155d03b022f24f7b4"
+checksum = "6fb8393d67ba2e7bfaf28a23458e4e2b543cc73a99595511eb207fdb8aede942"
dependencies = [
"anstream",
"anstyle",
@@ -821,10 +844,20 @@ dependencies = [
]
[[package]]
-name = "clap_derive"
-version = "4.5.4"
+name = "clap_complete_nushell"
+version = "4.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "528131438037fd55894f62d6e9f068b8f45ac57ffa77517819645d10aed04f64"
+checksum = "1accf1b463dee0d3ab2be72591dccdab8bef314958340447c882c4c72acfe2a3"
+dependencies = [
+ "clap",
+ "clap_complete",
+]
+
+[[package]]
+name = "clap_derive"
+version = "4.5.8"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2bac35c6dafb060fd4d275d9a4ffae97917c13a6327903a8be2153cd964f7085"
dependencies = [
"heck 0.5.0",
"proc-macro2",
@@ -1029,6 +1062,20 @@ dependencies = [
"parking_lot_core 0.9.10",
]
+[[package]]
+name = "dashmap"
+version = "6.0.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "804c8821570c3f8b70230c2ba75ffa5c0f9a4189b9a432b6656c536712acae28"
+dependencies = [
+ "cfg-if",
+ "crossbeam-utils",
+ "hashbrown 0.14.5",
+ "lock_api",
+ "once_cell",
+ "parking_lot_core 0.9.10",
+]
+
[[package]]
name = "data-encoding"
version = "2.6.0"
@@ -1073,6 +1120,17 @@ dependencies = [
"syn 1.0.109",
]
+[[package]]
+name = "derive_arbitrary"
+version = "1.3.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "67e77553c4162a157adbf834ebae5b415acbecbeafc7a74b0e886657506a7611"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.66",
+]
+
[[package]]
name = "dialoguer"
version = "0.11.0"
@@ -1127,10 +1185,21 @@ dependencies = [
"windows-sys 0.48.0",
]
+[[package]]
+name = "displaydoc"
+version = "0.2.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.66",
+]
+
[[package]]
name = "distribution-filename"
version = "0.0.1"
-source = "git+https://github.com/astral-sh/uv?rev=65b17f6e81125064ea04c5cfef685516ab660cf5#65b17f6e81125064ea04c5cfef685516ab660cf5"
+source = "git+https://github.com/astral-sh/uv?tag=0.2.18#13b0beb56fdc607c1f38d820dbf8c95c8fd0ce84"
dependencies = [
"pep440_rs",
"platform-tags",
@@ -1144,13 +1213,12 @@ dependencies = [
[[package]]
name = "distribution-types"
version = "0.0.1"
-source = "git+https://github.com/astral-sh/uv?rev=65b17f6e81125064ea04c5cfef685516ab660cf5#65b17f6e81125064ea04c5cfef685516ab660cf5"
+source = "git+https://github.com/astral-sh/uv?tag=0.2.18#13b0beb56fdc607c1f38d820dbf8c95c8fd0ce84"
dependencies = [
"anyhow",
"cache-key",
"distribution-filename",
"fs-err",
- "indexmap 2.2.6",
"itertools 0.13.0",
"once_cell",
"pep440_rs",
@@ -1360,12 +1428,23 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a"
[[package]]
-name = "file_url"
-version = "0.1.2"
+name = "fd-lock"
+version = "4.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1042c5fdc9f2cf548a139ccd0985fa2460d796f99b08574f72f1f53d179e6591"
+checksum = "7e5768da2206272c81ef0b5e951a41862938a6070da63bcea197899942d3b947"
dependencies = [
- "itertools 0.12.1",
+ "cfg-if",
+ "rustix 0.38.34",
+ "windows-sys 0.52.0",
+]
+
+[[package]]
+name = "file_url"
+version = "0.1.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d0d1df57145d7cda57c95c44a2d64c24f579e2d50b8f4f7a779287293ad3adc0"
+dependencies = [
+ "itertools 0.13.0",
"percent-encoding",
"thiserror",
"typed-path",
@@ -1400,6 +1479,24 @@ dependencies = [
"miniz_oxide",
]
+[[package]]
+name = "float-cmp"
+version = "0.9.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4"
+dependencies = [
+ "num-traits",
+]
+
+[[package]]
+name = "fluent-uri"
+version = "0.1.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "17c704e9dbe1ddd863da1e6ff3567795087b1eb201ce80d8fa81162e1516500d"
+dependencies = [
+ "bitflags 1.3.2",
+]
+
[[package]]
name = "fnv"
version = "1.0.7"
@@ -1634,21 +1731,6 @@ version = "0.28.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253"
-[[package]]
-name = "git2"
-version = "0.18.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "232e6a7bfe35766bf715e55a88b39a700596c0ccfd88cd3680b4cdb40d66ef70"
-dependencies = [
- "bitflags 2.5.0",
- "libc",
- "libgit2-sys",
- "log",
- "openssl-probe",
- "openssl-sys",
- "url",
-]
-
[[package]]
name = "glob"
version = "0.3.1"
@@ -1748,6 +1830,16 @@ dependencies = [
"tracing",
]
+[[package]]
+name = "halfbrown"
+version = "0.2.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8588661a8607108a5ca69cab034063441a0413a0b041c13618a7dd348021ef6f"
+dependencies = [
+ "hashbrown 0.14.5",
+ "serde",
+]
+
[[package]]
name = "hashbrown"
version = "0.12.3"
@@ -1762,6 +1854,10 @@ name = "hashbrown"
version = "0.14.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
+dependencies = [
+ "ahash 0.8.11",
+ "allocator-api2",
+]
[[package]]
name = "heck"
@@ -2215,7 +2311,7 @@ dependencies = [
[[package]]
name = "install-wheel-rs"
version = "0.0.1"
-source = "git+https://github.com/astral-sh/uv?rev=65b17f6e81125064ea04c5cfef685516ab660cf5#65b17f6e81125064ea04c5cfef685516ab660cf5"
+source = "git+https://github.com/astral-sh/uv?tag=0.2.18#13b0beb56fdc607c1f38d820dbf8c95c8fd0ce84"
dependencies = [
"configparser",
"csv",
@@ -2231,7 +2327,7 @@ dependencies = [
"pypi-types",
"reflink-copy",
"regex",
- "rustc-hash",
+ "rustc-hash 2.0.0",
"serde",
"serde_json",
"sha2",
@@ -2241,7 +2337,7 @@ dependencies = [
"uv-fs",
"uv-normalize",
"walkdir",
- "zip",
+ "zip 0.6.6",
]
[[package]]
@@ -2338,15 +2434,27 @@ dependencies = [
[[package]]
name = "json-patch"
-version = "1.4.0"
+version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ec9ad60d674508f3ca8f380a928cfe7b096bc729c4e2dbfe3852bc45da3ab30b"
+checksum = "5b1fb8864823fad91877e6caea0baca82e49e8db50f8e5c9f9a453e27d3330fc"
dependencies = [
+ "jsonptr",
"serde",
"serde_json",
"thiserror",
]
+[[package]]
+name = "jsonptr"
+version = "0.4.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1c6e529149475ca0b2820835d3dce8fcc41c6b943ca608d32f35b449255e4627"
+dependencies = [
+ "fluent-uri",
+ "serde",
+ "serde_json",
+]
+
[[package]]
name = "jsonwebtoken"
version = "9.3.0"
@@ -2415,26 +2523,76 @@ version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
+[[package]]
+name = "lexical-core"
+version = "0.8.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2cde5de06e8d4c2faabc400238f9ae1c74d5412d03a7bd067645ccbc47070e46"
+dependencies = [
+ "lexical-parse-float",
+ "lexical-parse-integer",
+ "lexical-util",
+ "lexical-write-float",
+ "lexical-write-integer",
+]
+
+[[package]]
+name = "lexical-parse-float"
+version = "0.8.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "683b3a5ebd0130b8fb52ba0bdc718cc56815b6a097e28ae5a6997d0ad17dc05f"
+dependencies = [
+ "lexical-parse-integer",
+ "lexical-util",
+ "static_assertions",
+]
+
+[[package]]
+name = "lexical-parse-integer"
+version = "0.8.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6d0994485ed0c312f6d965766754ea177d07f9c00c9b82a5ee62ed5b47945ee9"
+dependencies = [
+ "lexical-util",
+ "static_assertions",
+]
+
+[[package]]
+name = "lexical-util"
+version = "0.8.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5255b9ff16ff898710eb9eb63cb39248ea8a5bb036bea8085b1a767ff6c4e3fc"
+dependencies = [
+ "static_assertions",
+]
+
+[[package]]
+name = "lexical-write-float"
+version = "0.8.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "accabaa1c4581f05a3923d1b4cfd124c329352288b7b9da09e766b0668116862"
+dependencies = [
+ "lexical-util",
+ "lexical-write-integer",
+ "static_assertions",
+]
+
+[[package]]
+name = "lexical-write-integer"
+version = "0.8.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e1b6f3d1f4422866b68192d62f77bc5c700bee84f3069f2469d7bc8c77852446"
+dependencies = [
+ "lexical-util",
+ "static_assertions",
+]
+
[[package]]
name = "libc"
version = "0.2.155"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c"
-[[package]]
-name = "libgit2-sys"
-version = "0.16.2+1.7.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ee4126d8b4ee5c9d9ea891dd875cfdc1e9d0950437179104b183d7d8a74d24e8"
-dependencies = [
- "cc",
- "libc",
- "libssh2-sys",
- "libz-sys",
- "openssl-sys",
- "pkg-config",
-]
-
[[package]]
name = "libloading"
version = "0.8.3"
@@ -2461,32 +2619,6 @@ dependencies = [
"libc",
]
-[[package]]
-name = "libssh2-sys"
-version = "0.3.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2dc8a030b787e2119a731f1951d6a773e2280c660f8ec4b0f5e1505a386e71ee"
-dependencies = [
- "cc",
- "libc",
- "libz-sys",
- "openssl-sys",
- "pkg-config",
- "vcpkg",
-]
-
-[[package]]
-name = "libz-sys"
-version = "1.1.18"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c15da26e5af7e25c90b37a2d75cdbf940cf4a55316de9d84c679c9b8bfabf82e"
-dependencies = [
- "cc",
- "libc",
- "pkg-config",
- "vcpkg",
-]
-
[[package]]
name = "line-wrap"
version = "0.2.0"
@@ -2531,6 +2663,12 @@ dependencies = [
"scopeguard",
]
+[[package]]
+name = "lockfree-object-pool"
+version = "0.1.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9374ef4228402d4b7e403e5838cb880d9ee663314b0a900d5a6aabf0c213552e"
+
[[package]]
name = "log"
version = "0.4.21"
@@ -2912,9 +3050,9 @@ dependencies = [
[[package]]
name = "once-map"
version = "0.0.1"
-source = "git+https://github.com/astral-sh/uv?rev=65b17f6e81125064ea04c5cfef685516ab660cf5#65b17f6e81125064ea04c5cfef685516ab660cf5"
+source = "git+https://github.com/astral-sh/uv?tag=0.2.18#13b0beb56fdc607c1f38d820dbf8c95c8fd0ce84"
dependencies = [
- "dashmap",
+ "dashmap 5.5.3",
"futures",
"tokio",
]
@@ -2963,15 +3101,6 @@ version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
-[[package]]
-name = "openssl-src"
-version = "300.3.0+3.3.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "eba8804a1c5765b18c4b3f907e6897ebabeedebc9830e1a0046c4a4cf44663e1"
-dependencies = [
- "cc",
-]
-
[[package]]
name = "openssl-sys"
version = "0.9.102"
@@ -2980,7 +3109,6 @@ checksum = "c597637d56fbc83893a35eb0dd04b2b8e7a50c91e64e9493e398b5df4fb45fa2"
dependencies = [
"cc",
"libc",
- "openssl-src",
"pkg-config",
"vcpkg",
]
@@ -3151,7 +3279,7 @@ dependencies = [
[[package]]
name = "pep440_rs"
version = "0.6.0"
-source = "git+https://github.com/astral-sh/uv?rev=65b17f6e81125064ea04c5cfef685516ab660cf5#65b17f6e81125064ea04c5cfef685516ab660cf5"
+source = "git+https://github.com/astral-sh/uv?tag=0.2.18#13b0beb56fdc607c1f38d820dbf8c95c8fd0ce84"
dependencies = [
"once_cell",
"rkyv",
@@ -3163,7 +3291,7 @@ dependencies = [
[[package]]
name = "pep508_rs"
version = "0.6.0"
-source = "git+https://github.com/astral-sh/uv?rev=65b17f6e81125064ea04c5cfef685516ab660cf5#65b17f6e81125064ea04c5cfef685516ab660cf5"
+source = "git+https://github.com/astral-sh/uv?tag=0.2.18#13b0beb56fdc607c1f38d820dbf8c95c8fd0ce84"
dependencies = [
"derivative",
"once_cell",
@@ -3282,16 +3410,18 @@ dependencies = [
[[package]]
name = "pixi"
-version = "0.24.2"
+version = "0.26.1"
dependencies = [
"ahash 0.8.11",
"assert_matches",
"async-once-cell",
+ "barrier_cell",
"cfg-if",
"chrono",
"clap",
"clap-verbosity-flag",
"clap_complete",
+ "clap_complete_nushell",
"concat-idents",
"console",
"crossbeam-channel",
@@ -3302,6 +3432,7 @@ dependencies = [
"distribution-filename",
"distribution-types",
"dunce",
+ "fd-lock",
"flate2",
"fs_extra",
"futures",
@@ -3374,13 +3505,13 @@ dependencies = [
"uv-distribution",
"uv-git",
"uv-installer",
- "uv-interpreter",
"uv-normalize",
"uv-resolver",
+ "uv-toolchain",
"uv-types",
"winapi",
"xxhash-rust",
- "zip",
+ "zip 0.6.6",
]
[[package]]
@@ -3402,9 +3533,9 @@ dependencies = [
[[package]]
name = "platform-tags"
version = "0.0.1"
-source = "git+https://github.com/astral-sh/uv?rev=65b17f6e81125064ea04c5cfef685516ab660cf5#65b17f6e81125064ea04c5cfef685516ab660cf5"
+source = "git+https://github.com/astral-sh/uv?tag=0.2.18#13b0beb56fdc607c1f38d820dbf8c95c8fd0ce84"
dependencies = [
- "rustc-hash",
+ "rustc-hash 2.0.0",
"serde",
"thiserror",
]
@@ -3538,12 +3669,12 @@ dependencies = [
[[package]]
name = "pubgrub"
version = "0.2.1"
-source = "git+https://github.com/astral-sh/pubgrub?rev=0e684a874c9fb8f74738cd8875524c80e3d4820b#0e684a874c9fb8f74738cd8875524c80e3d4820b"
+source = "git+https://github.com/astral-sh/pubgrub?rev=b4435e2f3af10dab2336a0345b35dcd622699d06#b4435e2f3af10dab2336a0345b35dcd622699d06"
dependencies = [
"indexmap 2.2.6",
"log",
"priority-queue",
- "rustc-hash",
+ "rustc-hash 1.1.0",
"thiserror",
]
@@ -3565,11 +3696,11 @@ dependencies = [
[[package]]
name = "pypi-types"
version = "0.0.1"
-source = "git+https://github.com/astral-sh/uv?rev=65b17f6e81125064ea04c5cfef685516ab660cf5#65b17f6e81125064ea04c5cfef685516ab660cf5"
+source = "git+https://github.com/astral-sh/uv?tag=0.2.18#13b0beb56fdc607c1f38d820dbf8c95c8fd0ce84"
dependencies = [
"chrono",
- "git2",
"indexmap 2.2.6",
+ "itertools 0.13.0",
"mailparse",
"once_cell",
"pep440_rs",
@@ -3660,24 +3791,21 @@ dependencies = [
[[package]]
name = "rattler"
-version = "0.26.4"
+version = "0.27.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f3d5504e8afc260cceebb79886032ac146c9344c55fbaf9034ca45a0c00b7447"
+checksum = "ba9b88912f9f10739d0e75f455d956129402c444b38a8c87538965d4f7495c1c"
dependencies = [
"anyhow",
- "bytes",
- "chrono",
"clap",
"console",
"digest",
"dirs",
"fs-err",
"futures",
- "fxhash",
"humantime",
"indexmap 2.2.6",
"indicatif",
- "itertools 0.12.1",
+ "itertools 0.13.0",
"memchr",
"memmap2 0.9.4",
"once_cell",
@@ -3697,7 +3825,6 @@ dependencies = [
"tempfile",
"thiserror",
"tokio",
- "tokio-stream",
"tracing",
"url",
"uuid",
@@ -3705,16 +3832,15 @@ dependencies = [
[[package]]
name = "rattler_cache"
-version = "0.1.0"
+version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "bdad5b1a62c97fe6acbad6f1421eed77bf75f736a5af44a18f0e46d6d1cd5c81"
+checksum = "a2b48c3e9525109c28607b33eb47284d93415d443c14c594d868a99fe5612782"
dependencies = [
"anyhow",
- "chrono",
"digest",
"dirs",
"fxhash",
- "itertools 0.12.1",
+ "itertools 0.13.0",
"parking_lot 0.12.3",
"rattler_conda_types",
"rattler_digest",
@@ -3730,16 +3856,16 @@ dependencies = [
[[package]]
name = "rattler_conda_types"
-version = "0.25.2"
+version = "0.26.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "65d6d35c484af9b1a3ce13ace90de388c8a21b1f832bf2ee97b5681a94178326"
+checksum = "31342292e067dee0ce26b8c8827908ed24c340b28986a851c7f8a8440a4dfe48"
dependencies = [
"chrono",
"file_url",
"fxhash",
"glob",
"hex",
- "itertools 0.12.1",
+ "itertools 0.13.0",
"lazy-regex",
"nom",
"purl",
@@ -3750,6 +3876,7 @@ dependencies = [
"serde_json",
"serde_repr",
"serde_with",
+ "simd-json",
"smallvec",
"strum",
"thiserror",
@@ -3760,9 +3887,9 @@ dependencies = [
[[package]]
name = "rattler_digest"
-version = "0.19.4"
+version = "0.19.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9cf69475918dd44152f7df690b13f2909f34cc762ae18a2e2c55824b546de161"
+checksum = "eeb0228f734983274fb6938844123e88aa55158d53ead37e8ae3deb641fe05aa"
dependencies = [
"blake2",
"digest",
@@ -3777,22 +3904,20 @@ dependencies = [
[[package]]
name = "rattler_lock"
-version = "0.22.12"
+version = "0.22.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5bb54f27b97a03b9b2921bd18967947bc5788a8d653fcd6b6bdd18dad192312f"
+checksum = "785ed485e3dab9b6796d4d92adb8808e9b26e21a5ffa04e39530949ca85c68d9"
dependencies = [
"chrono",
"file_url",
"fxhash",
"indexmap 2.2.6",
- "itertools 0.12.1",
+ "itertools 0.13.0",
"pep440_rs",
"pep508_rs",
- "purl",
"rattler_conda_types",
"rattler_digest",
"serde",
- "serde_json",
"serde_repr",
"serde_with",
"serde_yaml",
@@ -3802,9 +3927,9 @@ dependencies = [
[[package]]
name = "rattler_macros"
-version = "0.19.3"
+version = "0.19.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "10cef20e8356ea6840294e5754c6a8663b0eb1b97f29d517642f0f99215a2483"
+checksum = "b4961d74ca0a15a62c83e439dfd9f440f35f8c31dfb71afe990b2d8fbf916f7a"
dependencies = [
"quote",
"syn 2.0.66",
@@ -3812,28 +3937,25 @@ dependencies = [
[[package]]
name = "rattler_networking"
-version = "0.20.8"
+version = "0.20.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c582ad6d82b397d1e1522910b34dc052bbed4dedc0eed7fb640024de0dc6f5f6"
+checksum = "0fec041e559f2b4cb21556816f10b3da174932f49280f335b21563d06d2a4737"
dependencies = [
"anyhow",
"async-trait",
"base64 0.22.1",
- "bytes",
"chrono",
"dirs",
"fslock",
- "futures",
"getrandom",
"google-cloud-auth",
"http 1.1.0",
- "itertools 0.12.1",
+ "itertools 0.13.0",
"keyring",
"netrc-rs",
- "pin-project-lite",
"reqwest 0.12.4",
"reqwest-middleware",
- "retry-policies",
+ "retry-policies 0.4.0",
"serde",
"serde_json",
"thiserror",
@@ -3843,9 +3965,9 @@ dependencies = [
[[package]]
name = "rattler_package_streaming"
-version = "0.21.3"
+version = "0.21.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "390c453b80d7904362e121c89f29aee796fb4d38cc7b24fe7ba9e583ef77a27b"
+checksum = "1f6953df9956ee53d1569787742d26db5559f64bbaa06363260acc484bf00751"
dependencies = [
"bzip2",
"chrono",
@@ -3863,15 +3985,15 @@ dependencies = [
"tokio",
"tokio-util",
"url",
- "zip",
+ "zip 2.1.3",
"zstd",
]
[[package]]
name = "rattler_repodata_gateway"
-version = "0.20.5"
+version = "0.21.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "810de4b4ef0c75087b77b6425caf869ee435ee392950f71800ec21ac512e576b"
+checksum = "d4ff7c7c1093f9268a98788e5dc54f278266c8c1422aaceb5fa92abbd5fb568d"
dependencies = [
"anyhow",
"async-compression",
@@ -3880,7 +4002,7 @@ dependencies = [
"bytes",
"cache_control",
"chrono",
- "dashmap",
+ "dashmap 6.0.1",
"dirs",
"file_url",
"futures",
@@ -3889,15 +4011,15 @@ dependencies = [
"http-cache-semantics",
"humansize",
"humantime",
- "itertools 0.12.1",
+ "itertools 0.13.0",
"json-patch",
"libc",
"md-5",
"memmap2 0.9.4",
"ouroboros",
"parking_lot 0.12.3",
- "percent-encoding",
"pin-project-lite",
+ "rattler_cache",
"rattler_conda_types",
"rattler_digest",
"rattler_networking",
@@ -3921,13 +4043,13 @@ dependencies = [
[[package]]
name = "rattler_shell"
-version = "0.20.9"
+version = "0.21.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e17c8a64079dc3a7b8b0070e0d7c4bee4008bf16d799b8b621a9aa88968650c6"
+checksum = "ee99375f452b121ed0612da5ff8a4f56cc3706e0548dc36315d109b5d31d4a37"
dependencies = [
"enum_dispatch",
"indexmap 2.2.6",
- "itertools 0.12.1",
+ "itertools 0.13.0",
"rattler_conda_types",
"serde_json",
"shlex",
@@ -3939,16 +4061,17 @@ dependencies = [
[[package]]
name = "rattler_solve"
-version = "0.24.2"
+version = "0.25.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d62f673fe9f9198b4d3235da314d727eff59515cc4db9b0e2452e9bbe959433d"
+checksum = "46253b2995c30aa7ca38ae495a3cec45eb2d164697661f69687ae76dadd47cdd"
dependencies = [
"chrono",
"futures",
- "itertools 0.12.1",
+ "itertools 0.13.0",
"rattler_conda_types",
"rattler_digest",
"resolvo",
+ "serde",
"tempfile",
"thiserror",
"tracing",
@@ -3957,9 +4080,9 @@ dependencies = [
[[package]]
name = "rattler_virtual_packages"
-version = "0.19.15"
+version = "0.19.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2ae1f4c940a73181b636a2957e665f1c7caeed443ef468ca31d380417f4b52bd"
+checksum = "81e0d3f960081736895ec2ab3819dc4336e9160973ed47ce4a5ac1a3759422de"
dependencies = [
"archspec",
"libloading",
@@ -4040,6 +4163,26 @@ dependencies = [
"thiserror",
]
+[[package]]
+name = "ref-cast"
+version = "1.0.23"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ccf0a6f84d5f1d581da8b41b47ec8600871962f2a528115b542b362d4b744931"
+dependencies = [
+ "ref-cast-impl",
+]
+
+[[package]]
+name = "ref-cast-impl"
+version = "1.0.23"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "bcc303e793d3734489387d205e9b186fac9c6cfacedd98cbb2e8a5943595f3e6"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.66",
+]
+
[[package]]
name = "reflink-copy"
version = "0.1.17"
@@ -4113,13 +4256,14 @@ dependencies = [
[[package]]
name = "requirements-txt"
version = "0.0.1"
-source = "git+https://github.com/astral-sh/uv?rev=65b17f6e81125064ea04c5cfef685516ab660cf5#65b17f6e81125064ea04c5cfef685516ab660cf5"
+source = "git+https://github.com/astral-sh/uv?tag=0.2.18#13b0beb56fdc607c1f38d820dbf8c95c8fd0ce84"
dependencies = [
"distribution-types",
"fs-err",
"pep508_rs",
"pypi-types",
"regex",
+ "thiserror",
"tracing",
"unscanny",
"url",
@@ -4256,7 +4400,7 @@ dependencies = [
"parking_lot 0.11.2",
"reqwest 0.12.4",
"reqwest-middleware",
- "retry-policies",
+ "retry-policies 0.3.0",
"tokio",
"tracing",
"wasm-timer",
@@ -4264,9 +4408,9 @@ dependencies = [
[[package]]
name = "resolvo"
-version = "0.5.0"
+version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e7b73dc355efbb88c372550b92bf17d36bf555ecf319a4783a5b8b7c34488bc5"
+checksum = "09f13bb82d6362074f2b2d858bb316dfb2a9940c7e33a9ccd0168ba4f6a247b2"
dependencies = [
"ahash 0.8.11",
"bitvec",
@@ -4289,6 +4433,15 @@ dependencies = [
"rand",
]
+[[package]]
+name = "retry-policies"
+version = "0.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5875471e6cab2871bc150ecb8c727db5113c9338cc3354dc5ee3425b6aa40a1c"
+dependencies = [
+ "rand",
+]
+
[[package]]
name = "ring"
version = "0.17.8"
@@ -4405,6 +4558,12 @@ version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
+[[package]]
+name = "rustc-hash"
+version = "2.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "583034fd73374156e66797ed8e5b0d5690409c9226b22d87cb7f19821c05d152"
+
[[package]]
name = "rustc_version"
version = "0.4.0"
@@ -4883,6 +5042,28 @@ dependencies = [
"libc",
]
+[[package]]
+name = "simd-adler32"
+version = "0.3.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
+
+[[package]]
+name = "simd-json"
+version = "0.13.10"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "570c430b3d902ea083097e853263ae782dfe40857d93db019a12356c8e8143fa"
+dependencies = [
+ "getrandom",
+ "halfbrown",
+ "lexical-core",
+ "ref-cast",
+ "serde",
+ "serde_json",
+ "simdutf8",
+ "value-trait",
+]
+
[[package]]
name = "simdutf8"
version = "0.1.4"
@@ -5029,20 +5210,20 @@ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
[[package]]
name = "strum"
-version = "0.26.2"
+version = "0.26.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5d8cec3501a5194c432b2b7976db6b7d10ec95c253208b45f83f7136aa985e29"
+checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06"
dependencies = [
"strum_macros",
]
[[package]]
name = "strum_macros"
-version = "0.26.2"
+version = "0.26.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c6cf59daf282c0a494ba14fd21610a0325f9f90ec9d1231dea26bcb1d696c946"
+checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
dependencies = [
- "heck 0.4.1",
+ "heck 0.5.0",
"proc-macro2",
"quote",
"rustversion",
@@ -5196,6 +5377,12 @@ dependencies = [
"xattr",
]
+[[package]]
+name = "target-lexicon"
+version = "0.12.15"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4873307b7c257eddcb50c9bedf158eb669578359fb28428bef438fec8e6ba7c2"
+
[[package]]
name = "tempfile"
version = "3.10.1"
@@ -5313,9 +5500,9 @@ checksum = "b130bd8a58c163224b44e217b4239ca7b927d82bf6cc2fea1fc561d15056e3f7"
[[package]]
name = "tokio"
-version = "1.37.0"
+version = "1.38.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1adbebffeca75fcfd058afa480fb6c0b81e165a0323f9c9d39c9697e37c46787"
+checksum = "ba4f4a02a7a80d6f274636f0aa95c7e383b912d41fe721a31f29e29698585a4a"
dependencies = [
"backtrace",
"bytes",
@@ -5332,9 +5519,9 @@ dependencies = [
[[package]]
name = "tokio-macros"
-version = "2.2.0"
+version = "2.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b"
+checksum = "5f5ae998a069d4b5aba8ee9dad856af7d520c3699e6159b185c2acd48155d39a"
dependencies = [
"proc-macro2",
"quote",
@@ -5554,9 +5741,9 @@ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
[[package]]
name = "typed-path"
-version = "0.8.0"
+version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6069e2cc1d241fd4ff5fa067e8882996fcfce20986d078696e05abccbcf27b43"
+checksum = "e8a3023f4683cd1a846dbd2666e8c34f54338ee5cebae578cda981a87cecd7aa"
[[package]]
name = "typeid"
@@ -5684,7 +5871,7 @@ dependencies = [
[[package]]
name = "uv-auth"
version = "0.0.1"
-source = "git+https://github.com/astral-sh/uv?rev=65b17f6e81125064ea04c5cfef685516ab660cf5#65b17f6e81125064ea04c5cfef685516ab660cf5"
+source = "git+https://github.com/astral-sh/uv?tag=0.2.18#13b0beb56fdc607c1f38d820dbf8c95c8fd0ce84"
dependencies = [
"anyhow",
"async-trait",
@@ -5705,7 +5892,7 @@ dependencies = [
[[package]]
name = "uv-build"
version = "0.0.1"
-source = "git+https://github.com/astral-sh/uv?rev=65b17f6e81125064ea04c5cfef685516ab660cf5#65b17f6e81125064ea04c5cfef685516ab660cf5"
+source = "git+https://github.com/astral-sh/uv?tag=0.2.18#13b0beb56fdc607c1f38d820dbf8c95c8fd0ce84"
dependencies = [
"anyhow",
"distribution-types",
@@ -5717,7 +5904,7 @@ dependencies = [
"pep508_rs",
"pypi-types",
"regex",
- "rustc-hash",
+ "rustc-hash 2.0.0",
"serde",
"serde_json",
"tempfile",
@@ -5727,7 +5914,7 @@ dependencies = [
"tracing",
"uv-configuration",
"uv-fs",
- "uv-interpreter",
+ "uv-toolchain",
"uv-types",
"uv-virtualenv",
]
@@ -5735,7 +5922,7 @@ dependencies = [
[[package]]
name = "uv-cache"
version = "0.0.1"
-source = "git+https://github.com/astral-sh/uv?rev=65b17f6e81125064ea04c5cfef685516ab660cf5#65b17f6e81125064ea04c5cfef685516ab660cf5"
+source = "git+https://github.com/astral-sh/uv?tag=0.2.18#13b0beb56fdc607c1f38d820dbf8c95c8fd0ce84"
dependencies = [
"cache-key",
"directories",
@@ -5744,7 +5931,7 @@ dependencies = [
"nanoid",
"pypi-types",
"rmp-serde",
- "rustc-hash",
+ "rustc-hash 2.0.0",
"serde",
"tempfile",
"tracing",
@@ -5757,7 +5944,7 @@ dependencies = [
[[package]]
name = "uv-client"
version = "0.0.1"
-source = "git+https://github.com/astral-sh/uv?rev=65b17f6e81125064ea04c5cfef685516ab660cf5#65b17f6e81125064ea04c5cfef685516ab660cf5"
+source = "git+https://github.com/astral-sh/uv?tag=0.2.18#13b0beb56fdc607c1f38d820dbf8c95c8fd0ce84"
dependencies = [
"anyhow",
"async-trait",
@@ -5772,6 +5959,7 @@ dependencies = [
"html-escape",
"http 1.1.0",
"install-wheel-rs",
+ "itertools 0.13.0",
"pep440_rs",
"pep508_rs",
"platform-tags",
@@ -5784,7 +5972,6 @@ dependencies = [
"serde",
"serde_json",
"sys-info",
- "tempfile",
"thiserror",
"tl",
"tokio",
@@ -5804,13 +5991,13 @@ dependencies = [
[[package]]
name = "uv-configuration"
version = "0.0.1"
-source = "git+https://github.com/astral-sh/uv?rev=65b17f6e81125064ea04c5cfef685516ab660cf5#65b17f6e81125064ea04c5cfef685516ab660cf5"
+source = "git+https://github.com/astral-sh/uv?tag=0.2.18#13b0beb56fdc607c1f38d820dbf8c95c8fd0ce84"
dependencies = [
- "distribution-types",
"either",
"pep508_rs",
"platform-tags",
- "rustc-hash",
+ "pypi-types",
+ "rustc-hash 2.0.0",
"serde",
"serde_json",
"tracing",
@@ -5821,40 +6008,44 @@ dependencies = [
[[package]]
name = "uv-dispatch"
version = "0.0.1"
-source = "git+https://github.com/astral-sh/uv?rev=65b17f6e81125064ea04c5cfef685516ab660cf5#65b17f6e81125064ea04c5cfef685516ab660cf5"
+source = "git+https://github.com/astral-sh/uv?tag=0.2.18#13b0beb56fdc607c1f38d820dbf8c95c8fd0ce84"
dependencies = [
"anyhow",
"distribution-types",
"futures",
"install-wheel-rs",
"itertools 0.13.0",
- "rustc-hash",
+ "pypi-types",
+ "rustc-hash 2.0.0",
"tracing",
"uv-build",
"uv-cache",
"uv-client",
"uv-configuration",
"uv-distribution",
+ "uv-git",
"uv-installer",
- "uv-interpreter",
"uv-resolver",
+ "uv-toolchain",
"uv-types",
]
[[package]]
name = "uv-distribution"
version = "0.0.1"
-source = "git+https://github.com/astral-sh/uv?rev=65b17f6e81125064ea04c5cfef685516ab660cf5#65b17f6e81125064ea04c5cfef685516ab660cf5"
+source = "git+https://github.com/astral-sh/uv?tag=0.2.18#13b0beb56fdc607c1f38d820dbf8c95c8fd0ce84"
dependencies = [
"anyhow",
- "cache-key",
"distribution-filename",
"distribution-types",
+ "either",
"fs-err",
"futures",
+ "glob",
"install-wheel-rs",
"nanoid",
"once_cell",
+ "path-absolutize",
"pep440_rs",
"pep508_rs",
"platform-tags",
@@ -5862,12 +6053,14 @@ dependencies = [
"reqwest 0.12.4",
"reqwest-middleware",
"rmp-serde",
- "rustc-hash",
+ "rustc-hash 2.0.0",
"serde",
"tempfile",
"thiserror",
"tokio",
"tokio-util",
+ "toml",
+ "toml_edit 0.22.13",
"tracing",
"url",
"uv-cache",
@@ -5878,13 +6071,14 @@ dependencies = [
"uv-git",
"uv-normalize",
"uv-types",
- "zip",
+ "uv-warnings",
+ "zip 0.6.6",
]
[[package]]
name = "uv-extract"
version = "0.0.1"
-source = "git+https://github.com/astral-sh/uv?rev=65b17f6e81125064ea04c5cfef685516ab660cf5#65b17f6e81125064ea04c5cfef685516ab660cf5"
+source = "git+https://github.com/astral-sh/uv?tag=0.2.18#13b0beb56fdc607c1f38d820dbf8c95c8fd0ce84"
dependencies = [
"async-compression",
"async_zip",
@@ -5893,20 +6087,20 @@ dependencies = [
"md-5",
"pypi-types",
"rayon",
- "rustc-hash",
+ "rustc-hash 2.0.0",
"sha2",
"thiserror",
"tokio",
"tokio-tar",
"tokio-util",
"tracing",
- "zip",
+ "zip 0.6.6",
]
[[package]]
name = "uv-fs"
version = "0.0.1"
-source = "git+https://github.com/astral-sh/uv?rev=65b17f6e81125064ea04c5cfef685516ab660cf5#65b17f6e81125064ea04c5cfef685516ab660cf5"
+source = "git+https://github.com/astral-sh/uv?tag=0.2.18#13b0beb56fdc607c1f38d820dbf8c95c8fd0ce84"
dependencies = [
"backoff",
"cachedir",
@@ -5928,20 +6122,16 @@ dependencies = [
[[package]]
name = "uv-git"
version = "0.0.1"
-source = "git+https://github.com/astral-sh/uv?rev=65b17f6e81125064ea04c5cfef685516ab660cf5#65b17f6e81125064ea04c5cfef685516ab660cf5"
+source = "git+https://github.com/astral-sh/uv?tag=0.2.18#13b0beb56fdc607c1f38d820dbf8c95c8fd0ce84"
dependencies = [
"anyhow",
- "base64 0.22.1",
"cache-key",
"cargo-util",
+ "dashmap 5.5.3",
"fs-err",
- "git2",
- "glob",
- "hmac",
- "home",
- "rand",
"reqwest 0.12.4",
- "sha1",
+ "reqwest-middleware",
+ "thiserror",
"tokio",
"tracing",
"url",
@@ -5951,7 +6141,7 @@ dependencies = [
[[package]]
name = "uv-installer"
version = "0.0.1"
-source = "git+https://github.com/astral-sh/uv?rev=65b17f6e81125064ea04c5cfef685516ab660cf5#65b17f6e81125064ea04c5cfef685516ab660cf5"
+source = "git+https://github.com/astral-sh/uv?tag=0.2.18#13b0beb56fdc607c1f38d820dbf8c95c8fd0ce84"
dependencies = [
"anyhow",
"async-channel",
@@ -5966,8 +6156,8 @@ dependencies = [
"platform-tags",
"pypi-types",
"rayon",
- "requirements-txt",
- "rustc-hash",
+ "rustc-hash 2.0.0",
+ "same-file",
"serde",
"tempfile",
"thiserror",
@@ -5981,17 +6171,84 @@ dependencies = [
"uv-extract",
"uv-fs",
"uv-git",
- "uv-interpreter",
"uv-normalize",
+ "uv-toolchain",
"uv-types",
"uv-warnings",
"walkdir",
]
[[package]]
-name = "uv-interpreter"
+name = "uv-normalize"
version = "0.0.1"
-source = "git+https://github.com/astral-sh/uv?rev=65b17f6e81125064ea04c5cfef685516ab660cf5#65b17f6e81125064ea04c5cfef685516ab660cf5"
+source = "git+https://github.com/astral-sh/uv?tag=0.2.18#13b0beb56fdc607c1f38d820dbf8c95c8fd0ce84"
+dependencies = [
+ "rkyv",
+ "serde",
+]
+
+[[package]]
+name = "uv-resolver"
+version = "0.0.1"
+source = "git+https://github.com/astral-sh/uv?tag=0.2.18#13b0beb56fdc607c1f38d820dbf8c95c8fd0ce84"
+dependencies = [
+ "anyhow",
+ "cache-key",
+ "chrono",
+ "dashmap 5.5.3",
+ "derivative",
+ "distribution-filename",
+ "distribution-types",
+ "either",
+ "futures",
+ "indexmap 2.2.6",
+ "install-wheel-rs",
+ "itertools 0.13.0",
+ "once-map",
+ "owo-colors",
+ "path-slash",
+ "pep440_rs",
+ "pep508_rs",
+ "petgraph",
+ "platform-tags",
+ "pubgrub",
+ "pypi-types",
+ "requirements-txt",
+ "rkyv",
+ "rustc-hash 2.0.0",
+ "same-file",
+ "serde",
+ "textwrap",
+ "thiserror",
+ "tokio",
+ "tokio-stream",
+ "toml_edit 0.22.13",
+ "tracing",
+ "url",
+ "uv-client",
+ "uv-configuration",
+ "uv-distribution",
+ "uv-git",
+ "uv-normalize",
+ "uv-toolchain",
+ "uv-types",
+ "uv-warnings",
+]
+
+[[package]]
+name = "uv-state"
+version = "0.0.1"
+source = "git+https://github.com/astral-sh/uv?tag=0.2.18#13b0beb56fdc607c1f38d820dbf8c95c8fd0ce84"
+dependencies = [
+ "directories",
+ "fs-err",
+ "tempfile",
+]
+
+[[package]]
+name = "uv-toolchain"
+version = "0.0.1"
+source = "git+https://github.com/astral-sh/uv?tag=0.2.18#13b0beb56fdc607c1f38d820dbf8c95c8fd0ce84"
dependencies = [
"anyhow",
"cache-key",
@@ -6012,6 +6269,7 @@ dependencies = [
"same-file",
"serde",
"serde_json",
+ "target-lexicon",
"tempfile",
"thiserror",
"tokio-util",
@@ -6028,77 +6286,10 @@ dependencies = [
"winapi",
]
-[[package]]
-name = "uv-normalize"
-version = "0.0.1"
-source = "git+https://github.com/astral-sh/uv?rev=65b17f6e81125064ea04c5cfef685516ab660cf5#65b17f6e81125064ea04c5cfef685516ab660cf5"
-dependencies = [
- "rkyv",
- "serde",
-]
-
-[[package]]
-name = "uv-resolver"
-version = "0.0.1"
-source = "git+https://github.com/astral-sh/uv?rev=65b17f6e81125064ea04c5cfef685516ab660cf5#65b17f6e81125064ea04c5cfef685516ab660cf5"
-dependencies = [
- "anstream",
- "anyhow",
- "cache-key",
- "chrono",
- "dashmap",
- "derivative",
- "distribution-filename",
- "distribution-types",
- "either",
- "futures",
- "indexmap 2.2.6",
- "install-wheel-rs",
- "itertools 0.13.0",
- "once-map",
- "once_cell",
- "owo-colors",
- "pep440_rs",
- "pep508_rs",
- "petgraph",
- "platform-tags",
- "pubgrub",
- "pypi-types",
- "requirements-txt",
- "rkyv",
- "rustc-hash",
- "serde",
- "textwrap",
- "thiserror",
- "tokio",
- "tokio-stream",
- "tracing",
- "url",
- "uv-cache",
- "uv-client",
- "uv-configuration",
- "uv-distribution",
- "uv-git",
- "uv-interpreter",
- "uv-normalize",
- "uv-types",
- "uv-warnings",
-]
-
-[[package]]
-name = "uv-state"
-version = "0.0.1"
-source = "git+https://github.com/astral-sh/uv?rev=65b17f6e81125064ea04c5cfef685516ab660cf5#65b17f6e81125064ea04c5cfef685516ab660cf5"
-dependencies = [
- "directories",
- "fs-err",
- "tempfile",
-]
-
[[package]]
name = "uv-types"
version = "0.0.1"
-source = "git+https://github.com/astral-sh/uv?rev=65b17f6e81125064ea04c5cfef685516ab660cf5#65b17f6e81125064ea04c5cfef685516ab660cf5"
+source = "git+https://github.com/astral-sh/uv?tag=0.2.18#13b0beb56fdc607c1f38d820dbf8c95c8fd0ce84"
dependencies = [
"anyhow",
"distribution-types",
@@ -6106,24 +6297,25 @@ dependencies = [
"pep440_rs",
"pep508_rs",
"pypi-types",
- "rustc-hash",
+ "rustc-hash 2.0.0",
"thiserror",
"url",
"uv-cache",
"uv-configuration",
- "uv-interpreter",
+ "uv-git",
"uv-normalize",
+ "uv-toolchain",
]
[[package]]
name = "uv-version"
-version = "0.2.4"
-source = "git+https://github.com/astral-sh/uv?rev=65b17f6e81125064ea04c5cfef685516ab660cf5#65b17f6e81125064ea04c5cfef685516ab660cf5"
+version = "0.2.18"
+source = "git+https://github.com/astral-sh/uv?tag=0.2.18#13b0beb56fdc607c1f38d820dbf8c95c8fd0ce84"
[[package]]
name = "uv-virtualenv"
version = "0.0.4"
-source = "git+https://github.com/astral-sh/uv?rev=65b17f6e81125064ea04c5cfef685516ab660cf5#65b17f6e81125064ea04c5cfef685516ab660cf5"
+source = "git+https://github.com/astral-sh/uv?tag=0.2.18#13b0beb56fdc607c1f38d820dbf8c95c8fd0ce84"
dependencies = [
"fs-err",
"itertools 0.13.0",
@@ -6133,19 +6325,19 @@ dependencies = [
"thiserror",
"tracing",
"uv-fs",
- "uv-interpreter",
+ "uv-toolchain",
"uv-version",
]
[[package]]
name = "uv-warnings"
version = "0.0.1"
-source = "git+https://github.com/astral-sh/uv?rev=65b17f6e81125064ea04c5cfef685516ab660cf5#65b17f6e81125064ea04c5cfef685516ab660cf5"
+source = "git+https://github.com/astral-sh/uv?tag=0.2.18#13b0beb56fdc607c1f38d820dbf8c95c8fd0ce84"
dependencies = [
"anstream",
"once_cell",
"owo-colors",
- "rustc-hash",
+ "rustc-hash 2.0.0",
]
[[package]]
@@ -6154,6 +6346,18 @@ version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
+[[package]]
+name = "value-trait"
+version = "0.8.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "dad8db98c1e677797df21ba03fca7d3bf9bec3ca38db930954e4fe6e1ea27eb4"
+dependencies = [
+ "float-cmp",
+ "halfbrown",
+ "itoa",
+ "ryu",
+]
+
[[package]]
name = "vcpkg"
version = "0.2.15"
@@ -6761,6 +6965,38 @@ dependencies = [
"time",
]
+[[package]]
+name = "zip"
+version = "2.1.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "775a2b471036342aa69bc5a602bc889cb0a06cda00477d0c69566757d5553d39"
+dependencies = [
+ "arbitrary",
+ "crc32fast",
+ "crossbeam-utils",
+ "displaydoc",
+ "flate2",
+ "indexmap 2.2.6",
+ "memchr",
+ "thiserror",
+ "time",
+ "zopfli",
+]
+
+[[package]]
+name = "zopfli"
+version = "0.8.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e5019f391bac5cf252e93bbcc53d039ffd62c7bfb7c150414d61369afe57e946"
+dependencies = [
+ "bumpalo",
+ "crc32fast",
+ "lockfree-object-pool",
+ "log",
+ "once_cell",
+ "simd-adler32",
+]
+
[[package]]
name = "zstd"
version = "0.13.1"
diff --git a/pkgs/by-name/pi/pixi/package.nix b/pkgs/by-name/pi/pixi/package.nix
index 19206ad0146b..e6b4c5578392 100644
--- a/pkgs/by-name/pi/pixi/package.nix
+++ b/pkgs/by-name/pi/pixi/package.nix
@@ -13,21 +13,21 @@
rustPlatform.buildRustPackage rec {
pname = "pixi";
- version = "0.24.2";
+ version = "0.26.1";
src = fetchFromGitHub {
owner = "prefix-dev";
repo = "pixi";
rev = "v${version}";
- hash = "sha256-Qlr4CcrCq29ig3FPFWCR5oOtFrbREm/7zyGXUB3XL98=";
+ hash = "sha256-N8nNB+FOD8n+W7jFYhq9JoEnLOq6xLMLBC77DiK3RLU=";
};
cargoLock = {
lockFile = ./Cargo.lock;
outputHashes = {
"async_zip-0.0.17" = "sha256-Q5fMDJrQtob54CTII3+SXHeozy5S5s3iLOzntevdGOs=";
- "cache-key-0.0.1" = "sha256-lJJqjxyAzGQKZi6RtzZ7A9pCAOyIJnstHoS8jlUWeGA=";
- "pubgrub-0.2.1" = "sha256-mAPyo2R996ymzCt6TAX2G7xU1C3vDGjYF0z7R8lI1yg=";
+ "cache-key-0.0.1" = "sha256-tg3zRakZsnf7xBjs5tSlkmhkhHp5HGs6dwrTmdZBTl4=";
+ "pubgrub-0.2.1" = "sha256-6tr+HATYSn1A1uVJwmz40S4yLDOJlX8vEokOOtdFG0M=";
};
};
diff --git a/pkgs/by-name/pl/plasma-panel-colorizer/package.nix b/pkgs/by-name/pl/plasma-panel-colorizer/package.nix
new file mode 100644
index 000000000000..2ee82abcf42a
--- /dev/null
+++ b/pkgs/by-name/pl/plasma-panel-colorizer/package.nix
@@ -0,0 +1,36 @@
+{
+ lib,
+ stdenv,
+ fetchFromGitHub,
+ cmake,
+ kdePackages,
+}:
+
+stdenv.mkDerivation (finalAttrs: {
+ pname = "plasma-panel-colorizer";
+ version = "0.5.2";
+
+ src = fetchFromGitHub {
+ owner = "luisbocanegra";
+ repo = "plasma-panel-colorizer";
+ rev = "refs/tags/v${finalAttrs.version}";
+ hash = "sha256-+JweNB+zjbXh6Htyvu2vgogAr5Fl5wDPCpm6GV18NJ0=";
+ };
+
+ nativeBuildInputs = [
+ cmake
+ kdePackages.extra-cmake-modules
+ kdePackages.plasma-desktop
+ ];
+
+ dontWrapQtApps = true;
+
+ meta = {
+ description = "Fully-featured widget to bring Latte-Dock and WM status bar customization features to the default KDE Plasma panel";
+ homepage = "https://github.com/luisbocanegra/plasma-panel-colorizer";
+ changelog = "https://github.com/luisbocanegra/plasma-panel-colorizer/blob/main/CHANGELOG.md";
+ license = lib.licenses.gpl3Only;
+ maintainers = with lib.maintainers; [ HeitorAugustoLN ];
+ inherit (kdePackages.kwindowsystem.meta) platforms;
+ };
+})
diff --git a/pkgs/by-name/pr/protoc-gen-elixir/package.nix b/pkgs/by-name/pr/protoc-gen-elixir/package.nix
new file mode 100644
index 000000000000..8e38f3317646
--- /dev/null
+++ b/pkgs/by-name/pr/protoc-gen-elixir/package.nix
@@ -0,0 +1,44 @@
+{
+ beamPackages,
+ fetchFromGitHub,
+ lib,
+}:
+beamPackages.mixRelease rec {
+ pname = "protoc-gen-elixir";
+ version = "0.12.0";
+
+ src = fetchFromGitHub {
+ owner = "elixir-protobuf";
+ repo = "protobuf";
+ rev = "refs/tags/v${version}";
+ hash = "sha256-wLU3iM9jI/Zc96/HfPUjNvjteGryWos6IobIb/4zqpw=";
+ };
+
+ mixFodDeps = beamPackages.fetchMixDeps {
+ inherit version src;
+ pname = "protoc-gen-elixir-deps";
+
+ hash = "sha256-H7yiBHoxuiqWcNbWwPU5X0Nnv8f6nM8z/ZAfZAGPZjE=";
+ };
+
+ postBuild = ''
+ mix do escript.build
+ '';
+
+ installPhase = ''
+ runHook preInstall
+
+ mkdir -p $out/bin
+ cp protoc-gen-elixir $out/bin
+
+ runHook postInstall
+ '';
+
+ meta = {
+ description = "A protoc plugin to generate Elixir code";
+ mainProgram = "protoc-gen-elixir";
+ homepage = "https://github.com/elixir-protobuf/protobuf";
+ license = lib.licenses.mit;
+ maintainers = with lib.maintainers; [ mattpolzin ];
+ };
+}
diff --git a/pkgs/by-name/re/revolver/no-external-call.patch b/pkgs/by-name/re/revolver/no-external-call.patch
new file mode 100644
index 000000000000..9142edd79b19
--- /dev/null
+++ b/pkgs/by-name/re/revolver/no-external-call.patch
@@ -0,0 +1,16 @@
+Replace call to "revolver" with call to internal function.
+Useful when "revolver" is not defined in PATH.
+--- a/revolver
++++ b/revolver
+@@ -255,9 +255,9 @@
+ ###
+ function _revolver_demo() {
+ for style in "${(@k)_revolver_spinners[@]}"; do
+- revolver --style $style start $style
++ _revolver --style $style start $style
+ sleep 2
+- revolver stop
++ _revolver stop
+ done
+ }
+
diff --git a/pkgs/by-name/re/revolver/package.nix b/pkgs/by-name/re/revolver/package.nix
new file mode 100644
index 000000000000..37eac352fd82
--- /dev/null
+++ b/pkgs/by-name/re/revolver/package.nix
@@ -0,0 +1,94 @@
+{
+ lib,
+ stdenvNoCC,
+ fetchFromGitHub,
+ zsh,
+ installShellFiles,
+ ncurses,
+ nix-update-script,
+ testers,
+ runCommand,
+}:
+
+stdenvNoCC.mkDerivation (finalAttrs: {
+ pname = "revolver";
+ version = "0.2.4-unstable-2020-09-30";
+
+ src = fetchFromGitHub {
+ owner = "molovo";
+ repo = "revolver";
+ rev = "6424e6cb14da38dc5d7760573eb6ecb2438e9661";
+ hash = "sha256-2onqjtPIsgiEJj00oP5xXGkPZGQpGPVwcBOhmicqKcs=";
+ };
+
+ strictDeps = true;
+ doInstallCheck = true;
+
+ nativeBuildInputs = [ installShellFiles ];
+ buildInputs = [
+ zsh
+ ncurses
+ ];
+ nativeInstallCheckInputs = [ zsh ];
+
+ patches = [ ./no-external-call.patch ];
+
+ postPatch = ''
+ substituteInPlace revolver \
+ --replace-fail "tput cols" "${ncurses}/bin/tput cols"
+ '';
+
+ installPhase = ''
+ runHook preInstall
+
+ install -D revolver $out/bin/revolver
+
+ runHook postInstall
+ '';
+
+ postInstall = ''
+ installShellCompletion --cmd revolver --zsh revolver.zsh-completion
+ '';
+
+ installCheckPhase = ''
+ runHook preInstallCheck
+
+ PATH=$PATH:$out/bin revolver --help
+
+ runHook postInstallCheck
+ '';
+
+ passthru = {
+ tests = {
+ demo = runCommand "revolver-demo" { nativeBuildInputs = [ finalAttrs.finalPackage ]; } ''
+ export HOME="$TEMPDIR"
+
+ # Drop stdout, redirect stderr to stdout and check if it's not empty
+ exec 9>&1
+ echo "Running revolver demo..."
+ if [[ $(revolver demo 2>&1 1>/dev/null | tee >(cat - >&9)) ]]; then
+ exit 1
+ fi
+ echo "Demo done!"
+
+ mkdir $out
+ '';
+ version = testers.testVersion {
+ package = finalAttrs.finalPackage;
+ # Wrong '0.2.0' version in the code
+ version = "0.2.0";
+ };
+ };
+ updateScript = nix-update-script { };
+ };
+
+ meta = {
+ description = "Progress spinner for ZSH scripts";
+ homepage = "https://github.com/molovo/revolver";
+ downloadPage = "https://github.com/molovo/revolver/releases";
+ license = lib.licenses.mit;
+ mainProgram = "revolver";
+ inherit (zsh.meta) platforms;
+ maintainers = with lib.maintainers; [ d-brasher ];
+ };
+})
diff --git a/pkgs/by-name/sr/srb2kart/package.nix b/pkgs/by-name/sr/srb2kart/package.nix
index 9601d99263ac..8260bdb39408 100644
--- a/pkgs/by-name/sr/srb2kart/package.nix
+++ b/pkgs/by-name/sr/srb2kart/package.nix
@@ -100,7 +100,7 @@ stdenv.mkDerivation (finalAttrs: {
homepage = "https://mb.srb2.org/threads/srb2kart.25868/";
platforms = platforms.linux;
license = licenses.gpl2Plus;
- maintainers = with maintainers; [ viric donovanglover ];
+ maintainers = with maintainers; [ donovanglover ];
mainProgram = "srb2kart";
};
})
diff --git a/pkgs/by-name/st/stats/package.nix b/pkgs/by-name/st/stats/package.nix
index 14073bc8d2cd..105ed52dbdfd 100644
--- a/pkgs/by-name/st/stats/package.nix
+++ b/pkgs/by-name/st/stats/package.nix
@@ -8,11 +8,11 @@
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "stats";
- version = "2.11.1";
+ version = "2.11.4";
src = fetchurl {
url = "https://github.com/exelban/stats/releases/download/v${finalAttrs.version}/Stats.dmg";
- hash = "sha256-/6QFchDpWrJZEKuIsQi6FcGprVOa8J8THJ9Kt3ESrwY=";
+ hash = "sha256-Cm5gu+rL3eerAOnNcNUL2MlXsxV2jMiJLwgGtskIVP4=";
};
sourceRoot = ".";
diff --git a/pkgs/by-name/ta/tailscale-gitops-pusher/package.nix b/pkgs/by-name/ta/tailscale-gitops-pusher/package.nix
new file mode 100644
index 000000000000..f0ddde526f0b
--- /dev/null
+++ b/pkgs/by-name/ta/tailscale-gitops-pusher/package.nix
@@ -0,0 +1,28 @@
+{ lib
+, tailscale
+, buildGoModule
+}:
+
+buildGoModule {
+ inherit (tailscale) version src vendorHash CGO_ENABLED;
+ pname = "tailscale-gitops-pusher";
+
+ subPackages = [
+ "cmd/gitops-pusher"
+ ];
+
+ ldflags = [
+ "-w"
+ "-s"
+ "-X tailscale.com/version.longStamp=${tailscale.version}"
+ "-X tailscale.com/version.shortStamp=${tailscale.version}"
+ ];
+
+ meta = with lib; {
+ homepage = "https://tailscale.com";
+ description = "Allows users to use a GitOps flow for managing Tailscale ACLs";
+ license = licenses.bsd3;
+ mainProgram = "gitops-pusher";
+ maintainers = with maintainers; [ xanderio ];
+ };
+}
diff --git a/pkgs/by-name/te/tenv/package.nix b/pkgs/by-name/te/tenv/package.nix
index 027da48e36c1..93ce7d68e809 100644
--- a/pkgs/by-name/te/tenv/package.nix
+++ b/pkgs/by-name/te/tenv/package.nix
@@ -2,13 +2,13 @@
buildGoModule rec {
pname = "tenv";
- version = "2.6.1";
+ version = "2.7.9";
src = fetchFromGitHub {
owner = "tofuutils";
repo = "tenv";
rev = "v${version}";
- hash = "sha256-qGb7Wj0qH9yh/C0H9Yd0NppoqtjCxnbaTYpv6T8KoL4=";
+ hash = "sha256-oeMbpnYCkJ5GjfgOlNyQpwy80DbrupXIFS2dx4W2xo4=";
};
vendorHash = "sha256-/4RiOF9YU4GEZlJcx2S2bLhJ1Q6F+8To3XiyWzGGHUU=";
diff --git a/pkgs/by-name/tr/tribler/package.nix b/pkgs/by-name/tr/tribler/package.nix
index bdc4090c49af..3d30b91cfcc2 100644
--- a/pkgs/by-name/tr/tribler/package.nix
+++ b/pkgs/by-name/tr/tribler/package.nix
@@ -118,7 +118,7 @@ stdenv.mkDerivation (finalAttrs: {
license = lib.licenses.lgpl21Plus;
maintainers = with lib.maintainers; [
xvapx
- viric
+
mkg20001
];
platforms = lib.platforms.linux;
diff --git a/pkgs/by-name/un/unison/package.nix b/pkgs/by-name/un/unison/package.nix
index f512d775ea8d..400c73e105b4 100644
--- a/pkgs/by-name/un/unison/package.nix
+++ b/pkgs/by-name/un/unison/package.nix
@@ -56,7 +56,7 @@ stdenv.mkDerivation (finalAttrs: {
homepage = "https://www.cis.upenn.edu/~bcpierce/unison/";
description = "Bidirectional file synchronizer";
license = licenses.gpl3Plus;
- maintainers = with maintainers; [ viric nevivurn ];
+ maintainers = with maintainers; [ nevivurn ];
platforms = platforms.unix;
broken = stdenv.isDarwin && enableX11; # unison-gui and uimac are broken on darwin
mainProgram = if enableX11 then "unison-gui" else "unison";
diff --git a/pkgs/by-name/vc/vcpkg/package.nix b/pkgs/by-name/vc/vcpkg/package.nix
index 74e16ebf8465..f92719cb0cc7 100644
--- a/pkgs/by-name/vc/vcpkg/package.nix
+++ b/pkgs/by-name/vc/vcpkg/package.nix
@@ -27,6 +27,9 @@ stdenvNoCC.mkDerivation (finalAttrs: {
--replace-fail "arm-linux-gnueabihf-as" "armv7l-unknown-linux-gnueabihf-as" \
--replace-fail "arm-linux-gnueabihf-gcc" "armv7l-unknown-linux-gnueabihf-gcc" \
--replace-fail "arm-linux-gnueabihf-g++" "armv7l-unknown-linux-gnueabihf-g++"
+ # If we don’t turn this off, then you won’t be able to run binaries that
+ # are installed by vcpkg.
+ find triplets -name '*linux*.cmake' -exec bash -c 'echo "set(X_VCPKG_RPATH_KEEP_SYSTEM_PATHS ON)" >> "$1"' -- {} \;
'';
installPhase = ''
diff --git a/pkgs/by-name/wh/where-is-my-sddm-theme/package.nix b/pkgs/by-name/wh/where-is-my-sddm-theme/package.nix
index 02b5f797cc4d..9862909bf575 100644
--- a/pkgs/by-name/wh/where-is-my-sddm-theme/package.nix
+++ b/pkgs/by-name/wh/where-is-my-sddm-theme/package.nix
@@ -34,13 +34,13 @@ lib.checkListOfEnum "where-is-my-sddm-theme: variant" validVariants variants
stdenvNoCC.mkDerivation
(finalAttrs: {
pname = "where-is-my-sddm-theme";
- version = "1.10.0";
+ version = "1.11.0";
src = fetchFromGitHub {
owner = "stepanzubkov";
repo = "where-is-my-sddm-theme";
rev = "refs/tags/v${finalAttrs.version}";
- hash = "sha256-hv0s2ZnfLE3DJ60G6ZL/Z+sXth9plzjlUNwII8TMuOo=";
+ hash = "sha256-EzO+MTz1PMmgeKyw65aasetmjUCpvilcvePt6HJZrpo=";
};
propagatedUserEnvPkgs =
diff --git a/pkgs/by-name/wv/wvdial/package.nix b/pkgs/by-name/wv/wvdial/package.nix
new file mode 100644
index 000000000000..c71addca1a9b
--- /dev/null
+++ b/pkgs/by-name/wv/wvdial/package.nix
@@ -0,0 +1,44 @@
+{
+ stdenv,
+ fetchFromGitea,
+ fetchpatch,
+ wvstreams,
+ pkg-config,
+ lib,
+}:
+
+stdenv.mkDerivation {
+ pname = "wvdial";
+ version = "unstable-2016-06-15";
+
+ src = fetchFromGitea {
+ domain = "gitea.osmocom.org";
+ owner = "retronetworking";
+ repo = "wvdial";
+ rev = "42d084173cc939586c1963b8835cb00ec56b2823";
+ hash = "sha256-q7pFvpJvv+ZvbN4xxolI9ZRULr+N5sqO9BOXUqSG5v4=";
+ };
+
+ patches = [
+ (fetchpatch {
+ url = "https://git.openembedded.org/meta-openembedded/plain/meta-oe/recipes-connectivity/wvdial/wvdial/typo_pon.wvdial.1.patch?h=73a68490efe05cdbec540ec6f17782816632a24d";
+ hash = "sha256-fsneoB5GeKH/nxwW0z8Mk6892PtnZ3J77wP4BGo3Tj8=";
+ })
+ ];
+
+ buildInputs = [ wvstreams ];
+ nativeBuildInputs = [ pkg-config ];
+
+ makeFlags = [
+ "prefix=${placeholder "out"}"
+ "PPPDIR=${placeholder "out"}/etc/ppp/peers"
+ ];
+
+ meta = {
+ description = "A dialer that automatically recognises the modem";
+ homepage = "https://gitea.osmocom.org/retronetworking/wvdial";
+ license = lib.licenses.lgpl2;
+ maintainers = with lib.maintainers; [ flokli ];
+ platforms = lib.platforms.linux;
+ };
+}
diff --git a/pkgs/by-name/wv/wvstreams/package.nix b/pkgs/by-name/wv/wvstreams/package.nix
new file mode 100644
index 000000000000..347b67313048
--- /dev/null
+++ b/pkgs/by-name/wv/wvstreams/package.nix
@@ -0,0 +1,110 @@
+{
+ stdenv,
+ fetchpatch,
+ fetchurl,
+ dbus,
+ zlib,
+ openssl,
+ readline,
+ lib,
+ perl,
+}:
+
+stdenv.mkDerivation {
+ pname = "wvstreams";
+ version = "4.6.1";
+
+ # See https://layers.openembedded.org/layerindex/recipe/190863/
+ src = fetchurl {
+ url = "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/wvstreams/wvstreams-4.6.1.tar.gz";
+ hash = "sha256-hAP1+/g6qawMbOFdl/2FYHSIFSqoTgB7fQYhuOvAdjM=";
+ };
+
+ patches = [
+ (fetchpatch {
+ url = "https://cgit.openembedded.org/meta-openembedded/plain/meta-oe/recipes-connectivity/wvdial/wvstreams/04_signed_request.diff?id=0e6c34f82ca4d43cbca3754c5fe37c5b3bdd0f37";
+ hash = "sha256-zlPiME+KYjesmKt3a+JoE087qE1MbnlVPjC75qQoIks=";
+ })
+ (fetchpatch {
+ url = "https://cgit.openembedded.org/meta-openembedded/plain/meta-oe/recipes-connectivity/wvdial/wvstreams/05_gcc.diff?id=0e6c34f82ca4d43cbca3754c5fe37c5b3bdd0f37";
+ hash = "sha256-Twqk0J8E05kAvhHjAoAuYEpS445t3mb/BvuxTmaaGoM=";
+ })
+ (fetchpatch {
+ url = "https://cgit.openembedded.org/meta-openembedded/plain/meta-oe/recipes-connectivity/wvdial/wvstreams/06_gcc-4.7.diff?id=0e6c34f82ca4d43cbca3754c5fe37c5b3bdd0f37";
+ hash = "sha256-JMPNUdfAJ/gq+am/F1DE2q3+35ItiLAve1+LLl8+Oe4=";
+ })
+ (fetchpatch {
+ url = "https://cgit.openembedded.org/meta-openembedded/plain/meta-oe/recipes-connectivity/wvdial/wvstreams/07_buildflags.diff?id=0e6c34f82ca4d43cbca3754c5fe37c5b3bdd0f37";
+ hash = "sha256-N3HmuBakD5VHoToOqU6EmTHlgFG6A7x84Gbf2P2u+s8=";
+ })
+ (fetchpatch {
+ url = "https://cgit.openembedded.org/meta-openembedded/plain/meta-oe/recipes-connectivity/wvdial/wvstreams/gcc-6.patch?id=0e6c34f82ca4d43cbca3754c5fe37c5b3bdd0f37";
+ hash = "sha256-fXhBUKaHD27mspwrKNY5G7F6UHqq/dmnPlf9cIvM7hM=";
+ })
+ (fetchpatch {
+ url = "https://cgit.openembedded.org/meta-openembedded/plain/meta-oe/recipes-connectivity/wvdial/wvstreams/argp.patch?id=0e6c34f82ca4d43cbca3754c5fe37c5b3bdd0f37";
+ hash = "sha256-55vWFfd/SDa9dE+GmSHDMU2kTrn+tNUW2clPknSdi7g=";
+ })
+ (fetchpatch {
+ url = "https://cgit.openembedded.org/meta-openembedded/plain/meta-oe/recipes-connectivity/wvdial/wvstreams/0001-Check-for-limits.h-during-configure.patch?id=0e6c34f82ca4d43cbca3754c5fe37c5b3bdd0f37";
+ hash = "sha256-XRJCZMnygcQie9sUc1iCe9HVE9lEFCed4JRDtd/C/84=";
+ })
+ (fetchpatch {
+ url = "https://cgit.openembedded.org/meta-openembedded/plain/meta-oe/recipes-connectivity/wvdial/wvstreams/0003-wvtask-Check-for-HAVE_LIBC_STACK_END-only-on-glibc-s.patch?id=0e6c34f82ca4d43cbca3754c5fe37c5b3bdd0f37";
+ hash = "sha256-v0WAFyWwQ70dpq1BEXQjkOrdUUk4tBFJVKeHffs4FmA=";
+ })
+ (fetchpatch {
+ url = "https://cgit.openembedded.org/meta-openembedded/plain/meta-oe/recipes-connectivity/wvdial/wvstreams/0004-wvcrash-Replace-use-of-basename-API.patch?id=0e6c34f82ca4d43cbca3754c5fe37c5b3bdd0f37";
+ hash = "sha256-1UZziDaE0BCM/YmYjBgFA2Q8zfnWpQcal08a0qcClmo=";
+ })
+ (fetchpatch {
+ url = "https://cgit.openembedded.org/meta-openembedded/plain/meta-oe/recipes-connectivity/wvdial/wvstreams/0005-check-for-libexecinfo-during-configure.patch?id=0e6c34f82ca4d43cbca3754c5fe37c5b3bdd0f37";
+ hash = "sha256-4Ad10pijea/qusrdCJAEjpc1/qfQNE32t/M2YMk5jNg=";
+ })
+ (fetchpatch {
+ url = "https://cgit.openembedded.org/meta-openembedded/plain/meta-oe/recipes-connectivity/wvdial/wvstreams/0001-build-fix-parallel-make.patch?id=0e6c34f82ca4d43cbca3754c5fe37c5b3bdd0f37";
+ hash = "sha256-zWREskvLoAH2sYn6kbemTC1V5KrF9jX0B0d+ASExQBA=";
+ })
+ (fetchpatch {
+ url = "https://cgit.openembedded.org/meta-openembedded/plain/meta-oe/recipes-connectivity/wvdial/wvstreams/0002-wvrules.mk-Use-_DEFAULT_SOURCE.patch?id=0e6c34f82ca4d43cbca3754c5fe37c5b3bdd0f37";
+ hash = "sha256-ACiuwqwg5nUbzqoJR5h9GENXmN3ELzkBjujZivBoM4g=";
+ })
+ (fetchpatch {
+ url = "https://cgit.openembedded.org/meta-openembedded/plain/meta-oe/recipes-connectivity/wvdial/wvstreams/openssl-buildfix.patch?id=0e6c34f82ca4d43cbca3754c5fe37c5b3bdd0f37";
+ hash = "sha256-pMHopuBEge7Llq1Syb8sZJArhUOWBNmcOvVcNtFgnbA=";
+ })
+ (fetchpatch {
+ url = "https://cgit.openembedded.org/meta-openembedded/plain/meta-oe/recipes-connectivity/wvdial/wvstreams/0001-Forward-port-to-OpenSSL-1.1.x.patch?id=0e6c34f82ca4d43cbca3754c5fe37c5b3bdd0f37";
+ hash = "sha256-R5pfYxefEvvxB1k+gZzRQgsbmkgpK9cBqZxCXHQnQlM=";
+ })
+ (fetchpatch {
+ url = "https://cgit.openembedded.org/meta-openembedded/plain/meta-oe/recipes-connectivity/wvdial/wvstreams/0001-Fix-narrowing-conversion-error.patch?id=0e6c34f82ca4d43cbca3754c5fe37c5b3bdd0f37";
+ hash = "sha256-esCD7jMVxD1sC2C4jx+pnnIWHpXAVGF/CGXvwHc9rhU=";
+ })
+ ];
+
+ outputs = [
+ "bin"
+ "dev"
+ "lib"
+ "out"
+ ];
+
+ enableParallelBuilding = true;
+
+ buildInputs = [
+ dbus
+ zlib
+ openssl
+ readline
+ perl
+ ];
+
+ meta = {
+ description = "Network programming library in C++";
+ homepage = "http://alumnit.ca/wiki/index.php?page=WvStreams";
+ license = lib.licenses.lgpl2;
+ maintainers = [ lib.maintainers.flokli ];
+ platforms = lib.platforms.linux;
+ };
+}
diff --git a/pkgs/by-name/ze/zed-editor/Cargo.lock b/pkgs/by-name/ze/zed-editor/Cargo.lock
index 35a55b81023d..738ab3da1c3a 100644
--- a/pkgs/by-name/ze/zed-editor/Cargo.lock
+++ b/pkgs/by-name/ze/zed-editor/Cargo.lock
@@ -378,6 +378,7 @@ dependencies = [
"cargo_toml",
"chrono",
"client",
+ "clock",
"collections",
"command_palette_hooks",
"ctor",
@@ -420,6 +421,7 @@ dependencies = [
"telemetry_events",
"terminal",
"terminal_view",
+ "text",
"theme",
"tiktoken-rs",
"toml 0.8.10",
@@ -2405,22 +2407,13 @@ dependencies = [
"worktree",
]
-[[package]]
-name = "clipboard-win"
-version = "3.1.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9fdf5e01086b6be750428ba4a40619f847eb2e95756eee84b18e06e5f0b50342"
-dependencies = [
- "lazy-bytes-cast",
- "winapi",
-]
-
[[package]]
name = "clock"
version = "0.1.0"
dependencies = [
"chrono",
"parking_lot",
+ "serde",
"smallvec",
]
@@ -2479,6 +2472,7 @@ version = "0.44.0"
dependencies = [
"anthropic",
"anyhow",
+ "assistant",
"async-trait",
"async-tungstenite",
"audio",
@@ -3408,11 +3402,13 @@ dependencies = [
"ctor",
"editor",
"env_logger",
+ "feature_flags",
"futures 0.3.28",
"gpui",
"language",
"log",
"lsp",
+ "multi_buffer",
"pretty_assertions",
"project",
"rand 0.8.5",
@@ -3617,6 +3613,7 @@ dependencies = [
"linkify",
"log",
"lsp",
+ "markdown",
"multi_buffer",
"ordered-float 2.10.0",
"parking_lot",
@@ -3990,6 +3987,7 @@ version = "0.1.0"
dependencies = [
"anyhow",
"client",
+ "collections",
"db",
"editor",
"extension",
@@ -4009,6 +4007,7 @@ dependencies = [
"theme_selector",
"ui",
"util",
+ "vim",
"workspace",
]
@@ -4879,7 +4878,6 @@ dependencies = [
"calloop",
"calloop-wayland-source",
"cbindgen",
- "clipboard-win",
"cocoa",
"collections",
"core-foundation",
@@ -5071,6 +5069,7 @@ version = "0.1.0"
dependencies = [
"anyhow",
"client",
+ "extension",
"fs",
"futures 0.3.28",
"gpui",
@@ -6084,12 +6083,6 @@ dependencies = [
"workspace",
]
-[[package]]
-name = "lazy-bytes-cast"
-version = "5.0.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "10257499f089cd156ad82d0a9cd57d9501fa2c989068992a97eb3c27836f206b"
-
[[package]]
name = "lazy_static"
version = "1.4.0"
@@ -8085,6 +8078,7 @@ dependencies = [
"serde_json",
"settings",
"sha2 0.10.7",
+ "shellexpand 2.1.2",
"shlex",
"similar",
"smol",
@@ -8226,6 +8220,7 @@ version = "0.1.0"
dependencies = [
"anyhow",
"collections",
+ "futures 0.3.28",
"prost",
"prost-build",
"serde",
@@ -8317,10 +8312,13 @@ dependencies = [
"assistant",
"editor",
"gpui",
+ "repl",
"search",
"settings",
"ui",
+ "util",
"workspace",
+ "zed_actions",
]
[[package]]
@@ -8527,7 +8525,6 @@ dependencies = [
"client",
"dev_server_projects",
"editor",
- "feature_flags",
"fuzzy",
"gpui",
"language",
@@ -8705,6 +8702,7 @@ dependencies = [
"image",
"language",
"log",
+ "multi_buffer",
"project",
"runtimelib",
"schemars",
@@ -10777,6 +10775,7 @@ dependencies = [
"gpui",
"libc",
"rand 0.8.5",
+ "release_channel",
"schemars",
"serde",
"serde_derive",
@@ -13337,6 +13336,7 @@ dependencies = [
"derive_more",
"dev_server_projects",
"env_logger",
+ "file_icons",
"fs",
"futures 0.3.28",
"gpui",
@@ -13628,7 +13628,7 @@ dependencies = [
[[package]]
name = "zed"
-version = "0.144.4"
+version = "0.145.1"
dependencies = [
"activity_indicator",
"anyhow",
@@ -13756,7 +13756,7 @@ dependencies = [
[[package]]
name = "zed_dart"
-version = "0.0.2"
+version = "0.0.3"
dependencies = [
"zed_extension_api 0.0.6",
]
@@ -13770,7 +13770,7 @@ dependencies = [
[[package]]
name = "zed_elixir"
-version = "0.0.5"
+version = "0.0.6"
dependencies = [
"zed_extension_api 0.0.6",
]
@@ -13870,9 +13870,9 @@ dependencies = [
[[package]]
name = "zed_php"
-version = "0.0.6"
+version = "0.1.1"
dependencies = [
- "zed_extension_api 0.0.4",
+ "zed_extension_api 0.0.6",
]
[[package]]
@@ -13906,7 +13906,7 @@ dependencies = [
[[package]]
name = "zed_svelte"
-version = "0.0.1"
+version = "0.0.3"
dependencies = [
"zed_extension_api 0.0.6",
]
@@ -13948,9 +13948,9 @@ dependencies = [
[[package]]
name = "zed_zig"
-version = "0.1.3"
+version = "0.1.4"
dependencies = [
- "zed_extension_api 0.0.7",
+ "zed_extension_api 0.0.6",
]
[[package]]
diff --git a/pkgs/by-name/ze/zed-editor/package.nix b/pkgs/by-name/ze/zed-editor/package.nix
index b85496958f30..b6d8cd3ec00b 100644
--- a/pkgs/by-name/ze/zed-editor/package.nix
+++ b/pkgs/by-name/ze/zed-editor/package.nix
@@ -35,13 +35,13 @@ assert withGLES -> stdenv.isLinux;
rustPlatform.buildRustPackage rec {
pname = "zed";
- version = "0.144.4";
+ version = "0.145.1";
src = fetchFromGitHub {
owner = "zed-industries";
repo = "zed";
rev = "refs/tags/v${version}";
- hash = "sha256-F/44NjoBCH2und9VVayE0wxrrOtcFoP5yuvxgxCkxuM=";
+ hash = "sha256-fO1VT2LiZa9XkQxP7QcEG9uCTtEm3soces7FCFwosbU=";
fetchSubmodules = true;
};
diff --git a/pkgs/development/interpreters/ruby/rubygems/0004-delete-binstub-lock-file.patch b/pkgs/development/interpreters/ruby/rubygems/0004-delete-binstub-lock-file.patch
new file mode 100644
index 000000000000..91f221e19680
--- /dev/null
+++ b/pkgs/development/interpreters/ruby/rubygems/0004-delete-binstub-lock-file.patch
@@ -0,0 +1,36 @@
+A change introduced in PR https://github.com/rubygems/rubygems/pull/7797
+does not delete the binstub lock files after the binstub file is created.
+
+This change was introduced in rubygems 3.5.15,
+and this version causes Hydra builds to fail, in particular mastodon.
+
+A resolution is delete these binstub lock files after the binstub file is created
+to prevent lock files from ending up in the bin folders of the various derivations
+which will cause the build to fail.
+
+---
+diff --git a/bundler/lib/bundler/rubygems_ext.rb b/bundler/lib/bundler/rubygems_ext.rb
+index 503959bba7..603b30e277 100644
+--- a/bundler/lib/bundler/rubygems_ext.rb
++++ b/bundler/lib/bundler/rubygems_ext.rb
+@@ -47,6 +47,8 @@ def self.open_file_with_flock(path, &block)
+ else
+ File.open(path, flags, &block)
+ end
++ ensure
++ FileUtils.rm_f(path) if File.exist?(path)
+ end
+ end
+ end
+diff --git a/lib/rubygems.rb b/lib/rubygems.rb
+index 569041f3d7..bcc95ae85c 100644
+--- a/lib/rubygems.rb
++++ b/lib/rubygems.rb
+@@ -796,6 +796,8 @@ def self.open_file_with_flock(path, &block)
+ else
+ open_file(path, flags, &block)
+ end
++ ensure
++ FileUtils.rm_f(path) if File.exist?(path)
+ end
+ end
diff --git a/pkgs/development/interpreters/ruby/rubygems/default.nix b/pkgs/development/interpreters/ruby/rubygems/default.nix
index 962fddf51b54..9fbfdb59fb07 100644
--- a/pkgs/development/interpreters/ruby/rubygems/default.nix
+++ b/pkgs/development/interpreters/ruby/rubygems/default.nix
@@ -18,6 +18,7 @@ stdenv.mkDerivation rec {
./0001-add-post-extract-hook.patch
./0002-binaries-with-env-shebang.patch
./0003-gem-install-default-to-user.patch
+ ./0004-delete-binstub-lock-file.patch
];
installPhase = ''
diff --git a/pkgs/development/libraries/aemu/LFS64.patch b/pkgs/development/libraries/aemu/LFS64.patch
new file mode 100644
index 000000000000..e1d06d8073ef
--- /dev/null
+++ b/pkgs/development/libraries/aemu/LFS64.patch
@@ -0,0 +1,98 @@
+From 455341880f52b4df3b30490db1c17eb65110c00c Mon Sep 17 00:00:00 2001
+From: Alyssa Ross
+Date: Wed, 29 May 2024 10:29:02 +0200
+Subject: [PATCH] Stop using transitional LFS64 APIs
+
+The *64 APIs were intended for transitional use, and have been removed
+in musl 1.2.4. Nowadays, the best practice is to set
+_FILE_OFFSET_BITS=64 across the board, making all the unsuffixed APIs
+will be 64-bit. This fixes building with recent versions of musl, and
+avoids the need to remember to use the *64 variants every time to
+properly handle large files on 32-bit platforms.
+
+Test: build with musl 1.2.4.
+Change-Id: I7fa7a3ae4aa19a765740f5b2af916fd6f0ed0b32
+---
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 4de86a4..10c402a 100644
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -69,7 +69,7 @@
+ add_subdirectory(build-config/${AEMU_COMMON_BUILD_CONFIG})
+ endif()
+
+-set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-extern-c-compat -Wno-return-type-c-linkage")
++set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-extern-c-compat -Wno-return-type-c-linkage -D_FILE_OFFSET_BITS=64")
+
+ add_subdirectory(base)
+ add_subdirectory(snapshot)
+diff --git a/snapshot/TextureLoader.cpp b/snapshot/TextureLoader.cpp
+index 31e02e8..5c21134 100644
+--- a/snapshot/TextureLoader.cpp
++++ b/snapshot/TextureLoader.cpp
+@@ -46,7 +46,7 @@
+ void TextureLoader::loadTexture(uint32_t texId, const loader_t& loader) {
+ android::base::AutoLock scopedLock(mLock);
+ assert(mIndex.count(texId));
+- HANDLE_EINTR(fseeko64(mStream.get(), mIndex[texId], SEEK_SET));
++ HANDLE_EINTR(fseeko(mStream.get(), mIndex[texId], SEEK_SET));
+ switch (mVersion) {
+ case 1:
+ loader(&mStream);
+@@ -71,7 +71,7 @@
+ mDiskSize = size;
+ }
+ auto indexPos = mStream.getBe64();
+- HANDLE_EINTR(fseeko64(mStream.get(), static_cast(indexPos), SEEK_SET));
++ HANDLE_EINTR(fseeko(mStream.get(), static_cast(indexPos), SEEK_SET));
+ mVersion = mStream.getBe32();
+ if (mVersion < 1 || mVersion > 2) {
+ return false;
+diff --git a/snapshot/TextureSaver.cpp b/snapshot/TextureSaver.cpp
+index 537626b..c8854e9 100644
+--- a/snapshot/TextureSaver.cpp
++++ b/snapshot/TextureSaver.cpp
+@@ -50,7 +50,7 @@
+ [texId](FileIndex::Texture& tex) {
+ return tex.texId == texId;
+ }));
+- mIndex.textures.push_back({texId, ftello64(mStream.get())});
++ mIndex.textures.push_back({texId, ftello(mStream.get())});
+
+ CompressingStream stream(mStream);
+ saver(&stream, &mBuffer);
+@@ -60,7 +60,7 @@
+ if (mFinished) {
+ return;
+ }
+- mIndex.startPosInFile = ftello64(mStream.get());
++ mIndex.startPosInFile = ftello(mStream.get());
+ writeIndex();
+ mEndTime = base::getHighResTimeUs();
+ #if SNAPSHOT_PROFILE > 1
+@@ -74,7 +74,7 @@
+
+ void TextureSaver::writeIndex() {
+ #if SNAPSHOT_PROFILE > 1
+- auto start = ftello64(mStream.get());
++ auto start = ftello(mStream.get());
+ #endif
+
+ mStream.putBe32(static_cast(mIndex.version));
+@@ -83,13 +83,13 @@
+ mStream.putBe32(b.texId);
+ mStream.putBe64(static_cast(b.filePos));
+ }
+- auto end = ftello64(mStream.get());
++ auto end = ftello(mStream.get());
+ mDiskSize = uint64_t(end);
+ #if SNAPSHOT_PROFILE > 1
+ printf("texture: index size: %d\n", int(end - start));
+ #endif
+
+- fseeko64(mStream.get(), 0, SEEK_SET);
++ fseeko(mStream.get(), 0, SEEK_SET);
+ mStream.putBe64(static_cast(mIndex.startPosInFile));
+ }
+
diff --git a/pkgs/development/libraries/aemu/default.nix b/pkgs/development/libraries/aemu/default.nix
index e2ea8e5b1cd5..0a2f6fa8b8b2 100644
--- a/pkgs/development/libraries/aemu/default.nix
+++ b/pkgs/development/libraries/aemu/default.nix
@@ -10,6 +10,12 @@ stdenv.mkDerivation {
hash = "sha256-H3IU9aTFSzUAqYgrtHd4F18hbhZsbOJGC4K5JwMQOOw=";
};
+ patches = [
+ # stop using transitional LFS64 APIs, which are removed in musl 1.2.4
+ # https://android-review.googlesource.com/c/platform/hardware/google/aemu/+/3105640/1
+ ./LFS64.patch
+ ];
+
nativeBuildInputs = [ cmake ];
buildInputs = lib.optionals stdenv.isDarwin [
darwin.apple_sdk.frameworks.Cocoa
diff --git a/pkgs/development/libraries/clanlib/default.nix b/pkgs/development/libraries/clanlib/default.nix
index ee9ee04aa62f..6369128d5a05 100644
--- a/pkgs/development/libraries/clanlib/default.nix
+++ b/pkgs/development/libraries/clanlib/default.nix
@@ -1,16 +1,17 @@
-{ lib
-, stdenv
-, fetchFromGitHub
-, autoreconfHook
-, libGL
-, libpng
-, pkg-config
-, xorg
-, file
-, freetype
-, fontconfig
-, alsa-lib
-, libXrender
+{
+ lib,
+ stdenv,
+ fetchFromGitHub,
+ fetchpatch,
+ autoreconfHook,
+ libGL,
+ libpng,
+ pkg-config,
+ xorg,
+ freetype,
+ fontconfig,
+ alsa-lib,
+ libXrender,
}:
stdenv.mkDerivation rec {
@@ -24,10 +25,19 @@ stdenv.mkDerivation rec {
sha256 = "sha256-SVsLWcTP+PCIGDWLkadMpJPj4coLK9dJrW4sc2+HotE=";
};
+ patches = [
+ (fetchpatch {
+ name = "clanlib-add-support-for-riscv.patch";
+ url = "https://github.com/sphair/ClanLib/commit/f5f694205054b66dc800135c9b01673f69a7a671.patch";
+ hash = "sha256-/1XLFaTZDQAlT2mG9P6SJzXtTg7IWYGQ18Sx0e9zh0s=";
+ })
+ ];
+
nativeBuildInputs = [
pkg-config
autoreconfHook
];
+
buildInputs = [
libGL
libpng
@@ -38,11 +48,11 @@ stdenv.mkDerivation rec {
libXrender
];
- meta = with lib; {
+ meta = {
homepage = "https://github.com/sphair/ClanLib";
description = "Cross platform toolkit library with a primary focus on game creation";
- license = licenses.mit;
- maintainers = with maintainers; [ nixinator ];
- platforms = [ "x86_64-linux" ];
+ license = lib.licenses.mit;
+ maintainers = with lib.maintainers; [ nixinator ];
+ platforms = with lib.platforms; lib.intersectLists linux (x86 ++ arm ++ aarch64 ++ riscv);
};
}
diff --git a/pkgs/development/libraries/coin3d/default.nix b/pkgs/development/libraries/coin3d/default.nix
index e1a5db9c0f19..f4ea863383e4 100644
--- a/pkgs/development/libraries/coin3d/default.nix
+++ b/pkgs/development/libraries/coin3d/default.nix
@@ -34,7 +34,7 @@ stdenv.mkDerivation (finalAttrs: {
description = "High-level, retained-mode toolkit for effective 3D graphics development";
mainProgram = "coin-config";
license = licenses.bsd3;
- maintainers = with maintainers; [ gebner viric ];
+ maintainers = with maintainers; [ gebner ];
platforms = platforms.linux ++ platforms.darwin;
};
})
diff --git a/pkgs/development/libraries/flann/default.nix b/pkgs/development/libraries/flann/default.nix
index eeac7d14568e..52d64f18e8e5 100644
--- a/pkgs/development/libraries/flann/default.nix
+++ b/pkgs/development/libraries/flann/default.nix
@@ -73,7 +73,7 @@ stdenv.mkDerivation rec {
homepage = "https://github.com/flann-lib/flann";
license = lib.licenses.bsd3;
description = "Fast approximate nearest neighbor searches in high dimensional spaces";
- maintainers = with lib.maintainers; [viric];
+ maintainers = [ ];
platforms = with lib.platforms; linux ++ darwin;
};
}
diff --git a/pkgs/development/libraries/freeimage/default.nix b/pkgs/development/libraries/freeimage/default.nix
index 4f5f42582c57..20ced14ace6e 100644
--- a/pkgs/development/libraries/freeimage/default.nix
+++ b/pkgs/development/libraries/freeimage/default.nix
@@ -86,7 +86,7 @@ stdenv.mkDerivation (finalAttrs: {
"CVE-2023-47995"
"CVE-2023-47996"
];
- maintainers = with lib.maintainers; [viric l-as];
+ maintainers = with lib.maintainers; [ l-as ];
platforms = with lib.platforms; unix;
};
})
diff --git a/pkgs/development/libraries/gts/default.nix b/pkgs/development/libraries/gts/default.nix
index 5aa8aca6ffb3..9586c3be7b78 100644
--- a/pkgs/development/libraries/gts/default.nix
+++ b/pkgs/development/libraries/gts/default.nix
@@ -42,7 +42,7 @@ stdenv.mkDerivation rec {
3D surfaces meshed with interconnected triangles.
'';
- maintainers = [ lib.maintainers.viric ];
+ maintainers = [ ];
platforms = lib.platforms.linux ++ lib.platforms.darwin;
};
}
diff --git a/pkgs/development/libraries/itk/generic.nix b/pkgs/development/libraries/itk/generic.nix
index 54f725683a2e..1db337611dca 100644
--- a/pkgs/development/libraries/itk/generic.nix
+++ b/pkgs/development/libraries/itk/generic.nix
@@ -112,6 +112,6 @@ stdenv.mkDerivation {
mainProgram = "itkTestDriver";
homepage = "https://www.itk.org";
license = lib.licenses.asl20;
- maintainers = with lib.maintainers; [viric];
+ maintainers = [ ];
};
}
diff --git a/pkgs/development/libraries/kde-frameworks/kimageformats.nix b/pkgs/development/libraries/kde-frameworks/kimageformats.nix
index 5954d56e6cca..d516081da2d7 100644
--- a/pkgs/development/libraries/kde-frameworks/kimageformats.nix
+++ b/pkgs/development/libraries/kde-frameworks/kimageformats.nix
@@ -1,7 +1,7 @@
{
mkDerivation, lib,
extra-cmake-modules,
- ilmbase, karchive, openexr, libavif, libheif, libjxl, libraw, qtbase
+ ilmbase, karchive, openexr, dav1d, libaom, libavif, libheif, libjxl, libraw, libyuv, qtbase
}:
let inherit (lib) getDev; in
@@ -10,7 +10,7 @@ mkDerivation {
pname = "kimageformats";
nativeBuildInputs = [ extra-cmake-modules ];
- buildInputs = [ karchive openexr libavif libheif libjxl libraw qtbase ];
+ buildInputs = [ karchive openexr libaom libavif dav1d libheif libjxl libraw libyuv qtbase ];
outputs = [ "out" ]; # plugins only
CXXFLAGS = "-I${getDev ilmbase}/include/OpenEXR";
cmakeFlags = [
diff --git a/pkgs/development/libraries/libdc1394/default.nix b/pkgs/development/libraries/libdc1394/default.nix
index afd53588a336..0163eb9015d2 100644
--- a/pkgs/development/libraries/libdc1394/default.nix
+++ b/pkgs/development/libraries/libdc1394/default.nix
@@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
description = "Capture and control API for IIDC compliant cameras";
homepage = "https://sourceforge.net/projects/libdc1394/";
license = licenses.lgpl21Plus;
- maintainers = [ maintainers.viric ];
+ maintainers = [ ];
mainProgram = "dc1394_reset_bus";
platforms = platforms.unix;
};
diff --git a/pkgs/development/libraries/libmrss/default.nix b/pkgs/development/libraries/libmrss/default.nix
index 43d829b98342..daa66847b408 100644
--- a/pkgs/development/libraries/libmrss/default.nix
+++ b/pkgs/development/libraries/libmrss/default.nix
@@ -18,6 +18,6 @@ stdenv.mkDerivation rec {
license = lib.licenses.lgpl2;
platforms = lib.platforms.all;
- maintainers = [ lib.maintainers.viric ];
+ maintainers = [ ];
};
}
diff --git a/pkgs/development/libraries/libnxml/default.nix b/pkgs/development/libraries/libnxml/default.nix
index 6a0c52c9e99a..69ff6a6ebdc5 100644
--- a/pkgs/development/libraries/libnxml/default.nix
+++ b/pkgs/development/libraries/libnxml/default.nix
@@ -17,6 +17,6 @@ stdenv.mkDerivation rec {
license = lib.licenses.lgpl2;
platforms = lib.platforms.all;
- maintainers = [ lib.maintainers.viric ];
+ maintainers = [ ];
};
}
diff --git a/pkgs/development/libraries/newt/default.nix b/pkgs/development/libraries/newt/default.nix
index 1e6f8de2d589..15a834709806 100644
--- a/pkgs/development/libraries/newt/default.nix
+++ b/pkgs/development/libraries/newt/default.nix
@@ -56,6 +56,6 @@ stdenv.mkDerivation rec {
changelog = "https://pagure.io/newt/blob/master/f/CHANGES";
license = licenses.lgpl2;
platforms = platforms.unix;
- maintainers = with maintainers; [ viric ];
+ maintainers = [ ];
};
}
diff --git a/pkgs/development/libraries/pcl/default.nix b/pkgs/development/libraries/pcl/default.nix
index 624ca4aa6672..36e54f873cc7 100644
--- a/pkgs/development/libraries/pcl/default.nix
+++ b/pkgs/development/libraries/pcl/default.nix
@@ -72,7 +72,7 @@ stdenv.mkDerivation rec {
homepage = "https://pointclouds.org/";
description = "Open project for 2D/3D image and point cloud processing";
license = lib.licenses.bsd3;
- maintainers = with lib.maintainers; [ viric ];
+ maintainers = [ ];
platforms = with lib.platforms; linux ++ darwin;
};
}
diff --git a/pkgs/development/libraries/scmccid/default.nix b/pkgs/development/libraries/scmccid/default.nix
index daa861b31ea7..73fb6a6dcf6e 100644
--- a/pkgs/development/libraries/scmccid/default.nix
+++ b/pkgs/development/libraries/scmccid/default.nix
@@ -36,7 +36,7 @@ stdenv.mkDerivation rec {
description = "PCSC drivers for linux, for the SCM SCR3310 v2.0 card and others";
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
license = lib.licenses.unfree;
- maintainers = with lib.maintainers; [viric];
+ maintainers = [ ];
platforms = with lib.platforms; linux;
};
}
diff --git a/pkgs/development/libraries/soqt/default.nix b/pkgs/development/libraries/soqt/default.nix
index 3ce5f8e7bec1..14ff1ee1356f 100644
--- a/pkgs/development/libraries/soqt/default.nix
+++ b/pkgs/development/libraries/soqt/default.nix
@@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
homepage = "https://github.com/coin3d/soqt";
license = licenses.bsd3;
description = "Glue between Coin high-level 3D visualization library and Qt";
- maintainers = with maintainers; [ gebner viric ];
+ maintainers = with maintainers; [ gebner ];
platforms = platforms.linux;
};
}
diff --git a/pkgs/development/libraries/vigra/default.nix b/pkgs/development/libraries/vigra/default.nix
index 4e3aab9a5532..7db1d0d49195 100644
--- a/pkgs/development/libraries/vigra/default.nix
+++ b/pkgs/development/libraries/vigra/default.nix
@@ -55,7 +55,7 @@ stdenv.mkDerivation rec {
mainProgram = "vigra-config";
homepage = "https://hci.iwr.uni-heidelberg.de/vigra";
license = licenses.mit;
- maintainers = [ maintainers.viric ];
+ maintainers = [ ];
platforms = platforms.unix;
};
}
diff --git a/pkgs/development/libraries/vmime/default.nix b/pkgs/development/libraries/vmime/default.nix
index c2b585965b05..909a9fcbab3b 100644
--- a/pkgs/development/libraries/vmime/default.nix
+++ b/pkgs/development/libraries/vmime/default.nix
@@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
homepage = "https://www.vmime.org/";
description = "Free mail library for C++";
license = lib.licenses.gpl3;
- maintainers = with lib.maintainers; [viric];
+ maintainers = [ ];
platforms = with lib.platforms; linux;
};
}
diff --git a/pkgs/development/libraries/vxl/default.nix b/pkgs/development/libraries/vxl/default.nix
index 48b075add0b2..b7173ed93701 100644
--- a/pkgs/development/libraries/vxl/default.nix
+++ b/pkgs/development/libraries/vxl/default.nix
@@ -44,7 +44,7 @@ stdenv.mkDerivation (finalAttrs: {
# license appears contradictory; see https://github.com/vxl/vxl/issues/752
# (and see https://github.com/InsightSoftwareConsortium/ITK/pull/1920/files for potential patch)
license = [ lib.licenses.unfree ];
- maintainers = with lib.maintainers; [ viric ];
+ maintainers = [ ];
platforms = with lib.platforms; linux;
};
})
diff --git a/pkgs/development/node-packages/node-packages.nix b/pkgs/development/node-packages/node-packages.nix
index cc7b8f3b24ec..44c05331eada 100644
--- a/pkgs/development/node-packages/node-packages.nix
+++ b/pkgs/development/node-packages/node-packages.nix
@@ -13,13 +13,13 @@ let
sha512 = "E3Qku4mTzdrlwVWGPxklDnME5ANrEGetvYw4i2GCRlppWXXE4QD66j7pwb8HelZwS6LnqEChhrSOGCXpbiu6MQ==";
};
};
- "@adobe/css-tools-4.3.2" = {
+ "@adobe/css-tools-4.3.3" = {
name = "_at_adobe_slash_css-tools";
packageName = "@adobe/css-tools";
- version = "4.3.2";
+ version = "4.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@adobe/css-tools/-/css-tools-4.3.2.tgz";
- sha512 = "DA5a1C0gD/pLOvhv33YMrbf2FK3oUzwNl9oOJqE4XVjuEtt6XIakRcsd7eLiOSPkp1kTRQGICTA8cKra/vFbjw==";
+ url = "https://registry.npmjs.org/@adobe/css-tools/-/css-tools-4.3.3.tgz";
+ sha512 = "rE0Pygv0sEZ4vBWHlAgJLGDU7Pm8xoO6p3wsEceb7GYAjScrOHpEo8KK/eVkAcnSM+slAEtXjA2JpdjLp4fJQQ==";
};
};
"@alcalzone/ansi-tokenize-0.1.3" = {
@@ -49,31 +49,31 @@ let
sha512 = "30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==";
};
};
- "@angular-devkit/architect-0.1800.4" = {
+ "@angular-devkit/architect-0.1801.2" = {
name = "_at_angular-devkit_slash_architect";
packageName = "@angular-devkit/architect";
- version = "0.1800.4";
+ version = "0.1801.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1800.4.tgz";
- sha512 = "82TKhYnSO8aGIBo5TxPtyUQnZFcbV+qB2bIIYOAKsJgxAVxLeFD6QA6gTmHOZPXw5pBEPUO/+PUwq+Uk5xesgw==";
+ url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1801.2.tgz";
+ sha512 = "y2rV8wRwTnmCH/dUo632wHi6r41Gs9XucyGm/ybzB/5tN3x6dS+O3c3zajRpdqTUr8YcD6os6sT+Ay6zS31tOw==";
};
};
- "@angular-devkit/core-18.0.4" = {
+ "@angular-devkit/core-18.1.2" = {
name = "_at_angular-devkit_slash_core";
packageName = "@angular-devkit/core";
- version = "18.0.4";
+ version = "18.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@angular-devkit/core/-/core-18.0.4.tgz";
- sha512 = "8vYvJ5FF2NjFUia00hv8KWakOjOZ+09PbnNqd+lntJBekIg1lHDOF/vNMlVHtU5LiE1aNi9P/69/VXTckPfU9g==";
+ url = "https://registry.npmjs.org/@angular-devkit/core/-/core-18.1.2.tgz";
+ sha512 = "WYkdKT/Ime5seBX7S7S4aWQbgCG5U3otCvAg/XiMn6scexTo3EZe2jrJl8nxGGFHNWrePoD86LvJOxhnCkEKEA==";
};
};
- "@angular-devkit/schematics-18.0.4" = {
+ "@angular-devkit/schematics-18.1.2" = {
name = "_at_angular-devkit_slash_schematics";
packageName = "@angular-devkit/schematics";
- version = "18.0.4";
+ version = "18.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-18.0.4.tgz";
- sha512 = "hCHmuu/Z1teOQPx1AMJa/gcK6depk+XgU5dIpEvflC+ApW3hglNe2QKaqajDZ+34s+PKAVWa86M8IOV7o/mHuA==";
+ url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-18.1.2.tgz";
+ sha512 = "v8aCJ1tPPzXsdiCoZxkc6YzLGhzJgC/6QauT03/Z6wWo8uI6DKibQQwQBawRE5FN5lKDpuGlNDv40EDtVYkQSA==";
};
};
"@apidevtools/json-schema-ref-parser-9.0.6" = {
@@ -193,22 +193,13 @@ let
sha512 = "qrXI4+S8W7IF6e1nlDYX2KfdzxGHyAOj5kGvWk+TqBuAnA0rWQ513hJzdviiGpbB5VPnJkEhOVsDets8acKd6w==";
};
};
- "@astrojs/compiler-1.8.2" = {
+ "@astrojs/compiler-2.9.2" = {
name = "_at_astrojs_slash_compiler";
packageName = "@astrojs/compiler";
- version = "1.8.2";
+ version = "2.9.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@astrojs/compiler/-/compiler-1.8.2.tgz";
- sha512 = "o/ObKgtMzl8SlpIdzaxFnt7SATKPxu4oIP/1NL+HDJRzxfJcAkOTAb/ZKMRyULbz4q+1t2/DAebs2Z1QairkZw==";
- };
- };
- "@astrojs/compiler-2.8.0" = {
- name = "_at_astrojs_slash_compiler";
- packageName = "@astrojs/compiler";
- version = "2.8.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@astrojs/compiler/-/compiler-2.8.0.tgz";
- sha512 = "yrpD1WRGqsJwANaDIdtHo+YVjvIOFAjC83lu5qENIgrafwZcJgSXDuwVMXOgok4tFzpeKLsFQ6c3FoUdloLWBQ==";
+ url = "https://registry.npmjs.org/@astrojs/compiler/-/compiler-2.9.2.tgz";
+ sha512 = "Vpu0Ffsj8SoV+N0DFHlxxOMKHwSC9059Xy/OlG1t6uFYSoJXxkBC2WyF6igO7x10V+8uJrhOxaXr3nA90kJXow==";
};
};
"@asyncapi/specs-4.3.1" = {
@@ -391,13 +382,13 @@ let
sha512 = "PI6mjM0fmcV2fqkkRoivF3DYex4lnbEz7WIsOFAwpHJBbA9ykClQpiutCKcgl0x/yEWAeTNdQtrCVeAwbxYfvw==";
};
};
- "@aws-sdk/client-s3-3.598.0" = {
+ "@aws-sdk/client-s3-3.617.0" = {
name = "_at_aws-sdk_slash_client-s3";
packageName = "@aws-sdk/client-s3";
- version = "3.598.0";
+ version = "3.617.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.598.0.tgz";
- sha512 = "UMxftsgF6j1vzm4Qd9vQJHs2he1NQCWWV8esZfmNFq23OpUC2BPMxkqi13ZQ9tnTAZUNs7yFT/x4Zsi/wpRZEw==";
+ url = "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.617.0.tgz";
+ sha512 = "0f954CU42BhPFVRQCCBc1jAvV9N4XW9I3D4h7tJ8tzxft7fS62MSJkgxRIXNKgWKLeGR7DUbz+XGZ1R5e7pyjA==";
};
};
"@aws-sdk/client-sso-3.296.0" = {
@@ -409,13 +400,13 @@ let
sha512 = "0P0x++jhlmhzViFPOHvTb7+Z6tSV9aONwB8CchIseg2enSPBbGfml7y5gQu1jdOTDS6pBUmrPZ+9sOI4/GvAfA==";
};
};
- "@aws-sdk/client-sso-3.598.0" = {
+ "@aws-sdk/client-sso-3.616.0" = {
name = "_at_aws-sdk_slash_client-sso";
packageName = "@aws-sdk/client-sso";
- version = "3.598.0";
+ version = "3.616.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.598.0.tgz";
- sha512 = "nOI5lqPYa+YZlrrzwAJywJSw3MKVjvu6Ge2fCqQUNYMfxFB0NAaDFnl0EPjXi+sEbtCuz/uWE77poHbqiZ+7Iw==";
+ url = "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.616.0.tgz";
+ sha512 = "hwW0u1f8U4dSloAe61/eupUiGd5Q13B72BuzGxvRk0cIpYX/2m0KBG8DDl7jW1b2QQ+CflTLpG2XUf2+vRJxGA==";
};
};
"@aws-sdk/client-sso-oidc-3.296.0" = {
@@ -427,13 +418,13 @@ let
sha512 = "GRycCVdlFICvWwv9z6Mc/2BvSBOvchWO7UTklvbKXeDn6D05C+02PfxeoocMTc4r8/eFoEQWs67h5u/lPpyHDw==";
};
};
- "@aws-sdk/client-sso-oidc-3.598.0" = {
+ "@aws-sdk/client-sso-oidc-3.616.0" = {
name = "_at_aws-sdk_slash_client-sso-oidc";
packageName = "@aws-sdk/client-sso-oidc";
- version = "3.598.0";
+ version = "3.616.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.598.0.tgz";
- sha512 = "jfdH1pAO9Tt8Nkta/JJLoUnwl7jaRdxToQTJfUtE+o3+0JP5sA4LfC2rBkJSWcU5BdAA+kyOs5Lv776DlN04Vg==";
+ url = "https://registry.npmjs.org/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.616.0.tgz";
+ sha512 = "YY1hpYS/G1uRGjQf88dL8VLHkP/IjGxKeXdhy+JnzMdCkAWl3V9j0fEALw40NZe0x79gr6R2KUOUH/IKYQfUmg==";
};
};
"@aws-sdk/client-sts-3.296.0" = {
@@ -445,13 +436,13 @@ let
sha512 = "ew7hSVNpitnLCIRVhnI2L1HZB/yYpRQFReR62fOqCUnpKqm6WGga37bnvgYbY5y0Rv23C0VHARovwunVg1gabA==";
};
};
- "@aws-sdk/client-sts-3.598.0" = {
+ "@aws-sdk/client-sts-3.616.0" = {
name = "_at_aws-sdk_slash_client-sts";
packageName = "@aws-sdk/client-sts";
- version = "3.598.0";
+ version = "3.616.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.598.0.tgz";
- sha512 = "bXhz/cHL0iB9UH9IFtMaJJf4F8mV+HzncETCRFzZ9SyUMt5rP9j8A7VZknqGYSx/6mI8SsB1XJQkWSbhn6FiSQ==";
+ url = "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.616.0.tgz";
+ sha512 = "FP7i7hS5FpReqnysQP1ukQF1OUWy8lkomaOnbu15H415YUrfCp947SIx6+BItjmx+esKxPkEjh/fbCVzw2D6hQ==";
};
};
"@aws-sdk/config-resolver-3.296.0" = {
@@ -463,13 +454,13 @@ let
sha512 = "Ecdp7fmIitHo49NRCyIEHb9xlI43J7qkvhcwaKGGqN5jvoh0YhR2vNr195wWG8Ip/9PwsD4QV4g/XT5EY7XkMA==";
};
};
- "@aws-sdk/core-3.598.0" = {
+ "@aws-sdk/core-3.616.0" = {
name = "_at_aws-sdk_slash_core";
packageName = "@aws-sdk/core";
- version = "3.598.0";
+ version = "3.616.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/core/-/core-3.598.0.tgz";
- sha512 = "HaSjt7puO5Cc7cOlrXFCW0rtA0BM9lvzjl56x0A20Pt+0wxXGeTOZZOkXQIepbrFkV2e/HYukuT9e99vXDm59g==";
+ url = "https://registry.npmjs.org/@aws-sdk/core/-/core-3.616.0.tgz";
+ sha512 = "O/urkh2kECs/IqZIVZxyeyHZ7OR2ZWhLNK7btsVQBQvJKrEspLrk/Fp20Qfg5JDerQfBN83ZbyRXLJOOucdZpw==";
};
};
"@aws-sdk/credential-provider-env-3.296.0" = {
@@ -481,22 +472,22 @@ let
sha512 = "eDWSU3p04gytkkVXnYn05YzrP5SEaj/DQiafd4y+iBl8IFfF3zM6982rs6qFhvpwrHeSbLqHNfKR1HDWVwfG5g==";
};
};
- "@aws-sdk/credential-provider-env-3.598.0" = {
+ "@aws-sdk/credential-provider-env-3.609.0" = {
name = "_at_aws-sdk_slash_credential-provider-env";
packageName = "@aws-sdk/credential-provider-env";
- version = "3.598.0";
+ version = "3.609.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.598.0.tgz";
- sha512 = "vi1khgn7yXzLCcgSIzQrrtd2ilUM0dWodxj3PQ6BLfP0O+q1imO3hG1nq7DVyJtq7rFHs6+9N8G4mYvTkxby2w==";
+ url = "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.609.0.tgz";
+ sha512 = "v69ZCWcec2iuV9vLVJMa6fAb5xwkzN4jYIT8yjo2c4Ia/j976Q+TPf35Pnz5My48Xr94EFcaBazrWedF+kwfuQ==";
};
};
- "@aws-sdk/credential-provider-http-3.598.0" = {
+ "@aws-sdk/credential-provider-http-3.616.0" = {
name = "_at_aws-sdk_slash_credential-provider-http";
packageName = "@aws-sdk/credential-provider-http";
- version = "3.598.0";
+ version = "3.616.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.598.0.tgz";
- sha512 = "N7cIafi4HVlQvEgvZSo1G4T9qb/JMLGMdBsDCT5XkeJrF0aptQWzTFH0jIdZcLrMYvzPcuEyO3yCBe6cy/ba0g==";
+ url = "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.616.0.tgz";
+ sha512 = "1rgCkr7XvEMBl7qWCo5BKu3yAxJs71dRaZ55Xnjte/0ZHH6Oc93ZrHzyYy6UH6t0nZrH+FAuw7Yko2YtDDwDeg==";
};
};
"@aws-sdk/credential-provider-imds-3.296.0" = {
@@ -517,13 +508,13 @@ let
sha512 = "U0ecY0GX2jeDAgmTzaVO9YgjlLUfb8wgZSu1OwbOxCJscL/5eFkhcF0/xJQXDbRgcj4H4dlquqeSWsBVl/PgvQ==";
};
};
- "@aws-sdk/credential-provider-ini-3.598.0" = {
+ "@aws-sdk/credential-provider-ini-3.616.0" = {
name = "_at_aws-sdk_slash_credential-provider-ini";
packageName = "@aws-sdk/credential-provider-ini";
- version = "3.598.0";
+ version = "3.616.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.598.0.tgz";
- sha512 = "/ppcIVUbRwDIwJDoYfp90X3+AuJo2mvE52Y1t2VSrvUovYn6N4v95/vXj6LS8CNDhz2jvEJYmu+0cTMHdhI6eA==";
+ url = "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.616.0.tgz";
+ sha512 = "5gQdMr9cca3xV7FF2SxpxWGH2t6+t4o+XBGiwsHm8muEjf4nUmw7Ij863x25Tjt2viPYV0UStczSb5Sihp7bkA==";
};
};
"@aws-sdk/credential-provider-node-3.296.0" = {
@@ -535,13 +526,13 @@ let
sha512 = "oCkmh2b1DQhHkhd/qA9jiSIOkrBBK7cMg1/PVIgLw8e15NkzUHBObLJ/ZQw6ZzCxZzjlMYaFv9oCB8hyO8txmA==";
};
};
- "@aws-sdk/credential-provider-node-3.598.0" = {
+ "@aws-sdk/credential-provider-node-3.616.0" = {
name = "_at_aws-sdk_slash_credential-provider-node";
packageName = "@aws-sdk/credential-provider-node";
- version = "3.598.0";
+ version = "3.616.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.598.0.tgz";
- sha512 = "sXTlqL5I/awlF9Dg2MQ17SfrEaABVnsj2mf4jF5qQrIRhfbvQOIYdEqdy8Rn1AWlJMz/N450SGzc0XJ5owxxqw==";
+ url = "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.616.0.tgz";
+ sha512 = "Se+u6DAxjDPjKE3vX1X2uxjkWgGq69BTo0uTB0vDUiWwBVgh16s9BsBhSAlKEH1CCbbJHvOg4YdTrzjwzqyClg==";
};
};
"@aws-sdk/credential-provider-process-3.296.0" = {
@@ -553,13 +544,13 @@ let
sha512 = "AY7sTX2dGi8ripuCpcJLYHOZB2wJ6NnseyK/kK5TfJn/pgboKwuGtz0hkJCVprNWomKa6IpHksm7vLQ4O2E+UA==";
};
};
- "@aws-sdk/credential-provider-process-3.598.0" = {
+ "@aws-sdk/credential-provider-process-3.614.0" = {
name = "_at_aws-sdk_slash_credential-provider-process";
packageName = "@aws-sdk/credential-provider-process";
- version = "3.598.0";
+ version = "3.614.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.598.0.tgz";
- sha512 = "rM707XbLW8huMk722AgjVyxu2tMZee++fNA8TJVNgs1Ma02Wx6bBrfIvlyK0rCcIRb0WdQYP6fe3Xhiu4e8IBA==";
+ url = "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.614.0.tgz";
+ sha512 = "Q0SI0sTRwi8iNODLs5+bbv8vgz8Qy2QdxbCHnPk/6Cx6LMf7i3dqmWquFbspqFRd8QiqxStrblwxrUYZi09tkA==";
};
};
"@aws-sdk/credential-provider-sso-3.296.0" = {
@@ -571,13 +562,13 @@ let
sha512 = "zPFHDX/niXfcQrKQhmBv1XPYEe4b7im4vRKrzjYXgDRpG2M3LP0KaWIwN6Ap+GRYBNBthen86vhTlmKGzyU5YA==";
};
};
- "@aws-sdk/credential-provider-sso-3.598.0" = {
+ "@aws-sdk/credential-provider-sso-3.616.0" = {
name = "_at_aws-sdk_slash_credential-provider-sso";
packageName = "@aws-sdk/credential-provider-sso";
- version = "3.598.0";
+ version = "3.616.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.598.0.tgz";
- sha512 = "5InwUmrAuqQdOOgxTccRayMMkSmekdLk6s+az9tmikq0QFAHUCtofI+/fllMXSR9iL6JbGYi1940+EUmS4pHJA==";
+ url = "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.616.0.tgz";
+ sha512 = "3rsWs9GBi8Z8Gps5ROwqguxtw+J6OIg1vawZMLRNMqqZoBvbOToe9wEnpid8ylU+27+oG8uibJNlNuRyXApUjw==";
};
};
"@aws-sdk/credential-provider-web-identity-3.296.0" = {
@@ -589,13 +580,13 @@ let
sha512 = "Rl6Ohoekxe+pccA55XXQDW5wApbg3rGWr6FkmPRcg7Ld6Vfe+HL8OtfsFf83/0eoFerevbif+00BdknXWT05LA==";
};
};
- "@aws-sdk/credential-provider-web-identity-3.598.0" = {
+ "@aws-sdk/credential-provider-web-identity-3.609.0" = {
name = "_at_aws-sdk_slash_credential-provider-web-identity";
packageName = "@aws-sdk/credential-provider-web-identity";
- version = "3.598.0";
+ version = "3.609.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.598.0.tgz";
- sha512 = "GV5GdiMbz5Tz9JO4NJtRoFXjW0GPEujA0j+5J/B723rTN+REHthJu48HdBKouHGhdzkDWkkh1bu52V02Wprw8w==";
+ url = "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.609.0.tgz";
+ sha512 = "U+PG8NhlYYF45zbr1km3ROtBMYqyyj/oK8NRp++UHHeuavgrP+4wJ4wQnlEaKvJBjevfo3+dlIBcaeQ7NYejWg==";
};
};
"@aws-sdk/eventstream-codec-3.296.0" = {
@@ -697,13 +688,13 @@ let
sha512 = "SCIt10cr5dud7hvwveU4wkLjvkGssJ3GrcbHCds2NwI+JHmpcaaNYLAqi305JAuT29T36U5ssTFDSmrrEOcfag==";
};
};
- "@aws-sdk/lib-storage-3.598.0" = {
+ "@aws-sdk/lib-storage-3.617.0" = {
name = "_at_aws-sdk_slash_lib-storage";
packageName = "@aws-sdk/lib-storage";
- version = "3.598.0";
+ version = "3.617.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/lib-storage/-/lib-storage-3.598.0.tgz";
- sha512 = "la1ZY8MHH6oGUZ6nocl+2ebGNhkzgE15dB5iC0ZPHjfW0aNEfcrF2crGVxnkJQFv0LeDPQN26drajlmLnq86UA==";
+ url = "https://registry.npmjs.org/@aws-sdk/lib-storage/-/lib-storage-3.617.0.tgz";
+ sha512 = "bR+3E66Dp3CyuSGywxMSwrYQCfwuFu7gRJxOpk1i2AKV1Wh7g0y1eANXHVKnk+UbVRz4S53UCD8LEiKp2KYShA==";
};
};
"@aws-sdk/md5-js-3.296.0" = {
@@ -724,13 +715,13 @@ let
sha512 = "Xhzucs5psscjXJW7V6vMrjJWGmej8Xtw8XIKd91RLmbxdmecMy85/mQC3bIqxgTGhC/e3pKqWSp8z/YjV6iPZg==";
};
};
- "@aws-sdk/middleware-bucket-endpoint-3.598.0" = {
+ "@aws-sdk/middleware-bucket-endpoint-3.616.0" = {
name = "_at_aws-sdk_slash_middleware-bucket-endpoint";
packageName = "@aws-sdk/middleware-bucket-endpoint";
- version = "3.598.0";
+ version = "3.616.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/middleware-bucket-endpoint/-/middleware-bucket-endpoint-3.598.0.tgz";
- sha512 = "PM7BcFfGUSkmkT6+LU9TyJiB4S8yI7dfuKQDwK5ZR3P7MKaK4Uj4yyDiv0oe5xvkF6+O2+rShj+eh8YuWkOZ/Q==";
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-bucket-endpoint/-/middleware-bucket-endpoint-3.616.0.tgz";
+ sha512 = "KZv78s8UE7+s3qZCfG3pE9U9XV5WTP478aNWis5gDXmsb5LF7QWzEeR8kve5dnjNlK6qVQ33v+mUZa6lR5PwMw==";
};
};
"@aws-sdk/middleware-content-length-3.296.0" = {
@@ -760,13 +751,13 @@ let
sha512 = "aVCv9CdAVWt9AlZKQZRweIywkAszRrZUCo8K5bBUJNdD4061DoDqLK/6jmqXmObas0j1wQr/eNzjYbv99MZBCg==";
};
};
- "@aws-sdk/middleware-expect-continue-3.598.0" = {
+ "@aws-sdk/middleware-expect-continue-3.616.0" = {
name = "_at_aws-sdk_slash_middleware-expect-continue";
packageName = "@aws-sdk/middleware-expect-continue";
- version = "3.598.0";
+ version = "3.616.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/middleware-expect-continue/-/middleware-expect-continue-3.598.0.tgz";
- sha512 = "ZuHW18kaeHR8TQyhEOYMr8VwiIh0bMvF7J1OTqXHxDteQIavJWA3CbfZ9sgS4XGtrBZDyHJhjZKeCfLhN2rq3w==";
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-expect-continue/-/middleware-expect-continue-3.616.0.tgz";
+ sha512 = "IM1pfJPm7pDUXa55js9bnGjS8o3ldzDwf95mL9ZAYdEsm10q6i0ZxZbbro2gTq25Ap5ykdeeS34lOSzIqPiW1A==";
};
};
"@aws-sdk/middleware-flexible-checksums-3.296.0" = {
@@ -778,13 +769,13 @@ let
sha512 = "F5wVMhLIgA86PKsK/Az7LGIiNVDdZjoSn0+boe6fYW/AIAmgJhPf//500Md0GsKsLOCcPcxiQC43a0hVT2zbew==";
};
};
- "@aws-sdk/middleware-flexible-checksums-3.598.0" = {
+ "@aws-sdk/middleware-flexible-checksums-3.616.0" = {
name = "_at_aws-sdk_slash_middleware-flexible-checksums";
packageName = "@aws-sdk/middleware-flexible-checksums";
- version = "3.598.0";
+ version = "3.616.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.598.0.tgz";
- sha512 = "xukAzds0GQXvMEY9G6qt+CzwVzTx8NyKKh04O2Q+nOch6QQ8Rs+2kTRy3Z4wQmXq2pK9hlOWb5nXA7HWpmz6Ng==";
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.616.0.tgz";
+ sha512 = "Mrco/dURoTXVqwcnYRcyrFaPTIg36ifg2PK0kUYfSVTGEOClZOQXlVG5zYCZoo3yEMgy/gLT907FjUQxwoifIw==";
};
};
"@aws-sdk/middleware-host-header-3.296.0" = {
@@ -796,13 +787,13 @@ let
sha512 = "V47dFtfkX5lXWv9GDp71gZVCRws4fEdQ9QF9BQ/2UMSNrYjQLg6mFe7NibH+IJoNOid2FIwWIl94Eos636VGYQ==";
};
};
- "@aws-sdk/middleware-host-header-3.598.0" = {
+ "@aws-sdk/middleware-host-header-3.616.0" = {
name = "_at_aws-sdk_slash_middleware-host-header";
packageName = "@aws-sdk/middleware-host-header";
- version = "3.598.0";
+ version = "3.616.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.598.0.tgz";
- sha512 = "WiaG059YBQwQraNejLIi0gMNkX7dfPZ8hDIhvMr5aVPRbaHH8AYF3iNSsXYCHvA2Cfa1O9haYXsuMF9flXnCmA==";
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.616.0.tgz";
+ sha512 = "mhNfHuGhCDZwYCABebaOvTgOM44UCZZRq2cBpgPZLVKP0ydAv5aFHXv01goexxXHqgHoEGx0uXWxlw0s2EpFDg==";
};
};
"@aws-sdk/middleware-location-constraint-3.296.0" = {
@@ -814,13 +805,13 @@ let
sha512 = "KHkWaIrZOtJmV1/WO9KOf7kSK41ngfqts3YIun956NYglKTDKyrBIOPCgmXTT/03odnYsKVT/UfbEIh/v4RxGA==";
};
};
- "@aws-sdk/middleware-location-constraint-3.598.0" = {
+ "@aws-sdk/middleware-location-constraint-3.609.0" = {
name = "_at_aws-sdk_slash_middleware-location-constraint";
packageName = "@aws-sdk/middleware-location-constraint";
- version = "3.598.0";
+ version = "3.609.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/middleware-location-constraint/-/middleware-location-constraint-3.598.0.tgz";
- sha512 = "8oybQxN3F1ISOMULk7JKJz5DuAm5hCUcxMW9noWShbxTJuStNvuHf/WLUzXrf8oSITyYzIHPtf8VPlKR7I3orQ==";
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-location-constraint/-/middleware-location-constraint-3.609.0.tgz";
+ sha512 = "xzsdoTkszGVqGVPjUmgoP7TORiByLueMHieI1fhQL888WPdqctwAx3ES6d/bA9Q/i8jnc6hs+Fjhy8UvBTkE9A==";
};
};
"@aws-sdk/middleware-logger-3.296.0" = {
@@ -832,13 +823,13 @@ let
sha512 = "LzfEEFyBR9LXdWwLdtBrmi1vLdzgdJNntEgzqktVF8LwaCyY+9xIE6TGu/2V+9fJHAwECxjOC1eQbNQdAZ0Tmw==";
};
};
- "@aws-sdk/middleware-logger-3.598.0" = {
+ "@aws-sdk/middleware-logger-3.609.0" = {
name = "_at_aws-sdk_slash_middleware-logger";
packageName = "@aws-sdk/middleware-logger";
- version = "3.598.0";
+ version = "3.609.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.598.0.tgz";
- sha512 = "bxBjf/VYiu3zfu8SYM2S9dQQc3tz5uBAOcPz/Bt8DyyK3GgOpjhschH/2XuUErsoUO1gDJqZSdGOmuHGZQn00Q==";
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.609.0.tgz";
+ sha512 = "S62U2dy4jMDhDFDK5gZ4VxFdWzCtLzwbYyFZx2uvPYTECkepLUfzLic2BHg2Qvtu4QjX+oGE3P/7fwaGIsGNuQ==";
};
};
"@aws-sdk/middleware-recursion-detection-3.296.0" = {
@@ -850,13 +841,13 @@ let
sha512 = "UG7TLDPz9ImQG0uVklHTxE9Us7rTImwN+6el6qZCpoTBuGeXgOkfb0/p8izJyFgY/hMUR4cZqs7IdCDUkxQF3w==";
};
};
- "@aws-sdk/middleware-recursion-detection-3.598.0" = {
+ "@aws-sdk/middleware-recursion-detection-3.616.0" = {
name = "_at_aws-sdk_slash_middleware-recursion-detection";
packageName = "@aws-sdk/middleware-recursion-detection";
- version = "3.598.0";
+ version = "3.616.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.598.0.tgz";
- sha512 = "vjT9BeFY9FeN0f8hm2l6F53tI0N5bUq6RcDkQXKNabXBnQxKptJRad6oP2X5y3FoVfBLOuDkQgiC2940GIPxtQ==";
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.616.0.tgz";
+ sha512 = "LQKAcrZRrR9EGez4fdCIVjdn0Ot2HMN12ChnoMGEU6oIxnQ2aSC7iASFFCV39IYfeMh7iSCPj7Wopqw8rAouzg==";
};
};
"@aws-sdk/middleware-retry-3.296.0" = {
@@ -877,13 +868,13 @@ let
sha512 = "zH4uZKEqumo01wn+dTwrYnvOui9GjDiuBHdECnSjnA0Mkxo/tfMPYzYD7mE8kUlBz7HfQcXeXlyaApj9fPkxvg==";
};
};
- "@aws-sdk/middleware-sdk-s3-3.598.0" = {
+ "@aws-sdk/middleware-sdk-s3-3.617.0" = {
name = "_at_aws-sdk_slash_middleware-sdk-s3";
packageName = "@aws-sdk/middleware-sdk-s3";
- version = "3.598.0";
+ version = "3.617.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.598.0.tgz";
- sha512 = "5AGtLAh9wyK6ANPYfaKTqJY1IFJyePIxsEbxa7zS6REheAqyVmgJFaGu3oQ5XlxfGr5Uq59tFTRkyx26G1HkHA==";
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.617.0.tgz";
+ sha512 = "zVOS6sNGcLGhq7i+5POmVqmSPNmrQYDFsynpnWMSLsNaej+xvkdSOnytLrUvag3Du4kAxfO5NNIC0GuNj9lcCg==";
};
};
"@aws-sdk/middleware-sdk-sts-3.296.0" = {
@@ -913,13 +904,13 @@ let
sha512 = "wyiG+WPDvugGTIPpKchGOdvvpcMZEN2IfP6iK//QAqGXsC6rDm5+SNZ3+elvduZjPUdVA06W0CcFYBAkVz8D7Q==";
};
};
- "@aws-sdk/middleware-signing-3.598.0" = {
+ "@aws-sdk/middleware-signing-3.616.0" = {
name = "_at_aws-sdk_slash_middleware-signing";
packageName = "@aws-sdk/middleware-signing";
- version = "3.598.0";
+ version = "3.616.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/middleware-signing/-/middleware-signing-3.598.0.tgz";
- sha512 = "XKb05DYx/aBPqz6iCapsCbIl8aD8EihTuPCs51p75QsVfbQoVr4TlFfIl5AooMSITzojdAQqxt021YtvxjtxIQ==";
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-signing/-/middleware-signing-3.616.0.tgz";
+ sha512 = "wwzZFlXyURwo40oz1NmufreQa5DqwnCF8hR8tIP5+oKCyhbkmlmv8xG4Wn51bzY2WEbQhvFebgZSFTEvelCoCg==";
};
};
"@aws-sdk/middleware-ssec-3.296.0" = {
@@ -931,13 +922,13 @@ let
sha512 = "vcSyXxEXAC9rWzUd7rq2/JxPdt87DKiA+wfiBrpGvFV+bacocIV0TFcpJncgZqMOoP8b6Osd+mW4BjlkwBamtA==";
};
};
- "@aws-sdk/middleware-ssec-3.598.0" = {
+ "@aws-sdk/middleware-ssec-3.609.0" = {
name = "_at_aws-sdk_slash_middleware-ssec";
packageName = "@aws-sdk/middleware-ssec";
- version = "3.598.0";
+ version = "3.609.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/middleware-ssec/-/middleware-ssec-3.598.0.tgz";
- sha512 = "f0p2xP8IC1uJ5e/tND1l81QxRtRFywEdnbtKCE0H6RSn4UIt2W3Dohe1qQDbnh27okF0PkNW6BJGdSAz3p7qbA==";
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-ssec/-/middleware-ssec-3.609.0.tgz";
+ sha512 = "GZSD1s7+JswWOTamVap79QiDaIV7byJFssBW68GYjyRS5EBjNfwA/8s+6uE6g39R3ojyTbYOmvcANoZEhSULXg==";
};
};
"@aws-sdk/middleware-stack-3.296.0" = {
@@ -958,13 +949,13 @@ let
sha512 = "L7jacxSt6gxX1gD3tQtfwHqBDk5rT2wWD3rxBa6rs7f81b9ObgY/sPT2IgRT7JNCVzvKLYFxJaTklDj65mY1SQ==";
};
};
- "@aws-sdk/middleware-user-agent-3.598.0" = {
+ "@aws-sdk/middleware-user-agent-3.616.0" = {
name = "_at_aws-sdk_slash_middleware-user-agent";
packageName = "@aws-sdk/middleware-user-agent";
- version = "3.598.0";
+ version = "3.616.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.598.0.tgz";
- sha512 = "4tjESlHG5B5MdjUaLK7tQs/miUtHbb6deauQx8ryqSBYOhfHVgb1ZnzvQR0bTrhpqUg0WlybSkDaZAICf9xctg==";
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.616.0.tgz";
+ sha512 = "iMcAb4E+Z3vuEcrDsG6T2OBNiqWAquwahP9qepHqfmnmJqHr1mSHtXDYTGBNid31+621sUQmneUQ+fagpGAe4w==";
};
};
"@aws-sdk/node-config-provider-3.296.0" = {
@@ -1021,22 +1012,22 @@ let
sha512 = "nLNZKVQfK42euv7101cE5qfg17YCtGcfccx3B5XSAzvyTROR46kwYqbEvYSsWisbZoRhbQc905gB/5E0U5HDIw==";
};
};
- "@aws-sdk/region-config-resolver-3.598.0" = {
+ "@aws-sdk/region-config-resolver-3.614.0" = {
name = "_at_aws-sdk_slash_region-config-resolver";
packageName = "@aws-sdk/region-config-resolver";
- version = "3.598.0";
+ version = "3.614.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.598.0.tgz";
- sha512 = "oYXhmTokSav4ytmWleCr3rs/1nyvZW/S0tdi6X7u+dLNL5Jee+uMxWGzgOrWK6wrQOzucLVjS4E/wA11Kv2GTw==";
+ url = "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.614.0.tgz";
+ sha512 = "vDCeMXvic/LU0KFIUjpC3RiSTIkkvESsEfbVHiHH0YINfl8HnEqR5rj+L8+phsCeVg2+LmYwYxd5NRz4PHxt5g==";
};
};
- "@aws-sdk/s3-presigned-post-3.598.0" = {
+ "@aws-sdk/s3-presigned-post-3.617.0" = {
name = "_at_aws-sdk_slash_s3-presigned-post";
packageName = "@aws-sdk/s3-presigned-post";
- version = "3.598.0";
+ version = "3.617.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/s3-presigned-post/-/s3-presigned-post-3.598.0.tgz";
- sha512 = "FH4htNIfh+wyYP0nKPCGOboFnSGe98xhipf0Uu9FZkMonxqMwUMj8tVhYE9YlrFxwhgUVY9Mca0/z4o0rgoWSw==";
+ url = "https://registry.npmjs.org/@aws-sdk/s3-presigned-post/-/s3-presigned-post-3.617.0.tgz";
+ sha512 = "5PCjZ3vux7FvlJYtVbXQZCO6J4yGPaZlWxgt1XdX43wcXe2GNWhxHB9OvCmKOJR2N379Ihw/ABq8UWze6LIzxA==";
};
};
"@aws-sdk/s3-request-presigner-3.296.0" = {
@@ -1048,13 +1039,13 @@ let
sha512 = "BQv+oNA5EzJymrfh7cnMun/ougmTX3eo6bGCWn/bQdL1LyxodeVdRZacD5tN+lAUYtjhQ7yS23ozYh0lvWNEXw==";
};
};
- "@aws-sdk/s3-request-presigner-3.598.0" = {
+ "@aws-sdk/s3-request-presigner-3.617.0" = {
name = "_at_aws-sdk_slash_s3-request-presigner";
packageName = "@aws-sdk/s3-request-presigner";
- version = "3.598.0";
+ version = "3.617.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/s3-request-presigner/-/s3-request-presigner-3.598.0.tgz";
- sha512 = "IC06/HrZNlYxdyKH5+4A9B98NwcxJjgXOSUV581X7GpqHHspZ0T6tih8shBus3zzW8WfVqRAhJVwZtfMY55hdw==";
+ url = "https://registry.npmjs.org/@aws-sdk/s3-request-presigner/-/s3-request-presigner-3.617.0.tgz";
+ sha512 = "zszOwBmu3Ei5rRgddcQ3sbKFCtzLtUNDcmeybh4OhxENfgzHZHOeTOt8C+C16DD5YDQqeP4JYPRUp0LPuybkvg==";
};
};
"@aws-sdk/service-error-classification-3.296.0" = {
@@ -1084,13 +1075,13 @@ let
sha512 = "NQyJ/FClty4VmF1WoV4rOkbN0Unn0zevzy8iJrYhqxE3Sc7lySM4Btnsd4Iqelm2dR6l+jNRApGgD8NvoGjGig==";
};
};
- "@aws-sdk/signature-v4-crt-3.598.0" = {
+ "@aws-sdk/signature-v4-crt-3.617.0" = {
name = "_at_aws-sdk_slash_signature-v4-crt";
packageName = "@aws-sdk/signature-v4-crt";
- version = "3.598.0";
+ version = "3.617.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/signature-v4-crt/-/signature-v4-crt-3.598.0.tgz";
- sha512 = "laxTj/Ieq13nLHCcIl983ySD0lzIxWVaAik90zcXFH8nLNWwuR4V/Yfz9pcrnWZxF4taUi0CPwZbij9FKftPXg==";
+ url = "https://registry.npmjs.org/@aws-sdk/signature-v4-crt/-/signature-v4-crt-3.617.0.tgz";
+ sha512 = "mTZ438M8VYQhupltwKXOJCBA/WFdd9PCYjRwmbFv3b1QpOMWr5VQYldbz6lwKqOcv0N93PJkNFZnHBC//DTw5A==";
};
};
"@aws-sdk/signature-v4-multi-region-3.296.0" = {
@@ -1102,13 +1093,13 @@ let
sha512 = "BNMXS0YJEgflPhO2KxXG4f0iTMOGdyxslDMNGmMWGGQm6bbwtqZ7Y9ZyMQYKfzk3GUPpfGQcaaSNiGfURPOCOg==";
};
};
- "@aws-sdk/signature-v4-multi-region-3.598.0" = {
+ "@aws-sdk/signature-v4-multi-region-3.617.0" = {
name = "_at_aws-sdk_slash_signature-v4-multi-region";
packageName = "@aws-sdk/signature-v4-multi-region";
- version = "3.598.0";
+ version = "3.617.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.598.0.tgz";
- sha512 = "1r/EyTrO1gSa1FirnR8V7mabr7gk+l+HkyTI0fcTSr8ucB7gmYyW6WjkY8JCz13VYHFK62usCEDS7yoJoJOzTA==";
+ url = "https://registry.npmjs.org/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.617.0.tgz";
+ sha512 = "kGbLs9q0/ziuzA1huf0BBh05ChxDeZ8ZWc/kedb80ocq6izOLaGgeqqUR8oB0ianwjel4AQq/iv1fsOIt3wmAA==";
};
};
"@aws-sdk/smithy-client-3.296.0" = {
@@ -1129,13 +1120,13 @@ let
sha512 = "yC1ku7A5S+o/CLlgbgDB2bx8+Wq43qj8xfohmTuIhpiP2m/NyUiRVv6S6ARONLI6bVeo1T2/BFk5Q9DfE2xzAQ==";
};
};
- "@aws-sdk/token-providers-3.598.0" = {
+ "@aws-sdk/token-providers-3.614.0" = {
name = "_at_aws-sdk_slash_token-providers";
packageName = "@aws-sdk/token-providers";
- version = "3.598.0";
+ version = "3.614.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.598.0.tgz";
- sha512 = "TKY1EVdHVBnZqpyxyTHdpZpa1tUpb6nxVeRNn1zWG8QB5MvH4ALLd/jR+gtmWDNQbIG4cVuBOZFVL8hIYicKTA==";
+ url = "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.614.0.tgz";
+ sha512 = "okItqyY6L9IHdxqs+Z116y5/nda7rHxLvROxtAJdLavWTYDydxrZstImNgGWTeVdmc0xX2gJCI77UYUTQWnhRw==";
};
};
"@aws-sdk/types-3.296.0" = {
@@ -1147,13 +1138,13 @@ let
sha512 = "s0wIac64rrMEo2ioUxP9IarGiiCGmelCspNcoNTPSjGl25QqjhyfQqTeGgS58qJ4fHoQb07qra39930xp1IzJg==";
};
};
- "@aws-sdk/types-3.598.0" = {
+ "@aws-sdk/types-3.609.0" = {
name = "_at_aws-sdk_slash_types";
packageName = "@aws-sdk/types";
- version = "3.598.0";
+ version = "3.609.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/types/-/types-3.598.0.tgz";
- sha512 = "742uRl6z7u0LFmZwDrFP6r1wlZcgVPw+/TilluDJmCAR8BgRw3IR+743kUXKBGd8QZDRW2n6v/PYsi/AWCDDMQ==";
+ url = "https://registry.npmjs.org/@aws-sdk/types/-/types-3.609.0.tgz";
+ sha512 = "+Tqnh9w0h2LcrUsdXyT1F8mNhXz+tVYBtP19LpeEGntmvHwa2XzvLUCWpoIAIVsHp5+HdB2X9Sn0KAtmbFXc2Q==";
};
};
"@aws-sdk/url-parser-3.296.0" = {
@@ -1264,13 +1255,13 @@ let
sha512 = "YraGGLJepXM6HCTaqEGTFf8RFRBdJ0C6uG5k0kVhiXmYxBkeupn8J07CVp9jfWqcPYWElAnMGVEZKU1OjRo4HQ==";
};
};
- "@aws-sdk/util-endpoints-3.598.0" = {
+ "@aws-sdk/util-endpoints-3.614.0" = {
name = "_at_aws-sdk_slash_util-endpoints";
packageName = "@aws-sdk/util-endpoints";
- version = "3.598.0";
+ version = "3.614.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.598.0.tgz";
- sha512 = "Qo9UoiVVZxcOEdiOMZg3xb1mzkTxrhd4qSlg5QQrfWPJVx/QOg+Iy0NtGxPtHtVZNHZxohYwDwV/tfsnDSE2gQ==";
+ url = "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.614.0.tgz";
+ sha512 = "wK2cdrXHH4oz4IomV/yrGkftU9A+ITB6nFL+rxxyO78is2ifHJpFdV4aqk4LSkXYPi6CXWNru/Dqc7yiKXgJPw==";
};
};
"@aws-sdk/util-format-url-3.296.0" = {
@@ -1282,13 +1273,13 @@ let
sha512 = "CcYECzkUAnHL5q3uyPicafn2OY0GiklIYfuOUHPZ/4FMxIesd1BnCDDRjTlFxLWjuNuiihIdwB7Qb1pDzxc3Iw==";
};
};
- "@aws-sdk/util-format-url-3.598.0" = {
+ "@aws-sdk/util-format-url-3.609.0" = {
name = "_at_aws-sdk_slash_util-format-url";
packageName = "@aws-sdk/util-format-url";
- version = "3.598.0";
+ version = "3.609.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/util-format-url/-/util-format-url-3.598.0.tgz";
- sha512 = "1X0PlREk5K6tQg8rFZOjoKVtDyI1WgbKJNCymHhMye6STryY6fhuuayKstiDThkqDYxqahjUJz/Tl2p5W3rbcw==";
+ url = "https://registry.npmjs.org/@aws-sdk/util-format-url/-/util-format-url-3.609.0.tgz";
+ sha512 = "fuk29BI/oLQlJ7pfm6iJ4gkEpHdavffAALZwXh9eaY1vQ0ip0aKfRTiNudPoJjyyahnz5yJ1HkmlcDitlzsOrQ==";
};
};
"@aws-sdk/util-hex-encoding-3.295.0" = {
@@ -1363,13 +1354,13 @@ let
sha512 = "MGGG+09VkF0N+8KEht8NNE6Q7bqmddgqLkUbvzSky0y18UPEZyq9LTC4JZtzDDOzf/swgbq2IQ/5wtB81iouog==";
};
};
- "@aws-sdk/util-user-agent-browser-3.598.0" = {
+ "@aws-sdk/util-user-agent-browser-3.609.0" = {
name = "_at_aws-sdk_slash_util-user-agent-browser";
packageName = "@aws-sdk/util-user-agent-browser";
- version = "3.598.0";
+ version = "3.609.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.598.0.tgz";
- sha512 = "36Sxo6F+ykElaL1mWzWjlg+1epMpSe8obwhCN1yGE7Js9ywy5U6k6l+A3q3YM9YRbm740sNxncbwLklMvuhTKw==";
+ url = "https://registry.npmjs.org/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.609.0.tgz";
+ sha512 = "fojPU+mNahzQ0YHYBsx0ZIhmMA96H+ZIZ665ObU9tl+SGdbLneVZVikGve+NmHTQwHzwkFsZYYnVKAkreJLAtA==";
};
};
"@aws-sdk/util-user-agent-node-3.296.0" = {
@@ -1381,13 +1372,13 @@ let
sha512 = "AMWac8aIBnaa9nxAEpZ752j29a/UQTViRfR5gnCX38ECBKGfOQMpgYnee5HdlMr4GHJj0WkOzQxBtInW4pV58g==";
};
};
- "@aws-sdk/util-user-agent-node-3.598.0" = {
+ "@aws-sdk/util-user-agent-node-3.614.0" = {
name = "_at_aws-sdk_slash_util-user-agent-node";
packageName = "@aws-sdk/util-user-agent-node";
- version = "3.598.0";
+ version = "3.614.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.598.0.tgz";
- sha512 = "oyWGcOlfTdzkC6SVplyr0AGh54IMrDxbhg5RxJ5P+V4BKfcDoDcZV9xenUk9NsOi9MuUjxMumb9UJGkDhM1m0A==";
+ url = "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.614.0.tgz";
+ sha512 = "15ElZT88peoHnq5TEoEtZwoXTXRxNrk60TZNdpl/TUBJ5oNJ9Dqb5Z4ryb8ofN6nm9aFf59GVAerFDz8iUoHBA==";
};
};
"@aws-sdk/util-utf8-3.295.0" = {
@@ -1426,13 +1417,13 @@ let
sha512 = "7VX3Due7Ip73yfYErFDHZvhgBohC4IyMTfW49DI4C/LFKFCcAoB888MdevUkB87GoiNaRLeT3ZMZ86IWlSEaow==";
};
};
- "@aws-sdk/xml-builder-3.598.0" = {
+ "@aws-sdk/xml-builder-3.609.0" = {
name = "_at_aws-sdk_slash_xml-builder";
packageName = "@aws-sdk/xml-builder";
- version = "3.598.0";
+ version = "3.609.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@aws-sdk/xml-builder/-/xml-builder-3.598.0.tgz";
- sha512 = "ZIa2RK7CHFTZ4gwK77WRtsZ6vF7xwRXxJ8KQIxK2duhoTVcn0xYxpFLdW9WZZZvdP9GIF3Loqvf8DRdeU5Jc7Q==";
+ url = "https://registry.npmjs.org/@aws-sdk/xml-builder/-/xml-builder-3.609.0.tgz";
+ sha512 = "l9XxNcA4HX98rwCC2/KoiWcmEiRfZe4G+mYwDbCFT87JIMj6GBhLDkAzr/W8KAaA2IDr8Vc6J8fZPgVulxxfMA==";
};
};
"@azure/abort-controller-1.1.0" = {
@@ -1507,13 +1498,13 @@ let
sha512 = "Kji9k6TOFRDB5ZMTw8qUf2IJ+CeJtsuMdAHox9eqpTf1cefiNMpzrfnF6sINEBZJsaVaWgQ0o48B6kcUH68niA==";
};
};
- "@azure/core-rest-pipeline-1.16.0" = {
+ "@azure/core-rest-pipeline-1.16.2" = {
name = "_at_azure_slash_core-rest-pipeline";
packageName = "@azure/core-rest-pipeline";
- version = "1.16.0";
+ version = "1.16.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@azure/core-rest-pipeline/-/core-rest-pipeline-1.16.0.tgz";
- sha512 = "CeuTvsXxCUmEuxH5g/aceuSl6w2EugvNHKAtKKVdiX915EjJJxAwfzNNWZreNnbxHZ2fi0zaM6wwS23x2JVqSQ==";
+ url = "https://registry.npmjs.org/@azure/core-rest-pipeline/-/core-rest-pipeline-1.16.2.tgz";
+ sha512 = "Hnhm/PG9/SQ07JJyLDv3l9Qr8V3xgAe1hFoBYzt6LaalMxfL/ZqFaZf/bz5VN3pMcleCPwl8ivlS2Fjxq/iC8Q==";
};
};
"@azure/core-tracing-1.0.0-preview.13" = {
@@ -1543,22 +1534,13 @@ let
sha512 = "ffGIw+Qs8bNKNLxz5UPkz4/VBM/EZY07mPve1ZYFqYUdPwFqRj0RPk0U7LZMOfT7GCck9YjuT1Rfp1PApNl1ng==";
};
};
- "@azure/core-util-1.9.0" = {
+ "@azure/core-util-1.9.1" = {
name = "_at_azure_slash_core-util";
packageName = "@azure/core-util";
- version = "1.9.0";
+ version = "1.9.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@azure/core-util/-/core-util-1.9.0.tgz";
- sha512 = "AfalUQ1ZppaKuxPPMsFEUdX6GZPB3d9paR9d/TTL7Ow2De8cJaC7ibi7kWVlFAVPCYo31OcnGymc0R89DX8Oaw==";
- };
- };
- "@azure/identity-4.0.1" = {
- name = "_at_azure_slash_identity";
- packageName = "@azure/identity";
- version = "4.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@azure/identity/-/identity-4.0.1.tgz";
- sha512 = "yRdgF03SFLqUMZZ1gKWt0cs0fvrDIkq2bJ6Oidqcoo5uM85YMBnXWMzYKK30XqIT76lkFyAaoAAy5knXhrG4Lw==";
+ url = "https://registry.npmjs.org/@azure/core-util/-/core-util-1.9.1.tgz";
+ sha512 = "OLsq0etbHO1MA7j6FouXFghuHrAFGk+5C1imcpQ2e+0oZhYF07WLA+NW2Vqs70R7d+zOAWiWM3tbE1sXcDN66g==";
};
};
"@azure/identity-4.2.1" = {
@@ -1570,40 +1552,49 @@ let
sha512 = "U8hsyC9YPcEIzoaObJlRDvp7KiF0MGS7xcWbyJSVvXRkC/HXo1f0oYeBYmEvVgRfacw7GHf6D6yAoh9JHz6A5Q==";
};
};
- "@azure/logger-1.1.2" = {
+ "@azure/identity-4.4.0" = {
+ name = "_at_azure_slash_identity";
+ packageName = "@azure/identity";
+ version = "4.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@azure/identity/-/identity-4.4.0.tgz";
+ sha512 = "oG6oFNMxUuoivYg/ElyZWVSZfw42JQyHbrp+lR7VJ1BYWsGzt34NwyDw3miPp1QI7Qm5+4KAd76wGsbHQmkpkg==";
+ };
+ };
+ "@azure/logger-1.1.3" = {
name = "_at_azure_slash_logger";
packageName = "@azure/logger";
- version = "1.1.2";
+ version = "1.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@azure/logger/-/logger-1.1.2.tgz";
- sha512 = "l170uE7bsKpIU6B/giRc9i4NI0Mj+tANMMMxf7Zi/5cKzEqPayP7+X1WPrG7e+91JgY8N+7K7nF2WOi7iVhXvg==";
+ url = "https://registry.npmjs.org/@azure/logger/-/logger-1.1.3.tgz";
+ sha512 = "J8/cIKNQB1Fc9fuYqBVnrppiUtW+5WWJPCj/tAokC5LdSTwkWWttN+jsRgw9BLYD7JDBx7PceiqOBxJJ1tQz3Q==";
};
};
- "@azure/msal-browser-3.17.0" = {
+ "@azure/msal-browser-3.20.0" = {
name = "_at_azure_slash_msal-browser";
packageName = "@azure/msal-browser";
- version = "3.17.0";
+ version = "3.20.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@azure/msal-browser/-/msal-browser-3.17.0.tgz";
- sha512 = "csccKXmW2z7EkZ0I3yAoW/offQt+JECdTIV/KrnRoZyM7wCSsQWODpwod8ZhYy7iOyamcHApR9uCh0oD1M+0/A==";
+ url = "https://registry.npmjs.org/@azure/msal-browser/-/msal-browser-3.20.0.tgz";
+ sha512 = "ErsxbfCGIwdqD8jipqdxpfAGiUEQS7MWUe39Rjhl0ZVPsb1JEe9bZCe2+0g23HDH6DGyCAtnTNN9scPtievrMQ==";
};
};
- "@azure/msal-common-14.12.0" = {
+ "@azure/msal-common-14.14.0" = {
name = "_at_azure_slash_msal-common";
packageName = "@azure/msal-common";
- version = "14.12.0";
+ version = "14.14.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@azure/msal-common/-/msal-common-14.12.0.tgz";
- sha512 = "IDDXmzfdwmDkv4SSmMEyAniJf6fDu3FJ7ncOjlxkDuT85uSnLEhZi3fGZpoR7T4XZpOMx9teM9GXBgrfJgyeBw==";
+ url = "https://registry.npmjs.org/@azure/msal-common/-/msal-common-14.14.0.tgz";
+ sha512 = "OxcOk9H1/1fktHh6//VCORgSNJc2dCQObTm6JNmL824Z6iZSO6eFo/Bttxe0hETn9B+cr7gDouTQtsRq3YPuSQ==";
};
};
- "@azure/msal-node-2.9.2" = {
+ "@azure/msal-node-2.12.0" = {
name = "_at_azure_slash_msal-node";
packageName = "@azure/msal-node";
- version = "2.9.2";
+ version = "2.12.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@azure/msal-node/-/msal-node-2.9.2.tgz";
- sha512 = "8tvi6Cos3m+0KmRbPjgkySXi+UQU/QiuVRFnrxIwt5xZlEEFa69O04RTaNESGgImyBBlYbo2mfE8/U8Bbdk1WQ==";
+ url = "https://registry.npmjs.org/@azure/msal-node/-/msal-node-2.12.0.tgz";
+ sha512 = "jmk5Im5KujRA2AcyCb0awA3buV8niSrwXZs+NBJWIvxOz76RvNlusGIqi43A0h45BPUy93Qb+CPdpJn82NFTIg==";
};
};
"@azure/opentelemetry-instrumentation-azure-sdk-1.0.0-beta.5" = {
@@ -1624,13 +1615,13 @@ let
sha512 = "sM4vpsCpcCApagRW5UIjQNlNylo02my2opgp0Emi8x888hZUvJ3dN69Oq20cEGXkMUWnoCrBaB0zyS3yeB87sQ==";
};
};
- "@babel/cli-7.24.7" = {
+ "@babel/cli-7.24.8" = {
name = "_at_babel_slash_cli";
packageName = "@babel/cli";
- version = "7.24.7";
+ version = "7.24.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/cli/-/cli-7.24.7.tgz";
- sha512 = "8dfPprJgV4O14WTx+AQyEA+opgUKPrsIXX/MdL50J1n06EQJ6m1T+CdsJe0qEC0B/Xl85i+Un5KVAxd/PACX9A==";
+ url = "https://registry.npmjs.org/@babel/cli/-/cli-7.24.8.tgz";
+ sha512 = "isdp+G6DpRyKc+3Gqxy2rjzgF7Zj9K0mzLNnxz+E/fgeag8qT3vVulX4gY9dGO1q0y+0lUv6V3a+uhUzMzrwXg==";
};
};
"@babel/code-frame-7.10.4" = {
@@ -1669,22 +1660,22 @@ let
sha512 = "BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==";
};
};
- "@babel/compat-data-7.24.7" = {
+ "@babel/compat-data-7.24.9" = {
name = "_at_babel_slash_compat-data";
packageName = "@babel/compat-data";
- version = "7.24.7";
+ version = "7.24.9";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.24.7.tgz";
- sha512 = "qJzAIcv03PyaWqxRgO4mSU3lihncDT296vnyuE2O8uA4w3UHWI4S3hgeZd1L8W1Bft40w9JxJ2b412iDUFFRhw==";
+ url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.24.9.tgz";
+ sha512 = "e701mcfApCJqMMueQI0Fb68Amflj83+dvAvHawoBpAz+GDjCIyGHzNwnefjsWJ3xiYAqqiQFoWbspGYBdb2/ng==";
};
};
- "@babel/core-7.24.7" = {
+ "@babel/core-7.24.9" = {
name = "_at_babel_slash_core";
packageName = "@babel/core";
- version = "7.24.7";
+ version = "7.24.9";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/core/-/core-7.24.7.tgz";
- sha512 = "nykK+LEK86ahTkX/3TgauT0ikKoNCfKHEaZYTUVupJdTLzGNvrblu4u6fa7DhZONAltdf8e662t/abY8idrd/g==";
+ url = "https://registry.npmjs.org/@babel/core/-/core-7.24.9.tgz";
+ sha512 = "5e3FI4Q3M3Pbr21+5xJwCv6ZT6KmGkI0vw3Tozy5ODAQFTIWe37iT8Cr7Ice2Ntb+M3iSKCEWMB1MBgKrW3whg==";
};
};
"@babel/generator-7.18.2" = {
@@ -1696,13 +1687,13 @@ let
sha512 = "W1lG5vUwFvfMd8HVXqdfbuG7RuaSrTCCD8cl8fP8wOivdbtbIg2Db3IWUcgvfxKbbn6ZBGYRW/Zk1MIwK49mgw==";
};
};
- "@babel/generator-7.24.4" = {
+ "@babel/generator-7.24.10" = {
name = "_at_babel_slash_generator";
packageName = "@babel/generator";
- version = "7.24.4";
+ version = "7.24.10";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/generator/-/generator-7.24.4.tgz";
- sha512 = "Xd6+v6SnjWVx/nus+y0l1sxMOTOMBkyL4+BIdbALyatQnAe/SRVjANeDPSCYaX+i1iJmuGSKf3Z+E+V/va1Hvw==";
+ url = "https://registry.npmjs.org/@babel/generator/-/generator-7.24.10.tgz";
+ sha512 = "o9HBZL1G2129luEUlG1hB4N/nlYNWHnpwlND9eOMclRqqu1YDy2sSYVCFUZwl8I1Gxh+QSRrP2vD7EpUmFVXxg==";
};
};
"@babel/generator-7.24.7" = {
@@ -1732,22 +1723,22 @@ let
sha512 = "xZeCVVdwb4MsDBkkyZ64tReWYrLRHlMN72vP7Bdm3OUOuyFZExhsHUUnuWnm2/XOlAJzR0LfPpB56WXZn0X/lA==";
};
};
- "@babel/helper-compilation-targets-7.24.7" = {
+ "@babel/helper-compilation-targets-7.24.8" = {
name = "_at_babel_slash_helper-compilation-targets";
packageName = "@babel/helper-compilation-targets";
- version = "7.24.7";
+ version = "7.24.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.24.7.tgz";
- sha512 = "ctSdRHBi20qWOfy27RUb4Fhp07KSJ3sXcuSvTrXrc4aG8NSYDo1ici3Vhg9bg69y5bj0Mr1lh0aeEgTvc12rMg==";
+ url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.24.8.tgz";
+ sha512 = "oU+UoqCHdp+nWVDkpldqIQL/i/bvAv53tRqLG/s+cOXxe66zOYLU7ar/Xs3LdmBihrUMEUhwu6dMZwbNOYDwvw==";
};
};
- "@babel/helper-create-class-features-plugin-7.24.7" = {
+ "@babel/helper-create-class-features-plugin-7.24.8" = {
name = "_at_babel_slash_helper-create-class-features-plugin";
packageName = "@babel/helper-create-class-features-plugin";
- version = "7.24.7";
+ version = "7.24.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.24.7.tgz";
- sha512 = "kTkaDl7c9vO80zeX1rJxnuRpEsD5tA81yh11X1gQo+PhSti3JS+7qeZo9U4RHobKRiFPKaGK3svUAeb8D0Q7eg==";
+ url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.24.8.tgz";
+ sha512 = "4f6Oqnmyp2PP3olgUMmOwC3akxSm5aBYraQ6YDdKy7NcAMkDECHWG0DEnV6M2UAkERgIBhYt8S27rURPg7SxWA==";
};
};
"@babel/helper-create-regexp-features-plugin-7.24.7" = {
@@ -1795,13 +1786,13 @@ let
sha512 = "MJJwhkoGy5c4ehfoRyrJ/owKeMl19U54h27YYftT0o2teQ3FJ3nQUf/I3LlJsX4l3qlw7WRXUmiyajvHXoTubQ==";
};
};
- "@babel/helper-member-expression-to-functions-7.24.7" = {
+ "@babel/helper-member-expression-to-functions-7.24.8" = {
name = "_at_babel_slash_helper-member-expression-to-functions";
packageName = "@babel/helper-member-expression-to-functions";
- version = "7.24.7";
+ version = "7.24.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.24.7.tgz";
- sha512 = "LGeMaf5JN4hAT471eJdBs/GK1DoYIJ5GCtZN/EsL6KUiiDZOvO/eKE11AMZJa2zP4zk4qe9V2O/hxAmkRc8p6w==";
+ url = "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.24.8.tgz";
+ sha512 = "LABppdt+Lp/RlBxqrh4qgf1oEH/WxdzQNDJIu5gC/W1GyvPVrOBiItmmM8wan2fm4oYqFuFfkXmlGpLQhPY8CA==";
};
};
"@babel/helper-module-imports-7.24.7" = {
@@ -1813,13 +1804,13 @@ let
sha512 = "8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==";
};
};
- "@babel/helper-module-transforms-7.24.7" = {
+ "@babel/helper-module-transforms-7.24.9" = {
name = "_at_babel_slash_helper-module-transforms";
packageName = "@babel/helper-module-transforms";
- version = "7.24.7";
+ version = "7.24.9";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.24.7.tgz";
- sha512 = "1fuJEwIrp+97rM4RWdO+qrRsZlAeL1lQJoPqtCYWv0NL115XM93hIH4CSRln2w52SqvmY5hqdtauB6QFCDiZNQ==";
+ url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.24.9.tgz";
+ sha512 = "oYbh+rtFKj/HwBQkFlUzvcybzklmVdVV3UU+mN7n2t/q3yGHbuVdNxyFvSBO1tfvjyArpHNcWMAzsSPdyI46hw==";
};
};
"@babel/helper-optimise-call-expression-7.24.7" = {
@@ -1831,13 +1822,13 @@ let
sha512 = "jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A==";
};
};
- "@babel/helper-plugin-utils-7.24.7" = {
+ "@babel/helper-plugin-utils-7.24.8" = {
name = "_at_babel_slash_helper-plugin-utils";
packageName = "@babel/helper-plugin-utils";
- version = "7.24.7";
+ version = "7.24.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.7.tgz";
- sha512 = "Rq76wjt7yz9AAc1KnlRKNAi/dMSVWgDRx43FHoJEbcYU6xOWaE2dVPwcdTukJrjxS65GITyfbvEYHvkirZ6uEg==";
+ url = "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.8.tgz";
+ sha512 = "FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg==";
};
};
"@babel/helper-remap-async-to-generator-7.24.7" = {
@@ -1885,13 +1876,13 @@ let
sha512 = "oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==";
};
};
- "@babel/helper-string-parser-7.24.7" = {
+ "@babel/helper-string-parser-7.24.8" = {
name = "_at_babel_slash_helper-string-parser";
packageName = "@babel/helper-string-parser";
- version = "7.24.7";
+ version = "7.24.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.7.tgz";
- sha512 = "7MbVt6xrwFQbunH2DNQsAP5sTGxfqQtErvBIvIMi6EQnbgUOuVYanvREcmFrOPhoXBrTtjhhP+lW+o5UfK+tDg==";
+ url = "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.8.tgz";
+ sha512 = "pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==";
};
};
"@babel/helper-validator-identifier-7.24.7" = {
@@ -1903,13 +1894,13 @@ let
sha512 = "rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==";
};
};
- "@babel/helper-validator-option-7.24.7" = {
+ "@babel/helper-validator-option-7.24.8" = {
name = "_at_babel_slash_helper-validator-option";
packageName = "@babel/helper-validator-option";
- version = "7.24.7";
+ version = "7.24.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.24.7.tgz";
- sha512 = "yy1/KvjhV/ZCL+SM7hBrvnZJ3ZuT9OuZgIJAGpPEToANvc3iM6iDvBnRjtElWibHU6n8/LPR/EjX9EtIEYO3pw==";
+ url = "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.24.8.tgz";
+ sha512 = "xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==";
};
};
"@babel/helper-wrap-function-7.24.7" = {
@@ -1921,13 +1912,13 @@ let
sha512 = "N9JIYk3TD+1vq/wn77YnJOqMtfWhNewNE+DJV4puD2X7Ew9J4JvrzrFDfTfyv5EgEXVy9/Wt8QiOErzEmv5Ifw==";
};
};
- "@babel/helpers-7.24.7" = {
+ "@babel/helpers-7.24.8" = {
name = "_at_babel_slash_helpers";
packageName = "@babel/helpers";
- version = "7.24.7";
+ version = "7.24.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.24.7.tgz";
- sha512 = "NlmJJtvcw72yRJRcnCmGvSi+3jDEg8qFu3z0AFoymmzLx5ERVWyzd9kVXr7Th9/8yIJi2Zc6av4Tqz3wFs8QWg==";
+ url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.24.8.tgz";
+ sha512 = "gV2265Nkcz7weJJfvDoAEVzC1e2OTDpkGbEsebse8koXUJUXPsCMi7sRo/+SPMuMZ9MtUPnGwITTnQnU5YjyaQ==";
};
};
"@babel/highlight-7.24.7" = {
@@ -1939,13 +1930,13 @@ let
sha512 = "EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==";
};
};
- "@babel/node-7.24.7" = {
+ "@babel/node-7.24.8" = {
name = "_at_babel_slash_node";
packageName = "@babel/node";
- version = "7.24.7";
+ version = "7.24.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/node/-/node-7.24.7.tgz";
- sha512 = "BCYNLxUQjGTgy8bAq12jy+Lt8soGWa/5u3s7U3aTVXxviIp0YVS+/Wm0b4eaitLVvetYrEoAiRF0QOk4WKsHAQ==";
+ url = "https://registry.npmjs.org/@babel/node/-/node-7.24.8.tgz";
+ sha512 = "4JgQZJOVDrMCe2OwP7g4nBEvv0kbTkWYVvkEhFdq8JdEhsy9J5E5ChibbIchTrntKB62lx2I7fVTdM+Se7KVFg==";
};
};
"@babel/parser-7.18.4" = {
@@ -1957,13 +1948,13 @@ let
sha512 = "FDge0dFazETFcxGw/EXzOkN8uJp0PC7Qbm+Pe9T+av2zlBpOgunFHkQPPn+eRuClU73JF+98D531UgayY89tow==";
};
};
- "@babel/parser-7.24.7" = {
+ "@babel/parser-7.24.8" = {
name = "_at_babel_slash_parser";
packageName = "@babel/parser";
- version = "7.24.7";
+ version = "7.24.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/parser/-/parser-7.24.7.tgz";
- sha512 = "9uUYRm6OqQrCqQdG1iCBwBPZgN8ciDBro2nIOFaiRz1/BCxaI7CNvQbDHvsArAC7Tw9Hda/B3U+6ui9u4HWXPw==";
+ url = "https://registry.npmjs.org/@babel/parser/-/parser-7.24.8.tgz";
+ sha512 = "WzfbgXOkGzZiXXCqk43kKwZjzwx4oulxZi3nq2TYL9mOjQv6kYwul9mz6ID36njuL7Xkp6nJEfok848Zj10j/w==";
};
};
"@babel/plugin-bugfix-firefox-class-in-computed-class-key-7.24.7" = {
@@ -2353,13 +2344,13 @@ let
sha512 = "HMXK3WbBPpZQufbMG4B46A90PkuuhN9vBCb5T8+VAHqvAqvcLi+2cKoukcpmUYkszLhScU3l1iudhrks3DggRQ==";
};
};
- "@babel/plugin-transform-classes-7.24.7" = {
+ "@babel/plugin-transform-classes-7.24.8" = {
name = "_at_babel_slash_plugin-transform-classes";
packageName = "@babel/plugin-transform-classes";
- version = "7.24.7";
+ version = "7.24.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.24.7.tgz";
- sha512 = "CFbbBigp8ln4FU6Bpy6g7sE8B/WmCmzvivzUC6xDAdWVsjYTXijpuuGJmYkAaoWAzcItGKT3IOAbxRItZ5HTjw==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.24.8.tgz";
+ sha512 = "VXy91c47uujj758ud9wx+OMgheXm4qJfyhj1P18YvlrQkNOSrwsteHk+EFS3OMGfhMhpZa0A+81eE7G4QC+3CA==";
};
};
"@babel/plugin-transform-computed-properties-7.24.7" = {
@@ -2371,13 +2362,13 @@ let
sha512 = "25cS7v+707Gu6Ds2oY6tCkUwsJ9YIDbggd9+cu9jzzDgiNq7hR/8dkzxWfKWnTic26vsI3EsCXNd4iEB6e8esQ==";
};
};
- "@babel/plugin-transform-destructuring-7.24.7" = {
+ "@babel/plugin-transform-destructuring-7.24.8" = {
name = "_at_babel_slash_plugin-transform-destructuring";
packageName = "@babel/plugin-transform-destructuring";
- version = "7.24.7";
+ version = "7.24.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.24.7.tgz";
- sha512 = "19eJO/8kdCQ9zISOf+SEUJM/bAUIsvY3YDnXZTupUCQ8LgrWnsG/gFB9dvXqdXnRXMAM8fvt7b0CBKQHNGy1mw==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.24.8.tgz";
+ sha512 = "36e87mfY8TnRxc7yc6M9g9gOB7rKgSahqkIKwLpz4Ppk2+zC2Cy1is0uwtuSG6AE4zlTOUa+7JGz9jCJGLqQFQ==";
};
};
"@babel/plugin-transform-dotall-regex-7.24.7" = {
@@ -2497,13 +2488,13 @@ let
sha512 = "9+pB1qxV3vs/8Hdmz/CulFB8w2tuu6EB94JZFsjdqxQokwGa9Unap7Bo2gGBGIvPmDIVvQrom7r5m/TCDMURhg==";
};
};
- "@babel/plugin-transform-modules-commonjs-7.24.7" = {
+ "@babel/plugin-transform-modules-commonjs-7.24.8" = {
name = "_at_babel_slash_plugin-transform-modules-commonjs";
packageName = "@babel/plugin-transform-modules-commonjs";
- version = "7.24.7";
+ version = "7.24.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.24.7.tgz";
- sha512 = "iFI8GDxtevHJ/Z22J5xQpVqFLlMNstcLXh994xifFwxxGslr2ZXXLWgtBeLctOD63UFDArdvN6Tg8RFw+aEmjQ==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.24.8.tgz";
+ sha512 = "WHsk9H8XxRs3JXKWFiqtQebdh9b/pTk4EgueygFzYlTKAg0Ud985mSevdNjdXdFBATSKVJGQXP1tv6aGbssLKA==";
};
};
"@babel/plugin-transform-modules-systemjs-7.24.7" = {
@@ -2587,13 +2578,13 @@ let
sha512 = "uLEndKqP5BfBbC/5jTwPxLh9kqPWWgzN/f8w6UwAIirAEqiIVJWWY312X72Eub09g5KF9+Zn7+hT7sDxmhRuKA==";
};
};
- "@babel/plugin-transform-optional-chaining-7.24.7" = {
+ "@babel/plugin-transform-optional-chaining-7.24.8" = {
name = "_at_babel_slash_plugin-transform-optional-chaining";
packageName = "@babel/plugin-transform-optional-chaining";
- version = "7.24.7";
+ version = "7.24.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.24.7.tgz";
- sha512 = "tK+0N9yd4j+x/4hxF3F0e0fu/VdcxU18y5SevtyM/PCFlQvXbR0Zmlo2eBrKtVipGNFzpq56o8WsIIKcJFUCRQ==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.24.8.tgz";
+ sha512 = "5cTOLSMs9eypEy8JUVvIKOu6NgvbJMnpG62VpIHrTmROdQ+L5mDAaI40g25k5vXti55JWNX5jCkq3HZxXBQANw==";
};
};
"@babel/plugin-transform-parameters-7.24.7" = {
@@ -2731,22 +2722,22 @@ let
sha512 = "AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw==";
};
};
- "@babel/plugin-transform-typeof-symbol-7.24.7" = {
+ "@babel/plugin-transform-typeof-symbol-7.24.8" = {
name = "_at_babel_slash_plugin-transform-typeof-symbol";
packageName = "@babel/plugin-transform-typeof-symbol";
- version = "7.24.7";
+ version = "7.24.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.24.7.tgz";
- sha512 = "VtR8hDy7YLB7+Pet9IarXjg/zgCMSF+1mNS/EQEiEaUPoFXCVsHG64SIxcaaI2zJgRiv+YmgaQESUfWAdbjzgg==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.24.8.tgz";
+ sha512 = "adNTUpDCVnmAE58VEqKlAA6ZBlNkMnWD0ZcW76lyNFN3MJniyGFZfNwERVk8Ap56MCnXztmDr19T4mPTztcuaw==";
};
};
- "@babel/plugin-transform-typescript-7.24.7" = {
+ "@babel/plugin-transform-typescript-7.24.8" = {
name = "_at_babel_slash_plugin-transform-typescript";
packageName = "@babel/plugin-transform-typescript";
- version = "7.24.7";
+ version = "7.24.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.24.7.tgz";
- sha512 = "iLD3UNkgx2n/HrjBesVbYX6j0yqn/sJktvbtKKgcaLIQ4bTTQ8obAypc1VpyHPD2y4Phh9zHOaAt8e/L14wCpw==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.24.8.tgz";
+ sha512 = "CgFgtN61BbdOGCP4fLaAMOPkzWUh6yQZNMr5YSt8uz2cZSSiQONCQFWqsE4NeVfOIhqDOlS9CR3WD91FzMeB2Q==";
};
};
"@babel/plugin-transform-unicode-escapes-7.24.7" = {
@@ -2794,22 +2785,13 @@ let
sha512 = "X0pi0V6gxLi6lFZpGmeNa4zxtwEmCs42isWLNjZZDE0Y8yVfgu0T2OAHlzBbdYlqbW/YXVvoBHpATEM+goCj8g==";
};
};
- "@babel/preset-env-7.24.7" = {
+ "@babel/preset-env-7.24.8" = {
name = "_at_babel_slash_preset-env";
packageName = "@babel/preset-env";
- version = "7.24.7";
+ version = "7.24.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.24.7.tgz";
- sha512 = "1YZNsc+y6cTvWlDHidMBsQZrZfEFjRIo/BZCT906PMdzOyXtSLTgqGdrpcuTDCXyd11Am5uQULtDIcCfnTc8fQ==";
- };
- };
- "@babel/preset-flow-7.24.7" = {
- name = "_at_babel_slash_preset-flow";
- packageName = "@babel/preset-flow";
- version = "7.24.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/@babel/preset-flow/-/preset-flow-7.24.7.tgz";
- sha512 = "NL3Lo0NorCU607zU3NwRyJbpaB6E3t0xtd3LfAQKDfkeX4/ggcDXvkmkW42QWT5owUeW/jAe4hn+2qvkV1IbfQ==";
+ url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.24.8.tgz";
+ sha512 = "vObvMZB6hNWuDxhSaEPTKCwcqkAIuDtE+bQGn4XMXne1DSLzFVY8Vmj1bm+mUQXYNN8NmaQEO+r8MMbzPr1jBQ==";
};
};
"@babel/preset-modules-0.1.6-no-external-plugins" = {
@@ -2848,13 +2830,13 @@ let
sha512 = "x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==";
};
};
- "@babel/runtime-7.24.7" = {
+ "@babel/runtime-7.24.8" = {
name = "_at_babel_slash_runtime";
packageName = "@babel/runtime";
- version = "7.24.7";
+ version = "7.24.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.24.7.tgz";
- sha512 = "UwgBRMjJP+xv857DCngvqXI3Iq6J4v0wXmwc6sapg+zyhbwmQX67LUEFrkK5tbyJ30jGuG3ZvWpBiB9LCy1kWw==";
+ url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.24.8.tgz";
+ sha512 = "5F7SDGs1T72ZczbRwbGO9lQi0NLjQxzl6i4lJxLxfW9U5UluCSyEJeniWvnhl3/euNiqQVbo8zruhsDfid0esA==";
};
};
"@babel/runtime-7.9.0" = {
@@ -2866,15 +2848,6 @@ let
sha512 = "cTIudHnzuWLS56ik4DnRnqqNf8MkdUzV4iFFI1h7Jo9xvrpQROYaAnaSd2mHLQAzzZAPfATynX5ord6YlNYNMA==";
};
};
- "@babel/template-7.24.0" = {
- name = "_at_babel_slash_template";
- packageName = "@babel/template";
- version = "7.24.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@babel/template/-/template-7.24.0.tgz";
- sha512 = "Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA==";
- };
- };
"@babel/template-7.24.7" = {
name = "_at_babel_slash_template";
packageName = "@babel/template";
@@ -2884,13 +2857,13 @@ let
sha512 = "jYqfPrU9JTF0PmPy1tLYHW4Mp4KlgxJD9l2nP9fD6yT/ICi554DmrWBAEYpIelzjHf1msDP3PxJIRt/nFNfBig==";
};
};
- "@babel/traverse-7.24.7" = {
+ "@babel/traverse-7.24.8" = {
name = "_at_babel_slash_traverse";
packageName = "@babel/traverse";
- version = "7.24.7";
+ version = "7.24.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.24.7.tgz";
- sha512 = "yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA==";
+ url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.24.8.tgz";
+ sha512 = "t0P1xxAPzEDcEPmjprAQq19NWum4K0EQPjMwZQZbHt+GiZqvjCHjj755Weq1YRPVzBI+3zSfvScfpnuIecVFJQ==";
};
};
"@babel/types-7.19.0" = {
@@ -2902,15 +2875,6 @@ let
sha512 = "YuGopBq3ke25BVSiS6fgF49Ul9gH1x70Bcr6bqRLjWCkcX8Hre1/5+z+IiWOIerRMSSEfGZVB9z9kyq7wVs9YA==";
};
};
- "@babel/types-7.24.0" = {
- name = "_at_babel_slash_types";
- packageName = "@babel/types";
- version = "7.24.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@babel/types/-/types-7.24.0.tgz";
- sha512 = "+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w==";
- };
- };
"@babel/types-7.24.7" = {
name = "_at_babel_slash_types";
packageName = "@babel/types";
@@ -2920,22 +2884,31 @@ let
sha512 = "XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q==";
};
};
- "@bmewburn/js-beautify-1.14.9" = {
- name = "_at_bmewburn_slash_js-beautify";
- packageName = "@bmewburn/js-beautify";
- version = "1.14.9";
+ "@babel/types-7.24.9" = {
+ name = "_at_babel_slash_types";
+ packageName = "@babel/types";
+ version = "7.24.9";
src = fetchurl {
- url = "https://registry.npmjs.org/@bmewburn/js-beautify/-/js-beautify-1.14.9.tgz";
- sha512 = "PNz0Y8TElejGkQ3N6aiqoBLLa+kaIAQAgu6KFn/PN625W/t2LZVyoL68df5gRSvbpelrsczvQlVLsNp0mcJFgA==";
+ url = "https://registry.npmjs.org/@babel/types/-/types-7.24.9.tgz";
+ sha512 = "xm8XrMKz0IlUdocVbYJe0Z9xEgidU7msskG8BbhnTPK/HZ2z/7FP7ykqPgrUH+C+r414mNfNWam1f2vqOjqjYQ==";
};
};
- "@bmewburn/vscode-html-languageserver-1.10.0" = {
+ "@bmewburn/js-beautify-1.15.2" = {
+ name = "_at_bmewburn_slash_js-beautify";
+ packageName = "@bmewburn/js-beautify";
+ version = "1.15.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@bmewburn/js-beautify/-/js-beautify-1.15.2.tgz";
+ sha512 = "TGLBQLYEow0ncfCap5ZSTeU7z/LlUemNvwirys5la3A44P+NZVIvuJSFCbo8+Sjsau/nthTLuwe76oiSthvm7Q==";
+ };
+ };
+ "@bmewburn/vscode-html-languageserver-1.11.0" = {
name = "_at_bmewburn_slash_vscode-html-languageserver";
packageName = "@bmewburn/vscode-html-languageserver";
- version = "1.10.0";
+ version = "1.11.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@bmewburn/vscode-html-languageserver/-/vscode-html-languageserver-1.10.0.tgz";
- sha512 = "0lHL4Y1EJKHdRIEpXPZHnlIoxCKNglADDPloOYFcIoRj/O7zfRDrdPWPJgr2LeJDgXHklX6ltH6wp0Ywxa98AQ==";
+ url = "https://registry.npmjs.org/@bmewburn/vscode-html-languageserver/-/vscode-html-languageserver-1.11.0.tgz";
+ sha512 = "9uyCkXlu5eHyQB4Knux5mHJzuAglJXoix7B8i8xxurM+03lhSJz3QJ9LeBTP2YSSCnE/vTu4vCXDGDzANA4R7g==";
};
};
"@braintree/sanitize-url-6.0.4" = {
@@ -2947,49 +2920,49 @@ let
sha512 = "s3jaWicZd0pkP0jf5ysyHUI/RE7MHos6qlToFcGWXVp+ykHOy77OUMrfbgJ9it2C5bow7OIQwYYaHjk9XlBQ2A==";
};
};
- "@cdktf/cli-core-0.20.7" = {
+ "@cdktf/cli-core-0.20.8" = {
name = "_at_cdktf_slash_cli-core";
packageName = "@cdktf/cli-core";
- version = "0.20.7";
+ version = "0.20.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@cdktf/cli-core/-/cli-core-0.20.7.tgz";
- sha512 = "KGTRZ68PHUfiW75GkwOIetp2N9tjIdmTHwmt773jwlNFbi+OMaOEm07XQjtIz2AcuvLpx9u4N0u/uI4T+JfwSg==";
+ url = "https://registry.npmjs.org/@cdktf/cli-core/-/cli-core-0.20.8.tgz";
+ sha512 = "ZMMedejI0ITMwKecsg9+Z7IqX7VH0y8DYx2kr9DciyCDuvbE6gYlo/pYRbgpdC5ObpnNYg39rFY4x0yKRytCzw==";
};
};
- "@cdktf/commons-0.20.7" = {
+ "@cdktf/commons-0.20.8" = {
name = "_at_cdktf_slash_commons";
packageName = "@cdktf/commons";
- version = "0.20.7";
+ version = "0.20.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@cdktf/commons/-/commons-0.20.7.tgz";
- sha512 = "X1HnLlJjKyOfoWTOIoUbm5cRxWIqKw2gtHs4QgDlTGZm9kc5lW1IbwMuEOv7B1IHFXFFRFwnYg03V56TuoEvqQ==";
+ url = "https://registry.npmjs.org/@cdktf/commons/-/commons-0.20.8.tgz";
+ sha512 = "VkAz/9b070fceB7d/yk9LasIG7viHq6sqBi9+/4VSU1ZkY9Eyvq99I/OluWD9lRQdiho7OkxZtR+LGhmrhu3XA==";
};
};
- "@cdktf/hcl-tools-0.20.7" = {
+ "@cdktf/hcl-tools-0.20.8" = {
name = "_at_cdktf_slash_hcl-tools";
packageName = "@cdktf/hcl-tools";
- version = "0.20.7";
+ version = "0.20.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@cdktf/hcl-tools/-/hcl-tools-0.20.7.tgz";
- sha512 = "B/1/UqoCu9V40oV/qLsBRwqp/Q+0wQOcm7WtgZEKNEvNb+5y01E7UbWLoIvs3k7TX8pzHU9Bl1gACXtHbezpsw==";
+ url = "https://registry.npmjs.org/@cdktf/hcl-tools/-/hcl-tools-0.20.8.tgz";
+ sha512 = "eS8h0Vjs1lO3twH5NEPpJv57A+lFAMZry2vM/VBKJaIemeuJll9cICFeonsluQ42f8YCuEGQiHhIAxgfoaTY4g==";
};
};
- "@cdktf/hcl2cdk-0.20.7" = {
+ "@cdktf/hcl2cdk-0.20.8" = {
name = "_at_cdktf_slash_hcl2cdk";
packageName = "@cdktf/hcl2cdk";
- version = "0.20.7";
+ version = "0.20.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@cdktf/hcl2cdk/-/hcl2cdk-0.20.7.tgz";
- sha512 = "xGrVa/SxnLrYM8pSwRfvvAFaj7ak3B3xvuwhj9xTWKZ39f89sX4vPkTuJgoiwIG83iAIlNapUcqMQ0PeqogeBw==";
+ url = "https://registry.npmjs.org/@cdktf/hcl2cdk/-/hcl2cdk-0.20.8.tgz";
+ sha512 = "p+bju8Qj84COvDLuCQlDmp1iPlIwWoqcW6QpuHNmip3HWLnJuUipO0BMxRcVofcsaljJQmkIbE6We0DZOooG9g==";
};
};
- "@cdktf/hcl2json-0.20.7" = {
+ "@cdktf/hcl2json-0.20.8" = {
name = "_at_cdktf_slash_hcl2json";
packageName = "@cdktf/hcl2json";
- version = "0.20.7";
+ version = "0.20.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@cdktf/hcl2json/-/hcl2json-0.20.7.tgz";
- sha512 = "325Swm3ySUEbscSIXrtrNOt0mJCyVTheD5SNuDTcMYLyTPQNgu/6LgKu36YQt0AKK3zUp+f56pEYMitpR9FmLQ==";
+ url = "https://registry.npmjs.org/@cdktf/hcl2json/-/hcl2json-0.20.8.tgz";
+ sha512 = "MOt5HHZYmHiRleaS8YwhEz913H4xzDCOO6MF1GO5RNZ74DYl6Bv6Y+JY4196E0THtiJ1Ibo9IvLfTIlTUrQ+Bw==";
};
};
"@cdktf/node-pty-prebuilt-multiarch-0.10.1-pre.11" = {
@@ -3001,22 +2974,22 @@ let
sha512 = "qvga/nzEtdCJMu/6jJfDqpzbRejvXtNhWFnbubfuYyN5nMNORNXX+POT4j+mQSDQar5bIQ1a812szw/zr47cfw==";
};
};
- "@cdktf/provider-generator-0.20.7" = {
+ "@cdktf/provider-generator-0.20.8" = {
name = "_at_cdktf_slash_provider-generator";
packageName = "@cdktf/provider-generator";
- version = "0.20.7";
+ version = "0.20.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@cdktf/provider-generator/-/provider-generator-0.20.7.tgz";
- sha512 = "O3ZyDp/q73Kg2zn/axA4V62c3QvaGEO44G94eiyi4z6GRokTVQ4eOlkpoqp3spejizhMkA8Lzq+OQ2cvsQygeA==";
+ url = "https://registry.npmjs.org/@cdktf/provider-generator/-/provider-generator-0.20.8.tgz";
+ sha512 = "ZD3A3IVMp5RKsA83NjRj1pYhBoSiCnXKVGmXLaORhoitzrg/uxoi2bEegNWpgHIt1BXthoKS33bZ23xZ7fK9Pg==";
};
};
- "@cdktf/provider-schema-0.20.7" = {
+ "@cdktf/provider-schema-0.20.8" = {
name = "_at_cdktf_slash_provider-schema";
packageName = "@cdktf/provider-schema";
- version = "0.20.7";
+ version = "0.20.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@cdktf/provider-schema/-/provider-schema-0.20.7.tgz";
- sha512 = "KVV5YMaMoXgrmT+AsU1y3vCLfyie5/XbSKVVrUnVp5sCrwhsFMl6U59HTDQ52QX3aHWxwTAqEZbljdg6ZUbk9A==";
+ url = "https://registry.npmjs.org/@cdktf/provider-schema/-/provider-schema-0.20.8.tgz";
+ sha512 = "beQuJgjN/7zLS0zVv0d5VyErbBjx61/CI77qg7LFa6KZHRd/OWegkSQ/8DayhLzYfaW8GEYvP7WXbJLl86jIgg==";
};
};
"@chemzqm/msgpack-lite-0.1.29" = {
@@ -3037,24 +3010,6 @@ let
sha512 = "m7lZj00lP1fNMzXITOV1uNdsYXjsmMbFB7Sl8OXfhRWYDQuBr6EPNzIzAonzIcmvTA2JNs8WMq0ZU76XXzpP6w==";
};
};
- "@cloudflare/kv-asset-handler-0.3.2" = {
- name = "_at_cloudflare_slash_kv-asset-handler";
- packageName = "@cloudflare/kv-asset-handler";
- version = "0.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/@cloudflare/kv-asset-handler/-/kv-asset-handler-0.3.2.tgz";
- sha512 = "EeEjMobfuJrwoctj7FA1y1KEbM0+Q1xSjobIEyie9k4haVEBB7vkDvsasw1pM3rO39mL2akxIAzLMUAtrMHZhA==";
- };
- };
- "@cloudflare/workers-types-4.20240605.0" = {
- name = "_at_cloudflare_slash_workers-types";
- packageName = "@cloudflare/workers-types";
- version = "4.20240605.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@cloudflare/workers-types/-/workers-types-4.20240605.0.tgz";
- sha512 = "zJw4Q6CnkaQ5JZmHRkNiSs5GfiRgUIUL8BIHPQkd2XUHZkIBv9M9yc0LKEwMYGpCFC+oSOltet6c9RjP9uQ99g==";
- };
- };
"@colors/colors-1.6.0" = {
name = "_at_colors_slash_colors";
packageName = "@colors/colors";
@@ -3217,58 +3172,58 @@ let
sha512 = "gB5C5nDIacLUdsMuW8YsM9SzK3vaFANe4J11CVXpovpy7bZUGrcJKmc6m/0gWG789pKr6XSZY2aEetjFvSRw5g==";
};
};
- "@cspell/cspell-bundled-dicts-8.8.4" = {
+ "@cspell/cspell-bundled-dicts-8.12.1" = {
name = "_at_cspell_slash_cspell-bundled-dicts";
packageName = "@cspell/cspell-bundled-dicts";
- version = "8.8.4";
+ version = "8.12.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-8.8.4.tgz";
- sha512 = "k9ZMO2kayQFXB3B45b1xXze3MceAMNy9U+D7NTnWB1i3S0y8LhN53U9JWWgqHGPQaHaLHzizL7/w1aGHTA149Q==";
+ url = "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-8.12.1.tgz";
+ sha512 = "55wCxlKwRsYCt8uWB65C0xiJ4bP43UE3b/GK01ekyz2fZ11mudMWGMrX/pdKwGIOXFfFqDz3DCRxFs+fHS58oA==";
};
};
- "@cspell/cspell-json-reporter-8.8.4" = {
+ "@cspell/cspell-json-reporter-8.12.1" = {
name = "_at_cspell_slash_cspell-json-reporter";
packageName = "@cspell/cspell-json-reporter";
- version = "8.8.4";
+ version = "8.12.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/cspell-json-reporter/-/cspell-json-reporter-8.8.4.tgz";
- sha512 = "ITpOeNyDHD+4B9QmLJx6YYtrB1saRsrCLluZ34YaICemNLuumVRP1vSjcdoBtefvGugCOn5nPK7igw0r/vdAvA==";
+ url = "https://registry.npmjs.org/@cspell/cspell-json-reporter/-/cspell-json-reporter-8.12.1.tgz";
+ sha512 = "nO/3GTk3rBpLRBzkmcKFxbtEDd3FKXfQ5uTCpJ27XYVHYjlU+d4McOYYMClMhpFianVol2JCyberpGAj6bVgLg==";
};
};
- "@cspell/cspell-pipe-8.8.4" = {
+ "@cspell/cspell-pipe-8.12.1" = {
name = "_at_cspell_slash_cspell-pipe";
packageName = "@cspell/cspell-pipe";
- version = "8.8.4";
+ version = "8.12.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-8.8.4.tgz";
- sha512 = "Uis9iIEcv1zOogXiDVSegm9nzo5NRmsRDsW8CteLRg6PhyZ0nnCY1PZIUy3SbGF0vIcb/M+XsdLSh2wOPqTXww==";
+ url = "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-8.12.1.tgz";
+ sha512 = "lh0zIm43r/Fj3sQWXc68msKnXNrfPOo8VvzL1hOP0v/j2eH61fvELH08/K+nQJ8cCutNZ4zhk9+KMDU4KmsMtw==";
};
};
- "@cspell/cspell-resolver-8.8.4" = {
+ "@cspell/cspell-resolver-8.12.1" = {
name = "_at_cspell_slash_cspell-resolver";
packageName = "@cspell/cspell-resolver";
- version = "8.8.4";
+ version = "8.12.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/cspell-resolver/-/cspell-resolver-8.8.4.tgz";
- sha512 = "eZVw31nSeh6xKl7TzzkZVMTX/mgwhUw40/q1Sqo7CTPurIBg66oelEqKRclX898jzd2/qSK+ZFwBDxvV7QH38A==";
+ url = "https://registry.npmjs.org/@cspell/cspell-resolver/-/cspell-resolver-8.12.1.tgz";
+ sha512 = "3HE04m7DS/6xYpWPN2QBGCHr26pvxHa78xYk+PjiPD2Q49ceqTNdFcZOYd+Wba8HbRXSukchSLhrTujmPEzqpw==";
};
};
- "@cspell/cspell-service-bus-8.8.4" = {
+ "@cspell/cspell-service-bus-8.12.1" = {
name = "_at_cspell_slash_cspell-service-bus";
packageName = "@cspell/cspell-service-bus";
- version = "8.8.4";
+ version = "8.12.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/cspell-service-bus/-/cspell-service-bus-8.8.4.tgz";
- sha512 = "KtwJ38uPLrm2Q8osmMIAl2NToA/CMyZCxck4msQJnskdo30IPSdA1Rh0w6zXinmh1eVe0zNEVCeJ2+x23HqW+g==";
+ url = "https://registry.npmjs.org/@cspell/cspell-service-bus/-/cspell-service-bus-8.12.1.tgz";
+ sha512 = "UQPddS38dQ/FG00y2wginCzdS6yxryiGrWXSD/P59idCrYYDCYnI9pPsx4u10tmRkW1zJ+O7gGCsXw7xa5DAJQ==";
};
};
- "@cspell/cspell-types-8.8.4" = {
+ "@cspell/cspell-types-8.12.1" = {
name = "_at_cspell_slash_cspell-types";
packageName = "@cspell/cspell-types";
- version = "8.8.4";
+ version = "8.12.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-8.8.4.tgz";
- sha512 = "ya9Jl4+lghx2eUuZNY6pcbbrnResgEAomvglhdbEGqy+B5MPEqY5Jt45APEmGqHzTNks7oFFaiTIbXYJAFBR7A==";
+ url = "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-8.12.1.tgz";
+ sha512 = "17POyyRgl7m7mMuv1qk2xX6E5bdT0F3247vloBCdUMyaVtmtN4uEiQ/jqU5vtW02vxlKjKS0HcTvKz4EVfSlzQ==";
};
};
"@cspell/dict-ada-4.0.2" = {
@@ -3289,13 +3244,13 @@ let
sha512 = "K21CfB4ZpKYwwDQiPfic2zJA/uxkbsd4IQGejEvDAhE3z8wBs6g6BwwqdVO767M9NgZqc021yAVpr79N5pWe3w==";
};
};
- "@cspell/dict-aws-4.0.2" = {
+ "@cspell/dict-aws-4.0.3" = {
name = "_at_cspell_slash_dict-aws";
packageName = "@cspell/dict-aws";
- version = "4.0.2";
+ version = "4.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-aws/-/dict-aws-4.0.2.tgz";
- sha512 = "aNGHWSV7dRLTIn8WJemzLoMF62qOaiUQlgnsCwH5fRCD/00gsWCwg106pnbkmK4AyabyxzneOV4dfecDJWkSxw==";
+ url = "https://registry.npmjs.org/@cspell/dict-aws/-/dict-aws-4.0.3.tgz";
+ sha512 = "0C0RQ4EM29fH0tIYv+EgDQEum0QI6OrmjENC9u98pB8UcnYxGG/SqinuPxo+TgcEuInj0Q73MsBpJ1l5xUnrsw==";
};
};
"@cspell/dict-bash-1.0.18" = {
@@ -3325,13 +3280,13 @@ let
sha512 = "Aw07qiTroqSST2P5joSrC4uOA05zTXzI2wMb+me3q4Davv1D9sCkzXY0TGoC2vzhNv5ooemRi9KATGaBSdU1sw==";
};
};
- "@cspell/dict-companies-3.1.2" = {
+ "@cspell/dict-companies-3.1.3" = {
name = "_at_cspell_slash_dict-companies";
packageName = "@cspell/dict-companies";
- version = "3.1.2";
+ version = "3.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-companies/-/dict-companies-3.1.2.tgz";
- sha512 = "OwR5i1xbYuJX7FtHQySmTy3iJtPV1rZQ3jFCxFGwrA1xRQ4rtRcDQ+sTXBCIAoJHkXa84f9J3zsngOKmMGyS/w==";
+ url = "https://registry.npmjs.org/@cspell/dict-companies/-/dict-companies-3.1.3.tgz";
+ sha512 = "qaAmfKtQLA7Sbe9zfFVpcwyG92cx6+EiWIpPURv11Ng2QMv2PKhYcterUJBooAvgqD0/qq+AsLN8MREloY5Mdw==";
};
};
"@cspell/dict-cpp-1.1.40" = {
@@ -3343,13 +3298,13 @@ let
sha512 = "sscfB3woNDNj60/yGXAdwNtIRWZ89y35xnIaJVDMk5TPMMpaDvuk0a34iOPIq0g4V+Y8e3RyAg71SH6ADwSjGw==";
};
};
- "@cspell/dict-cpp-5.1.9" = {
+ "@cspell/dict-cpp-5.1.12" = {
name = "_at_cspell_slash_dict-cpp";
packageName = "@cspell/dict-cpp";
- version = "5.1.9";
+ version = "5.1.12";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-cpp/-/dict-cpp-5.1.9.tgz";
- sha512 = "lZmPKn3qfkWQ7tr+yw6JhuhscsyRgRHEOpOd0fhtPt0N154FNsGebGGLW0SOZUuGgW7Nk3lCCwHP85GIemnlqQ==";
+ url = "https://registry.npmjs.org/@cspell/dict-cpp/-/dict-cpp-5.1.12.tgz";
+ sha512 = "6lXLOFIa+k/qBcu0bjaE/Kc6v3sh9VhsDOXD1Dalm3zgd0QIMjp5XBmkpSdCAK3pWCPV0Se7ysVLDfCea1BuXg==";
};
};
"@cspell/dict-cryptocurrencies-1.0.10" = {
@@ -3487,13 +3442,13 @@ let
sha512 = "g+uKLWvOp9IEZvrIvBPTr/oaO6619uH/wyqypqvwpmnmpjcfi8+/hqZH8YNKt15oviK8k4CkINIqNhyndG9d9Q==";
};
};
- "@cspell/dict-en-common-misspellings-2.0.1" = {
+ "@cspell/dict-en-common-misspellings-2.0.3" = {
name = "_at_cspell_slash_dict-en-common-misspellings";
packageName = "@cspell/dict-en-common-misspellings";
- version = "2.0.1";
+ version = "2.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-en-common-misspellings/-/dict-en-common-misspellings-2.0.1.tgz";
- sha512 = "uWaP8UG4uvcPyqaG0FzPKCm5kfmhsiiQ45Fs6b3/AEAqfq7Fj1JW0+S3qRt85FQA9SoU6gUJCz9wkK/Ylh7m5A==";
+ url = "https://registry.npmjs.org/@cspell/dict-en-common-misspellings/-/dict-en-common-misspellings-2.0.3.tgz";
+ sha512 = "8nF1z9nUiSgMyikL66HTbDO7jCGtB24TxKBasXIBwkBKMDZgA2M883iXdeByy6m1JJUcCGFkSftVYp2W0bUgjw==";
};
};
"@cspell/dict-en-gb-1.1.33" = {
@@ -3514,13 +3469,13 @@ let
sha512 = "UPwR4rfiJCxnS+Py+EK9E4AUj3aPZE4p/yBRSHN+5aBQConlI0lLDtMceH5wlupA/sQTU1ERZGPJA9L96jVSyQ==";
};
};
- "@cspell/dict-en_us-4.3.21" = {
+ "@cspell/dict-en_us-4.3.23" = {
name = "_at_cspell_slash_dict-en_us";
packageName = "@cspell/dict-en_us";
- version = "4.3.21";
+ version = "4.3.23";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-en_us/-/dict-en_us-4.3.21.tgz";
- sha512 = "Bzoo2aS4Pej/MGIFlATpp0wMt9IzVHrhDjdV7FgkAIXbjrOn67ojbTxCgWs8AuCNVfK8lBYGEvs5+ElH1msF8w==";
+ url = "https://registry.npmjs.org/@cspell/dict-en_us/-/dict-en_us-4.3.23.tgz";
+ sha512 = "l0SoEQBsi3zDSl3OuL4/apBkxjuj4hLIg/oy6+gZ7LWh03rKdF6VNtSZNXWAmMY+pmb1cGA3ouleTiJIglbsIg==";
};
};
"@cspell/dict-filetypes-1.1.8" = {
@@ -3577,13 +3532,13 @@ let
sha512 = "Mbi+zWdiP9yzL+X4YD9Tgcm5YQ95Ql+Y3vF2LRnOY6g2QWaijTRN1rgksVuxzpFqHi//+bx2uoUb0XEKBYDi8g==";
};
};
- "@cspell/dict-fullstack-3.1.8" = {
+ "@cspell/dict-fullstack-3.2.0" = {
name = "_at_cspell_slash_dict-fullstack";
packageName = "@cspell/dict-fullstack";
- version = "3.1.8";
+ version = "3.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-fullstack/-/dict-fullstack-3.1.8.tgz";
- sha512 = "YRlZupL7uqMCtEBK0bDP9BrcPnjDhz7m4GBqCc1EYqfXauHbLmDT8ELha7T/E7wsFKniHSjzwDZzhNXo2lusRQ==";
+ url = "https://registry.npmjs.org/@cspell/dict-fullstack/-/dict-fullstack-3.2.0.tgz";
+ sha512 = "sIGQwU6G3rLTo+nx0GKyirR5dQSFeTIzFTOrURw51ISf+jKG9a3OmvsVtc2OANfvEAOLOC9Wfd8WYhmsO8KRDQ==";
};
};
"@cspell/dict-gaming-terms-1.0.5" = {
@@ -3712,13 +3667,13 @@ let
sha512 = "4JsCLCRhhLMLiaHpmR7zHFjj1qOauzDI5ZzCNQS31TUMfsOo26jAKDfo0jljFAKgw5M2fEG7sKr8IlPpQAYrmQ==";
};
};
- "@cspell/dict-k8s-1.0.5" = {
+ "@cspell/dict-k8s-1.0.6" = {
name = "_at_cspell_slash_dict-k8s";
packageName = "@cspell/dict-k8s";
- version = "1.0.5";
+ version = "1.0.6";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-k8s/-/dict-k8s-1.0.5.tgz";
- sha512 = "Cj+/ZV4S+MKlwfocSJZqe/2UAd/sY8YtlZjbK25VN1nCnrsKrBjfkX29vclwSj1U9aJg4Z9jw/uMjoaKu9ZrpQ==";
+ url = "https://registry.npmjs.org/@cspell/dict-k8s/-/dict-k8s-1.0.6.tgz";
+ sha512 = "srhVDtwrd799uxMpsPOQqeDJY+gEocgZpoK06EFrb4GRYGhv7lXo9Fb+xQMyQytzOW9dw4DNOEck++nacDuymg==";
};
};
"@cspell/dict-latex-1.0.25" = {
@@ -3820,13 +3775,13 @@ let
sha512 = "RwkuZGcYBxL3Yux3cSG/IOWGlQ1e9HLCpHeyMtTVGYKAIkFAVUnGrz20l16/Q7zUG7IEktBz5O42kAozrEnqMQ==";
};
};
- "@cspell/dict-npm-5.0.16" = {
+ "@cspell/dict-npm-5.0.18" = {
name = "_at_cspell_slash_dict-npm";
packageName = "@cspell/dict-npm";
- version = "5.0.16";
+ version = "5.0.18";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-npm/-/dict-npm-5.0.16.tgz";
- sha512 = "ZWPnLAziEcSCvV0c8k9Qj88pfMu+wZwM5Qks87ShsfBgI8uLZ9tGHravA7gmjH1Gd7Bgxy2ulvXtSqIWPh1lew==";
+ url = "https://registry.npmjs.org/@cspell/dict-npm/-/dict-npm-5.0.18.tgz";
+ sha512 = "weMTyxWpzz19q4wv9n183BtFvdD5fCjtze+bFKpl+4rO/YlPhHL2cXLAeexJz/VDSBecwX4ybTZYoknd1h2J4w==";
};
};
"@cspell/dict-php-1.0.25" = {
@@ -3856,13 +3811,13 @@ let
sha512 = "zF/raM/lkhXeHf4I43OtK0gP9rBeEJFArscTVwLWOCIvNk21MJcNoTYoaGw+c056+Q+hJL0psGLO7QN+mxYH1A==";
};
};
- "@cspell/dict-powershell-5.0.4" = {
+ "@cspell/dict-powershell-5.0.5" = {
name = "_at_cspell_slash_dict-powershell";
packageName = "@cspell/dict-powershell";
- version = "5.0.4";
+ version = "5.0.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-powershell/-/dict-powershell-5.0.4.tgz";
- sha512 = "eosDShapDgBWN9ULF7+sRNdUtzRnUdsfEdBSchDm8FZA4HOqxUSZy3b/cX/Rdw0Fnw0AKgk0kzgXw7tS6vwJMQ==";
+ url = "https://registry.npmjs.org/@cspell/dict-powershell/-/dict-powershell-5.0.5.tgz";
+ sha512 = "3JVyvMoDJesAATYGOxcUWPbQPUvpZmkinV3m8HL1w1RrjeMVXXuK7U1jhopSneBtLhkU+9HKFwgh9l9xL9mY2Q==";
};
};
"@cspell/dict-public-licenses-2.0.7" = {
@@ -3883,13 +3838,13 @@ let
sha512 = "KuyOQaby9NID/pn7EkXilpUxjVIvvyLzhr7BPsDS6FcvUE8Yhss6bJowEDHSv6pa+W2387phoqbDf2rTicquAA==";
};
};
- "@cspell/dict-python-4.2.1" = {
+ "@cspell/dict-python-4.2.3" = {
name = "_at_cspell_slash_dict-python";
packageName = "@cspell/dict-python";
- version = "4.2.1";
+ version = "4.2.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-4.2.1.tgz";
- sha512 = "9X2jRgyM0cxBoFQRo4Zc8oacyWnXi+0/bMI5FGibZNZV4y/o9UoFEr6agjU260/cXHTjIdkX233nN7eb7dtyRg==";
+ url = "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-4.2.3.tgz";
+ sha512 = "C1CPX9wwEGgcHv/p7KfjuIOp1G6KNyx5gWYweAd6/KPv+ZpeM1v572zFUTmpO8WDuAfKFf00nqYL8/GmCENWBw==";
};
};
"@cspell/dict-r-2.0.1" = {
@@ -3928,13 +3883,13 @@ let
sha512 = "lR4boDzs79YD6+30mmiSGAMMdwh7HTBAPUFSB0obR3Kidibfc3GZ+MHWZXay5dxZ4nBKM06vyjtanF9VJ8q1Iw==";
};
};
- "@cspell/dict-rust-4.0.4" = {
+ "@cspell/dict-rust-4.0.5" = {
name = "_at_cspell_slash_dict-rust";
packageName = "@cspell/dict-rust";
- version = "4.0.4";
+ version = "4.0.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-rust/-/dict-rust-4.0.4.tgz";
- sha512 = "v9/LcZknt/Xq7m1jdTWiQEtmkVVKdE1etAfGL2sgcWpZYewEa459HeWndNA0gfzQrpWX9sYay18mt7pqClJEdA==";
+ url = "https://registry.npmjs.org/@cspell/dict-rust/-/dict-rust-4.0.5.tgz";
+ sha512 = "DIvlPRDemjKQy8rCqftAgGNZxY5Bg+Ps7qAIJjxkSjmMETyDgl0KTVuaJPt7EK4jJt6uCZ4ILy96npsHDPwoXA==";
};
};
"@cspell/dict-scala-1.0.21" = {
@@ -3946,13 +3901,13 @@ let
sha512 = "5V/R7PRbbminTpPS3ywgdAalI9BHzcEjEj9ug4kWYvBIGwSnS7T6QCFCiu+e9LvEGUqQC+NHgLY4zs1NaBj2vA==";
};
};
- "@cspell/dict-scala-5.0.2" = {
+ "@cspell/dict-scala-5.0.3" = {
name = "_at_cspell_slash_dict-scala";
packageName = "@cspell/dict-scala";
- version = "5.0.2";
+ version = "5.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-scala/-/dict-scala-5.0.2.tgz";
- sha512 = "v97ClgidZt99JUm7OjhQugDHmhx4U8fcgunHvD/BsXWjXNj4cTr0m0YjofyZoL44WpICsNuFV9F/sv9OM5HUEw==";
+ url = "https://registry.npmjs.org/@cspell/dict-scala/-/dict-scala-5.0.3.tgz";
+ sha512 = "4yGb4AInT99rqprxVNT9TYb1YSpq58Owzq7zi3ZS5T0u899Y4VsxsBiOgHnQ/4W+ygi+sp+oqef8w8nABR2lkg==";
};
};
"@cspell/dict-software-terms-1.0.48" = {
@@ -3964,13 +3919,13 @@ let
sha512 = "pfF3Ys2gRffu5ElqkH7FQMDMi/iZMyOzpGMb3FSH0PJ2AnRQ5rRNWght1h2L36YxvXl0mWVaFrrfwiOyRIc8ZQ==";
};
};
- "@cspell/dict-software-terms-3.4.6" = {
+ "@cspell/dict-software-terms-4.0.3" = {
name = "_at_cspell_slash_dict-software-terms";
packageName = "@cspell/dict-software-terms";
- version = "3.4.6";
+ version = "4.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-software-terms/-/dict-software-terms-3.4.6.tgz";
- sha512 = "Cap+WL4iM9NgwxdVIa93aDEGKGNm1t+DLJTnjoWkGHXxSBPG8Kcbnlss6mTtwLv9/NYPmQsmJi5qHXruuHx2ow==";
+ url = "https://registry.npmjs.org/@cspell/dict-software-terms/-/dict-software-terms-4.0.3.tgz";
+ sha512 = "65QAVMc3YlcI7PcqWRY5ox53tTWC8aktUZdJYCVs4VDBPUCTSDnTSmSreeg4F5Z468clv9KF/S0PkxbLjgW72A==";
};
};
"@cspell/dict-sql-2.1.3" = {
@@ -4018,13 +3973,13 @@ let
sha512 = "yIuGeeZtQA2gqpGefGjZqBl8iGJpIYWz0QzDqsscNi2qfSnLsbjM0RkRbTehM8y9gGGe7xfgUP5adxceJa5Krg==";
};
};
- "@cspell/dict-typescript-3.1.5" = {
+ "@cspell/dict-typescript-3.1.6" = {
name = "_at_cspell_slash_dict-typescript";
packageName = "@cspell/dict-typescript";
- version = "3.1.5";
+ version = "3.1.6";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-typescript/-/dict-typescript-3.1.5.tgz";
- sha512 = "EkIwwNV/xqEoBPJml2S16RXj65h1kvly8dfDLgXerrKw6puybZdvAHerAph6/uPTYdtLcsPyJYkPt5ISOJYrtw==";
+ url = "https://registry.npmjs.org/@cspell/dict-typescript/-/dict-typescript-3.1.6.tgz";
+ sha512 = "1beC6O4P/j23VuxX+i0+F7XqPVc3hhiAzGJHEKqnWf5cWAXQtg0xz3xQJ5MvYx2a7iLaSa+lu7+05vG9UHyu9Q==";
};
};
"@cspell/dict-vue-3.0.0" = {
@@ -4036,22 +3991,31 @@ let
sha512 = "niiEMPWPV9IeRBRzZ0TBZmNnkK3olkOPYxC1Ny2AX4TGlYRajcW0WUtoSHmvvjZNfWLSg2L6ruiBeuPSbjnG6A==";
};
};
- "@cspell/dynamic-import-8.8.4" = {
+ "@cspell/dynamic-import-8.12.1" = {
name = "_at_cspell_slash_dynamic-import";
packageName = "@cspell/dynamic-import";
- version = "8.8.4";
+ version = "8.12.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dynamic-import/-/dynamic-import-8.8.4.tgz";
- sha512 = "tseSxrybznkmsmPaAB4aoHB9wr8Q2fOMIy3dm+yQv+U1xj+JHTN9OnUvy9sKiq0p3DQGWm/VylgSgsYaXrEHKQ==";
+ url = "https://registry.npmjs.org/@cspell/dynamic-import/-/dynamic-import-8.12.1.tgz";
+ sha512 = "18faXHALiMsXtG3v67qeyDhNRZVtkhX5Je2qw8iZQB/i61y0Mfm22iiZeXsKImrXbwP0acyhRkRA1sp1NaQmOw==";
};
};
- "@cspell/strong-weak-map-8.8.4" = {
+ "@cspell/strong-weak-map-8.12.1" = {
name = "_at_cspell_slash_strong-weak-map";
packageName = "@cspell/strong-weak-map";
- version = "8.8.4";
+ version = "8.12.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/strong-weak-map/-/strong-weak-map-8.8.4.tgz";
- sha512 = "gticEJGR6yyGeLjf+mJ0jZotWYRLVQ+J0v1VpsR1nKnXTRJY15BWXgEA/ifbU/+clpyCek79NiCIXCvmP1WT4A==";
+ url = "https://registry.npmjs.org/@cspell/strong-weak-map/-/strong-weak-map-8.12.1.tgz";
+ sha512 = "0O5qGHRXoKl0+hXGdelox2awrCMr8LXObUcWwYbSih7HIm4DwhxMO4qjDFye1NdjW0P88yhpQ23J2ceSto9C5Q==";
+ };
+ };
+ "@cspell/url-8.12.1" = {
+ name = "_at_cspell_slash_url";
+ packageName = "@cspell/url";
+ version = "8.12.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@cspell/url/-/url-8.12.1.tgz";
+ sha512 = "mUYaDniHVLw0YXn2egT2e21MYubMAf+1LDeC0kkbg4VWNxSlC1Ksyv6pqhos495esaa8OCjizdIdnGSF6al9Rw==";
};
};
"@cspotcode/source-map-support-0.8.1" = {
@@ -4306,13 +4270,13 @@ let
sha512 = "mvBSwIBUeiRscrCeJE1LwctAriBj65eUDm0Pc11iE5gRwzkmsdbS7FnZ1XUWjpSeQWL1L5g12Fc/SchPM9DUOw==";
};
};
- "@electron/get-3.0.0" = {
+ "@electron/get-3.1.0" = {
name = "_at_electron_slash_get";
packageName = "@electron/get";
- version = "3.0.0";
+ version = "3.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron/get/-/get-3.0.0.tgz";
- sha512 = "hLv4BYFiyrNRI+U0Mm2X7RxCCdJLkDUn8GCEp9QJzbLpZRko+UaLlCjOMkj6TEtirNLPyBA7y1SeGfnpOB21aQ==";
+ url = "https://registry.npmjs.org/@electron/get/-/get-3.1.0.tgz";
+ sha512 = "F+nKc0xW+kVbBRhFzaMgPy3KwmuNTYX1fx6+FxxoSnNgwYX6LD7AKBTWkU0MQ6IBoe7dz069CNkR673sPAgkCQ==";
};
};
"@electron/notarize-2.3.2" = {
@@ -4324,22 +4288,22 @@ let
sha512 = "zfayxCe19euNwRycCty1C7lF7snk9YwfRpB5M8GLr1a4ICH63znxaPNAubrMvj0yDvVozqfgsdYpXVUnpWBDpg==";
};
};
- "@electron/osx-sign-1.3.0" = {
+ "@electron/osx-sign-1.3.1" = {
name = "_at_electron_slash_osx-sign";
packageName = "@electron/osx-sign";
- version = "1.3.0";
+ version = "1.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron/osx-sign/-/osx-sign-1.3.0.tgz";
- sha512 = "TEXhxlYSDRr9JWK5nWdOv5MtuUdaZ412uxIIEQ0hLt80o0HYWtQJBlW5QmrQDMtebzATaOjKG9UfCzLyA90zWQ==";
+ url = "https://registry.npmjs.org/@electron/osx-sign/-/osx-sign-1.3.1.tgz";
+ sha512 = "BAfviURMHpmb1Yb50YbCxnOY0wfwaLXH5KJ4+80zS0gUkzDX3ec23naTlEqKsN+PwYn+a1cCzM7BJ4Wcd3sGzw==";
};
};
- "@electron/packager-18.3.2" = {
+ "@electron/packager-18.3.3" = {
name = "_at_electron_slash_packager";
packageName = "@electron/packager";
- version = "18.3.2";
+ version = "18.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron/packager/-/packager-18.3.2.tgz";
- sha512 = "orjylavppgIh24qkNpWm2B/LQUpCS/YLOoKoU+eMK/hJgIhShLDsusPIQzgUGVwNCichu8/zPAGfdQZXHG0gtw==";
+ url = "https://registry.npmjs.org/@electron/packager/-/packager-18.3.3.tgz";
+ sha512 = "hGXzwbUdxv49XvlYwlVPC6W6j6WaXUAzKkYyyTeiwdhxvHFMfQSEJxVHsQpqMFzZZ7wrr7iqiokOFZ/qkgEzUQ==";
};
};
"@electron/rebuild-3.6.0" = {
@@ -4360,13 +4324,13 @@ let
sha512 = "fKpv9kg4SPmt+hY7SVBnIYULE9QJl8L3sCfcBsnqbJwwBwAeTLokJ9TRt9y7bK0JAzIW2y78TVVjvnQEms/yyA==";
};
};
- "@electron/windows-sign-1.1.2" = {
+ "@electron/windows-sign-1.1.3" = {
name = "_at_electron_slash_windows-sign";
packageName = "@electron/windows-sign";
- version = "1.1.2";
+ version = "1.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron/windows-sign/-/windows-sign-1.1.2.tgz";
- sha512 = "eXEiZjDtxW3QORCWfRUarANPRTlH9B6At4jqBZJ0NzokSGutXQUVLPA6WmGpIhDW6w2yCMdHW1EJd1HrXtU5sg==";
+ url = "https://registry.npmjs.org/@electron/windows-sign/-/windows-sign-1.1.3.tgz";
+ sha512 = "OqVSdAe+/88fIjvTDWiy+5Ho1nXsiBhE5RTsIQ6M/zcxcDAEP2TlQCkOyusItnmzXRN+XTFaK9gKhiZ6KGyXQw==";
};
};
"@emmetio/abbreviation-2.3.3" = {
@@ -4441,31 +4405,31 @@ let
sha512 = "ZsZ2I9Vzso3Ho/pjZFsmmZ++FWeEd/txqybHTm4OgaZzdS8V9V/YYWQwg5TC38Z7uLWUV1vavpLLbjJtKubR1A==";
};
};
- "@esbuild-plugins/node-globals-polyfill-0.2.3" = {
- name = "_at_esbuild-plugins_slash_node-globals-polyfill";
- packageName = "@esbuild-plugins/node-globals-polyfill";
- version = "0.2.3";
+ "@emnapi/core-1.2.0" = {
+ name = "_at_emnapi_slash_core";
+ packageName = "@emnapi/core";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@esbuild-plugins/node-globals-polyfill/-/node-globals-polyfill-0.2.3.tgz";
- sha512 = "r3MIryXDeXDOZh7ih1l/yE9ZLORCd5e8vWg02azWRGj5SPTuoh69A2AIyn0Z31V/kHBfZ4HgWJ+OK3GTTwLmnw==";
+ url = "https://registry.npmjs.org/@emnapi/core/-/core-1.2.0.tgz";
+ sha512 = "E7Vgw78I93we4ZWdYCb4DGAwRROGkMIXk7/y87UmANR+J6qsWusmC3gLt0H+O0KOt5e6O38U8oJamgbudrES/w==";
};
};
- "@esbuild-plugins/node-modules-polyfill-0.2.2" = {
- name = "_at_esbuild-plugins_slash_node-modules-polyfill";
- packageName = "@esbuild-plugins/node-modules-polyfill";
- version = "0.2.2";
+ "@emnapi/runtime-1.2.0" = {
+ name = "_at_emnapi_slash_runtime";
+ packageName = "@emnapi/runtime";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@esbuild-plugins/node-modules-polyfill/-/node-modules-polyfill-0.2.2.tgz";
- sha512 = "LXV7QsWJxRuMYvKbiznh+U1ilIop3g2TeKRzUxOG5X3YITc8JyyTa90BmLwqqv0YnX4v32CSlG+vsziZp9dMvA==";
+ url = "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.2.0.tgz";
+ sha512 = "bV21/9LQmcQeCPEg3BDFtvwL6cwiTMksYNWQQ4KOxCZikEGalWtenoZ0wCiukJINlGCIi2KXx01g4FoH/LxpzQ==";
};
};
- "@esbuild/android-arm-0.17.19" = {
- name = "_at_esbuild_slash_android-arm";
- packageName = "@esbuild/android-arm";
- version = "0.17.19";
+ "@emnapi/wasi-threads-1.0.1" = {
+ name = "_at_emnapi_slash_wasi-threads";
+ packageName = "@emnapi/wasi-threads";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.17.19.tgz";
- sha512 = "rIKddzqhmav7MSmoFCmDIb6e2W57geRsM94gV2l38fzhXMwq7hZoClug9USI2pFRGL06f4IOPHHpFNOkWieR8A==";
+ url = "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.0.1.tgz";
+ sha512 = "iIBu7mwkq4UQGeMEM8bLwNK962nXdhodeScX4slfQnRhEMMzvYivHhutCIk8uojvmASXXPC2WNEjwxFWk72Oqw==";
};
};
"@esbuild/android-arm-0.19.8" = {
@@ -4477,15 +4441,6 @@ let
sha512 = "31E2lxlGM1KEfivQl8Yf5aYU/mflz9g06H6S15ITUFQueMFtFjESRMoDSkvMo8thYvLBax+VKTPlpnx+sPicOA==";
};
};
- "@esbuild/android-arm64-0.17.19" = {
- name = "_at_esbuild_slash_android-arm64";
- packageName = "@esbuild/android-arm64";
- version = "0.17.19";
- src = fetchurl {
- url = "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.17.19.tgz";
- sha512 = "KBMWvEZooR7+kzY0BtbTQn0OAYY7CsiydT63pVEaPtVYF0hXbUaOyZog37DKxK7NF3XacBJOpYT4adIJh+avxA==";
- };
- };
"@esbuild/android-arm64-0.19.8" = {
name = "_at_esbuild_slash_android-arm64";
packageName = "@esbuild/android-arm64";
@@ -4495,15 +4450,6 @@ let
sha512 = "B8JbS61bEunhfx8kasogFENgQfr/dIp+ggYXwTqdbMAgGDhRa3AaPpQMuQU0rNxDLECj6FhDzk1cF9WHMVwrtA==";
};
};
- "@esbuild/android-x64-0.17.19" = {
- name = "_at_esbuild_slash_android-x64";
- packageName = "@esbuild/android-x64";
- version = "0.17.19";
- src = fetchurl {
- url = "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.17.19.tgz";
- sha512 = "uUTTc4xGNDT7YSArp/zbtmbhO0uEEK9/ETW29Wk1thYUJBz3IVnvgEiEwEa9IeLyvnpKrWK64Utw2bgUmDveww==";
- };
- };
"@esbuild/android-x64-0.19.8" = {
name = "_at_esbuild_slash_android-x64";
packageName = "@esbuild/android-x64";
@@ -4513,15 +4459,6 @@ let
sha512 = "rdqqYfRIn4jWOp+lzQttYMa2Xar3OK9Yt2fhOhzFXqg0rVWEfSclJvZq5fZslnz6ypHvVf3CT7qyf0A5pM682A==";
};
};
- "@esbuild/darwin-arm64-0.17.19" = {
- name = "_at_esbuild_slash_darwin-arm64";
- packageName = "@esbuild/darwin-arm64";
- version = "0.17.19";
- src = fetchurl {
- url = "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.17.19.tgz";
- sha512 = "80wEoCfF/hFKM6WE1FyBHc9SfUblloAWx6FJkFWTWiCoht9Mc0ARGEM47e67W9rI09YoUxJL68WHfDRYEAvOhg==";
- };
- };
"@esbuild/darwin-arm64-0.19.8" = {
name = "_at_esbuild_slash_darwin-arm64";
packageName = "@esbuild/darwin-arm64";
@@ -4531,15 +4468,6 @@ let
sha512 = "RQw9DemMbIq35Bprbboyf8SmOr4UXsRVxJ97LgB55VKKeJOOdvsIPy0nFyF2l8U+h4PtBx/1kRf0BelOYCiQcw==";
};
};
- "@esbuild/darwin-x64-0.17.19" = {
- name = "_at_esbuild_slash_darwin-x64";
- packageName = "@esbuild/darwin-x64";
- version = "0.17.19";
- src = fetchurl {
- url = "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.17.19.tgz";
- sha512 = "IJM4JJsLhRYr9xdtLytPLSH9k/oxR3boaUIYiHkAawtwNOXKE8KoU8tMvryogdcT8AU+Bflmh81Xn6Q0vTZbQw==";
- };
- };
"@esbuild/darwin-x64-0.19.8" = {
name = "_at_esbuild_slash_darwin-x64";
packageName = "@esbuild/darwin-x64";
@@ -4549,15 +4477,6 @@ let
sha512 = "3sur80OT9YdeZwIVgERAysAbwncom7b4bCI2XKLjMfPymTud7e/oY4y+ci1XVp5TfQp/bppn7xLw1n/oSQY3/Q==";
};
};
- "@esbuild/freebsd-arm64-0.17.19" = {
- name = "_at_esbuild_slash_freebsd-arm64";
- packageName = "@esbuild/freebsd-arm64";
- version = "0.17.19";
- src = fetchurl {
- url = "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.19.tgz";
- sha512 = "pBwbc7DufluUeGdjSU5Si+P3SoMF5DQ/F/UmTSb8HXO80ZEAJmrykPyzo1IfNbAoaqw48YRpv8shwd1NoI0jcQ==";
- };
- };
"@esbuild/freebsd-arm64-0.19.8" = {
name = "_at_esbuild_slash_freebsd-arm64";
packageName = "@esbuild/freebsd-arm64";
@@ -4567,15 +4486,6 @@ let
sha512 = "WAnPJSDattvS/XtPCTj1tPoTxERjcTpH6HsMr6ujTT+X6rylVe8ggxk8pVxzf5U1wh5sPODpawNicF5ta/9Tmw==";
};
};
- "@esbuild/freebsd-x64-0.17.19" = {
- name = "_at_esbuild_slash_freebsd-x64";
- packageName = "@esbuild/freebsd-x64";
- version = "0.17.19";
- src = fetchurl {
- url = "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.17.19.tgz";
- sha512 = "4lu+n8Wk0XlajEhbEffdy2xy53dpR06SlzvhGByyg36qJw6Kpfk7cp45DR/62aPH9mtJRmIyrXAS5UWBrJT6TQ==";
- };
- };
"@esbuild/freebsd-x64-0.19.8" = {
name = "_at_esbuild_slash_freebsd-x64";
packageName = "@esbuild/freebsd-x64";
@@ -4585,15 +4495,6 @@ let
sha512 = "ICvZyOplIjmmhjd6mxi+zxSdpPTKFfyPPQMQTK/w+8eNK6WV01AjIztJALDtwNNfFhfZLux0tZLC+U9nSyA5Zg==";
};
};
- "@esbuild/linux-arm-0.17.19" = {
- name = "_at_esbuild_slash_linux-arm";
- packageName = "@esbuild/linux-arm";
- version = "0.17.19";
- src = fetchurl {
- url = "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.17.19.tgz";
- sha512 = "cdmT3KxjlOQ/gZ2cjfrQOtmhG4HJs6hhvm3mWSRDPtZ/lP5oe8FWceS10JaSJC13GBd4eH/haHnqf7hhGNLerA==";
- };
- };
"@esbuild/linux-arm-0.19.8" = {
name = "_at_esbuild_slash_linux-arm";
packageName = "@esbuild/linux-arm";
@@ -4603,15 +4504,6 @@ let
sha512 = "H4vmI5PYqSvosPaTJuEppU9oz1dq2A7Mr2vyg5TF9Ga+3+MGgBdGzcyBP7qK9MrwFQZlvNyJrvz6GuCaj3OukQ==";
};
};
- "@esbuild/linux-arm64-0.17.19" = {
- name = "_at_esbuild_slash_linux-arm64";
- packageName = "@esbuild/linux-arm64";
- version = "0.17.19";
- src = fetchurl {
- url = "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.17.19.tgz";
- sha512 = "ct1Tg3WGwd3P+oZYqic+YZF4snNl2bsnMKRkb3ozHmnM0dGWuxcPTTntAF6bOP0Sp4x0PjSF+4uHQ1xvxfRKqg==";
- };
- };
"@esbuild/linux-arm64-0.19.8" = {
name = "_at_esbuild_slash_linux-arm64";
packageName = "@esbuild/linux-arm64";
@@ -4621,15 +4513,6 @@ let
sha512 = "z1zMZivxDLHWnyGOctT9JP70h0beY54xDDDJt4VpTX+iwA77IFsE1vCXWmprajJGa+ZYSqkSbRQ4eyLCpCmiCQ==";
};
};
- "@esbuild/linux-ia32-0.17.19" = {
- name = "_at_esbuild_slash_linux-ia32";
- packageName = "@esbuild/linux-ia32";
- version = "0.17.19";
- src = fetchurl {
- url = "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.17.19.tgz";
- sha512 = "w4IRhSy1VbsNxHRQpeGCHEmibqdTUx61Vc38APcsRbuVgK0OPEnQ0YD39Brymn96mOx48Y2laBQGqgZ0j9w6SQ==";
- };
- };
"@esbuild/linux-ia32-0.19.8" = {
name = "_at_esbuild_slash_linux-ia32";
packageName = "@esbuild/linux-ia32";
@@ -4639,15 +4522,6 @@ let
sha512 = "1a8suQiFJmZz1khm/rDglOc8lavtzEMRo0v6WhPgxkrjcU0LkHj+TwBrALwoz/OtMExvsqbbMI0ChyelKabSvQ==";
};
};
- "@esbuild/linux-loong64-0.17.19" = {
- name = "_at_esbuild_slash_linux-loong64";
- packageName = "@esbuild/linux-loong64";
- version = "0.17.19";
- src = fetchurl {
- url = "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.17.19.tgz";
- sha512 = "2iAngUbBPMq439a+z//gE+9WBldoMp1s5GWsUSgqHLzLJ9WoZLZhpwWuym0u0u/4XmZ3gpHmzV84PonE+9IIdQ==";
- };
- };
"@esbuild/linux-loong64-0.19.8" = {
name = "_at_esbuild_slash_linux-loong64";
packageName = "@esbuild/linux-loong64";
@@ -4657,15 +4531,6 @@ let
sha512 = "fHZWS2JJxnXt1uYJsDv9+b60WCc2RlvVAy1F76qOLtXRO+H4mjt3Tr6MJ5l7Q78X8KgCFudnTuiQRBhULUyBKQ==";
};
};
- "@esbuild/linux-mips64el-0.17.19" = {
- name = "_at_esbuild_slash_linux-mips64el";
- packageName = "@esbuild/linux-mips64el";
- version = "0.17.19";
- src = fetchurl {
- url = "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.17.19.tgz";
- sha512 = "LKJltc4LVdMKHsrFe4MGNPp0hqDFA1Wpt3jE1gEyM3nKUvOiO//9PheZZHfYRfYl6AwdTH4aTcXSqBerX0ml4A==";
- };
- };
"@esbuild/linux-mips64el-0.19.8" = {
name = "_at_esbuild_slash_linux-mips64el";
packageName = "@esbuild/linux-mips64el";
@@ -4675,15 +4540,6 @@ let
sha512 = "Wy/z0EL5qZYLX66dVnEg9riiwls5IYnziwuju2oUiuxVc+/edvqXa04qNtbrs0Ukatg5HEzqT94Zs7J207dN5Q==";
};
};
- "@esbuild/linux-ppc64-0.17.19" = {
- name = "_at_esbuild_slash_linux-ppc64";
- packageName = "@esbuild/linux-ppc64";
- version = "0.17.19";
- src = fetchurl {
- url = "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.17.19.tgz";
- sha512 = "/c/DGybs95WXNS8y3Ti/ytqETiW7EU44MEKuCAcpPto3YjQbyK3IQVKfF6nbghD7EcLUGl0NbiL5Rt5DMhn5tg==";
- };
- };
"@esbuild/linux-ppc64-0.19.8" = {
name = "_at_esbuild_slash_linux-ppc64";
packageName = "@esbuild/linux-ppc64";
@@ -4693,15 +4549,6 @@ let
sha512 = "ETaW6245wK23YIEufhMQ3HSeHO7NgsLx8gygBVldRHKhOlD1oNeNy/P67mIh1zPn2Hr2HLieQrt6tWrVwuqrxg==";
};
};
- "@esbuild/linux-riscv64-0.17.19" = {
- name = "_at_esbuild_slash_linux-riscv64";
- packageName = "@esbuild/linux-riscv64";
- version = "0.17.19";
- src = fetchurl {
- url = "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.17.19.tgz";
- sha512 = "FC3nUAWhvFoutlhAkgHf8f5HwFWUL6bYdvLc/TTuxKlvLi3+pPzdZiFKSWz/PF30TB1K19SuCxDTI5KcqASJqA==";
- };
- };
"@esbuild/linux-riscv64-0.19.8" = {
name = "_at_esbuild_slash_linux-riscv64";
packageName = "@esbuild/linux-riscv64";
@@ -4711,15 +4558,6 @@ let
sha512 = "T2DRQk55SgoleTP+DtPlMrxi/5r9AeFgkhkZ/B0ap99zmxtxdOixOMI570VjdRCs9pE4Wdkz7JYrsPvsl7eESg==";
};
};
- "@esbuild/linux-s390x-0.17.19" = {
- name = "_at_esbuild_slash_linux-s390x";
- packageName = "@esbuild/linux-s390x";
- version = "0.17.19";
- src = fetchurl {
- url = "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.17.19.tgz";
- sha512 = "IbFsFbxMWLuKEbH+7sTkKzL6NJmG2vRyy6K7JJo55w+8xDk7RElYn6xvXtDW8HCfoKBFK69f3pgBJSUSQPr+4Q==";
- };
- };
"@esbuild/linux-s390x-0.19.8" = {
name = "_at_esbuild_slash_linux-s390x";
packageName = "@esbuild/linux-s390x";
@@ -4729,15 +4567,6 @@ let
sha512 = "NPxbdmmo3Bk7mbNeHmcCd7R7fptJaczPYBaELk6NcXxy7HLNyWwCyDJ/Xx+/YcNH7Im5dHdx9gZ5xIwyliQCbg==";
};
};
- "@esbuild/linux-x64-0.17.19" = {
- name = "_at_esbuild_slash_linux-x64";
- packageName = "@esbuild/linux-x64";
- version = "0.17.19";
- src = fetchurl {
- url = "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.17.19.tgz";
- sha512 = "68ngA9lg2H6zkZcyp22tsVt38mlhWde8l3eJLWkyLrp4HwMUr3c1s/M2t7+kHIhvMjglIBrFpncX1SzMckomGw==";
- };
- };
"@esbuild/linux-x64-0.19.8" = {
name = "_at_esbuild_slash_linux-x64";
packageName = "@esbuild/linux-x64";
@@ -4747,15 +4576,6 @@ let
sha512 = "lytMAVOM3b1gPypL2TRmZ5rnXl7+6IIk8uB3eLsV1JwcizuolblXRrc5ShPrO9ls/b+RTp+E6gbsuLWHWi2zGg==";
};
};
- "@esbuild/netbsd-x64-0.17.19" = {
- name = "_at_esbuild_slash_netbsd-x64";
- packageName = "@esbuild/netbsd-x64";
- version = "0.17.19";
- src = fetchurl {
- url = "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.17.19.tgz";
- sha512 = "CwFq42rXCR8TYIjIfpXCbRX0rp1jo6cPIUPSaWwzbVI4aOfX96OXY8M6KNmtPcg7QjYeDmN+DD0Wp3LaBOLf4Q==";
- };
- };
"@esbuild/netbsd-x64-0.19.8" = {
name = "_at_esbuild_slash_netbsd-x64";
packageName = "@esbuild/netbsd-x64";
@@ -4765,15 +4585,6 @@ let
sha512 = "hvWVo2VsXz/8NVt1UhLzxwAfo5sioj92uo0bCfLibB0xlOmimU/DeAEsQILlBQvkhrGjamP0/el5HU76HAitGw==";
};
};
- "@esbuild/openbsd-x64-0.17.19" = {
- name = "_at_esbuild_slash_openbsd-x64";
- packageName = "@esbuild/openbsd-x64";
- version = "0.17.19";
- src = fetchurl {
- url = "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.17.19.tgz";
- sha512 = "cnq5brJYrSZ2CF6c35eCmviIN3k3RczmHz8eYaVlNasVqsNY+JKohZU5MKmaOI+KkllCdzOKKdPs762VCPC20g==";
- };
- };
"@esbuild/openbsd-x64-0.19.8" = {
name = "_at_esbuild_slash_openbsd-x64";
packageName = "@esbuild/openbsd-x64";
@@ -4783,15 +4594,6 @@ let
sha512 = "/7Y7u77rdvmGTxR83PgaSvSBJCC2L3Kb1M/+dmSIvRvQPXXCuC97QAwMugBNG0yGcbEGfFBH7ojPzAOxfGNkwQ==";
};
};
- "@esbuild/sunos-x64-0.17.19" = {
- name = "_at_esbuild_slash_sunos-x64";
- packageName = "@esbuild/sunos-x64";
- version = "0.17.19";
- src = fetchurl {
- url = "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.17.19.tgz";
- sha512 = "vCRT7yP3zX+bKWFeP/zdS6SqdWB8OIpaRq/mbXQxTGHnIxspRtigpkUcDMlSCOejlHowLqII7K2JKevwyRP2rg==";
- };
- };
"@esbuild/sunos-x64-0.19.8" = {
name = "_at_esbuild_slash_sunos-x64";
packageName = "@esbuild/sunos-x64";
@@ -4801,15 +4603,6 @@ let
sha512 = "9Lc4s7Oi98GqFA4HzA/W2JHIYfnXbUYgekUP/Sm4BG9sfLjyv6GKKHKKVs83SMicBF2JwAX6A1PuOLMqpD001w==";
};
};
- "@esbuild/win32-arm64-0.17.19" = {
- name = "_at_esbuild_slash_win32-arm64";
- packageName = "@esbuild/win32-arm64";
- version = "0.17.19";
- src = fetchurl {
- url = "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.17.19.tgz";
- sha512 = "yYx+8jwowUstVdorcMdNlzklLYhPxjniHWFKgRqH7IFlUEa0Umu3KuYplf1HUZZ422e3NU9F4LGb+4O0Kdcaag==";
- };
- };
"@esbuild/win32-arm64-0.19.8" = {
name = "_at_esbuild_slash_win32-arm64";
packageName = "@esbuild/win32-arm64";
@@ -4819,15 +4612,6 @@ let
sha512 = "rq6WzBGjSzihI9deW3fC2Gqiak68+b7qo5/3kmB6Gvbh/NYPA0sJhrnp7wgV4bNwjqM+R2AApXGxMO7ZoGhIJg==";
};
};
- "@esbuild/win32-ia32-0.17.19" = {
- name = "_at_esbuild_slash_win32-ia32";
- packageName = "@esbuild/win32-ia32";
- version = "0.17.19";
- src = fetchurl {
- url = "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.17.19.tgz";
- sha512 = "eggDKanJszUtCdlVs0RB+h35wNlb5v4TWEkq4vZcmVt5u/HiDZrTXe2bWFQUez3RgNHwx/x4sk5++4NSSicKkw==";
- };
- };
"@esbuild/win32-ia32-0.19.8" = {
name = "_at_esbuild_slash_win32-ia32";
packageName = "@esbuild/win32-ia32";
@@ -4837,15 +4621,6 @@ let
sha512 = "AIAbverbg5jMvJznYiGhrd3sumfwWs8572mIJL5NQjJa06P8KfCPWZQ0NwZbPQnbQi9OWSZhFVSUWjjIrn4hSw==";
};
};
- "@esbuild/win32-x64-0.17.19" = {
- name = "_at_esbuild_slash_win32-x64";
- packageName = "@esbuild/win32-x64";
- version = "0.17.19";
- src = fetchurl {
- url = "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.17.19.tgz";
- sha512 = "lAhycmKnVOuRYNtRtatQR1LPQf2oYCkRGkSFnseDAKPl8lu5SOsK/e1sXe5a0Pc5kHIHe6P2I/ilntNv2xf3cA==";
- };
- };
"@esbuild/win32-x64-0.19.8" = {
name = "_at_esbuild_slash_win32-x64";
packageName = "@esbuild/win32-x64";
@@ -4864,22 +4639,22 @@ let
sha512 = "1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==";
};
};
- "@eslint-community/regexpp-4.10.1" = {
+ "@eslint-community/regexpp-4.11.0" = {
name = "_at_eslint-community_slash_regexpp";
packageName = "@eslint-community/regexpp";
- version = "4.10.1";
+ version = "4.11.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.1.tgz";
- sha512 = "Zm2NGpWELsQAD1xsJzGQpYfvICSsFkEpU0jxBjfdC6uNEWXcHnfs9hScFWtXVDVl+rBQJGrl4g1vcKIejpH9dA==";
+ url = "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.11.0.tgz";
+ sha512 = "G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A==";
};
};
- "@eslint/config-array-0.16.0" = {
+ "@eslint/config-array-0.17.1" = {
name = "_at_eslint_slash_config-array";
packageName = "@eslint/config-array";
- version = "0.16.0";
+ version = "0.17.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.16.0.tgz";
- sha512 = "/jmuSd74i4Czf1XXn7wGRWZCuyaUZ330NH1Bek0Pplatt4Sy1S5haN21SCLLdbeKslQ+S0wEJ+++v5YibSi+Lg==";
+ url = "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.17.1.tgz";
+ sha512 = "BlYOpej8AQ8Ev9xVqroV7a02JK3SkBAaN9GfMMH9W6Ch8FlQlkjGw4Ir7+FgYwfirivAf4t+GtzuAxqfukmISA==";
};
};
"@eslint/eslintrc-0.4.3" = {
@@ -4918,13 +4693,13 @@ let
sha512 = "Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==";
};
};
- "@eslint/js-9.5.0" = {
+ "@eslint/js-9.7.0" = {
name = "_at_eslint_slash_js";
packageName = "@eslint/js";
- version = "9.5.0";
+ version = "9.7.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@eslint/js/-/js-9.5.0.tgz";
- sha512 = "A7+AOT2ICkodvtsWnxZP4Xxk3NbZ3VMHd8oihydLRGrJgqqdEz1qSeEgXYyT/Cu8h1TWWsQRejIx48mtjZ5y1w==";
+ url = "https://registry.npmjs.org/@eslint/js/-/js-9.7.0.tgz";
+ sha512 = "ChuWDQenef8OSFnvuxv0TCVxEwmu3+hPNKvM9B34qpM0rDRbjL8t5QkQeHHeAfsKQjuH9wS82WeCi1J/owatng==";
};
};
"@eslint/object-schema-2.1.4" = {
@@ -4981,13 +4756,13 @@ let
sha512 = "V8gMy1C63oAYlvkSjhfGYOET7sOmRIUAYv/wVcKJZiVAMZ5MQ2geeXCpLGC4+vuOQe2Hs3+qAgl4y0/b8OUO+A==";
};
};
- "@expo/apple-utils-1.7.0" = {
+ "@expo/apple-utils-1.7.1" = {
name = "_at_expo_slash_apple-utils";
packageName = "@expo/apple-utils";
- version = "1.7.0";
+ version = "1.7.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@expo/apple-utils/-/apple-utils-1.7.0.tgz";
- sha512 = "RVzZTiOeuNT04fE5V4f536XmIyxbRFOJ3m/rE6kImbIZ65upOS7xdIQpihEdYOiHB5uZAcD3JClUEsMfFhTv4w==";
+ url = "https://registry.npmjs.org/@expo/apple-utils/-/apple-utils-1.7.1.tgz";
+ sha512 = "oKHKRMfpPsVIlMSwHsartqrFhxKR1PnwGzaM3i+d4/g9XE9A+bKMu5YIUT4IXX561E0YYoaeaRHuxiIzcmEmRw==";
};
};
"@expo/bunyan-4.0.0" = {
@@ -5125,22 +4900,22 @@ let
sha512 = "FyWghLu7rUaZEZSTLt/XNRukm0c9GFfwP0iFaswoDWpV6alvVg+zRAfCLdIVQEz1SVcQ3zo1hMZFDrnKGvkCuQ==";
};
};
- "@expo/eas-build-job-1.0.117" = {
+ "@expo/eas-build-job-1.0.119" = {
name = "_at_expo_slash_eas-build-job";
packageName = "@expo/eas-build-job";
- version = "1.0.117";
+ version = "1.0.119";
src = fetchurl {
- url = "https://registry.npmjs.org/@expo/eas-build-job/-/eas-build-job-1.0.117.tgz";
- sha512 = "l1EBpRH4lqRg0uPKl4/xn3V77dzWDrSAIU0r88aNq+Slznpu8U8HCkEZSh2YyF/BFhhs5lG7v8yQclVaflVBrQ==";
+ url = "https://registry.npmjs.org/@expo/eas-build-job/-/eas-build-job-1.0.119.tgz";
+ sha512 = "uWgriDXF/cKSKl62lqD0OnoCTtX8+s00te2KQ54S/tz3/LYfiE4JBRsLazQq9hIfz8JPEXwmfKN713BDeV/TOg==";
};
};
- "@expo/eas-json-10.0.0" = {
+ "@expo/eas-json-10.0.3" = {
name = "_at_expo_slash_eas-json";
packageName = "@expo/eas-json";
- version = "10.0.0";
+ version = "10.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@expo/eas-json/-/eas-json-10.0.0.tgz";
- sha512 = "3RIzqeNGhiWLfU8IGH9sxgI8OaWAAjEMprDuec1//C2QARylA6agx2knqLEi5BmSCZDPiw7QwUN3+XskHKq85w==";
+ url = "https://registry.npmjs.org/@expo/eas-json/-/eas-json-10.0.3.tgz";
+ sha512 = "eMgV1YuGP9bmGzB8+8tiJMcIiH2aEfwFwpqd1CqPs1gs5YPAQT/VmnkRIuC4DjWLuqhFr/fX9rO+yvOpr2MsIw==";
};
};
"@expo/fingerprint-0.6.1" = {
@@ -5431,13 +5206,13 @@ let
sha512 = "QdWi16+CHB9JYP7gma19OVVg0BFkvU8zNj9GjWorYI8Iv8FUxjOCcYRuAmX4s/h91e4e7BPsskc8cSrZYho9Ew==";
};
};
- "@expo/steps-1.0.117" = {
+ "@expo/steps-1.0.119" = {
name = "_at_expo_slash_steps";
packageName = "@expo/steps";
- version = "1.0.117";
+ version = "1.0.119";
src = fetchurl {
- url = "https://registry.npmjs.org/@expo/steps/-/steps-1.0.117.tgz";
- sha512 = "MjBYD5/F4tLB1TERyBCk8jF9bmhh99b2lgC6NHGD3J4QrFYSyct9CxIHJixdgaEo0QLMe0ltf3zQsJQSM+kWDw==";
+ url = "https://registry.npmjs.org/@expo/steps/-/steps-1.0.119.tgz";
+ sha512 = "raPlBDsMkRO5pOlGDa9PnjgCIJdiDTgU92GtTML0UZ+hPiy5H7Vbx2JxqtqMiZcl21mxQ7V60toqdbo7DF5iJQ==";
};
};
"@expo/timeago.js-1.0.0" = {
@@ -5521,40 +5296,31 @@ let
sha512 = "k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==";
};
};
- "@gitbeaker/core-40.0.3" = {
+ "@gitbeaker/core-40.1.2" = {
name = "_at_gitbeaker_slash_core";
packageName = "@gitbeaker/core";
- version = "40.0.3";
+ version = "40.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@gitbeaker/core/-/core-40.0.3.tgz";
- sha512 = "MzeY4oCtoa9zmPIkQIdC2KU8cGmHIXwnAi0L6jjjouqjy6kcA4BydZf8W5Xsj27Rw5iiyhfj8YC1/O3CgrzvCQ==";
+ url = "https://registry.npmjs.org/@gitbeaker/core/-/core-40.1.2.tgz";
+ sha512 = "KjP40EIdPWDX2w+GZUjgc5f9L/a0VsA6A2dkiKdH27m5BUpVrH3eHC3M0h1SsIA5edO3BiebqWFO2ipkGJCBZA==";
};
};
- "@gitbeaker/requester-utils-40.0.3" = {
+ "@gitbeaker/requester-utils-40.1.2" = {
name = "_at_gitbeaker_slash_requester-utils";
packageName = "@gitbeaker/requester-utils";
- version = "40.0.3";
+ version = "40.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@gitbeaker/requester-utils/-/requester-utils-40.0.3.tgz";
- sha512 = "L8JpuMIsvXTHfu/2wXzkc5QyfQJSWg4XyEPStHq1ig5SAcbxxqbBoe8ed27eUXLah+PcGrPInMK4cCMxhQm41g==";
+ url = "https://registry.npmjs.org/@gitbeaker/requester-utils/-/requester-utils-40.1.2.tgz";
+ sha512 = "s3c2TzJpBk3VGujEo/57+TAntg36kEhdob28i2kAEDztFWlNp0sfDT/jlDwUywKF6AbmYIJYe3FikLNyAiv+iA==";
};
};
- "@gitbeaker/rest-40.0.3" = {
+ "@gitbeaker/rest-40.1.2" = {
name = "_at_gitbeaker_slash_rest";
packageName = "@gitbeaker/rest";
- version = "40.0.3";
+ version = "40.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@gitbeaker/rest/-/rest-40.0.3.tgz";
- sha512 = "ihaA0GX3yCo4oUWbISkcjFMIw+WxDAC9L+bEYq2irz4wpv/0EpAU/0jKjggPzY4cGWL9VAyPhew77VeACv4YWw==";
- };
- };
- "@grammarly/sdk-1.11.0" = {
- name = "_at_grammarly_slash_sdk";
- packageName = "@grammarly/sdk";
- version = "1.11.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@grammarly/sdk/-/sdk-1.11.0.tgz";
- sha512 = "/LDNozZ+6qTS0yqMXo/ki6yJqTVx2s6ncOM/m/t4PjqeXrN8ejTwoiNDoDVZq18bsHjZBPP4o03M2goFYWJCHA==";
+ url = "https://registry.npmjs.org/@gitbeaker/rest/-/rest-40.1.2.tgz";
+ sha512 = "q9FYEC0SQcEbj1Hu+EOVFGRBjxbUFciK/iVD3BhBx+ZUGIPfHYS32EWL4uqVSBLq/zSUEd2gWjLy7LRVq/Pz3A==";
};
};
"@graphql-cli/common-4.1.0" = {
@@ -5602,13 +5368,13 @@ let
sha512 = "gVnnlWs0Ua+5FkuHHEriFUOI3OIbHv6DS1utxf28n6NkfGMJldC4j0xlJRY0LS6dWK34IGYgD4HelKYz2l8KiA==";
};
};
- "@graphql-tools/delegate-10.0.11" = {
+ "@graphql-tools/delegate-10.0.16" = {
name = "_at_graphql-tools_slash_delegate";
packageName = "@graphql-tools/delegate";
- version = "10.0.11";
+ version = "10.0.16";
src = fetchurl {
- url = "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-10.0.11.tgz";
- sha512 = "+sKeecdIVXhFB/66e5yjeKYZ3Lpn52yNG637ElVhciuLGgFc153rC6l6zcuNd9yx5wMrNx35U/h3HsMIEI3xNw==";
+ url = "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-10.0.16.tgz";
+ sha512 = "no4jIdHsTrHzR6Vv1YlwbxFeBnHBwPhBpemvLVnQ7CHhAviwIUWkCOHs4Uyzc5GYuHFyKJOZEXqhOz+da3hR3A==";
};
};
"@graphql-tools/delegate-7.1.5" = {
@@ -5620,40 +5386,40 @@ let
sha512 = "bQu+hDd37e+FZ0CQGEEczmRSfQRnnXeUxI/0miDV+NV/zCbEdIJj5tYFNrKT03W6wgdqx8U06d8L23LxvGri/g==";
};
};
- "@graphql-tools/executor-1.2.6" = {
+ "@graphql-tools/executor-1.3.0" = {
name = "_at_graphql-tools_slash_executor";
packageName = "@graphql-tools/executor";
- version = "1.2.6";
+ version = "1.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@graphql-tools/executor/-/executor-1.2.6.tgz";
- sha512 = "+1kjfqzM5T2R+dCw7F4vdJ3CqG+fY/LYJyhNiWEFtq0ToLwYzR/KKyD8YuzTirEjSxWTVlcBh7endkx5n5F6ew==";
+ url = "https://registry.npmjs.org/@graphql-tools/executor/-/executor-1.3.0.tgz";
+ sha512 = "e+rmEf/2EO4hDnbkO8mTS2FI+jGUNmYkSDKw5TgPVlO8VOKS+TXmJBK6E9v4Gc/39yVkZsffYfW/R8obJrA0mg==";
};
};
- "@graphql-tools/executor-graphql-ws-1.1.2" = {
+ "@graphql-tools/executor-graphql-ws-1.2.0" = {
name = "_at_graphql-tools_slash_executor-graphql-ws";
packageName = "@graphql-tools/executor-graphql-ws";
- version = "1.1.2";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@graphql-tools/executor-graphql-ws/-/executor-graphql-ws-1.1.2.tgz";
- sha512 = "+9ZK0rychTH1LUv4iZqJ4ESbmULJMTsv3XlFooPUngpxZkk00q6LqHKJRrsLErmQrVaC7cwQCaRBJa0teK17Lg==";
+ url = "https://registry.npmjs.org/@graphql-tools/executor-graphql-ws/-/executor-graphql-ws-1.2.0.tgz";
+ sha512 = "tSYC1QdrabWexLrYV0UI3uRGbde9WCY/bRhq6Jc+VXMZcfq6ea6pP5NEAVTfwbhUQ4xZvJABVVbKXtKb9uTg1w==";
};
};
- "@graphql-tools/executor-http-1.0.9" = {
+ "@graphql-tools/executor-http-1.1.5" = {
name = "_at_graphql-tools_slash_executor-http";
packageName = "@graphql-tools/executor-http";
- version = "1.0.9";
+ version = "1.1.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@graphql-tools/executor-http/-/executor-http-1.0.9.tgz";
- sha512 = "+NXaZd2MWbbrWHqU4EhXcrDbogeiCDmEbrAN+rMn4Nu2okDjn2MTFDbTIab87oEubQCH4Te1wDkWPKrzXup7+Q==";
+ url = "https://registry.npmjs.org/@graphql-tools/executor-http/-/executor-http-1.1.5.tgz";
+ sha512 = "ZAsVGUwafPc1GapLA1yoJuRx7ihpVdAv7JDHmlI2eHRQsJnMVQwcxHnjfUb/id9YAEBrP86/s4pgEoRyad3Zng==";
};
};
- "@graphql-tools/executor-legacy-ws-1.0.6" = {
+ "@graphql-tools/executor-legacy-ws-1.1.0" = {
name = "_at_graphql-tools_slash_executor-legacy-ws";
packageName = "@graphql-tools/executor-legacy-ws";
- version = "1.0.6";
+ version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@graphql-tools/executor-legacy-ws/-/executor-legacy-ws-1.0.6.tgz";
- sha512 = "lDSxz9VyyquOrvSuCCnld3256Hmd+QI2lkmkEv7d4mdzkxkK4ddAWW1geQiWrQvWmdsmcnGGlZ7gDGbhEExwqg==";
+ url = "https://registry.npmjs.org/@graphql-tools/executor-legacy-ws/-/executor-legacy-ws-1.1.0.tgz";
+ sha512 = "k+6ZyiaAd8SmwuzbEOfA/LVkuI1nqidhoMw+CJ7c41QGOjSMzc0VS0UZbJyeitI0n7a+uP/Meln1wjzJ2ReDtQ==";
};
};
"@graphql-tools/graphql-file-loader-6.2.7" = {
@@ -5818,13 +5584,13 @@ let
sha512 = "1dKp2K8UuFn7DFo1qX5c1cyazQv2h2ICwA9esHblEqCYrgf69Nk8N7SODmsfWg94OEaI74IqMoM12t7eIGwFzQ==";
};
};
- "@graphql-tools/utils-10.2.2" = {
+ "@graphql-tools/utils-10.3.2" = {
name = "_at_graphql-tools_slash_utils";
packageName = "@graphql-tools/utils";
- version = "10.2.2";
+ version = "10.3.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@graphql-tools/utils/-/utils-10.2.2.tgz";
- sha512 = "ueoplzHIgFfxhFrF4Mf/niU/tYHuO6Uekm2nCYU72qpI+7Hn9dA2/o5XOBvFXDk27Lp5VSvQY5WfmRbqwVxaYQ==";
+ url = "https://registry.npmjs.org/@graphql-tools/utils/-/utils-10.3.2.tgz";
+ sha512 = "iaqOHS4f90KNADBHqVsRBjKpM6iSvsUg1q5GhWMK03loYLaDzftrEwcsl0OkSSnRhJvAsT7q4q3r3YzRoV0v1g==";
};
};
"@graphql-tools/utils-6.2.4" = {
@@ -5935,13 +5701,13 @@ let
sha512 = "foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==";
};
};
- "@hpcc-js/wasm-2.16.2" = {
+ "@hpcc-js/wasm-2.18.0" = {
name = "_at_hpcc-js_slash_wasm";
packageName = "@hpcc-js/wasm";
- version = "2.16.2";
+ version = "2.18.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@hpcc-js/wasm/-/wasm-2.16.2.tgz";
- sha512 = "THiidUMYR8/cIfFT3MVcWuRE7bQKh295nrFBxGvUNc4Nq8e2uU1LtiplHs7AUkJ0GxgvZoR+8TQ1/E3Qb/uE2g==";
+ url = "https://registry.npmjs.org/@hpcc-js/wasm/-/wasm-2.18.0.tgz";
+ sha512 = "M9XVIvAXGH4Xcyb5UoiohWcn6fil89pcos/gClNdBZG2v+W48xSf2bjcA8BW131X/AFHUerVY28n1P1Jw81/9A==";
};
};
"@httptoolkit/websocket-stream-6.0.1" = {
@@ -6034,13 +5800,13 @@ let
sha512 = "trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg==";
};
};
- "@ibm-cloud/openapi-ruleset-1.17.1" = {
+ "@ibm-cloud/openapi-ruleset-1.18.2" = {
name = "_at_ibm-cloud_slash_openapi-ruleset";
packageName = "@ibm-cloud/openapi-ruleset";
- version = "1.17.1";
+ version = "1.18.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@ibm-cloud/openapi-ruleset/-/openapi-ruleset-1.17.1.tgz";
- sha512 = "LtmPscvla4FuCwkX7SSFpKUriIrbmh/MgHJDp1B5yNe656/uDvNgCppi87eXdTg1fjwalj400Ldk2Di1sVks6w==";
+ url = "https://registry.npmjs.org/@ibm-cloud/openapi-ruleset/-/openapi-ruleset-1.18.2.tgz";
+ sha512 = "Nbdp0Bsadpx2zvwbFadukmtN5QvL8kC/a6V/OxTk9yEDQytfVOssnboZ76IA+OC+IpAehxwjj1EpEirBWIdQKw==";
};
};
"@ibm-cloud/openapi-ruleset-utilities-1.3.2" = {
@@ -6061,6 +5827,15 @@ let
sha512 = "CifrkgQjDkUkWexmgYYNyB5603HhTHI91vLFeQXh6qrTKiCMVASol01Rs1cv6LP/A2WccZSRlJKZhbaBIs/9ZA==";
};
};
+ "@inquirer/checkbox-2.4.2" = {
+ name = "_at_inquirer_slash_checkbox";
+ packageName = "@inquirer/checkbox";
+ version = "2.4.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@inquirer/checkbox/-/checkbox-2.4.2.tgz";
+ sha512 = "iZRNbTlSB9xXt/+jdMFViBdxw1ILWu3365rzfM5OLwAyOScbDFFGSH7LEUwoq1uOIo48ymOEwYSqP5y8hQMlmA==";
+ };
+ };
"@inquirer/confirm-2.0.17" = {
name = "_at_inquirer_slash_confirm";
packageName = "@inquirer/confirm";
@@ -6070,6 +5845,15 @@ let
sha512 = "EqzhGryzmGpy2aJf6LxJVhndxYmFs+m8cxXzf8nejb1DE3sabf6mUgBcp4J0jAUEiAcYzqmkqRr7LPFh/WdnXA==";
};
};
+ "@inquirer/confirm-3.1.17" = {
+ name = "_at_inquirer_slash_confirm";
+ packageName = "@inquirer/confirm";
+ version = "3.1.17";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@inquirer/confirm/-/confirm-3.1.17.tgz";
+ sha512 = "qCpt/AABzPynz8tr69VDvhcjwmzAryipWXtW8Vi6m651da4H/d0Bdn55LkxXD7Rp2gfgxvxzTdb66AhIA8gzBA==";
+ };
+ };
"@inquirer/core-2.3.1" = {
name = "_at_inquirer_slash_core";
packageName = "@inquirer/core";
@@ -6088,6 +5872,15 @@ let
sha512 = "fKi63Khkisgda3ohnskNf5uZJj+zXOaBvOllHsOkdsXRA/ubQLJQrZchFFi57NKbZzkTunXiBMdvWOv71alonw==";
};
};
+ "@inquirer/core-9.0.5" = {
+ name = "_at_inquirer_slash_core";
+ packageName = "@inquirer/core";
+ version = "9.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@inquirer/core/-/core-9.0.5.tgz";
+ sha512 = "QWG41I7vn62O9stYKg/juKXt1PEbr/4ZZCPb4KgXDQGwgA9M5NBTQ7FnOvT1ridbxkm/wTxLCNraUs7y47pIRQ==";
+ };
+ };
"@inquirer/editor-1.2.15" = {
name = "_at_inquirer_slash_editor";
packageName = "@inquirer/editor";
@@ -6097,6 +5890,15 @@ let
sha512 = "gQ77Ls09x5vKLVNMH9q/7xvYPT6sIs5f7URksw+a2iJZ0j48tVS6crLqm2ugG33tgXHIwiEqkytY60Zyh5GkJQ==";
};
};
+ "@inquirer/editor-2.1.17" = {
+ name = "_at_inquirer_slash_editor";
+ packageName = "@inquirer/editor";
+ version = "2.1.17";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@inquirer/editor/-/editor-2.1.17.tgz";
+ sha512 = "hwx3VpFQzOY2hFWnY+XPsUGCIUVQ5kYxH6+CExv/RbMiAoN3zXtzj8DyrWBOHami0vBrrnPS8CTq3uQWc7N2BA==";
+ };
+ };
"@inquirer/expand-1.1.16" = {
name = "_at_inquirer_slash_expand";
packageName = "@inquirer/expand";
@@ -6106,13 +5908,22 @@ let
sha512 = "TGLU9egcuo+s7PxphKUCnJnpCIVY32/EwPCLLuu+gTvYiD8hZgx8Z2niNQD36sa6xcfpdLY6xXDBiL/+g1r2XQ==";
};
};
- "@inquirer/figures-1.0.3" = {
+ "@inquirer/expand-2.1.17" = {
+ name = "_at_inquirer_slash_expand";
+ packageName = "@inquirer/expand";
+ version = "2.1.17";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@inquirer/expand/-/expand-2.1.17.tgz";
+ sha512 = "s4V/dC+GeE5s97xoTtZSmC440uNKePKqZgzqEf0XM63ciilnXAtKGvoAWOePFdlK+oGTz0d8bhbPKwpKGvRYfg==";
+ };
+ };
+ "@inquirer/figures-1.0.5" = {
name = "_at_inquirer_slash_figures";
packageName = "@inquirer/figures";
- version = "1.0.3";
+ version = "1.0.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@inquirer/figures/-/figures-1.0.3.tgz";
- sha512 = "ErXXzENMH5pJt5/ssXV0DfWUZqly8nGzf0UcBV9xTnP+KyffE2mqyxIMBrZ8ijQck2nU0TQm40EQB53YreyWHw==";
+ url = "https://registry.npmjs.org/@inquirer/figures/-/figures-1.0.5.tgz";
+ sha512 = "79hP/VWdZ2UVc9bFGJnoQ/lQMpL74mGgzSYX1xUqCVk7/v73vJCMw1VuyWN1jGkZ9B3z7THAbySqGbCNefcjfA==";
};
};
"@inquirer/input-1.2.16" = {
@@ -6124,6 +5935,15 @@ let
sha512 = "Ou0LaSWvj1ni+egnyQ+NBtfM1885UwhRCMtsRt2bBO47DoC1dwtCa+ZUNgrxlnCHHF0IXsbQHYtIIjFGAavI4g==";
};
};
+ "@inquirer/input-2.2.4" = {
+ name = "_at_inquirer_slash_input";
+ packageName = "@inquirer/input";
+ version = "2.2.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@inquirer/input/-/input-2.2.4.tgz";
+ sha512 = "wvYnDITPQn+ltktj/O9kQjPxOvpmwcpxLWh8brAyD+jlEbihxtrx9cZdZcxqaCVQj3caw4eZa2Uq5xELo4yXkA==";
+ };
+ };
"@inquirer/password-1.1.16" = {
name = "_at_inquirer_slash_password";
packageName = "@inquirer/password";
@@ -6133,6 +5953,15 @@ let
sha512 = "aZYZVHLUXZ2gbBot+i+zOJrks1WaiI95lvZCn1sKfcw6MtSSlYC8uDX8sTzQvAsQ8epHoP84UNvAIT0KVGOGqw==";
};
};
+ "@inquirer/password-2.1.17" = {
+ name = "_at_inquirer_slash_password";
+ packageName = "@inquirer/password";
+ version = "2.1.17";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@inquirer/password/-/password-2.1.17.tgz";
+ sha512 = "/u6DM/fDHXoBWyA+9aRhghkeo5smE7wO9k4E2UoJbgiRCkt3JjBEuBqLOJNrz8E16M0ez4UM1vd5cXrmICHW+A==";
+ };
+ };
"@inquirer/prompts-2.3.1" = {
name = "_at_inquirer_slash_prompts";
packageName = "@inquirer/prompts";
@@ -6151,6 +5980,15 @@ let
sha512 = "k52mOMRvTUejrqyF1h8Z07chC+sbaoaUYzzr1KrJXyj7yaX7Nrh0a9vktv8TuocRwIJOQMaj5oZEmkspEcJFYQ==";
};
};
+ "@inquirer/prompts-5.0.7" = {
+ name = "_at_inquirer_slash_prompts";
+ packageName = "@inquirer/prompts";
+ version = "5.0.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@inquirer/prompts/-/prompts-5.0.7.tgz";
+ sha512 = "GFcigCxJTKCH3aECzMIu4FhgLJWnFvMXzpI4CCSoELWFtkOOU2P+goYA61+OKpGrB8fPE7q6n8zAXBSlZRrHjQ==";
+ };
+ };
"@inquirer/rawlist-1.2.16" = {
name = "_at_inquirer_slash_rawlist";
packageName = "@inquirer/rawlist";
@@ -6160,6 +5998,15 @@ let
sha512 = "pZ6TRg2qMwZAOZAV6TvghCtkr53dGnK29GMNQ3vMZXSNguvGqtOVc4j/h1T8kqGJFagjyfBZhUPGwNS55O5qPQ==";
};
};
+ "@inquirer/rawlist-2.1.17" = {
+ name = "_at_inquirer_slash_rawlist";
+ packageName = "@inquirer/rawlist";
+ version = "2.1.17";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@inquirer/rawlist/-/rawlist-2.1.17.tgz";
+ sha512 = "RFrw34xU5aVlMA3ZJCaeKGxYjhu3j4i46O2GMmaRRGeLObCRM1yOKQOsRclSTzjd4A7+M5QleR2iuW/68J9Kwg==";
+ };
+ };
"@inquirer/select-1.3.3" = {
name = "_at_inquirer_slash_select";
packageName = "@inquirer/select";
@@ -6169,13 +6016,31 @@ let
sha512 = "RzlRISXWqIKEf83FDC9ZtJ3JvuK1l7aGpretf41BCWYrvla2wU8W8MTRNMiPrPJ+1SIqrRC1nZdZ60hD9hRXLg==";
};
};
- "@inquirer/type-1.3.3" = {
+ "@inquirer/select-2.4.2" = {
+ name = "_at_inquirer_slash_select";
+ packageName = "@inquirer/select";
+ version = "2.4.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@inquirer/select/-/select-2.4.2.tgz";
+ sha512 = "r78JlgShqRxyAtBDeBHSDtfrOhSQwm2ecWGGaxe7kD9JwgL3UN563G1ncVRYdsWD7/tigflcskfipVeoDLhLJg==";
+ };
+ };
+ "@inquirer/type-1.5.1" = {
name = "_at_inquirer_slash_type";
packageName = "@inquirer/type";
- version = "1.3.3";
+ version = "1.5.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@inquirer/type/-/type-1.3.3.tgz";
- sha512 = "xTUt0NulylX27/zMx04ZYar/kr1raaiFTVvQ5feljQsiAgdm0WPj4S73/ye0fbslh+15QrIuDvfCXTek7pMY5A==";
+ url = "https://registry.npmjs.org/@inquirer/type/-/type-1.5.1.tgz";
+ sha512 = "m3YgGQlKNS0BM+8AFiJkCsTqHEFCWn6s/Rqye3mYwvqY6LdfUv12eSwbsgNzrYyrLXiy7IrrjDLPysaSBwEfhw==";
+ };
+ };
+ "@ioredis/commands-1.2.0" = {
+ name = "_at_ioredis_slash_commands";
+ packageName = "@ioredis/commands";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@ioredis/commands/-/commands-1.2.0.tgz";
+ sha512 = "Sx1pU8EM64o2BrqNpEO1CNLtKQwyhuXuqyfH7oGKCk+1a33d2r5saW8zNwm3j6BTExtjrv2BxTgzzkMwts6vGg==";
};
};
"@isaacs/cliui-8.0.2" = {
@@ -6187,6 +6052,24 @@ let
sha512 = "O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==";
};
};
+ "@isaacs/fs-minipass-4.0.1" = {
+ name = "_at_isaacs_slash_fs-minipass";
+ packageName = "@isaacs/fs-minipass";
+ version = "4.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@isaacs/fs-minipass/-/fs-minipass-4.0.1.tgz";
+ sha512 = "wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==";
+ };
+ };
+ "@isaacs/string-locale-compare-1.1.0" = {
+ name = "_at_isaacs_slash_string-locale-compare";
+ packageName = "@isaacs/string-locale-compare";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@isaacs/string-locale-compare/-/string-locale-compare-1.1.0.tgz";
+ sha512 = "SQ7Kzhh9+D+ZW9MA0zkYv3VXhIDNx+LzM6EJ+/65I3QY+enU6Itte7E5XX7EWrqLW2FN4n06GWzBnPoC3th2aQ==";
+ };
+ };
"@jcubic/lily-0.3.0" = {
name = "_at_jcubic_slash_lily";
packageName = "@jcubic/lily";
@@ -6493,85 +6376,85 @@ let
sha512 = "VyCpkZzFTHXtKgVO35iKN0sYR10psGpV6SkcSeV4oF7eSYlR8Bl6aQLCzVeFjvESF7mxTmIiI3/XrMobVrtxDA==";
};
};
- "@joplin/fork-htmlparser2-4.1.51" = {
+ "@joplin/fork-htmlparser2-4.1.52" = {
name = "_at_joplin_slash_fork-htmlparser2";
packageName = "@joplin/fork-htmlparser2";
- version = "4.1.51";
+ version = "4.1.52";
src = fetchurl {
- url = "https://registry.npmjs.org/@joplin/fork-htmlparser2/-/fork-htmlparser2-4.1.51.tgz";
- sha512 = "IaZAttfsyppAo1q1KwI/ln0U/+bpUYpX0AWm7M/gWNYorWU6g/EakQwZIkmVRIcAD+6gji4T+xR4oF8fBxJ8HA==";
+ url = "https://registry.npmjs.org/@joplin/fork-htmlparser2/-/fork-htmlparser2-4.1.52.tgz";
+ sha512 = "QXapybOIiEE7WVxuejgScVkx+Z+gcMdQt5lcD41/l2f1XnvKOEzd2QRmwjl/6V+g6pHkwg43uStTGsm4y64Y4g==";
};
};
- "@joplin/fork-sax-1.2.55" = {
+ "@joplin/fork-sax-1.2.56" = {
name = "_at_joplin_slash_fork-sax";
packageName = "@joplin/fork-sax";
- version = "1.2.55";
+ version = "1.2.56";
src = fetchurl {
- url = "https://registry.npmjs.org/@joplin/fork-sax/-/fork-sax-1.2.55.tgz";
- sha512 = "FgwqhVEZfN3yrArhDdkjMQJ9CG2V/9ed8NPFsDIK/QR6CK+vzWTPuAKFq57CN76ydvr6c0kX8nOSDpxJatzhpw==";
+ url = "https://registry.npmjs.org/@joplin/fork-sax/-/fork-sax-1.2.56.tgz";
+ sha512 = "TZx71MLGjjbCToOCvYBimIzDtqn4xROMrsnKon+DJ+wrhOfBRmebwrGVVs/tC06MMAuj3k1MLBLtixnKnqV+FQ==";
};
};
- "@joplin/fork-uslug-1.0.16" = {
+ "@joplin/fork-uslug-1.0.17" = {
name = "_at_joplin_slash_fork-uslug";
packageName = "@joplin/fork-uslug";
- version = "1.0.16";
+ version = "1.0.17";
src = fetchurl {
- url = "https://registry.npmjs.org/@joplin/fork-uslug/-/fork-uslug-1.0.16.tgz";
- sha512 = "N3UyuqUG+t67YXH37HPS9qSr7Z+GdciZ1FfHHZ7FjgVElR+Ch049OWrI+NX/ruHFkfofmQKHLNRKVmNrPnclNA==";
+ url = "https://registry.npmjs.org/@joplin/fork-uslug/-/fork-uslug-1.0.17.tgz";
+ sha512 = "N893VhVBchv8Q+9HqK0ycJW5noYIb2gyiw+SCLg5lCnZefb8VT51KmKcDUdDU60RLVkdv92YsYxJ3JKqdwE5LA==";
};
};
- "@joplin/htmlpack-2.14.1" = {
+ "@joplin/htmlpack-3.0.1" = {
name = "_at_joplin_slash_htmlpack";
packageName = "@joplin/htmlpack";
- version = "2.14.1";
+ version = "3.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@joplin/htmlpack/-/htmlpack-2.14.1.tgz";
- sha512 = "ZIQBkfVffFbFURT+lLoB9oYSkDFcE3KJ5IE434Rd3i6BCSXn4qYQyVF8K6t0oVPHGJAmTnnM5RpTVhRx+mBERw==";
+ url = "https://registry.npmjs.org/@joplin/htmlpack/-/htmlpack-3.0.1.tgz";
+ sha512 = "pQgr2DS6/pR3mrtQyOQyTp9MHB3JUQO3S+DZ+NZJADcDx23ajnVFXlYR9lbpyyIBCZAObqVUyRCisOjBKcn8eg==";
};
};
- "@joplin/lib-2.14.1" = {
+ "@joplin/lib-3.0.1" = {
name = "_at_joplin_slash_lib";
packageName = "@joplin/lib";
- version = "2.14.1";
+ version = "3.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@joplin/lib/-/lib-2.14.1.tgz";
- sha512 = "EnvOoj4b8vG/oq58QFWSyyoAiQ/BnMyffw58iacmPAG9jGIwbPPDA4HP3RLCirwwdgrdtTlRxl7WaLHnSO3h6A==";
+ url = "https://registry.npmjs.org/@joplin/lib/-/lib-3.0.1.tgz";
+ sha512 = "agvscTfUaxkFS6dWg0ijGrH7ZET2x3A16OPXdBy+ym9wI4YFZ0jQuIQiUlms48hLdlw300ZOnR5OIP2IJm1ufw==";
};
};
- "@joplin/renderer-2.14.1" = {
+ "@joplin/renderer-3.0.1" = {
name = "_at_joplin_slash_renderer";
packageName = "@joplin/renderer";
- version = "2.14.1";
+ version = "3.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@joplin/renderer/-/renderer-2.14.1.tgz";
- sha512 = "AbnE1g976pNrx3rjdKOR6JYWgowdmH3kTN8yWmSYnU2OD8qPhTovMROClxF6m7fLc3N49fxEBZwCjbRFLv35iA==";
+ url = "https://registry.npmjs.org/@joplin/renderer/-/renderer-3.0.1.tgz";
+ sha512 = "YTsrp2Ib41B6p67LZBgln0prfWKV38TEFh0yOChqA559rujI125pYmxVKTPRjia2vjplIiyycsXua+/ke9oATw==";
};
};
- "@joplin/turndown-4.0.73" = {
+ "@joplin/turndown-4.0.74" = {
name = "_at_joplin_slash_turndown";
packageName = "@joplin/turndown";
- version = "4.0.73";
+ version = "4.0.74";
src = fetchurl {
- url = "https://registry.npmjs.org/@joplin/turndown/-/turndown-4.0.73.tgz";
- sha512 = "5u5CUih9otHMkWpvH1VtHLyF0VMYnl2FVxv+/QvAX7PfwvGdmfMQISzC/wwb3MueMb/yhemv5c+6oiN4RCNlWw==";
+ url = "https://registry.npmjs.org/@joplin/turndown/-/turndown-4.0.74.tgz";
+ sha512 = "yISsLt6wQCVtJHWf6XaSQv3hw4FxzmL8jLa7GJNZAIpFSg9cWBp9f9+tIbEwT6fzCFt1Vs9dQJSVujUYP/hTzA==";
};
};
- "@joplin/turndown-plugin-gfm-1.0.55" = {
+ "@joplin/turndown-plugin-gfm-1.0.56" = {
name = "_at_joplin_slash_turndown-plugin-gfm";
packageName = "@joplin/turndown-plugin-gfm";
- version = "1.0.55";
+ version = "1.0.56";
src = fetchurl {
- url = "https://registry.npmjs.org/@joplin/turndown-plugin-gfm/-/turndown-plugin-gfm-1.0.55.tgz";
- sha512 = "ij5DquSAWnu1fVM02N2m32uMxslJZcdMuTsLJfTHYEVs96R8MKFaHtWjbQycpx9PRYdlL5jW4SaW9A92OCccxA==";
+ url = "https://registry.npmjs.org/@joplin/turndown-plugin-gfm/-/turndown-plugin-gfm-1.0.56.tgz";
+ sha512 = "q9Pul+xfmjXNHgNgB+ksRkwcBf13X7C89CDxT4sShrh17dmGsc7AUy+GbnwlmavauMDvsdiDIG8pvGqa1L002g==";
};
};
- "@joplin/utils-2.14.1" = {
+ "@joplin/utils-3.0.1" = {
name = "_at_joplin_slash_utils";
packageName = "@joplin/utils";
- version = "2.14.1";
+ version = "3.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@joplin/utils/-/utils-2.14.1.tgz";
- sha512 = "HOR9UOivlbFiANAVPeK5TNYRE5KQ3dCxVC7Sus8bcA+ZIrJxM0P73Ng1p96HkzsZAE71OEqVKn6HMd67gZOy4Q==";
+ url = "https://registry.npmjs.org/@joplin/utils/-/utils-3.0.1.tgz";
+ sha512 = "rvHU/8iesDo6pPovjh9F/4Sv4adm/OuaOiNYTqbfT8Y2fn7eaDQBK8UbgABXg2ZIBToD5Tto+D3YCiO1PWGJMg==";
};
};
"@jridgewell/gen-mapping-0.3.5" = {
@@ -6610,13 +6493,13 @@ let
sha512 = "1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==";
};
};
- "@jridgewell/sourcemap-codec-1.4.15" = {
+ "@jridgewell/sourcemap-codec-1.5.0" = {
name = "_at_jridgewell_slash_sourcemap-codec";
packageName = "@jridgewell/sourcemap-codec";
- version = "1.4.15";
+ version = "1.5.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz";
- sha512 = "eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==";
+ url = "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz";
+ sha512 = "gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==";
};
};
"@jridgewell/trace-mapping-0.3.25" = {
@@ -6673,22 +6556,13 @@ let
sha512 = "qtLGzCNzPVJ3kdH6/zoLWDPjauHIKiLSBAR71Wa0+PWvGA8wODUQvRgxtpUA5YqAYL3CQ8S4qXhd/9WuWTZirg==";
};
};
- "@jsii/check-node-1.100.0" = {
+ "@jsii/check-node-1.101.0" = {
name = "_at_jsii_slash_check-node";
packageName = "@jsii/check-node";
- version = "1.100.0";
+ version = "1.101.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@jsii/check-node/-/check-node-1.100.0.tgz";
- sha512 = "4bsO7Y6YyekBk4v4iatAl5E7QQs2UUPtHoP9gfT3UnpbKzyMjH8XholSVCjfcNSKBwFobPMb8iA7NCMIMqFKsQ==";
- };
- };
- "@jsii/check-node-1.95.0" = {
- name = "_at_jsii_slash_check-node";
- packageName = "@jsii/check-node";
- version = "1.95.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@jsii/check-node/-/check-node-1.95.0.tgz";
- sha512 = "E5njkBk6X4WrQHtGeO0ed+cvkMxqinQZY83TJZ9RFEIwrndDfj7asMgWkRkYQRF05AlQXks+Eh8wza7ErIl85Q==";
+ url = "https://registry.npmjs.org/@jsii/check-node/-/check-node-1.101.0.tgz";
+ sha512 = "io8u1GAF9XGp2crx0C/WGiJeUnHGw5X0du4fisbrNJHmVVFwcJbBMjbfXKWq+JSzl8fo/JV3F1LqtjsnawKA2A==";
};
};
"@jsii/check-node-1.98.0" = {
@@ -6700,22 +6574,13 @@ let
sha512 = "hI53TMW/fylHyY3CrJvqWvfSPJvBL82GSAB1m2CKNC0yHb0pZHCdBZnLrrr4rgTCQx8kIJjcUc0rQ/Ba3w+GaA==";
};
};
- "@jsii/check-node-1.99.0" = {
- name = "_at_jsii_slash_check-node";
- packageName = "@jsii/check-node";
- version = "1.99.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@jsii/check-node/-/check-node-1.99.0.tgz";
- sha512 = "RJeVopU3U+/ZxGj//KKJgXmDM8N7uP5QIqypb0QFVJPtIcQMM9nuEQWp4hOB3ajhk4VNaXGrG6PwlqFtFsqbbQ==";
- };
- };
- "@jsii/spec-1.100.0" = {
+ "@jsii/spec-1.101.0" = {
name = "_at_jsii_slash_spec";
packageName = "@jsii/spec";
- version = "1.100.0";
+ version = "1.101.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@jsii/spec/-/spec-1.100.0.tgz";
- sha512 = "4LJCpSkmi3Hfcbmbchv+2JPIquV+cgrkhQcwglBAWqS4liLGbWPwgfHRL22sMXEKXiyXeHfitVwkP+IoGIyJ8g==";
+ url = "https://registry.npmjs.org/@jsii/spec/-/spec-1.101.0.tgz";
+ sha512 = "855OnjKm4RTzRA78GGTNBG/GLe6X/vHJYD58zg7Rw8rWS7sU6iB65TM/7P7R3cufVew8umjjPjvW7ygS6ZqITQ==";
};
};
"@jsonjoy.com/base64-1.1.2" = {
@@ -6736,13 +6601,13 @@ let
sha512 = "aOcSN4MeAtFROysrbqG137b7gaDDSmVrl5mpo6sT/w+kcXpWnzhMjmY/Fh/sDx26NBxyIE7MB1seqLeCAzy9Sg==";
};
};
- "@jsonjoy.com/util-1.1.3" = {
+ "@jsonjoy.com/util-1.2.0" = {
name = "_at_jsonjoy.com_slash_util";
packageName = "@jsonjoy.com/util";
- version = "1.1.3";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@jsonjoy.com/util/-/util-1.1.3.tgz";
- sha512 = "g//kkF4kOwUjemValCtOc/xiYzmwMRmWq3Bn+YnzOzuZLHq2PpMOxxIayN3cKbo7Ko2Np65t6D9H81IvXbXhqg==";
+ url = "https://registry.npmjs.org/@jsonjoy.com/util/-/util-1.2.0.tgz";
+ sha512 = "4B8B+3vFsY4eo33DMKyJPlQ3sBMpPFUZK2dr3O3rXrOGKKbYG44J0XSFkDo1VOQiri5HFEhIeVvItjR2xcazmg==";
};
};
"@kamilkisiela/fast-url-parser-1.1.4" = {
@@ -6781,13 +6646,13 @@ let
sha512 = "Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==";
};
};
- "@lerna/create-8.1.3" = {
+ "@lerna/create-8.1.7" = {
name = "_at_lerna_slash_create";
packageName = "@lerna/create";
- version = "8.1.3";
+ version = "8.1.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@lerna/create/-/create-8.1.3.tgz";
- sha512 = "JFvIYrlvR8Txa8h7VZx8VIQDltukEKOKaZL/muGO7Q/5aE2vjOKHsD/jkWYe/2uFy1xv37ubdx17O1UXQNadPg==";
+ url = "https://registry.npmjs.org/@lerna/create/-/create-8.1.7.tgz";
+ sha512 = "ch81CgU5pBNOiUCQx44F/ZtN4DxxJjUQtuytYRBFWJSHAJ+XPJtiC/yQ9zjr1I1yaUlmNYYblkopoOyziOdJ1w==";
};
};
"@lezer/common-1.2.1" = {
@@ -6808,13 +6673,13 @@ let
sha512 = "CHsKq8DMKBf9b3yXPDIU4DbH+ZJd/sJdYOW2llbW/HudP5u0VS6Bfq1hLYfgU7uAYGFIyGGQIsSOXGPEErZiJw==";
};
};
- "@ljharb/through-2.3.13" = {
- name = "_at_ljharb_slash_through";
- packageName = "@ljharb/through";
- version = "2.3.13";
+ "@listr2/prompt-adapter-inquirer-2.0.13" = {
+ name = "_at_listr2_slash_prompt-adapter-inquirer";
+ packageName = "@listr2/prompt-adapter-inquirer";
+ version = "2.0.13";
src = fetchurl {
- url = "https://registry.npmjs.org/@ljharb/through/-/through-2.3.13.tgz";
- sha512 = "/gKJun8NNiWGZJkGzI/Ragc53cOdcLNdzjLaIa+GEjguQs0ulsurx8WN0jijdK9yPqDvziX995sMRLyLt1uZMQ==";
+ url = "https://registry.npmjs.org/@listr2/prompt-adapter-inquirer/-/prompt-adapter-inquirer-2.0.13.tgz";
+ sha512 = "nAl6teTt7EWSjttNavAnv3uFR3w3vPP3OTYmHyPNHzKhAj2NoBDHmbS3MGpvvO8KXXPASnHjEGrrKrdKTMKPnQ==";
};
};
"@lmdb/lmdb-darwin-arm64-2.5.3" = {
@@ -6943,13 +6808,13 @@ let
sha512 = "Yhlar6v9WQgUp/He7BdgzOz8lqMQ8sU+jkCq7Wx8Myc5YFJLbEe7lgui/V7G1qB1DJykHSGwreceSaD60Y0PUQ==";
};
};
- "@microsoft/applicationinsights-web-snippet-1.1.2" = {
+ "@microsoft/applicationinsights-web-snippet-1.2.1" = {
name = "_at_microsoft_slash_applicationinsights-web-snippet";
packageName = "@microsoft/applicationinsights-web-snippet";
- version = "1.1.2";
+ version = "1.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@microsoft/applicationinsights-web-snippet/-/applicationinsights-web-snippet-1.1.2.tgz";
- sha512 = "qPoOk3MmEx3gS6hTc1/x8JWQG5g4BvRdH7iqZMENBsKCL927b7D7Mvl19bh3sW9Ucrg1fVrF+4hqShwQNdqLxQ==";
+ url = "https://registry.npmjs.org/@microsoft/applicationinsights-web-snippet/-/applicationinsights-web-snippet-1.2.1.tgz";
+ sha512 = "+Cy9zFqdQgdAbMK1dpm7B+3DUnrByai0Tq6XG9v737HJpW6G1EiNNbTuFeXdPWyGaq6FIx9jxm/SUcxA6/Rxxg==";
};
};
"@microsoft/fetch-event-source-2.0.1" = {
@@ -6961,13 +6826,13 @@ let
sha512 = "W6CLUJ2eBMw3Rec70qrsEW0jOm/3twwJv21mrmj2yORiaVmVYGS4sSS5yUwvQc1ZlDLYGPnClVWmUUMagKNsfA==";
};
};
- "@microsoft/rush-lib-5.128.1" = {
+ "@microsoft/rush-lib-5.130.2" = {
name = "_at_microsoft_slash_rush-lib";
packageName = "@microsoft/rush-lib";
- version = "5.128.1";
+ version = "5.130.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@microsoft/rush-lib/-/rush-lib-5.128.1.tgz";
- sha512 = "8U1c3puDh10ZVNHR+Fk/juAQCwNdxRUNEVjRNkyoxDeAznca8Uo7ix7RoWOOQChh43JkeewRXmaHwmY4yiiL+g==";
+ url = "https://registry.npmjs.org/@microsoft/rush-lib/-/rush-lib-5.130.2.tgz";
+ sha512 = "8QgiqTh9osfqbweaZFikkaQx4Malve8sIGZhEfoPsHJw4bYPjjU7wA2NhQoeQu+0scdVOOL02kPvL7srWkGqFA==";
};
};
"@mischnic/json-sourcemap-0.1.1" = {
@@ -6979,6 +6844,15 @@ let
sha512 = "iA7+tyVqfrATAIsIRWQG+a7ZLLD0VaOCKV2Wd/v4mqIU3J9c4jx9p7S0nw1XH3gJCKNBOOwACOPYYSUu9pgT+w==";
};
};
+ "@mixmark-io/domino-2.2.0" = {
+ name = "_at_mixmark-io_slash_domino";
+ packageName = "@mixmark-io/domino";
+ version = "2.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@mixmark-io/domino/-/domino-2.2.0.tgz";
+ sha512 = "Y28PR25bHXUg88kCV7nivXrP2Nj2RueZ3/l/jdx6J9f8J4nsEGcgX0Qe6lt7Pa+J79+kPiJU3LguR6O/6zrLOw==";
+ };
+ };
"@module-federation/runtime-0.1.6" = {
name = "_at_module-federation_slash_runtime";
packageName = "@module-federation/runtime";
@@ -7024,13 +6898,22 @@ let
sha512 = "h9u4u/jiIRKbq25PM+zymTyW6bhTzELvOoUd+AvYriWOAKpLGnIamaET3pnHYoI5iYphAHBI4ayx0MehR+VVPQ==";
};
};
- "@noble/curves-1.4.0" = {
+ "@napi-rs/wasm-runtime-0.2.4" = {
+ name = "_at_napi-rs_slash_wasm-runtime";
+ packageName = "@napi-rs/wasm-runtime";
+ version = "0.2.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-0.2.4.tgz";
+ sha512 = "9zESzOO5aDByvhIAsOy9TbpZ0Ur2AJbUI7UT73kcUTS2mxAMHOBaa1st/jAymNoCtvrit99kkzT1FZuXVcgfIQ==";
+ };
+ };
+ "@noble/curves-1.4.2" = {
name = "_at_noble_slash_curves";
packageName = "@noble/curves";
- version = "1.4.0";
+ version = "1.4.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@noble/curves/-/curves-1.4.0.tgz";
- sha512 = "p+4cb332SFCrReJkCYe8Xzm0OWi4Jji5jVdIZRL/PmacmDkFNw6MrrV+gGpiPxLHbV+zKFRywUWbaseT+tZRXg==";
+ url = "https://registry.npmjs.org/@noble/curves/-/curves-1.4.2.tgz";
+ sha512 = "TavHr8qycMChk8UwMld0ZDRvatedkzWfH8IiaeGCfymOP5i0hSCozz9vHOL0nkwk7HRMlFnAiKpS2jrUmSybcw==";
};
};
"@noble/hashes-1.4.0" = {
@@ -7042,58 +6925,193 @@ let
sha512 = "V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg==";
};
};
- "@node-red/editor-api-3.1.10" = {
+ "@node-red/editor-api-4.0.2" = {
name = "_at_node-red_slash_editor-api";
packageName = "@node-red/editor-api";
- version = "3.1.10";
+ version = "4.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@node-red/editor-api/-/editor-api-3.1.10.tgz";
- sha512 = "6W9W3CHOVIG4UC1YescfNqGhW04XDWg9UJQSMGSbRMoiMRhk+X3K1If1xtU7oE18pHKTH1+69oJELH7yh4msGw==";
+ url = "https://registry.npmjs.org/@node-red/editor-api/-/editor-api-4.0.2.tgz";
+ sha512 = "ZG0n1fpwAP5qhwa1vXdhHGhtVm6flmQKp1N++RPxqmF8uZlkI5wI0FzDrF3V/En7+gUD+o5ylcca4kq+I8GIdA==";
};
};
- "@node-red/editor-client-3.1.10" = {
+ "@node-red/editor-client-4.0.2" = {
name = "_at_node-red_slash_editor-client";
packageName = "@node-red/editor-client";
- version = "3.1.10";
+ version = "4.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@node-red/editor-client/-/editor-client-3.1.10.tgz";
- sha512 = "l5ircZrEL8PzP7RHA49H7AVdSQY+vGJIoy57YaL6G0vHuCYO6u9Bh6chJ9s+6RWIRCqcU6HorTdSS3gzVspGdA==";
+ url = "https://registry.npmjs.org/@node-red/editor-client/-/editor-client-4.0.2.tgz";
+ sha512 = "B8UsqaxnTeIshgUFhMKj7hk/ddyxSXFTcRnuSw0uC39+ki3UUQ3pWJT8FLOr0NVypCFD4jq8qDzMundD0FVLFw==";
};
};
- "@node-red/nodes-3.1.10" = {
+ "@node-red/nodes-4.0.2" = {
name = "_at_node-red_slash_nodes";
packageName = "@node-red/nodes";
- version = "3.1.10";
+ version = "4.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@node-red/nodes/-/nodes-3.1.10.tgz";
- sha512 = "e7NvnF/gdM6HnqR6NwMz5M9I3vW6RWqfEvu8aIkNVNj3ojJnTzxKXLVs5pSaC56M/Q309McrGSuyG0ysI9fXDA==";
+ url = "https://registry.npmjs.org/@node-red/nodes/-/nodes-4.0.2.tgz";
+ sha512 = "dK+S6WJ2S8RQ/WMH1kSzYKvubM0+5zyRq7oEvrAyjk3xqQCwkf7Mfb48zdtHh6zW73/qv1pquY0iikIyZOkU6Q==";
};
};
- "@node-red/registry-3.1.10" = {
+ "@node-red/registry-4.0.2" = {
name = "_at_node-red_slash_registry";
packageName = "@node-red/registry";
- version = "3.1.10";
+ version = "4.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@node-red/registry/-/registry-3.1.10.tgz";
- sha512 = "iy2GP5AyArOTHnAKXJ0FBIrllfexQOA1LE43hbAZtZWtsgckuTxMWTW1m1U7hYzFvYJNKfAEPz3DNP5pVadd7g==";
+ url = "https://registry.npmjs.org/@node-red/registry/-/registry-4.0.2.tgz";
+ sha512 = "1R9DBH4EhWOH5UJffNZ8Wdemch1onc7ZwRPoylnCD0aFpRWT2q1nEqHJDthtBF2l9x9CZejB31/LBAmU1KCkTQ==";
};
};
- "@node-red/runtime-3.1.10" = {
+ "@node-red/runtime-4.0.2" = {
name = "_at_node-red_slash_runtime";
packageName = "@node-red/runtime";
- version = "3.1.10";
+ version = "4.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@node-red/runtime/-/runtime-3.1.10.tgz";
- sha512 = "pFTY/khvBX3wZQ9ibDFVKL1raCvgJ018idBQ7WxcjemYIUTk096iWNofsje08tsR904KNwC1ZZ437cf+s6Xt7Q==";
+ url = "https://registry.npmjs.org/@node-red/runtime/-/runtime-4.0.2.tgz";
+ sha512 = "wW1l8ZIeaLvSB8rKj/g7RsGBLq8Q6ladbCm3Zv4tTbuLmx61t04FZo2DNYTrVlMIR3O5R+vmc5UbzJco7WpVxA==";
};
};
- "@node-red/util-3.1.10" = {
+ "@node-red/util-4.0.2" = {
name = "_at_node-red_slash_util";
packageName = "@node-red/util";
- version = "3.1.10";
+ version = "4.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@node-red/util/-/util-3.1.10.tgz";
- sha512 = "1wL5HS+F0w48QkmHeIy5/II+CJdoW30P2zdm53JlvrE8OG0887mTapjGqmEG+djkJAfDIO/0El+8Q8U2qt9W5A==";
+ url = "https://registry.npmjs.org/@node-red/util/-/util-4.0.2.tgz";
+ sha512 = "pnAyC3N0JeORyvQQBpW4WQjBJU8iFNC5eG6W6LLfzhW3FvXndOUr85rx4fFtpWXZs8wMtWG4dBw7J4F4QLNJAQ==";
+ };
+ };
+ "@node-rs/bcrypt-1.10.4" = {
+ name = "_at_node-rs_slash_bcrypt";
+ packageName = "@node-rs/bcrypt";
+ version = "1.10.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@node-rs/bcrypt/-/bcrypt-1.10.4.tgz";
+ sha512 = "Kzs8HKt2eBeT5VnkeKgiz/QKTjOO3URcvSNEQZahNwZnL6dBeeJQTxxYisc/6969+5n6c3+gNwKvqJsZzmGe7g==";
+ };
+ };
+ "@node-rs/bcrypt-android-arm-eabi-1.10.4" = {
+ name = "_at_node-rs_slash_bcrypt-android-arm-eabi";
+ packageName = "@node-rs/bcrypt-android-arm-eabi";
+ version = "1.10.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@node-rs/bcrypt-android-arm-eabi/-/bcrypt-android-arm-eabi-1.10.4.tgz";
+ sha512 = "55ajutuTdfK1hKseyliflnxzNtxszQQ/EoLtgJlgCe7rI24vGP9EEEZDznB/u9OaJ14/AYzZtIhkEOYdbIdw0A==";
+ };
+ };
+ "@node-rs/bcrypt-android-arm64-1.10.4" = {
+ name = "_at_node-rs_slash_bcrypt-android-arm64";
+ packageName = "@node-rs/bcrypt-android-arm64";
+ version = "1.10.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@node-rs/bcrypt-android-arm64/-/bcrypt-android-arm64-1.10.4.tgz";
+ sha512 = "dCgQT7nH65tORmJw2hQ6zQgFmmC+/JBYZUWtf7pPZI76AVAn5tc7cIUrxYoV4OT1+uD63b9Av+mS1fT2EPzWEg==";
+ };
+ };
+ "@node-rs/bcrypt-darwin-arm64-1.10.4" = {
+ name = "_at_node-rs_slash_bcrypt-darwin-arm64";
+ packageName = "@node-rs/bcrypt-darwin-arm64";
+ version = "1.10.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@node-rs/bcrypt-darwin-arm64/-/bcrypt-darwin-arm64-1.10.4.tgz";
+ sha512 = "gmHdWikHL3YVZgqXAHT+X/PG+kqIyNlPeFAWKdby83RkDI8FUiPV4qqGilgNnBmVWKkobRae9/I1HDbc4Sbhyg==";
+ };
+ };
+ "@node-rs/bcrypt-darwin-x64-1.10.4" = {
+ name = "_at_node-rs_slash_bcrypt-darwin-x64";
+ packageName = "@node-rs/bcrypt-darwin-x64";
+ version = "1.10.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@node-rs/bcrypt-darwin-x64/-/bcrypt-darwin-x64-1.10.4.tgz";
+ sha512 = "WDzL1WKRtoyTkH6IMPx95Mkd6XaeN0VWJbSDMqQY6AFBOk03yJEj7YYXshCcF+Ur6KBBVSwRf6sdFJ15NI1Z3g==";
+ };
+ };
+ "@node-rs/bcrypt-freebsd-x64-1.10.4" = {
+ name = "_at_node-rs_slash_bcrypt-freebsd-x64";
+ packageName = "@node-rs/bcrypt-freebsd-x64";
+ version = "1.10.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@node-rs/bcrypt-freebsd-x64/-/bcrypt-freebsd-x64-1.10.4.tgz";
+ sha512 = "seSPJi+4MIUd1faL/n/wmDdDwaynd/FTkvTnb7qzCk8LBT+/dxi7MTz+uaD8KYDREcB9Wmhv+lwr0S9/jBTcjg==";
+ };
+ };
+ "@node-rs/bcrypt-linux-arm-gnueabihf-1.10.4" = {
+ name = "_at_node-rs_slash_bcrypt-linux-arm-gnueabihf";
+ packageName = "@node-rs/bcrypt-linux-arm-gnueabihf";
+ version = "1.10.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@node-rs/bcrypt-linux-arm-gnueabihf/-/bcrypt-linux-arm-gnueabihf-1.10.4.tgz";
+ sha512 = "YcMLUtN9cGNTWKnaXslxGO1M0S5b4QN9KYhuyG6Kju27RfqvU5UbmpKElCsEUO2EIjxGwzvPu59T+Fyh6sVbwg==";
+ };
+ };
+ "@node-rs/bcrypt-linux-arm64-gnu-1.10.4" = {
+ name = "_at_node-rs_slash_bcrypt-linux-arm64-gnu";
+ packageName = "@node-rs/bcrypt-linux-arm64-gnu";
+ version = "1.10.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@node-rs/bcrypt-linux-arm64-gnu/-/bcrypt-linux-arm64-gnu-1.10.4.tgz";
+ sha512 = "uYGUK/mO8SiftqmVSAePWxgK82vg+X/gtrVRJi95yq2iwp1+fYJX3ndxCyYPmeplBbd3NJ/F5lPT3FC/IHTTGw==";
+ };
+ };
+ "@node-rs/bcrypt-linux-arm64-musl-1.10.4" = {
+ name = "_at_node-rs_slash_bcrypt-linux-arm64-musl";
+ packageName = "@node-rs/bcrypt-linux-arm64-musl";
+ version = "1.10.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@node-rs/bcrypt-linux-arm64-musl/-/bcrypt-linux-arm64-musl-1.10.4.tgz";
+ sha512 = "rLvSMW/gVUBd2k2gAqQfuOReHWd9+jvz58E3i1TbkRE3a5ChvjOFc9qKPEmXuXuD9Mdj7gUwcYwpq8MdB5MtNw==";
+ };
+ };
+ "@node-rs/bcrypt-linux-x64-gnu-1.10.4" = {
+ name = "_at_node-rs_slash_bcrypt-linux-x64-gnu";
+ packageName = "@node-rs/bcrypt-linux-x64-gnu";
+ version = "1.10.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@node-rs/bcrypt-linux-x64-gnu/-/bcrypt-linux-x64-gnu-1.10.4.tgz";
+ sha512 = "I++6bh+BIp70X/D/crlSgCq8K0s9nGvzmvAGFkqSG4h3LBtjJx4RKbygnoWvcBV9ErK1rvcjfMyjwZt1ukueFA==";
+ };
+ };
+ "@node-rs/bcrypt-linux-x64-musl-1.10.4" = {
+ name = "_at_node-rs_slash_bcrypt-linux-x64-musl";
+ packageName = "@node-rs/bcrypt-linux-x64-musl";
+ version = "1.10.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@node-rs/bcrypt-linux-x64-musl/-/bcrypt-linux-x64-musl-1.10.4.tgz";
+ sha512 = "f9RPl/5n2NS0mMJXB4IYbodKnq5HzOK5x1b9eKbcjsY0rw3mJC3K0XRFc8iaw1a5chA+xV1TPXz5mkykmr2CQQ==";
+ };
+ };
+ "@node-rs/bcrypt-wasm32-wasi-1.10.4" = {
+ name = "_at_node-rs_slash_bcrypt-wasm32-wasi";
+ packageName = "@node-rs/bcrypt-wasm32-wasi";
+ version = "1.10.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@node-rs/bcrypt-wasm32-wasi/-/bcrypt-wasm32-wasi-1.10.4.tgz";
+ sha512 = "VaDOf+wic0yoHFimMkC5VMa/33BNqg6ieD+C/ibb7Av3NnVW4/W9YpDpqAWMR2w3fA40uTLWZ7FZSrcFck27oA==";
+ };
+ };
+ "@node-rs/bcrypt-win32-arm64-msvc-1.10.4" = {
+ name = "_at_node-rs_slash_bcrypt-win32-arm64-msvc";
+ packageName = "@node-rs/bcrypt-win32-arm64-msvc";
+ version = "1.10.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@node-rs/bcrypt-win32-arm64-msvc/-/bcrypt-win32-arm64-msvc-1.10.4.tgz";
+ sha512 = "M7sGnbKPvhYJ5b76ywXiEwR4mIs/JSDHjRrhm9fshKAvltQrwc3Mou22TJggvDN3gKOF1W85uPiM2OgGX/jxMg==";
+ };
+ };
+ "@node-rs/bcrypt-win32-ia32-msvc-1.10.4" = {
+ name = "_at_node-rs_slash_bcrypt-win32-ia32-msvc";
+ packageName = "@node-rs/bcrypt-win32-ia32-msvc";
+ version = "1.10.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@node-rs/bcrypt-win32-ia32-msvc/-/bcrypt-win32-ia32-msvc-1.10.4.tgz";
+ sha512 = "zn/n4DYnuOfC2JgmVDa0JHP+5DUqAOTl2jmV3yrMrmN+StDT4Om5wtvWxvEmgv3CkeZAuAU3Y/fwjSXIpZ0Fhg==";
+ };
+ };
+ "@node-rs/bcrypt-win32-x64-msvc-1.10.4" = {
+ name = "_at_node-rs_slash_bcrypt-win32-x64-msvc";
+ packageName = "@node-rs/bcrypt-win32-x64-msvc";
+ version = "1.10.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@node-rs/bcrypt-win32-x64-msvc/-/bcrypt-win32-x64-msvc-1.10.4.tgz";
+ sha512 = "ynQokTTGbuLu/cckaD8dNcE+Zsfam1zElE+teNol8AxcL7Jv+ghJItSnRthPRV/vLxuycDF2DIICgpXG/p9jrQ==";
};
};
"@nodelib/fs.scandir-2.1.5" = {
@@ -7132,6 +7150,15 @@ let
sha512 = "OrcNPXdpSl9UX7qPVRWbmWMCSXrcDa2M9DvrbOTj7ao1S4PlqVFYv9/yLKMkrJKZ/V5A/kDBC690or307i26Og==";
};
};
+ "@npmcli/arborist-7.5.3" = {
+ name = "_at_npmcli_slash_arborist";
+ packageName = "@npmcli/arborist";
+ version = "7.5.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@npmcli/arborist/-/arborist-7.5.3.tgz";
+ sha512 = "7gbMdDNSYUzi0j2mpb6FoXRg3BxXWplMQZH1MZlvNjSdWFObaUz2Ssvo0Nlh2xmWks1OPo+gpsE6qxpT/5M7lQ==";
+ };
+ };
"@npmcli/config-6.4.1" = {
name = "_at_npmcli_slash_config";
packageName = "@npmcli/config";
@@ -7141,13 +7168,13 @@ let
sha512 = "uSz+elSGzjCMANWa5IlbGczLYPkNI/LeR+cHrgaTqTrTSh9RHhOFA4daD2eRUz6lMtOW+Fnsb+qv7V2Zz8ML0g==";
};
};
- "@npmcli/config-8.3.3" = {
+ "@npmcli/config-8.3.4" = {
name = "_at_npmcli_slash_config";
packageName = "@npmcli/config";
- version = "8.3.3";
+ version = "8.3.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@npmcli/config/-/config-8.3.3.tgz";
- sha512 = "sIMKHiiYr91ALiHjhPq64F5P/SCaiSyDfpNmgYHtlIJtLY445+3+r3VoREzpdDrOwIqwQ6iEHinbTfaocL0UgA==";
+ url = "https://registry.npmjs.org/@npmcli/config/-/config-8.3.4.tgz";
+ sha512 = "01rtHedemDNhUXdicU7s+QYz/3JyV5Naj84cvdXGH4mgCdL+agmSYaLF4LUG4vMCLzhBO8YtS0gPpH1FGvbgAw==";
};
};
"@npmcli/fs-1.1.1" = {
@@ -7177,13 +7204,13 @@ let
sha512 = "q9CRWjpHCMIh5sVyefoD1cA7PkvILqCZsnSOEUUivORLjxCO/Irmue2DprETiNgEqktDBZaM1Bi+jrarx1XdCg==";
};
};
- "@npmcli/git-5.0.7" = {
+ "@npmcli/git-5.0.8" = {
name = "_at_npmcli_slash_git";
packageName = "@npmcli/git";
- version = "5.0.7";
+ version = "5.0.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@npmcli/git/-/git-5.0.7.tgz";
- sha512 = "WaOVvto604d5IpdCRV2KjQu8PzkfE96d50CQGKgywXh2GxXmDeUO5EWcBC4V57uFyrNqx83+MewuJh3WTR3xPA==";
+ url = "https://registry.npmjs.org/@npmcli/git/-/git-5.0.8.tgz";
+ sha512 = "liASfw5cqhjNW9UFd+ruwwdEf/lbOAQjLL2XY2dFW/bkJheXDYZgOyul/4gVvEV4BWkTXjYGmDqMw9uegdbJNQ==";
};
};
"@npmcli/installed-package-contents-2.1.0" = {
@@ -7204,6 +7231,15 @@ let
sha512 = "tkYs0OYnzQm6iIRdfy+LcLBjcKuQCeE5YLb8KnrIlutJfheNaPvPpgoFEyEFgbjzl5PLZ3IA/BWAwRU0eHuQDA==";
};
};
+ "@npmcli/metavuln-calculator-7.1.1" = {
+ name = "_at_npmcli_slash_metavuln-calculator";
+ packageName = "@npmcli/metavuln-calculator";
+ version = "7.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@npmcli/metavuln-calculator/-/metavuln-calculator-7.1.1.tgz";
+ sha512 = "Nkxf96V0lAx3HCpVda7Vw4P23RILgdi/5K1fmj2tZkWIYLpXAN8k2UVVOsW16TsS5F8Ws2I7Cm+PU1/rsVF47g==";
+ };
+ };
"@npmcli/move-file-1.1.2" = {
name = "_at_npmcli_slash_move-file";
packageName = "@npmcli/move-file";
@@ -7258,13 +7294,13 @@ let
sha512 = "xhfYPXoV5Dy4UkY0D+v2KkwvnDfiA/8Mt3sWCGI/hM03NsYIH8ZaG6QzS9x7pje5vHZBZJ2v6VRFVTWACnqcmQ==";
};
};
- "@npmcli/redact-1.1.0" = {
- name = "_at_npmcli_slash_redact";
- packageName = "@npmcli/redact";
- version = "1.1.0";
+ "@npmcli/query-3.1.0" = {
+ name = "_at_npmcli_slash_query";
+ packageName = "@npmcli/query";
+ version = "3.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@npmcli/redact/-/redact-1.1.0.tgz";
- sha512 = "PfnWuOkQgu7gCbnSsAisaX7hKOdZ4wSAhAzH3/ph5dSGau52kCRrMMGbiSQLwyTZpgldkZ49b0brkOr1AzGBHQ==";
+ url = "https://registry.npmjs.org/@npmcli/query/-/query-3.1.0.tgz";
+ sha512 = "C/iR0tk7KSKGldibYIB9x8GtO/0Bd0I2mhOaDb8ucQL/bQVTmGoeREaFj64Z5+iCBRf3dQfed0CjJL7I8iTkiQ==";
};
};
"@npmcli/redact-2.0.1" = {
@@ -7276,15 +7312,6 @@ let
sha512 = "YgsR5jCQZhVmTJvjduTOIHph0L73pK8xwMVaDY0PatySqVM9AZj93jpoXYSJqfHFxFkN9dmqTw6OiqExsS3LPw==";
};
};
- "@npmcli/run-script-7.0.2" = {
- name = "_at_npmcli_slash_run-script";
- packageName = "@npmcli/run-script";
- version = "7.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/@npmcli/run-script/-/run-script-7.0.2.tgz";
- sha512 = "Omu0rpA8WXvcGeY6DDzyRoY1i5DkCBkzyJ+m2u7PD6quzb0TvSqdIPOkTn8ZBOj7LbbcbMfZ3c5skwSu6m8y2w==";
- };
- };
"@npmcli/run-script-8.1.0" = {
name = "_at_npmcli_slash_run-script";
packageName = "@npmcli/run-script";
@@ -7294,31 +7321,31 @@ let
sha512 = "y7efHHwghQfk28G2z3tlZ67pLG0XdfYbcVG26r7YIXALRsrVQcTq4/tdenSmdOrEsNahIYA/eh8aEVROWGFUDg==";
};
};
- "@nrwl/devkit-19.3.0" = {
+ "@nrwl/devkit-19.5.3" = {
name = "_at_nrwl_slash_devkit";
packageName = "@nrwl/devkit";
- version = "19.3.0";
+ version = "19.5.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@nrwl/devkit/-/devkit-19.3.0.tgz";
- sha512 = "WRcph/7U37HkTLIRzQ2oburZVfEFkPHJUn7vmo46gCq+N2cAKy3qwONO0RbthhjFIsG94YPXqFWFlV6k4nXpxA==";
+ url = "https://registry.npmjs.org/@nrwl/devkit/-/devkit-19.5.3.tgz";
+ sha512 = "kd6eIQjWuFHdO14wVu0rzGtoPbO3EdYM/3gATOupxBzlqD+7dmkvv1Olbri9v598mDApXQNo8q81L2masTAhvg==";
};
};
- "@nrwl/tao-19.3.0" = {
+ "@nrwl/tao-19.5.3" = {
name = "_at_nrwl_slash_tao";
packageName = "@nrwl/tao";
- version = "19.3.0";
+ version = "19.5.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@nrwl/tao/-/tao-19.3.0.tgz";
- sha512 = "MyGYeHbh9O4Tv9xmz3Du+/leY5sKUHaPy4ancfNyShHgYi21hemX0/YYjzzoYHi44D8GzSc1XG2rAuwba7Kilw==";
+ url = "https://registry.npmjs.org/@nrwl/tao/-/tao-19.5.3.tgz";
+ sha512 = "SHtPlQi7zofDdbFjqcrTb/A0Mo9tT8S88H8nJa1+GzhKpGUB9rykHtq0qoYdiRBnQfmfR5LoKfe/jft61Ktvdg==";
};
};
- "@nx/devkit-19.3.0" = {
+ "@nx/devkit-19.5.3" = {
name = "_at_nx_slash_devkit";
packageName = "@nx/devkit";
- version = "19.3.0";
+ version = "19.5.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@nx/devkit/-/devkit-19.3.0.tgz";
- sha512 = "Natya5nzvHH0qTOIL1w/EZtwMgDx87Dgz0LgeY7te2fULaNFcj5fVrP+mUKEJZR+NccO7GPumT2RPhuEl9rPnQ==";
+ url = "https://registry.npmjs.org/@nx/devkit/-/devkit-19.5.3.tgz";
+ sha512 = "OUi8OJkoT+y3LwXACO6ugF9l6QppUyHrBIZYOTffBa1ZrnkpJrw03smy+GhAt+BDoeNGEuOPHGvOSV4AmRxnmg==";
};
};
"@oclif/color-1.0.13" = {
@@ -7780,13 +7807,13 @@ let
sha512 = "3giAOQvZiH5F9bMlMiv8+GSPMeqg0dbaeo58/0SlA9sxSqZhnUtxzX9/2FzyhS9sWQf5S0GJE0AKBrFqjpeYcg==";
};
};
- "@opentelemetry/core-1.25.0" = {
+ "@opentelemetry/core-1.25.1" = {
name = "_at_opentelemetry_slash_core";
packageName = "@opentelemetry/core";
- version = "1.25.0";
+ version = "1.25.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@opentelemetry/core/-/core-1.25.0.tgz";
- sha512 = "n0B3s8rrqGrasTgNkXLKXzN0fXo+6IYP7M5b7AMsrZM33f/y6DS6kJ0Btd7SespASWq8bgL3taLo0oe0vB52IQ==";
+ url = "https://registry.npmjs.org/@opentelemetry/core/-/core-1.25.1.tgz";
+ sha512 = "GeT/l6rBYWVQ4XArluLVB6WWQ8flHbdb6r2FCHC3smtdOAbrJBIv35tpV/yp9bmYUJf+xmZpu9DRTIeJVhFbEQ==";
};
};
"@opentelemetry/instrumentation-0.41.2" = {
@@ -7798,112 +7825,112 @@ let
sha512 = "rxU72E0pKNH6ae2w5+xgVYZLzc5mlxAbGzF4shxMVK8YC2QQsfN38B2GPbj0jvrKWWNUElfclQ+YTykkNg/grw==";
};
};
- "@opentelemetry/resources-1.25.0" = {
+ "@opentelemetry/resources-1.25.1" = {
name = "_at_opentelemetry_slash_resources";
packageName = "@opentelemetry/resources";
- version = "1.25.0";
+ version = "1.25.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@opentelemetry/resources/-/resources-1.25.0.tgz";
- sha512 = "iHjydPMYJ+Li1auveJCq2rp5U2h6Mhq8BidiyE0jfVlDTFyR1ny8AfJHfmFzJ/RAM8vT8L7T21kcmGybxZC7lQ==";
+ url = "https://registry.npmjs.org/@opentelemetry/resources/-/resources-1.25.1.tgz";
+ sha512 = "pkZT+iFYIZsVn6+GzM0kSX+u3MSLCY9md+lIJOoKl/P+gJFfxJte/60Usdp8Ce4rOs8GduUpSPNe1ddGyDT1sQ==";
};
};
- "@opentelemetry/sdk-trace-base-1.25.0" = {
+ "@opentelemetry/sdk-trace-base-1.25.1" = {
name = "_at_opentelemetry_slash_sdk-trace-base";
packageName = "@opentelemetry/sdk-trace-base";
- version = "1.25.0";
+ version = "1.25.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@opentelemetry/sdk-trace-base/-/sdk-trace-base-1.25.0.tgz";
- sha512 = "6+g2fiRQUG39guCsKVeY8ToeuUf3YUnPkN6DXRA1qDmFLprlLvZm9cS6+chgbW70cZJ406FTtSCDnJwxDC5sGQ==";
+ url = "https://registry.npmjs.org/@opentelemetry/sdk-trace-base/-/sdk-trace-base-1.25.1.tgz";
+ sha512 = "C8k4hnEbc5FamuZQ92nTOp8X/diCY56XUTnMiv9UTuJitCzaNNHAVsdm5+HLCdI8SLQsLWIrG38tddMxLVoftw==";
};
};
- "@opentelemetry/semantic-conventions-1.25.0" = {
+ "@opentelemetry/semantic-conventions-1.25.1" = {
name = "_at_opentelemetry_slash_semantic-conventions";
packageName = "@opentelemetry/semantic-conventions";
- version = "1.25.0";
+ version = "1.25.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@opentelemetry/semantic-conventions/-/semantic-conventions-1.25.0.tgz";
- sha512 = "M+kkXKRAIAiAP6qYyesfrC5TOmDpDVtsxuGfPcqd9B/iBrac+E14jYwrgm0yZBUIbIP2OnqC3j+UgkXLm1vxUQ==";
+ url = "https://registry.npmjs.org/@opentelemetry/semantic-conventions/-/semantic-conventions-1.25.1.tgz";
+ sha512 = "ZDjMJJQRlyk8A1KZFCc+bCbsyrn1wTwdNt56F7twdfUfnHUZUq77/WfONCj8p72NZOyP7pNTdUWSTYC3GTbuuQ==";
};
};
- "@orval/angular-6.30.2" = {
+ "@orval/angular-6.31.0" = {
name = "_at_orval_slash_angular";
packageName = "@orval/angular";
- version = "6.30.2";
+ version = "6.31.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@orval/angular/-/angular-6.30.2.tgz";
- sha512 = "EzIhuCEDJQIjiaBePI9CA8aU27diKZOb2xp1htX/81TAM9fDu1kKhLKA40i9z3ZcABgfGupm9f+ILIrmk7LDEg==";
+ url = "https://registry.npmjs.org/@orval/angular/-/angular-6.31.0.tgz";
+ sha512 = "cVV/vh6biGUe5FMR0kaOL+pYkD5lM/oHpyHVU19d2eY/hxKCG58/CagUNVDxbowcSalzGpt7NbZOqpauc2cNOA==";
};
};
- "@orval/axios-6.30.2" = {
+ "@orval/axios-6.31.0" = {
name = "_at_orval_slash_axios";
packageName = "@orval/axios";
- version = "6.30.2";
+ version = "6.31.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@orval/axios/-/axios-6.30.2.tgz";
- sha512 = "BGwxqpZembRoM77vd47k/b4LC/prPprK//nEiEvxW2WMmfIdA81UkLHk9IM3EqBjcWD8w5kawwGB13aNlID3Bw==";
+ url = "https://registry.npmjs.org/@orval/axios/-/axios-6.31.0.tgz";
+ sha512 = "OqWFJ6bDKftsSW3VI7Ouqcb3W4hDhkk8XzDkb/iisn3Dn1rkSE/wafdlHCm+62VQps4esYXaP1+7/HSk/2+Y8A==";
};
};
- "@orval/core-6.30.2" = {
+ "@orval/core-6.31.0" = {
name = "_at_orval_slash_core";
packageName = "@orval/core";
- version = "6.30.2";
+ version = "6.31.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@orval/core/-/core-6.30.2.tgz";
- sha512 = "+OipnBdCHAKLNvMUAGo8yOrfB1yhk0vsUI44pinL9SlChL+2K48oSl1VZy++O31xFnjXTbtUQWEDlj6pNi4gqg==";
+ url = "https://registry.npmjs.org/@orval/core/-/core-6.31.0.tgz";
+ sha512 = "ubOPpxzLgOCGbAQsq/dzfe/MIgB4LYWRyuwgnkV2GkL8Zq7cIWfmZU09GTJZQ6cO35OclFfbbyNve0cRMfSBeA==";
};
};
- "@orval/fetch-6.30.2" = {
+ "@orval/fetch-6.31.0" = {
name = "_at_orval_slash_fetch";
packageName = "@orval/fetch";
- version = "6.30.2";
+ version = "6.31.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@orval/fetch/-/fetch-6.30.2.tgz";
- sha512 = "YO7L+SRR9AfLvfMkuA4WXWAvXNWecQ+mlQe7S5wvQjZpobxaFAmNwMUEQ51quP3FEHOzzK2Can0Qrb1yY4XxfA==";
+ url = "https://registry.npmjs.org/@orval/fetch/-/fetch-6.31.0.tgz";
+ sha512 = "K4pD0TqRX3n1QgsfdzcCLxZPj4WFr4xd51VS5PhtK7wewy+EwaTp5AZeeMT+o8dL4HQcwLsKaXA1HH1YiAuOrA==";
};
};
- "@orval/hono-6.30.2" = {
+ "@orval/hono-6.31.0" = {
name = "_at_orval_slash_hono";
packageName = "@orval/hono";
- version = "6.30.2";
+ version = "6.31.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@orval/hono/-/hono-6.30.2.tgz";
- sha512 = "9exEMziYJcgB8l43zpI2R/S9+xBd2G3oc71dGHP8qUossfqWf0l5m7eEbF1Eyy5UrEB2YIwNfKRaUCTSYFlD9Q==";
+ url = "https://registry.npmjs.org/@orval/hono/-/hono-6.31.0.tgz";
+ sha512 = "mM5WISLugu1quNkNUqYwp+StV/Z5/STm33VdPTWkoZyPJtV4NmEUZKPsowk0EN7sBF2kW+aYcp8lsNMXxXfHaw==";
};
};
- "@orval/mock-6.30.2" = {
+ "@orval/mock-6.31.0" = {
name = "_at_orval_slash_mock";
packageName = "@orval/mock";
- version = "6.30.2";
+ version = "6.31.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@orval/mock/-/mock-6.30.2.tgz";
- sha512 = "zWsoLTwNl2x5hto1yEUgdzweaFqpSJ/ZaLIYpkymt7k26oJzDW1UUnmxFAQSHOz26UzzsKFr9/+2bfJjLtQaHw==";
+ url = "https://registry.npmjs.org/@orval/mock/-/mock-6.31.0.tgz";
+ sha512 = "UBag0IyL0eDVdXWgIMS/YxDF57Q3XC4VRDqcuZ1lB77rfBZ4UiVqTJleczQoIqMGkdtJJlBABgWzRRts1K4img==";
};
};
- "@orval/query-6.30.2" = {
+ "@orval/query-6.31.0" = {
name = "_at_orval_slash_query";
packageName = "@orval/query";
- version = "6.30.2";
+ version = "6.31.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@orval/query/-/query-6.30.2.tgz";
- sha512 = "tOHAhVsgkxw2Hy/tFu/VREsnsg+r0IWq6txI4wQac7uJz3AK1SDUD71eNx7tW56noiHT6NnGjODFZdb5s2Cgqg==";
+ url = "https://registry.npmjs.org/@orval/query/-/query-6.31.0.tgz";
+ sha512 = "aVyvSU5IbpRQnVbhChNlLX2XDnmoT1cDJ59NEFS3byhiJf1EG5XlzVve98je/BHAsVROrUC8+o6XoIjCtYbW5Q==";
};
};
- "@orval/swr-6.30.2" = {
+ "@orval/swr-6.31.0" = {
name = "_at_orval_slash_swr";
packageName = "@orval/swr";
- version = "6.30.2";
+ version = "6.31.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@orval/swr/-/swr-6.30.2.tgz";
- sha512 = "GFouUCSVerVIKMM+EilNqlHfUyBkq3RhhGQf6fQHlDvUPoVEYRp8PYTKNCQGxyM0Ae0KhZ+g9Uy3faBaXFCxfg==";
+ url = "https://registry.npmjs.org/@orval/swr/-/swr-6.31.0.tgz";
+ sha512 = "J9W/kym9jc94GizbTozpuY76yaZRN98rf3ahj+2+eW8+NRW1dVFui32Gew1qj9rcCSA54BwRMONgEn3Xqx6W6A==";
};
};
- "@orval/zod-6.30.2" = {
+ "@orval/zod-6.31.0" = {
name = "_at_orval_slash_zod";
packageName = "@orval/zod";
- version = "6.30.2";
+ version = "6.31.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@orval/zod/-/zod-6.30.2.tgz";
- sha512 = "nLDjEcuVwIMVfIo6Ku4OYzYmML8ECPPfY1fJ7HV30mp8MGFOnSCVyLZGrVZw5InSwepO1wvh04nHRlAZYoykoA==";
+ url = "https://registry.npmjs.org/@orval/zod/-/zod-6.31.0.tgz";
+ sha512 = "v6wqGZf4s3tpWrnmMHlEBfhTLeebu5W3HmhP8vQ5BPkm8AB2asiZqzK3Ne9Y19Rvyx6X4FGnhnalKYkz+XxJ8Q==";
};
};
"@parcel/bundler-default-2.12.0" = {
@@ -8680,67 +8707,67 @@ let
sha512 = "j7P6Rgr3mmtdkeDGTe0E/aYyWEWVtc5yFXtHCRHs28/jptDEWfaVOc5T7cblqy1XKPPfCxJc/8DwQ5YgLOZOVQ==";
};
};
- "@prisma/debug-5.15.0" = {
+ "@prisma/debug-5.17.0" = {
name = "_at_prisma_slash_debug";
packageName = "@prisma/debug";
- version = "5.15.0";
+ version = "5.17.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@prisma/debug/-/debug-5.15.0.tgz";
- sha512 = "QpEAOjieLPc/4sMny/WrWqtpIAmBYsgqwWlWwIctqZO0AbhQ9QcT6x2Ut3ojbDo/pFRCCA1Z1+xm2MUy7fAkZA==";
+ url = "https://registry.npmjs.org/@prisma/debug/-/debug-5.17.0.tgz";
+ sha512 = "l7+AteR3P8FXiYyo496zkuoiJ5r9jLQEdUuxIxNCN1ud8rdbH3GTxm+f+dCyaSv9l9WY+29L9czaVRXz9mULfg==";
};
};
- "@prisma/engines-5.15.0" = {
+ "@prisma/engines-5.17.0" = {
name = "_at_prisma_slash_engines";
packageName = "@prisma/engines";
- version = "5.15.0";
+ version = "5.17.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@prisma/engines/-/engines-5.15.0.tgz";
- sha512 = "hXL5Sn9hh/ZpRKWiyPA5GbvF3laqBHKt6Vo70hYqqOhh5e0ZXDzHcdmxNvOefEFeqxra2DMz2hNbFoPvqrVe1w==";
+ url = "https://registry.npmjs.org/@prisma/engines/-/engines-5.17.0.tgz";
+ sha512 = "+r+Nf+JP210Jur+/X8SIPLtz+uW9YA4QO5IXA+KcSOBe/shT47bCcRMTYCbOESw3FFYFTwe7vU6KTWHKPiwvtg==";
};
};
- "@prisma/engines-version-5.15.0-29.12e25d8d06f6ea5a0252864dd9a03b1bb51f3022" = {
+ "@prisma/engines-version-5.17.0-31.393aa359c9ad4a4bb28630fb5613f9c281cde053" = {
name = "_at_prisma_slash_engines-version";
packageName = "@prisma/engines-version";
- version = "5.15.0-29.12e25d8d06f6ea5a0252864dd9a03b1bb51f3022";
+ version = "5.17.0-31.393aa359c9ad4a4bb28630fb5613f9c281cde053";
src = fetchurl {
- url = "https://registry.npmjs.org/@prisma/engines-version/-/engines-version-5.15.0-29.12e25d8d06f6ea5a0252864dd9a03b1bb51f3022.tgz";
- sha512 = "3BEgZ41Qb4oWHz9kZNofToRvNeS4LZYaT9pienR1gWkjhky6t6K1NyeWNBkqSj2llgraUNbgMOCQPY4f7Qp5wA==";
+ url = "https://registry.npmjs.org/@prisma/engines-version/-/engines-version-5.17.0-31.393aa359c9ad4a4bb28630fb5613f9c281cde053.tgz";
+ sha512 = "tUuxZZysZDcrk5oaNOdrBnnkoTtmNQPkzINFDjz7eG6vcs9AVDmA/F6K5Plsb2aQc/l5M2EnFqn3htng9FA4hg==";
};
};
- "@prisma/fetch-engine-5.15.0" = {
+ "@prisma/fetch-engine-5.17.0" = {
name = "_at_prisma_slash_fetch-engine";
packageName = "@prisma/fetch-engine";
- version = "5.15.0";
+ version = "5.17.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@prisma/fetch-engine/-/fetch-engine-5.15.0.tgz";
- sha512 = "z6AY5yyXxc20Klj7wwnfGP0iIUkVKzybqapT02zLYR/nf9ynaeN8bq73WRmi1TkLYn+DJ5Qy+JGu7hBf1pE78A==";
+ url = "https://registry.npmjs.org/@prisma/fetch-engine/-/fetch-engine-5.17.0.tgz";
+ sha512 = "ESxiOaHuC488ilLPnrv/tM2KrPhQB5TRris/IeIV4ZvUuKeaicCl4Xj/JCQeG9IlxqOgf1cCg5h5vAzlewN91Q==";
};
};
- "@prisma/get-platform-5.15.0" = {
+ "@prisma/get-platform-5.17.0" = {
name = "_at_prisma_slash_get-platform";
packageName = "@prisma/get-platform";
- version = "5.15.0";
+ version = "5.17.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@prisma/get-platform/-/get-platform-5.15.0.tgz";
- sha512 = "1GULDkW4+/VQb73vihxCBSc4Chc2x88MA+O40tcZFjmBzG4/fF44PaXFxUqKSFltxU9L9GIMLhh0Gfkk/pUbtg==";
+ url = "https://registry.npmjs.org/@prisma/get-platform/-/get-platform-5.17.0.tgz";
+ sha512 = "UlDgbRozCP1rfJ5Tlkf3Cnftb6srGrEQ4Nm3og+1Se2gWmCZ0hmPIi+tQikGDUVLlvOWx3Gyi9LzgRP+HTXV9w==";
};
};
- "@prisma/prisma-schema-wasm-5.15.0-29.12e25d8d06f6ea5a0252864dd9a03b1bb51f3022" = {
+ "@prisma/prisma-schema-wasm-5.17.0-31.393aa359c9ad4a4bb28630fb5613f9c281cde053" = {
name = "_at_prisma_slash_prisma-schema-wasm";
packageName = "@prisma/prisma-schema-wasm";
- version = "5.15.0-29.12e25d8d06f6ea5a0252864dd9a03b1bb51f3022";
+ version = "5.17.0-31.393aa359c9ad4a4bb28630fb5613f9c281cde053";
src = fetchurl {
- url = "https://registry.npmjs.org/@prisma/prisma-schema-wasm/-/prisma-schema-wasm-5.15.0-29.12e25d8d06f6ea5a0252864dd9a03b1bb51f3022.tgz";
- sha512 = "bZYtXnHSP6nkZf20QZm4A/vzz3Psh+u6pMld4t6cdcZlQW0ZOZQ3/WWTOf5Pe+cqS/k4kciEM5urtH2SE01GCg==";
+ url = "https://registry.npmjs.org/@prisma/prisma-schema-wasm/-/prisma-schema-wasm-5.17.0-31.393aa359c9ad4a4bb28630fb5613f9c281cde053.tgz";
+ sha512 = "mlmuu0/IPSjMlMKsqdaVVAbGTJwp5sDMFd3ZFQxl4/K8FvH7tb2uy/lTHF0KyAJbveTiV+1yW9MBWspltXZZtg==";
};
};
- "@prisma/schema-files-loader-5.15.0" = {
+ "@prisma/schema-files-loader-5.17.0" = {
name = "_at_prisma_slash_schema-files-loader";
packageName = "@prisma/schema-files-loader";
- version = "5.15.0";
+ version = "5.17.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@prisma/schema-files-loader/-/schema-files-loader-5.15.0.tgz";
- sha512 = "ZDIX4Gr5MdGOiik23DSYQ8cOd/Bkat+6yo5TbAF8UlKor9tJsrEVyGRo6DFu1AEvedjSeiwS88jD1dn03sxvyA==";
+ url = "https://registry.npmjs.org/@prisma/schema-files-loader/-/schema-files-loader-5.17.0.tgz";
+ sha512 = "rmbJZEvY9nOlLduVQww4fGmYM3aU7BYAw/st0K9QNq9dQoLONgQP7t8dhcOVZbBLyNNQu2k2gJdVXSHSY96b4A==";
};
};
"@protobufjs/aspromise-1.1.2" = {
@@ -8833,13 +8860,13 @@ let
sha512 = "Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==";
};
};
- "@puppeteer/browsers-2.2.3" = {
+ "@puppeteer/browsers-2.3.0" = {
name = "_at_puppeteer_slash_browsers";
packageName = "@puppeteer/browsers";
- version = "2.2.3";
+ version = "2.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@puppeteer/browsers/-/browsers-2.2.3.tgz";
- sha512 = "bJ0UBsk0ESOs6RFcLXOt99a3yTDcOKlzfjad+rhFwdaG1Lu/Wzq58GHYCDTlZ9z6mldf4g+NTb+TXEfe0PpnsQ==";
+ url = "https://registry.npmjs.org/@puppeteer/browsers/-/browsers-2.3.0.tgz";
+ sha512 = "ioXoq9gPxkss4MYhD+SFaU9p1IHFUX0ILAWFPyjGaBdjLsYAlZw6j1iLA0N/m12uVHLFDfSYNF7EQccjinIMDA==";
};
};
"@putdotio/api-client-8.49.0" = {
@@ -8860,60 +8887,6 @@ let
sha512 = "Z1jQI2NpdFJCVgpY+8Dq/Bt3d+YUi1928Q+/CZm/oh66fzM0RUl54vvuXlPJKybH4pdCZey1eDTPaLHkMPNgWA==";
};
};
- "@redis/bloom-1.2.0" = {
- name = "_at_redis_slash_bloom";
- packageName = "@redis/bloom";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@redis/bloom/-/bloom-1.2.0.tgz";
- sha512 = "HG2DFjYKbpNmVXsa0keLHp/3leGJz1mjh09f2RLGGLQZzSHpkmZWuwJbAvo3QcRY8p80m5+ZdXZdYOSBLlp7Cg==";
- };
- };
- "@redis/client-1.5.16" = {
- name = "_at_redis_slash_client";
- packageName = "@redis/client";
- version = "1.5.16";
- src = fetchurl {
- url = "https://registry.npmjs.org/@redis/client/-/client-1.5.16.tgz";
- sha512 = "X1a3xQ5kEMvTib5fBrHKh6Y+pXbeKXqziYuxOUo1ojQNECg4M5Etd1qqyhMap+lFUOAh8S7UYevgJHOm4A+NOg==";
- };
- };
- "@redis/graph-1.1.1" = {
- name = "_at_redis_slash_graph";
- packageName = "@redis/graph";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@redis/graph/-/graph-1.1.1.tgz";
- sha512 = "FEMTcTHZozZciLRl6GiiIB4zGm5z5F3F6a6FZCyrfxdKOhFlGkiAqlexWMBzCi4DcRoyiOsuLfW+cjlGWyExOw==";
- };
- };
- "@redis/json-1.0.6" = {
- name = "_at_redis_slash_json";
- packageName = "@redis/json";
- version = "1.0.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/@redis/json/-/json-1.0.6.tgz";
- sha512 = "rcZO3bfQbm2zPRpqo82XbW8zg4G/w4W3tI7X8Mqleq9goQjAGLL7q/1n1ZX4dXEAmORVZ4s1+uKLaUOg7LrUhw==";
- };
- };
- "@redis/search-1.1.6" = {
- name = "_at_redis_slash_search";
- packageName = "@redis/search";
- version = "1.1.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/@redis/search/-/search-1.1.6.tgz";
- sha512 = "mZXCxbTYKBQ3M2lZnEddwEAks0Kc7nauire8q20oA0oA/LoA+E/b5Y5KZn232ztPb1FkIGqo12vh3Lf+Vw5iTw==";
- };
- };
- "@redis/time-series-1.0.5" = {
- name = "_at_redis_slash_time-series";
- packageName = "@redis/time-series";
- version = "1.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/@redis/time-series/-/time-series-1.0.5.tgz";
- sha512 = "IFjIgTusQym2B5IZJG3XKr5llka7ey84fw/NOYqESP5WUfQs9zz1ww/9+qoz4ka/S6KcGBodzlCeZ5UImKbscg==";
- };
- };
"@repeaterjs/repeater-3.0.6" = {
name = "_at_repeaterjs_slash_repeater";
packageName = "@repeaterjs/repeater";
@@ -8941,58 +8914,58 @@ let
sha512 = "iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==";
};
};
- "@rspack/binding-0.7.3" = {
+ "@rspack/binding-0.7.5" = {
name = "_at_rspack_slash_binding";
packageName = "@rspack/binding";
- version = "0.7.3";
+ version = "0.7.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@rspack/binding/-/binding-0.7.3.tgz";
- sha512 = "VYPOtaCb1lphNrHozZXy9L5ODGU76kp7ozCpYbF/CTFq8xaSkvkhNHwWMGXE2TIOvWZImMBRBuYX8/kjz/HiSA==";
+ url = "https://registry.npmjs.org/@rspack/binding/-/binding-0.7.5.tgz";
+ sha512 = "XcdOvaCz1mWWwr5vmEY9zncdInrjINEh60EWkYdqtCA67v7X7rB1fe6n4BeAI1+YLS2Eacj+lytlr+n7I+DYVg==";
};
};
- "@rspack/core-0.7.3" = {
+ "@rspack/core-0.7.5" = {
name = "_at_rspack_slash_core";
packageName = "@rspack/core";
- version = "0.7.3";
+ version = "0.7.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@rspack/core/-/core-0.7.3.tgz";
- sha512 = "SUvt4P1nMML3Int2YE1Z2+noDIxjT/hzNtcKMXXqeFp4yFys37s7vC+BnCyzonvIbpxUg2gH+bCMCgav7+xR4A==";
+ url = "https://registry.npmjs.org/@rspack/core/-/core-0.7.5.tgz";
+ sha512 = "zVTe4WCyc3qsLPattosiDYZFeOzaJ32/BYukPP2I1VJtCVFa+PxGVRPVZhSoN6fXw5oy48yHg9W9v1T8CaEFhw==";
};
};
- "@rushstack/heft-config-file-0.14.25" = {
+ "@rushstack/heft-config-file-0.15.2" = {
name = "_at_rushstack_slash_heft-config-file";
packageName = "@rushstack/heft-config-file";
- version = "0.14.25";
+ version = "0.15.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@rushstack/heft-config-file/-/heft-config-file-0.14.25.tgz";
- sha512 = "b/7w7aRM7bgeVe0tNFwmbf2dF5jbTC3gD8zkakztNMwqt4pjXbU2o/0OpGwVBRFfVhwd8JnQjhYfFM632CdWYA==";
+ url = "https://registry.npmjs.org/@rushstack/heft-config-file/-/heft-config-file-0.15.2.tgz";
+ sha512 = "1xHQLuWeXglFoVPxOpSb7EbjCduihFd9FXoW/awlFBfIfSMq85PAoErdCOfZBe7pUeGZ5ymwyiF7Am6hR4AAwA==";
};
};
- "@rushstack/node-core-library-5.4.1" = {
+ "@rushstack/node-core-library-5.5.0" = {
name = "_at_rushstack_slash_node-core-library";
packageName = "@rushstack/node-core-library";
- version = "5.4.1";
+ version = "5.5.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-5.4.1.tgz";
- sha512 = "WNnwdS8r9NZ/2K3u29tNoSRldscFa7SxU0RT+82B6Dy2I4Hl2MeCSKm4EXLXPKeNzLGvJ1cqbUhTLviSF8E6iA==";
+ url = "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-5.5.0.tgz";
+ sha512 = "Cl3MYQ74Je5Y/EngMxcA3SpHjGZ/022nKbAO1aycGfQ+7eKyNCBu0oywj5B1f367GCzuHBgy+3BlVLKysHkXZw==";
};
};
- "@rushstack/package-deps-hash-4.1.57" = {
+ "@rushstack/package-deps-hash-4.1.61" = {
name = "_at_rushstack_slash_package-deps-hash";
packageName = "@rushstack/package-deps-hash";
- version = "4.1.57";
+ version = "4.1.61";
src = fetchurl {
- url = "https://registry.npmjs.org/@rushstack/package-deps-hash/-/package-deps-hash-4.1.57.tgz";
- sha512 = "mI0tKuBPiTO2pBzAO+M2aHZVlje0Oz37iEtuycOUMUvsy2igv6T6XWNrRs/kPfQ5lhZ8XGTZOEEZ4Gbb7UESgw==";
+ url = "https://registry.npmjs.org/@rushstack/package-deps-hash/-/package-deps-hash-4.1.61.tgz";
+ sha512 = "Qhl4AxZ1TYQ/rAxaU6yD16aKVOAyFAQKd/2zolcLPSwgk/01Iqu6K3Rhwlj9acO9PMOMTDKlQVDoy4FPzQQgww==";
};
};
- "@rushstack/package-extractor-0.7.16" = {
+ "@rushstack/package-extractor-0.7.20" = {
name = "_at_rushstack_slash_package-extractor";
packageName = "@rushstack/package-extractor";
- version = "0.7.16";
+ version = "0.7.20";
src = fetchurl {
- url = "https://registry.npmjs.org/@rushstack/package-extractor/-/package-extractor-0.7.16.tgz";
- sha512 = "QQfjc84Gdvqq0k08852orNFIaAj1N7310H/r8KMYyjXfVRWgVlP55QIGzps7KQWDfjlq72UDPu85kEGrav2ekw==";
+ url = "https://registry.npmjs.org/@rushstack/package-extractor/-/package-extractor-0.7.20.tgz";
+ sha512 = "wZwn/bRWfin5xr1+EdVmrXtLI8W939HV3wvdJT9NbJrYh5G20bdXtsykDp10+S0QKrH33Rwb0zTu/JIa5JGLmw==";
};
};
"@rushstack/rig-package-0.5.2" = {
@@ -9004,67 +8977,67 @@ let
sha512 = "mUDecIJeH3yYGZs2a48k+pbhM6JYwWlgjs2Ca5f2n1G2/kgdgP9D/07oglEGf6mRyXEnazhEENeYTSNDRCwdqA==";
};
};
- "@rushstack/rush-amazon-s3-build-cache-plugin-5.128.1" = {
+ "@rushstack/rush-amazon-s3-build-cache-plugin-5.130.2" = {
name = "_at_rushstack_slash_rush-amazon-s3-build-cache-plugin";
packageName = "@rushstack/rush-amazon-s3-build-cache-plugin";
- version = "5.128.1";
+ version = "5.130.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@rushstack/rush-amazon-s3-build-cache-plugin/-/rush-amazon-s3-build-cache-plugin-5.128.1.tgz";
- sha512 = "RWlix06urImT73M2rZmM4Yi8T2gHufiQ2ghLMLaz5m/5FwwUavppXeTkiTXSIsIv42nzdu/MKtVknXNfjfQBAg==";
+ url = "https://registry.npmjs.org/@rushstack/rush-amazon-s3-build-cache-plugin/-/rush-amazon-s3-build-cache-plugin-5.130.2.tgz";
+ sha512 = "1KMBKBQIXHcvX0vOcVGHWwJXBQkSA+IOXeWawoU0GO42XMLif4dFGEIFWZP+L+wFSvVSPu1Hs12ZH6dWYPVXGg==";
};
};
- "@rushstack/rush-azure-storage-build-cache-plugin-5.128.1" = {
+ "@rushstack/rush-azure-storage-build-cache-plugin-5.130.2" = {
name = "_at_rushstack_slash_rush-azure-storage-build-cache-plugin";
packageName = "@rushstack/rush-azure-storage-build-cache-plugin";
- version = "5.128.1";
+ version = "5.130.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@rushstack/rush-azure-storage-build-cache-plugin/-/rush-azure-storage-build-cache-plugin-5.128.1.tgz";
- sha512 = "J8k9ZH8GlJTtkZT0W9D/nvi4kQX1bUM/8PyQyA0/MUYoCNxWEImGjR0IHOXn30WC1m/DrU7J73NHh3d+2p3XSg==";
+ url = "https://registry.npmjs.org/@rushstack/rush-azure-storage-build-cache-plugin/-/rush-azure-storage-build-cache-plugin-5.130.2.tgz";
+ sha512 = "naS9nrYOGs1KmIgoKpaT1jQEv7hRSS8AMkpeN/rkbY1/OnKCr0+z4aEgRuPEBiOObyFQaT/uxrsrpsgqSVQh3A==";
};
};
- "@rushstack/rush-http-build-cache-plugin-5.128.1" = {
+ "@rushstack/rush-http-build-cache-plugin-5.130.2" = {
name = "_at_rushstack_slash_rush-http-build-cache-plugin";
packageName = "@rushstack/rush-http-build-cache-plugin";
- version = "5.128.1";
+ version = "5.130.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@rushstack/rush-http-build-cache-plugin/-/rush-http-build-cache-plugin-5.128.1.tgz";
- sha512 = "LlCJo3BYcIsoO85qgHtXtIpEriKc0gnoSkkkH30wy5N1AKIqIL3iUvQtxDl6WmcwtlBmHqYem4W4nw2B2Vh1wg==";
+ url = "https://registry.npmjs.org/@rushstack/rush-http-build-cache-plugin/-/rush-http-build-cache-plugin-5.130.2.tgz";
+ sha512 = "VaKNAKJ2jnBiDutQiakj90TKW2PyBu4HOtlB4ran7WHKXGQHxriepMh+UTQt2dGhESw8eJ294ZR7YTOwtuT2kg==";
};
};
- "@rushstack/rush-sdk-5.128.1" = {
+ "@rushstack/rush-sdk-5.130.2" = {
name = "_at_rushstack_slash_rush-sdk";
packageName = "@rushstack/rush-sdk";
- version = "5.128.1";
+ version = "5.130.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@rushstack/rush-sdk/-/rush-sdk-5.128.1.tgz";
- sha512 = "oYrKFX54FsXpbsA03fRp/3gLAgVXWXYMIOxgi4zHb4XBs4+6p4OGa3fLAjNY4SNWaQIv6AiokU7pPCAt9bJHDg==";
+ url = "https://registry.npmjs.org/@rushstack/rush-sdk/-/rush-sdk-5.130.2.tgz";
+ sha512 = "f9ZC/NnT7AVTkd5gxVcS4Hi3qZcA/8RbXCt7F08y7HJ4mlmojVdZTfsuHhwiDhX3dLd4b1AflU8A7joZE9tYhQ==";
};
};
- "@rushstack/stream-collator-4.1.56" = {
+ "@rushstack/stream-collator-4.1.60" = {
name = "_at_rushstack_slash_stream-collator";
packageName = "@rushstack/stream-collator";
- version = "4.1.56";
+ version = "4.1.60";
src = fetchurl {
- url = "https://registry.npmjs.org/@rushstack/stream-collator/-/stream-collator-4.1.56.tgz";
- sha512 = "INfovUzy7sJg0fdZP/zQknnGdiPf4yb6pbnMLvHYARdXJLSZDcU9sjCpLg3DxYDx0K5PnHAnRSvgATJWbbpMww==";
+ url = "https://registry.npmjs.org/@rushstack/stream-collator/-/stream-collator-4.1.60.tgz";
+ sha512 = "qebgAhqkzmV0h0HgImOCLSVUhJq2nA/qTLXae9auWWy5XHRFS41pwQdeajyht04aYGtrxEQELSHRq7PqMtQfaA==";
};
};
- "@rushstack/terminal-0.13.0" = {
+ "@rushstack/terminal-0.13.2" = {
name = "_at_rushstack_slash_terminal";
packageName = "@rushstack/terminal";
- version = "0.13.0";
+ version = "0.13.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@rushstack/terminal/-/terminal-0.13.0.tgz";
- sha512 = "Ou44Q2s81BqJu3dpYedAX54am9vn245F0HzqVrfJCMQk5pGgoKKOBOjkbfZC9QKcGNaECh6pwH2s5noJt7X6ew==";
+ url = "https://registry.npmjs.org/@rushstack/terminal/-/terminal-0.13.2.tgz";
+ sha512 = "t8i0PsGvBHmFBY8pryO3badqFlxQsm2rw3KYrzjcmVkG/WGklKg1qVkr9beAS1Oe8XWDRgj6SkoHkpNjs7aaNw==";
};
};
- "@rushstack/ts-command-line-4.22.0" = {
+ "@rushstack/ts-command-line-4.22.2" = {
name = "_at_rushstack_slash_ts-command-line";
packageName = "@rushstack/ts-command-line";
- version = "4.22.0";
+ version = "4.22.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@rushstack/ts-command-line/-/ts-command-line-4.22.0.tgz";
- sha512 = "Qj28t6MO3HRgAZ72FDeFsrpdE6wBWxF3VENgvrXh7JF2qIT+CrXiOJIesW80VFZB9QwObSpkB1ilx794fGQg6g==";
+ url = "https://registry.npmjs.org/@rushstack/ts-command-line/-/ts-command-line-4.22.2.tgz";
+ sha512 = "xkvrGd6D9dPlI3I401Thc640WNsEPB1sGEmy12a2VJaPQPwhE6Ik0gEVPZJ/2G1w213eaCAdxUY1xpiTulsmpA==";
};
};
"@samverschueren/stream-to-observable-0.3.1" = {
@@ -9076,13 +9049,13 @@ let
sha512 = "c/qwwcHyafOQuVQJj0IlBjf5yYgBI7YPJ77k4fOJYesb41jio65eaJODRUmfYKhTOFBrIZ66kgvGPlNbjuoRdQ==";
};
};
- "@schematics/angular-18.0.4" = {
+ "@schematics/angular-18.1.2" = {
name = "_at_schematics_slash_angular";
packageName = "@schematics/angular";
- version = "18.0.4";
+ version = "18.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@schematics/angular/-/angular-18.0.4.tgz";
- sha512 = "fN4whuym9ZmcQFdTfwLZr4j+NcZ4LzbdLk8XYrYdxt1z8c9ujs5LqJYn0LYc3UWiYl7z2RVc9NOxzNrkiXdwlw==";
+ url = "https://registry.npmjs.org/@schematics/angular/-/angular-18.1.2.tgz";
+ sha512 = "lTY9twQ30vEm3hjArUKQjKiYlbDUOHqbyY7MlynY5+T8XtYreMo20KHofxv5t5xZfPwj1z6/ppcMU2xZ4WbGUA==";
};
};
"@scure/base-1.1.7" = {
@@ -9121,13 +9094,13 @@ let
sha512 = "831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg==";
};
};
- "@segment/ajv-human-errors-2.12.0" = {
+ "@segment/ajv-human-errors-2.13.0" = {
name = "_at_segment_slash_ajv-human-errors";
packageName = "@segment/ajv-human-errors";
- version = "2.12.0";
+ version = "2.13.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@segment/ajv-human-errors/-/ajv-human-errors-2.12.0.tgz";
- sha512 = "wgQpYRaPMlgaJvxhd7gCRUQcLbrgYwwbtqXnCfpT6Vv+al5OP2pqPj27WAXNq/3OBzbwsn0NXm0m1U8ygHeybg==";
+ url = "https://registry.npmjs.org/@segment/ajv-human-errors/-/ajv-human-errors-2.13.0.tgz";
+ sha512 = "rubuhyhxCHmVdTmA5G3aMiWoN8Yutp+LG/AGUSiIKJVs1r7EEE/yjqSzSqyANGj5ZkqGUP802Ur9s19MuWelZQ==";
};
};
"@segment/loosely-validate-event-2.0.0" = {
@@ -9148,94 +9121,58 @@ let
sha512 = "P33hHGdldxGabLFjPPpaTxVolMrzrcegejx+0GxjrIb9Zv48D8yAIA/QTDR2dFl7Uz7urX8aX6+5bCZslr+gWQ==";
};
};
- "@sentry-internal/tracing-7.109.0" = {
+ "@sentry-internal/tracing-7.116.0" = {
name = "_at_sentry-internal_slash_tracing";
packageName = "@sentry-internal/tracing";
- version = "7.109.0";
+ version = "7.116.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@sentry-internal/tracing/-/tracing-7.109.0.tgz";
- sha512 = "PzK/joC5tCuh2R/PRh+7dp+uuZl7pTsBIjPhVZHMTtb9+ls65WkdZJ1/uKXPouyz8NOo9Xok7aEvEo9seongyw==";
+ url = "https://registry.npmjs.org/@sentry-internal/tracing/-/tracing-7.116.0.tgz";
+ sha512 = "y5ppEmoOlfr77c/HqsEXR72092qmGYS4QE5gSz5UZFn9CiinEwGfEorcg2xIrrCuU7Ry/ZU2VLz9q3xd04drRA==";
};
};
- "@sentry-internal/tracing-7.110.0" = {
- name = "_at_sentry-internal_slash_tracing";
- packageName = "@sentry-internal/tracing";
- version = "7.110.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@sentry-internal/tracing/-/tracing-7.110.0.tgz";
- sha512 = "IIHHa9e/mE7uOMJfNELI8adyoELxOy6u6TNCn5t6fphmq84w8FTc9adXkG/FY2AQpglkIvlILojfMROFB2aaAQ==";
- };
- };
- "@sentry/core-7.109.0" = {
+ "@sentry/core-7.116.0" = {
name = "_at_sentry_slash_core";
packageName = "@sentry/core";
- version = "7.109.0";
+ version = "7.116.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@sentry/core/-/core-7.109.0.tgz";
- sha512 = "xwD4U0IlvvlE/x/g/W1I8b4Cfb16SsCMmiEuBf6XxvAa3OfWBxKoqLifb3GyrbxMC4LbIIZCN/SvLlnGJPgszA==";
+ url = "https://registry.npmjs.org/@sentry/core/-/core-7.116.0.tgz";
+ sha512 = "J6Wmjjx+o7RwST0weTU1KaKUAlzbc8MGkJV1rcHM9xjNTWTva+nrcCM3vFBagnk2Gm/zhwv3h0PvWEqVyp3U1Q==";
};
};
- "@sentry/core-7.110.0" = {
- name = "_at_sentry_slash_core";
- packageName = "@sentry/core";
- version = "7.110.0";
+ "@sentry/integrations-7.116.0" = {
+ name = "_at_sentry_slash_integrations";
+ packageName = "@sentry/integrations";
+ version = "7.116.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@sentry/core/-/core-7.110.0.tgz";
- sha512 = "g4suCQO94mZsKVaAbyD1zLFC5YSuBQCIPHXx9fdgtfoPib7BWjWWePkllkrvsKAv4u8Oq05RfnKOhOMRHpOKqg==";
+ url = "https://registry.npmjs.org/@sentry/integrations/-/integrations-7.116.0.tgz";
+ sha512 = "UZb60gaF+7veh1Yv79RiGvgGYOnU6xA97H+hI6tKgc1uT20YpItO4X56Vhp0lvyEyUGFZzBRRH1jpMDPNGPkqw==";
};
};
- "@sentry/node-7.109.0" = {
+ "@sentry/node-7.116.0" = {
name = "_at_sentry_slash_node";
packageName = "@sentry/node";
- version = "7.109.0";
+ version = "7.116.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@sentry/node/-/node-7.109.0.tgz";
- sha512 = "tqMNAES4X/iBl1eZRCmc29p//0id01FBLEiesNo5nk6ECl6/SaGMFAEwu1gsn90h/Bjgr04slwFOS4cR45V2PQ==";
+ url = "https://registry.npmjs.org/@sentry/node/-/node-7.116.0.tgz";
+ sha512 = "HB/4TrJWbnu6swNzkid+MlwzLwY/D/klGt3R0aatgrgWPo2jJm6bSl4LUT39Cr2eg5I1gsREQtXE2mAlC6gm8w==";
};
};
- "@sentry/node-7.110.0" = {
- name = "_at_sentry_slash_node";
- packageName = "@sentry/node";
- version = "7.110.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@sentry/node/-/node-7.110.0.tgz";
- sha512 = "YPfweCSzo/omnx5q1xOEZfI8Em3jnPqj7OM4ObXmoSKEK+kM1oUF3BTRzw5BJOaOCSTBFY1RAsGyfVIyrwxWnA==";
- };
- };
- "@sentry/types-7.109.0" = {
+ "@sentry/types-7.116.0" = {
name = "_at_sentry_slash_types";
packageName = "@sentry/types";
- version = "7.109.0";
+ version = "7.116.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@sentry/types/-/types-7.109.0.tgz";
- sha512 = "egCBnDv3YpVFoNzRLdP0soVrxVLCQ+rovREKJ1sw3rA2/MFH9WJ+DZZexsX89yeAFzy1IFsCp7/dEqudusml6g==";
+ url = "https://registry.npmjs.org/@sentry/types/-/types-7.116.0.tgz";
+ sha512 = "QCCvG5QuQrwgKzV11lolNQPP2k67Q6HHD9vllZ/C4dkxkjoIym8Gy+1OgAN3wjsR0f/kG9o5iZyglgNpUVRapQ==";
};
};
- "@sentry/types-7.110.0" = {
- name = "_at_sentry_slash_types";
- packageName = "@sentry/types";
- version = "7.110.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@sentry/types/-/types-7.110.0.tgz";
- sha512 = "DqYBLyE8thC5P5MuPn+sj8tL60nCd/f5cerFFPcudn5nJ4Zs1eI6lKlwwyHYTEu5c4KFjCB0qql6kXfwAHmTyA==";
- };
- };
- "@sentry/utils-7.109.0" = {
+ "@sentry/utils-7.116.0" = {
name = "_at_sentry_slash_utils";
packageName = "@sentry/utils";
- version = "7.109.0";
+ version = "7.116.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@sentry/utils/-/utils-7.109.0.tgz";
- sha512 = "3RjxMOLMBwZ5VSiH84+o/3NY2An4Zldjz0EbfEQNRY9yffRiCPJSQiCJID8EoylCFOh/PAhPimBhqbtWJxX6iw==";
- };
- };
- "@sentry/utils-7.110.0" = {
- name = "_at_sentry_slash_utils";
- packageName = "@sentry/utils";
- version = "7.110.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@sentry/utils/-/utils-7.110.0.tgz";
- sha512 = "VBsdLLN+5tf73fhf/Cm7JIsUJ6y9DkJj8h4I6Mxx0rszrvOyH6S5px40K+V4jdLBzMEvVinC7q2Cbf1YM18BSw==";
+ url = "https://registry.npmjs.org/@sentry/utils/-/utils-7.116.0.tgz";
+ sha512 = "Vn9fcvwTq91wJvCd7WTMWozimqMi+dEZ3ie3EICELC2diONcN16ADFdzn65CQQbYwmUzRjN9EjDN2k41pKZWhQ==";
};
};
"@sideway/address-4.1.5" = {
@@ -9265,15 +9202,6 @@ let
sha512 = "RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==";
};
};
- "@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/bundle-2.3.2" = {
name = "_at_sigstore_slash_bundle";
packageName = "@sigstore/bundle";
@@ -9292,15 +9220,6 @@ let
sha512 = "JzBqdVIyqm2FRQCulY6nbQzMpJJpSiJ8XXWMhtOX9eKgaXXpfNOF53lzQEjIydlStnd/eFtuC1dW4VYdD93oRg==";
};
};
- "@sigstore/protobuf-specs-0.2.1" = {
- name = "_at_sigstore_slash_protobuf-specs";
- packageName = "@sigstore/protobuf-specs";
- version = "0.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@sigstore/protobuf-specs/-/protobuf-specs-0.2.1.tgz";
- sha512 = "XTWVxnWJu+c1oCshMLwnKvz8ZQJJDVOlciMfgpJBQbThVjKTCG8dwyhgLngBD2KN0ap9F/gOV8rFDEx8uh7R2A==";
- };
- };
"@sigstore/protobuf-specs-0.3.2" = {
name = "_at_sigstore_slash_protobuf-specs";
packageName = "@sigstore/protobuf-specs";
@@ -9310,15 +9229,6 @@ let
sha512 = "c6B0ehIWxMI8wiS/bj6rHMPqeFvngFV7cDU/MY+B16P9Z3Mp9k8L93eYZ7BYzSickzuqAQqAq0V956b3Ju6mLw==";
};
};
- "@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/sign-2.3.2" = {
name = "_at_sigstore_slash_sign";
packageName = "@sigstore/sign";
@@ -9328,15 +9238,6 @@ let
sha512 = "5Vz5dPVuunIIvC5vBb0APwo7qKA4G9yM48kPWJT+OEERs40md5GoUR1yedwpekWZ4m0Hhw44m6zU+ObsON+iDA==";
};
};
- "@sigstore/tuf-1.0.3" = {
- name = "_at_sigstore_slash_tuf";
- packageName = "@sigstore/tuf";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/@sigstore/tuf/-/tuf-1.0.3.tgz";
- sha512 = "2bRovzs0nJZFlCN3rXirE4gwxCn97JNjMmwpecqlbgV9WcxX7WRuIrgzx/X7Ib7MYRbyUTpBYE0s2x6AmZXnlg==";
- };
- };
"@sigstore/tuf-2.3.4" = {
name = "_at_sigstore_slash_tuf";
packageName = "@sigstore/tuf";
@@ -9463,13 +9364,13 @@ let
sha512 = "tlqY9xq5ukxTUZBmoOp+m61cqwQD5pHJtFY3Mn8CA8ps6yghLH/Hw8UPdqg4OLmFW3IFlcXnQNmo/dh8HzXYIQ==";
};
};
- "@smithy/abort-controller-3.0.1" = {
+ "@smithy/abort-controller-3.1.1" = {
name = "_at_smithy_slash_abort-controller";
packageName = "@smithy/abort-controller";
- version = "3.0.1";
+ version = "3.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@smithy/abort-controller/-/abort-controller-3.0.1.tgz";
- sha512 = "Jb7jg4E+C+uvrUQi+h9kbILY6ts6fglKZzseMCHlH9ayq+1f5QdpYf8MV/xppuiN6DAMJAmwGz53GwP3213dmA==";
+ url = "https://registry.npmjs.org/@smithy/abort-controller/-/abort-controller-3.1.1.tgz";
+ sha512 = "MBJBiidoe+0cTFhyxT8g+9g7CeVccLM0IOKKUMCNQ1CNMJ/eIfoo0RTfVrXOONEI1UCN1W+zkiHSbzUNE9dZtQ==";
};
};
"@smithy/chunked-blob-reader-3.0.0" = {
@@ -9490,121 +9391,121 @@ let
sha512 = "VDkpCYW+peSuM4zJip5WDfqvg2Mo/e8yxOv3VF1m11y7B8KKMKVFtmZWDe36Fvk8rGuWrPZHHXZ7rR7uM5yWyg==";
};
};
- "@smithy/config-resolver-3.0.2" = {
+ "@smithy/config-resolver-3.0.5" = {
name = "_at_smithy_slash_config-resolver";
packageName = "@smithy/config-resolver";
- version = "3.0.2";
+ version = "3.0.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-3.0.2.tgz";
- sha512 = "wUyG6ezpp2sWAvfqmSYTROwFUmJqKV78GLf55WODrosBcT0BAMd9bOLO4HRhynWBgAobPml2cF9ZOdgCe00r+g==";
+ url = "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-3.0.5.tgz";
+ sha512 = "SkW5LxfkSI1bUC74OtfBbdz+grQXYiPYolyu8VfpLIjEoN/sHVBlLeGXMQ1vX4ejkgfv6sxVbQJ32yF2cl1veA==";
};
};
- "@smithy/core-2.2.1" = {
+ "@smithy/core-2.3.0" = {
name = "_at_smithy_slash_core";
packageName = "@smithy/core";
- version = "2.2.1";
+ version = "2.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@smithy/core/-/core-2.2.1.tgz";
- sha512 = "R8Pzrr2v2oGUoj4CTZtKPr87lVtBsz7IUBGhSwS1kc6Cj0yPwNdYbkzhFsxhoDE9+BPl09VN/6rFsW9GJzWnBA==";
+ url = "https://registry.npmjs.org/@smithy/core/-/core-2.3.0.tgz";
+ sha512 = "tvSwf+PF5uurExeJsl+sSNn4bPsYShL86fJ/wcj63cioJ0IF131BxC5QxX8qkIISk7Pr7g2+UJH9ib4cCafvqw==";
};
};
- "@smithy/credential-provider-imds-3.1.1" = {
+ "@smithy/credential-provider-imds-3.2.0" = {
name = "_at_smithy_slash_credential-provider-imds";
packageName = "@smithy/credential-provider-imds";
- version = "3.1.1";
+ version = "3.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-3.1.1.tgz";
- sha512 = "htndP0LwHdE3R3Nam9ZyVWhwPYOmD4xCL79kqvNxy8u/bv0huuy574CSiRY4cvEICgimv8jlVfLeZ7zZqbnB2g==";
+ url = "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-3.2.0.tgz";
+ sha512 = "0SCIzgd8LYZ9EJxUjLXBmEKSZR/P/w6l7Rz/pab9culE/RWuqelAKGJvn5qUOl8BgX8Yj5HWM50A5hiB/RzsgA==";
};
};
- "@smithy/eventstream-codec-3.1.0" = {
+ "@smithy/eventstream-codec-3.1.2" = {
name = "_at_smithy_slash_eventstream-codec";
packageName = "@smithy/eventstream-codec";
- version = "3.1.0";
+ version = "3.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@smithy/eventstream-codec/-/eventstream-codec-3.1.0.tgz";
- sha512 = "XFDl70ZY+FabSnTX3oQGGYvdbEaC8vPEFkCEOoBkumqaZIwR1WjjJCDu2VMXlHbKWKshefWXdT0NYteL5v6uFw==";
+ url = "https://registry.npmjs.org/@smithy/eventstream-codec/-/eventstream-codec-3.1.2.tgz";
+ sha512 = "0mBcu49JWt4MXhrhRAlxASNy0IjDRFU+aWNDRal9OtUJvJNiwDuyKMUONSOjLjSCeGwZaE0wOErdqULer8r7yw==";
};
};
- "@smithy/eventstream-serde-browser-3.0.2" = {
+ "@smithy/eventstream-serde-browser-3.0.5" = {
name = "_at_smithy_slash_eventstream-serde-browser";
packageName = "@smithy/eventstream-serde-browser";
- version = "3.0.2";
+ version = "3.0.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@smithy/eventstream-serde-browser/-/eventstream-serde-browser-3.0.2.tgz";
- sha512 = "6147vdedQGaWn3Nt4P1KV0LuV8IH4len1SAeycyko0p8oRLWFyYyx0L8JHGclePDSphkjxZqBHtyIfyupCaTGg==";
+ url = "https://registry.npmjs.org/@smithy/eventstream-serde-browser/-/eventstream-serde-browser-3.0.5.tgz";
+ sha512 = "dEyiUYL/ekDfk+2Ra4GxV+xNnFoCmk1nuIXg+fMChFTrM2uI/1r9AdiTYzPqgb72yIv/NtAj6C3dG//1wwgakQ==";
};
};
- "@smithy/eventstream-serde-config-resolver-3.0.1" = {
+ "@smithy/eventstream-serde-config-resolver-3.0.3" = {
name = "_at_smithy_slash_eventstream-serde-config-resolver";
packageName = "@smithy/eventstream-serde-config-resolver";
- version = "3.0.1";
+ version = "3.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@smithy/eventstream-serde-config-resolver/-/eventstream-serde-config-resolver-3.0.1.tgz";
- sha512 = "6+B8P+5Q1mll4u7IoI7mpmYOSW3/c2r3WQoYLdqOjbIKMixJFGmN79ZjJiNMy4X2GZ4We9kQ6LfnFuczSlhcyw==";
+ url = "https://registry.npmjs.org/@smithy/eventstream-serde-config-resolver/-/eventstream-serde-config-resolver-3.0.3.tgz";
+ sha512 = "NVTYjOuYpGfrN/VbRQgn31x73KDLfCXCsFdad8DiIc3IcdxL+dYA9zEQPyOP7Fy2QL8CPy2WE4WCUD+ZsLNfaQ==";
};
};
- "@smithy/eventstream-serde-node-3.0.2" = {
+ "@smithy/eventstream-serde-node-3.0.4" = {
name = "_at_smithy_slash_eventstream-serde-node";
packageName = "@smithy/eventstream-serde-node";
- version = "3.0.2";
+ version = "3.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@smithy/eventstream-serde-node/-/eventstream-serde-node-3.0.2.tgz";
- sha512 = "DLtmGAfqxZAql8rB+HqyPlUne22u3EEVj+hxlUjgXk0hXt+SfLGK0ljzRFmiWQ3qGpHu1NdJpJA9e5JE/dJxFw==";
+ url = "https://registry.npmjs.org/@smithy/eventstream-serde-node/-/eventstream-serde-node-3.0.4.tgz";
+ sha512 = "mjlG0OzGAYuUpdUpflfb9zyLrBGgmQmrobNT8b42ZTsGv/J03+t24uhhtVEKG/b2jFtPIHF74Bq+VUtbzEKOKg==";
};
};
- "@smithy/eventstream-serde-universal-3.0.2" = {
+ "@smithy/eventstream-serde-universal-3.0.4" = {
name = "_at_smithy_slash_eventstream-serde-universal";
packageName = "@smithy/eventstream-serde-universal";
- version = "3.0.2";
+ version = "3.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@smithy/eventstream-serde-universal/-/eventstream-serde-universal-3.0.2.tgz";
- sha512 = "d3SgAIQ/s4EbU8HAHJ8m2MMJPAL30nqJktyVgvqZWNznA8PJl61gJw5gj/yjIt/Fvs3d4fU8FmPPAhdp2yr/7A==";
+ url = "https://registry.npmjs.org/@smithy/eventstream-serde-universal/-/eventstream-serde-universal-3.0.4.tgz";
+ sha512 = "Od9dv8zh3PgOD7Vj4T3HSuox16n0VG8jJIM2gvKASL6aCtcS8CfHZDWe1Ik3ZXW6xBouU+45Q5wgoliWDZiJ0A==";
};
};
- "@smithy/fetch-http-handler-3.0.2" = {
+ "@smithy/fetch-http-handler-3.2.3" = {
name = "_at_smithy_slash_fetch-http-handler";
packageName = "@smithy/fetch-http-handler";
- version = "3.0.2";
+ version = "3.2.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-3.0.2.tgz";
- sha512 = "0nW6tLK0b7EqSsfKvnOmZCgJqnodBAnvqcrlC5dotKfklLedPTRGsQamSVbVDWyuU/QGg+YbZDJUQ0CUufJXZQ==";
+ url = "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.3.tgz";
+ sha512 = "m4dzQeafWi5KKCCnDwGGHYk9lqcLs9LvlXZRB0J38DMectsEbxdiO/Rx1NaYYMIkath7AnjpR+r0clL+7dwclQ==";
};
};
- "@smithy/hash-blob-browser-3.1.0" = {
+ "@smithy/hash-blob-browser-3.1.2" = {
name = "_at_smithy_slash_hash-blob-browser";
packageName = "@smithy/hash-blob-browser";
- version = "3.1.0";
+ version = "3.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@smithy/hash-blob-browser/-/hash-blob-browser-3.1.0.tgz";
- sha512 = "lKEHDN6bLzYdx5cFmdMHfYVmmTZTmjphwPBSumgkaniEYwRAXnbDEGETeuzfquS9Py1aH6cmqzXWxxkD7mV3sA==";
+ url = "https://registry.npmjs.org/@smithy/hash-blob-browser/-/hash-blob-browser-3.1.2.tgz";
+ sha512 = "hAbfqN2UbISltakCC2TP0kx4LqXBttEv2MqSPE98gVuDFMf05lU+TpC41QtqGP3Ff5A3GwZMPfKnEy0VmEUpmg==";
};
};
- "@smithy/hash-node-3.0.1" = {
+ "@smithy/hash-node-3.0.3" = {
name = "_at_smithy_slash_hash-node";
packageName = "@smithy/hash-node";
- version = "3.0.1";
+ version = "3.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@smithy/hash-node/-/hash-node-3.0.1.tgz";
- sha512 = "w2ncjgk2EYO2+WhAsSQA8owzoOSY7IL1qVytlwpnL1pFGWTjIoIh5nROkEKXY51unB63bMGZqDiVoXaFbyKDlg==";
+ url = "https://registry.npmjs.org/@smithy/hash-node/-/hash-node-3.0.3.tgz";
+ sha512 = "2ctBXpPMG+B3BtWSGNnKELJ7SH9e4TNefJS0cd2eSkOOROeBnnVBnAy9LtJ8tY4vUEoe55N4CNPxzbWvR39iBw==";
};
};
- "@smithy/hash-stream-node-3.1.0" = {
+ "@smithy/hash-stream-node-3.1.2" = {
name = "_at_smithy_slash_hash-stream-node";
packageName = "@smithy/hash-stream-node";
- version = "3.1.0";
+ version = "3.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@smithy/hash-stream-node/-/hash-stream-node-3.1.0.tgz";
- sha512 = "OkU9vjN17yYsXTSrouctZn2iYwG4z8WSc7F50+9ogG2crOtMopkop+22j35tX2ry2i/vLRCYgnqEmBWfvnYT2g==";
+ url = "https://registry.npmjs.org/@smithy/hash-stream-node/-/hash-stream-node-3.1.2.tgz";
+ sha512 = "PBgDMeEdDzi6JxKwbfBtwQG9eT9cVwsf0dZzLXoJF4sHKHs5HEo/3lJWpn6jibfJwT34I1EBXpBnZE8AxAft6g==";
};
};
- "@smithy/invalid-dependency-3.0.1" = {
+ "@smithy/invalid-dependency-3.0.3" = {
name = "_at_smithy_slash_invalid-dependency";
packageName = "@smithy/invalid-dependency";
- version = "3.0.1";
+ version = "3.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@smithy/invalid-dependency/-/invalid-dependency-3.0.1.tgz";
- sha512 = "RSNF/32BKygXKKMyS7koyuAq1rcdW5p5c4EFa77QenBFze9As+JiRnV9OWBh2cB/ejGZalEZjvIrMLHwJl7aGA==";
+ url = "https://registry.npmjs.org/@smithy/invalid-dependency/-/invalid-dependency-3.0.3.tgz";
+ sha512 = "ID1eL/zpDULmHJbflb864k72/SNOZCADRc9i7Exq3RUNJw6raWUSlFEQ+3PX3EYs++bTxZB2dE9mEHTQLv61tw==";
};
};
"@smithy/is-array-buffer-2.2.0" = {
@@ -9625,166 +9526,166 @@ let
sha512 = "+Fsu6Q6C4RSJiy81Y8eApjEB5gVtM+oFKTffg+jSuwtvomJJrhUJBu2zS8wjXSgH/g1MKEWrzyChTBe6clb5FQ==";
};
};
- "@smithy/md5-js-3.0.1" = {
+ "@smithy/md5-js-3.0.3" = {
name = "_at_smithy_slash_md5-js";
packageName = "@smithy/md5-js";
- version = "3.0.1";
+ version = "3.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@smithy/md5-js/-/md5-js-3.0.1.tgz";
- sha512 = "wQa0YGsR4Zb1GQLGwOOgRAbkj22P6CFGaFzu5bKk8K4HVNIC2dBlIxqZ/baF0pLiSZySAPdDZT7CdZ7GkGXt5A==";
+ url = "https://registry.npmjs.org/@smithy/md5-js/-/md5-js-3.0.3.tgz";
+ sha512 = "O/SAkGVwpWmelpj/8yDtsaVe6sINHLB1q8YE/+ZQbDxIw3SRLbTZuRaI10K12sVoENdnHqzPp5i3/H+BcZ3m3Q==";
};
};
- "@smithy/middleware-content-length-3.0.1" = {
+ "@smithy/middleware-content-length-3.0.5" = {
name = "_at_smithy_slash_middleware-content-length";
packageName = "@smithy/middleware-content-length";
- version = "3.0.1";
+ version = "3.0.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@smithy/middleware-content-length/-/middleware-content-length-3.0.1.tgz";
- sha512 = "6QdK/VbrCfXD5/QolE2W/ok6VqxD+SM28Ds8iSlEHXZwv4buLsvWyvoEEy0322K/g5uFgPzBmZjGqesTmPL+yQ==";
+ url = "https://registry.npmjs.org/@smithy/middleware-content-length/-/middleware-content-length-3.0.5.tgz";
+ sha512 = "ILEzC2eyxx6ncej3zZSwMpB5RJ0zuqH7eMptxC4KN3f+v9bqT8ohssKbhNR78k/2tWW+KS5Spw+tbPF4Ejyqvw==";
};
};
- "@smithy/middleware-endpoint-3.0.2" = {
+ "@smithy/middleware-endpoint-3.1.0" = {
name = "_at_smithy_slash_middleware-endpoint";
packageName = "@smithy/middleware-endpoint";
- version = "3.0.2";
+ version = "3.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.0.2.tgz";
- sha512 = "gWEaGYB3Bei17Oiy/F2IlUPpBazNXImytoOdJ1xbrUOaJKAOiUhx8/4FOnYLLJHdAwa9PlvJ2ULda2f/Dnwi9w==";
+ url = "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.1.0.tgz";
+ sha512 = "5y5aiKCEwg9TDPB4yFE7H6tYvGFf1OJHNczeY10/EFF8Ir8jZbNntQJxMWNfeQjC1mxPsaQ6mR9cvQbf+0YeMw==";
};
};
- "@smithy/middleware-retry-3.0.4" = {
+ "@smithy/middleware-retry-3.0.12" = {
name = "_at_smithy_slash_middleware-retry";
packageName = "@smithy/middleware-retry";
- version = "3.0.4";
+ version = "3.0.12";
src = fetchurl {
- url = "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-3.0.4.tgz";
- sha512 = "Tu+FggbLNF5G9L6Wi8o32Mg4bhlBInWlhhaFKyytGRnkfxGopxFVXJQn7sjZdFYJyTz6RZZa06tnlvavUgtoVg==";
+ url = "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-3.0.12.tgz";
+ sha512 = "CncrlzNiBzuZZYLJ49H4dC6FEz62hnv0Y0nJyl/oZ73FX/9CDHWkIRD4ZOf5ntB6QyYWx0G3mXAOHOcM5omlLg==";
};
};
- "@smithy/middleware-serde-3.0.1" = {
+ "@smithy/middleware-serde-3.0.3" = {
name = "_at_smithy_slash_middleware-serde";
packageName = "@smithy/middleware-serde";
- version = "3.0.1";
+ version = "3.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@smithy/middleware-serde/-/middleware-serde-3.0.1.tgz";
- sha512 = "ak6H/ZRN05r5+SR0/IUc5zOSyh2qp3HReg1KkrnaSLXmncy9lwOjNqybX4L4x55/e5mtVDn1uf/gQ6bw5neJPw==";
+ url = "https://registry.npmjs.org/@smithy/middleware-serde/-/middleware-serde-3.0.3.tgz";
+ sha512 = "puUbyJQBcg9eSErFXjKNiGILJGtiqmuuNKEYNYfUD57fUl4i9+mfmThtQhvFXU0hCVG0iEJhvQUipUf+/SsFdA==";
};
};
- "@smithy/middleware-stack-3.0.1" = {
+ "@smithy/middleware-stack-3.0.3" = {
name = "_at_smithy_slash_middleware-stack";
packageName = "@smithy/middleware-stack";
- version = "3.0.1";
+ version = "3.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@smithy/middleware-stack/-/middleware-stack-3.0.1.tgz";
- sha512 = "fS5uT//y1SlBdkzIvgmWQ9FufwMXrHSSbuR25ygMy1CRDIZkcBMoF4oTMYNfR9kBlVBcVzlv7joFdNrFuQirPA==";
+ url = "https://registry.npmjs.org/@smithy/middleware-stack/-/middleware-stack-3.0.3.tgz";
+ sha512 = "r4klY9nFudB0r9UdSMaGSyjyQK5adUyPnQN/ZM6M75phTxOdnc/AhpvGD1fQUvgmqjQEBGCwpnPbDm8pH5PapA==";
};
};
- "@smithy/node-config-provider-3.1.1" = {
+ "@smithy/node-config-provider-3.1.4" = {
name = "_at_smithy_slash_node-config-provider";
packageName = "@smithy/node-config-provider";
- version = "3.1.1";
+ version = "3.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.1.tgz";
- sha512 = "z5G7+ysL4yUtMghUd2zrLkecu0mTfnYlt5dR76g/HsFqf7evFazwiZP1ag2EJenGxNBDwDM5g8nm11NPogiUVA==";
+ url = "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.4.tgz";
+ sha512 = "YvnElQy8HR4vDcAjoy7Xkx9YT8xZP4cBXcbJSgm/kxmiQu08DwUwj8rkGnyoJTpfl/3xYHH+d8zE+eHqoDCSdQ==";
};
};
- "@smithy/node-http-handler-3.0.1" = {
+ "@smithy/node-http-handler-3.1.4" = {
name = "_at_smithy_slash_node-http-handler";
packageName = "@smithy/node-http-handler";
- version = "3.0.1";
+ version = "3.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.0.1.tgz";
- sha512 = "hlBI6MuREA4o1wBMEt+QNhUzoDtFFvwR6ecufimlx9D79jPybE/r8kNorphXOi91PgSO9S2fxRjcKCLk7Jw8zA==";
+ url = "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.1.4.tgz";
+ sha512 = "+UmxgixgOr/yLsUxcEKGH0fMNVteJFGkmRltYFHnBMlogyFdpzn2CwqWmxOrfJELhV34v0WSlaqG1UtE1uXlJg==";
};
};
- "@smithy/property-provider-3.1.1" = {
+ "@smithy/property-provider-3.1.3" = {
name = "_at_smithy_slash_property-provider";
packageName = "@smithy/property-provider";
- version = "3.1.1";
+ version = "3.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@smithy/property-provider/-/property-provider-3.1.1.tgz";
- sha512 = "YknOMZcQkB5on+MU0DvbToCmT2YPtTETMXW0D3+/Iln7ezT+Zm1GMHhCW1dOH/X/+LkkQD9aXEoCX/B10s4Xdw==";
+ url = "https://registry.npmjs.org/@smithy/property-provider/-/property-provider-3.1.3.tgz";
+ sha512 = "zahyOVR9Q4PEoguJ/NrFP4O7SMAfYO1HLhB18M+q+Z4KFd4V2obiMnlVoUFzFLSPeVt1POyNWneHHrZaTMoc/g==";
};
};
- "@smithy/protocol-http-4.0.1" = {
+ "@smithy/protocol-http-4.1.0" = {
name = "_at_smithy_slash_protocol-http";
packageName = "@smithy/protocol-http";
- version = "4.0.1";
+ version = "4.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@smithy/protocol-http/-/protocol-http-4.0.1.tgz";
- sha512 = "eBhm9zwcFPEazc654c0BEWtxYAzrw+OhoSf5pkwKzfftWKXRoqEhwOE2Pvn30v0iAdo7Mfsfb6pi1NnZlGCMpg==";
+ url = "https://registry.npmjs.org/@smithy/protocol-http/-/protocol-http-4.1.0.tgz";
+ sha512 = "dPVoHYQ2wcHooGXg3LQisa1hH0e4y0pAddPMeeUPipI1tEOqL6A4N0/G7abeq+K8wrwSgjk4C0wnD1XZpJm5aA==";
};
};
- "@smithy/querystring-builder-3.0.1" = {
+ "@smithy/querystring-builder-3.0.3" = {
name = "_at_smithy_slash_querystring-builder";
packageName = "@smithy/querystring-builder";
- version = "3.0.1";
+ version = "3.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@smithy/querystring-builder/-/querystring-builder-3.0.1.tgz";
- sha512 = "vKitpnG/2KOMVlx3x1S3FkBH075EROG3wcrcDaNerQNh8yuqnSL23btCD2UyX4i4lpPzNW6VFdxbn2Z25b/g5Q==";
+ url = "https://registry.npmjs.org/@smithy/querystring-builder/-/querystring-builder-3.0.3.tgz";
+ sha512 = "vyWckeUeesFKzCDaRwWLUA1Xym9McaA6XpFfAK5qI9DKJ4M33ooQGqvM4J+LalH4u/Dq9nFiC8U6Qn1qi0+9zw==";
};
};
- "@smithy/querystring-parser-3.0.1" = {
+ "@smithy/querystring-parser-3.0.3" = {
name = "_at_smithy_slash_querystring-parser";
packageName = "@smithy/querystring-parser";
- version = "3.0.1";
+ version = "3.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@smithy/querystring-parser/-/querystring-parser-3.0.1.tgz";
- sha512 = "Qt8DMC05lVS8NcQx94lfVbZSX+2Ym7032b/JR8AlboAa/D669kPzqb35dkjkvAG6+NWmUchef3ENtrD6F+5n8Q==";
+ url = "https://registry.npmjs.org/@smithy/querystring-parser/-/querystring-parser-3.0.3.tgz";
+ sha512 = "zahM1lQv2YjmznnfQsWbYojFe55l0SLG/988brlLv1i8z3dubloLF+75ATRsqPBboUXsW6I9CPGE5rQgLfY0vQ==";
};
};
- "@smithy/service-error-classification-3.0.1" = {
+ "@smithy/service-error-classification-3.0.3" = {
name = "_at_smithy_slash_service-error-classification";
packageName = "@smithy/service-error-classification";
- version = "3.0.1";
+ version = "3.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@smithy/service-error-classification/-/service-error-classification-3.0.1.tgz";
- sha512 = "ubFUvIePjDCyIzZ+pLETqNC6KXJ/fc6g+/baqel7Zf6kJI/kZKgjwkCI7zbUhoUuOZ/4eA/87YasVu40b/B4bA==";
+ url = "https://registry.npmjs.org/@smithy/service-error-classification/-/service-error-classification-3.0.3.tgz";
+ sha512 = "Jn39sSl8cim/VlkLsUhRFq/dKDnRUFlfRkvhOJaUbLBXUsLRLNf9WaxDv/z9BjuQ3A6k/qE8af1lsqcwm7+DaQ==";
};
};
- "@smithy/shared-ini-file-loader-3.1.1" = {
+ "@smithy/shared-ini-file-loader-3.1.4" = {
name = "_at_smithy_slash_shared-ini-file-loader";
packageName = "@smithy/shared-ini-file-loader";
- version = "3.1.1";
+ version = "3.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.1.tgz";
- sha512 = "nD6tXIX2126/P9e3wqRY1bm9dTtPZwRDyjVOd18G28o+1UOG+kOVgUwujE795HslSuPlEgqzsH5sgNP1hDjj9g==";
+ url = "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.4.tgz";
+ sha512 = "qMxS4hBGB8FY2GQqshcRUy1K6k8aBWP5vwm8qKkCT3A9K2dawUwOIJfqh9Yste/Bl0J2lzosVyrXDj68kLcHXQ==";
};
};
- "@smithy/signature-v4-3.1.0" = {
+ "@smithy/signature-v4-4.1.0" = {
name = "_at_smithy_slash_signature-v4";
packageName = "@smithy/signature-v4";
- version = "3.1.0";
+ version = "4.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@smithy/signature-v4/-/signature-v4-3.1.0.tgz";
- sha512 = "m0/6LW3IQ3/JBcdhqjpkpABPTPhcejqeAn0U877zxBdNLiWAnG2WmCe5MfkUyVuvpFTPQnQwCo/0ZBR4uF5kxg==";
+ url = "https://registry.npmjs.org/@smithy/signature-v4/-/signature-v4-4.1.0.tgz";
+ sha512 = "aRryp2XNZeRcOtuJoxjydO6QTaVhxx/vjaR+gx7ZjaFgrgPRyZ3HCTbfwqYj6ZWEBHkCSUfcaymKPURaByukag==";
};
};
- "@smithy/smithy-client-3.1.2" = {
+ "@smithy/smithy-client-3.1.10" = {
name = "_at_smithy_slash_smithy-client";
packageName = "@smithy/smithy-client";
- version = "3.1.2";
+ version = "3.1.10";
src = fetchurl {
- url = "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.1.2.tgz";
- sha512 = "f3eQpczBOFUtdT/ptw2WpUKu1qH1K7xrssrSiHYtd9TuLXkvFqb88l9mz9FHeUVNSUxSnkW1anJnw6rLwUKzQQ==";
+ url = "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.1.10.tgz";
+ sha512 = "OLHJo0DAmhX69YUF3WbNfzzxGIncGdxao+v27o24msdhin2AWTxJMaBQ3iPGfIrWMjy+8YGMXUJ7PrkJlpznTw==";
};
};
- "@smithy/types-3.1.0" = {
+ "@smithy/types-3.3.0" = {
name = "_at_smithy_slash_types";
packageName = "@smithy/types";
- version = "3.1.0";
+ version = "3.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@smithy/types/-/types-3.1.0.tgz";
- sha512 = "qi4SeCVOUPjhSSZrxxB/mB8DrmuSFUcJnD9KXjuP+7C3LV/KFV4kpuUSH3OHDZgQB9TEH/1sO/Fq/5HyaK9MPw==";
+ url = "https://registry.npmjs.org/@smithy/types/-/types-3.3.0.tgz";
+ sha512 = "IxvBBCTFDHbVoK7zIxqA1ZOdc4QfM5HM7rGleCuHi7L1wnKv5Pn69xXJQ9hgxH60ZVygH9/JG0jRgtUncE3QUA==";
};
};
- "@smithy/url-parser-3.0.1" = {
+ "@smithy/url-parser-3.0.3" = {
name = "_at_smithy_slash_url-parser";
packageName = "@smithy/url-parser";
- version = "3.0.1";
+ version = "3.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@smithy/url-parser/-/url-parser-3.0.1.tgz";
- sha512 = "G140IlNFlzYWVCedC4E2d6NycM1dCUbe5CnsGW1hmGt4hYKiGOw0v7lVru9WAn5T2w09QEjl4fOESWjGmCvVmg==";
+ url = "https://registry.npmjs.org/@smithy/url-parser/-/url-parser-3.0.3.tgz";
+ sha512 = "pw3VtZtX2rg+s6HMs6/+u9+hu6oY6U7IohGhVNnjbgKy86wcIsSZwgHrFR+t67Uyxvp4Xz3p3kGXXIpTNisq8A==";
};
};
"@smithy/util-base64-3.0.0" = {
@@ -9841,31 +9742,31 @@ let
sha512 = "pbjk4s0fwq3Di/ANL+rCvJMKM5bzAQdE5S/6RL5NXgMExFAi6UgQMPOm5yPaIWPpr+EOXKXRonJ3FoxKf4mCJQ==";
};
};
- "@smithy/util-defaults-mode-browser-3.0.4" = {
+ "@smithy/util-defaults-mode-browser-3.0.12" = {
name = "_at_smithy_slash_util-defaults-mode-browser";
packageName = "@smithy/util-defaults-mode-browser";
- version = "3.0.4";
+ version = "3.0.12";
src = fetchurl {
- url = "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.4.tgz";
- sha512 = "sXtin3Mue3A3xo4+XkozpgPptgmRwvNPOqTvb3ANGTCzzoQgAPBNjpE+aXCINaeSMXwHmv7E2oEn2vWdID+SAQ==";
+ url = "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.12.tgz";
+ sha512 = "5b81UUPKjD61DMg7JBYzkSM1Vny/RfRRhnZYzuWjm25OyrEXsar3RgbbXYR+otdx+wrPR3QmuFtbDZmEgGpwVg==";
};
};
- "@smithy/util-defaults-mode-node-3.0.4" = {
+ "@smithy/util-defaults-mode-node-3.0.12" = {
name = "_at_smithy_slash_util-defaults-mode-node";
packageName = "@smithy/util-defaults-mode-node";
- version = "3.0.4";
+ version = "3.0.12";
src = fetchurl {
- url = "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.4.tgz";
- sha512 = "CUF6TyxLh3CgBRVYgZNOPDfzHQjeQr0vyALR6/DkQkOm7rNfGEzW1BRFi88C73pndmfvoiIT7ochuT76OPz9Dw==";
+ url = "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.12.tgz";
+ sha512 = "g2NdtGDN67PepBs0t/mkrlQ2nVkhKUDJZCNmEJIarzYq2sK4mKO9t61Nzlv+gHEEC3ESfRaMCC/Ol3ZfCZYg7Q==";
};
};
- "@smithy/util-endpoints-2.0.2" = {
+ "@smithy/util-endpoints-2.0.5" = {
name = "_at_smithy_slash_util-endpoints";
packageName = "@smithy/util-endpoints";
- version = "2.0.2";
+ version = "2.0.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@smithy/util-endpoints/-/util-endpoints-2.0.2.tgz";
- sha512 = "4zFOcBFQvifd2LSD4a1dKvfIWWwh4sWNtS3oZ7mpob/qPPmJseqKB148iT+hWCDsG//TmI+8vjYPgZdvnkYlTg==";
+ url = "https://registry.npmjs.org/@smithy/util-endpoints/-/util-endpoints-2.0.5.tgz";
+ sha512 = "ReQP0BWihIE68OAblC/WQmDD40Gx+QY1Ez8mTdFMXpmjfxSyz2fVQu3A4zXRfQU9sZXtewk3GmhfOHswvX+eNg==";
};
};
"@smithy/util-hex-encoding-3.0.0" = {
@@ -9877,31 +9778,31 @@ let
sha512 = "eFndh1WEK5YMUYvy3lPlVmYY/fZcQE1D8oSf41Id2vCeIkKJXPcYDCZD+4+xViI6b1XSd7tE+s5AmXzz5ilabQ==";
};
};
- "@smithy/util-middleware-3.0.1" = {
+ "@smithy/util-middleware-3.0.3" = {
name = "_at_smithy_slash_util-middleware";
packageName = "@smithy/util-middleware";
- version = "3.0.1";
+ version = "3.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@smithy/util-middleware/-/util-middleware-3.0.1.tgz";
- sha512 = "WRODCQtUsO7vIvfrdxS8RFPeLKcewYtaCglZsBsedIKSUGIIvMlZT5oh+pCe72I+1L+OjnZuqRNpN2LKhWA4KQ==";
+ url = "https://registry.npmjs.org/@smithy/util-middleware/-/util-middleware-3.0.3.tgz";
+ sha512 = "l+StyYYK/eO3DlVPbU+4Bi06Jjal+PFLSMmlWM1BEwyLxZ3aKkf1ROnoIakfaA7mC6uw3ny7JBkau4Yc+5zfWw==";
};
};
- "@smithy/util-retry-3.0.1" = {
+ "@smithy/util-retry-3.0.3" = {
name = "_at_smithy_slash_util-retry";
packageName = "@smithy/util-retry";
- version = "3.0.1";
+ version = "3.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@smithy/util-retry/-/util-retry-3.0.1.tgz";
- sha512 = "5lRtYm+8fNFEUTdqZXg5M4ppVp40rMIJfR1TpbHAhKQgPIDpWT+iYMaqgnwEbtpi9U1smyUOPv5Sg+M1neOBgw==";
+ url = "https://registry.npmjs.org/@smithy/util-retry/-/util-retry-3.0.3.tgz";
+ sha512 = "AFw+hjpbtVApzpNDhbjNG5NA3kyoMs7vx0gsgmlJF4s+yz1Zlepde7J58zpIRIsdjc+emhpAITxA88qLkPF26w==";
};
};
- "@smithy/util-stream-3.0.2" = {
+ "@smithy/util-stream-3.1.2" = {
name = "_at_smithy_slash_util-stream";
packageName = "@smithy/util-stream";
- version = "3.0.2";
+ version = "3.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.0.2.tgz";
- sha512 = "n5Obp5AnlI6qHo8sbupwrcpBe6vFp4qkl0SRNuExKPNrH3ABAMG2ZszRTIUIv2b4AsFrCO+qiy4uH1Q3z1dxTA==";
+ url = "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.1.2.tgz";
+ sha512 = "08zDzB7BqvybHfZKnav5lL1UniFDK6o6nZ3OWp60PKsi/na2LpU6OX8MCtDNVaPBpKpc8EH26fvFhNT6wvMlbw==";
};
};
"@smithy/util-uri-escape-3.0.0" = {
@@ -9931,13 +9832,13 @@ let
sha512 = "rUeT12bxFnplYDe815GXbq/oixEGHfRFFtcTF3YdDi/JaENIM6aSYYLJydG83UNzLXeRI5K8abYd/8Sp/QM0kA==";
};
};
- "@smithy/util-waiter-3.0.1" = {
+ "@smithy/util-waiter-3.1.2" = {
name = "_at_smithy_slash_util-waiter";
packageName = "@smithy/util-waiter";
- version = "3.0.1";
+ version = "3.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@smithy/util-waiter/-/util-waiter-3.0.1.tgz";
- sha512 = "wwnrVQdjQxvWGOAiLmqlEhENGCcDIN+XJ/+usPOgSZObAslrCXgKlkX7rNVwIWW2RhPguTKthvF+4AoO0Z6KpA==";
+ url = "https://registry.npmjs.org/@smithy/util-waiter/-/util-waiter-3.1.2.tgz";
+ sha512 = "4pP0EV3iTsexDx+8PPGAKCQpd/6hsQBaQhqWzU4hqKPHN5epPsxKbvUTIiYIHTxaKt6/kEaqPBpu/ufvfbrRzw==";
};
};
"@socket.io/component-emitter-3.1.2" = {
@@ -9958,13 +9859,13 @@ let
sha512 = "0p9uXkuB22qGdNfy3VeEhxkU5uwvp/KrBTAbrLBURv6ilxIVwanKwjMc41lQfIVgPGcOkmLbTolfFrSsueu7zA==";
};
};
- "@stoplight/json-3.21.0" = {
+ "@stoplight/json-3.21.4" = {
name = "_at_stoplight_slash_json";
packageName = "@stoplight/json";
- version = "3.21.0";
+ version = "3.21.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@stoplight/json/-/json-3.21.0.tgz";
- sha512 = "5O0apqJ/t4sIevXCO3SBN9AHCEKKR/Zb4gaj7wYe5863jme9g02Q0n/GhM7ZCALkL+vGPTe4ZzTETP8TFtsw3g==";
+ url = "https://registry.npmjs.org/@stoplight/json/-/json-3.21.4.tgz";
+ sha512 = "dNfiOuyl3/62Bs7o21v6EUvvhUFsPTK5kJMlST1SMnEyjyyMB/b0uoc7w3Df+TSGB2j2+vep4gdsKG3eUpc7Lg==";
};
};
"@stoplight/json-ref-readers-1.2.2" = {
@@ -10147,40 +10048,40 @@ let
sha512 = "2kGbqUVJUGE8dM+bMzXG/PYUWKkjLIkRLWNh39OaADkiabDRdw8ATFCgbMz5xdIcvwspPAluSL7uY+ZiTWdWmQ==";
};
};
- "@swc-node/core-1.13.1" = {
+ "@swc-node/core-1.13.3" = {
name = "_at_swc-node_slash_core";
packageName = "@swc-node/core";
- version = "1.13.1";
+ version = "1.13.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@swc-node/core/-/core-1.13.1.tgz";
- sha512 = "emB5l2nZsXjUEAuusqjYvWnQMLWZp6K039Mv8aq5SX1rsNM/N7DNhw1i4/DX7AyzNZ0tT+ASWyTvqEURldp5HA==";
+ url = "https://registry.npmjs.org/@swc-node/core/-/core-1.13.3.tgz";
+ sha512 = "OGsvXIid2Go21kiNqeTIn79jcaX4l0G93X2rAnas4LFoDyA9wAwVK7xZdm+QsKoMn5Mus2yFLCc4OtX2dD/PWA==";
};
};
- "@swc-node/register-1.9.2" = {
+ "@swc-node/register-1.10.9" = {
name = "_at_swc-node_slash_register";
packageName = "@swc-node/register";
- version = "1.9.2";
+ version = "1.10.9";
src = fetchurl {
- url = "https://registry.npmjs.org/@swc-node/register/-/register-1.9.2.tgz";
- sha512 = "BBjg0QNuEEmJSoU/++JOXhrjWdu3PTyYeJWsvchsI0Aqtj8ICkz/DqlwtXbmZVZ5vuDPpTfFlwDBZe81zgShMA==";
+ url = "https://registry.npmjs.org/@swc-node/register/-/register-1.10.9.tgz";
+ sha512 = "iXy2sjP0phPEpK2yivjRC3PAgoLaT4sjSk0LDWCTdcTBJmR4waEog0E6eJbvoOkLkOtWw37SB8vCkl/bbh4+8A==";
};
};
- "@swc-node/sourcemap-support-0.5.0" = {
+ "@swc-node/sourcemap-support-0.5.1" = {
name = "_at_swc-node_slash_sourcemap-support";
packageName = "@swc-node/sourcemap-support";
- version = "0.5.0";
+ version = "0.5.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@swc-node/sourcemap-support/-/sourcemap-support-0.5.0.tgz";
- sha512 = "fbhjL5G0YvFoWwNhWleuBUfotiX+USiA9oJqu9STFw+Hb0Cgnddn+HVS/K5fI45mn92e8V+cHD2jgFjk4w2T9Q==";
+ url = "https://registry.npmjs.org/@swc-node/sourcemap-support/-/sourcemap-support-0.5.1.tgz";
+ sha512 = "JxIvIo/Hrpv0JCHSyRpetAdQ6lB27oFYhv0PKCNf1g2gUXOjpeR1exrXccRxLMuAV5WAmGFBwRnNOJqN38+qtg==";
};
};
- "@swc/core-1.5.29" = {
+ "@swc/core-1.7.1" = {
name = "_at_swc_slash_core";
packageName = "@swc/core";
- version = "1.5.29";
+ version = "1.7.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@swc/core/-/core-1.5.29.tgz";
- sha512 = "nvTtHJI43DUSOAf3h9XsqYg8YXKc0/N4il9y4j0xAkO0ekgDNo+3+jbw6MInawjKJF9uulyr+f5bAutTsOKVlw==";
+ url = "https://registry.npmjs.org/@swc/core/-/core-1.7.1.tgz";
+ sha512 = "M4gxJcvzZCH+QQJGVJDF3kT46C05IUPTFcA1wA65WAdg87MDzpr1mwtB/FmPsdcRFRbJIxET6uCsWgubn+KnJQ==";
};
};
"@swc/counter-0.1.3" = {
@@ -10192,31 +10093,31 @@ let
sha512 = "e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==";
};
};
- "@swc/helpers-0.5.11" = {
+ "@swc/helpers-0.5.12" = {
name = "_at_swc_slash_helpers";
packageName = "@swc/helpers";
- version = "0.5.11";
+ version = "0.5.12";
src = fetchurl {
- url = "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.11.tgz";
- sha512 = "YNlnKRWF2sVojTpIyzwou9XoTNbzbzONwRhOoniEioF1AtaitTvVZblaQRrAzChWQ1bLYyYSWzM18y4WwgzJ+A==";
+ url = "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.12.tgz";
+ sha512 = "KMZNXiGibsW9kvZAO1Pam2JPTDBm+KSHMMHWdsyI/1DbIZjT2A6Gy3hblVXUMEDvUAKq+e0vL0X0o54owWji7g==";
};
};
- "@swc/types-0.1.8" = {
+ "@swc/types-0.1.12" = {
name = "_at_swc_slash_types";
packageName = "@swc/types";
- version = "0.1.8";
+ version = "0.1.12";
src = fetchurl {
- url = "https://registry.npmjs.org/@swc/types/-/types-0.1.8.tgz";
- sha512 = "RNFA3+7OJFNYY78x0FYwi1Ow+iF1eF5WvmfY1nXPOEH4R2p/D4Cr1vzje7dNAI2aLFqpv8Wyz4oKSWqIZArpQA==";
+ url = "https://registry.npmjs.org/@swc/types/-/types-0.1.12.tgz";
+ sha512 = "wBJA+SdtkbFhHjTMYH+dEH1y4VpfGdAc2Kw/LK09i9bXd/K6j6PkDcFCEzb6iVfZMkPRrl/q0e3toqTAJdkIVA==";
};
};
- "@swc/wasm-1.5.29" = {
+ "@swc/wasm-1.7.1" = {
name = "_at_swc_slash_wasm";
packageName = "@swc/wasm";
- version = "1.5.29";
+ version = "1.7.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@swc/wasm/-/wasm-1.5.29.tgz";
- sha512 = "uCvf2Sm9lGcwtqAoeB8Huh9POeM1tZqoMRwkQrdhUwaysNaeQJhCAU0zx5KeDjVna8W8/ELjgZW7HHZSw8Ifhw==";
+ url = "https://registry.npmjs.org/@swc/wasm/-/wasm-1.7.1.tgz";
+ sha512 = "K+o9bzvz6VhPr3E4je1Paz7p8zwNM6QBSlvwhGMFgxGXSb0X3yz0dihU/DUzqHwBmc1QLmN1yE6o7jqMtCJgmg==";
};
};
"@szmarczak/http-timer-1.1.2" = {
@@ -10273,67 +10174,67 @@ let
sha512 = "/FcGQVvXAslhiC9aMG5gxKXJctg8N7XLZrP+wYrFTFccWEPZd/Xon5y7jUXpKOVSOFEA1MOKZKbPuK4ET5/T8Q==";
};
};
- "@thaunknown/idb-chunk-store-1.0.2" = {
+ "@thaunknown/idb-chunk-store-1.0.4" = {
name = "_at_thaunknown_slash_idb-chunk-store";
packageName = "@thaunknown/idb-chunk-store";
- version = "1.0.2";
+ version = "1.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@thaunknown/idb-chunk-store/-/idb-chunk-store-1.0.2.tgz";
- sha512 = "UdKshbKdHDP+p0XPdv55QiU/scdB9TzvovGFSgXThf+7Yd3noLeYp6KpkYyc1jzUXvI3/8+TemPeASOimrOXvw==";
+ url = "https://registry.npmjs.org/@thaunknown/idb-chunk-store/-/idb-chunk-store-1.0.4.tgz";
+ sha512 = "4/XDQZHKHyJCGeqnVjHyqeAXClZJ9l90rRvoTslUiuvwTGAUpIb3poL0LfGJEdSuWV+zzGdDjIm/3L4x6crwbg==";
};
};
- "@thaunknown/simple-peer-10.0.7" = {
+ "@thaunknown/simple-peer-10.0.10" = {
name = "_at_thaunknown_slash_simple-peer";
packageName = "@thaunknown/simple-peer";
- version = "10.0.7";
+ version = "10.0.10";
src = fetchurl {
- url = "https://registry.npmjs.org/@thaunknown/simple-peer/-/simple-peer-10.0.7.tgz";
- sha512 = "b4oPNaJEWk9UT/ADV8IFWcAyow+gOPLa73SptuOqm6IdMDr4zlsqGsdl4LQmvgMKMgWAOHdVViw/RYF5qYvkCg==";
+ url = "https://registry.npmjs.org/@thaunknown/simple-peer/-/simple-peer-10.0.10.tgz";
+ sha512 = "RtoYQChP5clkbh+crUhv0LD/fdzgNO/Ah/SBdcSqla6xY6GK50ukNhq39H4vzAKoYqvDu01Hc+JSD9DxCdoBOw==";
};
};
- "@thaunknown/simple-websocket-9.1.1" = {
+ "@thaunknown/simple-websocket-9.1.3" = {
name = "_at_thaunknown_slash_simple-websocket";
packageName = "@thaunknown/simple-websocket";
- version = "9.1.1";
+ version = "9.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@thaunknown/simple-websocket/-/simple-websocket-9.1.1.tgz";
- sha512 = "vzQloFWRodRZqZhpxMpBljFtISesY8TihA8T5uKwCYdj2I1ImMhE/gAeTCPsCGOtxJfGKu3hw/is6MXauWLjOg==";
+ url = "https://registry.npmjs.org/@thaunknown/simple-websocket/-/simple-websocket-9.1.3.tgz";
+ sha512 = "pf/FCJsgWtLJiJmIpiSI7acOZVq3bIQCpnNo222UFc8Ph1lOUOTpe6LoYhhiOSKB9GUaWJEVUtZ+sK1/aBgU5Q==";
};
};
- "@thaunknown/thirty-two-1.0.3" = {
+ "@thaunknown/thirty-two-1.0.5" = {
name = "_at_thaunknown_slash_thirty-two";
packageName = "@thaunknown/thirty-two";
- version = "1.0.3";
+ version = "1.0.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@thaunknown/thirty-two/-/thirty-two-1.0.3.tgz";
- sha512 = "bD6PvWbaf53JC04O7WnGDjqZBDgja/KT2Jd/6I2vJBIy+DLmQfQJZZ/G+16nAkVq1yGTIkO4rfc4RlH0DmEEqA==";
+ url = "https://registry.npmjs.org/@thaunknown/thirty-two/-/thirty-two-1.0.5.tgz";
+ sha512 = "Q53KyCXweV1CS62EfqtPDqfpksn5keQ59PGqzzkK+g8Vif1jB4inoBCcs/BUSdsqddhE3G+2Fn+4RX3S6RqT0A==";
};
};
- "@tinyhttp/accepts-2.2.1" = {
+ "@tinyhttp/accepts-2.2.2" = {
name = "_at_tinyhttp_slash_accepts";
packageName = "@tinyhttp/accepts";
- version = "2.2.1";
+ version = "2.2.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@tinyhttp/accepts/-/accepts-2.2.1.tgz";
- sha512 = "2DHJLSJX1gqR5F6nKuu7+hyCNoPRNOxvnQ11m0X8klkSVoBFBO2HMf3bJ8P+fmNv1e6RjHzHF+G+hJ3dxXIQXQ==";
+ url = "https://registry.npmjs.org/@tinyhttp/accepts/-/accepts-2.2.2.tgz";
+ sha512 = "DmngnwOaPgNUGgTpX1UdlNrXaGG6k5rHFzslcYlvSQIg7s0PI6bF86U0fYq3q+yhJhKbnwzFez0wU1lAP+bKvA==";
};
};
- "@tinyhttp/app-2.2.3" = {
+ "@tinyhttp/app-2.3.0" = {
name = "_at_tinyhttp_slash_app";
packageName = "@tinyhttp/app";
- version = "2.2.3";
+ version = "2.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@tinyhttp/app/-/app-2.2.3.tgz";
- sha512 = "njr499Tx9BwlnIGfJjTuqfPwaUSTsjhUeRq/jVtHJpS95UgWECH7kiq8+bEx6TFRXiNKpARZ6KJUemlMyV+iCg==";
+ url = "https://registry.npmjs.org/@tinyhttp/app/-/app-2.3.0.tgz";
+ sha512 = "2jGV5Er72wywjM8HBjYszECOiIzgNcRrO/kq1gHQqOQvrLa1KzIpUD1CCvPALUXiko7ZK2zKq5WyL+yRPC50uw==";
};
};
- "@tinyhttp/content-disposition-2.2.0" = {
+ "@tinyhttp/content-disposition-2.2.1" = {
name = "_at_tinyhttp_slash_content-disposition";
packageName = "@tinyhttp/content-disposition";
- version = "2.2.0";
+ version = "2.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@tinyhttp/content-disposition/-/content-disposition-2.2.0.tgz";
- sha512 = "w1dJaSAtcCinOlT/YQg35RnFCOBbCHBGDVhH4yLoiJVtecRAJ2cYMf5HP+UhfbXURa38GC8fkRXO0vODDTjmeg==";
+ url = "https://registry.npmjs.org/@tinyhttp/content-disposition/-/content-disposition-2.2.1.tgz";
+ sha512 = "PQ5IWdOn7arScqTV+usIDJvwbanoAXtaopzgxjMS9y7TFwLSIelCblihRBEVIPIkIpsdhSJFH3RF+Daosyj+Aw==";
};
};
"@tinyhttp/content-type-0.1.4" = {
@@ -10345,31 +10246,31 @@ let
sha512 = "dl6f3SHIJPYbhsW1oXdrqOmLSQF/Ctlv3JnNfXAE22kIP7FosqJHxkz/qj2gv465prG8ODKH5KEyhBkvwrueKQ==";
};
};
- "@tinyhttp/cookie-2.1.0" = {
+ "@tinyhttp/cookie-2.1.1" = {
name = "_at_tinyhttp_slash_cookie";
packageName = "@tinyhttp/cookie";
- version = "2.1.0";
+ version = "2.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@tinyhttp/cookie/-/cookie-2.1.0.tgz";
- sha512 = "o56utxXvIuLTCtPm66r8lcyUufpw0RkO+u4wQrTbc6snyyGZZ9hHzGRxPyko0ks90ctOkLh0mNKn7YZaTWlvfw==";
+ url = "https://registry.npmjs.org/@tinyhttp/cookie/-/cookie-2.1.1.tgz";
+ sha512 = "h/kL9jY0e0Dvad+/QU3efKZww0aTvZJslaHj3JTPmIPC9Oan9+kYqmh3M6L5JUQRuTJYFK2nzgL2iJtH2S+6dA==";
};
};
- "@tinyhttp/cookie-signature-2.1.0" = {
+ "@tinyhttp/cookie-signature-2.1.1" = {
name = "_at_tinyhttp_slash_cookie-signature";
packageName = "@tinyhttp/cookie-signature";
- version = "2.1.0";
+ version = "2.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@tinyhttp/cookie-signature/-/cookie-signature-2.1.0.tgz";
- sha512 = "bpOXBGf9rKoajtEG75O7xjwW+u2I/NNPkJWJTDdr6j7Vx0lG5R9Hnl3ty80Af4jwyo90ywXVpZIxKLubPK6RzA==";
+ url = "https://registry.npmjs.org/@tinyhttp/cookie-signature/-/cookie-signature-2.1.1.tgz";
+ sha512 = "VDsSMY5OJfQJIAtUgeQYhqMPSZptehFSfvEEtxr+4nldPA8IImlp3QVcOVuK985g4AFR4Hl1sCbWCXoqBnVWnw==";
};
};
- "@tinyhttp/cors-2.0.0" = {
+ "@tinyhttp/cors-2.0.1" = {
name = "_at_tinyhttp_slash_cors";
packageName = "@tinyhttp/cors";
- version = "2.0.0";
+ version = "2.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@tinyhttp/cors/-/cors-2.0.0.tgz";
- sha512 = "IwQsPBnK+gRrhTsPA4FPOfbNzZZt8cVsOIMNFb6HzoScaiWcoLEogL0Bz/aBSm8KM13uieVXoVT6udMqhqUS2A==";
+ url = "https://registry.npmjs.org/@tinyhttp/cors/-/cors-2.0.1.tgz";
+ sha512 = "qrmo6WJuaiCzKWagv2yA/kw6hIISfF/hOqPWwmI6w0o8apeTMmRN3DoCFvQ/wNVuWVdU5J4KU7OX8aaSOEq51A==";
};
};
"@tinyhttp/encode-url-2.1.1" = {
@@ -10381,49 +10282,49 @@ let
sha512 = "AhY+JqdZ56qV77tzrBm0qThXORbsVjs/IOPgGCS7x/wWnsa/Bx30zDUU/jPAUcSzNOzt860x9fhdGpzdqbUeUw==";
};
};
- "@tinyhttp/etag-2.1.1" = {
+ "@tinyhttp/etag-2.1.2" = {
name = "_at_tinyhttp_slash_etag";
packageName = "@tinyhttp/etag";
- version = "2.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@tinyhttp/etag/-/etag-2.1.1.tgz";
- sha512 = "AcHGK1nMlKIHmlbg8bb8UY/KhiaAX17SAn3/6wlgwwdX4UizA8HETDfCH3KLdu2ZASokynuwVFNDJCo1DAawGw==";
- };
- };
- "@tinyhttp/forwarded-2.1.2" = {
- name = "_at_tinyhttp_slash_forwarded";
- packageName = "@tinyhttp/forwarded";
version = "2.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@tinyhttp/forwarded/-/forwarded-2.1.2.tgz";
- sha512 = "9H/eulJ68ElY/+zYpTpNhZ7vxGV+cnwaR6+oQSm7bVgZMyuQfgROW/qvZuhmgDTIxnGMXst+Ba4ij6w6Krcs3w==";
+ url = "https://registry.npmjs.org/@tinyhttp/etag/-/etag-2.1.2.tgz";
+ sha512 = "j80fPKimGqdmMh6962y+BtQsnYPVCzZfJw0HXjyH70VaJBHLKGF+iYhcKqzI3yef6QBNa8DKIPsbEYpuwApXTw==";
};
};
- "@tinyhttp/proxy-addr-2.1.3" = {
+ "@tinyhttp/forwarded-2.1.1" = {
+ name = "_at_tinyhttp_slash_forwarded";
+ packageName = "@tinyhttp/forwarded";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@tinyhttp/forwarded/-/forwarded-2.1.1.tgz";
+ sha512 = "nO3kq0R1LRl2+CAMlnggm22zE6sT8gfvGbNvSitV6F9eaUSurHP0A8YZFMihSkugHxK+uIegh1TKrqgD8+lyGQ==";
+ };
+ };
+ "@tinyhttp/proxy-addr-2.2.0" = {
name = "_at_tinyhttp_slash_proxy-addr";
packageName = "@tinyhttp/proxy-addr";
- version = "2.1.3";
+ version = "2.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@tinyhttp/proxy-addr/-/proxy-addr-2.1.3.tgz";
- sha512 = "Z0Q/0wEJpvall7LlBezXDy96CXLzPZb6xJawwEgsMXXQhmjb+r3EkpCBwMrWm2GlbJFL/UxKxpdumiNW3Ne06g==";
+ url = "https://registry.npmjs.org/@tinyhttp/proxy-addr/-/proxy-addr-2.2.0.tgz";
+ sha512 = "WM/PPL9xNvrs7/8Om5nhKbke5FHrP3EfjOOR+wBnjgESfibqn0K7wdUTnzSLp1lBmemr88os1XvzwymSgaibyA==";
};
};
- "@tinyhttp/req-2.2.2" = {
+ "@tinyhttp/req-2.2.3" = {
name = "_at_tinyhttp_slash_req";
packageName = "@tinyhttp/req";
- version = "2.2.2";
+ version = "2.2.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@tinyhttp/req/-/req-2.2.2.tgz";
- sha512 = "LaL/RFRro0qjOQ0g3vxE6i9bWl9hhv9en7opykzLU4NimFPg2C8wl7Qkoyc0mDuoRMQmWpq730PDWXSUmLiT2A==";
+ url = "https://registry.npmjs.org/@tinyhttp/req/-/req-2.2.3.tgz";
+ sha512 = "HtIa4Gaa8QFTlmsvoif/B7yMK5H0WBUegH2kKW6scNwOpFXyxEk+VsctrIVgORrP5lybXAIRXlRhGuBBAMlVhw==";
};
};
- "@tinyhttp/res-2.2.2" = {
+ "@tinyhttp/res-2.2.3" = {
name = "_at_tinyhttp_slash_res";
packageName = "@tinyhttp/res";
- version = "2.2.2";
+ version = "2.2.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@tinyhttp/res/-/res-2.2.2.tgz";
- sha512 = "YeEYFwozag2qO5xoTj1Df+d5l6MXUefxz3xbcJD6ASVqUQytTEYtOC0FjhQKLpTLjMJKlS4mkKmeIdDLFO9btg==";
+ url = "https://registry.npmjs.org/@tinyhttp/res/-/res-2.2.3.tgz";
+ sha512 = "PGl88OOdmMcOuKZaTbhGKAWPoJJf3+EfKIad8ydzjdenVjrTZZjIYJtmwYiUBeEice+YkOCO67qCIekVO5mHlw==";
};
};
"@tinyhttp/router-2.2.2" = {
@@ -10435,22 +10336,22 @@ let
sha512 = "i+1ouhPyTqcuJuOsKqmo7i+YD++0RF2lQLhBpcTnsaegD2gTEa3xW2Pcz7spYQGo7K8PQYtOrL7m9b14+BEXqg==";
};
};
- "@tinyhttp/send-2.2.1" = {
+ "@tinyhttp/send-2.2.2" = {
name = "_at_tinyhttp_slash_send";
packageName = "@tinyhttp/send";
- version = "2.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@tinyhttp/send/-/send-2.2.1.tgz";
- sha512 = "uFW0fxmYIPpB5RKP2vpL8QuafjUrCBmBWxZMIhFb7uBQky87t7x1QdpRB0vc+w11a2kok+Nc8ClD5kc6CRJCFg==";
- };
- };
- "@tinyhttp/type-is-2.2.2" = {
- name = "_at_tinyhttp_slash_type-is";
- packageName = "@tinyhttp/type-is";
version = "2.2.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@tinyhttp/type-is/-/type-is-2.2.2.tgz";
- sha512 = "DmTm0MkdrUxEPI2WBBoYJT0bitWx6+xeUd3lya1NGbKmYArzyUE+KVro/9y/h6Bxh+RaAKNeTCF4H/ksbe/ULQ==";
+ url = "https://registry.npmjs.org/@tinyhttp/send/-/send-2.2.2.tgz";
+ sha512 = "TZkGy9EdGk+vwYWQnjArQftaXAUIgp/fFlgaxlpamsCZKy7o+CNJ75xty4H3SaY3ZPgN47wv8rnJ50rDRQdFFQ==";
+ };
+ };
+ "@tinyhttp/type-is-2.2.3" = {
+ name = "_at_tinyhttp_slash_type-is";
+ packageName = "@tinyhttp/type-is";
+ version = "2.2.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@tinyhttp/type-is/-/type-is-2.2.3.tgz";
+ sha512 = "RsZ4+or5xI+wrTlrd+/cLZELoJDMd1HSp+1P23VOZSu1xPAsO1XLf1FgluO8GbEW9Ll/l2yC7mO6diKzjc06HA==";
};
};
"@tinyhttp/url-2.1.1" = {
@@ -10588,15 +10489,6 @@ let
sha512 = "ec4tjL2Rr0pkZ5hww65c+EEPYwxOi4Ryv+0MtjeaSQRJyq322Q27eOQiFbuNgw2hpL4hB1/W/HBGk3VKS43osg==";
};
};
- "@tufjs/canonical-json-1.0.0" = {
- name = "_at_tufjs_slash_canonical-json";
- packageName = "@tufjs/canonical-json";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@tufjs/canonical-json/-/canonical-json-1.0.0.tgz";
- sha512 = "QTnf++uxunWvG2z3UFNzAoQPHxnSXOwtaI3iJ+AohhV+5vONuArPjJE7aPXPVXfXJsqrVbZBu9b81AJoSd09IQ==";
- };
- };
"@tufjs/canonical-json-2.0.0" = {
name = "_at_tufjs_slash_canonical-json";
packageName = "@tufjs/canonical-json";
@@ -10606,15 +10498,6 @@ let
sha512 = "yVtV8zsdo8qFHe+/3kw81dSLyF7D576A5cCFCi4X7B39tWT7SekaEFUnvnWJHz+9qO7qJTah1JbrDjWKqFtdWA==";
};
};
- "@tufjs/models-1.0.4" = {
- name = "_at_tufjs_slash_models";
- packageName = "@tufjs/models";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/@tufjs/models/-/models-1.0.4.tgz";
- sha512 = "qaGV9ltJP0EO25YfFUPhxRVK0evXFIAGicsVXuRim4Ed9cjPxYhNnNJ49SFmbeLgtxpslIkX317IgpfcHPVj/A==";
- };
- };
"@tufjs/models-2.0.1" = {
name = "_at_tufjs_slash_models";
packageName = "@tufjs/models";
@@ -10642,6 +10525,15 @@ let
sha512 = "qLOvfmlG2vCVw5fo/oz8WAZYlpe5a5OurgTj3diIxJCdjRHpapC+vQCz3er9LV79Vcat+DifBjeAhOAdmndtDQ==";
};
};
+ "@tybys/wasm-util-0.9.0" = {
+ name = "_at_tybys_slash_wasm-util";
+ packageName = "@tybys/wasm-util";
+ version = "0.9.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.9.0.tgz";
+ sha512 = "6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==";
+ };
+ };
"@types/acorn-4.0.6" = {
name = "_at_types_slash_acorn";
packageName = "@types/acorn";
@@ -10714,13 +10606,13 @@ let
sha512 = "IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==";
};
};
- "@types/cli-progress-3.11.5" = {
+ "@types/cli-progress-3.11.6" = {
name = "_at_types_slash_cli-progress";
packageName = "@types/cli-progress";
- version = "3.11.5";
+ version = "3.11.6";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/cli-progress/-/cli-progress-3.11.5.tgz";
- sha512 = "D4PbNRbviKyppS5ivBGyFO29POlySLmA2HyUFE4p5QGazAMM3CwkKWcvTl8gvElSuxRh6FPKL8XmidX873ou4g==";
+ url = "https://registry.npmjs.org/@types/cli-progress/-/cli-progress-3.11.6.tgz";
+ sha512 = "cE3+jb9WRlu+uOSAugewNpITJDt1VF8dHOopPO4IABFc3SXYL5WE/+PTz/FCdZRRfIujiWW3n3aMbv1eIGVRWA==";
};
};
"@types/commander-2.12.2" = {
@@ -10858,13 +10750,22 @@ let
sha512 = "qJ7LIFp06h1QE1aVxbVd+zJP2wdaugYXYfd6JxsyRMrYHaxb6itXPogW2tz+ylUJ1n1b+JF1PHyYCfYHm0dvUg==";
};
};
- "@types/eslint-8.56.10" = {
+ "@types/eslint-8.56.11" = {
name = "_at_types_slash_eslint";
packageName = "@types/eslint";
- version = "8.56.10";
+ version = "8.56.11";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/eslint/-/eslint-8.56.10.tgz";
- sha512 = "Shavhk87gCtY2fhXDctcfS3e6FdxWkCx1iUZ9eEUbh7rTqlZT0/IzOkCOVt0fCjcFuZ9FPYfuezTBImfHCDBGQ==";
+ url = "https://registry.npmjs.org/@types/eslint/-/eslint-8.56.11.tgz";
+ sha512 = "sVBpJMf7UPo/wGecYOpk2aQya2VUGeHhe38WG7/mN5FufNSubf5VT9Uh9Uyp8/eLJpu1/tuhJ/qTo4mhSB4V4Q==";
+ };
+ };
+ "@types/eslint-9.6.0" = {
+ name = "_at_types_slash_eslint";
+ packageName = "@types/eslint";
+ version = "9.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/eslint/-/eslint-9.6.0.tgz";
+ sha512 = "gi6WQJ7cHRgZxtkQEoyHMppPjq9Kxo5Tjn2prSKDSmZrCz8TZ3jSRCeTJm+WoM+oB0WG37bRqLzaaU3q7JypGg==";
};
};
"@types/eslint-scope-3.7.7" = {
@@ -10903,13 +10804,13 @@ let
sha512 = "ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==";
};
};
- "@types/express-serve-static-core-4.19.3" = {
+ "@types/express-serve-static-core-4.19.5" = {
name = "_at_types_slash_express-serve-static-core";
packageName = "@types/express-serve-static-core";
- version = "4.19.3";
+ version = "4.19.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.19.3.tgz";
- sha512 = "KOzM7MhcBFlmnlr/fzISFF5vGWVSvN6fTd4T+ExOt08bA/dA5kpSzY52nMsI1KDFmUREpJelPYyuslLRSjjgCg==";
+ url = "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.19.5.tgz";
+ sha512 = "y6W03tvrACO72aijJ5uF02FRq5cgDR9lUxddQ8vyF+GvmjJQqbzDcJngEjURc+ZsG31VI3hODNZJ2URj86pzmg==";
};
};
"@types/geojson-7946.0.4" = {
@@ -11083,13 +10984,13 @@ let
sha512 = "sVDA58zAw4eWAffKOaQH5/5j3XeayukzDk+ewSsnv3p4yJEZHCCzMDiZM8e0OUrRvmpGZ85jf4yDHkHsgBNr9Q==";
};
};
- "@types/lodash-4.17.5" = {
+ "@types/lodash-4.17.7" = {
name = "_at_types_slash_lodash";
packageName = "@types/lodash";
- version = "4.17.5";
+ version = "4.17.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/lodash/-/lodash-4.17.5.tgz";
- sha512 = "MBIOHVZqVqgfro1euRDWX7OO0fBVUUMrN6Pwm8LQsz8cWhEpihlvR70ENj3f40j58TNxZaWv2ndSkInykNBBJw==";
+ url = "https://registry.npmjs.org/@types/lodash/-/lodash-4.17.7.tgz";
+ sha512 = "8wTvZawATi/lsmNu10/j2hk1KEP0IvjubqPE3cu1Xz7xfXXt5oCq3SNUz4fMIP4XGF9Ky+Ue2tBA3hcS7LSBlA==";
};
};
"@types/lru-cache-5.1.1" = {
@@ -11101,13 +11002,13 @@ let
sha512 = "ssE3Vlrys7sdIzs5LOxCzTVMsU7i9oa/IaW92wF32JFb3CVczqOkru2xspuKczHEbG3nvmPY7IFqVmGGHdNbYw==";
};
};
- "@types/markdown-it-14.1.1" = {
+ "@types/markdown-it-14.1.2" = {
name = "_at_types_slash_markdown-it";
packageName = "@types/markdown-it";
- version = "14.1.1";
+ version = "14.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/markdown-it/-/markdown-it-14.1.1.tgz";
- sha512 = "4NpsnpYl2Gt1ljyBGrKMxFYAYvpqbnnkgP/i/g+NLpjEUa3obn1XJCur9YbEXKDAkaXqsR1LbDnGEJ0MmKFxfg==";
+ url = "https://registry.npmjs.org/@types/markdown-it/-/markdown-it-14.1.2.tgz";
+ sha512 = "promo4eFwuiW+TfGxhi+0x3czqTYJkG8qB17ZUJiVF10Xm7NLVRSLUsfRTU/6h1e24VvRnXCx+hG7li58lkzog==";
};
};
"@types/mdast-3.0.15" = {
@@ -11236,6 +11137,15 @@ let
sha512 = "JkRpuVz3xCNCWaeQ5EHLR/6woMbHZz/jZ7Kmc63AkU+1HxnoUugzSWMck7dsR4DvNYX8jp9wTi9K7WvnxOIQZQ==";
};
};
+ "@types/node-16.18.104" = {
+ name = "_at_types_slash_node";
+ packageName = "@types/node";
+ version = "16.18.104";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/node/-/node-16.18.104.tgz";
+ sha512 = "OF3keVCbfPlkzxnnDBUZJn1RiCJzKeadjiW0xTEb0G1SUJ5gDVb3qnzZr2T4uIFvsbKJbXy1v2DN7e2zaEY7jQ==";
+ };
+ };
"@types/node-16.18.11" = {
name = "_at_types_slash_node";
packageName = "@types/node";
@@ -11245,15 +11155,6 @@ let
sha512 = "3oJbGBUWuS6ahSnEq1eN2XrCyf4YsWI8OyCvo7c64zQJNplk3mO84t53o8lfTk+2ji59g5ycfc6qQ3fdHliHuA==";
};
};
- "@types/node-16.18.98" = {
- name = "_at_types_slash_node";
- packageName = "@types/node";
- version = "16.18.98";
- src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-16.18.98.tgz";
- sha512 = "fpiC20NvLpTLAzo3oVBKIqBGR6Fx/8oAK/SSf7G+fydnXMY1x4x9RZ6sBXhqKlCU21g2QapUsbLlhv3+a7wS+Q==";
- };
- };
"@types/node-16.9.1" = {
name = "_at_types_slash_node";
packageName = "@types/node";
@@ -11263,15 +11164,6 @@ let
sha512 = "QpLcX9ZSsq3YYUUnD3nFDY8H7wctAhQj/TFKL8Ya8v5fMm3CFXxo8zStsLAl780ltoYoo1WvKUVGBQK+1ifr7g==";
};
};
- "@types/node-18.19.30" = {
- name = "_at_types_slash_node";
- packageName = "@types/node";
- version = "18.19.30";
- src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-18.19.30.tgz";
- sha512 = "453z1zPuJLVDbyahaa1sSD5C2sht6ZpHp5rgJNs+H8YGqhluCXcuOUmBYsAo0Tos0cHySJ3lVUGbGgLlqIkpyg==";
- };
- };
"@types/node-18.19.34" = {
name = "_at_types_slash_node";
packageName = "@types/node";
@@ -11281,13 +11173,22 @@ let
sha512 = "eXF4pfBNV5DAMKGbI02NnDtWrQ40hAN558/2vvS4gMpMIxaf6JmD7YjnZbq0Q9TDSSkKBamime8ewRoomHdt4g==";
};
};
- "@types/node-20.14.2" = {
+ "@types/node-18.19.42" = {
name = "_at_types_slash_node";
packageName = "@types/node";
- version = "20.14.2";
+ version = "18.19.42";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-20.14.2.tgz";
- sha512 = "xyu6WAMVwv6AKFLB+e/7ySZVr/0zLCzOa7rSpq6jNwpqOrUbcACDWC+53d4n2QHOnDou0fbIsg8wZu/sxrnI4Q==";
+ url = "https://registry.npmjs.org/@types/node/-/node-18.19.42.tgz";
+ sha512 = "d2ZFc/3lnK2YCYhos8iaNIYu9Vfhr92nHiyJHRltXWjXUBjEE+A4I58Tdbnw4VhggSW+2j5y5gTrLs4biNnubg==";
+ };
+ };
+ "@types/node-20.14.12" = {
+ name = "_at_types_slash_node";
+ packageName = "@types/node";
+ version = "20.14.12";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/node/-/node-20.14.12.tgz";
+ sha512 = "r7wNXakLeSsGT0H1AU863vS2wa5wBOK4bWMjZz2wj+8nBx+m5PeIn0k8AloSLpRuiwdRQZwarZqHE4FNArPuJQ==";
};
};
"@types/node-6.14.13" = {
@@ -11389,6 +11290,15 @@ let
sha512 = "hti/R0pS0q1/xx+TsI73XIqk26eBsISZ2R0wUijXIngRK9R/e7Xw/cXVxQK7R5JjW+SV4zGcn5hXjudkN/pLIw==";
};
};
+ "@types/readable-stream-4.0.15" = {
+ name = "_at_types_slash_readable-stream";
+ packageName = "@types/readable-stream";
+ version = "4.0.15";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/readable-stream/-/readable-stream-4.0.15.tgz";
+ sha512 = "oAZ3kw+kJFkEqyh7xORZOku1YAKvsFTogRY8kVl4vHpEKiDkfnSA/My8haRE7fvmix5Zyy+1pwzOi7yycGLBJw==";
+ };
+ };
"@types/responselike-1.0.3" = {
name = "_at_types_slash_responselike";
packageName = "@types/responselike";
@@ -11470,13 +11380,13 @@ let
sha512 = "W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==";
};
};
- "@types/shimmer-1.0.5" = {
+ "@types/shimmer-1.2.0" = {
name = "_at_types_slash_shimmer";
packageName = "@types/shimmer";
- version = "1.0.5";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/shimmer/-/shimmer-1.0.5.tgz";
- sha512 = "9Hp0ObzwwO57DpLFF0InUjUm/II8GmKAvzbefxQTihCb7KI6yc9yzf0nLc4mVdby5N4DRCgQM2wCup9KTieeww==";
+ url = "https://registry.npmjs.org/@types/shimmer/-/shimmer-1.2.0.tgz";
+ sha512 = "UE7oxhQLLd9gub6JKIAhDq06T0F6FnztwMNRvYgjeQSBeMc1ZG/tA47EwfduvkuQS8apbkM/lpLpWsaCeYsXVg==";
};
};
"@types/sizzle-2.3.8" = {
@@ -11596,13 +11506,13 @@ let
sha512 = "ltIpx+kM7g/MLRZfkbL7EsCEjfzCcScLpkg37eXEtx5kmrAKBkTJwd1GIAjDSL8wTpM6Hzn5YO4pSb91BEwu1g==";
};
};
- "@types/ws-8.5.10" = {
+ "@types/ws-8.5.11" = {
name = "_at_types_slash_ws";
packageName = "@types/ws";
- version = "8.5.10";
+ version = "8.5.11";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/ws/-/ws-8.5.10.tgz";
- sha512 = "vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==";
+ url = "https://registry.npmjs.org/@types/ws/-/ws-8.5.11.tgz";
+ sha512 = "4+q7P5h3SpJxaBft0Dzpbr6lmMaqh0Jr2tbhJZ/luAwvD7ohSCniYkwz/pLxuT2h0EOa6QADgJj1Ko+TzRfZ+w==";
};
};
"@types/yargs-15.0.19" = {
@@ -11767,13 +11677,13 @@ let
sha512 = "1O/biKiVhhn0EtvDF4UOvz325K4RrLupfL8rHcmqD2TBLv4qVDWQuzx4JGa1FfqjjRb+C9TNZ6w19f32Mq85Ug==";
};
};
- "@vercel/build-utils-8.2.2" = {
+ "@vercel/build-utils-8.3.5" = {
name = "_at_vercel_slash_build-utils";
packageName = "@vercel/build-utils";
- version = "8.2.2";
+ version = "8.3.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@vercel/build-utils/-/build-utils-8.2.2.tgz";
- sha512 = "+Nf/Yk3GeMI47L/g5KYEvsj7yqVkhb6vZqjxavUBRVPSsgJ7fuNVfYvvpFj/Y0BYysEF8XNUxKFuwGROiop/ow==";
+ url = "https://registry.npmjs.org/@vercel/build-utils/-/build-utils-8.3.5.tgz";
+ sha512 = "lJNcA1XKMbQg6npC8grQBEVg11w8BSBr8bXUSZokYmvtNXheL/5cKGAD01Uba9x1P/ae9lJ9zDorpoSq4AWSfw==";
};
};
"@vercel/error-utils-2.0.2" = {
@@ -11803,13 +11713,13 @@ let
sha512 = "iTEA0vY6RBPuEzkwUTVzSHDATo1aF6bdLLspI68mQ/BTbi5UQEGjpjyzdKOVcSYApDtFU6M6vypZ1t4vIEnHvw==";
};
};
- "@vercel/gatsby-plugin-vercel-builder-2.0.33" = {
+ "@vercel/gatsby-plugin-vercel-builder-2.0.39" = {
name = "_at_vercel_slash_gatsby-plugin-vercel-builder";
packageName = "@vercel/gatsby-plugin-vercel-builder";
- version = "2.0.33";
+ version = "2.0.39";
src = fetchurl {
- url = "https://registry.npmjs.org/@vercel/gatsby-plugin-vercel-builder/-/gatsby-plugin-vercel-builder-2.0.33.tgz";
- sha512 = "fJFRZaQfaaNdun8u/QepzKVrGnTW/9pXls322la5pP5xHAbaWPTTNoFtG/odZUXiv0oNV1qVWnTI4bnqFh6Icw==";
+ url = "https://registry.npmjs.org/@vercel/gatsby-plugin-vercel-builder/-/gatsby-plugin-vercel-builder-2.0.39.tgz";
+ sha512 = "rvShSeoiUvw1JoQ5r9EJBwELmA6lZDH2agG9KCBgKowd8YQZIm7r3DddvWPJ8s2x7P4kv0eCbr5e89Z2wsiygw==";
};
};
"@vercel/go-3.1.1" = {
@@ -11821,40 +11731,40 @@ let
sha512 = "mrzomNYltxkjvtUmaYry5YEyvwTz6c/QQHE5Gr/pPGRIniUiP6T6OFOJ49RBN7e6pRXaNzHPVuidiuBhvHh5+Q==";
};
};
- "@vercel/hydrogen-1.0.2" = {
+ "@vercel/hydrogen-1.0.4" = {
name = "_at_vercel_slash_hydrogen";
packageName = "@vercel/hydrogen";
- version = "1.0.2";
+ version = "1.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@vercel/hydrogen/-/hydrogen-1.0.2.tgz";
- sha512 = "/Q2MKk1GfOuZAnkE9jQexjtUQqanbY65R+xtJWd9yKIgwcfRI1hxiNH3uXyVM5AvLoY+fxxULkSuxDtUKpkJpQ==";
+ url = "https://registry.npmjs.org/@vercel/hydrogen/-/hydrogen-1.0.4.tgz";
+ sha512 = "Sc0lpmI/J6O3o2cL75k8klL7ir2gi6kYI92O5+MrR3hh4fwz/atUIL9UWsTGuFjKTm69VAoJrmn3VKf0/0SGLw==";
};
};
- "@vercel/next-4.2.17" = {
+ "@vercel/next-4.3.6" = {
name = "_at_vercel_slash_next";
packageName = "@vercel/next";
- version = "4.2.17";
+ version = "4.3.6";
src = fetchurl {
- url = "https://registry.npmjs.org/@vercel/next/-/next-4.2.17.tgz";
- sha512 = "b1ZwH/3sL4+CrrIjncZLAqjd+ts0KyVGL0HEOWU340OI3hXmQQAN+2k0MWlqm8Vu8rFGfk9VEQ9yJG/pmPx6mg==";
+ url = "https://registry.npmjs.org/@vercel/next/-/next-4.3.6.tgz";
+ sha512 = "qUHp79xX07qYtz7DGSogyWgEMrf+eu/IGV/92YnVA1xzDBogIFc8XFvMlN8QwDrsWWsR+I2eMSiGD+P8znlsaA==";
};
};
- "@vercel/nft-0.27.2" = {
+ "@vercel/nft-0.27.3" = {
name = "_at_vercel_slash_nft";
packageName = "@vercel/nft";
- version = "0.27.2";
+ version = "0.27.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@vercel/nft/-/nft-0.27.2.tgz";
- sha512 = "7LeioS1yE5hwPpQfD3DdH04tuugKjo5KrJk3yK5kAI3Lh76iSsK/ezoFQfzuT08X3ZASQOd1y9ePjLNI9+TxTQ==";
+ url = "https://registry.npmjs.org/@vercel/nft/-/nft-0.27.3.tgz";
+ sha512 = "oySTdDSzUAFDXpsSLk9Q943o+/Yu/+TCFxnehpFQEf/3khi2stMpTHPVNwFdvZq/Z4Ky93lE+MGHpXCRpMkSCA==";
};
};
- "@vercel/node-3.1.7" = {
+ "@vercel/node-3.2.7" = {
name = "_at_vercel_slash_node";
packageName = "@vercel/node";
- version = "3.1.7";
+ version = "3.2.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@vercel/node/-/node-3.1.7.tgz";
- sha512 = "EYSHEt0Up70cOlawkSzb5CFHyHoOMuJG9Q/hWU+4zIpnXefZSanR/oaZMd+UFoaAKDVryBz35FVV7gNo6HxX9A==";
+ url = "https://registry.npmjs.org/@vercel/node/-/node-3.2.7.tgz";
+ sha512 = "/eWXgkkjBm1Es6oRmltw5m0SLT8tnOdlSKYpQhPfpJlWVzLb8h3cWhTS+cSsnn3gZ0c6w4XSjiZBbGKQJevxoQ==";
};
};
"@vercel/python-4.3.0" = {
@@ -11866,22 +11776,22 @@ let
sha512 = "tj6ffEh+ligmQoo/ONOg7DNX0VGKJt9FyswyOIIp6lZufs5oGzHAfan4+5QzF/2INxvXobN0aMYgcbFHJ81ZKg==";
};
};
- "@vercel/redwood-2.0.10" = {
+ "@vercel/redwood-2.1.3" = {
name = "_at_vercel_slash_redwood";
packageName = "@vercel/redwood";
- version = "2.0.10";
+ version = "2.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@vercel/redwood/-/redwood-2.0.10.tgz";
- sha512 = "vZmjOtiUQOdQHVIRrlPY/pSVuwn5GSuq5ihg530Rq51pYIHf0PSP/BnF6zventlG0bKe53MarxE+mmBUb0LDxw==";
+ url = "https://registry.npmjs.org/@vercel/redwood/-/redwood-2.1.3.tgz";
+ sha512 = "lpsdQSHS2hvSX29/rJNm4q38dVXKstS4MVg875KE6zyXpACwviXuet0Cadyv0E60w7f2B6Ra+nJMpwKz6oJ5xg==";
};
};
- "@vercel/remix-builder-2.1.7" = {
+ "@vercel/remix-builder-2.2.1" = {
name = "_at_vercel_slash_remix-builder";
packageName = "@vercel/remix-builder";
- version = "2.1.7";
+ version = "2.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@vercel/remix-builder/-/remix-builder-2.1.7.tgz";
- sha512 = "OGd7aod8wz3uMabGGzmDtNQaSz5+8ZJOmUzhMPxqHwmkTOYntIEPCXhAsi26kf+IuDP7Zj2Md7gUAJGsq5QNSg==";
+ url = "https://registry.npmjs.org/@vercel/remix-builder/-/remix-builder-2.2.1.tgz";
+ sha512 = "3mM8XNWEo5HmPv/FT2pseGk6MIHcRcLgNHwVQxWe+CSgEXt4QcNQYtwF6v9pb4HDTt09Y1rRkSED5HXvMO38/A==";
};
};
"@vercel/routing-utils-3.1.0" = {
@@ -11902,13 +11812,13 @@ let
sha512 = "UZYwlSEEfVnfzTmgkD+kxex9/gkZGt7unOWNyWFN7V/ZnZSsGBUgv6hXLnwejdRi3EztgRQEBd1kUKlXdIeC0Q==";
};
};
- "@vercel/static-build-2.5.11" = {
+ "@vercel/static-build-2.5.17" = {
name = "_at_vercel_slash_static-build";
packageName = "@vercel/static-build";
- version = "2.5.11";
+ version = "2.5.17";
src = fetchurl {
- url = "https://registry.npmjs.org/@vercel/static-build/-/static-build-2.5.11.tgz";
- sha512 = "CUZInKro8CqNH4ZyNccRSfy8cF4KBklIiGOwWVjjjVQLtIGdC55iVADIHAsCmA5yEJVsjenIi+943/JcR0bw2Q==";
+ url = "https://registry.npmjs.org/@vercel/static-build/-/static-build-2.5.17.tgz";
+ sha512 = "i7fp4wCUgNvZIv06qlQFtFhZJ5WZcwOyg7KmWWhLBsyx/U+LBzUKP80lWAedqB6xmZ7zvNnruGUArzJvI+DnjA==";
};
};
"@vercel/static-config-3.0.0" = {
@@ -11920,67 +11830,67 @@ let
sha512 = "2qtvcBJ1bGY0dYGYh3iM7yGKkk971FujLEDXzuW5wcZsPr1GSEjO/w2iSr3qve6nDDtBImsGoDEnus5FI4+fIw==";
};
};
- "@volar/kit-2.2.5" = {
+ "@volar/kit-2.4.0-alpha.18" = {
name = "_at_volar_slash_kit";
packageName = "@volar/kit";
- version = "2.2.5";
+ version = "2.4.0-alpha.18";
src = fetchurl {
- url = "https://registry.npmjs.org/@volar/kit/-/kit-2.2.5.tgz";
- sha512 = "Bmn0UCaT43xUGGRwcmFG9lKhiCCLjRT4ScSLLPn5C9ltUcSGnIFFDlbZZa1PreHYHq25/4zkXt9Ap32klAh17w==";
+ url = "https://registry.npmjs.org/@volar/kit/-/kit-2.4.0-alpha.18.tgz";
+ sha512 = "dZMSNhesh23lhd61ax2l04IgIcYofAjm8M+5BKAmX47ROweyc8RrrslszCFUJynlmXx6JS1PoHqvo8+E0aAYQQ==";
};
};
- "@volar/language-core-2.2.5" = {
+ "@volar/language-core-2.4.0-alpha.18" = {
name = "_at_volar_slash_language-core";
packageName = "@volar/language-core";
- version = "2.2.5";
+ version = "2.4.0-alpha.18";
src = fetchurl {
- url = "https://registry.npmjs.org/@volar/language-core/-/language-core-2.2.5.tgz";
- sha512 = "2htyAuxRrAgETmFeUhT4XLELk3LiEcqoW/B8YUXMF6BrGWLMwIR09MFaZYvrA2UhbdAeSyeQ726HaWSWkexUcQ==";
+ url = "https://registry.npmjs.org/@volar/language-core/-/language-core-2.4.0-alpha.18.tgz";
+ sha512 = "JAYeJvYQQROmVRtSBIczaPjP3DX4QW1fOqW1Ebs0d3Y3EwSNRglz03dSv0Dm61dzd0Yx3WgTW3hndDnTQqgmyg==";
};
};
- "@volar/language-server-2.2.5" = {
+ "@volar/language-server-2.4.0-alpha.18" = {
name = "_at_volar_slash_language-server";
packageName = "@volar/language-server";
- version = "2.2.5";
+ version = "2.4.0-alpha.18";
src = fetchurl {
- url = "https://registry.npmjs.org/@volar/language-server/-/language-server-2.2.5.tgz";
- sha512 = "PV/jkUkI+m72HTXwnY7hsGqLY3VNi96ZRoWFRzVC9QG/853bixxjveXPJIiydMJ9I739lO3kcj3hnGrF5Sm+HA==";
+ url = "https://registry.npmjs.org/@volar/language-server/-/language-server-2.4.0-alpha.18.tgz";
+ sha512 = "dciHEE/R5kzI0bY71QfkoCVQ3cQI6g9MHfA4oIP6UhnJy0CdleUalWSygOXoD3Nq7Yk6wn2BRrb1PP5MsadY/Q==";
};
};
- "@volar/language-service-2.2.5" = {
+ "@volar/language-service-2.4.0-alpha.18" = {
name = "_at_volar_slash_language-service";
packageName = "@volar/language-service";
- version = "2.2.5";
+ version = "2.4.0-alpha.18";
src = fetchurl {
- url = "https://registry.npmjs.org/@volar/language-service/-/language-service-2.2.5.tgz";
- sha512 = "a97e/0uCe+uSu23F4zvgvldqJtZe6jugQeEHWjTfhgOEO8+Be0t5CZNNVItQqmPyAsD8eElg0S/cP6uxvCmCSQ==";
+ url = "https://registry.npmjs.org/@volar/language-service/-/language-service-2.4.0-alpha.18.tgz";
+ sha512 = "EuetrtbEtudi9buinWAG5U3Jam5dY27zXd/7GYnx542kBwanWOBM8i4DAQd0z7M11fOxXgybxPA933uaSyaOog==";
};
};
- "@volar/snapshot-document-2.2.5" = {
+ "@volar/snapshot-document-2.4.0-alpha.18" = {
name = "_at_volar_slash_snapshot-document";
packageName = "@volar/snapshot-document";
- version = "2.2.5";
+ version = "2.4.0-alpha.18";
src = fetchurl {
- url = "https://registry.npmjs.org/@volar/snapshot-document/-/snapshot-document-2.2.5.tgz";
- sha512 = "MTOvWVKxM7ugKO3Amffkv2pND03fe2JtfygYaputqjVFML7YxtTXj8SPnI2pODLeSwOKzDYL6Q8r5j6Y5AgUzQ==";
+ url = "https://registry.npmjs.org/@volar/snapshot-document/-/snapshot-document-2.4.0-alpha.18.tgz";
+ sha512 = "JAeclEly/wnILhR4Pu9MpgBLInZJH49O1zoy8fU+pk5I+zpv7JIEby5z2UFAS60+sIDnxBdAGd7rZ5VibE70vg==";
};
};
- "@volar/source-map-2.2.5" = {
+ "@volar/source-map-2.4.0-alpha.18" = {
name = "_at_volar_slash_source-map";
packageName = "@volar/source-map";
- version = "2.2.5";
+ version = "2.4.0-alpha.18";
src = fetchurl {
- url = "https://registry.npmjs.org/@volar/source-map/-/source-map-2.2.5.tgz";
- sha512 = "wrOEIiZNf4E+PWB0AxyM4tfhkfldPsb3bxg8N6FHrxJH2ohar7aGu48e98bp3pR9HUA7P/pR9VrLmkTrgCCnWQ==";
+ url = "https://registry.npmjs.org/@volar/source-map/-/source-map-2.4.0-alpha.18.tgz";
+ sha512 = "MTeCV9MUwwsH0sNFiZwKtFrrVZUK6p8ioZs3xFzHc2cvDXHWlYN3bChdQtwKX+FY2HG6H3CfAu1pKijolzIQ8g==";
};
};
- "@volar/typescript-2.2.5" = {
+ "@volar/typescript-2.4.0-alpha.18" = {
name = "_at_volar_slash_typescript";
packageName = "@volar/typescript";
- version = "2.2.5";
+ version = "2.4.0-alpha.18";
src = fetchurl {
- url = "https://registry.npmjs.org/@volar/typescript/-/typescript-2.2.5.tgz";
- sha512 = "eSV/n75+ppfEVugMC/salZsI44nXDPAyL6+iTYCNLtiLHGJsnMv9GwiDMujrvAUj/aLQyqRJgYtXRoxop2clCw==";
+ url = "https://registry.npmjs.org/@volar/typescript/-/typescript-2.4.0-alpha.18.tgz";
+ sha512 = "sXh5Y8sqGUkgxpMWUGvRXggxYHAVxg0Pa1C42lQZuPDrW6vHJPR0VCK8Sr7WJsAW530HuNQT/ZIskmXtxjybMQ==";
};
};
"@vscode/emmet-helper-2.9.3" = {
@@ -11992,15 +11902,6 @@ let
sha512 = "rB39LHWWPQYYlYfpv9qCoZOVioPCftKXXqrsyqN1mTWZM6dTnONT63Db+03vgrBbHzJN45IrgS/AGxw9iiqfEw==";
};
};
- "@vscode/l10n-0.0.16" = {
- name = "_at_vscode_slash_l10n";
- packageName = "@vscode/l10n";
- version = "0.0.16";
- src = fetchurl {
- url = "https://registry.npmjs.org/@vscode/l10n/-/l10n-0.0.16.tgz";
- sha512 = "JT5CvrIYYCrmB+dCana8sUqJEcGB1ZDXNLMQ2+42bW995WmNoenijWMUdZfwmuQUTQcEVVIa2OecZzTYWUW9Cg==";
- };
- };
"@vscode/l10n-0.0.18" = {
name = "_at_vscode_slash_l10n";
packageName = "@vscode/l10n";
@@ -12010,22 +11911,22 @@ let
sha512 = "KYSIHVmslkaCDyw013pphY+d7x1qV8IZupYfeIfzNA+nsaWHbn5uPuQRvdRFsa9zFzGeudPuoGoZ1Op4jrJXIQ==";
};
};
- "@vscode/test-electron-2.4.0" = {
+ "@vscode/test-electron-2.4.1" = {
name = "_at_vscode_slash_test-electron";
packageName = "@vscode/test-electron";
- version = "2.4.0";
+ version = "2.4.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@vscode/test-electron/-/test-electron-2.4.0.tgz";
- sha512 = "yojuDFEjohx6Jb+x949JRNtSn6Wk2FAh4MldLE3ck9cfvCqzwxF32QsNy1T9Oe4oT+ZfFcg0uPUCajJzOmPlTA==";
+ url = "https://registry.npmjs.org/@vscode/test-electron/-/test-electron-2.4.1.tgz";
+ sha512 = "Gc6EdaLANdktQ1t+zozoBVRynfIsMKMc94Svu1QreOBC8y76x4tvaK32TljrLi1LI2+PK58sDVbL7ALdqf3VRQ==";
};
};
- "@vscode/vsce-2.27.0" = {
+ "@vscode/vsce-2.31.1" = {
name = "_at_vscode_slash_vsce";
packageName = "@vscode/vsce";
- version = "2.27.0";
+ version = "2.31.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@vscode/vsce/-/vsce-2.27.0.tgz";
- sha512 = "FFUMBVSyyjjJpWszwqk7d4U3YllY8FdWslbUDMRki1x4ZjA3Z0hmRMfypWrjP9sptbSR9nyPFU4uqjhy2qRB/w==";
+ url = "https://registry.npmjs.org/@vscode/vsce/-/vsce-2.31.1.tgz";
+ sha512 = "LwEQFKXV21C4/brvGPH/9+7ZOUM5cbK7oJ4fVmy0YG75NIy1HV8eMSoBZrl+u23NxpAhor62Cu1aI+JFtCtjSg==";
};
};
"@vscode/vsce-sign-2.0.4" = {
@@ -12118,49 +12019,49 @@ let
sha512 = "pAiRN6qSAhDM5SVOIxgx+2xnoVUePHbRNC7OD2aOR3WltTKxxF25OfpK8h8UQ7A0BuRkSgREbB59DBlFk4iAeg==";
};
};
- "@vue/compiler-core-3.4.29" = {
+ "@vue/compiler-core-3.4.34" = {
name = "_at_vue_slash_compiler-core";
packageName = "@vue/compiler-core";
- version = "3.4.29";
+ version = "3.4.34";
src = fetchurl {
- url = "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.4.29.tgz";
- sha512 = "TFKiRkKKsRCKvg/jTSSKK7mYLJEQdUiUfykbG49rubC9SfDyvT2JrzTReopWlz2MxqeLyxh9UZhvxEIBgAhtrg==";
+ url = "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.4.34.tgz";
+ sha512 = "Z0izUf32+wAnQewjHu+pQf1yw00EGOmevl1kE+ljjjMe7oEfpQ+BI3/JNK7yMB4IrUsqLDmPecUrpj3mCP+yJQ==";
};
};
- "@vue/compiler-dom-3.4.29" = {
+ "@vue/compiler-dom-3.4.34" = {
name = "_at_vue_slash_compiler-dom";
packageName = "@vue/compiler-dom";
- version = "3.4.29";
+ version = "3.4.34";
src = fetchurl {
- url = "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.4.29.tgz";
- sha512 = "A6+iZ2fKIEGnfPJejdB7b1FlJzgiD+Y/sxxKwJWg1EbJu6ZPgzaPQQ51ESGNv0CP6jm6Z7/pO6Ia8Ze6IKrX7w==";
+ url = "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.4.34.tgz";
+ sha512 = "3PUOTS1h5cskdOJMExCu2TInXuM0j60DRPpSCJDqOCupCfUZCJoyQmKtRmA8EgDNZ5kcEE7vketamRZfrEuVDw==";
};
};
- "@vue/compiler-sfc-3.4.29" = {
+ "@vue/compiler-sfc-3.4.34" = {
name = "_at_vue_slash_compiler-sfc";
packageName = "@vue/compiler-sfc";
- version = "3.4.29";
+ version = "3.4.34";
src = fetchurl {
- url = "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.4.29.tgz";
- sha512 = "zygDcEtn8ZimDlrEQyLUovoWgKQic6aEQqRXce2WXBvSeHbEbcAsXyCk9oG33ZkyWH4sl9D3tkYc1idoOkdqZQ==";
+ url = "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.4.34.tgz";
+ sha512 = "x6lm0UrM03jjDXTPZgD9Ad8bIVD1ifWNit2EaWQIZB5CULr46+FbLQ5RpK7AXtDHGjx9rmvC7QRCTjsiGkAwRw==";
};
};
- "@vue/compiler-ssr-3.4.29" = {
+ "@vue/compiler-ssr-3.4.34" = {
name = "_at_vue_slash_compiler-ssr";
packageName = "@vue/compiler-ssr";
- version = "3.4.29";
+ version = "3.4.34";
src = fetchurl {
- url = "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.4.29.tgz";
- sha512 = "rFbwCmxJ16tDp3N8XCx5xSQzjhidYjXllvEcqX/lopkoznlNPz3jyy0WGJCyhAaVQK677WWFt3YO/WUEkMMUFQ==";
+ url = "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.4.34.tgz";
+ sha512 = "8TDBcLaTrFm5rnF+Qm4BlliaopJgqJ28Nsrc80qazynm5aJO+Emu7y0RWw34L8dNnTRdcVBpWzJxhGYzsoVu4g==";
};
};
- "@vue/shared-3.4.29" = {
+ "@vue/shared-3.4.34" = {
name = "_at_vue_slash_shared";
packageName = "@vue/shared";
- version = "3.4.29";
+ version = "3.4.34";
src = fetchurl {
- url = "https://registry.npmjs.org/@vue/shared/-/shared-3.4.29.tgz";
- sha512 = "hQ2gAQcBO/CDpC82DCrinJNgOHI2v+FA7BDW4lMSPeBpQ7sRe2OLHWe5cph1s7D8DUQAwRt18dBDfJJ220APEA==";
+ url = "https://registry.npmjs.org/@vue/shared/-/shared-3.4.34.tgz";
+ sha512 = "x5LmiRLpRsd9KTjAB8MPKf0CDPMcuItjP0gbNqFCIgL1I8iYp4zglhj9w9FPCdIbHG2M91RVeIbArFfFTz9I3A==";
};
};
"@webassemblyjs/ast-1.11.1" = {
@@ -12640,13 +12541,13 @@ let
sha512 = "hqoz6StCW+AjV/3N+vg0s1ah82ptdVUb9nH2ttj3UbySOXUvytWw2yqy8c1cKzyRk6mDD00G47qS3fZI9/gMjg==";
};
};
- "@whatwg-node/node-fetch-0.5.11" = {
+ "@whatwg-node/node-fetch-0.5.14" = {
name = "_at_whatwg-node_slash_node-fetch";
packageName = "@whatwg-node/node-fetch";
- version = "0.5.11";
+ version = "0.5.14";
src = fetchurl {
- url = "https://registry.npmjs.org/@whatwg-node/node-fetch/-/node-fetch-0.5.11.tgz";
- sha512 = "LS8tSomZa3YHnntpWt3PP43iFEEl6YeIsvDakczHBKlay5LdkXFr8w7v8H6akpG5nRrzydyB0k1iE2eoL6aKIQ==";
+ url = "https://registry.npmjs.org/@whatwg-node/node-fetch/-/node-fetch-0.5.14.tgz";
+ sha512 = "J/IQ0Hrb56sMPb3G42Wzrm9fu8+bHnb8lk7DkJ0XX7JCkSxvPEn1MmkLy7zntdbXs1gohYW42mDck0LzcjrMig==";
};
};
"@xmldom/xmldom-0.7.13" = {
@@ -13180,22 +13081,22 @@ let
sha512 = "nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==";
};
};
- "acorn-8.12.0" = {
+ "acorn-8.11.3" = {
name = "acorn";
packageName = "acorn";
- version = "8.12.0";
+ version = "8.11.3";
src = fetchurl {
- url = "https://registry.npmjs.org/acorn/-/acorn-8.12.0.tgz";
- sha512 = "RTvkC4w+KNXrM39/lWCUaG0IbRkWdCv7W/IOW9oU6SawyxulvkQy5HQPVTKxEjczcUvapcrw3cFx/60VN/NRNw==";
+ url = "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz";
+ sha512 = "Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==";
};
};
- "acorn-8.8.2" = {
+ "acorn-8.12.1" = {
name = "acorn";
packageName = "acorn";
- version = "8.8.2";
+ version = "8.12.1";
src = fetchurl {
- url = "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz";
- sha512 = "xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==";
+ url = "https://registry.npmjs.org/acorn/-/acorn-8.12.1.tgz";
+ sha512 = "tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==";
};
};
"acorn-globals-4.3.4" = {
@@ -13297,13 +13198,13 @@ let
sha512 = "OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==";
};
};
- "acorn-walk-8.2.0" = {
+ "acorn-walk-8.3.2" = {
name = "acorn-walk";
packageName = "acorn-walk";
- version = "8.2.0";
+ version = "8.3.2";
src = fetchurl {
- url = "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz";
- sha512 = "k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==";
+ url = "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.2.tgz";
+ sha512 = "cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==";
};
};
"acorn-walk-8.3.3" = {
@@ -13495,6 +13396,15 @@ let
sha512 = "PRA911Blj99jR5RMeTunVbNXMF6Lp4vZXnk5GQjcnUWUTsrXtekg/pnmFFI2u/I36Y/2bITGS30GZCXei6uNkA==";
};
};
+ "ajv-8.14.0" = {
+ name = "ajv";
+ packageName = "ajv";
+ version = "8.14.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ajv/-/ajv-8.14.0.tgz";
+ sha512 = "oYs1UUtO97ZO2lJ4bwnWeQW8/zvOIQLGKcvPTsWmvc2SYgBb+upuNS5NxoLaMU4h8Ju3Nbj6Cq8mD2LQoqVKFA==";
+ };
+ };
"ajv-8.16.0" = {
name = "ajv";
packageName = "ajv";
@@ -13504,6 +13414,15 @@ let
sha512 = "F0twR8U1ZU67JIEtekUcLkXkoO5mMMmgGD8sK/xUFzJ805jxHQl92hImFAqqXMyMYjSPOyUPAwHYhB72g5sTXw==";
};
};
+ "ajv-8.17.1" = {
+ name = "ajv";
+ packageName = "ajv";
+ version = "8.17.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz";
+ sha512 = "B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==";
+ };
+ };
"ajv-8.6.3" = {
name = "ajv";
packageName = "ajv";
@@ -13630,15 +13549,6 @@ let
sha512 = "IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==";
};
};
- "ansi-colors-4.1.1" = {
- name = "ansi-colors";
- packageName = "ansi-colors";
- version = "4.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz";
- sha512 = "JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==";
- };
- };
"ansi-colors-4.1.3" = {
name = "ansi-colors";
packageName = "ansi-colors";
@@ -13972,13 +13882,13 @@ let
sha512 = "JY8+kTEkjbA+kAVNWDtpfW2lqsrDALfDXuxOs74KLPu2y13fy/9WB52V4LfYVTVcW1/jYOXjTxNS2gPZIDh1iw==";
};
};
- "applicationinsights-native-metrics-0.0.10" = {
+ "applicationinsights-native-metrics-0.0.11" = {
name = "applicationinsights-native-metrics";
packageName = "applicationinsights-native-metrics";
- version = "0.0.10";
+ version = "0.0.11";
src = fetchurl {
- url = "https://registry.npmjs.org/applicationinsights-native-metrics/-/applicationinsights-native-metrics-0.0.10.tgz";
- sha512 = "uruIWFcc/sEowcRvNz0mKMWMsPs2trSzegjCtjTqsSBk8EbnctTNMJtPdye7w46say+BwosNHRW3zYiBmY8CIg==";
+ url = "https://registry.npmjs.org/applicationinsights-native-metrics/-/applicationinsights-native-metrics-0.0.11.tgz";
+ sha512 = "NxzsyeFj5iwhSEzkHluIoNYb1DcMtlttQZjJCJ8QQroZ5H9nCDS77Y9BpfphR5tqMcfNNjuQuiRcdPhQk75QRw==";
};
};
"aproba-1.2.0" = {
@@ -14440,15 +14350,6 @@ let
sha512 = "tLkvA81vQG/XqE2mjDkGQHoOINtMHtysSnemrmoGe6PydDPMRbVugqyk4A6V/WDWEfm3l+0d8anA9r8cv/5Jaw==";
};
};
- "as-table-1.0.55" = {
- name = "as-table";
- packageName = "as-table";
- version = "1.0.55";
- src = fetchurl {
- url = "https://registry.npmjs.org/as-table/-/as-table-1.0.55.tgz";
- sha512 = "xvsWESUJn0JN421Xb9MQw6AsMHRCUknCe0Wjlxvjud80mU4E6hQf1A6NzQKcYNmYw62MfzEtXc+badstZP3JpQ==";
- };
- };
"asap-2.0.6" = {
name = "asap";
packageName = "asap";
@@ -14512,13 +14413,13 @@ let
sha512 = "zzw1uCAgLbsKwBfFc8CX78DDg+xZeBksSO3vwVIDDN5i94eOrPsSSyiVhmsSABFDM/OcpE2aagCat9dnWQLG1A==";
};
};
- "assert-never-1.2.1" = {
+ "assert-never-1.3.0" = {
name = "assert-never";
packageName = "assert-never";
- version = "1.2.1";
+ version = "1.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/assert-never/-/assert-never-1.2.1.tgz";
- sha512 = "TaTivMB6pYI1kXwrFlEhLeGfOqoDNdTxjCdwRfFFkEA30Eu+k48W34nlok2EYWJfFFzqaEmichdNM7th6M5HNw==";
+ url = "https://registry.npmjs.org/assert-never/-/assert-never-1.3.0.tgz";
+ sha512 = "9Z3vxQ+berkL/JJo0dK+EY3Lp0s3NtSnP3VCLsh5HDcZPrh0M+KQRK5sWhUeyPPH+/RCxZqOxLMR+YC6vlviEQ==";
};
};
"assert-plus-0.1.2" = {
@@ -14782,15 +14683,6 @@ let
sha512 = "gpuo6xOyF4D5DE5WvyqZdPA3NGhiT6Qf07l7DCB0wwDEsLvDIbCr6j9S5aj5Ch96dLace5tXVzWBZkxU/c5ohw==";
};
};
- "async-mutex-0.4.0" = {
- name = "async-mutex";
- packageName = "async-mutex";
- version = "0.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/async-mutex/-/async-mutex-0.4.0.tgz";
- sha512 = "eJFZ1YhRR8UN8eBLoNzcDPcy/jqjsg6I1AP+KvWQX80BqOSW1oJPJXDylPUEeMr2ZQvHgnQ//Lp6f3RQ1zI7HA==";
- };
- };
"async-mutex-0.4.1" = {
name = "async-mutex";
packageName = "async-mutex";
@@ -14800,6 +14692,15 @@ let
sha512 = "WfoBo4E/TbCX1G95XTjbWTE3X2XLG0m1Xbv2cwOtuPdyH9CZvnaA5nCt1ucjaKEgW2A5IF71hxrRhr83Je5xjA==";
};
};
+ "async-mutex-0.5.0" = {
+ name = "async-mutex";
+ packageName = "async-mutex";
+ version = "0.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/async-mutex/-/async-mutex-0.5.0.tgz";
+ sha512 = "1A94B18jkJ3DYq284ohPxoXbfTA5HsQ7/Mf4DEhcyLx3Bz27Rh59iScbB6EPiP+B+joue6YCxcMXSbFC1tZKwA==";
+ };
+ };
"async-sema-3.1.1" = {
name = "async-sema";
packageName = "async-sema";
@@ -15007,13 +14908,13 @@ let
sha512 = "2A8QhOMrbomlDuiLeK9XibIBzuHeRcqqNOHp0Cyp5EoJ1IFDh+XZH3A6BkXtv0K4gFGCI0Y4BM7B1wOEi0Rmgw==";
};
};
- "axobject-query-4.0.0" = {
+ "axobject-query-4.1.0" = {
name = "axobject-query";
packageName = "axobject-query";
- version = "4.0.0";
+ version = "4.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/axobject-query/-/axobject-query-4.0.0.tgz";
- sha512 = "+60uv1hiVFhHZeO+Lz0RYzsVHy5Wr1ayX0mwda9KPDVLNJgZ1T9Ny7VmFbLDzxsH0D87I86vgj3gFrjTJUYznw==";
+ url = "https://registry.npmjs.org/axobject-query/-/axobject-query-4.1.0.tgz";
+ sha512 = "qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==";
};
};
"azure-devops-node-api-12.5.0" = {
@@ -15043,15 +14944,6 @@ let
sha512 = "XqYMR2dfdGMW+hd0IUZ2PwK+fGeFkOxZJ0wY+JaQAHzt1Zx8LcvpiZD2NiGkEG8qx0CfkAOr5xt76d1e8vG90g==";
};
};
- "babel-core-7.0.0-bridge.0" = {
- name = "babel-core";
- packageName = "babel-core";
- version = "7.0.0-bridge.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/babel-core/-/babel-core-7.0.0-bridge.0.tgz";
- sha512 = "poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==";
- };
- };
"babel-loader-8.3.0" = {
name = "babel-loader";
packageName = "babel-loader";
@@ -15070,6 +14962,15 @@ let
sha512 = "+qeGXSbHZwinZzO6R3wP+6XDKup83Pgg2B3TQt2zwfDdgC7NqT9Kd3ws7iqk53zAO/8iOIRU6VUyUzt2LDE3Eg==";
};
};
+ "babel-plugin-macros-3.1.0" = {
+ name = "babel-plugin-macros";
+ packageName = "babel-plugin-macros";
+ version = "3.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz";
+ sha512 = "Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==";
+ };
+ };
"babel-plugin-module-resolver-4.1.0" = {
name = "babel-plugin-module-resolver";
packageName = "babel-plugin-module-resolver";
@@ -15250,13 +15151,13 @@ let
sha512 = "kwDPIFCGx0NZHog36dj+tHiwP4QMzsZ3AgMViUBKI0+V5n4U0ufTCUMhnQ04diaRI8EX/QcPfql7zlhZ7j4zgg==";
};
};
- "base-x-3.0.9" = {
+ "base-x-3.0.10" = {
name = "base-x";
packageName = "base-x";
- version = "3.0.9";
+ version = "3.0.10";
src = fetchurl {
- url = "https://registry.npmjs.org/base-x/-/base-x-3.0.9.tgz";
- sha512 = "H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ==";
+ url = "https://registry.npmjs.org/base-x/-/base-x-3.0.10.tgz";
+ sha512 = "7d0s06rR9rYaIWHkpfLIFICM/tkSVdoPC9qYAQRpxn9DdKNWNsKC0uk++akckyLq16Tx2WIinnZ6WRriAt6njQ==";
};
};
"base64-arraybuffer-0.1.2" = {
@@ -15376,15 +15277,6 @@ let
sha512 = "x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==";
};
};
- "bcrypt-5.1.0" = {
- name = "bcrypt";
- packageName = "bcrypt";
- version = "5.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/bcrypt/-/bcrypt-5.1.0.tgz";
- sha512 = "RHBS7HI5N5tEnGTmtR/pppX0mmDSBpQ4aCBsj7CEQfYXDcO74A8sIBYcJMuCsis2E81zDxeENYhv66oZwLiA+Q==";
- };
- };
"bcrypt-nodejs-0.0.3" = {
name = "bcrypt-nodejs";
packageName = "bcrypt-nodejs";
@@ -15556,6 +15448,15 @@ let
sha512 = "vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==";
};
};
+ "bin-links-4.0.4" = {
+ name = "bin-links";
+ packageName = "bin-links";
+ version = "4.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/bin-links/-/bin-links-4.0.4.tgz";
+ sha512 = "cMtq4W5ZsEwcutJrVId+a/tjt8GSbS+h0oNkdl6+6rBuEv8Ot33Bevj5KPm40t309zuhVic8NjpuL42QCiJWWA==";
+ };
+ };
"binary-0.3.0" = {
name = "binary";
packageName = "binary";
@@ -15673,22 +15574,22 @@ let
sha512 = "VyLcUjVMEOdSpHaCG/7odvCdLbAB1y3l9A2V6WIje24uV7FkJPrQrH/RrlFmKxP89pFVDEnE+YlHaFujlFIZsg==";
};
};
- "bittorrent-protocol-4.1.12" = {
+ "bittorrent-protocol-4.1.13" = {
name = "bittorrent-protocol";
packageName = "bittorrent-protocol";
- version = "4.1.12";
+ version = "4.1.13";
src = fetchurl {
- url = "https://registry.npmjs.org/bittorrent-protocol/-/bittorrent-protocol-4.1.12.tgz";
- sha512 = "peyUDP5NQaiPSau24jCpPhLfDFCCK1DUE0N5xlJSPVIkgQmsVLi62N/Lm++pUNrBenfnhf6WKQo0nyN6x5dufQ==";
+ url = "https://registry.npmjs.org/bittorrent-protocol/-/bittorrent-protocol-4.1.13.tgz";
+ sha512 = "tUF8HBy/CwexDgEiFmmgWx7RCXC02gc72ZEoFxdRnqraZBUVFN611hYLfB/zArlhFeaUErfJZOa8CWtrDeXQsA==";
};
};
- "bittorrent-tracker-11.1.0" = {
+ "bittorrent-tracker-11.1.1" = {
name = "bittorrent-tracker";
packageName = "bittorrent-tracker";
- version = "11.1.0";
+ version = "11.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/bittorrent-tracker/-/bittorrent-tracker-11.1.0.tgz";
- sha512 = "WKIIy1wVxFiKro5noDldW8W4C4xCjl8gHvZcG0LWM40J6VZOf7gXdrdB2/GI55+JAgrph8NGsZUeusbyzlbiQQ==";
+ url = "https://registry.npmjs.org/bittorrent-tracker/-/bittorrent-tracker-11.1.1.tgz";
+ sha512 = "j5IMK80wWB44S/3TE+HwIRLYBmY00KvIoI/s7e37mVe5raBNPVTxXgXlOcvECMJvjhk1igta31d+JHTbM8c51A==";
};
};
"bittorrent-tracker-7.7.0" = {
@@ -15700,15 +15601,6 @@ let
sha512 = "YFgPTVRhUMncZr8tM3ige7gnViMGhKoGF23qaiISRG8xtYebTGHrMSMXsTXo6O1KbtdEI+4jzvGY1K/wdT9GUA==";
};
};
- "bitwise-xor-0.0.0" = {
- name = "bitwise-xor";
- packageName = "bitwise-xor";
- version = "0.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/bitwise-xor/-/bitwise-xor-0.0.0.tgz";
- sha512 = "3eOkZMBO04dRBn7551o6+IX9Ua7V+B/IubS7sffoa/VC3jdBM4YbuD+LjUNFojY7H+gptMUdTaQgHWTce4L3kw==";
- };
- };
"bl-1.2.3" = {
name = "bl";
packageName = "bl";
@@ -15736,13 +15628,13 @@ let
sha512 = "tv1ZJHLfTDnXE6tMHv73YgSJaWR2AFuPwMntBe7XL/GBFHnT0CLnsHMogfk5+GzCDC5ZWarSCYaIGATZt9dNsQ==";
};
};
- "blake3-wasm-2.1.5" = {
- name = "blake3-wasm";
- packageName = "blake3-wasm";
- version = "2.1.5";
+ "bl-6.0.14" = {
+ name = "bl";
+ packageName = "bl";
+ version = "6.0.14";
src = fetchurl {
- url = "https://registry.npmjs.org/blake3-wasm/-/blake3-wasm-2.1.5.tgz";
- sha512 = "F1+K8EbfOZE49dtoPtmxUQrpXaBIl3ICvasLh+nJta0xkz+9kF/7uet9fLnwKqhDrmj6g+6K3Tw9yQPUg2ka5g==";
+ url = "https://registry.npmjs.org/bl/-/bl-6.0.14.tgz";
+ sha512 = "TJfbvGdL7KFGxTsEbsED7avqpFdY56q9IW0/aiytyheJzxST/+Io6cx/4Qx0K2/u0BPRDs65mjaQzYvMZeNocQ==";
};
};
"blob-0.0.2" = {
@@ -15898,15 +15790,6 @@ let
sha512 = "SAAwOxgoCKMGs9uUAUFHygfLAyaniaoun6I8mFY9pRAJL9+Kec34aU+oIjDhTycub1jozEfEwx1W1IuOYxVSFw==";
};
};
- "body-parser-1.20.0" = {
- name = "body-parser";
- packageName = "body-parser";
- version = "1.20.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/body-parser/-/body-parser-1.20.0.tgz";
- sha512 = "DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg==";
- };
- };
"body-parser-1.20.2" = {
name = "body-parser";
packageName = "body-parser";
@@ -15943,15 +15826,6 @@ let
sha512 = "JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==";
};
};
- "boolean-3.2.0" = {
- name = "boolean";
- packageName = "boolean";
- version = "3.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/boolean/-/boolean-3.2.0.tgz";
- sha512 = "d0II/GO9uf9lfUHH2BQsjxzRJZBdsjgsBiW4BvhWk/3qoKwQFjIDVN19PfX8F2D/r9PCMTtLWjYVCFrpeYUzsw==";
- };
- };
"bower-1.8.14" = {
name = "bower";
packageName = "bower";
@@ -16285,13 +16159,13 @@ let
sha512 = "Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==";
};
};
- "browserslist-4.23.1" = {
+ "browserslist-4.23.2" = {
name = "browserslist";
packageName = "browserslist";
- version = "4.23.1";
+ version = "4.23.2";
src = fetchurl {
- url = "https://registry.npmjs.org/browserslist/-/browserslist-4.23.1.tgz";
- sha512 = "TUfofFo/KsK/bWZ9TWQ5O26tsWW4Uhmt8IYklbnUa70udB6P2wA7w7o4PY4muaEPBQaAX+CEnmmIA41NVHtPVw==";
+ url = "https://registry.npmjs.org/browserslist/-/browserslist-4.23.2.tgz";
+ sha512 = "qkqSyistMYdxAcw+CzbZwlBy8AGmS/eEWs+sEV5TnLRGDOL+C5M2EnH6tlZyg0YoAxGJAFKh61En9BR941GnHA==";
};
};
"brq-0.1.10" = {
@@ -16627,15 +16501,6 @@ let
sha512 = "uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ==";
};
};
- "builtins-5.1.0" = {
- name = "builtins";
- packageName = "builtins";
- version = "5.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/builtins/-/builtins-5.1.0.tgz";
- sha512 = "SW9lzGTLvWTP1AY8xeAMZimqDrIaSdLQUcVr9DMef51niJ022Ri87SwRRKYm4A6iHfkPaiVUu/Duw2Wc4J7kKg==";
- };
- };
"bundle-name-4.1.0" = {
name = "bundle-name";
packageName = "bundle-name";
@@ -16762,22 +16627,13 @@ let
sha512 = "/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ==";
};
};
- "cacache-17.1.4" = {
+ "cacache-18.0.4" = {
name = "cacache";
packageName = "cacache";
- version = "17.1.4";
+ version = "18.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/cacache/-/cacache-17.1.4.tgz";
- sha512 = "/aJwG2l3ZMJ1xNAnqbMpA40of9dj/pIH3QfiuQSqjfPJF747VR0J/bHn+/KdNnHKc6XQcWt/AfRSBft82W1d2A==";
- };
- };
- "cacache-18.0.3" = {
- name = "cacache";
- packageName = "cacache";
- version = "18.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/cacache/-/cacache-18.0.3.tgz";
- sha512 = "qXCd4rh6I07cnDqh8V48/94Tc/WSfj+o3Gn6NZ0aZovS255bUx8O13uKxRFd2eWG0xgsco7+YItQNPaa5E85hg==";
+ url = "https://registry.npmjs.org/cacache/-/cacache-18.0.4.tgz";
+ sha512 = "B+L5iIa9mgcjLbliir2th36yEwPftrzteHYujzsx3dFP/31GCHcIeS8f5MGd80odLOjaOvSpU3EEAmRQptkxLQ==";
};
};
"cache-base-1.0.1" = {
@@ -17077,13 +16933,13 @@ let
sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==";
};
};
- "caniuse-lite-1.0.30001634" = {
+ "caniuse-lite-1.0.30001643" = {
name = "caniuse-lite";
packageName = "caniuse-lite";
- version = "1.0.30001634";
+ version = "1.0.30001643";
src = fetchurl {
- url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001634.tgz";
- sha512 = "fbBYXQ9q3+yp1q1gBk86tOFs4pyn/yxFm5ZNP18OXJDfA3txImOY9PhfxVggZ4vRHDqoU8NrKU81eN0OtzOgRA==";
+ url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001643.tgz";
+ sha512 = "ERgWGNleEilSrHM6iUz/zJNSQTP8Mr21wDWpdgvRwcTXGAq6jMtOUPP4dqFPTdKqZ2wKTdtB+uucZ3MRpAUSmg==";
};
};
"canvas-2.11.2" = {
@@ -17095,15 +16951,6 @@ let
sha512 = "ItanGBMrmRV7Py2Z+Xhs7cT+FNt5K0vPL4p9EZ/UX/Mu7hFbkxSjKF2KVtPwX7UYWp7dRKnrTvReflgrItJbdw==";
};
};
- "capnp-ts-0.7.0" = {
- name = "capnp-ts";
- packageName = "capnp-ts";
- version = "0.7.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/capnp-ts/-/capnp-ts-0.7.0.tgz";
- sha512 = "XKxXAC3HVPv7r674zP0VC3RTXz+/JKhfyw94ljvF80yynK6VkTnqE3jMuN8b3dUVmmc43TjyxjW4KTsmB3c86g==";
- };
- };
"capture-stack-trace-1.0.2" = {
name = "capture-stack-trace";
packageName = "capture-stack-trace";
@@ -17176,13 +17023,13 @@ let
sha512 = "eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==";
};
};
- "cdk8s-2.68.79" = {
+ "cdk8s-2.68.87" = {
name = "cdk8s";
packageName = "cdk8s";
- version = "2.68.79";
+ version = "2.68.87";
src = fetchurl {
- url = "https://registry.npmjs.org/cdk8s/-/cdk8s-2.68.79.tgz";
- sha512 = "aXYFGZU6FflDDz/Ywu2PJ/FHN2mLQbdbQjmzHjKypOk8P99iUcDq3rfWAUxAQGeErQlbyPCilKFfVEa1qqrRwg==";
+ url = "https://registry.npmjs.org/cdk8s/-/cdk8s-2.68.87.tgz";
+ sha512 = "bJ+sT8q8uS+Y8qFqgZFpGZwcCQB6cx4A76iaKk+Xsh/HherhZ4x40NyATjR4BerljueC2JR0Tq9ZSahyWaZxQQ==";
};
};
"cdk8s-plus-25-2.22.79" = {
@@ -17194,13 +17041,13 @@ let
sha512 = "QSxCBAbLvDJvC3lqt7lO2x8Il84kCsrwIdfAVFxUiwh4wHQxi18ENI9JI16tEhS/2gxv1YyeUNBM1ucH6q9oJA==";
};
};
- "cdktf-0.20.7" = {
+ "cdktf-0.20.8" = {
name = "cdktf";
packageName = "cdktf";
- version = "0.20.7";
+ version = "0.20.8";
src = fetchurl {
- url = "https://registry.npmjs.org/cdktf/-/cdktf-0.20.7.tgz";
- sha512 = "7za8QQYM1G0/6JUCYY+5smwNfNfbiZVPCMD7SeX2rTYmOLaGEkHZtMvuUTEKSqsE56fKudnfVd2J2edz2CETFg==";
+ url = "https://registry.npmjs.org/cdktf/-/cdktf-0.20.8.tgz";
+ sha512 = "O4O5h0b1E6scc/tqq9EUIQGDbPmdrCQpdkPdbDtUHHzhZGtmFpIMc5MgP1SgB+EzAutnG2oUDefjCqWMnhDe9A==";
};
};
"center-align-0.1.3" = {
@@ -17212,6 +17059,15 @@ let
sha512 = "Baz3aNe2gd2LP2qk5U+sDk/m4oSuwSDcBfayTCTBoWpfIGO5XFxPmjILQII4NGiZjD6DoDI6kf7gKaxkf7s3VQ==";
};
};
+ "centra-2.7.0" = {
+ name = "centra";
+ packageName = "centra";
+ version = "2.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/centra/-/centra-2.7.0.tgz";
+ sha512 = "PbFMgMSrmgx6uxCdm57RUos9Tc3fclMvhLSATYN39XsDV29B89zZ3KA89jmY0vwSGazyU+uerqwa6t+KaodPcg==";
+ };
+ };
"chainsaw-0.1.0" = {
name = "chainsaw";
packageName = "chainsaw";
@@ -17527,15 +17383,6 @@ let
sha512 = "4QYCEWOcK3OJrxwvyyAOxFuhpvOVCYkr33LPfFNBjAD/w3sEzWsp2BUOkI4l9bHvWioAd0rc6NlHUOEaWkTeqg==";
};
};
- "chokidar-3.5.3" = {
- name = "chokidar";
- packageName = "chokidar";
- version = "3.5.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz";
- sha512 = "Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==";
- };
- };
"chokidar-3.6.0" = {
name = "chokidar";
packageName = "chokidar";
@@ -17563,6 +17410,15 @@ let
sha512 = "bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==";
};
};
+ "chownr-3.0.0" = {
+ name = "chownr";
+ packageName = "chownr";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/chownr/-/chownr-3.0.0.tgz";
+ sha512 = "+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==";
+ };
+ };
"chroma-js-2.4.2" = {
name = "chroma-js";
packageName = "chroma-js";
@@ -17608,13 +17464,13 @@ let
sha512 = "rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==";
};
};
- "chromium-bidi-0.5.23" = {
+ "chromium-bidi-0.6.2" = {
name = "chromium-bidi";
packageName = "chromium-bidi";
- version = "0.5.23";
+ version = "0.6.2";
src = fetchurl {
- url = "https://registry.npmjs.org/chromium-bidi/-/chromium-bidi-0.5.23.tgz";
- sha512 = "1o/gLU9wDqbN5nL2MtfjykjOuighGXc3/hnWueO1haiEoFgX8h5vbvcA4tgdQfjw1mkZ1OEF4x/+HVeqEX6NoA==";
+ url = "https://registry.npmjs.org/chromium-bidi/-/chromium-bidi-0.6.2.tgz";
+ sha512 = "4WVBa6ijmUTVr9cZD4eicQD8Mdy/HCX3bzEIYYpmk0glqYLoWH+LqQEvV9RpDRzoQSbY1KJHloYXbDMXMbDPhg==";
};
};
"chunk-store-iterator-1.0.3" = {
@@ -17716,15 +17572,6 @@ let
sha512 = "qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==";
};
};
- "clean-css-3.4.28" = {
- name = "clean-css";
- packageName = "clean-css";
- version = "3.4.28";
- src = fetchurl {
- url = "https://registry.npmjs.org/clean-css/-/clean-css-3.4.28.tgz";
- sha512 = "aTWyttSdI2mYi07kWqHi24NUU9YlELFKGOAgFzZjDN1064DMAOy2FBuoyGmkKRlXkbpXd0EVHmiVkbKhKoirTw==";
- };
- };
"clean-css-4.2.4" = {
name = "clean-css";
packageName = "clean-css";
@@ -18229,13 +18076,13 @@ let
sha512 = "A5C0Cyf2H8sKsHqX0tvIWRXw5/PK++3Dc0lDbsugr90nOECLLuSPahVQBG8pgmgiXgm/TzBWMqI2rWdZwHduAw==";
};
};
- "cmd-shim-6.0.1" = {
+ "cmd-shim-6.0.3" = {
name = "cmd-shim";
packageName = "cmd-shim";
- version = "6.0.1";
+ version = "6.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/cmd-shim/-/cmd-shim-6.0.1.tgz";
- sha512 = "S9iI9y0nKR4hwEQsVWpyxld/6kRfGepGfzff83FcaiEBpmvlbA2nnGe7Cylgrx2f/p1P5S5wpRm9oL8z1PbS3Q==";
+ url = "https://registry.npmjs.org/cmd-shim/-/cmd-shim-6.0.3.tgz";
+ sha512 = "FMabTRlc5t5zjdenF6mS0MBeFZm0XqHqeOkcskKFb/LYCcRQ5fVgLOHVc4Lq9CqABd9zhjwPjMBCJvMCziSVtA==";
};
};
"cmdln-3.2.1" = {
@@ -18283,13 +18130,13 @@ let
sha512 = "tge3BeOtehBouqo8sdrjRuQxsAWuwUxWJN1pTttZ8HpV+fe2fxmBE9lqrzzOlRIysBvgsZr7D0FdNfrwRwpK8A==";
};
};
- "cockatiel-3.1.3" = {
+ "cockatiel-3.2.1" = {
name = "cockatiel";
packageName = "cockatiel";
- version = "3.1.3";
+ version = "3.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/cockatiel/-/cockatiel-3.1.3.tgz";
- sha512 = "xC759TpZ69d7HhfDp8m2WkRwEUiCkxY8Ee2OQH/3H6zmy2D/5Sm+zSTbPRa+V2QyjDtpMvjOIAOVjA2gp6N1kQ==";
+ url = "https://registry.npmjs.org/cockatiel/-/cockatiel-3.2.1.tgz";
+ sha512 = "gfrHV6ZPkquExvMh9IOkKsBzNDk6sDuZ6DdBGUBkvFnTCqCxzpuq48RySgP0AnaqQkw2zynOFj9yly6T1Q2G5Q==";
};
};
"code-block-writer-10.1.1" = {
@@ -18337,22 +18184,22 @@ let
sha512 = "7qJWqItLA8/VPVlKJlFXU+NBlo/qyfs39aJcuMT/2ere32ZqvF5OSxgdM5xOfJJ7O429gg2HM47y8v9P+9wrNw==";
};
};
- "codemaker-1.100.0" = {
+ "codemaker-1.101.0" = {
name = "codemaker";
packageName = "codemaker";
- version = "1.100.0";
+ version = "1.101.0";
src = fetchurl {
- url = "https://registry.npmjs.org/codemaker/-/codemaker-1.100.0.tgz";
- sha512 = "EVKV5v2HZf/a2nuRZJ3pMo1BImN6MX/9O22Yo1gQn+DeFbU2TqKnpCu16pTOVg4b4CakbFckeimVzQIqmFGquQ==";
+ url = "https://registry.npmjs.org/codemaker/-/codemaker-1.101.0.tgz";
+ sha512 = "bAg+N4PA8mniJrCpTYFdaFmJA+3fE1Vjgf4o1EnPc07nw6qRcJsr/D9ZZoutEsvw7UM8OmZp4qZxVzpCqRhhQQ==";
};
};
- "codemaker-1.95.0" = {
+ "codemaker-1.98.0" = {
name = "codemaker";
packageName = "codemaker";
- version = "1.95.0";
+ version = "1.98.0";
src = fetchurl {
- url = "https://registry.npmjs.org/codemaker/-/codemaker-1.95.0.tgz";
- sha512 = "q/U2NeZSaKnVMarOi+BR8MbaHEFKVmBefTSSXj/0W4OBarw/uUT2qCPojYF16gJtfFz7qCkJeuP+zYDq+xNEpg==";
+ url = "https://registry.npmjs.org/codemaker/-/codemaker-1.98.0.tgz";
+ sha512 = "UAeICTmY7lJXf4OPnDTwKWg/DU87u67nyxuTjMON+vO8yo8C+EcPWnmmOmWtZm3wWLPsPuxyYIQxIIi/4OZ9TA==";
};
};
"coffeescript-2.7.0" = {
@@ -18652,15 +18499,6 @@ let
sha512 = "GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==";
};
};
- "commander-2.8.1" = {
- name = "commander";
- packageName = "commander";
- version = "2.8.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/commander/-/commander-2.8.1.tgz";
- sha512 = "+pJLBFVk+9ZZdlAOB5WuIElVPPth47hILFkmGym57aq8kwxsowvByvB0DHs1vQAhyMZzdcpTtF0VDKGkSDR4ZQ==";
- };
- };
"commander-3.0.2" = {
name = "commander";
packageName = "commander";
@@ -18751,13 +18589,13 @@ let
sha512 = "gGSHSON1HdpFDb3WpU6C1tdksZV0lpfzoihXK+CD0l4xQ2TvHbVuiZy8Dg414ZqbeRxt2sU8d9kC0srpM2+RzQ==";
};
};
- "comment-json-4.2.3" = {
+ "comment-json-4.2.4" = {
name = "comment-json";
packageName = "comment-json";
- version = "4.2.3";
+ version = "4.2.4";
src = fetchurl {
- url = "https://registry.npmjs.org/comment-json/-/comment-json-4.2.3.tgz";
- sha512 = "SsxdiOf064DWoZLH799Ata6u7iV658A11PlWtZATDlXPpKGJnbJZ5Z24ybixAi+LUUqJ/GKowAejtC5GFUG7Tw==";
+ url = "https://registry.npmjs.org/comment-json/-/comment-json-4.2.4.tgz";
+ sha512 = "E5AjpSW+O+N5T2GsOQMHLLsJvrYw6G/AFt9GvU6NguEAfzKShh7hRiLtVo6S9KbRpFMGqE5ojo0/hE+sdteWvQ==";
};
};
"commist-1.1.0" = {
@@ -18769,6 +18607,24 @@ let
sha512 = "rraC8NXWOEjhADbZe9QBNzLAN5Q3fsTPQtBV+fEVj6xKIgDgNiEVE6ZNfHpZOqfQ21YUzfVNUXLOEZquYvQPPg==";
};
};
+ "commist-3.2.0" = {
+ name = "commist";
+ packageName = "commist";
+ version = "3.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/commist/-/commist-3.2.0.tgz";
+ sha512 = "4PIMoPniho+LqXmpS5d3NuGYncG6XWlkBSVGiWycL22dd42OYdUGil2CWuzklaJoNxyxUSpO4MKIBU94viWNAw==";
+ };
+ };
+ "common-ancestor-path-1.0.1" = {
+ name = "common-ancestor-path";
+ packageName = "common-ancestor-path";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/common-ancestor-path/-/common-ancestor-path-1.0.1.tgz";
+ sha512 = "L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w==";
+ };
+ };
"common-tags-1.8.2" = {
name = "common-tags";
packageName = "common-tags";
@@ -18850,6 +18706,15 @@ let
sha512 = "LNZQXhqUvqUTotpZ00qLSaify3b4VFD588aRr8MKFw4CMUr98ytzCW5wDH5qx/DEY5kCDXcbcRuCqL0szEf2tg==";
};
};
+ "compare-versions-6.1.1" = {
+ name = "compare-versions";
+ packageName = "compare-versions";
+ version = "6.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/compare-versions/-/compare-versions-6.1.1.tgz";
+ sha512 = "4hm4VPpIecmlg59CHXnRDnqGplJFrbLG4aFEl5vl6cK1u76ws3LLvX7ikFnTDl5vo39sjWD6AaDPYodJp/NNHg==";
+ };
+ };
"component-bind-1.0.0" = {
name = "component-bind";
packageName = "component-bind";
@@ -19111,22 +18976,13 @@ let
sha512 = "a1gSWQBQD73krFXdUEYJom2RTFrWUL3YvXDCRkyv//GVXc79cdW9MngtRuN9ih4FDKBtfJAJId+BbDuX+1rh2w==";
};
};
- "connect-redis-7.1.0" = {
+ "connect-redis-7.1.1" = {
name = "connect-redis";
packageName = "connect-redis";
- version = "7.1.0";
+ version = "7.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/connect-redis/-/connect-redis-7.1.0.tgz";
- sha512 = "UaqO1EirWjON2ENsyau7N5lbkrdYBpS6mYlXSeff/OYXsd6EGZ+SXSmNPoljL2PSua8fgjAEaldSA73PMZQ9Eg==";
- };
- };
- "consola-3.2.3" = {
- name = "consola";
- packageName = "consola";
- version = "3.2.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/consola/-/consola-3.2.3.tgz";
- sha512 = "I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==";
+ url = "https://registry.npmjs.org/connect-redis/-/connect-redis-7.1.1.tgz";
+ sha512 = "M+z7alnCJiuzKa8/1qAYdGUXHYfDnLolOGAUjOioB07pP39qxjG+X9ibsud7qUBc4jMV5Mcy3ugGv8eFcgamJQ==";
};
};
"console-browserify-1.1.0" = {
@@ -19174,15 +19030,6 @@ let
sha512 = "xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==";
};
};
- "constructs-10.1.167" = {
- name = "constructs";
- packageName = "constructs";
- version = "10.1.167";
- src = fetchurl {
- url = "https://registry.npmjs.org/constructs/-/constructs-10.1.167.tgz";
- sha512 = "zGt88EmcJUtWbd/sTM9GKcHRjYWzEx5jzMYuK69vl25Dj01sJAc7uF6AEJgZBtlLAc3VnRUvzgitHwmJkS9BFw==";
- };
- };
"constructs-10.3.0" = {
name = "constructs";
packageName = "constructs";
@@ -19571,15 +19418,6 @@ let
sha512 = "aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==";
};
};
- "cookie-0.5.0" = {
- name = "cookie";
- packageName = "cookie";
- version = "0.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz";
- sha512 = "YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==";
- };
- };
"cookie-0.6.0" = {
name = "cookie";
packageName = "cookie";
@@ -19607,13 +19445,13 @@ let
sha512 = "QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==";
};
};
- "cookie-signature-1.2.1" = {
+ "cookie-signature-1.0.7" = {
name = "cookie-signature";
packageName = "cookie-signature";
- version = "1.2.1";
+ version = "1.0.7";
src = fetchurl {
- url = "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.2.1.tgz";
- sha512 = "78KWk9T26NhzXtuL26cIJ8/qNHANyJ/ZYrmEXFzUmhZdjpBv+DlWlOANRTGBt48YcyslsLrj0bMLFTmXvLRCOw==";
+ url = "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.7.tgz";
+ sha512 = "NXdYc3dLr47pBkpUCHtKSwIOQXLVn8dZEuywboCOJY/osA0wFSLlSawr3KN8qXJEyX66FcONTH8EIlVuK0yyFA==";
};
};
"cookiejar-2.1.4" = {
@@ -19724,15 +19562,6 @@ let
sha512 = "s9whTXInMSgAp/NVXVNuVxVKzGH2qck3aQlVHxDCdAEPgtMKwc4Wq6/QKhgdEdgbLSi9rBTAcPoRa6JpiG4ksg==";
};
};
- "cose-base-2.2.0" = {
- name = "cose-base";
- packageName = "cose-base";
- version = "2.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/cose-base/-/cose-base-2.2.0.tgz";
- sha512 = "AzlgcsCbUMymkADOJtQm3wO9S3ltPfYOFD5033keQn9NJzIbtnZj+UdBJe7DYml/8TdbtHJW3j58SOnKhWY/5g==";
- };
- };
"cosmiconfig-6.0.0" = {
name = "cosmiconfig";
packageName = "cosmiconfig";
@@ -19931,22 +19760,22 @@ let
sha512 = "dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==";
};
};
- "create-torrent-6.0.17" = {
+ "create-torrent-6.0.18" = {
name = "create-torrent";
packageName = "create-torrent";
- version = "6.0.17";
+ version = "6.0.18";
src = fetchurl {
- url = "https://registry.npmjs.org/create-torrent/-/create-torrent-6.0.17.tgz";
- sha512 = "GGrNP1mu3WSyJHyo+x6AnJlQWW7bbyUfoEDFfo/U2kpeTVYRCgWdQC4/sq4oreltpMTEP8UUB3U3niHIgLU/gQ==";
+ url = "https://registry.npmjs.org/create-torrent/-/create-torrent-6.0.18.tgz";
+ sha512 = "rN1y6A0pnM/ijMcUfbcmAGFGjegtc76TpVsleOWLxxm6hkjbx2q2F0zN4u3LDweAzd6hM6sQySNgFEGZA1geCQ==";
};
};
- "cron-parser-3.5.0" = {
+ "cron-parser-4.9.0" = {
name = "cron-parser";
packageName = "cron-parser";
- version = "3.5.0";
+ version = "4.9.0";
src = fetchurl {
- url = "https://registry.npmjs.org/cron-parser/-/cron-parser-3.5.0.tgz";
- sha512 = "wyVZtbRs6qDfFd8ap457w3XVntdvqcwBGxBoTvJQH9KGVKL/fB+h2k3C8AqiVxvUQKN1Ps/Ns46CNViOpVDhfQ==";
+ url = "https://registry.npmjs.org/cron-parser/-/cron-parser-4.9.0.tgz";
+ sha512 = "p0SaNjrHOnQeR8/VnfGbmg9te2kfyYSQ7Sc/j/6DtPL3JQvKxmjO9TSjNFpujqV3vEYYBvNNvXSxzyksBWAx1Q==";
};
};
"cronosjs-1.7.1" = {
@@ -20093,13 +19922,13 @@ let
sha512 = "x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==";
};
};
- "cspell-config-lib-8.8.4" = {
+ "cspell-config-lib-8.12.1" = {
name = "cspell-config-lib";
packageName = "cspell-config-lib";
- version = "8.8.4";
+ version = "8.12.1";
src = fetchurl {
- url = "https://registry.npmjs.org/cspell-config-lib/-/cspell-config-lib-8.8.4.tgz";
- sha512 = "Xf+aL669Cm+MYZTZULVWRQXB7sRWx9qs0hPrgqxeaWabLUISK57/qwcI24TPVdYakUCoud9Nv+woGi5FcqV5ZQ==";
+ url = "https://registry.npmjs.org/cspell-config-lib/-/cspell-config-lib-8.12.1.tgz";
+ sha512 = "xEoKdb8hyturyiUXFdRgQotYegYe3OZS+Yc7JHnB75Ykt+Co2gtnu2M/Yb0yoqaHCXflVO6MITrKNaxricgqVw==";
};
};
"cspell-dict-vimlang-1.0.1" = {
@@ -20111,22 +19940,22 @@ let
sha512 = "pP2W2BvLrRKggS1fUk8qQw2FG8PhyV969dlwF3M0jAg/HH83n76H+KGdzGsmEut6VJFlJYQkd1ZZskjaeVWnrA==";
};
};
- "cspell-dictionary-8.8.4" = {
+ "cspell-dictionary-8.12.1" = {
name = "cspell-dictionary";
packageName = "cspell-dictionary";
- version = "8.8.4";
+ version = "8.12.1";
src = fetchurl {
- url = "https://registry.npmjs.org/cspell-dictionary/-/cspell-dictionary-8.8.4.tgz";
- sha512 = "eDi61MDDZycS5EASz5FiYKJykLEyBT0mCvkYEUCsGVoqw8T9gWuWybwwqde3CMq9TOwns5pxGcFs2v9RYgtN5A==";
+ url = "https://registry.npmjs.org/cspell-dictionary/-/cspell-dictionary-8.12.1.tgz";
+ sha512 = "jYHEA48on6pBQYVUEzXV63wy5Ulx/QNUZcoiG3C0OmYIKjACTaEg02AMDOr+Eaj34E5v4pGEShzot4Qtt/aiNQ==";
};
};
- "cspell-gitignore-8.8.4" = {
+ "cspell-gitignore-8.12.1" = {
name = "cspell-gitignore";
packageName = "cspell-gitignore";
- version = "8.8.4";
+ version = "8.12.1";
src = fetchurl {
- url = "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-8.8.4.tgz";
- sha512 = "rLdxpBh0kp0scwqNBZaWVnxEVmSK3UWyVSZmyEL4jmmjusHYM9IggfedOhO4EfGCIdQ32j21TevE0tTslyc4iA==";
+ url = "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-8.12.1.tgz";
+ sha512 = "XlO87rdrab3VKU8e7+RGEfqEtYqo7ObgfZeYEAdJlwUXvqYxBzA11jDZAovDz/5jv0YfRMx6ch5t6+1zfSeBbQ==";
};
};
"cspell-glob-0.1.25" = {
@@ -20138,22 +19967,22 @@ let
sha512 = "/XaSHrGBpMJa+duFz3GKOWfrijrfdHT7a/XGgIcq3cymCSpOH+DPho42sl0jLI/hjM+8yv2m8aEoxRT8yVSnlg==";
};
};
- "cspell-glob-8.8.4" = {
+ "cspell-glob-8.12.1" = {
name = "cspell-glob";
packageName = "cspell-glob";
- version = "8.8.4";
+ version = "8.12.1";
src = fetchurl {
- url = "https://registry.npmjs.org/cspell-glob/-/cspell-glob-8.8.4.tgz";
- sha512 = "+tRrOfTSbF/44uNl4idMZVPNfNM6WTmra4ZL44nx23iw1ikNhqZ+m0PC1oCVSlURNBEn8faFXjC/oT2BfgxoUQ==";
+ url = "https://registry.npmjs.org/cspell-glob/-/cspell-glob-8.12.1.tgz";
+ sha512 = "ZplEPLlNwj7luEKu/VudIaV+cGTQHExihGvAUxlIVMFURiAFMT5eH0UsQoCEpSevIEueO+slLUDy7rxwTwAGdQ==";
};
};
- "cspell-grammar-8.8.4" = {
+ "cspell-grammar-8.12.1" = {
name = "cspell-grammar";
packageName = "cspell-grammar";
- version = "8.8.4";
+ version = "8.12.1";
src = fetchurl {
- url = "https://registry.npmjs.org/cspell-grammar/-/cspell-grammar-8.8.4.tgz";
- sha512 = "UxDO517iW6vs/8l4OhLpdMR7Bp+tkquvtld1gWz8WYQiDwORyf0v5a3nMh4ILYZGoolOSnDuI9UjWOLI6L/vvQ==";
+ url = "https://registry.npmjs.org/cspell-grammar/-/cspell-grammar-8.12.1.tgz";
+ sha512 = "IAES553M5nuB/wtiWYayDX2/5OmDu2VmEcnV6SXNze8oop0oodSqr3h46rLy+m1EOOD8nenMa295N/dRPqTB/g==";
};
};
"cspell-io-4.1.7" = {
@@ -20165,13 +19994,13 @@ let
sha512 = "V0/tUu9FnIS3v+vAvDT6NNa14Nc/zUNX8+YUUOfFAiDJJTdqefmvcWjOJBIMYBf3wIk9iWLmLbMM+bNHqr7DSQ==";
};
};
- "cspell-io-8.8.4" = {
+ "cspell-io-8.12.1" = {
name = "cspell-io";
packageName = "cspell-io";
- version = "8.8.4";
+ version = "8.12.1";
src = fetchurl {
- url = "https://registry.npmjs.org/cspell-io/-/cspell-io-8.8.4.tgz";
- sha512 = "aqB/QMx+xns46QSyPEqi05uguCSxvqRnh2S/ZOhhjPlKma/7hK9niPRcwKwJXJEtNzdiZZkkC1uZt9aJe/7FTA==";
+ url = "https://registry.npmjs.org/cspell-io/-/cspell-io-8.12.1.tgz";
+ sha512 = "uPjYQP/OKmA8B1XbJunUTBingtrb6IKkp7enyljsZEbtPRKSudP16QPacgyZLLb5rCVQXyexebGfQ182jmq7dg==";
};
};
"cspell-lib-4.3.12" = {
@@ -20183,13 +20012,13 @@ let
sha512 = "yCCb6MoW1K8Tsr/WVEQoO4dfYhH9bCsjQayccb8MlyDaNNuWJHuX+gUGHsZSXSuChSh8PrTWKXJzs13/uM977g==";
};
};
- "cspell-lib-8.8.4" = {
+ "cspell-lib-8.12.1" = {
name = "cspell-lib";
packageName = "cspell-lib";
- version = "8.8.4";
+ version = "8.12.1";
src = fetchurl {
- url = "https://registry.npmjs.org/cspell-lib/-/cspell-lib-8.8.4.tgz";
- sha512 = "hK8gYtdQ9Lh86c8cEHITt5SaoJbfvXoY/wtpR4k393YR+eAxKziyv8ihQyFE/Z/FwuqtNvDrSntP9NLwTivd3g==";
+ url = "https://registry.npmjs.org/cspell-lib/-/cspell-lib-8.12.1.tgz";
+ sha512 = "z2aZXnrip76zbH0j0ibTGux3mA71TMHtoEAd+n66so7Tx3QydUDAI0u7tzfbP3JyqL9ZWPlclQAfbutMUuzMBQ==";
};
};
"cspell-trie-lib-4.2.8" = {
@@ -20201,13 +20030,13 @@ let
sha512 = "Nt3c0gxOYXIc3/yhALDukpje1BgR6guvlUKWQO2zb0r7qRWpwUw2j2YM4dWbHQeH/3Hx5ei4Braa6cMaiJ5YBw==";
};
};
- "cspell-trie-lib-8.8.4" = {
+ "cspell-trie-lib-8.12.1" = {
name = "cspell-trie-lib";
packageName = "cspell-trie-lib";
- version = "8.8.4";
+ version = "8.12.1";
src = fetchurl {
- url = "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-8.8.4.tgz";
- sha512 = "yCld4ZL+pFa5DL+Arfvmkv3cCQUOfdRlxElOzdkRZqWyO6h/UmO8xZb21ixVYHiqhJGZmwc3BG9Xuw4go+RLig==";
+ url = "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-8.12.1.tgz";
+ sha512 = "a9QmGGUhparM9v184YsB+D0lSdzVgWDlLFEBjVLQJyvp43HErZjvcTPUojUypNQUEjxvksX0/C4pO5Wq8YUD8w==";
};
};
"cspell-util-bundle-4.1.11" = {
@@ -20381,13 +20210,13 @@ let
sha512 = "j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==";
};
};
- "cssnano-7.0.2" = {
+ "cssnano-7.0.4" = {
name = "cssnano";
packageName = "cssnano";
- version = "7.0.2";
+ version = "7.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/cssnano/-/cssnano-7.0.2.tgz";
- sha512 = "LXm/Xx6TNLzfHM2lBaIQHfvtdW5QfdbyLzfJAWZrclCAb47yVa0/yJG69+amcw3Lq0YZ+kyU40rbsMPLcMt9aw==";
+ url = "https://registry.npmjs.org/cssnano/-/cssnano-7.0.4.tgz";
+ sha512 = "rQgpZra72iFjiheNreXn77q1haS2GEy69zCMbu4cpXCFPMQF+D4Ik5V7ktMzUF/sA7xCIgcqHwGPnCD+0a1vHg==";
};
};
"cssnano-preset-default-5.2.14" = {
@@ -20399,13 +20228,13 @@ let
sha512 = "t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==";
};
};
- "cssnano-preset-default-7.0.2" = {
+ "cssnano-preset-default-7.0.4" = {
name = "cssnano-preset-default";
packageName = "cssnano-preset-default";
- version = "7.0.2";
+ version = "7.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-7.0.2.tgz";
- sha512 = "z95kGKZx8VWHfERj7LFzuiTxylbvEp07ZEYaFu+t6bFyNOXLd/+3oPyNaY7ISwcrfHFCkt8OfRo4IZxVRJZ7dg==";
+ url = "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-7.0.4.tgz";
+ sha512 = "jQ6zY9GAomQX7/YNLibMEsRZguqMUGuupXcEk2zZ+p3GUxwCAsobqPYE62VrJ9qZ0l9ltrv2rgjwZPBIFIjYtw==";
};
};
"cssnano-utils-3.1.0" = {
@@ -20633,13 +20462,13 @@ let
sha512 = "w8a8nQk9YSCkMmH2wDbFqpH1XMz7l409mSvWnnG6Iu6D0Ydhvq61XASE7QIaA46FxfG2Ag524ZuGgAy2cXPfsw==";
};
};
- "cytoscape-3.29.2" = {
+ "cytoscape-3.30.1" = {
name = "cytoscape";
packageName = "cytoscape";
- version = "3.29.2";
+ version = "3.30.1";
src = fetchurl {
- url = "https://registry.npmjs.org/cytoscape/-/cytoscape-3.29.2.tgz";
- sha512 = "2G1ycU28Nh7OHT9rkXRLpCDP30MKH1dXJORZuBhtEhEW7pKwgPi77ImqlCWinouyE1PNepIOGZBOrE84DG7LyQ==";
+ url = "https://registry.npmjs.org/cytoscape/-/cytoscape-3.30.1.tgz";
+ sha512 = "TRJc3HbBPkHd50u9YfJh2FxD1lDLZ+JXnJoyBn5LkncoeuT7fapO/Hq/Ed8TdFclaKshzInge2i30bg7VKeoPQ==";
};
};
"cytoscape-cose-bilkent-4.1.0" = {
@@ -20651,15 +20480,6 @@ let
sha512 = "wgQlVIUJF13Quxiv5e1gstZ08rnZj2XaLHGoFMYXz7SkNfCDOOteKBE6SYRfA9WxxI/iBc3ajfDoc6hb/MRAHQ==";
};
};
- "cytoscape-fcose-2.2.0" = {
- name = "cytoscape-fcose";
- packageName = "cytoscape-fcose";
- version = "2.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/cytoscape-fcose/-/cytoscape-fcose-2.2.0.tgz";
- sha512 = "ki1/VuRIHFCzxWNrsshHYPs6L7TvLu3DL+TyIGEsRcvVERmxokbf5Gdk7mFxZnTdiGtnA4cfSmjZJMviqSuZrQ==";
- };
- };
"d-1.0.2" = {
name = "d";
packageName = "d";
@@ -21074,15 +20894,6 @@ let
sha512 = "NxuWFXR3+HJULO6F6VprWnUQbx0MXgfEuOfz3m+pw8LYZV06SHRjcaBVvVlwH132xJq12mljySVDLcbMcFM7EA==";
};
};
- "data-uri-to-buffer-2.0.2" = {
- name = "data-uri-to-buffer";
- packageName = "data-uri-to-buffer";
- version = "2.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-2.0.2.tgz";
- sha512 = "ND9qDTLc6diwj+Xe5cdAgVTbLVdXbtxTJRXRhli8Mowuaan+0EJOtdqJ0QCHNSSPyoXGx9HX2/VMnKeC34AChA==";
- };
- };
"data-uri-to-buffer-4.0.1" = {
name = "data-uri-to-buffer";
packageName = "data-uri-to-buffer";
@@ -21119,13 +20930,13 @@ let
sha512 = "X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==";
};
};
- "data-urls-4.0.0" = {
+ "data-urls-5.0.0" = {
name = "data-urls";
packageName = "data-urls";
- version = "4.0.0";
+ version = "5.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/data-urls/-/data-urls-4.0.0.tgz";
- sha512 = "/mMTei/JXPqvFqQtfyTowxmJVwr2PVAeCcDxyFf6LhoOu/09TX2OX3kb2wzi4DMXcfj4OItwDOnhl5oziPnT6g==";
+ url = "https://registry.npmjs.org/data-urls/-/data-urls-5.0.0.tgz";
+ sha512 = "ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg==";
};
};
"data-view-buffer-1.0.1" = {
@@ -21245,13 +21056,13 @@ let
sha512 = "2P0p0pFGzHS5EMnhdxQi7aJN+iMheud0UhG4dlE1DLAlvL8JHjJJTX/CSm4JXwV0Ka5nGk3zC5mcb5bUQUxxMA==";
};
};
- "dayjs-1.11.11" = {
+ "dayjs-1.11.12" = {
name = "dayjs";
packageName = "dayjs";
- version = "1.11.11";
+ version = "1.11.12";
src = fetchurl {
- url = "https://registry.npmjs.org/dayjs/-/dayjs-1.11.11.tgz";
- sha512 = "okzr3f11N6WuqYtZSvm+F776mB41wRZMhKP+hc34YdW+KmtYYK9iqvHSwo2k9FEH3fhGXvOPV6yz2IcSrfRUDg==";
+ url = "https://registry.npmjs.org/dayjs/-/dayjs-1.11.12.tgz";
+ sha512 = "Rt2g+nTbLlDWZTwwrIXjy9MeiZmSDI375FvZs72ngxx8PDC6YXOeR3q5LAuPzjZQxhiWdRKac7RKV+YyQYfYIg==";
};
};
"deasync-0.1.20" = {
@@ -21362,15 +21173,6 @@ let
sha512 = "mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==";
};
};
- "debug-4.3.4" = {
- name = "debug";
- packageName = "debug";
- version = "4.3.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz";
- sha512 = "PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==";
- };
- };
"debug-4.3.5" = {
name = "debug";
packageName = "debug";
@@ -21560,6 +21362,15 @@ let
sha512 = "Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==";
};
};
+ "dedent-1.5.3" = {
+ name = "dedent";
+ packageName = "dedent";
+ version = "1.5.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dedent/-/dedent-1.5.3.tgz";
+ sha512 = "NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==";
+ };
+ };
"dedent-js-1.0.1" = {
name = "dedent-js";
packageName = "dedent-js";
@@ -21776,15 +21587,6 @@ let
sha512 = "hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q==";
};
};
- "defu-6.1.4" = {
- name = "defu";
- packageName = "defu";
- version = "6.1.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/defu/-/defu-6.1.4.tgz";
- sha512 = "mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==";
- };
- };
"degenerator-5.0.1" = {
name = "degenerator";
packageName = "degenerator";
@@ -22037,13 +21839,13 @@ let
sha512 = "T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==";
};
};
- "detect-port-1.5.1" = {
+ "detect-port-1.6.1" = {
name = "detect-port";
packageName = "detect-port";
- version = "1.5.1";
+ version = "1.6.1";
src = fetchurl {
- url = "https://registry.npmjs.org/detect-port/-/detect-port-1.5.1.tgz";
- sha512 = "aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ==";
+ url = "https://registry.npmjs.org/detect-port/-/detect-port-1.6.1.tgz";
+ sha512 = "CmnVc+Hek2egPx1PeTFVta2W78xy2K/9Rkf6cC4T59S50tVnzKj+tnx5mmx5lwvCkujZ4uRrpRSuV+IVs3f90Q==";
};
};
"detective-5.2.1" = {
@@ -22073,13 +21875,13 @@ let
sha512 = "RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==";
};
};
- "devtools-protocol-0.0.1299070" = {
+ "devtools-protocol-0.0.1312386" = {
name = "devtools-protocol";
packageName = "devtools-protocol";
- version = "0.0.1299070";
+ version = "0.0.1312386";
src = fetchurl {
- url = "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1299070.tgz";
- sha512 = "+qtL3eX50qsJ7c+qVyagqi7AWMoQCBGNfoyJZMwm/NSXVqLYbuitrWEEIzxfUmTNy7//Xe8yhMmQ+elj3uAqSg==";
+ url = "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1312386.tgz";
+ sha512 = "DPnhUXvmvKT2dFA/j7B+riVLUt9Q6RKJlcppojL5CoRywJJKLDYnRlw0gTFKfgDPHP5E04UoB71SxoJlVZy8FA==";
};
};
"dezalgo-1.0.4" = {
@@ -22154,15 +21956,6 @@ let
sha512 = "58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==";
};
};
- "diff-5.0.0" = {
- name = "diff";
- packageName = "diff";
- version = "5.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/diff/-/diff-5.0.0.tgz";
- sha512 = "/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w==";
- };
- };
"diff-5.1.0" = {
name = "diff";
packageName = "diff";
@@ -22523,15 +22316,6 @@ let
sha512 = "yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==";
};
};
- "domexception-4.0.0" = {
- name = "domexception";
- packageName = "domexception";
- version = "4.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/domexception/-/domexception-4.0.0.tgz";
- sha512 = "A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==";
- };
- };
"domhandler-2.2.1" = {
name = "domhandler";
packageName = "domhandler";
@@ -22586,13 +22370,13 @@ let
sha512 = "3VdM/SXBZX2omc9JF9nOPCtDaYQ67BGp5CoLpIQlO2KCAPETs8TcDHacF26jXadGbvUteZzRTeos2fhID5+ucQ==";
};
};
- "dompurify-3.1.5" = {
+ "dompurify-3.1.6" = {
name = "dompurify";
packageName = "dompurify";
- version = "3.1.5";
+ version = "3.1.6";
src = fetchurl {
- url = "https://registry.npmjs.org/dompurify/-/dompurify-3.1.5.tgz";
- sha512 = "lwG+n5h8QNpxtyrJW/gJWckL+1/DQiYMX8f7t8Z2AZTPw1esVrqjI63i7Zc2Gz0aKzLVMYC1V1PL/ky+aY/NgA==";
+ url = "https://registry.npmjs.org/dompurify/-/dompurify-3.1.6.tgz";
+ sha512 = "cTOAhc36AalkjtBpfG6O8JimdTMWNXjiePT2xQH/ppBGi/4uIpmj8eKyIkMJErXWARyINV/sB38yf8JCLF5pbQ==";
};
};
"domutils-1.4.3" = {
@@ -22721,15 +22505,6 @@ let
sha512 = "IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==";
};
};
- "dotenv-16.3.2" = {
- name = "dotenv";
- packageName = "dotenv";
- version = "16.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/dotenv/-/dotenv-16.3.2.tgz";
- sha512 = "HTlk5nmhkm8F6JcdXvHIzaorzCoziNQT9mGxLPVXW8wJF1TiGSL60ZGB4gHWabHOaMmWmhvk2/lPHfnBiT78AQ==";
- };
- };
"dotenv-16.4.5" = {
name = "dotenv";
packageName = "dotenv";
@@ -22757,13 +22532,13 @@ let
sha512 = "IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g==";
};
};
- "dotenv-expand-10.0.0" = {
+ "dotenv-expand-11.0.6" = {
name = "dotenv-expand";
packageName = "dotenv-expand";
- version = "10.0.0";
+ version = "11.0.6";
src = fetchurl {
- url = "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-10.0.0.tgz";
- sha512 = "GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==";
+ url = "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-11.0.6.tgz";
+ sha512 = "8NHi73otpWsZGBSZwwknTXS5pqMOrk9+Ssrna8xCaxkzEpU9OTf9R5ArQGVw03//Zmk9MOwLPng9WwndvpAJ5g==";
};
};
"dotenv-expand-5.1.0" = {
@@ -23009,13 +22784,13 @@ let
sha512 = "UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==";
};
};
- "electron-to-chromium-1.4.802" = {
+ "electron-to-chromium-1.5.1" = {
name = "electron-to-chromium";
packageName = "electron-to-chromium";
- version = "1.4.802";
+ version = "1.5.1";
src = fetchurl {
- url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.802.tgz";
- sha512 = "TnTMUATbgNdPXVSHsxvNVSG0uEd6cSZsANjm8c9HbvflZVVn1yTRcmVXYT1Ma95/ssB/Dcd30AHweH2TE+dNpA==";
+ url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.1.tgz";
+ sha512 = "FKbOCOQ5QRB3VlIbl1LZQefWIYwszlBloaXcY2rbfpu9ioJnNh3TK03YtIDKDo3WKBi8u+YV4+Fn2CkEozgf4w==";
};
};
"elegant-spinner-1.0.1" = {
@@ -23036,22 +22811,22 @@ let
sha512 = "wkgGT6kugeQk/P6VZ/f4T+4HB41BVgNBq5CDIZVbQ02nvTVqAiVTbskxxu3eA/X96lMlfYOwnLQpN2v5E1zDEg==";
};
};
- "elkjs-0.8.2" = {
+ "elkjs-0.9.3" = {
name = "elkjs";
packageName = "elkjs";
- version = "0.8.2";
+ version = "0.9.3";
src = fetchurl {
- url = "https://registry.npmjs.org/elkjs/-/elkjs-0.8.2.tgz";
- sha512 = "L6uRgvZTH+4OF5NE/MBbzQx/WYpru1xCBE9respNj6qznEewGUIfhzmm7horWWxbNO2M0WckQypGctR8lH79xQ==";
+ url = "https://registry.npmjs.org/elkjs/-/elkjs-0.9.3.tgz";
+ sha512 = "f/ZeWvW/BCXbhGEf1Ujp29EASo/lk1FDnETgNKwJrsVvGZhUWCZyg3xLJjAsxfOmt8KjswHmI5EwCQcPMpOYhQ==";
};
};
- "elliptic-6.5.5" = {
+ "elliptic-6.5.6" = {
name = "elliptic";
packageName = "elliptic";
- version = "6.5.5";
+ version = "6.5.6";
src = fetchurl {
- url = "https://registry.npmjs.org/elliptic/-/elliptic-6.5.5.tgz";
- sha512 = "7EjbcmUm17NQFu4Pmgmq2olYMj8nwMnpcddByChSUjArp8F5DQWcIcpriwO4ZToLNAJig0yiyjswfyGNje/ixw==";
+ url = "https://registry.npmjs.org/elliptic/-/elliptic-6.5.6.tgz";
+ sha512 = "mpzdtpeCLuS3BmE3pO3Cpp5bbjlOPY2Q0PgoF+Od1XZrHLYI28Xe3ossCmYCQt11FQKEYd9+PF8jymTvtWJSHQ==";
};
};
"emitter-http://github.com/component/emitter/archive/1.0.1.tar.gz" = {
@@ -23244,13 +23019,13 @@ let
sha512 = "b4Q85dFkGw+TqgytGPrGgACRUhsdKc9S9ErRAXpPGy/CXKs4tYoHDkvIRdsseAF7NjfVwjRFIn6KTnbw7LwJZg==";
};
};
- "engine.io-3.6.1" = {
+ "engine.io-3.6.2" = {
name = "engine.io";
packageName = "engine.io";
- version = "3.6.1";
+ version = "3.6.2";
src = fetchurl {
- url = "https://registry.npmjs.org/engine.io/-/engine.io-3.6.1.tgz";
- sha512 = "dfs8EVg/i7QjFsXxn7cCRQ+Wai1G1TlEvHhdYEi80fxn5R1vZ2K661O6v/rezj1FP234SZ14r9CmJke99iYDGg==";
+ url = "https://registry.npmjs.org/engine.io/-/engine.io-3.6.2.tgz";
+ sha512 = "C4JjGQZLY3kWlIDx0BQNKizbrfpb7NahxDztGdN5jrPK2ghmXiNDN+E/t0JzDeNRZxPVaszxEng42Pmj27X/0w==";
};
};
"engine.io-6.4.2" = {
@@ -23262,13 +23037,13 @@ let
sha512 = "FKn/3oMiJjrOEOeUub2WCox6JhxBXq/Zn3fZOMCBxKnNYtsdKjxhl7yR3fZhM9PV+rdE75SU5SYMc+2PGzo+Tg==";
};
};
- "engine.io-6.5.4" = {
+ "engine.io-6.5.5" = {
name = "engine.io";
packageName = "engine.io";
- version = "6.5.4";
+ version = "6.5.5";
src = fetchurl {
- url = "https://registry.npmjs.org/engine.io/-/engine.io-6.5.4.tgz";
- sha512 = "KdVSDKhVKyOi+r5uEabrDLZw2qXStVvCsEB/LN3mw4WFi6Gx50jTyuxYVCwAAC0U46FdnzP/ScKRBTXb/NiEOg==";
+ url = "https://registry.npmjs.org/engine.io/-/engine.io-6.5.5.tgz";
+ sha512 = "C5Pn8Wk+1vKBoHghJODM63yk8MvrO9EWZUfkAt5HAqIgPE4/8FF0PEGHXtEd40l223+cE5ABWuPzm38PHFXfMA==";
};
};
"engine.io-client-1.3.1" = {
@@ -23289,22 +23064,22 @@ let
sha512 = "iU4CRr38Fecj8HoZEnFtm2EiKGbYZcPn3cHxqNGl/tmdWRf60KhK+9vE0JeSjgnlS/0oynEfLgKbT9ALpim0sQ==";
};
};
- "engine.io-client-3.5.3" = {
+ "engine.io-client-3.5.4" = {
name = "engine.io-client";
packageName = "engine.io-client";
- version = "3.5.3";
+ version = "3.5.4";
src = fetchurl {
- url = "https://registry.npmjs.org/engine.io-client/-/engine.io-client-3.5.3.tgz";
- sha512 = "qsgyc/CEhJ6cgMUwxRRtOndGVhIu5hpL5tR4umSpmX/MvkFoIxUTM7oFMDQumHNzlNLwSVy6qhstFPoWTf7dOw==";
+ url = "https://registry.npmjs.org/engine.io-client/-/engine.io-client-3.5.4.tgz";
+ sha512 = "ydc8uuMMDxC5KCKNJN3zZKYJk2sgyTuTZQ7Aj1DJSsLKAcizA/PzWivw8fZMIjJVBo2CJOYzntv4FSjY/Lr//g==";
};
};
- "engine.io-client-6.5.3" = {
+ "engine.io-client-6.5.4" = {
name = "engine.io-client";
packageName = "engine.io-client";
- version = "6.5.3";
+ version = "6.5.4";
src = fetchurl {
- url = "https://registry.npmjs.org/engine.io-client/-/engine.io-client-6.5.3.tgz";
- sha512 = "9Z0qLB0NIisTRt1DZ/8U2k12RJn8yls/nXMZLn+/N8hANT3TcYjKFKcwbw5zFQiN4NTde3TSY9zb79e1ij6j9Q==";
+ url = "https://registry.npmjs.org/engine.io-client/-/engine.io-client-6.5.4.tgz";
+ sha512 = "GeZeeRjpD2qf49cZQ0Wvh/8NJNfeXkXXcoGh+F77oEAgo9gUHwT1fCRxSNU+YEEaysOJTnsFHmM5oAcPy4ntvQ==";
};
};
"engine.io-parser-1.0.6" = {
@@ -23334,13 +23109,13 @@ let
sha512 = "P+jDFbvK6lE3n1OL+q9KuzdOFWkkZ/cMV9gol/SbVfpyqfvrfrFTOFJ6fQm2VC3PZHlU3QPhVwmbsCnauHF2MQ==";
};
};
- "engine.io-parser-5.2.2" = {
+ "engine.io-parser-5.2.3" = {
name = "engine.io-parser";
packageName = "engine.io-parser";
- version = "5.2.2";
+ version = "5.2.3";
src = fetchurl {
- url = "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.2.2.tgz";
- sha512 = "RcyUFKA93/CXH20l4SoVvzZfrSDMOTUS3bWVpTt2FuFP+XYrL8i8oonHP7WInRyVHXh0n/ORtoeiE1os+8qkSw==";
+ url = "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.2.3.tgz";
+ sha512 = "HqD3yTBfnBxIrbnM1DoD6Pcq8NECnh8d4As1Qgh0z5Gg3jRRIqijury0CL3ghu/edArpUYiYqQiDUQBIs4np3Q==";
};
};
"enhanced-resolve-2.3.0" = {
@@ -23352,13 +23127,13 @@ let
sha512 = "n6e4bsCpzsP0OB76X+vEWhySUQI8GHPVFVK+3QkX35tbryy2WoeGeK5kQ+oxzgDVHjIZyz5fyS60Mi3EpQLc0Q==";
};
};
- "enhanced-resolve-5.17.0" = {
+ "enhanced-resolve-5.17.1" = {
name = "enhanced-resolve";
packageName = "enhanced-resolve";
- version = "5.17.0";
+ version = "5.17.1";
src = fetchurl {
- url = "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.17.0.tgz";
- sha512 = "dwDPwZL0dmye8Txp2gzFmA6sxALaSvdRDjPH0viLcKrtlOL3tw62nWWweVD1SdILDTJrbrL6tdWVN58Wo6U3eA==";
+ url = "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.17.1.tgz";
+ sha512 = "LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==";
};
};
"enquirer-2.3.6" = {
@@ -23505,15 +23280,6 @@ let
sha512 = "cvcaMr7KqXVh4nyzGTVqTum+gAiL265x5jUWQIDLq//zOGbW+gSW/C+OWLleY/rs9Qole6AZLMXPbtIFQbqu+Q==";
};
};
- "envinfo-7.8.1" = {
- name = "envinfo";
- packageName = "envinfo";
- version = "7.8.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/envinfo/-/envinfo-7.8.1.tgz";
- sha512 = "/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==";
- };
- };
"environment-1.1.0" = {
name = "environment";
packageName = "environment";
@@ -23649,13 +23415,13 @@ let
sha512 = "cXLGjP0c4T3flZJKQSuziYoq7MlT+rnvfZjfp7h+I7K9BNX54kP9nyWvdbwjQ4u1iWbOL4u96fgeZLToQlZC7w==";
};
};
- "es-module-lexer-1.5.3" = {
+ "es-module-lexer-1.5.4" = {
name = "es-module-lexer";
packageName = "es-module-lexer";
- version = "1.5.3";
+ version = "1.5.4";
src = fetchurl {
- url = "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.5.3.tgz";
- sha512 = "i1gCgmR9dCl6Vil6UKPI/trA69s08g/syhiDK9TG0Nf1RJjjFI+AzoWW7sPufzkgYAn861skuCwJa0pIIHYxvg==";
+ url = "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.5.4.tgz";
+ sha512 = "MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==";
};
};
"es-object-atoms-1.0.0" = {
@@ -23685,15 +23451,6 @@ let
sha512 = "QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==";
};
};
- "es-vary-0.1.2" = {
- name = "es-vary";
- packageName = "es-vary";
- version = "0.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/es-vary/-/es-vary-0.1.2.tgz";
- sha512 = "pLqqZoOutAXQXyBJrUYVNM5fZngiOJYi1Xl4svQMrluTsqDUOQlBMw9EYgLrsWL6niDYn/Yd1y2Pj6GC+j/yjA==";
- };
- };
"es5-ext-0.10.64" = {
name = "es5-ext";
packageName = "es5-ext";
@@ -23703,15 +23460,6 @@ let
sha512 = "p2snDhiLaXe6dahss1LddxqEm+SkuDvV8dnIQG0MWjyHpcMNfXKPE+/Cc0y+PhxJX3A4xGNeFCj5oc0BUh6deg==";
};
};
- "es6-error-4.1.1" = {
- name = "es6-error";
- packageName = "es6-error";
- version = "4.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/es6-error/-/es6-error-4.1.1.tgz";
- sha512 = "Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==";
- };
- };
"es6-iterator-2.0.3" = {
name = "es6-iterator";
packageName = "es6-iterator";
@@ -23757,15 +23505,6 @@ let
sha512 = "HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==";
};
};
- "es6-promise-pool-2.5.0" = {
- name = "es6-promise-pool";
- packageName = "es6-promise-pool";
- version = "2.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/es6-promise-pool/-/es6-promise-pool-2.5.0.tgz";
- sha512 = "VHErXfzR/6r/+yyzPKeBvO0lgjfC5cbDCQWjWwMZWSb6YU39TGIl51OUmCfWCq4ylMdJSB8zkz2vIuIeIxXApA==";
- };
- };
"es6-promisify-5.0.0" = {
name = "es6-promisify";
packageName = "es6-promisify";
@@ -23811,15 +23550,6 @@ let
sha512 = "wI4ZiIfFxpkuxB8ju4MHrGwGLyp1+awEHAHVpx6w7a+1pmYIq8T9FGEVVwFo0iFierDoMj++Xq69GXWYn2EiwA==";
};
};
- "esbuild-0.17.19" = {
- name = "esbuild";
- packageName = "esbuild";
- version = "0.17.19";
- src = fetchurl {
- url = "https://registry.npmjs.org/esbuild/-/esbuild-0.17.19.tgz";
- sha512 = "XQ0jAPFkK/u3LcVRcvVHQcTIqD6E2H1fvZMA5dQPSOWb3suUbWbfbRf94pjc0bNzRYLfIrDRQXr7X+LHIm5oHw==";
- };
- };
"esbuild-0.19.12" = {
name = "esbuild";
packageName = "esbuild";
@@ -24180,13 +23910,13 @@ let
sha512 = "dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==";
};
};
- "eslint-9.5.0" = {
+ "eslint-9.7.0" = {
name = "eslint";
packageName = "eslint";
- version = "9.5.0";
+ version = "9.7.0";
src = fetchurl {
- url = "https://registry.npmjs.org/eslint/-/eslint-9.5.0.tgz";
- sha512 = "+NAOZFrW/jFTS3dASCGBxX1pkFD0/fsO+hfAkJ4TyYKwgsXZbqzrw+seCYFCcPCYXvnD67tAnglU7GQTz6kcVw==";
+ url = "https://registry.npmjs.org/eslint/-/eslint-9.7.0.tgz";
+ sha512 = "FzJ9D/0nGiCGBf8UXO/IGLTgLVzIxze1zpfA8Ton2mjLovXdAPlYDv+MQDcqj3TmrhAGYfOpz9RfR+ent0AgAw==";
};
};
"eslint-config-prettier-8.10.0" = {
@@ -24216,13 +23946,13 @@ let
sha512 = "oVNDqzBC9h3GO+NTgWeLMhhGigy6/bQaQbHS+0z7C4YEu/qK/yxHvca/2PTZtGNPsCrHwOTgKMrwu02A9iPBmw==";
};
};
- "eslint-plugin-vue-9.26.0" = {
+ "eslint-plugin-vue-9.27.0" = {
name = "eslint-plugin-vue";
packageName = "eslint-plugin-vue";
- version = "9.26.0";
+ version = "9.27.0";
src = fetchurl {
- url = "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-9.26.0.tgz";
- sha512 = "eTvlxXgd4ijE1cdur850G6KalZqk65k1JKoOI2d1kT3hr8sPD07j1q98FRFdNnpxBELGPWxZmInxeHGF/GxtqQ==";
+ url = "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-9.27.0.tgz";
+ sha512 = "5Dw3yxEyuBSXTzT5/Ge1X5kIkRTQ3nvBn/VwPwInNiZBSJOO/timWMUaflONnFBzU6NhB68lxnCda7ULV5N7LA==";
};
};
"eslint-rule-docs-1.1.235" = {
@@ -24252,13 +23982,13 @@ let
sha512 = "dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==";
};
};
- "eslint-scope-8.0.1" = {
+ "eslint-scope-8.0.2" = {
name = "eslint-scope";
packageName = "eslint-scope";
- version = "8.0.1";
+ version = "8.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.0.1.tgz";
- sha512 = "pL8XjgP4ZOmmwfFE8mEhSxA7ZY4C+LWyqjQ3o4yWkkmD0qcMT9kkW3zWHOczhWcjTSgqycYAgwSlXvZltv65og==";
+ url = "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.0.2.tgz";
+ sha512 = "6E4xmrTw5wtxnLA5wYL3WDfhZ/1bUBGOXV0zQvVRDOtrR8D0p6W7fs3JweNYhwRYeGvd/1CKX2se0/2s7Q/nJA==";
};
};
"eslint-utils-2.1.0" = {
@@ -24324,13 +24054,13 @@ let
sha512 = "kTUIGKQ/mDPFoJ0oVfcmyJn4iBDRptjNVIzwIFR7tqWXdVI9xfA2RMwY/gbSpJG3lkdWNEjLap/NqVHZiJsdfg==";
};
};
- "espree-10.0.1" = {
+ "espree-10.1.0" = {
name = "espree";
packageName = "espree";
- version = "10.0.1";
+ version = "10.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/espree/-/espree-10.0.1.tgz";
- sha512 = "MWkrWZbJsL2UwnjxTX3gG8FneachS/Mwg7tdGXce011sJd5b0JG54vat5KHnfSBODZ3Wvzd2WnjxyzsRoVv+ww==";
+ url = "https://registry.npmjs.org/espree/-/espree-10.1.0.tgz";
+ sha512 = "M1M6CpiE6ffoigIOWYO9UDP8TMUw9kqb21tf+08IgDYjCsOvCuDt4jQcZmoYxx+w7zlKw9/N0KXfto+I8/FrXA==";
};
};
"espree-3.5.4" = {
@@ -24387,13 +24117,13 @@ let
sha512 = "eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==";
};
};
- "esquery-1.5.0" = {
+ "esquery-1.6.0" = {
name = "esquery";
packageName = "esquery";
- version = "1.5.0";
+ version = "1.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz";
- sha512 = "YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==";
+ url = "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz";
+ sha512 = "ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==";
};
};
"esrap-1.2.2" = {
@@ -24450,15 +24180,6 @@ let
sha512 = "xbgqcrkIVbIG+lI/gzbvd9SGTJL4zqJKBFttUl5pP27KhAjtMKbX/mQXJ7qgyXpMgVy/zvpm0xoQQaGL8OloOw==";
};
};
- "estree-walker-0.6.1" = {
- name = "estree-walker";
- packageName = "estree-walker";
- version = "0.6.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/estree-walker/-/estree-walker-0.6.1.tgz";
- sha512 = "SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==";
- };
- };
"estree-walker-2.0.2" = {
name = "estree-walker";
packageName = "estree-walker";
@@ -24513,13 +24234,13 @@ let
sha512 = "J1gDRkLpuGNvWYzWslBQR9cDV4nd4kfvVTE/Wy4Kkm4yb3EYRSlyi0eB/inTsSTTVyA0+HyzHgbr95Fn/Z1fSw==";
};
};
- "ethereum-cryptography-2.2.0" = {
+ "ethereum-cryptography-2.2.1" = {
name = "ethereum-cryptography";
packageName = "ethereum-cryptography";
- version = "2.2.0";
+ version = "2.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-2.2.0.tgz";
- sha512 = "hsm9JhfytIf8QME/3B7j4bc8V+VdTU+Vas1aJlvIS96ffoNAosudXvGoEvWmc7QZYdkC8mrMJz9r0fcbw7GyCA==";
+ url = "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-2.2.1.tgz";
+ sha512 = "r/W8lkHSiTLxUxW8Rf3u4HGB0xQweG2RyETjywylKZSzLWoWAijRz8WCuOtJ6wah+avllXBqZuk29HCCvhEIRg==";
};
};
"ethjs-unit-0.1.6" = {
@@ -24711,15 +24432,6 @@ let
sha512 = "kJJfVbI/lZE1PZYDI5VPxp8zXPO9rtxOkhpZ0jMKha56AI9y2gGVC6bkukStQf0ka5Rh15BA5m7cCCH4jmHqkw==";
};
};
- "execa-3.4.0" = {
- name = "execa";
- packageName = "execa";
- version = "3.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/execa/-/execa-3.4.0.tgz";
- sha512 = "r9vdGQk4bmCuK1yKQu1KTwcT2zwfWdbdaXfCtAh+5nU/4fSX+JAb7vZGvI5naJrQlvONrEB20jeruESI69530g==";
- };
- };
"execa-5.0.0" = {
name = "execa";
packageName = "execa";
@@ -24756,13 +24468,13 @@ let
sha512 = "VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==";
};
};
- "execa-9.2.0" = {
+ "execa-9.3.0" = {
name = "execa";
packageName = "execa";
- version = "9.2.0";
+ version = "9.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/execa/-/execa-9.2.0.tgz";
- sha512 = "vpOyYg7UAVKLAWWtRS2gAdgkT7oJbCn0me3gmUmxZih4kd3MF/oo8kNTBTIbkO3yuuF5uB4ZCZfn8BOolITYhg==";
+ url = "https://registry.npmjs.org/execa/-/execa-9.3.0.tgz";
+ sha512 = "l6JFbqnHEadBoVAVpN5dl2yCyfX28WoBAGaoQcNmLLSedOxTxcn2Qa83s8I/PA5i56vWru2OHOtrwF7Om2vqlg==";
};
};
"execall-2.0.0" = {
@@ -24801,15 +24513,6 @@ let
sha512 = "MsG3prOVw1WtLXAZbM3KiYtooKR1LvxHh3VHsVtIy0uiUu8usxgB/94DP2HxtD/661lLdB6yzQ09lGJSQr6nkg==";
};
};
- "exit-hook-2.2.1" = {
- name = "exit-hook";
- packageName = "exit-hook";
- version = "2.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/exit-hook/-/exit-hook-2.2.1.tgz";
- sha512 = "eNTPlAD67BmP31LDINZ3U7HSF8l57TxOY2PmBJ1shpCvpnxBF93mWCE8YHBnXs8qiUZJc9WDcWIeC3a2HIAMfw==";
- };
- };
"exit-hook-4.0.0" = {
name = "exit-hook";
packageName = "exit-hook";
@@ -25062,31 +24765,22 @@ let
sha512 = "fCbcJv8ZwabDg0M/3PmHUxfr/WKHGMpAicR9TfGdhANV4M1GBDSrBTenHIK3aegyRN5S6eDwlvyNFiLynnc19w==";
};
};
- "express-prom-bundle-6.5.0" = {
+ "express-prom-bundle-7.0.0" = {
name = "express-prom-bundle";
packageName = "express-prom-bundle";
- version = "6.5.0";
+ version = "7.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/express-prom-bundle/-/express-prom-bundle-6.5.0.tgz";
- sha512 = "paFAm0FK7TV1Ln6Blh9edDt2mJ4Pk6Py/fjhZDMcoMHENYryBjCpnXDXuCu8NE1kkvp58IrPcAAkNeNqdvZnnw==";
+ url = "https://registry.npmjs.org/express-prom-bundle/-/express-prom-bundle-7.0.0.tgz";
+ sha512 = "VwVaCyGBGHkHdecpTqRdW1Jm2fXK8weCUKjGjNWorc9g4M+cZ3xoj+N9uQzfRWfIPXJG5QOaiAziOIalQzMwgA==";
};
};
- "express-request-id-1.4.1" = {
- name = "express-request-id";
- packageName = "express-request-id";
- version = "1.4.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/express-request-id/-/express-request-id-1.4.1.tgz";
- sha512 = "qpxK6XhDYtdx9FvxwCHkUeZVWtkGbWR87hBAzGECfwYF/QQCPXEwwB2/9NGkOR1tT7/aLs9mma3CT0vjSzuZVw==";
- };
- };
- "express-session-1.17.3" = {
+ "express-session-1.18.0" = {
name = "express-session";
packageName = "express-session";
- version = "1.17.3";
+ version = "1.18.0";
src = fetchurl {
- url = "https://registry.npmjs.org/express-session/-/express-session-1.17.3.tgz";
- sha512 = "4+otWXlShYlG1Ma+2Jnn+xgKUZTMJ5QD3YvfilX3AcocOAbIkVylSWEklzALe/+Pu4qV6TYBj5GwOBFfdKqLBw==";
+ url = "https://registry.npmjs.org/express-session/-/express-session-1.18.0.tgz";
+ sha512 = "m93QLWr0ju+rOwApSsyso838LQwgfs44QtOP/WBiwtAgPIo/SAh1a5c6nn2BR6mFNZehTpqKDESzP+fRHVbxwQ==";
};
};
"express-validator-6.15.0" = {
@@ -25440,6 +25134,24 @@ let
sha512 = "VhXlQgj9ioXCqGstD37E/HBeqEGV/qOD/kmbVG8h5xKBYvM1L3lR1Zn4555cQ8GkYbJa8aJSipLPndE1k6zK2w==";
};
};
+ "fast-unique-numbers-8.0.13" = {
+ name = "fast-unique-numbers";
+ packageName = "fast-unique-numbers";
+ version = "8.0.13";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fast-unique-numbers/-/fast-unique-numbers-8.0.13.tgz";
+ sha512 = "7OnTFAVPefgw2eBJ1xj2PGGR9FwYzSUso9decayHgCDX4sJkHLdcsYTytTg+tYv+wKF3U8gJuSBz2jJpQV4u/g==";
+ };
+ };
+ "fast-uri-3.0.1" = {
+ name = "fast-uri";
+ packageName = "fast-uri";
+ version = "3.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.1.tgz";
+ sha512 = "MWipKbbYiYI0UC7cl8m/i/IWTqfC8YXsqjzybjddLsFjStroQzsHXkc73JutMvBiXmOvapk+axIl79ig5t55Bw==";
+ };
+ };
"fast-url-parser-1.1.3" = {
name = "fast-url-parser";
packageName = "fast-url-parser";
@@ -25701,6 +25413,15 @@ let
sha512 = "XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==";
};
};
+ "file-entry-cache-9.0.0" = {
+ name = "file-entry-cache";
+ packageName = "file-entry-cache";
+ version = "9.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-9.0.0.tgz";
+ sha512 = "6MgEugi8p2tiUhqO7GnPsmbCCzj0YRCwwaTbpGRyKZesjRSzkqkAE9fPp7V2yMs5hwfgbQLgdvSSkGNg1s5Uvw==";
+ };
+ };
"file-or-stdin-1.0.2" = {
name = "file-or-stdin";
packageName = "file-or-stdin";
@@ -26169,6 +25890,15 @@ let
sha512 = "f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==";
};
};
+ "flat-cache-5.0.0" = {
+ name = "flat-cache";
+ packageName = "flat-cache";
+ version = "5.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/flat-cache/-/flat-cache-5.0.0.tgz";
+ sha512 = "JrqFmyUl2PnPi1OvLyTVHnQvwQ0S+e6lGSwu8OkAZlSaNIZciTY2H/cOOROxsBA1m/LZNHDsqAgDZt6akWcjsQ==";
+ };
+ };
"flatiron-0.4.3" = {
name = "flatiron";
packageName = "flatiron";
@@ -26232,15 +25962,6 @@ let
sha512 = "GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==";
};
};
- "follow-redirects-1.15.5" = {
- name = "follow-redirects";
- packageName = "follow-redirects";
- version = "1.15.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.5.tgz";
- sha512 = "vSFWUON1B+yAw1VN4xMfxgn5fTUiaOzAJCKBwIIgT/+7CuGy9+r+5gITvP62j3RmaD5Ph65UaERdOSRGUzZtgw==";
- };
- };
"follow-redirects-1.15.6" = {
name = "follow-redirects";
packageName = "follow-redirects";
@@ -26340,13 +26061,13 @@ let
sha512 = "J+ler7Ta54FwwNcx6wQRDhTIbNeyDcARMkOcguEqnEdtm0jKvN3Li3PDAb2Du3ubJYEWfYL83XMROXdsXAXycw==";
};
};
- "foreground-child-3.2.0" = {
+ "foreground-child-3.2.1" = {
name = "foreground-child";
packageName = "foreground-child";
- version = "3.2.0";
+ version = "3.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/foreground-child/-/foreground-child-3.2.0.tgz";
- sha512 = "CrWQNaEl1/6WeZoarcM9LHupTo3RpZO2Pdk1vktwzPiQTsJnAKJmm3TACKeG5UZbWDfaH2AbvYxzP96y0MT7fA==";
+ url = "https://registry.npmjs.org/foreground-child/-/foreground-child-3.2.1.tgz";
+ sha512 = "PXUUyLqrR2XCWICfv6ukppP96sdFwWbNEnfEMt7jNsISjMsvaLNinAHNDYyvkyU+SZG2BTSbT5NjG+vZslfGTA==";
};
};
"forever-agent-0.6.1" = {
@@ -26475,13 +26196,13 @@ let
sha512 = "buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==";
};
};
- "fp-ts-2.16.6" = {
+ "fp-ts-2.16.8" = {
name = "fp-ts";
packageName = "fp-ts";
- version = "2.16.6";
+ version = "2.16.8";
src = fetchurl {
- url = "https://registry.npmjs.org/fp-ts/-/fp-ts-2.16.6.tgz";
- sha512 = "v7w209VPj4L6pPn/ftFRJu31Oa8QagwcVw7BZmLCUWU4AQoc954rX9ogSIahDf67Pg+GjPbkW/Kn9XWnlWJG0g==";
+ url = "https://registry.npmjs.org/fp-ts/-/fp-ts-2.16.8.tgz";
+ sha512 = "nmDtNqmMZkOxu0M5hkrS9YA15/KPkYkILb6Axg9XBAoUoYEtzg+LFmVWqZrl9FNttsW0qIUpx9RCA9INbv+Bxw==";
};
};
"fragment-cache-0.2.1" = {
@@ -26799,15 +26520,6 @@ let
sha512 = "xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==";
};
};
- "fsevents-2.3.3" = {
- name = "fsevents";
- packageName = "fsevents";
- version = "2.3.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz";
- sha512 = "5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==";
- };
- };
"fstream-1.0.12" = {
name = "fstream";
packageName = "fstream";
@@ -26988,15 +26700,6 @@ let
sha512 = "H7cUpwCQSiJmAHM4c/aFu6fUfrhWXW1ncyh8ftxEPMu6AiYkHw9K8br720TGPZJbk5eOH2bynjZD1yPvdDAmag==";
};
};
- "generic-pool-3.9.0" = {
- name = "generic-pool";
- packageName = "generic-pool";
- version = "3.9.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/generic-pool/-/generic-pool-3.9.0.tgz";
- sha512 = "hymDOu5B53XvN4QT9dBmZxPX4CWhBPPLguTZ9MMFeFa/Kg0xWVfylOVNlJji/E7yTZWFd/q9GO5TxDLq156D7g==";
- };
- };
"gensequence-2.3.0" = {
name = "gensequence";
packageName = "gensequence";
@@ -27168,15 +26871,6 @@ let
sha512 = "zmZIaQTWnNQb4R4fJUEp/FC51eZsc6EkErspy3xtIYStaq8EB/hDIWipxsal+E8rz0qD7f2sL/NA9Xee4RInJw==";
};
};
- "get-source-2.0.12" = {
- name = "get-source";
- packageName = "get-source";
- version = "2.0.12";
- src = fetchurl {
- url = "https://registry.npmjs.org/get-source/-/get-source-2.0.12.tgz";
- sha512 = "X5+4+iD+HoSeEED+uwrQ07BOQr0kEDFMVqqpBuI+RaZBpBpHCuXxo70bjar6f0b0u/DQJsJ7ssurpP0V60Az+w==";
- };
- };
"get-stdin-4.0.1" = {
name = "get-stdin";
packageName = "get-stdin";
@@ -27303,13 +26997,13 @@ let
sha512 = "g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==";
};
};
- "get-tsconfig-4.7.5" = {
+ "get-tsconfig-4.7.6" = {
name = "get-tsconfig";
packageName = "get-tsconfig";
- version = "4.7.5";
+ version = "4.7.6";
src = fetchurl {
- url = "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.7.5.tgz";
- sha512 = "ZCuZCnlqNzjb4QprAzXKdpp/gh6KTxSJuw3IBsPnV/7fV4NxC9ckB+vPTt8w7fJA0TaSD7c55BR47JD6MEDyDw==";
+ url = "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.7.6.tgz";
+ sha512 = "ZAqrLlu18NbDdRaHq+AKXzAmqIUPswPWKUchfytdAjiRFnCe5ojG2bstg6mRiZabkKfCoL/e98pbBELIV/YCeA==";
};
};
"get-uri-6.0.3" = {
@@ -27456,13 +27150,13 @@ let
sha512 = "ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ==";
};
};
- "git-url-parse-13.1.0" = {
+ "git-url-parse-14.0.0" = {
name = "git-url-parse";
packageName = "git-url-parse";
- version = "13.1.0";
+ version = "14.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/git-url-parse/-/git-url-parse-13.1.0.tgz";
- sha512 = "5FvPJP/70WkIprlUZ33bm4UAaFdjcLkJLpWft1BeZKqwR0uhhNGoKwlUaPtVb4LxCSQ++erHapRak9kWGj+FCA==";
+ url = "https://registry.npmjs.org/git-url-parse/-/git-url-parse-14.0.0.tgz";
+ sha512 = "NnLweV+2A4nCvn4U/m2AoYu0pPKlsmhK9cknG7IMwsjFY1S2jxM+mAhsDxyxfCIGfGaD+dozsyX4b6vkYc83yQ==";
};
};
"gitconfiglocal-1.0.0" = {
@@ -27537,15 +27231,6 @@ let
sha512 = "fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==";
};
};
- "glob-10.3.12" = {
- name = "glob";
- packageName = "glob";
- version = "10.3.12";
- src = fetchurl {
- url = "https://registry.npmjs.org/glob/-/glob-10.3.12.tgz";
- sha512 = "TCNv8vJ+xz4QiqTpfOJA7HvYv+tNIRHKfUWw/q+v2jdgN4ebz+KY9tGx5J4rHP0o84mNP+ApH66HRX8us3Khqg==";
- };
- };
"glob-10.4.1" = {
name = "glob";
packageName = "glob";
@@ -27555,6 +27240,24 @@ let
sha512 = "2jelhlq3E4ho74ZyVLN03oKdAZVUa6UDZzFLVH1H7dnoax+y9qyaq8zBkfDIggjniU19z0wU18y16jMB2eyVIw==";
};
};
+ "glob-10.4.5" = {
+ name = "glob";
+ packageName = "glob";
+ version = "10.4.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz";
+ sha512 = "7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==";
+ };
+ };
+ "glob-11.0.0" = {
+ name = "glob";
+ packageName = "glob";
+ version = "11.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/glob/-/glob-11.0.0.tgz";
+ sha512 = "9UiX/Bl6J2yaBbxKoEBRm4Cipxgok8kQYcOPEhScPwebu2I0HoQOuYdIO6S3hLuWoZgpDpwQZMzTFxgpkyT76g==";
+ };
+ };
"glob-6.0.4" = {
name = "glob";
packageName = "glob";
@@ -27708,15 +27411,6 @@ let
sha512 = "wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==";
};
};
- "global-agent-3.0.0" = {
- name = "global-agent";
- packageName = "global-agent";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/global-agent/-/global-agent-3.0.0.tgz";
- sha512 = "PT6XReJ+D07JvGoxQMkT6qji/jVNfX/h364XHZOWeRzy64sSFr+xJ5OX7LI3b4MPQzdL4H8Y8M0xzPpsVMwA8Q==";
- };
- };
"global-directory-4.0.1" = {
name = "global-directory";
packageName = "global-directory";
@@ -27880,13 +27574,13 @@ let
sha512 = "Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==";
};
};
- "globby-14.0.1" = {
+ "globby-14.0.2" = {
name = "globby";
packageName = "globby";
- version = "14.0.1";
+ version = "14.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/globby/-/globby-14.0.1.tgz";
- sha512 = "jOMLD2Z7MAhyG8aJpNOpmziMOP4rPLcc95oQPKXBazW82z+CEgPFBQvEpRUa1KeIMUJo4Wsm+q6uzO/Q/4BksQ==";
+ url = "https://registry.npmjs.org/globby/-/globby-14.0.2.tgz";
+ sha512 = "s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==";
};
};
"globby-6.1.0" = {
@@ -28105,15 +27799,6 @@ let
sha512 = "WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==";
};
};
- "graceful-readlink-1.0.1" = {
- name = "graceful-readlink";
- packageName = "graceful-readlink";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz";
- sha512 = "8tLu60LgxF6XpdbK8OW3FA+IfTNBn1ZHGHKF4KQbEeSkajYw5PlYJcKluntgegDPTg8UkHjpet1T82vk6TQ68w==";
- };
- };
"gradle-to-js-2.0.1" = {
name = "gradle-to-js";
packageName = "gradle-to-js";
@@ -28123,22 +27808,13 @@ let
sha512 = "is3hDn9zb8XXnjbEeAEIqxTpLHUiGBqjegLmXPuyMBfKAggpadWFku4/AP8iYAGBX6qR9/5UIUIp47V0XI3aMw==";
};
};
- "grammarly-richtext-encoder-0.0.0" = {
- name = "grammarly-richtext-encoder";
- packageName = "grammarly-richtext-encoder";
- version = "0.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/grammarly-richtext-encoder/-/grammarly-richtext-encoder-0.0.0.tgz";
- sha512 = "vH2bsdjoJLQ33sZCquG1GyiFyK+Qk8n04NzqHLWTnY9l8lg08AGUyA8ZgeZHdi3I81nrdcGO13V9qYyP6sdshw==";
- };
- };
- "grant-5.4.21" = {
+ "grant-5.4.22" = {
name = "grant";
packageName = "grant";
- version = "5.4.21";
+ version = "5.4.22";
src = fetchurl {
- url = "https://registry.npmjs.org/grant/-/grant-5.4.21.tgz";
- sha512 = "QaoZudI9Gmh2W415gd71Iul6gpVH9sG1SkjfnGHtqYZopQDQ5PUVxRol5zFCrwGi9S0EbExbelHlZScgdChg2w==";
+ url = "https://registry.npmjs.org/grant/-/grant-5.4.22.tgz";
+ sha512 = "DEi+/JjXT84mmFYhSmv+SX14v+3Z7vuCIYAMwtdPCTXHMSLhWqSYqWAMXDUQZuV7yaJv2d84AYnkCFNooLKBsA==";
};
};
"grapheme-splitter-1.0.4" = {
@@ -28204,6 +27880,15 @@ let
sha512 = "5gghUc24tP9HRznNpV2+FIoq3xKkj5dTQqf4v0CpdPbFVwFkWoxOM+o+2OC9ZSvjEMTjfmG9QT+gcvggTwW1zw==";
};
};
+ "graphql-15.9.0" = {
+ name = "graphql";
+ packageName = "graphql";
+ version = "15.9.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/graphql/-/graphql-15.9.0.tgz";
+ sha512 = "GCOQdvm7XxV1S4U4CGrsdlEN37245eC8P9zaYCMr6K1BG0IPGy5lUwmJsEOGyl1GD6HXjOtl2keCP9asRBwNvA==";
+ };
+ };
"graphql-16.8.1" = {
name = "graphql";
packageName = "graphql";
@@ -28213,13 +27898,13 @@ let
sha512 = "59LZHPdGZVh695Ud9lRzPBVTtlX9ZCV150Er2W43ro37wVof0ctenSaskPPjN7lVTIN8mSZt8PHUNKZuNQUuxw==";
};
};
- "graphql-16.8.2" = {
+ "graphql-16.9.0" = {
name = "graphql";
packageName = "graphql";
- version = "16.8.2";
+ version = "16.9.0";
src = fetchurl {
- url = "https://registry.npmjs.org/graphql/-/graphql-16.8.2.tgz";
- sha512 = "cvVIBILwuoSyD54U4cF/UXDh5yAobhNV/tPygI4lZhgOIJQE/WLWC4waBRb4I6bDVYb3OVx3lfHbaQOEoUD5sg==";
+ url = "https://registry.npmjs.org/graphql/-/graphql-16.9.0.tgz";
+ sha512 = "GGTKBX4SD7Wdb8mqeDLni2oaRGYQWjWHGKPQ24ZMnUtKfcsVoiv4uX8+LJr1K6U5VW2Lu1BwJnj7uiori0YtRw==";
};
};
"graphql-config-3.0.3" = {
@@ -28249,13 +27934,13 @@ let
sha512 = "8ewD6otGO43vg2TiEGjoLz3CweTwfaf4ZnqfNREqZXS2JSJGXtsRBOMMknCxMfFVh4x14ql3jyDrXcyAAtbmkQ==";
};
};
- "graphql-language-service-server-2.13.0" = {
+ "graphql-language-service-server-2.13.1" = {
name = "graphql-language-service-server";
packageName = "graphql-language-service-server";
- version = "2.13.0";
+ version = "2.13.1";
src = fetchurl {
- url = "https://registry.npmjs.org/graphql-language-service-server/-/graphql-language-service-server-2.13.0.tgz";
- sha512 = "/bvH7NPmWrc8rOCgV/Y1HVuKhjdZRMDkGQGEoWJFcGWDaLIp9LcffTLmeZA66NVS7pDmMeriKa2tH8LfPXH6OA==";
+ url = "https://registry.npmjs.org/graphql-language-service-server/-/graphql-language-service-server-2.13.1.tgz";
+ sha512 = "Bmkf+qW61XSV49P55U0K8ceG2++ctjhrefe62G5Iwm72RtvMlB41FUpv5KA/P79nxLNPPH1Fa+07whfxLylbHw==";
};
};
"graphql-subscriptions-1.2.1" = {
@@ -28861,13 +28546,13 @@ let
sha512 = "n8aSFscI9r3gfhOcAECAtXFaQ1uy4QSke6bnaL+iymYZ/dWs9cqDqHM+rALfsHUwukUbxsdlECZ0pKmJdQ/4OA==";
};
};
- "helmet-4.6.0" = {
+ "helmet-7.1.0" = {
name = "helmet";
packageName = "helmet";
- version = "4.6.0";
+ version = "7.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/helmet/-/helmet-4.6.0.tgz";
- sha512 = "HVqALKZlR95ROkrnesdhbbZJFi/rIVSoNq6f3jA/9u6MIbTsPh3xZwihjeI5+DO/2sOV6HMHooXcEOuwskHpTg==";
+ url = "https://registry.npmjs.org/helmet/-/helmet-7.1.0.tgz";
+ sha512 = "g+HZqgfbpXdCkme/Cd/mZkV0aV3BZZZSugecH03kl38m/Kmdx8jKjBikpDj2cr+Iynv4KpYEviojNdTJActJAg==";
};
};
"help-me-3.0.0" = {
@@ -28879,6 +28564,15 @@ let
sha512 = "hx73jClhyk910sidBB7ERlnhMlFsJJIBqSVMFDwPN8o2v9nmp5KgLq1Xz1Bf1fCMMZ6mPrX159iG0VLy/fPMtQ==";
};
};
+ "help-me-5.0.0" = {
+ name = "help-me";
+ packageName = "help-me";
+ version = "5.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/help-me/-/help-me-5.0.0.tgz";
+ sha512 = "7xgomUX6ADmcYzFik0HzAxh/73YlKR9bmFzf51CZwR+b6YtzU2m0u49hQCqV6SvlqIqsaxovfwdvbnsw3b/zpg==";
+ };
+ };
"hexoid-1.0.0" = {
name = "hexoid";
packageName = "hexoid";
@@ -28978,15 +28672,6 @@ let
sha512 = "xIcQYMnhcx2Nr4JTjsFmwwnr9vldugPy9uVm0o87bjqqWMv9GaqsTeT+i99wTl0mk1uLxJtHxLb8kymqTENQsw==";
};
};
- "hosted-git-info-6.1.1" = {
- name = "hosted-git-info";
- packageName = "hosted-git-info";
- version = "6.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-6.1.1.tgz";
- sha512 = "r0EI+HBMcXadMrugk0GCQ+6BQV39PiWAZVfq7oIckeGiN7sjRGyQxPdft3nQekFTCQbYxLBH+/axZMeH8UX6+w==";
- };
- };
"hosted-git-info-7.0.2" = {
name = "hosted-git-info";
packageName = "hosted-git-info";
@@ -29041,13 +28726,13 @@ let
sha512 = "D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==";
};
};
- "html-encoding-sniffer-3.0.0" = {
+ "html-encoding-sniffer-4.0.0" = {
name = "html-encoding-sniffer";
packageName = "html-encoding-sniffer";
- version = "3.0.0";
+ version = "4.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz";
- sha512 = "oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==";
+ url = "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-4.0.0.tgz";
+ sha512 = "Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ==";
};
};
"html-entities-1.4.0" = {
@@ -29482,13 +29167,13 @@ let
sha512 = "dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==";
};
};
- "https-proxy-agent-7.0.4" = {
+ "https-proxy-agent-7.0.5" = {
name = "https-proxy-agent";
packageName = "https-proxy-agent";
- version = "7.0.4";
+ version = "7.0.5";
src = fetchurl {
- url = "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.4.tgz";
- sha512 = "wlwpilI7YdjSkWaQ/7omYBMTliDcmCN8OLihO6I9B86g06lMyAoqgoDpV0XqoaPOKj+0DIdAvnsWfyAAhmimcg==";
+ url = "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.5.tgz";
+ sha512 = "1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw==";
};
};
"human-signals-1.1.1" = {
@@ -29545,13 +29230,13 @@ let
sha512 = "Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==";
};
};
- "hybrid-chunk-store-1.2.4" = {
+ "hybrid-chunk-store-1.2.6" = {
name = "hybrid-chunk-store";
packageName = "hybrid-chunk-store";
- version = "1.2.4";
+ version = "1.2.6";
src = fetchurl {
- url = "https://registry.npmjs.org/hybrid-chunk-store/-/hybrid-chunk-store-1.2.4.tgz";
- sha512 = "wLVIU7rDAz0bQ9sOVwqNWV44A+yAitm+yw66vilkIhZ7V1lVQtiZBQ98YF4vr8rmbqnysgW+pW/PZ1UQtnQCCA==";
+ url = "https://registry.npmjs.org/hybrid-chunk-store/-/hybrid-chunk-store-1.2.6.tgz";
+ sha512 = "D8DkY6FT+exjw4b6uQ8z5QfUokcIb0YYPHaa/zpBdFIoS1CS7mjM4wnd2mGoo2XUeM5Y10C23AXOQRExoifPbA==";
};
};
"hyperdyperid-1.2.0" = {
@@ -29626,22 +29311,13 @@ let
sha512 = "soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==";
};
};
- "idb-6.1.5" = {
+ "idb-7.1.1" = {
name = "idb";
packageName = "idb";
- version = "6.1.5";
+ version = "7.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/idb/-/idb-6.1.5.tgz";
- sha512 = "IJtugpKkiVXQn5Y+LteyBCNk1N8xpGV3wWZk9EVtZWH8DYkjBn0bX1XnGP9RkyZF0sAcywa6unHqSWKe7q4LGw==";
- };
- };
- "idb-keyval-6.2.1" = {
- name = "idb-keyval";
- packageName = "idb-keyval";
- version = "6.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/idb-keyval/-/idb-keyval-6.2.1.tgz";
- sha512 = "8Sb3veuYCyrZL+VBt9LJfZjLUPWVvqn8tG28VqYNFCo43KHcKuq+b4EiXGeuaLAQWL2YmyDgMp2aSpH9JHsEQg==";
+ url = "https://registry.npmjs.org/idb/-/idb-7.1.1.tgz";
+ sha512 = "gchesWBzyvGHRO9W8tzUWFDycow5gwjvFKfyV9FF32Y7F50yZMp7mP+T2mJIWFx49zicqyC4uefHM17o6xKIVQ==";
};
};
"ieee754-1.1.13" = {
@@ -29716,15 +29392,6 @@ let
sha512 = "PY6Ii8o1jMRA1z4F2hRkH/xN59ox43DavKvD3oDpfurRlOJyAHpifIwpbdv1n4jt4ov0jSpw3kQ4GhJnpBL6WQ==";
};
};
- "ignore-walk-5.0.1" = {
- name = "ignore-walk";
- packageName = "ignore-walk";
- version = "5.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/ignore-walk/-/ignore-walk-5.0.1.tgz";
- sha512 = "yemi4pMf51WKT7khInJqAvsIGzoqYXblnsz0ql8tM+yi1EKYTY1evX4NAbJrLL/Aanr2HyZeluqU+Oi7MGHokw==";
- };
- };
"ignore-walk-6.0.5" = {
name = "ignore-walk";
packageName = "ignore-walk";
@@ -29842,13 +29509,13 @@ let
sha512 = "15gZoQ38eYjEjxkorfbcgBKBL6R7T459OuK+CpcWt7O3KF4uPCx2tD0uFETlUDIyo+1789crbMhTvQBSR5yBMg==";
};
};
- "immutable-4.3.6" = {
+ "immutable-4.3.7" = {
name = "immutable";
packageName = "immutable";
- version = "4.3.6";
+ version = "4.3.7";
src = fetchurl {
- url = "https://registry.npmjs.org/immutable/-/immutable-4.3.6.tgz";
- sha512 = "Ju0+lEMyzMVZarkTn/gqRpdqd5dOPaz1mCZ0SH3JV6iFw81PldE/PEB1hWVEA288HPt4WXW8O7AWxB10M+03QQ==";
+ url = "https://registry.npmjs.org/immutable/-/immutable-4.3.7.tgz";
+ sha512 = "1hqclzwYwjRDFLjcFxOM5AYkkG0rpFPpr1RLPMEuGczoS7YA8gLhy8SWXYRAA/XwfEHpfo3cw5JGioS32fnMRw==";
};
};
"import-fresh-3.3.0" = {
@@ -29914,6 +29581,15 @@ let
sha512 = "ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==";
};
};
+ "import-local-3.2.0" = {
+ name = "import-local";
+ packageName = "import-local";
+ version = "3.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/import-local/-/import-local-3.2.0.tgz";
+ sha512 = "2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==";
+ };
+ };
"import-meta-resolve-2.2.2" = {
name = "import-meta-resolve";
packageName = "import-meta-resolve";
@@ -30103,15 +29779,6 @@ let
sha512 = "QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==";
};
};
- "ini-4.1.2" = {
- name = "ini";
- packageName = "ini";
- version = "4.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/ini/-/ini-4.1.2.tgz";
- sha512 = "AMB1mvwR1pyBFY/nSevUX6y8nJWS63/SzUKD3JyQn97s4xgIdgQPT75IRouIiBAN4yLQBUShNYVW0+UG25daCw==";
- };
- };
"ini-4.1.3" = {
name = "ini";
packageName = "ini";
@@ -30121,13 +29788,13 @@ let
sha512 = "X7rqawQBvfdjS10YU1y1YVreA3SsLrW9dX2CewP2EbBJM4ypVNLDkO5y04gejPwKIY9lR+7r9gn3rFPt/kmWFg==";
};
};
- "init-package-json-5.0.0" = {
+ "init-package-json-6.0.3" = {
name = "init-package-json";
packageName = "init-package-json";
- version = "5.0.0";
+ version = "6.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/init-package-json/-/init-package-json-5.0.0.tgz";
- sha512 = "kBhlSheBfYmq3e0L1ii+VKe3zBTLL5lDCDWR+f9dLmEGSB3MqLlMlsolubSsyI88Bg6EA+BIMlomAnQ1SwgQBw==";
+ url = "https://registry.npmjs.org/init-package-json/-/init-package-json-6.0.3.tgz";
+ sha512 = "Zfeb5ol+H+eqJWHTaGca9BovufyGeIfr4zaaBorPmJBMrJ+KBnN+kQx2ZtXdsotUTgldHmHQV44xvUWOUA7E2w==";
};
};
"ink-2.7.1" = {
@@ -30292,22 +29959,13 @@ let
sha512 = "M1WuAmb7pn9zdFRtQYk26ZBoY043Sse0wVDdk4Bppr+JOXyQYybdtvK+l9wUibhtjdjvtoiNy8tk+EgsYIUqKg==";
};
};
- "inquirer-9.2.22" = {
+ "inquirer-9.3.6" = {
name = "inquirer";
packageName = "inquirer";
- version = "9.2.22";
+ version = "9.3.6";
src = fetchurl {
- url = "https://registry.npmjs.org/inquirer/-/inquirer-9.2.22.tgz";
- sha512 = "SqLLa/Oe5rZUagTR9z+Zd6izyatHglbmbvVofo1KzuVB54YHleWzeHNLoR7FOICGOeQSqeLh1cordb3MzhGcEw==";
- };
- };
- "inquirer-9.2.23" = {
- name = "inquirer";
- packageName = "inquirer";
- version = "9.2.23";
- src = fetchurl {
- url = "https://registry.npmjs.org/inquirer/-/inquirer-9.2.23.tgz";
- sha512 = "kod5s+FBPIDM2xiy9fu+6wdU/SkK5le5GS9lh4FEBjBHqiMgD9lLFbCbuqFNAjNL2ZOy9Wd9F694IOzN9pZHBA==";
+ url = "https://registry.npmjs.org/inquirer/-/inquirer-9.3.6.tgz";
+ sha512 = "riK/iQB2ctwkpWYgjjWIRv3MBLt2gzb2Sj0JNQNbyTXgyXsLWcDPJ5WS5ZDTCx7BRFnJsARtYh+58fjP5M2Y0Q==";
};
};
"inquirer-autocomplete-prompt-3.0.1" = {
@@ -30517,15 +30175,6 @@ let
sha512 = "j8grHGDzv1v+8T1sAQ+3boTCntFPfvxLCkNcxB1J8qA0lUN+fAlSyYd+RXKvaPRL4AGyPxViutBEJHNXOyUdFQ==";
};
};
- "inversify-6.0.2" = {
- name = "inversify";
- packageName = "inversify";
- version = "6.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/inversify/-/inversify-6.0.2.tgz";
- sha512 = "i9m8j/7YIv4mDuYXUAcrpKPSaju/CIly9AHK5jvCBeoiM/2KEsuCQTTP+rzSWWpLYWRukdXFSl6ZTk2/uumbiA==";
- };
- };
"invert-kv-1.0.0" = {
name = "invert-kv";
packageName = "invert-kv";
@@ -30535,6 +30184,15 @@ let
sha512 = "xgs2NH9AE66ucSq4cNG1nhSFghr5l6tdL15Pk+jl46bmmBapgoaY/AacXyaDznAqmGL99TiLSQgO/XazFSKYeQ==";
};
};
+ "ioredis-5.4.1" = {
+ name = "ioredis";
+ packageName = "ioredis";
+ version = "5.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ioredis/-/ioredis-5.4.1.tgz";
+ sha512 = "2YZsvl7jopIa1gaePkeMtd9rAcSjOOjPtpcLlOeusyO+XH2SK5ZcT+UCrElPP+WVIInh2TzeI4XW9ENaSLVVHA==";
+ };
+ };
"iota-array-1.0.0" = {
name = "iota-array";
packageName = "iota-array";
@@ -30886,13 +30544,13 @@ let
sha512 = "ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==";
};
};
- "is-core-module-2.13.1" = {
+ "is-core-module-2.15.0" = {
name = "is-core-module";
packageName = "is-core-module";
- version = "2.13.1";
+ version = "2.15.0";
src = fetchurl {
- url = "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz";
- sha512 = "hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==";
+ url = "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.0.tgz";
+ sha512 = "Dd+Lb2/zvk9SKy1TGCt1wFJFo/MWBPMX5x7KcvLajWTGuomczdQX61PvY5yK6SVACwpoexWo81IfFyoKY2QnTA==";
};
};
"is-core-module-2.9.0" = {
@@ -31336,15 +30994,6 @@ let
sha512 = "1JQwulVNjx8UqkPE/bqDaxtH4PXCe/2VRh/y3p99heOV87HG4Id5/VfDswd+YiAfHcRTfDlWgISycnHuhZq1aw==";
};
};
- "is-nan-1.3.2" = {
- name = "is-nan";
- packageName = "is-nan";
- version = "1.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-nan/-/is-nan-1.3.2.tgz";
- sha512 = "E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==";
- };
- };
"is-natural-number-4.0.1" = {
name = "is-natural-number";
packageName = "is-natural-number";
@@ -32272,13 +31921,22 @@ let
sha512 = "N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==";
};
};
- "jackspeak-3.4.0" = {
+ "jackspeak-3.4.3" = {
name = "jackspeak";
packageName = "jackspeak";
- version = "3.4.0";
+ version = "3.4.3";
src = fetchurl {
- url = "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.0.tgz";
- sha512 = "JVYhQnN59LVPFCEcVa2C3CrEKYacvjRfqIQl+h8oi91aLYQVWRYbxjPcv1bUiUy/kLmQaANrYfNMCO3kuEDHfw==";
+ url = "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz";
+ sha512 = "OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==";
+ };
+ };
+ "jackspeak-4.0.1" = {
+ name = "jackspeak";
+ packageName = "jackspeak";
+ version = "4.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jackspeak/-/jackspeak-4.0.1.tgz";
+ sha512 = "cub8rahkh0Q/bw1+GxP7aeSe29hHHn2V4m29nnDlvCdlgU+3UGxkZp7Z53jLUdpX3jdTO0nJZUDl3xvbWc2Xog==";
};
};
"jade-0.27.0" = {
@@ -32290,13 +31948,13 @@ let
sha512 = "VPrAZm2V9+0tqISXjca7ipt2LPMpLwnFZFM+1VG7q2LmiUQp1imCa++FgSqWxIs4W5gUTp/xlrUlx5xyFHYE6w==";
};
};
- "jake-10.9.1" = {
+ "jake-10.9.2" = {
name = "jake";
packageName = "jake";
- version = "10.9.1";
+ version = "10.9.2";
src = fetchurl {
- url = "https://registry.npmjs.org/jake/-/jake-10.9.1.tgz";
- sha512 = "61btcOHNnLnsOdtLgA5efqQWjnSi/vow5HbI7HMdKKWqvrKR1bLK3BPlJn9gcSaP2ewuamUSMB5XEy76KUIS2w==";
+ url = "https://registry.npmjs.org/jake/-/jake-10.9.2.tgz";
+ sha512 = "2P4SQ0HrLQ+fw6llpLnOaGAvN2Zu6778SJMrCUwns4fOoG9ayrTiZk3VV8sCPkVZF8ab0zksVpS8FDY5pRCNBA==";
};
};
"jest-diff-29.7.0" = {
@@ -32407,13 +32065,13 @@ let
sha512 = "NgB+lZLNoqISVy1rZocE9PZI36bL/77ie924Ri43yEvi9GUUMPeyVIr8KdFTMUlby1p0PBYMk9spIxEUQYqrJQ==";
};
};
- "joi-17.13.1" = {
+ "joi-17.13.3" = {
name = "joi";
packageName = "joi";
- version = "17.13.1";
+ version = "17.13.3";
src = fetchurl {
- url = "https://registry.npmjs.org/joi/-/joi-17.13.1.tgz";
- sha512 = "vaBlIKCyo4FCUtCm7Eu4QZd/q02bWcxfUO6YSXAZOWF6gzcLBeba8kwotUdYJjDLW8Cz8RywsSOqiNJZW0mNvg==";
+ url = "https://registry.npmjs.org/joi/-/joi-17.13.3.tgz";
+ sha512 = "otDA4ldcIx+ZXsKHWmp0YizCweVRZG96J10b0FevjfuncLO1oX59THoAmHkNubYJ+9gWsYsp5k8v4ib6oDv1fA==";
};
};
"join-async-iterator-1.1.1" = {
@@ -32461,13 +32119,13 @@ let
sha512 = "m4avr8yL8kmFN8psrbFFFmB/If14iN5o9nw/NgnnM+kybDJpRsAynV2BsfpTYrTRysYUdADVD7CkUUizgkpLfg==";
};
};
- "jquery.terminal-2.42.0" = {
+ "jquery.terminal-2.42.2" = {
name = "jquery.terminal";
packageName = "jquery.terminal";
- version = "2.42.0";
+ version = "2.42.2";
src = fetchurl {
- url = "https://registry.npmjs.org/jquery.terminal/-/jquery.terminal-2.42.0.tgz";
- sha512 = "poZX1qYCWRUXR12ex/SAh1U3chFCbZ81iN1ajUVbNAidQEGIqyPmHZd5FoSkjPs5jV6ckZLF3t4R6bao12g2Ag==";
+ url = "https://registry.npmjs.org/jquery.terminal/-/jquery.terminal-2.42.2.tgz";
+ sha512 = "TC3jRvCly1ZohSsy3m2UQjyOEYyZSl7YZQDUeF07nrQX1HAes+AznykYdhEPRHh2viYVp9GW0c1W+pm2eibLAw==";
};
};
"js-base64-2.6.3" = {
@@ -32641,22 +32299,22 @@ let
sha512 = "u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==";
};
};
- "jsdom-22.1.0" = {
+ "jsdom-23.0.1" = {
name = "jsdom";
packageName = "jsdom";
- version = "22.1.0";
+ version = "23.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/jsdom/-/jsdom-22.1.0.tgz";
- sha512 = "/9AVW7xNbsBv6GfWho4TTNjEo9fe6Zhf9O7s0Fhhr3u+awPwAJMKwAMXnkk5vBxflqLW9hTHX/0cs+P3gW+cQw==";
+ url = "https://registry.npmjs.org/jsdom/-/jsdom-23.0.1.tgz";
+ sha512 = "2i27vgvlUsGEBO9+/kJQRbtqtm+191b5zAZrU/UezVmnC2dlDAFLgDYJvAEi94T4kjsRKkezEtLQTgsNEsW2lQ==";
};
};
- "jsep-1.3.8" = {
+ "jsep-1.3.9" = {
name = "jsep";
packageName = "jsep";
- version = "1.3.8";
+ version = "1.3.9";
src = fetchurl {
- url = "https://registry.npmjs.org/jsep/-/jsep-1.3.8.tgz";
- sha512 = "qofGylTGgYj9gZFsHuyWAN4jr35eJ66qJCK4eKDnldohuUoQFbU3iZn2zjvEbd9wOAhP9Wx5DsAAduTyE1PSWQ==";
+ url = "https://registry.npmjs.org/jsep/-/jsep-1.3.9.tgz";
+ sha512 = "i1rBX5N7VPl0eYb6+mHNp52sEuaS2Wi8CDYx1X5sn9naevL78+265XJqy1qENEk7mRKwS06NHpUqiBwR7qeodw==";
};
};
"jsesc-0.5.0" = {
@@ -32677,103 +32335,76 @@ let
sha512 = "OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==";
};
};
- "jsii-1.100.0" = {
+ "jsii-5.4.12" = {
name = "jsii";
packageName = "jsii";
- version = "1.100.0";
+ version = "5.4.12";
src = fetchurl {
- url = "https://registry.npmjs.org/jsii/-/jsii-1.100.0.tgz";
- sha512 = "DUTvq90XyyIRE+O/CAIHXZwBsxVy9ZkFDGkDjUknYV84VyzlMnBkdptQq0oJj8LRPTMJl2yiiPPMsJCvuv01Xg==";
+ url = "https://registry.npmjs.org/jsii/-/jsii-5.4.12.tgz";
+ sha512 = "/6Mw+iSS8c/s1n2qH3TO1Bqd1YUY/aR0TZ2qTfOKN2UmmU4fwhZzSxrGRerPFQbhUm8v+8RS7kWEhSOv+eGQ9Q==";
};
};
- "jsii-5.3.29" = {
+ "jsii-5.4.26" = {
name = "jsii";
packageName = "jsii";
- version = "5.3.29";
+ version = "5.4.26";
src = fetchurl {
- url = "https://registry.npmjs.org/jsii/-/jsii-5.3.29.tgz";
- sha512 = "vEEOtjD8s/C8ORHvN87Bt9jHcY1diJoC1sS+TVnCkeb4V9q5fOEVr4gl/FsU5ea8dSWZHdd7VqCtr0jYAwKleg==";
+ url = "https://registry.npmjs.org/jsii/-/jsii-5.4.26.tgz";
+ sha512 = "vb1k7wsVfgYysXagV6ASStC7I+uEFRttSxpVSlz3HTNaoQYgQwiShkpqhRLlzYw9Pl5jERs+457QTVSj7Ze+zg==";
};
};
- "jsii-5.4.21" = {
- name = "jsii";
- packageName = "jsii";
- version = "5.4.21";
- src = fetchurl {
- url = "https://registry.npmjs.org/jsii/-/jsii-5.4.21.tgz";
- sha512 = "uCruIDzEEFHBwZRT5PiRSd2/KdsZWwHq8VWS5o8p5tngUGpz4BYdEG/jmOKYyjVz+ScVx+Ur/eN2zieTP6Ge2Q==";
- };
- };
- "jsii-pacmak-1.100.0" = {
+ "jsii-pacmak-1.101.0" = {
name = "jsii-pacmak";
packageName = "jsii-pacmak";
- version = "1.100.0";
+ version = "1.101.0";
src = fetchurl {
- url = "https://registry.npmjs.org/jsii-pacmak/-/jsii-pacmak-1.100.0.tgz";
- sha512 = "MxB4UYwpRjxZ/2y+LPy5HVkBciubU4T8d3A3mnj6Pj5lQfe3VZ9pStYHNTsv0q5J8xg4uIcc8/RhFHj1mzk2oA==";
+ url = "https://registry.npmjs.org/jsii-pacmak/-/jsii-pacmak-1.101.0.tgz";
+ sha512 = "07a04KtOj+Kmx+5XQVD1JG6QOh6JNqFWh4bbzMDKiFx7JoHhQnLq07b/OlUpCuP7J7Q9WaXXYM59EUQpXO07wg==";
};
};
- "jsii-pacmak-1.95.0" = {
+ "jsii-pacmak-1.98.0" = {
name = "jsii-pacmak";
packageName = "jsii-pacmak";
- version = "1.95.0";
+ version = "1.98.0";
src = fetchurl {
- url = "https://registry.npmjs.org/jsii-pacmak/-/jsii-pacmak-1.95.0.tgz";
- sha512 = "h/eo3p3jG4/Wtb9WdavvcgXzyN5QXZck3k0xvIWp5SKxFLorQ+TWhY7BHG0e+VXl+mxcni6BuQ5wFLavq65RQQ==";
+ url = "https://registry.npmjs.org/jsii-pacmak/-/jsii-pacmak-1.98.0.tgz";
+ sha512 = "p2H8IbiI3RNIUg+oRcJ9Xu1I7CgJUxCMpUl5IPzWAjz1qzhIKOzlkaAMGJfJZJQtib5kWI2OmZ6xBZScWg16+Q==";
};
};
- "jsii-reflect-1.100.0" = {
+ "jsii-reflect-1.101.0" = {
name = "jsii-reflect";
packageName = "jsii-reflect";
- version = "1.100.0";
+ version = "1.101.0";
src = fetchurl {
- url = "https://registry.npmjs.org/jsii-reflect/-/jsii-reflect-1.100.0.tgz";
- sha512 = "4hicwZirzhSqFRpX/USpvy6RewDi5mCkDESLjBSNpnGWhc3oVByX3x/KJyKQdjEfjVkflHWxSGJEA0qEMoXFUw==";
+ url = "https://registry.npmjs.org/jsii-reflect/-/jsii-reflect-1.101.0.tgz";
+ sha512 = "ZCFb+laktj/ekNadUYksf+jLZq4fjoQeNe344GwslJOaemGjgAeqy0atV2H8nvTYU8ubszFApUPpdoRvtxgdPw==";
};
};
- "jsii-rosetta-1.100.0" = {
+ "jsii-rosetta-5.4.14" = {
name = "jsii-rosetta";
packageName = "jsii-rosetta";
- version = "1.100.0";
+ version = "5.4.14";
src = fetchurl {
- url = "https://registry.npmjs.org/jsii-rosetta/-/jsii-rosetta-1.100.0.tgz";
- sha512 = "JeVS7twbDM48Z6IE9OJ24DzBs9scpeWa9XmI00bggMWV0xcP2GCTkz2c8cqEZU4DPggcygS1H+TWhQiSkol4gQ==";
+ url = "https://registry.npmjs.org/jsii-rosetta/-/jsii-rosetta-5.4.14.tgz";
+ sha512 = "SIaqWpzk33Tqr+x4M4umt9Z9CSxcr6i48pN6aTe7nzT3ELmBABsWzHHpnoCDUlLzx5OG+PKMfVdxoh7z3TX0lQ==";
};
};
- "jsii-rosetta-5.3.28" = {
+ "jsii-rosetta-5.4.25" = {
name = "jsii-rosetta";
packageName = "jsii-rosetta";
- version = "5.3.28";
+ version = "5.4.25";
src = fetchurl {
- url = "https://registry.npmjs.org/jsii-rosetta/-/jsii-rosetta-5.3.28.tgz";
- sha512 = "pvfaaMYJhsGz9BXmQenlC+aey2HTRiPwlTr7FcH4wr0THkKbIwChPpS26YWSGyNLmTqDZUvmQv+xDtMx5qFXGg==";
+ url = "https://registry.npmjs.org/jsii-rosetta/-/jsii-rosetta-5.4.25.tgz";
+ sha512 = "tXVABsWJMknMNhUpGkbOWaqHYv45vRSxO2ZLY+s+Eiti1R/G2XeGWJd/a9MJDauLaOVODpzN6z1GQ+WYZjZlIw==";
};
};
- "jsii-rosetta-5.4.21" = {
- name = "jsii-rosetta";
- packageName = "jsii-rosetta";
- version = "5.4.21";
- src = fetchurl {
- url = "https://registry.npmjs.org/jsii-rosetta/-/jsii-rosetta-5.4.21.tgz";
- sha512 = "g7E935trSNQ8rbs+VYQiDBbeoaqS0sO7HuJ+bz27x7pvKBri5Uk9w+aLtmFI8UhHX7JgZ6mUxruY0zRW4AqCyQ==";
- };
- };
- "jsii-srcmak-0.1.1039" = {
+ "jsii-srcmak-0.1.1193" = {
name = "jsii-srcmak";
packageName = "jsii-srcmak";
- version = "0.1.1039";
+ version = "0.1.1193";
src = fetchurl {
- url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.1039.tgz";
- sha512 = "3lBjyxBy5UpPGK8bXFmVRzaoK6caDQ5DO40Qbyv3LOWtrsuUQmuVI2/5wRwNtfg6sFzOFD3+kE3LZuNXo7QE/Q==";
- };
- };
- "jsii-srcmak-0.1.1154" = {
- name = "jsii-srcmak";
- packageName = "jsii-srcmak";
- version = "0.1.1154";
- src = fetchurl {
- url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.1154.tgz";
- sha512 = "x2iOuiUAg4xhk3dEz67ElrbSdMk+KSHCOV9CT82PWrmehXg+kZ4pudoAk8/4KLiS9UR0ZLtugZQQPMIZp6E67w==";
+ url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.1193.tgz";
+ sha512 = "q3pEUmudzgl75ZXqHXWB6m7CMil9rAcY1Ln7hsWHgpf4DPeS7YEvUa+jOQ5YY4T3ljN8Q0G08jJIPutQ1osqaA==";
};
};
"json-buffer-3.0.0" = {
@@ -32965,6 +32596,15 @@ let
sha512 = "Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==";
};
};
+ "json-stringify-nice-1.1.4" = {
+ name = "json-stringify-nice";
+ packageName = "json-stringify-nice";
+ version = "1.1.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/json-stringify-nice/-/json-stringify-nice-1.1.4.tgz";
+ sha512 = "5Z5RFW63yxReJ7vANgW6eZFGWaQvnPE3WNmZoOJrSkGju2etKA2L5rrOa1sm877TVTFt57A80BH1bArcmlLfPw==";
+ };
+ };
"json-stringify-pretty-compact-3.0.0" = {
name = "json-stringify-pretty-compact";
packageName = "json-stringify-pretty-compact";
@@ -33019,13 +32659,13 @@ let
sha512 = "XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==";
};
};
- "jsonata-1.8.7" = {
+ "jsonata-2.0.5" = {
name = "jsonata";
packageName = "jsonata";
- version = "1.8.7";
+ version = "2.0.5";
src = fetchurl {
- url = "https://registry.npmjs.org/jsonata/-/jsonata-1.8.7.tgz";
- sha512 = "tOW2/hZ+nR2bcQZs+0T62LVe5CHaNa3laFFWb/262r39utN6whJGBF7IR2Wq1QXrDbhftolk5gggW8uUJYlBTQ==";
+ url = "https://registry.npmjs.org/jsonata/-/jsonata-2.0.5.tgz";
+ sha512 = "wEse9+QLIIU5IaCgtJCPsFi/H4F3qcikWzF4bAELZiRz08ohfx3Q6CjDRf4ZPF5P/92RI3KIHtb7u3jqPaHXdQ==";
};
};
"jsonc-parser-1.0.3" = {
@@ -33064,13 +32704,13 @@ let
sha512 = "gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==";
};
};
- "jsonc-parser-3.2.1" = {
+ "jsonc-parser-3.3.1" = {
name = "jsonc-parser";
packageName = "jsonc-parser";
- version = "3.2.1";
+ version = "3.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.1.tgz";
- sha512 = "AilxAyFOAcK5wA1+LeaySVBrHsGQvUFCDWXKpZjzaL0PqW+xfBOttn8GNtWKFWqneyMZj41MWF9Kl6iPWLwgOA==";
+ url = "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.3.1.tgz";
+ sha512 = "HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==";
};
};
"jsonfile-1.0.1" = {
@@ -33271,6 +32911,24 @@ let
sha512 = "Qush0uP+G8ZScpGMZvHUiRfI0YBWuB3gVBYlI0v0vvOJt5FLicco+IkP0a50LqTTQhmts/m6tP5SWE+USyIvcQ==";
};
};
+ "just-diff-6.0.2" = {
+ name = "just-diff";
+ packageName = "just-diff";
+ version = "6.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/just-diff/-/just-diff-6.0.2.tgz";
+ sha512 = "S59eriX5u3/QhMNq3v/gm8Kd0w8OS6Tz2FS1NG4blv+z0MuQcBRJyFWjdovM0Rad4/P4aUPFtnkNjMjyMlMSYA==";
+ };
+ };
+ "just-diff-apply-5.5.0" = {
+ name = "just-diff-apply";
+ packageName = "just-diff-apply";
+ version = "5.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/just-diff-apply/-/just-diff-apply-5.5.0.tgz";
+ sha512 = "OYTthRfSh55WOItVqwpefPtNt2VdKsq5AnAK6apdtR6yCH8pr0CmSr710J0Mf+WdQy7K/OzMy7K2MgAfdQURDw==";
+ };
+ };
"jwa-1.4.1" = {
name = "jwa";
packageName = "jwa";
@@ -33289,15 +32947,6 @@ let
sha512 = "jrZ2Qx916EA+fq9cEAeCROWPTfCwi1IVHqT2tapuqLEVVDKFDENFw1oL+MwrTvH6msKxsd1YTDVw6uKEcsrLEA==";
};
};
- "jwk-to-pem-2.0.5" = {
- name = "jwk-to-pem";
- packageName = "jwk-to-pem";
- version = "2.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/jwk-to-pem/-/jwk-to-pem-2.0.5.tgz";
- sha512 = "L90jwellhO8jRKYwbssU9ifaMVqajzj3fpRjDKcsDzrslU9syRbFqfkXtT4B89HYAap+xsxNcxgBSB09ig+a7A==";
- };
- };
"jws-3.2.2" = {
name = "jws";
packageName = "jws";
@@ -33406,13 +33055,13 @@ let
sha512 = "fwGvRXWjaSzMed8iQHkZH41wvaoq+3tIhuIbkqBBYFuuJtWoDWqgCYTADGPqLyaLX4Ct8aP5NtAxCaxk4cfcCg==";
};
};
- "katex-0.16.9" = {
+ "katex-0.16.10" = {
name = "katex";
packageName = "katex";
- version = "0.16.9";
+ version = "0.16.10";
src = fetchurl {
- url = "https://registry.npmjs.org/katex/-/katex-0.16.9.tgz";
- sha512 = "fsSYjWS0EEOwvy81j3vRA8TEAhQhKiqO+FQaKWp0m39qwOzHVBgAUBIXWj1pB+O2W3fIpNa6Y9KSKCVbfPhyAQ==";
+ url = "https://registry.npmjs.org/katex/-/katex-0.16.10.tgz";
+ sha512 = "ZiqaC04tp2O5utMsl2TEZTXxa6WSC4yo0fv5ML++D3QZv/vx2Mct0mTlRx3O+uUkjfuAgOkzsCmq5MiUEsDDdA==";
};
};
"keep-alive-agent-0.0.1" = {
@@ -33604,13 +33253,13 @@ let
sha512 = "Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A==";
};
};
- "ky-1.3.0" = {
+ "ky-1.4.0" = {
name = "ky";
packageName = "ky";
- version = "1.3.0";
+ version = "1.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/ky/-/ky-1.3.0.tgz";
- sha512 = "QUViPXlgP6NKA57IAPff/aZSmRA6qs9wKxlEpayBorwRZG+x2LG7jD4kXh8lnH3q/gkUr64NyZ7kwErUEZJmlw==";
+ url = "https://registry.npmjs.org/ky/-/ky-1.4.0.tgz";
+ sha512 = "tPhhoGUiEiU/WXR4rt8klIoLdnTtyu+9jVKHd/wauEjYud32jyn63mzKWQweaQrHWxBQtYoVtdcEnYX1LosnFQ==";
};
};
"labeled-stream-splicer-2.0.2" = {
@@ -33676,13 +33325,22 @@ let
sha512 = "KvNT4XqAMzdcL6ka6Tl3i2lYeFDgXNCuIX+xNx6ZMVR1dFq+idXd9FLKNMOIx0t9mJ9/HudyX4oZWXZQ0UJHeg==";
};
};
- "launch-editor-2.6.1" = {
+ "latest-version-9.0.0" = {
+ name = "latest-version";
+ packageName = "latest-version";
+ version = "9.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/latest-version/-/latest-version-9.0.0.tgz";
+ sha512 = "7W0vV3rqv5tokqkBAFV1LbR7HPOWzXQDpDgEuib/aJ1jsZZx6x3c2mBI+TJhJzOhkGeaLbCKEHXEXLfirtG2JA==";
+ };
+ };
+ "launch-editor-2.8.0" = {
name = "launch-editor";
packageName = "launch-editor";
- version = "2.6.1";
+ version = "2.8.0";
src = fetchurl {
- url = "https://registry.npmjs.org/launch-editor/-/launch-editor-2.6.1.tgz";
- sha512 = "eB/uXmFVpY4zezmGp5XtU21kwo7GBbKB+EQ+UZeWtGb9yAM5xt/Evk+lYH3eRNAtId+ej4u7TYPFZ07w4s7rRw==";
+ url = "https://registry.npmjs.org/launch-editor/-/launch-editor-2.8.0.tgz";
+ sha512 = "vJranOAJrI/llyWGRQqiDM+adrw+k83fvmmx3+nV47g3+36xM15jE+zyZ6Ffel02+xSvuM0b2GDRosXZkbb6wA==";
};
};
"layout-base-1.0.2" = {
@@ -33694,15 +33352,6 @@ let
sha512 = "8h2oVEZNktL4BH2JCOI90iD1yXwL6iNW7KcCKT2QZgQJR2vbqDsldCTPRU9NifTCqHZci57XvQQ15YTu+sTYPg==";
};
};
- "layout-base-2.0.1" = {
- name = "layout-base";
- packageName = "layout-base";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/layout-base/-/layout-base-2.0.1.tgz";
- sha512 = "dp3s92+uNI1hWIpPGH3jK2kxE2lMjdXdr+DH8ynZHpd6PUlH6x6cbuXnoMmiNumznqaNO31xu9e79F0uuZ0JFg==";
- };
- };
"lazy-1.0.11" = {
name = "lazy";
packageName = "lazy";
@@ -33901,22 +33550,22 @@ let
sha512 = "+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==";
};
};
- "libnpmaccess-7.0.2" = {
+ "libnpmaccess-8.0.6" = {
name = "libnpmaccess";
packageName = "libnpmaccess";
- version = "7.0.2";
+ version = "8.0.6";
src = fetchurl {
- url = "https://registry.npmjs.org/libnpmaccess/-/libnpmaccess-7.0.2.tgz";
- sha512 = "vHBVMw1JFMTgEk15zRsJuSAg7QtGGHpUSEfnbcRL1/gTBag9iEfJbyjpDmdJmwMhvpoLoNBtdAUCdGnaP32hhw==";
+ url = "https://registry.npmjs.org/libnpmaccess/-/libnpmaccess-8.0.6.tgz";
+ sha512 = "uM8DHDEfYG6G5gVivVl+yQd4pH3uRclHC59lzIbSvy7b5FEwR+mU49Zq1jEyRtRFv7+M99mUW9S0wL/4laT4lw==";
};
};
- "libnpmpublish-7.3.0" = {
+ "libnpmpublish-9.0.9" = {
name = "libnpmpublish";
packageName = "libnpmpublish";
- version = "7.3.0";
+ version = "9.0.9";
src = fetchurl {
- url = "https://registry.npmjs.org/libnpmpublish/-/libnpmpublish-7.3.0.tgz";
- sha512 = "fHUxw5VJhZCNSls0KLNEG0mCD2PN1i14gH5elGOgiVnU3VgTcRahagYP2LKI1m0tFCJ+XrAm0zVYyF5RCbXzcg==";
+ url = "https://registry.npmjs.org/libnpmpublish/-/libnpmpublish-9.0.9.tgz";
+ sha512 = "26zzwoBNAvX9AWOPiqqF6FG4HrSCPsHFkQm7nT+xU1ggAujL/eae81RnCv4CJ2In9q9fh10B88sYSzKCUh/Ghg==";
};
};
"lie-3.1.1" = {
@@ -34153,6 +33802,15 @@ let
sha512 = "rJysbR9GKIalhTbVL2tYbF2hVyDnrf7pFUZBwjPaMIdadYHmeT+EVi/Bu3qd7ETQPahTotg2WRCatXwRBW554g==";
};
};
+ "listr2-8.2.3" = {
+ name = "listr2";
+ packageName = "listr2";
+ version = "8.2.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/listr2/-/listr2-8.2.3.tgz";
+ sha512 = "Lllokma2mtoniUOS94CcOErHWAug5iu7HOmDrvWgpw8jyQH2fomgB+7lZS4HWZxytUuQwkGOwe49FvwVaA85Xw==";
+ };
+ };
"lmdb-2.5.3" = {
name = "lmdb";
packageName = "lmdb";
@@ -34171,13 +33829,13 @@ let
sha512 = "9bMdFfc80S+vSldBmG3HOuLVHnxRdNTlpzR6QDnzqCQtCzGUEAGTzBKYMeIM+I/sU4oZfgbcbS7X7F65/z/oxQ==";
};
};
- "load-bmfont-1.4.1" = {
+ "load-bmfont-1.4.2" = {
name = "load-bmfont";
packageName = "load-bmfont";
- version = "1.4.1";
+ version = "1.4.2";
src = fetchurl {
- url = "https://registry.npmjs.org/load-bmfont/-/load-bmfont-1.4.1.tgz";
- sha512 = "8UyQoYmdRDy81Brz6aLAUhfZLwr5zV0L3taTQ4hju7m6biuwiWiJXjPhBJxbUQJA8PrkvJ/7Enqmwk2sM14soA==";
+ url = "https://registry.npmjs.org/load-bmfont/-/load-bmfont-1.4.2.tgz";
+ sha512 = "qElWkmjW9Oq1F9EI5Gt7aD9zcdHb9spJCW1L/dmPf7KzCCEJxq8nhHz5eCgI9aMf7vrG/wyaCqdsI+Iy9ZTlog==";
};
};
"load-ip-set-3.0.1" = {
@@ -35332,6 +34990,15 @@ let
sha512 = "5UtUDQ/6edw4ofyljDNcOVJQ4c7OjDro4h3y8e1GQL5iYElYclVHJ3zeWchylvMaKnDbDilC8irOVyexnA/Slw==";
};
};
+ "log-update-6.0.0" = {
+ name = "log-update";
+ packageName = "log-update";
+ version = "6.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/log-update/-/log-update-6.0.0.tgz";
+ sha512 = "niTvB4gqvtof056rRIrTZvjNYE4rCUzO6X/X+kYjd7WFxXeJ0NwEFnRxX6ehkvv3jTwrXnNdtAak5XYZuIyPFw==";
+ };
+ };
"log4js-6.9.1" = {
name = "log4js";
packageName = "log4js";
@@ -35341,13 +35008,13 @@ let
sha512 = "1somDdy9sChrr9/f4UlzhdaGfDR2c/SaD2a4T7qEkG4jTS57/B3qmnjLYePwQ8cqWnUHZI0iAKxMBpCZICiZ2g==";
};
};
- "logform-2.6.0" = {
+ "logform-2.6.1" = {
name = "logform";
packageName = "logform";
- version = "2.6.0";
+ version = "2.6.1";
src = fetchurl {
- url = "https://registry.npmjs.org/logform/-/logform-2.6.0.tgz";
- sha512 = "1ulHeNPp6k/LD8H91o7VYFBng5i1BDE7HoKxVbZiGFidS1Rj65qcywLxX+pVfAPoQJEjRdvKcusKwOupHCVOVQ==";
+ url = "https://registry.npmjs.org/logform/-/logform-2.6.1.tgz";
+ sha512 = "CdaO738xRapbKIMVn2m4F6KTj4j7ooJ8POVnebSgKo3KBz5axNXRAL7ZdRjIV6NOr2Uf4vjtRkxrFETOioCqSA==";
};
};
"logidrom-0.3.1" = {
@@ -35539,15 +35206,6 @@ let
sha512 = "5OUtoiVIGU4VXBOshidmtOsvBIvcQR6FD/RzWSvaeHyxCGB+PCUCu+52lqMfdc0h/2CLvHhZS4TwUmMQrrMbBQ==";
};
};
- "lru-cache-10.0.3" = {
- name = "lru-cache";
- packageName = "lru-cache";
- version = "10.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/lru-cache/-/lru-cache-10.0.3.tgz";
- sha512 = "B7gr+F6MkqB3uzINHXNctGieGsRTMwIBgxkp0yq/5BwcuDzD4A8wQpHQW6vDAm1uKSLQghmRdD9sKqf2vJ1cEg==";
- };
- };
"lru-cache-10.2.2" = {
name = "lru-cache";
packageName = "lru-cache";
@@ -35557,6 +35215,24 @@ let
sha512 = "9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==";
};
};
+ "lru-cache-10.4.3" = {
+ name = "lru-cache";
+ packageName = "lru-cache";
+ version = "10.4.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz";
+ sha512 = "JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==";
+ };
+ };
+ "lru-cache-11.0.0" = {
+ name = "lru-cache";
+ packageName = "lru-cache";
+ version = "11.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lru-cache/-/lru-cache-11.0.0.tgz";
+ sha512 = "Qv32eSV1RSCfhY3fpPE2GNZ8jgM9X7rdAfemLWqTUxwiyIC4jJ6Sy0fZ8H+oLWevO6i4/bizg7c8d8i6bxrzbA==";
+ };
+ };
"lru-cache-2.2.0" = {
name = "lru-cache";
packageName = "lru-cache";
@@ -35639,22 +35315,13 @@ let
sha256 = "f813d671f8f8088d70d29f7a7770bdd5ed41ed97240ae9346d7ced0c094ee049";
};
};
- "luxon-1.28.1" = {
+ "luxon-3.4.4" = {
name = "luxon";
packageName = "luxon";
- version = "1.28.1";
+ version = "3.4.4";
src = fetchurl {
- url = "https://registry.npmjs.org/luxon/-/luxon-1.28.1.tgz";
- sha512 = "gYHAa180mKrNIUJCbwpmD0aTu9kV0dREDrwNnuyFAsO1Wt0EVYSZelPnJlbj9HplzXX/YWXHFTL45kvZ53M0pw==";
- };
- };
- "magic-string-0.25.9" = {
- name = "magic-string";
- packageName = "magic-string";
- version = "0.25.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/magic-string/-/magic-string-0.25.9.tgz";
- sha512 = "RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==";
+ url = "https://registry.npmjs.org/luxon/-/luxon-3.4.4.tgz";
+ sha512 = "zobTr7akeGHnv7eBOXcRgMeCP6+uyYsczwmeRCauvpvaAltgNyTbLH/+VaEAPUeWBT+1GuNmz4wC/6jtQzbbVA==";
};
};
"magic-string-0.30.10" = {
@@ -35783,15 +35450,6 @@ let
sha512 = "NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w==";
};
};
- "make-fetch-happen-11.1.1" = {
- name = "make-fetch-happen";
- packageName = "make-fetch-happen";
- version = "11.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-11.1.1.tgz";
- sha512 = "rLWS7GCSTcEujjVBs2YqG7Y4643u8ucvCJeSRqiLYhesrDuzeuFIk37xREzAsfQaqzl8b9rNCE4m6J8tvX4Q8w==";
- };
- };
"make-fetch-happen-13.0.1" = {
name = "make-fetch-happen";
packageName = "make-fetch-happen";
@@ -36098,15 +35756,6 @@ let
sha512 = "h1S0f3HzPtaNTaIBXu/3PVsXhKgZGk9DYrqp+bNZwp1wjYhJnEKggossj+DCCQ72+2y3Kcd7fNP2cEkp9jK6Ig==";
};
};
- "matcher-3.0.0" = {
- name = "matcher";
- packageName = "matcher";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/matcher/-/matcher-3.0.0.tgz";
- sha512 = "OkeDaAZ/bQCxeFAozM55PKcKU0yJMPGifLwV4Qgjitu+5MoAfSQN4lsLJeXZ1b8w0x+/Emda6MZgXS1jvsapng==";
- };
- };
"math-random-1.0.4" = {
name = "math-random";
packageName = "math-random";
@@ -36593,13 +36242,13 @@ let
sha512 = "EGowvkkgbMcIChjMTMkESFDbZeSh8xZ7kNSF0hAiAN4Jh6jgHCRS0Ga/+C8y6Au+oqpezRHCfPsmJ2+DwAgiwQ==";
};
};
- "memfs-4.9.2" = {
+ "memfs-4.9.4" = {
name = "memfs";
packageName = "memfs";
- version = "4.9.2";
+ version = "4.9.4";
src = fetchurl {
- url = "https://registry.npmjs.org/memfs/-/memfs-4.9.2.tgz";
- sha512 = "f16coDZlTG1jskq3mxarwB+fGRrd0uXWt+o1WIhRfOwbXQZqUDsTVxQBFK9JjRQHblg8eAG2JSbprDXKjc7ijQ==";
+ url = "https://registry.npmjs.org/memfs/-/memfs-4.9.4.tgz";
+ sha512 = "Xlj8b2rU11nM6+KU6wC7cuWcHQhVINWCUgdPS4Ar9nPxLaOya3RghqK7ALyDW2QtGebYAYs6uEdEVnwPVT942A==";
};
};
"memory-cache-0.2.0" = {
@@ -36746,13 +36395,13 @@ let
sha512 = "8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==";
};
};
- "mermaid-10.6.1" = {
+ "mermaid-10.9.1" = {
name = "mermaid";
packageName = "mermaid";
- version = "10.6.1";
+ version = "10.9.1";
src = fetchurl {
- url = "https://registry.npmjs.org/mermaid/-/mermaid-10.6.1.tgz";
- sha512 = "Hky0/RpOw/1il9X8AvzOEChfJtVvmXm+y7JML5C//ePYMy0/9jCEmW1E1g86x9oDfW9+iVEdTV/i+M6KWRNs4A==";
+ url = "https://registry.npmjs.org/mermaid/-/mermaid-10.9.1.tgz";
+ sha512 = "Mx45Obds5W1UkW1nv/7dHRsbfMM1aOKA2+Pxs/IGHNonygDHwmng8xTHyS9z4KWVi0rbko8gjiBmuwwXQ7tiNA==";
};
};
"meros-1.1.4" = {
@@ -37457,6 +37106,15 @@ let
sha512 = "jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==";
};
};
+ "mime-4.0.0-beta.1" = {
+ name = "mime";
+ packageName = "mime";
+ version = "4.0.0-beta.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mime/-/mime-4.0.0-beta.1.tgz";
+ sha512 = "8/p99P1RV17prytee/A6D+8shNqdDzyvGJ/CVfiuXwh4cTsv3P3qGyaYSx2hdqnqbKKqYUfTC5zAjCtcd1BShw==";
+ };
+ };
"mime-4.0.1" = {
name = "mime";
packageName = "mime";
@@ -37511,6 +37169,15 @@ let
sha512 = "sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==";
};
};
+ "mime-db-1.53.0" = {
+ name = "mime-db";
+ packageName = "mime-db";
+ version = "1.53.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mime-db/-/mime-db-1.53.0.tgz";
+ sha512 = "oHlN/w+3MQ3rba9rqFr6V/ypF10LSkdwUysQL7GkXoTgIWeV+tcXGA852TBxH+gsh8UWoyhR1hKcoMJTuWflpg==";
+ };
+ };
"mime-types-2.1.18" = {
name = "mime-types";
packageName = "mime-types";
@@ -37682,15 +37349,6 @@ let
sha512 = "r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==";
};
};
- "miniflare-3.20240610.0" = {
- name = "miniflare";
- packageName = "miniflare";
- version = "3.20240610.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/miniflare/-/miniflare-3.20240610.0.tgz";
- sha512 = "J6aXmkII5gcq+kC4TurxKiR4rC++apPST/K8P/YjqoQQgrJ+NRPacBhf6iVh8R3ujnXYXaq+Ae+gm+LM0XHK/w==";
- };
- };
"minimalistic-assert-1.0.1" = {
name = "minimalistic-assert";
packageName = "minimalistic-assert";
@@ -37709,6 +37367,15 @@ let
sha512 = "JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==";
};
};
+ "minimatch-10.0.1" = {
+ name = "minimatch";
+ packageName = "minimatch";
+ version = "10.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/minimatch/-/minimatch-10.0.1.tgz";
+ sha512 = "ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ==";
+ };
+ };
"minimatch-3.0.4" = {
name = "minimatch";
packageName = "minimatch";
@@ -37754,15 +37421,6 @@ let
sha512 = "lIUdtK5hdofgCTu3aT0sOaHsYR37viUuIc0rwnnDXImbwFRcumyLMeZaM0t0I/fgxS6s6JMfu0rLD1Wz9pv1ng==";
};
};
- "minimatch-5.0.1" = {
- name = "minimatch";
- packageName = "minimatch";
- version = "5.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/minimatch/-/minimatch-5.0.1.tgz";
- sha512 = "nLDxIFRyhDblz3qMuq+SoRZED4+miJ/G+tdDrjkkkRnjAsBexeGpgjLEQ0blJy7rHhR2b93rhQY4SvyWu9v03g==";
- };
- };
"minimatch-5.1.2" = {
name = "minimatch";
packageName = "minimatch";
@@ -37835,13 +37493,13 @@ let
sha512 = "RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==";
};
};
- "minimatch-9.0.4" = {
+ "minimatch-9.0.5" = {
name = "minimatch";
packageName = "minimatch";
- version = "9.0.4";
+ version = "9.0.5";
src = fetchurl {
- url = "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz";
- sha512 = "KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==";
+ url = "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz";
+ sha512 = "G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==";
};
};
"minimist-0.0.10" = {
@@ -37988,15 +37646,6 @@ let
sha512 = "JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==";
};
};
- "minipass-json-stream-1.0.1" = {
- name = "minipass-json-stream";
- packageName = "minipass-json-stream";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/minipass-json-stream/-/minipass-json-stream-1.0.1.tgz";
- sha512 = "ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg==";
- };
- };
"minipass-pipeline-1.2.4" = {
name = "minipass-pipeline";
packageName = "minipass-pipeline";
@@ -38033,6 +37682,15 @@ let
sha512 = "bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==";
};
};
+ "minizlib-3.0.1" = {
+ name = "minizlib";
+ packageName = "minizlib";
+ version = "3.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/minizlib/-/minizlib-3.0.1.tgz";
+ sha512 = "umcy022ILvb5/3Djuu8LWeqUa8D68JaBzlttKeMWen48SjabqS3iY5w/vzeMzMUNhLDifyhbOwKDSznB1vvrwg==";
+ };
+ };
"mitt-1.2.0" = {
name = "mitt";
packageName = "mitt";
@@ -38096,6 +37754,15 @@ let
sha512 = "vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==";
};
};
+ "mkdirp-3.0.1" = {
+ name = "mkdirp";
+ packageName = "mkdirp";
+ version = "3.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mkdirp/-/mkdirp-3.0.1.tgz";
+ sha512 = "+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==";
+ };
+ };
"mkdirp-classic-0.5.3" = {
name = "mkdirp-classic";
packageName = "mkdirp-classic";
@@ -38159,15 +37826,6 @@ let
sha512 = "oPowVpTm8p3jsK2AKI+NzoS6TBKv7gWY/Hj4ZNh5YWiB3S4eP54y8vSEEgVUdrqgTbjwEzIunNAVQJGRW0bakQ==";
};
};
- "moment-2.29.4" = {
- name = "moment";
- packageName = "moment";
- version = "2.29.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/moment/-/moment-2.29.4.tgz";
- sha512 = "5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==";
- };
- };
"moment-2.30.1" = {
name = "moment";
packageName = "moment";
@@ -38186,15 +37844,6 @@ let
sha512 = "zp8slBaeHVn8VOr7aTVzXYYayoVtEF3XI9gmgimyR3PBZsBk4JlXlFgxmcKxRjBZ1voh9ao77u/qwMGSZVZ9+A==";
};
};
- "moment-timezone-0.5.43" = {
- name = "moment-timezone";
- packageName = "moment-timezone";
- version = "0.5.43";
- src = fetchurl {
- url = "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.43.tgz";
- sha512 = "72j3aNyuIsDxdF1i7CEgV2FfxM1r6aaqJyLB2vwb33mXYyoyLly+F1zbWqhA3/bVIoJ4szlUoMbUnVdid32NUQ==";
- };
- };
"moment-timezone-0.5.45" = {
name = "moment-timezone";
packageName = "moment-timezone";
@@ -38240,15 +37889,6 @@ let
sha512 = "4aE3U7CCBWgrQlQDMq8da4woBWDGHioJFiOZ8Ie6Yq2uwYQ9V2kGhTz4x3u6Wc+OU17nw0yc3rJ/lQ4jIiPe3A==";
};
};
- "mqtt-4.3.7" = {
- name = "mqtt";
- packageName = "mqtt";
- version = "4.3.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/mqtt/-/mqtt-4.3.7.tgz";
- sha512 = "ew3qwG/TJRorTz47eW46vZ5oBw5MEYbQZVaEji44j5lAUSQSqIEoul7Kua/BatBW0H0kKQcC9kwUHa1qzaWHSw==";
- };
- };
"mqtt-4.3.8" = {
name = "mqtt";
packageName = "mqtt";
@@ -38258,6 +37898,15 @@ let
sha512 = "2xT75uYa0kiPEF/PE0VPdavmEkoBzMT/UL9moid0rAvlCtV48qBwxD62m7Ld/4j8tSkIO1E/iqRl/S72SEOhOw==";
};
};
+ "mqtt-5.7.0" = {
+ name = "mqtt";
+ packageName = "mqtt";
+ version = "5.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mqtt/-/mqtt-5.7.0.tgz";
+ sha512 = "/o0CBYSjZzddmQDV2iglCafsA0xWKpqnS62tGbOLOliubBxszpXO1DAQPyfI7ZcPDG0b9ni7QITn+5FW1E2UTg==";
+ };
+ };
"mqtt-packet-6.10.0" = {
name = "mqtt-packet";
packageName = "mqtt-packet";
@@ -38267,6 +37916,15 @@ let
sha512 = "ja8+mFKIHdB1Tpl6vac+sktqy3gA8t9Mduom1BA75cI+R9AHnZOiaBQwpGiWnaVJLDGRdNhQmFaAqd7tkKSMGA==";
};
};
+ "mqtt-packet-9.0.0" = {
+ name = "mqtt-packet";
+ packageName = "mqtt-packet";
+ version = "9.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mqtt-packet/-/mqtt-packet-9.0.0.tgz";
+ sha512 = "8v+HkX+fwbodsWAZIZTI074XIoxVBOmPeggQuDFCGg1SqNcC+uoRMWu7J6QlJPqIUIJXmjNYYHxBBLr1Y/Df4w==";
+ };
+ };
"mri-1.2.0" = {
name = "mri";
packageName = "mri";
@@ -38339,13 +37997,13 @@ let
sha512 = "VoY2AaoowHZLLKyEb5FRzuhdSzXn5quGjcMKJOJHJPxp9baYZx5t6jiHUhp5aNRlqqlt+5GXQGovMLNKsrm1hg==";
};
};
- "msgpackr-1.10.2" = {
+ "msgpackr-1.11.0" = {
name = "msgpackr";
packageName = "msgpackr";
- version = "1.10.2";
+ version = "1.11.0";
src = fetchurl {
- url = "https://registry.npmjs.org/msgpackr/-/msgpackr-1.10.2.tgz";
- sha512 = "L60rsPynBvNE+8BWipKKZ9jHcSGbtyJYIwjRq0VrIvQ08cRjntGXJYW/tmciZ2IHWIY8WEW32Qa2xbh5+SKBZA==";
+ url = "https://registry.npmjs.org/msgpackr/-/msgpackr-1.11.0.tgz";
+ sha512 = "I8qXuuALqJe5laEBYoFykChhSXLikZmUhccjGsPuSJ/7uPip2TJ7lwdIQwWSAi0jGZDXv4WOP8Qg65QZRuXxXw==";
};
};
"muggle-string-0.4.1" = {
@@ -38943,15 +38601,6 @@ let
sha512 = "73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ==";
};
};
- "node-addon-api-5.1.0" = {
- name = "node-addon-api";
- packageName = "node-addon-api";
- version = "5.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/node-addon-api/-/node-addon-api-5.1.0.tgz";
- sha512 = "eh0GgfEkpnoWDq+VY8OyvYhFEzBk6jIYbRKdIlyTiAXIVJ8PyBaKb0rp7oDtoddbdoHWhq8wwr+XZ81F1rpNdA==";
- };
- };
"node-addon-api-6.1.0" = {
name = "node-addon-api";
packageName = "node-addon-api";
@@ -38961,13 +38610,13 @@ let
sha512 = "+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==";
};
};
- "node-addon-api-7.1.0" = {
+ "node-addon-api-7.1.1" = {
name = "node-addon-api";
packageName = "node-addon-api";
- version = "7.1.0";
+ version = "7.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.0.tgz";
- sha512 = "mNcltoe1R8o7STTegSOHdnJNN7s5EUvhoS7ShnTHDyOSd+8H+UdWODq6qSv67PjC8Zc5JRT8+oLAMCr0SIXw7g==";
+ url = "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.1.tgz";
+ sha512 = "5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==";
};
};
"node-api-version-0.2.0" = {
@@ -38997,13 +38646,13 @@ let
sha512 = "h66cRVEWnPQFxh5Y1hk9MNs6jvlB26CjT727ZztkIkPN+eyRI2c9powQrBJ9pty2Kj7IBySDnYHig7QElmU4Pg==";
};
};
- "node-datachannel-0.9.1" = {
+ "node-datachannel-0.10.1" = {
name = "node-datachannel";
packageName = "node-datachannel";
- version = "0.9.1";
+ version = "0.10.1";
src = fetchurl {
- url = "https://registry.npmjs.org/node-datachannel/-/node-datachannel-0.9.1.tgz";
- sha512 = "b6Uc6YN5We2/aZA6QGicxSdWUDSwlR+vcO/Dn44BY5gieF3AOwsL/zPD+Ril+1KvYDwVJkVbRIovbG76E4PpwA==";
+ url = "https://registry.npmjs.org/node-datachannel/-/node-datachannel-0.10.1.tgz";
+ sha512 = "rhxb1iQgbFLY6HMt3W6Xcs8Q1k4jIMgI7KduXcYvIn2UMKYK6e/eegya2caF/+XYAqTeo1743gOr11CXvJ/DJA==";
};
};
"node-domexception-1.0.0" = {
@@ -39123,15 +38772,6 @@ let
sha512 = "ofRW94Ab0T4AOh5Fk8t0h8OBWrmjb0SSB20xh1H8YnPV9EJ+f5AMoYSUQ2zgJ4Iq2HAK0I2l5/Nequ8YzFS3Hg==";
};
};
- "node-fetch-native-1.6.4" = {
- name = "node-fetch-native";
- packageName = "node-fetch-native";
- version = "1.6.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/node-fetch-native/-/node-fetch-native-1.6.4.tgz";
- sha512 = "IhOigYzAKHd244OC0JIMIUrjzctirCmPkaIfhDeGcEETWof5zKYUW7e7MYvChGWh/4CJeXEgsRyGzuF334rOOQ==";
- };
- };
"node-forge-0.10.0" = {
name = "node-forge";
packageName = "node-forge";
@@ -39168,13 +38808,13 @@ let
sha512 = "dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==";
};
};
- "node-gyp-10.1.0" = {
+ "node-gyp-10.2.0" = {
name = "node-gyp";
packageName = "node-gyp";
- version = "10.1.0";
+ version = "10.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/node-gyp/-/node-gyp-10.1.0.tgz";
- sha512 = "B4J5M1cABxPc5PwfjhbV5hoy2DP9p8lFXASnEN6hugXOa61416tnTZ29x9sSwAd0o99XNIcpvDDy1swAExsVKA==";
+ url = "https://registry.npmjs.org/node-gyp/-/node-gyp-10.2.0.tgz";
+ sha512 = "sp3FonBAaFe4aYTcFdZUn2NYkbP7xroPGYvQmP4Nl5PxamznItBnNCgjrVTKrEfQynInMsJvZrdmqUnysCJ8rw==";
};
};
"node-gyp-3.8.0" = {
@@ -39303,22 +38943,22 @@ let
sha512 = "SU00ZarexNlE4Rjdm83vglt5Y9yiQ+XI1XpflWlb7q7UTN1JUItm69xMeiQCTxtTfnzt+83T8Cx+vI2ED++VDA==";
};
};
- "node-red-admin-3.1.3" = {
+ "node-red-admin-4.0.0" = {
name = "node-red-admin";
packageName = "node-red-admin";
- version = "3.1.3";
+ version = "4.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/node-red-admin/-/node-red-admin-3.1.3.tgz";
- sha512 = "RRkjwLjriCKW3bqiU21y3j+wpZ4bDf2EH3IEqxwP6hT4ccIwEK8Nt9dPZRWD6NyWGbEVDSTM5H0/whaRdFCqSw==";
+ url = "https://registry.npmjs.org/node-red-admin/-/node-red-admin-4.0.0.tgz";
+ sha512 = "OP2IE/5r+TCeZBj5x+8MfslEjsxqGc1Er5rI5IMG3D/A3++3r0EkW+tlc0pKnX8lmKs1batgAtMIQbh4XkMY3w==";
};
};
- "node-releases-2.0.14" = {
+ "node-releases-2.0.18" = {
name = "node-releases";
packageName = "node-releases";
- version = "2.0.14";
+ version = "2.0.18";
src = fetchurl {
- url = "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz";
- sha512 = "y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==";
+ url = "https://registry.npmjs.org/node-releases/-/node-releases-2.0.18.tgz";
+ sha512 = "d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==";
};
};
"node-rsa-1.1.1" = {
@@ -39330,13 +38970,13 @@ let
sha512 = "Jd4cvbJMryN21r5HgxQOpMEqv+ooke/korixNNK3mGqfGJmy0M77WDDzo/05969+OkMy3XW1UuZsSmW9KQm7Fw==";
};
};
- "node-schedule-2.1.0" = {
+ "node-schedule-2.1.1" = {
name = "node-schedule";
packageName = "node-schedule";
- version = "2.1.0";
+ version = "2.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/node-schedule/-/node-schedule-2.1.0.tgz";
- sha512 = "nl4JTiZ7ZQDc97MmpTq9BQjYhq7gOtoh7SiPH069gBFBj0PzD8HI7zyFs6rzqL8Y5tTiEEYLxgtbx034YPrbyQ==";
+ url = "https://registry.npmjs.org/node-schedule/-/node-schedule-2.1.1.tgz";
+ sha512 = "OXdegQq03OmXEjt2hZP33W2YPs/E5BcFQks46+G2gAxs4gHOIVD1u7EqlYLYSKsaIpyKCK9Gbk0ta1/gjRSMRQ==";
};
};
"node-ssdp-2.9.1" = {
@@ -39510,22 +39150,13 @@ let
sha512 = "EBk5QKKuocMJhB3BILuKhmaPjI8vNRSpIfO9woLC6NyHVkKKdVEdAO1mrT0ZfxNR1lKwCcTkuZfmGIFdizZ8Pg==";
};
};
- "normalize-package-data-5.0.0" = {
+ "normalize-package-data-6.0.2" = {
name = "normalize-package-data";
packageName = "normalize-package-data";
- version = "5.0.0";
+ version = "6.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-5.0.0.tgz";
- sha512 = "h9iPVIfrVZ9wVYQnxFgtw1ugSvGEMOlyPWWtm8BMJhnwyEL/FLbYbTY3V3PpjI/BUK67n9PEWDu6eHzu1fB15Q==";
- };
- };
- "normalize-package-data-6.0.1" = {
- name = "normalize-package-data";
- packageName = "normalize-package-data";
- version = "6.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-6.0.1.tgz";
- sha512 = "6rvCfeRW+OEZagAB4lMLSNuTNYZWLVtKccK79VSTf//yTY5VOCgcpH80O+bZK8Neps7pUnd5G+QlMg1yV/2iZQ==";
+ url = "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-6.0.2.tgz";
+ sha512 = "V6gygoYb/5EmNI+MEGrWkC+e6+Rr7mTmfHrxDbLzxQogBkgzo76rkok0Am6thgSF7Mv2nLOajAJj5vDJZEFn7g==";
};
};
"normalize-path-2.1.1" = {
@@ -39681,15 +39312,6 @@ let
sha512 = "dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==";
};
};
- "npm-package-arg-10.1.0" = {
- name = "npm-package-arg";
- packageName = "npm-package-arg";
- version = "10.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-10.1.0.tgz";
- sha512 = "uFyyCEmgBfZTtrKk/5xDfHp6+MdrqGotX/VoOyEEl3mBwiEE5FlBaePanazJSVMPT7vKepcjYBY2ztg9A3yPIA==";
- };
- };
"npm-package-arg-11.0.2" = {
name = "npm-package-arg";
packageName = "npm-package-arg";
@@ -39699,6 +39321,15 @@ let
sha512 = "IGN0IAwmhDJwy13Wc8k+4PEbTPhpJnMtfR53ZbOyjkvmEcLS4nCwp6mvMWjS5sUjeiW3mpx6cHmuhKEu9XmcQw==";
};
};
+ "npm-package-arg-11.0.3" = {
+ name = "npm-package-arg";
+ packageName = "npm-package-arg";
+ version = "11.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-11.0.3.tgz";
+ sha512 = "sHGJy8sOC1YraBywpzQlIKBE4pBbGbiF95U6Auspzyem956E0+FtDtsx1ZxlOJkQCZ1AFXAY/yuvtFYrOxF+Bw==";
+ };
+ };
"npm-package-arg-6.1.0" = {
name = "npm-package-arg";
packageName = "npm-package-arg";
@@ -39726,15 +39357,6 @@ let
sha512 = "xXxr8y5U0kl8dVkz2oK7yZjPBvqM2fwaO5l3Yg13p03v8+E3qQcD0JNhHzjL1vyGgxcKkD0cco+NLR72iuPk3g==";
};
};
- "npm-package-arg-8.1.1" = {
- name = "npm-package-arg";
- packageName = "npm-package-arg";
- version = "8.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-8.1.1.tgz";
- sha512 = "CsP95FhWQDwNqiYS+Q0mZ7FAEDytDZAkNxQqea6IaAFJTAY9Lhhqyl0irU/6PMc7BGfUmnsbHcqxJD7XuVM/rg==";
- };
- };
"npm-packlist-1.4.8" = {
name = "npm-packlist";
packageName = "npm-packlist";
@@ -39762,15 +39384,6 @@ let
sha512 = "Jt01acDvJRhJGthnUJVF/w6gumWOZxO7IkpY/lsX9//zqQgnF7OJaxgQXcerd4uQOLu7W5bkb4mChL9mdfm+Zg==";
};
};
- "npm-packlist-5.1.1" = {
- name = "npm-packlist";
- packageName = "npm-packlist";
- version = "5.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/npm-packlist/-/npm-packlist-5.1.1.tgz";
- sha512 = "UfpSvQ5YKwctmodvPPkK6Fwk603aoVsf8AEbmVKAEECrfvL8SSe1A2YIwrJ6xmTHAITKPwwZsWo7WwEbNk0kxw==";
- };
- };
"npm-packlist-8.0.2" = {
name = "npm-packlist";
packageName = "npm-packlist";
@@ -39789,6 +39402,15 @@ let
sha512 = "Udm1f0l2nXb3wxDpKjfohwgdFUSV50UVwzEIpDXVsbDMXVIEF81a/i0UhuQbhrPMMmdiq3+YMFLFIRVLs3hxQw==";
};
};
+ "npm-pick-manifest-9.1.0" = {
+ name = "npm-pick-manifest";
+ packageName = "npm-pick-manifest";
+ version = "9.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/npm-pick-manifest/-/npm-pick-manifest-9.1.0.tgz";
+ sha512 = "nkc+3pIIhqHVQr085X9d2JzPzLyjzQS96zbruppqC9aZRm/x8xx6xhI98gHtsfELP2bE+loHq8ZaHFHhe+NauA==";
+ };
+ };
"npm-registry-client-8.6.0" = {
name = "npm-registry-client";
packageName = "npm-registry-client";
@@ -39798,24 +39420,6 @@ let
sha512 = "Qs6P6nnopig+Y8gbzpeN/dkt+n7IyVd8f45NTMotGk6Qo7GfBmzwYx6jRLoOOgKiMnaQfYxsuyQlD8Mc3guBhg==";
};
};
- "npm-registry-fetch-14.0.5" = {
- name = "npm-registry-fetch";
- packageName = "npm-registry-fetch";
- version = "14.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-14.0.5.tgz";
- sha512 = "kIDMIo4aBm6xg7jOttupWZamsZRkAqMqwqqbVXnUqstY5+tapvv6bkH/qMR76jdgV+YljEUCyWx3hRYMrJiAgA==";
- };
- };
- "npm-registry-fetch-16.2.1" = {
- name = "npm-registry-fetch";
- packageName = "npm-registry-fetch";
- version = "16.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-16.2.1.tgz";
- sha512 = "8l+7jxhim55S85fjiDGJ1rZXBWGtRLi1OSb4Z3BPLObPuIaeKRlPRiYMSHU4/81ck3t71Z+UwDDl47gcpmfQQA==";
- };
- };
"npm-registry-fetch-17.1.0" = {
name = "npm-registry-fetch";
packageName = "npm-registry-fetch";
@@ -39987,22 +39591,22 @@ let
sha512 = "qaKRmtYPZ5qdw4jWJD6bxEf1FJEqllJrwxCLIm0sQU/A7v2/czigzOb+C2uSiFsa9lBUzeH7M1oK+Q+OLxL3kA==";
};
};
- "nwsapi-2.2.10" = {
+ "nwsapi-2.2.12" = {
name = "nwsapi";
packageName = "nwsapi";
- version = "2.2.10";
+ version = "2.2.12";
src = fetchurl {
- url = "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.10.tgz";
- sha512 = "QK0sRs7MKv0tKe1+5uZIQk/C8XGza4DAnztJG8iD+TpJIORARrCxczA738awHrZoHeTjSSoHqao2teO0dC/gFQ==";
+ url = "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.12.tgz";
+ sha512 = "qXDmcVlZV4XRtKFzddidpfVP4oMSGhga+xdMc25mv8kaLUHtgzCDhUxkrN8exkGdTlLNaXj7CV3GtON7zuGZ+w==";
};
};
- "nx-19.3.0" = {
+ "nx-19.5.3" = {
name = "nx";
packageName = "nx";
- version = "19.3.0";
+ version = "19.5.3";
src = fetchurl {
- url = "https://registry.npmjs.org/nx/-/nx-19.3.0.tgz";
- sha512 = "WILWiROUkZWwuPJ12tP24Z0NULPEhxFN9i55/fECuVXYaFtkg6FvEne9C4d4bRqhZPcbrz6WhHnzE3NhdjH7XQ==";
+ url = "https://registry.npmjs.org/nx/-/nx-19.5.3.tgz";
+ sha512 = "ZUrnRwPdRWXeo8IuLj16Oo9IfiDjd8C6xKWC4F6wcTNZ9ZS7ZErrfqaQr04zdO89ASF9brbkqm0UkMyDPc6kPQ==";
};
};
"oas-kit-common-1.0.8" = {
@@ -40068,13 +39672,13 @@ let
sha512 = "fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==";
};
};
- "oauth2orize-1.11.1" = {
+ "oauth2orize-1.12.0" = {
name = "oauth2orize";
packageName = "oauth2orize";
- version = "1.11.1";
+ version = "1.12.0";
src = fetchurl {
- url = "https://registry.npmjs.org/oauth2orize/-/oauth2orize-1.11.1.tgz";
- sha512 = "9dSx/Gwm0J2Rvj4RH9+h7iXVnRXZ6biwWRgb2dCeQhCosODS0nYdM9I/G7BUGsjbgn0pHjGcn1zcCRtzj2SlRA==";
+ url = "https://registry.npmjs.org/oauth2orize/-/oauth2orize-1.12.0.tgz";
+ sha512 = "j4XtFDQUBsvUHPjUmvmNDUDMYed2MphMIJBhyxVVe8hGCjkuYnjIsW+D9qk8c5ciXRdnk6x6tEbiO6PLeOZdCQ==";
};
};
"object-assign-3.0.0" = {
@@ -40131,13 +39735,13 @@ let
sha512 = "RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==";
};
};
- "object-inspect-1.13.1" = {
+ "object-inspect-1.13.2" = {
name = "object-inspect";
packageName = "object-inspect";
- version = "1.13.1";
+ version = "1.13.2";
src = fetchurl {
- url = "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz";
- sha512 = "5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==";
+ url = "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.2.tgz";
+ sha512 = "IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==";
};
};
"object-is-1.1.6" = {
@@ -40401,13 +40005,13 @@ let
sha512 = "fvaSZRzprpwLFge/mcwE0CItfniNisVNamDdMK1FQUjh4ArQZ8ZWSkDaJbZc3XaANKZHq0xIa8NJpZ2HSe3oXA==";
};
};
- "oo-ascii-tree-1.100.0" = {
+ "oo-ascii-tree-1.101.0" = {
name = "oo-ascii-tree";
packageName = "oo-ascii-tree";
- version = "1.100.0";
+ version = "1.101.0";
src = fetchurl {
- url = "https://registry.npmjs.org/oo-ascii-tree/-/oo-ascii-tree-1.100.0.tgz";
- sha512 = "Y/C4AN9IVjsIyNQ1iK4x65xe2AV9q0MtXlYAOKZLA2ZscOzZJbRNi0BzcpmeMb/DSIAFm9M5kaxLqdAKpETbHg==";
+ url = "https://registry.npmjs.org/oo-ascii-tree/-/oo-ascii-tree-1.101.0.tgz";
+ sha512 = "hNE9Nfvo4HLa9/dAiaiXUm64KHUvgBa7jPftsb8gZdTv1G1wSMMnd9j7SMcRzaMbDEqi+0cfgeBSIcsKy+k0vA==";
};
};
"open-0.0.2" = {
@@ -40491,13 +40095,13 @@ let
sha512 = "+9g4actZKeb3czfi9gVQ4Br2Ju3KwhCAQJBNaKgye5KggqcBLIhFHH+nIkcm0BUX00TrAJl6dH4JWgM4G4JWrw==";
};
};
- "openpgp-5.11.1" = {
+ "openpgp-5.11.2" = {
name = "openpgp";
packageName = "openpgp";
- version = "5.11.1";
+ version = "5.11.2";
src = fetchurl {
- url = "https://registry.npmjs.org/openpgp/-/openpgp-5.11.1.tgz";
- sha512 = "TynUBPuaSI7dN0gP+A38CjNRLxkOkkptefNanalDQ71BFAKKm+dLbksymSW5bUrB7RcAneMySL/Y+r/TbLpOnQ==";
+ url = "https://registry.npmjs.org/openpgp/-/openpgp-5.11.2.tgz";
+ sha512 = "f8dJFVLwdkvPvW3VPFs6q9Vs2+HNhdvwls7a/MIFcQUB+XiQzRe7alfa3RtwfGJU7oUDDMAWPZ0nYsHa23Az+A==";
};
};
"opentracing-0.14.7" = {
@@ -40743,6 +40347,15 @@ let
sha512 = "RMtGSVNM4NWSF9uVWCUqaYiA7ID8Vqm/rSk2W37eYVrDLOI/3do2IRY7rQYkvJqb6sS6LAnALODBkD50tIM1kw==";
};
};
+ "oxc-resolver-1.10.2" = {
+ name = "oxc-resolver";
+ packageName = "oxc-resolver";
+ version = "1.10.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/oxc-resolver/-/oxc-resolver-1.10.2.tgz";
+ sha512 = "NIbwVqoU8Bhl7PVtItHCg+VFFokIDwBgIgFUwFG2Y8ePhxftFh5xG+KLar5PLWXlCP4WunPIuXD3jr3v6/MfRw==";
+ };
+ };
"p-any-2.1.0" = {
name = "p-any";
packageName = "p-any";
@@ -41148,13 +40761,13 @@ let
sha512 = "RRTnDb2TBG/epPRI2yYXsimO0v3BXC8Yd3ogr1545IaqKK17VGhbWVeGGN+XfCm/08OK8635nH31c8bATkHuSw==";
};
};
- "pac-proxy-agent-7.0.1" = {
+ "pac-proxy-agent-7.0.2" = {
name = "pac-proxy-agent";
packageName = "pac-proxy-agent";
- version = "7.0.1";
+ version = "7.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/pac-proxy-agent/-/pac-proxy-agent-7.0.1.tgz";
- sha512 = "ASV8yU4LLKBAjqIPMbrgtaKIvxQri/yh2OpI+S6hVa9JRkUI3Y3NPFbfngDtY7oFtSMD3w31Xns89mDa3Feo5A==";
+ url = "https://registry.npmjs.org/pac-proxy-agent/-/pac-proxy-agent-7.0.2.tgz";
+ sha512 = "BFi3vZnO9X5Qt6NRz7ZOaPja3ic0PhlsmCRYLOpN11+mWBCR6XJDqW5RF3j8jm4WGGQZtBA+bTfxYzeKW73eHg==";
};
};
"pac-resolver-7.0.1" = {
@@ -41175,6 +40788,15 @@ let
sha512 = "knDtirWWqKVJrLY3gEBLflVvueTMpyjbAwX/9j/EKi2DsjNemp5voS8cyKyGh57SNaMJNhNRZbIaWdneOcLU1g==";
};
};
+ "package-json-10.0.1" = {
+ name = "package-json";
+ packageName = "package-json";
+ version = "10.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/package-json/-/package-json-10.0.1.tgz";
+ sha512 = "ua1L4OgXSBdsu1FPb7F3tYH0F48a6kxvod4pLUlGY9COeJAJQNX/sNH2IiEmsxw7lqYiAwrdHMjz1FctOsyDQg==";
+ };
+ };
"package-json-2.4.0" = {
name = "package-json";
packageName = "package-json";
@@ -41220,13 +40842,13 @@ let
sha512 = "cbH9IAIJHNj9uXi196JVsRlt7cHKak6u/e6AkL/bkRelZ7rlL3X1YKxsZwa36xipOEKAsdtmaG6aAJoM1fx2zA==";
};
};
- "pacote-17.0.7" = {
- name = "pacote";
- packageName = "pacote";
- version = "17.0.7";
+ "package-json-from-dist-1.0.0" = {
+ name = "package-json-from-dist";
+ packageName = "package-json-from-dist";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/pacote/-/pacote-17.0.7.tgz";
- sha512 = "sgvnoUMlkv9xHwDUKjKQFXVyUi8dtJGKp3vg6sYy+TxbDic5RjZCHF3ygv0EJgNRZ2GfRONjlKPUfokJ9lDpwQ==";
+ url = "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.0.tgz";
+ sha512 = "dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==";
};
};
"pacote-18.0.6" = {
@@ -41337,6 +40959,15 @@ let
sha512 = "0cEliVMZEhrFDwMh4SxIyVJpqYoOWDJ9P895tFuS+XuNzI5UBmBk5U5O4KuJdTnZpSBI4LFA2+ZiJaiwfSwlMA==";
};
};
+ "parse-conflict-json-3.0.1" = {
+ name = "parse-conflict-json";
+ packageName = "parse-conflict-json";
+ version = "3.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/parse-conflict-json/-/parse-conflict-json-3.0.1.tgz";
+ sha512 = "01TvEktc68vwbJOtWZluyWeVGWjP+bZwXtPDMQVbBKzbJ/vZBif0L69KH1+cHv1SZ6e0FKLvjyHe8mqsIqYOmw==";
+ };
+ };
"parse-english-5.0.0" = {
name = "parse-english";
packageName = "parse-english";
@@ -41382,6 +41013,15 @@ let
sha512 = "kgBf6avCbO3Cn6+RnzRGLkUsv4ZVqv/VfAYkRsyBcgkshNvVBkRn1FEZcW0Jb+npXQWm2vHPnnOqFteZxRRGNw==";
};
};
+ "parse-github-url-1.0.3" = {
+ name = "parse-github-url";
+ packageName = "parse-github-url";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/parse-github-url/-/parse-github-url-1.0.3.tgz";
+ sha512 = "tfalY5/4SqGaV/GIGzWyHnFjlpTPTNpENR9Ea2lLldSJ8EWXMsvacWucqY3m3I4YPtas15IxTLQVQ5NSYXPrww==";
+ };
+ };
"parse-gitignore-1.0.1" = {
name = "parse-gitignore";
packageName = "parse-gitignore";
@@ -41535,13 +41175,13 @@ let
sha512 = "Eg1OuNntBMH0ojvEKSrvDSnwLmvVuUOSdylH/pSCPNMIspLlweJyIWXCE+k/5hm3cj/EBUYwmWkjhBALNP4LXQ==";
};
};
- "parse-torrent-11.0.16" = {
+ "parse-torrent-11.0.17" = {
name = "parse-torrent";
packageName = "parse-torrent";
- version = "11.0.16";
+ version = "11.0.17";
src = fetchurl {
- url = "https://registry.npmjs.org/parse-torrent/-/parse-torrent-11.0.16.tgz";
- sha512 = "5GoOdmW0HpiB78aQpBz8/5V3V1LjBRDNiL7DOs33pKeCLOzFnfMrsRD6CYmaUBT5Vi/dXE0hfePsjDGJSMF48w==";
+ url = "https://registry.npmjs.org/parse-torrent/-/parse-torrent-11.0.17.tgz";
+ sha512 = "bkfEtrqIMT4+bSWs+m7+Ktd7LSJsDefA9qfJQ3UFwOeBqipiQ+347guu79zX++nRwMnrdvRecLmgaRcdiYjE4w==";
};
};
"parse-torrent-4.1.0" = {
@@ -41751,13 +41391,13 @@ let
sha512 = "XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==";
};
};
- "passport-0.6.0" = {
+ "passport-0.7.0" = {
name = "passport";
packageName = "passport";
- version = "0.6.0";
+ version = "0.7.0";
src = fetchurl {
- url = "https://registry.npmjs.org/passport/-/passport-0.6.0.tgz";
- sha512 = "0fe+p3ZnrWRW74fe8+SvCyf4a3Pb2/h7gFkQ8yTJpAO50gDzlfjZUZTO1k5Eg9kUct22OxHLqDZoKUWRHOh9ug==";
+ url = "https://registry.npmjs.org/passport/-/passport-0.7.0.tgz";
+ sha512 = "cPLl+qZpSc+ireUvt+IzqbED1cHHkDoVYMo30jbJIdOOjQ1MQYZBPiNvmi8UM6lJuOpTPXJGZQk0DtC4y61MYQ==";
};
};
"passport-http-bearer-1.0.1" = {
@@ -41994,6 +41634,15 @@ let
sha512 = "Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==";
};
};
+ "path-scurry-2.0.0" = {
+ name = "path-scurry";
+ packageName = "path-scurry";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/path-scurry/-/path-scurry-2.0.0.tgz";
+ sha512 = "ypGJsmGtdXUOeM5u93TyeIEfEhM6s+ljAhrk5vAvSx8uyY/02OvrZnA0YNGUrPXfpJMgI1ODd3nwz8Npx4O4cg==";
+ };
+ };
"path-to-regexp-0.1.7" = {
name = "path-to-regexp";
packageName = "path-to-regexp";
@@ -42039,15 +41688,6 @@ let
sha512 = "JLyh7xT1kizaEvcaXOQwOc2/Yhw6KZOvPf1S8401UyLk86CU79LN3vl7ztXGm/pZ+YjoyAJ4rxmHwbkBXJX+yw==";
};
};
- "path-to-regexp-6.2.2" = {
- name = "path-to-regexp";
- packageName = "path-to-regexp";
- version = "6.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.2.2.tgz";
- sha512 = "GQX3SSMokngb36+whdpRXE+3f9V8UzyAorlYvOGx87ufGHehNTn5lCxrKtLyZ4Yl/wEKnNnr98ZzOwwDZV5ogw==";
- };
- };
"path-type-1.1.0" = {
name = "path-type";
packageName = "path-type";
@@ -42093,15 +41733,6 @@ let
sha512 = "5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==";
};
};
- "pathe-1.1.2" = {
- name = "pathe";
- packageName = "pathe";
- version = "1.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/pathe/-/pathe-1.1.2.tgz";
- sha512 = "whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==";
- };
- };
"pause-0.0.1" = {
name = "pause";
packageName = "pause";
@@ -42210,6 +41841,15 @@ let
sha512 = "CzFr90qM24ju5f88quFC/6qohjC144rehe5n6DH900lgXmUe86+xCKc10ev56gRKC4/BkHUoG4uSiQgBiIXwDA==";
};
};
+ "phin-3.7.1" = {
+ name = "phin";
+ packageName = "phin";
+ version = "3.7.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/phin/-/phin-3.7.1.tgz";
+ sha512 = "GEazpTWwTZaEQ9RhL7Nyz0WwqilbqgLahDM3D0hxWwmVDI52nXEybHqiN6/elwpkJBhcuj+WbBu+QfT0uhPGfQ==";
+ };
+ };
"picocolors-0.2.1" = {
name = "picocolors";
packageName = "picocolors";
@@ -42561,13 +42201,13 @@ let
sha512 = "LKWqWJRhstyYo9pGvgor/ivk2w94eSjE3RGVuzLGlr3NmD8bf7RcYGze1mNdEHRP6TRP6rMuDHk5t44hnTRyow==";
};
};
- "pnpm-sync-lib-0.2.6" = {
+ "pnpm-sync-lib-0.2.9" = {
name = "pnpm-sync-lib";
packageName = "pnpm-sync-lib";
- version = "0.2.6";
+ version = "0.2.9";
src = fetchurl {
- url = "https://registry.npmjs.org/pnpm-sync-lib/-/pnpm-sync-lib-0.2.6.tgz";
- sha512 = "6bEpWpEo2AJnUeMy6j1+3xm71C/h4LtHDmaBVyNgnsErgJ8uiB8ekWvgheVHsUxz038oFy2tAXPMHrr59VLbdA==";
+ url = "https://registry.npmjs.org/pnpm-sync-lib/-/pnpm-sync-lib-0.2.9.tgz";
+ sha512 = "qd2/crPxmpEXAWHlotOQfxQZ3a1fZIG4u73CiSPwPYDtd7Ithx7O3gtqzQb/0LXDEvk1NpL7u4xf7yEiUCqg3Q==";
};
};
"pony-cause-1.1.1" = {
@@ -42588,15 +42228,6 @@ let
sha512 = "HmfV88y4tmtR9JsLzdtNwJea+cQdGt+ozeDWdlxHbCiPcoG+/iSAnJ1mEAYdOqITgCoFIT67o3VdY684Ed3FWA==";
};
};
- "portfinder-1.0.32" = {
- name = "portfinder";
- packageName = "portfinder";
- version = "1.0.32";
- src = fetchurl {
- url = "https://registry.npmjs.org/portfinder/-/portfinder-1.0.32.tgz";
- sha512 = "on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==";
- };
- };
"portscanner-2.2.0" = {
name = "portscanner";
packageName = "portscanner";
@@ -42633,13 +42264,13 @@ let
sha512 = "yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==";
};
};
- "postcss-8.4.38" = {
+ "postcss-8.4.40" = {
name = "postcss";
packageName = "postcss";
- version = "8.4.38";
+ version = "8.4.40";
src = fetchurl {
- url = "https://registry.npmjs.org/postcss/-/postcss-8.4.38.tgz";
- sha512 = "Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==";
+ url = "https://registry.npmjs.org/postcss/-/postcss-8.4.40.tgz";
+ sha512 = "YF2kKIUzAofPMpfH6hOi2cGnv/HrUlfucspc7pDyvv7kGdqXrfj8SCl/t8owkEgKEuu8ZcRjSOxFxVLqwChZ2Q==";
};
};
"postcss-calc-10.0.0" = {
@@ -42669,13 +42300,13 @@ let
sha512 = "UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==";
};
};
- "postcss-colormin-7.0.0" = {
+ "postcss-colormin-7.0.1" = {
name = "postcss-colormin";
packageName = "postcss-colormin";
- version = "7.0.0";
+ version = "7.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-7.0.0.tgz";
- sha512 = "5CN6fqtsEtEtwf3mFV3B4UaZnlYljPpzmGeDB4yCK067PnAtfLe9uX2aFZaEwxHE7HopG5rUkW8gyHrNAesHEg==";
+ url = "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-7.0.1.tgz";
+ sha512 = "uszdT0dULt3FQs47G5UHCduYK+FnkLYlpu1HpWu061eGsKZ7setoG7kA+WC9NQLsOJf69D5TxGHgnAdRgylnFQ==";
};
};
"postcss-convert-values-5.1.3" = {
@@ -42687,13 +42318,13 @@ let
sha512 = "82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==";
};
};
- "postcss-convert-values-7.0.0" = {
+ "postcss-convert-values-7.0.2" = {
name = "postcss-convert-values";
packageName = "postcss-convert-values";
- version = "7.0.0";
+ version = "7.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-7.0.0.tgz";
- sha512 = "bMuzDgXBbFbByPgj+/r6va8zNuIDUaIIbvAFgdO1t3zdgJZ77BZvu6dfWyd6gHEJnYzmeVr9ayUsAQL3/qLJ0w==";
+ url = "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-7.0.2.tgz";
+ sha512 = "MuZIF6HJ4izko07Q0TgW6pClalI4al6wHRNPkFzqQdwAwG7hPn0lA58VZdxyb2Vl5AYjJ1piO+jgF9EnTjQwQQ==";
};
};
"postcss-discard-comments-5.1.2" = {
@@ -42705,13 +42336,13 @@ let
sha512 = "+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==";
};
};
- "postcss-discard-comments-7.0.0" = {
+ "postcss-discard-comments-7.0.1" = {
name = "postcss-discard-comments";
packageName = "postcss-discard-comments";
- version = "7.0.0";
+ version = "7.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-7.0.0.tgz";
- sha512 = "xpSdzRqYmy4YIVmjfGyYXKaI1SRnK6CTr+4Zmvyof8ANwvgfZgGdVtmgAvzh59gJm808mJCWQC9tFN0KF5dEXA==";
+ url = "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-7.0.1.tgz";
+ sha512 = "GVrQxUOhmle1W6jX2SvNLt4kmN+JYhV7mzI6BMnkAWR9DtVvg8e67rrV0NfdWhn7x1zxvzdWkMBPdBDCls+uwQ==";
};
};
"postcss-discard-duplicates-5.1.0" = {
@@ -42840,13 +42471,13 @@ let
sha512 = "YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==";
};
};
- "postcss-merge-longhand-7.0.1" = {
+ "postcss-merge-longhand-7.0.2" = {
name = "postcss-merge-longhand";
packageName = "postcss-merge-longhand";
- version = "7.0.1";
+ version = "7.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-7.0.1.tgz";
- sha512 = "qZlD26hnqSTMxSSOMS8+QCeRWtqOdMKeQHvHcBhjL3mJxKUs47cvO1Y1x3iTdYIk3ioMcRHTiy229TT0mEMH/A==";
+ url = "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-7.0.2.tgz";
+ sha512 = "06vrW6ZWi9qeP7KMS9fsa9QW56+tIMW55KYqF7X3Ccn+NI2pIgPV6gFfvXTMQ05H90Y5DvnCDPZ2IuHa30PMUg==";
};
};
"postcss-merge-rules-5.1.4" = {
@@ -42858,13 +42489,13 @@ let
sha512 = "0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==";
};
};
- "postcss-merge-rules-7.0.1" = {
+ "postcss-merge-rules-7.0.2" = {
name = "postcss-merge-rules";
packageName = "postcss-merge-rules";
- version = "7.0.1";
+ version = "7.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-7.0.1.tgz";
- sha512 = "bb8McYQbo2etgs0uVt6AfngajACK3FHSVP3sGLhprrjbtHJWgG03JZ4KKBlJ8/5Fb8/Rr+mMKaybMYeoYrAg0A==";
+ url = "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-7.0.2.tgz";
+ sha512 = "VAR47UNvRsdrTHLe7TV1CeEtF9SJYR5ukIB9U4GZyZOptgtsS20xSxy+k5wMrI3udST6O1XuIn7cjQkg7sDAAw==";
};
};
"postcss-minify-font-values-5.1.0" = {
@@ -42912,13 +42543,13 @@ let
sha512 = "+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==";
};
};
- "postcss-minify-params-7.0.0" = {
+ "postcss-minify-params-7.0.1" = {
name = "postcss-minify-params";
packageName = "postcss-minify-params";
- version = "7.0.0";
+ version = "7.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-7.0.0.tgz";
- sha512 = "XOJAuX8Q/9GT1sGxlUvaFEe2H9n50bniLZblXXsAT/BwSfFYvzSZeFG7uupwc0KbKpTnflnQ7aMwGzX6JUWliQ==";
+ url = "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-7.0.1.tgz";
+ sha512 = "e+Xt8xErSRPgSRFxHeBCSxMiO8B8xng7lh8E0A5ep1VfwYhY8FXhu4Q3APMjgx9YDDbSp53IBGENrzygbUvgUQ==";
};
};
"postcss-minify-selectors-5.2.1" = {
@@ -42930,13 +42561,13 @@ let
sha512 = "nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==";
};
};
- "postcss-minify-selectors-7.0.1" = {
+ "postcss-minify-selectors-7.0.2" = {
name = "postcss-minify-selectors";
packageName = "postcss-minify-selectors";
- version = "7.0.1";
+ version = "7.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-7.0.1.tgz";
- sha512 = "YfIbGtcgMFquPxV2L/ASs36ZS4DsgfcDX9tQ8cTEIvBTv+0GXFKtcvvpi9tCKto/+DWGWYKMCESFG3Pnan0Feg==";
+ url = "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-7.0.2.tgz";
+ sha512 = "dCzm04wqW1uqLmDZ41XYNBJfjgps3ZugDpogAmJXoCb5oCiTzIX4oPXXKxDpTvWOnKxQKR4EbV4ZawJBLcdXXA==";
};
};
"postcss-modules-extract-imports-3.1.0" = {
@@ -42975,13 +42606,13 @@ let
sha512 = "RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==";
};
};
- "postcss-nested-6.0.1" = {
+ "postcss-nested-6.2.0" = {
name = "postcss-nested";
packageName = "postcss-nested";
- version = "6.0.1";
+ version = "6.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.1.tgz";
- sha512 = "mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==";
+ url = "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.2.0.tgz";
+ sha512 = "HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==";
};
};
"postcss-normalize-charset-5.1.0" = {
@@ -43101,13 +42732,13 @@ let
sha512 = "qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==";
};
};
- "postcss-normalize-unicode-7.0.0" = {
+ "postcss-normalize-unicode-7.0.1" = {
name = "postcss-normalize-unicode";
packageName = "postcss-normalize-unicode";
- version = "7.0.0";
+ version = "7.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-7.0.0.tgz";
- sha512 = "OnKV52/VFFDAim4n0pdI+JAhsolLBdnCKxE6VV5lW5Q/JeVGFN8UM8ur6/A3EAMLsT1ZRm3fDHh/rBoBQpqi2w==";
+ url = "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-7.0.1.tgz";
+ sha512 = "PTPGdY9xAkTw+8ZZ71DUePb7M/Vtgkbbq+EoI33EuyQEzbKemEQMhe5QSr0VP5UfZlreANDPxSfcdSprENcbsg==";
};
};
"postcss-normalize-url-5.1.0" = {
@@ -43155,13 +42786,13 @@ let
sha512 = "9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==";
};
};
- "postcss-ordered-values-7.0.0" = {
+ "postcss-ordered-values-7.0.1" = {
name = "postcss-ordered-values";
packageName = "postcss-ordered-values";
- version = "7.0.0";
+ version = "7.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-7.0.0.tgz";
- sha512 = "KROvC63A8UQW1eYDljQe1dtwc1E/M+mMwDT6z7khV/weHYLWTghaLRLunU7x1xw85lWFwVZOAGakxekYvKV+0w==";
+ url = "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-7.0.1.tgz";
+ sha512 = "irWScWRL6nRzYmBOXReIKch75RRhNS86UPUAxXdmW/l0FcAsg0lvAXQCby/1lymxn/o0gVa6Rv/0f03eJOwHxw==";
};
};
"postcss-reduce-initial-5.1.2" = {
@@ -43173,13 +42804,13 @@ let
sha512 = "dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==";
};
};
- "postcss-reduce-initial-7.0.0" = {
+ "postcss-reduce-initial-7.0.1" = {
name = "postcss-reduce-initial";
packageName = "postcss-reduce-initial";
- version = "7.0.0";
+ version = "7.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-7.0.0.tgz";
- sha512 = "iqGgmBxY9LrblZ0BKLjmrA1mC/cf9A/wYCCqSmD6tMi+xAyVl0+DfixZIHSVDMbCPRPjNmVF0DFGth/IDGelFQ==";
+ url = "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-7.0.1.tgz";
+ sha512 = "0JDUSV4bGB5FGM5g8MkS+rvqKukJZ7OTHw/lcKn7xPNqeaqJyQbUO8/dJpvyTpaVwPsd3Uc33+CfNzdVowp2WA==";
};
};
"postcss-reduce-transforms-5.1.0" = {
@@ -43209,13 +42840,13 @@ let
sha512 = "/eoEylGWyy6/DOiMP5lmFRdmDKThqgn7D6hP2dXKJI/0rJSO1ADFNngZfDzxL0YAxFvws+Rtpuji1YIHj4mySA==";
};
};
- "postcss-resolve-nested-selector-0.1.1" = {
+ "postcss-resolve-nested-selector-0.1.4" = {
name = "postcss-resolve-nested-selector";
packageName = "postcss-resolve-nested-selector";
- version = "0.1.1";
+ version = "0.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/postcss-resolve-nested-selector/-/postcss-resolve-nested-selector-0.1.1.tgz";
- sha512 = "HvExULSwLqHLgUy1rl3ANIqCsvMS0WHss2UOsXhXnQaZ9VCc2oBvIpXrl00IUFT5ZDITME0o6oiXeiHr2SAIfw==";
+ url = "https://registry.npmjs.org/postcss-resolve-nested-selector/-/postcss-resolve-nested-selector-0.1.4.tgz";
+ sha512 = "R6vHqZWgVnTAPq0C+xjyHfEZqfIYboCBVSy24MjxEDm+tIh1BU4O6o7DP7AA7kHzf136d+Qc5duI4tlpHjixDw==";
};
};
"postcss-safe-parser-4.0.2" = {
@@ -43263,13 +42894,13 @@ let
sha512 = "36P2QR59jDTOAiIkqEprfJDsoNrvwFei3eCqKd1Y0tUsBimsq39BLp7RD+JWny3WgB1zGhJX8XVePwm9k4wdBg==";
};
};
- "postcss-selector-parser-6.1.0" = {
+ "postcss-selector-parser-6.1.1" = {
name = "postcss-selector-parser";
packageName = "postcss-selector-parser";
- version = "6.1.0";
+ version = "6.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.0.tgz";
- sha512 = "UMz42UD0UY0EApS0ZL9o1XnLhSTtvvvLe5Dc2H2O56fvRZi+KulDyf5ctDhhtYJBGKStV2FL1fy6253cmLgqVQ==";
+ url = "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.1.tgz";
+ sha512 = "b4dlw/9V8A71rLIDsSwVmak9z2DuBUB7CA1/wSdelNEzqsjoSPeADTWNO09lpH49Diy3/JIZ2bSPB1dI3LJCHg==";
};
};
"postcss-svgo-5.1.0" = {
@@ -43398,13 +43029,13 @@ let
sha512 = "QCYG84SgGyGzqJ/vlMsxeXd/pgL/I94ixdNFyh1PusWmTCyVfPJjZ1K1jvHtsbfnXQs2TSkEP2fR7QiMZAnKFQ==";
};
};
- "preferred-pm-3.1.3" = {
+ "preferred-pm-3.1.4" = {
name = "preferred-pm";
packageName = "preferred-pm";
- version = "3.1.3";
+ version = "3.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/preferred-pm/-/preferred-pm-3.1.3.tgz";
- sha512 = "MkXsENfftWSRpzCzImcp4FRsCc3y1opwB73CfCNWyzMqArju2CrlMHlqB7VexKiPEOjGMbttv1r9fSCn5S610w==";
+ url = "https://registry.npmjs.org/preferred-pm/-/preferred-pm-3.1.4.tgz";
+ sha512 = "lEHd+yEm22jXdCphDrkvIJQU66EuLojPPtvZkpKIkiD+l0DMThF/niqZKJSoU8Vl7iuvtmzyMhir9LdVy5WMnA==";
};
};
"prelude-ls-1.1.2" = {
@@ -43479,13 +43110,13 @@ let
sha512 = "tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==";
};
};
- "prettier-3.3.2" = {
+ "prettier-3.3.3" = {
name = "prettier";
packageName = "prettier";
- version = "3.3.2";
+ version = "3.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/prettier/-/prettier-3.3.2.tgz";
- sha512 = "rAVeHYMcv8ATV5d508CFdn+8/pHPpXeIid1DdrPwXnaAdH7cqjVbpJaT5eq4yRAFU/lsbwYwSF/n5iNrdJHPQA==";
+ url = "https://registry.npmjs.org/prettier/-/prettier-3.3.3.tgz";
+ sha512 = "i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==";
};
};
"prettier-bytes-1.0.4" = {
@@ -43497,13 +43128,13 @@ let
sha512 = "dLbWOa4xBn+qeWeIF60qRoB6Pk2jX5P3DIVgOQyMyvBpu931Q+8dXz8X0snJiFkQdohDDLnZQECjzsAj75hgZQ==";
};
};
- "prettier-plugin-astro-0.14.0" = {
+ "prettier-plugin-astro-0.14.1" = {
name = "prettier-plugin-astro";
packageName = "prettier-plugin-astro";
- version = "0.14.0";
+ version = "0.14.1";
src = fetchurl {
- url = "https://registry.npmjs.org/prettier-plugin-astro/-/prettier-plugin-astro-0.14.0.tgz";
- sha512 = "7jRGJsexaRIyUzTk8uzXlP45cw6DQ5Ci4bTe0xCBCcuO1Fff8jJy9oI+kRCQKSdDFTSAArMSg8GpvzlKBtSaZA==";
+ url = "https://registry.npmjs.org/prettier-plugin-astro/-/prettier-plugin-astro-0.14.1.tgz";
+ sha512 = "RiBETaaP9veVstE4vUwSIcdATj6dKmXljouXc/DDNwBSPTp8FRkLGDSGFClKsAFeeg+13SB0Z1JZvbD76bigJw==";
};
};
"pretty-bytes-5.6.0" = {
@@ -43569,13 +43200,13 @@ let
sha512 = "973driJZvxiGOQ5ONsFhOF/DtzPMOMtgC11kCpUrPGMTgqp2q/1gwzCquocrN33is0VZ5GFHXZYMM9l6h67v2Q==";
};
};
- "pretty-ms-9.0.0" = {
+ "pretty-ms-9.1.0" = {
name = "pretty-ms";
packageName = "pretty-ms";
- version = "9.0.0";
+ version = "9.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/pretty-ms/-/pretty-ms-9.0.0.tgz";
- sha512 = "E9e9HJ9R9NasGOgPaPE8VMeiPKAyWR5jcFpNnwIejslIhWqdqOrb2wShBsncMPUb+BcCd2OPYfh7p2W6oemTng==";
+ url = "https://registry.npmjs.org/pretty-ms/-/pretty-ms-9.1.0.tgz";
+ sha512 = "o1piW0n3tgKIKCwk2vpM/vOV13zjJzvP37Ioze54YlTHE06m4tjEbzg9WsKkvTuyYln2DHjo5pY4qrZGI0otpw==";
};
};
"prettyjson-1.2.5" = {
@@ -43596,15 +43227,6 @@ let
sha512 = "UCDQscAfQ1HArwvSUobJWbc3sTGLqGpYkRqXUpBZgf+zOWpOjz2dxnpRsOu+qxIj1K0n5UT1wgbCCgetsIwiug==";
};
};
- "printable-characters-1.0.42" = {
- name = "printable-characters";
- packageName = "printable-characters";
- version = "1.0.42";
- src = fetchurl {
- url = "https://registry.npmjs.org/printable-characters/-/printable-characters-1.0.42.tgz";
- sha512 = "dKp+C4iXWK4vVYZmYSd0KBH5F/h1HoZRsbJ82AVKRO3PEo8L4lBS/vLwhVtpwwuYcoIsVY+1JYKR268yn480uQ==";
- };
- };
"printf-0.2.5" = {
name = "printf";
packageName = "printf";
@@ -43623,15 +43245,6 @@ let
sha512 = "Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==";
};
};
- "private-0.1.8" = {
- name = "private";
- packageName = "private";
- version = "0.1.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/private/-/private-0.1.8.tgz";
- sha512 = "VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==";
- };
- };
"probe-image-size-6.0.0" = {
name = "probe-image-size";
packageName = "probe-image-size";
@@ -43677,15 +43290,6 @@ let
sha512 = "cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==";
};
};
- "process-exists-4.1.0" = {
- name = "process-exists";
- packageName = "process-exists";
- version = "4.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/process-exists/-/process-exists-4.1.0.tgz";
- sha512 = "BBJoiorUKoP2AuM5q/yKwIfT1YWRHsaxjW+Ayu9erLhqKOfnXzzVVML0XTYoQZuI1YvcWKmc1dh06DEy4+KzfA==";
- };
- };
"process-exists-5.0.0" = {
name = "process-exists";
packageName = "process-exists";
@@ -43713,6 +43317,15 @@ let
sha512 = "3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==";
};
};
+ "proggy-2.0.0" = {
+ name = "proggy";
+ packageName = "proggy";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/proggy/-/proggy-2.0.0.tgz";
+ sha512 = "69agxLtnI8xBs9gUGqEnK26UfiexpHy+KUpBQWabiytQjnn5wFY8rklAi7GRfABIuPNnQ/ik48+LGLkYYJcy4A==";
+ };
+ };
"progress-1.1.8" = {
name = "progress";
packageName = "progress";
@@ -43740,13 +43353,13 @@ let
sha512 = "iz22FmTbtkyL2vt0MdDFY+kWof+S9UB/NACxSn2aJcewtw+EERsen0urSkZ2WrHseNdydsvcxCTAnPcSMZZv4Q==";
};
};
- "prom-client-14.0.1" = {
+ "prom-client-15.1.2" = {
name = "prom-client";
packageName = "prom-client";
- version = "14.0.1";
+ version = "15.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/prom-client/-/prom-client-14.0.1.tgz";
- sha512 = "HxTArb6fkOntQHoRGvv4qd/BkorjliiuO2uSWC2KC17MUTKYttWdDoXX/vxOhQdkoECEM9BBH0pj2l8G8kev6w==";
+ url = "https://registry.npmjs.org/prom-client/-/prom-client-15.1.2.tgz";
+ sha512 = "on3h1iXb04QFLLThrmVYg1SChBQ9N1c+nKAjebBjokBqipddH3uxmOUcEkTnzmJ8Jh/5TSUnUqS40i2QB2dJHQ==";
};
};
"promise-7.3.1" = {
@@ -43767,6 +43380,24 @@ let
sha512 = "rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==";
};
};
+ "promise-all-reject-late-1.0.1" = {
+ name = "promise-all-reject-late";
+ packageName = "promise-all-reject-late";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/promise-all-reject-late/-/promise-all-reject-late-1.0.1.tgz";
+ sha512 = "vuf0Lf0lOxyQREH7GDIOUMLS7kz+gs8i6B+Yi8dC68a2sychGrHTJYghMBD6k7eUcH0H5P73EckCA48xijWqXw==";
+ };
+ };
+ "promise-call-limit-3.0.1" = {
+ name = "promise-call-limit";
+ packageName = "promise-call-limit";
+ version = "3.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/promise-call-limit/-/promise-call-limit-3.0.1.tgz";
+ sha512 = "utl+0x8gIDasV5X+PI5qWEPqH6fJS0pFtQ/4gZ95xfEFb/89dmh+/b895TbFDBLiafBvxD/PGTKfvxl4kH/pQg==";
+ };
+ };
"promise-inflight-1.0.1" = {
name = "promise-inflight";
packageName = "promise-inflight";
@@ -43893,13 +43524,13 @@ let
sha512 = "vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==";
};
};
- "protobufjs-7.2.6" = {
+ "protobufjs-7.3.2" = {
name = "protobufjs";
packageName = "protobufjs";
- version = "7.2.6";
+ version = "7.3.2";
src = fetchurl {
- url = "https://registry.npmjs.org/protobufjs/-/protobufjs-7.2.6.tgz";
- sha512 = "dgJaEDDL6x8ASUZ1YqWciTRrdOuYNzoOf27oHNfdyvKqHr5i0FV7FSLU+aIeFjyFgVxrpTOtQUi0BLLBymZaBw==";
+ url = "https://registry.npmjs.org/protobufjs/-/protobufjs-7.3.2.tgz";
+ sha512 = "RXyHaACeqXeqAKGLDl68rQKbmObRsTIn4TYVUUug1KfS47YWCo5MacGITEryugIgZqORCvJWEk4l449POg5Txg==";
};
};
"protocols-2.0.1" = {
@@ -43956,24 +43587,6 @@ let
sha512 = "yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==";
};
};
- "ps-list-6.3.0" = {
- name = "ps-list";
- packageName = "ps-list";
- version = "6.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/ps-list/-/ps-list-6.3.0.tgz";
- sha512 = "qau0czUSB0fzSlBOQt0bo+I2v6R+xiQdj78e1BR/Qjfl5OHWJ/urXi8+ilw1eHe+5hSeDI1wrwVTgDp2wst4oA==";
- };
- };
- "ps-list-7.2.0" = {
- name = "ps-list";
- packageName = "ps-list";
- version = "7.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/ps-list/-/ps-list-7.2.0.tgz";
- sha512 = "v4Bl6I3f2kJfr5o80ShABNHAokIgY+wFDTQfE+X3zWYgSGQOCBeYptLZUpoOALBqO5EawmDN/tjTldJesd0ujQ==";
- };
- };
"ps-list-8.1.1" = {
name = "ps-list";
packageName = "ps-list";
@@ -44217,22 +43830,22 @@ let
sha512 = "FLpr4flz5xZTSJxSeaheeMKN/EDzMdK7b8PTOC6a5PYFKTucWbdqjgqaEyH0shFiSJrVB1+Qqi4Tk19ccU6Aug==";
};
};
- "puppeteer-22.11.0" = {
+ "puppeteer-22.14.0" = {
name = "puppeteer";
packageName = "puppeteer";
- version = "22.11.0";
+ version = "22.14.0";
src = fetchurl {
- url = "https://registry.npmjs.org/puppeteer/-/puppeteer-22.11.0.tgz";
- sha512 = "U5U0Dx5Tsd/ec39BmflhcSFIK9UnZxGQfyUzvQVHivt6gIi6RgJqYL9MJaU90OG6tTz65XqzN4wF0ZyDyY0NuA==";
+ url = "https://registry.npmjs.org/puppeteer/-/puppeteer-22.14.0.tgz";
+ sha512 = "MGTR6/pM8zmWbTdazb6FKnwIihzsSEXBPH49mFFU96DNZpQOevCAZMnjBZGlZRGRzRK6aADCavR6SQtrbv5dQw==";
};
};
- "puppeteer-core-22.11.0" = {
+ "puppeteer-core-22.14.0" = {
name = "puppeteer-core";
packageName = "puppeteer-core";
- version = "22.11.0";
+ version = "22.14.0";
src = fetchurl {
- url = "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-22.11.0.tgz";
- sha512 = "57YUjhRoSpZWg9lCssWsgzM1/X/1jQnkKbbspbeW0bhZTt3TD4WdNXEYI7KrFFnSvx21tyHhfWW0zlxzbwYSAA==";
+ url = "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-22.14.0.tgz";
+ sha512 = "rl4tOY5LcA3e374GAlsGGHc05HL3eGNf5rZ+uxkl6id9zVZKcwcp1Z+Nd6byb6WPiPeecT/dwz8f/iUm+AZQSw==";
};
};
"purgecss-6.0.0" = {
@@ -44262,13 +43875,13 @@ let
sha512 = "pMpnA0qRdFp32b1sJl1wOJNxZLQ2cbQx+k6tjNtZ8CpvVhNqEPRgivZ2WOUev2YMajecdH7ctUPDvEe87nariQ==";
};
};
- "pyright-1.1.367" = {
+ "pyright-1.1.373" = {
name = "pyright";
packageName = "pyright";
- version = "1.1.367";
+ version = "1.1.373";
src = fetchurl {
- url = "https://registry.npmjs.org/pyright/-/pyright-1.1.367.tgz";
- sha512 = "qw6PmU59P4OAonqPEsaJ4CYHIpkr3eBsyXRpVJnmBoXldEZEoM3qdXIeo9BlsPFE+hzdNKNgBjSNAXdiOixEuw==";
+ url = "https://registry.npmjs.org/pyright/-/pyright-1.1.373.tgz";
+ sha512 = "ZJSjqnHbeZowUnuAiojZqCLeY1XVzRIc2GvMFFNy/z6YSyJXwChPDQL5Jl2bavTvXNO0ITRmMBVvoKCRN7cc3g==";
};
};
"q-1.5.1" = {
@@ -44316,15 +43929,6 @@ let
sha512 = "nR5uYqNsm8CgBhfCpsYKz6iDhvKjf0xdFT4KanNlLP40COGwZEsjbLoDyL9VrTXyiICUGUbsiN3gBpLGZhSZWQ==";
};
};
- "qs-6.10.3" = {
- name = "qs";
- packageName = "qs";
- version = "6.10.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/qs/-/qs-6.10.3.tgz";
- sha512 = "wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==";
- };
- };
"qs-6.10.4" = {
name = "qs";
packageName = "qs";
@@ -44343,13 +43947,13 @@ let
sha512 = "MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==";
};
};
- "qs-6.12.1" = {
+ "qs-6.12.3" = {
name = "qs";
packageName = "qs";
- version = "6.12.1";
+ version = "6.12.3";
src = fetchurl {
- url = "https://registry.npmjs.org/qs/-/qs-6.12.1.tgz";
- sha512 = "zWmv4RSuB9r2mYQw3zxQuHWeU+42aKi1wWig/j4ele4ygELZ7PEO6MM7rim9oAQH2A5MWfsAVf/jPvTPgCbvUQ==";
+ url = "https://registry.npmjs.org/qs/-/qs-6.12.3.tgz";
+ sha512 = "AWJm14H1vVaO/iNZ4/hO+HyaTehuy9nRqVdkTqlJt0HWvBiBIEXFmb4C0DGeYo3Xes9rrEW+TxHsaigCbN5ICQ==";
};
};
"qs-6.5.2" = {
@@ -44388,15 +43992,6 @@ let
sha512 = "IhMFgUmuNpyRfxA90umL7ByLlgRXu6tIfKPpF5TmcfRLlLCckfP/g3IQmju6jjpu+Hh8rA+2p6A27ZSPOOHdKw==";
};
};
- "query-string-5.1.1" = {
- name = "query-string";
- packageName = "query-string";
- version = "5.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/query-string/-/query-string-5.1.1.tgz";
- sha512 = "gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw==";
- };
- };
"query-string-6.14.1" = {
name = "query-string";
packageName = "query-string";
@@ -44721,15 +44316,6 @@ let
sha512 = "UlTNLIcu0uzb4D2f4WltY6cVjLi+/jEN4lgEUj3E04tpMDpUlkBo/eSn6zou9hum2VMNpCCUone0O0WeJim07g==";
};
};
- "raw-body-2.5.1" = {
- name = "raw-body";
- packageName = "raw-body";
- version = "2.5.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz";
- sha512 = "qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==";
- };
- };
"raw-body-2.5.2" = {
name = "raw-body";
packageName = "raw-body";
@@ -44910,15 +44496,6 @@ let
sha512 = "rSOKNYUmaxy0om1BNjMN4ezNT6VKK+2xF4GBhc81mkH7L60i6dp8qPYrkndNLT3QPphoII3maL9PVC9XmhHwVQ==";
};
};
- "read-2.1.0" = {
- name = "read";
- packageName = "read";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/read/-/read-2.1.0.tgz";
- sha512 = "bvxi1QLJHcaywCAEsAk4DG3nVoqiY2Csps3qzWalhj5hFqRn1d/OixkFXtLO1PrgHUcAP0FNaSY/5GYNfENFFQ==";
- };
- };
"read-3.0.1" = {
name = "read";
packageName = "read";
@@ -45009,24 +44586,6 @@ let
sha512 = "D1KmuLQr6ZSJS0tW8hf3WGpRlwszJOXZ3E8Yd/DNRaM5d+1wVRZdHlpGBLAuovjr28LbWvjpWkBHMxpRGGjzNA==";
};
};
- "read-package-json-6.0.4" = {
- name = "read-package-json";
- packageName = "read-package-json";
- version = "6.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/read-package-json/-/read-package-json-6.0.4.tgz";
- sha512 = "AEtWXYfopBj2z5N5PbkAOeNHRPUg5q+Nen7QLxV8M2zJq1ym6/lCz3fYNTCXe19puu2d06jfHhrP7v/S2PtMMw==";
- };
- };
- "read-package-json-7.0.1" = {
- name = "read-package-json";
- packageName = "read-package-json";
- version = "7.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/read-package-json/-/read-package-json-7.0.1.tgz";
- sha512 = "8PcDiZ8DXUjLf687Ol4BR8Bpm2umR7vhoZOzNRt+uxD9GpBh/K+CAAALVIiYFknmvlmyg7hM7BSNUXPaCCqd0Q==";
- };
- };
"read-package-json-fast-3.0.2" = {
name = "read-package-json-fast";
packageName = "read-package-json-fast";
@@ -45234,6 +44793,15 @@ let
sha512 = "9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==";
};
};
+ "readable-stream-4.5.2" = {
+ name = "readable-stream";
+ packageName = "readable-stream";
+ version = "4.5.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/readable-stream/-/readable-stream-4.5.2.tgz";
+ sha512 = "yjavECdqeZ3GLXNgRXgeQEdz9fvDDkNKyHnbHRFtOr7/LcfgBcmct7t/ET+HaCTqfh06OzoAxrkN/IfjJBVe+g==";
+ };
+ };
"readable-web-to-node-stream-2.0.0" = {
name = "readable-web-to-node-stream";
packageName = "readable-web-to-node-stream";
@@ -45315,15 +44883,6 @@ let
sha512 = "8/td4MmwUB6PkZUbV25uKz7dfrmjYWxsW8DVfibWdlHRk/l/DfHKn4pU+dfcoGLFgWOdyGCzINRQD7jn+Bv+/g==";
};
};
- "recast-0.20.5" = {
- name = "recast";
- packageName = "recast";
- version = "0.20.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/recast/-/recast-0.20.5.tgz";
- sha512 = "E5qICoPoNL4yU0H0NoBDntNB0Q5oMSNh9usFctYniLBluTthi3RsQVBXIJNbApOlvSwW/RGxIuokPcAc59J5fQ==";
- };
- };
"rechoir-0.6.2" = {
name = "rechoir";
packageName = "rechoir";
@@ -45405,13 +44964,22 @@ let
sha512 = "FNpGGo1DycYAdnrKFxCMmKYgo/mILAqtRYbkdQD8Ep/Hk2PQ5+aEAEx+IU713RTDmuBaH0c8P5ZozurNu5ObRQ==";
};
};
- "redis-4.6.14" = {
- name = "redis";
- packageName = "redis";
- version = "4.6.14";
+ "redis-errors-1.2.0" = {
+ name = "redis-errors";
+ packageName = "redis-errors";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/redis/-/redis-4.6.14.tgz";
- sha512 = "GrNg/e33HtsQwNXL7kJT+iNFPSwE1IPmd7wzV3j4f2z0EYxZfZE7FVTmUysgAtqQQtg5NXF5SNLR9OdO/UHOfw==";
+ url = "https://registry.npmjs.org/redis-errors/-/redis-errors-1.2.0.tgz";
+ sha512 = "1qny3OExCf0UvUV/5wpYKf2YwPcOqXzkwKKSmKHiE6ZMQs5heeE/c8eXK+PNllPvmjgAbfnsbpkGZWy8cBpn9w==";
+ };
+ };
+ "redis-parser-3.0.0" = {
+ name = "redis-parser";
+ packageName = "redis-parser";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/redis-parser/-/redis-parser-3.0.0.tgz";
+ sha512 = "DJnGAeenTdpMEH6uAJRK/uiyEIH9WVsUmoLwzudwGJUwZPp80PDBWPHXSAGNPwNvIXAbe7MSUB1zQFugFml66A==";
};
};
"reduce-flatten-1.0.1" = {
@@ -46359,15 +45927,6 @@ let
sha512 = "S07L+2VbJB32WddD/o/PnYGKym63zLVbymygVWXvt8L79VAngcjAxhHaGuFOICLxEV90EasEPzqPKKHPspXP8w==";
};
};
- "request-light-0.2.5" = {
- name = "request-light";
- packageName = "request-light";
- version = "0.2.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/request-light/-/request-light-0.2.5.tgz";
- sha512 = "eBEh+GzJAftUnex6tcL6eV2JCifY0+sZMIUpUPOVXbs2nV5hla4ZMmO3icYKGuGVuQ2zHE9evh4OrRcH4iyYYw==";
- };
- };
"request-light-0.4.0" = {
name = "request-light";
packageName = "request-light";
@@ -46503,13 +46062,13 @@ let
sha512 = "nYzyjnFcPNGR3lx9lwPPPnuQxv6JWEZd2Ci0u9opN7N5zUEPIhY/GbL3vMGOr2UXwEg9WwSyV9X9Y/kLFgPsOg==";
};
};
- "requirejs-2.3.6" = {
+ "requirejs-2.3.7" = {
name = "requirejs";
packageName = "requirejs";
- version = "2.3.6";
+ version = "2.3.7";
src = fetchurl {
- url = "https://registry.npmjs.org/requirejs/-/requirejs-2.3.6.tgz";
- sha512 = "ipEzlWQe6RK3jkzikgCupiTbTvm4S0/CAU5GlgptkN5SO6F3u0UD0K18wy6ErDqiCyP4J4YYe1HuAShvsxePLg==";
+ url = "https://registry.npmjs.org/requirejs/-/requirejs-2.3.7.tgz";
+ sha512 = "DouTG8T1WanGok6Qjg2SXuCMzszOo0eHeH9hDZ5Y4x8Je+9JB38HdTLT4/VA8OaUhBa0JPVHJ0pyBkM1z+pDsw==";
};
};
"requires-port-1.0.0" = {
@@ -46683,15 +46242,6 @@ let
sha512 = "ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==";
};
};
- "resolve.exports-2.0.2" = {
- name = "resolve.exports";
- packageName = "resolve.exports";
- version = "2.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz";
- sha512 = "X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==";
- };
- };
"resp-modifier-6.0.2" = {
name = "resp-modifier";
packageName = "resp-modifier";
@@ -46953,13 +46503,13 @@ let
sha512 = "Gk8NlF062+T9CqNGn6h4tls3k6T1+/nXdOcSZVikNVtlRdYpA7wRJJMoXmuvOnLW844rPjdQ7JgXCYM6PPC/og==";
};
};
- "rimraf-5.0.7" = {
+ "rimraf-5.0.9" = {
name = "rimraf";
packageName = "rimraf";
- version = "5.0.7";
+ version = "5.0.9";
src = fetchurl {
- url = "https://registry.npmjs.org/rimraf/-/rimraf-5.0.7.tgz";
- sha512 = "nV6YcJo5wbLW77m+8KjH8aB/7/rxQy9SZ0HY5shnwULfS+9nmTtVXAJET5NdZmCzA4fPI/Hm1wo/Po/4mopOdg==";
+ url = "https://registry.npmjs.org/rimraf/-/rimraf-5.0.9.tgz";
+ sha512 = "3i7b8OcswU6CpU8Ej89quJD4O98id7TtVM5U4Mybh84zQXdrFmDLouWBEEaD/QfO3gDDfH+AGFCGsR7kngzQnA==";
};
};
"ripemd160-2.0.2" = {
@@ -46980,15 +46530,6 @@ let
sha512 = "nQptLCZeyyJfgbpf2x97k5YE8vzDn7bhwx9NlvODdhgbU0mL1ruh71X0HYdRaOEvWC7Cr+SfV0p5p+Ib5yOl7A==";
};
};
- "roarr-2.15.4" = {
- name = "roarr";
- packageName = "roarr";
- version = "2.15.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/roarr/-/roarr-2.15.4.tgz";
- sha512 = "CHhPh+UNHD2GTXNYhPWLnU8ONHdI+5DI+4EYIAOaiD63rHeYlZvyh8P+in5999TTSFgUYuKUAjzRI4mdh/p+2A==";
- };
- };
"robust-predicates-3.0.2" = {
name = "robust-predicates";
packageName = "robust-predicates";
@@ -46998,33 +46539,6 @@ let
sha512 = "IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg==";
};
};
- "rollup-plugin-inject-3.0.2" = {
- name = "rollup-plugin-inject";
- packageName = "rollup-plugin-inject";
- version = "3.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/rollup-plugin-inject/-/rollup-plugin-inject-3.0.2.tgz";
- sha512 = "ptg9PQwzs3orn4jkgXJ74bfs5vYz1NCZlSQMBUA0wKcGp5i5pA1AO3fOUEte8enhGUC+iapTCzEWw2jEFFUO/w==";
- };
- };
- "rollup-plugin-node-polyfills-0.2.1" = {
- name = "rollup-plugin-node-polyfills";
- packageName = "rollup-plugin-node-polyfills";
- version = "0.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/rollup-plugin-node-polyfills/-/rollup-plugin-node-polyfills-0.2.1.tgz";
- sha512 = "4kCrKPTJ6sK4/gLL/U5QzVT8cxJcofO0OU74tnB19F40cmuAKSzH5/siithxlofFEjwvw1YAhPmbvGNA6jEroA==";
- };
- };
- "rollup-pluginutils-2.8.2" = {
- name = "rollup-pluginutils";
- packageName = "rollup-pluginutils";
- version = "2.8.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/rollup-pluginutils/-/rollup-pluginutils-2.8.2.tgz";
- sha512 = "EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==";
- };
- };
"round-to-6.0.0" = {
name = "round-to";
packageName = "round-to";
@@ -47052,15 +46566,6 @@ let
sha512 = "APM0Gt1KoXBz0iIkkdB/kfvGOwC4UuJFeG/c+yV7wSc7q96cG/kJ0HiYCnzivD9SB53cLV1MlHFNfOuPaadYSw==";
};
};
- "rss-parser-3.13.0" = {
- name = "rss-parser";
- packageName = "rss-parser";
- version = "3.13.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/rss-parser/-/rss-parser-3.13.0.tgz";
- sha512 = "7jWUBV5yGN3rqMMj7CZufl/291QAhvrrGpDNE4k/02ZchL0npisiYYqULF71jCEKoIiHvK/Q2e6IkDwPziT7+w==";
- };
- };
"rss-parser-3.7.1" = {
name = "rss-parser";
packageName = "rss-parser";
@@ -47385,13 +46890,13 @@ let
sha512 = "X8mCSfR8y0NryTu0tuVyr4IS2jBunBgyG+3a0gEEkd0nlHGiyqJhlc4EIkzmSwaa7F8S4yo+LS6Cu5qxRkJrmg==";
};
};
- "sasl-scram-sha-1-1.2.1" = {
+ "sasl-scram-sha-1-1.3.0" = {
name = "sasl-scram-sha-1";
packageName = "sasl-scram-sha-1";
- version = "1.2.1";
+ version = "1.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/sasl-scram-sha-1/-/sasl-scram-sha-1-1.2.1.tgz";
- sha512 = "o63gNo+EGsk1ML0bNeUAjRomIIcG7VaUyA+ffhd9MME5BjqVEpp42YkmBBZqzz1KmJG3YqpRLE4PfUe7FjexaA==";
+ url = "https://registry.npmjs.org/sasl-scram-sha-1/-/sasl-scram-sha-1-1.3.0.tgz";
+ sha512 = "hJE3eUCEx0aK+9jwHu6VVrQwb9qxv8RMc3ZciGF/ZzXgxptCX9QbfJT45nloJGxrR9AfBU6GiVNYKA5mrqu2KQ==";
};
};
"saslmechanisms-0.1.1" = {
@@ -47403,13 +46908,13 @@ let
sha512 = "pVlvK5ysevz8MzybRnDIa2YMxn0OJ7b9lDiWhMoaKPoJ7YkAg/7YtNjUgaYzElkwHxsw8dBMhaEn7UP6zxEwPg==";
};
};
- "sass-1.77.5" = {
+ "sass-1.77.8" = {
name = "sass";
packageName = "sass";
- version = "1.77.5";
+ version = "1.77.8";
src = fetchurl {
- url = "https://registry.npmjs.org/sass/-/sass-1.77.5.tgz";
- sha512 = "oDfX1mukIlxacPdQqNb6mV2tVCrnE+P3nVYioy72V5tlk56CPNcO4TCuFcaCRKKfJ1M3lH95CleRS+dVKL2qMg==";
+ url = "https://registry.npmjs.org/sass/-/sass-1.77.8.tgz";
+ sha512 = "4UHg6prsrycW20fqLGPShtEvo/WyHRVRHwOP4DzkUrObWoWI05QBSfzU71TVB7PFaL104TwNaHpjlWXAZbQiNQ==";
};
};
"sass-formatter-0.7.9" = {
@@ -47682,15 +47187,6 @@ let
sha512 = "1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==";
};
};
- "semver-7.6.0" = {
- name = "semver";
- packageName = "semver";
- version = "7.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz";
- sha512 = "EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==";
- };
- };
"semver-7.6.2" = {
name = "semver";
packageName = "semver";
@@ -47700,6 +47196,15 @@ let
sha512 = "FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==";
};
};
+ "semver-7.6.3" = {
+ name = "semver";
+ packageName = "semver";
+ version = "7.6.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz";
+ sha512 = "oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==";
+ };
+ };
"semver-compare-1.0.0" = {
name = "semver-compare";
packageName = "semver-compare";
@@ -47790,13 +47295,13 @@ let
sha512 = "qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==";
};
};
- "serialize-error-2.1.0" = {
+ "serialize-error-11.0.3" = {
name = "serialize-error";
packageName = "serialize-error";
- version = "2.1.0";
+ version = "11.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/serialize-error/-/serialize-error-2.1.0.tgz";
- sha512 = "ghgmKt5o4Tly5yEG/UJp8qTd0AN7Xalw4XBtDEKP655B699qMEtra1WlXeE6WIvdEG481JvRxULKsInq/iNysw==";
+ url = "https://registry.npmjs.org/serialize-error/-/serialize-error-11.0.3.tgz";
+ sha512 = "2G2y++21dhj2R7iHAdd0FIzjGwuKZld+7Pl/bTU6YIkrC2ZMbVUjm+luj6A6V34Rv9XfKJDKpTWu9W4Gse1D9g==";
};
};
"serialize-error-6.0.0" = {
@@ -47808,24 +47313,6 @@ let
sha512 = "3vmBkMZLQO+BR4RPHcyRGdE09XCF6cvxzk2N2qn8Er3F91cy8Qt7VvEbZBOpaL53qsBbe2cFOefU6tRY6WDelA==";
};
};
- "serialize-error-7.0.1" = {
- name = "serialize-error";
- packageName = "serialize-error";
- version = "7.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/serialize-error/-/serialize-error-7.0.1.tgz";
- sha512 = "8I8TjW5KMOKsZQTvoxjuSIa7foAwPWGOts+6o7sgjz41/qMD9VQHEDxi6PBvK2l0MXUmqZyNpUK+T2tQaaElvw==";
- };
- };
- "serialize-javascript-6.0.0" = {
- name = "serialize-javascript";
- packageName = "serialize-javascript";
- version = "6.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz";
- sha512 = "Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==";
- };
- };
"serialize-javascript-6.0.2" = {
name = "serialize-javascript";
packageName = "serialize-javascript";
@@ -48141,15 +47628,6 @@ let
sha512 = "sQTKC1Re/rM6XyFM6fIAGHRPVGvyXfgzIDvzoq608vM+jeyVD0Tu1E6Np0Kc2zAIFWIj963V2800iF/9LPieQw==";
};
};
- "shortid-2.2.16" = {
- name = "shortid";
- packageName = "shortid";
- version = "2.2.16";
- src = fetchurl {
- url = "https://registry.npmjs.org/shortid/-/shortid-2.2.16.tgz";
- sha512 = "Ugt+GIZqvGXCIItnsL+lvFJOiN7RYqlGy7QE41O3YC1xbNSeDGIRO7xg2JJXIAj1cAGnOeC1r7/T9pgrtQbv4g==";
- };
- };
"should-13.2.3" = {
name = "should";
packageName = "should";
@@ -48249,15 +47727,6 @@ let
sha512 = "bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==";
};
};
- "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==";
- };
- };
"sigstore-2.3.1" = {
name = "sigstore";
packageName = "sigstore";
@@ -48663,13 +48132,13 @@ let
sha512 = "2A892lrj0GcgR/9Qk81EaY2gYhCBxurV0PfmmESO6p27QPrUK1J3zdns+5QPqvUYK2q657nSj0guoIil9+7eFg==";
};
};
- "socket.io-2.5.0" = {
+ "socket.io-2.5.1" = {
name = "socket.io";
packageName = "socket.io";
- version = "2.5.0";
+ version = "2.5.1";
src = fetchurl {
- url = "https://registry.npmjs.org/socket.io/-/socket.io-2.5.0.tgz";
- sha512 = "gGunfS0od3VpwDBpGwVkzSZx6Aqo9uOcf1afJj2cKnKFAoyl16fvhpsUhmUFd4Ldbvl5JvRQed6eQw6oQp6n8w==";
+ url = "https://registry.npmjs.org/socket.io/-/socket.io-2.5.1.tgz";
+ sha512 = "eaTE4tBKRD6RFoetquMbxgvcpvoDtRyIlkIMI/SMK2bsKvbENTsDeeu4GJ/z9c90yOWxB7b/eC+yKLPbHnH6bA==";
};
};
"socket.io-4.6.1" = {
@@ -48708,13 +48177,13 @@ let
sha512 = "WzZRUj1kUjrTIrUKpZLEzFZ1OLj5FwLlAFQs9kuZJzJi5DKdU7FsWc36SNmA8iDOtwBQyT8FkrriRM8vXLYz8g==";
};
};
- "socket.io-adapter-2.5.4" = {
+ "socket.io-adapter-2.5.5" = {
name = "socket.io-adapter";
packageName = "socket.io-adapter";
- version = "2.5.4";
+ version = "2.5.5";
src = fetchurl {
- url = "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.5.4.tgz";
- sha512 = "wDNHGXGewWAjQPt3pyeYBtpWSq9cLE5UW1ZUPL/2eGK9jtse/FpXib7epSTsz0Q0m+6sg6Y4KtcFTlah1bdOVg==";
+ url = "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.5.5.tgz";
+ sha512 = "eLDQas5dzPgOWCk9GuuJC2lBqItuhKI4uxGgo9aIV7MYbk2h9Q6uULEh8WBzThoI7l+qU9Ast9fVUmkqPP9wYg==";
};
};
"socket.io-client-1.0.6" = {
@@ -48771,13 +48240,13 @@ let
sha512 = "uW3UiLVibAyleKq8r/yZe1oPO51olhY18T6HtnN0iI6RLqJfYC0YiyAFlsPw1+8I0Z1qFd8jFLTRZo2vr6ISxA==";
};
};
- "socket.io-parser-3.3.3" = {
+ "socket.io-parser-3.3.4" = {
name = "socket.io-parser";
packageName = "socket.io-parser";
- version = "3.3.3";
+ version = "3.3.4";
src = fetchurl {
- url = "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-3.3.3.tgz";
- sha512 = "qOg87q1PMWWTeO01768Yh9ogn7chB9zkKtQnya41Y355S0UmpXgpcrFwAgjYJxu9BdKug5r5e9YtVSeWhKBUZg==";
+ url = "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-3.3.4.tgz";
+ sha512 = "z/pFQB3x+EZldRRzORYW1vwVO8m/3ILkswtnpoeU6Ve3cbMWkmHEWDAVJn4QJtchiiFTo5j7UG2QvwxvaA9vow==";
};
};
"socket.io-parser-3.4.3" = {
@@ -48834,13 +48303,13 @@ let
sha512 = "Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==";
};
};
- "socks-proxy-agent-8.0.3" = {
+ "socks-proxy-agent-8.0.4" = {
name = "socks-proxy-agent";
packageName = "socks-proxy-agent";
- version = "8.0.3";
+ version = "8.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-8.0.3.tgz";
- sha512 = "VNegTZKhuGq5vSD6XNKlbqWhyt/40CgoEw8XxD6dhnm8Jq9IEa3nIa4HwnM8XOqU0CdB0BwWVXusqiFXfHB3+A==";
+ url = "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-8.0.4.tgz";
+ sha512 = "GNAq/eg8Udq2x0eNiFkr9gRg5bA7PXEWagQdeRX4cPSG+X/8V38v637gim9bjFptMk1QWsCTr0ttrJEiXbNnRw==";
};
};
"socks5-client-1.2.8" = {
@@ -48879,15 +48348,6 @@ let
sha512 = "tr2eBD+9sTck9c7y0GkX9n8r4WcuzACYMFAGIjQum/F/LpJUZ0MvR4S6wiCrzvrCiznekBdxeG+8vSBE6d9H7A==";
};
};
- "sonic-forest-1.0.3" = {
- name = "sonic-forest";
- packageName = "sonic-forest";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/sonic-forest/-/sonic-forest-1.0.3.tgz";
- sha512 = "dtwajos6IWMEWXdEbW1IkEkyL2gztCAgDplRIX+OT5aRKnEd5e7r7YCxRgXZdhRP1FBdOBf8axeTPhzDv8T4wQ==";
- };
- };
"sorcery-0.10.0" = {
name = "sorcery";
packageName = "sorcery";
@@ -48987,15 +48447,6 @@ let
sha512 = "qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==";
};
};
- "source-map-0.4.4" = {
- name = "source-map";
- packageName = "source-map";
- version = "0.4.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz";
- sha512 = "Y8nIfcb1s/7DcobUz1yOO1GSp7gyL+D9zLHDehT7iRESqGSxjJ448Sg7rvfgsRJCnKLdSl11uGf0s9X80cH0/A==";
- };
- };
"source-map-0.5.7" = {
name = "source-map";
packageName = "source-map";
@@ -49536,13 +48987,13 @@ let
sha512 = "oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==";
};
};
- "stacktracey-2.1.8" = {
- name = "stacktracey";
- packageName = "stacktracey";
- version = "2.1.8";
+ "standard-as-callback-2.1.0" = {
+ name = "standard-as-callback";
+ packageName = "standard-as-callback";
+ version = "2.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/stacktracey/-/stacktracey-2.1.8.tgz";
- sha512 = "Kpij9riA+UNg7TnphqjH7/CzctQ/owJGNbFkfEeve4Z4uxT5+JapVLFXcsurIfN34gnTWZNJ/f7NMG0E8JDzTw==";
+ url = "https://registry.npmjs.org/standard-as-callback/-/standard-as-callback-2.1.0.tgz";
+ sha512 = "qoRRSyROncaz1z0mvYqIE4lCd9p2R90i6GxW3uZv5ucSu8tU7B5HXUP1gG8pVZsYNVaXjk8ClXHPttLyxAL48A==";
};
};
"stat-mode-0.3.0" = {
@@ -49869,6 +49320,15 @@ let
sha512 = "Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==";
};
};
+ "streamx-2.17.0" = {
+ name = "streamx";
+ packageName = "streamx";
+ version = "2.17.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/streamx/-/streamx-2.17.0.tgz";
+ sha512 = "mzRXEeafEA0skX5XLiDht/zdIqEVs4kgayUTFHDoMjiaZ2kC7DoFsQDJVXRILI2Qme/kWXxLpuU6P0B+xcXpFA==";
+ };
+ };
"streamx-2.18.0" = {
name = "streamx";
packageName = "streamx";
@@ -49878,15 +49338,6 @@ let
sha512 = "LLUC1TWdjVdn1weXGcSxyTR3T4+acB6tVGXT95y0nGbca4t4o/ng1wKAGTljm9VicuCVLvRlqFYXYy5GwgM7sQ==";
};
};
- "strict-uri-encode-1.1.0" = {
- name = "strict-uri-encode";
- packageName = "strict-uri-encode";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz";
- sha512 = "R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ==";
- };
- };
"strict-uri-encode-2.0.0" = {
name = "strict-uri-encode";
packageName = "strict-uri-encode";
@@ -49923,13 +49374,13 @@ let
sha512 = "ATVmIpMrqxPFNiNQTnmEeXzt3743O6DubJWh2MiAQV1ifKd4PcCjBcybCdb0ENnPO1T6asORK9nOpygn1BATag==";
};
};
- "string-kit-0.17.10" = {
+ "string-kit-0.18.3" = {
name = "string-kit";
packageName = "string-kit";
- version = "0.17.10";
+ version = "0.18.3";
src = fetchurl {
- url = "https://registry.npmjs.org/string-kit/-/string-kit-0.17.10.tgz";
- sha512 = "n3/2BeEJrlzztoxeBTt9DVh0dfHordBuZoFsSJs59tk1JoPVvtvNsvAgqu0Nlpj5Y/qoQbnT8jCnfuoHcsfGnw==";
+ url = "https://registry.npmjs.org/string-kit/-/string-kit-0.18.3.tgz";
+ sha512 = "G8cBS7wxxHhwQrKU0Y8SjZJRtCzZ61bMmMCO1bWm6N6y2obT0koGK8uWYloMOaVPPr8zk7Ic995uEd4Jw504AQ==";
};
};
"string-length-1.0.1" = {
@@ -50022,13 +49473,13 @@ let
sha512 = "k01swCJAgQmuADB0YIc+7TuatfNvTBVOoaUWJjTB9R4VJzR5vNWzf5t42ESVZFPS8xTySF7CAdV4t/aaIm3UnQ==";
};
};
- "string-width-7.1.0" = {
+ "string-width-7.2.0" = {
name = "string-width";
packageName = "string-width";
- version = "7.1.0";
+ version = "7.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/string-width/-/string-width-7.1.0.tgz";
- sha512 = "SEIJCWiX7Kg4c129n48aDRwLbFb2LJmXXFrWBG4NGaRtMQ3myKPKbwrD1BKqQn74oCoNMBVrfDEr5M9YxCsrkw==";
+ url = "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz";
+ sha512 = "tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==";
};
};
"string-width-cjs-4.2.3" = {
@@ -50436,13 +49887,13 @@ let
sha512 = "sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==";
};
};
- "stylehacks-7.0.1" = {
+ "stylehacks-7.0.2" = {
name = "stylehacks";
packageName = "stylehacks";
- version = "7.0.1";
+ version = "7.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/stylehacks/-/stylehacks-7.0.1.tgz";
- sha512 = "PnrT4HzajnxbjfChpeBKLSpSykilnGBlD+pIffCoT5KbLur9fcL8uKRQJJap85byR2wCYZl/4Otk5eq76qeZxQ==";
+ url = "https://registry.npmjs.org/stylehacks/-/stylehacks-7.0.2.tgz";
+ sha512 = "HdkWZS9b4gbgYTdMg4gJLmm7biAUug1qTqXjS+u8X+/pUd+9Px1E+520GnOW3rST9MNsVOVpsJG+mPHNosxjOQ==";
};
};
"stylelint-13.13.1" = {
@@ -50481,15 +49932,6 @@ let
sha512 = "RIrIdRY0X1xojthNcVtgT9sjpOGagEUKpZdgBUi054OEPFo282yg+zE+t1Rj3+RqKq2xStL7uUHhY+AjbC4BXg==";
};
};
- "subscriptions-transport-ws-0.11.0" = {
- name = "subscriptions-transport-ws";
- packageName = "subscriptions-transport-ws";
- version = "0.11.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/subscriptions-transport-ws/-/subscriptions-transport-ws-0.11.0.tgz";
- sha512 = "8D4C6DIH5tGiAIpp5I0wD/xRlNiZAPGHygzCe7VzyzUoxHtawzjNAY9SUTXU05/EY2NMY9/9GF0ycizkXr1CWQ==";
- };
- };
"subscriptions-transport-ws-0.9.19" = {
name = "subscriptions-transport-ws";
packageName = "subscriptions-transport-ws";
@@ -50679,13 +50121,13 @@ let
sha512 = "d0FdzYIiAePqRJEb90WlJDkjUEx42xhivxN8muUBmfZnP+tzUgz12DJ2hRJi8sIHCME7jeK1PTMgKPSfTd8JrA==";
};
};
- "svelte-5.0.0-next.155" = {
+ "svelte-5.0.0-next.198" = {
name = "svelte";
packageName = "svelte";
- version = "5.0.0-next.155";
+ version = "5.0.0-next.198";
src = fetchurl {
- url = "https://registry.npmjs.org/svelte/-/svelte-5.0.0-next.155.tgz";
- sha512 = "4a4EZuiTmg4eQJuQ6LTyK+DxRAZCYm4mXgqSWcZ7TellzLfaC1Je5nxBl1aZP3xdNhvPFIstQ8c7I6d+99FdZQ==";
+ url = "https://registry.npmjs.org/svelte/-/svelte-5.0.0-next.198.tgz";
+ sha512 = "1eyQplJR7Rg5dTuHZoDamLJfqyk4k6cB3h6TMybWKrS/MIL4++iNV+q+NP6EUBngZ2iRBup7gRt0jYUbPI0UMw==";
};
};
"svelte-preprocess-5.1.4" = {
@@ -50697,13 +50139,13 @@ let
sha512 = "IvnbQ6D6Ao3Gg6ftiM5tdbR6aAETwjhHV+UKGf5bHGYR69RQvF1ho0JKPcbUON4vy4R7zom13jPjgdOWCQ5hDA==";
};
};
- "svelte2tsx-0.7.9" = {
+ "svelte2tsx-0.7.13" = {
name = "svelte2tsx";
packageName = "svelte2tsx";
- version = "0.7.9";
+ version = "0.7.13";
src = fetchurl {
- url = "https://registry.npmjs.org/svelte2tsx/-/svelte2tsx-0.7.9.tgz";
- sha512 = "Rm+0LAwg9wT4H2IsR8EaM9EWErTzi9LmuZKxkH5b1ua94XjQmwHstBP4VabLgA9AE6XmwBg+xK7Cjzwfm6ustQ==";
+ url = "https://registry.npmjs.org/svelte2tsx/-/svelte2tsx-0.7.13.tgz";
+ sha512 = "aObZ93/kGAiLXA/I/kP+x9FriZM+GboB/ReOIGmLNbVGEd2xC+aTCppm3mk1cc9I/z60VQf7b2QDxC3jOXu3yw==";
};
};
"sver-1.8.4" = {
@@ -50823,13 +50265,13 @@ let
sha512 = "dJp4qg+x4JwSEW1HibAuMi0IIrBI3wuQr2GimmqB7OXR50wmwzfdusG+p39R9w3R6aFtZ2mzvxvWKQ3Bd/vx3g==";
};
};
- "synckit-0.9.0" = {
+ "synckit-0.9.1" = {
name = "synckit";
packageName = "synckit";
- version = "0.9.0";
+ version = "0.9.1";
src = fetchurl {
- url = "https://registry.npmjs.org/synckit/-/synckit-0.9.0.tgz";
- sha512 = "7RnqIMq572L8PeEzKeBINYEJDDxpcH8JEgLwUqBd3TkofhFRbkq4QLR0u+36avGAhCRbk2nnmjcW9SE531hPDg==";
+ url = "https://registry.npmjs.org/synckit/-/synckit-0.9.1.tgz";
+ sha512 = "7gr8p9TQP6RAHusBOSLs46F4564ZrjV8xFmw5zCmgmhGUcw2hxsShhJ6CEiHQMgPDwAQ1fWHPM0ypc4RMAig4A==";
};
};
"syntax-error-1.4.0" = {
@@ -50886,13 +50328,13 @@ let
sha512 = "zTvf0mcggrGeTe/2jJ6ECkJHAQPIYEwDoqsiqBjI24mvRmQbInK5jq33fyypaCBxX08hMkfmdOqj6haT33EqWw==";
};
};
- "tailwindcss-3.4.4" = {
+ "tailwindcss-3.4.6" = {
name = "tailwindcss";
packageName = "tailwindcss";
- version = "3.4.4";
+ version = "3.4.6";
src = fetchurl {
- url = "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.4.tgz";
- sha512 = "ZoyXOdJjISB7/BcLTR6SEsLgKtDStYyYZVLsUtWChO4Ps20CBad7lfJKVDiejocV4ME1hLmyY0WJE3hSDcmQ2A==";
+ url = "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.6.tgz";
+ sha512 = "1uRHzPB+Vzu57ocybfZ4jh5Q3SdlH7XW23J5sQoM9LhE9eIOlzxer/3XPSsycvih3rboRsvt0QCmzSrqyOYUIA==";
};
};
"tapable-0.2.9" = {
@@ -50976,6 +50418,15 @@ let
sha512 = "DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==";
};
};
+ "tar-7.2.0" = {
+ name = "tar";
+ packageName = "tar";
+ version = "7.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tar/-/tar-7.2.0.tgz";
+ sha512 = "hctwP0Nb4AB60bj8WQgRYaMOuJYRAPMGiQUAotms5igN8ppfQM+IvjQ5HcKu1MaZh2Wy2KWVTe563Yj8dfc14w==";
+ };
+ };
"tar-fs-2.1.1" = {
name = "tar-fs";
packageName = "tar-fs";
@@ -50985,13 +50436,13 @@ let
sha512 = "V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==";
};
};
- "tar-fs-3.0.5" = {
+ "tar-fs-3.0.6" = {
name = "tar-fs";
packageName = "tar-fs";
- version = "3.0.5";
+ version = "3.0.6";
src = fetchurl {
- url = "https://registry.npmjs.org/tar-fs/-/tar-fs-3.0.5.tgz";
- sha512 = "JOgGAmZyMgbqpLwct7ZV8VzkEB6pxXFBVErLtb+XCOqzc6w1xiWKI9GVd6bwk68EX7eJ4DWmfXVmq8K2ziZTGg==";
+ url = "https://registry.npmjs.org/tar-fs/-/tar-fs-3.0.6.tgz";
+ sha512 = "iokBDQQkUyeXhgPYaZxmczGPhnhXZ0CmrqI+MOb/WFGS9DW5wnfrLgtjUJBvz50vQ3qfRwJ62QVoCFu8mPVu5w==";
};
};
"tar-stream-1.6.2" = {
@@ -51021,15 +50472,6 @@ let
sha512 = "qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==";
};
};
- "taskkill-3.1.0" = {
- name = "taskkill";
- packageName = "taskkill";
- version = "3.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/taskkill/-/taskkill-3.1.0.tgz";
- sha512 = "5KcOFzPvd1nGFVrmB7H4+QAWVjYOf//+QTbOj0GpXbqtqbKGWVczG+rq6VhXAtdtlKLTs16NAmHRyF5vbggQ2w==";
- };
- };
"taskkill-5.0.0" = {
name = "taskkill";
packageName = "taskkill";
@@ -51174,13 +50616,13 @@ let
sha512 = "ehoNOk7xB/QBVX38P2kpoLip+s4Tlb6qYDBAoLg/rdRrrtRlDgs97a9MG0xU1IGq/Qpn47n1rwb5fWbM/Bprag==";
};
};
- "terminal-kit-3.0.1" = {
+ "terminal-kit-3.0.2" = {
name = "terminal-kit";
packageName = "terminal-kit";
- version = "3.0.1";
+ version = "3.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/terminal-kit/-/terminal-kit-3.0.1.tgz";
- sha512 = "KvscEh/893Qza4+1wW9BOYAYFFS3uy8JfuMpyxNS1Rw+bw2Qx33RjVkjzPkfY2hfzAcTEw9KGko4XZuX2scsQw==";
+ url = "https://registry.npmjs.org/terminal-kit/-/terminal-kit-3.0.2.tgz";
+ sha512 = "0xWCHPIs8Zo72OCgntgieACWuYnNlNY66xwG9Cw7jsLnzMsl7C4YGpzZc/xECIV3BezJcchOC6IpfRap333m4w==";
};
};
"terminal-link-2.1.1" = {
@@ -51201,13 +50643,13 @@ let
sha512 = "flFL3m4wuixmf6IfhFJd1YPiLiMuxEc8uHRM1buzIeZPm22Au2pDqBJQgdo7n1WfPU1ONFGv7YDwpFBmHGF6lg==";
};
};
- "terser-5.31.1" = {
+ "terser-5.31.3" = {
name = "terser";
packageName = "terser";
- version = "5.31.1";
+ version = "5.31.3";
src = fetchurl {
- url = "https://registry.npmjs.org/terser/-/terser-5.31.1.tgz";
- sha512 = "37upzU1+viGvuFtBo9NPufCb9dwM0+l9hMxYyWfBA+fbwrPqNJAhbZ6W47bBFnZHKHTUBnMvi87434qq+qnxOg==";
+ url = "https://registry.npmjs.org/terser/-/terser-5.31.3.tgz";
+ sha512 = "pAfYn3NIZLyZpa83ZKigvj6Rn9c/vd5KfYGX7cN1mnzqgDcxWvrU5ZtAfIKhEXz9nRecw4z3LXkjaq96/qZqAA==";
};
};
"terser-webpack-plugin-5.3.10" = {
@@ -51219,13 +50661,13 @@ let
sha512 = "BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==";
};
};
- "text-decoder-1.1.0" = {
+ "text-decoder-1.1.1" = {
name = "text-decoder";
packageName = "text-decoder";
- version = "1.1.0";
+ version = "1.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/text-decoder/-/text-decoder-1.1.0.tgz";
- sha512 = "TmLJNj6UgX8xcUZo4UDStGQtDiTzF7BzWlzn9g7UWrjkpHr5uJTK1ld16wZ3LXb2vb6jH8qU89dW5whuMdXYdw==";
+ url = "https://registry.npmjs.org/text-decoder/-/text-decoder-1.1.1.tgz";
+ sha512 = "8zll7REEv4GDD3x4/0pW+ppIxSNs7H1J10IKFZsuOMscumCdM2a+toDGLPA3T+1+fLBql4zbt5z83GEQGGV5VA==";
};
};
"text-decoding-1.0.0" = {
@@ -51768,13 +51210,13 @@ let
sha512 = "605uxS6bcYxGXw9qi62XyrV6Q3xwbndjachmNxu8HWTtVPxZfEJN9fd/SZS1Q54Sn2y0TMyMxFj/cJINqGHrKw==";
};
};
- "torrent-discovery-11.0.6" = {
+ "torrent-discovery-11.0.7" = {
name = "torrent-discovery";
packageName = "torrent-discovery";
- version = "11.0.6";
+ version = "11.0.7";
src = fetchurl {
- url = "https://registry.npmjs.org/torrent-discovery/-/torrent-discovery-11.0.6.tgz";
- sha512 = "9gnsBZLuOzbWlTIv0lx3pjmZ2Bj4WZfY06iO9AXKiNxA7/k508CWIE80PojYsgsR9SyjDkIVfnHLyJOgnDycvQ==";
+ url = "https://registry.npmjs.org/torrent-discovery/-/torrent-discovery-11.0.7.tgz";
+ sha512 = "JRG3Ko3YPrNbd3agqijOwqdyV0+m+8X7kkWDYu4zCMZxnyK87Mc6Bd1glXxOevY10GwBf2wQ+DToBOXYbvcA0Q==";
};
};
"torrent-discovery-5.4.0" = {
@@ -51840,15 +51282,6 @@ let
sha512 = "nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==";
};
};
- "tough-cookie-4.1.3" = {
- name = "tough-cookie";
- packageName = "tough-cookie";
- version = "4.1.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.3.tgz";
- sha512 = "aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==";
- };
- };
"tough-cookie-4.1.4" = {
name = "tough-cookie";
packageName = "tough-cookie";
@@ -51885,13 +51318,13 @@ let
sha512 = "15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==";
};
};
- "tr46-4.1.1" = {
+ "tr46-5.0.0" = {
name = "tr46";
packageName = "tr46";
- version = "4.1.1";
+ version = "5.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/tr46/-/tr46-4.1.1.tgz";
- sha512 = "2lv/66T7e5yNyhAAC4NaKe5nVavzuGJQVVtRYLyQ2OI8tsJ61PMLlelehb0wi2Hx6+hT/OJUWZcw8MjlSRnxvw==";
+ url = "https://registry.npmjs.org/tr46/-/tr46-5.0.0.tgz";
+ sha512 = "tk2G5R2KRwBd+ZN0zaEXpmzdKyOYksXwywulIX95MBODjSzMIuQnQ3m8JxgbhnL1LeVo7lqQKsYa1O3Htl7K5g==";
};
};
"trash-8.1.1" = {
@@ -51921,13 +51354,13 @@ let
sha512 = "7bBrcF+/LQzSgFmT0X5YclVqQxtv7TDJ1f8Wj7ibBu/U6BMLeOpUxuZjV7rMc44UtKxlnMFigdhFAIszSX1DMg==";
};
};
- "tree-dump-1.0.1" = {
+ "tree-dump-1.0.2" = {
name = "tree-dump";
packageName = "tree-dump";
- version = "1.0.1";
+ version = "1.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/tree-dump/-/tree-dump-1.0.1.tgz";
- sha512 = "WCkcRBVPSlHHq1dc/px9iOfqklvzCbdRwvlNfxGZsrHqf6aZttfPrd7DJTt6oR10dwUfpFFQeVTkPbBIZxX/YA==";
+ url = "https://registry.npmjs.org/tree-dump/-/tree-dump-1.0.2.tgz";
+ sha512 = "dpev9ABuLWdEubk+cIaI9cHwRNNDjkBBLXTwI4UCUFdQ5xXKqNXoK4FEciw/vxf+NQ7Cb7sGUyeUtORvHIdRXQ==";
};
};
"tree-kill-1.2.2" = {
@@ -51966,6 +51399,15 @@ let
sha512 = "1m4RA7xVAJrSGrrXGs0L3YTwyvBs2S8PbRHaLZAkFw7JR8oIFwYtysxlBZhYIa7xSyiYJKZ3iGrrk55cGA3i9A==";
};
};
+ "treeverse-3.0.0" = {
+ name = "treeverse";
+ packageName = "treeverse";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/treeverse/-/treeverse-3.0.0.tgz";
+ sha512 = "gcANaAnd2QDZFmHFEOF4k7uc1J/6a6z3DJMd/QwEyxLoKGiptJRwid582r7QIsFlFMIZ3SnxfS52S4hm2DHkuQ==";
+ };
+ };
"trim-newlines-1.0.0" = {
name = "trim-newlines";
packageName = "trim-newlines";
@@ -52245,13 +51687,13 @@ let
sha512 = "g5JVHCIJwzfISaXpXE1qvNalca5Jwob6FjI4AoPlqMusJ6ftFE7IkkFoMhVLRgK+4Kx3gkzb8UZK5t5yTTvEmA==";
};
};
- "tsx-4.15.4" = {
+ "tsx-4.16.2" = {
name = "tsx";
packageName = "tsx";
- version = "4.15.4";
+ version = "4.16.2";
src = fetchurl {
- url = "https://registry.npmjs.org/tsx/-/tsx-4.15.4.tgz";
- sha512 = "d++FLCwJLrXaBFtRcqdPBzu6FiVOJ2j+UsvUZPtoTrnYtCGU5CEW7iHXtNZfA2fcRTvJFWPqA6SWBuB0GSva9w==";
+ url = "https://registry.npmjs.org/tsx/-/tsx-4.16.2.tgz";
+ sha512 = "C1uWweJDgdtX2x600HjaFaucXTilT7tgUZHbOE4+ypskZ1OP8CRCSDkCxG6Vya9EwaFIVagWwpaVAn5wzypaqQ==";
};
};
"tty-browserify-0.0.1" = {
@@ -52263,15 +51705,6 @@ let
sha512 = "C3TaO7K81YvjCgQH9Q1S3R3P3BtN3RIM8n+OvX4il1K1zgE8ZhI0op7kClgkxtutIE8hQrcrHBXvIheqKUUCxw==";
};
};
- "tuf-js-1.1.7" = {
- name = "tuf-js";
- packageName = "tuf-js";
- version = "1.1.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/tuf-js/-/tuf-js-1.1.7.tgz";
- sha512 = "i3P9Kgw3ytjELUfpuKVDNBJvk4u5bXL6gskv572mcevPbSKCV3zt3djhmlEQ65yERjIbOSncy7U4cQJaB1CBCg==";
- };
- };
"tuf-js-2.2.1" = {
name = "tuf-js";
packageName = "tuf-js";
@@ -52344,6 +51777,15 @@ let
sha512 = "Z3/iJ6IWh8VBiACWQJaA5ulPQE5E1QwvBHj00uGzdQxdRnd8fh1DPqNOJqzQDu6DkOstORrtXzf/9adB+vMtEA==";
};
};
+ "turndown-7.2.0" = {
+ name = "turndown";
+ packageName = "turndown";
+ version = "7.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/turndown/-/turndown-7.2.0.tgz";
+ sha512 = "eCZGBN4nNNqM9Owkv9HAtWRYfLA4h909E/WGAWWBpmB275ehNhZyk87/Tpvjbp0jjNl9XwCsbe6bm6CqFsgD+A==";
+ };
+ };
"turndown-plugin-gfm-1.0.2" = {
name = "turndown-plugin-gfm";
packageName = "turndown-plugin-gfm";
@@ -52353,13 +51795,13 @@ let
sha512 = "vwz9tfvF7XN/jE0dGoBei3FXWuvll78ohzCZQuOb+ZjWrs3a0XhQVomJEb2Qh4VHTPNRO4GPZh0V7VRbiWwkRg==";
};
};
- "tus-js-client-3.1.3" = {
+ "tus-js-client-4.1.0" = {
name = "tus-js-client";
packageName = "tus-js-client";
- version = "3.1.3";
+ version = "4.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/tus-js-client/-/tus-js-client-3.1.3.tgz";
- sha512 = "n9k6rI/nPOuP2TaqPG6Ogz3a3V1cSH9en7N0VH4gh95jmG8JA58TJzLms2lBfb7aKVb3fdUunqYEG3WnQnZRvQ==";
+ url = "https://registry.npmjs.org/tus-js-client/-/tus-js-client-4.1.0.tgz";
+ sha512 = "e/nC/kJahvNYBcnwcqzuhFIvVELMMpbVXIoOOKdUn74SdQCvJd2JjqV2jZLv2EFOVbV4qLiO0lV7BxBXF21b6Q==";
};
};
"tweetnacl-0.14.5" = {
@@ -52416,15 +51858,6 @@ let
sha512 = "53RyidyjvkGpnWPMF9bQgFtWp+Sl8O2Rp13VavmJgfAP9WWG6q6TkrKU8iyJdnwnfgHI6k2hTlgqH4aSdjoTbg==";
};
};
- "type-fest-0.13.1" = {
- name = "type-fest";
- packageName = "type-fest";
- version = "0.13.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/type-fest/-/type-fest-0.13.1.tgz";
- sha512 = "34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==";
- };
- };
"type-fest-0.16.0" = {
name = "type-fest";
packageName = "type-fest";
@@ -52524,13 +51957,13 @@ let
sha512 = "tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==";
};
};
- "type-fest-4.20.0" = {
+ "type-fest-4.23.0" = {
name = "type-fest";
packageName = "type-fest";
- version = "4.20.0";
+ version = "4.23.0";
src = fetchurl {
- url = "https://registry.npmjs.org/type-fest/-/type-fest-4.20.0.tgz";
- sha512 = "MBh+PHUHHisjXf4tlx0CFWoMdjx8zCMLJHOjnV1prABYZFHqtFOyauCIK2/7w4oIfwkF8iNhLtnJEfVY2vn3iw==";
+ url = "https://registry.npmjs.org/type-fest/-/type-fest-4.23.0.tgz";
+ sha512 = "ZiBujro2ohr5+Z/hZWHESLz3g08BBdrdLMieYFULJO+tWc437sn8kQsWLJoZErY8alNhxre9K4p3GURAG11n+w==";
};
};
"type-is-1.6.18" = {
@@ -52623,15 +52056,6 @@ let
sha512 = "OJabfkAg1WLZSqJAJ0Z6Sdt3utnbzr/jh+NAHoyWHJe8CMSy79Gm085094M9nvTPy22KzTVn5Zq5mbapCI/hPA==";
};
};
- "typescript-2.9.2" = {
- name = "typescript";
- packageName = "typescript";
- version = "2.9.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/typescript/-/typescript-2.9.2.tgz";
- sha512 = "Gr4p6nFNaoufRIY4NMdpQRNmgxVIGMs4Fcu/ujdYk3nAZqk7supzBE9idmvfZIlH/Cuj//dvi+019qEue9lV0w==";
- };
- };
"typescript-3.9.10" = {
name = "typescript";
packageName = "typescript";
@@ -52650,15 +52074,6 @@ let
sha512 = "1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==";
};
};
- "typescript-5.3.3" = {
- name = "typescript";
- packageName = "typescript";
- version = "5.3.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/typescript/-/typescript-5.3.3.tgz";
- sha512 = "pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==";
- };
- };
"typescript-5.4.5" = {
name = "typescript";
packageName = "typescript";
@@ -52668,22 +52083,31 @@ let
sha512 = "vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==";
};
};
- "typescript-5.6.0-dev.20240614" = {
+ "typescript-5.5.4" = {
name = "typescript";
packageName = "typescript";
- version = "5.6.0-dev.20240614";
+ version = "5.5.4";
src = fetchurl {
- url = "https://registry.npmjs.org/typescript/-/typescript-5.6.0-dev.20240614.tgz";
- sha512 = "ZyRthucrT5pvqNRBtPTNixd1dnpzyf0WIK6WoTkLRIzMiI0IWM+jjI5DfNuokEx+7C8pXQDF+Zi8HPYg5ZLS+A==";
+ url = "https://registry.npmjs.org/typescript/-/typescript-5.5.4.tgz";
+ sha512 = "Mtq29sKDAEYP7aljRgtPOpTvOfbwRWlS6dPRzwjdE+C0R4brX/GUyhHSecbHMFLNBLcJIPt9nl9yG5TZ1weH+Q==";
};
};
- "typescript-auto-import-cache-0.3.2" = {
+ "typescript-5.6.0-dev.20240725" = {
+ name = "typescript";
+ packageName = "typescript";
+ version = "5.6.0-dev.20240725";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/typescript/-/typescript-5.6.0-dev.20240725.tgz";
+ sha512 = "kgUK4mJogTfm3+NjdYSb7LIerXpAG8lyYSdPHdfGPaJyBRhMJARPENf0TeUxhEOrGRuxHTrIPKdrSOQX5xTsuw==";
+ };
+ };
+ "typescript-auto-import-cache-0.3.3" = {
name = "typescript-auto-import-cache";
packageName = "typescript-auto-import-cache";
- version = "0.3.2";
+ version = "0.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/typescript-auto-import-cache/-/typescript-auto-import-cache-0.3.2.tgz";
- sha512 = "+laqe5SFL1vN62FPOOJSUDTZxtgsoOXjneYOXIpx5rQ4UMiN89NAtJLpqLqyebv9fgQ/IMeeTX+mQyRnwvJzvg==";
+ url = "https://registry.npmjs.org/typescript-auto-import-cache/-/typescript-auto-import-cache-0.3.3.tgz";
+ sha512 = "ojEC7+Ci1ij9eE6hp8Jl9VUNnsEKzztktP5gtYNRMrTmfXVwA1PITYYAkpxCvvupdSYa/Re51B6KMcv1CTZEUA==";
};
};
"typescript-tslint-plugin-0.5.4" = {
@@ -52758,15 +52182,6 @@ let
sha512 = "ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==";
};
};
- "ufo-1.5.3" = {
- name = "ufo";
- packageName = "ufo";
- version = "1.5.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/ufo/-/ufo-1.5.3.tgz";
- sha512 = "Y7HYmWaFwPUmkoQCUIAYpKqkOf+SbVj/2fJJZ4RJMCfZp0rTGwRbzQD+HghfnhKOjL9E01okqz+ncJskGYfBNw==";
- };
- };
"uglify-js-2.8.29" = {
name = "uglify-js";
packageName = "uglify-js";
@@ -52785,13 +52200,13 @@ let
sha512 = "T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==";
};
};
- "uglify-js-3.18.0" = {
+ "uglify-js-3.19.0" = {
name = "uglify-js";
packageName = "uglify-js";
- version = "3.18.0";
+ version = "3.19.0";
src = fetchurl {
- url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.18.0.tgz";
- sha512 = "SyVVbcNBCk0dzr9XL/R/ySrmYf0s372K6/hFklzgcp2lBFyXtw4I7BOdDjlLhE1aVqaI/SHWXWmYdlZxuyF38A==";
+ url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.19.0.tgz";
+ sha512 = "wNKHUY2hYYkf6oSFfhwwiHo4WCHzHmzcXsqXYTN9ja3iApYIFbb2U6ics9hBcYLHcYGQoAlwnZlTrf3oF+BL/Q==";
};
};
"uglify-to-browserify-1.0.2" = {
@@ -52938,13 +52353,13 @@ let
sha512 = "pJOW4nxjlmfwKApE4zvxLScM/njmwj/DiUBv7EabwE4O8kRUy+HIwxQtZLBPll/jx1LJyBcqNfB3/cpv9EZwOw==";
};
};
- "underscore-1.13.6" = {
+ "underscore-1.13.7" = {
name = "underscore";
packageName = "underscore";
- version = "1.13.6";
+ version = "1.13.7";
src = fetchurl {
- url = "https://registry.npmjs.org/underscore/-/underscore-1.13.6.tgz";
- sha512 = "+A5Sja4HP1M08MaXya7p5LvjuM7K6q/2EaC0+iovj/wOcMsTzMvDFbasi/oSapiwOlt252IqsKqPjCl7huKS0A==";
+ url = "https://registry.npmjs.org/underscore/-/underscore-1.13.7.tgz";
+ sha512 = "GMXzWtsc57XAtguZgaQViUOzs0KTkk8ojr3/xAxXLITqf/3EMwxC0inyETfDFjH/Krbhuep0HNbbjI9i/q3F3g==";
};
};
"underscore-1.4.4" = {
@@ -53001,15 +52416,6 @@ let
sha512 = "+hhVICbnp+rlzZMgxXenpvTxpuvA67Bfgtt+O9WOE5jo7w/dyiF1VmoZVIHvP2EkUjsyKyTwYKlLhA+j47m1Ew==";
};
};
- "undici-5.26.5" = {
- name = "undici";
- packageName = "undici";
- version = "5.26.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/undici/-/undici-5.26.5.tgz";
- sha512 = "cSb4bPFd5qgR7qr2jYAi0hlX9n5YKK2ONKkLFkxl+v/9BvC0sOpZjBHDBSXc5lWAf5ty9oZdRXytBIHzgUcerw==";
- };
- };
"undici-5.28.4" = {
name = "undici";
packageName = "undici";
@@ -53028,15 +52434,6 @@ let
sha512 = "JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==";
};
};
- "unenv-1.10.0-1717606461.a117952" = {
- name = "unenv";
- packageName = "unenv";
- version = "1.10.0-1717606461.a117952";
- src = fetchurl {
- url = "https://registry.npmjs.org/unenv-nightly/-/unenv-nightly-1.10.0-1717606461.a117952.tgz";
- sha512 = "u3TfBX02WzbHTpaEfWEKwDijDSFAHcgXkayUZ+MVDrjhLFvgAJzFGTSTmwlEhwWi2exyRQey23ah9wELMM6etg==";
- };
- };
"unherit-3.0.1" = {
name = "unherit";
packageName = "unherit";
@@ -53118,13 +52515,13 @@ let
sha512 = "pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==";
};
};
- "unified-11.0.4" = {
+ "unified-11.0.5" = {
name = "unified";
packageName = "unified";
- version = "11.0.4";
+ version = "11.0.5";
src = fetchurl {
- url = "https://registry.npmjs.org/unified/-/unified-11.0.4.tgz";
- sha512 = "apMPnyLjAX+ty4OrNap7yumyVAMlKx5IWU2wlzzUdYJO9A8f1p9m/gywF/GM2ZDFcjQPrx59Mc90KwmxsoklxQ==";
+ url = "https://registry.npmjs.org/unified/-/unified-11.0.5.tgz";
+ sha512 = "xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==";
};
};
"unified-9.2.2" = {
@@ -53388,13 +52785,13 @@ let
sha512 = "Op0XnmHUl6C2zo/yJCwhXQSm/SmW22eDZdWP2qdf4WpGrgO1ZxFodq+5zFyeRGasFjJotAnLgfuD1jkcKqiH1Q==";
};
};
- "unist-util-inspect-8.0.0" = {
+ "unist-util-inspect-8.1.0" = {
name = "unist-util-inspect";
packageName = "unist-util-inspect";
- version = "8.0.0";
+ version = "8.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/unist-util-inspect/-/unist-util-inspect-8.0.0.tgz";
- sha512 = "/3Wn/wU6/H6UEo4FoYUeo8KUePN8ERiZpQYFWYoihOsr1DoDuv80PeB0hobVZyYSvALa2e556bG1A1/AbwU4yg==";
+ url = "https://registry.npmjs.org/unist-util-inspect/-/unist-util-inspect-8.1.0.tgz";
+ sha512 = "mOlg8Mp33pR0eeFpo5d2902ojqFFOKMMG2hF8bmH7ZlhnmjFgh0NI3/ZDwdaBJNbvrS7LZFVrBVtIE9KZ9s7vQ==";
};
};
"unist-util-is-3.0.0" = {
@@ -53838,13 +53235,13 @@ let
sha512 = "1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==";
};
};
- "update-browserslist-db-1.0.16" = {
+ "update-browserslist-db-1.1.0" = {
name = "update-browserslist-db";
packageName = "update-browserslist-db";
- version = "1.0.16";
+ version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.16.tgz";
- sha512 = "KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ==";
+ url = "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.0.tgz";
+ sha512 = "EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==";
};
};
"update-check-1.5.3" = {
@@ -53901,13 +53298,13 @@ let
sha512 = "EDxhTEVPZZRLWYcJ4ZXjGFN0oP7qYvbXWzEgRm/Yql4dHX5wDbvh89YHP6PK1lzZJYrMtXUuZZz8XGK+U6U1og==";
};
};
- "update-notifier-7.0.0" = {
+ "update-notifier-7.1.0" = {
name = "update-notifier";
packageName = "update-notifier";
- version = "7.0.0";
+ version = "7.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/update-notifier/-/update-notifier-7.0.0.tgz";
- sha512 = "Hv25Bh+eAbOLlsjJreVPOs4vd51rrtCrmhyOJtbpAojro34jS4KQaEp4/EvlHJX7jSO42VvEFpkastVyXyIsdQ==";
+ url = "https://registry.npmjs.org/update-notifier/-/update-notifier-7.1.0.tgz";
+ sha512 = "8SV3rIqVY6EFC1WxH6L0j55s0MO79MFBS1pivmInRJg3pCEDgWHBj1Q6XByTtCLOZIFA0f6zoG9ZWf2Ks9lvTA==";
};
};
"upnp-device-client-1.0.2" = {
@@ -54261,6 +53658,15 @@ let
sha512 = "2ZLjisH0HQkpqZTg2m7TK0Yn7TETTg7DxM0EpCKIIIV2ky9w9nSxW5a7gzdk4nH2h+pomrrGw0uywrUJfsm2eA==";
};
};
+ "uuid-10.0.0" = {
+ name = "uuid";
+ packageName = "uuid";
+ version = "10.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/uuid/-/uuid-10.0.0.tgz";
+ sha512 = "8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ==";
+ };
+ };
"uuid-2.0.3" = {
name = "uuid";
packageName = "uuid";
@@ -54333,15 +53739,6 @@ let
sha512 = "+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==";
};
};
- "uuid-9.0.0" = {
- name = "uuid";
- packageName = "uuid";
- version = "9.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/uuid/-/uuid-9.0.0.tgz";
- sha512 = "MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg==";
- };
- };
"uuid-9.0.1" = {
name = "uuid";
packageName = "uuid";
@@ -54432,15 +53829,6 @@ let
sha512 = "M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw==";
};
};
- "validate-npm-package-name-5.0.0" = {
- name = "validate-npm-package-name";
- packageName = "validate-npm-package-name";
- version = "5.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-5.0.0.tgz";
- sha512 = "YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ==";
- };
- };
"validate-npm-package-name-5.0.1" = {
name = "validate-npm-package-name";
packageName = "validate-npm-package-name";
@@ -54549,15 +53937,6 @@ let
sha512 = "Hq72JaTpcTFdWiNA4Y22Amej2GH3BFmBaKPPlDZ4/oC8HNn2ISHLkFrJU4Ds8R3jcUi7oo5Y9jcMHKjES+N9wQ==";
};
};
- "vega-5.29.0" = {
- name = "vega";
- packageName = "vega";
- version = "5.29.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/vega/-/vega-5.29.0.tgz";
- sha512 = "4+pX8UIxV1rtHpIKvzHXof5CeyMTGKMDFtuN8UmSjvJ+l5FtSen++qmSxbAc/EnkLqo5i9B2iCYTr2og77EBrA==";
- };
- };
"vega-5.30.0" = {
name = "vega";
packageName = "vega";
@@ -54639,15 +54018,6 @@ let
sha512 = "0kUfAj0dg0U6GcEY0Kp6LiSTCZ8l8jl1qVdQyToMyKmtZg/q56qsiJQZy3WWRr1MtWkTIZL71xSJXgjwjeUaAw==";
};
};
- "vega-functions-5.14.0" = {
- name = "vega-functions";
- packageName = "vega-functions";
- version = "5.14.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/vega-functions/-/vega-functions-5.14.0.tgz";
- sha512 = "Q0rocHmJDfQ0tS91kdN8WcEosq1e3HPK1Yf5z36SPYPmTzKw3uxUGE52tLxC832acAYqPmi8R41wAoI/yFQTPg==";
- };
- };
"vega-functions-5.15.0" = {
name = "vega-functions";
packageName = "vega-functions";
@@ -54675,15 +54045,6 @@ let
sha512 = "m+xDtT5092YPSnV0rdTLW+AWmoCb+A54JQ66MUJwiDBpKxvfKnTiQeuiWDU2YudjUoXZN9EBOcI6QHF8H2Lu2A==";
};
};
- "vega-label-1.2.1" = {
- name = "vega-label";
- packageName = "vega-label";
- version = "1.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/vega-label/-/vega-label-1.2.1.tgz";
- sha512 = "n/ackJ5lc0Xs9PInCaGumYn2awomPjJ87EMVT47xNgk2bHmJoZV1Ve/1PUM6Eh/KauY211wPMrNp/9Im+7Ripg==";
- };
- };
"vega-label-1.3.0" = {
name = "vega-label";
packageName = "vega-label";
@@ -54702,15 +54063,6 @@ let
sha512 = "ktIdGz3DRIS3XfTP9lJ6oMT5cKwC86nQkjUbXZbOtwXQFVNE2xVWBuH13GP6FKUZxg5hJCMtb5v/e/fwTvhKsQ==";
};
};
- "vega-parser-6.3.0" = {
- name = "vega-parser";
- packageName = "vega-parser";
- version = "6.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/vega-parser/-/vega-parser-6.3.0.tgz";
- sha512 = "swS5RuP2imRarMpGWaAZusoKkXc4Z5WxWx349pkqxIAf4F7H8Ya9nThEkSWsFozd75O9nWh0QLifds8Xb7KjUg==";
- };
- };
"vega-parser-6.4.0" = {
name = "vega-parser";
packageName = "vega-parser";
@@ -54729,15 +54081,6 @@ let
sha512 = "sqfnAAHumU7MWU1tQN3b6HNgKGF3legek0uLHhjLKcDJQxEc7kwcD18txFz2ffQks6d5j+AUhBiq4GARWf0DEQ==";
};
};
- "vega-regression-1.2.0" = {
- name = "vega-regression";
- packageName = "vega-regression";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/vega-regression/-/vega-regression-1.2.0.tgz";
- sha512 = "6TZoPlhV/280VbxACjRKqlE0Nv48z5g4CSNf1FmGGTWS1rQtElPTranSoVW4d7ET5eVQ6f9QLxNAiALptvEq+g==";
- };
- };
"vega-regression-1.3.0" = {
name = "vega-regression";
packageName = "vega-regression";
@@ -54747,15 +54090,6 @@ let
sha512 = "gxOQfmV7Ft/MYKpXDEo09WZyBuKOBqxqDRWay9KtfGq/E0Y4vbTPsWLv2cB1ToPJdKE6XSN6Re9tCIw5M/yMUg==";
};
};
- "vega-runtime-6.1.4" = {
- name = "vega-runtime";
- packageName = "vega-runtime";
- version = "6.1.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/vega-runtime/-/vega-runtime-6.1.4.tgz";
- sha512 = "0dDYXyFLQcxPQ2OQU0WuBVYLRZnm+/CwVu6i6N4idS7R9VXIX5581EkCh3pZ20pQ/+oaA7oJ0pR9rJgJ6rukRQ==";
- };
- };
"vega-runtime-6.2.0" = {
name = "vega-runtime";
packageName = "vega-runtime";
@@ -54774,15 +54108,6 @@ let
sha512 = "dArA28DbV/M92O2QvswnzCmQ4bq9WwLKUoyhqFYWCltmDwkmvX7yhqiFLFMWPItIm7mi4Qyoygby6r4DKd1X2A==";
};
};
- "vega-scenegraph-4.12.0" = {
- name = "vega-scenegraph";
- packageName = "vega-scenegraph";
- version = "4.12.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/vega-scenegraph/-/vega-scenegraph-4.12.0.tgz";
- sha512 = "l0Us6TLRV7AAd1CxB6mvxXt9/psknqgrr0+6d1zNWtHL8tGszPE4FqllZC5m4ZtUouvE4PWKGybd5uJR0dpchw==";
- };
- };
"vega-scenegraph-4.13.0" = {
name = "vega-scenegraph";
packageName = "vega-scenegraph";
@@ -54819,15 +54144,6 @@ let
sha512 = "6rXc6JdDt8MnCRy6UzUCsa6EeFycPDmvioMddLfKw38OYCV8pRQC5nw44gyddOwXgUTJLiCtn/sp53P0iA542A==";
};
};
- "vega-transforms-4.11.1" = {
- name = "vega-transforms";
- packageName = "vega-transforms";
- version = "4.11.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/vega-transforms/-/vega-transforms-4.11.1.tgz";
- sha512 = "DDbqEQnvy9/qEvv0bAKPqAuzgaNb7Lh2xKJFom2Yzx4tZHCl8dnKxC1lH9JnJlAMdtZuiNLPARUkf3pCNQ/olw==";
- };
- };
"vega-transforms-4.12.0" = {
name = "vega-transforms";
packageName = "vega-transforms";
@@ -54837,15 +54153,6 @@ let
sha512 = "bh/2Qbj85O70mjfLRgPKAsABArgSUP0k+GjmaY54zukIRxoGxKju+85nigeX/aR/INpEqNWif+5lL+NvmyWA5w==";
};
};
- "vega-typings-1.1.0" = {
- name = "vega-typings";
- packageName = "vega-typings";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/vega-typings/-/vega-typings-1.1.0.tgz";
- sha512 = "uI6RWlMiGRhsgmw/LzJtjCc0kwhw2f0JpyNMTAnOy90kE4e4CiaZN5nJp8S9CcfcBoPEZHc166AOn2SSNrKn3A==";
- };
- };
"vega-typings-1.3.1" = {
name = "vega-typings";
packageName = "vega-typings";
@@ -54864,15 +54171,6 @@ let
sha512 = "omNmGiZBdjm/jnHjZlywyYqafscDdHaELHx1q96n5UOz/FlO9JO99P4B3jZg391EFG8dqhWjQilSf2JH6F1mIw==";
};
};
- "vega-view-5.12.1" = {
- name = "vega-view";
- packageName = "vega-view";
- version = "5.12.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/vega-view/-/vega-view-5.12.1.tgz";
- sha512 = "9TdF35FTZNzfvfj+YM38vHOgfeGxMy2xMY+2B46ZHoustt3J/mxtfueu3RGFsGIitUGhFrmLeEHxlVHP/tY+sQ==";
- };
- };
"vega-view-5.13.0" = {
name = "vega-view";
packageName = "vega-view";
@@ -54882,15 +54180,6 @@ let
sha512 = "ZPAAQ3iYz6YrQjJoDT+0bcxJkXt9PKF5v4OO7Omw8PFhkIv++jFXeKlQTW1bBtyQ92dkdGGHv5lYY67Djqjf3A==";
};
};
- "vega-view-transforms-4.5.9" = {
- name = "vega-view-transforms";
- packageName = "vega-view-transforms";
- version = "4.5.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/vega-view-transforms/-/vega-view-transforms-4.5.9.tgz";
- sha512 = "NxEq4ZD4QwWGRrl2yDLnBRXM9FgCI+vvYb3ZC2+nVDtkUxOlEIKZsMMw31op5GZpfClWLbjCT3mVvzO2xaTF+g==";
- };
- };
"vega-view-transforms-4.6.0" = {
name = "vega-view-transforms";
packageName = "vega-view-transforms";
@@ -54981,13 +54270,13 @@ let
sha512 = "r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==";
};
};
- "vfile-6.0.1" = {
+ "vfile-6.0.2" = {
name = "vfile";
packageName = "vfile";
- version = "6.0.1";
+ version = "6.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/vfile/-/vfile-6.0.1.tgz";
- sha512 = "1bYqc7pt6NIADBJ98UiG0Bn/CHIVOoZ/IyEkqIruLg0mE1BKzkOXY2D6CSqQIcKqgadppE5lrxgWXJmXd7zZJw==";
+ url = "https://registry.npmjs.org/vfile/-/vfile-6.0.2.tgz";
+ sha512 = "zND7NlS8rJYb/sPqkb13ZvbbUoExdbi4w3SfRrMq6R3FvnLQmmfpajJNITuuYm6AZ5uao9vy4BAos3EXBPf2rg==";
};
};
"vfile-find-up-6.1.0" = {
@@ -55008,13 +54297,13 @@ let
sha512 = "YF23YMyASIIJXpktBa4vIGLJ5Gs88UB/XePgqPmTa7cDA+JeO3yclbpheQYCHjVHBn/yePzrXuygIL+xbvRYHw==";
};
};
- "vfile-location-5.0.2" = {
+ "vfile-location-5.0.3" = {
name = "vfile-location";
packageName = "vfile-location";
- version = "5.0.2";
+ version = "5.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/vfile-location/-/vfile-location-5.0.2.tgz";
- sha512 = "NXPYyxyBSH7zB5U6+3uDdd6Nybz6o6/od9rk8bp9H8GR3L+cm/fC0uUTbqBmUTnMCUDslAGBOIKNfvvb+gGlDg==";
+ url = "https://registry.npmjs.org/vfile-location/-/vfile-location-5.0.3.tgz";
+ sha512 = "5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg==";
};
};
"vfile-message-2.0.4" = {
@@ -55197,76 +54486,67 @@ let
sha512 = "Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w==";
};
};
- "volar-service-css-0.0.45" = {
+ "volar-service-css-0.0.59" = {
name = "volar-service-css";
packageName = "volar-service-css";
- version = "0.0.45";
+ version = "0.0.59";
src = fetchurl {
- url = "https://registry.npmjs.org/volar-service-css/-/volar-service-css-0.0.45.tgz";
- sha512 = "f+AlUI1+kESbcZSVaNJVAnK0c/9Da5StoxzPqA5/8VqUHJWNdubWNnwG5xpFVTfgh6pgTcey3UBhBfHytFaIOg==";
+ url = "https://registry.npmjs.org/volar-service-css/-/volar-service-css-0.0.59.tgz";
+ sha512 = "gLNjJnECbalPvQB7qeJjhkDN8sR5M3ItbVYjnyio61aHaWptIiXm/HfDahcQ2ApwmvWidkMWWegjGq5L0BENDA==";
};
};
- "volar-service-emmet-0.0.45" = {
+ "volar-service-emmet-0.0.59" = {
name = "volar-service-emmet";
packageName = "volar-service-emmet";
- version = "0.0.45";
+ version = "0.0.59";
src = fetchurl {
- url = "https://registry.npmjs.org/volar-service-emmet/-/volar-service-emmet-0.0.45.tgz";
- sha512 = "9nLXSDkR1vA/3fQkFEsSXAu3XovQxOpTkVG2jilQgfek/K1ZLkaA/WMhN/TtmPmQg4NxE9Ni6mA5udBQ5gVXIA==";
+ url = "https://registry.npmjs.org/volar-service-emmet/-/volar-service-emmet-0.0.59.tgz";
+ sha512 = "6EynHcuMwMBETpK29TbZvIMmvzdVG+Tkokk9VWfZeI+SwDptk2tgdhEqiXXvIkqYNgbuu73Itp66lpH76cAU+Q==";
};
};
- "volar-service-html-0.0.45" = {
+ "volar-service-html-0.0.59" = {
name = "volar-service-html";
packageName = "volar-service-html";
- version = "0.0.45";
+ version = "0.0.59";
src = fetchurl {
- url = "https://registry.npmjs.org/volar-service-html/-/volar-service-html-0.0.45.tgz";
- sha512 = "tLTJqfy1v5C4nmeAsfekFIKPl4r4qDMyL0L9MWywr/EApZzPCsbeUGxCqdzxSMC2q7PMCfX2i167txDo+J0LVA==";
+ url = "https://registry.npmjs.org/volar-service-html/-/volar-service-html-0.0.59.tgz";
+ sha512 = "hEXOsYpILDlITZxnqRLV9OepVWD63GZBsyjMxszwdzlxvGZjzbGcBBinJGGJRwFIV8djdJwnt91bkdg1V5tj6Q==";
};
};
- "volar-service-prettier-0.0.45" = {
+ "volar-service-prettier-0.0.59" = {
name = "volar-service-prettier";
packageName = "volar-service-prettier";
- version = "0.0.45";
+ version = "0.0.59";
src = fetchurl {
- url = "https://registry.npmjs.org/volar-service-prettier/-/volar-service-prettier-0.0.45.tgz";
- sha512 = "+mBS2EsDgp/kunKEBnHvhBwIQm5v2ahw4NKpKdg4sTpXy3UxqHt+Fq/wRYQ7Z8LlNVNRVfp75ThjM+w2zaZBAw==";
+ url = "https://registry.npmjs.org/volar-service-prettier/-/volar-service-prettier-0.0.59.tgz";
+ sha512 = "FmBR4lsgFRGR3V0LnxZZal0WqdOJjuLL6mQSj4p57M15APtQwuocG/FiF+ONGFnwRXMOIBDBTCARdth+TKgL3A==";
};
};
- "volar-service-typescript-0.0.45" = {
+ "volar-service-typescript-0.0.59" = {
name = "volar-service-typescript";
packageName = "volar-service-typescript";
- version = "0.0.45";
+ version = "0.0.59";
src = fetchurl {
- url = "https://registry.npmjs.org/volar-service-typescript/-/volar-service-typescript-0.0.45.tgz";
- sha512 = "i/mMIIAMastJ2kgPo3qvX0Rrl7NyxhIYZ0ug/B4ambZcLPI1vzBgS2fmvyWX3jhBYHh8NmbAotFj+0Y9JtN47A==";
+ url = "https://registry.npmjs.org/volar-service-typescript/-/volar-service-typescript-0.0.59.tgz";
+ sha512 = "VCOpfiu+lUo5lapWLB5L5vmQGtwzmNWn5MueV915eku7blpphmE+Z7hCNcL1NApn7AetXWhiblv8ZhmUx/dGIA==";
};
};
- "volar-service-typescript-twoslash-queries-0.0.45" = {
+ "volar-service-typescript-twoslash-queries-0.0.59" = {
name = "volar-service-typescript-twoslash-queries";
packageName = "volar-service-typescript-twoslash-queries";
- version = "0.0.45";
+ version = "0.0.59";
src = fetchurl {
- url = "https://registry.npmjs.org/volar-service-typescript-twoslash-queries/-/volar-service-typescript-twoslash-queries-0.0.45.tgz";
- sha512 = "KrPUUvKggZgV9mrDpstCzmf20irgv0ooMv+FGDzIIQUkya+d2+nSS8Mx2h9FvsYgLccUVw5jU3Rhwhd3pv/7qg==";
+ url = "https://registry.npmjs.org/volar-service-typescript-twoslash-queries/-/volar-service-typescript-twoslash-queries-0.0.59.tgz";
+ sha512 = "skm8e6yhCIkqLwJB6S9MqT5lO9LNFuMD3dYxKpmOZs1CKbXmCZZTmLfEaD5VkJae1xdleEDZFFTHl2O5HLjOGQ==";
};
};
- "vscode-css-languageservice-3.0.13" = {
+ "vscode-css-languageservice-6.3.0" = {
name = "vscode-css-languageservice";
packageName = "vscode-css-languageservice";
- version = "3.0.13";
+ version = "6.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/vscode-css-languageservice/-/vscode-css-languageservice-3.0.13.tgz";
- sha512 = "RWkO/c/A7iXhHEy3OuEqkCqavDjpD4NF2Ca8vjai+ZtEYNeHrm1ybTnBYLP4Ft1uXvvaaVtYA9HrDjD6+CUONg==";
- };
- };
- "vscode-css-languageservice-6.2.14" = {
- name = "vscode-css-languageservice";
- packageName = "vscode-css-languageservice";
- version = "6.2.14";
- src = fetchurl {
- url = "https://registry.npmjs.org/vscode-css-languageservice/-/vscode-css-languageservice-6.2.14.tgz";
- sha512 = "5UPQ9Y1sUTnuMyaMBpO7LrBkqjhEJb5eAwdUlDp+Uez8lry+Tspnk3+3p2qWS4LlNsr4p3v9WkZxUf1ltgFpgw==";
+ url = "https://registry.npmjs.org/vscode-css-languageservice/-/vscode-css-languageservice-6.3.0.tgz";
+ sha512 = "nU92imtkgzpCL0xikrIb8WvedV553F2BENzgz23wFuok/HLN5BeQmroMy26pUwFxV2eV8oNRmYCUv8iO7kSMhw==";
};
};
"vscode-emmet-helper-1.2.17" = {
@@ -55278,40 +54558,13 @@ let
sha512 = "X4pzcrJ8dE7M3ArFuySF5fgipKDd/EauXkiJwtjBIVRWpVNq0tF9+lNCyuC7iDUwP3Oq7ow/TGssD3GdG96Jow==";
};
};
- "vscode-html-languageservice-2.1.12" = {
+ "vscode-html-languageservice-5.3.0" = {
name = "vscode-html-languageservice";
packageName = "vscode-html-languageservice";
- version = "2.1.12";
+ version = "5.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/vscode-html-languageservice/-/vscode-html-languageservice-2.1.12.tgz";
- sha512 = "mIb5VMXM5jI97HzCk2eadI1K//rCEZXte0wBqA7PGXsyJH4KTyJUaYk9MR+mbfpUl2vMi3HZw9GUOLGYLc6l5w==";
- };
- };
- "vscode-html-languageservice-5.2.0" = {
- name = "vscode-html-languageservice";
- packageName = "vscode-html-languageservice";
- version = "5.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/vscode-html-languageservice/-/vscode-html-languageservice-5.2.0.tgz";
- sha512 = "cdNMhyw57/SQzgUUGSIMQ66jikqEN6nBNyhx5YuOyj9310+eY9zw8Q0cXpiKzDX8aHYFewQEXRnigl06j/TVwQ==";
- };
- };
- "vscode-html-languageservice-5.2.0-34a5462" = {
- name = "vscode-html-languageservice";
- packageName = "vscode-html-languageservice";
- version = "5.2.0-34a5462";
- src = fetchurl {
- url = "https://registry.npmjs.org/@johnsoncodehk/vscode-html-languageservice/-/vscode-html-languageservice-5.2.0-34a5462.tgz";
- sha512 = "etqLfpSJ5zaw76KUNF603be6d6QsiQPmaHr9FKEp4zhLZJzWCCMH6Icak7MtLUFLZLMpL761mZNImi/joBo1ZA==";
- };
- };
- "vscode-json-languageservice-3.11.0" = {
- name = "vscode-json-languageservice";
- packageName = "vscode-json-languageservice";
- version = "3.11.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/vscode-json-languageservice/-/vscode-json-languageservice-3.11.0.tgz";
- sha512 = "QxI+qV97uD7HHOCjh3MrM1TfbdwmTXrMckri5Tus1/FQiG3baDZb2C9Y0y8QThs7PwHYBIQXcAc59ZveCRZKPA==";
+ url = "https://registry.npmjs.org/vscode-html-languageservice/-/vscode-html-languageservice-5.3.0.tgz";
+ sha512 = "C4Z3KsP5Ih+fjHpiBc5jxmvCl+4iEwvXegIrzu2F5pktbWvQaBT3YkVPk8N+QlSSMk8oCG6PKtZ/Sq2YHb5e8g==";
};
};
"vscode-json-languageservice-4.2.1" = {
@@ -55323,15 +54576,6 @@ let
sha512 = "xGmv9QIWs2H8obGbWg+sIPI/3/pFgj/5OWBhNzs00BkYQ9UaB2F6JJaGB/2/YOZJ3BvLXQTC4Q7muqU25QgAhA==";
};
};
- "vscode-jsonrpc-3.5.0" = {
- name = "vscode-jsonrpc";
- packageName = "vscode-jsonrpc";
- version = "3.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-3.5.0.tgz";
- sha512 = "LeE9LS1IOIRDZy5Xugrbk2tKeMa64vkRODrXPZbwyn2l/Q0e/jyYq8ze/Lo96sjOFiRe3HHbTVN39Ta8KN2RpA==";
- };
- };
"vscode-jsonrpc-4.0.0" = {
name = "vscode-jsonrpc";
packageName = "vscode-jsonrpc";
@@ -55395,15 +54639,6 @@ let
sha512 = "C+r0eKJUIfiDIfwJhria30+TYWPtuHJXHtI7J0YlOmKAo7ogxP20T0zxB7HZQIFhIyvoBPwWskjxrvAtfjyZfA==";
};
};
- "vscode-jsonrpc-8.2.0-next.2" = {
- name = "vscode-jsonrpc";
- packageName = "vscode-jsonrpc";
- version = "8.2.0-next.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-8.2.0-next.2.tgz";
- sha512 = "1FQrqLselaLLe5ApFSU/8qGUbJ8tByWbqczMkT2PEDpDYthCQTe5wONPuVphe7BB+FvZwvBFI2kFkY7FtyHc1A==";
- };
- };
"vscode-jsonrpc-8.2.1" = {
name = "vscode-jsonrpc";
packageName = "vscode-jsonrpc";
@@ -55422,24 +54657,6 @@ let
sha512 = "GL4QdbYUF/XxQlAsvYWZRV3V34kOkpRlvV60/72ghHfsYFnS/v2MANZ9P6sHmxFcZKOse8O+L9G7Czg0NUWing==";
};
};
- "vscode-languageserver-3.5.1" = {
- name = "vscode-languageserver";
- packageName = "vscode-languageserver";
- version = "3.5.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-3.5.1.tgz";
- sha512 = "RYUKn0DgHTFcS8kS4VaNCjNMaQXYqiXdN9bKrFjXzu5RPKfjIYcoh47oVWwZj4L3R/DPB0Se7HPaDatvYY2XgQ==";
- };
- };
- "vscode-languageserver-4.4.2" = {
- name = "vscode-languageserver";
- packageName = "vscode-languageserver";
- version = "4.4.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-4.4.2.tgz";
- sha512 = "61y8Raevi9EigDgg9NelvT9cUAohiEbUl1LOwQQgOCAaNX62yKny/ddi0uC+FUTm4CzsjhBu+06R+vYgfCYReA==";
- };
- };
"vscode-languageserver-5.2.1" = {
name = "vscode-languageserver";
packageName = "vscode-languageserver";
@@ -55485,15 +54702,6 @@ let
sha512 = "eUt8f1z2N2IEUDBsKaNapkz7jl5QpskN2Y0G01T/ItMxBxw1fJwvtySGB9QMecatne8jFIWJGWI61dWjyTLQsw==";
};
};
- "vscode-languageserver-8.2.0-next.3" = {
- name = "vscode-languageserver";
- packageName = "vscode-languageserver";
- version = "8.2.0-next.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-8.2.0-next.3.tgz";
- sha512 = "fqHRwcIRoxfKke7iLDSeUmdo3uk7o/uWNn/44xdWa4urdhsvpTZ5c1GsL1EX4TAvdDg0qeXy89NBZ5Gld2DkgQ==";
- };
- };
"vscode-languageserver-9.0.1" = {
name = "vscode-languageserver";
packageName = "vscode-languageserver";
@@ -55557,15 +54765,6 @@ let
sha512 = "924/h0AqsMtA5yK22GgMtCYiMdCOtWTSGgUOkgEDX+wk2b0x4sAfLiO4NxBxqbiVtz7K7/1/RgVrVI0NClZwqA==";
};
};
- "vscode-languageserver-protocol-3.17.4-next.3" = {
- name = "vscode-languageserver-protocol";
- packageName = "vscode-languageserver-protocol";
- version = "3.17.4-next.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.17.4-next.3.tgz";
- sha512 = "GnW3ldfzlsDK9B1/L1edBW1ddSakC59r+DRipTYCcXIT/zCCbLID998Dxn+exgrL33e3/XLQ+7hQQiSz6TnhKQ==";
- };
- };
"vscode-languageserver-protocol-3.17.5" = {
name = "vscode-languageserver-protocol";
packageName = "vscode-languageserver-protocol";
@@ -55575,24 +54774,6 @@ let
sha512 = "mb1bvRJN8SVznADSGWM9u/b07H7Ecg0I3OgXDuLdn307rl/J3A9YD6/eYOssqhecL27hK1IPZAsaqh00i/Jljg==";
};
};
- "vscode-languageserver-protocol-3.5.1" = {
- name = "vscode-languageserver-protocol";
- packageName = "vscode-languageserver-protocol";
- version = "3.5.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.5.1.tgz";
- sha512 = "1fPDIwsAv1difCV+8daOrJEGunClNJWqnUHq/ncWrjhitKWXgGmRCjlwZ3gDUTt54yRcvXz1PXJDaRNvNH6pYA==";
- };
- };
- "vscode-languageserver-protocol-foldingprovider-2.0.1" = {
- name = "vscode-languageserver-protocol-foldingprovider";
- packageName = "vscode-languageserver-protocol-foldingprovider";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/vscode-languageserver-protocol-foldingprovider/-/vscode-languageserver-protocol-foldingprovider-2.0.1.tgz";
- sha512 = "N8bOS8i0xuQMn/y0bijyefDbOsMl6hiH6LDREYWavTLTM5jbj44EiQfStsbmAv/0eaFKkL/jf5hW7nWwBy2HBw==";
- };
- };
"vscode-languageserver-textdocument-1.0.11" = {
name = "vscode-languageserver-textdocument";
packageName = "vscode-languageserver-textdocument";
@@ -55638,15 +54819,6 @@ let
sha512 = "tZFUSbyjUcrh+qQf13ALX4QDdOfDX0cVaBFgy7ktJ0VwS7AW/yRKgGPSxVqqP9OCMNPdqP57O5q47w2pEwfaUg==";
};
};
- "vscode-languageserver-types-3.16.0-next.2" = {
- name = "vscode-languageserver-types";
- packageName = "vscode-languageserver-types";
- version = "3.16.0-next.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.16.0-next.2.tgz";
- sha512 = "QjXB7CKIfFzKbiCJC4OWC8xUncLsxo19FzGVp/ADFvvi87PlmBSCAtZI5xwGjF5qE0xkLf0jjKUn3DzmpDP52Q==";
- };
- };
"vscode-languageserver-types-3.17.0-next.3" = {
name = "vscode-languageserver-types";
packageName = "vscode-languageserver-types";
@@ -55674,15 +54846,6 @@ let
sha512 = "SYU4z1dL0PyIMd4Vj8YOqFvHu7Hz/enbWtpfnVbJHU4Nd1YNYx8u0ennumc6h48GQNeOLxmwySmnADouT/AuZA==";
};
};
- "vscode-languageserver-types-3.17.4-next.2" = {
- name = "vscode-languageserver-types";
- packageName = "vscode-languageserver-types";
- version = "3.17.4-next.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.17.4-next.2.tgz";
- sha512 = "r6tXyCXyXQH7b6VHkvRT0Nd9v+DWQiosgTR6HQajCb4iJ1myr3KgueWEGBF1Ph5/YAiDy8kXUhf8dHl7wE1H2A==";
- };
- };
"vscode-languageserver-types-3.17.5" = {
name = "vscode-languageserver-types";
packageName = "vscode-languageserver-types";
@@ -55692,33 +54855,6 @@ let
sha512 = "Ld1VelNuX9pdF39h2Hgaeb5hEZM2Z3jUrrMgWQAu82jMtZp7p3vJT3BzToKtZI7NgQssZje5o0zryOrhQvzQAg==";
};
};
- "vscode-languageserver-types-3.5.0" = {
- name = "vscode-languageserver-types";
- packageName = "vscode-languageserver-types";
- version = "3.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.5.0.tgz";
- sha512 = "D4rUfu/oKYdc9Tmec0nEfedj+uXO2tZHR+eoHs9rE9G/QpRyZaHuug8ZUNGTGdO+ALLGgenL6bRpY8y3J9acHg==";
- };
- };
- "vscode-nls-2.0.2" = {
- name = "vscode-nls";
- packageName = "vscode-nls";
- version = "2.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/vscode-nls/-/vscode-nls-2.0.2.tgz";
- sha512 = "xK4p7Wksahb1imTwJZeA7+OSobDlRkWYWBuz9eR6LyJRLLG4LBxvLvZF8GO1ZY1tUWHITjZn2BtA8nRufKdHSg==";
- };
- };
- "vscode-nls-3.2.5" = {
- name = "vscode-nls";
- packageName = "vscode-nls";
- version = "3.2.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/vscode-nls/-/vscode-nls-3.2.5.tgz";
- sha512 = "ITtoh3V4AkWXMmp3TB97vsMaHRgHhsSFPsUdzlueSL+dRZbSNTZeOmdQv60kjCV306ghPxhDeoNUEm3+EZMuyw==";
- };
- };
"vscode-nls-4.1.2" = {
name = "vscode-nls";
packageName = "vscode-nls";
@@ -55809,13 +54945,13 @@ let
sha512 = "4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==";
};
};
- "w3c-xmlserializer-4.0.0" = {
+ "w3c-xmlserializer-5.0.0" = {
name = "w3c-xmlserializer";
packageName = "w3c-xmlserializer";
- version = "4.0.0";
+ version = "5.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-4.0.0.tgz";
- sha512 = "d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==";
+ url = "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-5.0.0.tgz";
+ sha512 = "o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==";
};
};
"walk-2.3.15" = {
@@ -55926,15 +55062,6 @@ let
sha512 = "d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==";
};
};
- "web-tree-sitter-0.20.5" = {
- name = "web-tree-sitter";
- packageName = "web-tree-sitter";
- version = "0.20.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/web-tree-sitter/-/web-tree-sitter-0.20.5.tgz";
- sha512 = "mpXlqIeEBE5Q71cnBnt8w6XKhIiKmllPECqsIFBtMvzcfCxA8+614iyMJXBCQo95Vs3y1zORLqiLJn25pYZ4Tw==";
- };
- };
"web-tree-sitter-0.22.5" = {
name = "web-tree-sitter";
packageName = "web-tree-sitter";
@@ -56034,13 +55161,13 @@ let
sha512 = "VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==";
};
};
- "webpack-5.92.0" = {
+ "webpack-5.93.0" = {
name = "webpack";
packageName = "webpack";
- version = "5.92.0";
+ version = "5.93.0";
src = fetchurl {
- url = "https://registry.npmjs.org/webpack/-/webpack-5.92.0.tgz";
- sha512 = "Bsw2X39MYIgxouNATyVpCNVWBCuUwDgWtN78g6lSdPJRLaQ/PUVm/oXcaRAyY/sMFoKFQrsPeqvTizWtq7QPCA==";
+ url = "https://registry.npmjs.org/webpack/-/webpack-5.93.0.tgz";
+ sha512 = "Y0m5oEY1LRuwly578VqluorkXbvXKh7U3rLoQCEO04M97ScRr44afGVkI0FQFsXzysk5OgFAxjZAb9rsGQVihA==";
};
};
"webpack-cli-5.1.4" = {
@@ -56061,13 +55188,13 @@ let
sha512 = "BVdTqhhs+0IfoeAf7EoH5WE+exCmqGerHfDM0IL096Px60Tq2Mn9MAbnaGUe6HiMa41KMCYF19gyzZmBcq/o4Q==";
};
};
- "webpack-dev-middleware-7.2.1" = {
+ "webpack-dev-middleware-7.3.0" = {
name = "webpack-dev-middleware";
packageName = "webpack-dev-middleware";
- version = "7.2.1";
+ version = "7.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-7.2.1.tgz";
- sha512 = "hRLz+jPQXo999Nx9fXVdKlg/aehsw1ajA9skAneGmT03xwmyuhvF93p6HUKKbWhXdcERtGTzUCtIQr+2IQegrA==";
+ url = "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-7.3.0.tgz";
+ sha512 = "xD2qnNew+F6KwOGZR7kWdbIou/ud7cVqLEXeK1q0nHcNsX/u7ul/fSdlOTX4ntSL5FNFy7ZJJXbf0piF591JYw==";
};
};
"webpack-dev-server-4.15.2" = {
@@ -56115,13 +55242,13 @@ let
sha512 = "/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==";
};
};
- "webrtc-polyfill-1.1.6" = {
+ "webrtc-polyfill-1.1.8" = {
name = "webrtc-polyfill";
packageName = "webrtc-polyfill";
- version = "1.1.6";
+ version = "1.1.8";
src = fetchurl {
- url = "https://registry.npmjs.org/webrtc-polyfill/-/webrtc-polyfill-1.1.6.tgz";
- sha512 = "sB9m4P5ZF6Af1zNiMc/jW+PMVtvPSRuE3f0FNhje5iplljZ5mAUTUtZTdaoi+l5Z17/ePQinJbNDfT+YzB6fdQ==";
+ url = "https://registry.npmjs.org/webrtc-polyfill/-/webrtc-polyfill-1.1.8.tgz";
+ sha512 = "ms2rE5MEg1KXQX45sjl2QaIIevhpPogqoFz7Z1MAJYxWUuxFfI3L0SoiifrTNrWJiJiuFn/Dsf5OIGUWJFdU5g==";
};
};
"websocket-driver-0.7.4" = {
@@ -56142,13 +55269,13 @@ let
sha512 = "OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==";
};
};
- "webtorrent-2.4.1" = {
+ "webtorrent-2.4.12" = {
name = "webtorrent";
packageName = "webtorrent";
- version = "2.4.1";
+ version = "2.4.12";
src = fetchurl {
- url = "https://registry.npmjs.org/webtorrent/-/webtorrent-2.4.1.tgz";
- sha512 = "9/WTMFaAAbfopNQiGK5rD7ZJJTdPwOrl/T6izTWVEk56+cJdtZBz9FelMnwnS4Q7rqFKoEYuonzi+ig0nXjYsA==";
+ url = "https://registry.npmjs.org/webtorrent/-/webtorrent-2.4.12.tgz";
+ sha512 = "Lp/2WDQH0nUhIkpp03F7PnAorQSVCFIDGY4ZNeNPGtA1CgoeX4eie1BfK6QAlH/OtHbilPhpxlVrBkZsA6HqPA==";
};
};
"whatwg-encoding-1.0.5" = {
@@ -56160,13 +55287,13 @@ let
sha512 = "b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==";
};
};
- "whatwg-encoding-2.0.0" = {
+ "whatwg-encoding-3.1.1" = {
name = "whatwg-encoding";
packageName = "whatwg-encoding";
- version = "2.0.0";
+ version = "3.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz";
- sha512 = "p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==";
+ url = "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-3.1.1.tgz";
+ sha512 = "6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==";
};
};
"whatwg-mimetype-2.3.0" = {
@@ -56178,22 +55305,22 @@ let
sha512 = "M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==";
};
};
- "whatwg-mimetype-3.0.0" = {
+ "whatwg-mimetype-4.0.0" = {
name = "whatwg-mimetype";
packageName = "whatwg-mimetype";
- version = "3.0.0";
+ version = "4.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz";
- sha512 = "nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==";
+ url = "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-4.0.0.tgz";
+ sha512 = "QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==";
};
};
- "whatwg-url-12.0.1" = {
+ "whatwg-url-14.0.0" = {
name = "whatwg-url";
packageName = "whatwg-url";
- version = "12.0.1";
+ version = "14.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/whatwg-url/-/whatwg-url-12.0.1.tgz";
- sha512 = "Ed/LrqB8EPlGxjS+TrsXcpUond1mhccS3pchLhzSgPCnTimUCKj3IZE75pAs5m6heB2U2TMerKFUXheyHY+VDQ==";
+ url = "https://registry.npmjs.org/whatwg-url/-/whatwg-url-14.0.0.tgz";
+ sha512 = "1lfMEm2IEr7RIV+f4lUNPOqfFL+pO+Xw3fJSqmjX9AbXcXcYOkCe1P6+9VBZB6n94af16NfZf+sSk0JCBZC9aw==";
};
};
"whatwg-url-5.0.0" = {
@@ -56223,13 +55350,13 @@ let
sha512 = "gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==";
};
};
- "when-exit-2.1.2" = {
+ "when-exit-2.1.3" = {
name = "when-exit";
packageName = "when-exit";
- version = "2.1.2";
+ version = "2.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/when-exit/-/when-exit-2.1.2.tgz";
- sha512 = "u9J+toaf3CCxCAzM/484qNAxQE75rFdVgiFEEV8Xps2gzYhf0tx73s1WXDQhkwV17E3MxRMz40m7Ekd2/121Lg==";
+ url = "https://registry.npmjs.org/when-exit/-/when-exit-2.1.3.tgz";
+ sha512 = "uVieSTccFIr/SFQdFWN/fFaQYmV37OKtuaGphMAzi4DmmUlrvRBJW5WSLkHyjNQY/ePJMz3LoiX9R3yy1Su6Hw==";
};
};
"whet.extend-0.9.9" = {
@@ -56313,13 +55440,13 @@ let
sha512 = "iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==";
};
};
- "which-pm-2.0.0" = {
+ "which-pm-2.2.0" = {
name = "which-pm";
packageName = "which-pm";
- version = "2.0.0";
+ version = "2.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/which-pm/-/which-pm-2.0.0.tgz";
- sha512 = "Lhs9Pmyph0p5n5Z3mVnN0yWcbQYUAD7rbQUiMsQxOJ3T57k7RFe35SUwWMf7dsbDZks1uOmw4AecB/JMDj3v/w==";
+ url = "https://registry.npmjs.org/which-pm/-/which-pm-2.2.0.tgz";
+ sha512 = "MOiaDbA5ZZgUjkeMWM5EkJp4loW5ZRoa5bc3/aeMox/PJelMhE6t7S/mLuiY43DBupyxH+S0U1bTui9kWUlmsw==";
};
};
"which-typed-array-1.1.15" = {
@@ -56493,22 +55620,22 @@ let
sha512 = "L3yR6/MzZAOl0DsysUXHVjOwv8mKZ71TrA/41EIduGpOOV5LQVodqN+QdQ6BS6PJ/RdIshZhq84P/fStEZkk7g==";
};
};
- "winston-3.13.0" = {
+ "winston-3.13.1" = {
name = "winston";
packageName = "winston";
- version = "3.13.0";
+ version = "3.13.1";
src = fetchurl {
- url = "https://registry.npmjs.org/winston/-/winston-3.13.0.tgz";
- sha512 = "rwidmA1w3SE4j0E5MuIufFhyJPBDG7Nu71RkZor1p2+qHvJSZ9GYDA81AyleQcZbh/+V6HjeBdfnTZJm9rSeQQ==";
+ url = "https://registry.npmjs.org/winston/-/winston-3.13.1.tgz";
+ sha512 = "SvZit7VFNvXRzbqGHsv5KSmgbEYR5EiQfDAL9gxYkRqa934Hnk++zze0wANKtMHcy/gI4W/3xmSDwlhf865WGw==";
};
};
- "winston-transport-4.7.0" = {
+ "winston-transport-4.7.1" = {
name = "winston-transport";
packageName = "winston-transport";
- version = "4.7.0";
+ version = "4.7.1";
src = fetchurl {
- url = "https://registry.npmjs.org/winston-transport/-/winston-transport-4.7.0.tgz";
- sha512 = "ajBj65K5I7denzer2IYW6+2bNIVqLGDHqDw3Ow8Ohh+vdW+rv4MZ6eiDvHoKhfJFZ2auyN8byXieDDJ96ViONg==";
+ url = "https://registry.npmjs.org/winston-transport/-/winston-transport-4.7.1.tgz";
+ sha512 = "wQCXXVgfv/wUPOfb2x0ruxzwkcZfxcktz6JIMUaPLmcNhO4bZTwA/WtDWK74xV3F2dKu8YadrFv0qhwYjVEwhA==";
};
};
"with-7.0.2" = {
@@ -56601,13 +55728,31 @@ let
sha512 = "rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==";
};
};
- "workerpool-6.2.1" = {
- name = "workerpool";
- packageName = "workerpool";
- version = "6.2.1";
+ "worker-timers-7.1.8" = {
+ name = "worker-timers";
+ packageName = "worker-timers";
+ version = "7.1.8";
src = fetchurl {
- url = "https://registry.npmjs.org/workerpool/-/workerpool-6.2.1.tgz";
- sha512 = "ILEIE97kDZvF9Wb9f6h5aXK4swSlKGUcOEGiIYb2OOu/IrDU9iwj0fD//SsA6E5ibwJxpEvhullJY4Sl4GcpAw==";
+ url = "https://registry.npmjs.org/worker-timers/-/worker-timers-7.1.8.tgz";
+ sha512 = "R54psRKYVLuzff7c1OTFcq/4Hue5Vlz4bFtNEIarpSiCYhpifHU3aIQI29S84o1j87ePCYqbmEJPqwBTf+3sfw==";
+ };
+ };
+ "worker-timers-broker-6.1.8" = {
+ name = "worker-timers-broker";
+ packageName = "worker-timers-broker";
+ version = "6.1.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/worker-timers-broker/-/worker-timers-broker-6.1.8.tgz";
+ sha512 = "FUCJu9jlK3A8WqLTKXM9E6kAmI/dR1vAJ8dHYLMisLNB/n3GuaFIjJ7pn16ZcD1zCOf7P6H62lWIEBi+yz/zQQ==";
+ };
+ };
+ "worker-timers-worker-7.0.71" = {
+ name = "worker-timers-worker";
+ packageName = "worker-timers-worker";
+ version = "7.0.71";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/worker-timers-worker/-/worker-timers-worker-7.0.71.tgz";
+ sha512 = "ks/5YKwZsto1c2vmljroppOKCivB/ma97g9y77MAAz2TBBjPPgpoOiS1qYQKIgvGTr2QYPT3XhJWIB6Rj2MVPQ==";
};
};
"workerpool-6.5.1" = {
@@ -56817,13 +55962,13 @@ let
sha512 = "eqZfL+NE/YQc1/ZynhojeV8q+H050oR8AZ2uIev7RU10svA9ZnJUddHcOUZTJLinZ9yEfdA2kSATS2qZK5fhJA==";
};
};
- "ws-6.2.2" = {
+ "ws-6.2.3" = {
name = "ws";
packageName = "ws";
- version = "6.2.2";
+ version = "6.2.3";
src = fetchurl {
- url = "https://registry.npmjs.org/ws/-/ws-6.2.2.tgz";
- sha512 = "zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==";
+ url = "https://registry.npmjs.org/ws/-/ws-6.2.3.tgz";
+ sha512 = "jmTjYU0j60B+vHey6TfR3Z7RD61z/hmxBS3VMSGIrroOWXQEneK1zNuotOUrGyBHQj0yrpsLHPWtigEFd13ndA==";
};
};
"ws-7.4.5" = {
@@ -56835,31 +55980,13 @@ let
sha512 = "xzyu3hFvomRfXKH8vOFMU3OguG6oOvhXMo3xsGy3xWExqaM2dxBbVxuD99O7m3ZUFMvvscsZDqxfgMaRr/Nr1g==";
};
};
- "ws-7.4.6" = {
+ "ws-7.5.10" = {
name = "ws";
packageName = "ws";
- version = "7.4.6";
+ version = "7.5.10";
src = fetchurl {
- url = "https://registry.npmjs.org/ws/-/ws-7.4.6.tgz";
- sha512 = "YmhHDO4MzaDLB+M9ym/mDA5z0naX8j7SIlT8f8z+I0VtzsRbekxEutHSme7NPS2qE8StCYQNUnfWdXta/Yu85A==";
- };
- };
- "ws-7.5.6" = {
- name = "ws";
- packageName = "ws";
- version = "7.5.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/ws/-/ws-7.5.6.tgz";
- sha512 = "6GLgCqo2cy2A2rjCNFlxQS6ZljG/coZfZXclldI8FB/1G3CCI36Zd8xy2HrFVACi8tfk5XrgLQEk+P0Tnz9UcA==";
- };
- };
- "ws-7.5.9" = {
- name = "ws";
- packageName = "ws";
- version = "7.5.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz";
- sha512 = "F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==";
+ url = "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz";
+ sha512 = "+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==";
};
};
"ws-8.11.0" = {
@@ -56880,22 +56007,22 @@ let
sha512 = "x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==";
};
};
- "ws-8.17.0" = {
+ "ws-8.17.1" = {
name = "ws";
packageName = "ws";
- version = "8.17.0";
+ version = "8.17.1";
src = fetchurl {
- url = "https://registry.npmjs.org/ws/-/ws-8.17.0.tgz";
- sha512 = "uJq6108EgZMAl20KagGkzCKfMEjxmKvZHG7Tlq0Z6nOky7YF7aq4mOx6xK8TJ/i1LeK4Qus7INktacctDgY8Ow==";
+ url = "https://registry.npmjs.org/ws/-/ws-8.17.1.tgz";
+ sha512 = "6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==";
};
};
- "ws-8.8.1" = {
+ "ws-8.18.0" = {
name = "ws";
packageName = "ws";
- version = "8.8.1";
+ version = "8.18.0";
src = fetchurl {
- url = "https://registry.npmjs.org/ws/-/ws-8.8.1.tgz";
- sha512 = "bGy2JzvzkPowEJV++hF07hAD6niYSr0JzBNo/J29WsB57A2r7Wlc1UFcTR9IzrPvuNVO4B8LGqF8qcpsVOhJCA==";
+ url = "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz";
+ sha512 = "8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==";
};
};
"xcase-2.0.1" = {
@@ -57033,6 +56160,15 @@ let
sha512 = "ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==";
};
};
+ "xml-name-validator-5.0.0" = {
+ name = "xml-name-validator";
+ packageName = "xml-name-validator";
+ version = "5.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-5.0.0.tgz";
+ sha512 = "EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==";
+ };
+ };
"xml-parse-from-string-1.0.1" = {
name = "xml-parse-from-string";
packageName = "xml-parse-from-string";
@@ -57232,15 +56368,6 @@ let
sha512 = "LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==";
};
};
- "xxhash-wasm-1.0.2" = {
- name = "xxhash-wasm";
- packageName = "xxhash-wasm";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/xxhash-wasm/-/xxhash-wasm-1.0.2.tgz";
- sha512 = "ibF0Or+FivM9lNrg+HGJfVX8WJqgo+kCLDc4vx6xMeTce7Aj+DLttKbxxRR/gNLSAelRc1omAPlJ77N/Jem07A==";
- };
- };
"y18n-3.2.2" = {
name = "y18n";
packageName = "y18n";
@@ -57295,6 +56422,15 @@ let
sha512 = "3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==";
};
};
+ "yallist-5.0.0" = {
+ name = "yallist";
+ packageName = "yallist";
+ version = "5.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yallist/-/yallist-5.0.0.tgz";
+ sha512 = "YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==";
+ };
+ };
"yaml-1.10.2" = {
name = "yaml";
packageName = "yaml";
@@ -57322,6 +56458,15 @@ let
sha512 = "aBx2bnqDzVOyNKfsysjA2ms5ZlnjSAW2eG3/L5G/CSujfjLJTJsEw1bGw8kCf04KodQWk1pxlGnZ56CRxiawmg==";
};
};
+ "yaml-2.5.0" = {
+ name = "yaml";
+ packageName = "yaml";
+ version = "2.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yaml/-/yaml-2.5.0.tgz";
+ sha512 = "2wWLbGbYDiSqqIKoPjar3MPgB94ErzCtrNE1FdqGuaO0pi2JGjmE8aW8TDZwzU7vuxcGRdL/4gPQwQ7hD5AMSw==";
+ };
+ };
"yargs-13.3.2" = {
name = "yargs";
packageName = "yargs";
@@ -57448,15 +56593,6 @@ let
sha512 = "9pIKIJhnI5tonzG6OnCFlz/yln8xHYcGl+pn3xR0Vzff0vzN1PbNRaelgfgRUwZ3s4i3jvxT9WhmUGL4whnasA==";
};
};
- "yargs-parser-20.2.4" = {
- name = "yargs-parser";
- packageName = "yargs-parser";
- version = "20.2.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.4.tgz";
- sha512 = "WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==";
- };
- };
"yargs-parser-20.2.9" = {
name = "yargs-parser";
packageName = "yargs-parser";
@@ -57601,22 +56737,31 @@ let
sha512 = "rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==";
};
};
- "yocto-queue-1.0.0" = {
+ "yocto-queue-1.1.1" = {
name = "yocto-queue";
packageName = "yocto-queue";
- version = "1.0.0";
+ version = "1.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.0.0.tgz";
- sha512 = "9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==";
+ url = "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.1.1.tgz";
+ sha512 = "b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==";
};
};
- "yoctocolors-2.0.2" = {
+ "yoctocolors-2.1.1" = {
name = "yoctocolors";
packageName = "yoctocolors";
- version = "2.0.2";
+ version = "2.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/yoctocolors/-/yoctocolors-2.0.2.tgz";
- sha512 = "Ct97huExsu7cWeEjmrXlofevF8CvzUglJ4iGUet5B8xn1oumtAZBpHU4GzYuoE6PVqcZ5hghtBrSlhwHuR1Jmw==";
+ url = "https://registry.npmjs.org/yoctocolors/-/yoctocolors-2.1.1.tgz";
+ sha512 = "GQHQqAopRhwU8Kt1DDM8NjibDXHC8eoh1erhGAJPEyveY9qqVeXvVikNKrDz69sHowPMorbPUrH/mx8c50eiBQ==";
+ };
+ };
+ "yoctocolors-cjs-2.1.2" = {
+ name = "yoctocolors-cjs";
+ packageName = "yoctocolors-cjs";
+ version = "2.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yoctocolors-cjs/-/yoctocolors-cjs-2.1.2.tgz";
+ sha512 = "cYVsTjKl8b+FrnidjibDWskAv7UKOfcwaVZdp/it9n1s9fU3IkgDbhdIRKCW4JDsAlECJY0ytoVPT3sK6kideA==";
};
};
"yoga-layout-prebuilt-1.10.0" = {
@@ -57637,15 +56782,6 @@ let
sha512 = "N+d4UJSJbt/R3wqY7Coqs5pcV0aUj2j9IaQ3rNj9bVCLld8tTGKRa2USARjnvZJWVx1NDmQev8EknoczaOQDOA==";
};
};
- "youch-3.3.3" = {
- name = "youch";
- packageName = "youch";
- version = "3.3.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/youch/-/youch-3.3.3.tgz";
- sha512 = "qSFXUk3UZBLfggAW3dJKg0BMblG5biqSF8M34E06o5CSsZtH92u9Hqmj2RzGiHDi64fhe83+4tENFP2DB6t6ZA==";
- };
- };
"yurnalist-2.1.0" = {
name = "yurnalist";
packageName = "yurnalist";
@@ -57733,16 +56869,45 @@ in
"@angular/cli" = nodeEnv.buildNodePackage {
name = "_at_angular_slash_cli";
packageName = "@angular/cli";
- version = "18.0.4";
+ version = "18.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@angular/cli/-/cli-18.0.4.tgz";
- sha512 = "i7DLVIc4HN0CFZZKbEeVeQSADRG1Dt2CwXh/wTUzglRLu/tE7Q+WMrqJ2+lGTT2edZp2KKysM4Gxp+ATAzP8AQ==";
+ url = "https://registry.npmjs.org/@angular/cli/-/cli-18.1.2.tgz";
+ sha512 = "5H0scWgJcDE3NSM6/j/xSwNfAQBVOhVjXuj+nZOaEkJC0Bxh6AoEdWpQdzmZ6qSlx4LMlJYI6P/sH0kiBlFfgA==";
};
dependencies = [
- sources."@angular-devkit/architect-0.1800.4"
- sources."@angular-devkit/core-18.0.4"
- sources."@angular-devkit/schematics-18.0.4"
- sources."@inquirer/figures-1.0.3"
+ sources."@angular-devkit/architect-0.1801.2"
+ sources."@angular-devkit/core-18.1.2"
+ sources."@angular-devkit/schematics-18.1.2"
+ (sources."@inquirer/checkbox-2.4.2" // {
+ dependencies = [
+ sources."ansi-escapes-4.3.2"
+ ];
+ })
+ sources."@inquirer/confirm-3.1.17"
+ (sources."@inquirer/core-9.0.5" // {
+ dependencies = [
+ sources."ansi-escapes-4.3.2"
+ sources."signal-exit-4.1.0"
+ sources."wrap-ansi-6.2.0"
+ ];
+ })
+ sources."@inquirer/editor-2.1.17"
+ sources."@inquirer/expand-2.1.17"
+ sources."@inquirer/figures-1.0.5"
+ sources."@inquirer/input-2.2.4"
+ (sources."@inquirer/password-2.1.17" // {
+ dependencies = [
+ sources."ansi-escapes-4.3.2"
+ ];
+ })
+ sources."@inquirer/prompts-5.0.7"
+ sources."@inquirer/rawlist-2.1.17"
+ (sources."@inquirer/select-2.4.2" // {
+ dependencies = [
+ sources."ansi-escapes-4.3.2"
+ ];
+ })
+ sources."@inquirer/type-1.5.1"
(sources."@isaacs/cliui-8.0.2" // {
dependencies = [
sources."ansi-regex-6.0.1"
@@ -57753,11 +56918,11 @@ in
sources."wrap-ansi-8.1.0"
];
})
- sources."@jridgewell/sourcemap-codec-1.4.15"
- sources."@ljharb/through-2.3.13"
+ sources."@jridgewell/sourcemap-codec-1.5.0"
+ sources."@listr2/prompt-adapter-inquirer-2.0.13"
sources."@npmcli/agent-2.2.2"
sources."@npmcli/fs-3.1.1"
- (sources."@npmcli/git-5.0.7" // {
+ (sources."@npmcli/git-5.0.8" // {
dependencies = [
sources."isexe-3.1.1"
sources."which-4.0.0"
@@ -57779,7 +56944,7 @@ in
sources."which-4.0.0"
];
})
- sources."@schematics/angular-18.0.4"
+ sources."@schematics/angular-18.1.2"
sources."@sigstore/bundle-2.3.2"
sources."@sigstore/core-1.1.0"
sources."@sigstore/protobuf-specs-0.3.2"
@@ -57788,14 +56953,16 @@ in
sources."@sigstore/verify-1.2.1"
sources."@tufjs/canonical-json-2.0.0"
sources."@tufjs/models-2.0.1"
+ sources."@types/mute-stream-0.0.4"
+ sources."@types/node-20.14.12"
+ sources."@types/wrap-ansi-3.0.0"
sources."@yarnpkg/lockfile-1.1.0"
sources."abbrev-2.0.0"
sources."agent-base-7.1.1"
sources."aggregate-error-3.1.0"
- sources."ajv-8.13.0"
+ sources."ajv-8.16.0"
sources."ajv-formats-3.0.1"
- sources."ansi-colors-4.1.3"
- sources."ansi-escapes-4.3.2"
+ sources."ansi-escapes-6.2.1"
sources."ansi-regex-5.0.1"
sources."ansi-styles-4.3.0"
(sources."anymatch-3.1.3" // {
@@ -57810,36 +56977,42 @@ in
sources."brace-expansion-2.0.1"
sources."braces-3.0.3"
sources."buffer-5.7.1"
- sources."cacache-18.0.3"
- sources."call-bind-1.0.7"
+ sources."cacache-18.0.4"
sources."chalk-4.1.2"
sources."chardet-0.7.0"
sources."chokidar-3.6.0"
sources."chownr-2.0.0"
sources."clean-stack-2.2.0"
- sources."cli-cursor-3.1.0"
+ sources."cli-cursor-4.0.0"
sources."cli-spinners-2.9.2"
+ (sources."cli-truncate-4.0.0" // {
+ dependencies = [
+ sources."ansi-regex-6.0.1"
+ sources."emoji-regex-10.3.0"
+ sources."string-width-7.2.0"
+ sources."strip-ansi-7.1.0"
+ ];
+ })
sources."cli-width-4.1.0"
sources."cliui-8.0.1"
sources."clone-1.0.4"
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
+ sources."colorette-2.0.20"
sources."cross-spawn-7.0.3"
sources."debug-4.3.5"
sources."defaults-1.0.4"
- sources."define-data-property-1.1.4"
sources."eastasianwidth-0.2.0"
sources."emoji-regex-8.0.0"
sources."env-paths-2.2.1"
sources."err-code-2.0.3"
- sources."es-define-property-1.0.0"
- sources."es-errors-1.3.0"
sources."escalade-3.1.2"
+ sources."eventemitter3-5.0.1"
sources."exponential-backoff-3.1.1"
sources."external-editor-3.1.0"
sources."fast-deep-equal-3.1.3"
sources."fill-range-7.1.1"
- (sources."foreground-child-3.2.0" // {
+ (sources."foreground-child-3.2.1" // {
dependencies = [
sources."signal-exit-4.1.0"
];
@@ -57847,36 +57020,26 @@ in
sources."fs-minipass-3.0.3"
sources."function-bind-1.1.2"
sources."get-caller-file-2.0.5"
- sources."get-intrinsic-1.2.4"
- sources."glob-10.4.1"
+ sources."get-east-asian-width-1.2.0"
+ sources."glob-10.4.5"
sources."glob-parent-5.1.2"
- sources."gopd-1.0.1"
sources."graceful-fs-4.2.11"
sources."has-flag-4.0.0"
- sources."has-property-descriptors-1.0.2"
- sources."has-proto-1.0.3"
- sources."has-symbols-1.0.3"
sources."hasown-2.0.2"
sources."hosted-git-info-7.0.2"
sources."http-cache-semantics-4.1.1"
sources."http-proxy-agent-7.0.2"
- sources."https-proxy-agent-7.0.4"
+ sources."https-proxy-agent-7.0.5"
sources."iconv-lite-0.4.24"
sources."ieee754-1.2.1"
sources."ignore-walk-6.0.5"
sources."imurmurhash-0.1.4"
sources."indent-string-4.0.0"
sources."inherits-2.0.4"
- sources."ini-4.1.2"
- (sources."inquirer-9.2.22" // {
- dependencies = [
- sources."chalk-5.3.0"
- sources."wrap-ansi-6.2.0"
- ];
- })
+ sources."ini-4.1.3"
sources."ip-address-9.0.5"
sources."is-binary-path-2.1.0"
- sources."is-core-module-2.13.1"
+ sources."is-core-module-2.15.0"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-3.0.0"
sources."is-glob-4.0.3"
@@ -57885,19 +57048,40 @@ in
sources."is-number-7.0.0"
sources."is-unicode-supported-0.1.0"
sources."isexe-2.0.0"
- sources."jackspeak-3.4.0"
+ sources."jackspeak-3.4.3"
sources."jsbn-1.1.0"
sources."json-parse-even-better-errors-3.0.2"
sources."json-schema-traverse-1.0.0"
- sources."jsonc-parser-3.2.1"
+ sources."jsonc-parser-3.3.1"
sources."jsonparse-1.3.1"
- sources."lodash-4.17.21"
+ (sources."listr2-8.2.3" // {
+ dependencies = [
+ sources."ansi-regex-6.0.1"
+ sources."ansi-styles-6.2.1"
+ sources."emoji-regex-10.3.0"
+ sources."string-width-7.2.0"
+ sources."strip-ansi-7.1.0"
+ sources."wrap-ansi-9.0.0"
+ ];
+ })
sources."log-symbols-4.1.0"
- sources."lru-cache-10.2.2"
+ (sources."log-update-6.0.0" // {
+ dependencies = [
+ sources."ansi-regex-6.0.1"
+ sources."ansi-styles-6.2.1"
+ sources."emoji-regex-10.3.0"
+ sources."is-fullwidth-code-point-5.0.0"
+ sources."slice-ansi-7.1.0"
+ sources."string-width-7.2.0"
+ sources."strip-ansi-7.1.0"
+ sources."wrap-ansi-9.0.0"
+ ];
+ })
+ sources."lru-cache-10.4.3"
sources."magic-string-0.30.10"
sources."make-fetch-happen-13.0.1"
sources."mimic-fn-2.1.0"
- sources."minimatch-9.0.4"
+ sources."minimatch-9.0.5"
sources."minipass-7.1.2"
sources."minipass-collect-2.0.1"
sources."minipass-fetch-3.0.5"
@@ -57925,15 +57109,14 @@ in
sources."ms-2.1.2"
sources."mute-stream-1.0.0"
sources."negotiator-0.6.3"
- (sources."node-gyp-10.1.0" // {
+ (sources."node-gyp-10.2.0" // {
dependencies = [
sources."isexe-3.1.1"
- sources."proc-log-3.0.0"
sources."which-4.0.0"
];
})
sources."nopt-7.2.1"
- sources."normalize-package-data-6.0.1"
+ sources."normalize-package-data-6.0.2"
sources."normalize-path-3.0.0"
sources."npm-bundled-3.0.1"
sources."npm-install-checks-6.3.0"
@@ -57943,9 +57126,15 @@ in
sources."npm-pick-manifest-9.0.1"
sources."npm-registry-fetch-17.1.0"
sources."onetime-5.1.2"
- sources."ora-5.4.1"
+ (sources."ora-5.4.1" // {
+ dependencies = [
+ sources."cli-cursor-3.1.0"
+ sources."restore-cursor-3.1.0"
+ ];
+ })
sources."os-tmpdir-1.0.2"
sources."p-map-4.0.0"
+ sources."package-json-from-dist-1.0.0"
sources."pacote-18.0.6"
sources."path-key-3.1.1"
sources."path-parse-1.0.7"
@@ -57964,21 +57153,26 @@ in
sources."require-directory-2.1.1"
sources."require-from-string-2.0.2"
sources."resolve-1.22.8"
- sources."restore-cursor-3.1.0"
+ sources."restore-cursor-4.0.0"
sources."retry-0.12.0"
- sources."run-async-3.0.0"
+ sources."rfdc-1.4.1"
sources."rxjs-7.8.1"
sources."safe-buffer-5.2.1"
sources."safer-buffer-2.1.2"
sources."semver-7.6.2"
- sources."set-function-length-1.2.2"
sources."shebang-command-2.0.0"
sources."shebang-regex-3.0.0"
sources."signal-exit-3.0.7"
sources."sigstore-2.3.1"
+ (sources."slice-ansi-5.0.0" // {
+ dependencies = [
+ sources."ansi-styles-6.2.1"
+ sources."is-fullwidth-code-point-4.0.0"
+ ];
+ })
sources."smart-buffer-4.2.0"
sources."socks-2.8.3"
- sources."socks-proxy-agent-8.0.3"
+ sources."socks-proxy-agent-8.0.4"
sources."source-map-0.7.4"
sources."spdx-correct-3.2.0"
sources."spdx-exceptions-2.5.0"
@@ -58009,6 +57203,7 @@ in
sources."tslib-2.6.3"
sources."tuf-js-2.2.1"
sources."type-fest-0.21.3"
+ sources."undici-types-5.26.5"
sources."unique-filename-3.0.0"
sources."unique-slug-4.0.0"
sources."uri-js-4.4.1"
@@ -58023,6 +57218,7 @@ in
sources."yallist-4.0.0"
sources."yargs-17.7.2"
sources."yargs-parser-21.1.1"
+ sources."yoctocolors-cjs-2.1.2"
];
buildInputs = globalBuildInputs;
meta = {
@@ -58037,10 +57233,10 @@ in
"@antfu/ni" = nodeEnv.buildNodePackage {
name = "_at_antfu_slash_ni";
packageName = "@antfu/ni";
- version = "0.21.12";
+ version = "0.22.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@antfu/ni/-/ni-0.21.12.tgz";
- sha512 = "2aDL3WUv8hMJb2L3r/PIQWsTLyq7RQr3v9xD16fiz6O8ys1xEyLhhTOv8gxtZvJiTzjTF5pHoArvRdesGL1DMQ==";
+ url = "https://registry.npmjs.org/@antfu/ni/-/ni-0.22.0.tgz";
+ sha512 = "qP2zFsmypfWpKnmQcjoqMfYrPRHbqcXnhaUrg3VGqPGFXyN9sKz2+/TvNKByWDqAfuVStE8Fy2ppuVdoWQDjkw==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -58055,13 +57251,13 @@ in
"@astrojs/language-server" = nodeEnv.buildNodePackage {
name = "_at_astrojs_slash_language-server";
packageName = "@astrojs/language-server";
- version = "2.10.0";
+ version = "2.12.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@astrojs/language-server/-/language-server-2.10.0.tgz";
- sha512 = "crHXpqYfA5qWioiuZnZFpTsNItgBlF1f0S9MzDYS7/pfCALkHNJ7K3w9U/j0uMKymsT4hC7BfMaX0DYlfdSzHg==";
+ url = "https://registry.npmjs.org/@astrojs/language-server/-/language-server-2.12.1.tgz";
+ sha512 = "CCibE6XwSmrZEKlPDr48LZJN7NWxOurOJK1yOzqZFMNV8Y6DIqF6s1e60gbNNHMZkthWYBNTPno4Ni/XyviinQ==";
};
dependencies = [
- sources."@astrojs/compiler-2.8.0"
+ sources."@astrojs/compiler-2.9.2"
sources."@emmetio/abbreviation-2.3.3"
sources."@emmetio/css-abbreviation-2.1.8"
sources."@emmetio/css-parser-0.4.0"
@@ -58069,23 +57265,23 @@ in
sources."@emmetio/scanner-1.0.4"
sources."@emmetio/stream-reader-2.2.0"
sources."@emmetio/stream-reader-utils-0.1.0"
- sources."@jridgewell/sourcemap-codec-1.4.15"
+ sources."@jridgewell/sourcemap-codec-1.5.0"
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
- sources."@volar/kit-2.2.5"
- sources."@volar/language-core-2.2.5"
- sources."@volar/language-server-2.2.5"
- sources."@volar/language-service-2.2.5"
- sources."@volar/snapshot-document-2.2.5"
- sources."@volar/source-map-2.2.5"
- sources."@volar/typescript-2.2.5"
+ sources."@volar/kit-2.4.0-alpha.18"
+ sources."@volar/language-core-2.4.0-alpha.18"
+ sources."@volar/language-server-2.4.0-alpha.18"
+ sources."@volar/language-service-2.4.0-alpha.18"
+ sources."@volar/snapshot-document-2.4.0-alpha.18"
+ sources."@volar/source-map-2.4.0-alpha.18"
+ sources."@volar/typescript-2.4.0-alpha.18"
(sources."@vscode/emmet-helper-2.9.3" // {
dependencies = [
sources."vscode-uri-2.1.2"
];
})
- sources."@vscode/l10n-0.0.16"
+ sources."@vscode/l10n-0.0.18"
sources."braces-3.0.3"
sources."emmet-2.4.7"
sources."fast-glob-3.3.2"
@@ -58101,45 +57297,28 @@ in
sources."muggle-string-0.4.1"
sources."path-browserify-1.0.1"
sources."picomatch-2.3.1"
- sources."prettier-3.3.2"
- (sources."prettier-plugin-astro-0.14.0" // {
- dependencies = [
- sources."@astrojs/compiler-1.8.2"
- ];
- })
+ sources."prettier-3.3.3"
+ sources."prettier-plugin-astro-0.14.1"
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.9"
- sources."semver-7.6.2"
+ sources."semver-7.6.3"
sources."suf-log-2.5.3"
sources."to-regex-range-5.0.1"
sources."typesafe-path-0.2.2"
- sources."typescript-5.4.5"
- sources."typescript-auto-import-cache-0.3.2"
- sources."volar-service-css-0.0.45"
- sources."volar-service-emmet-0.0.45"
- (sources."volar-service-html-0.0.45" // {
- dependencies = [
- sources."@vscode/l10n-0.0.18"
- sources."vscode-html-languageservice-5.2.0-34a5462"
- ];
- })
- sources."volar-service-prettier-0.0.45"
- sources."volar-service-typescript-0.0.45"
- sources."volar-service-typescript-twoslash-queries-0.0.45"
- (sources."vscode-css-languageservice-6.2.14" // {
- dependencies = [
- sources."@vscode/l10n-0.0.18"
- ];
- })
- (sources."vscode-html-languageservice-5.2.0" // {
- dependencies = [
- sources."@vscode/l10n-0.0.18"
- ];
- })
+ sources."typescript-5.5.4"
+ sources."typescript-auto-import-cache-0.3.3"
+ sources."volar-service-css-0.0.59"
+ sources."volar-service-emmet-0.0.59"
+ sources."volar-service-html-0.0.59"
+ sources."volar-service-prettier-0.0.59"
+ sources."volar-service-typescript-0.0.59"
+ sources."volar-service-typescript-twoslash-queries-0.0.59"
+ sources."vscode-css-languageservice-6.3.0"
+ sources."vscode-html-languageservice-5.3.0"
sources."vscode-jsonrpc-8.2.0"
sources."vscode-languageserver-9.0.1"
sources."vscode-languageserver-protocol-3.17.5"
@@ -58161,22 +57340,22 @@ in
"@babel/cli" = nodeEnv.buildNodePackage {
name = "_at_babel_slash_cli";
packageName = "@babel/cli";
- version = "7.24.7";
+ version = "7.24.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/cli/-/cli-7.24.7.tgz";
- sha512 = "8dfPprJgV4O14WTx+AQyEA+opgUKPrsIXX/MdL50J1n06EQJ6m1T+CdsJe0qEC0B/Xl85i+Un5KVAxd/PACX9A==";
+ url = "https://registry.npmjs.org/@babel/cli/-/cli-7.24.8.tgz";
+ sha512 = "isdp+G6DpRyKc+3Gqxy2rjzgF7Zj9K0mzLNnxz+E/fgeag8qT3vVulX4gY9dGO1q0y+0lUv6V3a+uhUzMzrwXg==";
};
dependencies = [
sources."@ampproject/remapping-2.3.0"
sources."@babel/code-frame-7.24.7"
- sources."@babel/compat-data-7.24.7"
- (sources."@babel/core-7.24.7" // {
+ sources."@babel/compat-data-7.24.9"
+ (sources."@babel/core-7.24.9" // {
dependencies = [
sources."semver-6.3.1"
];
})
- sources."@babel/generator-7.24.7"
- (sources."@babel/helper-compilation-targets-7.24.7" // {
+ sources."@babel/generator-7.24.10"
+ (sources."@babel/helper-compilation-targets-7.24.8" // {
dependencies = [
sources."semver-6.3.1"
];
@@ -58185,28 +57364,28 @@ in
sources."@babel/helper-function-name-7.24.7"
sources."@babel/helper-hoist-variables-7.24.7"
sources."@babel/helper-module-imports-7.24.7"
- sources."@babel/helper-module-transforms-7.24.7"
+ sources."@babel/helper-module-transforms-7.24.9"
sources."@babel/helper-simple-access-7.24.7"
sources."@babel/helper-split-export-declaration-7.24.7"
- sources."@babel/helper-string-parser-7.24.7"
+ sources."@babel/helper-string-parser-7.24.8"
sources."@babel/helper-validator-identifier-7.24.7"
- sources."@babel/helper-validator-option-7.24.7"
- sources."@babel/helpers-7.24.7"
+ sources."@babel/helper-validator-option-7.24.8"
+ sources."@babel/helpers-7.24.8"
sources."@babel/highlight-7.24.7"
- sources."@babel/parser-7.24.7"
+ sources."@babel/parser-7.24.8"
sources."@babel/template-7.24.7"
- sources."@babel/traverse-7.24.7"
- sources."@babel/types-7.24.7"
+ sources."@babel/traverse-7.24.8"
+ sources."@babel/types-7.24.9"
sources."@jridgewell/gen-mapping-0.3.5"
sources."@jridgewell/resolve-uri-3.1.2"
sources."@jridgewell/set-array-1.2.1"
- sources."@jridgewell/sourcemap-codec-1.4.15"
+ sources."@jridgewell/sourcemap-codec-1.5.0"
sources."@jridgewell/trace-mapping-0.3.25"
sources."ansi-styles-3.2.1"
sources."balanced-match-1.0.2"
sources."brace-expansion-1.1.11"
- sources."browserslist-4.23.1"
- sources."caniuse-lite-1.0.30001634"
+ sources."browserslist-4.23.2"
+ sources."caniuse-lite-1.0.30001643"
sources."chalk-2.4.2"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
@@ -58214,7 +57393,7 @@ in
sources."concat-map-0.0.1"
sources."convert-source-map-2.0.0"
sources."debug-4.3.5"
- sources."electron-to-chromium-1.4.802"
+ sources."electron-to-chromium-1.5.1"
sources."escalade-3.1.2"
sources."escape-string-regexp-1.0.5"
sources."fs-readdir-recursive-1.1.0"
@@ -58232,7 +57411,7 @@ in
sources."make-dir-2.1.0"
sources."minimatch-3.1.2"
sources."ms-2.1.2"
- sources."node-releases-2.0.14"
+ sources."node-releases-2.0.18"
sources."once-1.4.0"
sources."path-is-absolute-1.0.1"
sources."picocolors-1.0.1"
@@ -58241,7 +57420,7 @@ in
sources."slash-2.0.0"
sources."supports-color-5.5.0"
sources."to-fast-properties-2.0.0"
- sources."update-browserslist-db-1.0.16"
+ sources."update-browserslist-db-1.1.0"
sources."wrappy-1.0.2"
sources."yallist-3.1.1"
];
@@ -58287,9 +57466,9 @@ in
sources."@commitlint/top-level-19.0.0"
sources."@commitlint/types-19.0.3"
sources."@types/conventional-commits-parser-5.0.0"
- sources."@types/node-20.14.2"
+ sources."@types/node-20.14.12"
sources."JSONStream-1.3.5"
- sources."ajv-8.16.0"
+ sources."ajv-8.17.1"
sources."ansi-regex-5.0.1"
sources."ansi-styles-3.2.1"
sources."argparse-2.0.1"
@@ -58314,6 +57493,7 @@ in
sources."escape-string-regexp-1.0.5"
sources."execa-8.0.1"
sources."fast-deep-equal-3.1.3"
+ sources."fast-uri-3.0.1"
sources."find-up-7.0.0"
sources."get-caller-file-2.0.5"
sources."get-stream-8.0.1"
@@ -58368,11 +57548,10 @@ in
sources."path-exists-5.0.0"
sources."path-key-3.1.1"
sources."picocolors-1.0.1"
- sources."punycode-2.3.1"
sources."require-directory-2.1.1"
sources."require-from-string-2.0.2"
sources."resolve-from-5.0.0"
- sources."semver-7.6.2"
+ sources."semver-7.6.3"
sources."shebang-command-2.0.0"
sources."shebang-regex-3.0.0"
sources."signal-exit-4.1.0"
@@ -58383,10 +57562,9 @@ in
sources."supports-color-5.5.0"
sources."text-extensions-2.4.0"
sources."through-2.3.8"
- sources."typescript-5.4.5"
+ sources."typescript-5.5.4"
sources."undici-types-5.26.5"
sources."unicorn-magic-0.1.0"
- sources."uri-js-4.4.1"
sources."which-2.0.2"
(sources."wrap-ansi-7.0.0" // {
dependencies = [
@@ -58398,7 +57576,7 @@ in
sources."y18n-5.0.8"
sources."yargs-17.7.2"
sources."yargs-parser-21.1.1"
- sources."yocto-queue-1.0.0"
+ sources."yocto-queue-1.1.1"
];
buildInputs = globalBuildInputs;
meta = {
@@ -58421,7 +57599,7 @@ in
dependencies = [
sources."@commitlint/types-19.0.3"
sources."@types/conventional-commits-parser-5.0.0"
- sources."@types/node-20.14.2"
+ sources."@types/node-20.14.12"
sources."array-ify-1.0.0"
sources."chalk-5.3.0"
sources."compare-func-2.0.0"
@@ -58443,10 +57621,10 @@ in
"@microsoft/rush" = nodeEnv.buildNodePackage {
name = "_at_microsoft_slash_rush";
packageName = "@microsoft/rush";
- version = "5.128.1";
+ version = "5.130.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@microsoft/rush/-/rush-5.128.1.tgz";
- sha512 = "Im/WUAT2Oqxvy92VqVZ+SoBsdffm0F7Luy5dJX853NFrj0W6VzspcR8T5yKKYHzh4fk4YNRKBVa7Mz3VhUJ0ow==";
+ url = "https://registry.npmjs.org/@microsoft/rush/-/rush-5.130.2.tgz";
+ sha512 = "BmTod8PGP61MtJAEl4nsxGrS27dqkCU55NM5V7vh0Vqpl8OkrJXT7Ucvzbm/kbDG3J5d2Clc9pEmbRNiMPjwuw==";
};
dependencies = [
(sources."@azure/abort-controller-1.1.0" // {
@@ -58484,11 +57662,11 @@ in
sources."tslib-2.6.3"
];
})
- (sources."@azure/core-rest-pipeline-1.16.0" // {
+ (sources."@azure/core-rest-pipeline-1.16.2" // {
dependencies = [
sources."@azure/abort-controller-2.1.2"
sources."agent-base-7.1.1"
- sources."https-proxy-agent-7.0.4"
+ sources."https-proxy-agent-7.0.5"
sources."tslib-2.6.3"
];
})
@@ -58497,25 +57675,25 @@ in
sources."tslib-2.6.3"
];
})
- (sources."@azure/core-util-1.9.0" // {
+ (sources."@azure/core-util-1.9.1" // {
dependencies = [
sources."@azure/abort-controller-2.1.2"
sources."tslib-2.6.3"
];
})
- (sources."@azure/identity-4.0.1" // {
+ (sources."@azure/identity-4.2.1" // {
dependencies = [
sources."tslib-2.6.3"
];
})
- (sources."@azure/logger-1.1.2" // {
+ (sources."@azure/logger-1.1.3" // {
dependencies = [
sources."tslib-2.6.3"
];
})
- sources."@azure/msal-browser-3.17.0"
- sources."@azure/msal-common-14.12.0"
- sources."@azure/msal-node-2.9.2"
+ sources."@azure/msal-browser-3.20.0"
+ sources."@azure/msal-common-14.14.0"
+ sources."@azure/msal-node-2.12.0"
(sources."@azure/storage-blob-12.17.0" // {
dependencies = [
sources."@azure/core-tracing-1.0.0-preview.13"
@@ -58523,25 +57701,25 @@ in
];
})
sources."@babel/code-frame-7.24.7"
- sources."@babel/generator-7.24.7"
+ sources."@babel/generator-7.24.10"
sources."@babel/helper-environment-visitor-7.24.7"
sources."@babel/helper-function-name-7.24.7"
sources."@babel/helper-hoist-variables-7.24.7"
sources."@babel/helper-split-export-declaration-7.24.7"
- sources."@babel/helper-string-parser-7.24.7"
+ sources."@babel/helper-string-parser-7.24.8"
sources."@babel/helper-validator-identifier-7.24.7"
sources."@babel/highlight-7.24.7"
- sources."@babel/parser-7.24.7"
+ sources."@babel/parser-7.24.8"
sources."@babel/template-7.24.7"
- sources."@babel/traverse-7.24.7"
- sources."@babel/types-7.24.7"
+ sources."@babel/traverse-7.24.8"
+ sources."@babel/types-7.24.9"
sources."@devexpress/error-stack-parser-2.0.6"
sources."@jridgewell/gen-mapping-0.3.5"
sources."@jridgewell/resolve-uri-3.1.2"
sources."@jridgewell/set-array-1.2.1"
- sources."@jridgewell/sourcemap-codec-1.4.15"
+ sources."@jridgewell/sourcemap-codec-1.5.0"
sources."@jridgewell/trace-mapping-0.3.25"
- sources."@microsoft/rush-lib-5.128.1"
+ sources."@microsoft/rush-lib-5.130.2"
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
@@ -58577,14 +57755,14 @@ in
sources."@pnpm/types-6.4.0"
];
})
- sources."@rushstack/heft-config-file-0.14.25"
- (sources."@rushstack/node-core-library-5.4.1" // {
+ sources."@rushstack/heft-config-file-0.15.2"
+ (sources."@rushstack/node-core-library-5.5.0" // {
dependencies = [
sources."import-lazy-4.0.0"
];
})
- sources."@rushstack/package-deps-hash-4.1.57"
- (sources."@rushstack/package-extractor-0.7.16" // {
+ sources."@rushstack/package-deps-hash-4.1.61"
+ (sources."@rushstack/package-extractor-0.7.20" // {
dependencies = [
sources."brace-expansion-1.1.11"
sources."minimatch-3.0.8"
@@ -58595,18 +57773,18 @@ in
sources."strip-json-comments-3.1.1"
];
})
- sources."@rushstack/rush-amazon-s3-build-cache-plugin-5.128.1"
- sources."@rushstack/rush-azure-storage-build-cache-plugin-5.128.1"
- sources."@rushstack/rush-http-build-cache-plugin-5.128.1"
- sources."@rushstack/rush-sdk-5.128.1"
- sources."@rushstack/stream-collator-4.1.56"
- (sources."@rushstack/terminal-0.13.0" // {
+ sources."@rushstack/rush-amazon-s3-build-cache-plugin-5.130.2"
+ sources."@rushstack/rush-azure-storage-build-cache-plugin-5.130.2"
+ sources."@rushstack/rush-http-build-cache-plugin-5.130.2"
+ sources."@rushstack/rush-sdk-5.130.2"
+ sources."@rushstack/stream-collator-4.1.60"
+ (sources."@rushstack/terminal-0.13.2" // {
dependencies = [
sources."has-flag-4.0.0"
sources."supports-color-8.1.1"
];
})
- (sources."@rushstack/ts-command-line-4.22.0" // {
+ (sources."@rushstack/ts-command-line-4.22.2" // {
dependencies = [
sources."argparse-1.0.10"
];
@@ -58614,19 +57792,19 @@ in
sources."@sindresorhus/is-0.14.0"
sources."@szmarczak/http-timer-1.1.2"
sources."@types/argparse-1.0.38"
- sources."@types/lodash-4.17.5"
+ sources."@types/lodash-4.17.7"
sources."@types/minimatch-3.0.5"
sources."@types/minimist-1.2.5"
- sources."@types/node-20.14.2"
+ sources."@types/node-20.14.12"
sources."@types/node-fetch-2.6.2"
sources."@types/normalize-package-data-2.4.4"
sources."@types/parse-json-4.0.2"
sources."@types/tunnel-0.0.3"
- sources."@vue/compiler-core-3.4.29"
- sources."@vue/compiler-dom-3.4.29"
- sources."@vue/compiler-sfc-3.4.29"
- sources."@vue/compiler-ssr-3.4.29"
- sources."@vue/shared-3.4.29"
+ sources."@vue/compiler-core-3.4.34"
+ sources."@vue/compiler-dom-3.4.34"
+ sources."@vue/compiler-sfc-3.4.34"
+ sources."@vue/compiler-ssr-3.4.34"
+ sources."@vue/shared-3.4.34"
sources."@yarnpkg/lockfile-1.0.2"
sources."@zkochan/cmd-shim-5.4.1"
sources."agent-base-6.0.2"
@@ -58861,7 +58039,7 @@ in
})
sources."is-arrayish-0.2.1"
sources."is-ci-2.0.0"
- sources."is-core-module-2.13.1"
+ sources."is-core-module-2.15.0"
sources."is-docker-2.2.1"
sources."is-es2016-keyword-1.0.0"
sources."is-extglob-2.1.1"
@@ -59067,13 +58245,13 @@ in
];
})
sources."please-upgrade-node-3.2.0"
- (sources."pnpm-sync-lib-0.2.6" // {
+ (sources."pnpm-sync-lib-0.2.9" // {
dependencies = [
sources."yaml-2.4.1"
];
})
- sources."postcss-8.4.38"
- (sources."preferred-pm-3.1.3" // {
+ sources."postcss-8.4.40"
+ (sources."preferred-pm-3.1.4" // {
dependencies = [
sources."find-up-5.0.0"
sources."locate-path-6.0.0"
@@ -59225,7 +58403,7 @@ in
sources."webidl-conversions-3.0.1"
sources."whatwg-url-5.0.0"
sources."which-1.3.1"
- sources."which-pm-2.0.0"
+ sources."which-pm-2.2.0"
sources."widest-line-3.1.0"
(sources."wrap-ansi-7.0.0" // {
dependencies = [
@@ -59265,10 +58443,10 @@ in
"@shopify/cli" = nodeEnv.buildNodePackage {
name = "_at_shopify_slash_cli";
packageName = "@shopify/cli";
- version = "3.61.2";
+ version = "3.64.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@shopify/cli/-/cli-3.61.2.tgz";
- sha512 = "XVG6IyNBJTL8YN6qGzRKapkOijI2mTVeDB2zTg/BnQsmDV57XH5ciGfDWSSN39banCZg7jwU+FssIXgmDl5ERg==";
+ url = "https://registry.npmjs.org/@shopify/cli/-/cli-3.64.1.tgz";
+ sha512 = "7S5SfhlQnk5Rng8t0oh22TEldCSlFm18yWgP+st7blUrk94wsNDiykv3oAYlm8fG6xZzEp80HQZjX7yBYgcQvw==";
};
dependencies = [
sources."@ast-grep/napi-0.11.0"
@@ -59300,30 +58478,7 @@ in
sources."@esbuild/win32-arm64-0.19.8"
sources."@esbuild/win32-ia32-0.19.8"
sources."@esbuild/win32-x64-0.19.8"
- sources."@parcel/watcher-2.4.1"
- sources."@parcel/watcher-android-arm64-2.4.1"
- sources."@parcel/watcher-darwin-arm64-2.4.1"
- sources."@parcel/watcher-darwin-x64-2.4.1"
- sources."@parcel/watcher-freebsd-x64-2.4.1"
- sources."@parcel/watcher-linux-arm-glibc-2.4.1"
- sources."@parcel/watcher-linux-arm64-glibc-2.4.1"
- sources."@parcel/watcher-linux-arm64-musl-2.4.1"
- sources."@parcel/watcher-linux-x64-glibc-2.4.1"
- sources."@parcel/watcher-linux-x64-musl-2.4.1"
- sources."@parcel/watcher-win32-arm64-2.4.1"
- sources."@parcel/watcher-win32-ia32-2.4.1"
- sources."@parcel/watcher-win32-x64-2.4.1"
- sources."braces-3.0.3"
- sources."detect-libc-1.0.3"
sources."esbuild-0.19.8"
- sources."fill-range-7.1.1"
- sources."is-extglob-2.1.1"
- sources."is-glob-4.0.3"
- sources."is-number-7.0.0"
- sources."micromatch-4.0.7"
- sources."node-addon-api-7.1.0"
- sources."picomatch-2.3.1"
- sources."to-regex-range-5.0.1"
];
buildInputs = globalBuildInputs;
meta = {
@@ -59354,22 +58509,22 @@ in
sources."@jridgewell/gen-mapping-0.3.5"
sources."@jridgewell/resolve-uri-3.1.2"
sources."@jridgewell/set-array-1.2.1"
- sources."@jridgewell/sourcemap-codec-1.4.15"
+ sources."@jridgewell/sourcemap-codec-1.5.0"
sources."@jridgewell/trace-mapping-0.3.25"
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.5.29"
+ sources."@swc/core-1.7.1"
sources."@swc/counter-0.1.3"
- sources."@swc/helpers-0.5.11"
- sources."@swc/types-0.1.8"
- sources."@swc/wasm-1.5.29"
+ sources."@swc/helpers-0.5.12"
+ sources."@swc/types-0.1.12"
+ sources."@swc/wasm-1.7.1"
sources."@tsconfig/node10-1.0.11"
sources."@tsconfig/node12-1.0.11"
sources."@tsconfig/node14-1.0.3"
sources."@tsconfig/node16-1.0.4"
- sources."@types/node-20.14.2"
- sources."acorn-8.12.0"
+ sources."@types/node-20.14.12"
+ sources."acorn-8.12.1"
sources."acorn-walk-8.3.3"
sources."ansi-regex-5.0.1"
sources."ansi-styles-6.2.1"
@@ -59404,33 +58559,34 @@ in
})
sources."fastq-1.17.1"
sources."fill-range-7.1.1"
- sources."foreground-child-3.2.0"
+ sources."foreground-child-3.2.1"
sources."function-bind-1.1.2"
- sources."glob-10.4.1"
+ sources."glob-10.4.5"
sources."glob-parent-6.0.2"
sources."hasown-2.0.2"
sources."is-binary-path-2.1.0"
- sources."is-core-module-2.13.1"
+ sources."is-core-module-2.15.0"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-3.0.0"
sources."is-glob-4.0.3"
sources."is-number-7.0.0"
sources."isexe-2.0.0"
- sources."jackspeak-3.4.0"
+ sources."jackspeak-3.4.3"
sources."jiti-1.21.6"
sources."lilconfig-2.1.0"
sources."lines-and-columns-1.2.4"
- sources."lru-cache-10.2.2"
+ sources."lru-cache-10.4.3"
sources."make-error-1.3.6"
sources."merge2-1.4.1"
sources."micromatch-4.0.7"
- sources."minimatch-9.0.4"
+ sources."minimatch-9.0.5"
sources."minipass-7.1.2"
sources."mz-2.7.0"
sources."nanoid-3.3.7"
sources."normalize-path-3.0.0"
sources."object-assign-4.1.1"
sources."object-hash-3.0.0"
+ sources."package-json-from-dist-1.0.0"
sources."path-key-3.1.1"
sources."path-parse-1.0.7"
sources."path-scurry-1.11.1"
@@ -59438,7 +58594,7 @@ in
sources."picomatch-2.3.1"
sources."pify-2.3.0"
sources."pirates-4.0.6"
- sources."postcss-8.4.38"
+ sources."postcss-8.4.40"
sources."postcss-import-15.1.0"
sources."postcss-js-4.0.1"
(sources."postcss-load-config-4.0.2" // {
@@ -59446,8 +58602,8 @@ in
sources."lilconfig-3.1.2"
];
})
- sources."postcss-nested-6.0.1"
- sources."postcss-selector-parser-6.1.0"
+ sources."postcss-nested-6.2.0"
+ sources."postcss-selector-parser-6.1.1"
sources."postcss-value-parser-4.2.0"
sources."queue-microtask-1.2.3"
sources."read-cache-1.0.0"
@@ -59474,7 +58630,7 @@ in
sources."strip-ansi-cjs-6.0.1"
sources."sucrase-3.35.0"
sources."supports-preserve-symlinks-flag-1.0.0"
- sources."tailwindcss-3.4.4"
+ sources."tailwindcss-3.4.6"
sources."thenify-3.3.1"
sources."thenify-all-1.6.0"
sources."to-regex-range-5.0.1"
@@ -59485,7 +58641,7 @@ in
];
})
sources."tslib-2.6.3"
- sources."typescript-5.4.5"
+ sources."typescript-5.5.4"
sources."undici-types-5.26.5"
sources."util-deprecate-1.0.2"
sources."v8-compile-cache-lib-3.0.1"
@@ -59499,7 +58655,7 @@ in
sources."strip-ansi-6.0.1"
];
})
- sources."yaml-2.4.5"
+ sources."yaml-2.5.0"
sources."yn-3.1.1"
];
buildInputs = globalBuildInputs;
@@ -59531,22 +58687,22 @@ in
sources."@jridgewell/gen-mapping-0.3.5"
sources."@jridgewell/resolve-uri-3.1.2"
sources."@jridgewell/set-array-1.2.1"
- sources."@jridgewell/sourcemap-codec-1.4.15"
+ sources."@jridgewell/sourcemap-codec-1.5.0"
sources."@jridgewell/trace-mapping-0.3.25"
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.5.29"
+ sources."@swc/core-1.7.1"
sources."@swc/counter-0.1.3"
- sources."@swc/helpers-0.5.11"
- sources."@swc/types-0.1.8"
- sources."@swc/wasm-1.5.29"
+ sources."@swc/helpers-0.5.12"
+ sources."@swc/types-0.1.12"
+ sources."@swc/wasm-1.7.1"
sources."@tsconfig/node10-1.0.11"
sources."@tsconfig/node12-1.0.11"
sources."@tsconfig/node14-1.0.3"
sources."@tsconfig/node16-1.0.4"
- sources."@types/node-20.14.2"
- sources."acorn-8.12.0"
+ sources."@types/node-20.14.12"
+ sources."acorn-8.12.1"
sources."acorn-walk-8.3.3"
sources."ansi-regex-5.0.1"
sources."ansi-styles-6.2.1"
@@ -59581,34 +58737,35 @@ in
})
sources."fastq-1.17.1"
sources."fill-range-7.1.1"
- sources."foreground-child-3.2.0"
+ sources."foreground-child-3.2.1"
sources."function-bind-1.1.2"
- sources."glob-10.4.1"
+ sources."glob-10.4.5"
sources."glob-parent-6.0.2"
sources."hasown-2.0.2"
sources."is-binary-path-2.1.0"
- sources."is-core-module-2.13.1"
+ sources."is-core-module-2.15.0"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-3.0.0"
sources."is-glob-4.0.3"
sources."is-number-7.0.0"
sources."isexe-2.0.0"
- sources."jackspeak-3.4.0"
+ sources."jackspeak-3.4.3"
sources."jiti-1.21.6"
sources."lilconfig-2.1.0"
sources."lines-and-columns-1.2.4"
- sources."lru-cache-10.2.2"
+ sources."lru-cache-10.4.3"
sources."make-error-1.3.6"
sources."merge2-1.4.1"
sources."micromatch-4.0.7"
sources."mini-svg-data-uri-1.4.4"
- sources."minimatch-9.0.4"
+ sources."minimatch-9.0.5"
sources."minipass-7.1.2"
sources."mz-2.7.0"
sources."nanoid-3.3.7"
sources."normalize-path-3.0.0"
sources."object-assign-4.1.1"
sources."object-hash-3.0.0"
+ sources."package-json-from-dist-1.0.0"
sources."path-key-3.1.1"
sources."path-parse-1.0.7"
sources."path-scurry-1.11.1"
@@ -59616,7 +58773,7 @@ in
sources."picomatch-2.3.1"
sources."pify-2.3.0"
sources."pirates-4.0.6"
- sources."postcss-8.4.38"
+ sources."postcss-8.4.40"
sources."postcss-import-15.1.0"
sources."postcss-js-4.0.1"
(sources."postcss-load-config-4.0.2" // {
@@ -59624,8 +58781,8 @@ in
sources."lilconfig-3.1.2"
];
})
- sources."postcss-nested-6.0.1"
- sources."postcss-selector-parser-6.1.0"
+ sources."postcss-nested-6.2.0"
+ sources."postcss-selector-parser-6.1.1"
sources."postcss-value-parser-4.2.0"
sources."queue-microtask-1.2.3"
sources."read-cache-1.0.0"
@@ -59652,7 +58809,7 @@ in
sources."strip-ansi-cjs-6.0.1"
sources."sucrase-3.35.0"
sources."supports-preserve-symlinks-flag-1.0.0"
- sources."tailwindcss-3.4.4"
+ sources."tailwindcss-3.4.6"
sources."thenify-3.3.1"
sources."thenify-all-1.6.0"
sources."to-regex-range-5.0.1"
@@ -59663,7 +58820,7 @@ in
];
})
sources."tslib-2.6.3"
- sources."typescript-5.4.5"
+ sources."typescript-5.5.4"
sources."undici-types-5.26.5"
sources."util-deprecate-1.0.2"
sources."v8-compile-cache-lib-3.0.1"
@@ -59677,7 +58834,7 @@ in
sources."strip-ansi-6.0.1"
];
})
- sources."yaml-2.4.5"
+ sources."yaml-2.5.0"
sources."yn-3.1.1"
];
buildInputs = globalBuildInputs;
@@ -59709,22 +58866,22 @@ in
sources."@jridgewell/gen-mapping-0.3.5"
sources."@jridgewell/resolve-uri-3.1.2"
sources."@jridgewell/set-array-1.2.1"
- sources."@jridgewell/sourcemap-codec-1.4.15"
+ sources."@jridgewell/sourcemap-codec-1.5.0"
sources."@jridgewell/trace-mapping-0.3.25"
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.5.29"
+ sources."@swc/core-1.7.1"
sources."@swc/counter-0.1.3"
- sources."@swc/helpers-0.5.11"
- sources."@swc/types-0.1.8"
- sources."@swc/wasm-1.5.29"
+ sources."@swc/helpers-0.5.12"
+ sources."@swc/types-0.1.12"
+ sources."@swc/wasm-1.7.1"
sources."@tsconfig/node10-1.0.11"
sources."@tsconfig/node12-1.0.11"
sources."@tsconfig/node14-1.0.3"
sources."@tsconfig/node16-1.0.4"
- sources."@types/node-20.14.2"
- sources."acorn-8.12.0"
+ sources."@types/node-20.14.12"
+ sources."acorn-8.12.1"
sources."acorn-walk-8.3.3"
sources."ansi-regex-5.0.1"
sources."ansi-styles-6.2.1"
@@ -59759,33 +58916,34 @@ in
})
sources."fastq-1.17.1"
sources."fill-range-7.1.1"
- sources."foreground-child-3.2.0"
+ sources."foreground-child-3.2.1"
sources."function-bind-1.1.2"
- sources."glob-10.4.1"
+ sources."glob-10.4.5"
sources."glob-parent-6.0.2"
sources."hasown-2.0.2"
sources."is-binary-path-2.1.0"
- sources."is-core-module-2.13.1"
+ sources."is-core-module-2.15.0"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-3.0.0"
sources."is-glob-4.0.3"
sources."is-number-7.0.0"
sources."isexe-2.0.0"
- sources."jackspeak-3.4.0"
+ sources."jackspeak-3.4.3"
sources."jiti-1.21.6"
sources."lilconfig-2.1.0"
sources."lines-and-columns-1.2.4"
- sources."lru-cache-10.2.2"
+ sources."lru-cache-10.4.3"
sources."make-error-1.3.6"
sources."merge2-1.4.1"
sources."micromatch-4.0.7"
- sources."minimatch-9.0.4"
+ sources."minimatch-9.0.5"
sources."minipass-7.1.2"
sources."mz-2.7.0"
sources."nanoid-3.3.7"
sources."normalize-path-3.0.0"
sources."object-assign-4.1.1"
sources."object-hash-3.0.0"
+ sources."package-json-from-dist-1.0.0"
sources."path-key-3.1.1"
sources."path-parse-1.0.7"
sources."path-scurry-1.11.1"
@@ -59793,7 +58951,7 @@ in
sources."picomatch-2.3.1"
sources."pify-2.3.0"
sources."pirates-4.0.6"
- sources."postcss-8.4.38"
+ sources."postcss-8.4.40"
sources."postcss-import-15.1.0"
sources."postcss-js-4.0.1"
(sources."postcss-load-config-4.0.2" // {
@@ -59801,8 +58959,8 @@ in
sources."lilconfig-3.1.2"
];
})
- sources."postcss-nested-6.0.1"
- sources."postcss-selector-parser-6.1.0"
+ sources."postcss-nested-6.2.0"
+ sources."postcss-selector-parser-6.1.1"
sources."postcss-value-parser-4.2.0"
sources."queue-microtask-1.2.3"
sources."read-cache-1.0.0"
@@ -59829,7 +58987,7 @@ in
sources."strip-ansi-cjs-6.0.1"
sources."sucrase-3.35.0"
sources."supports-preserve-symlinks-flag-1.0.0"
- sources."tailwindcss-3.4.4"
+ sources."tailwindcss-3.4.6"
sources."thenify-3.3.1"
sources."thenify-all-1.6.0"
sources."to-regex-range-5.0.1"
@@ -59840,7 +58998,7 @@ in
];
})
sources."tslib-2.6.3"
- sources."typescript-5.4.5"
+ sources."typescript-5.5.4"
sources."undici-types-5.26.5"
sources."util-deprecate-1.0.2"
sources."v8-compile-cache-lib-3.0.1"
@@ -59854,7 +59012,7 @@ in
sources."strip-ansi-6.0.1"
];
})
- sources."yaml-2.4.5"
+ sources."yaml-2.5.0"
sources."yn-3.1.1"
];
buildInputs = globalBuildInputs;
@@ -59886,22 +59044,22 @@ in
sources."@jridgewell/gen-mapping-0.3.5"
sources."@jridgewell/resolve-uri-3.1.2"
sources."@jridgewell/set-array-1.2.1"
- sources."@jridgewell/sourcemap-codec-1.4.15"
+ sources."@jridgewell/sourcemap-codec-1.5.0"
sources."@jridgewell/trace-mapping-0.3.25"
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.5.29"
+ sources."@swc/core-1.7.1"
sources."@swc/counter-0.1.3"
- sources."@swc/helpers-0.5.11"
- sources."@swc/types-0.1.8"
- sources."@swc/wasm-1.5.29"
+ sources."@swc/helpers-0.5.12"
+ sources."@swc/types-0.1.12"
+ sources."@swc/wasm-1.7.1"
sources."@tsconfig/node10-1.0.11"
sources."@tsconfig/node12-1.0.11"
sources."@tsconfig/node14-1.0.3"
sources."@tsconfig/node16-1.0.4"
- sources."@types/node-20.14.2"
- sources."acorn-8.12.0"
+ sources."@types/node-20.14.12"
+ sources."acorn-8.12.1"
sources."acorn-walk-8.3.3"
sources."ansi-regex-5.0.1"
sources."ansi-styles-6.2.1"
@@ -59936,36 +59094,37 @@ in
})
sources."fastq-1.17.1"
sources."fill-range-7.1.1"
- sources."foreground-child-3.2.0"
+ sources."foreground-child-3.2.1"
sources."function-bind-1.1.2"
- sources."glob-10.4.1"
+ sources."glob-10.4.5"
sources."glob-parent-6.0.2"
sources."hasown-2.0.2"
sources."is-binary-path-2.1.0"
- sources."is-core-module-2.13.1"
+ sources."is-core-module-2.15.0"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-3.0.0"
sources."is-glob-4.0.3"
sources."is-number-7.0.0"
sources."isexe-2.0.0"
- sources."jackspeak-3.4.0"
+ sources."jackspeak-3.4.3"
sources."jiti-1.21.6"
sources."lilconfig-2.1.0"
sources."lines-and-columns-1.2.4"
sources."lodash.castarray-4.4.0"
sources."lodash.isplainobject-4.0.6"
sources."lodash.merge-4.6.2"
- sources."lru-cache-10.2.2"
+ sources."lru-cache-10.4.3"
sources."make-error-1.3.6"
sources."merge2-1.4.1"
sources."micromatch-4.0.7"
- sources."minimatch-9.0.4"
+ sources."minimatch-9.0.5"
sources."minipass-7.1.2"
sources."mz-2.7.0"
sources."nanoid-3.3.7"
sources."normalize-path-3.0.0"
sources."object-assign-4.1.1"
sources."object-hash-3.0.0"
+ sources."package-json-from-dist-1.0.0"
sources."path-key-3.1.1"
sources."path-parse-1.0.7"
sources."path-scurry-1.11.1"
@@ -59973,7 +59132,7 @@ in
sources."picomatch-2.3.1"
sources."pify-2.3.0"
sources."pirates-4.0.6"
- sources."postcss-8.4.38"
+ sources."postcss-8.4.40"
sources."postcss-import-15.1.0"
sources."postcss-js-4.0.1"
(sources."postcss-load-config-4.0.2" // {
@@ -59981,9 +59140,9 @@ in
sources."lilconfig-3.1.2"
];
})
- (sources."postcss-nested-6.0.1" // {
+ (sources."postcss-nested-6.2.0" // {
dependencies = [
- sources."postcss-selector-parser-6.1.0"
+ sources."postcss-selector-parser-6.1.1"
];
})
sources."postcss-selector-parser-6.0.10"
@@ -60013,9 +59172,9 @@ in
sources."strip-ansi-cjs-6.0.1"
sources."sucrase-3.35.0"
sources."supports-preserve-symlinks-flag-1.0.0"
- (sources."tailwindcss-3.4.4" // {
+ (sources."tailwindcss-3.4.6" // {
dependencies = [
- sources."postcss-selector-parser-6.1.0"
+ sources."postcss-selector-parser-6.1.1"
];
})
sources."thenify-3.3.1"
@@ -60028,7 +59187,7 @@ in
];
})
sources."tslib-2.6.3"
- sources."typescript-5.4.5"
+ sources."typescript-5.5.4"
sources."undici-types-5.26.5"
sources."util-deprecate-1.0.2"
sources."v8-compile-cache-lib-3.0.1"
@@ -60042,7 +59201,7 @@ in
sources."strip-ansi-6.0.1"
];
})
- sources."yaml-2.4.5"
+ sources."yaml-2.5.0"
sources."yn-3.1.1"
];
buildInputs = globalBuildInputs;
@@ -60058,10 +59217,10 @@ in
"@uppy/companion" = nodeEnv.buildNodePackage {
name = "_at_uppy_slash_companion";
packageName = "@uppy/companion";
- version = "4.13.3";
+ version = "5.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@uppy/companion/-/companion-4.13.3.tgz";
- sha512 = "FTg+WumdND6cgcRMdWhYKIPQ+00k21aIrbCFGQbDH79kWgRlHVDAur+ryVh+zT5YeM8u475tddn02nmJ2QqIow==";
+ url = "https://registry.npmjs.org/@uppy/companion/-/companion-5.0.4.tgz";
+ sha512 = "JmlTk2EaOMZViEbHXNDTv8fvkIjuS63R0Bf0aqXo5j5BVjQGA2htESvcx73lqtBRqIuGGxPynQ3/cOLr/hdUnA==";
};
dependencies = [
sources."@aws-crypto/crc32-5.2.0"
@@ -60083,104 +59242,100 @@ in
sources."@smithy/util-utf8-2.3.0"
];
})
- sources."@aws-sdk/client-s3-3.598.0"
- sources."@aws-sdk/client-sso-3.598.0"
- sources."@aws-sdk/client-sso-oidc-3.598.0"
- sources."@aws-sdk/client-sts-3.598.0"
- sources."@aws-sdk/core-3.598.0"
- sources."@aws-sdk/credential-provider-env-3.598.0"
- sources."@aws-sdk/credential-provider-http-3.598.0"
- sources."@aws-sdk/credential-provider-ini-3.598.0"
- sources."@aws-sdk/credential-provider-node-3.598.0"
- sources."@aws-sdk/credential-provider-process-3.598.0"
- sources."@aws-sdk/credential-provider-sso-3.598.0"
- sources."@aws-sdk/credential-provider-web-identity-3.598.0"
- (sources."@aws-sdk/lib-storage-3.598.0" // {
+ sources."@aws-sdk/client-s3-3.617.0"
+ sources."@aws-sdk/client-sso-3.616.0"
+ sources."@aws-sdk/client-sso-oidc-3.616.0"
+ sources."@aws-sdk/client-sts-3.616.0"
+ sources."@aws-sdk/core-3.616.0"
+ sources."@aws-sdk/credential-provider-env-3.609.0"
+ sources."@aws-sdk/credential-provider-http-3.616.0"
+ sources."@aws-sdk/credential-provider-ini-3.616.0"
+ sources."@aws-sdk/credential-provider-node-3.616.0"
+ sources."@aws-sdk/credential-provider-process-3.614.0"
+ sources."@aws-sdk/credential-provider-sso-3.616.0"
+ sources."@aws-sdk/credential-provider-web-identity-3.609.0"
+ (sources."@aws-sdk/lib-storage-3.617.0" // {
dependencies = [
sources."buffer-5.6.0"
];
})
- sources."@aws-sdk/middleware-bucket-endpoint-3.598.0"
- sources."@aws-sdk/middleware-expect-continue-3.598.0"
- (sources."@aws-sdk/middleware-flexible-checksums-3.598.0" // {
+ sources."@aws-sdk/middleware-bucket-endpoint-3.616.0"
+ sources."@aws-sdk/middleware-expect-continue-3.616.0"
+ (sources."@aws-sdk/middleware-flexible-checksums-3.616.0" // {
dependencies = [
sources."@smithy/is-array-buffer-3.0.0"
];
})
- sources."@aws-sdk/middleware-host-header-3.598.0"
- sources."@aws-sdk/middleware-location-constraint-3.598.0"
- sources."@aws-sdk/middleware-logger-3.598.0"
- sources."@aws-sdk/middleware-recursion-detection-3.598.0"
- sources."@aws-sdk/middleware-sdk-s3-3.598.0"
- sources."@aws-sdk/middleware-signing-3.598.0"
- sources."@aws-sdk/middleware-ssec-3.598.0"
- sources."@aws-sdk/middleware-user-agent-3.598.0"
- sources."@aws-sdk/region-config-resolver-3.598.0"
- sources."@aws-sdk/s3-presigned-post-3.598.0"
- sources."@aws-sdk/s3-request-presigner-3.598.0"
- sources."@aws-sdk/signature-v4-multi-region-3.598.0"
- sources."@aws-sdk/token-providers-3.598.0"
- sources."@aws-sdk/types-3.598.0"
+ sources."@aws-sdk/middleware-host-header-3.616.0"
+ sources."@aws-sdk/middleware-location-constraint-3.609.0"
+ sources."@aws-sdk/middleware-logger-3.609.0"
+ sources."@aws-sdk/middleware-recursion-detection-3.616.0"
+ sources."@aws-sdk/middleware-sdk-s3-3.617.0"
+ sources."@aws-sdk/middleware-signing-3.616.0"
+ sources."@aws-sdk/middleware-ssec-3.609.0"
+ sources."@aws-sdk/middleware-user-agent-3.616.0"
+ sources."@aws-sdk/region-config-resolver-3.614.0"
+ sources."@aws-sdk/s3-presigned-post-3.617.0"
+ sources."@aws-sdk/s3-request-presigner-3.617.0"
+ sources."@aws-sdk/signature-v4-multi-region-3.617.0"
+ sources."@aws-sdk/token-providers-3.614.0"
+ sources."@aws-sdk/types-3.609.0"
sources."@aws-sdk/util-arn-parser-3.568.0"
- sources."@aws-sdk/util-endpoints-3.598.0"
- sources."@aws-sdk/util-format-url-3.598.0"
+ sources."@aws-sdk/util-endpoints-3.614.0"
+ sources."@aws-sdk/util-format-url-3.609.0"
sources."@aws-sdk/util-locate-window-3.568.0"
- sources."@aws-sdk/util-user-agent-browser-3.598.0"
- sources."@aws-sdk/util-user-agent-node-3.598.0"
+ sources."@aws-sdk/util-user-agent-browser-3.609.0"
+ sources."@aws-sdk/util-user-agent-node-3.614.0"
sources."@aws-sdk/util-utf8-browser-3.259.0"
- sources."@aws-sdk/xml-builder-3.598.0"
+ sources."@aws-sdk/xml-builder-3.609.0"
sources."@httptoolkit/websocket-stream-6.0.1"
- sources."@redis/bloom-1.2.0"
- sources."@redis/client-1.5.16"
- sources."@redis/graph-1.1.1"
- sources."@redis/json-1.0.6"
- sources."@redis/search-1.1.6"
- sources."@redis/time-series-1.0.5"
- sources."@sindresorhus/is-4.6.0"
- sources."@smithy/abort-controller-3.0.1"
+ sources."@ioredis/commands-1.2.0"
+ sources."@opentelemetry/api-1.9.0"
+ sources."@sindresorhus/is-5.6.0"
+ sources."@smithy/abort-controller-3.1.1"
sources."@smithy/chunked-blob-reader-3.0.0"
sources."@smithy/chunked-blob-reader-native-3.0.0"
- sources."@smithy/config-resolver-3.0.2"
- sources."@smithy/core-2.2.1"
- sources."@smithy/credential-provider-imds-3.1.1"
- sources."@smithy/eventstream-codec-3.1.0"
- sources."@smithy/eventstream-serde-browser-3.0.2"
- sources."@smithy/eventstream-serde-config-resolver-3.0.1"
- sources."@smithy/eventstream-serde-node-3.0.2"
- sources."@smithy/eventstream-serde-universal-3.0.2"
- sources."@smithy/fetch-http-handler-3.0.2"
- sources."@smithy/hash-blob-browser-3.1.0"
- (sources."@smithy/hash-node-3.0.1" // {
+ sources."@smithy/config-resolver-3.0.5"
+ sources."@smithy/core-2.3.0"
+ sources."@smithy/credential-provider-imds-3.2.0"
+ sources."@smithy/eventstream-codec-3.1.2"
+ sources."@smithy/eventstream-serde-browser-3.0.5"
+ sources."@smithy/eventstream-serde-config-resolver-3.0.3"
+ sources."@smithy/eventstream-serde-node-3.0.4"
+ sources."@smithy/eventstream-serde-universal-3.0.4"
+ sources."@smithy/fetch-http-handler-3.2.3"
+ sources."@smithy/hash-blob-browser-3.1.2"
+ (sources."@smithy/hash-node-3.0.3" // {
dependencies = [
sources."@smithy/is-array-buffer-3.0.0"
sources."@smithy/util-buffer-from-3.0.0"
];
})
- sources."@smithy/hash-stream-node-3.1.0"
- sources."@smithy/invalid-dependency-3.0.1"
+ sources."@smithy/hash-stream-node-3.1.2"
+ sources."@smithy/invalid-dependency-3.0.3"
sources."@smithy/is-array-buffer-2.2.0"
- sources."@smithy/md5-js-3.0.1"
- sources."@smithy/middleware-content-length-3.0.1"
- sources."@smithy/middleware-endpoint-3.0.2"
- sources."@smithy/middleware-retry-3.0.4"
- sources."@smithy/middleware-serde-3.0.1"
- sources."@smithy/middleware-stack-3.0.1"
- sources."@smithy/node-config-provider-3.1.1"
- sources."@smithy/node-http-handler-3.0.1"
- sources."@smithy/property-provider-3.1.1"
- sources."@smithy/protocol-http-4.0.1"
- sources."@smithy/querystring-builder-3.0.1"
- sources."@smithy/querystring-parser-3.0.1"
- sources."@smithy/service-error-classification-3.0.1"
- sources."@smithy/shared-ini-file-loader-3.1.1"
- (sources."@smithy/signature-v4-3.1.0" // {
+ sources."@smithy/md5-js-3.0.3"
+ sources."@smithy/middleware-content-length-3.0.5"
+ sources."@smithy/middleware-endpoint-3.1.0"
+ sources."@smithy/middleware-retry-3.0.12"
+ sources."@smithy/middleware-serde-3.0.3"
+ sources."@smithy/middleware-stack-3.0.3"
+ sources."@smithy/node-config-provider-3.1.4"
+ sources."@smithy/node-http-handler-3.1.4"
+ sources."@smithy/property-provider-3.1.3"
+ sources."@smithy/protocol-http-4.1.0"
+ sources."@smithy/querystring-builder-3.0.3"
+ sources."@smithy/querystring-parser-3.0.3"
+ sources."@smithy/service-error-classification-3.0.3"
+ sources."@smithy/shared-ini-file-loader-3.1.4"
+ (sources."@smithy/signature-v4-4.1.0" // {
dependencies = [
sources."@smithy/is-array-buffer-3.0.0"
];
})
- sources."@smithy/smithy-client-3.1.2"
- sources."@smithy/types-3.1.0"
- sources."@smithy/url-parser-3.0.1"
+ sources."@smithy/smithy-client-3.1.10"
+ sources."@smithy/types-3.3.0"
+ sources."@smithy/url-parser-3.0.3"
(sources."@smithy/util-base64-3.0.0" // {
dependencies = [
sources."@smithy/is-array-buffer-3.0.0"
@@ -60191,13 +59346,13 @@ in
sources."@smithy/util-body-length-node-3.0.0"
sources."@smithy/util-buffer-from-2.2.0"
sources."@smithy/util-config-provider-3.0.0"
- sources."@smithy/util-defaults-mode-browser-3.0.4"
- sources."@smithy/util-defaults-mode-node-3.0.4"
- sources."@smithy/util-endpoints-2.0.2"
+ sources."@smithy/util-defaults-mode-browser-3.0.12"
+ sources."@smithy/util-defaults-mode-node-3.0.12"
+ sources."@smithy/util-endpoints-2.0.5"
sources."@smithy/util-hex-encoding-3.0.0"
- sources."@smithy/util-middleware-3.0.1"
- sources."@smithy/util-retry-3.0.1"
- (sources."@smithy/util-stream-3.0.2" // {
+ sources."@smithy/util-middleware-3.0.3"
+ sources."@smithy/util-retry-3.0.3"
+ (sources."@smithy/util-stream-3.1.2" // {
dependencies = [
sources."@smithy/is-array-buffer-3.0.0"
sources."@smithy/util-buffer-from-3.0.0"
@@ -60210,26 +59365,26 @@ in
sources."@smithy/util-buffer-from-3.0.0"
];
})
- sources."@smithy/util-waiter-3.0.1"
- sources."@szmarczak/http-timer-4.0.6"
- sources."@types/cacheable-request-6.0.3"
+ sources."@smithy/util-waiter-3.1.2"
+ sources."@szmarczak/http-timer-5.0.1"
+ sources."@types/body-parser-1.19.5"
+ sources."@types/connect-3.4.38"
+ sources."@types/express-4.17.21"
+ sources."@types/express-serve-static-core-4.19.5"
sources."@types/http-cache-semantics-4.0.4"
- sources."@types/keyv-3.1.4"
- sources."@types/node-20.14.2"
- sources."@types/responselike-1.0.3"
- sources."@types/ws-8.5.10"
+ sources."@types/http-errors-2.0.4"
+ sources."@types/mime-1.3.5"
+ sources."@types/node-20.14.12"
+ sources."@types/qs-6.9.15"
+ sources."@types/range-parser-1.2.7"
+ sources."@types/send-0.17.4"
+ sources."@types/serve-static-1.15.7"
+ sources."@types/ws-8.5.11"
sources."accepts-1.3.8"
- sources."ansi-styles-4.3.0"
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.21.3"
- (sources."axios-1.7.2" // {
- dependencies = [
- sources."form-data-4.0.0"
- ];
- })
+ sources."axios-1.7.2"
sources."balanced-match-1.0.2"
sources."base64-js-1.5.1"
(sources."basic-auth-2.0.1" // {
@@ -60244,8 +59399,7 @@ in
sources."readable-stream-3.6.2"
];
})
- sources."bn.js-4.12.0"
- (sources."body-parser-1.20.0" // {
+ (sources."body-parser-1.20.2" // {
dependencies = [
sources."debug-2.6.9"
sources."ms-2.0.0"
@@ -60253,20 +59407,15 @@ in
})
sources."bowser-2.11.0"
sources."brace-expansion-1.1.11"
- sources."brorand-1.1.0"
sources."buffer-6.0.3"
sources."buffer-equal-constant-time-1.0.1"
sources."buffer-from-1.1.2"
sources."bufferutil-4.0.8"
sources."bytes-3.1.2"
- sources."cacheable-lookup-5.0.4"
- sources."cacheable-request-7.0.4"
+ sources."cacheable-lookup-7.0.0"
+ sources."cacheable-request-10.2.14"
sources."call-bind-1.0.7"
- sources."chalk-4.1.2"
- sources."clone-response-1.0.3"
sources."cluster-key-slot-1.1.2"
- sources."color-convert-2.0.1"
- sources."color-name-1.1.4"
sources."combine-errors-3.0.3"
sources."combined-stream-1.0.8"
sources."commist-1.1.0"
@@ -60277,7 +59426,7 @@ in
sources."readable-stream-3.6.2"
];
})
- sources."connect-redis-7.1.0"
+ sources."connect-redis-7.1.1"
sources."content-disposition-0.5.4"
sources."content-type-1.0.5"
sources."cookie-0.4.1"
@@ -60285,7 +59434,7 @@ in
sources."cookie-signature-1.0.6"
sources."core-util-is-1.0.3"
sources."cors-2.8.5"
- sources."cron-parser-3.5.0"
+ sources."cron-parser-4.9.0"
sources."crypto-js-4.2.0"
sources."custom-error-instance-2.1.1"
(sources."debug-4.3.5" // {
@@ -60300,14 +59449,13 @@ in
})
sources."defer-to-connect-2.0.1"
sources."define-data-property-1.1.4"
- sources."define-properties-1.2.1"
sources."delayed-stream-1.0.0"
+ sources."denque-2.1.0"
sources."depd-2.0.0"
sources."destroy-1.2.0"
sources."duplexify-3.7.1"
sources."ecdsa-sig-formatter-1.0.11"
sources."ee-first-1.1.1"
- sources."elliptic-6.5.5"
sources."encodeurl-1.0.2"
sources."end-of-stream-1.4.4"
sources."es-define-property-1.0.0"
@@ -60319,12 +59467,9 @@ in
sources."events-3.3.0"
(sources."express-4.19.2" // {
dependencies = [
- sources."body-parser-1.20.2"
sources."cookie-0.6.0"
sources."debug-2.6.9"
sources."ms-2.0.0"
- sources."qs-6.11.0"
- sources."raw-body-2.5.2"
];
})
(sources."express-interceptor-1.2.0" // {
@@ -60333,15 +59478,11 @@ in
sources."ms-2.0.0"
];
})
- sources."express-prom-bundle-6.5.0"
- (sources."express-request-id-1.4.1" // {
+ sources."express-prom-bundle-7.0.0"
+ (sources."express-session-1.18.0" // {
dependencies = [
- sources."uuid-3.4.0"
- ];
- })
- (sources."express-session-1.17.3" // {
- dependencies = [
- sources."cookie-0.4.2"
+ sources."cookie-0.6.0"
+ sources."cookie-signature-1.0.7"
sources."debug-2.6.9"
sources."ms-2.0.0"
];
@@ -60354,60 +59495,52 @@ in
];
})
sources."follow-redirects-1.15.6"
- sources."form-data-3.0.1"
+ sources."form-data-4.0.0"
+ sources."form-data-encoder-2.1.4"
sources."forwarded-0.2.0"
sources."fresh-0.5.2"
sources."fs.realpath-1.0.0"
sources."function-bind-1.1.2"
- sources."generic-pool-3.9.0"
sources."get-intrinsic-1.2.4"
- sources."get-stream-5.2.0"
+ sources."get-stream-6.0.1"
sources."glob-7.2.3"
sources."gopd-1.0.1"
- sources."got-11.8.6"
+ sources."got-13.0.0"
sources."graceful-fs-4.2.11"
- (sources."grant-5.4.21" // {
+ (sources."grant-5.4.22" // {
dependencies = [
- sources."cookie-signature-1.2.1"
+ sources."qs-6.12.3"
];
})
sources."has-flag-4.0.0"
sources."has-property-descriptors-1.0.2"
sources."has-proto-1.0.3"
sources."has-symbols-1.0.3"
- sources."hash.js-1.1.7"
sources."hasown-2.0.2"
- sources."helmet-4.6.0"
+ sources."helmet-7.1.0"
(sources."help-me-3.0.0" // {
dependencies = [
sources."readable-stream-3.6.2"
];
})
- sources."hmac-drbg-1.0.1"
sources."http-cache-semantics-4.1.1"
sources."http-errors-2.0.0"
- sources."http2-wrapper-1.0.3"
+ sources."http2-wrapper-2.2.1"
sources."iconv-lite-0.4.24"
sources."ieee754-1.2.1"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
+ sources."ioredis-5.4.1"
sources."ipaddr.js-2.2.0"
- sources."is-nan-1.3.2"
sources."is-stream-2.0.1"
sources."isarray-1.0.0"
sources."isomorphic-ws-4.0.1"
sources."js-base64-3.7.7"
sources."js-sdsl-4.3.0"
sources."json-buffer-3.0.1"
- (sources."jsonwebtoken-9.0.0" // {
- dependencies = [
- sources."jwa-1.4.1"
- sources."jws-3.2.2"
- ];
- })
- sources."jwa-2.0.0"
- sources."jwk-to-pem-2.0.5"
- sources."jws-4.0.0"
+ sources."jsonwebtoken-9.0.2"
+ sources."jwa-1.4.1"
+ sources."jws-3.2.2"
sources."keyv-4.5.4"
sources."leven-2.1.0"
sources."lodash-4.17.21"
@@ -60417,21 +59550,28 @@ in
sources."lodash._createset-4.0.3"
sources."lodash._root-3.0.1"
sources."lodash._stringtopath-4.8.0"
+ sources."lodash.defaults-4.2.0"
+ sources."lodash.includes-4.3.0"
+ sources."lodash.isarguments-3.1.0"
+ sources."lodash.isboolean-3.0.3"
+ sources."lodash.isinteger-4.0.4"
+ sources."lodash.isnumber-3.0.3"
+ sources."lodash.isplainobject-4.0.6"
+ sources."lodash.isstring-4.0.1"
+ sources."lodash.once-4.1.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."lowercase-keys-3.0.0"
sources."lru-cache-6.0.0"
- sources."luxon-1.28.1"
+ sources."luxon-3.4.4"
sources."media-typer-0.3.0"
sources."merge-descriptors-1.0.1"
sources."methods-1.1.2"
sources."mime-1.6.0"
sources."mime-db-1.52.0"
sources."mime-types-2.1.35"
- sources."mimic-response-1.0.1"
- sources."minimalistic-assert-1.0.1"
- sources."minimalistic-crypto-utils-1.0.1"
+ sources."mimic-response-4.0.0"
sources."minimatch-3.1.2"
sources."minimist-1.2.8"
sources."moment-2.30.1"
@@ -60447,30 +59587,29 @@ in
dependencies = [
sources."duplexify-4.1.3"
sources."readable-stream-3.6.2"
- sources."ws-7.5.9"
+ sources."ws-7.5.10"
];
})
sources."mqtt-packet-6.10.0"
sources."ms-2.1.3"
sources."negotiator-0.6.3"
sources."node-gyp-build-4.8.1"
- sources."node-schedule-2.1.0"
- sources."normalize-url-6.1.0"
+ sources."node-schedule-2.1.1"
+ sources."normalize-url-8.0.1"
sources."number-allocator-1.0.14"
sources."oauth-sign-0.9.0"
sources."object-assign-4.1.1"
- sources."object-inspect-1.13.1"
- sources."object-keys-1.1.1"
+ sources."object-inspect-1.13.2"
sources."on-finished-2.4.1"
sources."on-headers-1.0.2"
sources."once-1.4.0"
- sources."p-cancelable-2.1.1"
+ sources."p-cancelable-3.0.0"
sources."parseurl-1.3.3"
sources."path-is-absolute-1.0.1"
sources."path-to-regexp-0.1.7"
sources."process-0.11.10"
sources."process-nextick-args-2.0.1"
- sources."prom-client-14.0.1"
+ sources."prom-client-15.1.2"
sources."proper-lockfile-4.1.2"
(sources."proxy-addr-2.0.7" // {
dependencies = [
@@ -60479,19 +59618,20 @@ in
})
sources."proxy-from-env-1.1.0"
sources."pump-3.0.0"
- sources."qs-6.10.3"
+ sources."qs-6.11.0"
sources."querystringify-2.2.0"
sources."quick-lru-5.1.1"
sources."random-bytes-1.0.0"
sources."randombytes-2.1.0"
sources."range-parser-1.2.1"
- sources."raw-body-2.5.1"
+ sources."raw-body-2.5.2"
(sources."readable-stream-2.3.8" // {
dependencies = [
sources."safe-buffer-5.1.2"
];
})
- sources."redis-4.6.14"
+ sources."redis-errors-1.2.0"
+ sources."redis-parser-3.0.0"
sources."reinterval-1.1.0"
sources."request-compose-2.1.6"
(sources."request-oauth-1.0.1" // {
@@ -60501,12 +59641,12 @@ in
})
sources."requires-port-1.0.0"
sources."resolve-alpn-1.2.1"
- sources."responselike-2.0.1"
+ sources."responselike-3.0.0"
sources."retry-0.12.0"
sources."rfdc-1.4.1"
sources."safe-buffer-5.2.1"
sources."safer-buffer-2.1.2"
- sources."semver-7.6.2"
+ sources."semver-7.6.3"
(sources."send-0.18.0" // {
dependencies = [
(sources."debug-2.6.9" // {
@@ -60516,7 +59656,7 @@ in
})
];
})
- sources."serialize-error-2.1.0"
+ sources."serialize-error-11.0.3"
sources."serialize-javascript-6.0.2"
sources."serve-static-1.15.0"
sources."set-function-length-1.2.2"
@@ -60529,6 +59669,7 @@ in
sources."readable-stream-3.6.2"
];
})
+ sources."standard-as-callback-2.1.0"
sources."statuses-2.0.1"
(sources."stream-browserify-3.0.0" // {
dependencies = [
@@ -60542,11 +59683,12 @@ in
];
})
sources."strnum-1.0.5"
- sources."supports-color-7.2.0"
+ sources."supports-color-8.1.1"
sources."tdigest-0.1.2"
sources."toidentifier-1.0.1"
sources."tslib-2.6.3"
- sources."tus-js-client-3.1.3"
+ sources."tus-js-client-4.1.0"
+ sources."type-fest-2.19.0"
sources."type-is-1.6.18"
sources."typedarray-0.0.6"
sources."uid-safe-2.1.5"
@@ -60561,7 +59703,7 @@ in
sources."validator-13.12.0"
sources."vary-1.1.2"
sources."wrappy-1.0.2"
- sources."ws-8.8.1"
+ sources."ws-8.17.1"
sources."xtend-4.0.2"
sources."yallist-4.0.0"
];
@@ -60700,17 +59842,17 @@ in
};
dependencies = [
sources."@babel/code-frame-7.24.7"
- sources."@babel/generator-7.24.7"
- sources."@babel/helper-string-parser-7.24.7"
+ sources."@babel/generator-7.24.10"
+ sources."@babel/helper-string-parser-7.24.8"
sources."@babel/helper-validator-identifier-7.24.7"
sources."@babel/highlight-7.24.7"
- sources."@babel/parser-7.24.7"
+ sources."@babel/parser-7.24.8"
sources."@babel/template-7.24.7"
- sources."@babel/types-7.24.7"
+ sources."@babel/types-7.24.9"
sources."@jridgewell/gen-mapping-0.3.5"
sources."@jridgewell/resolve-uri-3.1.2"
sources."@jridgewell/set-array-1.2.1"
- sources."@jridgewell/sourcemap-codec-1.4.15"
+ sources."@jridgewell/sourcemap-codec-1.5.0"
sources."@jridgewell/trace-mapping-0.3.25"
sources."@webassemblyjs/ast-1.11.1"
sources."@webassemblyjs/floating-point-hex-parser-1.11.1"
@@ -60792,8 +59934,8 @@ in
sources."@npmcli/config-6.4.1"
(sources."@npmcli/map-workspaces-3.0.6" // {
dependencies = [
- sources."glob-10.4.1"
- sources."minimatch-9.0.4"
+ sources."glob-10.4.5"
+ sources."minimatch-9.0.5"
];
})
sources."@npmcli/name-from-folder-2.0.0"
@@ -60818,12 +59960,12 @@ in
sources."@types/minimist-1.2.5"
sources."@types/ms-0.7.34"
sources."@types/nlcst-1.0.4"
- sources."@types/node-18.19.34"
+ sources."@types/node-18.19.42"
sources."@types/normalize-package-data-2.4.4"
sources."@types/supports-color-8.1.3"
sources."@types/unist-2.0.10"
sources."abbrev-2.0.0"
- sources."acorn-8.12.0"
+ sources."acorn-8.12.1"
sources."acorn-jsx-5.3.2"
(sources."ansi-align-3.0.1" // {
dependencies = [
@@ -60918,7 +60060,7 @@ in
sources."extend-3.0.2"
sources."fault-2.0.1"
sources."find-up-6.3.0"
- sources."foreground-child-3.2.0"
+ sources."foreground-child-3.2.1"
sources."form-data-encoder-2.1.4"
sources."format-0.2.2"
sources."from-0.1.7"
@@ -60974,7 +60116,7 @@ in
sources."ci-info-3.9.0"
];
})
- sources."is-core-module-2.13.1"
+ sources."is-core-module-2.15.0"
sources."is-decimal-2.0.1"
sources."is-empty-1.2.0"
sources."is-fullwidth-code-point-3.0.0"
@@ -60988,7 +60130,7 @@ in
sources."is-yarn-global-0.4.1"
sources."isarray-0.0.1"
sources."isexe-2.0.0"
- sources."jackspeak-3.4.0"
+ sources."jackspeak-3.4.3"
sources."js-tokens-4.0.0"
sources."json-buffer-3.0.1"
sources."json-parse-even-better-errors-2.3.1"
@@ -61087,6 +60229,7 @@ in
sources."p-limit-4.0.0"
sources."p-locate-6.0.0"
sources."package-json-8.1.1"
+ sources."package-json-from-dist-1.0.0"
(sources."parse-english-5.0.0" // {
dependencies = [
sources."nlcst-to-string-2.0.4"
@@ -61105,7 +60248,7 @@ in
sources."path-key-3.1.1"
(sources."path-scurry-1.11.1" // {
dependencies = [
- sources."lru-cache-10.2.2"
+ sources."lru-cache-10.4.3"
];
})
sources."pause-stream-0.0.11"
@@ -61162,7 +60305,7 @@ in
sources."retext-profanities-7.2.2"
sources."sade-1.8.1"
sources."safe-buffer-5.2.1"
- sources."semver-7.6.2"
+ sources."semver-7.6.3"
sources."semver-diff-4.0.0"
sources."shebang-command-2.0.0"
sources."shebang-regex-3.0.0"
@@ -61301,9 +60444,9 @@ in
sources."xdg-basedir-5.1.0"
sources."xtend-2.1.2"
sources."yallist-4.0.0"
- sources."yaml-2.4.5"
+ sources."yaml-2.5.0"
sources."yargs-parser-21.1.1"
- sources."yocto-queue-1.0.0"
+ sources."yocto-queue-1.1.1"
sources."zwitch-2.0.4"
];
buildInputs = globalBuildInputs;
@@ -61369,10 +60512,10 @@ in
aws-cdk = nodeEnv.buildNodePackage {
name = "aws-cdk";
packageName = "aws-cdk";
- version = "2.146.0";
+ version = "2.150.0";
src = fetchurl {
- url = "https://registry.npmjs.org/aws-cdk/-/aws-cdk-2.146.0.tgz";
- sha512 = "uLotAflIqQn8rskLC1r2NGNMaTwDgW8Vq016QiACmatIcp2n/hfNlwazg+hRlSzq2FwGda6Qht2aOlsGm0QcBw==";
+ url = "https://registry.npmjs.org/aws-cdk/-/aws-cdk-2.150.0.tgz";
+ sha512 = "leo4J70QrJp+SYm/87VuoOVfALsW11F7JpkAGu5TLL/qd2k/CbovZ8k9/3Ov+jCVsvAgdn9DeHL01Sn6hSl6Zg==";
};
dependencies = [
sources."fsevents-2.3.2"
@@ -61411,7 +60554,7 @@ in
sources."@sindresorhus/merge-streams-4.0.0"
sources."@szmarczak/http-timer-5.0.1"
sources."@types/debug-4.1.12"
- sources."@types/eslint-8.56.10"
+ sources."@types/eslint-8.56.11"
sources."@types/estree-1.0.5"
sources."@types/estree-jsx-1.0.5"
sources."@types/hast-3.0.4"
@@ -61491,7 +60634,7 @@ in
];
})
sources."eslint-rule-docs-1.1.235"
- sources."execa-9.2.0"
+ sources."execa-9.3.0"
sources."extend-3.0.2"
sources."fast-glob-3.3.2"
sources."fastq-1.17.1"
@@ -61499,7 +60642,6 @@ in
sources."fill-range-7.1.1"
sources."form-data-encoder-2.1.4"
sources."fs.realpath-1.0.0"
- sources."function-bind-1.1.2"
sources."get-east-asian-width-1.2.0"
sources."get-stream-9.0.1"
sources."github-slugger-2.0.0"
@@ -61507,7 +60649,7 @@ in
sources."glob-7.2.3"
sources."glob-option-error-1.0.0"
sources."glob-parent-5.1.2"
- (sources."globby-14.0.1" // {
+ (sources."globby-14.0.2" // {
dependencies = [
sources."@sindresorhus/merge-streams-2.3.0"
];
@@ -61519,7 +60661,6 @@ in
})
sources."graceful-fs-4.2.11"
sources."has-flag-3.0.0"
- sources."hasown-2.0.2"
sources."hosted-git-info-7.0.2"
sources."http-cache-semantics-4.1.1"
sources."http2-wrapper-2.2.1"
@@ -61534,7 +60675,6 @@ in
sources."is-alphabetical-2.0.1"
sources."is-alphanumerical-2.0.1"
sources."is-buffer-2.0.5"
- sources."is-core-module-2.13.1"
sources."is-decimal-2.0.1"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-3.0.0"
@@ -61561,7 +60701,7 @@ in
})
sources."longest-streak-3.1.0"
sources."lowercase-keys-3.0.0"
- sources."lru-cache-10.2.2"
+ sources."lru-cache-10.4.3"
sources."mdast-comment-marker-3.0.0"
sources."mdast-util-directive-3.0.0"
sources."mdast-util-from-markdown-2.0.1"
@@ -61601,7 +60741,7 @@ in
sources."mimic-response-4.0.0"
sources."minimatch-3.1.2"
sources."ms-2.1.2"
- sources."normalize-package-data-6.0.1"
+ sources."normalize-package-data-6.0.2"
sources."normalize-url-8.0.1"
(sources."npm-run-path-5.3.0" // {
dependencies = [
@@ -61618,7 +60758,7 @@ in
sources."@types/unist-2.0.10"
];
})
- sources."parse-github-url-1.0.2"
+ sources."parse-github-url-1.0.3"
sources."parse-json-8.1.0"
sources."parse-ms-4.0.0"
sources."path-is-absolute-1.0.1"
@@ -61628,7 +60768,7 @@ in
sources."picomatch-2.3.1"
sources."plur-4.0.0"
sources."pluralize-8.0.0"
- sources."pretty-ms-9.0.0"
+ sources."pretty-ms-9.1.0"
sources."queue-microtask-1.2.3"
sources."quick-lru-5.1.1"
sources."quotation-2.0.3"
@@ -61756,7 +60896,7 @@ in
sources."rimraf-2.7.1"
sources."rmfr-2.0.0"
sources."run-parallel-1.2.0"
- sources."semver-7.6.2"
+ sources."semver-7.6.3"
sources."shebang-command-2.0.0"
sources."shebang-regex-3.0.0"
sources."signal-exit-4.1.0"
@@ -61768,7 +60908,7 @@ in
sources."spdx-expression-parse-3.0.1"
sources."spdx-license-ids-3.0.18"
sources."stdin-discarder-0.2.2"
- sources."string-width-7.1.0"
+ sources."string-width-7.2.0"
sources."stringify-entities-4.0.4"
sources."strip-ansi-7.1.0"
sources."strip-final-newline-4.0.0"
@@ -61789,9 +60929,9 @@ in
sources."to-regex-range-5.0.1"
sources."to-vfile-8.0.0"
sources."trough-2.2.0"
- sources."type-fest-4.20.0"
+ sources."type-fest-4.23.0"
sources."unicorn-magic-0.1.0"
- sources."unified-11.0.4"
+ sources."unified-11.0.5"
sources."unified-lint-rule-3.0.0"
sources."unified-message-control-5.0.0"
sources."unique-string-3.0.0"
@@ -61828,8 +60968,8 @@ in
];
})
sources."validate-npm-package-license-3.0.4"
- sources."vfile-6.0.1"
- sources."vfile-location-5.0.2"
+ sources."vfile-6.0.2"
+ sources."vfile-location-5.0.3"
sources."vfile-message-4.0.2"
sources."vfile-reporter-pretty-7.0.0"
sources."vfile-statistics-3.0.0"
@@ -61837,7 +60977,7 @@ in
sources."which-2.0.2"
sources."wrapped-1.0.1"
sources."wrappy-1.0.2"
- sources."yoctocolors-2.0.2"
+ sources."yoctocolors-2.1.1"
sources."zwitch-2.0.4"
];
buildInputs = globalBuildInputs;
@@ -61914,7 +61054,7 @@ in
sources."inherits-2.0.4"
sources."intersect-1.0.1"
sources."is-arrayish-0.2.1"
- sources."is-core-module-2.13.1"
+ sources."is-core-module-2.15.0"
sources."is-finite-1.1.0"
sources."is-plain-obj-1.1.0"
sources."is-utf8-0.2.1"
@@ -61937,7 +61077,7 @@ in
sources."loud-rejection-1.6.0"
sources."map-obj-1.0.1"
sources."meow-3.7.0"
- sources."mime-db-1.52.0"
+ sources."mime-db-1.53.0"
sources."minimatch-3.1.2"
sources."minimist-1.2.8"
sources."mkdirp-0.5.6"
@@ -62080,7 +61220,7 @@ in
})
sources."domain-browser-1.2.0"
sources."duplexer2-0.1.4"
- (sources."elliptic-6.5.5" // {
+ (sources."elliptic-6.5.6" // {
dependencies = [
sources."bn.js-4.12.0"
];
@@ -62120,7 +61260,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.13.1"
+ sources."is-core-module-2.15.0"
sources."is-generator-function-1.0.10"
sources."is-typed-array-1.1.13"
sources."isarray-1.0.0"
@@ -62139,7 +61279,7 @@ in
sources."minimist-1.2.8"
sources."mkdirp-classic-0.5.3"
sources."module-deps-6.2.3"
- sources."object-inspect-1.13.1"
+ sources."object-inspect-1.13.2"
sources."object-keys-1.1.1"
sources."object.assign-4.1.5"
sources."once-1.4.0"
@@ -62165,7 +61305,7 @@ in
];
})
sources."punycode-1.4.1"
- sources."qs-6.12.1"
+ sources."qs-6.12.3"
sources."querystring-es3-0.2.1"
sources."randombytes-2.1.0"
sources."randomfill-1.0.4"
@@ -62239,7 +61379,7 @@ in
sources."@socket.io/component-emitter-3.1.2"
sources."@types/cookie-0.4.1"
sources."@types/cors-2.8.17"
- sources."@types/node-20.14.2"
+ sources."@types/node-20.14.12"
sources."accepts-1.3.8"
sources."ansi-regex-5.0.1"
sources."ansi-styles-4.3.0"
@@ -62282,9 +61422,9 @@ in
sources."ee-first-1.1.1"
sources."emoji-regex-8.0.0"
sources."encodeurl-1.0.2"
- sources."engine.io-6.5.4"
- sources."engine.io-client-6.5.3"
- sources."engine.io-parser-5.2.2"
+ sources."engine.io-6.5.5"
+ sources."engine.io-client-6.5.4"
+ sources."engine.io-parser-5.2.3"
sources."escalade-3.1.2"
sources."escape-html-1.0.3"
sources."etag-1.8.1"
@@ -62378,7 +61518,7 @@ in
sources."server-destroy-1.0.1"
sources."setprototypeof-1.2.0"
sources."socket.io-4.7.5"
- sources."socket.io-adapter-2.5.4"
+ sources."socket.io-adapter-2.5.5"
sources."socket.io-client-4.7.5"
sources."socket.io-parser-4.2.4"
sources."statuses-1.3.1"
@@ -62392,11 +61532,11 @@ in
sources."undici-types-5.26.5"
sources."universalify-0.1.2"
sources."unpipe-1.0.0"
- sources."utf-8-validate-5.0.10"
+ sources."utf-8-validate-6.0.4"
sources."utils-merge-1.0.1"
sources."vary-1.1.2"
sources."wrap-ansi-7.0.0"
- sources."ws-8.11.0"
+ sources."ws-8.17.1"
sources."xmlhttprequest-ssl-2.0.0"
sources."y18n-5.0.8"
sources."yargs-17.7.2"
@@ -62415,16 +61555,16 @@ in
cdk8s-cli = nodeEnv.buildNodePackage {
name = "cdk8s-cli";
packageName = "cdk8s-cli";
- version = "2.198.145";
+ version = "2.198.175";
src = fetchurl {
- url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-2.198.145.tgz";
- sha512 = "I1tHAcRV6k0zk32Row37Ds8eoQC0LmRrT62EMQuyyaivAus1AgGD7dGn3cw+idJCepfxME6Rrc7jOvIa/Mv3Jg==";
+ url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-2.198.175.tgz";
+ sha512 = "4p2thnOpOFZgBQ2OmiFT6llXRy09d4aHGkTPYx4OQzzFLGKEJ5wDMVJrZPvuOu1czvYrxk3jsULluouRbAgXqQ==";
};
dependencies = [
sources."@colors/colors-1.6.0"
sources."@dabh/diagnostics-2.0.3"
- sources."@jsii/check-node-1.100.0"
- sources."@jsii/spec-1.100.0"
+ sources."@jsii/check-node-1.101.0"
+ sources."@jsii/spec-1.101.0"
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
@@ -62440,11 +61580,11 @@ 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.98"
+ sources."@types/node-16.18.104"
sources."@types/triple-beam-1.3.5"
sources."@xmldom/xmldom-0.8.10"
sources."aggregate-error-3.1.0"
- sources."ajv-8.16.0"
+ sources."ajv-8.17.1"
sources."ansi-escapes-4.3.2"
sources."ansi-regex-5.0.1"
sources."ansi-styles-4.3.0"
@@ -62472,7 +61612,7 @@ in
sources."call-bind-1.0.7"
sources."camelcase-6.3.0"
sources."case-1.6.3"
- sources."cdk8s-2.68.79"
+ sources."cdk8s-2.68.87"
sources."cdk8s-plus-25-2.22.79"
sources."chalk-4.1.2"
sources."chardet-0.7.0"
@@ -62486,7 +61626,7 @@ in
];
})
sources."clone-1.0.4"
- (sources."codemaker-1.100.0" // {
+ (sources."codemaker-1.101.0" // {
dependencies = [
sources."fs-extra-10.1.0"
];
@@ -62530,7 +61670,7 @@ in
sources."dotenv-16.4.5"
(sources."downlevel-dts-0.11.0" // {
dependencies = [
- sources."typescript-5.6.0-dev.20240614"
+ sources."typescript-5.6.0-dev.20240725"
];
})
sources."emoji-regex-8.0.0"
@@ -62552,6 +61692,7 @@ in
})
sources."fast-deep-equal-3.1.3"
sources."fast-glob-3.3.2"
+ sources."fast-uri-3.0.1"
sources."fastq-1.17.1"
sources."fecha-4.2.3"
sources."figures-3.2.0"
@@ -62581,7 +61722,7 @@ in
sources."globby-11.1.0"
sources."gopd-1.0.1"
sources."graceful-fs-4.2.11"
- sources."graphql-16.8.2"
+ sources."graphql-16.9.0"
sources."graphql-tag-2.12.6"
sources."has-bigints-1.0.2"
sources."has-flag-4.0.0"
@@ -62604,7 +61745,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.13.1"
+ sources."is-core-module-2.15.0"
sources."is-data-view-1.0.1"
sources."is-date-object-1.0.5"
sources."is-extglob-2.1.1"
@@ -62626,13 +61767,12 @@ in
sources."is-unicode-supported-0.1.0"
sources."is-weakref-1.0.2"
sources."isarray-2.0.5"
- (sources."jsii-5.4.21" // {
+ (sources."jsii-5.4.26" // {
dependencies = [
- sources."@jsii/check-node-1.99.0"
sources."yargs-17.7.2"
];
})
- (sources."jsii-pacmak-1.100.0" // {
+ (sources."jsii-pacmak-1.101.0" // {
dependencies = [
sources."cliui-7.0.4"
sources."clone-2.1.2"
@@ -62643,7 +61783,7 @@ in
sources."yargs-parser-20.2.9"
];
})
- (sources."jsii-reflect-1.100.0" // {
+ (sources."jsii-reflect-1.101.0" // {
dependencies = [
sources."cliui-7.0.4"
sources."fs-extra-10.1.0"
@@ -62652,13 +61792,12 @@ in
sources."yargs-parser-20.2.9"
];
})
- (sources."jsii-rosetta-5.4.21" // {
+ (sources."jsii-rosetta-5.4.25" // {
dependencies = [
- sources."@jsii/check-node-1.98.0"
sources."yargs-17.7.2"
];
})
- (sources."jsii-srcmak-0.1.1154" // {
+ (sources."jsii-srcmak-0.1.1193" // {
dependencies = [
sources."fs-extra-9.1.0"
sources."yargs-17.7.2"
@@ -62674,7 +61813,7 @@ in
sources."lodash.truncate-4.4.2"
sources."log-symbols-4.1.0"
sources."log4js-6.9.1"
- sources."logform-2.6.0"
+ sources."logform-2.6.1"
sources."lower-case-2.0.2"
(sources."make-dir-3.1.0" // {
dependencies = [
@@ -62694,13 +61833,13 @@ in
sources."ncp-2.0.0"
sources."no-case-3.0.4"
sources."node-fetch-2.7.0"
- sources."object-inspect-1.13.1"
+ sources."object-inspect-1.13.2"
sources."object-keys-1.1.1"
sources."object.assign-4.1.5"
sources."once-1.4.0"
sources."one-time-1.0.0"
sources."onetime-5.1.2"
- sources."oo-ascii-tree-1.100.0"
+ sources."oo-ascii-tree-1.101.0"
sources."ora-5.4.1"
sources."os-tmpdir-1.0.2"
sources."p-limit-3.1.0"
@@ -62713,7 +61852,6 @@ in
sources."path-type-4.0.0"
sources."picomatch-2.3.1"
sources."possible-typed-array-names-1.0.0"
- sources."punycode-2.3.1"
sources."queue-microtask-1.2.3"
sources."readable-stream-3.6.2"
sources."rechoir-0.6.2"
@@ -62735,7 +61873,7 @@ in
sources."safe-regex-test-1.0.3"
sources."safe-stable-stringify-2.4.3"
sources."safer-buffer-2.1.2"
- sources."semver-7.6.2"
+ sources."semver-7.6.3"
(sources."semver-intersect-1.5.0" // {
dependencies = [
sources."semver-6.3.1"
@@ -62787,7 +61925,6 @@ in
sources."unbox-primitive-1.0.2"
sources."universal-user-agent-6.0.1"
sources."universalify-2.0.1"
- sources."uri-js-4.4.1"
sources."util-deprecate-1.0.2"
sources."utility-types-3.11.0"
sources."wcwidth-1.0.1"
@@ -62796,8 +61933,8 @@ in
sources."which-boxed-primitive-1.0.2"
sources."which-module-2.0.1"
sources."which-typed-array-1.1.15"
- sources."winston-3.13.0"
- sources."winston-transport-4.7.0"
+ sources."winston-3.13.1"
+ sources."winston-transport-4.7.1"
sources."workerpool-6.5.1"
sources."wrap-ansi-6.2.0"
sources."wrappy-1.0.2"
@@ -62833,10 +61970,10 @@ in
cdktf-cli = nodeEnv.buildNodePackage {
name = "cdktf-cli";
packageName = "cdktf-cli";
- version = "0.20.7";
+ version = "0.20.8";
src = fetchurl {
- url = "https://registry.npmjs.org/cdktf-cli/-/cdktf-cli-0.20.7.tgz";
- sha512 = "muEJhxWHZLv1Rayz2t7W3gP1zZbCE4DPFq3gNo4G667TzrwdY7XWreeze8Pj7i3mkQu+K492cSVdWBYKa3AJpg==";
+ url = "https://registry.npmjs.org/cdktf-cli/-/cdktf-cli-0.20.8.tgz";
+ sha512 = "iLTm3rlJXQ2OziNNAa5faONur/VWztue9jbrpqmmZo5QDUBqFbTbAcEQ1LgVqFvm4rBWXL3G26E7Di5iuCifuA==";
};
dependencies = [
(sources."@alcalzone/ansi-tokenize-0.1.3" // {
@@ -62846,8 +61983,8 @@ in
];
})
sources."@babel/code-frame-7.24.7"
- sources."@babel/generator-7.24.4"
- sources."@babel/helper-string-parser-7.24.7"
+ sources."@babel/generator-7.24.7"
+ sources."@babel/helper-string-parser-7.24.8"
sources."@babel/helper-validator-identifier-7.24.7"
(sources."@babel/highlight-7.24.7" // {
dependencies = [
@@ -62860,10 +61997,10 @@ in
sources."supports-color-5.5.0"
];
})
- sources."@babel/parser-7.24.7"
- sources."@babel/template-7.24.0"
- sources."@babel/types-7.24.0"
- (sources."@cdktf/cli-core-0.20.7" // {
+ sources."@babel/parser-7.24.8"
+ sources."@babel/template-7.24.7"
+ sources."@babel/types-7.24.7"
+ (sources."@cdktf/cli-core-0.20.8" // {
dependencies = [
(sources."ansi-escapes-4.3.2" // {
dependencies = [
@@ -62878,47 +62015,37 @@ in
sources."convert-to-spaces-1.0.2"
sources."indent-string-4.0.0"
sources."ink-3.2.0"
- sources."lru-cache-6.0.0"
sources."patch-console-1.0.0"
sources."react-17.0.2"
sources."react-reconciler-0.26.2"
sources."restore-cursor-3.1.0"
sources."scheduler-0.20.2"
- sources."semver-7.6.0"
+ sources."semver-7.6.2"
sources."slice-ansi-3.0.0"
sources."type-fest-0.12.0"
sources."utf-8-validate-5.0.10"
sources."uuid-8.3.2"
sources."widest-line-3.1.0"
sources."wrap-ansi-6.2.0"
- sources."ws-7.5.9"
+ sources."ws-7.5.10"
];
})
- (sources."@cdktf/commons-0.20.7" // {
+ (sources."@cdktf/commons-0.20.8" // {
dependencies = [
- sources."@sentry-internal/tracing-7.109.0"
- sources."@sentry/core-7.109.0"
- sources."@sentry/node-7.109.0"
- sources."@sentry/types-7.109.0"
- sources."@sentry/utils-7.109.0"
sources."fs-extra-11.2.0"
sources."jsonfile-6.1.0"
sources."universalify-2.0.1"
];
})
- sources."@cdktf/hcl-tools-0.20.7"
- (sources."@cdktf/hcl2cdk-0.20.7" // {
+ sources."@cdktf/hcl-tools-0.20.8"
+ (sources."@cdktf/hcl2cdk-0.20.8" // {
dependencies = [
sources."brace-expansion-2.0.1"
- sources."commonmark-0.31.0"
- sources."entities-3.0.1"
- sources."glob-10.3.12"
- sources."jsii-rosetta-5.3.28"
- sources."minimatch-9.0.4"
- sources."string.prototype.repeat-1.0.0"
+ sources."glob-10.4.1"
+ sources."minimatch-9.0.5"
];
})
- (sources."@cdktf/hcl2json-0.20.7" // {
+ (sources."@cdktf/hcl2json-0.20.8" // {
dependencies = [
sources."fs-extra-11.2.0"
sources."jsonfile-6.1.0"
@@ -62926,14 +62053,14 @@ in
];
})
sources."@cdktf/node-pty-prebuilt-multiarch-0.10.1-pre.11"
- (sources."@cdktf/provider-generator-0.20.7" // {
+ (sources."@cdktf/provider-generator-0.20.8" // {
dependencies = [
sources."brace-expansion-2.0.1"
- sources."glob-10.3.12"
- sources."minimatch-9.0.4"
+ sources."glob-10.4.1"
+ sources."minimatch-9.0.5"
];
})
- (sources."@cdktf/provider-schema-0.20.7" // {
+ (sources."@cdktf/provider-schema-0.20.8" // {
dependencies = [
sources."fs-extra-11.2.0"
sources."jsonfile-6.1.0"
@@ -62944,7 +62071,7 @@ in
dependencies = [
sources."@inquirer/core-6.0.0"
sources."@types/mute-stream-0.0.4"
- sources."@types/node-20.14.2"
+ sources."@types/node-20.14.12"
sources."ansi-escapes-4.3.2"
sources."signal-exit-4.1.0"
sources."type-fest-0.21.3"
@@ -62955,7 +62082,7 @@ in
dependencies = [
sources."@inquirer/core-6.0.0"
sources."@types/mute-stream-0.0.4"
- sources."@types/node-20.14.2"
+ sources."@types/node-20.14.12"
sources."ansi-escapes-4.3.2"
sources."signal-exit-4.1.0"
sources."type-fest-0.21.3"
@@ -62964,7 +62091,7 @@ in
})
(sources."@inquirer/core-2.3.1" // {
dependencies = [
- sources."@types/node-20.14.2"
+ sources."@types/node-20.14.12"
sources."ansi-escapes-4.3.2"
sources."type-fest-0.21.3"
sources."wrap-ansi-6.2.0"
@@ -62974,7 +62101,7 @@ in
dependencies = [
sources."@inquirer/core-6.0.0"
sources."@types/mute-stream-0.0.4"
- sources."@types/node-20.14.2"
+ sources."@types/node-20.14.12"
sources."ansi-escapes-4.3.2"
sources."signal-exit-4.1.0"
sources."type-fest-0.21.3"
@@ -62985,7 +62112,7 @@ in
dependencies = [
sources."@inquirer/core-6.0.0"
sources."@types/mute-stream-0.0.4"
- sources."@types/node-20.14.2"
+ sources."@types/node-20.14.12"
sources."ansi-escapes-4.3.2"
sources."signal-exit-4.1.0"
sources."type-fest-0.21.3"
@@ -62996,7 +62123,7 @@ in
dependencies = [
sources."@inquirer/core-6.0.0"
sources."@types/mute-stream-0.0.4"
- sources."@types/node-20.14.2"
+ sources."@types/node-20.14.12"
sources."ansi-escapes-4.3.2"
sources."signal-exit-4.1.0"
sources."type-fest-0.21.3"
@@ -63007,7 +62134,7 @@ in
dependencies = [
sources."@inquirer/core-6.0.0"
sources."@types/mute-stream-0.0.4"
- sources."@types/node-20.14.2"
+ sources."@types/node-20.14.12"
sources."ansi-escapes-4.3.2"
sources."signal-exit-4.1.0"
sources."type-fest-0.21.3"
@@ -63019,7 +62146,7 @@ in
dependencies = [
sources."@inquirer/core-6.0.0"
sources."@types/mute-stream-0.0.4"
- sources."@types/node-20.14.2"
+ sources."@types/node-20.14.12"
sources."ansi-escapes-4.3.2"
sources."signal-exit-4.1.0"
sources."type-fest-0.21.3"
@@ -63030,14 +62157,14 @@ in
dependencies = [
sources."@inquirer/core-6.0.0"
sources."@types/mute-stream-0.0.4"
- sources."@types/node-20.14.2"
+ sources."@types/node-20.14.12"
sources."ansi-escapes-4.3.2"
sources."signal-exit-4.1.0"
sources."type-fest-0.21.3"
sources."wrap-ansi-6.2.0"
];
})
- sources."@inquirer/type-1.3.3"
+ sources."@inquirer/type-1.5.1"
(sources."@isaacs/cliui-8.0.2" // {
dependencies = [
sources."ansi-regex-6.0.1"
@@ -63051,20 +62178,21 @@ in
sources."@jridgewell/gen-mapping-0.3.5"
sources."@jridgewell/resolve-uri-3.1.2"
sources."@jridgewell/set-array-1.2.1"
- sources."@jridgewell/sourcemap-codec-1.4.15"
+ sources."@jridgewell/sourcemap-codec-1.5.0"
sources."@jridgewell/trace-mapping-0.3.25"
- sources."@jsii/check-node-1.95.0"
- sources."@jsii/spec-1.100.0"
+ sources."@jsii/check-node-1.98.0"
+ sources."@jsii/spec-1.101.0"
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
- sources."@sentry-internal/tracing-7.110.0"
- sources."@sentry/core-7.110.0"
- sources."@sentry/node-7.110.0"
- sources."@sentry/types-7.110.0"
- sources."@sentry/utils-7.110.0"
+ sources."@sentry-internal/tracing-7.116.0"
+ sources."@sentry/core-7.116.0"
+ sources."@sentry/integrations-7.116.0"
+ sources."@sentry/node-7.116.0"
+ sources."@sentry/types-7.116.0"
+ sources."@sentry/utils-7.116.0"
sources."@types/mute-stream-0.0.1"
- sources."@types/node-18.19.30"
+ sources."@types/node-18.19.34"
sources."@types/prop-types-15.7.12"
sources."@types/react-18.3.3"
sources."@types/wrap-ansi-3.0.0"
@@ -63073,7 +62201,7 @@ in
sources."@xmldom/xmldom-0.8.10"
sources."address-1.2.2"
sources."agent-base-6.0.2"
- sources."ajv-8.16.0"
+ sources."ajv-8.17.1"
sources."ansi-escapes-7.0.0"
sources."ansi-regex-5.0.1"
sources."ansi-styles-4.3.0"
@@ -63091,7 +62219,6 @@ in
sources."arraybuffer.prototype.slice-1.0.3"
sources."astral-regex-2.0.0"
sources."async-3.2.5"
- sources."at-least-node-1.0.0"
sources."auto-bind-5.0.1"
sources."available-typed-arrays-1.0.7"
sources."balanced-match-1.0.2"
@@ -63106,7 +62233,7 @@ in
sources."call-bind-1.0.7"
sources."camelcase-6.3.0"
sources."case-1.6.3"
- sources."cdktf-0.20.7"
+ sources."cdktf-0.20.8"
sources."chalk-4.1.2"
sources."chardet-0.7.0"
sources."chokidar-3.6.0"
@@ -63122,7 +62249,7 @@ in
sources."emoji-regex-10.3.0"
sources."is-fullwidth-code-point-4.0.0"
sources."slice-ansi-5.0.0"
- sources."string-width-7.1.0"
+ sources."string-width-7.2.0"
sources."strip-ansi-7.1.0"
];
})
@@ -63130,7 +62257,7 @@ in
sources."cliui-8.0.1"
sources."clone-2.1.2"
sources."code-excerpt-4.0.0"
- (sources."codemaker-1.95.0" // {
+ (sources."codemaker-1.98.0" // {
dependencies = [
sources."fs-extra-10.1.0"
sources."jsonfile-6.1.0"
@@ -63142,7 +62269,7 @@ in
sources."commonmark-0.30.0"
sources."compress-commons-4.1.2"
sources."concat-map-0.0.1"
- sources."constructs-10.1.167"
+ sources."constructs-10.3.0"
sources."convert-to-spaces-2.0.1"
sources."core-util-is-1.0.3"
sources."crc-32-1.2.2"
@@ -63165,10 +62292,10 @@ in
sources."detect-indent-5.0.0"
sources."detect-libc-2.0.3"
sources."detect-newline-2.1.0"
- sources."detect-port-1.5.1"
+ sources."detect-port-1.6.1"
(sources."downlevel-dts-0.11.0" // {
dependencies = [
- sources."typescript-5.6.0-dev.20240614"
+ sources."typescript-5.6.0-dev.20240725"
];
})
sources."eastasianwidth-0.2.0"
@@ -63201,6 +62328,7 @@ in
})
sources."fast-deep-equal-3.1.3"
sources."fast-glob-3.3.2"
+ sources."fast-uri-3.0.1"
sources."fastq-1.17.1"
sources."fd-slicer-1.1.0"
(sources."figures-3.2.0" // {
@@ -63209,11 +62337,11 @@ in
];
})
sources."fill-range-7.1.1"
- sources."find-up-4.1.0"
+ sources."find-up-3.0.0"
sources."flatted-3.3.1"
sources."follow-redirects-1.15.6"
sources."for-each-0.3.3"
- (sources."foreground-child-3.2.0" // {
+ (sources."foreground-child-3.2.1" // {
dependencies = [
sources."signal-exit-4.1.0"
];
@@ -63252,6 +62380,7 @@ in
sources."human-signals-2.1.0"
sources."iconv-lite-0.6.3"
sources."ieee754-1.2.1"
+ sources."immediate-3.0.6"
sources."indent-string-5.0.0"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
@@ -63262,7 +62391,7 @@ in
sources."ansi-styles-6.2.1"
sources."chalk-5.3.0"
sources."emoji-regex-10.3.0"
- sources."string-width-7.1.0"
+ sources."string-width-7.2.0"
sources."strip-ansi-7.1.0"
sources."wrap-ansi-9.0.0"
];
@@ -63292,7 +62421,7 @@ in
sources."utf-8-validate-5.0.10"
sources."widest-line-3.1.0"
sources."wrap-ansi-6.2.0"
- sources."ws-7.5.9"
+ sources."ws-7.5.10"
];
})
sources."ink-spinner-4.0.3"
@@ -63312,7 +62441,7 @@ in
sources."ci-info-2.0.0"
];
})
- sources."is-core-module-2.13.1"
+ sources."is-core-module-2.15.0"
sources."is-data-view-1.0.1"
sources."is-date-object-1.0.5"
sources."is-docker-2.2.1"
@@ -63338,11 +62467,11 @@ in
sources."is-wsl-2.2.0"
sources."isarray-2.0.5"
sources."isexe-2.0.0"
- sources."jackspeak-2.3.6"
+ sources."jackspeak-3.4.3"
sources."js-tokens-4.0.0"
sources."jsesc-2.5.2"
- sources."jsii-5.3.29"
- (sources."jsii-pacmak-1.95.0" // {
+ sources."jsii-5.4.12"
+ (sources."jsii-pacmak-1.98.0" // {
dependencies = [
sources."cliui-7.0.4"
sources."escape-string-regexp-4.0.0"
@@ -63353,9 +62482,9 @@ in
sources."yargs-parser-20.2.9"
];
})
- (sources."jsii-reflect-1.100.0" // {
+ (sources."jsii-reflect-1.101.0" // {
dependencies = [
- sources."@jsii/check-node-1.100.0"
+ sources."@jsii/check-node-1.101.0"
sources."cliui-7.0.4"
sources."fs-extra-10.1.0"
sources."jsonfile-6.1.0"
@@ -63364,34 +62493,11 @@ in
sources."yargs-parser-20.2.9"
];
})
- (sources."jsii-rosetta-1.100.0" // {
+ (sources."jsii-rosetta-5.4.14" // {
dependencies = [
- sources."@jsii/check-node-1.100.0"
- sources."cliui-7.0.4"
sources."commonmark-0.31.0"
sources."entities-3.0.1"
- sources."fs-extra-10.1.0"
- sources."jsii-1.100.0"
- sources."jsonfile-6.1.0"
sources."string.prototype.repeat-1.0.0"
- sources."typescript-3.9.10"
- sources."universalify-2.0.1"
- sources."yargs-16.2.0"
- sources."yargs-parser-20.2.9"
- ];
- })
- (sources."jsii-srcmak-0.1.1039" // {
- dependencies = [
- sources."camelcase-5.3.1"
- sources."cliui-6.0.0"
- sources."decamelize-1.2.0"
- sources."fs-extra-9.1.0"
- sources."jsonfile-6.1.0"
- sources."universalify-2.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."json-schema-traverse-1.0.0"
@@ -63403,7 +62509,9 @@ in
sources."safe-buffer-5.1.2"
];
})
- sources."locate-path-5.0.0"
+ sources."lie-3.1.1"
+ sources."localforage-1.10.0"
+ sources."locate-path-3.0.0"
sources."lodash-4.17.21"
sources."lodash.defaults-4.2.0"
sources."lodash.difference-4.5.0"
@@ -63413,7 +62521,7 @@ in
sources."lodash.union-4.6.0"
sources."log4js-6.9.1"
sources."loose-envify-1.4.0"
- sources."lru-cache-10.2.2"
+ sources."lru-cache-10.4.3"
sources."mdurl-1.0.1"
sources."merge-stream-2.0.0"
sources."merge2-1.4.1"
@@ -63432,7 +62540,6 @@ in
sources."mute-stream-1.0.0"
sources."nan-2.20.0"
sources."napi-build-utils-1.0.2"
- sources."ncp-2.0.0"
sources."node-abi-3.65.0"
sources."node-fetch-2.7.0"
sources."node-gyp-build-4.8.1"
@@ -63440,22 +62547,22 @@ in
sources."npm-run-path-4.0.1"
sources."object-assign-4.1.1"
sources."object-hash-2.2.0"
- sources."object-inspect-1.13.1"
+ sources."object-inspect-1.13.2"
sources."object-is-1.1.6"
sources."object-keys-1.1.1"
sources."object.assign-4.1.5"
sources."obliterator-2.0.4"
sources."once-1.4.0"
sources."onetime-5.1.2"
- sources."oo-ascii-tree-1.100.0"
+ sources."oo-ascii-tree-1.101.0"
sources."open-7.4.2"
sources."os-tmpdir-1.0.2"
sources."p-limit-2.3.0"
- sources."p-locate-4.1.0"
+ sources."p-locate-3.0.0"
sources."p-try-2.2.0"
sources."parse-gitignore-1.0.1"
sources."patch-console-2.0.0"
- sources."path-exists-4.0.0"
+ sources."path-exists-3.0.0"
sources."path-is-absolute-1.0.1"
sources."path-key-3.1.1"
sources."path-parse-1.0.7"
@@ -63465,14 +62572,7 @@ in
sources."picomatch-2.3.1"
sources."pidtree-0.6.0"
sources."pidusage-3.0.2"
- (sources."pkg-up-3.1.0" // {
- dependencies = [
- sources."find-up-3.0.0"
- sources."locate-path-3.0.0"
- sources."p-locate-3.0.0"
- sources."path-exists-3.0.0"
- ];
- })
+ sources."pkg-up-3.1.0"
sources."possible-typed-array-names-1.0.0"
sources."prebuild-install-7.1.2"
sources."prettier-2.8.8"
@@ -63485,7 +62585,7 @@ in
(sources."react-devtools-core-4.28.5" // {
dependencies = [
sources."utf-8-validate-5.0.10"
- sources."ws-7.5.9"
+ sources."ws-7.5.10"
];
})
sources."react-reconciler-0.29.2"
@@ -63496,7 +62596,6 @@ in
sources."regexp.prototype.flags-1.5.2"
sources."require-directory-2.1.1"
sources."require-from-string-2.0.2"
- sources."require-main-filename-2.0.0"
sources."reserved-words-0.1.2"
sources."resolve-1.22.8"
sources."restore-cursor-4.0.0"
@@ -63510,13 +62609,12 @@ in
sources."safer-buffer-2.1.2"
sources."sax-1.4.1"
sources."scheduler-0.23.2"
- sources."semver-7.6.2"
+ sources."semver-7.6.3"
(sources."semver-intersect-1.5.0" // {
dependencies = [
sources."semver-6.3.1"
];
})
- sources."set-blocking-2.0.0"
sources."set-function-length-1.2.2"
sources."set-function-name-2.0.2"
sources."shebang-command-2.0.0"
@@ -63566,16 +62664,15 @@ in
sources."to-regex-range-5.0.1"
sources."tr46-0.0.3"
sources."tunnel-agent-0.6.0"
- sources."type-fest-4.20.0"
+ sources."type-fest-4.23.0"
sources."typed-array-buffer-1.0.2"
sources."typed-array-byte-length-1.0.1"
sources."typed-array-byte-offset-1.0.2"
sources."typed-array-length-1.0.6"
- sources."typescript-5.3.3"
+ sources."typescript-5.4.5"
sources."unbox-primitive-1.0.2"
sources."undici-types-5.26.5"
sources."universalify-0.1.2"
- sources."uri-js-4.4.1"
sources."utf-8-validate-6.0.4"
sources."util-deprecate-1.0.2"
sources."uuid-9.0.1"
@@ -63584,13 +62681,12 @@ in
sources."which-2.0.2"
sources."which-boxed-primitive-1.0.2"
sources."which-collection-1.0.2"
- sources."which-module-2.0.1"
sources."which-typed-array-1.1.15"
(sources."widest-line-5.0.0" // {
dependencies = [
sources."ansi-regex-6.0.1"
sources."emoji-regex-10.3.0"
- sources."string-width-7.1.0"
+ sources."string-width-7.2.0"
sources."strip-ansi-7.1.0"
];
})
@@ -63598,12 +62694,11 @@ in
sources."wrap-ansi-7.0.0"
sources."wrap-ansi-cjs-7.0.0"
sources."wrappy-1.0.2"
- sources."ws-8.17.0"
+ sources."ws-8.18.0"
sources."xml-js-1.6.11"
sources."xmlbuilder-15.1.1"
sources."xstate-4.38.3"
sources."y18n-5.0.8"
- sources."yallist-4.0.0"
sources."yargs-17.7.2"
sources."yargs-parser-21.1.1"
sources."yauzl-2.10.0"
@@ -63614,7 +62709,7 @@ in
sources."archiver-utils-3.0.4"
];
})
- sources."zod-3.22.4"
+ sources."zod-3.23.8"
];
buildInputs = globalBuildInputs;
meta = {
@@ -63756,7 +62851,11 @@ in
dependencies = [
sources."dockerfile-ast-0.4.2"
sources."dockerfile-language-server-nodejs-0.9.0"
- sources."dockerfile-language-service-0.9.0"
+ (sources."dockerfile-language-service-0.9.0" // {
+ dependencies = [
+ sources."vscode-languageserver-types-3.17.0-next.3"
+ ];
+ })
sources."dockerfile-utils-0.10.0"
sources."tslib-2.6.3"
sources."vscode-jsonrpc-8.1.0"
@@ -63767,7 +62866,7 @@ in
];
})
sources."vscode-languageserver-textdocument-1.0.11"
- sources."vscode-languageserver-types-3.17.0-next.3"
+ sources."vscode-languageserver-types-3.17.5"
];
buildInputs = globalBuildInputs;
meta = {
@@ -63823,10 +62922,10 @@ in
coc-explorer = nodeEnv.buildNodePackage {
name = "coc-explorer";
packageName = "coc-explorer";
- version = "0.27.2";
+ version = "0.27.3";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-explorer/-/coc-explorer-0.27.2.tgz";
- sha512 = "uwy/RckeCGUU2pook/LADo/czly2ZyAUTB6GfIZK+DByaS7kmpuyapwnfD3BC5B+vOLqi+5JjrunCf4ts5McEg==";
+ url = "https://registry.npmjs.org/coc-explorer/-/coc-explorer-0.27.3.tgz";
+ sha512 = "NakEw0nyOvlzqb/8P40ywDMv6mgtyNXOHAEftzLS3K4zgnaKLrt0PsaPmAYUlUfrNw+isGrveMSQB2azjSU0iA==";
};
dependencies = [
sources."@sindresorhus/chunkify-0.2.0"
@@ -63965,10 +63064,10 @@ in
coc-haxe = nodeEnv.buildNodePackage {
name = "coc-haxe";
packageName = "coc-haxe";
- version = "0.20.0";
+ version = "0.21.0";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-haxe/-/coc-haxe-0.20.0.tgz";
- sha512 = "bdxigpWTdoImf3+8ACcWwH/gjBMcovh87QiqOoqECcR10mOqewO63/UPfPASeZF9P6QiQEJrAJcBNpYNnY0upA==";
+ url = "https://registry.npmjs.org/coc-haxe/-/coc-haxe-0.21.0.tgz";
+ sha512 = "SQ1AbfLWomaNY+xDCKnNDMryVlsp6YbJ9S2mWvKF6DjuaTcxHE5hVUTMbkYA0zA+NiByFx5hzHEZdsIC/XMCCw==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -64207,7 +63306,7 @@ in
sources."flatted-3.3.1"
sources."follow-redirects-1.15.6"
sources."for-each-0.3.3"
- sources."fp-ts-2.16.6"
+ sources."fp-ts-2.16.8"
sources."fs-extra-8.1.0"
(sources."fs-minipass-2.1.0" // {
dependencies = [
@@ -64299,7 +63398,7 @@ in
sources."node-fetch-2.7.0"
sources."node-int64-0.4.0"
sources."npm-run-path-2.0.2"
- sources."object-inspect-1.13.1"
+ sources."object-inspect-1.13.2"
sources."object-keys-1.1.1"
sources."object.assign-4.1.5"
sources."once-1.4.0"
@@ -64326,7 +63425,7 @@ in
sources."safe-buffer-5.2.1"
sources."safe-regex-test-1.0.3"
sources."safer-buffer-2.1.2"
- sources."semver-7.6.2"
+ sources."semver-7.6.3"
sources."set-function-length-1.2.2"
sources."set-function-name-2.0.2"
sources."setimmediate-1.0.5"
@@ -64427,13 +63526,13 @@ in
coc-pyright = nodeEnv.buildNodePackage {
name = "coc-pyright";
packageName = "coc-pyright";
- version = "1.1.365";
+ version = "1.1.371";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-pyright/-/coc-pyright-1.1.365.tgz";
- sha512 = "rADFFHjr8CBjZDKMfuyXLIeUelah3ZTxQTHEWatQwnrS9WW/Xj6goJO/8z06zjjvX2oVhJypDXbnjd5CJB0f1A==";
+ url = "https://registry.npmjs.org/coc-pyright/-/coc-pyright-1.1.371.tgz";
+ sha512 = "8vgKSjuMVpylSoHIwdzP9edeHwmjUFY+ZyBkcLQMdyjdZtEc3+6OblXS0Dm5nXosjLY/ATc+w+38ITIssqm76g==";
};
dependencies = [
- sources."pyright-1.1.367"
+ sources."pyright-1.1.373"
];
buildInputs = globalBuildInputs;
meta = {
@@ -64507,10 +63606,10 @@ in
coc-rust-analyzer = nodeEnv.buildNodePackage {
name = "coc-rust-analyzer";
packageName = "coc-rust-analyzer";
- version = "0.76.1";
+ version = "0.77.2";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-rust-analyzer/-/coc-rust-analyzer-0.76.1.tgz";
- sha512 = "a9/5Gm5msHs+5CWhNzICmpPWNFILtXmJ/r3Gae/lDXg6rtq+QUpQp+OUQlNSrjm9iuygbKyVGVkG26pJNAGaKg==";
+ url = "https://registry.npmjs.org/coc-rust-analyzer/-/coc-rust-analyzer-0.77.2.tgz";
+ sha512 = "Qq08/2Fx31bgfQhxKomQN42mfGM9gDCd4CKDMmlCJBMZKD439LaLWlYXGevmkp0qcIU2AWFD415j7041OpkFhQ==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -64561,7 +63660,7 @@ in
sources."reusify-1.0.4"
sources."run-parallel-1.2.0"
sources."safer-buffer-2.1.2"
- sources."semver-7.6.2"
+ sources."semver-7.6.3"
sources."to-regex-range-5.0.1"
sources."tr46-0.0.3"
sources."tslib-2.6.3"
@@ -64699,7 +63798,7 @@ in
})
(sources."cspell-lib-4.3.12" // {
dependencies = [
- sources."comment-json-4.2.3"
+ sources."comment-json-4.2.4"
sources."esprima-4.0.1"
sources."fs-extra-9.1.0"
sources."gensequence-3.1.1"
@@ -64784,34 +63883,44 @@ in
dependencies = [
sources."@ampproject/remapping-2.3.0"
sources."@babel/code-frame-7.24.7"
- sources."@babel/compat-data-7.24.7"
- sources."@babel/core-7.24.7"
- sources."@babel/generator-7.24.7"
- sources."@babel/helper-compilation-targets-7.24.7"
+ sources."@babel/compat-data-7.24.9"
+ (sources."@babel/core-7.24.9" // {
+ dependencies = [
+ sources."semver-6.3.1"
+ ];
+ })
+ sources."@babel/generator-7.24.10"
+ (sources."@babel/helper-compilation-targets-7.24.8" // {
+ dependencies = [
+ sources."lru-cache-5.1.1"
+ sources."semver-6.3.1"
+ sources."yallist-3.1.1"
+ ];
+ })
sources."@babel/helper-environment-visitor-7.24.7"
sources."@babel/helper-function-name-7.24.7"
sources."@babel/helper-hoist-variables-7.24.7"
sources."@babel/helper-module-imports-7.24.7"
- sources."@babel/helper-module-transforms-7.24.7"
+ sources."@babel/helper-module-transforms-7.24.9"
sources."@babel/helper-simple-access-7.24.7"
sources."@babel/helper-split-export-declaration-7.24.7"
- sources."@babel/helper-string-parser-7.24.7"
+ sources."@babel/helper-string-parser-7.24.8"
sources."@babel/helper-validator-identifier-7.24.7"
- sources."@babel/helper-validator-option-7.24.7"
- sources."@babel/helpers-7.24.7"
+ sources."@babel/helper-validator-option-7.24.8"
+ sources."@babel/helpers-7.24.8"
(sources."@babel/highlight-7.24.7" // {
dependencies = [
sources."chalk-2.4.2"
];
})
- sources."@babel/parser-7.24.7"
+ sources."@babel/parser-7.24.8"
sources."@babel/template-7.24.7"
- sources."@babel/traverse-7.24.7"
- sources."@babel/types-7.24.7"
+ sources."@babel/traverse-7.24.8"
+ sources."@babel/types-7.24.9"
sources."@jridgewell/gen-mapping-0.3.5"
sources."@jridgewell/resolve-uri-3.1.2"
sources."@jridgewell/set-array-1.2.1"
- sources."@jridgewell/sourcemap-codec-1.4.15"
+ sources."@jridgewell/sourcemap-codec-1.5.0"
sources."@jridgewell/trace-mapping-0.3.25"
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
@@ -64823,7 +63932,7 @@ in
sources."@types/normalize-package-data-2.4.4"
sources."@types/parse-json-4.0.2"
sources."@types/unist-2.0.10"
- sources."ajv-8.16.0"
+ sources."ajv-8.17.1"
sources."ansi-regex-5.0.1"
sources."ansi-styles-3.2.1"
sources."array-union-2.1.0"
@@ -64842,11 +63951,11 @@ in
];
})
sources."braces-3.0.3"
- sources."browserslist-4.23.1"
+ sources."browserslist-4.23.2"
sources."callsites-3.1.0"
sources."camelcase-5.3.1"
sources."camelcase-keys-6.2.2"
- sources."caniuse-lite-1.0.30001634"
+ sources."caniuse-lite-1.0.30001643"
(sources."chalk-4.1.2" // {
dependencies = [
sources."ansi-styles-4.3.0"
@@ -64883,7 +63992,7 @@ in
sources."domelementtype-1.3.1"
sources."domhandler-2.4.2"
sources."domutils-1.7.0"
- sources."electron-to-chromium-1.4.802"
+ sources."electron-to-chromium-1.5.1"
sources."emoji-regex-8.0.0"
sources."entities-1.1.2"
sources."error-ex-1.3.2"
@@ -64894,6 +64003,7 @@ in
sources."fast-deep-equal-3.1.3"
sources."fast-diff-1.3.0"
sources."fast-glob-3.3.2"
+ sources."fast-uri-3.0.1"
sources."fastest-levenshtein-1.0.16"
sources."fastq-1.17.1"
sources."file-entry-cache-6.0.1"
@@ -64916,12 +64026,7 @@ in
sources."hard-rejection-2.1.0"
sources."has-flag-3.0.0"
sources."hasown-2.0.2"
- (sources."hosted-git-info-4.1.0" // {
- dependencies = [
- sources."lru-cache-6.0.0"
- sources."yallist-4.0.0"
- ];
- })
+ sources."hosted-git-info-4.1.0"
sources."html-tags-3.3.1"
sources."htmlparser2-3.10.1"
sources."ignore-5.3.1"
@@ -64940,14 +64045,14 @@ in
sources."is-alphanumerical-1.0.4"
sources."is-arrayish-0.2.1"
sources."is-buffer-2.0.5"
- sources."is-core-module-2.13.1"
+ sources."is-core-module-2.15.0"
sources."is-decimal-1.0.4"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-3.0.0"
sources."is-glob-4.0.3"
sources."is-hexadecimal-1.0.4"
sources."is-number-7.0.0"
- sources."is-plain-obj-2.1.0"
+ sources."is-plain-obj-1.1.0"
sources."is-regexp-2.1.0"
sources."is-typedarray-1.0.0"
sources."is-unicode-supported-0.1.0"
@@ -64967,7 +64072,7 @@ in
sources."lodash.truncate-4.4.2"
sources."log-symbols-4.1.0"
sources."longest-streak-2.0.4"
- sources."lru-cache-5.1.1"
+ sources."lru-cache-6.0.0"
sources."map-obj-4.3.0"
sources."mathml-tag-names-2.1.3"
sources."mdast-util-from-markdown-0.8.5"
@@ -64980,18 +64085,10 @@ in
sources."min-indent-1.0.1"
sources."minimatch-3.1.2"
sources."minimist-1.2.8"
- (sources."minimist-options-4.1.0" // {
- dependencies = [
- sources."is-plain-obj-1.1.0"
- ];
- })
+ sources."minimist-options-4.1.0"
sources."ms-2.1.2"
- sources."node-releases-2.0.14"
- (sources."normalize-package-data-3.0.3" // {
- dependencies = [
- sources."semver-7.6.2"
- ];
- })
+ sources."node-releases-2.0.18"
+ sources."normalize-package-data-3.0.3"
sources."normalize-range-0.1.2"
sources."normalize-selector-0.2.0"
sources."num2fraction-1.2.2"
@@ -65017,14 +64114,13 @@ in
sources."postcss-html-0.36.0"
sources."postcss-less-3.1.4"
sources."postcss-media-query-parser-0.2.3"
- sources."postcss-resolve-nested-selector-0.1.1"
+ sources."postcss-resolve-nested-selector-0.1.4"
sources."postcss-safe-parser-4.0.2"
sources."postcss-sass-0.4.4"
sources."postcss-scss-2.1.1"
- sources."postcss-selector-parser-6.1.0"
+ sources."postcss-selector-parser-6.1.1"
sources."postcss-syntax-0.36.2"
sources."postcss-value-parser-4.2.0"
- sources."punycode-2.3.1"
sources."queue-microtask-1.2.3"
sources."quick-lru-4.0.1"
(sources."read-pkg-5.2.0" // {
@@ -65053,7 +64149,7 @@ in
sources."rimraf-3.0.2"
sources."run-parallel-1.2.0"
sources."safe-buffer-5.2.1"
- sources."semver-6.3.1"
+ sources."semver-7.6.3"
sources."signal-exit-3.0.7"
sources."slash-3.0.0"
(sources."slice-ansi-4.0.0" // {
@@ -65086,12 +64182,15 @@ in
sources."trough-1.0.5"
sources."type-fest-0.18.1"
sources."typedarray-to-buffer-3.1.5"
- sources."unified-9.2.2"
+ (sources."unified-9.2.2" // {
+ dependencies = [
+ sources."is-plain-obj-2.1.0"
+ ];
+ })
sources."unist-util-find-all-after-3.0.2"
sources."unist-util-is-4.1.0"
sources."unist-util-stringify-position-2.0.3"
- sources."update-browserslist-db-1.0.16"
- sources."uri-js-4.4.1"
+ sources."update-browserslist-db-1.1.0"
sources."util-deprecate-1.0.2"
sources."v8-compile-cache-2.4.0"
sources."validate-npm-package-license-3.0.4"
@@ -65110,7 +64209,7 @@ in
sources."which-1.3.1"
sources."wrappy-1.0.2"
sources."write-file-atomic-3.0.3"
- sources."yallist-3.1.1"
+ sources."yallist-4.0.0"
sources."yaml-1.10.2"
sources."yargs-parser-20.2.9"
sources."zwitch-1.0.5"
@@ -65154,7 +64253,7 @@ in
sha512 = "0yKAPkIKoLJWksPefWXVvRcRQ+Ja3kc2Bx/tKL4tQwEOlAwc5qeUU+1FZRw+71Jp8HeC5Wo9YqtlgSIJlyic3g==";
};
dependencies = [
- sources."semver-7.6.2"
+ sources."semver-7.6.3"
];
buildInputs = globalBuildInputs;
meta = {
@@ -65261,7 +64360,7 @@ in
sources."hasown-2.0.2"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
- sources."is-core-module-2.13.1"
+ sources."is-core-module-2.15.0"
sources."js-tokens-4.0.0"
sources."js-yaml-3.14.1"
sources."minimatch-3.1.2"
@@ -65334,7 +64433,7 @@ in
sha512 = "XUhAHtYOBHgLobVODFNONdJkCmFbsjS/8nMH95IQYRE0ECzwljupPOrGKBQa7OiGyWqQ5CAJfZJcbhzCHWdr+Q==";
};
dependencies = [
- sources."typescript-5.4.5"
+ sources."typescript-5.5.4"
];
buildInputs = globalBuildInputs;
meta = {
@@ -65442,13 +64541,14 @@ in
];
})
sources."esprima-4.0.1"
- sources."esquery-1.5.0"
+ sources."esquery-1.6.0"
sources."esrecurse-4.3.0"
sources."estraverse-5.3.0"
sources."esutils-2.0.3"
sources."fast-deep-equal-3.1.3"
sources."fast-json-stable-stringify-2.1.0"
sources."fast-levenshtein-2.0.6"
+ sources."fast-uri-3.0.1"
sources."file-entry-cache-6.0.1"
sources."flat-cache-3.2.0"
sources."flatted-3.3.1"
@@ -65471,7 +64571,7 @@ in
sources."imurmurhash-0.1.4"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
- sources."is-core-module-2.13.1"
+ sources."is-core-module-2.15.0"
sources."is-expression-4.0.0"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-3.0.0"
@@ -65512,7 +64612,7 @@ in
sources."resolve-1.22.8"
sources."resolve-from-4.0.0"
sources."rimraf-3.0.2"
- sources."semver-7.6.2"
+ sources."semver-7.6.3"
sources."set-function-length-1.2.2"
sources."shebang-command-2.0.0"
sources."shebang-regex-3.0.0"
@@ -65525,7 +64625,7 @@ in
sources."supports-preserve-symlinks-flag-1.0.0"
(sources."table-6.8.2" // {
dependencies = [
- sources."ajv-8.16.0"
+ sources."ajv-8.17.1"
sources."json-schema-traverse-1.0.0"
];
})
@@ -65844,7 +64944,7 @@ in
sha512 = "1dP4gpXFhei8IOtlXRE/T/4H88ElHgTiUzh71YUmtjTEHMSRS2Z/fgOxHSxxusGHogsRfxNq1vyAwxSC+EVyDg==";
};
dependencies = [
- sources."@babel/runtime-7.24.7"
+ sources."@babel/runtime-7.24.8"
sources."ansi-regex-5.0.1"
sources."ansi-styles-4.3.0"
(sources."chalk-4.1.2" // {
@@ -65928,27 +65028,24 @@ in
sources."dot-prop-5.3.0"
sources."escape-string-regexp-1.0.5"
sources."find-up-simple-1.0.0"
- sources."function-bind-1.1.2"
sources."git-raw-commits-5.0.0"
sources."git-semver-tags-8.0.0"
sources."handlebars-4.7.8"
sources."has-flag-3.0.0"
- sources."hasown-2.0.2"
sources."hosted-git-info-7.0.2"
sources."index-to-position-0.1.2"
- sources."is-core-module-2.13.1"
sources."is-obj-2.0.0"
sources."js-tokens-4.0.0"
- sources."lru-cache-10.2.2"
+ sources."lru-cache-10.4.3"
sources."meow-13.2.0"
sources."minimist-1.2.8"
sources."neo-async-2.6.2"
- sources."normalize-package-data-6.0.1"
+ sources."normalize-package-data-6.0.2"
sources."parse-json-8.1.0"
sources."picocolors-1.0.1"
sources."read-package-up-11.0.0"
sources."read-pkg-9.0.1"
- sources."semver-7.6.2"
+ sources."semver-7.6.3"
sources."source-map-0.6.1"
sources."spdx-correct-3.2.0"
sources."spdx-exceptions-2.5.0"
@@ -65957,8 +65054,8 @@ in
sources."supports-color-5.5.0"
sources."temp-dir-3.0.0"
sources."tempfile-5.0.0"
- sources."type-fest-4.20.0"
- sources."uglify-js-3.18.0"
+ sources."type-fest-4.23.0"
+ sources."uglify-js-3.19.0"
sources."unicorn-magic-0.1.0"
sources."validate-npm-package-license-3.0.4"
sources."wordwrap-1.0.0"
@@ -66054,7 +65151,7 @@ in
sources."@cycle/run-3.4.0"
sources."@cycle/time-0.10.1"
sources."@types/cookiejar-2.1.5"
- sources."@types/node-20.14.2"
+ sources."@types/node-20.14.12"
sources."@types/superagent-3.8.2"
sources."ansi-escapes-3.2.0"
sources."ansi-regex-2.1.1"
@@ -66142,14 +65239,14 @@ in
sources."mute-stream-0.0.7"
sources."next-tick-1.1.0"
sources."object-assign-4.1.1"
- sources."object-inspect-1.13.1"
+ sources."object-inspect-1.13.2"
sources."object-keys-1.1.1"
sources."onetime-2.0.1"
sources."os-tmpdir-1.0.2"
sources."performance-now-2.1.0"
sources."process-nextick-args-2.0.1"
sources."pseudomap-1.0.2"
- sources."qs-6.12.1"
+ sources."qs-6.12.3"
sources."quicktask-1.1.0"
sources."raf-3.3.2"
sources."readable-stream-2.3.8"
@@ -66224,23 +65321,23 @@ in
cspell = nodeEnv.buildNodePackage {
name = "cspell";
packageName = "cspell";
- version = "8.8.4";
+ version = "8.12.1";
src = fetchurl {
- url = "https://registry.npmjs.org/cspell/-/cspell-8.8.4.tgz";
- sha512 = "eRUHiXvh4iRapw3lqE1nGOEAyYVfa/0lgK/e34SpcM/ECm4QuvbfY7Yl0ozCbiYywecog0RVbeJJUEYJTN5/Mg==";
+ url = "https://registry.npmjs.org/cspell/-/cspell-8.12.1.tgz";
+ sha512 = "mdnUUPydxxdj/uyF84U/DvPiY/l58Z2IpNwTx3H9Uve9dfT0vRv/7jiFNAvK4hAfZQaMaE7DPC00ckywTI/XgA==";
};
dependencies = [
- sources."@cspell/cspell-bundled-dicts-8.8.4"
- sources."@cspell/cspell-json-reporter-8.8.4"
- sources."@cspell/cspell-pipe-8.8.4"
- sources."@cspell/cspell-resolver-8.8.4"
- sources."@cspell/cspell-service-bus-8.8.4"
- sources."@cspell/cspell-types-8.8.4"
+ sources."@cspell/cspell-bundled-dicts-8.12.1"
+ sources."@cspell/cspell-json-reporter-8.12.1"
+ sources."@cspell/cspell-pipe-8.12.1"
+ sources."@cspell/cspell-resolver-8.12.1"
+ sources."@cspell/cspell-service-bus-8.12.1"
+ sources."@cspell/cspell-types-8.12.1"
sources."@cspell/dict-ada-4.0.2"
- sources."@cspell/dict-aws-4.0.2"
+ sources."@cspell/dict-aws-4.0.3"
sources."@cspell/dict-bash-4.1.3"
- sources."@cspell/dict-companies-3.1.2"
- sources."@cspell/dict-cpp-5.1.9"
+ sources."@cspell/dict-companies-3.1.3"
+ sources."@cspell/dict-cpp-5.1.12"
sources."@cspell/dict-cryptocurrencies-5.0.0"
sources."@cspell/dict-csharp-4.0.2"
sources."@cspell/dict-css-4.0.12"
@@ -66250,13 +65347,13 @@ in
sources."@cspell/dict-docker-1.1.7"
sources."@cspell/dict-dotnet-5.0.2"
sources."@cspell/dict-elixir-4.0.3"
- sources."@cspell/dict-en-common-misspellings-2.0.1"
+ sources."@cspell/dict-en-common-misspellings-2.0.3"
sources."@cspell/dict-en-gb-1.1.33"
- sources."@cspell/dict-en_us-4.3.21"
+ sources."@cspell/dict-en_us-4.3.23"
sources."@cspell/dict-filetypes-3.0.4"
sources."@cspell/dict-fonts-4.0.0"
sources."@cspell/dict-fsharp-1.0.1"
- sources."@cspell/dict-fullstack-3.1.8"
+ sources."@cspell/dict-fullstack-3.2.0"
sources."@cspell/dict-gaming-terms-1.0.5"
sources."@cspell/dict-git-3.0.0"
sources."@cspell/dict-golang-6.0.9"
@@ -66266,31 +65363,32 @@ in
sources."@cspell/dict-html-symbol-entities-4.0.0"
sources."@cspell/dict-java-5.0.7"
sources."@cspell/dict-julia-1.0.1"
- sources."@cspell/dict-k8s-1.0.5"
+ sources."@cspell/dict-k8s-1.0.6"
sources."@cspell/dict-latex-4.0.0"
sources."@cspell/dict-lorem-ipsum-4.0.0"
sources."@cspell/dict-lua-4.0.3"
sources."@cspell/dict-makefile-1.0.0"
sources."@cspell/dict-monkeyc-1.0.6"
sources."@cspell/dict-node-5.0.1"
- sources."@cspell/dict-npm-5.0.16"
+ sources."@cspell/dict-npm-5.0.18"
sources."@cspell/dict-php-4.0.8"
- sources."@cspell/dict-powershell-5.0.4"
+ sources."@cspell/dict-powershell-5.0.5"
sources."@cspell/dict-public-licenses-2.0.7"
- sources."@cspell/dict-python-4.2.1"
+ sources."@cspell/dict-python-4.2.3"
sources."@cspell/dict-r-2.0.1"
sources."@cspell/dict-ruby-5.0.2"
- sources."@cspell/dict-rust-4.0.4"
- sources."@cspell/dict-scala-5.0.2"
- sources."@cspell/dict-software-terms-3.4.6"
+ sources."@cspell/dict-rust-4.0.5"
+ sources."@cspell/dict-scala-5.0.3"
+ sources."@cspell/dict-software-terms-4.0.3"
sources."@cspell/dict-sql-2.1.3"
sources."@cspell/dict-svelte-1.0.2"
sources."@cspell/dict-swift-2.0.1"
sources."@cspell/dict-terraform-1.0.0"
- sources."@cspell/dict-typescript-3.1.5"
+ sources."@cspell/dict-typescript-3.1.6"
sources."@cspell/dict-vue-3.0.0"
- sources."@cspell/dynamic-import-8.8.4"
- sources."@cspell/strong-weak-map-8.8.4"
+ sources."@cspell/dynamic-import-8.12.1"
+ sources."@cspell/strong-weak-map-8.12.1"
+ sources."@cspell/url-8.12.1"
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
@@ -66302,26 +65400,26 @@ in
sources."chalk-template-1.1.0"
sources."clear-module-4.1.2"
sources."commander-12.1.0"
- sources."comment-json-4.2.3"
+ sources."comment-json-4.2.4"
sources."core-util-is-1.0.3"
- sources."cspell-config-lib-8.8.4"
- sources."cspell-dictionary-8.8.4"
- sources."cspell-gitignore-8.8.4"
- sources."cspell-glob-8.8.4"
- sources."cspell-grammar-8.8.4"
- sources."cspell-io-8.8.4"
- sources."cspell-lib-8.8.4"
- sources."cspell-trie-lib-8.8.4"
+ sources."cspell-config-lib-8.12.1"
+ sources."cspell-dictionary-8.12.1"
+ sources."cspell-gitignore-8.12.1"
+ sources."cspell-glob-8.12.1"
+ sources."cspell-grammar-8.12.1"
+ sources."cspell-io-8.12.1"
+ sources."cspell-lib-8.12.1"
+ sources."cspell-trie-lib-8.12.1"
sources."env-paths-3.0.0"
sources."esprima-4.0.1"
sources."fast-equals-5.0.1"
sources."fast-glob-3.3.2"
sources."fast-json-stable-stringify-2.1.0"
sources."fastq-1.17.1"
- sources."file-entry-cache-8.0.0"
+ sources."file-entry-cache-9.0.0"
sources."fill-range-7.1.1"
sources."find-up-simple-1.0.0"
- sources."flat-cache-4.0.1"
+ sources."flat-cache-5.0.0"
sources."flatted-3.3.1"
sources."gensequence-7.0.0"
sources."get-stdin-9.0.0"
@@ -66350,13 +65448,13 @@ in
sources."resolve-from-5.0.0"
sources."reusify-1.0.4"
sources."run-parallel-1.2.0"
- sources."semver-7.6.2"
+ sources."semver-7.6.3"
sources."strip-ansi-7.1.0"
sources."to-regex-range-5.0.1"
sources."vscode-languageserver-textdocument-1.0.11"
sources."vscode-uri-3.0.8"
sources."xdg-basedir-5.1.0"
- sources."yaml-2.4.5"
+ sources."yaml-2.5.0"
];
buildInputs = globalBuildInputs;
meta = {
@@ -66494,15 +65592,15 @@ in
dotenv-vault = nodeEnv.buildNodePackage {
name = "dotenv-vault";
packageName = "dotenv-vault";
- version = "1.26.1";
+ version = "1.26.2";
src = fetchurl {
- url = "https://registry.npmjs.org/dotenv-vault/-/dotenv-vault-1.26.1.tgz";
- sha512 = "v+RK6LXpJQWhaelTT2s0b5FQB0qziRBuGCrAgAeDHtgkDEA0NqF7OXYXsrnKTuCPnwBg0FmNJr4lZebCpJnrFA==";
+ url = "https://registry.npmjs.org/dotenv-vault/-/dotenv-vault-1.26.2.tgz";
+ sha512 = "nURqmc3kii3kqiZXcBYdt0QrjpXBjXWtzevCwC9FRbIjwKenGoN/bZHC9l9ueYI3gGoKjgt/1Cmno6HvzgMlDA==";
};
dependencies = [
sources."@cspotcode/source-map-support-0.8.1"
sources."@jridgewell/resolve-uri-3.1.2"
- sources."@jridgewell/sourcemap-codec-1.4.15"
+ sources."@jridgewell/sourcemap-codec-1.5.0"
sources."@jridgewell/trace-mapping-0.3.9"
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
@@ -66530,18 +65628,18 @@ in
];
})
sources."@oclif/screen-3.0.8"
- sources."@swc/core-1.5.29"
+ sources."@swc/core-1.7.1"
sources."@swc/counter-0.1.3"
- sources."@swc/helpers-0.5.11"
- sources."@swc/types-0.1.8"
- sources."@swc/wasm-1.5.29"
+ sources."@swc/helpers-0.5.12"
+ sources."@swc/types-0.1.12"
+ sources."@swc/wasm-1.7.1"
sources."@tsconfig/node10-1.0.11"
sources."@tsconfig/node12-1.0.11"
sources."@tsconfig/node14-1.0.3"
sources."@tsconfig/node16-1.0.4"
- sources."@types/cli-progress-3.11.5"
- sources."@types/node-20.14.2"
- sources."acorn-8.12.0"
+ sources."@types/cli-progress-3.11.6"
+ sources."@types/node-20.14.12"
+ sources."acorn-8.12.1"
sources."acorn-walk-8.3.3"
sources."ansi-escapes-4.3.2"
sources."ansi-regex-5.0.1"
@@ -66645,7 +65743,7 @@ in
sources."is-unicode-supported-0.1.0"
sources."is-wsl-2.2.0"
sources."isexe-2.0.0"
- sources."jake-10.9.1"
+ sources."jake-10.9.2"
sources."js-yaml-3.14.1"
sources."json-parse-better-errors-1.0.2"
sources."jsonfile-6.1.0"
@@ -66693,7 +65791,7 @@ in
sources."rxjs-7.8.1"
sources."safe-buffer-5.2.1"
sources."safer-buffer-2.1.2"
- sources."semver-7.6.2"
+ sources."semver-7.6.3"
sources."shebang-command-2.0.0"
sources."shebang-regex-3.0.0"
sources."signal-exit-3.0.7"
@@ -66718,7 +65816,7 @@ in
sources."tslib-2.6.3"
sources."tunnel-agent-0.6.0"
sources."type-fest-0.21.3"
- sources."typescript-5.4.5"
+ sources."typescript-5.5.4"
sources."undici-types-5.26.5"
sources."universalify-2.0.1"
sources."util-deprecate-1.0.2"
@@ -66744,10 +65842,10 @@ in
elasticdump = nodeEnv.buildNodePackage {
name = "elasticdump";
packageName = "elasticdump";
- version = "6.110.0";
+ version = "6.111.0";
src = fetchurl {
- url = "https://registry.npmjs.org/elasticdump/-/elasticdump-6.110.0.tgz";
- sha512 = "PxA3Q5OMndTlmFyrf7s/u+aAjOxQF+T5WIN3wzQUfwJ4gVSFC6qMuRT6Zhue24fDzE17v53voT572aooNCPYQw==";
+ url = "https://registry.npmjs.org/elasticdump/-/elasticdump-6.111.0.tgz";
+ sha512 = "nvcobmgSuPm+TwoilMVL5tjJW4ikI55uHFQS+dbHUc35HrMunPdgSeICCK+McNW+YL9bKe/1DSJxCpqzxwyVYA==";
};
dependencies = [
sources."@fast-csv/format-4.3.5"
@@ -66842,7 +65940,7 @@ in
sources."mime-types-2.1.35"
sources."minimist-1.2.8"
sources."oauth-sign-0.9.0"
- sources."object-inspect-1.13.1"
+ sources."object-inspect-1.13.2"
sources."p-finally-1.0.0"
sources."p-queue-6.6.2"
sources."p-timeout-3.2.0"
@@ -66956,7 +66054,7 @@ in
sources."commander-5.1.0"
];
})
- (sources."@electron/get-3.0.0" // {
+ (sources."@electron/get-3.1.0" // {
dependencies = [
sources."fs-extra-8.1.0"
sources."jsonfile-4.0.0"
@@ -66969,8 +66067,8 @@ in
sources."fs-extra-9.1.0"
];
})
- sources."@electron/osx-sign-1.3.0"
- (sources."@electron/packager-18.3.2" // {
+ sources."@electron/osx-sign-1.3.1"
+ (sources."@electron/packager-18.3.3" // {
dependencies = [
sources."fs-extra-11.2.0"
];
@@ -66980,10 +66078,10 @@ in
dependencies = [
sources."brace-expansion-2.0.1"
sources."fs-extra-11.2.0"
- sources."minimatch-9.0.4"
+ sources."minimatch-9.0.5"
];
})
- (sources."@electron/windows-sign-1.1.2" // {
+ (sources."@electron/windows-sign-1.1.3" // {
dependencies = [
sources."fs-extra-11.2.0"
];
@@ -67001,7 +66099,7 @@ in
sources."@types/cacheable-request-6.0.3"
sources."@types/http-cache-semantics-4.0.4"
sources."@types/keyv-3.1.4"
- sources."@types/node-20.14.2"
+ sources."@types/node-20.14.12"
sources."@types/responselike-1.0.3"
sources."@types/yauzl-2.10.3"
sources."@xmldom/xmldom-0.8.10"
@@ -67009,11 +66107,7 @@ in
sources."agent-base-6.0.2"
sources."agentkeepalive-4.5.0"
sources."aggregate-error-3.1.0"
- (sources."ansi-escapes-5.0.0" // {
- dependencies = [
- sources."type-fest-1.4.0"
- ];
- })
+ sources."ansi-escapes-5.0.0"
sources."ansi-regex-5.0.1"
sources."ansi-styles-4.3.0"
sources."aproba-2.0.0"
@@ -67024,7 +66118,6 @@ in
sources."base64-js-1.5.1"
sources."bl-4.1.0"
sources."bluebird-3.7.2"
- sources."boolean-3.2.0"
sources."brace-expansion-1.1.11"
sources."braces-3.0.3"
sources."buffer-5.7.1"
@@ -67078,11 +66171,8 @@ in
})
sources."defaults-1.0.4"
sources."defer-to-connect-2.0.1"
- sources."define-data-property-1.1.4"
- sources."define-properties-1.2.1"
sources."delegates-1.0.0"
sources."detect-libc-2.0.3"
- sources."detect-node-2.1.0"
sources."dir-compare-4.2.0"
sources."eastasianwidth-0.2.0"
sources."emoji-regex-8.0.0"
@@ -67091,9 +66181,6 @@ in
sources."env-paths-2.2.1"
sources."err-code-2.0.3"
sources."error-ex-1.3.2"
- sources."es-define-property-1.0.0"
- sources."es-errors-1.3.0"
- sources."es6-error-4.1.1"
sources."escalade-3.1.2"
sources."escape-string-regexp-1.0.5"
sources."eventemitter3-5.0.1"
@@ -67133,7 +66220,6 @@ in
sources."gauge-4.0.4"
sources."get-caller-file-2.0.5"
sources."get-installed-path-2.1.1"
- sources."get-intrinsic-1.2.4"
(sources."get-package-info-1.0.0" // {
dependencies = [
sources."debug-2.6.9"
@@ -67142,21 +66228,15 @@ in
sources."get-stream-5.2.0"
sources."glob-7.2.3"
sources."glob-parent-5.1.2"
- sources."global-agent-3.0.0"
sources."global-modules-1.0.0"
(sources."global-prefix-1.0.2" // {
dependencies = [
sources."which-1.3.1"
];
})
- sources."globalthis-1.0.4"
- sources."gopd-1.0.1"
sources."got-11.8.6"
sources."graceful-fs-4.2.11"
sources."has-flag-4.0.0"
- sources."has-property-descriptors-1.0.2"
- sources."has-proto-1.0.3"
- sources."has-symbols-1.0.3"
sources."has-unicode-2.0.1"
sources."hasown-2.0.2"
sources."homedir-polyfill-1.0.3"
@@ -67177,7 +66257,7 @@ in
sources."interpret-3.1.1"
sources."ip-address-9.0.5"
sources."is-arrayish-0.2.1"
- sources."is-core-module-2.13.1"
+ sources."is-core-module-2.15.0"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-3.0.0"
sources."is-glob-4.0.3"
@@ -67191,7 +66271,6 @@ in
sources."isexe-2.0.0"
sources."jsbn-1.1.0"
sources."json-buffer-3.0.1"
- sources."json-stringify-safe-5.0.1"
sources."jsonfile-6.1.0"
sources."junk-3.1.0"
sources."keyv-4.5.4"
@@ -67226,11 +66305,6 @@ in
sources."lru-cache-7.18.3"
sources."make-fetch-happen-10.2.1"
sources."map-age-cleaner-0.1.3"
- (sources."matcher-3.0.0" // {
- dependencies = [
- sources."escape-string-regexp-4.0.0"
- ];
- })
sources."mem-4.3.0"
sources."merge2-1.4.1"
sources."micromatch-4.0.7"
@@ -67266,7 +66340,6 @@ in
];
})
sources."npmlog-6.0.2"
- sources."object-keys-1.1.1"
sources."once-1.4.0"
sources."onetime-5.1.2"
sources."ora-5.4.1"
@@ -67337,13 +66410,10 @@ in
sources."reusify-1.0.4"
sources."rfdc-1.4.1"
sources."rimraf-3.0.2"
- sources."roarr-2.15.4"
sources."run-parallel-1.2.0"
sources."safe-buffer-5.2.1"
sources."safer-buffer-2.1.2"
- sources."semver-7.6.2"
- sources."semver-compare-1.0.0"
- sources."serialize-error-7.0.1"
+ sources."semver-7.6.3"
sources."set-blocking-2.0.0"
sources."shebang-command-2.0.0"
sources."shebang-regex-3.0.0"
@@ -67383,7 +66453,7 @@ in
sources."to-regex-range-5.0.1"
sources."tr46-0.0.3"
sources."trim-repeated-1.0.0"
- sources."type-fest-0.13.1"
+ sources."type-fest-1.4.0"
sources."undici-types-5.26.5"
sources."unique-filename-2.0.1"
sources."unique-slug-3.0.0"
@@ -67429,10 +66499,10 @@ in
eas-cli = nodeEnv.buildNodePackage {
name = "eas-cli";
packageName = "eas-cli";
- version = "10.0.0";
+ version = "10.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/eas-cli/-/eas-cli-10.0.0.tgz";
- sha512 = "N0s3BcFHBTOKYST7bzPvcMa7cGA7B7hDTOh+NgfkPB6qavGPgSFwbQo8c8BHFXI1iWw8vvjhh24/OEt06dFjOw==";
+ url = "https://registry.npmjs.org/eas-cli/-/eas-cli-10.2.1.tgz";
+ sha512 = "ayiCnxv58RYFPgYtgDhzcTIsJuN4CWFIl0IR1zMLlau/tNQxR6AnXTyF+XNUYEIHMaLwc1TDsZ5DlZu9e/2sXg==";
};
dependencies = [
sources."@0no-co/graphql.web-1.0.7"
@@ -67453,7 +66523,7 @@ in
sources."@jridgewell/trace-mapping-0.3.9"
];
})
- sources."@expo/apple-utils-1.7.0"
+ sources."@expo/apple-utils-1.7.1"
(sources."@expo/bunyan-4.0.0" // {
dependencies = [
sources."uuid-8.3.2"
@@ -67476,13 +66546,13 @@ in
];
})
sources."@expo/config-types-50.0.0"
- (sources."@expo/eas-build-job-1.0.117" // {
+ (sources."@expo/eas-build-job-1.0.119" // {
dependencies = [
- sources."joi-17.13.1"
- sources."semver-7.6.2"
+ sources."joi-17.13.3"
+ sources."semver-7.6.3"
];
})
- (sources."@expo/eas-json-10.0.0" // {
+ (sources."@expo/eas-json-10.0.3" // {
dependencies = [
(sources."@babel/code-frame-7.23.5" // {
dependencies = [
@@ -67566,10 +66636,10 @@ in
})
sources."@expo/sdk-runtime-versions-1.0.0"
sources."@expo/spawn-async-1.7.0"
- (sources."@expo/steps-1.0.117" // {
+ (sources."@expo/steps-1.0.119" // {
dependencies = [
sources."@expo/spawn-async-1.7.2"
- sources."joi-17.13.1"
+ sources."joi-17.13.3"
];
})
sources."@expo/timeago.js-1.0.0"
@@ -67578,7 +66648,7 @@ in
sources."@jridgewell/gen-mapping-0.3.5"
sources."@jridgewell/resolve-uri-3.1.2"
sources."@jridgewell/set-array-1.2.1"
- sources."@jridgewell/sourcemap-codec-1.4.15"
+ sources."@jridgewell/sourcemap-codec-1.5.0"
sources."@jridgewell/trace-mapping-0.3.25"
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
@@ -67598,27 +66668,27 @@ in
})
sources."@oclif/screen-3.0.8"
sources."@react-native/normalize-color-2.1.0"
- sources."@segment/ajv-human-errors-2.12.0"
+ sources."@segment/ajv-human-errors-2.13.0"
sources."@segment/loosely-validate-event-2.0.0"
sources."@sideway/address-4.1.5"
sources."@sideway/formula-3.0.1"
sources."@sideway/pinpoint-2.0.0"
- sources."@swc/core-1.5.29"
+ sources."@swc/core-1.7.1"
sources."@swc/counter-0.1.3"
- sources."@swc/helpers-0.5.11"
- sources."@swc/types-0.1.8"
- sources."@swc/wasm-1.5.29"
+ sources."@swc/helpers-0.5.12"
+ sources."@swc/types-0.1.12"
+ sources."@swc/wasm-1.7.1"
sources."@tsconfig/node10-1.0.11"
sources."@tsconfig/node12-1.0.11"
sources."@tsconfig/node14-1.0.3"
sources."@tsconfig/node16-1.0.4"
sources."@types/bunyan-1.8.11"
- sources."@types/cli-progress-3.11.5"
- sources."@types/node-20.14.2"
+ sources."@types/cli-progress-3.11.6"
+ sources."@types/node-20.14.12"
sources."@urql/core-4.0.11"
sources."@urql/exchange-retry-1.2.0"
sources."@xmldom/xmldom-0.7.13"
- sources."acorn-8.12.0"
+ sources."acorn-8.12.1"
sources."acorn-walk-8.3.3"
sources."agent-base-6.0.2"
sources."ajv-8.11.0"
@@ -67760,7 +66830,7 @@ in
sources."is-unicode-supported-0.1.0"
sources."is-wsl-2.2.0"
sources."isexe-2.0.0"
- (sources."jake-10.9.1" // {
+ (sources."jake-10.9.2" // {
dependencies = [
sources."brace-expansion-1.1.11"
sources."minimatch-3.1.2"
@@ -67772,7 +66842,7 @@ in
sources."join-component-1.1.0"
sources."js-tokens-4.0.0"
sources."js-yaml-3.14.1"
- sources."jsep-1.3.8"
+ sources."jsep-1.3.9"
sources."json-parse-better-errors-1.0.2"
sources."json-schema-traverse-1.0.0"
sources."json5-2.2.3"
@@ -67934,7 +67004,7 @@ in
sources."tunnel-agent-0.6.0"
sources."turndown-7.1.2"
sources."type-fest-0.21.3"
- sources."typescript-5.4.5"
+ sources."typescript-5.5.4"
sources."undici-types-5.26.5"
sources."unique-string-1.0.0"
sources."universalify-2.0.1"
@@ -67965,7 +67035,7 @@ in
})
sources."xmlbuilder-14.0.0"
sources."yallist-4.0.0"
- sources."yaml-2.4.5"
+ sources."yaml-2.5.0"
sources."yn-3.1.1"
sources."yocto-queue-0.1.0"
sources."zod-3.23.8"
@@ -68010,7 +67080,7 @@ in
sources."@alcalzone/ansi-tokenize-0.1.3"
sources."@types/prop-types-15.7.12"
sources."@types/react-18.3.3"
- sources."ajv-8.16.0"
+ sources."ajv-8.17.1"
sources."ajv-formats-2.1.1"
sources."ansi-escapes-7.0.0"
sources."ansi-regex-6.0.1"
@@ -68041,6 +67111,7 @@ in
sources."escape-string-regexp-2.0.0"
sources."execa-8.0.1"
sources."fast-deep-equal-3.1.3"
+ sources."fast-uri-3.0.1"
sources."get-east-asian-width-1.2.0"
sources."get-stream-8.0.1"
sources."human-signals-5.0.0"
@@ -68048,12 +67119,12 @@ in
(sources."ink-5.0.1" // {
dependencies = [
sources."signal-exit-3.0.7"
- sources."type-fest-4.20.0"
+ sources."type-fest-4.23.0"
];
})
(sources."ink-text-input-6.0.0" // {
dependencies = [
- sources."type-fest-4.20.0"
+ sources."type-fest-4.23.0"
];
})
sources."is-docker-3.0.0"
@@ -68084,12 +67155,11 @@ in
sources."p-defer-1.0.0"
sources."patch-console-2.0.0"
sources."path-key-3.1.1"
- sources."punycode-2.3.1"
sources."react-18.3.1"
(sources."react-devtools-core-4.28.5" // {
dependencies = [
sources."utf-8-validate-5.0.10"
- sources."ws-7.5.9"
+ sources."ws-7.5.10"
];
})
sources."react-reconciler-0.29.2"
@@ -68102,7 +67172,7 @@ in
];
})
sources."scheduler-0.23.2"
- sources."semver-7.6.2"
+ sources."semver-7.6.3"
sources."shebang-command-2.0.0"
sources."shebang-regex-3.0.0"
sources."shell-quote-1.8.1"
@@ -68114,7 +67184,7 @@ in
];
})
sources."stack-utils-2.0.6"
- sources."string-width-7.1.0"
+ sources."string-width-7.2.0"
sources."strip-ansi-7.1.0"
sources."strip-final-newline-3.0.0"
sources."stubborn-fs-1.2.5"
@@ -68122,13 +67192,12 @@ in
sources."type-fest-3.13.1"
sources."uint8array-extras-0.3.0"
sources."unicode-emoji-json-0.6.0"
- sources."uri-js-4.4.1"
sources."utf-8-validate-6.0.4"
- sources."when-exit-2.1.2"
+ sources."when-exit-2.1.3"
sources."which-2.0.2"
sources."widest-line-5.0.0"
sources."wrap-ansi-9.0.0"
- sources."ws-8.17.0"
+ sources."ws-8.18.0"
sources."yoga-wasm-web-0.3.3"
];
buildInputs = globalBuildInputs;
@@ -68179,10 +67248,10 @@ in
eslint = nodeEnv.buildNodePackage {
name = "eslint";
packageName = "eslint";
- version = "9.5.0";
+ version = "9.7.0";
src = fetchurl {
- url = "https://registry.npmjs.org/eslint/-/eslint-9.5.0.tgz";
- sha512 = "+NAOZFrW/jFTS3dASCGBxX1pkFD0/fsO+hfAkJ4TyYKwgsXZbqzrw+seCYFCcPCYXvnD67tAnglU7GQTz6kcVw==";
+ url = "https://registry.npmjs.org/eslint/-/eslint-9.7.0.tgz";
+ sha512 = "FzJ9D/0nGiCGBf8UXO/IGLTgLVzIxze1zpfA8Ton2mjLovXdAPlYDv+MQDcqj3TmrhAGYfOpz9RfR+ent0AgAw==";
};
dependencies = [
(sources."@eslint-community/eslint-utils-4.4.0" // {
@@ -68190,17 +67259,17 @@ in
sources."eslint-visitor-keys-3.4.3"
];
})
- sources."@eslint-community/regexpp-4.10.1"
- sources."@eslint/config-array-0.16.0"
+ sources."@eslint-community/regexpp-4.11.0"
+ sources."@eslint/config-array-0.17.1"
sources."@eslint/eslintrc-3.1.0"
- sources."@eslint/js-9.5.0"
+ sources."@eslint/js-9.7.0"
sources."@eslint/object-schema-2.1.4"
sources."@humanwhocodes/module-importer-1.0.1"
sources."@humanwhocodes/retry-0.3.0"
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
- sources."acorn-8.12.0"
+ sources."acorn-8.12.1"
sources."acorn-jsx-5.3.2"
sources."ajv-6.12.6"
sources."ansi-regex-5.0.1"
@@ -68217,11 +67286,11 @@ in
sources."debug-4.3.5"
sources."deep-is-0.1.4"
sources."escape-string-regexp-4.0.0"
- sources."eslint-9.5.0"
- sources."eslint-scope-8.0.1"
+ sources."eslint-9.7.0"
+ sources."eslint-scope-8.0.2"
sources."eslint-visitor-keys-4.0.0"
- sources."espree-10.0.1"
- sources."esquery-1.5.0"
+ sources."espree-10.1.0"
+ sources."esquery-1.6.0"
sources."esrecurse-4.3.0"
sources."estraverse-5.3.0"
sources."esutils-2.0.3"
@@ -68315,26 +67384,24 @@ in
};
dependencies = [
sources."@ampproject/remapping-2.3.0"
- sources."@babel/code-frame-7.10.4"
- sources."@babel/compat-data-7.24.7"
- (sources."@babel/core-7.24.7" // {
+ sources."@babel/code-frame-7.24.7"
+ sources."@babel/compat-data-7.24.9"
+ (sources."@babel/core-7.24.9" // {
dependencies = [
- sources."@babel/code-frame-7.24.7"
- sources."json5-2.2.3"
+ sources."debug-4.3.5"
+ sources."ms-2.1.2"
sources."semver-6.3.1"
];
})
- sources."@babel/generator-7.24.7"
+ sources."@babel/generator-7.24.10"
sources."@babel/helper-annotate-as-pure-7.24.7"
sources."@babel/helper-builder-binary-assignment-operator-visitor-7.24.7"
- (sources."@babel/helper-compilation-targets-7.24.7" // {
+ (sources."@babel/helper-compilation-targets-7.24.8" // {
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.24.7" // {
+ (sources."@babel/helper-create-class-features-plugin-7.24.8" // {
dependencies = [
sources."semver-6.3.1"
];
@@ -68344,31 +67411,37 @@ in
sources."semver-6.3.1"
];
})
- sources."@babel/helper-define-polyfill-provider-0.6.2"
+ (sources."@babel/helper-define-polyfill-provider-0.6.2" // {
+ dependencies = [
+ sources."debug-4.3.5"
+ sources."ms-2.1.2"
+ sources."resolve-1.22.8"
+ ];
+ })
sources."@babel/helper-environment-visitor-7.24.7"
sources."@babel/helper-function-name-7.24.7"
sources."@babel/helper-hoist-variables-7.24.7"
- sources."@babel/helper-member-expression-to-functions-7.24.7"
+ sources."@babel/helper-member-expression-to-functions-7.24.8"
sources."@babel/helper-module-imports-7.24.7"
- sources."@babel/helper-module-transforms-7.24.7"
+ sources."@babel/helper-module-transforms-7.24.9"
sources."@babel/helper-optimise-call-expression-7.24.7"
- sources."@babel/helper-plugin-utils-7.24.7"
+ sources."@babel/helper-plugin-utils-7.24.8"
sources."@babel/helper-remap-async-to-generator-7.24.7"
sources."@babel/helper-replace-supers-7.24.7"
sources."@babel/helper-simple-access-7.24.7"
sources."@babel/helper-skip-transparent-expression-wrappers-7.24.7"
sources."@babel/helper-split-export-declaration-7.24.7"
- sources."@babel/helper-string-parser-7.24.7"
+ sources."@babel/helper-string-parser-7.24.8"
sources."@babel/helper-validator-identifier-7.24.7"
- sources."@babel/helper-validator-option-7.24.7"
+ sources."@babel/helper-validator-option-7.24.8"
sources."@babel/helper-wrap-function-7.24.7"
- sources."@babel/helpers-7.24.7"
+ sources."@babel/helpers-7.24.8"
(sources."@babel/highlight-7.24.7" // {
dependencies = [
sources."chalk-2.4.2"
];
})
- sources."@babel/parser-7.24.7"
+ sources."@babel/parser-7.24.8"
sources."@babel/plugin-bugfix-firefox-class-in-computed-class-key-7.24.7"
sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.24.7"
sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.24.7"
@@ -68412,9 +67485,9 @@ in
sources."@babel/plugin-transform-block-scoping-7.24.7"
sources."@babel/plugin-transform-class-properties-7.24.7"
sources."@babel/plugin-transform-class-static-block-7.24.7"
- sources."@babel/plugin-transform-classes-7.24.7"
+ sources."@babel/plugin-transform-classes-7.24.8"
sources."@babel/plugin-transform-computed-properties-7.24.7"
- sources."@babel/plugin-transform-destructuring-7.24.7"
+ sources."@babel/plugin-transform-destructuring-7.24.8"
sources."@babel/plugin-transform-dotall-regex-7.24.7"
sources."@babel/plugin-transform-duplicate-keys-7.24.7"
sources."@babel/plugin-transform-dynamic-import-7.24.7"
@@ -68428,7 +67501,7 @@ in
sources."@babel/plugin-transform-logical-assignment-operators-7.24.7"
sources."@babel/plugin-transform-member-expression-literals-7.24.7"
sources."@babel/plugin-transform-modules-amd-7.24.7"
- sources."@babel/plugin-transform-modules-commonjs-7.24.7"
+ sources."@babel/plugin-transform-modules-commonjs-7.24.8"
sources."@babel/plugin-transform-modules-systemjs-7.24.7"
sources."@babel/plugin-transform-modules-umd-7.24.7"
sources."@babel/plugin-transform-named-capturing-groups-regex-7.24.7"
@@ -68438,7 +67511,7 @@ in
sources."@babel/plugin-transform-object-rest-spread-7.24.7"
sources."@babel/plugin-transform-object-super-7.24.7"
sources."@babel/plugin-transform-optional-catch-binding-7.24.7"
- sources."@babel/plugin-transform-optional-chaining-7.24.7"
+ sources."@babel/plugin-transform-optional-chaining-7.24.8"
sources."@babel/plugin-transform-parameters-7.24.7"
sources."@babel/plugin-transform-private-methods-7.24.7"
sources."@babel/plugin-transform-private-property-in-object-7.24.7"
@@ -68458,36 +67531,38 @@ in
sources."@babel/plugin-transform-spread-7.24.7"
sources."@babel/plugin-transform-sticky-regex-7.24.7"
sources."@babel/plugin-transform-template-literals-7.24.7"
- sources."@babel/plugin-transform-typeof-symbol-7.24.7"
- sources."@babel/plugin-transform-typescript-7.24.7"
+ sources."@babel/plugin-transform-typeof-symbol-7.24.8"
+ sources."@babel/plugin-transform-typescript-7.24.8"
sources."@babel/plugin-transform-unicode-escapes-7.24.7"
sources."@babel/plugin-transform-unicode-property-regex-7.24.7"
sources."@babel/plugin-transform-unicode-regex-7.24.7"
sources."@babel/plugin-transform-unicode-sets-regex-7.24.7"
- (sources."@babel/preset-env-7.24.7" // {
+ (sources."@babel/preset-env-7.24.8" // {
dependencies = [
sources."semver-6.3.1"
];
})
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.24.7" // {
+ (sources."@babel/runtime-7.9.0" // {
dependencies = [
- sources."@babel/code-frame-7.24.7"
+ sources."regenerator-runtime-0.13.11"
];
})
- (sources."@babel/traverse-7.24.7" // {
+ sources."@babel/template-7.24.7"
+ (sources."@babel/traverse-7.24.8" // {
dependencies = [
- sources."@babel/code-frame-7.24.7"
+ sources."debug-4.3.5"
+ sources."ms-2.1.2"
];
})
- sources."@babel/types-7.24.7"
+ sources."@babel/types-7.24.9"
sources."@expo/apple-utils-1.0.0"
sources."@expo/bunyan-4.0.0"
(sources."@expo/cli-0.7.3" // {
dependencies = [
- sources."@babel/runtime-7.24.7"
+ sources."@babel/code-frame-7.10.4"
+ sources."@babel/runtime-7.24.8"
(sources."@expo/config-8.0.5" // {
dependencies = [
sources."semver-7.3.2"
@@ -68495,10 +67570,9 @@ in
})
(sources."@expo/config-plugins-6.0.2" // {
dependencies = [
- sources."semver-7.6.2"
+ sources."semver-7.6.3"
];
})
- sources."@expo/config-types-48.0.0"
(sources."@expo/dev-server-0.3.0" // {
dependencies = [
sources."fs-extra-9.0.0"
@@ -68519,12 +67593,13 @@ in
sources."universalify-2.0.1"
];
})
+ sources."mime-2.6.0"
sources."semver-7.3.2"
+ sources."temp-dir-1.0.0"
sources."tempy-0.3.0"
sources."universalify-1.0.0"
];
})
- sources."@expo/metro-config-0.7.1"
sources."@expo/package-manager-1.0.3"
(sources."@expo/prebuild-config-6.0.1" // {
dependencies = [
@@ -68535,21 +67610,51 @@ in
];
})
sources."ansi-regex-5.0.1"
+ (sources."body-parser-1.20.2" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ sources."ms-2.0.0"
+ ];
+ })
sources."bplist-parser-0.3.2"
+ sources."bytes-3.1.2"
+ (sources."debug-4.3.5" // {
+ dependencies = [
+ sources."ms-2.1.2"
+ ];
+ })
+ sources."depd-2.0.0"
+ sources."destroy-1.2.0"
sources."form-data-3.0.1"
sources."fs-extra-8.1.0"
- sources."jsonfile-4.0.0"
+ sources."http-errors-2.0.0"
+ sources."iconv-lite-0.4.24"
+ sources."mime-1.6.0"
+ sources."ms-2.1.3"
sources."node-forge-1.3.1"
(sources."npm-package-arg-7.0.0" // {
dependencies = [
sources."semver-5.7.2"
];
})
- sources."regenerator-runtime-0.14.1"
+ sources."on-finished-2.4.1"
+ sources."qs-6.11.0"
+ sources."raw-body-2.5.2"
sources."semver-6.3.1"
- sources."temp-dir-1.0.0"
- sources."type-fest-0.3.1"
- sources."universalify-0.1.2"
+ (sources."send-0.18.0" // {
+ dependencies = [
+ (sources."debug-2.6.9" // {
+ dependencies = [
+ sources."ms-2.0.0"
+ ];
+ })
+ ];
+ })
+ sources."setprototypeof-1.2.0"
+ sources."slash-3.0.0"
+ sources."statuses-2.0.1"
+ sources."sudo-prompt-9.1.1"
+ sources."temp-dir-2.0.0"
];
})
(sources."@expo/code-signing-certificates-0.0.5" // {
@@ -68559,55 +67664,96 @@ in
})
(sources."@expo/config-6.0.24" // {
dependencies = [
+ sources."@babel/code-frame-7.10.4"
+ sources."@expo/config-types-45.0.0"
sources."@expo/json-file-8.2.36"
+ sources."json5-1.0.2"
];
})
(sources."@expo/config-plugins-4.1.5" // {
dependencies = [
+ sources."@babel/code-frame-7.10.4"
+ sources."@expo/config-types-45.0.0"
sources."@expo/json-file-8.2.36"
sources."@expo/plist-0.0.18"
sources."@xmldom/xmldom-0.7.13"
- sources."semver-7.6.2"
+ sources."debug-4.3.5"
+ sources."json5-1.0.2"
+ sources."ms-2.1.2"
+ sources."semver-7.6.3"
+ sources."slash-3.0.0"
sources."xmlbuilder-14.0.0"
];
})
- sources."@expo/config-types-45.0.0"
- sources."@expo/dev-server-0.2.0"
+ sources."@expo/config-types-48.0.0"
+ (sources."@expo/dev-server-0.2.0" // {
+ dependencies = [
+ sources."@babel/code-frame-7.10.4"
+ sources."@expo/config-8.0.5"
+ (sources."@expo/config-plugins-6.0.2" // {
+ dependencies = [
+ sources."semver-7.6.3"
+ ];
+ })
+ sources."@expo/metro-config-0.6.0"
+ sources."body-parser-1.20.2"
+ sources."bytes-3.1.2"
+ sources."debug-4.3.5"
+ sources."depd-2.0.0"
+ sources."destroy-1.2.0"
+ sources."http-errors-2.0.0"
+ sources."iconv-lite-0.4.24"
+ sources."ms-2.1.2"
+ sources."on-finished-2.4.1"
+ sources."qs-6.11.0"
+ sources."raw-body-2.5.2"
+ sources."setprototypeof-1.2.0"
+ sources."slash-3.0.0"
+ sources."statuses-2.0.1"
+ sources."temp-dir-2.0.0"
+ ];
+ })
(sources."@expo/devcert-1.1.2" // {
dependencies = [
sources."debug-3.2.7"
+ sources."mkdirp-0.5.6"
+ sources."ms-2.1.3"
sources."rimraf-2.7.1"
- sources."sudo-prompt-8.2.5"
];
})
- (sources."@expo/image-utils-0.3.21" // {
+ (sources."@expo/image-utils-0.3.23" // {
dependencies = [
- sources."temp-dir-1.0.0"
+ sources."mime-2.6.0"
sources."tempy-0.3.0"
- sources."type-fest-0.3.1"
];
})
(sources."@expo/json-file-8.2.37" // {
dependencies = [
- sources."json5-2.2.3"
+ sources."@babel/code-frame-7.10.4"
];
})
- (sources."@expo/metro-config-0.6.0" // {
+ (sources."@expo/metro-config-0.7.1" // {
dependencies = [
+ sources."@babel/code-frame-7.10.4"
sources."@expo/config-8.0.5"
sources."@expo/config-plugins-6.0.2"
- sources."@expo/config-types-48.0.0"
- sources."semver-7.6.2"
+ sources."debug-4.3.5"
+ sources."ms-2.1.2"
+ sources."semver-7.6.3"
+ sources."slash-3.0.0"
];
})
sources."@expo/osascript-2.0.33"
(sources."@expo/package-manager-0.0.56" // {
dependencies = [
+ sources."@babel/code-frame-7.10.4"
sources."@expo/json-file-8.2.36"
sources."ansi-regex-5.0.1"
+ sources."json5-1.0.2"
sources."npm-package-arg-7.0.0"
sources."rimraf-3.0.2"
sources."semver-5.7.2"
+ sources."sudo-prompt-9.1.1"
];
})
(sources."@expo/plist-0.0.20" // {
@@ -68618,30 +67764,41 @@ in
})
(sources."@expo/prebuild-config-4.0.3" // {
dependencies = [
+ sources."@babel/code-frame-7.10.4"
+ sources."@expo/config-types-45.0.0"
+ sources."@expo/image-utils-0.3.21"
sources."@expo/json-file-8.2.36"
+ sources."commander-7.2.0"
+ sources."debug-4.3.5"
+ (sources."expo-modules-autolinking-0.8.1" // {
+ dependencies = [
+ sources."fs-extra-9.1.0"
+ ];
+ })
+ sources."json5-1.0.2"
+ sources."jsonfile-6.1.0"
+ sources."mime-2.6.0"
+ sources."ms-2.1.2"
+ sources."tempy-0.3.0"
+ sources."universalify-2.0.1"
];
})
sources."@expo/rudder-sdk-node-1.1.1"
(sources."@expo/schemer-1.4.5" // {
dependencies = [
+ sources."ajv-8.17.1"
+ sources."json-schema-traverse-1.0.0"
sources."probe-image-size-7.2.3"
];
})
sources."@expo/sdk-runtime-versions-1.0.0"
- (sources."@expo/spawn-async-1.5.0" // {
- dependencies = [
- sources."cross-spawn-6.0.5"
- sources."path-key-2.0.1"
- sources."semver-5.7.2"
- sources."shebang-command-1.2.0"
- sources."shebang-regex-1.0.0"
- sources."which-1.3.1"
- ];
- })
+ sources."@expo/spawn-async-1.5.0"
sources."@expo/vector-icons-13.0.0"
sources."@expo/webpack-config-18.1.0"
(sources."@expo/xcpretty-4.3.1" // {
dependencies = [
+ sources."@babel/code-frame-7.10.4"
+ sources."argparse-2.0.1"
sources."js-yaml-4.1.0"
];
})
@@ -68651,6 +67808,7 @@ in
sources."@hapi/topo-5.1.0"
(sources."@isaacs/cliui-8.0.2" // {
dependencies = [
+ sources."ansi-regex-6.0.1"
sources."ansi-styles-6.2.1"
sources."strip-ansi-7.1.0"
sources."wrap-ansi-8.1.0"
@@ -68661,7 +67819,7 @@ in
sources."@jridgewell/resolve-uri-3.1.2"
sources."@jridgewell/set-array-1.2.1"
sources."@jridgewell/source-map-0.3.6"
- sources."@jridgewell/sourcemap-codec-1.4.15"
+ sources."@jridgewell/sourcemap-codec-1.5.0"
sources."@jridgewell/trace-mapping-0.3.25"
sources."@leichtgewicht/ip-codec-2.0.5"
sources."@module-federation/runtime-0.1.6"
@@ -68673,24 +67831,23 @@ in
sources."@nodelib/fs.walk-1.2.8"
(sources."@npmcli/fs-1.1.1" // {
dependencies = [
- sources."semver-7.6.2"
+ sources."semver-7.6.3"
];
})
(sources."@npmcli/move-file-1.1.2" // {
dependencies = [
- sources."mkdirp-1.0.4"
sources."rimraf-3.0.2"
];
})
sources."@react-native/normalize-color-2.1.0"
- sources."@rspack/binding-0.7.3"
- sources."@rspack/core-0.7.3"
+ sources."@rspack/binding-0.7.5"
+ sources."@rspack/core-0.7.5"
sources."@segment/loosely-validate-event-2.0.0"
sources."@sideway/address-4.1.5"
sources."@sideway/formula-3.0.1"
sources."@sideway/pinpoint-2.0.0"
sources."@sindresorhus/is-4.6.0"
- sources."@swc/helpers-0.5.11"
+ sources."@swc/helpers-0.5.12"
sources."@szmarczak/http-timer-4.0.6"
sources."@trysound/sax-0.2.0"
sources."@types/body-parser-1.19.5"
@@ -68698,11 +67855,11 @@ in
sources."@types/cacheable-request-6.0.3"
sources."@types/connect-3.4.38"
sources."@types/connect-history-api-fallback-1.5.4"
- sources."@types/eslint-8.56.10"
+ sources."@types/eslint-9.6.0"
sources."@types/eslint-scope-3.7.7"
sources."@types/estree-1.0.5"
sources."@types/express-4.17.21"
- sources."@types/express-serve-static-core-4.19.3"
+ sources."@types/express-serve-static-core-4.19.5"
sources."@types/glob-7.2.0"
sources."@types/html-minifier-terser-6.1.0"
sources."@types/http-cache-semantics-4.0.4"
@@ -68715,7 +67872,7 @@ in
sources."@types/keyv-3.1.4"
sources."@types/mime-1.3.5"
sources."@types/minimatch-5.1.2"
- sources."@types/node-20.14.2"
+ sources."@types/node-20.14.12"
sources."@types/node-forge-1.3.11"
sources."@types/qs-6.9.15"
sources."@types/range-parser-1.2.7"
@@ -68725,7 +67882,7 @@ in
sources."@types/serve-index-1.9.4"
sources."@types/serve-static-1.15.7"
sources."@types/sockjs-0.3.36"
- sources."@types/ws-8.5.10"
+ sources."@types/ws-8.5.11"
sources."@types/yargs-15.0.19"
sources."@types/yargs-parser-21.0.3"
sources."@urql/core-2.3.6"
@@ -68750,18 +67907,23 @@ in
sources."@xtuc/long-4.2.2"
sources."abab-2.0.6"
sources."accepts-1.3.8"
- sources."acorn-8.12.0"
+ sources."acorn-8.12.1"
sources."acorn-import-attributes-1.9.5"
- sources."agent-base-6.0.2"
- sources."aggregate-error-3.1.0"
- sources."ajv-8.16.0"
- sources."ajv-formats-2.1.1"
- (sources."ajv-keywords-3.5.2" // {
+ (sources."agent-base-6.0.2" // {
dependencies = [
- sources."ajv-6.12.6"
- sources."json-schema-traverse-0.4.1"
+ sources."debug-4.3.5"
+ sources."ms-2.1.2"
];
})
+ sources."aggregate-error-3.1.0"
+ sources."ajv-6.12.6"
+ (sources."ajv-formats-2.1.1" // {
+ dependencies = [
+ sources."ajv-8.17.1"
+ sources."json-schema-traverse-1.0.0"
+ ];
+ })
+ sources."ajv-keywords-3.5.2"
(sources."ansi-align-3.0.1" // {
dependencies = [
sources."emoji-regex-8.0.0"
@@ -68774,16 +67936,16 @@ in
];
})
sources."ansi-html-community-0.0.8"
- sources."ansi-regex-6.0.1"
+ sources."ansi-regex-4.1.1"
sources."ansi-styles-3.2.1"
sources."any-promise-1.3.0"
sources."anymatch-3.1.3"
sources."application-config-path-0.1.1"
sources."arg-4.1.0"
- sources."argparse-2.0.1"
+ sources."argparse-1.0.10"
sources."array-buffer-byte-length-1.0.1"
sources."array-flatten-1.1.1"
- sources."array-union-2.1.0"
+ sources."array-union-3.0.1"
sources."array-uniq-1.0.3"
sources."arraybuffer.prototype.slice-1.0.3"
sources."arrify-2.0.1"
@@ -68793,8 +67955,16 @@ in
sources."at-least-node-1.0.0"
sources."available-typed-arrays-1.0.7"
sources."axios-0.21.1"
- sources."babel-loader-8.3.0"
- sources."babel-plugin-module-resolver-4.1.0"
+ (sources."babel-loader-8.3.0" // {
+ dependencies = [
+ sources."schema-utils-2.7.1"
+ ];
+ })
+ (sources."babel-plugin-module-resolver-4.1.0" // {
+ dependencies = [
+ sources."resolve-1.22.8"
+ ];
+ })
(sources."babel-plugin-polyfill-corejs2-0.4.11" // {
dependencies = [
sources."semver-6.3.1"
@@ -68812,12 +67982,7 @@ in
sources."big.js-5.2.2"
sources."binary-extensions-2.3.0"
sources."blueimp-md5-2.19.0"
- (sources."body-parser-1.20.2" // {
- dependencies = [
- sources."debug-2.6.9"
- sources."ms-2.0.0"
- ];
- })
+ sources."body-parser-1.18.3"
sources."bonjour-service-1.2.1"
sources."boolbase-1.0.0"
(sources."boxen-5.1.2" // {
@@ -68831,18 +67996,18 @@ in
sources."bplist-parser-0.2.0"
sources."brace-expansion-1.1.11"
sources."braces-3.0.3"
- sources."browserslist-4.23.1"
+ sources."browserslist-4.23.2"
sources."buffer-alloc-1.2.0"
sources."buffer-alloc-unsafe-1.1.0"
sources."buffer-fill-1.0.0"
sources."buffer-from-1.1.2"
sources."bufferutil-4.0.8"
sources."builtins-1.0.3"
- sources."bytes-3.1.2"
+ sources."bytes-3.0.0"
(sources."cacache-15.3.0" // {
dependencies = [
sources."lru-cache-6.0.0"
- sources."mkdirp-1.0.4"
+ sources."p-map-4.0.0"
sources."rimraf-3.0.2"
];
})
@@ -68853,7 +68018,7 @@ in
sources."camel-case-4.1.2"
sources."camelcase-6.3.0"
sources."caniuse-api-3.0.0"
- sources."caniuse-lite-1.0.30001634"
+ sources."caniuse-lite-1.0.30001643"
(sources."chalk-4.1.2" // {
dependencies = [
sources."ansi-styles-4.3.0"
@@ -68870,16 +68035,7 @@ in
sources."ci-info-3.9.0"
sources."clean-css-5.3.3"
sources."clean-stack-2.2.0"
- (sources."clean-webpack-plugin-4.0.0" // {
- dependencies = [
- sources."array-union-1.0.2"
- sources."del-4.1.1"
- sources."globby-6.1.0"
- sources."p-map-2.1.0"
- sources."pify-2.3.0"
- sources."rimraf-2.7.1"
- ];
- })
+ sources."clean-webpack-plugin-4.0.0"
sources."cli-boxes-2.2.1"
sources."cli-cursor-2.1.0"
sources."cli-spinners-2.9.2"
@@ -68902,20 +68058,13 @@ in
sources."compare-versions-3.6.0"
sources."component-type-1.2.2"
sources."compressible-2.0.18"
- (sources."compression-1.7.4" // {
- dependencies = [
- sources."bytes-3.0.0"
- sources."debug-2.6.9"
- sources."ms-2.0.0"
- sources."safe-buffer-5.1.2"
- ];
- })
+ sources."compression-1.7.4"
sources."concat-map-0.0.1"
sources."concat-stream-1.6.2"
(sources."connect-3.7.0" // {
dependencies = [
- sources."debug-2.6.9"
- sources."ms-2.0.0"
+ sources."finalhandler-1.1.2"
+ sources."statuses-1.5.0"
];
})
sources."connect-history-api-fallback-2.0.0"
@@ -68926,29 +68075,34 @@ in
sources."cookie-signature-1.0.6"
(sources."copy-webpack-plugin-10.2.4" // {
dependencies = [
+ sources."ajv-8.17.1"
sources."ajv-keywords-5.1.0"
- sources."array-union-3.0.1"
sources."glob-parent-6.0.2"
- sources."globby-12.2.0"
+ sources."json-schema-traverse-1.0.0"
sources."schema-utils-4.2.0"
- sources."slash-4.0.0"
];
})
sources."core-js-compat-3.37.1"
sources."core-util-is-1.0.3"
sources."cross-fetch-3.1.8"
- sources."cross-spawn-7.0.3"
+ (sources."cross-spawn-6.0.5" // {
+ dependencies = [
+ sources."semver-5.7.2"
+ ];
+ })
sources."crypt-0.0.2"
sources."crypto-random-string-1.0.0"
sources."css-declaration-sorter-6.4.1"
(sources."css-loader-6.11.0" // {
dependencies = [
- sources."semver-7.6.2"
+ sources."semver-7.6.3"
];
})
(sources."css-minimizer-webpack-plugin-3.4.1" // {
dependencies = [
+ sources."ajv-8.17.1"
sources."ajv-keywords-5.1.0"
+ sources."json-schema-traverse-1.0.0"
sources."schema-utils-4.2.0"
];
})
@@ -68965,7 +68119,7 @@ in
sources."data-view-byte-length-1.0.1"
sources."data-view-byte-offset-1.0.0"
sources."dateformat-3.0.3"
- sources."debug-4.3.5"
+ sources."debug-2.6.9"
sources."decache-4.4.0"
(sources."decompress-response-6.0.0" // {
dependencies = [
@@ -68980,14 +68134,21 @@ in
sources."define-data-property-1.1.4"
sources."define-lazy-prop-2.0.0"
sources."define-properties-1.2.1"
- (sources."del-6.1.1" // {
+ (sources."del-4.1.1" // {
dependencies = [
- sources."rimraf-3.0.2"
+ sources."array-union-1.0.2"
+ (sources."globby-6.1.0" // {
+ dependencies = [
+ sources."pify-2.3.0"
+ ];
+ })
+ sources."p-map-2.1.0"
+ sources."rimraf-2.7.1"
];
})
sources."delayed-stream-1.0.0"
- sources."depd-2.0.0"
- sources."destroy-1.2.0"
+ sources."depd-1.1.2"
+ sources."destroy-1.0.4"
sources."detect-node-2.1.0"
sources."dir-glob-3.0.1"
sources."dns-packet-5.6.1"
@@ -69001,7 +68162,7 @@ in
sources."duplexer3-0.1.5"
sources."eastasianwidth-0.2.0"
sources."ee-first-1.1.1"
- sources."electron-to-chromium-1.4.802"
+ sources."electron-to-chromium-1.5.1"
sources."emoji-regex-9.2.2"
sources."emojis-list-3.0.0"
sources."encodeurl-1.0.2"
@@ -69011,14 +68172,14 @@ in
];
})
sources."end-of-stream-1.4.4"
- sources."enhanced-resolve-5.17.0"
+ sources."enhanced-resolve-5.17.1"
sources."entities-2.2.0"
sources."env-editor-0.4.2"
sources."eol-0.9.1"
sources."es-abstract-1.23.3"
sources."es-define-property-1.0.0"
sources."es-errors-1.3.0"
- sources."es-module-lexer-1.5.3"
+ sources."es-module-lexer-1.5.4"
sources."es-object-atoms-1.0.0"
sources."es-set-tostringtag-2.0.3"
sources."es-to-primitive-1.2.1"
@@ -69040,61 +68201,46 @@ in
sources."exec-async-2.2.0"
(sources."execa-1.0.0" // {
dependencies = [
- sources."cross-spawn-6.0.5"
sources."get-stream-4.1.0"
- sources."is-stream-1.1.0"
- sources."path-key-2.0.1"
- sources."semver-5.7.2"
- sources."shebang-command-1.2.0"
- sources."shebang-regex-1.0.0"
- sources."which-1.3.1"
];
})
(sources."expo-48.0.21" // {
dependencies = [
- sources."@babel/runtime-7.24.7"
- (sources."@expo/config-8.0.5" // {
- dependencies = [
- sources."semver-7.3.2"
- ];
- })
- (sources."@expo/config-plugins-6.0.2" // {
- dependencies = [
- sources."semver-7.6.2"
- ];
- })
- sources."@expo/config-types-48.0.0"
- sources."commander-7.2.0"
- sources."cross-spawn-6.0.5"
- sources."expo-modules-autolinking-1.2.0"
- sources."fs-extra-9.1.0"
- sources."path-key-2.0.1"
- sources."regenerator-runtime-0.14.1"
- sources."semver-5.7.2"
- sources."shebang-command-1.2.0"
- sources."shebang-regex-1.0.0"
+ sources."@babel/code-frame-7.10.4"
+ sources."@babel/runtime-7.24.8"
+ sources."@expo/config-8.0.5"
+ sources."@expo/config-plugins-6.0.2"
+ sources."debug-4.3.5"
+ sources."ms-2.1.2"
+ sources."semver-7.6.3"
+ sources."slash-3.0.0"
sources."uuid-3.4.0"
- sources."which-1.3.1"
];
})
sources."expo-application-5.1.1"
(sources."expo-asset-8.9.2" // {
dependencies = [
+ sources."@babel/code-frame-7.10.4"
sources."@expo/config-8.0.5"
sources."@expo/config-plugins-6.0.2"
- sources."@expo/config-types-48.0.0"
+ sources."debug-4.3.5"
sources."expo-constants-14.3.0"
sources."expo-file-system-15.3.0"
- sources."semver-7.6.2"
+ sources."ms-2.1.2"
+ sources."semver-7.6.3"
+ sources."slash-3.0.0"
sources."uuid-3.4.0"
];
})
(sources."expo-constants-14.2.1" // {
dependencies = [
+ sources."@babel/code-frame-7.10.4"
sources."@expo/config-8.0.5"
sources."@expo/config-plugins-6.0.2"
- sources."@expo/config-types-48.0.0"
- sources."semver-7.6.2"
+ sources."debug-4.3.5"
+ sources."ms-2.1.2"
+ sources."semver-7.6.3"
+ sources."slash-3.0.0"
sources."uuid-3.4.0"
];
})
@@ -69105,47 +68251,25 @@ in
})
sources."expo-font-11.1.1"
sources."expo-keep-awake-12.0.1"
- (sources."expo-modules-autolinking-0.8.1" // {
+ (sources."expo-modules-autolinking-1.2.0" // {
dependencies = [
sources."commander-7.2.0"
sources."fs-extra-9.1.0"
+ sources."jsonfile-6.1.0"
+ sources."universalify-2.0.1"
];
})
sources."expo-modules-core-1.2.7"
(sources."expo-pwa-0.0.125" // {
dependencies = [
- sources."@expo/image-utils-0.3.23"
sources."commander-2.20.0"
- sources."temp-dir-1.0.0"
- sources."tempy-0.3.0"
- sources."type-fest-0.3.1"
- ];
- })
- (sources."express-4.16.4" // {
- dependencies = [
- sources."body-parser-1.18.3"
- sources."bytes-3.0.0"
- sources."debug-2.6.9"
- sources."depd-1.1.2"
- sources."destroy-1.0.4"
- sources."finalhandler-1.1.1"
- sources."http-errors-1.6.3"
- sources."iconv-lite-0.4.23"
- sources."inherits-2.0.3"
- sources."mime-1.4.1"
- sources."ms-2.0.0"
- sources."on-finished-2.3.0"
- sources."qs-6.5.2"
- sources."raw-body-2.3.3"
- sources."safe-buffer-5.1.2"
- sources."send-0.16.2"
- sources."setprototypeof-1.1.0"
- sources."statuses-1.4.0"
];
})
+ sources."express-4.16.4"
sources."fast-deep-equal-3.1.3"
sources."fast-glob-3.3.2"
sources."fast-json-stable-stringify-2.1.0"
+ sources."fast-uri-3.0.1"
sources."fastq-1.17.1"
sources."faye-websocket-0.11.4"
sources."fbemitter-3.0.0"
@@ -69153,28 +68277,33 @@ in
sources."fbjs-css-vars-1.0.2"
sources."fetch-retry-4.1.1"
sources."fill-range-7.1.1"
- (sources."finalhandler-1.1.2" // {
- dependencies = [
- sources."debug-2.6.9"
- sources."ms-2.0.0"
- sources."on-finished-2.3.0"
- sources."statuses-1.5.0"
- ];
- })
+ sources."finalhandler-1.1.1"
(sources."find-babel-config-1.2.2" // {
dependencies = [
+ sources."json5-1.0.2"
sources."path-exists-3.0.0"
];
})
sources."find-cache-dir-3.3.2"
- sources."find-up-5.0.0"
+ (sources."find-up-5.0.0" // {
+ dependencies = [
+ sources."locate-path-6.0.0"
+ sources."p-limit-3.1.0"
+ sources."p-locate-5.0.0"
+ ];
+ })
sources."find-yarn-workspace-root-2.0.0"
sources."follow-redirects-1.15.6"
sources."fontfaceobserver-2.3.0"
sources."for-each-0.3.3"
- (sources."foreground-child-3.2.0" // {
+ (sources."foreground-child-3.2.1" // {
dependencies = [
+ sources."cross-spawn-7.0.3"
+ sources."path-key-3.1.1"
+ sources."shebang-command-2.0.0"
+ sources."shebang-regex-3.0.0"
sources."signal-exit-4.1.0"
+ sources."which-2.0.2"
];
})
sources."form-data-2.5.1"
@@ -69183,6 +68312,11 @@ in
sources."fresh-0.5.2"
(sources."fs-extra-9.0.0" // {
dependencies = [
+ (sources."jsonfile-6.1.0" // {
+ dependencies = [
+ sources."universalify-2.0.1"
+ ];
+ })
sources."universalify-1.0.0"
];
})
@@ -69203,7 +68337,7 @@ in
sources."glob-to-regexp-0.4.1"
sources."globals-11.12.0"
sources."globalthis-1.0.4"
- sources."globby-11.1.0"
+ sources."globby-12.2.0"
sources."gopd-1.0.1"
sources."got-11.8.6"
sources."graceful-fs-4.2.11"
@@ -69236,14 +68370,23 @@ in
sources."htmlparser2-6.1.0"
sources."http-cache-semantics-4.1.1"
sources."http-deceiver-1.2.7"
- sources."http-errors-2.0.0"
+ (sources."http-errors-1.6.3" // {
+ dependencies = [
+ sources."inherits-2.0.3"
+ ];
+ })
sources."http-parser-js-0.5.8"
sources."http-proxy-1.18.1"
sources."http-proxy-middleware-2.0.6"
sources."http2-wrapper-1.0.3"
- sources."https-proxy-agent-5.0.1"
+ (sources."https-proxy-agent-5.0.1" // {
+ dependencies = [
+ sources."debug-4.3.5"
+ sources."ms-2.1.2"
+ ];
+ })
sources."human-signals-2.1.0"
- sources."iconv-lite-0.4.24"
+ sources."iconv-lite-0.4.23"
sources."icss-utils-5.1.0"
sources."ignore-5.3.1"
sources."imurmurhash-0.1.4"
@@ -69263,7 +68406,7 @@ in
sources."is-boolean-object-1.1.2"
sources."is-buffer-1.1.6"
sources."is-callable-1.2.7"
- sources."is-core-module-2.13.1"
+ sources."is-core-module-2.15.0"
sources."is-data-view-1.0.1"
sources."is-date-object-1.0.5"
sources."is-docker-2.2.1"
@@ -69280,12 +68423,8 @@ in
sources."is-number-7.0.0"
sources."is-number-object-1.0.7"
sources."is-path-cwd-2.2.0"
- (sources."is-path-in-cwd-2.1.0" // {
- dependencies = [
- sources."is-path-inside-2.1.0"
- ];
- })
- sources."is-path-inside-3.0.3"
+ sources."is-path-in-cwd-2.1.0"
+ sources."is-path-inside-2.1.0"
sources."is-plain-obj-3.0.0"
sources."is-port-reachable-2.0.1"
(sources."is-reachable-4.0.0" // {
@@ -69314,7 +68453,7 @@ in
sources."is-regex-1.1.4"
sources."is-root-2.1.0"
sources."is-shared-array-buffer-1.0.3"
- sources."is-stream-2.0.1"
+ sources."is-stream-1.1.0"
sources."is-string-1.0.7"
sources."is-symbol-1.0.4"
sources."is-typed-array-1.1.13"
@@ -69323,7 +68462,7 @@ in
sources."is-wsl-2.2.0"
sources."isarray-1.0.0"
sources."isexe-2.0.0"
- sources."jackspeak-3.4.0"
+ sources."jackspeak-3.4.3"
(sources."jest-worker-27.5.1" // {
dependencies = [
sources."has-flag-4.0.0"
@@ -69331,14 +68470,10 @@ in
];
})
sources."jimp-compact-0.16.1"
- sources."joi-17.13.1"
+ sources."joi-17.13.3"
sources."join-component-1.1.0"
sources."js-tokens-4.0.0"
- (sources."js-yaml-3.14.1" // {
- dependencies = [
- sources."argparse-1.0.10"
- ];
- })
+ sources."js-yaml-3.14.1"
sources."jsesc-2.5.2"
sources."json-buffer-3.0.1"
sources."json-parse-even-better-errors-2.3.1"
@@ -69348,24 +68483,20 @@ in
sources."md5-2.2.1"
];
})
- sources."json-schema-traverse-1.0.0"
- sources."json5-1.0.2"
- sources."jsonfile-6.1.0"
+ sources."json-schema-traverse-0.4.1"
+ sources."json5-2.2.3"
+ sources."jsonfile-4.0.0"
sources."keychain-1.3.0"
sources."keyv-4.5.4"
sources."kleur-3.0.3"
sources."latest-version-5.1.0"
- sources."launch-editor-2.6.1"
+ sources."launch-editor-2.8.0"
sources."leven-3.1.0"
sources."lilconfig-2.1.0"
sources."lines-and-columns-1.2.4"
sources."loader-runner-4.3.0"
- (sources."loader-utils-2.0.4" // {
- dependencies = [
- sources."json5-2.2.3"
- ];
- })
- sources."locate-path-6.0.0"
+ sources."loader-utils-2.0.4"
+ sources."locate-path-5.0.0"
sources."lodash-4.17.21"
sources."lodash.debounce-4.0.8"
sources."lodash.memoize-4.1.2"
@@ -69379,7 +68510,11 @@ in
sources."loose-envify-1.4.0"
sources."lower-case-2.0.2"
sources."lowercase-keys-2.0.0"
- sources."lru-cache-10.2.2"
+ (sources."lru-cache-5.1.1" // {
+ dependencies = [
+ sources."yallist-3.1.1"
+ ];
+ })
(sources."make-dir-3.1.0" // {
dependencies = [
sources."semver-6.3.1"
@@ -69398,35 +68533,42 @@ in
sources."methods-1.1.2"
sources."metro-react-native-babel-preset-0.73.9"
sources."micromatch-4.0.7"
- sources."mime-2.6.0"
+ sources."mime-1.4.1"
sources."mime-db-1.52.0"
sources."mime-types-2.1.35"
sources."mimic-fn-1.2.0"
sources."mimic-response-1.0.1"
(sources."mini-css-extract-plugin-2.9.0" // {
dependencies = [
+ sources."ajv-8.17.1"
sources."ajv-keywords-5.1.0"
+ sources."json-schema-traverse-1.0.0"
sources."schema-utils-4.2.0"
];
})
sources."minimalistic-assert-1.0.1"
- sources."minimatch-3.1.2"
+ sources."minimatch-3.0.4"
sources."minimist-1.2.8"
sources."minipass-3.1.6"
sources."minipass-collect-1.0.2"
sources."minipass-flush-1.0.5"
sources."minipass-pipeline-1.2.4"
sources."minizlib-2.1.2"
- sources."mkdirp-0.5.6"
- sources."ms-2.1.2"
+ sources."mkdirp-1.0.4"
+ sources."ms-2.0.0"
sources."multicast-dns-7.2.5"
- sources."mv-2.1.1"
+ (sources."mv-2.1.1" // {
+ dependencies = [
+ sources."mkdirp-0.5.6"
+ ];
+ })
sources."mz-2.7.0"
sources."nanoid-3.3.7"
sources."ncp-2.0.0"
(sources."needle-2.9.1" // {
dependencies = [
sources."debug-3.2.7"
+ sources."ms-2.1.3"
];
})
sources."negotiator-0.6.3"
@@ -69438,7 +68580,7 @@ in
sources."node-forge-0.10.0"
sources."node-gyp-build-4.8.1"
sources."node-html-parser-5.4.2"
- sources."node-releases-2.0.14"
+ sources."node-releases-2.0.18"
sources."normalize-path-3.0.0"
sources."normalize-url-6.1.0"
(sources."npm-package-arg-6.1.0" // {
@@ -69447,26 +68589,21 @@ in
sources."semver-5.7.2"
];
})
- (sources."npm-run-path-2.0.2" // {
- dependencies = [
- sources."path-key-2.0.1"
- ];
- })
+ sources."npm-run-path-2.0.2"
sources."nth-check-2.1.1"
sources."nullthrows-1.1.1"
sources."object-assign-4.1.1"
- sources."object-inspect-1.13.1"
+ sources."object-inspect-1.13.2"
sources."object-keys-1.1.1"
sources."object.assign-4.1.5"
sources."obuf-1.1.2"
- sources."on-finished-2.4.1"
+ sources."on-finished-2.3.0"
sources."on-headers-1.0.2"
sources."once-1.4.0"
sources."onetime-2.0.1"
sources."open-8.4.2"
(sources."ora-3.4.0" // {
dependencies = [
- sources."ansi-regex-4.1.1"
sources."chalk-2.4.2"
sources."strip-ansi-5.2.0"
];
@@ -69474,16 +68611,12 @@ in
sources."os-homedir-1.0.2"
sources."os-tmpdir-1.0.2"
sources."osenv-0.1.5"
- (sources."p-any-2.1.0" // {
- dependencies = [
- sources."type-fest-0.3.1"
- ];
- })
+ sources."p-any-2.1.0"
sources."p-cancelable-2.1.1"
sources."p-finally-1.0.0"
- sources."p-limit-3.1.0"
- sources."p-locate-5.0.0"
- sources."p-map-4.0.0"
+ sources."p-limit-2.3.0"
+ sources."p-locate-4.1.0"
+ sources."p-map-3.0.0"
sources."p-retry-4.1.0"
sources."p-some-4.1.0"
sources."p-timeout-3.1.0"
@@ -69507,25 +68640,33 @@ in
sources."lowercase-keys-1.0.1"
sources."normalize-url-4.5.1"
sources."p-cancelable-1.1.0"
- sources."registry-auth-token-3.4.0"
- sources."registry-url-5.1.0"
sources."responselike-1.0.2"
sources."semver-6.3.1"
];
})
+ sources."package-json-from-dist-1.0.0"
sources."param-case-3.0.4"
sources."parse-png-2.1.0"
sources."parseurl-1.3.3"
sources."pascal-case-3.1.2"
- sources."password-prompt-1.1.3"
+ (sources."password-prompt-1.1.3" // {
+ dependencies = [
+ sources."cross-spawn-7.0.3"
+ sources."path-key-3.1.1"
+ sources."shebang-command-2.0.0"
+ sources."shebang-regex-3.0.0"
+ sources."which-2.0.2"
+ ];
+ })
sources."path-browserify-1.0.1"
sources."path-exists-4.0.0"
sources."path-is-absolute-1.0.1"
sources."path-is-inside-1.0.2"
- sources."path-key-3.1.1"
+ sources."path-key-2.0.1"
sources."path-parse-1.0.7"
(sources."path-scurry-1.11.1" // {
dependencies = [
+ sources."lru-cache-10.4.3"
sources."minipass-7.1.2"
];
})
@@ -69540,16 +68681,12 @@ in
(sources."pkg-dir-4.2.0" // {
dependencies = [
sources."find-up-4.1.0"
- sources."locate-path-5.0.0"
- sources."p-limit-2.3.0"
- sources."p-locate-4.1.0"
];
})
(sources."pkg-up-3.1.0" // {
dependencies = [
sources."find-up-3.0.0"
sources."locate-path-3.0.0"
- sources."p-limit-2.3.0"
sources."p-locate-3.0.0"
sources."path-exists-3.0.0"
];
@@ -69557,7 +68694,7 @@ in
sources."plist-3.1.0"
sources."pngjs-3.4.0"
sources."possible-typed-array-names-1.0.0"
- sources."postcss-8.4.38"
+ sources."postcss-8.4.40"
sources."postcss-calc-8.2.4"
sources."postcss-colormin-5.3.1"
sources."postcss-convert-values-5.1.3"
@@ -69587,7 +68724,7 @@ in
sources."postcss-ordered-values-5.1.3"
sources."postcss-reduce-initial-5.1.2"
sources."postcss-reduce-transforms-5.1.0"
- sources."postcss-selector-parser-6.1.0"
+ sources."postcss-selector-parser-6.1.1"
sources."postcss-svgo-5.1.0"
sources."postcss-unique-selectors-5.1.1"
sources."postcss-value-parser-4.2.0"
@@ -69612,32 +68749,28 @@ in
sources."pump-3.0.0"
sources."punycode-2.3.1"
sources."qrcode-terminal-0.11.0"
- sources."qs-6.11.0"
+ sources."qs-6.5.2"
sources."querystringify-2.2.0"
sources."queue-microtask-1.2.3"
sources."quick-lru-5.1.1"
sources."randombytes-2.1.0"
sources."range-parser-1.2.1"
- sources."raw-body-2.5.2"
+ sources."raw-body-2.3.3"
sources."rc-1.2.8"
sources."react-is-17.0.2"
sources."react-refresh-0.4.3"
sources."read-chunk-3.2.0"
sources."read-last-lines-1.6.0"
- (sources."readable-stream-2.3.8" // {
- dependencies = [
- sources."safe-buffer-5.1.2"
- ];
- })
+ sources."readable-stream-2.3.8"
sources."readdirp-3.6.0"
sources."regenerate-1.4.2"
sources."regenerate-unicode-properties-10.1.1"
- sources."regenerator-runtime-0.13.11"
+ sources."regenerator-runtime-0.14.1"
sources."regenerator-transform-0.15.2"
sources."regexp.prototype.flags-1.5.2"
sources."regexpu-core-5.3.2"
- sources."registry-auth-token-3.3.2"
- sources."registry-url-3.1.0"
+ sources."registry-auth-token-3.4.0"
+ sources."registry-url-5.1.0"
(sources."regjsparser-0.9.1" // {
dependencies = [
sources."jsesc-0.5.0"
@@ -69647,14 +68780,10 @@ in
sources."remove-trailing-slash-0.1.1"
sources."renderkid-3.0.0"
sources."require-from-string-2.0.2"
- (sources."requireg-0.2.2" // {
- dependencies = [
- sources."resolve-1.7.1"
- ];
- })
+ sources."requireg-0.2.2"
sources."requires-port-1.0.0"
sources."reselect-4.1.8"
- sources."resolve-1.22.8"
+ sources."resolve-1.7.1"
sources."resolve-alpn-1.2.1"
sources."resolve-from-5.0.0"
sources."responselike-2.0.1"
@@ -69673,17 +68802,12 @@ in
sources."isarray-2.0.5"
];
})
- sources."safe-buffer-5.2.1"
+ sources."safe-buffer-5.1.2"
sources."safe-json-stringify-1.2.0"
sources."safe-regex-test-1.0.3"
sources."safer-buffer-2.1.2"
sources."sax-1.4.1"
- (sources."schema-utils-2.7.1" // {
- dependencies = [
- sources."ajv-6.12.6"
- sources."json-schema-traverse-0.4.1"
- ];
- })
+ sources."schema-utils-3.3.0"
sources."select-hose-2.0.0"
(sources."selfsigned-2.4.1" // {
dependencies = [
@@ -69691,51 +68815,21 @@ in
];
})
sources."semver-7.3.2"
- (sources."send-0.18.0" // {
+ sources."send-0.16.2"
+ (sources."serialize-error-6.0.0" // {
dependencies = [
- (sources."debug-2.6.9" // {
- dependencies = [
- sources."ms-2.0.0"
- ];
- })
- sources."mime-1.6.0"
- sources."ms-2.1.3"
+ sources."type-fest-0.12.0"
];
})
- sources."serialize-error-6.0.0"
sources."serialize-javascript-6.0.2"
- (sources."serve-index-1.9.1" // {
- dependencies = [
- sources."debug-2.6.9"
- sources."depd-1.1.2"
- sources."http-errors-1.6.3"
- sources."inherits-2.0.3"
- sources."ms-2.0.0"
- sources."setprototypeof-1.1.0"
- sources."statuses-1.5.0"
- ];
- })
- (sources."serve-static-1.13.2" // {
- dependencies = [
- sources."debug-2.6.9"
- sources."depd-1.1.2"
- sources."destroy-1.0.4"
- sources."http-errors-1.6.3"
- sources."inherits-2.0.3"
- sources."mime-1.4.1"
- sources."ms-2.0.0"
- sources."on-finished-2.3.0"
- sources."send-0.16.2"
- sources."setprototypeof-1.1.0"
- sources."statuses-1.4.0"
- ];
- })
+ sources."serve-index-1.9.1"
+ sources."serve-static-1.13.2"
sources."set-function-length-1.2.2"
sources."set-function-name-2.0.2"
sources."setimmediate-1.0.5"
- sources."setprototypeof-1.2.0"
- sources."shebang-command-2.0.0"
- sources."shebang-regex-3.0.0"
+ sources."setprototypeof-1.1.0"
+ sources."shebang-command-1.2.0"
+ sources."shebang-regex-1.0.0"
sources."shell-quote-1.8.1"
sources."side-channel-1.0.6"
sources."signal-exit-3.0.7"
@@ -69745,7 +68839,7 @@ in
];
})
sources."sisteransi-1.0.5"
- sources."slash-3.0.0"
+ sources."slash-4.0.0"
sources."slugify-1.6.6"
sources."sockjs-0.3.24"
sources."source-list-map-2.0.1"
@@ -69761,9 +68855,16 @@ in
sources."source-map-0.5.7"
];
})
- sources."spdy-4.0.2"
+ (sources."spdy-4.0.2" // {
+ dependencies = [
+ sources."debug-4.3.5"
+ sources."ms-2.1.2"
+ ];
+ })
(sources."spdy-transport-3.0.0" // {
dependencies = [
+ sources."debug-4.3.5"
+ sources."ms-2.1.2"
sources."readable-stream-3.6.2"
];
})
@@ -69771,16 +68872,12 @@ in
sources."sprintf-js-1.0.3"
sources."ssri-8.0.1"
sources."stable-0.1.8"
- sources."statuses-2.0.1"
+ sources."statuses-1.4.0"
sources."stream-buffers-2.2.0"
- (sources."stream-parser-0.3.1" // {
- dependencies = [
- sources."debug-2.6.9"
- sources."ms-2.0.0"
- ];
- })
+ sources."stream-parser-0.3.1"
(sources."string-width-5.1.2" // {
dependencies = [
+ sources."ansi-regex-6.0.1"
sources."strip-ansi-7.1.0"
];
})
@@ -69792,11 +68889,7 @@ in
sources."string.prototype.trim-1.2.9"
sources."string.prototype.trimend-1.0.8"
sources."string.prototype.trimstart-1.0.8"
- (sources."string_decoder-1.1.1" // {
- dependencies = [
- sources."safe-buffer-5.1.2"
- ];
- })
+ sources."string_decoder-1.1.1"
(sources."strip-ansi-6.0.1" // {
dependencies = [
sources."ansi-regex-5.0.1"
@@ -69817,12 +68910,12 @@ in
dependencies = [
sources."brace-expansion-2.0.1"
sources."commander-4.1.1"
- sources."glob-10.4.1"
- sources."minimatch-9.0.4"
+ sources."glob-10.4.5"
+ sources."minimatch-9.0.5"
sources."minipass-7.1.2"
];
})
- sources."sudo-prompt-9.1.1"
+ sources."sudo-prompt-8.2.5"
sources."supports-color-5.5.0"
(sources."supports-hyperlinks-2.3.0" // {
dependencies = [
@@ -69840,31 +68933,33 @@ in
(sources."tar-6.2.1" // {
dependencies = [
sources."minipass-5.0.0"
- sources."mkdirp-1.0.4"
];
})
- sources."temp-dir-2.0.0"
+ sources."temp-dir-1.0.0"
(sources."tempy-0.7.1" // {
dependencies = [
+ sources."array-union-2.1.0"
sources."crypto-random-string-2.0.0"
+ sources."del-6.1.1"
+ sources."globby-11.1.0"
+ sources."is-path-inside-3.0.3"
+ sources."is-stream-2.0.1"
+ sources."p-map-4.0.0"
+ sources."rimraf-3.0.2"
+ sources."slash-3.0.0"
+ sources."temp-dir-2.0.0"
sources."type-fest-0.16.0"
sources."unique-string-2.0.0"
];
})
sources."terminal-link-2.1.1"
- (sources."terser-5.31.1" // {
+ (sources."terser-5.31.3" // {
dependencies = [
sources."commander-2.20.3"
sources."source-map-support-0.5.21"
];
})
- (sources."terser-webpack-plugin-5.3.10" // {
- dependencies = [
- sources."ajv-6.12.6"
- sources."json-schema-traverse-0.4.1"
- sources."schema-utils-3.3.0"
- ];
- })
+ sources."terser-webpack-plugin-5.3.10"
sources."text-table-0.2.0"
sources."thenify-3.3.1"
sources."thenify-all-1.6.0"
@@ -69881,7 +68976,7 @@ in
sources."ts-interface-checker-0.1.13"
sources."tslib-2.6.3"
sources."turndown-7.0.0"
- sources."type-fest-0.12.0"
+ sources."type-fest-0.3.1"
sources."type-is-1.6.18"
sources."typed-array-buffer-1.0.2"
sources."typed-array-byte-length-1.0.1"
@@ -69899,11 +68994,16 @@ in
sources."unique-filename-1.1.1"
sources."unique-slug-2.0.2"
sources."unique-string-1.0.0"
- sources."universalify-2.0.1"
+ sources."universalify-0.1.2"
sources."unpipe-1.0.0"
sources."untildify-3.0.3"
- sources."update-browserslist-db-1.0.16"
- sources."update-check-1.5.3"
+ sources."update-browserslist-db-1.1.0"
+ (sources."update-check-1.5.3" // {
+ dependencies = [
+ sources."registry-auth-token-3.3.2"
+ sources."registry-url-3.1.0"
+ ];
+ })
sources."uri-js-4.4.1"
sources."url-join-4.0.0"
sources."url-parse-1.5.10"
@@ -69924,41 +69024,58 @@ in
sources."wbuf-1.7.3"
sources."wcwidth-1.0.1"
sources."webidl-conversions-3.0.1"
- (sources."webpack-5.92.0" // {
- dependencies = [
- sources."ajv-6.12.6"
- sources."json-schema-traverse-0.4.1"
- sources."schema-utils-3.3.0"
- ];
- })
+ sources."webpack-5.93.0"
(sources."webpack-dev-middleware-5.3.4" // {
dependencies = [
+ sources."ajv-8.17.1"
sources."ajv-keywords-5.1.0"
+ sources."json-schema-traverse-1.0.0"
sources."schema-utils-4.2.0"
];
})
(sources."webpack-dev-server-4.15.2" // {
dependencies = [
sources."@types/retry-0.12.0"
+ sources."ajv-8.17.1"
sources."ajv-keywords-5.1.0"
+ sources."body-parser-1.20.2"
+ sources."bytes-3.1.2"
sources."content-disposition-0.5.4"
sources."cookie-0.6.0"
- sources."debug-2.6.9"
+ sources."cross-spawn-7.0.3"
sources."default-gateway-6.0.3"
+ sources."depd-2.0.0"
+ sources."destroy-1.2.0"
sources."execa-5.1.1"
sources."express-4.19.2"
sources."finalhandler-1.2.0"
sources."get-stream-6.0.1"
+ sources."http-errors-2.0.0"
+ sources."iconv-lite-0.4.24"
sources."ipaddr.js-2.2.0"
+ sources."is-stream-2.0.1"
+ sources."json-schema-traverse-1.0.0"
+ sources."mime-1.6.0"
sources."mimic-fn-2.1.0"
- sources."ms-2.0.0"
+ sources."ms-2.1.3"
sources."npm-run-path-4.0.1"
+ sources."on-finished-2.4.1"
sources."onetime-5.1.2"
sources."p-retry-4.6.2"
+ sources."path-key-3.1.1"
+ sources."qs-6.11.0"
+ sources."raw-body-2.5.2"
sources."retry-0.13.1"
sources."rimraf-3.0.2"
+ sources."safe-buffer-5.2.1"
sources."schema-utils-4.2.0"
+ sources."send-0.18.0"
sources."serve-static-1.15.0"
+ sources."setprototypeof-1.2.0"
+ sources."shebang-command-2.0.0"
+ sources."shebang-regex-3.0.0"
+ sources."statuses-2.0.1"
+ sources."which-2.0.2"
];
})
(sources."webpack-manifest-plugin-4.1.1" // {
@@ -69970,7 +69087,7 @@ in
sources."websocket-driver-0.7.4"
sources."websocket-extensions-0.1.4"
sources."whatwg-url-5.0.0"
- sources."which-2.0.2"
+ sources."which-1.3.1"
sources."which-boxed-primitive-1.0.2"
sources."which-typed-array-1.1.15"
(sources."widest-line-3.1.0" // {
@@ -70001,7 +69118,7 @@ in
})
sources."wrappy-1.0.2"
sources."write-file-atomic-2.4.3"
- sources."ws-8.17.0"
+ sources."ws-8.18.0"
(sources."xcode-3.0.1" // {
dependencies = [
sources."uuid-7.0.3"
@@ -70010,8 +69127,6 @@ in
(sources."xdl-60.0.10" // {
dependencies = [
sources."bplist-parser-0.3.2"
- sources."minimatch-3.0.4"
- sources."p-map-3.0.0"
];
})
(sources."xml2js-0.4.23" // {
@@ -70053,13 +69168,9 @@ in
sources."escape-string-regexp-1.0.5"
];
})
- (sources."@puppeteer/browsers-2.2.3" // {
- dependencies = [
- sources."debug-4.3.4"
- ];
- })
+ sources."@puppeteer/browsers-2.3.0"
sources."@tootallnate/quickjs-emscripten-0.23.0"
- sources."@types/node-20.14.2"
+ sources."@types/node-20.14.12"
sources."@types/prop-types-15.7.12"
sources."@types/react-18.3.3"
sources."@types/yauzl-2.10.3"
@@ -70078,7 +69189,7 @@ in
sources."bufferutil-4.0.8"
sources."callsites-3.1.0"
sources."chalk-5.3.0"
- sources."chromium-bidi-0.5.23"
+ sources."chromium-bidi-0.6.2"
sources."cli-boxes-3.0.0"
sources."cli-cursor-4.0.0"
sources."cli-spinners-2.9.2"
@@ -70109,7 +69220,7 @@ in
sources."data-uri-to-buffer-6.0.2"
sources."debug-4.3.5"
sources."degenerator-5.0.1"
- sources."devtools-protocol-0.0.1299070"
+ sources."devtools-protocol-0.0.1312386"
sources."emoji-regex-10.3.0"
sources."end-of-stream-1.4.4"
sources."env-paths-2.2.1"
@@ -70132,7 +69243,7 @@ in
sources."graceful-fs-4.2.11"
sources."has-flag-3.0.0"
sources."http-proxy-agent-7.0.2"
- sources."https-proxy-agent-7.0.4"
+ sources."https-proxy-agent-7.0.5"
sources."ieee754-1.2.1"
sources."import-fresh-3.3.0"
sources."indent-string-5.0.0"
@@ -70159,7 +69270,7 @@ in
sources."node-gyp-build-4.8.1"
sources."once-1.4.0"
sources."onetime-5.1.2"
- sources."pac-proxy-agent-7.0.1"
+ sources."pac-proxy-agent-7.0.2"
sources."pac-resolver-7.0.1"
sources."parent-module-1.0.1"
sources."parse-json-5.2.0"
@@ -70170,14 +69281,14 @@ in
sources."proxy-agent-6.4.0"
sources."proxy-from-env-1.1.0"
sources."pump-3.0.0"
- sources."puppeteer-22.11.0"
- sources."puppeteer-core-22.11.0"
+ sources."puppeteer-22.14.0"
+ sources."puppeteer-core-22.14.0"
sources."queue-tick-1.0.1"
sources."react-18.3.1"
(sources."react-devtools-core-4.28.5" // {
dependencies = [
sources."utf-8-validate-5.0.10"
- sources."ws-7.5.9"
+ sources."ws-7.5.10"
];
})
sources."react-reconciler-0.29.2"
@@ -70185,11 +69296,7 @@ in
sources."resolve-from-4.0.0"
sources."restore-cursor-4.0.0"
sources."scheduler-0.23.2"
- (sources."semver-7.6.0" // {
- dependencies = [
- sources."lru-cache-6.0.0"
- ];
- })
+ sources."semver-7.6.3"
sources."shell-quote-1.8.1"
sources."signal-exit-3.0.7"
(sources."slice-ansi-7.1.0" // {
@@ -70199,21 +69306,21 @@ in
})
sources."smart-buffer-4.2.0"
sources."socks-2.8.3"
- sources."socks-proxy-agent-8.0.3"
+ sources."socks-proxy-agent-8.0.4"
sources."source-map-0.6.1"
sources."sprintf-js-1.1.3"
sources."stack-utils-2.0.6"
sources."streamx-2.18.0"
- sources."string-width-7.1.0"
+ sources."string-width-7.2.0"
sources."strip-ansi-7.1.0"
sources."supports-color-5.5.0"
- sources."tar-fs-3.0.5"
+ sources."tar-fs-3.0.6"
sources."tar-stream-3.1.7"
- sources."text-decoder-1.1.0"
+ sources."text-decoder-1.1.1"
sources."through-2.3.8"
sources."tslib-2.6.3"
- sources."type-fest-4.20.0"
- sources."typescript-5.4.5"
+ sources."type-fest-4.23.0"
+ sources."typescript-5.5.4"
sources."unbzip2-stream-1.4.3"
sources."undici-types-5.26.5"
sources."unicorn-magic-0.2.0"
@@ -70223,9 +69330,8 @@ in
sources."widest-line-5.0.0"
sources."wrap-ansi-9.0.0"
sources."wrappy-1.0.2"
- sources."ws-8.17.0"
+ sources."ws-8.18.0"
sources."y18n-5.0.8"
- sources."yallist-4.0.0"
(sources."yargs-17.7.2" // {
dependencies = [
sources."ansi-regex-5.0.1"
@@ -70253,10 +69359,10 @@ in
fauna-shell = nodeEnv.buildNodePackage {
name = "fauna-shell";
packageName = "fauna-shell";
- version = "1.3.0";
+ version = "1.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/fauna-shell/-/fauna-shell-1.3.0.tgz";
- sha512 = "V3z3HudBRv8dsLgvyZIpj7AlUstu3n0uztAtYWblLMwbld1/7Az/1AIpWZRlweZJd8XkaCPbL10xXy/DeAqbqw==";
+ url = "https://registry.npmjs.org/fauna-shell/-/fauna-shell-1.3.1.tgz";
+ sha512 = "ILJSsLuUers5JpuYvtW6cNUF/AJ9Tay73wnsfA5dPjktt/hs0KCafK1pZ3ZC2ICiXe7SorcS9Pqlni5njqHkcg==";
};
dependencies = [
sources."@cspotcode/source-map-support-0.8.1"
@@ -70270,9 +69376,9 @@ in
sources."@inquirer/prompts-3.3.2"
sources."@inquirer/rawlist-1.2.16"
sources."@inquirer/select-1.3.3"
- sources."@inquirer/type-1.3.3"
+ sources."@inquirer/type-1.5.1"
sources."@jridgewell/resolve-uri-3.1.2"
- sources."@jridgewell/sourcemap-codec-1.4.15"
+ sources."@jridgewell/sourcemap-codec-1.5.0"
sources."@jridgewell/trace-mapping-0.3.9"
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
@@ -70295,20 +69401,20 @@ in
sources."@oclif/plugin-help-5.2.20"
sources."@oclif/plugin-plugins-2.4.7"
sources."@oclif/screen-1.0.4"
- sources."@swc/core-1.5.29"
+ sources."@swc/core-1.7.1"
sources."@swc/counter-0.1.3"
- sources."@swc/helpers-0.5.11"
- sources."@swc/types-0.1.8"
- sources."@swc/wasm-1.5.29"
+ sources."@swc/helpers-0.5.12"
+ sources."@swc/types-0.1.12"
+ sources."@swc/wasm-1.7.1"
sources."@tsconfig/node10-1.0.11"
sources."@tsconfig/node12-1.0.11"
sources."@tsconfig/node14-1.0.3"
sources."@tsconfig/node16-1.0.4"
- sources."@types/cli-progress-3.11.5"
+ sources."@types/cli-progress-3.11.6"
sources."@types/mute-stream-0.0.4"
- sources."@types/node-20.14.2"
+ sources."@types/node-20.14.12"
sources."@types/wrap-ansi-3.0.0"
- sources."acorn-8.12.0"
+ sources."acorn-8.12.1"
sources."acorn-walk-8.3.3"
sources."ansi-align-3.0.1"
sources."ansi-escapes-4.3.2"
@@ -70461,7 +69567,7 @@ in
sources."is-unicode-supported-0.1.0"
sources."is-wsl-2.2.0"
sources."isexe-2.0.0"
- sources."jake-10.9.1"
+ sources."jake-10.9.2"
sources."js-yaml-3.14.1"
sources."json-parse-better-errors-1.0.2"
sources."jsonfile-6.1.0"
@@ -70521,7 +69627,7 @@ in
sources."rxjs-7.8.1"
sources."safe-buffer-5.2.1"
sources."safer-buffer-2.1.2"
- sources."semver-7.6.2"
+ sources."semver-7.6.3"
sources."shebang-command-2.0.0"
sources."shebang-regex-3.0.0"
sources."signal-exit-4.1.0"
@@ -70551,7 +69657,7 @@ in
sources."tunnel-agent-0.6.0"
sources."type-check-0.3.2"
sources."type-fest-0.21.3"
- sources."typescript-5.4.5"
+ sources."typescript-5.5.4"
sources."undici-types-5.26.5"
sources."universalify-2.0.1"
sources."util-deprecate-1.0.2"
@@ -70586,8 +69692,7 @@ in
sha512 = "+eT/06NHwPXfzUSe4vDjjam9gZtalhwDYOq0xX6va88BLZd8APbo17Ajkz4hdnr2Gpls5+xFUqMeiklAQtBHYQ==";
};
dependencies = [
- sources."@inquirer/figures-1.0.3"
- sources."@ljharb/through-2.3.13"
+ sources."@inquirer/figures-1.0.5"
sources."aggregate-error-5.0.0"
sources."ansi-escapes-4.3.2"
sources."ansi-regex-6.0.1"
@@ -70595,7 +69700,6 @@ in
sources."base64-js-1.5.1"
sources."bl-4.1.0"
sources."buffer-5.7.1"
- sources."call-bind-1.0.7"
sources."chalk-5.3.0"
sources."chardet-0.7.0"
sources."clean-stack-5.2.0"
@@ -70608,10 +69712,7 @@ in
sources."color-name-1.1.4"
sources."cross-spawn-7.0.3"
sources."defaults-1.0.4"
- sources."define-data-property-1.1.4"
sources."emoji-regex-10.3.0"
- sources."es-define-property-1.0.0"
- sources."es-errors-1.3.0"
sources."esc-exit-3.0.1"
sources."escape-string-regexp-5.0.0"
sources."execa-8.0.1"
@@ -70622,23 +69723,16 @@ in
];
})
sources."fkill-9.0.0"
- sources."function-bind-1.1.2"
sources."fuzzy-search-3.2.1"
sources."get-east-asian-width-1.2.0"
- sources."get-intrinsic-1.2.4"
sources."get-stream-8.0.1"
- sources."gopd-1.0.1"
sources."has-flag-4.0.0"
- sources."has-property-descriptors-1.0.2"
- sources."has-proto-1.0.3"
- sources."has-symbols-1.0.3"
- sources."hasown-2.0.2"
sources."human-signals-5.0.0"
sources."iconv-lite-0.4.24"
sources."ieee754-1.2.1"
sources."indent-string-5.0.0"
sources."inherits-2.0.4"
- (sources."inquirer-9.2.23" // {
+ (sources."inquirer-9.3.6" // {
dependencies = [
sources."ansi-regex-5.0.1"
sources."emoji-regex-8.0.0"
@@ -70658,7 +69752,6 @@ in
sources."is-stream-3.0.0"
sources."is-unicode-supported-0.1.0"
sources."isexe-2.0.0"
- sources."lodash-4.17.21"
(sources."log-symbols-4.1.0" // {
dependencies = [
sources."ansi-styles-4.3.0"
@@ -70702,12 +69795,11 @@ in
sources."rxjs-7.8.1"
sources."safe-buffer-5.2.1"
sources."safer-buffer-2.1.2"
- sources."set-function-length-1.2.2"
sources."shebang-command-2.0.0"
sources."shebang-regex-3.0.0"
sources."signal-exit-4.1.0"
sources."slice-ansi-5.0.0"
- sources."string-width-7.1.0"
+ sources."string-width-7.2.0"
sources."string_decoder-1.3.0"
sources."strip-ansi-7.1.0"
sources."strip-final-newline-3.0.0"
@@ -70736,6 +69828,7 @@ in
sources."strip-ansi-6.0.1"
];
})
+ sources."yoctocolors-cjs-2.1.2"
];
buildInputs = globalBuildInputs;
meta = {
@@ -70758,14 +69851,14 @@ in
dependencies = [
sources."@ethereumjs/rlp-4.0.1"
sources."@ethereumjs/util-8.1.0"
- sources."@noble/curves-1.4.0"
+ sources."@noble/curves-1.4.2"
sources."@noble/hashes-1.4.0"
sources."@scure/base-1.1.7"
sources."@scure/bip32-1.4.0"
sources."@scure/bip39-1.3.0"
sources."@types/atob-2.1.4"
sources."@types/inquirer-6.5.0"
- sources."@types/node-20.14.2"
+ sources."@types/node-20.14.12"
sources."@types/through-0.0.33"
sources."ajv-6.12.6"
sources."ansi-escapes-4.3.2"
@@ -70811,7 +69904,7 @@ in
sources."escape-string-regexp-1.0.5"
sources."esprima-4.0.1"
sources."ethereum-bloom-filters-1.1.0"
- sources."ethereum-cryptography-2.2.0"
+ sources."ethereum-cryptography-2.2.1"
(sources."ethjs-unit-0.1.6" // {
dependencies = [
sources."bn.js-4.11.6"
@@ -71147,7 +70240,7 @@ in
sources."kind-of-6.0.3"
sources."kuler-2.0.0"
sources."lazy-1.0.11"
- sources."logform-2.6.0"
+ sources."logform-2.6.1"
sources."make-dir-1.3.0"
sources."map-cache-0.2.2"
sources."map-stream-0.1.0"
@@ -71181,7 +70274,7 @@ in
sources."kind-of-3.2.2"
];
})
- sources."object-inspect-1.13.1"
+ sources."object-inspect-1.13.2"
sources."object-is-1.1.6"
sources."object-keys-1.1.1"
sources."object-visit-1.0.1"
@@ -71322,12 +70415,12 @@ in
sources."which-boxed-primitive-1.0.2"
sources."which-collection-1.0.2"
sources."which-typed-array-1.1.15"
- (sources."winston-3.13.0" // {
+ (sources."winston-3.13.1" // {
dependencies = [
sources."async-3.2.5"
];
})
- sources."winston-transport-4.7.0"
+ sources."winston-transport-4.7.1"
sources."wordwrap-0.0.3"
sources."wrappy-1.0.2"
sources."write-file-atomic-2.4.3"
@@ -71346,10 +70439,10 @@ in
fx = nodeEnv.buildNodePackage {
name = "fx";
packageName = "fx";
- version = "34.0.0";
+ version = "35.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/fx/-/fx-34.0.0.tgz";
- sha512 = "/fZih3/WLsrtlaj2mahjWxAmyuikmcl3D5kKPqLtFmEilLsy9wp0+/vEmfvYXXhwJc+ajtCFDCf+yttXmPMHSQ==";
+ url = "https://registry.npmjs.org/fx/-/fx-35.0.0.tgz";
+ sha512 = "O07q+Lknrom5RUX/u53tjo2KTTLUnL0K703JbqMYb19ORijfJNvijzFqqYXEjdk25T9R14S6t6wHD8fCWXCM0g==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -71378,7 +70471,7 @@ in
})
sources."@types/bn.js-5.1.5"
sources."@types/lru-cache-5.1.1"
- sources."@types/node-20.14.2"
+ sources."@types/node-20.14.12"
sources."@types/seedrandom-3.0.1"
sources."abstract-level-1.0.3"
(sources."abstract-leveldown-7.2.0" // {
@@ -71427,20 +70520,20 @@ in
dependencies = [
sources."@ampproject/remapping-2.3.0"
sources."@babel/code-frame-7.24.7"
- sources."@babel/compat-data-7.24.7"
- (sources."@babel/core-7.24.7" // {
+ sources."@babel/compat-data-7.24.9"
+ (sources."@babel/core-7.24.9" // {
dependencies = [
sources."semver-6.3.1"
];
})
- sources."@babel/generator-7.24.7"
+ sources."@babel/generator-7.24.10"
sources."@babel/helper-annotate-as-pure-7.24.7"
- (sources."@babel/helper-compilation-targets-7.24.7" // {
+ (sources."@babel/helper-compilation-targets-7.24.8" // {
dependencies = [
sources."semver-6.3.1"
];
})
- (sources."@babel/helper-create-class-features-plugin-7.24.7" // {
+ (sources."@babel/helper-create-class-features-plugin-7.24.8" // {
dependencies = [
sources."semver-6.3.1"
];
@@ -71448,40 +70541,40 @@ in
sources."@babel/helper-environment-visitor-7.24.7"
sources."@babel/helper-function-name-7.24.7"
sources."@babel/helper-hoist-variables-7.24.7"
- sources."@babel/helper-member-expression-to-functions-7.24.7"
+ sources."@babel/helper-member-expression-to-functions-7.24.8"
sources."@babel/helper-module-imports-7.24.7"
- sources."@babel/helper-module-transforms-7.24.7"
+ sources."@babel/helper-module-transforms-7.24.9"
sources."@babel/helper-optimise-call-expression-7.24.7"
- sources."@babel/helper-plugin-utils-7.24.7"
+ sources."@babel/helper-plugin-utils-7.24.8"
sources."@babel/helper-replace-supers-7.24.7"
sources."@babel/helper-simple-access-7.24.7"
sources."@babel/helper-skip-transparent-expression-wrappers-7.24.7"
sources."@babel/helper-split-export-declaration-7.24.7"
- sources."@babel/helper-string-parser-7.24.7"
+ sources."@babel/helper-string-parser-7.24.8"
sources."@babel/helper-validator-identifier-7.24.7"
- sources."@babel/helper-validator-option-7.24.7"
- sources."@babel/helpers-7.24.7"
+ sources."@babel/helper-validator-option-7.24.8"
+ sources."@babel/helpers-7.24.8"
(sources."@babel/highlight-7.24.7" // {
dependencies = [
sources."chalk-2.4.2"
];
})
- sources."@babel/parser-7.24.7"
+ sources."@babel/parser-7.24.8"
sources."@babel/plugin-syntax-jsx-7.24.7"
sources."@babel/plugin-syntax-typescript-7.24.7"
- sources."@babel/plugin-transform-modules-commonjs-7.24.7"
- sources."@babel/plugin-transform-typescript-7.24.7"
+ sources."@babel/plugin-transform-modules-commonjs-7.24.8"
+ sources."@babel/plugin-transform-typescript-7.24.8"
sources."@babel/preset-typescript-7.24.7"
- sources."@babel/runtime-7.24.7"
+ sources."@babel/runtime-7.24.8"
sources."@babel/template-7.24.7"
- sources."@babel/traverse-7.24.7"
- sources."@babel/types-7.24.7"
+ sources."@babel/traverse-7.24.8"
+ sources."@babel/types-7.24.9"
sources."@hapi/hoek-9.3.0"
sources."@hapi/topo-5.1.0"
sources."@jridgewell/gen-mapping-0.3.5"
sources."@jridgewell/resolve-uri-3.1.2"
sources."@jridgewell/set-array-1.2.1"
- sources."@jridgewell/sourcemap-codec-1.4.15"
+ sources."@jridgewell/sourcemap-codec-1.5.0"
sources."@jridgewell/trace-mapping-0.3.25"
sources."@lmdb/lmdb-darwin-arm64-2.5.3"
sources."@lmdb/lmdb-darwin-x64-2.5.3"
@@ -71501,7 +70594,7 @@ in
sources."@types/common-tags-1.8.4"
sources."@types/http-cache-semantics-4.0.4"
sources."@types/keyv-3.1.4"
- sources."@types/node-20.14.2"
+ sources."@types/node-20.14.12"
sources."@types/node-fetch-2.6.11"
sources."@types/responselike-1.0.3"
sources."@types/yoga-layout-1.9.2"
@@ -71517,7 +70610,7 @@ in
sources."better-opn-2.1.1"
sources."boolbase-1.0.0"
sources."boxen-5.1.2"
- sources."browserslist-4.23.1"
+ sources."browserslist-4.23.2"
sources."cacheable-lookup-5.0.4"
(sources."cacheable-request-7.0.4" // {
dependencies = [
@@ -71525,7 +70618,7 @@ in
];
})
sources."camelcase-6.3.0"
- sources."caniuse-lite-1.0.30001634"
+ sources."caniuse-lite-1.0.30001643"
(sources."chalk-4.1.2" // {
dependencies = [
sources."ansi-styles-4.3.0"
@@ -71583,7 +70676,7 @@ in
sources."domhandler-4.3.1"
sources."domutils-2.8.0"
sources."dot-prop-5.3.0"
- sources."electron-to-chromium-1.4.802"
+ sources."electron-to-chromium-1.5.1"
sources."emoji-regex-8.0.0"
sources."encoding-0.1.13"
sources."end-of-stream-1.4.4"
@@ -71661,7 +70754,7 @@ in
sources."is-wsl-2.2.0"
sources."is64bit-2.0.0"
sources."isexe-2.0.0"
- sources."joi-17.13.1"
+ sources."joi-17.13.3"
sources."js-tokens-4.0.0"
sources."jsesc-2.5.2"
sources."json-buffer-3.0.1"
@@ -71686,13 +70779,13 @@ in
sources."mimic-fn-4.0.0"
sources."mimic-response-1.0.1"
sources."ms-2.1.2"
- sources."msgpackr-1.10.2"
+ sources."msgpackr-1.11.0"
sources."mute-stream-0.0.8"
sources."node-addon-api-4.3.0"
sources."node-fetch-2.7.0"
sources."node-gyp-build-optional-packages-5.0.3"
sources."node-object-hash-2.3.10"
- sources."node-releases-2.0.14"
+ sources."node-releases-2.0.18"
sources."normalize-url-6.1.0"
(sources."npm-run-path-5.3.0" // {
dependencies = [
@@ -71751,7 +70844,7 @@ in
sources."rxjs-6.6.7"
sources."safe-buffer-5.2.1"
sources."safer-buffer-2.1.2"
- sources."semver-7.6.2"
+ sources."semver-7.6.3"
sources."set-blocking-2.0.0"
sources."shebang-command-2.0.0"
sources."shebang-regex-3.0.0"
@@ -71780,7 +70873,7 @@ in
sources."undici-types-5.26.5"
sources."unique-string-2.0.0"
sources."universalify-2.0.1"
- sources."update-browserslist-db-1.0.16"
+ sources."update-browserslist-db-1.1.0"
sources."util-deprecate-1.0.2"
sources."utila-0.4.0"
sources."weak-lru-cache-1.2.2"
@@ -71829,15 +70922,15 @@ in
"@gitbeaker/cli" = nodeEnv.buildNodePackage {
name = "_at_gitbeaker_slash_cli";
packageName = "@gitbeaker/cli";
- version = "40.0.3";
+ version = "40.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@gitbeaker/cli/-/cli-40.0.3.tgz";
- sha512 = "1zR4KJ2Pv5nWwxt/5UvCmw8Z2u75fR+BbclTQ/esxMGhQCCtpuu/oWD96MkBaDqZoQqHHTTJOBZk3OCpa2CPdg==";
+ url = "https://registry.npmjs.org/@gitbeaker/cli/-/cli-40.1.2.tgz";
+ sha512 = "jCpOPJaPTDLkQ85KraJOQHHmcBZkIY7p1vsrfhBOQK8hzt8JGR9SmcbsnK13tMWdCnu54XtSsLXiQXslNL77yA==";
};
dependencies = [
- sources."@gitbeaker/core-40.0.3"
- sources."@gitbeaker/requester-utils-40.0.3"
- sources."@gitbeaker/rest-40.0.3"
+ sources."@gitbeaker/core-40.1.2"
+ sources."@gitbeaker/requester-utils-40.1.2"
+ sources."@gitbeaker/rest-40.1.2"
sources."ansi-styles-4.3.0"
sources."call-bind-1.0.7"
sources."chalk-4.1.2"
@@ -71854,9 +70947,9 @@ in
sources."has-proto-1.0.3"
sources."has-symbols-1.0.3"
sources."hasown-2.0.2"
- sources."object-inspect-1.13.1"
+ sources."object-inspect-1.13.2"
sources."picomatch-browser-2.2.6"
- sources."qs-6.12.1"
+ sources."qs-6.12.3"
sources."rate-limiter-flexible-4.0.1"
sources."set-function-length-1.2.2"
sources."side-channel-1.0.6"
@@ -71877,10 +70970,10 @@ in
graphql = nodeEnv.buildNodePackage {
name = "graphql";
packageName = "graphql";
- version = "16.8.2";
+ version = "16.9.0";
src = fetchurl {
- url = "https://registry.npmjs.org/graphql/-/graphql-16.8.2.tgz";
- sha512 = "cvVIBILwuoSyD54U4cF/UXDh5yAobhNV/tPygI4lZhgOIJQE/WLWC4waBRb4I6bDVYb3OVx3lfHbaQOEoUD5sg==";
+ url = "https://registry.npmjs.org/graphql/-/graphql-16.9.0.tgz";
+ sha512 = "GGTKBX4SD7Wdb8mqeDLni2oaRGYQWjWHGKPQ24ZMnUtKfcsVoiv4uX8+LJr1K6U5VW2Lu1BwJnj7uiori0YtRw==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -71925,6 +71018,7 @@ in
sources."cross-fetch-3.0.6"
sources."graphql-15.3.0"
sources."has-flag-4.0.0"
+ sources."node-fetch-2.6.1"
sources."supports-color-7.2.0"
sources."tslib-2.0.2"
];
@@ -72022,7 +71116,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.14.2"
+ sources."@types/node-20.14.12"
sources."@types/parse-json-4.0.2"
sources."@types/websocket-1.0.2"
sources."abort-controller-3.0.0"
@@ -72098,7 +71192,11 @@ in
sources."strip-ansi-5.2.0"
];
})
- sources."cross-fetch-3.1.4"
+ (sources."cross-fetch-3.1.4" // {
+ dependencies = [
+ sources."node-fetch-2.6.1"
+ ];
+ })
sources."cross-spawn-6.0.5"
sources."dashdash-1.14.1"
sources."dataloader-2.0.0"
@@ -72115,6 +71213,7 @@ in
sources."duplexer3-0.1.5"
sources."ecc-jsbn-0.1.2"
sources."emoji-regex-8.0.0"
+ sources."encoding-0.1.13"
sources."end-of-stream-1.4.4"
sources."error-ex-1.3.2"
sources."es-define-property-1.0.0"
@@ -72130,6 +71229,7 @@ in
sources."extend-3.0.2"
(sources."external-editor-3.1.0" // {
dependencies = [
+ sources."iconv-lite-0.4.24"
sources."tmp-0.0.33"
];
})
@@ -72172,7 +71272,7 @@ in
];
})
sources."graceful-fs-4.2.11"
- sources."graphql-15.8.0"
+ sources."graphql-15.9.0"
sources."graphql-config-3.0.3"
sources."graphql-subscriptions-1.2.1"
sources."graphql-type-json-0.3.2"
@@ -72189,7 +71289,7 @@ in
sources."http-cache-semantics-4.1.1"
sources."http-signature-1.2.0"
sources."http2-client-1.3.5"
- sources."iconv-lite-0.4.24"
+ sources."iconv-lite-0.6.3"
sources."ieee754-1.2.1"
sources."ignore-5.3.1"
(sources."import-fresh-3.3.0" // {
@@ -72291,7 +71391,7 @@ in
sources."nice-try-1.0.5"
sources."no-case-3.0.4"
sources."node-emoji-1.10.0"
- sources."node-fetch-2.6.1"
+ sources."node-fetch-2.7.0"
sources."node-fetch-h2-2.3.0"
sources."node-gyp-build-4.8.1"
sources."node-readfiles-0.2.0"
@@ -72310,7 +71410,7 @@ in
sources."oas-schema-walker-1.1.5"
sources."oas-validator-5.0.8"
sources."oauth-sign-0.9.0"
- sources."object-inspect-1.13.1"
+ sources."object-inspect-1.13.2"
sources."object-is-1.1.6"
sources."object-keys-1.1.1"
sources."object.assign-4.1.5"
@@ -72424,6 +71524,7 @@ in
sources."to-readable-stream-1.0.0"
sources."to-regex-range-5.0.1"
sources."tough-cookie-2.5.0"
+ sources."tr46-0.0.3"
sources."tslib-2.6.3"
sources."tunnel-agent-0.6.0"
sources."tweetnacl-0.14.5"
@@ -72439,6 +71540,8 @@ in
sources."value-or-promise-1.0.11"
sources."verror-1.10.0"
sources."wcwidth-1.0.1"
+ sources."webidl-conversions-3.0.1"
+ sources."whatwg-url-5.0.0"
sources."which-1.3.1"
sources."which-boxed-primitive-1.0.2"
sources."which-collection-1.0.2"
@@ -72466,20 +71569,20 @@ in
graphql-language-service-cli = nodeEnv.buildNodePackage {
name = "graphql-language-service-cli";
packageName = "graphql-language-service-cli";
- version = "3.4.0";
+ version = "3.4.1";
src = fetchurl {
- url = "https://registry.npmjs.org/graphql-language-service-cli/-/graphql-language-service-cli-3.4.0.tgz";
- sha512 = "2bNbTYHwggYp/VwnmBzq2UQjoqwnIiBE8nE4M6ikC/0AX7hzNlz7uoBbQ0guFIrJ8Z6fyA0PjU28YGs5g5TMvw==";
+ url = "https://registry.npmjs.org/graphql-language-service-cli/-/graphql-language-service-cli-3.4.1.tgz";
+ sha512 = "bWnSJ6ibIAS8h2rR7DV+12FxoVPeJbcR9Du/WHGXMIj0eDwartZPX9NaXmlX6wInSdjjQm6BWdQt1dsim8Eu+w==";
};
dependencies = [
sources."@ampproject/remapping-2.3.0"
sources."@ardatan/sync-fetch-0.0.1"
- sources."@astrojs/compiler-2.8.0"
+ sources."@astrojs/compiler-2.9.2"
sources."@babel/code-frame-7.24.7"
- sources."@babel/compat-data-7.24.7"
- sources."@babel/core-7.24.7"
- sources."@babel/generator-7.24.7"
- (sources."@babel/helper-compilation-targets-7.24.7" // {
+ sources."@babel/compat-data-7.24.9"
+ sources."@babel/core-7.24.9"
+ sources."@babel/generator-7.24.10"
+ (sources."@babel/helper-compilation-targets-7.24.8" // {
dependencies = [
sources."lru-cache-5.1.1"
];
@@ -72488,28 +71591,28 @@ in
sources."@babel/helper-function-name-7.24.7"
sources."@babel/helper-hoist-variables-7.24.7"
sources."@babel/helper-module-imports-7.24.7"
- sources."@babel/helper-module-transforms-7.24.7"
- sources."@babel/helper-plugin-utils-7.24.7"
+ sources."@babel/helper-module-transforms-7.24.9"
+ sources."@babel/helper-plugin-utils-7.24.8"
sources."@babel/helper-simple-access-7.24.7"
sources."@babel/helper-split-export-declaration-7.24.7"
- sources."@babel/helper-string-parser-7.24.7"
+ sources."@babel/helper-string-parser-7.24.8"
sources."@babel/helper-validator-identifier-7.24.7"
- sources."@babel/helper-validator-option-7.24.7"
- sources."@babel/helpers-7.24.7"
+ sources."@babel/helper-validator-option-7.24.8"
+ sources."@babel/helpers-7.24.8"
sources."@babel/highlight-7.24.7"
- sources."@babel/parser-7.24.7"
+ sources."@babel/parser-7.24.8"
sources."@babel/plugin-syntax-import-assertions-7.24.7"
sources."@babel/polyfill-7.12.1"
sources."@babel/template-7.24.7"
- sources."@babel/traverse-7.24.7"
- sources."@babel/types-7.24.7"
+ sources."@babel/traverse-7.24.8"
+ sources."@babel/types-7.24.9"
sources."@graphql-tools/batch-execute-9.0.4"
sources."@graphql-tools/code-file-loader-8.0.3"
- sources."@graphql-tools/delegate-10.0.11"
- sources."@graphql-tools/executor-1.2.6"
- sources."@graphql-tools/executor-graphql-ws-1.1.2"
- sources."@graphql-tools/executor-http-1.0.9"
- sources."@graphql-tools/executor-legacy-ws-1.0.6"
+ sources."@graphql-tools/delegate-10.0.16"
+ sources."@graphql-tools/executor-1.3.0"
+ sources."@graphql-tools/executor-graphql-ws-1.2.0"
+ sources."@graphql-tools/executor-http-1.1.5"
+ sources."@graphql-tools/executor-legacy-ws-1.1.0"
sources."@graphql-tools/graphql-file-loader-8.0.1"
sources."@graphql-tools/graphql-tag-pluck-8.1.0"
sources."@graphql-tools/import-7.0.1"
@@ -72518,14 +71621,14 @@ in
sources."@graphql-tools/merge-9.0.4"
sources."@graphql-tools/schema-10.0.4"
sources."@graphql-tools/url-loader-8.0.2"
- sources."@graphql-tools/utils-10.2.2"
+ sources."@graphql-tools/utils-10.3.2"
sources."@graphql-tools/wrap-10.0.5"
sources."@graphql-typed-document-node/core-3.2.0"
sources."@iarna/toml-2.2.5"
sources."@jridgewell/gen-mapping-0.3.5"
sources."@jridgewell/resolve-uri-3.1.2"
sources."@jridgewell/set-array-1.2.1"
- sources."@jridgewell/sourcemap-codec-1.4.15"
+ sources."@jridgewell/sourcemap-codec-1.5.0"
sources."@jridgewell/trace-mapping-0.3.25"
sources."@kamilkisiela/fast-url-parser-1.1.4"
sources."@nodelib/fs.scandir-2.1.5"
@@ -72534,51 +71637,55 @@ in
sources."@pkgr/core-0.1.1"
sources."@repeaterjs/repeater-3.0.6"
sources."@types/estree-1.0.5"
- sources."@types/node-20.14.2"
- sources."@types/ws-8.5.10"
+ sources."@types/node-20.14.12"
+ sources."@types/ws-8.5.11"
sources."@types/yargs-16.0.5"
sources."@types/yargs-parser-21.0.3"
- (sources."@vue/compiler-core-3.4.29" // {
+ (sources."@vue/compiler-core-3.4.34" // {
dependencies = [
+ sources."estree-walker-2.0.2"
sources."source-map-js-1.2.0"
];
})
- sources."@vue/compiler-dom-3.4.29"
- (sources."@vue/compiler-sfc-3.4.29" // {
+ sources."@vue/compiler-dom-3.4.34"
+ (sources."@vue/compiler-sfc-3.4.34" // {
dependencies = [
+ sources."estree-walker-2.0.2"
sources."source-map-js-1.2.0"
];
})
- sources."@vue/compiler-ssr-3.4.29"
- sources."@vue/shared-3.4.29"
+ sources."@vue/compiler-ssr-3.4.34"
+ sources."@vue/shared-3.4.34"
sources."@whatwg-node/events-0.1.1"
sources."@whatwg-node/fetch-0.9.18"
- sources."@whatwg-node/node-fetch-0.5.11"
- sources."acorn-8.12.0"
+ sources."@whatwg-node/node-fetch-0.5.14"
+ sources."acorn-8.12.1"
sources."ansi-regex-5.0.1"
- sources."ansi-styles-3.2.1"
+ sources."ansi-styles-4.3.0"
sources."argparse-2.0.1"
sources."aria-query-5.3.0"
sources."array-union-2.1.0"
sources."astrojs-compiler-sync-1.0.0"
- sources."axobject-query-4.0.0"
+ sources."axobject-query-4.1.0"
sources."balanced-match-1.0.2"
sources."brace-expansion-1.1.11"
sources."braces-3.0.3"
- sources."browserslist-4.23.1"
+ sources."browserslist-4.23.2"
sources."bufferutil-4.0.8"
sources."busboy-1.6.0"
sources."callsites-3.1.0"
- sources."caniuse-lite-1.0.30001634"
- sources."chalk-2.4.2"
- sources."cliui-7.0.4"
- (sources."code-red-1.0.4" // {
+ sources."caniuse-lite-1.0.30001643"
+ (sources."chalk-2.4.2" // {
dependencies = [
- sources."estree-walker-3.0.3"
+ sources."ansi-styles-3.2.1"
+ sources."color-convert-1.9.3"
+ sources."color-name-1.1.3"
];
})
- sources."color-convert-1.9.3"
- sources."color-name-1.1.3"
+ sources."cliui-7.0.4"
+ sources."code-red-1.0.4"
+ sources."color-convert-2.0.1"
+ sources."color-name-1.1.4"
sources."concat-map-0.0.1"
sources."convert-source-map-2.0.0"
sources."core-js-2.6.12"
@@ -72593,14 +71700,14 @@ in
sources."dir-glob-3.0.1"
sources."dotenv-10.0.0"
sources."dset-3.1.3"
- sources."electron-to-chromium-1.4.802"
+ sources."electron-to-chromium-1.5.1"
sources."emoji-regex-8.0.0"
sources."encoding-0.1.13"
sources."entities-4.5.0"
sources."error-ex-1.3.2"
sources."escalade-3.1.2"
sources."escape-string-regexp-1.0.5"
- sources."estree-walker-2.0.2"
+ sources."estree-walker-3.0.3"
sources."extract-files-11.0.0"
sources."fast-decode-uri-component-1.0.1"
sources."fast-glob-3.3.2"
@@ -72614,14 +71721,14 @@ in
sources."glob-parent-5.1.2"
sources."globals-11.12.0"
sources."globby-11.1.0"
- sources."graphql-16.8.2"
+ sources."graphql-16.9.0"
(sources."graphql-config-5.0.3" // {
dependencies = [
sources."minimatch-4.2.3"
];
})
sources."graphql-language-service-5.2.1"
- sources."graphql-language-service-server-2.13.0"
+ sources."graphql-language-service-server-2.13.1"
sources."graphql-ws-5.16.0"
sources."has-flag-3.0.0"
sources."iconv-lite-0.6.3"
@@ -72649,7 +71756,7 @@ in
sources."lines-and-columns-1.2.4"
sources."locate-character-3.0.0"
sources."lower-case-2.0.2"
- sources."lru-cache-10.2.2"
+ sources."lru-cache-10.4.3"
sources."magic-string-0.30.10"
sources."mdn-data-2.0.30"
sources."merge2-1.4.1"
@@ -72663,7 +71770,7 @@ in
sources."node-abort-controller-3.1.1"
sources."node-fetch-2.7.0"
sources."node-gyp-build-4.8.1"
- sources."node-releases-2.0.14"
+ sources."node-releases-2.0.18"
sources."normalize-path-2.1.1"
sources."nullthrows-1.1.1"
sources."once-1.4.0"
@@ -72673,14 +71780,10 @@ in
sources."pascal-case-3.1.2"
sources."path-is-absolute-1.0.1"
sources."path-type-4.0.0"
- (sources."periscopic-3.1.0" // {
- dependencies = [
- sources."estree-walker-3.0.3"
- ];
- })
+ sources."periscopic-3.1.0"
sources."picocolors-1.0.1"
sources."picomatch-2.3.1"
- (sources."postcss-8.4.38" // {
+ (sources."postcss-8.4.40" // {
dependencies = [
sources."source-map-js-1.2.0"
];
@@ -72701,21 +71804,17 @@ in
sources."string-width-4.2.3"
sources."strip-ansi-6.0.1"
sources."supports-color-5.5.0"
- (sources."svelte-4.2.18" // {
- dependencies = [
- sources."estree-walker-3.0.3"
- ];
- })
- sources."svelte2tsx-0.7.9"
- sources."synckit-0.9.0"
+ sources."svelte-4.2.18"
+ sources."svelte2tsx-0.7.13"
+ sources."synckit-0.9.1"
sources."to-fast-properties-2.0.0"
sources."to-regex-range-5.0.1"
sources."tr46-0.0.3"
sources."tslib-2.6.3"
- sources."typescript-5.4.5"
+ sources."typescript-5.5.4"
sources."undici-types-5.26.5"
sources."unixify-1.0.0"
- sources."update-browserslist-db-1.0.16"
+ sources."update-browserslist-db-1.1.0"
sources."urlpattern-polyfill-10.0.0"
sources."utf-8-validate-6.0.4"
sources."value-or-promise-1.0.12"
@@ -72731,15 +71830,9 @@ in
sources."vscode-uri-3.0.8"
sources."webidl-conversions-3.0.1"
sources."whatwg-url-5.0.0"
- (sources."wrap-ansi-7.0.0" // {
- dependencies = [
- sources."ansi-styles-4.3.0"
- sources."color-convert-2.0.1"
- sources."color-name-1.1.4"
- ];
- })
+ sources."wrap-ansi-7.0.0"
sources."wrappy-1.0.2"
- sources."ws-8.17.0"
+ sources."ws-8.18.0"
sources."y18n-5.0.8"
sources."yallist-3.1.1"
sources."yargs-16.2.0"
@@ -72759,10 +71852,10 @@ in
grunt-cli = nodeEnv.buildNodePackage {
name = "grunt-cli";
packageName = "grunt-cli";
- version = "1.4.3";
+ version = "1.5.0";
src = fetchurl {
- url = "https://registry.npmjs.org/grunt-cli/-/grunt-cli-1.4.3.tgz";
- sha512 = "9Dtx/AhVeB4LYzsViCjUQkd0Kw0McN2gYpdmGYKtE2a5Yt7v1Q+HYZVWhqXc/kGnxlMtqKDxSwotiGeFmkrCoQ==";
+ url = "https://registry.npmjs.org/grunt-cli/-/grunt-cli-1.5.0.tgz";
+ sha512 = "rILKAFoU0dzlf22SUfDtq2R1fosChXXlJM5j7wI6uoW8gwmXDXzbUvirlKZSYCdXl3LXFbR+8xyS+WFo+b6vlA==";
};
dependencies = [
sources."abbrev-1.1.1"
@@ -72787,7 +71880,7 @@ in
sources."ini-1.3.8"
sources."interpret-1.1.0"
sources."is-absolute-1.0.0"
- sources."is-core-module-2.13.1"
+ sources."is-core-module-2.15.0"
sources."is-extglob-2.1.1"
sources."is-glob-4.0.3"
sources."is-number-7.0.0"
@@ -72802,13 +71895,10 @@ in
sources."make-iterator-1.0.1"
sources."map-cache-0.2.2"
sources."micromatch-4.0.7"
- sources."nopt-4.0.3"
+ sources."nopt-5.0.0"
sources."object.defaults-1.1.0"
sources."object.map-1.0.1"
sources."object.pick-1.3.0"
- sources."os-homedir-1.0.2"
- sources."os-tmpdir-1.0.2"
- sources."osenv-0.1.5"
sources."parse-filepath-1.0.2"
sources."parse-passwd-1.0.0"
sources."path-parse-1.0.7"
@@ -72821,7 +71911,7 @@ in
sources."supports-preserve-symlinks-flag-1.0.0"
sources."to-regex-range-5.0.1"
sources."unc-path-regex-0.1.2"
- sources."v8flags-3.2.0"
+ sources."v8flags-4.0.1"
sources."which-1.3.1"
];
buildInputs = globalBuildInputs;
@@ -72909,7 +71999,7 @@ in
sources."minimist-1.2.8"
sources."ms-2.1.3"
sources."negotiator-0.6.3"
- sources."object-inspect-1.13.1"
+ sources."object-inspect-1.13.2"
sources."on-finished-2.4.1"
sources."options-0.0.6"
sources."parseurl-1.3.3"
@@ -72970,7 +72060,11 @@ in
sources."braces-3.0.3"
sources."buffer-6.0.3"
sources."chalk-4.1.2"
- sources."chokidar-3.6.0"
+ (sources."chokidar-3.6.0" // {
+ dependencies = [
+ sources."glob-parent-5.1.2"
+ ];
+ })
sources."cliui-7.0.4"
sources."clone-2.1.2"
sources."clone-stats-1.0.0"
@@ -72998,12 +72092,8 @@ in
sources."fs-mkdirp-stream-2.0.1"
sources."function-bind-1.1.2"
sources."get-caller-file-2.0.5"
- sources."glob-parent-5.1.2"
- (sources."glob-stream-8.0.2" // {
- dependencies = [
- sources."glob-parent-6.0.2"
- ];
- })
+ sources."glob-parent-6.0.2"
+ sources."glob-stream-8.0.2"
sources."glob-watcher-6.0.0"
sources."global-modules-1.0.0"
sources."global-prefix-1.0.2"
@@ -73021,7 +72111,7 @@ in
sources."interpret-3.1.1"
sources."is-absolute-1.0.0"
sources."is-binary-path-2.1.0"
- sources."is-core-module-2.13.1"
+ sources."is-core-module-2.15.0"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-3.0.0"
sources."is-glob-4.0.3"
@@ -73078,7 +72168,7 @@ in
sources."supports-preserve-symlinks-flag-1.0.0"
sources."sver-1.8.4"
sources."teex-1.0.1"
- sources."text-decoder-1.1.0"
+ sources."text-decoder-1.1.1"
sources."to-regex-range-5.0.1"
sources."to-through-3.0.0"
sources."unc-path-regex-0.1.2"
@@ -73152,7 +72242,7 @@ in
sources."ini-1.3.8"
sources."interpret-3.1.1"
sources."is-absolute-1.0.0"
- sources."is-core-module-2.13.1"
+ sources."is-core-module-2.15.0"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-3.0.0"
sources."is-glob-4.0.3"
@@ -73599,7 +72689,7 @@ in
sources."is-wsl-2.2.0"
sources."isexe-2.0.0"
sources."jquery-3.7.1"
- sources."jquery.terminal-2.42.0"
+ sources."jquery.terminal-2.42.2"
sources."js-yaml-4.1.0"
sources."keyboardevent-key-polyfill-1.1.0"
sources."lcov-parse-1.0.0"
@@ -73642,10 +72732,10 @@ in
intelephense = nodeEnv.buildNodePackage {
name = "intelephense";
packageName = "intelephense";
- version = "1.10.4";
+ version = "1.11.5";
src = fetchurl {
- url = "https://registry.npmjs.org/intelephense/-/intelephense-1.10.4.tgz";
- sha512 = "YcSeqygon2uNn3GjQqxs3vSZQTvdbZ13WG54i+c0t6UcViEso/K5Vq9To/024h3OqCvJR2RlmunnEIuorvDqHg==";
+ url = "https://registry.npmjs.org/intelephense/-/intelephense-1.11.5.tgz";
+ sha512 = "3gi/wFkKMENtRrP5Vo/A+/rN/ywyqxtPwRVUMJJFbm2NOlk4eyq4XirbuOH7U9e4P/iBhdCvZrk+AF/HmsnnXw==";
};
dependencies = [
sources."@azure/abort-controller-2.1.2"
@@ -73661,10 +72751,10 @@ in
sources."@azure/abort-controller-1.1.0"
];
})
- sources."@azure/logger-1.1.2"
+ sources."@azure/logger-1.1.3"
sources."@azure/opentelemetry-instrumentation-azure-sdk-1.0.0-beta.5"
- sources."@bmewburn/js-beautify-1.14.9"
- sources."@bmewburn/vscode-html-languageserver-1.10.0"
+ sources."@bmewburn/js-beautify-1.15.2"
+ sources."@bmewburn/vscode-html-languageserver-1.11.0"
sources."@isaacs/cliui-8.0.2"
(sources."@mapbox/node-pre-gyp-1.0.11" // {
dependencies = [
@@ -73672,17 +72762,18 @@ in
sources."nopt-5.0.0"
];
})
- sources."@microsoft/applicationinsights-web-snippet-1.1.2"
+ sources."@microsoft/applicationinsights-web-snippet-1.2.1"
+ sources."@mixmark-io/domino-2.2.0"
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
sources."@one-ini/wasm-0.1.1"
sources."@opentelemetry/api-1.9.0"
- sources."@opentelemetry/core-1.25.0"
+ sources."@opentelemetry/core-1.25.1"
sources."@opentelemetry/instrumentation-0.41.2"
- sources."@opentelemetry/resources-1.25.0"
- sources."@opentelemetry/sdk-trace-base-1.25.0"
- sources."@opentelemetry/semantic-conventions-1.25.0"
+ sources."@opentelemetry/resources-1.25.1"
+ sources."@opentelemetry/sdk-trace-base-1.25.1"
+ sources."@opentelemetry/semantic-conventions-1.25.1"
sources."@protobufjs/aspromise-1.1.2"
sources."@protobufjs/base64-1.1.2"
sources."@protobufjs/codegen-2.0.4"
@@ -73695,22 +72786,21 @@ in
sources."@protobufjs/utf8-1.1.0"
sources."@selderee/plugin-htmlparser2-0.11.0"
sources."@tootallnate/once-2.0.0"
- sources."@types/node-20.14.2"
- sources."@types/shimmer-1.0.5"
- sources."@vscode/l10n-0.0.16"
+ sources."@tootallnate/quickjs-emscripten-0.23.0"
+ sources."@types/node-20.14.12"
+ sources."@types/shimmer-1.2.0"
+ sources."@vscode/l10n-0.0.18"
sources."abbrev-2.0.0"
- sources."acorn-8.12.0"
+ sources."acorn-8.12.1"
sources."acorn-import-assertions-1.9.0"
sources."agent-base-6.0.2"
- sources."ajv-6.12.6"
sources."ansi-regex-5.0.1"
sources."ansi-styles-6.2.1"
sources."applicationinsights-2.7.3"
- sources."applicationinsights-native-metrics-0.0.10"
+ sources."applicationinsights-native-metrics-0.0.11"
sources."aproba-2.0.0"
sources."are-we-there-yet-2.0.0"
- sources."asn1-0.2.6"
- sources."assert-plus-1.0.0"
+ sources."ast-types-0.13.4"
sources."async-hook-jl-1.7.6"
(sources."async-listener-0.6.10" // {
dependencies = [
@@ -73718,13 +72808,10 @@ in
];
})
sources."asynckit-0.4.0"
- sources."aws-sign2-0.7.0"
- sources."aws4-1.13.0"
sources."balanced-match-1.0.2"
- sources."bcrypt-pbkdf-1.0.2"
+ sources."basic-ftp-5.0.5"
sources."brace-expansion-2.0.1"
sources."braces-3.0.3"
- sources."caseless-0.12.0"
sources."chownr-2.0.0"
sources."cjs-module-lexer-1.3.1"
(sources."cls-hooked-4.2.2" // {
@@ -73741,11 +72828,11 @@ in
sources."config-chain-1.1.13"
sources."console-control-strings-1.1.0"
sources."continuation-local-storage-3.2.1"
- sources."core-util-is-1.0.2"
sources."cross-spawn-7.0.3"
- sources."dashdash-1.14.1"
+ sources."data-uri-to-buffer-6.0.2"
sources."debug-4.3.5"
sources."deepmerge-4.3.1"
+ sources."degenerator-5.0.1"
sources."delayed-stream-1.0.0"
sources."delegates-1.0.0"
sources."detect-libc-2.0.3"
@@ -73754,30 +72841,23 @@ in
sources."dom-serializer-2.0.0"
sources."domelementtype-2.3.0"
sources."domhandler-5.0.3"
- sources."domino-2.1.6"
sources."domutils-3.1.0"
sources."eastasianwidth-0.2.0"
- sources."ecc-jsbn-0.1.2"
- (sources."editorconfig-1.0.4" // {
- dependencies = [
- sources."minimatch-9.0.1"
- ];
- })
+ sources."editorconfig-1.0.4"
sources."emitter-listener-1.1.2"
sources."emoji-regex-9.2.2"
sources."encoding-0.1.13"
sources."entities-4.5.0"
- sources."extend-3.0.2"
- sources."extsprintf-1.3.0"
- sources."fast-deep-equal-3.1.3"
+ sources."escodegen-2.1.0"
+ sources."esprima-4.0.1"
+ sources."estraverse-5.3.0"
+ sources."esutils-2.0.3"
sources."fast-glob-3.3.2"
- sources."fast-json-stable-stringify-2.1.0"
sources."fastq-1.17.1"
sources."fill-range-7.1.1"
- sources."foreground-child-3.2.0"
- sources."forever-agent-0.6.1"
+ sources."foreground-child-3.2.1"
sources."form-data-4.0.0"
- sources."fs-extra-11.1.1"
+ sources."fs-extra-11.2.0"
(sources."fs-minipass-2.1.0" // {
dependencies = [
sources."minipass-3.3.6"
@@ -73793,42 +72873,39 @@ in
sources."strip-ansi-6.0.1"
];
})
- sources."getpass-0.1.7"
- sources."glob-10.4.1"
+ sources."get-uri-6.0.3"
+ (sources."glob-10.4.5" // {
+ dependencies = [
+ sources."minimatch-9.0.5"
+ ];
+ })
sources."glob-parent-5.1.2"
sources."graceful-fs-4.2.11"
- sources."har-schema-2.0.0"
- sources."har-validator-5.1.5"
sources."has-unicode-2.0.1"
sources."hasown-2.0.2"
sources."html-to-text-9.0.5"
sources."htmlparser2-8.0.2"
sources."http-proxy-agent-5.0.0"
- sources."http-signature-1.2.0"
sources."https-proxy-agent-5.0.1"
sources."iconv-lite-0.6.3"
sources."import-in-the-middle-1.4.2"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."ini-1.3.8"
- sources."is-core-module-2.13.1"
+ sources."ip-address-9.0.5"
+ sources."is-core-module-2.15.0"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-3.0.0"
sources."is-glob-4.0.3"
sources."is-number-7.0.0"
- sources."is-typedarray-1.0.0"
sources."isexe-2.0.0"
- sources."isstream-0.1.2"
- sources."jackspeak-3.4.0"
- sources."jsbn-0.1.1"
- sources."json-schema-0.4.0"
- sources."json-schema-traverse-0.4.1"
- sources."json-stringify-safe-5.0.1"
+ sources."jackspeak-3.4.3"
+ sources."js-cookie-3.0.5"
+ sources."jsbn-1.1.0"
sources."jsonfile-6.1.0"
- sources."jsprim-1.4.2"
sources."leac-0.6.0"
sources."long-5.2.3"
- sources."lru-cache-10.0.3"
+ sources."lru-cache-10.2.2"
(sources."make-dir-3.1.0" // {
dependencies = [
sources."semver-6.3.1"
@@ -73838,7 +72915,7 @@ in
sources."micromatch-4.0.7"
sources."mime-db-1.52.0"
sources."mime-types-2.1.35"
- sources."minimatch-9.0.4"
+ sources."minimatch-9.0.1"
sources."minipass-7.1.2"
(sources."minizlib-2.1.2" // {
dependencies = [
@@ -73849,37 +72926,41 @@ in
sources."module-details-from-path-1.0.3"
sources."ms-2.1.2"
sources."nan-2.20.0"
+ sources."netmask-2.0.2"
sources."node-fetch-2.7.0"
sources."nopt-7.2.1"
sources."npmlog-5.0.1"
- sources."oauth-sign-0.9.0"
sources."object-assign-4.1.1"
sources."once-1.4.0"
+ (sources."pac-proxy-agent-7.0.2" // {
+ dependencies = [
+ sources."agent-base-7.1.1"
+ sources."http-proxy-agent-7.0.2"
+ sources."https-proxy-agent-7.0.5"
+ ];
+ })
+ sources."pac-resolver-7.0.1"
+ sources."package-json-from-dist-1.0.0"
sources."parseley-0.12.1"
sources."path-is-absolute-1.0.1"
sources."path-key-3.1.1"
sources."path-parse-1.0.7"
- (sources."path-scurry-1.11.1" // {
- dependencies = [
- sources."lru-cache-10.2.2"
- ];
- })
+ sources."path-scurry-1.11.1"
sources."peberminta-0.9.0"
- sources."performance-now-2.1.0"
sources."picomatch-2.3.1"
sources."proto-list-1.2.4"
- sources."protobufjs-7.2.6"
- sources."psl-1.9.0"
- sources."punycode-2.3.1"
- sources."qs-6.5.3"
- sources."queue-microtask-1.2.3"
- sources."readable-stream-3.6.2"
- (sources."request-2.88.2" // {
+ sources."protobufjs-7.3.2"
+ (sources."proxy-agent-6.4.0" // {
dependencies = [
- sources."form-data-2.3.3"
- sources."uuid-3.4.0"
+ sources."agent-base-7.1.1"
+ sources."http-proxy-agent-7.0.2"
+ sources."https-proxy-agent-7.0.5"
+ sources."lru-cache-7.18.3"
];
})
+ sources."proxy-from-env-1.1.0"
+ sources."queue-microtask-1.2.3"
+ sources."readable-stream-3.6.2"
sources."require-in-the-middle-7.3.0"
sources."resolve-1.22.8"
sources."reusify-1.0.4"
@@ -73894,17 +72975,21 @@ in
sources."safe-buffer-5.2.1"
sources."safer-buffer-2.1.2"
sources."selderee-0.11.0"
- (sources."semver-7.5.4" // {
- dependencies = [
- sources."lru-cache-6.0.0"
- ];
- })
+ sources."semver-7.6.3"
sources."set-blocking-2.0.0"
sources."shebang-command-2.0.0"
sources."shebang-regex-3.0.0"
sources."shimmer-1.2.1"
sources."signal-exit-4.1.0"
- sources."sshpk-1.18.0"
+ sources."smart-buffer-4.2.0"
+ sources."socks-2.8.3"
+ (sources."socks-proxy-agent-8.0.4" // {
+ dependencies = [
+ sources."agent-base-7.1.1"
+ ];
+ })
+ sources."source-map-0.6.1"
+ sources."sprintf-js-1.1.3"
sources."stack-chain-1.3.7"
sources."string-width-5.1.2"
(sources."string-width-cjs-4.2.3" // {
@@ -73927,38 +73012,19 @@ in
];
})
sources."to-regex-range-5.0.1"
- sources."tough-cookie-2.5.0"
sources."tr46-0.0.3"
sources."tslib-2.6.3"
- sources."tunnel-agent-0.6.0"
- sources."turndown-7.1.3"
+ sources."turndown-7.2.0"
sources."turndown-plugin-gfm-1.0.2"
- sources."tweetnacl-0.14.5"
- sources."typescript-5.4.5"
+ sources."typescript-5.5.4"
sources."undici-types-5.26.5"
sources."universalify-2.0.1"
- sources."uri-js-4.4.1"
sources."util-deprecate-1.0.2"
sources."uuid-8.3.2"
- sources."verror-1.10.0"
- (sources."vscode-css-languageservice-6.2.14" // {
- dependencies = [
- sources."@vscode/l10n-0.0.18"
- ];
- })
- (sources."vscode-html-languageservice-5.2.0" // {
- dependencies = [
- sources."@vscode/l10n-0.0.18"
- ];
- })
+ sources."vscode-css-languageservice-6.3.0"
+ sources."vscode-html-languageservice-5.3.0"
sources."vscode-jsonrpc-8.2.0"
- (sources."vscode-languageserver-8.2.0-next.3" // {
- dependencies = [
- sources."vscode-jsonrpc-8.2.0-next.2"
- sources."vscode-languageserver-protocol-3.17.4-next.3"
- sources."vscode-languageserver-types-3.17.4-next.2"
- ];
- })
+ sources."vscode-languageserver-9.0.1"
sources."vscode-languageserver-protocol-3.17.5"
sources."vscode-languageserver-textdocument-1.0.11"
sources."vscode-languageserver-types-3.17.5"
@@ -73998,13 +73064,13 @@ in
joplin = nodeEnv.buildNodePackage {
name = "joplin";
packageName = "joplin";
- version = "2.14.1";
+ version = "3.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/joplin/-/joplin-2.14.1.tgz";
- sha512 = "OMg8OB1cx6MzGMUSvycBYu152vYz6BbtAnerEqxAvX2Jtlj7+RjuXYxJ0TgoV2BG43BaOqjzdr+BC5WFFp+Huw==";
+ url = "https://registry.npmjs.org/joplin/-/joplin-3.0.1.tgz";
+ sha512 = "LxEwL+PuUcdcZ6Qi/otqyknl2kf9cE/DVnoiHnq6wgWGjccBOazp6kgIEOXSCOm5h1GZsLE+sJgEdeYYTEB3UQ==";
};
dependencies = [
- sources."@adobe/css-tools-4.3.2"
+ sources."@adobe/css-tools-4.3.3"
(sources."@aws-crypto/crc32-3.0.0" // {
dependencies = [
sources."tslib-1.14.1"
@@ -74111,13 +73177,13 @@ 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.598.0" // {
+ (sources."@aws-sdk/signature-v4-crt-3.617.0" // {
dependencies = [
- sources."@aws-sdk/middleware-sdk-s3-3.598.0"
- sources."@aws-sdk/signature-v4-multi-region-3.598.0"
- sources."@aws-sdk/types-3.598.0"
+ sources."@aws-sdk/middleware-sdk-s3-3.617.0"
+ sources."@aws-sdk/signature-v4-multi-region-3.617.0"
+ sources."@aws-sdk/types-3.609.0"
sources."@aws-sdk/util-arn-parser-3.568.0"
- sources."@aws-sdk/util-user-agent-node-3.598.0"
+ sources."@aws-sdk/util-user-agent-node-3.614.0"
];
})
sources."@aws-sdk/signature-v4-multi-region-3.296.0"
@@ -74149,7 +73215,7 @@ 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.24.7"
+ sources."@babel/runtime-7.24.8"
sources."@braintree/sanitize-url-6.0.4"
sources."@cronvel/get-pixels-3.4.1"
sources."@gar/promisify-1.1.3"
@@ -74162,50 +73228,55 @@ in
sources."strip-ansi-7.1.0"
];
})
- sources."@joplin/fork-htmlparser2-4.1.51"
- sources."@joplin/fork-sax-1.2.55"
- sources."@joplin/fork-uslug-1.0.16"
- sources."@joplin/htmlpack-2.14.1"
- sources."@joplin/lib-2.14.1"
- sources."@joplin/renderer-2.14.1"
- sources."@joplin/turndown-4.0.73"
- sources."@joplin/turndown-plugin-gfm-1.0.55"
- (sources."@joplin/utils-2.14.1" // {
+ sources."@joplin/fork-htmlparser2-4.1.52"
+ sources."@joplin/fork-sax-1.2.56"
+ sources."@joplin/fork-uslug-1.0.17"
+ sources."@joplin/htmlpack-3.0.1"
+ sources."@joplin/lib-3.0.1"
+ sources."@joplin/renderer-3.0.1"
+ sources."@joplin/turndown-4.0.74"
+ sources."@joplin/turndown-plugin-gfm-1.0.56"
+ (sources."@joplin/utils-3.0.1" // {
dependencies = [
sources."brace-expansion-2.0.1"
sources."glob-10.3.10"
- sources."minimatch-9.0.4"
+ sources."minimatch-9.0.5"
+ ];
+ })
+ (sources."@mapbox/node-pre-gyp-1.0.11" // {
+ dependencies = [
+ sources."agent-base-6.0.2"
+ sources."https-proxy-agent-5.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/abort-controller-3.0.1"
- sources."@smithy/fetch-http-handler-3.0.2"
+ sources."@smithy/abort-controller-3.1.1"
+ sources."@smithy/fetch-http-handler-3.2.3"
sources."@smithy/is-array-buffer-3.0.0"
- sources."@smithy/middleware-endpoint-3.0.2"
- sources."@smithy/middleware-serde-3.0.1"
- sources."@smithy/middleware-stack-3.0.1"
- sources."@smithy/node-config-provider-3.1.1"
- sources."@smithy/node-http-handler-3.0.1"
- sources."@smithy/property-provider-3.1.1"
- sources."@smithy/protocol-http-4.0.1"
- sources."@smithy/querystring-builder-3.0.1"
- sources."@smithy/querystring-parser-3.0.1"
- sources."@smithy/shared-ini-file-loader-3.1.1"
- sources."@smithy/signature-v4-3.1.0"
- sources."@smithy/smithy-client-3.1.2"
- sources."@smithy/types-3.1.0"
- sources."@smithy/url-parser-3.0.1"
+ sources."@smithy/middleware-endpoint-3.1.0"
+ sources."@smithy/middleware-serde-3.0.3"
+ sources."@smithy/middleware-stack-3.0.3"
+ sources."@smithy/node-config-provider-3.1.4"
+ sources."@smithy/node-http-handler-3.1.4"
+ sources."@smithy/property-provider-3.1.3"
+ sources."@smithy/protocol-http-4.1.0"
+ sources."@smithy/querystring-builder-3.0.3"
+ sources."@smithy/querystring-parser-3.0.3"
+ sources."@smithy/shared-ini-file-loader-3.1.4"
+ sources."@smithy/signature-v4-4.1.0"
+ sources."@smithy/smithy-client-3.1.10"
+ sources."@smithy/types-3.3.0"
+ sources."@smithy/url-parser-3.0.3"
sources."@smithy/util-base64-3.0.0"
sources."@smithy/util-buffer-from-3.0.0"
sources."@smithy/util-config-provider-3.0.0"
sources."@smithy/util-hex-encoding-3.0.0"
- sources."@smithy/util-middleware-3.0.1"
- sources."@smithy/util-stream-3.0.2"
+ sources."@smithy/util-middleware-3.0.3"
+ sources."@smithy/util-stream-3.1.2"
sources."@smithy/util-uri-escape-3.0.0"
sources."@smithy/util-utf8-3.0.0"
- sources."@tootallnate/once-2.0.0"
+ sources."@tootallnate/once-1.1.2"
sources."@types/d3-scale-4.0.8"
sources."@types/d3-scale-chromatic-3.0.3"
sources."@types/d3-time-3.0.3"
@@ -74213,12 +73284,11 @@ in
sources."@types/mdast-3.0.15"
sources."@types/ms-0.7.34"
sources."@types/nanoid-3.0.0"
- sources."@types/node-20.14.2"
+ sources."@types/node-20.14.12"
sources."@types/unist-2.0.10"
- sources."@types/ws-8.5.10"
- sources."abab-2.0.6"
+ sources."@types/ws-8.5.11"
sources."abbrev-1.1.1"
- sources."agent-base-6.0.2"
+ sources."agent-base-7.1.1"
sources."agentkeepalive-4.5.0"
sources."aggregate-error-3.1.0"
sources."ajv-6.12.6"
@@ -74257,11 +73327,7 @@ in
})
sources."aws-sign2-0.7.0"
sources."aws4-1.13.0"
- (sources."axios-1.7.2" // {
- dependencies = [
- sources."follow-redirects-1.15.6"
- ];
- })
+ sources."axios-1.7.2"
sources."balanced-match-1.0.2"
sources."base-64-1.0.0"
sources."base64-js-1.5.1"
@@ -74300,7 +73366,7 @@ in
})
sources."character-entities-2.0.2"
sources."charenc-0.0.2"
- sources."chokidar-3.5.3"
+ sources."chokidar-3.6.0"
sources."chownr-2.0.0"
sources."chroma-js-2.4.2"
sources."clean-css-4.2.4"
@@ -74336,14 +73402,8 @@ in
sources."crypto-js-4.2.0"
sources."cssstyle-3.0.0"
sources."cwise-compiler-1.1.3"
- sources."cytoscape-3.29.2"
+ sources."cytoscape-3.30.1"
sources."cytoscape-cose-bilkent-4.1.0"
- (sources."cytoscape-fcose-2.2.0" // {
- dependencies = [
- sources."cose-base-2.2.0"
- sources."layout-base-2.0.1"
- ];
- })
sources."d3-7.9.0"
sources."d3-array-3.2.4"
sources."d3-axis-3.0.0"
@@ -74389,9 +73449,9 @@ in
sources."d3-zoom-3.0.0"
sources."dagre-d3-es-7.0.10"
sources."dashdash-1.14.1"
- sources."data-urls-4.0.0"
+ sources."data-urls-5.0.0"
sources."datauri-4.1.0"
- sources."dayjs-1.11.11"
+ sources."dayjs-1.11.12"
sources."debug-4.3.5"
sources."decimal.js-10.4.3"
sources."decode-named-character-reference-1.0.2"
@@ -74416,14 +73476,13 @@ in
];
})
sources."domelementtype-2.3.0"
- sources."domexception-4.0.0"
sources."domhandler-5.0.3"
- sources."dompurify-3.1.5"
+ sources."dompurify-3.1.6"
sources."domutils-3.1.0"
sources."duplexify-3.7.1"
sources."eastasianwidth-0.2.0"
sources."ecc-jsbn-0.1.2"
- sources."elkjs-0.8.2"
+ sources."elkjs-0.9.3"
sources."emoji-regex-8.0.0"
(sources."emphasize-1.5.0" // {
dependencies = [
@@ -74442,7 +73501,6 @@ in
sources."err-code-2.0.3"
sources."es-define-property-1.0.0"
sources."es-errors-1.3.0"
- sources."es6-promise-pool-2.5.0"
sources."escape-string-regexp-1.0.5"
sources."events-1.1.1"
sources."execa-5.1.1"
@@ -74457,12 +73515,12 @@ in
sources."fill-range-7.1.1"
sources."filter-obj-1.1.0"
sources."find-up-2.1.0"
- sources."follow-redirects-1.15.5"
+ sources."follow-redirects-1.15.6"
sources."font-awesome-filetypes-2.1.0"
sources."for-each-0.3.3"
sources."for-each-property-0.0.4"
sources."for-each-property-deep-0.0.3"
- (sources."foreground-child-3.2.0" // {
+ (sources."foreground-child-3.2.1" // {
dependencies = [
sources."signal-exit-4.1.0"
];
@@ -74483,7 +73541,6 @@ in
];
})
sources."fs.realpath-1.0.0"
- sources."fsevents-2.3.3"
sources."function-bind-1.1.2"
sources."gauge-3.0.2"
sources."get-intrinsic-1.2.4"
@@ -74519,14 +73576,14 @@ in
})
sources."highlight.js-11.9.0"
sources."hpagent-1.2.0"
- sources."html-encoding-sniffer-3.0.0"
+ sources."html-encoding-sniffer-4.0.0"
sources."html-entities-1.4.0"
sources."html-minifier-4.0.0"
sources."http-cache-semantics-4.1.1"
sources."http-errors-1.8.1"
- sources."http-proxy-agent-5.0.0"
+ sources."http-proxy-agent-7.0.2"
sources."http-signature-1.2.0"
- sources."https-proxy-agent-5.0.1"
+ sources."https-proxy-agent-7.0.5"
sources."human-signals-2.1.0"
sources."humanize-ms-1.2.1"
sources."iconv-lite-0.6.3"
@@ -74610,13 +73667,13 @@ in
sources."js-sdsl-4.3.0"
sources."js-yaml-4.1.0"
sources."jsbn-0.1.1"
- sources."jsdom-22.1.0"
+ sources."jsdom-23.0.1"
sources."json-schema-0.4.0"
sources."json-schema-traverse-0.4.1"
sources."json-stringify-safe-5.0.1"
sources."jsonfile-2.4.0"
sources."jsprim-1.4.2"
- (sources."katex-0.16.9" // {
+ (sources."katex-0.16.10" // {
dependencies = [
sources."commander-8.3.0"
];
@@ -74649,8 +73706,9 @@ in
})
(sources."make-fetch-happen-9.1.0" // {
dependencies = [
- sources."@tootallnate/once-1.1.2"
+ sources."agent-base-6.0.2"
sources."http-proxy-agent-4.0.1"
+ sources."https-proxy-agent-5.0.1"
sources."minipass-3.3.6"
];
})
@@ -74677,7 +73735,7 @@ in
sources."mdast-util-to-string-3.2.0"
sources."mdurl-1.0.1"
sources."merge-stream-2.0.0"
- sources."mermaid-10.6.1"
+ sources."mermaid-10.9.1"
sources."micromark-3.2.0"
sources."micromark-core-commonmark-1.1.0"
sources."micromark-factory-destination-1.1.0"
@@ -74745,7 +73803,7 @@ in
sources."duplexify-4.1.3"
sources."readable-stream-3.6.2"
sources."utf-8-validate-5.0.10"
- sources."ws-7.5.9"
+ sources."ws-7.5.10"
];
})
sources."mqtt-packet-6.10.0"
@@ -74794,7 +73852,7 @@ in
sources."npm-run-path-4.0.1"
sources."npmlog-5.0.1"
sources."number-allocator-1.0.14"
- sources."nwsapi-2.2.10"
+ sources."nwsapi-2.2.12"
sources."oauth-sign-0.9.0"
sources."object-assign-4.1.1"
(sources."object-to-arguments-0.0.8" // {
@@ -74822,7 +73880,7 @@ in
sources."path-key-3.1.1"
(sources."path-scurry-1.11.1" // {
dependencies = [
- sources."lru-cache-10.2.2"
+ sources."lru-cache-10.4.3"
];
})
sources."performance-now-2.1.0"
@@ -74889,7 +73947,7 @@ in
sources."safer-buffer-2.1.2"
sources."sax-1.4.1"
sources."saxes-6.0.0"
- sources."semver-7.6.2"
+ sources."semver-7.6.3"
sources."server-destroy-1.0.1"
sources."set-blocking-2.0.0"
sources."set-function-length-1.2.2"
@@ -74917,7 +73975,11 @@ in
})
sources."smart-buffer-4.2.0"
sources."socks-2.8.3"
- sources."socks-proxy-agent-6.2.1"
+ (sources."socks-proxy-agent-6.2.1" // {
+ dependencies = [
+ sources."agent-base-6.0.2"
+ ];
+ })
sources."source-map-0.6.1"
sources."split-on-first-1.1.0"
sources."split-skip-0.0.2"
@@ -74937,7 +73999,7 @@ in
sources."statuses-1.5.0"
sources."stream-shift-1.0.3"
sources."strict-uri-encode-2.0.0"
- sources."string-kit-0.17.10"
+ sources."string-kit-0.18.3"
sources."string-padding-1.0.2"
(sources."string-to-stream-3.0.1" // {
dependencies = [
@@ -74989,7 +74051,7 @@ in
sources."debug-4.3.1"
];
})
- sources."terminal-kit-3.0.1"
+ sources."terminal-kit-3.0.2"
(sources."tkwidgets-0.5.27" // {
dependencies = [
sources."ansi-styles-3.2.1"
@@ -75009,7 +74071,7 @@ in
sources."to-regex-range-5.0.1"
sources."toidentifier-1.0.1"
sources."tough-cookie-4.1.4"
- sources."tr46-4.1.1"
+ sources."tr46-5.0.0"
sources."tree-kit-0.8.7"
sources."ts-dedent-2.2.0"
sources."tslib-2.6.3"
@@ -75018,7 +74080,7 @@ in
sources."typedarray-0.0.6"
sources."typical-2.6.1"
sources."uc.micro-1.0.6"
- sources."uglify-js-3.18.0"
+ sources."uglify-js-3.19.0"
sources."uglifycss-0.0.29"
sources."uid-safe-2.1.5"
sources."undici-types-5.26.5"
@@ -75047,12 +74109,12 @@ in
sources."core-util-is-1.0.2"
];
})
- sources."w3c-xmlserializer-4.0.0"
+ sources."w3c-xmlserializer-5.0.0"
sources."web-worker-1.3.0"
sources."webidl-conversions-7.0.0"
- sources."whatwg-encoding-2.0.0"
- sources."whatwg-mimetype-3.0.0"
- sources."whatwg-url-12.0.1"
+ sources."whatwg-encoding-3.1.1"
+ sources."whatwg-mimetype-4.0.0"
+ sources."whatwg-url-14.0.0"
sources."which-2.0.2"
sources."which-typed-array-1.1.15"
sources."wide-align-1.1.5"
@@ -75074,8 +74136,8 @@ in
];
})
sources."wrappy-1.0.2"
- sources."ws-8.17.0"
- sources."xml-name-validator-4.0.0"
+ sources."ws-8.18.0"
+ sources."xml-name-validator-5.0.0"
sources."xml2js-0.4.23"
sources."xmlbuilder-11.0.1"
sources."xmlchars-2.2.0"
@@ -75117,25 +74179,26 @@ in
sources."eastasianwidth-0.2.0"
sources."editorconfig-1.0.4"
sources."emoji-regex-9.2.2"
- sources."foreground-child-3.2.0"
- (sources."glob-10.4.1" // {
+ sources."foreground-child-3.2.1"
+ (sources."glob-10.4.5" // {
dependencies = [
- sources."minimatch-9.0.4"
+ sources."minimatch-9.0.5"
];
})
sources."ini-1.3.8"
sources."is-fullwidth-code-point-3.0.0"
sources."isexe-2.0.0"
- sources."jackspeak-3.4.0"
+ sources."jackspeak-3.4.3"
sources."js-cookie-3.0.5"
- sources."lru-cache-10.2.2"
+ sources."lru-cache-10.4.3"
sources."minimatch-9.0.1"
sources."minipass-7.1.2"
sources."nopt-7.2.1"
+ sources."package-json-from-dist-1.0.0"
sources."path-key-3.1.1"
sources."path-scurry-1.11.1"
sources."proto-list-1.2.4"
- sources."semver-7.6.2"
+ sources."semver-7.6.3"
sources."shebang-command-2.0.0"
sources."shebang-regex-3.0.0"
sources."signal-exit-4.1.0"
@@ -75203,10 +74266,10 @@ in
sha512 = "Nu7Sf35kXJ1MWDZIMAuATRQTg1iIPdzh7tqJ6jjvaU/GfDf+qi5UV8zJR3Mo+/pYFvm8mzay4+6O5EWigaQBQw==";
};
dependencies = [
- sources."@babel/parser-7.24.7"
+ sources."@babel/parser-7.24.8"
sources."@jsdoc/salty-0.2.8"
sources."@types/linkify-it-5.0.0"
- sources."@types/markdown-it-14.1.1"
+ sources."@types/markdown-it-14.1.2"
sources."@types/mdurl-2.0.0"
sources."argparse-2.0.1"
sources."bluebird-3.7.2"
@@ -75227,7 +74290,7 @@ in
sources."requizzle-0.2.4"
sources."strip-json-comments-3.1.1"
sources."uc.micro-2.1.0"
- sources."underscore-1.13.6"
+ sources."underscore-1.13.7"
sources."xmlcreate-2.0.4"
];
buildInputs = globalBuildInputs;
@@ -75383,14 +74446,14 @@ in
sources."mime-types-2.1.35"
sources."ms-2.1.2"
sources."native-promise-only-0.8.1"
- sources."object-inspect-1.13.1"
+ sources."object-inspect-1.13.2"
sources."once-1.4.0"
sources."path-loader-1.0.12"
sources."punycode-2.3.1"
- sources."qs-6.12.1"
+ sources."qs-6.12.3"
sources."readable-stream-3.6.2"
sources."safe-buffer-5.2.1"
- sources."semver-7.6.2"
+ sources."semver-7.6.3"
sources."set-function-length-1.2.2"
sources."side-channel-1.0.6"
sources."slash-3.0.0"
@@ -75421,22 +74484,30 @@ in
};
dependencies = [
sources."@polka/url-1.0.0-next.25"
- sources."@tinyhttp/accepts-2.2.1"
- sources."@tinyhttp/app-2.2.3"
- sources."@tinyhttp/content-disposition-2.2.0"
+ (sources."@tinyhttp/accepts-2.2.2" // {
+ dependencies = [
+ sources."mime-4.0.1"
+ ];
+ })
+ sources."@tinyhttp/app-2.3.0"
+ sources."@tinyhttp/content-disposition-2.2.1"
sources."@tinyhttp/content-type-0.1.4"
- sources."@tinyhttp/cookie-2.1.0"
- sources."@tinyhttp/cookie-signature-2.1.0"
- sources."@tinyhttp/cors-2.0.0"
+ sources."@tinyhttp/cookie-2.1.1"
+ sources."@tinyhttp/cookie-signature-2.1.1"
+ sources."@tinyhttp/cors-2.0.1"
sources."@tinyhttp/encode-url-2.1.1"
- sources."@tinyhttp/etag-2.1.1"
- sources."@tinyhttp/forwarded-2.1.2"
- sources."@tinyhttp/proxy-addr-2.1.3"
- sources."@tinyhttp/req-2.2.2"
- sources."@tinyhttp/res-2.2.2"
+ sources."@tinyhttp/etag-2.1.2"
+ sources."@tinyhttp/forwarded-2.1.1"
+ sources."@tinyhttp/proxy-addr-2.2.0"
+ sources."@tinyhttp/req-2.2.3"
+ sources."@tinyhttp/res-2.2.3"
sources."@tinyhttp/router-2.2.2"
- sources."@tinyhttp/send-2.2.1"
- sources."@tinyhttp/type-is-2.2.2"
+ sources."@tinyhttp/send-2.2.2"
+ (sources."@tinyhttp/type-is-2.2.3" // {
+ dependencies = [
+ sources."mime-4.0.1"
+ ];
+ })
sources."@tinyhttp/url-2.1.1"
sources."@tinyhttp/vary-0.1.3"
sources."anymatch-3.1.3"
@@ -75446,7 +74517,6 @@ in
sources."chokidar-3.6.0"
sources."dot-prop-9.0.0"
sources."es-escape-html-0.1.1"
- sources."es-vary-0.1.2"
sources."eta-3.4.0"
sources."fill-range-7.1.1"
sources."glob-parent-5.1.2"
@@ -75460,7 +74530,7 @@ in
sources."json5-2.2.3"
sources."lowdb-7.0.1"
sources."milliparsec-2.3.0"
- sources."mime-4.0.1"
+ sources."mime-4.0.0-beta.1"
sources."mrmime-2.0.0"
sources."negotiator-0.6.3"
sources."normalize-path-3.0.0"
@@ -75477,7 +74547,7 @@ in
sources."steno-4.0.2"
sources."to-regex-range-5.0.1"
sources."totalist-3.0.1"
- sources."type-fest-4.20.0"
+ sources."type-fest-4.23.0"
];
buildInputs = globalBuildInputs;
meta = {
@@ -75708,7 +74778,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.13.1"
+ sources."is-core-module-2.15.0"
sources."is-data-descriptor-1.0.1"
sources."is-descriptor-1.0.3"
sources."is-dotfile-1.0.3"
@@ -75801,7 +74871,7 @@ in
sources."is-descriptor-0.1.7"
];
})
- sources."object-inspect-1.13.1"
+ sources."object-inspect-1.13.2"
(sources."object-visit-1.0.1" // {
dependencies = [
sources."isobject-3.0.1"
@@ -76194,7 +75264,7 @@ in
sources."natural-orderby-2.0.3"
sources."next-tick-1.1.0"
sources."node-downloader-helper-1.0.19"
- sources."object-inspect-1.13.1"
+ sources."object-inspect-1.13.2"
sources."object-treeify-1.1.33"
sources."onetime-5.1.2"
sources."os-tmpdir-1.0.2"
@@ -76208,7 +75278,7 @@ in
sources."picomatch-2.3.1"
sources."pkg-up-3.1.0"
sources."punycode-2.3.1"
- sources."qs-6.12.1"
+ sources."qs-6.12.3"
sources."queue-microtask-1.2.3"
sources."redeyed-2.1.1"
sources."restore-cursor-3.1.0"
@@ -76221,7 +75291,7 @@ in
];
})
sources."safer-buffer-2.1.2"
- sources."semver-7.6.2"
+ sources."semver-7.6.3"
sources."set-function-length-1.2.2"
sources."shebang-command-2.0.0"
sources."shebang-regex-3.0.0"
@@ -76261,10 +75331,10 @@ in
katex = nodeEnv.buildNodePackage {
name = "katex";
packageName = "katex";
- version = "0.16.10";
+ version = "0.16.11";
src = fetchurl {
- url = "https://registry.npmjs.org/katex/-/katex-0.16.10.tgz";
- sha512 = "ZiqaC04tp2O5utMsl2TEZTXxa6WSC4yo0fv5ML++D3QZv/vx2Mct0mTlRx3O+uUkjfuAgOkzsCmq5MiUEsDDdA==";
+ url = "https://registry.npmjs.org/katex/-/katex-0.16.11.tgz";
+ sha512 = "RQrI8rlHY92OLf3rho/Ts8i/XvjgguEjOkO1BEXcU3N8BqPpSzBNwV/G0Ukr+P/l3ivvJUE/Fa/CwbS6HesGNQ==";
};
dependencies = [
sources."commander-8.3.0"
@@ -76289,17 +75359,22 @@ in
};
dependencies = [
sources."@ampproject/remapping-2.3.0"
- sources."@babel/cli-7.24.7"
+ (sources."@babel/cli-7.24.8" // {
+ dependencies = [
+ sources."make-dir-2.1.0"
+ sources."semver-5.7.2"
+ ];
+ })
sources."@babel/code-frame-7.24.7"
- sources."@babel/compat-data-7.24.7"
- (sources."@babel/core-7.24.7" // {
+ sources."@babel/compat-data-7.24.9"
+ (sources."@babel/core-7.24.9" // {
dependencies = [
sources."semver-6.3.1"
];
})
- sources."@babel/generator-7.24.7"
+ sources."@babel/generator-7.24.10"
sources."@babel/helper-annotate-as-pure-7.24.7"
- (sources."@babel/helper-compilation-targets-7.24.7" // {
+ (sources."@babel/helper-compilation-targets-7.24.8" // {
dependencies = [
sources."semver-6.3.1"
];
@@ -76308,38 +75383,34 @@ in
sources."@babel/helper-function-name-7.24.7"
sources."@babel/helper-hoist-variables-7.24.7"
sources."@babel/helper-module-imports-7.24.7"
- sources."@babel/helper-module-transforms-7.24.7"
- sources."@babel/helper-plugin-utils-7.24.7"
+ sources."@babel/helper-module-transforms-7.24.9"
+ sources."@babel/helper-plugin-utils-7.24.8"
sources."@babel/helper-simple-access-7.24.7"
sources."@babel/helper-split-export-declaration-7.24.7"
- sources."@babel/helper-string-parser-7.24.7"
+ sources."@babel/helper-string-parser-7.24.8"
sources."@babel/helper-validator-identifier-7.24.7"
- sources."@babel/helper-validator-option-7.24.7"
- sources."@babel/helpers-7.24.7"
+ sources."@babel/helper-validator-option-7.24.8"
+ sources."@babel/helpers-7.24.8"
sources."@babel/highlight-7.24.7"
- sources."@babel/node-7.24.7"
- sources."@babel/parser-7.24.7"
+ sources."@babel/node-7.24.8"
+ sources."@babel/parser-7.24.8"
sources."@babel/plugin-syntax-jsx-7.24.7"
sources."@babel/plugin-transform-react-jsx-7.24.7"
- sources."@babel/register-7.24.6"
+ (sources."@babel/register-7.24.6" // {
+ dependencies = [
+ sources."make-dir-2.1.0"
+ sources."semver-5.7.2"
+ ];
+ })
sources."@babel/template-7.24.7"
- sources."@babel/traverse-7.24.7"
- sources."@babel/types-7.24.7"
+ sources."@babel/traverse-7.24.8"
+ sources."@babel/types-7.24.9"
sources."@jridgewell/gen-mapping-0.3.5"
sources."@jridgewell/resolve-uri-3.1.2"
sources."@jridgewell/set-array-1.2.1"
- sources."@jridgewell/sourcemap-codec-1.4.15"
+ sources."@jridgewell/sourcemap-codec-1.5.0"
sources."@jridgewell/trace-mapping-0.3.25"
- (sources."@mapbox/node-pre-gyp-1.0.11" // {
- dependencies = [
- (sources."make-dir-3.1.0" // {
- dependencies = [
- sources."semver-6.3.1"
- ];
- })
- sources."semver-7.6.2"
- ];
- })
+ sources."@mapbox/node-pre-gyp-1.0.11"
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
@@ -76374,12 +75445,16 @@ in
sources."@xmpp/stream-management-0.13.1"
sources."@xmpp/tcp-0.13.1"
sources."@xmpp/tls-0.13.1"
- sources."@xmpp/websocket-0.13.1"
+ (sources."@xmpp/websocket-0.13.1" // {
+ dependencies = [
+ sources."ws-8.18.0"
+ ];
+ })
sources."@xmpp/xml-0.13.1"
sources."abab-2.0.6"
sources."abbrev-1.1.1"
sources."accepts-1.3.8"
- sources."acorn-8.12.0"
+ sources."acorn-8.12.1"
(sources."acorn-globals-6.0.0" // {
dependencies = [
sources."acorn-7.4.1"
@@ -76408,13 +75483,11 @@ in
sources."balanced-match-1.0.2"
sources."base-64-1.0.0"
sources."base64-js-1.5.1"
- sources."bitwise-xor-0.0.0"
sources."bl-4.1.0"
sources."bn.js-4.12.0"
(sources."body-parser-1.20.2" // {
dependencies = [
sources."debug-2.6.9"
- sources."iconv-lite-0.4.24"
sources."ms-2.0.0"
];
})
@@ -76422,13 +75495,13 @@ in
sources."braces-3.0.3"
sources."browser-or-node-1.3.0"
sources."browser-process-hrtime-1.0.0"
- sources."browserslist-4.23.1"
+ sources."browserslist-4.23.2"
sources."buffer-5.7.1"
sources."buffer-from-1.1.2"
sources."bufferutil-4.0.8"
sources."bytes-3.1.2"
sources."call-bind-1.0.7"
- sources."caniuse-lite-1.0.30001634"
+ sources."caniuse-lite-1.0.30001643"
sources."canvas-2.11.2"
sources."chalk-2.4.2"
sources."chardet-1.6.1"
@@ -76460,13 +75533,7 @@ in
sources."cssom-0.3.8"
];
})
- (sources."data-urls-2.0.0" // {
- dependencies = [
- sources."tr46-2.1.0"
- sources."webidl-conversions-6.1.0"
- sources."whatwg-url-8.7.0"
- ];
- })
+ sources."data-urls-2.0.0"
sources."data-view-buffer-1.0.1"
sources."data-view-byte-length-1.0.1"
sources."data-view-byte-offset-1.0.0"
@@ -76491,10 +75558,14 @@ in
})
sources."dotenv-8.6.0"
sources."ee-first-1.1.1"
- sources."electron-to-chromium-1.4.802"
+ sources."electron-to-chromium-1.5.1"
sources."emoji-regex-8.0.0"
sources."encodeurl-1.0.2"
- sources."encoding-0.1.13"
+ (sources."encoding-0.1.13" // {
+ dependencies = [
+ sources."iconv-lite-0.6.3"
+ ];
+ })
sources."end-of-stream-1.4.4"
sources."enquirer-2.4.1"
sources."es-abstract-1.23.3"
@@ -76531,7 +75602,12 @@ in
sources."ms-2.0.0"
];
})
- sources."find-cache-dir-2.1.0"
+ (sources."find-cache-dir-2.1.0" // {
+ dependencies = [
+ sources."make-dir-2.1.0"
+ sources."semver-5.7.2"
+ ];
+ })
sources."find-up-3.0.0"
sources."follow-redirects-1.15.6"
sources."for-each-0.3.3"
@@ -76555,7 +75631,6 @@ in
(sources."fs-minipass-2.1.0" // {
dependencies = [
sources."minipass-3.3.6"
- sources."yallist-4.0.0"
];
})
sources."fs-readdir-recursive-1.1.0"
@@ -76596,7 +75671,7 @@ in
sources."http-errors-2.0.0"
sources."http-proxy-agent-4.0.1"
sources."https-proxy-agent-5.0.1"
- sources."iconv-lite-0.6.3"
+ sources."iconv-lite-0.4.24"
sources."ieee754-1.2.1"
sources."ignore-5.3.1"
sources."inflight-1.0.6"
@@ -76606,7 +75681,11 @@ in
sources."into-stream-6.0.0"
sources."ipaddr.js-1.9.1"
sources."irc-colors-1.5.0"
- sources."irc-upd-0.11.0"
+ (sources."irc-upd-0.11.0" // {
+ dependencies = [
+ sources."iconv-lite-0.6.3"
+ ];
+ })
sources."is-array-buffer-3.0.4"
sources."is-bigint-1.0.4"
sources."is-boolean-object-1.1.2"
@@ -76635,15 +75714,7 @@ in
sources."isexe-2.0.0"
sources."isobject-3.0.1"
sources."js-tokens-4.0.0"
- (sources."jsdom-16.7.0" // {
- dependencies = [
- sources."tr46-2.1.0"
- sources."utf-8-validate-5.0.10"
- sources."webidl-conversions-6.1.0"
- sources."whatwg-url-8.7.0"
- sources."ws-7.5.9"
- ];
- })
+ sources."jsdom-16.7.0"
sources."jsesc-2.5.2"
sources."json5-2.2.3"
(sources."jsonfile-6.1.0" // {
@@ -76655,9 +75726,17 @@ in
sources."koa-compose-4.2.0"
sources."locate-path-3.0.0"
sources."lodash-4.17.21"
- sources."lru-cache-5.1.1"
+ (sources."lru-cache-5.1.1" // {
+ dependencies = [
+ sources."yallist-3.1.1"
+ ];
+ })
sources."ltx-3.0.0"
- sources."make-dir-2.1.0"
+ (sources."make-dir-3.1.0" // {
+ dependencies = [
+ sources."semver-6.3.1"
+ ];
+ })
sources."md5.js-1.3.5"
sources."media-typer-0.3.0"
sources."merge-descriptors-1.0.1"
@@ -76676,7 +75755,6 @@ in
(sources."minizlib-2.1.2" // {
dependencies = [
sources."minipass-3.3.6"
- sources."yallist-4.0.0"
];
})
sources."mkdirp-1.0.4"
@@ -76686,31 +75764,33 @@ in
sources."nan-2.20.0"
sources."napi-build-utils-1.0.2"
sources."negotiator-0.6.3"
- (sources."node-abi-3.65.0" // {
+ sources."node-abi-3.65.0"
+ (sources."node-environment-flags-1.0.6" // {
dependencies = [
- sources."semver-7.6.2"
+ sources."semver-5.7.2"
+ ];
+ })
+ (sources."node-fetch-2.7.0" // {
+ dependencies = [
+ sources."tr46-0.0.3"
+ sources."webidl-conversions-3.0.1"
+ sources."whatwg-url-5.0.0"
];
})
- sources."node-environment-flags-1.0.6"
- sources."node-fetch-2.7.0"
sources."node-gyp-build-4.8.1"
- (sources."node-notifier-10.0.1" // {
- dependencies = [
- sources."semver-7.6.2"
- ];
- })
- sources."node-releases-2.0.14"
+ sources."node-notifier-10.0.1"
+ sources."node-releases-2.0.18"
sources."nopt-5.0.0"
sources."npmlog-5.0.1"
- sources."nwsapi-2.2.10"
+ sources."nwsapi-2.2.12"
sources."object-assign-4.1.1"
- sources."object-inspect-1.13.1"
+ sources."object-inspect-1.13.2"
sources."object-keys-1.1.1"
sources."object.assign-4.1.5"
sources."object.getownpropertydescriptors-2.1.8"
sources."on-finished-2.4.1"
sources."once-1.4.0"
- sources."openpgp-5.11.1"
+ sources."openpgp-5.11.2"
sources."p-is-promise-3.0.0"
sources."p-limit-2.3.0"
sources."p-locate-3.0.0"
@@ -76748,7 +75828,6 @@ in
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
sources."has-flag-4.0.0"
- sources."semver-7.6.2"
sources."supports-color-7.2.0"
];
})
@@ -76774,11 +75853,7 @@ in
sources."queue-microtask-1.2.3"
sources."randombytes-2.1.0"
sources."range-parser-1.2.1"
- (sources."raw-body-2.5.2" // {
- dependencies = [
- sources."iconv-lite-0.4.24"
- ];
- })
+ sources."raw-body-2.5.2"
sources."rc-1.2.8"
sources."readable-stream-3.6.2"
sources."regenerator-runtime-0.14.1"
@@ -76787,7 +75862,7 @@ in
sources."requires-port-1.0.0"
(sources."resolve-1.22.8" // {
dependencies = [
- sources."is-core-module-2.13.1"
+ sources."is-core-module-2.15.0"
];
})
sources."reusify-1.0.4"
@@ -76800,10 +75875,10 @@ in
sources."safer-buffer-2.1.2"
sources."sasl-anonymous-0.1.0"
sources."sasl-plain-0.1.0"
- sources."sasl-scram-sha-1-1.2.1"
+ sources."sasl-scram-sha-1-1.3.0"
sources."saslmechanisms-0.1.1"
sources."saxes-5.0.1"
- sources."semver-5.7.2"
+ sources."semver-7.6.3"
(sources."send-0.18.0" // {
dependencies = [
(sources."debug-2.6.9" // {
@@ -76850,11 +75925,7 @@ in
sources."supports-color-5.5.0"
sources."supports-preserve-symlinks-flag-1.0.0"
sources."symbol-tree-3.2.4"
- (sources."tar-6.2.1" // {
- dependencies = [
- sources."yallist-4.0.0"
- ];
- })
+ sources."tar-6.2.1"
(sources."tar-fs-2.1.1" // {
dependencies = [
sources."chownr-1.1.4"
@@ -76865,7 +75936,7 @@ in
sources."to-regex-range-5.0.1"
sources."toidentifier-1.0.1"
sources."tough-cookie-4.1.4"
- sources."tr46-0.0.3"
+ sources."tr46-2.1.0"
sources."tslib-2.6.3"
sources."tunnel-agent-0.6.0"
sources."type-is-1.6.18"
@@ -76876,9 +75947,9 @@ in
sources."unbox-primitive-1.0.2"
sources."universalify-0.2.0"
sources."unpipe-1.0.0"
- sources."update-browserslist-db-1.0.16"
+ sources."update-browserslist-db-1.1.0"
sources."url-parse-1.5.10"
- sources."utf-8-validate-6.0.4"
+ sources."utf-8-validate-5.0.10"
sources."util-deprecate-1.0.2"
sources."utils-merge-1.0.1"
sources."uuid-8.3.2"
@@ -76889,14 +75960,10 @@ in
sources."w3c-hr-time-1.0.2"
sources."w3c-xmlserializer-2.0.0"
sources."webcrypto-core-1.8.0"
- sources."webidl-conversions-3.0.1"
- (sources."whatwg-encoding-1.0.5" // {
- dependencies = [
- sources."iconv-lite-0.4.24"
- ];
- })
+ sources."webidl-conversions-6.1.0"
+ sources."whatwg-encoding-1.0.5"
sources."whatwg-mimetype-2.3.0"
- sources."whatwg-url-5.0.0"
+ sources."whatwg-url-8.7.0"
sources."which-2.0.2"
sources."which-boxed-primitive-1.0.2"
sources."which-typed-array-1.1.15"
@@ -76909,11 +75976,11 @@ in
];
})
sources."wrappy-1.0.2"
- sources."ws-8.17.0"
+ sources."ws-7.5.10"
sources."xml-name-validator-3.0.0"
sources."xmlchars-2.2.0"
sources."y18n-5.0.8"
- sources."yallist-3.1.1"
+ sources."yallist-4.0.0"
sources."yargs-16.2.0"
sources."yargs-parser-20.2.9"
];
@@ -76984,10 +76051,10 @@ in
lerna = nodeEnv.buildNodePackage {
name = "lerna";
packageName = "lerna";
- version = "8.1.3";
+ version = "8.1.7";
src = fetchurl {
- url = "https://registry.npmjs.org/lerna/-/lerna-8.1.3.tgz";
- sha512 = "Dg/r1dGnRCXKsOUC3lol7o6ggYTA6WWiPQzZJNKqyygn4fzYGuA3Dro2d5677pajaqFnFA72mdCjzSyF16Vi2Q==";
+ url = "https://registry.npmjs.org/lerna/-/lerna-8.1.7.tgz";
+ sha512 = "v2kkBn8Vqtroo30Pr5/JQ9MygRhnCsoI1jSOf3DxWmcTbkpC5U7c6rGr+7NPK6QrxKbC0/Cj4kuIBMb/7f79sQ==";
};
dependencies = [
sources."@babel/code-frame-7.24.7"
@@ -77002,48 +76069,76 @@ in
sources."supports-color-5.5.0"
];
})
+ sources."@babel/runtime-7.24.8"
+ sources."@emnapi/core-1.2.0"
+ sources."@emnapi/runtime-1.2.0"
+ sources."@emnapi/wasi-threads-1.0.1"
sources."@hutson/parse-repository-url-3.0.2"
(sources."@isaacs/cliui-8.0.2" // {
dependencies = [
- sources."ansi-regex-6.0.1"
sources."ansi-styles-6.2.1"
- sources."emoji-regex-9.2.2"
sources."string-width-5.1.2"
sources."strip-ansi-7.1.0"
sources."wrap-ansi-8.1.0"
];
})
+ sources."@isaacs/string-locale-compare-1.1.0"
sources."@jest/schemas-29.6.3"
- sources."@lerna/create-8.1.3"
+ sources."@lerna/create-8.1.7"
+ sources."@napi-rs/wasm-runtime-0.2.4"
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
sources."@npmcli/agent-2.2.2"
- sources."@npmcli/fs-3.1.1"
- (sources."@npmcli/git-5.0.7" // {
+ (sources."@npmcli/arborist-7.5.3" // {
dependencies = [
+ sources."json-parse-even-better-errors-3.0.2"
+ sources."minimatch-9.0.5"
+ ];
+ })
+ sources."@npmcli/fs-3.1.1"
+ (sources."@npmcli/git-5.0.8" // {
+ dependencies = [
+ sources."ini-4.1.3"
sources."isexe-3.1.1"
sources."which-4.0.0"
];
})
sources."@npmcli/installed-package-contents-2.1.0"
+ (sources."@npmcli/map-workspaces-3.0.6" // {
+ dependencies = [
+ sources."minimatch-9.0.5"
+ ];
+ })
+ (sources."@npmcli/metavuln-calculator-7.1.1" // {
+ dependencies = [
+ sources."json-parse-even-better-errors-3.0.2"
+ ];
+ })
+ sources."@npmcli/name-from-folder-2.0.0"
sources."@npmcli/node-gyp-3.0.0"
+ (sources."@npmcli/package-json-5.2.0" // {
+ dependencies = [
+ sources."json-parse-even-better-errors-3.0.2"
+ ];
+ })
(sources."@npmcli/promise-spawn-7.0.2" // {
dependencies = [
sources."isexe-3.1.1"
sources."which-4.0.0"
];
})
- sources."@npmcli/redact-1.1.0"
- (sources."@npmcli/run-script-7.0.2" // {
+ sources."@npmcli/query-3.1.0"
+ sources."@npmcli/redact-2.0.1"
+ (sources."@npmcli/run-script-8.1.0" // {
dependencies = [
sources."isexe-3.1.1"
sources."which-4.0.0"
];
})
- sources."@nrwl/devkit-19.3.0"
- sources."@nrwl/tao-19.3.0"
- (sources."@nx/devkit-19.3.0" // {
+ sources."@nrwl/devkit-19.5.3"
+ sources."@nrwl/tao-19.5.3"
+ (sources."@nx/devkit-19.5.3" // {
dependencies = [
sources."minimatch-9.0.3"
];
@@ -77081,23 +76176,24 @@ in
sources."@sigstore/tuf-2.3.4"
sources."@sigstore/verify-1.2.1"
sources."@sinclair/typebox-0.27.8"
- sources."@swc-node/core-1.13.1"
- sources."@swc-node/register-1.9.2"
- sources."@swc-node/sourcemap-support-0.5.0"
- sources."@swc/core-1.5.29"
+ sources."@swc-node/core-1.13.3"
+ sources."@swc-node/register-1.10.9"
+ sources."@swc-node/sourcemap-support-0.5.1"
+ sources."@swc/core-1.7.1"
sources."@swc/counter-0.1.3"
- sources."@swc/helpers-0.5.11"
- sources."@swc/types-0.1.8"
- sources."@tootallnate/once-2.0.0"
+ sources."@swc/helpers-0.5.12"
+ sources."@swc/types-0.1.12"
sources."@tufjs/canonical-json-2.0.0"
(sources."@tufjs/models-2.0.1" // {
dependencies = [
- sources."minimatch-9.0.4"
+ sources."minimatch-9.0.5"
];
})
+ sources."@tybys/wasm-util-0.9.0"
sources."@types/minimatch-3.0.5"
sources."@types/minimist-1.2.5"
sources."@types/normalize-package-data-2.4.4"
+ sources."@types/parse-json-4.0.2"
sources."@yarnpkg/lockfile-1.1.0"
(sources."@yarnpkg/parsers-3.0.0-rc.46" // {
dependencies = [
@@ -77113,14 +76209,12 @@ in
sources."abbrev-2.0.0"
sources."add-stream-1.0.0"
sources."agent-base-7.1.1"
- sources."agentkeepalive-4.5.0"
sources."aggregate-error-3.1.0"
sources."ansi-colors-4.1.3"
sources."ansi-escapes-4.3.2"
- sources."ansi-regex-5.0.1"
+ sources."ansi-regex-6.0.1"
sources."ansi-styles-4.3.0"
sources."aproba-2.0.0"
- sources."are-we-there-yet-3.0.1"
sources."argparse-1.0.10"
sources."array-differ-3.0.0"
sources."array-ify-1.0.0"
@@ -77129,21 +76223,25 @@ in
sources."async-3.2.5"
sources."asynckit-0.4.0"
sources."axios-1.7.2"
+ (sources."babel-plugin-macros-3.1.0" // {
+ dependencies = [
+ sources."cosmiconfig-7.1.0"
+ ];
+ })
sources."balanced-match-1.0.2"
sources."base64-js-1.5.1"
sources."before-after-hook-2.2.3"
+ sources."bin-links-4.0.4"
sources."bl-4.1.0"
sources."brace-expansion-2.0.1"
sources."braces-3.0.3"
sources."buffer-5.7.1"
sources."buffer-from-1.1.2"
- sources."builtins-1.0.3"
sources."byte-size-8.1.1"
- (sources."cacache-18.0.3" // {
+ (sources."cacache-18.0.4" // {
dependencies = [
sources."fs-minipass-3.0.3"
sources."minipass-7.1.2"
- sources."ssri-10.0.6"
];
})
sources."callsites-3.1.0"
@@ -77160,13 +76258,14 @@ in
sources."cliui-8.0.1"
sources."clone-1.0.4"
sources."clone-deep-4.0.1"
- sources."cmd-shim-6.0.1"
+ sources."cmd-shim-6.0.3"
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
sources."color-support-1.1.3"
sources."colorette-2.0.20"
sources."columnify-1.6.0"
sources."combined-stream-1.0.8"
+ sources."common-ancestor-path-1.0.1"
sources."compare-func-2.0.0"
sources."concat-map-0.0.1"
sources."concat-stream-2.0.0"
@@ -77187,6 +76286,7 @@ in
sources."core-util-is-1.0.3"
sources."cosmiconfig-8.3.6"
sources."cross-spawn-7.0.3"
+ sources."cssesc-3.0.0"
sources."dargs-7.0.0"
sources."dateformat-3.0.3"
sources."debug-4.3.5"
@@ -77196,22 +76296,21 @@ in
sources."map-obj-1.0.1"
];
})
- sources."dedent-0.7.0"
+ sources."dedent-1.5.3"
sources."defaults-1.0.4"
sources."define-lazy-prop-2.0.0"
sources."delayed-stream-1.0.0"
- sources."delegates-1.0.0"
sources."deprecation-2.3.1"
sources."detect-indent-5.0.0"
sources."diff-sequences-29.6.3"
sources."dir-glob-3.0.1"
sources."dot-prop-5.3.0"
- sources."dotenv-16.3.2"
- sources."dotenv-expand-10.0.0"
+ sources."dotenv-16.4.5"
+ sources."dotenv-expand-11.0.6"
sources."duplexer-0.1.2"
sources."eastasianwidth-0.2.0"
sources."ejs-3.1.10"
- sources."emoji-regex-8.0.0"
+ sources."emoji-regex-9.2.2"
(sources."encoding-0.1.13" // {
dependencies = [
sources."iconv-lite-0.6.3"
@@ -77220,7 +76319,7 @@ in
sources."end-of-stream-1.4.4"
sources."enquirer-2.3.6"
sources."env-paths-2.2.1"
- sources."envinfo-7.8.1"
+ sources."envinfo-7.13.0"
sources."err-code-2.0.3"
sources."error-ex-1.3.2"
sources."escalade-3.1.2"
@@ -77234,7 +76333,11 @@ in
sources."tmp-0.0.33"
];
})
- sources."fast-glob-3.3.2"
+ (sources."fast-glob-3.3.2" // {
+ dependencies = [
+ sources."glob-parent-5.1.2"
+ ];
+ })
sources."fastq-1.17.1"
sources."figures-3.2.0"
(sources."filelist-1.0.4" // {
@@ -77246,7 +76349,7 @@ in
sources."find-up-4.1.0"
sources."flat-5.0.2"
sources."follow-redirects-1.15.6"
- (sources."foreground-child-3.2.0" // {
+ (sources."foreground-child-3.2.1" // {
dependencies = [
sources."signal-exit-4.1.0"
];
@@ -77266,7 +76369,6 @@ in
})
sources."fs.realpath-1.0.0"
sources."function-bind-1.1.2"
- sources."gauge-4.0.4"
sources."get-caller-file-2.0.5"
(sources."get-pkg-repo-4.2.1" // {
dependencies = [
@@ -77287,15 +76389,15 @@ in
})
sources."git-semver-tags-5.0.1"
sources."git-up-7.0.0"
- sources."git-url-parse-13.1.0"
+ sources."git-url-parse-14.0.0"
sources."gitconfiglocal-1.0.0"
- (sources."glob-10.4.1" // {
+ (sources."glob-10.4.5" // {
dependencies = [
- sources."minimatch-9.0.4"
+ sources."minimatch-9.0.5"
sources."minipass-7.1.2"
];
})
- sources."glob-parent-5.1.2"
+ sources."glob-parent-6.0.2"
sources."globby-11.1.0"
sources."graceful-fs-4.2.11"
sources."handlebars-4.7.8"
@@ -77306,15 +76408,14 @@ in
sources."hosted-git-info-7.0.2"
sources."http-cache-semantics-4.1.1"
sources."http-proxy-agent-7.0.2"
- sources."https-proxy-agent-7.0.4"
+ sources."https-proxy-agent-7.0.5"
sources."human-signals-2.1.0"
- sources."humanize-ms-1.2.1"
sources."iconv-lite-0.4.24"
sources."ieee754-1.2.1"
sources."ignore-5.3.1"
(sources."ignore-walk-6.0.5" // {
dependencies = [
- sources."minimatch-9.0.4"
+ sources."minimatch-9.0.5"
];
})
(sources."import-fresh-3.3.0" // {
@@ -77325,17 +76426,9 @@ in
sources."import-local-3.1.0"
sources."imurmurhash-0.1.4"
sources."indent-string-4.0.0"
- sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."ini-1.3.8"
- (sources."init-package-json-5.0.0" // {
- dependencies = [
- sources."hosted-git-info-6.1.1"
- sources."lru-cache-7.18.3"
- sources."npm-package-arg-10.1.0"
- sources."proc-log-3.0.0"
- ];
- })
+ sources."init-package-json-6.0.3"
(sources."inquirer-8.2.6" // {
dependencies = [
sources."chalk-4.1.2"
@@ -77350,7 +76443,7 @@ in
})
sources."is-arrayish-0.2.1"
sources."is-ci-3.0.1"
- sources."is-core-module-2.13.1"
+ sources."is-core-module-2.15.0"
sources."is-docker-2.2.1"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-3.0.0"
@@ -77369,8 +76462,8 @@ in
sources."isarray-1.0.0"
sources."isexe-2.0.0"
sources."isobject-3.0.1"
- sources."jackspeak-3.4.0"
- (sources."jake-10.9.1" // {
+ sources."jackspeak-3.4.3"
+ (sources."jake-10.9.2" // {
dependencies = [
sources."brace-expansion-1.1.11"
sources."minimatch-3.1.2"
@@ -77386,55 +76479,20 @@ in
})
sources."jsbn-1.1.0"
sources."json-parse-better-errors-1.0.2"
- sources."json-parse-even-better-errors-3.0.2"
+ sources."json-parse-even-better-errors-2.3.1"
+ sources."json-stringify-nice-1.1.4"
sources."json-stringify-safe-5.0.1"
sources."json5-2.2.3"
sources."jsonc-parser-3.2.0"
sources."jsonfile-6.1.0"
sources."jsonparse-1.3.1"
+ sources."just-diff-6.0.2"
+ sources."just-diff-apply-5.5.0"
sources."kind-of-6.0.3"
- (sources."libnpmaccess-7.0.2" // {
+ sources."libnpmaccess-8.0.6"
+ (sources."libnpmpublish-9.0.9" // {
dependencies = [
- sources."hosted-git-info-6.1.1"
- sources."lru-cache-7.18.3"
- sources."npm-package-arg-10.1.0"
- sources."proc-log-3.0.0"
- ];
- })
- (sources."libnpmpublish-7.3.0" // {
- dependencies = [
- sources."@sigstore/bundle-1.1.0"
- sources."@sigstore/protobuf-specs-0.2.1"
- sources."@sigstore/sign-1.0.0"
- sources."@sigstore/tuf-1.0.3"
- sources."@tufjs/canonical-json-1.0.0"
- sources."@tufjs/models-1.0.4"
- sources."agent-base-6.0.2"
- sources."cacache-17.1.4"
- sources."fs-minipass-3.0.3"
- sources."hosted-git-info-6.1.1"
- sources."http-proxy-agent-5.0.0"
- sources."https-proxy-agent-5.0.1"
- sources."lru-cache-7.18.3"
- (sources."make-fetch-happen-11.1.1" // {
- dependencies = [
- sources."minipass-5.0.0"
- ];
- })
- sources."minimatch-9.0.4"
- sources."minipass-7.1.2"
- (sources."minipass-collect-1.0.2" // {
- dependencies = [
- sources."minipass-3.3.6"
- ];
- })
- sources."normalize-package-data-5.0.0"
- sources."npm-package-arg-10.1.0"
- sources."proc-log-3.0.0"
- sources."sigstore-1.9.0"
- sources."socks-proxy-agent-7.0.0"
- sources."ssri-10.0.6"
- sources."tuf-js-1.1.7"
+ sources."ci-info-4.0.0"
];
})
sources."lines-and-columns-2.0.4"
@@ -77448,12 +76506,11 @@ in
sources."lodash-4.17.21"
sources."lodash.ismatch-4.4.0"
sources."log-symbols-4.1.0"
- sources."lru-cache-10.2.2"
+ sources."lru-cache-10.4.3"
sources."make-dir-4.0.0"
(sources."make-fetch-happen-13.0.1" // {
dependencies = [
sources."minipass-7.1.2"
- sources."ssri-10.0.6"
];
})
sources."map-obj-4.3.0"
@@ -77513,11 +76570,6 @@ in
sources."minipass-3.3.6"
];
})
- (sources."minipass-json-stream-1.0.1" // {
- dependencies = [
- sources."minipass-3.3.6"
- ];
- })
(sources."minipass-pipeline-1.2.4" // {
dependencies = [
sources."minipass-3.3.6"
@@ -77541,76 +76593,28 @@ in
sources."negotiator-0.6.3"
sources."neo-async-2.6.2"
sources."node-fetch-2.6.7"
- (sources."node-gyp-10.1.0" // {
+ (sources."node-gyp-10.2.0" // {
dependencies = [
sources."isexe-3.1.1"
- sources."proc-log-3.0.0"
sources."which-4.0.0"
];
})
sources."node-machine-id-1.1.12"
sources."nopt-7.2.1"
- sources."normalize-package-data-6.0.1"
+ sources."normalize-package-data-6.0.2"
sources."npm-bundled-3.0.1"
sources."npm-install-checks-6.3.0"
sources."npm-normalize-package-bin-3.0.1"
- (sources."npm-package-arg-8.1.1" // {
+ sources."npm-package-arg-11.0.2"
+ sources."npm-packlist-8.0.2"
+ sources."npm-pick-manifest-9.1.0"
+ (sources."npm-registry-fetch-17.1.0" // {
dependencies = [
- sources."hosted-git-info-3.0.8"
- sources."lru-cache-6.0.0"
- sources."validate-npm-package-name-3.0.0"
- ];
- })
- (sources."npm-packlist-5.1.1" // {
- dependencies = [
- sources."glob-8.1.0"
- sources."ignore-walk-5.0.1"
- sources."minimatch-5.1.6"
- sources."npm-bundled-1.1.2"
- sources."npm-normalize-package-bin-1.0.1"
- ];
- })
- (sources."npm-pick-manifest-9.0.1" // {
- dependencies = [
- sources."npm-package-arg-11.0.2"
- ];
- })
- (sources."npm-registry-fetch-14.0.5" // {
- dependencies = [
- sources."agent-base-6.0.2"
- (sources."cacache-17.1.4" // {
- dependencies = [
- sources."minipass-7.1.2"
- ];
- })
- (sources."fs-minipass-3.0.3" // {
- dependencies = [
- sources."minipass-7.1.2"
- ];
- })
- sources."hosted-git-info-6.1.1"
- sources."http-proxy-agent-5.0.0"
- sources."https-proxy-agent-5.0.1"
- sources."lru-cache-7.18.3"
- sources."make-fetch-happen-11.1.1"
- (sources."minipass-collect-1.0.2" // {
- dependencies = [
- sources."minipass-3.3.6"
- ];
- })
- sources."npm-package-arg-10.1.0"
- sources."proc-log-3.0.0"
- sources."socks-proxy-agent-7.0.0"
- (sources."ssri-10.0.6" // {
- dependencies = [
- sources."minipass-7.1.2"
- ];
- })
+ sources."minipass-7.1.2"
];
})
sources."npm-run-path-4.0.1"
- sources."npmlog-6.0.2"
- (sources."nx-19.3.0" // {
+ (sources."nx-19.5.3" // {
dependencies = [
sources."minimatch-9.0.3"
];
@@ -77620,6 +76624,7 @@ in
sources."open-8.4.2"
sources."ora-5.3.0"
sources."os-tmpdir-1.0.2"
+ sources."oxc-resolver-1.10.2"
sources."p-finally-1.0.0"
sources."p-limit-2.3.0"
sources."p-locate-4.1.0"
@@ -77631,21 +76636,21 @@ in
sources."p-timeout-3.2.0"
sources."p-try-2.2.0"
sources."p-waterfall-2.1.1"
- (sources."pacote-17.0.7" // {
+ sources."package-json-from-dist-1.0.0"
+ (sources."pacote-18.0.6" // {
dependencies = [
sources."fs-minipass-3.0.3"
sources."minipass-7.1.2"
- sources."npm-package-arg-11.0.2"
- sources."npm-packlist-8.0.2"
- sources."npm-registry-fetch-16.2.1"
- sources."read-package-json-7.0.1"
- sources."ssri-10.0.6"
];
})
sources."parent-module-1.0.1"
+ (sources."parse-conflict-json-3.0.1" // {
+ dependencies = [
+ sources."json-parse-even-better-errors-3.0.2"
+ ];
+ })
(sources."parse-json-5.2.0" // {
dependencies = [
- sources."json-parse-even-better-errors-2.3.1"
sources."lines-and-columns-1.2.4"
];
})
@@ -77661,6 +76666,7 @@ in
sources."pify-5.0.0"
sources."pirates-4.0.6"
sources."pkg-dir-4.2.0"
+ sources."postcss-selector-parser-6.1.1"
(sources."pretty-format-29.7.0" // {
dependencies = [
sources."ansi-styles-5.2.0"
@@ -77668,33 +76674,28 @@ in
})
sources."proc-log-4.2.0"
sources."process-nextick-args-2.0.1"
+ sources."proggy-2.0.0"
+ sources."promise-all-reject-late-1.0.1"
+ sources."promise-call-limit-3.0.1"
sources."promise-inflight-1.0.1"
sources."promise-retry-2.0.1"
- (sources."promzard-1.0.2" // {
- dependencies = [
- sources."mute-stream-1.0.0"
- sources."read-3.0.1"
- ];
- })
+ sources."promzard-1.0.2"
sources."protocols-2.0.1"
sources."proxy-from-env-1.1.0"
sources."queue-microtask-1.2.3"
sources."quick-lru-4.0.1"
sources."react-is-18.3.1"
- (sources."read-2.1.0" // {
+ (sources."read-3.0.1" // {
dependencies = [
sources."mute-stream-1.0.0"
];
})
sources."read-cmd-shim-4.0.0"
- (sources."read-package-json-6.0.4" // {
+ (sources."read-package-json-fast-3.0.2" // {
dependencies = [
- sources."hosted-git-info-6.1.1"
- sources."lru-cache-7.18.3"
- sources."normalize-package-data-5.0.0"
+ sources."json-parse-even-better-errors-3.0.2"
];
})
- sources."read-package-json-fast-3.0.2"
(sources."read-pkg-3.0.0" // {
dependencies = [
sources."hosted-git-info-2.8.9"
@@ -77718,6 +76719,7 @@ in
})
sources."readable-stream-3.6.2"
sources."redent-3.0.0"
+ sources."regenerator-runtime-0.14.1"
sources."require-directory-2.1.1"
sources."resolve-1.22.8"
sources."resolve-cwd-3.0.0"
@@ -77737,7 +76739,7 @@ in
sources."rxjs-7.8.1"
sources."safe-buffer-5.2.1"
sources."safer-buffer-2.1.2"
- sources."semver-7.6.2"
+ sources."semver-7.6.3"
sources."set-blocking-2.0.0"
sources."shallow-clone-3.0.1"
sources."shebang-command-2.0.0"
@@ -77747,7 +76749,7 @@ in
sources."slash-3.0.0"
sources."smart-buffer-4.2.0"
sources."socks-2.8.3"
- sources."socks-proxy-agent-8.0.3"
+ sources."socks-proxy-agent-8.0.4"
sources."sort-keys-2.0.0"
sources."source-map-0.6.1"
sources."source-map-support-0.5.21"
@@ -77758,16 +76760,32 @@ in
sources."split-1.0.1"
sources."split2-3.2.2"
sources."sprintf-js-1.0.3"
- (sources."ssri-9.0.1" // {
+ (sources."ssri-10.0.6" // {
dependencies = [
- sources."minipass-3.3.6"
+ sources."minipass-7.1.2"
+ ];
+ })
+ (sources."string-width-4.2.3" // {
+ dependencies = [
+ sources."emoji-regex-8.0.0"
+ ];
+ })
+ (sources."string-width-cjs-4.2.3" // {
+ dependencies = [
+ sources."emoji-regex-8.0.0"
];
})
- sources."string-width-4.2.3"
- sources."string-width-cjs-4.2.3"
sources."string_decoder-1.3.0"
- sources."strip-ansi-6.0.1"
- sources."strip-ansi-cjs-6.0.1"
+ (sources."strip-ansi-6.0.1" // {
+ dependencies = [
+ sources."ansi-regex-5.0.1"
+ ];
+ })
+ (sources."strip-ansi-cjs-6.0.1" // {
+ dependencies = [
+ sources."ansi-regex-5.0.1"
+ ];
+ })
sources."strip-bom-3.0.0"
sources."strip-final-newline-2.0.0"
sources."strip-indent-3.0.0"
@@ -77789,27 +76807,25 @@ in
sources."tmp-0.2.3"
sources."to-regex-range-5.0.1"
sources."tr46-0.0.3"
+ sources."treeverse-3.0.0"
sources."trim-newlines-3.0.1"
sources."tsconfig-paths-4.2.0"
sources."tslib-2.6.3"
sources."tuf-js-2.2.1"
sources."type-fest-0.21.3"
sources."typedarray-0.0.6"
- sources."typescript-5.4.5"
- sources."uglify-js-3.18.0"
+ sources."typescript-5.5.4"
+ sources."uglify-js-3.19.0"
sources."unique-filename-3.0.0"
sources."unique-slug-4.0.0"
sources."universal-user-agent-6.0.1"
sources."universalify-2.0.1"
sources."upath-2.0.1"
sources."util-deprecate-1.0.2"
- sources."uuid-9.0.1"
+ sources."uuid-10.0.0"
sources."validate-npm-package-license-3.0.4"
- (sources."validate-npm-package-name-5.0.0" // {
- dependencies = [
- sources."builtins-5.1.0"
- ];
- })
+ sources."validate-npm-package-name-5.0.1"
+ sources."walk-up-path-3.0.1"
sources."wcwidth-1.0.1"
sources."webidl-conversions-3.0.1"
sources."whatwg-url-5.0.0"
@@ -77840,6 +76856,7 @@ in
sources."xtend-4.0.2"
sources."y18n-5.0.8"
sources."yallist-4.0.0"
+ sources."yaml-1.10.2"
sources."yargs-17.7.2"
sources."yargs-parser-21.1.1"
];
@@ -77893,22 +76910,20 @@ in
less-plugin-clean-css = nodeEnv.buildNodePackage {
name = "less-plugin-clean-css";
packageName = "less-plugin-clean-css";
- version = "1.5.1";
+ version = "1.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/less-plugin-clean-css/-/less-plugin-clean-css-1.5.1.tgz";
- sha512 = "Pc68AFHAEJO3aAoRvnUTW5iAiAv6y+TQsWLTTwVNqjiDno6xCvxz1AtfQl7Y0MZSpHPalFajM1EU4RB5UVINpw==";
+ url = "https://registry.npmjs.org/less-plugin-clean-css/-/less-plugin-clean-css-1.6.0.tgz";
+ sha512 = "jwXX6WlXT57OVCXa5oBJBaJq1b4s1BOKeEEoAL2UTeEitogQWfTcBbLT/vow9pl0N0MXV8Mb4KyhTGG0YbEKyQ==";
};
dependencies = [
- sources."amdefine-1.0.1"
- sources."clean-css-3.4.28"
- sources."commander-2.8.1"
- sources."graceful-readlink-1.0.1"
- sources."source-map-0.4.4"
+ sources."clean-css-5.3.3"
+ sources."source-map-0.6.1"
];
buildInputs = globalBuildInputs;
meta = {
description = "clean-css plugin for less.js";
- homepage = "http://lesscss.org";
+ homepage = "https://lesscss.org";
+ license = "Apache-2.0";
};
production = true;
bypassCache = true;
@@ -78288,14 +77303,14 @@ in
sources."ecc-jsbn-0.1.2"
sources."ee-first-1.1.1"
sources."encodeurl-1.0.2"
- (sources."engine.io-3.6.1" // {
+ (sources."engine.io-3.6.2" // {
dependencies = [
sources."cookie-0.4.2"
sources."debug-4.1.1"
sources."ms-2.1.3"
];
})
- (sources."engine.io-client-3.5.3" // {
+ (sources."engine.io-client-3.5.4" // {
dependencies = [
sources."debug-3.1.0"
];
@@ -78450,7 +77465,7 @@ in
sources."is-descriptor-0.1.7"
];
})
- sources."object-inspect-1.13.1"
+ sources."object-inspect-1.13.2"
(sources."object-visit-1.0.1" // {
dependencies = [
sources."isobject-3.0.1"
@@ -78568,7 +77583,7 @@ in
];
})
sources."snapdragon-util-3.0.1"
- (sources."socket.io-2.5.0" // {
+ (sources."socket.io-2.5.1" // {
dependencies = [
sources."debug-4.1.1"
sources."ms-2.1.3"
@@ -78579,7 +77594,7 @@ in
dependencies = [
sources."debug-3.1.0"
sources."isarray-2.0.1"
- sources."socket.io-parser-3.3.3"
+ sources."socket.io-parser-3.3.4"
];
})
(sources."socket.io-parser-3.4.3" // {
@@ -78644,7 +77659,7 @@ in
sources."core-util-is-1.0.2"
];
})
- sources."ws-7.4.6"
+ sources."ws-7.5.10"
sources."xmlhttprequest-ssl-1.6.3"
sources."yeast-0.1.2"
];
@@ -78729,7 +77744,7 @@ in
sources."@types/commander-2.12.2"
sources."@types/diff-3.5.8"
sources."@types/get-stdin-5.0.1"
- sources."@types/node-20.14.2"
+ sources."@types/node-20.14.12"
sources."commander-2.20.3"
sources."diff-3.5.0"
sources."get-stdin-5.0.1"
@@ -78767,7 +77782,7 @@ in
sources."mkdirp-0.3.5"
sources."once-1.4.0"
sources."path-is-absolute-1.0.1"
- sources."requirejs-2.3.6"
+ sources."requirejs-2.3.7"
sources."rimraf-3.0.2"
sources."wrappy-1.0.2"
];
@@ -78868,7 +77883,7 @@ in
sources."esniff-2.0.1"
sources."espree-3.5.4"
sources."esprima-4.0.1"
- (sources."esquery-1.5.0" // {
+ (sources."esquery-1.6.0" // {
dependencies = [
sources."estraverse-5.3.0"
];
@@ -78937,7 +77952,7 @@ in
];
})
sources."interpret-1.4.0"
- sources."is-core-module-2.13.1"
+ sources."is-core-module-2.15.0"
sources."is-fullwidth-code-point-2.0.0"
sources."is-my-ip-valid-1.0.1"
sources."is-my-json-valid-2.20.6"
@@ -79154,13 +78169,13 @@ in
mocha = nodeEnv.buildNodePackage {
name = "mocha";
packageName = "mocha";
- version = "10.4.0";
+ version = "10.7.0";
src = fetchurl {
- url = "https://registry.npmjs.org/mocha/-/mocha-10.4.0.tgz";
- sha512 = "eqhGB8JKapEYcC4ytX/xrzKforgEc3j1pGlAXVy3eRwrtAy5/nIfT1SvgGzfN0XZZxeLq0aQWkOUAmqIJiv+bA==";
+ url = "https://registry.npmjs.org/mocha/-/mocha-10.7.0.tgz";
+ sha512 = "v8/rBWr2VO5YkspYINnvu81inSz2y3ODJrhO175/Exzor1RcEZZkizgE2A+w/CAXXoESS8Kys5E62dOHGHzULA==";
};
dependencies = [
- sources."ansi-colors-4.1.1"
+ sources."ansi-colors-4.1.3"
sources."ansi-regex-5.0.1"
sources."ansi-styles-4.3.0"
sources."anymatch-3.1.3"
@@ -79176,17 +78191,17 @@ in
sources."supports-color-7.2.0"
];
})
- sources."chokidar-3.5.3"
+ sources."chokidar-3.6.0"
sources."cliui-7.0.4"
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
- (sources."debug-4.3.4" // {
+ (sources."debug-4.3.5" // {
dependencies = [
sources."ms-2.1.2"
];
})
sources."decamelize-4.0.0"
- sources."diff-5.0.0"
+ sources."diff-5.2.0"
sources."emoji-regex-8.0.0"
sources."escalade-3.1.2"
sources."escape-string-regexp-4.0.0"
@@ -79194,7 +78209,6 @@ in
sources."find-up-5.0.0"
sources."flat-5.0.2"
sources."fs.realpath-1.0.0"
- sources."fsevents-2.3.3"
sources."get-caller-file-2.0.5"
sources."glob-8.1.0"
sources."glob-parent-5.1.2"
@@ -79212,7 +78226,7 @@ in
sources."js-yaml-4.1.0"
sources."locate-path-6.0.0"
sources."log-symbols-4.1.0"
- sources."minimatch-5.0.1"
+ sources."minimatch-5.1.6"
sources."ms-2.1.3"
sources."normalize-path-3.0.0"
sources."once-1.4.0"
@@ -79224,18 +78238,18 @@ in
sources."readdirp-3.6.0"
sources."require-directory-2.1.1"
sources."safe-buffer-5.2.1"
- sources."serialize-javascript-6.0.0"
+ sources."serialize-javascript-6.0.2"
sources."string-width-4.2.3"
sources."strip-ansi-6.0.1"
sources."strip-json-comments-3.1.1"
sources."supports-color-8.1.1"
sources."to-regex-range-5.0.1"
- sources."workerpool-6.2.1"
+ sources."workerpool-6.5.1"
sources."wrap-ansi-7.0.0"
sources."wrappy-1.0.2"
sources."y18n-5.0.8"
sources."yargs-16.2.0"
- sources."yargs-parser-20.2.4"
+ sources."yargs-parser-20.2.9"
sources."yargs-unparser-2.0.0"
sources."yocto-queue-0.1.0"
];
@@ -79299,14 +78313,14 @@ in
sources."mime-types-2.1.35"
sources."ms-2.1.2"
sources."native-promise-only-0.8.1"
- sources."object-inspect-1.13.1"
+ sources."object-inspect-1.13.2"
sources."once-1.4.0"
sources."path-loader-1.0.12"
sources."punycode-2.3.1"
- sources."qs-6.12.1"
+ sources."qs-6.12.3"
sources."readable-stream-3.6.2"
sources."safe-buffer-5.2.1"
- sources."semver-7.6.2"
+ sources."semver-7.6.3"
sources."set-function-length-1.2.2"
sources."side-channel-1.0.6"
sources."slash-3.0.0"
@@ -79352,7 +78366,7 @@ in
sources."is-arrayish-0.3.2"
sources."is-stream-2.0.1"
sources."kuler-2.0.0"
- sources."logform-2.6.0"
+ sources."logform-2.6.1"
sources."ms-2.1.3"
sources."one-time-1.0.0"
sources."readable-stream-3.6.2"
@@ -79365,7 +78379,7 @@ in
sources."triple-beam-1.4.1"
sources."util-deprecate-1.0.2"
sources."winston-3.11.0"
- sources."winston-transport-4.7.0"
+ sources."winston-transport-4.7.1"
];
buildInputs = globalBuildInputs;
meta = {
@@ -79402,10 +78416,10 @@ in
node-gyp = nodeEnv.buildNodePackage {
name = "node-gyp";
packageName = "node-gyp";
- version = "10.1.0";
+ version = "10.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/node-gyp/-/node-gyp-10.1.0.tgz";
- sha512 = "B4J5M1cABxPc5PwfjhbV5hoy2DP9p8lFXASnEN6hugXOa61416tnTZ29x9sSwAd0o99XNIcpvDDy1swAExsVKA==";
+ url = "https://registry.npmjs.org/node-gyp/-/node-gyp-10.2.0.tgz";
+ sha512 = "sp3FonBAaFe4aYTcFdZUn2NYkbP7xroPGYvQmP4Nl5PxamznItBnNCgjrVTKrEfQynInMsJvZrdmqUnysCJ8rw==";
};
dependencies = [
sources."@isaacs/cliui-8.0.2"
@@ -79418,7 +78432,7 @@ in
sources."ansi-styles-6.2.1"
sources."balanced-match-1.0.2"
sources."brace-expansion-2.0.1"
- sources."cacache-18.0.3"
+ sources."cacache-18.0.4"
sources."chownr-2.0.0"
sources."clean-stack-2.2.0"
sources."color-convert-2.0.1"
@@ -79434,28 +78448,24 @@ in
sources."env-paths-2.2.1"
sources."err-code-2.0.3"
sources."exponential-backoff-3.1.1"
- sources."foreground-child-3.2.0"
+ sources."foreground-child-3.2.1"
sources."fs-minipass-3.0.3"
- sources."glob-10.4.1"
+ sources."glob-10.4.5"
sources."graceful-fs-4.2.11"
sources."http-cache-semantics-4.1.1"
sources."http-proxy-agent-7.0.2"
- sources."https-proxy-agent-7.0.4"
+ sources."https-proxy-agent-7.0.5"
sources."imurmurhash-0.1.4"
sources."indent-string-4.0.0"
sources."ip-address-9.0.5"
sources."is-fullwidth-code-point-3.0.0"
sources."is-lambda-1.0.1"
sources."isexe-2.0.0"
- sources."jackspeak-3.4.0"
+ sources."jackspeak-3.4.3"
sources."jsbn-1.1.0"
- sources."lru-cache-10.2.2"
- (sources."make-fetch-happen-13.0.1" // {
- dependencies = [
- sources."proc-log-4.2.0"
- ];
- })
- sources."minimatch-9.0.4"
+ sources."lru-cache-10.4.3"
+ sources."make-fetch-happen-13.0.1"
+ sources."minimatch-9.0.5"
sources."minipass-7.1.2"
sources."minipass-collect-2.0.1"
sources."minipass-fetch-3.0.5"
@@ -79484,18 +78494,19 @@ in
sources."negotiator-0.6.3"
sources."nopt-7.2.1"
sources."p-map-4.0.0"
+ sources."package-json-from-dist-1.0.0"
sources."path-key-3.1.1"
sources."path-scurry-1.11.1"
- sources."proc-log-3.0.0"
+ sources."proc-log-4.2.0"
sources."promise-retry-2.0.1"
sources."retry-0.12.0"
- sources."semver-7.6.2"
+ sources."semver-7.6.3"
sources."shebang-command-2.0.0"
sources."shebang-regex-3.0.0"
sources."signal-exit-4.1.0"
sources."smart-buffer-4.2.0"
sources."socks-2.8.3"
- sources."socks-proxy-agent-8.0.3"
+ sources."socks-proxy-agent-8.0.4"
sources."sprintf-js-1.1.3"
sources."ssri-10.0.6"
sources."string-width-5.1.2"
@@ -79659,52 +78670,84 @@ in
node-red = nodeEnv.buildNodePackage {
name = "node-red";
packageName = "node-red";
- version = "3.1.10";
+ version = "4.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/node-red/-/node-red-3.1.10.tgz";
- sha512 = "EjjcdgWat7wNcSCyxmSc0uHM5UV2eXEJRbTCzR/xi87Dt0E1gSl/YDAopyu590sz1YybExNk3jQRLmQVjx0POw==";
+ url = "https://registry.npmjs.org/node-red/-/node-red-4.0.2.tgz";
+ sha512 = "19AC1zouBYxaobzkpPb5PdqQptgO1fI9NRcrasFAYoG6wB8S53khFeuy1qiNaggo2JFu6TSJk2zLR+y4wksU1w==";
};
dependencies = [
- sources."@babel/runtime-7.24.7"
- sources."@mapbox/node-pre-gyp-1.0.11"
- sources."@node-red/editor-api-3.1.10"
- sources."@node-red/editor-client-3.1.10"
- (sources."@node-red/nodes-3.1.10" // {
+ sources."@babel/runtime-7.24.8"
+ sources."@emnapi/core-1.2.0"
+ sources."@emnapi/runtime-1.2.0"
+ sources."@emnapi/wasi-threads-1.0.1"
+ (sources."@isaacs/cliui-8.0.2" // {
+ dependencies = [
+ sources."ansi-regex-6.0.1"
+ sources."strip-ansi-7.1.0"
+ ];
+ })
+ sources."@isaacs/fs-minipass-4.0.1"
+ sources."@napi-rs/wasm-runtime-0.2.4"
+ (sources."@node-red/editor-api-4.0.2" // {
+ dependencies = [
+ sources."mime-3.0.0"
+ ];
+ })
+ sources."@node-red/editor-client-4.0.2"
+ (sources."@node-red/nodes-4.0.2" // {
dependencies = [
- sources."cookie-0.5.0"
sources."iconv-lite-0.6.3"
sources."media-typer-1.1.0"
];
})
- sources."@node-red/registry-3.1.10"
- sources."@node-red/runtime-3.1.10"
- sources."@node-red/util-3.1.10"
+ sources."@node-red/registry-4.0.2"
+ sources."@node-red/runtime-4.0.2"
+ sources."@node-red/util-4.0.2"
+ sources."@node-rs/bcrypt-1.10.4"
+ sources."@node-rs/bcrypt-android-arm-eabi-1.10.4"
+ sources."@node-rs/bcrypt-android-arm64-1.10.4"
+ sources."@node-rs/bcrypt-darwin-arm64-1.10.4"
+ sources."@node-rs/bcrypt-darwin-x64-1.10.4"
+ sources."@node-rs/bcrypt-freebsd-x64-1.10.4"
+ sources."@node-rs/bcrypt-linux-arm-gnueabihf-1.10.4"
+ sources."@node-rs/bcrypt-linux-arm64-gnu-1.10.4"
+ sources."@node-rs/bcrypt-linux-arm64-musl-1.10.4"
+ sources."@node-rs/bcrypt-linux-x64-gnu-1.10.4"
+ sources."@node-rs/bcrypt-linux-x64-musl-1.10.4"
+ sources."@node-rs/bcrypt-wasm32-wasi-1.10.4"
+ sources."@node-rs/bcrypt-win32-arm64-msvc-1.10.4"
+ sources."@node-rs/bcrypt-win32-ia32-msvc-1.10.4"
+ sources."@node-rs/bcrypt-win32-x64-msvc-1.10.4"
sources."@sindresorhus/is-5.6.0"
sources."@szmarczak/http-timer-5.0.1"
+ sources."@tybys/wasm-util-0.9.0"
sources."@types/http-cache-semantics-4.0.4"
+ sources."@types/node-20.14.12"
+ (sources."@types/readable-stream-4.0.15" // {
+ dependencies = [
+ sources."safe-buffer-5.1.2"
+ ];
+ })
+ sources."@types/ws-8.5.11"
sources."abbrev-1.1.1"
+ sources."abort-controller-3.0.0"
sources."accepts-1.3.8"
- sources."acorn-8.8.2"
- sources."acorn-walk-8.2.0"
+ sources."acorn-8.11.3"
+ sources."acorn-walk-8.3.2"
(sources."agent-base-6.0.2" // {
dependencies = [
sources."debug-4.3.5"
sources."ms-2.1.2"
];
})
- sources."ajv-8.12.0"
+ sources."ajv-8.14.0"
sources."ansi-colors-4.1.3"
sources."ansi-regex-5.0.1"
+ sources."ansi-styles-6.2.1"
sources."append-field-1.0.0"
- sources."aproba-2.0.0"
- (sources."are-we-there-yet-2.0.0" // {
- dependencies = [
- sources."readable-stream-3.6.2"
- ];
- })
sources."argparse-2.0.1"
sources."array-flatten-1.1.1"
- sources."async-mutex-0.4.0"
+ sources."async-mutex-0.5.0"
sources."asynckit-0.4.0"
sources."axios-1.7.2"
sources."balanced-match-1.0.2"
@@ -79714,17 +78757,12 @@ in
sources."safe-buffer-5.1.2"
];
})
- sources."bcrypt-5.1.0"
sources."bcryptjs-2.4.3"
- (sources."bl-4.1.0" // {
- dependencies = [
- sources."readable-stream-3.6.2"
- ];
- })
+ sources."bl-6.0.14"
sources."body-parser-1.20.2"
sources."boolbase-1.0.0"
- sources."brace-expansion-1.1.11"
- sources."buffer-5.7.1"
+ sources."brace-expansion-2.0.1"
+ sources."buffer-6.0.3"
sources."buffer-from-1.1.2"
sources."bufferutil-4.0.8"
sources."busboy-1.6.0"
@@ -79734,19 +78772,22 @@ in
sources."call-bind-1.0.7"
sources."cheerio-1.0.0-rc.10"
sources."cheerio-select-1.6.0"
- sources."chownr-2.0.0"
+ sources."chownr-3.0.0"
sources."cli-table-0.3.11"
sources."clone-2.1.2"
- sources."color-support-1.1.3"
+ sources."color-convert-2.0.1"
+ sources."color-name-1.1.4"
sources."colors-1.0.3"
sources."combined-stream-1.0.8"
- sources."commist-1.1.0"
- sources."concat-map-0.0.1"
- sources."concat-stream-1.6.2"
- sources."console-control-strings-1.1.0"
+ sources."commist-3.2.0"
+ (sources."concat-stream-2.0.0" // {
+ dependencies = [
+ sources."readable-stream-3.6.2"
+ ];
+ })
sources."content-disposition-0.5.4"
sources."content-type-1.0.5"
- sources."cookie-0.4.2"
+ sources."cookie-0.6.0"
(sources."cookie-parser-1.4.6" // {
dependencies = [
sources."cookie-0.4.1"
@@ -79756,9 +78797,14 @@ in
sources."core-util-is-1.0.3"
sources."cors-2.8.5"
sources."cronosjs-1.7.1"
+ sources."cross-spawn-7.0.3"
sources."css-select-4.3.0"
sources."css-what-6.1.0"
- sources."debug-2.6.9"
+ (sources."debug-2.6.9" // {
+ dependencies = [
+ sources."ms-2.0.0"
+ ];
+ })
(sources."decompress-response-6.0.0" // {
dependencies = [
sources."mimic-response-3.1.0"
@@ -79767,79 +78813,54 @@ in
sources."defer-to-connect-2.0.1"
sources."define-data-property-1.1.4"
sources."delayed-stream-1.0.0"
- sources."delegates-1.0.0"
sources."denque-2.1.0"
sources."depd-2.0.0"
sources."destroy-1.2.0"
- sources."detect-libc-2.0.3"
sources."dom-serializer-1.4.1"
sources."domelementtype-2.3.0"
sources."domhandler-4.3.1"
sources."domutils-2.8.0"
- (sources."duplexify-4.1.3" // {
- dependencies = [
- sources."readable-stream-3.6.2"
- ];
- })
+ sources."eastasianwidth-0.2.0"
sources."ee-first-1.1.1"
- sources."emoji-regex-8.0.0"
+ sources."emoji-regex-9.2.2"
sources."encodeurl-1.0.2"
- (sources."encoding-0.1.13" // {
- dependencies = [
- sources."iconv-lite-0.6.3"
- ];
- })
- sources."end-of-stream-1.4.4"
sources."enquirer-2.4.1"
sources."entities-2.2.0"
sources."es-define-property-1.0.0"
sources."es-errors-1.3.0"
sources."escape-html-1.0.3"
sources."etag-1.8.1"
- (sources."express-4.19.2" // {
+ sources."event-target-shim-5.0.1"
+ sources."events-3.3.0"
+ sources."express-4.19.2"
+ (sources."express-session-1.18.0" // {
dependencies = [
- sources."cookie-0.6.0"
+ sources."cookie-signature-1.0.7"
];
})
- sources."express-session-1.17.3"
sources."fast-deep-equal-3.1.3"
+ sources."fast-unique-numbers-8.0.13"
sources."finalhandler-1.2.0"
sources."follow-redirects-1.15.6"
+ sources."foreground-child-3.2.1"
sources."form-data-4.0.0"
sources."form-data-encoder-2.1.4"
sources."forwarded-0.2.0"
sources."fresh-0.5.2"
- (sources."fs-extra-11.1.1" // {
- dependencies = [
- sources."universalify-2.0.1"
- ];
- })
- (sources."fs-minipass-2.1.0" // {
- dependencies = [
- sources."minipass-3.3.6"
- sources."yallist-4.0.0"
- ];
- })
- sources."fs.realpath-1.0.0"
+ sources."fs-extra-11.2.0"
sources."function-bind-1.1.2"
- sources."gauge-3.0.2"
sources."get-intrinsic-1.2.4"
sources."get-stream-6.0.1"
- sources."glob-7.2.3"
+ sources."glob-10.4.5"
sources."gopd-1.0.1"
sources."got-12.6.0"
sources."graceful-fs-4.2.11"
sources."has-property-descriptors-1.0.2"
sources."has-proto-1.0.3"
sources."has-symbols-1.0.3"
- sources."has-unicode-2.0.1"
sources."hash-sum-2.0.0"
sources."hasown-2.0.2"
- (sources."help-me-3.0.0" // {
- dependencies = [
- sources."readable-stream-3.6.2"
- ];
- })
+ sources."help-me-5.0.0"
sources."hpagent-1.2.0"
sources."htmlparser2-6.1.0"
sources."http-cache-semantics-4.1.1"
@@ -79854,87 +78875,77 @@ in
sources."i18next-21.10.0"
sources."iconv-lite-0.4.24"
sources."ieee754-1.2.1"
- sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."ipaddr.js-1.9.1"
sources."is-fullwidth-code-point-3.0.0"
sources."is-utf8-0.2.1"
sources."isarray-1.0.0"
+ sources."isexe-2.0.0"
+ sources."jackspeak-3.4.3"
sources."js-sdsl-4.3.0"
sources."js-yaml-4.1.0"
sources."json-buffer-3.0.1"
sources."json-schema-traverse-1.0.0"
sources."json-stringify-safe-5.0.1"
- sources."jsonata-1.8.7"
- (sources."jsonfile-6.1.0" // {
- dependencies = [
- sources."universalify-2.0.1"
- ];
- })
+ sources."jsonata-2.0.5"
+ sources."jsonfile-6.1.0"
sources."keyv-4.5.4"
- sources."leven-2.1.0"
sources."lodash.clonedeep-4.5.0"
sources."lowercase-keys-3.0.0"
- sources."lru-cache-4.1.5"
- (sources."make-dir-3.1.0" // {
- dependencies = [
- sources."semver-6.3.1"
- ];
- })
+ sources."lru-cache-6.0.0"
sources."media-typer-0.3.0"
(sources."memorystore-1.6.7" // {
dependencies = [
sources."debug-4.3.5"
+ sources."lru-cache-4.1.5"
sources."ms-2.1.2"
+ sources."yallist-2.1.2"
];
})
sources."merge-descriptors-1.0.1"
sources."methods-1.1.2"
- sources."mime-3.0.0"
+ sources."mime-1.6.0"
sources."mime-db-1.52.0"
sources."mime-types-2.1.35"
sources."mimic-response-4.0.0"
- sources."minimatch-3.1.2"
+ sources."minimatch-9.0.5"
sources."minimist-1.2.8"
- sources."minipass-5.0.0"
- (sources."minizlib-2.1.2" // {
- dependencies = [
- sources."minipass-3.3.6"
- sources."yallist-4.0.0"
- ];
- })
+ sources."minipass-7.1.2"
+ sources."minizlib-3.0.1"
sources."mkdirp-0.5.6"
- sources."moment-2.29.4"
- sources."moment-timezone-0.5.43"
- (sources."mqtt-4.3.7" // {
+ sources."moment-2.30.1"
+ sources."moment-timezone-0.5.45"
+ (sources."mqtt-5.7.0" // {
dependencies = [
- sources."concat-stream-2.0.0"
sources."debug-4.3.5"
- sources."lru-cache-6.0.0"
+ sources."lru-cache-10.4.3"
sources."ms-2.1.2"
- sources."readable-stream-3.6.2"
- sources."yallist-4.0.0"
+ sources."ws-8.18.0"
];
})
- (sources."mqtt-packet-6.10.0" // {
+ (sources."mqtt-packet-9.0.0" // {
dependencies = [
sources."debug-4.3.5"
sources."ms-2.1.2"
];
})
- sources."ms-2.0.0"
- sources."multer-1.4.5-lts.1"
+ sources."ms-2.1.3"
+ (sources."multer-1.4.5-lts.1" // {
+ dependencies = [
+ sources."concat-stream-1.6.2"
+ sources."readable-stream-2.3.8"
+ sources."safe-buffer-5.1.2"
+ sources."string_decoder-1.1.1"
+ ];
+ })
sources."mustache-4.2.0"
- sources."mute-stream-0.0.8"
+ sources."mute-stream-1.0.0"
sources."negotiator-0.6.3"
- sources."node-addon-api-5.1.0"
- sources."node-fetch-2.7.0"
sources."node-gyp-build-4.8.1"
- sources."node-red-admin-3.1.3"
+ sources."node-red-admin-4.0.0"
sources."node-watch-0.7.4"
sources."nopt-5.0.0"
sources."normalize-url-8.0.1"
- sources."npmlog-5.0.1"
sources."nth-check-2.1.1"
(sources."number-allocator-1.0.14" // {
dependencies = [
@@ -79942,29 +78953,34 @@ in
sources."ms-2.1.2"
];
})
- sources."oauth2orize-1.11.1"
+ sources."oauth2orize-1.12.0"
sources."object-assign-4.1.1"
- sources."object-inspect-1.13.1"
+ sources."object-inspect-1.13.2"
sources."on-finished-2.4.1"
sources."on-headers-1.0.2"
- sources."once-1.4.0"
sources."p-cancelable-3.0.0"
+ sources."package-json-from-dist-1.0.0"
sources."parse5-6.0.1"
sources."parse5-htmlparser2-tree-adapter-6.0.1"
sources."parseurl-1.3.3"
- sources."passport-0.6.0"
+ sources."passport-0.7.0"
sources."passport-http-bearer-1.0.1"
sources."passport-oauth2-client-password-0.1.2"
sources."passport-strategy-1.0.0"
- sources."path-is-absolute-1.0.1"
+ sources."path-key-3.1.1"
+ (sources."path-scurry-1.11.1" // {
+ dependencies = [
+ sources."lru-cache-10.4.3"
+ ];
+ })
sources."path-to-regexp-0.1.7"
sources."pause-0.0.1"
+ sources."process-0.11.10"
sources."process-nextick-args-2.0.1"
sources."proxy-addr-2.0.7"
sources."proxy-from-env-1.1.0"
sources."pseudomap-1.0.2"
sources."psl-1.9.0"
- sources."pump-3.0.0"
sources."punycode-2.3.1"
sources."qs-6.11.0"
sources."querystringify-2.2.0"
@@ -79972,12 +78988,8 @@ in
sources."random-bytes-1.0.0"
sources."range-parser-1.2.1"
sources."raw-body-2.5.2"
- sources."read-1.0.7"
- (sources."readable-stream-2.3.8" // {
- dependencies = [
- sources."safe-buffer-5.1.2"
- ];
- })
+ sources."read-3.0.1"
+ sources."readable-stream-4.5.2"
sources."regenerator-runtime-0.14.1"
sources."reinterval-1.1.0"
sources."require-from-string-2.0.2"
@@ -79985,76 +78997,86 @@ in
sources."resolve-alpn-1.2.1"
sources."responselike-3.0.0"
sources."rfdc-1.4.1"
- sources."rimraf-3.0.2"
+ sources."rimraf-5.0.9"
sources."safe-buffer-5.2.1"
sources."safer-buffer-2.1.2"
sources."sax-1.4.1"
- (sources."semver-7.5.4" // {
- dependencies = [
- sources."lru-cache-6.0.0"
- sources."yallist-4.0.0"
- ];
- })
- (sources."send-0.18.0" // {
- dependencies = [
- sources."mime-1.6.0"
- sources."ms-2.1.3"
- ];
- })
+ sources."semver-7.5.4"
+ sources."send-0.18.0"
sources."serve-static-1.15.0"
- sources."set-blocking-2.0.0"
sources."set-function-length-1.2.2"
sources."setprototypeof-1.2.0"
+ sources."shebang-command-2.0.0"
+ sources."shebang-regex-3.0.0"
sources."side-channel-1.0.6"
- sources."signal-exit-3.0.7"
- (sources."split2-3.2.2" // {
- dependencies = [
- sources."readable-stream-3.6.2"
- ];
- })
+ sources."signal-exit-4.1.0"
+ sources."split2-4.2.0"
sources."statuses-2.0.1"
- sources."stream-shift-1.0.3"
sources."streamsearch-1.1.0"
- sources."string-width-4.2.3"
- (sources."string_decoder-1.1.1" // {
+ (sources."string-width-5.1.2" // {
dependencies = [
- sources."safe-buffer-5.1.2"
+ sources."ansi-regex-6.0.1"
+ sources."strip-ansi-7.1.0"
];
})
- sources."strip-ansi-6.0.1"
- (sources."tar-6.2.1" // {
+ (sources."string-width-cjs-4.2.3" // {
dependencies = [
- sources."mkdirp-1.0.4"
- sources."yallist-4.0.0"
+ sources."emoji-regex-8.0.0"
+ ];
+ })
+ sources."string_decoder-1.3.0"
+ sources."strip-ansi-6.0.1"
+ sources."strip-ansi-cjs-6.0.1"
+ (sources."tar-7.2.0" // {
+ dependencies = [
+ sources."mkdirp-3.0.1"
+ sources."yallist-5.0.0"
];
})
sources."toidentifier-1.0.1"
- sources."tough-cookie-4.1.3"
- sources."tr46-0.0.3"
+ (sources."tough-cookie-4.1.4" // {
+ dependencies = [
+ sources."universalify-0.2.0"
+ ];
+ })
sources."tslib-2.6.3"
sources."type-is-1.6.18"
sources."typedarray-0.0.6"
sources."uglify-js-3.17.4"
sources."uid-safe-2.1.5"
sources."uid2-0.0.4"
- sources."universalify-0.2.0"
+ sources."undici-types-5.26.5"
+ sources."universalify-2.0.1"
sources."unpipe-1.0.0"
sources."uri-js-4.4.1"
sources."url-parse-1.5.10"
sources."utf-8-validate-5.0.10"
sources."util-deprecate-1.0.2"
sources."utils-merge-1.0.1"
- sources."uuid-9.0.0"
+ sources."uuid-9.0.1"
sources."vary-1.1.2"
- sources."webidl-conversions-3.0.1"
- sources."whatwg-url-5.0.0"
- sources."wide-align-1.1.5"
- sources."wrappy-1.0.2"
- sources."ws-7.5.6"
+ sources."which-2.0.2"
+ sources."worker-timers-7.1.8"
+ sources."worker-timers-broker-6.1.8"
+ sources."worker-timers-worker-7.0.71"
+ (sources."wrap-ansi-8.1.0" // {
+ dependencies = [
+ sources."ansi-regex-6.0.1"
+ sources."strip-ansi-7.1.0"
+ ];
+ })
+ (sources."wrap-ansi-cjs-7.0.0" // {
+ dependencies = [
+ sources."ansi-styles-4.3.0"
+ sources."emoji-regex-8.0.0"
+ sources."string-width-4.2.3"
+ ];
+ })
+ sources."ws-7.5.10"
sources."xml2js-0.6.2"
sources."xmlbuilder-11.0.1"
sources."xtend-4.0.2"
- sources."yallist-2.1.2"
+ sources."yallist-4.0.0"
];
buildInputs = globalBuildInputs;
meta = {
@@ -80134,7 +79156,7 @@ in
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."ini-1.3.8"
- sources."is-core-module-2.13.1"
+ sources."is-core-module-2.15.0"
sources."is-fullwidth-code-point-1.0.0"
sources."is-typedarray-1.0.0"
sources."isarray-1.0.0"
@@ -80273,10 +79295,10 @@ in
np = nodeEnv.buildNodePackage {
name = "np";
packageName = "np";
- version = "10.0.5";
+ version = "10.0.7";
src = fetchurl {
- url = "https://registry.npmjs.org/np/-/np-10.0.5.tgz";
- sha512 = "Tu270vVvsh92uh6XDXrGS6D94PhzxQYqM8uUxftYVp0B8qXl78dJRYwQ9wfYMOBB9ynlF79eWlUtPUxPzKGddQ==";
+ url = "https://registry.npmjs.org/np/-/np-10.0.7.tgz";
+ sha512 = "vIPKQwOYKpQU40PU5x/vLfN2haj8ObxMvR1QGt7EZnBPWdm4WEbHdumYAnMV7AeR9kACsMqcqAP37sAo5cW5jA==";
};
dependencies = [
sources."@babel/code-frame-7.24.7"
@@ -80287,8 +79309,7 @@ in
sources."escape-string-regexp-1.0.5"
];
})
- sources."@inquirer/figures-1.0.3"
- sources."@ljharb/through-2.3.13"
+ sources."@inquirer/figures-1.0.5"
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
@@ -80300,9 +79321,6 @@ in
})
sources."@pnpm/npm-conf-2.2.2"
sources."@samverschueren/stream-to-observable-0.3.1"
- sources."@sindresorhus/is-5.6.0"
- sources."@szmarczak/http-timer-5.0.1"
- sources."@types/http-cache-semantics-4.0.4"
sources."@types/normalize-package-data-2.4.4"
sources."aggregate-error-4.0.1"
sources."ansi-align-3.0.1"
@@ -80329,13 +79347,6 @@ in
sources."braces-3.0.3"
sources."buffer-5.7.1"
sources."bundle-name-4.1.0"
- sources."cacheable-lookup-7.0.0"
- (sources."cacheable-request-10.2.14" // {
- dependencies = [
- sources."get-stream-6.0.1"
- ];
- })
- sources."call-bind-1.0.7"
sources."callsites-3.1.0"
sources."camelcase-7.0.1"
sources."chalk-5.3.0"
@@ -80373,17 +79384,10 @@ in
];
})
sources."date-fns-1.30.1"
- (sources."decompress-response-6.0.0" // {
- dependencies = [
- sources."mimic-response-3.1.0"
- ];
- })
sources."deep-extend-0.6.0"
sources."default-browser-5.2.1"
sources."default-browser-id-5.0.0"
sources."defaults-1.0.4"
- sources."defer-to-connect-2.0.1"
- sources."define-data-property-1.1.4"
sources."define-lazy-prop-3.0.0"
sources."del-7.1.0"
sources."dir-glob-3.0.1"
@@ -80392,8 +79396,6 @@ in
sources."elegant-spinner-1.0.1"
sources."emoji-regex-8.0.0"
sources."error-ex-1.3.2"
- sources."es-define-property-1.0.0"
- sources."es-errors-1.3.0"
sources."escape-goat-4.0.0"
sources."escape-string-regexp-5.0.0"
(sources."execa-8.0.1" // {
@@ -80417,27 +79419,13 @@ in
];
})
sources."find-up-simple-1.0.0"
- sources."form-data-encoder-2.1.4"
sources."fs.realpath-1.0.0"
- sources."function-bind-1.1.2"
- sources."get-intrinsic-1.2.4"
sources."get-stream-8.0.1"
sources."github-url-from-git-1.5.0"
sources."glob-7.2.3"
sources."glob-parent-5.1.2"
sources."global-directory-4.0.1"
- (sources."global-dirs-3.0.1" // {
- dependencies = [
- sources."ini-2.0.0"
- ];
- })
sources."globby-13.2.2"
- sources."gopd-1.0.1"
- (sources."got-12.6.1" // {
- dependencies = [
- sources."get-stream-6.0.1"
- ];
- })
sources."graceful-fs-4.2.11"
(sources."has-ansi-2.0.0" // {
dependencies = [
@@ -80445,13 +79433,7 @@ in
];
})
sources."has-flag-3.0.0"
- sources."has-property-descriptors-1.0.2"
- sources."has-proto-1.0.3"
- sources."has-symbols-1.0.3"
- sources."hasown-2.0.2"
sources."hosted-git-info-7.0.2"
- sources."http-cache-semantics-4.1.1"
- sources."http2-wrapper-2.2.1"
sources."human-signals-5.0.0"
sources."iconv-lite-0.4.24"
sources."ieee754-1.2.1"
@@ -80459,12 +79441,12 @@ in
(sources."ignore-walk-6.0.5" // {
dependencies = [
sources."brace-expansion-2.0.1"
- sources."minimatch-9.0.4"
+ sources."minimatch-9.0.5"
];
})
sources."import-fresh-3.3.0"
sources."import-lazy-4.0.0"
- (sources."import-local-3.1.0" // {
+ (sources."import-local-3.2.0" // {
dependencies = [
sources."pkg-dir-4.2.0"
];
@@ -80475,7 +79457,7 @@ in
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."ini-4.1.1"
- sources."inquirer-9.2.23"
+ sources."inquirer-9.3.6"
(sources."inquirer-autosubmit-prompt-0.2.0" // {
dependencies = [
sources."ansi-escapes-3.2.0"
@@ -80504,7 +79486,6 @@ in
];
})
sources."is-arrayish-0.2.1"
- sources."is-core-module-2.13.1"
sources."is-docker-3.0.0"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-3.0.0"
@@ -80534,11 +79515,9 @@ in
sources."issue-regex-4.1.0"
sources."js-tokens-4.0.0"
sources."js-yaml-4.1.0"
- sources."json-buffer-3.0.1"
sources."json-parse-even-better-errors-2.3.1"
- sources."keyv-4.5.4"
- sources."ky-1.3.0"
- sources."latest-version-7.0.0"
+ sources."ky-1.4.0"
+ sources."latest-version-9.0.0"
sources."lines-and-columns-1.2.4"
(sources."listr-0.14.3" // {
dependencies = [
@@ -80612,15 +79591,13 @@ in
sources."wrap-ansi-3.0.1"
];
})
- sources."lowercase-keys-3.0.0"
- sources."lru-cache-10.2.2"
+ sources."lru-cache-10.4.3"
sources."meow-13.2.0"
sources."merge-stream-2.0.0"
sources."merge2-1.4.1"
sources."micromatch-4.0.7"
sources."mimic-fn-4.0.0"
sources."mimic-function-5.0.1"
- sources."mimic-response-4.0.0"
sources."minimatch-3.1.2"
sources."minimist-1.2.8"
sources."mute-stream-1.0.0"
@@ -80629,8 +79606,7 @@ in
sources."type-fest-2.19.0"
];
})
- sources."normalize-package-data-6.0.1"
- sources."normalize-url-8.0.1"
+ sources."normalize-package-data-6.0.2"
(sources."npm-name-8.0.0" // {
dependencies = [
sources."p-map-7.0.2"
@@ -80660,7 +79636,6 @@ in
})
sources."org-regex-1.0.0"
sources."os-tmpdir-1.0.2"
- sources."p-cancelable-3.0.0"
sources."p-limit-2.3.0"
sources."p-locate-4.1.0"
sources."p-map-5.5.0"
@@ -80671,7 +79646,7 @@ in
})
sources."p-timeout-6.1.2"
sources."p-try-2.2.0"
- sources."package-json-8.1.1"
+ sources."package-json-10.0.1"
sources."parent-module-1.0.1"
sources."parse-json-5.2.0"
sources."path-exists-5.0.0"
@@ -80684,7 +79659,6 @@ in
sources."proto-list-1.2.4"
sources."pupa-3.1.0"
sources."queue-microtask-1.2.3"
- sources."quick-lru-5.1.1"
(sources."rc-1.2.8" // {
dependencies = [
sources."ini-1.3.8"
@@ -80692,26 +79666,24 @@ in
})
(sources."read-package-up-11.0.0" // {
dependencies = [
- sources."type-fest-4.20.0"
+ sources."type-fest-4.23.0"
];
})
(sources."read-pkg-9.0.1" // {
dependencies = [
sources."parse-json-8.1.0"
- sources."type-fest-4.20.0"
+ sources."type-fest-4.23.0"
];
})
sources."readable-stream-3.6.2"
sources."registry-auth-token-5.0.2"
sources."registry-url-6.0.1"
- sources."resolve-alpn-1.2.1"
(sources."resolve-cwd-3.0.0" // {
dependencies = [
sources."resolve-from-5.0.0"
];
})
sources."resolve-from-4.0.0"
- sources."responselike-3.0.0"
(sources."restore-cursor-3.1.0" // {
dependencies = [
sources."mimic-fn-2.1.0"
@@ -80732,9 +79704,8 @@ in
sources."safe-buffer-5.2.1"
sources."safer-buffer-2.1.2"
sources."scoped-regex-3.0.0"
- sources."semver-7.6.2"
+ sources."semver-7.6.3"
sources."semver-diff-4.0.0"
- sources."set-function-length-1.2.2"
sources."shebang-command-2.0.0"
sources."shebang-regex-3.0.0"
sources."signal-exit-4.1.0"
@@ -80769,15 +79740,10 @@ in
sources."tslib-1.14.1"
sources."type-fest-0.21.3"
sources."typedarray-to-buffer-3.1.5"
- sources."typescript-5.4.5"
+ sources."typescript-5.5.4"
sources."unicorn-magic-0.1.0"
sources."unique-string-3.0.0"
- (sources."update-notifier-7.0.0" // {
- dependencies = [
- sources."is-installed-globally-0.4.0"
- sources."is-path-inside-3.0.3"
- ];
- })
+ sources."update-notifier-7.1.0"
sources."util-deprecate-1.0.2"
sources."validate-npm-package-license-3.0.4"
sources."validate-npm-package-name-5.0.1"
@@ -80805,6 +79771,7 @@ in
];
})
sources."xdg-basedir-5.1.0"
+ sources."yoctocolors-cjs-2.1.2"
];
buildInputs = globalBuildInputs;
meta = {
@@ -80819,10 +79786,10 @@ in
npm = nodeEnv.buildNodePackage {
name = "npm";
packageName = "npm";
- version = "10.8.1";
+ version = "10.8.2";
src = fetchurl {
- url = "https://registry.npmjs.org/npm/-/npm-10.8.1.tgz";
- sha512 = "Dp1C6SvSMYQI7YHq/y2l94uvI+59Eqbu1EpuKQHQ8p16txXRuRit5gH3Lnaagk2aXDIjg/Iru9pd05bnneKgdw==";
+ url = "https://registry.npmjs.org/npm/-/npm-10.8.2.tgz";
+ sha512 = "x/AIjFIKRllrhcb48dqUNAAZl0ig9+qMuN91RpZo3Cb2+zuibfh+KISl6+kVVyktDz230JKc208UkQwwMqyB+w==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -80891,10 +79858,10 @@ in
orval = nodeEnv.buildNodePackage {
name = "orval";
packageName = "orval";
- version = "6.30.2";
+ version = "6.31.0";
src = fetchurl {
- url = "https://registry.npmjs.org/orval/-/orval-6.30.2.tgz";
- sha512 = "bmMfFv9N2iPFAyHxKHVPz9VCJIG4nZI5JnandGCp+W8IqRdVE4M6+XxLS6XTQR0K6pRBhaZYnj/NmCO85qYdgQ==";
+ url = "https://registry.npmjs.org/orval/-/orval-6.31.0.tgz";
+ sha512 = "515KTDQ4VRJCT+4DsMrK/QROWRq4PXrjgxAoEx3jmP7j+aQBGbx8WhidIF6aX1UgbTxw47Lq7QVp9mbnD0lnWA==";
};
dependencies = [
sources."@apidevtools/json-schema-ref-parser-9.0.6"
@@ -80903,7 +79870,7 @@ in
sources."@apidevtools/swagger-parser-10.1.0"
sources."@asyncapi/specs-4.3.1"
sources."@exodus/schemasafe-1.3.0"
- sources."@ibm-cloud/openapi-ruleset-1.17.1"
+ sources."@ibm-cloud/openapi-ruleset-1.18.2"
sources."@ibm-cloud/openapi-ruleset-utilities-1.3.2"
sources."@jsdevtools/ono-7.1.3"
sources."@jsep-plugin/regex-1.0.3"
@@ -80911,17 +79878,17 @@ in
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
- sources."@orval/angular-6.30.2"
- sources."@orval/axios-6.30.2"
- sources."@orval/core-6.30.2"
- sources."@orval/fetch-6.30.2"
- sources."@orval/hono-6.30.2"
- sources."@orval/mock-6.30.2"
- sources."@orval/query-6.30.2"
- sources."@orval/swr-6.30.2"
- sources."@orval/zod-6.30.2"
+ sources."@orval/angular-6.31.0"
+ sources."@orval/axios-6.31.0"
+ sources."@orval/core-6.31.0"
+ sources."@orval/fetch-6.31.0"
+ sources."@orval/hono-6.31.0"
+ sources."@orval/mock-6.31.0"
+ sources."@orval/query-6.31.0"
+ sources."@orval/swr-6.31.0"
+ sources."@orval/zod-6.31.0"
sources."@stoplight/better-ajv-errors-1.0.3"
- sources."@stoplight/json-3.21.0"
+ sources."@stoplight/json-3.21.4"
(sources."@stoplight/json-ref-readers-1.2.2" // {
dependencies = [
sources."tslib-1.14.1"
@@ -80960,11 +79927,11 @@ in
sources."@stoplight/yaml-ast-parser-0.0.50"
sources."@types/es-aggregate-error-1.0.6"
sources."@types/json-schema-7.0.15"
- sources."@types/node-20.14.2"
+ sources."@types/node-20.14.12"
sources."@types/urijs-1.19.25"
sources."abort-controller-3.0.0"
- sources."acorn-8.12.0"
- sources."ajv-8.16.0"
+ sources."acorn-8.12.1"
+ sources."ajv-8.17.1"
sources."ajv-draft-04-1.0.0"
sources."ajv-errors-3.0.0"
sources."ajv-formats-2.1.1"
@@ -80990,7 +79957,7 @@ in
sources."cliui-8.0.1"
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
- sources."compare-versions-6.1.0"
+ sources."compare-versions-6.1.1"
sources."concat-map-0.0.1"
sources."cross-spawn-7.0.3"
sources."data-view-buffer-1.0.1"
@@ -81022,6 +79989,7 @@ in
sources."fast-glob-3.3.2"
sources."fast-memoize-2.5.2"
sources."fast-safe-stringify-2.1.1"
+ sources."fast-uri-3.0.1"
sources."fastq-1.17.1"
sources."fill-range-7.1.1"
sources."find-up-5.0.0"
@@ -81075,7 +80043,7 @@ in
sources."isarray-2.0.5"
sources."isexe-2.0.0"
sources."js-yaml-3.14.1"
- sources."jsep-1.3.8"
+ sources."jsep-1.3.9"
sources."json-schema-traverse-1.0.0"
sources."jsonc-parser-2.2.1"
sources."jsonfile-6.1.0"
@@ -81115,14 +80083,14 @@ in
sources."oas-resolver-2.5.6"
sources."oas-schema-walker-1.1.5"
sources."oas-validator-5.0.8"
- sources."object-inspect-1.13.1"
+ sources."object-inspect-1.13.2"
sources."object-keys-1.1.1"
sources."object.assign-4.1.5"
sources."onetime-5.1.2"
sources."openapi-types-12.1.3"
(sources."openapi3-ts-4.2.2" // {
dependencies = [
- sources."yaml-2.4.5"
+ sources."yaml-2.5.0"
];
})
sources."p-limit-3.1.0"
@@ -81133,7 +80101,6 @@ in
sources."picomatch-2.3.1"
sources."pony-cause-1.1.1"
sources."possible-typed-array-names-1.0.0"
- sources."punycode-2.3.1"
sources."queue-microtask-1.2.3"
sources."readdirp-3.6.0"
sources."reftools-1.1.9"
@@ -81178,11 +80145,10 @@ in
sources."typed-array-byte-length-1.0.1"
sources."typed-array-byte-offset-1.0.2"
sources."typed-array-length-1.0.6"
- sources."typescript-5.4.5"
+ sources."typescript-5.5.4"
sources."unbox-primitive-1.0.2"
sources."undici-types-5.26.5"
sources."universalify-2.0.1"
- sources."uri-js-4.4.1"
sources."urijs-1.19.11"
sources."utility-types-3.11.0"
sources."validator-13.12.0"
@@ -81234,7 +80200,7 @@ in
sources."@jridgewell/resolve-uri-3.1.2"
sources."@jridgewell/set-array-1.2.1"
sources."@jridgewell/source-map-0.3.6"
- sources."@jridgewell/sourcemap-codec-1.4.15"
+ sources."@jridgewell/sourcemap-codec-1.5.0"
sources."@jridgewell/trace-mapping-0.3.25"
sources."@lezer/common-1.2.1"
sources."@lezer/lr-1.4.1"
@@ -81315,7 +80281,7 @@ in
(sources."@parcel/watcher-2.4.1" // {
dependencies = [
sources."detect-libc-1.0.3"
- sources."node-addon-api-7.1.0"
+ sources."node-addon-api-7.1.1"
];
})
sources."@parcel/watcher-android-arm64-2.4.1"
@@ -81331,14 +80297,14 @@ in
sources."@parcel/watcher-win32-ia32-2.4.1"
sources."@parcel/watcher-win32-x64-2.4.1"
sources."@parcel/workers-2.12.0"
- sources."@swc/core-1.5.29"
+ sources."@swc/core-1.7.1"
sources."@swc/counter-0.1.3"
- sources."@swc/helpers-0.5.11"
- sources."@swc/types-0.1.8"
+ sources."@swc/helpers-0.5.12"
+ sources."@swc/types-0.1.12"
sources."@trysound/sax-0.2.0"
sources."abab-2.0.6"
sources."abortcontroller-polyfill-1.7.5"
- sources."acorn-8.12.0"
+ sources."acorn-8.12.1"
(sources."acorn-globals-4.3.4" // {
dependencies = [
sources."acorn-6.4.2"
@@ -81357,17 +80323,17 @@ in
sources."aws-sign2-0.7.0"
sources."aws4-1.13.0"
sources."balanced-match-1.0.2"
- sources."base-x-3.0.9"
+ sources."base-x-3.0.10"
sources."bcrypt-pbkdf-1.0.2"
sources."boolbase-1.0.0"
sources."brace-expansion-2.0.1"
sources."braces-3.0.3"
sources."browser-process-hrtime-1.0.0"
- sources."browserslist-4.23.1"
+ sources."browserslist-4.23.2"
sources."buffer-from-1.1.2"
sources."callsites-3.1.0"
sources."caniuse-api-3.0.0"
- sources."caniuse-lite-1.0.30001634"
+ sources."caniuse-lite-1.0.30001643"
sources."caseless-0.12.0"
sources."chalk-4.1.2"
sources."chrome-trace-event-1.0.4"
@@ -81386,8 +80352,8 @@ in
sources."css-tree-1.1.3"
sources."css-what-6.1.0"
sources."cssesc-3.0.0"
- sources."cssnano-7.0.2"
- sources."cssnano-preset-default-7.0.2"
+ sources."cssnano-7.0.4"
+ sources."cssnano-preset-default-7.0.4"
sources."cssnano-utils-5.0.0"
sources."csso-4.2.0"
sources."cssom-0.3.8"
@@ -81410,7 +80376,7 @@ in
sources."dotenv-expand-5.1.0"
sources."eastasianwidth-0.2.0"
sources."ecc-jsbn-0.1.2"
- sources."electron-to-chromium-1.4.802"
+ sources."electron-to-chromium-1.5.1"
sources."emoji-regex-9.2.2"
sources."entities-3.0.1"
sources."env-paths-2.2.1"
@@ -81427,13 +80393,13 @@ in
sources."fast-json-stable-stringify-2.1.0"
sources."fast-levenshtein-2.0.6"
sources."fill-range-7.1.1"
- sources."foreground-child-3.2.0"
+ sources."foreground-child-3.2.1"
sources."forever-agent-0.6.1"
sources."form-data-2.3.3"
sources."fs.realpath-1.0.0"
sources."get-port-4.2.0"
sources."getpass-0.1.7"
- sources."glob-10.4.1"
+ sources."glob-10.4.5"
sources."globals-13.24.0"
sources."har-schema-2.0.0"
sources."har-validator-5.1.5"
@@ -81480,7 +80446,7 @@ in
sources."is-typedarray-1.0.0"
sources."isexe-2.0.0"
sources."isstream-0.1.2"
- sources."jackspeak-3.4.0"
+ sources."jackspeak-3.4.3"
sources."js-tokens-4.0.0"
sources."js-yaml-4.1.0"
sources."jsbn-0.1.1"
@@ -81508,25 +80474,26 @@ in
sources."lodash.memoize-4.1.2"
sources."lodash.sortby-4.7.0"
sources."lodash.uniq-4.5.0"
- sources."lru-cache-10.2.2"
+ sources."lru-cache-10.4.3"
sources."mdn-data-2.0.14"
sources."micromatch-4.0.7"
sources."mime-db-1.52.0"
sources."mime-types-2.1.35"
- sources."minimatch-9.0.4"
+ sources."minimatch-9.0.5"
sources."minipass-7.1.2"
- sources."msgpackr-1.10.2"
+ sources."msgpackr-1.11.0"
sources."nanoid-3.3.7"
sources."node-addon-api-6.1.0"
sources."node-gyp-build-optional-packages-5.1.1"
- sources."node-releases-2.0.14"
+ sources."node-releases-2.0.18"
sources."nth-check-2.1.1"
sources."nullthrows-1.1.1"
- sources."nwsapi-2.2.10"
+ sources."nwsapi-2.2.12"
sources."oauth-sign-0.9.0"
sources."once-1.4.0"
sources."optionator-0.8.3"
sources."ordered-binary-1.5.1"
+ sources."package-json-from-dist-1.0.0"
sources."parent-module-1.0.1"
sources."parse-json-5.2.0"
sources."parse5-5.1.0"
@@ -81537,33 +80504,33 @@ in
sources."picocolors-1.0.1"
sources."picomatch-2.3.1"
sources."pn-1.1.0"
- sources."postcss-8.4.38"
+ sources."postcss-8.4.40"
sources."postcss-calc-10.0.0"
- sources."postcss-colormin-7.0.0"
- sources."postcss-convert-values-7.0.0"
- sources."postcss-discard-comments-7.0.0"
+ sources."postcss-colormin-7.0.1"
+ sources."postcss-convert-values-7.0.2"
+ sources."postcss-discard-comments-7.0.1"
sources."postcss-discard-duplicates-7.0.0"
sources."postcss-discard-empty-7.0.0"
sources."postcss-discard-overridden-7.0.0"
- sources."postcss-merge-longhand-7.0.1"
- sources."postcss-merge-rules-7.0.1"
+ sources."postcss-merge-longhand-7.0.2"
+ sources."postcss-merge-rules-7.0.2"
sources."postcss-minify-font-values-7.0.0"
sources."postcss-minify-gradients-7.0.0"
- sources."postcss-minify-params-7.0.0"
- sources."postcss-minify-selectors-7.0.1"
+ sources."postcss-minify-params-7.0.1"
+ sources."postcss-minify-selectors-7.0.2"
sources."postcss-normalize-charset-7.0.0"
sources."postcss-normalize-display-values-7.0.0"
sources."postcss-normalize-positions-7.0.0"
sources."postcss-normalize-repeat-style-7.0.0"
sources."postcss-normalize-string-7.0.0"
sources."postcss-normalize-timing-functions-7.0.0"
- sources."postcss-normalize-unicode-7.0.0"
+ sources."postcss-normalize-unicode-7.0.1"
sources."postcss-normalize-url-7.0.0"
sources."postcss-normalize-whitespace-7.0.0"
- sources."postcss-ordered-values-7.0.0"
- sources."postcss-reduce-initial-7.0.0"
+ sources."postcss-ordered-values-7.0.1"
+ sources."postcss-reduce-initial-7.0.1"
sources."postcss-reduce-transforms-7.0.0"
- sources."postcss-selector-parser-6.1.0"
+ sources."postcss-selector-parser-6.1.1"
(sources."postcss-svgo-7.0.1" // {
dependencies = [
sources."css-select-5.1.0"
@@ -81610,7 +80577,7 @@ in
sources."safe-buffer-5.2.1"
sources."safer-buffer-2.1.2"
sources."saxes-3.1.11"
- sources."semver-7.6.2"
+ sources."semver-7.6.3"
sources."shebang-command-2.0.0"
sources."shebang-regex-3.0.0"
sources."signal-exit-4.1.0"
@@ -81634,12 +80601,12 @@ in
];
})
sources."strip-ansi-cjs-6.0.1"
- sources."stylehacks-7.0.1"
+ sources."stylehacks-7.0.2"
sources."supports-color-7.2.0"
sources."svgo-2.8.0"
sources."symbol-tree-3.2.4"
sources."term-size-2.2.1"
- (sources."terser-5.31.1" // {
+ (sources."terser-5.31.3" // {
dependencies = [
sources."commander-2.20.3"
];
@@ -81653,7 +80620,7 @@ in
sources."tweetnacl-0.14.5"
sources."type-check-0.3.2"
sources."type-fest-0.20.2"
- sources."typescript-5.4.5"
+ sources."typescript-5.5.4"
(sources."uncss-0.17.3" // {
dependencies = [
sources."brace-expansion-1.1.11"
@@ -81666,7 +80633,7 @@ in
];
})
sources."uniq-1.0.1"
- sources."update-browserslist-db-1.0.16"
+ sources."update-browserslist-db-1.1.0"
sources."uri-js-4.4.1"
sources."util-deprecate-1.0.2"
sources."utility-types-3.11.0"
@@ -81694,7 +80661,7 @@ in
];
})
sources."wrappy-1.0.2"
- sources."ws-6.2.2"
+ sources."ws-6.2.3"
sources."xml-name-validator-3.0.0"
sources."xmlchars-2.2.0"
];
@@ -81883,7 +80850,7 @@ in
sources."neo-async-2.6.2"
sources."node-gyp-build-4.8.1"
sources."oauth-sign-0.9.0"
- sources."object-inspect-1.13.1"
+ sources."object-inspect-1.13.2"
sources."object-keys-1.1.1"
sources."object.assign-4.1.5"
sources."on-finished-2.4.1"
@@ -81944,7 +80911,7 @@ in
sources."serve-static-1.15.0"
(sources."service-runner-2.9.0" // {
dependencies = [
- sources."semver-7.6.2"
+ sources."semver-7.6.3"
sources."yargs-14.2.3"
];
})
@@ -81967,7 +80934,7 @@ in
sources."tunnel-agent-0.6.0"
sources."tweetnacl-0.14.5"
sources."type-is-1.6.18"
- sources."uglify-js-3.18.0"
+ sources."uglify-js-3.19.0"
sources."unix-dgram-2.0.6"
sources."unpipe-1.0.0"
sources."uri-js-4.4.1"
@@ -82067,7 +81034,7 @@ in
sources."path-key-3.1.1"
sources."picomatch-2.3.1"
sources."rimraf-2.7.1"
- sources."semver-7.6.2"
+ sources."semver-7.6.3"
sources."set-function-length-1.2.2"
sources."shebang-command-2.0.0"
sources."shebang-regex-3.0.0"
@@ -82078,7 +81045,7 @@ in
sources."universalify-2.0.1"
sources."which-2.0.2"
sources."wrappy-1.0.2"
- sources."yaml-2.4.5"
+ sources."yaml-2.5.0"
];
buildInputs = globalBuildInputs;
meta = {
@@ -82233,7 +81200,7 @@ in
sources."ipaddr.js-2.2.0"
sources."is-arguments-1.1.1"
sources."is-arrayish-0.2.1"
- sources."is-core-module-2.13.1"
+ sources."is-core-module-2.15.0"
sources."is-date-object-1.0.5"
sources."is-finite-1.1.0"
sources."is-fullwidth-code-point-1.0.0"
@@ -82352,6 +81319,7 @@ in
(sources."simple-websocket-4.3.1" // {
dependencies = [
sources."safe-buffer-5.0.1"
+ sources."ultron-1.1.1"
sources."ws-2.3.1"
];
})
@@ -82389,7 +81357,7 @@ in
})
sources."trim-newlines-1.0.0"
sources."typedarray-0.0.6"
- sources."ultron-1.1.1"
+ sources."ultron-1.0.2"
sources."uniq-1.0.1"
sources."util-deprecate-1.0.2"
sources."utp-0.0.7"
@@ -82397,11 +81365,7 @@ in
sources."winreg-1.2.4"
sources."wordwrap-0.0.3"
sources."wrappy-1.0.2"
- (sources."ws-1.1.5" // {
- dependencies = [
- sources."ultron-1.0.2"
- ];
- })
+ sources."ws-1.1.5"
sources."xmlbuilder-4.0.0"
sources."xmldom-0.1.31"
sources."xtend-4.0.2"
@@ -82456,7 +81420,6 @@ in
(sources."bittorrent-tracker-7.7.0" // {
dependencies = [
sources."bencode-0.8.0"
- sources."ultron-1.0.2"
sources."ws-1.1.5"
];
})
@@ -82526,14 +81489,14 @@ in
sources."ee-first-1.1.1"
sources."encodeurl-1.0.2"
sources."end-of-stream-1.4.4"
- (sources."engine.io-3.6.1" // {
+ (sources."engine.io-3.6.2" // {
dependencies = [
sources."cookie-0.4.2"
sources."debug-4.1.1"
sources."ms-2.1.3"
];
})
- (sources."engine.io-client-3.5.3" // {
+ (sources."engine.io-client-3.5.4" // {
dependencies = [
sources."debug-3.1.0"
];
@@ -82661,7 +81624,7 @@ in
sources."node-gyp-build-4.8.1"
sources."normalize-path-3.0.0"
sources."oauth-sign-0.9.0"
- sources."object-inspect-1.13.1"
+ sources."object-inspect-1.13.2"
sources."on-finished-2.4.1"
sources."on-headers-1.0.2"
sources."once-1.4.0"
@@ -82737,10 +81700,11 @@ in
dependencies = [
sources."readable-stream-2.3.8"
sources."safe-buffer-5.0.1"
+ sources."ultron-1.1.1"
sources."ws-2.3.1"
];
})
- (sources."socket.io-2.5.0" // {
+ (sources."socket.io-2.5.1" // {
dependencies = [
sources."debug-4.1.1"
sources."ms-2.1.3"
@@ -82751,7 +81715,7 @@ in
dependencies = [
sources."debug-3.1.0"
sources."isarray-2.0.1"
- sources."socket.io-parser-3.3.3"
+ sources."socket.io-parser-3.3.4"
];
})
(sources."socket.io-parser-3.4.3" // {
@@ -82790,7 +81754,7 @@ in
sources."tweetnacl-0.14.5"
sources."type-is-1.6.18"
sources."uid-safe-2.1.5"
- sources."ultron-1.1.1"
+ sources."ultron-1.0.2"
sources."uniq-1.0.1"
sources."unpipe-1.0.0"
sources."uri-js-4.4.1"
@@ -82807,7 +81771,7 @@ in
})
sources."which-1.3.1"
sources."wrappy-1.0.2"
- sources."ws-7.4.6"
+ sources."ws-7.5.10"
sources."xmlhttprequest-ssl-1.6.3"
sources."xtend-4.0.2"
sources."yeast-0.1.2"
@@ -82854,10 +81818,10 @@ in
postcss = nodeEnv.buildNodePackage {
name = "postcss";
packageName = "postcss";
- version = "8.4.38";
+ version = "8.4.40";
src = fetchurl {
- url = "https://registry.npmjs.org/postcss/-/postcss-8.4.38.tgz";
- sha512 = "Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==";
+ url = "https://registry.npmjs.org/postcss/-/postcss-8.4.40.tgz";
+ sha512 = "YF2kKIUzAofPMpfH6hOi2cGnv/HrUlfucspc7pDyvv7kGdqXrfj8SCl/t8owkEgKEuu8ZcRjSOxFxVLqwChZ2Q==";
};
dependencies = [
sources."nanoid-3.3.7"
@@ -82906,9 +81870,9 @@ in
sources."fs-extra-11.2.0"
sources."get-caller-file-2.0.5"
sources."get-stdin-9.0.0"
- sources."get-tsconfig-4.7.5"
+ sources."get-tsconfig-4.7.6"
sources."glob-parent-5.1.2"
- sources."globby-14.0.1"
+ sources."globby-14.0.2"
sources."graceful-fs-4.2.11"
sources."ignore-5.3.1"
sources."is-binary-path-2.1.0"
@@ -82927,7 +81891,7 @@ in
sources."picocolors-1.0.1"
sources."picomatch-2.3.1"
sources."pify-2.3.0"
- sources."postcss-8.4.38"
+ sources."postcss-8.4.40"
sources."postcss-load-config-5.1.0"
sources."postcss-reporter-7.1.0"
sources."pretty-hrtime-1.0.3"
@@ -82944,12 +81908,12 @@ in
sources."strip-ansi-6.0.1"
sources."thenby-1.3.4"
sources."to-regex-range-5.0.1"
- sources."tsx-4.15.4"
+ sources."tsx-4.16.2"
sources."unicorn-magic-0.1.0"
sources."universalify-2.0.1"
sources."wrap-ansi-7.0.0"
sources."y18n-5.0.8"
- sources."yaml-2.4.5"
+ sources."yaml-2.5.0"
sources."yargs-17.7.2"
sources."yargs-parser-21.1.1"
];
@@ -82996,7 +81960,7 @@ in
sources."rc-1.2.8"
sources."readable-stream-3.6.2"
sources."safe-buffer-5.2.1"
- sources."semver-7.6.2"
+ sources."semver-7.6.3"
sources."simple-concat-1.0.1"
sources."simple-get-4.0.1"
sources."string_decoder-1.3.0"
@@ -83020,10 +81984,10 @@ in
prettier = nodeEnv.buildNodePackage {
name = "prettier";
packageName = "prettier";
- version = "3.3.2";
+ version = "3.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/prettier/-/prettier-3.3.2.tgz";
- sha512 = "rAVeHYMcv8ATV5d508CFdn+8/pHPpXeIid1DdrPwXnaAdH7cqjVbpJaT5eq4yRAFU/lsbwYwSF/n5iNrdJHPQA==";
+ url = "https://registry.npmjs.org/prettier/-/prettier-3.3.3.tgz";
+ sha512 = "i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -83046,7 +82010,7 @@ in
dependencies = [
sources."@taplo/core-0.1.1"
sources."@taplo/lib-0.4.0-alpha.2"
- sources."prettier-3.3.2"
+ sources."prettier-3.3.3"
];
buildInputs = globalBuildInputs;
meta = {
@@ -83061,17 +82025,17 @@ in
prisma = nodeEnv.buildNodePackage {
name = "prisma";
packageName = "prisma";
- version = "5.15.0";
+ version = "5.17.0";
src = fetchurl {
- url = "https://registry.npmjs.org/prisma/-/prisma-5.15.0.tgz";
- sha512 = "JA81ACQSCi3a7NUOgonOIkdx8PAVkO+HbUOxmd00Yb8DgIIEpr2V9+Qe/j6MLxIgWtE/OtVQ54rVjfYRbZsCfw==";
+ url = "https://registry.npmjs.org/prisma/-/prisma-5.17.0.tgz";
+ sha512 = "m4UWkN5lBE6yevqeOxEvmepnL5cNPEjzMw2IqDB59AcEV6w7D8vGljDLd1gPFH+W6gUxw9x7/RmN5dCS/WTPxA==";
};
dependencies = [
- sources."@prisma/debug-5.15.0"
- sources."@prisma/engines-5.15.0"
- sources."@prisma/engines-version-5.15.0-29.12e25d8d06f6ea5a0252864dd9a03b1bb51f3022"
- sources."@prisma/fetch-engine-5.15.0"
- sources."@prisma/get-platform-5.15.0"
+ sources."@prisma/debug-5.17.0"
+ sources."@prisma/engines-5.17.0"
+ sources."@prisma/engines-version-5.17.0-31.393aa359c9ad4a4bb28630fb5613f9c281cde053"
+ sources."@prisma/fetch-engine-5.17.0"
+ sources."@prisma/get-platform-5.17.0"
];
buildInputs = globalBuildInputs;
meta = {
@@ -83086,14 +82050,14 @@ in
"@prisma/language-server" = nodeEnv.buildNodePackage {
name = "_at_prisma_slash_language-server";
packageName = "@prisma/language-server";
- version = "5.15.0";
+ version = "5.17.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@prisma/language-server/-/language-server-5.15.0.tgz";
- sha512 = "hcYw8VCycw1TPrTVZGs9AaAXepj8tmsyDE7RaOUD8Csydbz9g4fqeNo/zHrY9KPjiTMwVvTNVknArt5nWCvPYQ==";
+ url = "https://registry.npmjs.org/@prisma/language-server/-/language-server-5.17.0.tgz";
+ sha512 = "4XXTBGpwJBUFqvY2WxL/4W1q/OOstxCJER4TYftNgMGjKjnsFkQNme567QTlPwWp7VGw2jcNmyTFOcP4HdohIg==";
};
dependencies = [
- sources."@prisma/prisma-schema-wasm-5.15.0-29.12e25d8d06f6ea5a0252864dd9a03b1bb51f3022"
- sources."@prisma/schema-files-loader-5.15.0"
+ sources."@prisma/prisma-schema-wasm-5.17.0-31.393aa359c9ad4a4bb28630fb5613f9c281cde053"
+ sources."@prisma/schema-files-loader-5.17.0"
sources."@types/js-levenshtein-1.1.3"
sources."fs-extra-11.1.1"
sources."graceful-fs-4.2.11"
@@ -83142,13 +82106,13 @@ in
})
sources."eastasianwidth-0.2.0"
sources."emoji-regex-9.2.2"
- sources."foreground-child-3.2.0"
+ sources."foreground-child-3.2.1"
sources."fs.realpath-1.0.0"
sources."gaze-1.1.3"
- (sources."glob-10.4.1" // {
+ (sources."glob-10.4.5" // {
dependencies = [
sources."brace-expansion-2.0.1"
- sources."minimatch-9.0.4"
+ sources."minimatch-9.0.5"
];
})
(sources."globule-1.3.4" // {
@@ -83160,13 +82124,14 @@ in
sources."inherits-2.0.4"
sources."is-fullwidth-code-point-3.0.0"
sources."isexe-2.0.0"
- sources."jackspeak-3.4.0"
+ sources."jackspeak-3.4.3"
sources."keypress-0.2.1"
sources."lodash-4.17.21"
- sources."lru-cache-10.2.2"
+ sources."lru-cache-10.4.3"
sources."minimatch-3.0.8"
sources."minipass-7.1.2"
sources."once-1.4.0"
+ sources."package-json-from-dist-1.0.0"
sources."path-is-absolute-1.0.1"
sources."path-key-3.1.1"
sources."path-scurry-1.11.1"
@@ -83303,7 +82268,7 @@ in
})
sources."domain-browser-1.2.0"
sources."duplexer2-0.1.4"
- (sources."elliptic-6.5.5" // {
+ (sources."elliptic-6.5.6" // {
dependencies = [
sources."bn.js-4.12.0"
];
@@ -83355,7 +82320,7 @@ in
];
})
sources."is-buffer-1.1.6"
- sources."is-core-module-2.13.1"
+ sources."is-core-module-2.15.0"
sources."isarray-1.0.0"
sources."isexe-2.0.0"
sources."json-stable-stringify-0.0.1"
@@ -83389,7 +82354,7 @@ in
})
sources."mute-stream-0.0.8"
sources."node-static-0.7.11"
- sources."object-inspect-1.13.1"
+ sources."object-inspect-1.13.2"
sources."object-keys-1.1.1"
sources."object.assign-4.1.5"
sources."once-1.4.0"
@@ -83420,7 +82385,7 @@ in
];
})
sources."punycode-1.4.1"
- sources."qs-6.12.1"
+ sources."qs-6.12.3"
sources."querystring-es3-0.2.1"
sources."randombytes-2.1.0"
sources."randomfill-1.0.4"
@@ -83532,10 +82497,10 @@ in
purescript-psa = nodeEnv.buildNodePackage {
name = "purescript-psa";
packageName = "purescript-psa";
- version = "0.8.2";
+ version = "0.9.0";
src = fetchurl {
- url = "https://registry.npmjs.org/purescript-psa/-/purescript-psa-0.8.2.tgz";
- sha512 = "4Olf0aQQrNCfcDLXQI3gJgINEQ+3U+4QPLmQ2LHX2L/YOXSwM7fOGIUs/wMm/FQnwERUyQmHKQTJKB4LIjE2fg==";
+ url = "https://registry.npmjs.org/purescript-psa/-/purescript-psa-0.9.0.tgz";
+ sha512 = "yKsPiF4x/LjxOAzeUFIr/f0PtBgRK3IBwh4fNY6Ndz+p12QOEjReeJxqt5wIUo1O6RHPJLmb1Dro2xxc8I9w9w==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -83632,7 +82597,7 @@ in
sources."ink-2.7.1"
sources."is-arrayish-0.2.1"
sources."is-ci-2.0.0"
- sources."is-core-module-2.13.1"
+ sources."is-core-module-2.15.0"
sources."is-fullwidth-code-point-3.0.0"
sources."is-plain-obj-1.1.0"
sources."js-tokens-4.0.0"
@@ -83748,10 +82713,10 @@ in
rimraf = nodeEnv.buildNodePackage {
name = "rimraf";
packageName = "rimraf";
- version = "5.0.7";
+ version = "6.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/rimraf/-/rimraf-5.0.7.tgz";
- sha512 = "nV6YcJo5wbLW77m+8KjH8aB/7/rxQy9SZ0HY5shnwULfS+9nmTtVXAJET5NdZmCzA4fPI/Hm1wo/Po/4mopOdg==";
+ url = "https://registry.npmjs.org/rimraf/-/rimraf-6.0.1.tgz";
+ sha512 = "9dkvaxAsk/xNXSJzMgFqqMCuFgt2+KsOFek3TMLfo8NCPfWpBmqwyNn5Y+NX56QUYfCtsyhF3ayiboEoUmJk/A==";
};
dependencies = [
sources."@isaacs/cliui-8.0.2"
@@ -83764,16 +82729,17 @@ in
sources."cross-spawn-7.0.3"
sources."eastasianwidth-0.2.0"
sources."emoji-regex-9.2.2"
- sources."foreground-child-3.2.0"
- sources."glob-10.4.1"
+ sources."foreground-child-3.2.1"
+ sources."glob-11.0.0"
sources."is-fullwidth-code-point-3.0.0"
sources."isexe-2.0.0"
- sources."jackspeak-3.4.0"
- sources."lru-cache-10.2.2"
- sources."minimatch-9.0.4"
+ sources."jackspeak-4.0.1"
+ sources."lru-cache-11.0.0"
+ sources."minimatch-10.0.1"
sources."minipass-7.1.2"
+ sources."package-json-from-dist-1.0.0"
sources."path-key-3.1.1"
- sources."path-scurry-1.11.1"
+ sources."path-scurry-2.0.0"
sources."shebang-command-2.0.0"
sources."shebang-regex-3.0.0"
sources."signal-exit-4.1.0"
@@ -83814,10 +82780,10 @@ in
rollup = nodeEnv.buildNodePackage {
name = "rollup";
packageName = "rollup";
- version = "4.18.0";
+ version = "4.19.0";
src = fetchurl {
- url = "https://registry.npmjs.org/rollup/-/rollup-4.18.0.tgz";
- sha512 = "QmJz14PX3rzbJCN1SG4Xe/bAAX2a6NpCP8ab2vfu2GiUr8AQcr2nCV/oEO3yneFarB67zk8ShlIyWb2LGTb3Sg==";
+ url = "https://registry.npmjs.org/rollup/-/rollup-4.19.0.tgz";
+ sha512 = "5r7EYSQIowHsK4eTZ0Y81qpZuJz+MUuYeqmmYmRMl1nwhdmbiYqt5jwzf6u7wyOzJgYqtCRMtVRKOtHANBz7rA==";
};
dependencies = [
sources."@types/estree-1.0.5"
@@ -83849,33 +82815,32 @@ in
sources."@azure/abort-controller-2.1.2"
];
})
- (sources."@azure/core-rest-pipeline-1.16.0" // {
+ (sources."@azure/core-rest-pipeline-1.16.2" // {
dependencies = [
sources."@azure/abort-controller-2.1.2"
];
})
sources."@azure/core-tracing-1.1.2"
- (sources."@azure/core-util-1.9.0" // {
+ (sources."@azure/core-util-1.9.1" // {
dependencies = [
sources."@azure/abort-controller-2.1.2"
];
})
- sources."@azure/identity-4.2.1"
- sources."@azure/logger-1.1.2"
- sources."@azure/msal-browser-3.17.0"
- sources."@azure/msal-common-14.12.0"
- sources."@azure/msal-node-2.9.2"
+ sources."@azure/identity-4.4.0"
+ sources."@azure/logger-1.1.3"
+ sources."@azure/msal-browser-3.20.0"
+ sources."@azure/msal-common-14.14.0"
+ sources."@azure/msal-node-2.12.0"
sources."@eslint-community/eslint-utils-4.4.0"
- sources."@eslint-community/regexpp-4.10.1"
+ sources."@eslint-community/regexpp-4.11.0"
(sources."@eslint/eslintrc-2.1.4" // {
dependencies = [
sources."brace-expansion-1.1.11"
sources."minimatch-3.1.2"
- sources."strip-json-comments-3.1.1"
];
})
sources."@eslint/js-8.57.0"
- sources."@hpcc-js/wasm-2.16.2"
+ sources."@hpcc-js/wasm-2.18.0"
(sources."@humanwhocodes/config-array-0.11.14" // {
dependencies = [
sources."brace-expansion-1.1.11"
@@ -83884,6 +82849,16 @@ in
})
sources."@humanwhocodes/module-importer-1.0.1"
sources."@humanwhocodes/object-schema-2.0.3"
+ (sources."@isaacs/cliui-8.0.2" // {
+ dependencies = [
+ sources."ansi-regex-6.0.1"
+ sources."ansi-styles-6.2.1"
+ sources."emoji-regex-9.2.2"
+ sources."string-width-5.1.2"
+ sources."strip-ansi-7.1.0"
+ sources."wrap-ansi-8.1.0"
+ ];
+ })
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
@@ -83905,8 +82880,8 @@ in
sources."@typescript-eslint/utils-6.21.0"
sources."@typescript-eslint/visitor-keys-6.21.0"
sources."@ungap/structured-clone-1.2.0"
- sources."@vscode/test-electron-2.4.0"
- (sources."@vscode/vsce-2.27.0" // {
+ sources."@vscode/test-electron-2.4.1"
+ (sources."@vscode/vsce-2.31.1" // {
dependencies = [
sources."ansi-styles-3.2.1"
sources."brace-expansion-1.1.11"
@@ -83927,7 +82902,7 @@ in
sources."@vscode/vsce-sign-linux-x64-2.0.2"
sources."@vscode/vsce-sign-win32-arm64-2.0.2"
sources."@vscode/vsce-sign-win32-x64-2.0.2"
- sources."acorn-8.12.0"
+ sources."acorn-8.12.1"
sources."acorn-jsx-5.3.2"
sources."agent-base-7.1.1"
sources."ajv-6.12.6"
@@ -83956,12 +82931,11 @@ in
sources."chalk-5.3.0"
sources."cheerio-1.0.0-rc.12"
sources."cheerio-select-2.1.0"
- sources."chownr-1.1.4"
sources."ci-info-2.0.0"
sources."cli-cursor-4.0.0"
sources."cli-spinners-2.9.2"
sources."cliui-8.0.1"
- sources."cockatiel-3.1.3"
+ sources."cockatiel-3.2.1"
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
sources."combined-stream-1.0.8"
@@ -84004,14 +82978,11 @@ in
sources."d3-transition-3.0.1"
sources."d3-zoom-3.0.0"
sources."debug-4.3.5"
- sources."decompress-response-6.0.0"
- sources."deep-extend-0.6.0"
sources."deep-is-0.1.4"
sources."define-data-property-1.1.4"
sources."define-lazy-prop-2.0.0"
sources."delaunator-5.0.1"
sources."delayed-stream-1.0.0"
- sources."detect-libc-2.0.3"
sources."dir-glob-3.0.1"
sources."doctrine-3.0.0"
sources."dom-serializer-2.0.0"
@@ -84021,7 +82992,6 @@ in
sources."eastasianwidth-0.2.0"
sources."ecdsa-sig-formatter-1.0.11"
sources."emoji-regex-8.0.0"
- sources."end-of-stream-1.4.4"
sources."entities-4.5.0"
sources."es-define-property-1.0.0"
sources."es-errors-1.3.0"
@@ -84042,12 +83012,11 @@ in
sources."eslint-scope-7.2.2"
sources."eslint-visitor-keys-3.4.3"
sources."espree-9.6.1"
- sources."esquery-1.5.0"
+ sources."esquery-1.6.0"
sources."esrecurse-4.3.0"
sources."estraverse-5.3.0"
sources."esutils-2.0.3"
sources."events-3.3.0"
- sources."expand-template-2.0.3"
sources."fast-deep-equal-3.1.3"
sources."fast-glob-3.3.2"
sources."fast-json-stable-stringify-2.1.0"
@@ -84060,17 +83029,19 @@ in
sources."flat-cache-3.2.0"
sources."flatted-3.3.1"
sources."follow-redirects-1.15.6"
+ (sources."foreground-child-3.2.1" // {
+ dependencies = [
+ sources."signal-exit-4.1.0"
+ ];
+ })
sources."form-data-4.0.0"
- sources."fs-constants-1.0.0"
sources."fs.realpath-1.0.0"
sources."function-bind-1.1.2"
sources."get-caller-file-2.0.5"
sources."get-intrinsic-1.2.4"
- sources."github-from-package-0.0.0"
- (sources."glob-7.2.3" // {
+ (sources."glob-11.0.0" // {
dependencies = [
- sources."brace-expansion-1.1.11"
- sources."minimatch-3.1.2"
+ sources."minimatch-10.0.1"
];
})
sources."glob-parent-5.1.2"
@@ -84083,10 +83054,14 @@ in
sources."has-proto-1.0.3"
sources."has-symbols-1.0.3"
sources."hasown-2.0.2"
- sources."hosted-git-info-4.1.0"
+ (sources."hosted-git-info-4.1.0" // {
+ dependencies = [
+ sources."lru-cache-6.0.0"
+ ];
+ })
sources."htmlparser2-8.0.2"
sources."http-proxy-agent-7.0.2"
- sources."https-proxy-agent-7.0.4"
+ sources."https-proxy-agent-7.0.5"
sources."iconv-lite-0.6.3"
sources."ieee754-1.2.1"
sources."ignore-5.3.1"
@@ -84095,7 +83070,6 @@ in
sources."imurmurhash-0.1.4"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
- sources."ini-1.3.8"
sources."internmap-2.0.3"
sources."is-ci-2.0.0"
sources."is-docker-2.2.1"
@@ -84109,24 +83083,21 @@ in
sources."is-wsl-2.2.0"
sources."isarray-1.0.0"
sources."isexe-2.0.0"
+ sources."jackspeak-4.0.1"
sources."js-yaml-4.1.0"
sources."json-buffer-3.0.1"
sources."json-schema-traverse-0.4.1"
sources."json-stable-stringify-without-jsonify-1.0.1"
- sources."jsonc-parser-3.2.1"
+ sources."jsonc-parser-3.3.1"
(sources."jsonwebtoken-9.0.2" // {
dependencies = [
+ sources."jwa-1.4.1"
sources."jws-3.2.2"
];
})
sources."jszip-3.10.1"
- sources."jwa-1.4.1"
- (sources."jws-4.0.0" // {
- dependencies = [
- sources."jwa-2.0.0"
- ];
- })
- sources."keytar-7.9.0"
+ sources."jwa-2.0.0"
+ sources."jws-4.0.0"
sources."keyv-4.5.4"
sources."leven-3.1.0"
sources."levn-0.4.1"
@@ -84142,7 +83113,7 @@ in
sources."lodash.merge-4.6.2"
sources."lodash.once-4.1.1"
sources."log-symbols-5.1.0"
- sources."lru-cache-6.0.0"
+ sources."lru-cache-11.0.0"
(sources."markdown-it-12.3.2" // {
dependencies = [
sources."entities-2.1.0"
@@ -84155,18 +83126,13 @@ in
sources."mime-db-1.52.0"
sources."mime-types-2.1.35"
sources."mimic-fn-2.1.0"
- sources."mimic-response-3.1.0"
sources."minimatch-5.1.6"
- sources."minimist-1.2.8"
- sources."mkdirp-classic-0.5.3"
+ sources."minipass-7.1.2"
sources."ms-2.1.2"
sources."mute-stream-0.0.8"
- sources."napi-build-utils-1.0.2"
sources."natural-compare-1.4.0"
- sources."node-abi-3.65.0"
- sources."node-addon-api-4.3.0"
sources."nth-check-2.1.1"
- sources."object-inspect-1.13.1"
+ sources."object-inspect-1.13.2"
sources."once-1.4.0"
sources."onetime-5.1.2"
sources."open-8.4.2"
@@ -84186,6 +83152,7 @@ in
})
sources."p-limit-3.1.0"
sources."p-locate-5.0.0"
+ sources."package-json-from-dist-1.0.0"
sources."pako-1.0.11"
sources."parent-module-1.0.1"
(sources."parse-semver-1.1.1" // {
@@ -84198,69 +83165,64 @@ in
sources."path-exists-4.0.0"
sources."path-is-absolute-1.0.1"
sources."path-key-3.1.1"
+ sources."path-scurry-2.0.0"
sources."path-type-4.0.0"
sources."pend-1.2.0"
sources."picomatch-2.3.1"
- sources."prebuild-install-7.1.2"
sources."prelude-ls-1.2.1"
- sources."prettier-3.3.2"
+ sources."prettier-3.3.3"
sources."process-nextick-args-2.0.1"
- sources."pump-3.0.0"
sources."punycode-2.3.1"
- sources."qs-6.12.1"
+ sources."qs-6.12.3"
sources."queue-microtask-1.2.3"
- sources."rc-1.2.8"
sources."read-1.0.7"
sources."readable-stream-2.3.8"
sources."require-directory-2.1.1"
sources."resolve-from-4.0.0"
sources."restore-cursor-4.0.0"
sources."reusify-1.0.4"
- sources."rimraf-3.0.2"
+ (sources."rimraf-3.0.2" // {
+ dependencies = [
+ sources."brace-expansion-1.1.11"
+ sources."glob-7.2.3"
+ sources."minimatch-3.1.2"
+ ];
+ })
sources."robust-predicates-3.0.2"
sources."run-parallel-1.2.0"
sources."rw-1.3.3"
sources."safe-buffer-5.1.2"
sources."safer-buffer-2.1.2"
sources."sax-1.4.1"
- sources."semver-7.6.2"
+ sources."semver-7.6.3"
sources."set-function-length-1.2.2"
sources."setimmediate-1.0.5"
sources."shebang-command-2.0.0"
sources."shebang-regex-3.0.0"
sources."side-channel-1.0.6"
sources."signal-exit-3.0.7"
- sources."simple-concat-1.0.1"
- sources."simple-get-4.0.1"
sources."slash-3.0.0"
sources."stdin-discarder-0.1.0"
sources."stoppable-1.1.0"
sources."string-width-4.2.3"
+ sources."string-width-cjs-4.2.3"
sources."string_decoder-1.1.1"
sources."strip-ansi-6.0.1"
- sources."strip-json-comments-2.0.1"
+ sources."strip-ansi-cjs-6.0.1"
+ sources."strip-json-comments-3.1.1"
sources."supports-color-5.5.0"
- sources."tar-fs-2.1.1"
- (sources."tar-stream-2.2.0" // {
- dependencies = [
- sources."bl-4.1.0"
- sources."buffer-5.7.1"
- sources."readable-stream-3.6.2"
- ];
- })
sources."text-table-0.2.0"
sources."tmp-0.2.3"
sources."to-regex-range-5.0.1"
sources."ts-api-utils-1.3.0"
sources."tslib-2.6.3"
sources."tunnel-0.0.6"
- sources."tunnel-agent-0.6.0"
sources."type-check-0.4.0"
sources."type-fest-0.20.2"
sources."typed-rest-client-1.8.11"
- sources."typescript-5.4.5"
+ sources."typescript-5.5.4"
sources."uc.micro-1.0.6"
- sources."underscore-1.13.6"
+ sources."underscore-1.13.7"
sources."uri-js-4.4.1"
sources."url-join-4.0.1"
sources."util-deprecate-1.0.2"
@@ -84272,6 +83234,7 @@ in
sources."which-2.0.2"
sources."word-wrap-1.2.5"
sources."wrap-ansi-7.0.0"
+ sources."wrap-ansi-cjs-7.0.0"
sources."wrappy-1.0.2"
sources."xml2js-0.5.0"
sources."xmlbuilder-11.0.1"
@@ -84293,10 +83256,10 @@ in
sass = nodeEnv.buildNodePackage {
name = "sass";
packageName = "sass";
- version = "1.77.5";
+ version = "1.77.8";
src = fetchurl {
- url = "https://registry.npmjs.org/sass/-/sass-1.77.5.tgz";
- sha512 = "oDfX1mukIlxacPdQqNb6mV2tVCrnE+P3nVYioy72V5tlk56CPNcO4TCuFcaCRKKfJ1M3lH95CleRS+dVKL2qMg==";
+ url = "https://registry.npmjs.org/sass/-/sass-1.77.8.tgz";
+ sha512 = "4UHg6prsrycW20fqLGPShtEvo/WyHRVRHwOP4DzkUrObWoWI05QBSfzU71TVB7PFaL104TwNaHpjlWXAZbQiNQ==";
};
dependencies = [
sources."anymatch-3.1.3"
@@ -84305,7 +83268,7 @@ in
sources."chokidar-3.6.0"
sources."fill-range-7.1.1"
sources."glob-parent-5.1.2"
- sources."immutable-4.3.6"
+ sources."immutable-4.3.7"
sources."is-binary-path-2.1.0"
sources."is-extglob-2.1.1"
sources."is-glob-4.0.3"
@@ -84329,10 +83292,10 @@ in
semver = nodeEnv.buildNodePackage {
name = "semver";
packageName = "semver";
- version = "7.6.2";
+ version = "7.6.3";
src = fetchurl {
- url = "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz";
- sha512 = "FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==";
+ url = "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz";
+ sha512 = "oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -84358,10 +83321,12 @@ in
sources."ajv-8.12.0"
(sources."ansi-align-3.0.1" // {
dependencies = [
+ sources."ansi-regex-5.0.1"
sources."string-width-4.2.3"
+ sources."strip-ansi-6.0.1"
];
})
- sources."ansi-regex-5.0.1"
+ sources."ansi-regex-6.0.1"
sources."ansi-styles-6.2.1"
sources."arch-2.2.0"
sources."arg-5.0.2"
@@ -84440,12 +83405,10 @@ in
sources."signal-exit-3.0.7"
(sources."string-width-5.1.2" // {
dependencies = [
- sources."ansi-regex-6.0.1"
sources."emoji-regex-9.2.2"
- sources."strip-ansi-7.1.0"
];
})
- sources."strip-ansi-6.0.1"
+ sources."strip-ansi-7.1.0"
sources."strip-final-newline-2.0.0"
sources."strip-json-comments-2.0.1"
sources."supports-color-7.2.0"
@@ -84455,12 +83418,7 @@ in
sources."vary-1.1.2"
sources."which-2.0.2"
sources."widest-line-4.0.1"
- (sources."wrap-ansi-8.1.0" // {
- dependencies = [
- sources."ansi-regex-6.0.1"
- sources."strip-ansi-7.1.0"
- ];
- })
+ sources."wrap-ansi-8.1.0"
];
buildInputs = globalBuildInputs;
meta = {
@@ -84619,7 +83577,7 @@ in
sources."negotiator-0.6.3"
sources."oauth-sign-0.9.0"
sources."object-component-0.0.3"
- sources."object-inspect-1.13.1"
+ sources."object-inspect-1.13.2"
sources."on-finished-2.4.1"
sources."options-0.0.6"
sources."parsejson-0.0.1"
@@ -84909,27 +83867,27 @@ in
sources."@socket.io/component-emitter-3.1.2"
sources."@types/cookie-0.4.1"
sources."@types/cors-2.8.17"
- sources."@types/node-20.14.2"
+ sources."@types/node-20.14.12"
sources."accepts-1.3.8"
sources."base64id-2.0.0"
sources."bufferutil-4.0.8"
sources."cookie-0.4.2"
sources."cors-2.8.5"
sources."debug-4.3.5"
- sources."engine.io-6.5.4"
- sources."engine.io-parser-5.2.2"
+ sources."engine.io-6.5.5"
+ sources."engine.io-parser-5.2.3"
sources."mime-db-1.52.0"
sources."mime-types-2.1.35"
sources."ms-2.1.2"
sources."negotiator-0.6.3"
sources."node-gyp-build-4.8.1"
sources."object-assign-4.1.1"
- sources."socket.io-adapter-2.5.4"
+ sources."socket.io-adapter-2.5.5"
sources."socket.io-parser-4.2.4"
sources."undici-types-5.26.5"
- sources."utf-8-validate-5.0.10"
+ sources."utf-8-validate-6.0.4"
sources."vary-1.1.2"
- sources."ws-8.11.0"
+ sources."ws-8.17.1"
];
buildInputs = globalBuildInputs;
meta = {
@@ -85008,7 +83966,7 @@ in
sources."indent-string-5.0.0"
sources."inherits-2.0.4"
sources."is-arrayish-0.2.1"
- sources."is-core-module-2.13.1"
+ sources."is-core-module-2.15.0"
sources."is-fullwidth-code-point-4.0.0"
sources."is-interactive-2.0.0"
sources."is-plain-obj-1.1.0"
@@ -85052,7 +84010,7 @@ in
sources."round-to-6.0.0"
sources."safe-buffer-5.2.1"
sources."sax-1.4.1"
- sources."semver-7.6.2"
+ sources."semver-7.6.3"
sources."signal-exit-3.0.7"
(sources."slice-ansi-5.0.0" // {
dependencies = [
@@ -85108,10 +84066,10 @@ in
sql-formatter = nodeEnv.buildNodePackage {
name = "sql-formatter";
packageName = "sql-formatter";
- version = "15.3.1";
+ version = "15.3.2";
src = fetchurl {
- url = "https://registry.npmjs.org/sql-formatter/-/sql-formatter-15.3.1.tgz";
- sha512 = "L/dqan+Hrt0PpPdCbHcI9bdfOvqaQZR7v5c5SWMJ3bUGQSezK09Mm9q2I3B4iObjaq7FyoldIM+fDSmfzGRXCA==";
+ url = "https://registry.npmjs.org/sql-formatter/-/sql-formatter-15.3.2.tgz";
+ sha512 = "pNxSMf5DtwhpZ8gUcOGCGZIWtCcyAUx9oLgAtlO4ag7DvlfnETL0BGqXaISc84pNrXvTWmt8Wal1FWKxdTsL3Q==";
};
dependencies = [
sources."argparse-2.0.1"
@@ -85155,24 +84113,24 @@ in
svelte-check = nodeEnv.buildNodePackage {
name = "svelte-check";
packageName = "svelte-check";
- version = "3.8.0";
+ version = "3.8.4";
src = fetchurl {
- url = "https://registry.npmjs.org/svelte-check/-/svelte-check-3.8.0.tgz";
- sha512 = "7Nxn+3X97oIvMzYJ7t27w00qUf1Y52irE2RU2dQAd5PyvfGp4E7NLhFKVhb6PV2fx7dCRMpNKDIuazmGthjpSQ==";
+ url = "https://registry.npmjs.org/svelte-check/-/svelte-check-3.8.4.tgz";
+ sha512 = "61aHMkdinWyH8BkkTX9jPLYxYzaAAz/FK/VQqdr2FiCQQ/q04WCwDlpGbHff1GdrMYTmW8chlTFvRWL9k0A8vg==";
};
dependencies = [
sources."@ampproject/remapping-2.3.0"
sources."@babel/code-frame-7.24.7"
- sources."@babel/compat-data-7.24.7"
- (sources."@babel/core-7.24.7" // {
+ sources."@babel/compat-data-7.24.9"
+ (sources."@babel/core-7.24.9" // {
dependencies = [
sources."debug-4.3.5"
sources."ms-2.1.2"
sources."semver-6.3.1"
];
})
- sources."@babel/generator-7.24.7"
- (sources."@babel/helper-compilation-targets-7.24.7" // {
+ sources."@babel/generator-7.24.10"
+ (sources."@babel/helper-compilation-targets-7.24.8" // {
dependencies = [
sources."semver-6.3.1"
];
@@ -85181,56 +84139,52 @@ in
sources."@babel/helper-function-name-7.24.7"
sources."@babel/helper-hoist-variables-7.24.7"
sources."@babel/helper-module-imports-7.24.7"
- sources."@babel/helper-module-transforms-7.24.7"
+ sources."@babel/helper-module-transforms-7.24.9"
sources."@babel/helper-simple-access-7.24.7"
sources."@babel/helper-split-export-declaration-7.24.7"
- sources."@babel/helper-string-parser-7.24.7"
+ sources."@babel/helper-string-parser-7.24.8"
sources."@babel/helper-validator-identifier-7.24.7"
- sources."@babel/helper-validator-option-7.24.7"
- sources."@babel/helpers-7.24.7"
+ sources."@babel/helper-validator-option-7.24.8"
+ sources."@babel/helpers-7.24.8"
sources."@babel/highlight-7.24.7"
- sources."@babel/parser-7.24.7"
+ sources."@babel/parser-7.24.8"
sources."@babel/template-7.24.7"
- (sources."@babel/traverse-7.24.7" // {
+ (sources."@babel/traverse-7.24.8" // {
dependencies = [
sources."debug-4.3.5"
sources."ms-2.1.2"
];
})
- sources."@babel/types-7.24.7"
+ sources."@babel/types-7.24.9"
sources."@jridgewell/gen-mapping-0.3.5"
sources."@jridgewell/resolve-uri-3.1.2"
sources."@jridgewell/set-array-1.2.1"
- sources."@jridgewell/sourcemap-codec-1.4.15"
+ sources."@jridgewell/sourcemap-codec-1.5.0"
sources."@jridgewell/trace-mapping-0.3.25"
- sources."@nodelib/fs.scandir-2.1.5"
- sources."@nodelib/fs.stat-2.0.5"
- sources."@nodelib/fs.walk-1.2.8"
sources."@types/estree-1.0.5"
sources."@types/pug-2.0.10"
sources."acorn-7.4.1"
(sources."acorn-typescript-1.4.13" // {
dependencies = [
- sources."acorn-8.12.0"
+ sources."acorn-8.12.1"
];
})
sources."ansi-styles-3.2.1"
sources."anymatch-3.1.3"
sources."aria-query-5.3.0"
sources."asap-2.0.6"
- sources."assert-never-1.2.1"
+ sources."assert-never-1.3.0"
sources."atob-2.1.2"
- sources."axobject-query-4.0.0"
+ sources."axobject-query-4.1.0"
sources."babel-walk-3.0.0-canary-5"
sources."balanced-match-1.0.2"
sources."binary-extensions-2.3.0"
sources."brace-expansion-1.1.11"
sources."braces-3.0.3"
- sources."browserslist-4.23.1"
+ sources."browserslist-4.23.2"
sources."buffer-crc32-1.0.0"
sources."call-bind-1.0.7"
- sources."callsites-3.1.0"
- sources."caniuse-lite-1.0.30001634"
+ sources."caniuse-lite-1.0.30001643"
sources."chalk-2.4.2"
sources."character-parser-2.2.0"
sources."chokidar-3.6.0"
@@ -85248,7 +84202,7 @@ in
sources."dequal-2.0.3"
sources."detect-indent-6.1.0"
sources."doctypes-1.1.0"
- sources."electron-to-chromium-1.4.802"
+ sources."electron-to-chromium-1.5.1"
sources."errno-0.1.8"
sources."es-define-property-1.0.0"
sources."es-errors-1.3.0"
@@ -85258,14 +84212,12 @@ in
sources."escape-string-regexp-1.0.5"
sources."esm-env-1.0.0"
sources."esrap-1.2.2"
- sources."fast-glob-3.3.2"
- sources."fastq-1.17.1"
sources."fill-range-7.1.1"
sources."fs.realpath-1.0.0"
sources."function-bind-1.1.2"
sources."gensync-1.0.0-beta.2"
sources."get-intrinsic-1.2.4"
- sources."get-tsconfig-4.7.5"
+ sources."get-tsconfig-4.7.6"
sources."glob-7.2.3"
sources."glob-parent-5.1.2"
sources."globals-11.12.0"
@@ -85279,12 +84231,11 @@ in
sources."hasown-2.0.2"
sources."iconv-lite-0.6.3"
sources."image-size-0.5.5"
- sources."immutable-4.3.6"
- sources."import-fresh-3.3.0"
+ sources."immutable-4.3.7"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."is-binary-path-2.1.0"
- sources."is-core-module-2.13.1"
+ sources."is-core-module-2.15.0"
sources."is-expression-4.0.0"
sources."is-extglob-2.1.1"
sources."is-glob-4.0.3"
@@ -85305,8 +84256,6 @@ in
sources."lru-cache-5.1.1"
sources."magic-string-0.30.10"
sources."make-dir-2.1.0"
- sources."merge2-1.4.1"
- sources."micromatch-4.0.7"
sources."mime-1.6.0"
sources."min-indent-1.0.1"
sources."minimatch-3.1.2"
@@ -85316,18 +84265,17 @@ in
sources."ms-2.0.0"
sources."nanoid-3.3.7"
sources."needle-3.3.1"
- sources."node-releases-2.0.14"
+ sources."node-releases-2.0.18"
sources."normalize-path-3.0.0"
sources."object-assign-4.1.1"
sources."once-1.4.0"
- sources."parent-module-1.0.1"
sources."parse-node-version-1.0.1"
sources."path-is-absolute-1.0.1"
sources."path-parse-1.0.7"
sources."picocolors-1.0.1"
sources."picomatch-2.3.1"
sources."pify-4.0.1"
- sources."postcss-8.4.38"
+ sources."postcss-8.4.40"
sources."postcss-load-config-5.1.0"
sources."promise-7.3.1"
sources."prr-1.0.1"
@@ -85343,18 +84291,14 @@ in
sources."pug-runtime-3.0.1"
sources."pug-strip-comments-2.0.0"
sources."pug-walk-2.0.0"
- sources."queue-microtask-1.2.3"
sources."readdirp-3.6.0"
sources."resolve-1.22.8"
- sources."resolve-from-4.0.0"
sources."resolve-pkg-maps-1.0.0"
- sources."reusify-1.0.4"
sources."rimraf-2.7.1"
- sources."run-parallel-1.2.0"
sources."sade-1.8.1"
sources."safer-buffer-2.1.2"
sources."sander-0.5.1"
- sources."sass-1.77.5"
+ sources."sass-1.77.8"
sources."sax-1.4.1"
sources."semver-5.7.2"
sources."set-function-length-1.2.2"
@@ -85374,9 +84318,9 @@ in
sources."sugarss-4.0.1"
sources."supports-color-5.5.0"
sources."supports-preserve-symlinks-flag-1.0.0"
- (sources."svelte-5.0.0-next.155" // {
+ (sources."svelte-5.0.0-next.198" // {
dependencies = [
- sources."acorn-8.12.0"
+ sources."acorn-8.12.1"
];
})
sources."svelte-preprocess-5.1.4"
@@ -85384,14 +84328,14 @@ in
sources."to-regex-range-5.0.1"
sources."token-stream-1.0.0"
sources."tslib-2.6.3"
- sources."tsx-4.15.4"
- sources."typescript-5.4.5"
- sources."update-browserslist-db-1.0.16"
+ sources."tsx-4.16.2"
+ sources."typescript-5.5.4"
+ sources."update-browserslist-db-1.1.0"
sources."void-elements-3.1.0"
sources."with-7.0.2"
sources."wrappy-1.0.2"
sources."yallist-3.1.1"
- sources."yaml-2.4.5"
+ sources."yaml-2.5.0"
sources."zimmerframe-1.1.2"
];
buildInputs = globalBuildInputs;
@@ -85451,10 +84395,10 @@ in
tailwindcss = nodeEnv.buildNodePackage {
name = "tailwindcss";
packageName = "tailwindcss";
- version = "3.4.4";
+ version = "3.4.6";
src = fetchurl {
- url = "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.4.tgz";
- sha512 = "ZoyXOdJjISB7/BcLTR6SEsLgKtDStYyYZVLsUtWChO4Ps20CBad7lfJKVDiejocV4ME1hLmyY0WJE3hSDcmQ2A==";
+ url = "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.6.tgz";
+ sha512 = "1uRHzPB+Vzu57ocybfZ4jh5Q3SdlH7XW23J5sQoM9LhE9eIOlzxer/3XPSsycvih3rboRsvt0QCmzSrqyOYUIA==";
};
dependencies = [
sources."@alloc/quick-lru-5.2.0"
@@ -85467,22 +84411,22 @@ in
sources."@jridgewell/gen-mapping-0.3.5"
sources."@jridgewell/resolve-uri-3.1.2"
sources."@jridgewell/set-array-1.2.1"
- sources."@jridgewell/sourcemap-codec-1.4.15"
+ sources."@jridgewell/sourcemap-codec-1.5.0"
sources."@jridgewell/trace-mapping-0.3.25"
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.5.29"
+ sources."@swc/core-1.7.1"
sources."@swc/counter-0.1.3"
- sources."@swc/helpers-0.5.11"
- sources."@swc/types-0.1.8"
- sources."@swc/wasm-1.5.29"
+ sources."@swc/helpers-0.5.12"
+ sources."@swc/types-0.1.12"
+ sources."@swc/wasm-1.7.1"
sources."@tsconfig/node10-1.0.11"
sources."@tsconfig/node12-1.0.11"
sources."@tsconfig/node14-1.0.3"
sources."@tsconfig/node16-1.0.4"
- sources."@types/node-20.14.2"
- sources."acorn-8.12.0"
+ sources."@types/node-20.14.12"
+ sources."acorn-8.12.1"
sources."acorn-walk-8.3.3"
sources."ansi-regex-5.0.1"
sources."ansi-styles-6.2.1"
@@ -85517,33 +84461,34 @@ in
})
sources."fastq-1.17.1"
sources."fill-range-7.1.1"
- sources."foreground-child-3.2.0"
+ sources."foreground-child-3.2.1"
sources."function-bind-1.1.2"
- sources."glob-10.4.1"
+ sources."glob-10.4.5"
sources."glob-parent-6.0.2"
sources."hasown-2.0.2"
sources."is-binary-path-2.1.0"
- sources."is-core-module-2.13.1"
+ sources."is-core-module-2.15.0"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-3.0.0"
sources."is-glob-4.0.3"
sources."is-number-7.0.0"
sources."isexe-2.0.0"
- sources."jackspeak-3.4.0"
+ sources."jackspeak-3.4.3"
sources."jiti-1.21.6"
sources."lilconfig-2.1.0"
sources."lines-and-columns-1.2.4"
- sources."lru-cache-10.2.2"
+ sources."lru-cache-10.4.3"
sources."make-error-1.3.6"
sources."merge2-1.4.1"
sources."micromatch-4.0.7"
- sources."minimatch-9.0.4"
+ sources."minimatch-9.0.5"
sources."minipass-7.1.2"
sources."mz-2.7.0"
sources."nanoid-3.3.7"
sources."normalize-path-3.0.0"
sources."object-assign-4.1.1"
sources."object-hash-3.0.0"
+ sources."package-json-from-dist-1.0.0"
sources."path-key-3.1.1"
sources."path-parse-1.0.7"
sources."path-scurry-1.11.1"
@@ -85551,7 +84496,7 @@ in
sources."picomatch-2.3.1"
sources."pify-2.3.0"
sources."pirates-4.0.6"
- sources."postcss-8.4.38"
+ sources."postcss-8.4.40"
sources."postcss-import-15.1.0"
sources."postcss-js-4.0.1"
(sources."postcss-load-config-4.0.2" // {
@@ -85559,8 +84504,8 @@ in
sources."lilconfig-3.1.2"
];
})
- sources."postcss-nested-6.0.1"
- sources."postcss-selector-parser-6.1.0"
+ sources."postcss-nested-6.2.0"
+ sources."postcss-selector-parser-6.1.1"
sources."postcss-value-parser-4.2.0"
sources."queue-microtask-1.2.3"
sources."read-cache-1.0.0"
@@ -85597,7 +84542,7 @@ in
];
})
sources."tslib-2.6.3"
- sources."typescript-5.4.5"
+ sources."typescript-5.5.4"
sources."undici-types-5.26.5"
sources."util-deprecate-1.0.2"
sources."v8-compile-cache-lib-3.0.1"
@@ -85611,7 +84556,7 @@ in
sources."strip-ansi-6.0.1"
];
})
- sources."yaml-2.4.5"
+ sources."yaml-2.5.0"
sources."yn-3.1.1"
];
buildInputs = globalBuildInputs;
@@ -85716,7 +84661,7 @@ in
sources."@types/cors-2.8.17"
sources."@types/http-cache-semantics-4.0.4"
sources."@types/keyv-3.1.4"
- sources."@types/node-20.14.2"
+ sources."@types/node-20.14.12"
sources."@types/responselike-1.0.3"
sources."abstract-logging-2.0.1"
sources."accepts-1.3.8"
@@ -85922,10 +84867,11 @@ in
sources."ms-2.1.2"
];
})
- (sources."socket.io-adapter-2.5.4" // {
+ (sources."socket.io-adapter-2.5.5" // {
dependencies = [
sources."debug-4.3.5"
sources."ms-2.1.2"
+ sources."ws-8.17.1"
];
})
(sources."socket.io-parser-4.2.4" // {
@@ -86278,7 +85224,7 @@ in
sources."oauth-sign-0.9.0"
sources."object-assign-4.1.1"
sources."object-component-0.0.3"
- sources."object-inspect-1.13.1"
+ sources."object-inspect-1.13.2"
sources."on-finished-2.3.0"
sources."once-1.4.0"
sources."os-homedir-1.0.2"
@@ -86302,7 +85248,7 @@ in
sources."psl-1.9.0"
sources."pump-3.0.0"
sources."punycode-2.3.1"
- sources."qs-6.12.1"
+ sources."qs-6.12.3"
sources."range-parser-1.2.1"
(sources."raw-body-2.4.0" // {
dependencies = [
@@ -86356,7 +85302,7 @@ in
sources."base64-arraybuffer-0.1.5"
sources."debug-4.1.1"
sources."ms-2.1.3"
- (sources."socket.io-parser-3.3.3" // {
+ (sources."socket.io-parser-3.3.4" // {
dependencies = [
sources."component-emitter-1.3.1"
sources."debug-3.1.0"
@@ -86419,7 +85365,7 @@ in
sources."wide-align-1.1.5"
sources."with-open-file-0.1.7"
sources."wrappy-1.0.2"
- sources."ws-7.5.9"
+ sources."ws-7.5.10"
sources."xmlhttprequest-ssl-1.5.5"
sources."yallist-3.1.1"
sources."yarn-1.19.1"
@@ -86684,7 +85630,7 @@ in
sources."@types/cacheable-request-6.0.3"
sources."@types/http-cache-semantics-4.0.4"
sources."@types/keyv-3.1.4"
- sources."@types/node-20.14.2"
+ sources."@types/node-20.14.12"
sources."@types/responselike-1.0.3"
sources."abbrev-1.1.1"
sources."abstract-logging-2.0.1"
@@ -87055,7 +86001,7 @@ in
sources."base64-arraybuffer-0.1.5"
sources."debug-4.1.1"
sources."ms-2.0.0"
- (sources."socket.io-parser-3.3.3" // {
+ (sources."socket.io-parser-3.3.4" // {
dependencies = [
sources."component-emitter-1.3.1"
sources."debug-3.1.0"
@@ -87124,7 +86070,7 @@ in
sources."wide-align-1.1.5"
sources."with-open-file-0.1.7"
sources."wrappy-1.0.2"
- sources."ws-7.5.9"
+ sources."ws-7.5.10"
sources."xmlhttprequest-ssl-1.5.5"
sources."yallist-3.1.1"
sources."yarn-1.22.4"
@@ -87155,7 +86101,7 @@ in
sources."@types/cacheable-request-6.0.3"
sources."@types/http-cache-semantics-4.0.4"
sources."@types/keyv-3.1.4"
- sources."@types/node-20.14.2"
+ sources."@types/node-20.14.12"
sources."@types/responselike-1.0.3"
sources."abbrev-1.1.1"
sources."abstract-logging-2.0.1"
@@ -87526,7 +86472,7 @@ in
sources."base64-arraybuffer-0.1.5"
sources."debug-4.1.1"
sources."ms-2.0.0"
- (sources."socket.io-parser-3.3.3" // {
+ (sources."socket.io-parser-3.3.4" // {
dependencies = [
sources."component-emitter-1.3.1"
sources."debug-3.1.0"
@@ -87595,7 +86541,7 @@ in
sources."wide-align-1.1.5"
sources."with-open-file-0.1.7"
sources."wrappy-1.0.2"
- sources."ws-7.5.9"
+ sources."ws-7.5.10"
sources."xmlhttprequest-ssl-1.5.5"
sources."yallist-3.1.1"
sources."yarn-1.22.4"
@@ -88010,10 +86956,10 @@ in
tiddlywiki = nodeEnv.buildNodePackage {
name = "tiddlywiki";
packageName = "tiddlywiki";
- version = "5.3.3";
+ version = "5.3.5";
src = fetchurl {
- url = "https://registry.npmjs.org/tiddlywiki/-/tiddlywiki-5.3.3.tgz";
- sha512 = "PkgVfZNpFFHyMmfFw91igXOJn8Z7IWg3NGXOX5EBqJwzGNeYYOIUg4FqCNsWoqBece20HxtkDue/vTf2jDtdZQ==";
+ url = "https://registry.npmjs.org/tiddlywiki/-/tiddlywiki-5.3.5.tgz";
+ sha512 = "8pTmnQdkcHbol9D86Op7OGK4sGDqm19HWT2qgpSxPHfDG0yJ2rSBUTRuOMuh9GoPP0Tcz9+1Pe8A1m6pvd/zYQ==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -88061,7 +87007,7 @@ in
sources."supports-color-2.0.0"
sources."temp-0.8.4"
sources."tslib-1.14.1"
- sources."typescript-5.4.5"
+ sources."typescript-5.5.4"
sources."wordwrap-0.0.3"
sources."wrappy-1.0.2"
];
@@ -88086,26 +87032,26 @@ in
dependencies = [
sources."@cspotcode/source-map-support-0.8.1"
sources."@jridgewell/resolve-uri-3.1.2"
- sources."@jridgewell/sourcemap-codec-1.4.15"
+ sources."@jridgewell/sourcemap-codec-1.5.0"
sources."@jridgewell/trace-mapping-0.3.9"
- sources."@swc/core-1.5.29"
+ sources."@swc/core-1.7.1"
sources."@swc/counter-0.1.3"
- sources."@swc/helpers-0.5.11"
- sources."@swc/types-0.1.8"
- sources."@swc/wasm-1.5.29"
+ sources."@swc/helpers-0.5.12"
+ sources."@swc/types-0.1.12"
+ sources."@swc/wasm-1.7.1"
sources."@tsconfig/node10-1.0.11"
sources."@tsconfig/node12-1.0.11"
sources."@tsconfig/node14-1.0.3"
sources."@tsconfig/node16-1.0.4"
- sources."@types/node-20.14.2"
- sources."acorn-8.12.0"
+ sources."@types/node-20.14.12"
+ sources."acorn-8.12.1"
sources."acorn-walk-8.3.3"
sources."arg-4.1.3"
sources."create-require-1.1.1"
sources."diff-4.0.2"
sources."make-error-1.3.6"
sources."tslib-2.6.3"
- sources."typescript-5.4.5"
+ sources."typescript-5.5.4"
sources."undici-types-5.26.5"
sources."v8-compile-cache-lib-3.0.1"
sources."yn-3.1.1"
@@ -88154,14 +87100,27 @@ in
sources."@babel/helper-validator-identifier-7.24.7"
sources."@babel/highlight-7.24.7"
sources."@isaacs/cliui-8.0.2"
- sources."@npmcli/config-8.3.3"
+ sources."@npmcli/config-8.3.4"
+ (sources."@npmcli/git-5.0.8" // {
+ dependencies = [
+ sources."isexe-3.1.1"
+ sources."which-4.0.0"
+ ];
+ })
sources."@npmcli/map-workspaces-3.0.6"
sources."@npmcli/name-from-folder-2.0.0"
+ sources."@npmcli/package-json-5.2.0"
+ (sources."@npmcli/promise-spawn-7.0.2" // {
+ dependencies = [
+ sources."isexe-3.1.1"
+ sources."which-4.0.0"
+ ];
+ })
sources."@types/concat-stream-2.0.3"
sources."@types/debug-4.1.12"
sources."@types/is-empty-1.2.3"
sources."@types/ms-0.7.34"
- sources."@types/node-20.14.2"
+ sources."@types/node-20.14.12"
sources."@types/supports-color-8.1.3"
sources."@types/unist-3.0.2"
sources."abbrev-2.0.0"
@@ -88185,13 +87144,15 @@ in
sources."debug-4.3.5"
sources."eastasianwidth-0.2.0"
sources."emoji-regex-9.2.2"
+ sources."err-code-2.0.3"
sources."error-ex-1.3.2"
sources."escape-string-regexp-1.0.5"
sources."extend-3.0.2"
sources."find-up-6.3.0"
- sources."foreground-child-3.2.0"
- sources."glob-10.4.1"
+ sources."foreground-child-3.2.1"
+ sources."glob-10.4.5"
sources."has-flag-3.0.0"
+ sources."hosted-git-info-7.0.2"
sources."ignore-5.3.1"
sources."import-meta-resolve-4.1.0"
sources."inherits-2.0.4"
@@ -88201,33 +87162,45 @@ in
sources."is-fullwidth-code-point-3.0.0"
sources."is-plain-obj-4.1.0"
sources."isexe-2.0.0"
- sources."jackspeak-3.4.0"
+ sources."jackspeak-3.4.3"
sources."js-tokens-4.0.0"
sources."json-parse-even-better-errors-3.0.2"
sources."lines-and-columns-2.0.4"
sources."load-plugin-6.0.3"
sources."locate-path-7.2.0"
- sources."lru-cache-10.2.2"
- sources."minimatch-9.0.4"
+ sources."lru-cache-10.4.3"
+ sources."minimatch-9.0.5"
sources."minipass-7.1.2"
sources."ms-2.1.2"
sources."nopt-7.2.1"
+ sources."normalize-package-data-6.0.2"
+ sources."npm-install-checks-6.3.0"
sources."npm-normalize-package-bin-3.0.1"
+ sources."npm-package-arg-11.0.3"
+ sources."npm-pick-manifest-9.1.0"
sources."p-limit-4.0.0"
sources."p-locate-6.0.0"
+ sources."package-json-from-dist-1.0.0"
sources."parse-json-7.1.1"
sources."path-exists-5.0.0"
sources."path-key-3.1.1"
sources."path-scurry-1.11.1"
sources."picocolors-1.0.1"
sources."proc-log-4.2.0"
+ sources."promise-inflight-1.0.1"
+ sources."promise-retry-2.0.1"
sources."read-package-json-fast-3.0.2"
sources."readable-stream-3.6.2"
+ sources."retry-0.12.0"
sources."safe-buffer-5.2.1"
- sources."semver-7.6.2"
+ sources."semver-7.6.3"
sources."shebang-command-2.0.0"
sources."shebang-regex-3.0.0"
sources."signal-exit-4.1.0"
+ sources."spdx-correct-3.2.0"
+ sources."spdx-exceptions-2.5.0"
+ sources."spdx-expression-parse-3.0.1"
+ sources."spdx-license-ids-3.0.18"
sources."string-width-5.1.2"
(sources."string-width-cjs-4.2.3" // {
dependencies = [
@@ -88248,11 +87221,13 @@ in
sources."typedarray-0.0.6"
sources."undici-types-5.26.5"
sources."unified-engine-11.2.1"
- sources."unist-util-inspect-8.0.0"
+ sources."unist-util-inspect-8.1.0"
sources."unist-util-lsp-2.1.0"
sources."unist-util-stringify-position-4.0.0"
sources."util-deprecate-1.0.2"
- sources."vfile-6.0.1"
+ sources."validate-npm-package-license-3.0.4"
+ sources."validate-npm-package-name-5.0.1"
+ sources."vfile-6.0.2"
sources."vfile-message-4.0.2"
(sources."vfile-reporter-8.1.1" // {
dependencies = [
@@ -88279,8 +87254,8 @@ in
sources."strip-ansi-6.0.1"
];
})
- sources."yaml-2.4.5"
- sources."yocto-queue-1.0.0"
+ sources."yaml-2.5.0"
+ sources."yocto-queue-1.1.1"
];
buildInputs = globalBuildInputs;
meta = {
@@ -88295,10 +87270,10 @@ in
vega-cli = nodeEnv.buildNodePackage {
name = "vega-cli";
packageName = "vega-cli";
- version = "5.29.0";
+ version = "5.30.0";
src = fetchurl {
- url = "https://registry.npmjs.org/vega-cli/-/vega-cli-5.29.0.tgz";
- sha512 = "ndiQEjHrV0DkT7nWEroQerAuZwNZC3c9SZlmVh8a19vY9s/GsPfNdOq2apAN44mtruMtD3tzgajLLxEii7/wEA==";
+ url = "https://registry.npmjs.org/vega-cli/-/vega-cli-5.30.0.tgz";
+ sha512 = "qHlVNh6SU/sV96Zys30t7jtVlDKAn+2Ex2EuiU8xK+DLDB8h2t0IK5/FwR8CxE9rLWHYYXDOuCxkzRqFRzSMQQ==";
};
dependencies = [
sources."@mapbox/node-pre-gyp-1.0.11"
@@ -88393,7 +87368,7 @@ in
sources."rw-1.3.3"
sources."safe-buffer-5.2.1"
sources."safer-buffer-2.1.2"
- sources."semver-7.6.2"
+ sources."semver-7.6.3"
sources."set-blocking-2.0.0"
sources."signal-exit-3.0.7"
sources."simple-concat-1.0.1"
@@ -88409,7 +87384,7 @@ in
})
sources."tr46-0.0.3"
sources."util-deprecate-1.0.2"
- sources."vega-5.29.0"
+ sources."vega-5.30.0"
sources."vega-canvas-1.2.7"
sources."vega-crossfilter-4.1.2"
sources."vega-dataflow-5.7.6"
@@ -88418,25 +87393,25 @@ in
sources."vega-expression-5.1.1"
sources."vega-force-4.2.1"
sources."vega-format-1.1.2"
- sources."vega-functions-5.14.0"
+ sources."vega-functions-5.15.0"
sources."vega-geo-4.4.2"
sources."vega-hierarchy-4.1.2"
- sources."vega-label-1.2.1"
+ sources."vega-label-1.3.0"
sources."vega-loader-4.5.2"
- sources."vega-parser-6.3.0"
+ sources."vega-parser-6.4.0"
sources."vega-projection-1.6.1"
- sources."vega-regression-1.2.0"
- sources."vega-runtime-6.1.4"
+ sources."vega-regression-1.3.0"
+ sources."vega-runtime-6.2.0"
sources."vega-scale-7.4.1"
- sources."vega-scenegraph-4.12.0"
+ sources."vega-scenegraph-4.13.0"
sources."vega-selections-5.4.2"
sources."vega-statistics-1.9.0"
sources."vega-time-2.1.2"
- sources."vega-transforms-4.11.1"
- sources."vega-typings-1.1.0"
+ sources."vega-transforms-4.12.0"
+ sources."vega-typings-1.3.1"
sources."vega-util-1.17.2"
- sources."vega-view-5.12.1"
- sources."vega-view-transforms-4.5.9"
+ sources."vega-view-5.13.0"
+ sources."vega-view-transforms-4.6.0"
sources."vega-voronoi-4.2.3"
sources."vega-wordcloud-4.1.5"
sources."webidl-conversions-3.0.1"
@@ -88568,10 +87543,10 @@ in
vercel = nodeEnv.buildNodePackage {
name = "vercel";
packageName = "vercel";
- version = "34.2.7";
+ version = "35.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/vercel/-/vercel-34.2.7.tgz";
- sha512 = "cc6NmaPeLhg7UJuuI6jKu92xppVYbuZRtQib/hDEaEPFSZgiUNw0sbtRfbzvXUZjxzJeLNeSGKLwazBbpXOvkQ==";
+ url = "https://registry.npmjs.org/vercel/-/vercel-35.2.0.tgz";
+ sha512 = "ZEdRDfw3kIhcryMOZvVMrFSSS5fkK2qpYr1QNOswW3sHtowuQglpVcvvyqNHrNLAbtETiO/svjNnFKEF22/fhg==";
};
dependencies = [
sources."@cspotcode/source-map-support-0.8.1"
@@ -88582,7 +87557,7 @@ in
sources."@edge-runtime/vm-3.2.0"
sources."@fastify/busboy-2.1.1"
sources."@jridgewell/resolve-uri-3.1.2"
- sources."@jridgewell/sourcemap-codec-1.4.15"
+ sources."@jridgewell/sourcemap-codec-1.5.0"
sources."@jridgewell/trace-mapping-0.3.9"
(sources."@mapbox/node-pre-gyp-1.0.11" // {
dependencies = [
@@ -88607,11 +87582,11 @@ in
sources."@nodelib/fs.walk-1.2.8"
sources."@rollup/pluginutils-4.2.1"
sources."@sinclair/typebox-0.25.24"
- sources."@swc/core-1.5.29"
+ sources."@swc/core-1.7.1"
sources."@swc/counter-0.1.3"
- sources."@swc/helpers-0.5.11"
- sources."@swc/types-0.1.8"
- sources."@swc/wasm-1.5.29"
+ sources."@swc/helpers-0.5.12"
+ sources."@swc/types-0.1.12"
+ sources."@swc/wasm-1.7.1"
sources."@tootallnate/once-2.0.0"
(sources."@ts-morph/common-0.11.1" // {
dependencies = [
@@ -88624,11 +87599,11 @@ in
sources."@tsconfig/node16-1.0.4"
sources."@types/json-schema-7.0.15"
sources."@types/node-16.18.11"
- sources."@vercel/build-utils-8.2.2"
+ sources."@vercel/build-utils-8.3.5"
sources."@vercel/error-utils-2.0.2"
sources."@vercel/fun-1.1.0"
sources."@vercel/gatsby-plugin-vercel-analytics-1.0.11"
- (sources."@vercel/gatsby-plugin-vercel-builder-2.0.33" // {
+ (sources."@vercel/gatsby-plugin-vercel-builder-2.0.39" // {
dependencies = [
sources."fs-extra-11.1.0"
sources."jsonfile-6.1.0"
@@ -88636,10 +87611,10 @@ in
];
})
sources."@vercel/go-3.1.1"
- sources."@vercel/hydrogen-1.0.2"
- sources."@vercel/next-4.2.17"
- sources."@vercel/nft-0.27.2"
- (sources."@vercel/node-3.1.7" // {
+ sources."@vercel/hydrogen-1.0.4"
+ sources."@vercel/next-4.3.6"
+ sources."@vercel/nft-0.27.3"
+ (sources."@vercel/node-3.2.7" // {
dependencies = [
sources."async-listen-3.0.0"
sources."node-fetch-2.6.9"
@@ -88647,12 +87622,12 @@ in
];
})
sources."@vercel/python-4.3.0"
- (sources."@vercel/redwood-2.0.10" // {
+ (sources."@vercel/redwood-2.1.3" // {
dependencies = [
sources."semver-6.3.1"
];
})
- sources."@vercel/remix-builder-2.1.7"
+ sources."@vercel/remix-builder-2.2.1"
(sources."@vercel/routing-utils-3.1.0" // {
dependencies = [
sources."ajv-6.12.6"
@@ -88661,10 +87636,10 @@ in
];
})
sources."@vercel/ruby-2.1.0"
- sources."@vercel/static-build-2.5.11"
+ sources."@vercel/static-build-2.5.17"
sources."@vercel/static-config-3.0.0"
sources."abbrev-1.1.1"
- sources."acorn-8.12.0"
+ sources."acorn-8.12.1"
sources."acorn-import-attributes-1.9.5"
sources."acorn-walk-8.3.3"
sources."agent-base-6.0.2"
@@ -88872,7 +87847,7 @@ in
sources."tslib-2.6.3"
sources."typescript-4.9.5"
sources."uid-promise-1.0.0"
- sources."undici-5.26.5"
+ sources."undici-5.28.4"
sources."universalify-0.1.2"
sources."unpipe-1.0.0"
sources."uri-js-4.4.1"
@@ -88926,7 +87901,7 @@ in
];
})
sources."@eslint-community/eslint-utils-4.4.0"
- sources."@eslint-community/regexpp-4.10.1"
+ sources."@eslint-community/regexpp-4.11.0"
sources."@eslint/eslintrc-2.1.4"
sources."@eslint/js-8.57.0"
sources."@humanwhocodes/config-array-0.11.14"
@@ -88936,7 +87911,7 @@ in
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
sources."@ungap/structured-clone-1.2.0"
- sources."acorn-8.12.0"
+ sources."acorn-8.12.1"
sources."acorn-jsx-5.3.2"
sources."ajv-6.12.6"
sources."ansi-regex-5.0.1"
@@ -88965,12 +87940,12 @@ in
sources."es-errors-1.3.0"
sources."escape-string-regexp-4.0.0"
sources."eslint-8.57.0"
- sources."eslint-plugin-vue-9.26.0"
+ sources."eslint-plugin-vue-9.27.0"
sources."eslint-scope-7.2.2"
sources."eslint-visitor-keys-3.4.3"
sources."espree-9.6.1"
sources."esprima-4.0.1"
- sources."esquery-1.5.0"
+ sources."esquery-1.6.0"
sources."esrecurse-4.3.0"
sources."estraverse-5.3.0"
sources."esutils-2.0.3"
@@ -89001,7 +87976,7 @@ in
sources."imurmurhash-0.1.4"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
- sources."is-core-module-2.13.1"
+ sources."is-core-module-2.15.0"
(sources."is-expression-4.0.0" // {
dependencies = [
sources."acorn-7.4.1"
@@ -89039,7 +88014,7 @@ in
sources."path-key-3.1.1"
sources."path-parse-1.0.7"
sources."picocolors-1.0.1"
- sources."postcss-selector-parser-6.1.0"
+ sources."postcss-selector-parser-6.1.1"
sources."prelude-ls-1.2.1"
sources."prettier-2.8.8"
sources."pug-error-2.1.0"
@@ -89051,7 +88026,7 @@ in
sources."reusify-1.0.4"
sources."rimraf-3.0.2"
sources."run-parallel-1.2.0"
- sources."semver-7.6.2"
+ sources."semver-7.6.3"
sources."set-function-length-1.2.2"
sources."shebang-command-2.0.0"
sources."shebang-regex-3.0.0"
@@ -89114,7 +88089,7 @@ in
sources."es6-promisify-5.0.0"
sources."http-proxy-agent-2.1.0"
sources."https-proxy-agent-2.2.4"
- sources."jsonc-parser-3.2.1"
+ sources."jsonc-parser-3.3.1"
sources."ms-2.0.0"
sources."request-light-0.4.0"
(sources."vscode-json-languageservice-4.2.1" // {
@@ -89152,7 +88127,7 @@ in
sha512 = "KX07T/WHnXfmoo2wvjLlx0eKeGIotB0C5GnfWVHylPfSa7BuNo0bktRCL2+zJ3g72IKc1psuRIGZIn7/soexag==";
};
dependencies = [
- (sources."@babel/runtime-7.24.7" // {
+ (sources."@babel/runtime-7.24.8" // {
dependencies = [
sources."regenerator-runtime-0.14.1"
];
@@ -89201,6 +88176,7 @@ in
sources."btoa-1.2.1"
sources."buffer-5.7.1"
sources."buffer-equal-0.0.1"
+ sources."centra-2.7.0"
sources."cliui-8.0.1"
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
@@ -89210,6 +88186,7 @@ in
sources."estraverse-5.3.0"
sources."exif-parser-0.1.12"
sources."file-type-16.5.4"
+ sources."follow-redirects-1.15.6"
sources."fs-extra-11.2.0"
sources."get-caller-file-2.0.5"
sources."gifwrap-0.9.4"
@@ -89224,7 +88201,11 @@ in
sources."jpeg-js-0.4.4"
sources."json5-2.2.3"
sources."jsonfile-6.1.0"
- sources."load-bmfont-1.4.1"
+ (sources."load-bmfont-1.4.2" // {
+ dependencies = [
+ sources."phin-3.7.1"
+ ];
+ })
sources."logidrom-0.3.1"
sources."mime-1.6.0"
sources."min-document-2.19.0"
@@ -89284,23 +88265,23 @@ in
webpack = nodeEnv.buildNodePackage {
name = "webpack";
packageName = "webpack";
- version = "5.92.0";
+ version = "5.93.0";
src = fetchurl {
- url = "https://registry.npmjs.org/webpack/-/webpack-5.92.0.tgz";
- sha512 = "Bsw2X39MYIgxouNATyVpCNVWBCuUwDgWtN78g6lSdPJRLaQ/PUVm/oXcaRAyY/sMFoKFQrsPeqvTizWtq7QPCA==";
+ url = "https://registry.npmjs.org/webpack/-/webpack-5.93.0.tgz";
+ sha512 = "Y0m5oEY1LRuwly578VqluorkXbvXKh7U3rLoQCEO04M97ScRr44afGVkI0FQFsXzysk5OgFAxjZAb9rsGQVihA==";
};
dependencies = [
sources."@jridgewell/gen-mapping-0.3.5"
sources."@jridgewell/resolve-uri-3.1.2"
sources."@jridgewell/set-array-1.2.1"
sources."@jridgewell/source-map-0.3.6"
- sources."@jridgewell/sourcemap-codec-1.4.15"
+ sources."@jridgewell/sourcemap-codec-1.5.0"
sources."@jridgewell/trace-mapping-0.3.25"
- sources."@types/eslint-8.56.10"
+ sources."@types/eslint-9.6.0"
sources."@types/eslint-scope-3.7.7"
sources."@types/estree-1.0.5"
sources."@types/json-schema-7.0.15"
- sources."@types/node-20.14.2"
+ sources."@types/node-20.14.12"
sources."@webassemblyjs/ast-1.12.1"
sources."@webassemblyjs/floating-point-hex-parser-1.11.6"
sources."@webassemblyjs/helper-api-error-1.11.6"
@@ -89318,18 +88299,18 @@ in
sources."@webassemblyjs/wast-printer-1.12.1"
sources."@xtuc/ieee754-1.2.0"
sources."@xtuc/long-4.2.2"
- sources."acorn-8.12.0"
+ sources."acorn-8.12.1"
sources."acorn-import-attributes-1.9.5"
sources."ajv-6.12.6"
sources."ajv-keywords-3.5.2"
- sources."browserslist-4.23.1"
+ sources."browserslist-4.23.2"
sources."buffer-from-1.1.2"
- sources."caniuse-lite-1.0.30001634"
+ sources."caniuse-lite-1.0.30001643"
sources."chrome-trace-event-1.0.4"
sources."commander-2.20.3"
- sources."electron-to-chromium-1.4.802"
- sources."enhanced-resolve-5.17.0"
- sources."es-module-lexer-1.5.3"
+ sources."electron-to-chromium-1.5.1"
+ sources."enhanced-resolve-5.17.1"
+ sources."es-module-lexer-1.5.4"
sources."escalade-3.1.2"
sources."eslint-scope-5.1.1"
(sources."esrecurse-4.3.0" // {
@@ -89352,7 +88333,7 @@ in
sources."mime-db-1.52.0"
sources."mime-types-2.1.35"
sources."neo-async-2.6.2"
- sources."node-releases-2.0.14"
+ sources."node-releases-2.0.18"
sources."picocolors-1.0.1"
sources."punycode-2.3.1"
sources."randombytes-2.1.0"
@@ -89363,13 +88344,13 @@ in
sources."source-map-support-0.5.21"
sources."supports-color-8.1.1"
sources."tapable-2.2.1"
- sources."terser-5.31.1"
+ sources."terser-5.31.3"
sources."terser-webpack-plugin-5.3.10"
sources."undici-types-5.26.5"
- sources."update-browserslist-db-1.0.16"
+ sources."update-browserslist-db-1.1.0"
sources."uri-js-4.4.1"
sources."watchpack-2.4.1"
- sources."webpack-5.92.0"
+ sources."webpack-5.93.0"
sources."webpack-sources-3.2.3"
];
buildInputs = globalBuildInputs;
@@ -89396,13 +88377,13 @@ in
sources."@jridgewell/resolve-uri-3.1.2"
sources."@jridgewell/set-array-1.2.1"
sources."@jridgewell/source-map-0.3.6"
- sources."@jridgewell/sourcemap-codec-1.4.15"
+ sources."@jridgewell/sourcemap-codec-1.5.0"
sources."@jridgewell/trace-mapping-0.3.25"
- sources."@types/eslint-8.56.10"
+ sources."@types/eslint-9.6.0"
sources."@types/eslint-scope-3.7.7"
sources."@types/estree-1.0.5"
sources."@types/json-schema-7.0.15"
- sources."@types/node-20.14.2"
+ sources."@types/node-20.14.12"
sources."@webassemblyjs/ast-1.12.1"
sources."@webassemblyjs/floating-point-hex-parser-1.11.6"
sources."@webassemblyjs/helper-api-error-1.11.6"
@@ -89423,22 +88404,22 @@ in
sources."@webpack-cli/serve-2.0.5"
sources."@xtuc/ieee754-1.2.0"
sources."@xtuc/long-4.2.2"
- sources."acorn-8.12.0"
+ sources."acorn-8.12.1"
sources."acorn-import-attributes-1.9.5"
sources."ajv-6.12.6"
sources."ajv-keywords-3.5.2"
- sources."browserslist-4.23.1"
+ sources."browserslist-4.23.2"
sources."buffer-from-1.1.2"
- sources."caniuse-lite-1.0.30001634"
+ sources."caniuse-lite-1.0.30001643"
sources."chrome-trace-event-1.0.4"
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.802"
- sources."enhanced-resolve-5.17.0"
+ sources."electron-to-chromium-1.5.1"
+ sources."enhanced-resolve-5.17.1"
sources."envinfo-7.13.0"
- sources."es-module-lexer-1.5.3"
+ sources."es-module-lexer-1.5.4"
sources."escalade-3.1.2"
sources."eslint-scope-5.1.1"
(sources."esrecurse-4.3.0" // {
@@ -89458,9 +88439,9 @@ in
sources."graceful-fs-4.2.11"
sources."has-flag-4.0.0"
sources."hasown-2.0.2"
- sources."import-local-3.1.0"
+ sources."import-local-3.2.0"
sources."interpret-3.1.1"
- sources."is-core-module-2.13.1"
+ sources."is-core-module-2.15.0"
sources."is-plain-object-2.0.4"
sources."isexe-2.0.0"
sources."isobject-3.0.1"
@@ -89474,7 +88455,7 @@ in
sources."mime-db-1.52.0"
sources."mime-types-2.1.35"
sources."neo-async-2.6.2"
- sources."node-releases-2.0.14"
+ sources."node-releases-2.0.18"
sources."p-limit-2.3.0"
sources."p-locate-4.1.0"
sources."p-try-2.2.0"
@@ -89500,17 +88481,17 @@ in
sources."supports-color-8.1.1"
sources."supports-preserve-symlinks-flag-1.0.0"
sources."tapable-2.2.1"
- (sources."terser-5.31.1" // {
+ (sources."terser-5.31.3" // {
dependencies = [
sources."commander-2.20.3"
];
})
sources."terser-webpack-plugin-5.3.10"
sources."undici-types-5.26.5"
- sources."update-browserslist-db-1.0.16"
+ sources."update-browserslist-db-1.1.0"
sources."uri-js-4.4.1"
sources."watchpack-2.4.1"
- sources."webpack-5.92.0"
+ sources."webpack-5.93.0"
sources."webpack-cli-5.1.4"
sources."webpack-merge-5.10.0"
sources."webpack-sources-3.2.3"
@@ -89541,26 +88522,26 @@ in
sources."@jridgewell/resolve-uri-3.1.2"
sources."@jridgewell/set-array-1.2.1"
sources."@jridgewell/source-map-0.3.6"
- sources."@jridgewell/sourcemap-codec-1.4.15"
+ sources."@jridgewell/sourcemap-codec-1.5.0"
sources."@jridgewell/trace-mapping-0.3.25"
sources."@jsonjoy.com/base64-1.1.2"
sources."@jsonjoy.com/json-pack-1.0.4"
- sources."@jsonjoy.com/util-1.1.3"
+ sources."@jsonjoy.com/util-1.2.0"
sources."@leichtgewicht/ip-codec-2.0.5"
sources."@types/body-parser-1.19.5"
sources."@types/bonjour-3.5.13"
sources."@types/connect-3.4.38"
sources."@types/connect-history-api-fallback-1.5.4"
- sources."@types/eslint-8.56.10"
+ sources."@types/eslint-9.6.0"
sources."@types/eslint-scope-3.7.7"
sources."@types/estree-1.0.5"
sources."@types/express-4.17.21"
- sources."@types/express-serve-static-core-4.19.3"
+ sources."@types/express-serve-static-core-4.19.5"
sources."@types/http-errors-2.0.4"
sources."@types/http-proxy-1.17.14"
sources."@types/json-schema-7.0.15"
sources."@types/mime-1.3.5"
- sources."@types/node-20.14.2"
+ sources."@types/node-20.14.12"
sources."@types/node-forge-1.3.11"
sources."@types/qs-6.9.15"
sources."@types/range-parser-1.2.7"
@@ -89569,7 +88550,7 @@ in
sources."@types/serve-index-1.9.4"
sources."@types/serve-static-1.15.7"
sources."@types/sockjs-0.3.36"
- sources."@types/ws-8.5.10"
+ sources."@types/ws-8.5.11"
sources."@webassemblyjs/ast-1.12.1"
sources."@webassemblyjs/floating-point-hex-parser-1.11.6"
sources."@webassemblyjs/helper-api-error-1.11.6"
@@ -89588,9 +88569,9 @@ in
sources."@xtuc/ieee754-1.2.0"
sources."@xtuc/long-4.2.2"
sources."accepts-1.3.8"
- sources."acorn-8.12.0"
+ sources."acorn-8.12.1"
sources."acorn-import-attributes-1.9.5"
- sources."ajv-8.16.0"
+ sources."ajv-8.17.1"
sources."ajv-formats-2.1.1"
sources."ajv-keywords-5.1.0"
sources."ansi-html-community-0.0.8"
@@ -89603,19 +88584,20 @@ in
sources."binary-extensions-2.3.0"
(sources."body-parser-1.20.2" // {
dependencies = [
- sources."bytes-3.1.2"
+ sources."debug-2.6.9"
+ sources."ms-2.0.0"
];
})
sources."bonjour-service-1.2.1"
sources."brace-expansion-2.0.1"
sources."braces-3.0.3"
- sources."browserslist-4.23.1"
+ sources."browserslist-4.23.2"
sources."buffer-from-1.1.2"
sources."bufferutil-4.0.8"
sources."bundle-name-4.1.0"
- sources."bytes-3.0.0"
+ sources."bytes-3.1.2"
sources."call-bind-1.0.7"
- sources."caniuse-lite-1.0.30001634"
+ sources."caniuse-lite-1.0.30001643"
sources."chokidar-3.6.0"
sources."chrome-trace-event-1.0.4"
sources."color-convert-2.0.1"
@@ -89623,7 +88605,13 @@ in
sources."colorette-2.0.20"
sources."commander-2.20.3"
sources."compressible-2.0.18"
- sources."compression-1.7.4"
+ (sources."compression-1.7.4" // {
+ dependencies = [
+ sources."bytes-3.0.0"
+ sources."debug-2.6.9"
+ sources."ms-2.0.0"
+ ];
+ })
sources."connect-history-api-fallback-2.0.0"
(sources."content-disposition-0.5.4" // {
dependencies = [
@@ -89635,7 +88623,7 @@ in
sources."cookie-signature-1.0.6"
sources."core-util-is-1.0.3"
sources."cross-spawn-7.0.3"
- sources."debug-2.6.9"
+ sources."debug-4.3.5"
sources."default-browser-5.2.1"
sources."default-browser-id-5.0.0"
sources."default-gateway-6.0.3"
@@ -89647,13 +88635,13 @@ in
sources."dns-packet-5.6.1"
sources."eastasianwidth-0.2.0"
sources."ee-first-1.1.1"
- sources."electron-to-chromium-1.4.802"
+ sources."electron-to-chromium-1.5.1"
sources."emoji-regex-9.2.2"
sources."encodeurl-1.0.2"
- sources."enhanced-resolve-5.17.0"
+ sources."enhanced-resolve-5.17.1"
sources."es-define-property-1.0.0"
sources."es-errors-1.3.0"
- sources."es-module-lexer-1.5.3"
+ sources."es-module-lexer-1.5.4"
sources."escalade-3.1.2"
sources."escape-html-1.0.3"
sources."eslint-scope-5.1.1"
@@ -89666,29 +88654,37 @@ in
sources."etag-1.8.1"
sources."eventemitter3-4.0.7"
sources."events-3.3.0"
- sources."execa-5.1.1"
+ (sources."execa-5.1.1" // {
+ dependencies = [
+ sources."signal-exit-3.0.7"
+ ];
+ })
(sources."express-4.19.2" // {
dependencies = [
+ sources."debug-2.6.9"
+ sources."ms-2.0.0"
sources."safe-buffer-5.2.1"
];
})
sources."fast-deep-equal-3.1.3"
sources."fast-json-stable-stringify-2.1.0"
+ sources."fast-uri-3.0.1"
sources."faye-websocket-0.11.4"
sources."fill-range-7.1.1"
- sources."finalhandler-1.2.0"
- sources."follow-redirects-1.15.6"
- (sources."foreground-child-3.2.0" // {
+ (sources."finalhandler-1.2.0" // {
dependencies = [
- sources."signal-exit-4.1.0"
+ sources."debug-2.6.9"
+ sources."ms-2.0.0"
];
})
+ sources."follow-redirects-1.15.6"
+ sources."foreground-child-3.2.1"
sources."forwarded-0.2.0"
sources."fresh-0.5.2"
sources."function-bind-1.1.2"
sources."get-intrinsic-1.2.4"
sources."get-stream-6.0.1"
- sources."glob-10.4.1"
+ sources."glob-10.4.5"
sources."glob-parent-5.1.2"
sources."glob-to-regexp-0.4.1"
sources."gopd-1.0.1"
@@ -89728,15 +88724,15 @@ in
sources."is-wsl-3.1.0"
sources."isarray-1.0.0"
sources."isexe-2.0.0"
- sources."jackspeak-3.4.0"
+ sources."jackspeak-3.4.3"
sources."jest-worker-27.5.1"
sources."json-parse-even-better-errors-2.3.1"
sources."json-schema-traverse-1.0.0"
- sources."launch-editor-2.6.1"
+ sources."launch-editor-2.8.0"
sources."loader-runner-4.3.0"
- sources."lru-cache-10.2.2"
+ sources."lru-cache-10.4.3"
sources."media-typer-0.3.0"
- sources."memfs-4.9.2"
+ sources."memfs-4.9.4"
sources."merge-descriptors-1.0.1"
sources."merge-stream-2.0.0"
sources."methods-1.1.2"
@@ -89746,24 +88742,25 @@ in
sources."mime-types-2.1.35"
sources."mimic-fn-2.1.0"
sources."minimalistic-assert-1.0.1"
- sources."minimatch-9.0.4"
+ sources."minimatch-9.0.5"
sources."minipass-7.1.2"
- sources."ms-2.0.0"
+ sources."ms-2.1.2"
sources."multicast-dns-7.2.5"
sources."negotiator-0.6.3"
sources."neo-async-2.6.2"
sources."node-forge-1.3.1"
sources."node-gyp-build-4.8.1"
- sources."node-releases-2.0.14"
+ sources."node-releases-2.0.18"
sources."normalize-path-3.0.0"
sources."npm-run-path-4.0.1"
- sources."object-inspect-1.13.1"
+ sources."object-inspect-1.13.2"
sources."obuf-1.1.2"
sources."on-finished-2.4.1"
sources."on-headers-1.0.2"
sources."onetime-5.1.2"
sources."open-10.1.0"
sources."p-retry-6.2.0"
+ sources."package-json-from-dist-1.0.0"
sources."parseurl-1.3.3"
sources."path-key-3.1.1"
sources."path-scurry-1.11.1"
@@ -89780,17 +88777,13 @@ in
sources."qs-6.11.0"
sources."randombytes-2.1.0"
sources."range-parser-1.2.1"
- (sources."raw-body-2.5.2" // {
- dependencies = [
- sources."bytes-3.1.2"
- ];
- })
+ sources."raw-body-2.5.2"
sources."readable-stream-3.6.2"
sources."readdirp-3.6.0"
sources."require-from-string-2.0.2"
sources."requires-port-1.0.0"
sources."retry-0.13.1"
- sources."rimraf-5.0.7"
+ sources."rimraf-5.0.9"
sources."run-applescript-7.0.0"
sources."safe-buffer-5.1.2"
sources."safer-buffer-2.1.2"
@@ -89799,15 +88792,22 @@ in
sources."selfsigned-2.4.1"
(sources."send-0.18.0" // {
dependencies = [
+ (sources."debug-2.6.9" // {
+ dependencies = [
+ sources."ms-2.0.0"
+ ];
+ })
sources."ms-2.1.3"
];
})
sources."serialize-javascript-6.0.2"
(sources."serve-index-1.9.1" // {
dependencies = [
+ sources."debug-2.6.9"
sources."depd-1.1.2"
sources."http-errors-1.6.3"
sources."inherits-2.0.3"
+ sources."ms-2.0.0"
sources."setprototypeof-1.1.0"
sources."statuses-1.5.0"
];
@@ -89819,23 +88819,12 @@ in
sources."shebang-regex-3.0.0"
sources."shell-quote-1.8.1"
sources."side-channel-1.0.6"
- sources."signal-exit-3.0.7"
+ sources."signal-exit-4.1.0"
sources."sockjs-0.3.24"
- sources."sonic-forest-1.0.3"
sources."source-map-0.6.1"
sources."source-map-support-0.5.21"
- (sources."spdy-4.0.2" // {
- dependencies = [
- sources."debug-4.3.5"
- sources."ms-2.1.2"
- ];
- })
- (sources."spdy-transport-3.0.0" // {
- dependencies = [
- sources."debug-4.3.5"
- sources."ms-2.1.2"
- ];
- })
+ sources."spdy-4.0.2"
+ sources."spdy-transport-3.0.0"
sources."statuses-2.0.1"
sources."string-width-5.1.2"
(sources."string-width-cjs-4.2.3" // {
@@ -89854,7 +88843,7 @@ in
sources."strip-final-newline-2.0.0"
sources."supports-color-8.1.1"
sources."tapable-2.2.1"
- sources."terser-5.31.1"
+ sources."terser-5.31.3"
(sources."terser-webpack-plugin-5.3.10" // {
dependencies = [
sources."ajv-6.12.6"
@@ -89867,12 +88856,12 @@ in
sources."thunky-1.1.0"
sources."to-regex-range-5.0.1"
sources."toidentifier-1.0.1"
- sources."tree-dump-1.0.1"
+ sources."tree-dump-1.0.2"
sources."tslib-2.6.3"
sources."type-is-1.6.18"
sources."undici-types-5.26.5"
sources."unpipe-1.0.0"
- sources."update-browserslist-db-1.0.16"
+ sources."update-browserslist-db-1.1.0"
sources."uri-js-4.4.1"
sources."utf-8-validate-6.0.4"
sources."util-deprecate-1.0.2"
@@ -89881,7 +88870,7 @@ in
sources."vary-1.1.2"
sources."watchpack-2.4.1"
sources."wbuf-1.7.3"
- (sources."webpack-5.92.0" // {
+ (sources."webpack-5.93.0" // {
dependencies = [
sources."ajv-6.12.6"
sources."ajv-keywords-3.5.2"
@@ -89889,7 +88878,7 @@ in
sources."schema-utils-3.3.0"
];
})
- sources."webpack-dev-middleware-7.2.1"
+ sources."webpack-dev-middleware-7.3.0"
sources."webpack-sources-3.2.3"
sources."websocket-driver-0.7.4"
sources."websocket-extensions-0.1.4"
@@ -89903,7 +88892,7 @@ in
sources."strip-ansi-6.0.1"
];
})
- sources."ws-8.17.0"
+ sources."ws-8.18.0"
];
buildInputs = globalBuildInputs;
meta = {
@@ -89928,17 +88917,17 @@ in
sources."@jridgewell/resolve-uri-3.1.2"
sources."@jridgewell/set-array-1.2.1"
sources."@jridgewell/source-map-0.3.6"
- sources."@jridgewell/sourcemap-codec-1.4.15"
+ sources."@jridgewell/sourcemap-codec-1.5.0"
sources."@jridgewell/trace-mapping-0.3.25"
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
sources."@sindresorhus/merge-streams-2.3.0"
- sources."@types/eslint-8.56.10"
+ sources."@types/eslint-9.6.0"
sources."@types/eslint-scope-3.7.7"
sources."@types/estree-1.0.5"
sources."@types/json-schema-7.0.15"
- sources."@types/node-20.14.2"
+ sources."@types/node-20.14.12"
sources."@webassemblyjs/ast-1.12.1"
sources."@webassemblyjs/floating-point-hex-parser-1.11.6"
sources."@webassemblyjs/helper-api-error-1.11.6"
@@ -89956,20 +88945,20 @@ in
sources."@webassemblyjs/wast-printer-1.12.1"
sources."@xtuc/ieee754-1.2.0"
sources."@xtuc/long-4.2.2"
- sources."acorn-8.12.0"
+ sources."acorn-8.12.1"
sources."acorn-import-attributes-1.9.5"
- sources."ajv-8.16.0"
+ sources."ajv-8.17.1"
sources."ajv-formats-2.1.1"
sources."ajv-keywords-5.1.0"
sources."braces-3.0.3"
- sources."browserslist-4.23.1"
+ sources."browserslist-4.23.2"
sources."buffer-from-1.1.2"
- sources."caniuse-lite-1.0.30001634"
+ sources."caniuse-lite-1.0.30001643"
sources."chrome-trace-event-1.0.4"
sources."commander-2.20.3"
- sources."electron-to-chromium-1.4.802"
- sources."enhanced-resolve-5.17.0"
- sources."es-module-lexer-1.5.3"
+ sources."electron-to-chromium-1.5.1"
+ sources."enhanced-resolve-5.17.1"
+ sources."es-module-lexer-1.5.4"
sources."escalade-3.1.2"
sources."eslint-scope-5.1.1"
(sources."esrecurse-4.3.0" // {
@@ -89986,11 +88975,12 @@ in
];
})
sources."fast-json-stable-stringify-2.1.0"
+ sources."fast-uri-3.0.1"
sources."fastq-1.17.1"
sources."fill-range-7.1.1"
sources."glob-parent-6.0.2"
sources."glob-to-regexp-0.4.1"
- sources."globby-14.0.1"
+ sources."globby-14.0.2"
sources."graceful-fs-4.2.11"
sources."has-flag-4.0.0"
sources."ignore-5.3.1"
@@ -90007,7 +88997,7 @@ in
sources."mime-db-1.52.0"
sources."mime-types-2.1.35"
sources."neo-async-2.6.2"
- sources."node-releases-2.0.14"
+ sources."node-releases-2.0.18"
sources."normalize-path-3.0.0"
sources."path-type-5.0.0"
sources."picocolors-1.0.1"
@@ -90026,7 +89016,7 @@ in
sources."source-map-support-0.5.21"
sources."supports-color-8.1.1"
sources."tapable-2.2.1"
- sources."terser-5.31.1"
+ sources."terser-5.31.3"
(sources."terser-webpack-plugin-5.3.10" // {
dependencies = [
sources."ajv-6.12.6"
@@ -90038,10 +89028,10 @@ in
sources."to-regex-range-5.0.1"
sources."undici-types-5.26.5"
sources."unicorn-magic-0.1.0"
- sources."update-browserslist-db-1.0.16"
+ sources."update-browserslist-db-1.1.0"
sources."uri-js-4.4.1"
sources."watchpack-2.4.1"
- (sources."webpack-5.92.0" // {
+ (sources."webpack-5.93.0" // {
dependencies = [
sources."ajv-6.12.6"
sources."ajv-keywords-3.5.2"
@@ -90077,20 +89067,20 @@ in
sources."xml2js-0.6.2"
];
})
- sources."@thaunknown/idb-chunk-store-1.0.2"
- (sources."@thaunknown/simple-peer-10.0.7" // {
+ sources."@thaunknown/idb-chunk-store-1.0.4"
+ (sources."@thaunknown/simple-peer-10.0.10" // {
dependencies = [
sources."debug-4.3.5"
sources."ms-2.1.2"
];
})
- (sources."@thaunknown/simple-websocket-9.1.1" // {
+ (sources."@thaunknown/simple-websocket-9.1.3" // {
dependencies = [
sources."debug-4.3.5"
sources."ms-2.1.2"
];
})
- sources."@thaunknown/thirty-two-1.0.3"
+ sources."@thaunknown/thirty-two-1.0.5"
sources."@webtorrent/http-node-1.3.0"
sources."abort-controller-3.0.0"
sources."addr-to-ip-port-2.0.0"
@@ -90117,15 +89107,14 @@ in
];
})
sources."bittorrent-peerid-1.3.6"
- (sources."bittorrent-protocol-4.1.12" // {
+ (sources."bittorrent-protocol-4.1.13" // {
dependencies = [
sources."debug-4.3.5"
sources."ms-2.1.2"
];
})
- (sources."bittorrent-tracker-11.1.0" // {
+ (sources."bittorrent-tracker-11.1.1" // {
dependencies = [
- sources."clone-2.1.2"
sources."debug-4.3.5"
sources."ip-2.0.1"
sources."ms-2.1.2"
@@ -90166,7 +89155,7 @@ in
sources."concat-stream-1.6.2"
sources."core-util-is-1.0.3"
sources."cpus-1.0.3"
- sources."create-torrent-6.0.17"
+ sources."create-torrent-6.0.18"
sources."cross-fetch-ponyfill-1.0.3"
sources."cross-spawn-7.0.3"
sources."data-uri-to-buffer-4.0.1"
@@ -90221,9 +89210,9 @@ in
sources."he-1.2.0"
sources."http-parser-js-0.4.13"
sources."human-signals-2.1.0"
- sources."hybrid-chunk-store-1.2.4"
+ sources."hybrid-chunk-store-1.2.6"
sources."iconv-lite-0.4.24"
- sources."idb-6.1.5"
+ sources."idb-7.1.1"
sources."ieee754-1.2.1"
sources."immediate-chunk-store-2.2.0"
sources."inherits-2.0.4"
@@ -90279,7 +89268,7 @@ in
sources."netmask-2.0.2"
sources."network-address-1.1.2"
sources."node-abi-3.65.0"
- (sources."node-datachannel-0.9.1" // {
+ (sources."node-datachannel-0.10.1" // {
dependencies = [
sources."node-domexception-2.0.1"
];
@@ -90337,7 +89326,7 @@ in
sources."safe-buffer-5.1.2"
sources."safer-buffer-2.1.2"
sources."sax-1.1.4"
- sources."semver-7.6.2"
+ sources."semver-7.6.3"
sources."shebang-command-2.0.0"
sources."shebang-regex-3.0.0"
sources."signal-exit-3.0.7"
@@ -90349,7 +89338,7 @@ in
sources."speed-limiter-1.0.2"
sources."split-1.0.1"
sources."sprintf-js-1.1.3"
- sources."streamx-2.18.0"
+ sources."streamx-2.17.0"
sources."string-width-4.2.3"
sources."string2compact-2.0.1"
sources."string_decoder-1.1.1"
@@ -90363,13 +89352,12 @@ in
sources."readable-stream-3.6.2"
];
})
- sources."text-decoder-1.1.0"
sources."thirty-two-1.0.2"
sources."through-2.3.8"
sources."throughput-1.0.1"
sources."thunky-0.1.0"
sources."tmp-0.0.33"
- (sources."torrent-discovery-11.0.6" // {
+ (sources."torrent-discovery-11.0.7" // {
dependencies = [
sources."debug-4.3.5"
sources."ms-2.1.2"
@@ -90397,22 +89385,22 @@ in
sources."vlc-command-1.2.0"
sources."wcwidth-1.0.1"
sources."web-streams-polyfill-3.3.3"
- sources."webrtc-polyfill-1.1.6"
- (sources."webtorrent-2.4.1" // {
+ sources."webrtc-polyfill-1.1.8"
+ (sources."webtorrent-2.4.12" // {
dependencies = [
sources."bep53-range-2.0.0"
sources."debug-4.3.5"
sources."get-stdin-9.0.0"
sources."magnet-uri-7.0.5"
sources."ms-2.1.2"
- sources."parse-torrent-11.0.16"
+ sources."parse-torrent-11.0.17"
];
})
sources."which-2.0.2"
sources."winreg-1.2.5"
sources."wrap-ansi-6.2.0"
sources."wrappy-1.0.2"
- sources."ws-8.17.0"
+ sources."ws-8.18.0"
sources."xml2js-0.4.23"
sources."xmlbuilder-11.0.1"
sources."y18n-5.0.8"
diff --git a/pkgs/development/python-modules/aiohttp-apispec/default.nix b/pkgs/development/python-modules/aiohttp-apispec/default.nix
index 9284686d3cab..95d1ee3d3010 100644
--- a/pkgs/development/python-modules/aiohttp-apispec/default.nix
+++ b/pkgs/development/python-modules/aiohttp-apispec/default.nix
@@ -45,6 +45,6 @@ buildPythonPackage rec {
description = "Build and document REST APIs with aiohttp and apispec";
homepage = "https://github.com/maximdanilchenko/aiohttp-apispec/";
license = licenses.mit;
- maintainers = with maintainers; [ viric ];
+ maintainers = [ ];
};
}
diff --git a/pkgs/development/python-modules/androguard/default.nix b/pkgs/development/python-modules/androguard/default.nix
index cc1789963e61..c5a4300736ee 100644
--- a/pkgs/development/python-modules/androguard/default.nix
+++ b/pkgs/development/python-modules/androguard/default.nix
@@ -2,6 +2,7 @@
lib,
buildPythonPackage,
fetchFromGitHub,
+ setuptools,
future,
networkx,
pygments,
@@ -12,11 +13,9 @@
click,
pydot,
ipython,
- packaging,
pyqt5,
pyperclip,
- nose,
- nose-timer,
+ pytestCheckHook,
mock,
python-magic,
codecov,
@@ -25,15 +24,16 @@
# This is usually used as a library, and it'd be a shame to force the GUI
# libraries to the closure if GUI is not desired.
withGui ? false,
- # Tests take a very long time, and currently fail, but next release' tests
- # shouldn't fail
- doCheck ? false,
+ # Deprecated in 24.11.
+ doCheck ? true,
}:
+assert lib.warnIf (!doCheck) "python3Packages.androguard: doCheck is deprecated" true;
+
buildPythonPackage rec {
pname = "androguard";
version = "3.4.0a1";
- format = "setuptools";
+ pyproject = true;
src = fetchFromGitHub {
repo = pname;
@@ -42,9 +42,16 @@ buildPythonPackage rec {
sha256 = "1aparxiq11y0hbvkayp92w684nyxyyx7mi0n1x6x51g5z6c58vmy";
};
- nativeBuildInputs = [ packaging ] ++ lib.optionals withGui [ qt5.wrapQtAppsHook ];
+ patches = [
+ ./drop-removed-networkx-formats.patch
+ ./fix-tests.patch
+ ];
- propagatedBuildInputs =
+ build-system = [ setuptools ];
+
+ nativeBuildInputs = lib.optionals withGui [ qt5.wrapQtAppsHook ];
+
+ dependencies =
[
asn1crypto
click
@@ -57,29 +64,25 @@ buildPythonPackage rec {
pydot
pygments
]
+ ++ networkx.optional-dependencies.default
+ ++ networkx.optional-dependencies.extra
++ lib.optionals withGui [
pyqt5
pyperclip
];
nativeCheckInputs = [
+ pytestCheckHook
codecov
coverage
mock
- nose
- nose-timer
pyperclip
pyqt5
python-magic
];
- inherit doCheck;
# If it won't be verbose, you'll see nothing going on for a long time.
- checkPhase = ''
- runHook preCheck
- nosetests --verbosity=3
- runHook postCheck
- '';
+ pytestFlagsArray = [ "--verbose" ];
preFixup = lib.optionalString withGui ''
makeWrapperArgs+=("''${qtWrapperArgs[@]}")
diff --git a/pkgs/development/python-modules/androguard/drop-removed-networkx-formats.patch b/pkgs/development/python-modules/androguard/drop-removed-networkx-formats.patch
new file mode 100644
index 000000000000..214fbaa2dafd
--- /dev/null
+++ b/pkgs/development/python-modules/androguard/drop-removed-networkx-formats.patch
@@ -0,0 +1,14 @@
+diff --git a/androguard/cli/main.py b/androguard/cli/main.py
+index 13bc1d0ab7..a79b4fe5fa 100644
+--- a/androguard/cli/main.py
++++ b/androguard/cli/main.py
+@@ -110,9 +110,7 @@
+
+ write_methods = dict(gml=_write_gml,
+ gexf=nx.write_gexf,
+- gpickle=nx.write_gpickle,
+ graphml=nx.write_graphml,
+- yaml=nx.write_yaml,
+ net=nx.write_pajek,
+ )
+
diff --git a/pkgs/development/python-modules/androguard/fix-tests.patch b/pkgs/development/python-modules/androguard/fix-tests.patch
new file mode 100644
index 000000000000..b971b46c6244
--- /dev/null
+++ b/pkgs/development/python-modules/androguard/fix-tests.patch
@@ -0,0 +1,13 @@
+diff --git a/tests/test_types.py b/tests/test_types.py
+index 127dfc20eb..f1c89f0712 100644
+--- a/tests/test_types.py
++++ b/tests/test_types.py
+@@ -182,7 +182,7 @@
+ for i in filter(lambda x: 'const' in x.get_name(), method.get_instructions()):
+ i.show(0)
+ # ins should only have one literal
+- self.assertEquals(len(i.get_literals()), 1)
++ self.assertEqual(len(i.get_literals()), 1)
+
+ fmt, value = VALUES[method.full_name].pop(0)
+ converted = format_value(i.get_literals()[0], i, fmt)
diff --git a/pkgs/development/python-modules/changefinder/default.nix b/pkgs/development/python-modules/changefinder/default.nix
index fc34238f00ec..4405fa8a8525 100644
--- a/pkgs/development/python-modules/changefinder/default.nix
+++ b/pkgs/development/python-modules/changefinder/default.nix
@@ -2,7 +2,7 @@
, buildPythonPackage
, fetchFromGitHub
, setuptools
-, nose
+, pytestCheckHook
, numpy
, scipy
, statsmodels
@@ -20,17 +20,21 @@ buildPythonPackage {
hash = "sha256-1If0gIsMU8673fKSSHVMvDgR1UnYgM/4HiyvZJ9T6VM=";
};
- nativeBuildInputs = [
- setuptools
- ];
+ patches = [ ./fix_test_invocation.patch ];
- propagatedBuildInputs = [
- nose # not actually required during runtime, but specified as required in `setup.py`
+ build-system = [ setuptools ];
+
+ pythonRemoveDeps = [ "nose" ];
+
+ dependencies = [
numpy
scipy
statsmodels
];
+ nativeCheckInputs = [ pytestCheckHook ];
+ pytestFlagsArray = [ "test/test.py" ];
+
pythonImportsCheck = [ "changefinder" ];
meta = with lib; {
diff --git a/pkgs/development/python-modules/changefinder/fix_test_invocation.patch b/pkgs/development/python-modules/changefinder/fix_test_invocation.patch
new file mode 100644
index 000000000000..f02e2e36d4b5
--- /dev/null
+++ b/pkgs/development/python-modules/changefinder/fix_test_invocation.patch
@@ -0,0 +1,13 @@
+diff --git a/test/test.py b/test/test.py
+index 85a9f4e..a5f44fd 100644
+--- a/test/test.py
++++ b/test/test.py
+@@ -4,7 +4,7 @@ import numpy as np
+
+
+ class TestChangeFinder():
+- def setup(self):
++ def setup_method(self):
+ self._term = 30
+ self._smooth = 7
+ self._order = 1
diff --git a/pkgs/development/python-modules/cliff/default.nix b/pkgs/development/python-modules/cliff/default.nix
index cca72fa51ef0..416a34be304d 100644
--- a/pkgs/development/python-modules/cliff/default.nix
+++ b/pkgs/development/python-modules/cliff/default.nix
@@ -5,21 +5,21 @@
autopage,
cmd2,
importlib-metadata,
- installShellFiles,
openstackdocstheme,
pbr,
prettytable,
pyparsing,
pyyaml,
+ setuptools,
stevedore,
- sphinx,
+ sphinxHook,
callPackage,
}:
buildPythonPackage rec {
pname = "cliff";
version = "4.7.0";
- format = "setuptools";
+ pyproject = true;
src = fetchPypi {
inherit pname version;
@@ -32,13 +32,15 @@ buildPythonPackage rec {
rm test-requirements.txt
'';
- nativeBuildInputs = [
- installShellFiles
+ build-system = [
openstackdocstheme
- sphinx
+ setuptools
+ sphinxHook
];
- propagatedBuildInputs = [
+ sphinxBuilders = [ "man" ];
+
+ dependencies = [
autopage
cmd2
importlib-metadata
@@ -49,11 +51,6 @@ buildPythonPackage rec {
stevedore
];
- postInstall = ''
- sphinx-build -a -E -d doc/build/doctrees -b man doc/source doc/build/man
- installManPage doc/build/man/cliff.1
- '';
-
# check in passthru.tests.pytest to escape infinite recursion with stestr
doCheck = false;
diff --git a/pkgs/development/python-modules/cmsis-svd/default.nix b/pkgs/development/python-modules/cmsis-svd/default.nix
index 030b6d282276..b3197b6f89ef 100644
--- a/pkgs/development/python-modules/cmsis-svd/default.nix
+++ b/pkgs/development/python-modules/cmsis-svd/default.nix
@@ -2,33 +2,43 @@
lib,
buildPythonPackage,
fetchFromGitHub,
+ setuptools,
six,
+ lxml,
}:
-buildPythonPackage rec {
+buildPythonPackage {
pname = "cmsis-svd";
- version = "0.4";
- format = "setuptools";
+ version = "0.4-unstable-2024-01-25";
+ pyproject = true;
src = fetchFromGitHub {
- owner = "posborne";
- repo = pname;
- rev = "python-${version}";
- sha256 = "01f2z01gqgx0risqnbrlaqj49fmly30zbwsf7rr465ggnl2c04r0";
+ owner = "cmsis-svd";
+ repo = "cmsis-svd";
+ rev = "38d21d30abd0d4c2f34fd79d83b34392ed4bb7a3";
+ hash = "sha256-lFA0sNHVj4a4+EwOTmFUbM/nhmzJ4mx4GvT6Ykutakk=";
};
- preConfigure = ''
+ preBuild = ''
cd python
'';
- propagatedBuildInputs = [ six ];
+ build-system = [ setuptools ];
- pythonImportsCheck = [ "cmsis_svd" ];
+ dependencies = [
+ six
+ lxml
+ ];
- meta = with lib; {
+ pythonImportsCheck = [
+ "cmsis_svd"
+ "cmsis_svd.parser"
+ ];
+
+ meta = {
description = "CMSIS SVD parser";
- homepage = "https://github.com/posborne/cmsis-svd";
- maintainers = with maintainers; [ dump_stack ];
- license = licenses.asl20;
+ homepage = "https://github.com/cmsis-svd/cmsis-svd";
+ maintainers = [ lib.maintainers.dump_stack ];
+ license = lib.licenses.asl20;
};
}
diff --git a/pkgs/development/python-modules/cyclonedx-python-lib/default.nix b/pkgs/development/python-modules/cyclonedx-python-lib/default.nix
index 1dec71571003..2b60de8fd4e5 100644
--- a/pkgs/development/python-modules/cyclonedx-python-lib/default.nix
+++ b/pkgs/development/python-modules/cyclonedx-python-lib/default.nix
@@ -82,6 +82,12 @@ buildPythonPackage rec {
"tests/test_output_xml.py"
];
+ passthru.optional-dependencies = {
+ validation = [
+ jsonschema
+ ];
+ };
+
meta = with lib; {
description = "Python library for generating CycloneDX SBOMs";
homepage = "https://github.com/CycloneDX/cyclonedx-python-lib";
diff --git a/pkgs/development/python-modules/debtcollector/default.nix b/pkgs/development/python-modules/debtcollector/default.nix
index 5174c46c444a..d9b2011b17f2 100644
--- a/pkgs/development/python-modules/debtcollector/default.nix
+++ b/pkgs/development/python-modules/debtcollector/default.nix
@@ -2,8 +2,11 @@
lib,
buildPythonPackage,
fetchPypi,
+ openstackdocstheme,
pbr,
six,
+ setuptools,
+ sphinxHook,
wrapt,
callPackage,
}:
@@ -11,16 +14,23 @@
buildPythonPackage rec {
pname = "debtcollector";
version = "3.0.0";
- format = "setuptools";
+ pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-KokX0lsOHx0NNl08HG7Px6UiselxbooaSpFRJvfM6m8=";
};
- nativeBuildInputs = [ pbr ];
+ build-system = [
+ openstackdocstheme
+ pbr
+ setuptools
+ sphinxHook
+ ];
- propagatedBuildInputs = [
+ sphinxBuilders = [ "man" ];
+
+ dependencies = [
six
wrapt
];
diff --git a/pkgs/development/python-modules/django-stubs-ext/default.nix b/pkgs/development/python-modules/django-stubs-ext/default.nix
index 1176f2ba09c7..2e11561ddcf5 100644
--- a/pkgs/development/python-modules/django-stubs-ext/default.nix
+++ b/pkgs/development/python-modules/django-stubs-ext/default.nix
@@ -11,7 +11,7 @@
buildPythonPackage rec {
pname = "django-stubs-ext";
- version = "5.0.2";
+ version = "5.0.3";
pyproject = true;
disabled = pythonOlder "3.8";
@@ -19,7 +19,7 @@ buildPythonPackage rec {
src = fetchPypi {
pname = "django_stubs_ext";
inherit version;
- hash = "sha256-QJxiWF1/mWzvXHYObifqP/KflhyUN0fmdRnIN0IsrTI=";
+ hash = "sha256-zTYfW5Ucar34Z8VdJHVB8GCdHoM0zLCcehKRARFCUjQ=";
};
nativeBuildInputs = [ setuptools ];
diff --git a/pkgs/development/python-modules/etebase/default.nix b/pkgs/development/python-modules/etebase/default.nix
index bb23e85534b8..ffdad6347628 100644
--- a/pkgs/development/python-modules/etebase/default.nix
+++ b/pkgs/development/python-modules/etebase/default.nix
@@ -12,23 +12,39 @@
openssl,
Security,
msgpack,
+ fetchpatch,
}:
buildPythonPackage rec {
pname = "etebase";
- version = "0.31.6";
+ version = "0.31.7";
src = fetchFromGitHub {
owner = "etesync";
repo = "etebase-py";
rev = "v${version}";
- hash = "sha256-T61nPW3wjBRjmJ81w59T1b/Kxrwwqvyj3gILE9OF/5Q=";
+ hash = "sha256-ZNUUp/0fGJxL/Rt8sAZ864rg8uCcNybIYSk4POt0vqg=";
};
+ # https://github.com/etesync/etebase-py/pull/54
+ patches = [
+ # fix python 3.12 build
+ (fetchpatch {
+ url = "https://github.com/etesync/etebase-py/commit/898eb3aca1d4eb30d4aeae15e35d0bc45dd7b3c8.patch";
+ hash = "sha256-0BDUTztiC4MiwwNEDFtfc5ruc69Qk+svepQZRixNJgA=";
+ })
+ # replace flapigen git dependency in Cargo.lock
+ (fetchpatch {
+ url = "https://github.com/etesync/etebase-py/commit/7e9e4244a144dd46383d8be950d3df79e28eb069.patch";
+ hash = "sha256-8EH8Sc3UnmuCrSwDf3+as218HiG2Ed3r+FCMrUi5YrI=";
+ })
+ ];
+
cargoDeps = rustPlatform.fetchCargoTarball {
inherit src;
name = "${pname}-${version}";
- hash = "sha256-wrMNtcaLAsWBVeJbYbYo+Xmobl01lnUbR9NUqqUzUgU=";
+ hash = "sha256-We19laZd6b2fLSPNLegyNp0eQSeCvUJeTIXqvG7o08c=";
+ inherit patches;
};
format = "pyproject";
diff --git a/pkgs/development/python-modules/kserve/default.nix b/pkgs/development/python-modules/kserve/default.nix
index 962ba7d8375c..bb071fc3f0aa 100644
--- a/pkgs/development/python-modules/kserve/default.nix
+++ b/pkgs/development/python-modules/kserve/default.nix
@@ -3,8 +3,12 @@
buildPythonPackage,
pythonOlder,
fetchFromGitHub,
+
+ # build-system
deprecation,
poetry-core,
+
+ # dependencies
async-timeout,
cloudevents,
fastapi,
@@ -17,12 +21,16 @@
prometheus-client,
protobuf,
psutil,
+ pydantic,
python-dateutil,
+ pyyaml,
ray,
six,
tabulate,
timing-asgi,
uvicorn,
+
+ # checks
avro,
azure-storage-blob,
azure-storage-file-share,
@@ -30,13 +38,14 @@
botocore,
google-cloud-storage,
grpcio-testing,
+ pytest-asyncio,
pytestCheckHook,
tomlkit,
}:
buildPythonPackage rec {
pname = "kserve";
- version = "0.13.0";
+ version = "0.13.1";
pyproject = true;
disabled = pythonOlder "3.8";
@@ -45,7 +54,7 @@ buildPythonPackage rec {
owner = "kserve";
repo = "kserve";
rev = "refs/tags/v${version}";
- hash = "sha256-Fu+1AR7FU4EQ+PhMneHFr3at3N9cN7V24wm/VOfY8GA=";
+ hash = "sha256-wGS001PK+k21oCOaQCiAtytTDjfe0aiTVJ9spyOucYA=";
};
sourceRoot = "${src.name}/python/kserve";
@@ -68,7 +77,9 @@ buildPythonPackage rec {
prometheus-client
protobuf
psutil
+ pydantic
python-dateutil
+ pyyaml
ray
six
tabulate
@@ -96,6 +107,7 @@ buildPythonPackage rec {
botocore
google-cloud-storage
grpcio-testing
+ pytest-asyncio
pytestCheckHook
tomlkit
];
diff --git a/pkgs/development/python-modules/lottie/default.nix b/pkgs/development/python-modules/lottie/default.nix
new file mode 100644
index 000000000000..a1ced236e8c8
--- /dev/null
+++ b/pkgs/development/python-modules/lottie/default.nix
@@ -0,0 +1,30 @@
+{
+ lib,
+ buildPythonPackage,
+ distutils,
+ fetchPypi,
+ setuptools,
+}:
+buildPythonPackage rec {
+ pname = "lottie";
+ version = "0.7.0";
+ pyproject = true;
+
+ src = fetchPypi {
+ inherit pname version;
+ hash = "sha256-oyQvi6NwUfvddQPs0WggOgjkrybxe+LsygimSvHn08E=";
+ };
+
+ build-system = [ setuptools ];
+
+ dependencies = [ distutils ];
+
+ pythonImportsCheck = [ "lottie" ];
+
+ meta = with lib; {
+ description = "Framework to work with lottie files and telegram animated stickers (tgs)";
+ homepage = "https://gitlab.com/mattbas/python-lottie/";
+ license = licenses.agpl3Plus;
+ maintainers = with maintainers; [ Scrumplex ];
+ };
+}
diff --git a/pkgs/development/python-modules/mopeka-iot-ble/default.nix b/pkgs/development/python-modules/mopeka-iot-ble/default.nix
index 7ac84ff2131d..8798668d6c28 100644
--- a/pkgs/development/python-modules/mopeka-iot-ble/default.nix
+++ b/pkgs/development/python-modules/mopeka-iot-ble/default.nix
@@ -13,7 +13,7 @@
buildPythonPackage rec {
pname = "mopeka-iot-ble";
- version = "0.7.0";
+ version = "0.8.0";
pyproject = true;
disabled = pythonOlder "3.9";
@@ -22,7 +22,7 @@ buildPythonPackage rec {
owner = "bluetooth-devices";
repo = pname;
rev = "refs/tags/v${version}";
- hash = "sha256-wF3ZSR9kjn6qWaB7SRKsQuHfbNMwdKS/5qR9nStsw1c=";
+ hash = "sha256-CKLC0p66JapE9qNePE11ttoGMVd4kA7g28kA+pYLXCE=";
};
postPatch = ''
diff --git a/pkgs/development/python-modules/nibe/default.nix b/pkgs/development/python-modules/nibe/default.nix
index 79b7833c9efc..8a4a5fb69e3e 100644
--- a/pkgs/development/python-modules/nibe/default.nix
+++ b/pkgs/development/python-modules/nibe/default.nix
@@ -20,7 +20,7 @@
buildPythonPackage rec {
pname = "nibe";
- version = "2.10.1";
+ version = "2.12.0";
pyproject = true;
disabled = pythonOlder "3.9";
@@ -29,7 +29,7 @@ buildPythonPackage rec {
owner = "yozik04";
repo = "nibe";
rev = "refs/tags/${version}";
- hash = "sha256-rm0SV48vo68aiiFcvuSSGwCvQEsagIMh2EQXXmUU5dc=";
+ hash = "sha256-Sqwwk++iA/PsAKZRkUPjXuzgSrhnH4N02c072pIVEyw=";
};
build-system = [ setuptools ];
diff --git a/pkgs/development/python-modules/nose-timer/default.nix b/pkgs/development/python-modules/nose-timer/default.nix
deleted file mode 100644
index a002e6bfb1da..000000000000
--- a/pkgs/development/python-modules/nose-timer/default.nix
+++ /dev/null
@@ -1,46 +0,0 @@
-{
- lib,
- buildPythonPackage,
- fetchFromGitHub,
- nose,
- mock,
- parameterized,
- termcolor,
-}:
-
-buildPythonPackage rec {
- pname = "nose-timer";
- version = "1.0.1";
- format = "setuptools";
-
- src = fetchFromGitHub {
- owner = "mahmoudimus";
- repo = pname;
- rev = "v${version}";
- sha256 = "0xsai2l5i1av62y9y0q63wy2zk27klmf2jizgghhxg2y8nfa8x3x";
- };
-
- propagatedBuildInputs = [ nose ];
-
- nativeCheckInputs = [
- mock
- nose
- parameterized
- termcolor
- ];
-
- checkPhase = ''
- runHook preCheck
- nosetests --verbosity 2 tests
- runHook postCheck
- '';
-
- pythonImportsCheck = [ "nosetimer" ];
-
- meta = with lib; {
- description = "Timer plugin for nosetests";
- homepage = "https://github.com/mahmoudimus/nose-timer";
- license = licenses.mit;
- maintainers = with maintainers; [ doronbehar ];
- };
-}
diff --git a/pkgs/development/python-modules/nuclear/default.nix b/pkgs/development/python-modules/nuclear/default.nix
new file mode 100644
index 000000000000..ac7d35419835
--- /dev/null
+++ b/pkgs/development/python-modules/nuclear/default.nix
@@ -0,0 +1,54 @@
+{
+ lib,
+ buildPythonPackage,
+ fetchFromGitHub,
+ pytestCheckHook,
+ colorama,
+ mock,
+ pyyaml,
+ pydantic,
+ backoff,
+ setuptools,
+}:
+
+buildPythonPackage rec {
+ pname = "nuclear";
+ version = "2.2.5";
+ pyproject = true;
+
+ src = fetchFromGitHub {
+ owner = "igrek51";
+ repo = "nuclear";
+ rev = version;
+ hash = "sha256-JuO7BKmlQE6bWKqy1QvX5U4A9YkKu/4ouTSJh9R7JGo=";
+ };
+
+ build-system = [ setuptools ];
+ dependencies = [
+ colorama
+ pyyaml
+ ];
+
+ nativeCheckInputs = [
+ pytestCheckHook
+ mock
+ pydantic
+ backoff
+ ];
+ disabledTestPaths = [
+ # Disabled because test tries to install bash in a non-NixOS way
+ "tests/autocomplete/test_bash_install.py"
+ ];
+ disabledTests = [
+ # Setting the time zone in nix sandbox does not work - to be investigated
+ "test_context_logger"
+ ];
+ pythonImportsCheck = [ "nuclear" ];
+
+ meta = with lib; {
+ homepage = "https://igrek51.github.io/nuclear/";
+ description = "Binding glue for CLI Python applications";
+ license = licenses.mit;
+ maintainers = with maintainers; [ parras ];
+ };
+}
diff --git a/pkgs/development/python-modules/openstacksdk/default.nix b/pkgs/development/python-modules/openstacksdk/default.nix
index afd98f1f61ed..5bf0f23accba 100644
--- a/pkgs/development/python-modules/openstacksdk/default.nix
+++ b/pkgs/development/python-modules/openstacksdk/default.nix
@@ -11,12 +11,14 @@
keystoneauth1,
munch,
netifaces,
+ openstackdocstheme,
os-service-types,
pbr,
pythonOlder,
pyyaml,
requestsexceptions,
setuptools,
+ sphinxHook,
}:
buildPythonPackage rec {
@@ -26,12 +28,29 @@ buildPythonPackage rec {
disabled = pythonOlder "3.7";
+ outputs = [
+ "out"
+ "man"
+ ];
+
src = fetchPypi {
inherit pname version;
hash = "sha256-BghpDKN8pzMnsPo3YdF+ZTlb43/yALhzXY8kJ3tPSYA=";
};
- build-system = [ setuptools ];
+ postPatch = ''
+ # Disable rsvgconverter not needed to build manpage
+ substituteInPlace doc/source/conf.py \
+ --replace-fail "'sphinxcontrib.rsvgconverter'," "#'sphinxcontrib.rsvgconverter',"
+ '';
+
+ build-system = [
+ openstackdocstheme
+ setuptools
+ sphinxHook
+ ];
+
+ sphinxBuilders = [ "man" ];
dependencies = [
platformdirs
diff --git a/pkgs/development/python-modules/prison/default.nix b/pkgs/development/python-modules/prison/default.nix
index 32d7a9ead8c6..5abb41f26910 100644
--- a/pkgs/development/python-modules/prison/default.nix
+++ b/pkgs/development/python-modules/prison/default.nix
@@ -2,14 +2,15 @@
lib,
buildPythonPackage,
fetchFromGitHub,
+ setuptools,
six,
- nose,
+ pytestCheckHook,
}:
buildPythonPackage rec {
pname = "prison";
version = "0.1.3";
- format = "setuptools";
+ pyproject = true;
src = fetchFromGitHub {
owner = "betodealmeida";
@@ -18,9 +19,11 @@ buildPythonPackage rec {
hash = "sha256-qor40vUQeTdlO3vwug3GGNX5vkNaF0H7EWlRdsY4bvc=";
};
- propagatedBuildInputs = [ six ];
+ build-system = [ setuptools ];
- nativeCheckInputs = [ nose ];
+ dependencies = [ six ];
+
+ nativeCheckInputs = [ pytestCheckHook ];
meta = with lib; {
description = "Rison encoder/decoder";
diff --git a/pkgs/development/python-modules/pygtfs/default.nix b/pkgs/development/python-modules/pygtfs/default.nix
index c38fed72fd97..b4a404dc209f 100644
--- a/pkgs/development/python-modules/pygtfs/default.nix
+++ b/pkgs/development/python-modules/pygtfs/default.nix
@@ -3,42 +3,38 @@
buildPythonPackage,
docopt,
fetchPypi,
- nose,
pytz,
- pythonOlder,
+ setuptools,
setuptools-scm,
six,
sqlalchemy,
+ pytestCheckHook,
}:
buildPythonPackage rec {
pname = "pygtfs";
version = "0.1.9";
- format = "setuptools";
-
- disabled = pythonOlder "3.7";
+ pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-J5vu51OOMabWd8h60PpvvBiCnwQlhEnBywNXxy9hOuA=";
};
- postPatch = ''
- # https://github.com/jarondl/pygtfs/pull/72
- substituteInPlace setup.py \
- --replace "pytz>=2012d" "pytz"
- '';
+ build-system = [
+ setuptools
+ setuptools-scm
+ ];
- nativeBuildInputs = [ setuptools-scm ];
-
- propagatedBuildInputs = [
+ dependencies = [
docopt
pytz
six
sqlalchemy
];
- nativeCheckInputs = [ nose ];
+ nativeCheckInputs = [ pytestCheckHook ];
+ pytestFlagsArray = [ "pygtfs/test/test.py" ];
pythonImportsCheck = [ "pygtfs" ];
diff --git a/pkgs/development/python-modules/pylint/default.nix b/pkgs/development/python-modules/pylint/default.nix
index 01491a2a619a..83fa6de45c75 100644
--- a/pkgs/development/python-modules/pylint/default.nix
+++ b/pkgs/development/python-modules/pylint/default.nix
@@ -106,7 +106,7 @@ buildPythonPackage rec {
"test_py3k_jobs_option"
];
- meta = with lib; {
+ meta = {
description = "Bug and style checker for Python";
homepage = "https://pylint.readthedocs.io/en/stable/";
changelog = "https://github.com/pylint-dev/pylint/releases/tag/v${version}";
@@ -119,7 +119,8 @@ buildPythonPackage rec {
- symilar: an independent similarities checker
- epylint: Emacs and Flymake compatible Pylint
'';
- license = licenses.gpl2Plus;
- maintainers = with maintainers; [ ];
+ license = lib.licenses.gpl2Plus;
+ maintainers = with lib.maintainers; [ ];
+ mainProgram = "pylint";
};
}
diff --git a/pkgs/development/python-modules/pynetdicom/default.nix b/pkgs/development/python-modules/pynetdicom/default.nix
index 3339b77b9880..efcad7461e99 100644
--- a/pkgs/development/python-modules/pynetdicom/default.nix
+++ b/pkgs/development/python-modules/pynetdicom/default.nix
@@ -13,7 +13,7 @@
buildPythonPackage rec {
pname = "pynetdicom";
- version = "2.1.0";
+ version = "2.1.1";
pyproject = true;
disabled = pythonOlder "3.7";
@@ -22,7 +22,7 @@ buildPythonPackage rec {
owner = "pydicom";
repo = "pynetdicom";
rev = "refs/tags/v${version}";
- hash = "sha256-gAgNSvNn5VsctqhbT/CzFVhwCEpZwGb1pOh0JwkuAW8=";
+ hash = "sha256-cEe0/mzmMnPoLQMx5AsJocGxCUVE512k9KlEmjzjzn4=";
};
build-system = [ poetry-core ];
diff --git a/pkgs/development/python-modules/pyngo/default.nix b/pkgs/development/python-modules/pyngo/default.nix
index 0f6c85d993c8..316da55728cb 100644
--- a/pkgs/development/python-modules/pyngo/default.nix
+++ b/pkgs/development/python-modules/pyngo/default.nix
@@ -20,7 +20,7 @@
buildPythonPackage rec {
pname = "pyngo";
- version = "2.0.1";
+ version = "2.1.0";
pyproject = true;
disabled = pythonOlder "3.10";
@@ -29,7 +29,7 @@ buildPythonPackage rec {
owner = "yezz123";
repo = "pyngo";
rev = "refs/tags/${version}";
- hash = "sha256-wvy1L21AnQ4JP5seAh6DWksQU2OcbYTXKcixpFryH4w=";
+ hash = "sha256-w5gOwaQeNX9Ca6V2rxi1UGi2aO+/Eaz2uyw4x/JVOxc=";
};
nativeBuildInputs = [
diff --git a/pkgs/development/python-modules/pyswitchbee/default.nix b/pkgs/development/python-modules/pyswitchbee/default.nix
index 715d084ad9c1..3d81a5b01ce6 100644
--- a/pkgs/development/python-modules/pyswitchbee/default.nix
+++ b/pkgs/development/python-modules/pyswitchbee/default.nix
@@ -11,7 +11,7 @@
buildPythonPackage rec {
pname = "pyswitchbee";
- version = "1.8.0";
+ version = "1.8.3";
format = "pyproject";
disabled = pythonOlder "3.9";
@@ -20,7 +20,7 @@ buildPythonPackage rec {
owner = "jafar-atili";
repo = "pySwitchbee";
rev = "refs/tags/${version}";
- hash = "sha256-bMxWrapFX689yvC6+9NUunEtTe79+QNauFa1ZjG9ON4=";
+ hash = "sha256-at/HCY6htUz1ej09XPrb2QEyoiOWhIEpgSwJange1cU=";
};
nativeBuildInputs = [ setuptools ];
diff --git a/pkgs/development/python-modules/python-barbicanclient/default.nix b/pkgs/development/python-modules/python-barbicanclient/default.nix
index cefe9412e86e..7188c8381605 100644
--- a/pkgs/development/python-modules/python-barbicanclient/default.nix
+++ b/pkgs/development/python-modules/python-barbicanclient/default.nix
@@ -4,6 +4,7 @@
cliff,
fetchFromGitea,
keystoneauth1,
+ openstackdocstheme,
oslo-i18n,
oslo-serialization,
oslo-utils,
@@ -12,6 +13,8 @@
requests-mock,
requests,
setuptools,
+ sphinxcontrib-apidoc,
+ sphinxHook,
stestr,
}:
@@ -32,11 +35,22 @@ buildPythonPackage rec {
env.PBR_VERSION = version;
+ postPatch = ''
+ # Disable rsvgconverter not needed to build manpage
+ substituteInPlace doc/source/conf.py \
+ --replace-fail "'sphinxcontrib.rsvgconverter'," "#'sphinxcontrib.rsvgconverter',"
+ '';
+
build-system = [
+ openstackdocstheme
pbr
setuptools
+ sphinxHook
+ sphinxcontrib-apidoc
];
+ sphinxBuilders = [ "man" ];
+
dependencies = [
cliff
keystoneauth1
@@ -65,6 +79,7 @@ buildPythonPackage rec {
homepage = "https://opendev.org/openstack/python-barbicanclient";
description = "Client library for OpenStack Barbican API";
license = lib.licenses.asl20;
+ mainProgram = "barbican";
maintainers = lib.teams.openstack.members;
};
}
diff --git a/pkgs/development/python-modules/python-designateclient/default.nix b/pkgs/development/python-modules/python-designateclient/default.nix
index 20cbf04e6ba2..fa2a61d85aa4 100644
--- a/pkgs/development/python-modules/python-designateclient/default.nix
+++ b/pkgs/development/python-modules/python-designateclient/default.nix
@@ -5,6 +5,7 @@
fetchFromGitea,
jsonschema,
keystoneauth1,
+ openstackdocstheme,
osc-lib,
oslo-serialization,
oslo-utils,
@@ -14,6 +15,8 @@
requests-mock,
requests,
setuptools,
+ sphinxHook,
+ sphinxcontrib-apidoc,
stestr,
}:
@@ -35,10 +38,15 @@ buildPythonPackage rec {
env.PBR_VERSION = version;
build-system = [
+ openstackdocstheme
pbr
setuptools
+ sphinxHook
+ sphinxcontrib-apidoc
];
+ sphinxBuilders = [ "man" ];
+
dependencies = [
debtcollector
jsonschema
diff --git a/pkgs/development/python-modules/python-etcd/default.nix b/pkgs/development/python-modules/python-etcd/default.nix
index b9dcd8aaee39..05fe0b86069d 100644
--- a/pkgs/development/python-modules/python-etcd/default.nix
+++ b/pkgs/development/python-modules/python-etcd/default.nix
@@ -1,41 +1,48 @@
{
lib,
buildPythonPackage,
- fetchPypi,
- nose,
- mock,
- pyopenssl,
+ fetchFromGitHub,
+ setuptools,
urllib3,
dnspython,
+ pytestCheckHook,
+ etcd_3_4,
+ mock,
+ pyopenssl,
}:
-buildPythonPackage rec {
+buildPythonPackage {
pname = "python-etcd";
- version = "0.4.5";
- format = "setuptools";
+ version = "0.5.0-unstable-2023-10-31";
+ pyproject = true;
- src = fetchPypi {
- inherit pname version;
- sha256 = "f1b5ebb825a3e8190494f5ce1509fde9069f2754838ed90402a8c11e1f52b8cb";
+ src = fetchFromGitHub {
+ owner = "jplana";
+ repo = "python-etcd";
+ rev = "5aea0fd4461bd05dd96e4ad637f6be7bceb1cee5";
+ hash = "sha256-eVirStLOPTbf860jfkNMWtGf+r0VygLZRjRDjBMCVKg=";
};
- buildInputs = [
- nose
- mock
- pyopenssl
- ];
+ build-system = [ setuptools ];
- propagatedBuildInputs = [
+ dependencies = [
urllib3
dnspython
];
- postPatch = ''
- sed -i '19s/dns/"dnspython"/' setup.py
- '';
+ nativeCheckInputs = [
+ pytestCheckHook
+ etcd_3_4
+ mock
+ pyopenssl
+ ];
- # Some issues with etcd not in path even though most tests passed
- doCheck = false;
+ preCheck = ''
+ for file in "test_auth" "integration/test_simple"; do
+ substituteInPlace src/etcd/tests/$file.py \
+ --replace-fail "assertEquals" "assertEqual"
+ done
+ '';
meta = with lib; {
description = "Python client for Etcd";
diff --git a/pkgs/development/python-modules/python-heatclient/default.nix b/pkgs/development/python-modules/python-heatclient/default.nix
index d2cefc90b58d..b8d4563a4d33 100644
--- a/pkgs/development/python-modules/python-heatclient/default.nix
+++ b/pkgs/development/python-modules/python-heatclient/default.nix
@@ -5,6 +5,7 @@
fetchPypi,
iso8601,
keystoneauth1,
+ openstackdocstheme,
osc-lib,
oslo-i18n,
oslo-serialization,
@@ -16,6 +17,8 @@
pyyaml,
requests,
requests-mock,
+ setuptools,
+ sphinxHook,
stestr,
testscenarios,
}:
@@ -23,7 +26,7 @@
buildPythonPackage rec {
pname = "python-heatclient";
version = "3.5.0";
- format = "setuptools";
+ pyproject = true;
disabled = pythonOlder "3.8";
@@ -32,7 +35,15 @@ buildPythonPackage rec {
hash = "sha256-B1F40HYHFF91mkxwySR/kqCvlwLLtBgqwUvw2byOc9g=";
};
- propagatedBuildInputs = [
+ build-system = [
+ openstackdocstheme
+ setuptools
+ sphinxHook
+ ];
+
+ sphinxBuilders = [ "man" ];
+
+ dependencies = [
cliff
iso8601
keystoneauth1
@@ -54,10 +65,14 @@ buildPythonPackage rec {
];
checkPhase = ''
+ runHook preCheck
+
stestr run -e <(echo "
heatclient.tests.unit.test_common_http.HttpClientTest.test_get_system_ca_file
heatclient.tests.unit.test_deployment_utils.TempURLSignalTest.test_create_temp_url
")
+
+ runHook postCheck
'';
pythonImportsCheck = [ "heatclient" ];
diff --git a/pkgs/development/python-modules/python-ironicclient/default.nix b/pkgs/development/python-modules/python-ironicclient/default.nix
index 13cd6f4749ee..2936c3ec2f4c 100644
--- a/pkgs/development/python-modules/python-ironicclient/default.nix
+++ b/pkgs/development/python-modules/python-ironicclient/default.nix
@@ -6,6 +6,7 @@
dogpile-cache,
jsonschema,
keystoneauth1,
+ openstackdocstheme,
openstacksdk,
osc-lib,
oslo-utils,
@@ -15,6 +16,9 @@
pyyaml,
requests,
requests-mock,
+ setuptools,
+ sphinxcontrib-apidoc,
+ sphinxHook,
stestr,
stevedore,
}:
@@ -22,14 +26,23 @@
buildPythonPackage rec {
pname = "python-ironicclient";
version = "5.7.0";
- format = "setuptools";
+ pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-Blx0pr73uZA8eHd2iZ9WY+aozBFWsQhWpxoQKtjtJSk=";
};
- propagatedBuildInputs = [
+ build-system = [
+ openstackdocstheme
+ setuptools
+ sphinxcontrib-apidoc
+ sphinxHook
+ ];
+
+ sphinxBuilders = [ "man" ];
+
+ dependencies = [
cliff
dogpile-cache
jsonschema
@@ -51,7 +64,9 @@ buildPythonPackage rec {
];
checkPhase = ''
+ runHook preCheck
stestr run
+ runHook postCheck
'';
pythonImportsCheck = [ "ironicclient" ];
diff --git a/pkgs/development/python-modules/python-manilaclient/default.nix b/pkgs/development/python-modules/python-manilaclient/default.nix
index c3256d0d5447..bb444dd15ab2 100644
--- a/pkgs/development/python-modules/python-manilaclient/default.nix
+++ b/pkgs/development/python-modules/python-manilaclient/default.nix
@@ -2,7 +2,6 @@
lib,
buildPythonPackage,
fetchPypi,
- installShellFiles,
pbr,
openstackdocstheme,
oslo-config,
@@ -12,7 +11,8 @@
prettytable,
requests,
simplejson,
- sphinx,
+ setuptools,
+ sphinxHook,
sphinxcontrib-programoutput,
babel,
osc-lib,
@@ -24,21 +24,23 @@
buildPythonPackage rec {
pname = "python-manilaclient";
version = "4.9.1";
- format = "setuptools";
+ pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-TebykdG0fkeC+5Vs9eiwuJpXam41gg8gR4F2poYKDhI=";
};
- nativeBuildInputs = [
- installShellFiles
+ build-system = [
openstackdocstheme
- sphinx
+ setuptools
+ sphinxHook
sphinxcontrib-programoutput
];
- propagatedBuildInputs = [
+ sphinxBuilders = [ "man" ];
+
+ dependencies = [
pbr
oslo-config
oslo-log
@@ -53,12 +55,6 @@ buildPythonPackage rec {
debtcollector
];
- postInstall = ''
- export PATH=$out/bin:$PATH
- sphinx-build -a -E -d doc/build/doctrees -b man doc/source doc/build/man
- installManPage doc/build/man/python-manilaclient.1
- '';
-
# Checks moved to 'passthru.tests' to workaround infinite recursion
doCheck = false;
diff --git a/pkgs/development/python-modules/python-openstackclient/default.nix b/pkgs/development/python-modules/python-openstackclient/default.nix
index fc48197864ab..50aa590d6b6a 100644
--- a/pkgs/development/python-modules/python-openstackclient/default.nix
+++ b/pkgs/development/python-modules/python-openstackclient/default.nix
@@ -3,7 +3,6 @@
buildPythonPackage,
fetchPypi,
ddt,
- installShellFiles,
openstackdocstheme,
osc-lib,
pbr,
@@ -11,7 +10,8 @@
python-keystoneclient,
python-novaclient,
requests-mock,
- sphinx,
+ setuptools,
+ sphinxHook,
sphinxcontrib-apidoc,
stestr,
}:
@@ -19,21 +19,23 @@
buildPythonPackage rec {
pname = "python-openstackclient";
version = "6.6.0";
- format = "setuptools";
+ pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-u+8e00gpxBBSsuyiZIDinKH3K+BY0UMNpTQexExPKVw=";
};
- nativeBuildInputs = [
- installShellFiles
+ build-system = [
openstackdocstheme
- sphinx
+ setuptools
+ sphinxHook
sphinxcontrib-apidoc
];
- propagatedBuildInputs = [
+ sphinxBuilders = [ "man" ];
+
+ dependencies = [
osc-lib
pbr
python-cinderclient
@@ -41,11 +43,6 @@ buildPythonPackage rec {
python-novaclient
];
- postInstall = ''
- sphinx-build -a -E -d doc/build/doctrees -b man doc/source doc/build/man
- installManPage doc/build/man/openstack.1
- '';
-
nativeCheckInputs = [
ddt
stestr
@@ -53,7 +50,9 @@ buildPythonPackage rec {
];
checkPhase = ''
+ runHook preCheck
stestr run
+ runHook postCheck
'';
pythonImportsCheck = [ "openstackclient" ];
diff --git a/pkgs/development/python-modules/pywayland/default.nix b/pkgs/development/python-modules/pywayland/default.nix
index 2efb46513e1c..35e3fe6133e4 100644
--- a/pkgs/development/python-modules/pywayland/default.nix
+++ b/pkgs/development/python-modules/pywayland/default.nix
@@ -11,12 +11,12 @@
buildPythonPackage rec {
pname = "pywayland";
- version = "0.4.17";
+ version = "0.4.18";
format = "setuptools";
src = fetchPypi {
inherit pname version;
- hash = "sha256-9/0ZAmOML3oVrAfzGj72iV08FgyiYBSByoKyxhojxlc=";
+ hash = "sha256-WYreAng6rQWjKPZjtRtpTFq2i9XR4JJsDaPFISxWZTM=";
};
nativeBuildInputs = [ pkg-config ];
diff --git a/pkgs/development/python-modules/ray/binary-hashes.nix b/pkgs/development/python-modules/ray/binary-hashes.nix
index 98c442139dca..609e6c12288d 100644
--- a/pkgs/development/python-modules/ray/binary-hashes.nix
+++ b/pkgs/development/python-modules/ray/binary-hashes.nix
@@ -1,11 +1,11 @@
{
cp310 = {
- hash = "sha256-YlQ2hoW5MjQkOJ4L2/GsomlyX3rkNDjdC82hZ0RwzGw=";
+ hash = "sha256-cHxgTJS5t5nQXi//EWtyUHhGelZbbd5mOs9cegeaj58=";
};
cp311 = {
- hash = "sha256-VhbwU8sSccbuybGCPGeEF+lXv9fGGtVs1+e4S5vOURI=";
+ hash = "sha256-+rj/xdcVHe23UOzZ6YbTq7ULMgYTyjeN5peNoa3NMVc=";
};
cp312 = {
- hash = "sha256-EYug39E5RXG8W8x7aQTajcbFmvq8FZiXxdiSKV3htBE=";
+ hash = "sha256-4GWQJp0OUjt2X+Hw+E0HpWv04TN8HlSkIoEHsHIrfe0=";
};
}
diff --git a/pkgs/development/python-modules/ray/default.nix b/pkgs/development/python-modules/ray/default.nix
index 69fbb8cae968..9430001fff90 100644
--- a/pkgs/development/python-modules/ray/default.nix
+++ b/pkgs/development/python-modules/ray/default.nix
@@ -1,58 +1,62 @@
{
+ lib,
+ buildPythonPackage,
+ pythonOlder,
+ pythonAtLeast,
+ python,
+ fetchPypi,
+ autoPatchelfHook,
+
+ # dependencies
aiohttp,
aiohttp-cors,
- aiorwlock,
aiosignal,
attrs,
- autoPatchelfHook,
- buildPythonPackage,
- fetchPypi,
click,
cloudpickle,
colorama,
colorful,
cython,
- dm-tree,
- fastapi,
filelock,
frozenlist,
- fsspec,
gpustat,
grpcio,
- gym,
jsonschema,
- lib,
- lz4,
- matplotlib,
msgpack,
numpy,
opencensus,
packaging,
- pandas,
- py-spy,
prometheus-client,
psutil,
- pyarrow,
pydantic,
- python,
- pythonAtLeast,
- pythonOlder,
+ py-spy,
pyyaml,
requests,
- scikit-image,
- scipy,
setproctitle,
smart-open,
+ virtualenv,
+
+ # optional-dependencies
+ fsspec,
+ pandas,
+ pyarrow,
+ dm-tree,
+ gym,
+ lz4,
+ matplotlib,
+ scikit-image,
+ scipy,
+ aiorwlock,
+ fastapi,
starlette,
+ uvicorn,
tabulate,
tensorboardx,
- uvicorn,
- virtualenv,
}:
let
pname = "ray";
- version = "2.32.0";
+ version = "2.33.0";
in
buildPythonPackage rec {
inherit pname version;
@@ -76,39 +80,6 @@ buildPythonPackage rec {
// binary-hash
);
- passthru.optional-dependencies = rec {
- data-deps = [
- pandas
- pyarrow
- fsspec
- ];
-
- serve-deps = [
- aiorwlock
- fastapi
- pandas
- starlette
- uvicorn
- ];
-
- tune-deps = [
- tabulate
- tensorboardx
- ];
-
- rllib-deps = tune-deps ++ [
- dm-tree
- gym
- lz4
- matplotlib
- scikit-image
- pyyaml
- scipy
- ];
-
- air-deps = data-deps ++ serve-deps ++ tune-deps ++ rllib-deps;
- };
-
nativeBuildInputs = [
autoPatchelfHook
];
@@ -121,10 +92,10 @@ buildPythonPackage rec {
];
dependencies = [
- attrs
aiohttp
aiohttp-cors
aiosignal
+ attrs
click
cloudpickle
colorama
@@ -139,10 +110,10 @@ buildPythonPackage rec {
numpy
opencensus
packaging
- py-spy
prometheus-client
psutil
pydantic
+ py-spy
pyyaml
requests
setproctitle
@@ -150,6 +121,35 @@ buildPythonPackage rec {
virtualenv
];
+ optional-dependencies = rec {
+ air-deps = data-deps ++ serve-deps ++ tune-deps ++ rllib-deps;
+ data-deps = [
+ fsspec
+ pandas
+ pyarrow
+ ];
+ rllib-deps = tune-deps ++ [
+ dm-tree
+ gym
+ lz4
+ matplotlib
+ pyyaml
+ scikit-image
+ scipy
+ ];
+ serve-deps = [
+ aiorwlock
+ fastapi
+ pandas
+ starlette
+ uvicorn
+ ];
+ tune-deps = [
+ tabulate
+ tensorboardx
+ ];
+ };
+
postInstall = ''
chmod +x $out/${python.sitePackages}/ray/core/src/ray/{gcs/gcs_server,raylet/raylet}
'';
diff --git a/pkgs/development/python-modules/svgutils/default.nix b/pkgs/development/python-modules/svgutils/default.nix
index 307b6f689a74..40e50d9b9a0f 100644
--- a/pkgs/development/python-modules/svgutils/default.nix
+++ b/pkgs/development/python-modules/svgutils/default.nix
@@ -2,11 +2,10 @@
lib,
buildPythonPackage,
fetchFromGitHub,
- pythonOlder,
+ fetchpatch2,
setuptools,
lxml,
pytestCheckHook,
- nose,
}:
buildPythonPackage rec {
@@ -25,13 +24,24 @@ buildPythonPackage rec {
dependencies = [ lxml ];
- doCheck = pythonOlder "3.12";
+ patches = [
+ # Remove nose dependency, see: https://github.com/btel/svg_utils/pull/131
- nativeCheckInputs = [
- pytestCheckHook
- nose
+ # this first commit is required, as isort moved nose imports
+ (fetchpatch2 {
+ url = "https://github.com/btel/svg_utils/commit/48b078a729aeb6b1160142ab65157474c95a61b6.patch?full_index=1";
+ hash = "sha256-9toOFfNkgGF3TvM340vYOTkuSEHBeiyBRSGqqobfiqI=";
+ })
+
+ # migrate to pytest
+ (fetchpatch2 {
+ url = "https://github.com/btel/svg_utils/commit/931a80220be7c0efa2fc6e1d47858d69a08df85e.patch?full_index=1";
+ hash = "sha256-SMv0i8p3s57TDn6NM17RrHF9kVgsy2YJJ0KEBQKn2J0=";
+ })
];
+ nativeCheckInputs = [ pytestCheckHook ];
+
pythonImportsCheck = [ "svgutils" ];
meta = with lib; {
diff --git a/pkgs/development/python-modules/syncedlyrics/default.nix b/pkgs/development/python-modules/syncedlyrics/default.nix
index 08340ae69b9a..40a69fc50322 100644
--- a/pkgs/development/python-modules/syncedlyrics/default.nix
+++ b/pkgs/development/python-modules/syncedlyrics/default.nix
@@ -11,7 +11,7 @@
buildPythonPackage rec {
pname = "syncedlyrics";
- version = "1.0.0";
+ version = "1.0.1";
pyproject = true;
disabled = pythonOlder "3.8";
@@ -20,7 +20,7 @@ buildPythonPackage rec {
owner = "rtcq";
repo = "syncedlyrics";
rev = "refs/tags/v${version}";
- hash = "sha256-W3cg/+nU0Zp5pDhkoHqUemYImlDKlZDVbB7jZ3dScnk=";
+ hash = "sha256-rKYze8Z7F6cEkpex6UCFUW9+mf2UWT+T86C5COhYQHY=";
};
build-system = [
diff --git a/pkgs/development/python-modules/tempest/default.nix b/pkgs/development/python-modules/tempest/default.nix
index 66b7e1aee3db..77326c7152c1 100644
--- a/pkgs/development/python-modules/tempest/default.nix
+++ b/pkgs/development/python-modules/tempest/default.nix
@@ -42,6 +42,8 @@ buildPythonPackage rec {
hash = "sha256-l4qKbTfQRWiRsoHN9fiAAiGMGP+q3gwRH1pMSXV/eSU=";
};
+ pythonRelaxDeps = [ "defusedxml" ];
+
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/testrail-api/default.nix b/pkgs/development/python-modules/testrail-api/default.nix
index 7f8ad55c602c..d4292ef2c370 100644
--- a/pkgs/development/python-modules/testrail-api/default.nix
+++ b/pkgs/development/python-modules/testrail-api/default.nix
@@ -12,7 +12,7 @@
buildPythonPackage rec {
pname = "testrail-api";
- version = "1.13.1";
+ version = "1.13.2";
pyproject = true;
disabled = pythonOlder "3.8";
@@ -21,7 +21,7 @@ buildPythonPackage rec {
owner = "tolstislon";
repo = "testrail-api";
rev = "refs/tags/${version}";
- hash = "sha256-VH63shGCBOkbHcUFL4M/QvuVrS+y2JiM1YYBJgZ6r/w=";
+ hash = "sha256-GR1yhky33XZZFcPEO2WRvVUkmekG9HoM00doVgTCD+0=";
};
build-system = [
diff --git a/pkgs/development/python-modules/wat/default.nix b/pkgs/development/python-modules/wat/default.nix
new file mode 100644
index 000000000000..7ea81661648f
--- /dev/null
+++ b/pkgs/development/python-modules/wat/default.nix
@@ -0,0 +1,38 @@
+{
+ lib,
+ buildPythonPackage,
+ fetchFromGitHub,
+ pytestCheckHook,
+ nuclear,
+ pydantic,
+ setuptools,
+}:
+
+buildPythonPackage rec {
+ pname = "wat";
+ version = "0.1.2";
+ pyproject = true;
+
+ src = fetchFromGitHub {
+ owner = "igrek51";
+ repo = "wat";
+ rev = version;
+ hash = "sha256-ibbWM2L/GoJVg8RxtsBSBn/qA+KIkC5+wq5YH6mtiUs=";
+ };
+
+ build-system = [ setuptools ];
+
+ nativeCheckInputs = [
+ pytestCheckHook
+ nuclear
+ pydantic
+ ];
+ pythonImportsCheck = [ "wat" ];
+
+ meta = with lib; {
+ homepage = "https://igrek51.github.io/wat/";
+ description = "Deep inspection of python objects";
+ license = licenses.mit;
+ maintainers = with maintainers; [ parras ];
+ };
+}
diff --git a/pkgs/development/python-modules/webhelpers/default.nix b/pkgs/development/python-modules/webhelpers/default.nix
deleted file mode 100644
index 4b7c9c367424..000000000000
--- a/pkgs/development/python-modules/webhelpers/default.nix
+++ /dev/null
@@ -1,37 +0,0 @@
-{
- lib,
- buildPythonPackage,
- fetchPypi,
- routes,
- markupsafe,
- webob,
- nose,
-}:
-
-buildPythonPackage rec {
- pname = "webhelpers";
- version = "1.3";
-
- src = fetchPypi {
- pname = "WebHelpers";
- inherit version;
- sha256 = "ea86f284e929366b77424ba9a89341f43ae8dee3cbeb8702f73bcf86058aa583";
- };
-
- buildInputs = [
- routes
- markupsafe
- webob
- nose
- ];
-
- # TODO: failing tests https://bitbucket.org/bbangert/webhelpers/pull-request/1/fix-error-on-webob-123/diff
- doCheck = false;
-
- meta = with lib; {
- homepage = "https://webhelpers.readthedocs.org/en/latest/";
- description = "Web Helpers";
- license = licenses.free;
- maintainers = with maintainers; [ domenkozar ];
- };
-}
diff --git a/pkgs/development/python-modules/zha/default.nix b/pkgs/development/python-modules/zha/default.nix
index 358a475f6fcf..01101670ef54 100644
--- a/pkgs/development/python-modules/zha/default.nix
+++ b/pkgs/development/python-modules/zha/default.nix
@@ -26,7 +26,7 @@
buildPythonPackage rec {
pname = "zha";
- version = "0.0.20";
+ version = "0.0.23";
pyproject = true;
disabled = pythonOlder "3.12";
@@ -35,7 +35,7 @@ buildPythonPackage rec {
owner = "zigpy";
repo = "zha";
rev = "refs/tags/${version}";
- hash = "sha256-kmTOWHREdzXfgDPPs91GfQCgpmkUshwGtscOTT1WGns=";
+ hash = "sha256-a0rr8pJCoVtDR3iNCDpLZnapetzNHMj8uCu667lNcGE=";
};
postPatch = ''
@@ -102,6 +102,12 @@ buildPythonPackage rec {
"test_sinope_time"
"test_siren_timed_off"
"test_zha_group_light_entity"
+ # flaky, either due to race conditions or timeouts
+ "test_zha_group_switch_entity"
+ "test_zha_group_fan_entity"
+ "test_startup_concurrency_limit"
+ "test_fan_ikea"
+ "test_background"
];
disabledTestPaths = [ "tests/test_cluster_handlers.py" ];
diff --git a/pkgs/development/tools/analysis/codeql/default.nix b/pkgs/development/tools/analysis/codeql/default.nix
index 8143a6bfd58e..27c11ffb2eaa 100644
--- a/pkgs/development/tools/analysis/codeql/default.nix
+++ b/pkgs/development/tools/analysis/codeql/default.nix
@@ -2,7 +2,7 @@
stdenv.mkDerivation rec {
pname = "codeql";
- version = "2.18.0";
+ version = "2.18.1";
dontConfigure = true;
dontBuild = true;
@@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
src = fetchzip {
url = "https://github.com/github/codeql-cli-binaries/releases/download/v${version}/codeql.zip";
- hash = "sha256-wmBsPSwuFUnipLodxtr9xGhWKjBrn3NQ/X1QpxvlRf4=";
+ hash = "sha256-X/Sg5+UGl0DJ5LL42tlQt3NIfTJc4nH1AySeLJQsZkk=";
};
nativeBuildInputs = [
diff --git a/pkgs/development/tools/build-managers/gradle/default.nix b/pkgs/development/tools/build-managers/gradle/default.nix
index 7567b3e3dba1..1522411656cd 100644
--- a/pkgs/development/tools/build-managers/gradle/default.nix
+++ b/pkgs/development/tools/build-managers/gradle/default.nix
@@ -211,6 +211,7 @@ rec {
passthru = {
fetchDeps = callPackage ./fetch-deps.nix { inherit mitm-cache; };
inherit (gradle) jdk;
+ unwrapped = gradle;
};
meta = gradle.meta // {
diff --git a/pkgs/development/tools/language-servers/zls/default.nix b/pkgs/development/tools/language-servers/zls/default.nix
index 1642d495b1d8..408bb69f64b6 100644
--- a/pkgs/development/tools/language-servers/zls/default.nix
+++ b/pkgs/development/tools/language-servers/zls/default.nix
@@ -1,28 +1,28 @@
{ lib
, stdenv
, fetchFromGitHub
-, zig_0_12
+, zig_0_13
, callPackage
}:
stdenv.mkDerivation (finalAttrs: {
pname = "zls";
- version = "0.12.0";
+ version = "0.13.0";
src = fetchFromGitHub {
owner = "zigtools";
repo = "zls";
rev = finalAttrs.version;
fetchSubmodules = true;
- hash = "sha256-2iVDPUj9ExgTooDQmCCtZs3wxBe2be9xjzAk9HedPNY=";
+ hash = "sha256-vkFGoKCYUk6B40XW2T/pdhir2wzN1kpFmlLcoLwJx1U=";
};
zigBuildFlags = [
- "-Dversion_data_path=${zig_0_12.src}/doc/langref.html.in"
+ "-Dversion_data_path=${zig_0_13.src}/doc/langref.html.in"
];
nativeBuildInputs = [
- zig_0_12.hook
+ zig_0_13.hook
];
postPatch = ''
@@ -35,7 +35,7 @@ stdenv.mkDerivation (finalAttrs: {
changelog = "https://github.com/zigtools/zls/releases/tag/${finalAttrs.version}";
homepage = "https://github.com/zigtools/zls";
license = lib.licenses.mit;
- maintainers = with lib.maintainers; [ figsoda moni ];
+ maintainers = with lib.maintainers; [ figsoda moni _0x5a4 ];
platforms = lib.platforms.unix;
};
})
diff --git a/pkgs/development/tools/language-servers/zls/deps.nix b/pkgs/development/tools/language-servers/zls/deps.nix
index 4de50620ef9c..1c6b2cd25f8c 100644
--- a/pkgs/development/tools/language-servers/zls/deps.nix
+++ b/pkgs/development/tools/language-servers/zls/deps.nix
@@ -4,17 +4,17 @@
linkFarm "zig-packages" [
{
- name = "12201314cffeb40c5e4e3da166217d2c74628c74486414aaf97422bcd2279915b9fd";
+ name = "12209cde192558f8b3dc098ac2330fc2a14fdd211c5433afd33085af75caa9183147";
path = fetchzip {
- url = "https://github.com/ziglibs/known-folders/archive/bf79988adcfce166f848e4b11e718c1966365329.tar.gz";
- hash = "sha256-Q7eMdyScqj8qEiAHg1BnGRTsWSQOKWWTc6hUYHNlgGg=";
+ url = "https://github.com/ziglibs/known-folders/archive/0ad514dcfb7525e32ae349b9acc0a53976f3a9fa.tar.gz";
+ hash = "sha256-X+XkFj56MkYxxN9LUisjnkfCxUfnbkzBWHy9pwg5M+g=";
};
}
{
- name = "12200d71e4b7029ea56a429e24260c6c0e85a3069b0d4ba85eace21a0fd75910aa64";
+ name = "1220102cb2c669d82184fb1dc5380193d37d68b54e8d75b76b2d155b9af7d7e2e76d";
path = fetchzip {
- url = "https://github.com/ziglibs/diffz/archive/e10bf15962e45affb3fcd7d9a950977a69c901b3.tar.gz";
- hash = "sha256-yVFPVn4jGfcoE2V4xdTqdThYPutshL6U4feDzetWgFw=";
+ url = "https://github.com/ziglibs/diffz/archive/ef45c00d655e5e40faf35afbbde81a1fa5ed7ffb.tar.gz";
+ hash = "sha256-5/3W0Xt9RjsvCb8Q4cdaM8dkJP7CdFro14JJLCuqASo=";
};
}
]
diff --git a/pkgs/development/tools/misc/cbrowser/default.nix b/pkgs/development/tools/misc/cbrowser/default.nix
index 3bd4d3fc721c..72a177a17f93 100644
--- a/pkgs/development/tools/misc/cbrowser/default.nix
+++ b/pkgs/development/tools/misc/cbrowser/default.nix
@@ -30,7 +30,7 @@ stdenv.mkDerivation rec {
homepage = "https://sourceforge.net/projects/cbrowser/";
- maintainers = with lib.maintainers; [viric];
+ maintainers = [ ];
platforms = with lib.platforms; linux;
};
diff --git a/pkgs/development/tools/misc/cscope/default.nix b/pkgs/development/tools/misc/cscope/default.nix
index 05e61e1afb76..f306478948bc 100644
--- a/pkgs/development/tools/misc/cscope/default.nix
+++ b/pkgs/development/tools/misc/cscope/default.nix
@@ -47,7 +47,7 @@ stdenv.mkDerivation rec {
homepage = "https://cscope.sourceforge.net/";
- maintainers = with lib.maintainers; [viric];
+ maintainers = [ ];
platforms = lib.platforms.unix;
};
diff --git a/pkgs/development/tools/misc/elfutils/default.nix b/pkgs/development/tools/misc/elfutils/default.nix
index a5a812aa034a..9f5a4bfa3a47 100644
--- a/pkgs/development/tools/misc/elfutils/default.nix
+++ b/pkgs/development/tools/misc/elfutils/default.nix
@@ -73,7 +73,11 @@ stdenv.mkDerivation rec {
"--enable-deterministic-archives"
(lib.enableFeature enableDebuginfod "libdebuginfod")
(lib.enableFeature enableDebuginfod "debuginfod")
- ];
+ ] ++ lib.optional (stdenv.targetPlatform.useLLVM or false) "--disable-demangler"
+ ++ lib.optionals stdenv.cc.isClang [
+ "CFLAGS=-Wno-unused-private-field"
+ "CXXFLAGS=-Wno-unused-private-field"
+ ];
enableParallelBuilding = true;
diff --git a/pkgs/development/tools/misc/opengrok/default.nix b/pkgs/development/tools/misc/opengrok/default.nix
index dec8b3fa8c3d..8bde12db6257 100644
--- a/pkgs/development/tools/misc/opengrok/default.nix
+++ b/pkgs/development/tools/misc/opengrok/default.nix
@@ -2,12 +2,12 @@
stdenv.mkDerivation rec {
pname = "opengrok";
- version = "1.13.7";
+ version = "1.13.9";
# binary distribution
src = fetchurl {
url = "https://github.com/oracle/opengrok/releases/download/${version}/${pname}-${version}.tar.gz";
- hash = "sha256-vGzwXs4i9NiIz5M4JfoweJdpP5vbPKCdeUlE5xueYc4=";
+ hash = "sha256-EG0C1ebVlh01DLBnEFZxOzxTiCSByBy2OW9IP8wSlbE=";
};
nativeBuildInputs = [ makeWrapper ];
diff --git a/pkgs/development/tools/misc/strace/default.nix b/pkgs/development/tools/misc/strace/default.nix
index 71fc6dd49665..0fd75a8de856 100644
--- a/pkgs/development/tools/misc/strace/default.nix
+++ b/pkgs/development/tools/misc/strace/default.nix
@@ -19,7 +19,8 @@ stdenv.mkDerivation rec {
# -kk
++ lib.optional (lib.meta.availableOn stdenv.hostPlatform elfutils) elfutils;
- configureFlags = [ "--enable-mpers=check" ];
+ configureFlags = [ "--enable-mpers=check" ]
+ ++ lib.optional stdenv.cc.isClang "CFLAGS=-Wno-unused-function";
passthru.updateScript = gitUpdater {
# No nicer place to find latest release.
diff --git a/pkgs/development/tools/profiling/malt/default.nix b/pkgs/development/tools/profiling/malt/default.nix
index e13f488bdf74..82b041cc86a0 100644
--- a/pkgs/development/tools/profiling/malt/default.nix
+++ b/pkgs/development/tools/profiling/malt/default.nix
@@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
description = "Memory tool to find where you allocate your memory";
homepage = "https://github.com/memtt/malt";
license = licenses.cecill-c;
- maintainers = with maintainers; [ viric ];
+ maintainers = [ ];
platforms = platforms.linux;
};
}
diff --git a/pkgs/development/tools/reindeer/default.nix b/pkgs/development/tools/reindeer/default.nix
index 00e9ffb97f62..b68fd3ddbaa3 100644
--- a/pkgs/development/tools/reindeer/default.nix
+++ b/pkgs/development/tools/reindeer/default.nix
@@ -11,16 +11,16 @@
rustPlatform.buildRustPackage rec {
pname = "reindeer";
- version = "2024.07.15.00";
+ version = "2024.07.22.00";
src = fetchFromGitHub {
owner = "facebookincubator";
repo = "reindeer";
rev = "refs/tags/v${version}";
- hash = "sha256-/pz+kFTT89AGQzvgaYsbiCFO1TouqyETsvahcgEe6qE=";
+ hash = "sha256-T6qUXkzYlkaHlGahf4tnZLD9MogSQueFIBeZDJCiB/w=";
};
- cargoHash = "sha256-Tg0NhBZLbj9uaPS6FUcPyLSOxFAN9uPSzCwEE/63Ve0=";
+ cargoHash = "sha256-DUcyMohQbkc/93iqFWQGMwvOhdlzhoQTdXH64FFbmY0=";
nativeBuildInputs = [ pkg-config ];
buildInputs =
diff --git a/pkgs/development/tools/skaffold/default.nix b/pkgs/development/tools/skaffold/default.nix
index da1a2db8c86c..4bf5f21ce104 100644
--- a/pkgs/development/tools/skaffold/default.nix
+++ b/pkgs/development/tools/skaffold/default.nix
@@ -2,13 +2,13 @@
buildGoModule rec {
pname = "skaffold";
- version = "2.12.0";
+ version = "2.13.0";
src = fetchFromGitHub {
owner = "GoogleContainerTools";
repo = "skaffold";
rev = "v${version}";
- hash = "sha256-q57n5Jo682u/YK+5bgYqMufjPuPOPsBgJzxSl1fdqxA=";
+ hash = "sha256-zcGMKxC2BIg2KPxmGG9UUJzpMdAQbZ8zDGtYyF1T7ZQ=";
};
vendorHash = null;
diff --git a/pkgs/development/tools/skopeo/default.nix b/pkgs/development/tools/skopeo/default.nix
index fa9dbcb7666f..6e78caf84ff0 100644
--- a/pkgs/development/tools/skopeo/default.nix
+++ b/pkgs/development/tools/skopeo/default.nix
@@ -18,13 +18,13 @@
buildGoModule rec {
pname = "skopeo";
- version = "1.15.2";
+ version = "1.16.0";
src = fetchFromGitHub {
rev = "v${version}";
owner = "containers";
repo = "skopeo";
- hash = "sha256-qE6c7+NMGmz1zDqtEfAQQp/gQ0FP034q8wVCdHZ1wY8=";
+ hash = "sha256-M9BRsW3mNIRAr+yXSmoPNNoEY/XrCFNt+m2PtTuJUO4=";
};
outputs = [ "out" "man" ];
diff --git a/pkgs/development/tools/turso-cli/default.nix b/pkgs/development/tools/turso-cli/default.nix
index 8ef4c2d8feaa..db6b0d0e208d 100644
--- a/pkgs/development/tools/turso-cli/default.nix
+++ b/pkgs/development/tools/turso-cli/default.nix
@@ -8,16 +8,16 @@
}:
buildGoModule rec {
pname = "turso-cli";
- version = "0.96.2";
+ version = "0.96.3";
src = fetchFromGitHub {
owner = "tursodatabase";
repo = "turso-cli";
rev = "v${version}";
- hash = "sha256-G8rYCjGkk0/bVnp0A74HIduYuC5lLvlzAoaOLaQfhG4=";
+ hash = "sha256-3noPhWS5Sh6KZs4u310HbNybL58yIcdM7jD0R+UvZ0s=";
};
- vendorHash = "sha256-nMhXjCRBv4q6c3VcQ+6JTijEH1EVctfb+i1sCYoD62E=";
+ vendorHash = "sha256-c8dX60GPZSNMoCaF51jLWJK+aNDmw6TdzlBYS+vSuEY=";
nativeBuildInputs = [ installShellFiles ];
diff --git a/pkgs/development/tools/vsce/default.nix b/pkgs/development/tools/vsce/default.nix
index a5002fdabc37..3ad734efdce9 100644
--- a/pkgs/development/tools/vsce/default.nix
+++ b/pkgs/development/tools/vsce/default.nix
@@ -12,16 +12,16 @@
buildNpmPackage rec {
pname = "vsce";
- version = "2.28.0";
+ version = "2.31.1";
src = fetchFromGitHub {
owner = "microsoft";
repo = "vscode-vsce";
rev = "v${version}";
- hash = "sha256-LMePEsNU62oSp/aaeUZY7A+0rTHiYOBqWBiqSpXUJOY=";
+ hash = "sha256-VXZBuaJn0VGpq1sIwsp+OcYErYShTCcU/FnTgDHmf7g=";
};
- npmDepsHash = "sha256-Ml65YY4vqzntgCP9FoEGpR5rMkYL+alN9pSpbvR28E0=";
+ npmDepsHash = "sha256-Ftf6m5gRcYnkYfRx9vUys9uax8pwyyjUbfw3am8WriA=";
postPatch = ''
substituteInPlace package.json --replace '"version": "0.0.0"' '"version": "${version}"'
diff --git a/pkgs/games/blackshades/default.nix b/pkgs/games/blackshades/default.nix
index 17bd0e2e96a3..a8467dc167c4 100644
--- a/pkgs/games/blackshades/default.nix
+++ b/pkgs/games/blackshades/default.nix
@@ -37,7 +37,7 @@ stdenv.mkDerivation (finalAttrs: {
changelog = "https://git.sr.ht/~cnx/blackshades/refs/${finalAttrs.version}";
mainProgram = "blackshades";
license = lib.licenses.gpl3Plus;
- maintainers = with lib.maintainers; [ McSinyx viric ];
+ maintainers = with lib.maintainers; [ McSinyx ];
platforms = lib.platforms.linux;
};
})
diff --git a/pkgs/games/chiaki4deck/default.nix b/pkgs/games/chiaki4deck/default.nix
index cd0a8f07d812..509fa9eccb22 100644
--- a/pkgs/games/chiaki4deck/default.nix
+++ b/pkgs/games/chiaki4deck/default.nix
@@ -85,11 +85,8 @@ stdenv.mkDerivation rec {
xxHash
];
- # handle cmake not being able to identify if curl is built with websocket support, and library name discrepancy when curl not built with cmake
+ # handle library name discrepancy when curl not built with cmake
postPatch = ''
- substituteInPlace CMakeLists.txt \
- --replace-fail ' WS WSS' ""
-
substituteInPlace lib/CMakeLists.txt \
--replace-fail 'libcurl_shared' 'libcurl'
'';
diff --git a/pkgs/games/gltron/default.nix b/pkgs/games/gltron/default.nix
index cbc8510775b9..819914dec8b5 100644
--- a/pkgs/games/gltron/default.nix
+++ b/pkgs/games/gltron/default.nix
@@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
description = "Game based on the movie Tron";
mainProgram = "gltron";
license = lib.licenses.gpl2Plus;
- maintainers = with lib.maintainers; [viric];
+ maintainers = [ ];
platforms = with lib.platforms; linux;
};
}
diff --git a/pkgs/games/neverball/default.nix b/pkgs/games/neverball/default.nix
index 5e8e3f41c784..e0555ded7bee 100644
--- a/pkgs/games/neverball/default.nix
+++ b/pkgs/games/neverball/default.nix
@@ -45,7 +45,7 @@ stdenv.mkDerivation rec {
homepage = "https://neverball.org/";
description = "Tilt the floor to roll a ball";
license = "GPL";
- maintainers = with lib.maintainers; [viric];
+ maintainers = [ ];
platforms = with lib.platforms; linux;
};
}
diff --git a/pkgs/games/pioneers/default.nix b/pkgs/games/pioneers/default.nix
index f4122dc6bfb7..ae1eb8c87766 100644
--- a/pkgs/games/pioneers/default.nix
+++ b/pkgs/games/pioneers/default.nix
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
description = "Addicting game based on The Settlers of Catan";
homepage = "https://pio.sourceforge.net/"; # https does not work
license = licenses.gpl2Plus;
- maintainers = with maintainers; [ viric ];
+ maintainers = [ ];
platforms = platforms.linux;
};
}
diff --git a/pkgs/games/torcs/default.nix b/pkgs/games/torcs/default.nix
index 46831a503324..476495bf8838 100644
--- a/pkgs/games/torcs/default.nix
+++ b/pkgs/games/torcs/default.nix
@@ -49,7 +49,7 @@ stdenv.mkDerivation rec {
description = "Car racing game";
homepage = "https://torcs.sourceforge.net/";
license = lib.licenses.gpl2Plus;
- maintainers = with lib.maintainers; [viric];
+ maintainers = [ ];
platforms = lib.platforms.linux;
hydraPlatforms = [];
};
diff --git a/pkgs/games/trigger/default.nix b/pkgs/games/trigger/default.nix
index 4ea3dd6200e5..86b47f554193 100644
--- a/pkgs/games/trigger/default.nix
+++ b/pkgs/games/trigger/default.nix
@@ -65,7 +65,7 @@ stdenv.mkDerivation rec {
mainProgram = "trigger-rally";
homepage = "http://trigger-rally.sourceforge.net/";
license = lib.licenses.gpl2Plus;
- maintainers = with lib.maintainers; [viric];
+ maintainers = [ ];
platforms = with lib.platforms; linux;
};
}
diff --git a/pkgs/games/ufoai/default.nix b/pkgs/games/ufoai/default.nix
index 0200d919d2f0..ecaaa26a4d21 100644
--- a/pkgs/games/ufoai/default.nix
+++ b/pkgs/games/ufoai/default.nix
@@ -43,7 +43,7 @@ stdenv.mkDerivation rec {
homepage = "http://ufoai.org";
description = "Squad-based tactical strategy game in the tradition of X-Com";
license = lib.licenses.gpl2Plus;
- maintainers = with lib.maintainers; [viric];
+ maintainers = [ ];
platforms = lib.platforms.linux;
hydraPlatforms = [];
};
diff --git a/pkgs/games/ultimatestunts/default.nix b/pkgs/games/ultimatestunts/default.nix
index 0ffe86efee4c..66906e5d50f3 100644
--- a/pkgs/games/ultimatestunts/default.nix
+++ b/pkgs/games/ultimatestunts/default.nix
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
homepage = "http://www.ultimatestunts.nl/";
description = "Remake of the popular racing DOS-game Stunts";
license = lib.licenses.gpl2Plus;
- maintainers = with lib.maintainers; [viric];
+ maintainers = [ ];
platforms = with lib.platforms; linux;
};
}
diff --git a/pkgs/games/vdrift/default.nix b/pkgs/games/vdrift/default.nix
index a88adbdf19de..7f10560b5341 100644
--- a/pkgs/games/vdrift/default.nix
+++ b/pkgs/games/vdrift/default.nix
@@ -52,7 +52,7 @@ let
mainProgram = "vdrift";
homepage = "http://vdrift.net/";
license = lib.licenses.gpl2Plus;
- maintainers = with lib.maintainers; [ viric ];
+ maintainers = [ ];
platforms = lib.platforms.linux;
};
};
diff --git a/pkgs/misc/tmux-plugins/default.nix b/pkgs/misc/tmux-plugins/default.nix
index d05d6831febd..6343c5b1b9dd 100644
--- a/pkgs/misc/tmux-plugins/default.nix
+++ b/pkgs/misc/tmux-plugins/default.nix
@@ -736,6 +736,26 @@ in rec {
};
};
+ tmux-floax = mkTmuxPlugin {
+ pluginName = "tmux-floax";
+ rtpFilePath = "floax.tmux";
+ version = "0-unstable-2024-07-24";
+ src = fetchFromGitHub {
+ owner = "omerxx";
+ repo = "tmux-floax";
+ rev = "46c0a6a8c3cf79b83d1b338f547acbbd1d306301";
+ hash = "sha256-bALZfVWcoAzcTeWwkBHhi7TzUQJicOBTNdeJh3O/Bj8=";
+ };
+ meta = {
+ description = "Floating pane for Tmux";
+ homepage = "https://github.com/omerxx/tmux-floax";
+ license = lib.licenses.gpl3Only;
+ maintainers = with lib.maintainers; [ redyf ];
+ mainProgram = "tmux-floax";
+ platforms = lib.platforms.all;
+ };
+ };
+
tmux-fzf = mkTmuxPlugin {
pluginName = "tmux-fzf";
rtpFilePath = "main.tmux";
diff --git a/pkgs/os-specific/linux/hostapd/0007-RADIUS-Require-Message-Authenticator-attribute-in-MA.patch b/pkgs/os-specific/linux/hostapd/0007-RADIUS-Require-Message-Authenticator-attribute-in-MA.patch
deleted file mode 100644
index e895e4792567..000000000000
--- a/pkgs/os-specific/linux/hostapd/0007-RADIUS-Require-Message-Authenticator-attribute-in-MA.patch
+++ /dev/null
@@ -1,101 +0,0 @@
-From 58097123ec5ea6f8276b38cb9b07669ec368a6c1 Mon Sep 17 00:00:00 2001
-From: Jouni Malinen
-Date: Sun, 17 Mar 2024 10:42:56 +0200
-Subject: [PATCH 7/8] RADIUS: Require Message-Authenticator attribute in MAC
- ACL cases
-
-hostapd required Message-Authenticator attribute to be included in EAP
-authentication cases, but that requirement was not in place for MAC ACL
-cases. Start requiring Message-Authenticator attribute for MAC ACL by
-default. Unlike the EAP case, this can still be disabled with
-radius_require_message_authenticator=1 to maintain compatibility with
-some RADIUS servers when used in a network where the connection to such
-a server is secure.
-
-Signed-off-by: Jouni Malinen
----
- hostapd/config_file.c | 3 +++
- hostapd/hostapd.conf | 11 +++++++++++
- src/ap/ap_config.c | 1 +
- src/ap/ap_config.h | 1 +
- src/ap/ieee802_11_auth.c | 4 +++-
- 5 files changed, 19 insertions(+), 1 deletion(-)
-
-diff --git a/hostapd/config_file.c b/hostapd/config_file.c
-index 96c28aea2..3fb059770 100644
---- a/hostapd/config_file.c
-+++ b/hostapd/config_file.c
-@@ -2988,6 +2988,9 @@ static int hostapd_config_fill(struct hostapd_config *conf,
- #endif /* CONFIG_RADIUS_TLS */
- } else if (os_strcmp(buf, "radius_retry_primary_interval") == 0) {
- bss->radius->retry_primary_interval = atoi(pos);
-+ } else if (os_strcmp(buf,
-+ "radius_require_message_authenticator") == 0) {
-+ bss->radius_require_message_authenticator = atoi(pos);
- } else if (os_strcmp(buf, "radius_acct_interim_interval") == 0) {
- bss->acct_interim_interval = atoi(pos);
- } else if (os_strcmp(buf, "radius_request_cui") == 0) {
-diff --git a/hostapd/hostapd.conf b/hostapd/hostapd.conf
-index e3367b708..3f0e66beb 100644
---- a/hostapd/hostapd.conf
-+++ b/hostapd/hostapd.conf
-@@ -1620,6 +1620,17 @@ own_ip_addr=127.0.0.1
- # currently used secondary server is still working.
- #radius_retry_primary_interval=600
-
-+# Message-Authenticator attribute requirement for non-EAP cases
-+# hostapd requires Message-Authenticator attribute to be included in all cases
-+# where RADIUS is used for EAP authentication. This is also required for cases
-+# where RADIUS is used for MAC ACL (macaddr_acl=2) by default, but that case
-+# can be configured to not require this for compatibility with RADIUS servers
-+# that do not include the attribute. This is not recommended due to potential
-+# security concerns, but can be used as a temporary workaround in networks where
-+# the connection to the RADIUS server is secure.
-+# 0 = Do not require Message-Authenticator in MAC ACL response
-+# 1 = Require Message-Authenticator in all authentication cases (default)
-+#radius_require_message_authenticator=1
-
- # Interim accounting update interval
- # If this is set (larger than 0) and acct_server is configured, hostapd will
-diff --git a/src/ap/ap_config.c b/src/ap/ap_config.c
-index 32b04ab35..0b5a16ef9 100644
---- a/src/ap/ap_config.c
-+++ b/src/ap/ap_config.c
-@@ -122,6 +122,7 @@ void hostapd_config_defaults_bss(struct hostapd_bss_config *bss)
- #endif /* CONFIG_IEEE80211R_AP */
-
- bss->radius_das_time_window = 300;
-+ bss->radius_require_message_authenticator = 1;
-
- bss->anti_clogging_threshold = 5;
- bss->sae_sync = 5;
-diff --git a/src/ap/ap_config.h b/src/ap/ap_config.h
-index fda937ecf..ced2181ab 100644
---- a/src/ap/ap_config.h
-+++ b/src/ap/ap_config.h
-@@ -309,6 +309,7 @@ struct hostapd_bss_config {
- struct hostapd_ip_addr own_ip_addr;
- char *nas_identifier;
- struct hostapd_radius_servers *radius;
-+ int radius_require_message_authenticator;
- int acct_interim_interval;
- int radius_request_cui;
- struct hostapd_radius_attr *radius_auth_req_attr;
-diff --git a/src/ap/ieee802_11_auth.c b/src/ap/ieee802_11_auth.c
-index cc38044d8..913a99597 100644
---- a/src/ap/ieee802_11_auth.c
-+++ b/src/ap/ieee802_11_auth.c
-@@ -508,7 +508,9 @@ hostapd_acl_recv_radius(struct radius_msg *msg, struct radius_msg *req,
- wpa_printf(MSG_DEBUG, "Found matching Access-Request for RADIUS "
- "message (id=%d)", query->radius_id);
-
-- if (radius_msg_verify(msg, shared_secret, shared_secret_len, req, 0)) {
-+ if (radius_msg_verify(
-+ msg, shared_secret, shared_secret_len, req,
-+ hapd->conf->radius_require_message_authenticator)) {
- wpa_printf(MSG_INFO, "Incoming RADIUS packet did not have "
- "correct authenticator - dropped\n");
- return RADIUS_RX_INVALID_AUTHENTICATOR;
---
-2.45.1
-
diff --git a/pkgs/os-specific/linux/hostapd/default.nix b/pkgs/os-specific/linux/hostapd/default.nix
index 5988dc0436dc..10abb04f776f 100644
--- a/pkgs/os-specific/linux/hostapd/default.nix
+++ b/pkgs/os-specific/linux/hostapd/default.nix
@@ -2,7 +2,6 @@
lib,
stdenv,
fetchurl,
- fetchpatch,
pkg-config,
libnl,
openssl,
@@ -12,11 +11,11 @@
stdenv.mkDerivation rec {
pname = "hostapd";
- version = "2.10";
+ version = "2.11";
src = fetchurl {
url = "https://w1.fi/releases/${pname}-${version}.tar.gz";
- sha256 = "sha256-IG58eZtnhXLC49EgMCOHhLxKn4IyOwFWtMlGbxSYkV0=";
+ sha256 = "sha256-Kz+stjL9T2XjL0v4Kna0tyxQH5laT2LjMCGf567RdHo=";
};
nativeBuildInputs = [ pkg-config ];
@@ -29,53 +28,6 @@ stdenv.mkDerivation rec {
url = "https://raw.githubusercontent.com/openwrt/openwrt/eefed841b05c3cd4c65a78b50ce0934d879e6acf/package/network/services/hostapd/patches/300-noscan.patch";
sha256 = "08p5frxhpq1rp2nczkscapwwl8g9nc4fazhjpxic5bcbssc3sb00";
})
-
- # Backported security patches for CVE-2024-3596 (https://blastradius.fail),
- # these can be removed when updating to 2.11.
-
- # RADIUS: Allow Message-Authenticator attribute as the first attribute
- (fetchpatch {
- url = "https://w1.fi/cgit/hostap/patch/?id=adac846bd0e258a0aa50750bbd2b411fa0085c46";
- hash = "sha256-1jfSeVGL5tyZn8F2wpQ7KwaQaEKWsCOW/bavovMcdz4=";
- })
-
- # RADIUS server: Place Message-Authenticator attribute as the first one
- (fetchpatch {
- url = "https://w1.fi/cgit/hostap/patch/?id=54abb0d3cf35894e7d86e3f7555e95b106306803";
- hash = "sha256-fVhQlOVETttVf1M9iKrXJrv7mxpxSjCt3w8kndRal08=";
- })
-
- # hostapd: Move Message-Authenticator attribute to be the first one in req
- (fetchpatch {
- url = "https://w1.fi/cgit/hostap/patch/?id=37fe8e48ab44d44fe3cf5dd8f52cb0a10be0cd17";
- hash = "sha256-3eoAkXhieO3f0R5PTlH6g5wcgo/aLQN6XcPSITGgciE=";
- })
-
- # RADIUS DAS: Move Message-Authenticator attribute to be the first one
- (fetchpatch {
- url = "https://w1.fi/cgit/hostap/patch/?id=f54157077f799d84ce26bed6ad6b01c4a16e31cf";
- hash = "sha256-dcaghKbKNFVSN6ONNaFt1s0S35mkqox2aykiExEXyPQ=";
- })
-
- # Require Message-Authenticator in Access-Reject even without EAP-Message
- (fetchpatch {
- url = "https://w1.fi/cgit/hostap/patch/?id=934b0c3a45ce0726560ccefbd992a9d385c36385";
- hash = "sha256-9GquP/+lsghF81nMhOuRwlSz/pEnmk+mSex8aM3/qdA=";
- })
-
- # RADIUS: Require Message-Authenticator attribute in MAC ACL cases
- #(fetchpatch {
- # url = "https://w1.fi/cgit/hostap/patch/?id=58097123ec5ea6f8276b38cb9b07669ec368a6c1";
- # hash = "sha256-mW+PAeAkNcrlFPsjxLvZ/1Smq6H6KXq5Le3HuLA2KKw=";
- #})
- # Needed to be fixed to apply correctly:
- ./0007-RADIUS-Require-Message-Authenticator-attribute-in-MA.patch
-
- # RADIUS: Check Message-Authenticator if it is present even if not required
- (fetchpatch {
- url = "https://w1.fi/cgit/hostap/patch/?id=f302d9f9646704cce745734af21d540baa0da65f";
- hash = "sha256-6i0cq5YBm2w03yMrdYGaEqe1dTsmokZWOs4WPFX36qo=";
- })
];
outputs = [ "out" "man" ];
@@ -137,6 +89,7 @@ stdenv.mkDerivation rec {
CONFIG_IEEE80211N=y
CONFIG_IEEE80211AC=y
CONFIG_IEEE80211AX=y
+ CONFIG_IEEE80211BE=y
'' + lib.optionalString (sqlite != null) ''
CONFIG_SQLITE=y
'';
diff --git a/pkgs/os-specific/linux/latencytop/default.nix b/pkgs/os-specific/linux/latencytop/default.nix
index 43d1fddde927..bee5fa9f28a7 100644
--- a/pkgs/os-specific/linux/latencytop/default.nix
+++ b/pkgs/os-specific/linux/latencytop/default.nix
@@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
description = "Tool to show kernel reports on latencies (LATENCYTOP option)";
mainProgram = "latencytop";
license = lib.licenses.gpl2Only;
- maintainers = [ lib.maintainers.viric ];
+ maintainers = [ ];
platforms = lib.platforms.linux;
};
}
diff --git a/pkgs/os-specific/linux/netatop/default.nix b/pkgs/os-specific/linux/netatop/default.nix
index b1a9d244a8d8..91b525af0cb0 100644
--- a/pkgs/os-specific/linux/netatop/default.nix
+++ b/pkgs/os-specific/linux/netatop/default.nix
@@ -51,6 +51,6 @@ stdenv.mkDerivation {
homepage = "https://www.atoptool.nl/downloadnetatop.php";
license = lib.licenses.gpl2Only;
platforms = lib.platforms.linux;
- maintainers = with lib.maintainers; [ viric ];
+ maintainers = [ ];
};
}
diff --git a/pkgs/os-specific/linux/wpa_supplicant/0001-Implement-read-only-mode-for-ssids.patch b/pkgs/os-specific/linux/wpa_supplicant/0001-Implement-read-only-mode-for-ssids.patch
deleted file mode 100644
index d459de8a7f39..000000000000
--- a/pkgs/os-specific/linux/wpa_supplicant/0001-Implement-read-only-mode-for-ssids.patch
+++ /dev/null
@@ -1,130 +0,0 @@
-From 99ae610f0ae3608a12c864caedf396f14e68327d Mon Sep 17 00:00:00 2001
-From: Maximilian Bosch
-Date: Fri, 19 Feb 2021 19:44:21 +0100
-Subject: [PATCH] Implement read-only mode for ssids
-
-With this change it's possible to define `network=`-sections in a second
-config file specified via `-I` without having changes written to
-`/etc/wpa_supplicant.conf`.
-
-This is helpful on e.g. NixOS to allow both declarative (i.e. read-only)
-and imperative (i.e. mutable) networks.
----
- wpa_supplicant/config.h | 2 +-
- wpa_supplicant/config_file.c | 5 +++--
- wpa_supplicant/config_none.c | 2 +-
- wpa_supplicant/config_ssid.h | 2 ++
- wpa_supplicant/wpa_supplicant.c | 8 ++++----
- 5 files changed, 11 insertions(+), 8 deletions(-)
-
-diff --git a/wpa_supplicant/config.h b/wpa_supplicant/config.h
-index 6a297ecfe..adaf4d398 100644
---- a/wpa_supplicant/config.h
-+++ b/wpa_supplicant/config.h
-@@ -1614,7 +1614,7 @@ const char * wpa_config_get_global_field_name(unsigned int i, int *no_var);
- *
- * Each configuration backend needs to implement this function.
- */
--struct wpa_config * wpa_config_read(const char *name, struct wpa_config *cfgp);
-+struct wpa_config * wpa_config_read(const char *name, struct wpa_config *cfgp, int ro);
-
- /**
- * wpa_config_write - Write or update configuration data
-diff --git a/wpa_supplicant/config_file.c b/wpa_supplicant/config_file.c
-index 77c326df5..d5ed051b9 100644
---- a/wpa_supplicant/config_file.c
-+++ b/wpa_supplicant/config_file.c
-@@ -373,7 +373,7 @@ static int wpa_config_process_blob(struct wpa_config *config, FILE *f,
- #endif /* CONFIG_NO_CONFIG_BLOBS */
-
-
--struct wpa_config * wpa_config_read(const char *name, struct wpa_config *cfgp)
-+struct wpa_config * wpa_config_read(const char *name, struct wpa_config *cfgp, int ro)
- {
- FILE *f;
- char buf[512], *pos;
-@@ -415,6 +415,7 @@ struct wpa_config * wpa_config_read(const char *name, struct wpa_config *cfgp)
- while (wpa_config_get_line(buf, sizeof(buf), f, &line, &pos)) {
- if (os_strcmp(pos, "network={") == 0) {
- ssid = wpa_config_read_network(f, &line, id++);
-+ ssid->ro = ro;
- if (ssid == NULL) {
- wpa_printf(MSG_ERROR, "Line %d: failed to "
- "parse network block.", line);
-@@ -1591,7 +1592,7 @@ int wpa_config_write(const char *name, struct wpa_config *config)
- }
-
- for (ssid = config->ssid; ssid; ssid = ssid->next) {
-- if (ssid->key_mgmt == WPA_KEY_MGMT_WPS || ssid->temporary)
-+ if (ssid->key_mgmt == WPA_KEY_MGMT_WPS || ssid->temporary || ssid->ro)
- continue; /* do not save temporary networks */
- if (wpa_key_mgmt_wpa_psk(ssid->key_mgmt) && !ssid->psk_set &&
- !ssid->passphrase)
-diff --git a/wpa_supplicant/config_none.c b/wpa_supplicant/config_none.c
-index 2aac28fa3..02191b425 100644
---- a/wpa_supplicant/config_none.c
-+++ b/wpa_supplicant/config_none.c
-@@ -17,7 +17,7 @@
- #include "base64.h"
-
-
--struct wpa_config * wpa_config_read(const char *name, struct wpa_config *cfgp)
-+struct wpa_config * wpa_config_read(const char *name, struct wpa_config *cfgp, int ro)
- {
- struct wpa_config *config;
-
-diff --git a/wpa_supplicant/config_ssid.h b/wpa_supplicant/config_ssid.h
-index d5c5c00a9..fd80c079c 100644
---- a/wpa_supplicant/config_ssid.h
-+++ b/wpa_supplicant/config_ssid.h
-@@ -93,6 +93,8 @@ struct wpa_ssid {
- */
- int id;
-
-+ int ro;
-+
- /**
- * priority - Priority group
- *
-diff --git a/wpa_supplicant/wpa_supplicant.c b/wpa_supplicant/wpa_supplicant.c
-index 911d79d17..cb0cb99b1 100644
---- a/wpa_supplicant/wpa_supplicant.c
-+++ b/wpa_supplicant/wpa_supplicant.c
-@@ -1052,14 +1052,14 @@ int wpa_supplicant_reload_configuration(struct wpa_supplicant *wpa_s)
-
- if (wpa_s->confname == NULL)
- return -1;
-- conf = wpa_config_read(wpa_s->confname, NULL);
-+ conf = wpa_config_read(wpa_s->confname, NULL, 0);
- if (conf == NULL) {
- wpa_msg(wpa_s, MSG_ERROR, "Failed to parse the configuration "
- "file '%s' - exiting", wpa_s->confname);
- return -1;
- }
- if (wpa_s->confanother &&
-- !wpa_config_read(wpa_s->confanother, conf)) {
-+ !wpa_config_read(wpa_s->confanother, conf, 1)) {
- wpa_msg(wpa_s, MSG_ERROR,
- "Failed to parse the configuration file '%s' - exiting",
- wpa_s->confanother);
-@@ -5638,7 +5638,7 @@ static int wpa_supplicant_init_iface(struct wpa_supplicant *wpa_s,
- #else /* CONFIG_BACKEND_FILE */
- wpa_s->confname = os_strdup(iface->confname);
- #endif /* CONFIG_BACKEND_FILE */
-- wpa_s->conf = wpa_config_read(wpa_s->confname, NULL);
-+ wpa_s->conf = wpa_config_read(wpa_s->confname, NULL, 0);
- if (wpa_s->conf == NULL) {
- wpa_printf(MSG_ERROR, "Failed to read or parse "
- "configuration '%s'.", wpa_s->confname);
-@@ -5646,7 +5646,7 @@ static int wpa_supplicant_init_iface(struct wpa_supplicant *wpa_s,
- }
- wpa_s->confanother = os_rel2abs_path(iface->confanother);
- if (wpa_s->confanother &&
-- !wpa_config_read(wpa_s->confanother, wpa_s->conf)) {
-+ !wpa_config_read(wpa_s->confanother, wpa_s->conf, 1)) {
- wpa_printf(MSG_ERROR,
- "Failed to read or parse configuration '%s'.",
- wpa_s->confanother);
---
-2.29.2
-
diff --git a/pkgs/os-specific/linux/wpa_supplicant/Use-unique-IDs-for-networks-and-credentials.patch b/pkgs/os-specific/linux/wpa_supplicant/Use-unique-IDs-for-networks-and-credentials.patch
deleted file mode 100644
index 09e5b3673ac4..000000000000
--- a/pkgs/os-specific/linux/wpa_supplicant/Use-unique-IDs-for-networks-and-credentials.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-The id and cred_id variables are reset to 0 every time the
-wpa_config_read function is called, which is fine as long as it is only
-called once. However, this is not the case when using both the -c and -I
-options to specify two config files.
-
-This is a problem because the GUI, since eadfeb0e93748eb396ae62012b92d21a7f533646,
-relies on the network IDs being unique (and increasing), and might get
-into an infinite loop otherwise.
-
-This is solved by simply making the variables static.
----
- wpa_supplicant/config_file.c | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/wpa_supplicant/config_file.c b/wpa_supplicant/config_file.c
-index 6db5010db..c996e3916 100644
---- a/wpa_supplicant/config_file.c
-+++ b/wpa_supplicant/config_file.c
-@@ -297,8 +297,8 @@ struct wpa_config * wpa_config_read(const char *name, struct wpa_config *cfgp)
- struct wpa_ssid *ssid, *tail, *head;
- struct wpa_cred *cred, *cred_tail, *cred_head;
- struct wpa_config *config;
-- int id = 0;
-- int cred_id = 0;
-+ static int id = 0;
-+ static int cred_id = 0;
-
- if (name == NULL)
- return NULL;
---
-2.34.1
-
diff --git a/pkgs/os-specific/linux/wpa_supplicant/default.nix b/pkgs/os-specific/linux/wpa_supplicant/default.nix
index e63bbd7a3fc0..f163978b9512 100644
--- a/pkgs/os-specific/linux/wpa_supplicant/default.nix
+++ b/pkgs/os-specific/linux/wpa_supplicant/default.nix
@@ -3,28 +3,19 @@
, dbusSupport ? !stdenv.hostPlatform.isStatic, dbus
, withReadline ? true, readline
, withPcsclite ? !stdenv.hostPlatform.isStatic, pcsclite
-, readOnlyModeSSIDs ? false
}:
with lib;
stdenv.mkDerivation rec {
- version = "2.10";
+ version = "2.11";
pname = "wpa_supplicant";
src = fetchurl {
url = "https://w1.fi/releases/${pname}-${version}.tar.gz";
- sha256 = "sha256-IN965RVLODA1X4q0JpEjqHr/3qWf50/pKSqR0Nfhey8=";
+ sha256 = "sha256-kS6gb3TjCo42+7aAZNbN/yGNjVkdsPxddd7myBrH/Ao=";
};
- patches = [
- # Fix a bug when using two config files
- ./Use-unique-IDs-for-networks-and-credentials.patch
- ] ++ lib.optionals readOnlyModeSSIDs [
- # Allow read-only networks
- ./0001-Implement-read-only-mode-for-ssids.patch
- ];
-
# TODO: Patch epoll so that the dbus actually responds
# TODO: Figure out how to get privsep working, currently getting SIGBUS
extraConfig = ''
@@ -49,6 +40,7 @@ stdenv.mkDerivation rec {
CONFIG_HT_OVERRIDES=y
CONFIG_IEEE80211AC=y
CONFIG_IEEE80211AX=y
+ CONFIG_IEEE80211BE=y
CONFIG_IEEE80211N=y
CONFIG_IEEE80211R=y
CONFIG_IEEE80211W=y
diff --git a/pkgs/servers/redpanda/default.nix b/pkgs/servers/redpanda/default.nix
index 307e762881a4..09b8828069c8 100644
--- a/pkgs/servers/redpanda/default.nix
+++ b/pkgs/servers/redpanda/default.nix
@@ -6,12 +6,12 @@
, stdenv
}:
let
- version = "24.1.10";
+ version = "24.1.13";
src = fetchFromGitHub {
owner = "redpanda-data";
repo = "redpanda";
rev = "v${version}";
- sha256 = "sha256-HouhxCy0eQx4A4TF1id8XA7JEzDwzLfYre6MxufCeBM=";
+ sha256 = "sha256-7XDtQYuAVo3WvL59KHrROYlRH68/tAAU/7IGwtTS/+Q=";
};
in
buildGoModule rec {
diff --git a/pkgs/servers/silc-server/default.nix b/pkgs/servers/silc-server/default.nix
index dcb5eb4e9990..6ed1a2dd5e91 100644
--- a/pkgs/servers/silc-server/default.nix
+++ b/pkgs/servers/silc-server/default.nix
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
description = "Secure Internet Live Conferencing server";
mainProgram = "silcd";
license = lib.licenses.gpl2Plus;
- maintainers = with lib.maintainers; [viric];
+ maintainers = [ ];
platforms = with lib.platforms; linux;
};
}
diff --git a/pkgs/test/cc-wrapper/hardening.nix b/pkgs/test/cc-wrapper/hardening.nix
index 41ddaefdfea8..270e9a2e8761 100644
--- a/pkgs/test/cc-wrapper/hardening.nix
+++ b/pkgs/test/cc-wrapper/hardening.nix
@@ -3,6 +3,7 @@
, runCommand
, runCommandWith
, runCommandCC
+, hello
, debian-devscripts
}:
@@ -18,6 +19,7 @@ let
allowSubstitutes = false;
} // env;
} ''
+ [ -n "$postConfigure" ] && eval "$postConfigure"
[ -n "$preBuild" ] && eval "$preBuild"
n=$out/bin/test-bin
mkdir -p "$(dirname "$n")"
@@ -29,10 +31,32 @@ let
f2exampleWithStdEnv = writeCBinWithStdenv ./fortify2-example.c;
f3exampleWithStdEnv = writeCBinWithStdenv ./fortify3-example.c;
+ # for when we need a slightly more complicated program
+ helloWithStdEnv = stdenv': env: (hello.override { stdenv = stdenv'; }).overrideAttrs ({
+ preBuild = ''
+ export CFLAGS="$TEST_EXTRA_FLAGS"
+ '';
+ NIX_DEBUG = "1";
+ postFixup = ''
+ cp $out/bin/hello $out/bin/test-bin
+ '';
+ } // env);
+
stdenvUnsupport = additionalUnsupported: stdenv.override {
cc = stdenv.cc.override {
- cc = (lib.extendDerivation true {
- hardeningUnsupportedFlags = (stdenv.cc.cc.hardeningUnsupportedFlags or []) ++ additionalUnsupported;
+ cc = (lib.extendDerivation true rec {
+ # this is ugly - have to cross-reference from
+ # hardeningUnsupportedFlagsByTargetPlatform to hardeningUnsupportedFlags
+ # because the finalAttrs mechanism that hardeningUnsupportedFlagsByTargetPlatform
+ # implementations use to do this won't work with lib.extendDerivation.
+ # but it's simplified by the fact that targetPlatform is already fixed
+ # at this point.
+ hardeningUnsupportedFlagsByTargetPlatform = _: hardeningUnsupportedFlags;
+ hardeningUnsupportedFlags = (
+ if stdenv.cc.cc ? hardeningUnsupportedFlagsByTargetPlatform
+ then stdenv.cc.cc.hardeningUnsupportedFlagsByTargetPlatform stdenv.targetPlatform
+ else (stdenv.cc.cc.hardeningUnsupportedFlags or [])
+ ) ++ additionalUnsupported;
} stdenv.cc.cc);
};
allowedRequisites = null;
@@ -45,24 +69,39 @@ let
ignorePie ? true,
ignoreRelRO ? true,
ignoreStackProtector ? true,
+ ignoreStackClashProtection ? true,
expectFailure ? false,
}: let
+ stackClashStr = "Stack clash protection: yes";
expectFailureClause = lib.optionalString expectFailure
- " && echo 'ERROR: Expected hardening-check to fail, but it passed!' >&2 && exit 1";
+ " && echo 'ERROR: Expected hardening-check to fail, but it passed!' >&2 && false";
in runCommandCC "check-test-bin" {
nativeBuildInputs = [ debian-devscripts ];
buildInputs = [ testBin ];
- meta.platforms = lib.platforms.linux; # ELF-reliant
- } ''
- hardening-check --nocfprotection \
- ${lib.optionalString ignoreBindNow "--nobindnow"} \
- ${lib.optionalString ignoreFortify "--nofortify"} \
- ${lib.optionalString ignorePie "--nopie"} \
- ${lib.optionalString ignoreRelRO "--norelro"} \
- ${lib.optionalString ignoreStackProtector "--nostackprotector"} \
- $(PATH=$HOST_PATH type -P test-bin) ${expectFailureClause}
- touch $out
- '';
+ meta.platforms = if ignoreStackClashProtection
+ then lib.platforms.linux # ELF-reliant
+ else [ "x86_64-linux" ]; # stackclashprotection test looks for x86-specific instructions
+ } (''
+ if ${lib.optionalString (!expectFailure) "!"} {
+ hardening-check --nocfprotection \
+ ${lib.optionalString ignoreBindNow "--nobindnow"} \
+ ${lib.optionalString ignoreFortify "--nofortify"} \
+ ${lib.optionalString ignorePie "--nopie"} \
+ ${lib.optionalString ignoreRelRO "--norelro"} \
+ ${lib.optionalString ignoreStackProtector "--nostackprotector"} \
+ $(PATH=$HOST_PATH type -P test-bin) | tee $out
+ '' + lib.optionalString (!ignoreStackClashProtection) ''
+ # stack clash protection doesn't actually affect the exit code of
+ # hardening-check (likely authors think false negatives too common)
+ { grep -F '${stackClashStr}' $out || { echo "Didn't find '${stackClashStr}' in output" && false ;} ;}
+ '' + ''
+ } ; then
+ '' + lib.optionalString expectFailure ''
+ echo 'ERROR: Expected hardening-check to fail, but it passed!' >&2
+ '' + ''
+ exit 2
+ fi
+ '');
nameDrvAfterAttrName = builtins.mapAttrs (name: drv:
drv.overrideAttrs (_: { name = "test-${name}"; })
@@ -151,6 +190,13 @@ in nameDrvAfterAttrName ({
ignoreStackProtector = false;
});
+ # protection patterns generated by clang not detectable?
+ stackClashProtectionExplicitEnabled = brokenIf stdenv.cc.isClang (checkTestBin (helloWithStdEnv stdenv {
+ hardeningEnable = [ "stackclashprotection" ];
+ }) {
+ ignoreStackClashProtection = false;
+ });
+
bindNowExplicitDisabled = checkTestBin (f2exampleWithStdEnv stdenv {
hardeningDisable = [ "bindnow" ];
}) {
@@ -211,12 +257,19 @@ in nameDrvAfterAttrName ({
expectFailure = true;
};
+ stackClashProtectionExplicitDisabled = checkTestBin (helloWithStdEnv stdenv {
+ hardeningDisable = [ "stackclashprotection" ];
+ }) {
+ ignoreStackClashProtection = false;
+ expectFailure = true;
+ };
+
# most flags can't be "unsupported" by compiler alone and
# binutils doesn't have an accessible hardeningUnsupportedFlags
# mechanism, so can only test a couple of flags through altered
# stdenv trickery
- fortifyStdenvUnsupp = checkTestBin (f2exampleWithStdEnv (stdenvUnsupport ["fortify"]) {
+ fortifyStdenvUnsupp = checkTestBin (f2exampleWithStdEnv (stdenvUnsupport ["fortify" "fortify3"]) {
hardeningEnable = [ "fortify" ];
}) {
ignoreFortify = false;
@@ -237,13 +290,14 @@ in nameDrvAfterAttrName ({
expectFailure = true;
};
- fortify3StdenvUnsuppDoesntUnsuppFortify = brokenIf stdenv.hostPlatform.isMusl (checkTestBin (f2exampleWithStdEnv (stdenvUnsupport ["fortify3"]) {
+ # musl implementation undetectable by this means even if present
+ fortify3StdenvUnsuppDoesntUnsuppFortify1 = brokenIf stdenv.hostPlatform.isMusl (checkTestBin (f1exampleWithStdEnv (stdenvUnsupport ["fortify3"]) {
hardeningEnable = [ "fortify" ];
}) {
ignoreFortify = false;
});
- fortify3StdenvUnsuppDoesntUnsuppFortifyExecTest = fortifyExecTest (f2exampleWithStdEnv (stdenvUnsupport ["fortify3"]) {
+ fortify3StdenvUnsuppDoesntUnsuppFortify1ExecTest = fortifyExecTest (f1exampleWithStdEnv (stdenvUnsupport ["fortify3"]) {
hardeningEnable = [ "fortify" ];
});
@@ -254,12 +308,19 @@ in nameDrvAfterAttrName ({
expectFailure = true;
};
+ stackClashProtectionStdenvUnsupp = checkTestBin (helloWithStdEnv (stdenvUnsupport ["stackclashprotection"]) {
+ hardeningEnable = [ "stackclashprotection" ];
+ }) {
+ ignoreStackClashProtection = false;
+ expectFailure = true;
+ };
+
# NIX_HARDENING_ENABLE set in the shell overrides hardeningDisable
# and hardeningEnable
stackProtectorReenabledEnv = checkTestBin (f2exampleWithStdEnv stdenv {
hardeningDisable = [ "stackprotector" ];
- preBuild = ''
+ postConfigure = ''
export NIX_HARDENING_ENABLE="stackprotector"
'';
}) {
@@ -268,7 +329,7 @@ in nameDrvAfterAttrName ({
stackProtectorReenabledFromAllEnv = checkTestBin (f2exampleWithStdEnv stdenv {
hardeningDisable = [ "all" ];
- preBuild = ''
+ postConfigure = ''
export NIX_HARDENING_ENABLE="stackprotector"
'';
}) {
@@ -277,7 +338,7 @@ in nameDrvAfterAttrName ({
stackProtectorRedisabledEnv = checkTestBin (f2exampleWithStdEnv stdenv {
hardeningEnable = [ "stackprotector" ];
- preBuild = ''
+ postConfigure = ''
export NIX_HARDENING_ENABLE=""
'';
}) {
@@ -285,25 +346,26 @@ in nameDrvAfterAttrName ({
expectFailure = true;
};
- fortify3EnabledEnvEnablesFortify = brokenIf stdenv.hostPlatform.isMusl (checkTestBin (f2exampleWithStdEnv stdenv {
+ # musl implementation undetectable by this means even if present
+ fortify3EnabledEnvEnablesFortify1 = brokenIf stdenv.hostPlatform.isMusl (checkTestBin (f1exampleWithStdEnv stdenv {
hardeningDisable = [ "fortify" "fortify3" ];
- preBuild = ''
+ postConfigure = ''
export NIX_HARDENING_ENABLE="fortify3"
'';
}) {
ignoreFortify = false;
});
- fortify3EnabledEnvEnablesFortifyExecTest = fortifyExecTest (f2exampleWithStdEnv stdenv {
+ fortify3EnabledEnvEnablesFortify1ExecTest = fortifyExecTest (f1exampleWithStdEnv stdenv {
hardeningDisable = [ "fortify" "fortify3" ];
- preBuild = ''
+ postConfigure = ''
export NIX_HARDENING_ENABLE="fortify3"
'';
});
fortifyEnabledEnvDoesntEnableFortify3 = checkTestBin (f3exampleWithStdEnv stdenv {
hardeningDisable = [ "fortify" "fortify3" ];
- preBuild = ''
+ postConfigure = ''
export NIX_HARDENING_ENABLE="fortify"
'';
}) {
@@ -312,9 +374,8 @@ in nameDrvAfterAttrName ({
};
# NIX_HARDENING_ENABLE can't enable an unsupported feature
-
stackProtectorUnsupportedEnabledEnv = checkTestBin (f2exampleWithStdEnv (stdenvUnsupport ["stackprotector"]) {
- preBuild = ''
+ postConfigure = ''
export NIX_HARDENING_ENABLE="stackprotector"
'';
}) {
@@ -322,23 +383,29 @@ in nameDrvAfterAttrName ({
expectFailure = true;
};
+ # current implementation prevents the command-line from disabling
+ # fortify if cc-wrapper is enabling it.
+
# undetectable by this means on static even if present
fortify1ExplicitEnabledCmdlineDisabled = brokenIf stdenv.hostPlatform.isStatic (checkTestBin (f1exampleWithStdEnv stdenv {
hardeningEnable = [ "fortify" ];
- preBuild = ''
+ postConfigure = ''
export TEST_EXTRA_FLAGS='-D_FORTIFY_SOURCE=0'
'';
}) {
ignoreFortify = false;
- expectFailure = true;
+ expectFailure = false;
});
+ # current implementation doesn't force-disable fortify if
+ # command-line enables it even if we use hardeningDisable.
+
# musl implementation undetectable by this means even if present
fortify1ExplicitDisabledCmdlineEnabled = brokenIf (
stdenv.hostPlatform.isMusl || stdenv.hostPlatform.isStatic
) (checkTestBin (f1exampleWithStdEnv stdenv {
hardeningDisable = [ "fortify" ];
- preBuild = ''
+ postConfigure = ''
export TEST_EXTRA_FLAGS='-D_FORTIFY_SOURCE=1'
'';
}) {
@@ -347,14 +414,14 @@ in nameDrvAfterAttrName ({
fortify1ExplicitDisabledCmdlineEnabledExecTest = fortifyExecTest (f1exampleWithStdEnv stdenv {
hardeningDisable = [ "fortify" ];
- preBuild = ''
+ postConfigure = ''
export TEST_EXTRA_FLAGS='-D_FORTIFY_SOURCE=1'
'';
});
fortify1ExplicitEnabledCmdlineDisabledNoWarn = f1exampleWithStdEnv stdenv {
hardeningEnable = [ "fortify" ];
- preBuild = ''
+ postConfigure = ''
export TEST_EXTRA_FLAGS='-D_FORTIFY_SOURCE=0 -Werror'
'';
};
@@ -393,4 +460,9 @@ in {
ignoreStackProtector = false;
expectFailure = true;
};
+
+ allExplicitDisabledStackClashProtection = checkTestBin tb {
+ ignoreStackClashProtection = false;
+ expectFailure = true;
+ };
}))
diff --git a/pkgs/tools/X11/xbindkeys/default.nix b/pkgs/tools/X11/xbindkeys/default.nix
index 5b2f5c8a1968..d3c514970515 100644
--- a/pkgs/tools/X11/xbindkeys/default.nix
+++ b/pkgs/tools/X11/xbindkeys/default.nix
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
homepage = "https://www.nongnu.org/xbindkeys/xbindkeys.html";
description = "Launch shell commands with your keyboard or your mouse under X Window";
license = lib.licenses.gpl2Plus;
- maintainers = with lib.maintainers; [ viric ];
+ maintainers = [ ];
platforms = with lib.platforms; linux;
};
}
diff --git a/pkgs/tools/X11/xdotool/default.nix b/pkgs/tools/X11/xdotool/default.nix
index bcb48ac44fac..55714f10f59c 100644
--- a/pkgs/tools/X11/xdotool/default.nix
+++ b/pkgs/tools/X11/xdotool/default.nix
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
homepage = "https://www.semicomplete.com/projects/xdotool/";
description = "Fake keyboard/mouse input, window management, and more";
license = lib.licenses.bsd3;
- maintainers = with lib.maintainers; [viric];
+ maintainers = [ ];
platforms = with lib.platforms; linux;
mainProgram = "xdotool";
};
diff --git a/pkgs/tools/X11/xtrace/default.nix b/pkgs/tools/X11/xtrace/default.nix
index 591b1ef13ab1..7360603cb790 100644
--- a/pkgs/tools/X11/xtrace/default.nix
+++ b/pkgs/tools/X11/xtrace/default.nix
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
homepage = "https://salsa.debian.org/debian/xtrace";
description = "Tool to trace X11 protocol connections";
license = licenses.gpl2Only;
- maintainers = with maintainers; [ viric ];
+ maintainers = [ ];
platforms = with platforms; linux;
mainProgram = "xtrace";
};
diff --git a/pkgs/tools/admin/tigervnc/default.nix b/pkgs/tools/admin/tigervnc/default.nix
index 53d0fe662bfe..c19e7b3b4f3a 100644
--- a/pkgs/tools/admin/tigervnc/default.nix
+++ b/pkgs/tools/admin/tigervnc/default.nix
@@ -153,7 +153,7 @@ stdenv.mkDerivation rec {
homepage = "https://tigervnc.org/";
license = lib.licenses.gpl2Plus;
description = "Fork of tightVNC, made in cooperation with VirtualGL";
- maintainers = with lib.maintainers; [viric];
+ maintainers = [ ];
platforms = lib.platforms.unix;
# Prevent a store collision.
priority = 4;
diff --git a/pkgs/tools/archivers/cromfs/default.nix b/pkgs/tools/archivers/cromfs/default.nix
index b775eb1561ef..f3bacd2c40fa 100644
--- a/pkgs/tools/archivers/cromfs/default.nix
+++ b/pkgs/tools/archivers/cromfs/default.nix
@@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
description = "FUSE Compressed ROM filesystem with lzma";
homepage = "https://bisqwit.iki.fi/source/cromfs.html";
license = licenses.gpl3;
- maintainers = [ maintainers.viric ];
+ maintainers = [ ];
platforms = platforms.linux;
};
}
diff --git a/pkgs/tools/backup/btar/default.nix b/pkgs/tools/backup/btar/default.nix
index 7d9f257f72b8..f5ac2ce65d41 100644
--- a/pkgs/tools/backup/btar/default.nix
+++ b/pkgs/tools/backup/btar/default.nix
@@ -32,6 +32,6 @@ stdenv.mkDerivation rec {
license = lib.licenses.gpl3Plus;
homepage = "https://viric.name/cgi-bin/btar";
platforms = platforms.all;
- maintainers = with maintainers; [ viric ];
+ maintainers = [ ];
};
}
diff --git a/pkgs/tools/backup/restic/default.nix b/pkgs/tools/backup/restic/default.nix
index 198a5dda0593..5f802f487903 100644
--- a/pkgs/tools/backup/restic/default.nix
+++ b/pkgs/tools/backup/restic/default.nix
@@ -1,15 +1,15 @@
{ stdenv, lib, buildGoModule, fetchFromGitHub, installShellFiles, makeWrapper
-, nixosTests, rclone }:
+, nixosTests, rclone, python3 }:
buildGoModule rec {
pname = "restic";
- version = "0.16.5";
+ version = "0.17.0";
src = fetchFromGitHub {
owner = "restic";
repo = "restic";
rev = "v${version}";
- hash = "sha256-WwySXQU8eoyQRcI+zF+pIIKLEFheTnqkPTw0IZeUrhA=";
+ hash = "sha256-fd67ZehmgHHd+R/V4hJCREWoY3lFKSTfvbLRgJ0PSAM=";
};
patches = [
@@ -17,12 +17,14 @@ buildGoModule rec {
./0001-Skip-testing-restore-with-permission-failure.patch
];
- vendorHash = "sha256-VZTX0LPZkqN4+OaaIkwepbGwPtud8Cu7Uq7t1bAUC8M=";
+ vendorHash = "sha256-tU2msDHktlU0SvvxLQCU64p8DpL8B0QiliVCuHlLTHQ=";
subPackages = [ "cmd/restic" ];
nativeBuildInputs = [ installShellFiles makeWrapper ];
+ nativeCheckInputs = [ python3 ];
+
passthru.tests.restic = nixosTests.restic;
postPatch = ''
diff --git a/pkgs/tools/compression/bsc/default.nix b/pkgs/tools/compression/bsc/default.nix
deleted file mode 100644
index 7d2af1c4898f..000000000000
--- a/pkgs/tools/compression/bsc/default.nix
+++ /dev/null
@@ -1,34 +0,0 @@
-{ lib, stdenv, fetchFromGitHub, openmp }:
-
-stdenv.mkDerivation rec {
- pname = "bsc";
- version = "3.1.0";
-
- src = fetchFromGitHub {
- owner = "IlyaGrebnov";
- repo = "libbsc";
- rev = version;
- sha256 = "0c0jmirh9y23kyi1jnrm13sa3xsjn54jazfr84ag45pai279fciz";
- };
-
- enableParallelBuilding = true;
-
- buildInputs = lib.optional stdenv.isDarwin openmp;
-
- postPatch = ''
- substituteInPlace makefile \
- --replace 'g++' '$(CXX)'
- '';
-
- makeFlags = [ "PREFIX=$(out)" ];
-
- meta = with lib; {
- description = "High performance block-sorting data compression library";
- homepage = "http://libbsc.com/";
- maintainers = with maintainers; [ ];
- # Later commits changed the licence to Apache2 (no release yet, though)
- license = with licenses; [ lgpl3Plus ];
- platforms = platforms.unix;
- mainProgram = "bsc";
- };
-}
diff --git a/pkgs/tools/compression/pbzip2/default.nix b/pkgs/tools/compression/pbzip2/default.nix
index 6bf83bd718fc..d9eecda0d606 100644
--- a/pkgs/tools/compression/pbzip2/default.nix
+++ b/pkgs/tools/compression/pbzip2/default.nix
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
homepage = "http://compression.ca/pbzip2/";
description = "Parallel implementation of bzip2 for multi-core machines";
license = licenses.bsd2;
- maintainers = with maintainers; [viric];
+ maintainers = [ ];
platforms = platforms.unix;
};
}
diff --git a/pkgs/tools/filesystems/mtdutils/default.nix b/pkgs/tools/filesystems/mtdutils/default.nix
index cbf8e4f19287..641b50d43506 100644
--- a/pkgs/tools/filesystems/mtdutils/default.nix
+++ b/pkgs/tools/filesystems/mtdutils/default.nix
@@ -39,7 +39,7 @@ stdenv.mkDerivation rec {
downloadPage = "https://git.infradead.org/mtd-utils.git";
license = licenses.gpl2Plus;
homepage = "http://www.linux-mtd.infradead.org/";
- maintainers = with maintainers; [ viric ];
+ maintainers = [ ];
platforms = with platforms; linux;
};
}
diff --git a/pkgs/tools/graphics/exiftags/default.nix b/pkgs/tools/graphics/exiftags/default.nix
index 6823f6bc20eb..971722ea9f3f 100644
--- a/pkgs/tools/graphics/exiftags/default.nix
+++ b/pkgs/tools/graphics/exiftags/default.nix
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
homepage = "http://johnst.org/sw/exiftags/";
description = "Displays EXIF data from JPEG files";
license = lib.licenses.free;
- maintainers = with lib.maintainers; [viric];
+ maintainers = [ ];
platforms = with lib.platforms; unix;
};
}
diff --git a/pkgs/tools/misc/cyclonedx-python/default.nix b/pkgs/tools/misc/cyclonedx-python/default.nix
index ba6d137fa5b7..b3439723aaff 100644
--- a/pkgs/tools/misc/cyclonedx-python/default.nix
+++ b/pkgs/tools/misc/cyclonedx-python/default.nix
@@ -1,65 +1,40 @@
-{ lib
-, fetchFromGitHub
-, python3
+{
+ lib,
+ fetchFromGitHub,
+ python3Packages,
}:
-let
- py = python3.override {
- packageOverrides = self: super: {
-
- # Requires 'cyclonedx-python-lib = ">= 2.0.0, < 4.0.0"'
- cyclonedx-python-lib = super.cyclonedx-python-lib.overridePythonAttrs (oldAttrs: rec {
- version = "3.1.5";
- src = fetchFromGitHub {
- owner = "CycloneDX";
- repo = "cyclonedx-python-lib";
- rev = "refs/tags/v${version}";
- hash = "sha256-4lA8OdmvQD94jTeDf+Iz7ZyEQ9fZzCxnXQG9Ir8FKhk=";
- };
- });
- };
- };
-in
-with py.pkgs;
-
-python3.pkgs.buildPythonApplication rec {
+python3Packages.buildPythonApplication rec {
pname = "cyclonedx-python";
- version = "3.11.7";
+ version = "4.5.0";
pyproject = true;
src = fetchFromGitHub {
owner = "CycloneDX";
repo = "cyclonedx-python";
rev = "refs/tags/v${version}";
- sha256 = "sha256-jU/0FkQCyph59TnEE+lckJXsU9whfvWp7dkdfzprYw8=";
+ hash = "sha256-+XeMRREDX1+v+qOeYiHh7uhadfueYYOxspLY3q1NL6s=";
};
- nativeBuildInputs = with py.pkgs; [
- poetry-core
- ];
+ build-system = with python3Packages; [ poetry-core ];
- propagatedBuildInputs = with py.pkgs; [
+ dependencies = with python3Packages; [
chardet
cyclonedx-python-lib
packageurl-python
pip-requirements-parser
- setuptools
- toml
- ];
+ packaging
+ tomli
+ ] ++ cyclonedx-python-lib.optional-dependencies.validation;
- # The tests want access to the cyclonedx binary
- doCheck = false;
+ pythonImportsCheck = [ "cyclonedx" ];
- pythonImportsCheck = [
- "cyclonedx"
- ];
-
- meta = with lib; {
+ meta = {
description = "Creates CycloneDX Software Bill of Materials (SBOM) from Python projects";
homepage = "https://github.com/CycloneDX/cyclonedx-python";
changelog = "https://github.com/CycloneDX/cyclonedx-python/releases/tag/v${version}";
- license = licenses.asl20;
- maintainers = with maintainers; [ ];
+ license = lib.licenses.asl20;
+ maintainers = with lib.maintainers; [ xanderio ];
mainProgram = "cyclonedx-py";
};
}
diff --git a/pkgs/tools/misc/pal/default.nix b/pkgs/tools/misc/pal/default.nix
index c3778ba3bccf..69d8bde9a7d4 100644
--- a/pkgs/tools/misc/pal/default.nix
+++ b/pkgs/tools/misc/pal/default.nix
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
homepage = "https://palcal.sourceforge.net/";
description = "Command-line calendar program that can keep track of events";
license = lib.licenses.gpl2Plus;
- maintainers = with lib.maintainers; [viric];
+ maintainers = [ ];
platforms = with lib.platforms; linux;
};
}
diff --git a/pkgs/tools/misc/rkflashtool/default.nix b/pkgs/tools/misc/rkflashtool/default.nix
index fa37c98966eb..95c5351b7a02 100644
--- a/pkgs/tools/misc/rkflashtool/default.nix
+++ b/pkgs/tools/misc/rkflashtool/default.nix
@@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
homepage = "https://sourceforge.net/projects/rkflashtool/";
description = "Tools for flashing Rockchip devices";
platforms = platforms.linux;
- maintainers = [ maintainers.viric ];
+ maintainers = [ ];
license = licenses.bsd2;
};
}
diff --git a/pkgs/tools/misc/scdl/default.nix b/pkgs/tools/misc/scdl/default.nix
index 4c5cf6ebdfa5..6ddc72aa81b3 100644
--- a/pkgs/tools/misc/scdl/default.nix
+++ b/pkgs/tools/misc/scdl/default.nix
@@ -2,12 +2,12 @@
python3Packages.buildPythonApplication rec {
pname = "scdl";
- version = "2.11.2";
+ version = "2.11.3";
pyproject = true;
src = fetchPypi {
inherit pname version;
- hash = "sha256-5fko7WV1r0uP7//29tcmhO4Heu8QBNdhHv4afUs6W7E=";
+ hash = "sha256-3GmmGZ2uTE2T0GagWzBdbtFsTU3pcRxh0uh6/V16cUw=";
};
build-system = [ python3Packages.setuptools ];
diff --git a/pkgs/tools/misc/sqlite3-to-mysql/default.nix b/pkgs/tools/misc/sqlite3-to-mysql/default.nix
index feacf796caaa..71ebdcad69ee 100644
--- a/pkgs/tools/misc/sqlite3-to-mysql/default.nix
+++ b/pkgs/tools/misc/sqlite3-to-mysql/default.nix
@@ -9,7 +9,7 @@
python3Packages.buildPythonApplication rec {
pname = "sqlite3-to-mysql";
- version = "2.2.1";
+ version = "2.3.0";
format = "pyproject";
disabled = python3Packages.pythonOlder "3.8";
@@ -18,7 +18,7 @@ python3Packages.buildPythonApplication rec {
owner = "techouse";
repo = "sqlite3-to-mysql";
rev = "refs/tags/v${version}";
- hash = "sha256-pdPKP6Z4rOHUzxrfTft7ykWpCQBHN+FfndafXHyL+0Y=";
+ hash = "sha256-XmjPGY8+WiuWkfWvzHsLbgopV0qBtqC2jjMeBU/XtFw=";
};
build-system = with python3Packages; [
diff --git a/pkgs/tools/misc/xburst-tools/default.nix b/pkgs/tools/misc/xburst-tools/default.nix
index e850e347b29a..093e7152bbcf 100644
--- a/pkgs/tools/misc/xburst-tools/default.nix
+++ b/pkgs/tools/misc/xburst-tools/default.nix
@@ -43,7 +43,7 @@ stdenv.mkDerivation {
description = "Qi tools to access the Ben Nanonote USB_BOOT mode";
license = lib.licenses.gpl3;
homepage = "http://www.linux-mtd.infradead.org/";
- maintainers = with lib.maintainers; [viric];
+ maintainers = [ ];
platforms = lib.platforms.x86_64;
};
}
diff --git a/pkgs/tools/networking/filegive/default.nix b/pkgs/tools/networking/filegive/default.nix
index 9d85c168c5ce..6933404567a0 100644
--- a/pkgs/tools/networking/filegive/default.nix
+++ b/pkgs/tools/networking/filegive/default.nix
@@ -18,7 +18,7 @@ buildGoModule rec {
homepage = "https://viric.name/cgi-bin/filegive";
description = "Easy p2p file sending program";
license = licenses.agpl3Plus;
- maintainers = with maintainers; [ viric ];
+ maintainers = [ ];
mainProgram = "filegive";
};
}
diff --git a/pkgs/tools/networking/kapp/default.nix b/pkgs/tools/networking/kapp/default.nix
index 1ad9960b3581..f424afdfec06 100644
--- a/pkgs/tools/networking/kapp/default.nix
+++ b/pkgs/tools/networking/kapp/default.nix
@@ -2,13 +2,13 @@
buildGoModule rec {
pname = "kapp";
- version = "0.63.1";
+ version = "0.63.2";
src = fetchFromGitHub {
owner = "carvel-dev";
repo = "kapp";
rev = "v${version}";
- hash = "sha256-6i09V4Y2rFoChXo5roxVUFf84qCu2X9i5NtlYtw4RhE=";
+ hash = "sha256-YmaIGC/4+yhb9D9QNqT3EW6RHbsbSebbImuJZdRhvJ0=";
};
vendorHash = null;
diff --git a/pkgs/tools/networking/magic-wormhole-rs/default.nix b/pkgs/tools/networking/magic-wormhole-rs/default.nix
index f1937e5ddc67..77bb8e117e6f 100644
--- a/pkgs/tools/networking/magic-wormhole-rs/default.nix
+++ b/pkgs/tools/networking/magic-wormhole-rs/default.nix
@@ -9,16 +9,16 @@
}:
rustPlatform.buildRustPackage rec {
pname = "magic-wormhole-rs";
- version = "0.7.0";
+ version = "0.7.1";
src = fetchFromGitHub {
owner = "magic-wormhole";
repo = "magic-wormhole.rs";
rev = version;
- sha256 = "sha256-YFbBOjJK3+Zyy6pKQwGzYlva63PLhBhgMPEdQljNerE=";
+ sha256 = "sha256-u0prkwAWFTTIsAhi2ZV5Ozwcb6QOu0uaqZdORmAxxcY=";
};
- cargoHash = "sha256-qwrNj8M6ZDCqu7529DnhgiCaxYwsOlABTEEDBmkSL2U=";
+ cargoHash = "sha256-x6aEas3vmdI24nOys+Y+vuwY7k5cYRAj9oOH73zyV+A=";
buildInputs = [ libxcb ]
++ lib.optionals stdenv.isDarwin [ Security AppKit ];
diff --git a/pkgs/tools/networking/mosh/default.nix b/pkgs/tools/networking/mosh/default.nix
index 7a19275e4e2a..92894e5ddf3d 100644
--- a/pkgs/tools/networking/mosh/default.nix
+++ b/pkgs/tools/networking/mosh/default.nix
@@ -59,7 +59,7 @@ stdenv.mkDerivation rec {
especially over Wi-Fi, cellular, and long-distance links.
'';
license = licenses.gpl3Plus;
- maintainers = with maintainers; [ viric ];
+ maintainers = [ ];
platforms = platforms.unix;
};
}
diff --git a/pkgs/tools/networking/netkit/tftp/default.nix b/pkgs/tools/networking/netkit/tftp/default.nix
index 3ebfa3b96bc1..807aa62601fe 100644
--- a/pkgs/tools/networking/netkit/tftp/default.nix
+++ b/pkgs/tools/networking/netkit/tftp/default.nix
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
description = "Netkit TFTP client and server";
homepage = "ftp://ftp.uk.linux.org/pub/linux/Networking/netkit/";
license = lib.licenses.bsdOriginal;
- maintainers = with lib.maintainers; [viric];
+ maintainers = [ ];
platforms = with lib.platforms; linux;
};
}
diff --git a/pkgs/tools/networking/olsrd/default.nix b/pkgs/tools/networking/olsrd/default.nix
index 8e0dec4b48b1..5f8985b66cba 100644
--- a/pkgs/tools/networking/olsrd/default.nix
+++ b/pkgs/tools/networking/olsrd/default.nix
@@ -30,7 +30,7 @@ stdenv.mkDerivation rec {
description = "Adhoc wireless mesh routing daemon";
license = lib.licenses.bsd3;
homepage = "http://olsr.org/";
- maintainers = with lib.maintainers; [viric];
+ maintainers = [ ];
platforms = with lib.platforms; linux;
};
}
diff --git a/pkgs/tools/networking/openvpn/default.nix b/pkgs/tools/networking/openvpn/default.nix
index 03e663229b74..b3d100ecae68 100644
--- a/pkgs/tools/networking/openvpn/default.nix
+++ b/pkgs/tools/networking/openvpn/default.nix
@@ -61,7 +61,7 @@ stdenv.mkDerivation (finalAttrs: {
downloadPage = "https://openvpn.net/community-downloads/";
homepage = "https://openvpn.net/";
license = licenses.gpl2Only;
- maintainers = with maintainers; [ viric peterhoeg ];
+ maintainers = with maintainers; [ peterhoeg ];
platforms = platforms.unix;
mainProgram = "openvpn";
};
diff --git a/pkgs/tools/networking/pdnsd/default.nix b/pkgs/tools/networking/pdnsd/default.nix
index 605168493e6a..26001c37e982 100644
--- a/pkgs/tools/networking/pdnsd/default.nix
+++ b/pkgs/tools/networking/pdnsd/default.nix
@@ -32,6 +32,6 @@ stdenv.mkDerivation rec {
homepage = "http://members.home.nl/p.a.rombouts/pdnsd";
license = licenses.gpl3Plus;
platforms = platforms.unix;
- maintainers = with maintainers; [viric];
+ maintainers = [ ];
};
}
diff --git a/pkgs/tools/networking/pwnat/default.nix b/pkgs/tools/networking/pwnat/default.nix
index c0ead5468b50..d95608d5b648 100644
--- a/pkgs/tools/networking/pwnat/default.nix
+++ b/pkgs/tools/networking/pwnat/default.nix
@@ -34,7 +34,7 @@ stdenv.mkDerivation rec {
homepage = "http://samy.pl/pwnat/";
description = "ICMP NAT to NAT client-server communication";
license = lib.licenses.gpl3Plus;
- maintainers = with maintainers; [viric];
+ maintainers = [ ];
platforms = with platforms; linux;
mainProgram = "pwnat";
};
diff --git a/pkgs/tools/networking/udptunnel/default.nix b/pkgs/tools/networking/udptunnel/default.nix
index 396d105ca287..e7b2832b40b5 100644
--- a/pkgs/tools/networking/udptunnel/default.nix
+++ b/pkgs/tools/networking/udptunnel/default.nix
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
homepage = "https://code.google.com/archive/p/udptunnel/";
description = "Tunnels TCP over UDP packets";
license = lib.licenses.gpl3Plus;
- maintainers = with lib.maintainers; [viric];
+ maintainers = [ ];
platforms = with lib.platforms; linux;
mainProgram = "udptunnel";
};
diff --git a/pkgs/tools/networking/wakelan/default.nix b/pkgs/tools/networking/wakelan/default.nix
index 2b18d5fd60ae..a0c4f832fc08 100644
--- a/pkgs/tools/networking/wakelan/default.nix
+++ b/pkgs/tools/networking/wakelan/default.nix
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
power on.
'';
license = lib.licenses.gpl2Plus;
- maintainers = [ lib.maintainers.viric ];
+ maintainers = [ ];
platforms = lib.platforms.unix;
mainProgram = "wakelan";
};
diff --git a/pkgs/tools/nix/nix-output-monitor/generated-package.nix b/pkgs/tools/nix/nix-output-monitor/generated-package.nix
index 35b1f473cb2d..4e76a5194107 100644
--- a/pkgs/tools/nix/nix-output-monitor/generated-package.nix
+++ b/pkgs/tools/nix/nix-output-monitor/generated-package.nix
@@ -9,10 +9,10 @@
}:
mkDerivation {
pname = "nix-output-monitor";
- version = "2.1.2";
+ version = "2.1.3";
src = fetchzip {
- url = "https://code.maralorn.de/maralorn/nix-output-monitor/archive/v2.1.2.tar.gz";
- sha256 = "192h67myibpc2bw5ng60qi4m9jyjd9cf14aba4ps44ayjw95wkc0";
+ url = "https://code.maralorn.de/maralorn/nix-output-monitor/archive/v2.1.3.tar.gz";
+ sha256 = "1xm40pp9lqj2hlwk3ds9zyjd4yqsis2a2ac5kn19z60glxvaijvx";
};
isLibrary = true;
isExecutable = true;
diff --git a/pkgs/tools/security/ccrypt/default.nix b/pkgs/tools/security/ccrypt/default.nix
index 9da5a6d42c55..d8fb66753269 100644
--- a/pkgs/tools/security/ccrypt/default.nix
+++ b/pkgs/tools/security/ccrypt/default.nix
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
homepage = "https://ccrypt.sourceforge.net/";
description = "Utility for encrypting and decrypting files and streams with AES-256";
license = lib.licenses.gpl2Plus;
- maintainers = with lib.maintainers; [viric];
+ maintainers = [ ];
platforms = with lib.platforms; all;
};
}
diff --git a/pkgs/tools/security/jwx/default.nix b/pkgs/tools/security/jwx/default.nix
index b1dbc25b0889..addd3f15bcb6 100644
--- a/pkgs/tools/security/jwx/default.nix
+++ b/pkgs/tools/security/jwx/default.nix
@@ -5,13 +5,13 @@
buildGoModule rec {
pname = "jwx";
- version = "2.1.0";
+ version = "2.1.1";
src = fetchFromGitHub {
owner = "lestrrat-go";
repo = pname;
rev = "v${version}";
- hash = "sha256-In9/RmcqiOFT1QceWls8gzgzgkBoKeUE05j0cHCecTU=";
+ hash = "sha256-cYNqe5BZJSYWD7XegVEm5prQjC6uX+JZtJ7AZdFbPu4=";
};
vendorHash = "sha256-ZS7xliFymXTE8hlc3GEMNonP5sJTZGirw5YQNzPCl3Y=";
diff --git a/pkgs/tools/security/trufflehog/default.nix b/pkgs/tools/security/trufflehog/default.nix
index d7aa4577fbc9..2e7f754cf369 100644
--- a/pkgs/tools/security/trufflehog/default.nix
+++ b/pkgs/tools/security/trufflehog/default.nix
@@ -8,16 +8,16 @@
buildGoModule rec {
pname = "trufflehog";
- version = "3.80.0";
+ version = "3.80.2";
src = fetchFromGitHub {
owner = "trufflesecurity";
repo = "trufflehog";
rev = "refs/tags/v${version}";
- hash = "sha256-ato5U/fmnOHuToGSXUNi1cbaWHNak7+3rpOZoQrAOfc=";
+ hash = "sha256-FiwUkBKh1g4NifF0O4hhZSnZExOw99R9ZX8ANaG9Ym8=";
};
- vendorHash = "sha256-Gw/xgfGa2992F0whtioaiKJN0MG+NExat1LIgXo/ec8=";
+ vendorHash = "sha256-uZ57v1yYH955zDKE7nfXkmroAzUPbO/7MVn9u9M5DKU=";
proxyVendor = true;
diff --git a/pkgs/tools/system/fakeroot/default.nix b/pkgs/tools/system/fakeroot/default.nix
index 8c98bc646d26..f4402a876588 100644
--- a/pkgs/tools/system/fakeroot/default.nix
+++ b/pkgs/tools/system/fakeroot/default.nix
@@ -79,7 +79,7 @@ stdenv.mkDerivation (finalAttrs: {
homepage = "https://salsa.debian.org/clint/fakeroot";
description = "Give a fake root environment through LD_PRELOAD";
license = lib.licenses.gpl2Plus;
- maintainers = with lib.maintainers; [viric];
+ maintainers = [ ];
platforms = lib.platforms.unix;
};
})
diff --git a/pkgs/tools/system/gt5/default.nix b/pkgs/tools/system/gt5/default.nix
index c62ff2c3a8db..68b0e3197162 100644
--- a/pkgs/tools/system/gt5/default.nix
+++ b/pkgs/tools/system/gt5/default.nix
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
description = "Diff-capable 'du' browser";
homepage = "https://gt5.sourceforge.net/";
license = lib.licenses.gpl2Plus;
- maintainers = with lib.maintainers; [viric];
+ maintainers = [ ];
platforms = with lib.platforms; all;
mainProgram = "gt5";
};
diff --git a/pkgs/tools/system/idle3tools/default.nix b/pkgs/tools/system/idle3tools/default.nix
index d66a7f9b66a8..9c87450e31e4 100644
--- a/pkgs/tools/system/idle3tools/default.nix
+++ b/pkgs/tools/system/idle3tools/default.nix
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
homepage = "https://idle3-tools.sourceforge.net/";
description = "Tool to get/set the infamous idle3 timer in WD HDDs";
license = lib.licenses.gpl3;
- maintainers = with lib.maintainers; [viric];
+ maintainers = [ ];
platforms = with lib.platforms; linux;
mainProgram = "idle3ctl";
};
diff --git a/pkgs/tools/system/rowhammer-test/default.nix b/pkgs/tools/system/rowhammer-test/default.nix
index f360697efbd3..c19f7a54f0dd 100644
--- a/pkgs/tools/system/rowhammer-test/default.nix
+++ b/pkgs/tools/system/rowhammer-test/default.nix
@@ -24,7 +24,7 @@ stdenv.mkDerivation {
description = "Test DRAM for bit flips caused by the rowhammer problem";
homepage = "https://github.com/google/rowhammer-test";
license = licenses.asl20;
- maintainers = [ maintainers.viric ];
+ maintainers = [ ];
platforms = [ "x86_64-linux" "i686-linux" ];
};
}
diff --git a/pkgs/tools/system/tm/default.nix b/pkgs/tools/system/tm/default.nix
index 129630596373..e7a08510ca7b 100644
--- a/pkgs/tools/system/tm/default.nix
+++ b/pkgs/tools/system/tm/default.nix
@@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
description = "Terminal mixer - multiplexer for the i/o of terminal applications";
homepage = "http://vicerveza.homeunix.net/~viric/soft/tm";
license = licenses.gpl2Plus;
- maintainers = with maintainers; [ viric ];
+ maintainers = [ ];
platforms = platforms.all;
mainProgram = "tm";
};
diff --git a/pkgs/tools/system/ts/default.nix b/pkgs/tools/system/ts/default.nix
index 26a8afa951af..2fa2c90800b9 100644
--- a/pkgs/tools/system/ts/default.nix
+++ b/pkgs/tools/system/ts/default.nix
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
homepage = "http://vicerveza.homeunix.net/~viric/soft/ts";
description = "Task spooler - batch queue";
license = licenses.gpl2Only;
- maintainers = with maintainers; [ viric ];
+ maintainers = [ ];
platforms = platforms.all;
mainProgram = "ts";
};
diff --git a/pkgs/tools/text/hck/default.nix b/pkgs/tools/text/hck/default.nix
index 1a8238059e4f..00adbdc6288b 100644
--- a/pkgs/tools/text/hck/default.nix
+++ b/pkgs/tools/text/hck/default.nix
@@ -6,16 +6,16 @@
rustPlatform.buildRustPackage rec {
pname = "hck";
- version = "0.10.0";
+ version = "0.10.1";
src = fetchFromGitHub {
owner = "sstadick";
repo = pname;
rev = "v${version}";
- hash = "sha256-L/jad3T89VFub0JBC/o/xc4RI+/tF0hbhZdSxmSs+lo=";
+ hash = "sha256-7a+gNnxr/OiM5MynOxOQ3hAprog7eAAZnMvi+5/gMzg=";
};
- cargoHash = "sha256-9v3yZNKBZ0XQkA7J50GH/Z4JQUQ48HnjNXr90ZBHXgI=";
+ cargoHash = "sha256-rGKD09YV+QqzZ1n6gYerjbpTr+4KJ5UzynDDRw5rnP0=";
nativeBuildInputs = [ cmake ];
diff --git a/pkgs/tools/text/mairix/default.nix b/pkgs/tools/text/mairix/default.nix
index 3528a054b291..459cc77243dc 100644
--- a/pkgs/tools/text/mairix/default.nix
+++ b/pkgs/tools/text/mairix/default.nix
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
license = lib.licenses.gpl2Plus;
description = "Program for indexing and searching email messages stored in maildir, MH or mbox";
mainProgram = "mairix";
- maintainers = with lib.maintainers; [viric];
+ maintainers = [ ];
platforms = with lib.platforms; all;
};
}
diff --git a/pkgs/tools/text/markdownlint-cli2/default.nix b/pkgs/tools/text/markdownlint-cli2/default.nix
index 90a4b871cbc1..d98d3a9f29c6 100644
--- a/pkgs/tools/text/markdownlint-cli2/default.nix
+++ b/pkgs/tools/text/markdownlint-cli2/default.nix
@@ -52,5 +52,6 @@ stdenvNoCC.mkDerivation (finalAttrs: {
homepage = "https://github.com/DavidAnson/markdownlint-cli2";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ natsukium ];
+ mainProgram = "markdownlint-cli2";
};
})
diff --git a/pkgs/tools/text/multitran/mtutils/default.nix b/pkgs/tools/text/multitran/mtutils/default.nix
index f37a8f1bd342..658daf9ce230 100644
--- a/pkgs/tools/text/multitran/mtutils/default.nix
+++ b/pkgs/tools/text/multitran/mtutils/default.nix
@@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
description = "Multitran: simple command line utilities for dictionary maintenance";
mainProgram = "mtquery";
license = lib.licenses.gpl2Only;
- maintainers = with lib.maintainers; [viric];
+ maintainers = [ ];
platforms = with lib.platforms; linux;
};
}
diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix
index c10305494b1d..35d8138fdfa4 100644
--- a/pkgs/top-level/aliases.nix
+++ b/pkgs/top-level/aliases.nix
@@ -1520,6 +1520,7 @@ mapAliases ({
wordpress6_1 = throw "'wordpress6_1' has been removed in favor of the latest version"; # Added 2023-10-10
wordpress6_2 = throw "'wordpress6_2' has been removed in favor of the latest version"; # Added 2023-10-10
wormhole-rs = magic-wormhole-rs; # Added 2022-05-30. preserve, reason: Arch package name, main binary name
+ wpa_supplicant_ro_ssids = lib.trivial.warn "Deprecated package: Please use wpa_supplicant instead. Read-only SSID patches are now upstream!" wpa_supplicant;
wrapLisp_old = throw "Lisp packages have been redesigned. See 'lisp-modules' in the nixpkgs manual."; # Added 2024-05-07
wmii_hg = wmii;
wrapGAppsHook = wrapGAppsHook3; # Added 2024-03-26
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index c2d6a4dc8fa9..38840ecf20b0 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -407,6 +407,10 @@ with pkgs;
c64-debugger = callPackage ../applications/emulators/c64-debugger { };
+ cameractrls-gtk4 = cameractrls.override { withGtk = 4; };
+
+ cameractrls-gtk3 = cameractrls.override { withGtk = 3; };
+
camunda-modeler = callPackage ../applications/misc/camunda-modeler { };
checkpointBuildTools = callPackage ../build-support/checkpoint-build.nix {};
@@ -6409,10 +6413,6 @@ with pkgs;
boltbrowser = callPackage ../tools/misc/boltbrowser { };
- bsc = callPackage ../tools/compression/bsc {
- inherit (llvmPackages) openmp;
- };
-
bzip2 = callPackage ../tools/compression/bzip2 { };
bzip2_1_1 = callPackage ../tools/compression/bzip2/1_1.nix { };
@@ -27722,10 +27722,6 @@ with pkgs;
wpa_supplicant = callPackage ../os-specific/linux/wpa_supplicant { };
- wpa_supplicant_ro_ssids = wpa_supplicant.override {
- readOnlyModeSSIDs = true;
- };
-
wpa_supplicant_gui = libsForQt5.callPackage ../os-specific/linux/wpa_supplicant/gui.nix { };
xf86_input_cmt = callPackage ../os-specific/linux/xf86-input-cmt { };
diff --git a/pkgs/top-level/python-aliases.nix b/pkgs/top-level/python-aliases.nix
index ce07a77d3750..9af93bd53e76 100644
--- a/pkgs/top-level/python-aliases.nix
+++ b/pkgs/top-level/python-aliases.nix
@@ -336,6 +336,7 @@ mapAliases ({
nose-randomly = throw "nose-randomly has been removed, it was archived and unmaintained since 2019"; # added 2024-05-22
nose-pattern-exclude = throw "nose-pattern-exclude has been removed as it has been unmaintained since 2014"; # added 2024-07-27
nose_progressive = throw "nose_progressive has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; #added 2023-02-21
+ nose-timer = throw "nose-timer has been removed as it depends on the abandoned nose test framework"; # added 2024-07-27
nose-warnings-filters = throw "nose-warnings-filters has been removed as it has been unmaintained since 2016"; # added 2024-07-27
nose_warnings_filters = nose-warnings-filters; # added 2024-01-07
notifymuch = throw "notifymuch has been promoted to a top-level attribute name: `pkgs.notifymuch`"; # added 2022-10-02
@@ -611,6 +612,7 @@ mapAliases ({
weakrefmethod = throw "weakrefmethod was removed since it's not needed in Python >= 3.4"; # added 2022-12-01
webapp2 = throw "webapp2 is unmaintained since 2012"; # added 2022-05-29
weboob = throw "weboob has been removed, please use woob instead"; # added 2024-07-27
+ webhelpers = throw "webhelpers has been removed because it is unmaintained and upstream is gone"; # added 2024-07-27
websocket_client = websocket-client; # added 2021-06-15
word2vec = throw "word2vec has been removed because it is abandoned"; # added 2023-05-22
wxPython_4_0 = throw "wxPython_4_0 has been removed, use wxpython instead"; # added 2023-03-19
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index 3612350a139c..43d0cf17b055 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -7242,6 +7242,8 @@ self: super: with self; {
losant-rest = callPackage ../development/python-modules/losant-rest { };
+ lottie = callPackage ../development/python-modules/lottie { };
+
lpc-checksum = callPackage ../development/python-modules/lpc-checksum { };
lrcalc-python = callPackage ../development/python-modules/lrcalc-python { };
@@ -9120,8 +9122,6 @@ self: super: with self; {
nose3 = callPackage ../development/python-modules/nose3 { };
- nose-timer = callPackage ../development/python-modules/nose-timer { };
-
nose-xunitmp = callPackage ../development/python-modules/nose-xunitmp { };
notebook = callPackage ../development/python-modules/notebook { };
@@ -9166,6 +9166,8 @@ self: super: with self; {
ntplib = callPackage ../development/python-modules/ntplib { };
+ nuclear = callPackage ../development/python-modules/nuclear { };
+
nuitka = callPackage ../development/python-modules/nuitka { };
nuheat = callPackage ../development/python-modules/nuheat { };
@@ -17194,6 +17196,8 @@ self: super: with self; {
wasmerPackages = pkgs.recurseIntoAttrs (callPackage ../development/python-modules/wasmer { });
inherit (self.wasmerPackages) wasmer wasmer-compiler-cranelift wasmer-compiler-llvm wasmer-compiler-singlepass;
+ wat = callPackage ../development/python-modules/wat { };
+
watchdog = callPackage ../development/python-modules/watchdog {
inherit (pkgs.darwin.apple_sdk.frameworks) CoreServices;
};
@@ -17260,8 +17264,6 @@ self: super: with self; {
webexteamssdk = callPackage ../development/python-modules/webexteamssdk { };
- webhelpers = callPackage ../development/python-modules/webhelpers { };
-
webob = callPackage ../development/python-modules/webob { };
webrtc-noise-gain = callPackage ../development/python-modules/webrtc-noise-gain { };
diff --git a/pkgs/top-level/release-lib.nix b/pkgs/top-level/release-lib.nix
index a1dcc3e9f334..e34cf4be25e8 100644
--- a/pkgs/top-level/release-lib.nix
+++ b/pkgs/top-level/release-lib.nix
@@ -119,7 +119,7 @@ let
/* The working or failing mails for cross builds will be sent only to
the following maintainers, as most package maintainers will not be
interested in the result of cross building a package. */
- crossMaintainers = [ maintainers.viric ];
+ crossMaintainers = [ ];
# Generate attributes for all supported systems.