diff --git a/nixos/modules/programs/chromium.nix b/nixos/modules/programs/chromium.nix index 8a1653318ab5..4b8bec33eb87 100644 --- a/nixos/modules/programs/chromium.nix +++ b/nixos/modules/programs/chromium.nix @@ -108,5 +108,8 @@ in # for google-chrome https://www.chromium.org/administrators/linux-quick-start environment.etc."opt/chrome/policies/managed/default.json".text = builtins.toJSON defaultProfile; environment.etc."opt/chrome/policies/managed/extra.json".text = builtins.toJSON cfg.extraOpts; + # for brave + environment.etc."brave/policies/managed/default.json".text = builtins.toJSON defaultProfile; + environment.etc."brave/policies/managed/extra.json".text = builtins.toJSON cfg.extraOpts; }; } diff --git a/nixos/tests/emacs-daemon.nix b/nixos/tests/emacs-daemon.nix index d53031a67f62..310e93e19b0b 100644 --- a/nixos/tests/emacs-daemon.nix +++ b/nixos/tests/emacs-daemon.nix @@ -33,7 +33,7 @@ import ./make-test-python.nix ({ pkgs, ...} : { ) # connects to the daemon - machine.succeed("emacsclient --create-frame $EDITOR >&2 &") + machine.succeed("emacsclient --no-wait --frame-parameters='((display . \"'\"$DISPLAY\"'\"))' --create-frame $EDITOR >&2") # checks that Emacs shows the edited filename machine.wait_for_text("emacseditor") diff --git a/pkgs/applications/editors/emacs/27.nix b/pkgs/applications/editors/emacs/27.nix deleted file mode 100644 index 064231b24565..000000000000 --- a/pkgs/applications/editors/emacs/27.nix +++ /dev/null @@ -1,16 +0,0 @@ -import ./generic.nix (rec { - version = "27.2"; - sha256 = "sha256-tKfMTnjmPzeGJOCRkhW5EK9bsqCvyBn60pgnLp9Awbk="; - patches = fetchpatch: [ - (fetchpatch { - name = "fix-aarch64-darwin-triplet.patch"; - url = "https://git.savannah.gnu.org/cgit/emacs.git/patch/?id=a88f63500e475f842e5fbdd9abba4ce122cdb082"; - sha256 = "sha256-RF9b5PojFUAjh2TDUW4+HaWveV30Spy1iAXhaWf1ZVg="; - }) - # glibc 2.34 compat - (fetchpatch { - url = "https://src.fedoraproject.org/rpms/emacs/raw/181aafcdb7ee2fded9fce4cfc448f27edccc927f/f/emacs-glibc-2.34.patch"; - sha256 = "sha256-2o3C/jhZPl2OW/LmVPt/fhdwbS9NOdF9lVEF1Kn9aEk="; - }) - ]; -}) diff --git a/pkgs/applications/editors/emacs/28.nix b/pkgs/applications/editors/emacs/28.nix new file mode 100644 index 000000000000..e66917ab93f0 --- /dev/null +++ b/pkgs/applications/editors/emacs/28.nix @@ -0,0 +1,5 @@ +import ./generic.nix (rec { + version = "28.1"; + sha256 = "sha256-KLGz0JkDegiPCkyiUdfnJi6rXqFneqv/psRCaWGtdeE="; + patches = _: [ ]; +}) diff --git a/pkgs/applications/editors/emacs/at-fdcwd.patch b/pkgs/applications/editors/emacs/at-fdcwd.patch deleted file mode 100644 index 2d8099b73736..000000000000 --- a/pkgs/applications/editors/emacs/at-fdcwd.patch +++ /dev/null @@ -1,15 +0,0 @@ -diff --git a/lib/careadlinkat.h b/lib/careadlinkat.h -index 84ede3e..8e8f42e 100644 ---- a/lib/careadlinkat.h -+++ b/lib/careadlinkat.h -@@ -23,6 +23,10 @@ - #include - #include - -+#ifndef AT_FDCWD -+#define AT_FDCWD -2 -+#endif -+ - struct allocator; - - /* Assuming the current directory is FD, get the symbolic link value diff --git a/pkgs/applications/editors/emacs/generic.nix b/pkgs/applications/editors/emacs/generic.nix index 82a1d6af8329..a7345b1decfa 100644 --- a/pkgs/applications/editors/emacs/generic.nix +++ b/pkgs/applications/editors/emacs/generic.nix @@ -11,7 +11,7 @@ , libtiff, librsvg, gconf, libxml2, imagemagick, gnutls, libselinux , alsa-lib, cairo, acl, gpm, AppKit, GSS, ImageIO, m17n_lib, libotf , sigtool, jansson, harfbuzz, sqlite, nixosTests -, dontRecurseIntoAttrs ,emacsPackagesFor +, dontRecurseIntoAttrs, emacsPackagesFor , libgccjit, targetPlatform, makeWrapper # native-comp params , systemd ? null , withX ? !stdenv.isDarwin diff --git a/pkgs/applications/editors/vim/plugins/overrides.nix b/pkgs/applications/editors/vim/plugins/overrides.nix index 8b55c1706939..db7da93649e8 100644 --- a/pkgs/applications/editors/vim/plugins/overrides.nix +++ b/pkgs/applications/editors/vim/plugins/overrides.nix @@ -1116,6 +1116,7 @@ self: super: { "coc-emmet" "coc-eslint" "coc-explorer" + "coc-flutter" "coc-git" "coc-go" "coc-highlight" diff --git a/pkgs/applications/misc/stork/default.nix b/pkgs/applications/misc/stork/default.nix index 48e2859fa849..b65dad473590 100644 --- a/pkgs/applications/misc/stork/default.nix +++ b/pkgs/applications/misc/stork/default.nix @@ -9,16 +9,16 @@ rustPlatform.buildRustPackage rec { pname = "stork"; - version = "1.4.1"; + version = "1.4.2"; src = fetchFromGitHub { owner = "jameslittle230"; repo = "stork"; rev = "v${version}"; - sha256 = "sha256-aBsxRLUufVUauySCxZKk/ZfcU/5KR7jOHmnx6mHmsFs="; + sha256 = "sha256-itjRJLbRTwovK+HcNEzwViEDTJ1MoRRTvZD412XYVKk="; }; - cargoSha256 = "sha256-oNoWGdXYfp47IpqU1twbORPOYrHjArNf43Zyeyat4Xs="; + cargoSha256 = "sha256-GaYdgC3Bf759ZPcZxoFG0nmCSz7aNHuqtyid6RS8Ui8="; nativeBuildInputs = [ pkg-config ]; diff --git a/pkgs/applications/misc/xmrig/moneroocean.nix b/pkgs/applications/misc/xmrig/moneroocean.nix index 25f27bd5063a..2c69a3960f70 100644 --- a/pkgs/applications/misc/xmrig/moneroocean.nix +++ b/pkgs/applications/misc/xmrig/moneroocean.nix @@ -2,13 +2,13 @@ xmrig.overrideAttrs (oldAttrs: rec { pname = "xmrig-mo"; - version = "6.16.4-mo1"; + version = "6.16.5-mo1"; src = fetchFromGitHub { owner = "MoneroOcean"; repo = "xmrig"; rev = "v${version}"; - sha256 = "sha256-OnKz/Sl/b0wpZ1tqeEXhNxNNmQJXBhv5YNnKu9aOVZA="; + sha256 = "sha256-TNiHvRLS+eAPHa+qbnVSAyWTPGJxdp9eheQamd4i24E="; }; meta = with lib; { diff --git a/pkgs/applications/networking/browsers/firefox-bin/devedition_sources.nix b/pkgs/applications/networking/browsers/firefox-bin/devedition_sources.nix index b6c6976bbb90..a294a8708059 100644 --- a/pkgs/applications/networking/browsers/firefox-bin/devedition_sources.nix +++ b/pkgs/applications/networking/browsers/firefox-bin/devedition_sources.nix @@ -1,985 +1,985 @@ { - version = "100.0b5"; + version = "100.0b6"; sources = [ - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/ach/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/ach/firefox-100.0b6.tar.bz2"; locale = "ach"; arch = "linux-x86_64"; - sha256 = "fb1b570f098ca5d80f41f14ada1f7ad6dc43e5e1c6984e1fca29cfd275dabded"; + sha256 = "6b5ac2e733e44616405f31b16bc995f945740477d00988ce5dd4f16c4ec74085"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/af/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/af/firefox-100.0b6.tar.bz2"; locale = "af"; arch = "linux-x86_64"; - sha256 = "31322e6c45045322977b5d240350e0e4740f9c48174b719553410fea3212f475"; + sha256 = "5b25ad2870b33002060f493368f79921046f5b19e4adf0c5e1836b7d00347790"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/an/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/an/firefox-100.0b6.tar.bz2"; locale = "an"; arch = "linux-x86_64"; - sha256 = "137eb68b647af950362682646f7edf754bfb51a03b20f59b777f877b3ef003c2"; + sha256 = "9fc4a88d9216ba0b5979e939092314f135da9e33a3d8df7cadcf142f19b0b71f"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/ar/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/ar/firefox-100.0b6.tar.bz2"; locale = "ar"; arch = "linux-x86_64"; - sha256 = "22d24c6bad9ce2ded7634449fbc5d0bcdd4972aac15f60e04cf963ab0ee252bd"; + sha256 = "23f33752d3df64ee98cdbdc569b8cb4cea2dbbae71810a3a14a82a6361f97b9e"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/ast/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/ast/firefox-100.0b6.tar.bz2"; locale = "ast"; arch = "linux-x86_64"; - sha256 = "e8a2e7ea146efe41105d84a667568662d029a9773855ae31768ba9c14abbdde7"; + sha256 = "a5d357ed9b58fe0a2b7c95e24cb18659c7aee29cb1cda0071b7afdee9c3ac9eb"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/az/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/az/firefox-100.0b6.tar.bz2"; locale = "az"; arch = "linux-x86_64"; - sha256 = "34d76711bdc45cc45650cb4c94e553f67579be3f406c391c9878cb6de1c39bb5"; + sha256 = "1191a7c0a3222d55a605bbb5f25d064414d08b9bfb6dc6ad74dd1de357177701"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/be/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/be/firefox-100.0b6.tar.bz2"; locale = "be"; arch = "linux-x86_64"; - sha256 = "fdd4d1cea3b71f54b58230a30c744d2ff7b0237869fd14e617ba3322c2d59f6f"; + sha256 = "69445ca3cf31d63162ddd0aab1538655a08e325aad57a3d343ac310193a942a3"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/bg/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/bg/firefox-100.0b6.tar.bz2"; locale = "bg"; arch = "linux-x86_64"; - sha256 = "e63e65a92f73a31d2adac6a0c1b6dc45f38425ed8596039332108565de43daa6"; + sha256 = "f2ff0a6bf22b9ed16b0656d4e0848c509cee2de9a638d556500909e1352ae5b3"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/bn/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/bn/firefox-100.0b6.tar.bz2"; locale = "bn"; arch = "linux-x86_64"; - sha256 = "29fbffaeb7bd8750cf1fb543692855d427200d7df6e9ca92224bd96103b06b35"; + sha256 = "1fbfdb8d6f22567eb1112c63ab6192cb439b9d2cd5e57c10401c76f9f9cd215b"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/br/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/br/firefox-100.0b6.tar.bz2"; locale = "br"; arch = "linux-x86_64"; - sha256 = "3c1bc8cace7f4d2c7522fc9dd994c42707ca4d54b74ead88726c8e83862c3757"; + sha256 = "e05895d70c72aadcb77dc6d84a6a054a8410b29e05d5da6eeac0fdee1b66b130"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/bs/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/bs/firefox-100.0b6.tar.bz2"; locale = "bs"; arch = "linux-x86_64"; - sha256 = "3e6c94efea22c4bd2620225e8a339689e3e4f642d474f4580092a85d7c4a4950"; + sha256 = "ba125689cbd845e9bf8df940bbfd0796326939ba9b45d4bc0c0a8ddf64dd6f61"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/ca-valencia/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/ca-valencia/firefox-100.0b6.tar.bz2"; locale = "ca-valencia"; arch = "linux-x86_64"; - sha256 = "485b33fe034acd03412b3407338cd246077209fc1ccd566f2ac9d347c8da6308"; + sha256 = "37a5ba26d10cbc2aa8222a2f19133a12710adeb389234ff53a91b43ddd5e901a"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/ca/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/ca/firefox-100.0b6.tar.bz2"; locale = "ca"; arch = "linux-x86_64"; - sha256 = "a0b2780c0a634c85a9dbdc00b6952c81b503c3173d2c2cb9df5d9c5958ab640c"; + sha256 = "5f11f3a11b93f06235981200b690cb9aaf95ed8d459ea8e1d6ac7c6a73d9d9e4"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/cak/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/cak/firefox-100.0b6.tar.bz2"; locale = "cak"; arch = "linux-x86_64"; - sha256 = "360abc1da779874423792e63b545343aaeb3984201193c687c3c8b67b67cecb1"; + sha256 = "1d4a103b8c2c601b908a635d2b5edaec068c1a2e644e1924022a94e57e1b2f6a"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/cs/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/cs/firefox-100.0b6.tar.bz2"; locale = "cs"; arch = "linux-x86_64"; - sha256 = "1dc722b7931908a38f43254aa1c1c78fb77ee30868c15455c0448927e658613d"; + sha256 = "358b2c3c3c5a9945b35f1c71eadaf7d5305d214ecfe37fda811fd37d326dfd35"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/cy/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/cy/firefox-100.0b6.tar.bz2"; locale = "cy"; arch = "linux-x86_64"; - sha256 = "55eba066d11752cbf973312d55568e51b720f21e66bf590adadbe93be386e989"; + sha256 = "bcbab842e30d22f7d646d2494451e0e676c40c16c1e3532b4c6cd6eb501fb7c2"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/da/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/da/firefox-100.0b6.tar.bz2"; locale = "da"; arch = "linux-x86_64"; - sha256 = "cc3fa0c0ef8a1af9f8bb78e7196c5cc7a6c6df2d9f25c5fe8d79f47879354331"; + sha256 = "3b462ea57616171ebe43e218d7fbcc8c45d508fa2b91490d5b107842bf936d25"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/de/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/de/firefox-100.0b6.tar.bz2"; locale = "de"; arch = "linux-x86_64"; - sha256 = "b745aa34eca890302b701be19bdd3affcba37e7b1af388e4844ce61c3a1244fb"; + sha256 = "067a586989c84a280366c6021daf270652d443465b63d03e0fb9ff02eeb3f3ee"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/dsb/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/dsb/firefox-100.0b6.tar.bz2"; locale = "dsb"; arch = "linux-x86_64"; - sha256 = "e7a4c1390919cfd01fe13f5a81ce35fbdf0868c725783d603c7d2e210e3ba368"; + sha256 = "42621cd070dc172b08bdce256c91d6faeede97b116b353f1edf2354c0e37ec3a"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/el/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/el/firefox-100.0b6.tar.bz2"; locale = "el"; arch = "linux-x86_64"; - sha256 = "6f0b80919e22ec67f80c7c034fdd9e290cf2ec442ae828a706e780df2ec54d90"; + sha256 = "f079ccc06590277ccf09d4e34b73d3b363d79651d6e2a07d7e127a42ab552bac"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/en-CA/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/en-CA/firefox-100.0b6.tar.bz2"; locale = "en-CA"; arch = "linux-x86_64"; - sha256 = "0184e33ff9582a77a5f9d61f1904f3cd097feda7576aaa276480eff92dfcb4de"; + sha256 = "e3f239da659c77662a10ba061f806d615f9a57fe89d1207ac04cacc603a9a587"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/en-GB/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/en-GB/firefox-100.0b6.tar.bz2"; locale = "en-GB"; arch = "linux-x86_64"; - sha256 = "b5affd31a9004c9161d6a55cb713999932b18f1340ce67d0e7f77b0c805ca785"; + sha256 = "e41640386bbceef99290458576da3272ea400e78641cbae73ece0e07045396ab"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/en-US/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/en-US/firefox-100.0b6.tar.bz2"; locale = "en-US"; arch = "linux-x86_64"; - sha256 = "635c5b79c514b9b7717c903cdabc2f6bf3f19cb9689354dc33f21cc8eed3d540"; + sha256 = "7f5888e7c0480f4f1626943f1878945166179ab94d995e23d0b8f5eb9d83ab4e"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/eo/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/eo/firefox-100.0b6.tar.bz2"; locale = "eo"; arch = "linux-x86_64"; - sha256 = "9e4a718c0932688ece8883fd2fa2d175c3483d73ac16075d8efa0e6758f4cf61"; + sha256 = "6c07749b176c7c533a824357da81a42ef10fc78f09b58e7a090d3e36fd77a6d5"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/es-AR/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/es-AR/firefox-100.0b6.tar.bz2"; locale = "es-AR"; arch = "linux-x86_64"; - sha256 = "3bc0ce89dc3ab79108bf527fccc9aa9663f61e6578b2561fc7e1950dcaaed1db"; + sha256 = "2d23cfea40e6948fd330b2e72f40edab597e5261fb9abcbd539d0b9f513fd946"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/es-CL/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/es-CL/firefox-100.0b6.tar.bz2"; locale = "es-CL"; arch = "linux-x86_64"; - sha256 = "966db10e384f875272ffcdb743c472a78a75a95e0990a32fb16fe2b8d5a70761"; + sha256 = "eef75de09e6fa7d21ca4aa799ea4b279dcdeefa79d9b4ef7f3b5266c90c2a8ff"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/es-ES/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/es-ES/firefox-100.0b6.tar.bz2"; locale = "es-ES"; arch = "linux-x86_64"; - sha256 = "8b23f6957fb0825b973c4ab59c80ffdfeb8370a72a291ebec6ae7abff1ca3392"; + sha256 = "31d985ab2af1ba15fc6b41580fed4a06fa33fb8cf3dfcf96b1a5ea4e361058f5"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/es-MX/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/es-MX/firefox-100.0b6.tar.bz2"; locale = "es-MX"; arch = "linux-x86_64"; - sha256 = "75102ce28fbb425fb0c13dccfdbc5095c1c92c4dd83e14140bd672fe60547603"; + sha256 = "1fdc9e77eadf9abb55224bf0db1e555eb99f4a7c525f6021fe226ea7de9db026"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/et/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/et/firefox-100.0b6.tar.bz2"; locale = "et"; arch = "linux-x86_64"; - sha256 = "ab7d6e1294e49e83307bac9541b15163263bc15693fd0845c335e523e5420623"; + sha256 = "2df8328fcf9f10b84b2110f31ec32a5dce7054845c37f7e30b023daee4701322"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/eu/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/eu/firefox-100.0b6.tar.bz2"; locale = "eu"; arch = "linux-x86_64"; - sha256 = "6defedc5c4faacc9765a1d26352d9d8f30f895a6ec5bad1c3ed7c3d98ec42e16"; + sha256 = "30037fbdb33703b894bb0e33b192d23aa1b67ab9b944b1381d27f95e0c44bdf9"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/fa/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/fa/firefox-100.0b6.tar.bz2"; locale = "fa"; arch = "linux-x86_64"; - sha256 = "0fe1b25b3b970e04980ca729a6630648b0923b98fd00bc81a4553235d741a6c6"; + sha256 = "37af6700e54f98541fe1f703c13ccad70a72bb7e28200762bf636bd3494b443d"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/ff/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/ff/firefox-100.0b6.tar.bz2"; locale = "ff"; arch = "linux-x86_64"; - sha256 = "e8ad5c7403928bfa5e34c6bbb8958730dba8dcc6d799c9a7676d82440b8f1ab8"; + sha256 = "3612950e42cf9532bb5be99f9f73e2f6b480c58570b1092f8eb337aba1257234"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/fi/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/fi/firefox-100.0b6.tar.bz2"; locale = "fi"; arch = "linux-x86_64"; - sha256 = "37e8619971dffc7c6caa43cf72f5870c5d5d1ed489bf8a3596215f285f17fa1a"; + sha256 = "a8a2bace3af643c6b82bdfb043f90d4cd6ec10abfed6ada230786ef7eaaf9ee4"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/fr/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/fr/firefox-100.0b6.tar.bz2"; locale = "fr"; arch = "linux-x86_64"; - sha256 = "90c21cec994d7fa1c4ffa6512c448a4948be5eb5d318a0f6c4ae6d6b6f801780"; + sha256 = "296f91da1aec6481bdfecf311db4560268082d6f75f0354c6b09ab64494c211c"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/fy-NL/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/fy-NL/firefox-100.0b6.tar.bz2"; locale = "fy-NL"; arch = "linux-x86_64"; - sha256 = "c12a1b475b4d611d4083bb11d7384573817aef22796e91c7df968b7d6d726133"; + sha256 = "3bdd5b38483c8a8fdab13767ad8f38d60e9c12359740d8017ec8a7a83338e99d"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/ga-IE/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/ga-IE/firefox-100.0b6.tar.bz2"; locale = "ga-IE"; arch = "linux-x86_64"; - sha256 = "fcdf90dbd66c1c87e7f8b25d820c5c866f0d905bbe424a8b6d8c27e7cbef5677"; + sha256 = "5f734b553ce52eaa91bc3ee1ac2afea09aefb35e886ba68d56cf3b1e55dfbebc"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/gd/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/gd/firefox-100.0b6.tar.bz2"; locale = "gd"; arch = "linux-x86_64"; - sha256 = "bfbeca59a046bffa5156621946c397884998fbd383085fab5159ae775db9cc9f"; + sha256 = "c2b3ef9590646143e48ffebc75d7f9c4a688ae0d3c3a648683a5f7a02aaee74c"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/gl/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/gl/firefox-100.0b6.tar.bz2"; locale = "gl"; arch = "linux-x86_64"; - sha256 = "c0f1de5a454ae0f8df7407d08394f73cf8e09f39342288d6670d4c0b8adf2e77"; + sha256 = "513ca5b29b690986d0aef335cb98406d599a18ee44ed2b8fdf7687ff3dc87ba2"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/gn/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/gn/firefox-100.0b6.tar.bz2"; locale = "gn"; arch = "linux-x86_64"; - sha256 = "5e177db13df6f5195603d8d2acb92dccdf2989fdb721e6ef6b758120f2efff75"; + sha256 = "4a5974953f144ffff20a946073aa8891225d80e3dcc405d0230bc601973e8634"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/gu-IN/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/gu-IN/firefox-100.0b6.tar.bz2"; locale = "gu-IN"; arch = "linux-x86_64"; - sha256 = "748aedc09ffe44b4f8223456afbfb43901b492ff401c6ff39127ff4267ce6123"; + sha256 = "a2e780ccad66a9a741551b5f7425be3e91f5a225a50e39ebf5770808fac484d7"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/he/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/he/firefox-100.0b6.tar.bz2"; locale = "he"; arch = "linux-x86_64"; - sha256 = "91c1abfed2e942c076c6b0068edd2dca02e496321fbd79fdd39c7c2dbe7c5c2a"; + sha256 = "093fef7512fc82efe8aaef9108bf84ab7a9730e2fa94b8092206c0804068bcd5"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/hi-IN/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/hi-IN/firefox-100.0b6.tar.bz2"; locale = "hi-IN"; arch = "linux-x86_64"; - sha256 = "4e13080d458b980cac72cdda1f40a786db926b494fc905eab71cf3535f5383ea"; + sha256 = "1b6955622ff8fda11d439dcb4f425a3d84c16c49ee30b1e6eb246555fa07bd09"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/hr/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/hr/firefox-100.0b6.tar.bz2"; locale = "hr"; arch = "linux-x86_64"; - sha256 = "583c5a5f6aa0e328c57c303ba97d1bdfc0a2a959485560d27aa2e906a0deeb8e"; + sha256 = "571c7bc2b25002094425eaa8878aaa4b339027a5932d5a073b23fa7d3cf9c945"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/hsb/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/hsb/firefox-100.0b6.tar.bz2"; locale = "hsb"; arch = "linux-x86_64"; - sha256 = "d8c10888b1e3735fce5d1213322f62732b030919ff4b5df70d12d934d348e91c"; + sha256 = "7443ddc6143f466712de34ebffb4d41633aec8c0d7b253c3008f68b600a59b3c"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/hu/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/hu/firefox-100.0b6.tar.bz2"; locale = "hu"; arch = "linux-x86_64"; - sha256 = "4133206571188244ddf17b96d287d5683fbfeffe2cdd5b2c8ee63fb7db56e3c2"; + sha256 = "7413002d74a0c2a0dbc19f783e84fb79a71c73fb28034ad4894a7d64d1745b03"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/hy-AM/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/hy-AM/firefox-100.0b6.tar.bz2"; locale = "hy-AM"; arch = "linux-x86_64"; - sha256 = "7326ae0a0d0a0afc40f6aa8b0b1506dbe7ead006c641eed4812e63bbb58bdb82"; + sha256 = "a8169b877a7f2e85bbf363c5f0b6a05b28f2aa948689535b2b608cdb8d4c5af5"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/ia/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/ia/firefox-100.0b6.tar.bz2"; locale = "ia"; arch = "linux-x86_64"; - sha256 = "e61cc178ec2a648c0bb229e5145d8755343427388911bc6386fae77a5ecfae5e"; + sha256 = "54245a95072f8b98a6d556ccb79547d56291b9f915f7e5723f49ff97a1bc1098"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/id/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/id/firefox-100.0b6.tar.bz2"; locale = "id"; arch = "linux-x86_64"; - sha256 = "0ac90236941c9a0a5f17e2e5e96ee14c0ef6d5e5645566bc09cb9023359db882"; + sha256 = "43fb95f81026dfae3b889d085b2584cbee7f6b1bec6edd0378d3965b056f8c8b"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/is/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/is/firefox-100.0b6.tar.bz2"; locale = "is"; arch = "linux-x86_64"; - sha256 = "b1efef91567c6b1d52b5fcccf9fbb3c3f81b05929242ebc68168c4712e47c3b5"; + sha256 = "79e94ad99e19f325915231ce35fa741ed617c5595d5a2d1233ff0b2f2cf20733"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/it/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/it/firefox-100.0b6.tar.bz2"; locale = "it"; arch = "linux-x86_64"; - sha256 = "33e8282f6b1b3a9e404374f93eb6207c3110177fdc11c831469fa721c6669d93"; + sha256 = "0f2147837a3b3d90cddd387125a8579cc576e1613a520fab8265de36ba1039c2"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/ja/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/ja/firefox-100.0b6.tar.bz2"; locale = "ja"; arch = "linux-x86_64"; - sha256 = "ad13269606214cc9fa7d05037db3c6ecb192a5bcc06872aa487b023c2823862d"; + sha256 = "b755262db8331612cc447c6c5c944374338cd7d52fad732803c1b2d3b8744921"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/ka/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/ka/firefox-100.0b6.tar.bz2"; locale = "ka"; arch = "linux-x86_64"; - sha256 = "42b97eab01d92ad491e744890fe6984af4f435ce96595c5dd7bed02f6f5ff369"; + sha256 = "3dffe30c39f3fee7ef4fdd0f02e619a79f1d67eb3b49efdf35838090e0c03bd9"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/kab/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/kab/firefox-100.0b6.tar.bz2"; locale = "kab"; arch = "linux-x86_64"; - sha256 = "64c9abf3921fcf698ed5cda9724884f2e3c1ad8651cbdf9a9fbebf2d8ca930fe"; + sha256 = "c675eaf355c484362f3b9586a30eac9362452f548d90fa8f70ede88f33f7b30f"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/kk/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/kk/firefox-100.0b6.tar.bz2"; locale = "kk"; arch = "linux-x86_64"; - sha256 = "9f4546b31322c74e76b13e4557bc412d5d75adddbba16f4e0b0ca8badc81f83f"; + sha256 = "cefa5aed2f200c3ebb263695c4192fd16b73861edb20085e956332f9f9c009ab"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/km/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/km/firefox-100.0b6.tar.bz2"; locale = "km"; arch = "linux-x86_64"; - sha256 = "daac53a85b255ad6b491efa2c4d021c0aa91f927e3a5f0fb0d1462ae473a9daf"; + sha256 = "02f6a77a412311af0ea581fafa12826bec93c333c14ff6d1f9da0dd783c8aa0d"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/kn/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/kn/firefox-100.0b6.tar.bz2"; locale = "kn"; arch = "linux-x86_64"; - sha256 = "20b8072ddf8fc07f5095ad97464fe0b84b10215fa02bdd9a31254a92c12541a9"; + sha256 = "e6dedf44d9a0f1a8d379b8f07add326581b06223b335935f81f7c9a442bac2b0"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/ko/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/ko/firefox-100.0b6.tar.bz2"; locale = "ko"; arch = "linux-x86_64"; - sha256 = "29be35485bf287596145f26602aac5a520d7e980f3012b564a297e13b83bf489"; + sha256 = "022550ce534cdf4ba489bbcd553052c535fb0ee908155b728718619f33f95630"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/lij/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/lij/firefox-100.0b6.tar.bz2"; locale = "lij"; arch = "linux-x86_64"; - sha256 = "7023d002cc4a7081eccbd5f061bbfe295f1856ed39724be4228e727119bc0a57"; + sha256 = "f2e075a6ef35fd8c802cd929f9c81043d9221f947269ca13be695b58edd603b8"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/lt/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/lt/firefox-100.0b6.tar.bz2"; locale = "lt"; arch = "linux-x86_64"; - sha256 = "d121af78fa8bddf3825a89e751d37f12ea7c7513f331e015b0a951efedd80609"; + sha256 = "4ac54a885a81db97df5940cac5429c59442de591fba560c9608cc0f9ba1df74d"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/lv/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/lv/firefox-100.0b6.tar.bz2"; locale = "lv"; arch = "linux-x86_64"; - sha256 = "3f4a005f6ba7b09766f9a9d0186c0d5c82049be965e40f58eaa9c0474fb9d5e0"; + sha256 = "413dee96d7535b5a276a34871db10b37ae9b6ed233df8a81db0d9080b1cc2ae9"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/mk/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/mk/firefox-100.0b6.tar.bz2"; locale = "mk"; arch = "linux-x86_64"; - sha256 = "d1e7703d77584b93261676bb4e5e15a9df0953012392cc52636bafad697bfda8"; + sha256 = "9fa2653fb6cbd77e874b1306c9c070097c4728deec0972edf9b7b03aa79a2b9d"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/mr/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/mr/firefox-100.0b6.tar.bz2"; locale = "mr"; arch = "linux-x86_64"; - sha256 = "e7dcd45869323e949baed0e6e561a3051439e190ab3927d59af1008973e58f9b"; + sha256 = "e26dc9319727f9f7c0fb98efae44d89228499b52edda8f02328586bfae4c79a5"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/ms/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/ms/firefox-100.0b6.tar.bz2"; locale = "ms"; arch = "linux-x86_64"; - sha256 = "bb605564c51282e7c5c48150fa61196374b77c2de48c394f4c887c2bd0456f11"; + sha256 = "0001655c4a42a6c113f428315200b5cd1eee08cc417fd82464db87c322f5e949"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/my/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/my/firefox-100.0b6.tar.bz2"; locale = "my"; arch = "linux-x86_64"; - sha256 = "9c0bec027eaad1ce4e2e6abeb35e62276805fd49ef818ddc67fd826c8a95f93e"; + sha256 = "78fcac093123a0b4b6ebffb1e9f10ee5906d526b96d5be1b249a1e60acc4fcb9"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/nb-NO/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/nb-NO/firefox-100.0b6.tar.bz2"; locale = "nb-NO"; arch = "linux-x86_64"; - sha256 = "141aec935cb203578e819481b9548e29212c29c94a6c60dd79bad0f676633cd9"; + sha256 = "6c218dc369434feb3ff30840cd940c19e10d3e900325246445fdb7113c22c284"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/ne-NP/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/ne-NP/firefox-100.0b6.tar.bz2"; locale = "ne-NP"; arch = "linux-x86_64"; - sha256 = "5d3e083b078496ca6fa34960a3e480baa69b582bb737fbcded6a119c9216c0b5"; + sha256 = "9a1a9a2380ebc3da9035066bb212b14b1b8bb6fb80feb6ed220cad1a3969ca6b"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/nl/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/nl/firefox-100.0b6.tar.bz2"; locale = "nl"; arch = "linux-x86_64"; - sha256 = "f7a8257d2c2cd266e46db87b6ebd8a7530a486d503760baee3d7ab655dc5e7d2"; + sha256 = "6ff75975cb1ba028e78aad213837b17fe0b06e5f522996b3b9cd450beab24b51"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/nn-NO/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/nn-NO/firefox-100.0b6.tar.bz2"; locale = "nn-NO"; arch = "linux-x86_64"; - sha256 = "30ec48d85ebccfc9314cb642a8171d5ce98dbd0ab102f6ec00cbff2d26163d0e"; + sha256 = "911e765ba62cfc8d69d7e4d68f1a5d44a1b311400731a3593e98ad72516c47dd"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/oc/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/oc/firefox-100.0b6.tar.bz2"; locale = "oc"; arch = "linux-x86_64"; - sha256 = "4d580c477ef3dab1f217114b24486d29df4ce022fa444b013a296603c3ff5936"; + sha256 = "23341acf2319454172a718a0123fa15bc9367028984449c7a2cdb50644a618b7"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/pa-IN/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/pa-IN/firefox-100.0b6.tar.bz2"; locale = "pa-IN"; arch = "linux-x86_64"; - sha256 = "02953120d3becd386ce8551fd4f97e1da930b7778906096fda8d79340e53230f"; + sha256 = "bae2060e37bd636ffdab3d3f84b73078c4dc78d7ec7eb7bb9504be4dbc3398bb"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/pl/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/pl/firefox-100.0b6.tar.bz2"; locale = "pl"; arch = "linux-x86_64"; - sha256 = "362c1d650bf4613e46384ba5837daa80a790b504fedc254c8af7cc146127fe1d"; + sha256 = "cc397c80e75d00507fa6e170ec43df337450796c829e44d518523b871e33f585"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/pt-BR/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/pt-BR/firefox-100.0b6.tar.bz2"; locale = "pt-BR"; arch = "linux-x86_64"; - sha256 = "38ec5f6aeb156437f2925df9f1e5135bfa9d85e55d570548c56770334fe09bb1"; + sha256 = "2bcb44821f106ad7478fe7b61c7952c20be135a2efe1185d91123930729f78a4"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/pt-PT/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/pt-PT/firefox-100.0b6.tar.bz2"; locale = "pt-PT"; arch = "linux-x86_64"; - sha256 = "9cfcd7212cd3531ee0694cc58653a53acd211494705f1d3040bbf03b4bb537f3"; + sha256 = "7f4c5713972e5bca35b891bd850fd90fcf60d254ebc15435e5b814a212428b44"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/rm/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/rm/firefox-100.0b6.tar.bz2"; locale = "rm"; arch = "linux-x86_64"; - sha256 = "ffce43f1c388618b53abaec130e288210cdb1361af512eedf0780d591e7ccffe"; + sha256 = "67316b932226848b73a95687e6d218983d8056a966771c3bf16344f158578a53"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/ro/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/ro/firefox-100.0b6.tar.bz2"; locale = "ro"; arch = "linux-x86_64"; - sha256 = "62bbfeb4a6692c25a1a2a0eb5e790e262e0141dcb74056cb55dc5e7e4a958954"; + sha256 = "7e61a6ce962f1ae0a74ff7a29b6edd7106fe95e4c2df399c22a17f1cf4d0dde9"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/ru/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/ru/firefox-100.0b6.tar.bz2"; locale = "ru"; arch = "linux-x86_64"; - sha256 = "0acf8d6c81c1704a67c9b7b9542ac6f1bd0b929cd0f0814b84cf64a46cc38107"; + sha256 = "bcad404db75ebac101f503fb793572ac010219f41c6716d33cec0552821bb281"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/sco/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/sco/firefox-100.0b6.tar.bz2"; locale = "sco"; arch = "linux-x86_64"; - sha256 = "fc172346729982645acf975a7fba8e045eb81755540faf3eea9699a7474e4ab5"; + sha256 = "4b01c6ae78219c122ae455627b24594966be61d335dcca8e8547784e8050051f"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/si/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/si/firefox-100.0b6.tar.bz2"; locale = "si"; arch = "linux-x86_64"; - sha256 = "64ef404110234acc639faefe93499578b88506e287d0e75ec2fc36be625e7025"; + sha256 = "5aed65aa84e19c8a270cbf6ad3284c23c83dbff841b4639a15af6cdd9148560f"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/sk/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/sk/firefox-100.0b6.tar.bz2"; locale = "sk"; arch = "linux-x86_64"; - sha256 = "6fdeb9de76bc3d7d7b5907340368adcd69d28b0db7a46bf96ee54ab731821952"; + sha256 = "a06083cf85f88232898d99dd0174e7999c3e65bc8f893c144775722975410235"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/sl/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/sl/firefox-100.0b6.tar.bz2"; locale = "sl"; arch = "linux-x86_64"; - sha256 = "259b7c2467220ed58a725006b70b1610d7b1589892e75b0eda1ed5a97ea8d65d"; + sha256 = "fce1013364e0f49f9cf56b4d50be3f17ec92d4dfe77a0ba6672404abbfd954e6"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/son/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/son/firefox-100.0b6.tar.bz2"; locale = "son"; arch = "linux-x86_64"; - sha256 = "56f4d79d2e4c3df1ea6903c230d790aa2e40adb704358c6d225fcb2103122cdd"; + sha256 = "be37a85ae43d646b5b0249303c65d6f0e3c7e15b65986da7e221119d3b8537aa"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/sq/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/sq/firefox-100.0b6.tar.bz2"; locale = "sq"; arch = "linux-x86_64"; - sha256 = "73490c2374b06cb4a8fdcf5c1ed32484581b62f380aef5d8d6da8c1319caa0b2"; + sha256 = "dbbcd4da798dca36965a408f74deef86001cdefdbeedd93d3d5c8c34cfd5e4e6"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/sr/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/sr/firefox-100.0b6.tar.bz2"; locale = "sr"; arch = "linux-x86_64"; - sha256 = "06070996a689d5cac3f97348af762834d0a9e56446b8b58ceba11235f49f17cd"; + sha256 = "cb8a4d3af1f8e5af4c6121afaab85eb51239d0a98e9caae0e87df435d9d746ad"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/sv-SE/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/sv-SE/firefox-100.0b6.tar.bz2"; locale = "sv-SE"; arch = "linux-x86_64"; - sha256 = "bc2b8826c8635d5e96b596aa5add0a6f6146fd9b70195323b6fac588ad4e0a88"; + sha256 = "941b3175289f26cc8102c5c436a477cb04af6a35e15861d2473d55b3dc36a04b"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/szl/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/szl/firefox-100.0b6.tar.bz2"; locale = "szl"; arch = "linux-x86_64"; - sha256 = "40eb80afc5f91513f4ee96dddd842b7b424b4caa2b41cbb0542b6a9c009b2099"; + sha256 = "48fb048a32877082ff1511484cc1eb7847198da4af366c136bcc260879e30970"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/ta/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/ta/firefox-100.0b6.tar.bz2"; locale = "ta"; arch = "linux-x86_64"; - sha256 = "79132eab776f5e3eba46368a837297be38123ac7036ab550c82d60037e8bc594"; + sha256 = "16ad13edf164a8867a56dcd59e4bb8c09d2cb3cabbab8c2d7e0a4ed0c02db587"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/te/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/te/firefox-100.0b6.tar.bz2"; locale = "te"; arch = "linux-x86_64"; - sha256 = "b2062d708ca2964fe0d046da13c6e763dcc6702dbffc4bb32ace4301e2653941"; + sha256 = "9c4e9fb72917b2e7b6abec7872366d687874af3c4e0d2acd862363120e3ceae0"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/th/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/th/firefox-100.0b6.tar.bz2"; locale = "th"; arch = "linux-x86_64"; - sha256 = "4e1ce1968f16403268a69ab85abb33422eb52cb0f36c854a16dda87d5abd941d"; + sha256 = "2a14cee27f951ec1e9e6e342cafee68a18513ed1b4d210e0490862296b12f0a9"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/tl/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/tl/firefox-100.0b6.tar.bz2"; locale = "tl"; arch = "linux-x86_64"; - sha256 = "c1ee82d1b14be9bf7c634029884a7eb59c051f26663e00ea0bf6e5f74ef9e04c"; + sha256 = "dd1bf5dbb47615dc2f3a473ab541686fe53cd7d3ac3e5bedab37ce436db5fe07"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/tr/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/tr/firefox-100.0b6.tar.bz2"; locale = "tr"; arch = "linux-x86_64"; - sha256 = "0c58541768c627cb4d556b34ed8523f3bccfdaa757cdcde37d1fe7d19c934562"; + sha256 = "eb9b3f14fa9c2c57784f1e37e198b9eb4bdb8cd3f11ebb52b2a51ba47cc10ccf"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/trs/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/trs/firefox-100.0b6.tar.bz2"; locale = "trs"; arch = "linux-x86_64"; - sha256 = "139f2a1abb08dc5ef684d51226fbe64c41e08ad4f183a8b15ff155c5fe51e922"; + sha256 = "d39ad94019221ecb2cc895ca16d71f4d461a52eef741b5728447ab054ffe12aa"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/uk/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/uk/firefox-100.0b6.tar.bz2"; locale = "uk"; arch = "linux-x86_64"; - sha256 = "633fa83f990bc1e8a791a0486bf9034f5b4709fd3e2d868f42895b66c5476ca7"; + sha256 = "9fbc6fa34062cb64fc6c5eb09df6e3736865e09124efd465c6b30c1bc8329494"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/ur/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/ur/firefox-100.0b6.tar.bz2"; locale = "ur"; arch = "linux-x86_64"; - sha256 = "25d7518b88be9d1cbf504a8c214049f265f74a0def26bf5a1c60d562d999a5e8"; + sha256 = "ca1ed7e7746e5a2085328158185715b7b850e8129adf77b1d6f4e90580563563"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/uz/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/uz/firefox-100.0b6.tar.bz2"; locale = "uz"; arch = "linux-x86_64"; - sha256 = "39f6c200dc56585bf527e8daa59f460d9193f7d5e7194efb7b1bfbf2d4f92e4e"; + sha256 = "ad05af6f178de687697e7f98b18a64c2cbcc1bad2b167d5bb35e13ac57d03880"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/vi/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/vi/firefox-100.0b6.tar.bz2"; locale = "vi"; arch = "linux-x86_64"; - sha256 = "e4d0a5838b837d7020da1595cf77093d53aa5d7f765fcc98da20c11c0e853874"; + sha256 = "22b133203f3bb3c901c225e1275215c0c7e3ab5714e640d218532a9db8c636eb"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/xh/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/xh/firefox-100.0b6.tar.bz2"; locale = "xh"; arch = "linux-x86_64"; - sha256 = "679180e00ca70e112d5053c72cabc0ca5eb92f2f16915c556aefc861188d0318"; + sha256 = "570c959de8351eb8ffaae05292be916bd94f34f51a1ffcc84e3176b7f23d230b"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/zh-CN/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/zh-CN/firefox-100.0b6.tar.bz2"; locale = "zh-CN"; arch = "linux-x86_64"; - sha256 = "c280eef16ab855db69e975f8cac93a2987e125236d7df34a5a336cc837cfd901"; + sha256 = "f0e4fa1b580f778be335285b1154abdfde0b95c6d2c67f7547ab07bcc7fd5172"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-x86_64/zh-TW/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-x86_64/zh-TW/firefox-100.0b6.tar.bz2"; locale = "zh-TW"; arch = "linux-x86_64"; - sha256 = "2b6d0a74fd53d907a6e0f6e28be41e9cfa62e61c42dbc132d16c39f87980ad49"; + sha256 = "cd49d2954a7014a926cc012c1e439926af1f58c5e11234e2f9d2489c417388f7"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/ach/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/ach/firefox-100.0b6.tar.bz2"; locale = "ach"; arch = "linux-i686"; - sha256 = "579452bc9bf650c9664775a5ec438be6cf4276b807840a38e30a0c08237a777d"; + sha256 = "a3b67450658e8c34ce17f5f3b63afc4116cccdd2d786c72958afdb468c0c7eab"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/af/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/af/firefox-100.0b6.tar.bz2"; locale = "af"; arch = "linux-i686"; - sha256 = "a9828b2f4954f63b8b4b37722da0a50f1b9e6230aa981f51597718bf05e52b54"; + sha256 = "c7a9ca1c35ed17fe138df0608d02b345c6e358612a03f3408bd46a792f3bed2b"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/an/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/an/firefox-100.0b6.tar.bz2"; locale = "an"; arch = "linux-i686"; - sha256 = "0d7083b1feef4c8cde1be64ff26c37afdba36454802266c28b1916f760881de4"; + sha256 = "242731960f5b500d25f9b328731437a4229aa4d668fc849d2111506dc4741b97"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/ar/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/ar/firefox-100.0b6.tar.bz2"; locale = "ar"; arch = "linux-i686"; - sha256 = "57e5e2863caf348c475daaa6949dabe013aab0b3e63db61b3a9b9ef4049e62e9"; + sha256 = "4adf2045f911f74323a9e65b4fd2cf249a5369ad5143daa36eb0b1999b5adacc"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/ast/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/ast/firefox-100.0b6.tar.bz2"; locale = "ast"; arch = "linux-i686"; - sha256 = "e954fde4dcca82fdfd8605bcd43930f0b85117c1b2dc9edeba75b435b77b121e"; + sha256 = "d0827bf52bf91304a0a17c9f5edbc6081be1f1d9eaeba6dc24b63e8b251dbe11"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/az/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/az/firefox-100.0b6.tar.bz2"; locale = "az"; arch = "linux-i686"; - sha256 = "a893f228de842c6bdd0c41df3db328c737b57a945a55e1e56f3672a7beffbe5b"; + sha256 = "41de2d574563135721d0a975d8d90f4eccac60f3be51d4cca5e957473793629d"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/be/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/be/firefox-100.0b6.tar.bz2"; locale = "be"; arch = "linux-i686"; - sha256 = "8cb4ca15ee69f9bb74cd13de82697526d6e64c6968881489b7ddbe4ad9266c54"; + sha256 = "736900d6a404a97e13cfeeef68681ec7980266ba983f62c0779fd6a8b502e22b"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/bg/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/bg/firefox-100.0b6.tar.bz2"; locale = "bg"; arch = "linux-i686"; - sha256 = "2d8a566a4619f549bf6b68a2d1b0fad51843de0257da54039050affbc21de948"; + sha256 = "77351b45bc0bd3749c54ea1efb1ebb2ba1ced97f9885906a9b86523e85eb011d"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/bn/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/bn/firefox-100.0b6.tar.bz2"; locale = "bn"; arch = "linux-i686"; - sha256 = "e75c5aecf6b0bd0d60423bb66980c085957b1acd1549426a44a4a7991d1f2db3"; + sha256 = "5d9b274d20b5137e531660f92a7ac3b481abd756870af815159ac30e7df47e8d"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/br/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/br/firefox-100.0b6.tar.bz2"; locale = "br"; arch = "linux-i686"; - sha256 = "bb8794c3069989e0f06f0dbd0b7fee638bcf9e6e3d24d28ce41db3a182a83a60"; + sha256 = "22239f50b370747d3029e7f4ab8ac47de15cd5aa8b6d421193299fed9f9b556e"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/bs/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/bs/firefox-100.0b6.tar.bz2"; locale = "bs"; arch = "linux-i686"; - sha256 = "db964f0e1eb920cac95cd0dc14175f5e20a1ec32f56a3b43554f22cc67dce752"; + sha256 = "5e2d51cf768f00ab8a30f8d54e2bb88eed75baf20c381e87b7186f5927447137"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/ca-valencia/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/ca-valencia/firefox-100.0b6.tar.bz2"; locale = "ca-valencia"; arch = "linux-i686"; - sha256 = "ca124cd11585fc521b4e2d1c4bc0c2407056abffbb2b36e46ec568c6490b28d3"; + sha256 = "cdbee7378c4584d51a7142c695401ebe21a05c87961171fae2fc71e76485e92e"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/ca/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/ca/firefox-100.0b6.tar.bz2"; locale = "ca"; arch = "linux-i686"; - sha256 = "6ca6e8c905b44c09c4d061656fe2cace22d261ea4efd04917fc2aa2ce13a1cb6"; + sha256 = "1f8f6e0a3917828f7e30deff842c6d5f0c5a2389c87969783d46950c6b072722"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/cak/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/cak/firefox-100.0b6.tar.bz2"; locale = "cak"; arch = "linux-i686"; - sha256 = "44bfca1c2cac5eea67f68891da93604edbdf6e0eda92fd1686d83512feff2089"; + sha256 = "42996e08427b937cb2e2aa4d7ea569b729c9002d293be5288e02ab1588e3cbfc"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/cs/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/cs/firefox-100.0b6.tar.bz2"; locale = "cs"; arch = "linux-i686"; - sha256 = "491a9c7a2471fc1a06751282340f1b6bd00118a8ea11d54420985822c0e9a19e"; + sha256 = "692d99947185928b46142ae910c76d4c1ee2328aa2e67212919aef39741d67db"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/cy/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/cy/firefox-100.0b6.tar.bz2"; locale = "cy"; arch = "linux-i686"; - sha256 = "b9e55860c0f14afcd2d2cf87e5ca7d4b853fce667f93a6b493323423c16f8adc"; + sha256 = "b2f7ee9c016bc107e63dee850688b048c43f5d1caca1aa81d22cde4ffbe6c964"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/da/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/da/firefox-100.0b6.tar.bz2"; locale = "da"; arch = "linux-i686"; - sha256 = "899a53b667b4f64e953b7d1cf430eea8e67de747b28c93435cf33f008dc464eb"; + sha256 = "095ae3d0657a68903c4d60a21240b9c3fc399284063e5c366ccedcf58361c80b"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/de/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/de/firefox-100.0b6.tar.bz2"; locale = "de"; arch = "linux-i686"; - sha256 = "efecb119d1becf00b34babaf42cae5f5c586dc8cc2a29c71d410b68b7aa00cc5"; + sha256 = "359364e7ee5ed03556c7b7390cdb4b1e91e027598a74231cfc20fd5d5c601b1d"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/dsb/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/dsb/firefox-100.0b6.tar.bz2"; locale = "dsb"; arch = "linux-i686"; - sha256 = "b47d0bed633a6c8608c600d6b1c8c49bfe40e4b1df6f72bb7dd49e722084cf81"; + sha256 = "24f7caf5bbc8edefa104c6b4a646a1afa254da9bb8a1965193b7e4a97ef848ae"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/el/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/el/firefox-100.0b6.tar.bz2"; locale = "el"; arch = "linux-i686"; - sha256 = "07b34038828ea049ea6c1bba71d27bada83ec514d8d58be92f9005ff01cd6853"; + sha256 = "97bfe8f01d8f6024b85a6f25ee084642dc2e2c50dc189d1b6bccfa7835120bad"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/en-CA/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/en-CA/firefox-100.0b6.tar.bz2"; locale = "en-CA"; arch = "linux-i686"; - sha256 = "fe1dfeca3de53837003d93aecf5fa971a51e8a585cbe9a1c44f338d8d1d7788c"; + sha256 = "fa534341dcfeeb5778d19d5c38fdd8a56e92e756212d256c2fd40c499435e6cc"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/en-GB/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/en-GB/firefox-100.0b6.tar.bz2"; locale = "en-GB"; arch = "linux-i686"; - sha256 = "fe4baa77504d9ed1f789726db85599d5cc634765ae19cb4604234ccf7a43b97d"; + sha256 = "a38f383c06a2cce4ddc49fd304b1b5742dcbc2cdd189dd5b6e91b1494231504a"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/en-US/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/en-US/firefox-100.0b6.tar.bz2"; locale = "en-US"; arch = "linux-i686"; - sha256 = "6ca97f006b90f98676efae14423c8707527182e118f4d3020e51eddcb14cf8d5"; + sha256 = "c5ad47cc4f5829eb3d01c7031833e3f8aa24d07947415947d5e86e492be37c20"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/eo/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/eo/firefox-100.0b6.tar.bz2"; locale = "eo"; arch = "linux-i686"; - sha256 = "e9fb1b7b6752629891df490ff625897ae5d929c435c824cb6c5dce18340e3273"; + sha256 = "d96ddc5a07581ac62078cac8d702425d6764cbffd93ea1a35ddcbfa5258e01ca"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/es-AR/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/es-AR/firefox-100.0b6.tar.bz2"; locale = "es-AR"; arch = "linux-i686"; - sha256 = "b18a2fb101d28d1dae1b4a33d63906a7c6720ddf5e4418eecf8f6df0be58e017"; + sha256 = "e5c069a162cd02c3449b6b6c800c491f80270cbd9e29bb418351b40ca318d08e"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/es-CL/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/es-CL/firefox-100.0b6.tar.bz2"; locale = "es-CL"; arch = "linux-i686"; - sha256 = "37a54082b8bb69c925894718eefcb1229ad661cfe31aa95906da163a213ea4b6"; + sha256 = "e45ea8d1bfc96f500e1061eed4694f2c7c81fb5b5ea76411cb7bdf7df8e74b1b"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/es-ES/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/es-ES/firefox-100.0b6.tar.bz2"; locale = "es-ES"; arch = "linux-i686"; - sha256 = "bb38bb93c74878646f31c09d524eaadf18a1e2f6ace957abfabd05e1e63898e2"; + sha256 = "a86e913fce09abd34f69f72f338e5d276360b39584266fcb160aa4cb5ef15e10"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/es-MX/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/es-MX/firefox-100.0b6.tar.bz2"; locale = "es-MX"; arch = "linux-i686"; - sha256 = "6c75d42e34b6fde9e8b3ad31ad3574af87dfab2f5eef71b457fbdb9ca6dbe12e"; + sha256 = "d39ac7c519aa5ab3c2b02da50f882480d657672573ac13b76ffa1620a7c31dea"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/et/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/et/firefox-100.0b6.tar.bz2"; locale = "et"; arch = "linux-i686"; - sha256 = "e25b97ff49fcfaef9906cee48f0f342272d2b9807a6221aa6b4fa5939bfba70e"; + sha256 = "2d83aecece8c35f11bd3190da1d91100779c4516292fb683792c09a9df63297b"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/eu/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/eu/firefox-100.0b6.tar.bz2"; locale = "eu"; arch = "linux-i686"; - sha256 = "f929034c74b057e32db4408ca25b9e9aff9b26d487db29cbb0c0fa0ade96748a"; + sha256 = "acb38b6a8d2111511d31cb967da094d68eb4bc5e1fb4af613392cdb931a81b69"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/fa/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/fa/firefox-100.0b6.tar.bz2"; locale = "fa"; arch = "linux-i686"; - sha256 = "2fd4af491c79dbceee3de7e04fef413535757c0588072ece7e5ebcf252815782"; + sha256 = "4c509afe344db0cf9eff8f3bafabdc80b25f78537dfcc931d05a326d97b3793b"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/ff/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/ff/firefox-100.0b6.tar.bz2"; locale = "ff"; arch = "linux-i686"; - sha256 = "7b0f38144eef79ead877a352a03abb3d50631031b051750d3d9ab84dd8afe319"; + sha256 = "23c02e6d2f18351c72917c02f6795b1183482e35c6fa5990ecab8e724959c4ce"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/fi/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/fi/firefox-100.0b6.tar.bz2"; locale = "fi"; arch = "linux-i686"; - sha256 = "fefaec6affe3be2d963967397aa6b0c7495570d0fb437820d87ef6289654fd80"; + sha256 = "30f696e3e0b419017fed38ab434a99ffb303eaa4d9d96bd2525ad84cebb20d51"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/fr/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/fr/firefox-100.0b6.tar.bz2"; locale = "fr"; arch = "linux-i686"; - sha256 = "1dcb22611d288ea566f1d319b4fa8f6ec7057e05d39a1be794ae12f343e29809"; + sha256 = "40d631f78caf08e8a04a4dc1286cd749d66130a9b3f887f8a74d1f15ed7247a3"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/fy-NL/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/fy-NL/firefox-100.0b6.tar.bz2"; locale = "fy-NL"; arch = "linux-i686"; - sha256 = "fe15fecf740bdc9f9476366f394a10f2f919d7c84f64844025faafbf28fef05f"; + sha256 = "62563d3d7c5755f1163d956f1bf82cb81c48b5349db293e66185c95b8e65caa6"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/ga-IE/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/ga-IE/firefox-100.0b6.tar.bz2"; locale = "ga-IE"; arch = "linux-i686"; - sha256 = "06c5708ca8cf4ded0cbc7b52e0772bc4fb86ae55d822ff09088af5c35e60d917"; + sha256 = "72914c49d6b5384987942a6c8127891c7eaa088d08bf9192ce448b11342f512e"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/gd/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/gd/firefox-100.0b6.tar.bz2"; locale = "gd"; arch = "linux-i686"; - sha256 = "fdbf7f54a4120dee131687fc81e972e4df52347de4e8473a152ca0b98d7bef92"; + sha256 = "1a127b1a4a8407476f1ed73ebd982fc5d0262e2fc413748b4228d9bc9d28a59e"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/gl/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/gl/firefox-100.0b6.tar.bz2"; locale = "gl"; arch = "linux-i686"; - sha256 = "807d0deda34da90207a6ddac26649f38eded1a6b2337d9cb73ed28c55bd316b4"; + sha256 = "1a84a2d00d065f69492a73e6917e07de8824b185139e3acb75b0f0dd5f82d604"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/gn/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/gn/firefox-100.0b6.tar.bz2"; locale = "gn"; arch = "linux-i686"; - sha256 = "a70ec6595f9ff5cfcc8ae0185d4ece632a17ff49817b98052bee8981dbd63d58"; + sha256 = "6ddf864b2b2258d0ced011ac2d0ed13455e99d3c093642a477f95ca13a3349cc"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/gu-IN/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/gu-IN/firefox-100.0b6.tar.bz2"; locale = "gu-IN"; arch = "linux-i686"; - sha256 = "44e9a22d946e4405db84069d329b66293b0d789b59d98bed4570d98dd19b6c0f"; + sha256 = "86688035900e5bf2dabfb7e8c7320dc4ccf33b46d8c9e963216a750ba2e2b300"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/he/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/he/firefox-100.0b6.tar.bz2"; locale = "he"; arch = "linux-i686"; - sha256 = "1855cfb19d6bd857a14950399e238c30768e23c08d21a1db38b49dcedf2302bb"; + sha256 = "d35c7ac5d61d9253ab69da2a77bbaef7037e7cfa2339d4730201fe41776adc90"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/hi-IN/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/hi-IN/firefox-100.0b6.tar.bz2"; locale = "hi-IN"; arch = "linux-i686"; - sha256 = "47fc9f90b3d52e353594bef6c84bf408ef3e37fa2d0eefe17997bab546b2f9b5"; + sha256 = "48872f0b68ccf4df855e58a4520f5f8347b05de318a0991d83088521b4d178e6"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/hr/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/hr/firefox-100.0b6.tar.bz2"; locale = "hr"; arch = "linux-i686"; - sha256 = "bcbe511cd9bf09605f1e6bdb3b65e9f8eff6c6e8cbdb904987941d2edbd10b42"; + sha256 = "9c1c1303aadb4071a82b558fd470c96671872cd480e444686ec74f41afd46e2f"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/hsb/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/hsb/firefox-100.0b6.tar.bz2"; locale = "hsb"; arch = "linux-i686"; - sha256 = "5a5b5063eaeeeec63d13f138ba43280ea6cde0aeb03bcf18c6f5ed0c7ab575d6"; + sha256 = "828330501590e2ad3021397cb7b37a86c015b93536e4e2383fc5c5a1e8d6a6f1"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/hu/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/hu/firefox-100.0b6.tar.bz2"; locale = "hu"; arch = "linux-i686"; - sha256 = "7828ea71f5ecf9afcc52fad0047789ece2c8be5c7ba8d390d98a24daffebc0c1"; + sha256 = "592c69c6377657bccbf2b81ae54bc8f37fa6d081dc36d0465c20eaf6d673f32f"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/hy-AM/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/hy-AM/firefox-100.0b6.tar.bz2"; locale = "hy-AM"; arch = "linux-i686"; - sha256 = "c76b2e07e5085caf56c8c94848f7d7dc4b40c5000a792921bce762ed55b73f4a"; + sha256 = "a95989dbd6b7b499840f5cc65a765129ca23392455afd21c0ff865112900b5b6"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/ia/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/ia/firefox-100.0b6.tar.bz2"; locale = "ia"; arch = "linux-i686"; - sha256 = "de9ace36727f9fb070138d30bb854bf28ad57b7a9895cff492d48231826044cd"; + sha256 = "a9b225d969b0d8c621a2b545cbb42ce7188d78c09c248422d6379d83934201b6"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/id/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/id/firefox-100.0b6.tar.bz2"; locale = "id"; arch = "linux-i686"; - sha256 = "01dcade8b0d7dd4f4ec9a408291c643bbfbcb922ba0b2cd84645799c22c46082"; + sha256 = "304f4d04d3e73a477598a034d3fd016948c5e1662bc236d640219b4b96159690"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/is/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/is/firefox-100.0b6.tar.bz2"; locale = "is"; arch = "linux-i686"; - sha256 = "a8aa5de061a5414e55f45c61bece3f4471662f36e3e30163daef028cbc62a675"; + sha256 = "3cd144b87e3ef57703ce60c57a09ea8c6ab910408a7c891f9b9b653dca51c55c"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/it/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/it/firefox-100.0b6.tar.bz2"; locale = "it"; arch = "linux-i686"; - sha256 = "4610c04780fc075cb49a09e0815671dcd8f3b625a5b30913c8ff5be81cfd13cb"; + sha256 = "b024d3b0fe4ac5691c6cf1e0c18ce2bff91083746bb988799f2eb3ab74e22e80"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/ja/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/ja/firefox-100.0b6.tar.bz2"; locale = "ja"; arch = "linux-i686"; - sha256 = "7ca93bd2ab0a1e0e0aa1a41df7331c65f27747b3d511527c557e613272a736ba"; + sha256 = "fe3d9b0c7d0e8f47e9f1bc12429200aeb951b303946365bb32f51c9d807259cf"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/ka/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/ka/firefox-100.0b6.tar.bz2"; locale = "ka"; arch = "linux-i686"; - sha256 = "55cf179d73cfafc5526e5701de3560e4bf9c1d02c28c77cc66801b828fa9e33f"; + sha256 = "2e4d0f5f2eab6787db359c47a48b35a202b713de0807299a41a751b527a9ccf3"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/kab/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/kab/firefox-100.0b6.tar.bz2"; locale = "kab"; arch = "linux-i686"; - sha256 = "c7930dbea998892979a16d3e60b19db62cbbe8388e68a2ea59a11e234e8f94b9"; + sha256 = "49166beef9b6952940d1ce420afd77777fbe84143b65693f9b75db6768b88e01"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/kk/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/kk/firefox-100.0b6.tar.bz2"; locale = "kk"; arch = "linux-i686"; - sha256 = "771eb9217226b36cb04719555a82c3b11e783059183ebc9c295677ea06d69321"; + sha256 = "24aec891a8189714c9299c695346a3d0a4ea52621f08b890d5db63ba36bc627d"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/km/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/km/firefox-100.0b6.tar.bz2"; locale = "km"; arch = "linux-i686"; - sha256 = "970daaec6f449ab1d6dc8688ee9f41b95d295523ed57ec14c5f34fc98ee18dee"; + sha256 = "90f5b7811a2f0bdfefd14261d1e0e7fe85466dc96c666316134c97095606c6ce"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/kn/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/kn/firefox-100.0b6.tar.bz2"; locale = "kn"; arch = "linux-i686"; - sha256 = "fae2d5a9a428ddba10cdafb6fce6e0d591b5ba8353d2cf88ed423602fd150576"; + sha256 = "e423d1231edbef812e8cbd50f53dba4b48dc9083cbd5d91825392229015c38c8"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/ko/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/ko/firefox-100.0b6.tar.bz2"; locale = "ko"; arch = "linux-i686"; - sha256 = "4a66e9cec2224382645d962908218bb89fe4a499b9138c83966dd70d9d25b172"; + sha256 = "cadd481242635d64b224e080adc1bdcfff9f7ced4715b0ea9655ab333ac7d039"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/lij/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/lij/firefox-100.0b6.tar.bz2"; locale = "lij"; arch = "linux-i686"; - sha256 = "85ef4a63c9dc97f9b482382a83f5a7a6880c5df87acce7e142506c2d449e4f69"; + sha256 = "4798691d44767027a39c1124053b2351523e615a06b32bd2bf4f9da7b858159a"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/lt/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/lt/firefox-100.0b6.tar.bz2"; locale = "lt"; arch = "linux-i686"; - sha256 = "da3ccc7021eb4b62c35c716089599f714cfef218856063e083c3547d64271b4c"; + sha256 = "ac49b6d34eb8caac4a6900246adb3562eb2228a50fcdc543f79903ea267b339e"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/lv/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/lv/firefox-100.0b6.tar.bz2"; locale = "lv"; arch = "linux-i686"; - sha256 = "6aa1d5453d938f16330e0ed54d63bc59c5b57e7da5ddbc41a05c2f75dea68e73"; + sha256 = "4f6e6a26a2b8a23855dbdeabd2363ee0155914542e4c48c655d6b52da6289b34"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/mk/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/mk/firefox-100.0b6.tar.bz2"; locale = "mk"; arch = "linux-i686"; - sha256 = "e0cc100f8be06fd97cb029837a054e60d136272a9f6b78eaef692d3bc5d8a669"; + sha256 = "522590d926022cbe833ce0050e5d23db47bab2c8de1e1e0ae3e96941b53dfb6c"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/mr/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/mr/firefox-100.0b6.tar.bz2"; locale = "mr"; arch = "linux-i686"; - sha256 = "d3a3d72bebefc51cd8eb1a1ebc1431a9845d15af6321b76e2982a0d210397409"; + sha256 = "4df57dacc8b71070aa077281beffc04bfc632666b2b26caedc1fda4e484e59d9"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/ms/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/ms/firefox-100.0b6.tar.bz2"; locale = "ms"; arch = "linux-i686"; - sha256 = "c59362f1817f98ec80ea275b39f50bed7a0ee1154d6a6ea3ad6dbe8f2eb1bf79"; + sha256 = "005506663901ad539817197972864f67812a9f5e3f1055e7418ab4bb052ecdad"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/my/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/my/firefox-100.0b6.tar.bz2"; locale = "my"; arch = "linux-i686"; - sha256 = "ec1d06208223422633c2ca495bb17ca946e379d361a2e00f94ed08588b6b2263"; + sha256 = "aeb8445d5425640ceb8d2b823a7dd3e79fbd355f07420d015af4559d2bf2cebe"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/nb-NO/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/nb-NO/firefox-100.0b6.tar.bz2"; locale = "nb-NO"; arch = "linux-i686"; - sha256 = "2e31732057bda76dd2d74d8e2b3e6c38a2035bf163234fd82fc867b544d34dc1"; + sha256 = "d41588beac0fc9a3eeab9f2843b8aef53e61a7c15dcdc34eb89e73838d9dab24"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/ne-NP/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/ne-NP/firefox-100.0b6.tar.bz2"; locale = "ne-NP"; arch = "linux-i686"; - sha256 = "eba3a80cb0b761b68d5e318d5f8110a7d19da1261868cbc1f1a39eb47c08c018"; + sha256 = "c3c981a5a701118e70b6b03338451d7d50325234be03838e403e57b822b6fb61"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/nl/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/nl/firefox-100.0b6.tar.bz2"; locale = "nl"; arch = "linux-i686"; - sha256 = "1f7ae0dc78d5b30741e8d645471aa1875c2de144742383eb5c24cc2deda79f77"; + sha256 = "ee902a63548299b6ceb9cfa263991233c32b0bf8534dc5256ce84714eab01f12"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/nn-NO/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/nn-NO/firefox-100.0b6.tar.bz2"; locale = "nn-NO"; arch = "linux-i686"; - sha256 = "acd635ad253a878043ec4121984da468901c49d4fb511ec9cfad478980ecf647"; + sha256 = "e3fcf444660a2e8b3abe10d9d3a512985e9791fb7916ffafac564d9849816241"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/oc/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/oc/firefox-100.0b6.tar.bz2"; locale = "oc"; arch = "linux-i686"; - sha256 = "2721c54a1bee621d9c7cf2f5c657dc48a7d9406d80c5aeb9963bf7b128c17629"; + sha256 = "0b80101b082209ead23287d0d7efa136eea099b9895b9a4a8906abafb8a7dbcd"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/pa-IN/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/pa-IN/firefox-100.0b6.tar.bz2"; locale = "pa-IN"; arch = "linux-i686"; - sha256 = "97c435e09c0b56bd9bf66d50e90034a502e9af6cc1984d5acdd2d948f7556273"; + sha256 = "14f8fe19c6cea1d38eba2f4aff8a8787875632e7ef867b44a48bcda59ad0c32f"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/pl/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/pl/firefox-100.0b6.tar.bz2"; locale = "pl"; arch = "linux-i686"; - sha256 = "36e81c101b8cb68be0f69339c47ff4e5839397096775cf9ea46f0ff1efe5353a"; + sha256 = "796b575f4ada12cd1aa0fdeae8b5c198eb2e6a327bd0cede066b1beff4961d96"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/pt-BR/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/pt-BR/firefox-100.0b6.tar.bz2"; locale = "pt-BR"; arch = "linux-i686"; - sha256 = "fb90a3a2a303f945bc34e2a6ec397f0116ac77f02062e7a7c8dcd382606dfec0"; + sha256 = "a1a83e3e317bc7465922b40327031fd48610627c0e1554569710a7b40fedd98c"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/pt-PT/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/pt-PT/firefox-100.0b6.tar.bz2"; locale = "pt-PT"; arch = "linux-i686"; - sha256 = "8797c65c277cc0f46a8d8b2cafc370be55c57eccc8e9fc88d3053e2969f9de58"; + sha256 = "0ff375602235a96b6197366ae22f4c05cbb3c9068d48cdb08a035e3af084d3f3"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/rm/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/rm/firefox-100.0b6.tar.bz2"; locale = "rm"; arch = "linux-i686"; - sha256 = "b8cd7b28f31d4e1ee874f1073065897444eb9503e207b924a875a8c3a0b21509"; + sha256 = "5599c540c50162d1a79ea16196bb15fda9fed825508b60b4961d91255709593d"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/ro/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/ro/firefox-100.0b6.tar.bz2"; locale = "ro"; arch = "linux-i686"; - sha256 = "3907d9aa29f56fbf97008e65f83ae25719f4156961ff3e976661a2012f16fafd"; + sha256 = "771be3da68642a15baa1e054bf23e9df272d0b0ab46f1e42c6fdf35e85035b9f"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/ru/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/ru/firefox-100.0b6.tar.bz2"; locale = "ru"; arch = "linux-i686"; - sha256 = "4913bf6de1f5b14d005f20bbc0d2ef97227903d296851034735e872e28b3f065"; + sha256 = "bcca4b9aace48ed4da4c881ed47b0bbc3d20fddd07273ecf1c84758633f350b4"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/sco/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/sco/firefox-100.0b6.tar.bz2"; locale = "sco"; arch = "linux-i686"; - sha256 = "ac4fb9005a71ca5bd25120946b65ebc0f437d8c86b9dcdc11e9b874ade8b4dbb"; + sha256 = "1ca439331c6437dee10d1f2cd72907499894bd98af036dbedc964248217ff510"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/si/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/si/firefox-100.0b6.tar.bz2"; locale = "si"; arch = "linux-i686"; - sha256 = "8fdac92f650f10a9dc9322f817f1bb6f60b5a9fe97942cc1ca5ae694aad71523"; + sha256 = "b643cfd20a0bc56b1989dc1c4dc96535d6585a53bb5d13c85ca53bb1027e1732"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/sk/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/sk/firefox-100.0b6.tar.bz2"; locale = "sk"; arch = "linux-i686"; - sha256 = "57987896b0e1b8846911b878dc360d139002401ed57a9b95fe47f2801c983848"; + sha256 = "5aa1dc132c3d2a42b6086cf824c8b6ae7a30d8b55341a05acfc3eaaa8dd4cad0"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/sl/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/sl/firefox-100.0b6.tar.bz2"; locale = "sl"; arch = "linux-i686"; - sha256 = "3097cfb125f9b275270955c454577b7aa5ffe68b5ee0917cf6b3e0c31d9c5b25"; + sha256 = "92b2a15a04c4cee559e0a6565509a546ac7a2c4e3fadbba0c6197356e99f71f9"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/son/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/son/firefox-100.0b6.tar.bz2"; locale = "son"; arch = "linux-i686"; - sha256 = "8588038e834177672a47530e8e86c202123606ef6f1a5d9a4d5c40cac8cb9aec"; + sha256 = "8a25e8af341178bbbcc0731788b1116ab64fbb55480836b94ad6e7830b6b5f16"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/sq/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/sq/firefox-100.0b6.tar.bz2"; locale = "sq"; arch = "linux-i686"; - sha256 = "cc229e95ce396fc37fd7103e70acae2414de501823beb04e71c702cc65c430f6"; + sha256 = "66b7ea3b488b980c425576fdad6009d2c246bdb4686b24b519604a54dba6f756"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/sr/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/sr/firefox-100.0b6.tar.bz2"; locale = "sr"; arch = "linux-i686"; - sha256 = "9c134f28f92311c8c8764df4d37727134fecab10197cbbaae01d26773e2897a3"; + sha256 = "1aecc3a24dab4a843a967b8c023bbe01488dc113e451cfd7d39e7c2caac1c153"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/sv-SE/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/sv-SE/firefox-100.0b6.tar.bz2"; locale = "sv-SE"; arch = "linux-i686"; - sha256 = "40c8f4af652dae7a3eb1b1cab01f032ecb526600cbeea0dd5ccc4319b0d50310"; + sha256 = "d5189ed627ac49286cec9733c8658c271ee99930f2d07754993e776a58eacfa0"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/szl/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/szl/firefox-100.0b6.tar.bz2"; locale = "szl"; arch = "linux-i686"; - sha256 = "d71882b04563f7f89a4c0bd2431e6b33e2af010b40b1dd50304f9daf0ca66525"; + sha256 = "45c48d7381499d5aeca0fe340ecc8af33016821fa8f081f6c52c878a9af3640f"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/ta/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/ta/firefox-100.0b6.tar.bz2"; locale = "ta"; arch = "linux-i686"; - sha256 = "a473f9123d53de141e0592e03e8c9dd6ce8f057c57f89f55957c1436d139582f"; + sha256 = "1a8a9fe5eb0e9e8d213d667cc1aa478f9f381d5a444f8d2be518fb04926e4f64"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/te/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/te/firefox-100.0b6.tar.bz2"; locale = "te"; arch = "linux-i686"; - sha256 = "042aae2c4d10d2b7407b3252a39600217ab8ac0c9e34045c31e70cd8e792968f"; + sha256 = "1f3aa559af38662aea444f52974c2843ffede5505e71e83d73e331d2c4b92275"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/th/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/th/firefox-100.0b6.tar.bz2"; locale = "th"; arch = "linux-i686"; - sha256 = "6455ef37c941c978b1380f6ff3de41c0b7f8348d498d154e78c9c7b6e8992187"; + sha256 = "05bbf88a5b9e914d86244555d06d560b328e8e873e380e67d40edb6d3971d383"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/tl/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/tl/firefox-100.0b6.tar.bz2"; locale = "tl"; arch = "linux-i686"; - sha256 = "b41d0029729bb4fa1e8d8c596232272c1e238d8bbdb675d31e42250faed54396"; + sha256 = "8cd7f71325ce2a54403032bc80fe366acfd7a8ce3e3871ae1a8f4e0b5315ddf9"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/tr/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/tr/firefox-100.0b6.tar.bz2"; locale = "tr"; arch = "linux-i686"; - sha256 = "e0345c71199784d40fa159617371a72e3f3e05d2aadc041d14c6b3e450304afd"; + sha256 = "41275c3dcfc9624390a2d3ce9d0aa0e746c4e3122f433924227299d46ff8ab42"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/trs/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/trs/firefox-100.0b6.tar.bz2"; locale = "trs"; arch = "linux-i686"; - sha256 = "4a6afcbbb3d05bf6f3abe3194a21aa6ea6d2f76cc5429ef4ca0a433ab1d97f76"; + sha256 = "c04aafe011c8626d749990e0ba293a22c8a623c6eab9bc4bff2782708832a648"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/uk/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/uk/firefox-100.0b6.tar.bz2"; locale = "uk"; arch = "linux-i686"; - sha256 = "97709ab7965f859da2ce93cd4c22b875a0a94af8b8b7acabd1578d5ae82d6d85"; + sha256 = "965f445606d8c81d1745a7028ffd15af7cb9bf2473bfba5e673e3621afeaa6e2"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/ur/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/ur/firefox-100.0b6.tar.bz2"; locale = "ur"; arch = "linux-i686"; - sha256 = "7c69d7f588540d0a72d9942671d40ab59f066b9798279dbe1b0b0980cfa13a06"; + sha256 = "8955e64902aca993d110401fe36b56c84b53a414b2da569525653ee28801d9ca"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/uz/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/uz/firefox-100.0b6.tar.bz2"; locale = "uz"; arch = "linux-i686"; - sha256 = "53c450eeb1223c2794b9270d257fdeec50bb4deece5bf5d7d05a5819f54989c5"; + sha256 = "e05ef7856c3c4777da187ed7212ebab01900881702d1fa8e221a86c57c6ef4f9"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/vi/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/vi/firefox-100.0b6.tar.bz2"; locale = "vi"; arch = "linux-i686"; - sha256 = "395e8ffa9c6a0145f6fdd005df0b73fd4d59410ba780818232cde2f3fc257d50"; + sha256 = "baca088760ee065eb8ad86d93c6b0325d23f88d18359693ba9c2a3971e9e5061"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/xh/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/xh/firefox-100.0b6.tar.bz2"; locale = "xh"; arch = "linux-i686"; - sha256 = "22359e92de488a24709445de54499c9ad49e841e4ef6ba45296b44fac089121c"; + sha256 = "c679216fca120982454a15087890fda40d21bb269a940d96dbe37428672db65f"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/zh-CN/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/zh-CN/firefox-100.0b6.tar.bz2"; locale = "zh-CN"; arch = "linux-i686"; - sha256 = "7f5d0d771c546d41e835ce7842ee7659ec4a69cd78176b0c679b4b056e8d5499"; + sha256 = "ba77a6dc02a406174a79a99b510c2cf7f8be6f877acc57822ee174cc5a99931d"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b5/linux-i686/zh-TW/firefox-100.0b5.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/100.0b6/linux-i686/zh-TW/firefox-100.0b6.tar.bz2"; locale = "zh-TW"; arch = "linux-i686"; - sha256 = "8bd0dbb9bf1a3682ea39e43da3819a4f12bc147484528d869a252d2ad000f95a"; + sha256 = "108fbd9c48b974cfd533c514d8459990b5d278ac5381ba5cfb8fad8d885dcfac"; } ]; } diff --git a/pkgs/applications/networking/browsers/firefox/librewolf/src.json b/pkgs/applications/networking/browsers/firefox/librewolf/src.json index d209a83ab9df..9b770c743d2a 100644 --- a/pkgs/applications/networking/browsers/firefox/librewolf/src.json +++ b/pkgs/applications/networking/browsers/firefox/librewolf/src.json @@ -1,11 +1,11 @@ { - "packageVersion": "99.0-1", + "packageVersion": "99.0.1-3", "source": { - "rev": "99.0-1", - "sha256": "0x9c19h4l1djhdq48ylnqjrrfkk2zalfpgj57cba5jqxl2fhglx3" + "rev": "99.0.1-3", + "sha256": "0ag4n86hvyp6kx3hp60yn7q45rgjbx7054frj6226ni2ribjx4ln" }, "firefox": { - "version": "99.0", - "sha512": "08f6d5a668140c4275aba6df463ed3af596043dfe5f27573583afbc1e9f6b27ebca79a52ce2c9598261c631b400b5378744e9e70f51ef9c4098b419e9904aa7c" + "version": "99.0.1", + "sha512": "0006b773ef1057a6e0b959d4f39849ad4a79272b38d565da98062b9aaf0effd2b729349c1f9fa10fccf7d2462d2c536b02c167ae6ad4556d6e519c6d22c25a7f" } } diff --git a/pkgs/applications/networking/instant-messengers/element/element-desktop-package.json b/pkgs/applications/networking/instant-messengers/element/element-desktop-package.json index 30593d17ba5f..960336d50a53 100644 --- a/pkgs/applications/networking/instant-messengers/element/element-desktop-package.json +++ b/pkgs/applications/networking/instant-messengers/element/element-desktop-package.json @@ -2,7 +2,7 @@ "name": "element-desktop", "productName": "Element", "main": "lib/electron-main.js", - "version": "1.10.9", + "version": "1.10.10", "description": "A feature-rich client for Matrix.org", "author": "Element", "repository": { diff --git a/pkgs/applications/networking/instant-messengers/element/pin.json b/pkgs/applications/networking/instant-messengers/element/pin.json index 01d9ed0a7967..1b42ed12f341 100644 --- a/pkgs/applications/networking/instant-messengers/element/pin.json +++ b/pkgs/applications/networking/instant-messengers/element/pin.json @@ -1,6 +1,6 @@ { - "version": "1.10.9", - "desktopSrcHash": "vbVnkb/sVW+c7JGIT8Fcjtwe7i10aY0mBoiNeAD8tvY=", + "version": "1.10.10", + "desktopSrcHash": "Atgcu+K28pScYokS/lTu+/mMeEC+1yTcn3Akq+KZJNY=", "desktopYarnHash": "0jm0i1yyfkg1ll11pb3qif1vdxx6rp0yl9kd8jg9nhsg2jzw66pr", - "webHash": "0yp29h2cmi18y8g8scqx3zmc1l80q28gid709ysqqb349gy1kls8" + "webHash": "1xp0rhw3k2znwvqqikhd771l2n6xyx8npcz87m9d4cisl82lpnr0" } diff --git a/pkgs/applications/networking/mailreaders/neomutt/default.nix b/pkgs/applications/networking/mailreaders/neomutt/default.nix index ac7e1969c505..43cd7183c511 100644 --- a/pkgs/applications/networking/mailreaders/neomutt/default.nix +++ b/pkgs/applications/networking/mailreaders/neomutt/default.nix @@ -4,14 +4,14 @@ }: stdenv.mkDerivation rec { - version = "20220408"; + version = "20220415"; pname = "neomutt"; src = fetchFromGitHub { owner = "neomutt"; repo = "neomutt"; rev = version; - sha256 = "1aziffkjxbflw1narih0dr8ghl142knsb5z14fjb7n5ya9xpgp05"; + sha256 = "sha256-iVKDgVN7YFPEMP+OISS7jRG9Whs2QG60yH1r2kw3MUQ="; }; buildInputs = [ diff --git a/pkgs/desktops/plasma-5/3rdparty/addons/bismuth/default.nix b/pkgs/desktops/plasma-5/3rdparty/addons/bismuth/default.nix index 997e9d873d72..bf46029356ea 100644 --- a/pkgs/desktops/plasma-5/3rdparty/addons/bismuth/default.nix +++ b/pkgs/desktops/plasma-5/3rdparty/addons/bismuth/default.nix @@ -12,13 +12,13 @@ mkDerivation rec { pname = "bismuth"; - version = "3.1.0"; + version = "3.1.1"; src = fetchFromGitHub { owner = "Bismuth-Forge"; repo = pname; rev = "v${version}"; - sha256 = "sha256-kvWrhDbC7nqz810dE42xbd430OSkTN42Hkl6fXR90as="; + sha256 = "sha256-SGeqTmU603gKlzCUJ6AMaG7++9JvMw5EpSATwJEqNq8="; }; cmakeFlags = [ diff --git a/pkgs/development/node-packages/node-packages.json b/pkgs/development/node-packages/node-packages.json index 7056a985faee..48e83f691917 100644 --- a/pkgs/development/node-packages/node-packages.json +++ b/pkgs/development/node-packages/node-packages.json @@ -55,6 +55,7 @@ , "coc-emmet" , "coc-eslint" , "coc-explorer" +, "coc-flutter" , "coc-git" , "coc-go" , "coc-highlight" diff --git a/pkgs/development/node-packages/node-packages.nix b/pkgs/development/node-packages/node-packages.nix index af5ab3f0ba2a..de068fb318d0 100644 --- a/pkgs/development/node-packages/node-packages.nix +++ b/pkgs/development/node-packages/node-packages.nix @@ -31,13 +31,13 @@ let sha512 = "t4WmWoGV9gyzypwG3y3JlcK2t8fKLtvzBA7xEoFTj9SMPvOuLsf13uh4ikK0RRaaa9RPPWLgFUdOyIRaQvCpwQ=="; }; }; - "@alexbosworth/caporal-1.4.1" = { + "@alexbosworth/caporal-1.4.4" = { name = "_at_alexbosworth_slash_caporal"; packageName = "@alexbosworth/caporal"; - version = "1.4.1"; + version = "1.4.4"; src = fetchurl { - url = "https://registry.npmjs.org/@alexbosworth/caporal/-/caporal-1.4.1.tgz"; - sha512 = "oNEyHFcHc66gzmUXDUqzoqEpjcQnsp4REzXMkQNGxMF7MZDxiec3m9IVvzFmXtl0jU48bX/+ay5aZ8G3EVQV3g=="; + url = "https://registry.npmjs.org/@alexbosworth/caporal/-/caporal-1.4.4.tgz"; + sha512 = "IUxyskkgV/N3Jk2+d6SE1CbHScKlqbAaakQjxJwk8NHmXszA8Fqh914VclQ1YvTkzjDNX9mMb1tdRAIhMHC7+A=="; }; }; "@alexbosworth/cli-table3-0.6.1" = { @@ -112,13 +112,13 @@ let sha512 = "hoyByceqwKirw7w3Z7gnIIZC3Wx3J484Y3L/cMpXFbr7d9ZQj2mODrirNzcJa+SM3UlpWXYvKV4RlRpFXlWgXg=="; }; }; - "@angular-devkit/architect-0.1303.2" = { + "@angular-devkit/architect-0.1303.3" = { name = "_at_angular-devkit_slash_architect"; packageName = "@angular-devkit/architect"; - version = "0.1303.2"; + version = "0.1303.3"; src = fetchurl { - url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1303.2.tgz"; - sha512 = "aywsRuucfZ4Tu68wtYI8ItWVbsbc9wc0xm4DB+ROtkAcmuuk4aiLgSqW2Eux6QxmGnq9U/yjFMLASOhFB8qDlw=="; + url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1303.3.tgz"; + sha512 = "WRVVBCzLlMqRZVhZXGASHzNJK/OCAvl/DTGhlLuJDIjF7lVGnXHjtwNM8ilYZq949OnC3fly5Z61TfhbN/OHCg=="; }; }; "@angular-devkit/core-13.3.2" = { @@ -130,6 +130,15 @@ let sha512 = "wav5plcnlxQAfZ+0EUt3dvVTJnJ1au2TlKVQ0jSQJdR1LA6N7QUI49N2Ua6ZnDMwruQaQkoynitMW2l1it3qYQ=="; }; }; + "@angular-devkit/core-13.3.3" = { + name = "_at_angular-devkit_slash_core"; + packageName = "@angular-devkit/core"; + version = "13.3.3"; + src = fetchurl { + url = "https://registry.npmjs.org/@angular-devkit/core/-/core-13.3.3.tgz"; + sha512 = "lfQwY9LuVRwcNVzGmyPcwOpb3CAobP4T+c3joR1LLIPS5lzcM0oeCE2bon9N52Ktn4Q/pH98dVtjWL+jSrUADw=="; + }; + }; "@angular-devkit/schematics-13.3.2" = { name = "_at_angular-devkit_slash_schematics"; packageName = "@angular-devkit/schematics"; @@ -139,6 +148,15 @@ let sha512 = "XCLb23jmqHN0gJg9ZlICaFgfpfnCufIQp5SOsRKMKRkhjKycvDmKnfBTKDlkzb1IaUl6wQwP5k7Z69b9EX+CQw=="; }; }; + "@angular-devkit/schematics-13.3.3" = { + name = "_at_angular-devkit_slash_schematics"; + packageName = "@angular-devkit/schematics"; + version = "13.3.3"; + src = fetchurl { + url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-13.3.3.tgz"; + sha512 = "S8UNlw6IoR/kxBYbiwesuA7oJGSnFkD6bJwVLhpHdT6Sqrz2/IrjHcNgTJRAvhsOKIbfDtMtXRzl/PUdWEfgyw=="; + }; + }; "@angular-devkit/schematics-cli-13.3.2" = { name = "_at_angular-devkit_slash_schematics-cli"; packageName = "@angular-devkit/schematics-cli"; @@ -463,31 +481,31 @@ let sha512 = "+D3xnPD5985iphgAqgUerBDs371a2WzzoEVi7eHJUMMsP/gEnSTdSH0HNxsqhYv6CW4EdKtvDAQdAwA1VtCf2A=="; }; }; - "@aws-sdk/client-s3-3.67.0" = { + "@aws-sdk/client-s3-3.72.0" = { name = "_at_aws-sdk_slash_client-s3"; packageName = "@aws-sdk/client-s3"; - version = "3.67.0"; + version = "3.72.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.67.0.tgz"; - sha512 = "+wSWhkxXG8mY5rlsTXdDaYULpzq8AZ3B2TZKVGEXb6zs1txedyWSYeZr6ENpBoxtJepmlwXDC7oRm39eVoRixw=="; + url = "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.72.0.tgz"; + sha512 = "WQnNs++yTsBARaZqpxIAB3CX9BrqgxnLo4g/wT8cLqRilhL8OY1KPowe8SptXcXbo2AdAuAtcFK2GC+MYcCgmg=="; }; }; - "@aws-sdk/client-sso-3.67.0" = { + "@aws-sdk/client-sso-3.72.0" = { name = "_at_aws-sdk_slash_client-sso"; packageName = "@aws-sdk/client-sso"; - version = "3.67.0"; + version = "3.72.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.67.0.tgz"; - sha512 = "njBLSqX2+4eTjeptODxdYgBC8cYwwNE3VwrIFgf+nosIo8Ll07evZgHhfZsyURou0cUUpxFInDf1KaAotH9lBQ=="; + url = "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.72.0.tgz"; + sha512 = "mQ2qSy5chVTzNo17kcOtylp8gUJr2SIx7ZkaC5ZUrA9RZu673XKFm1SXvL0aBw1LQBioKU2kGNwsUSDunXulpQ=="; }; }; - "@aws-sdk/client-sts-3.67.0" = { + "@aws-sdk/client-sts-3.72.0" = { name = "_at_aws-sdk_slash_client-sts"; packageName = "@aws-sdk/client-sts"; - version = "3.67.0"; + version = "3.72.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.67.0.tgz"; - sha512 = "gTWQU/4tPQLMJpLXgSbUss5s5dsyxpXJW2gWosvLLtX5QlchGBzWEawoA3QIxFRkNJrXqLyaVDBdFFqB+l0mVQ=="; + url = "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.72.0.tgz"; + sha512 = "m6nEXe5wi7Cx9DHBFOji+i2tn+EXNlBC2BymlFZ+KerxAfjLyu9U16Xx9VzmfnQS5dz0Fyh0DLBIcI9DY5+ywQ=="; }; }; "@aws-sdk/config-resolver-3.58.0" = { @@ -517,22 +535,22 @@ let sha512 = "CdtnTQ9zqLx1FbXdbgjijLbMcIWOyQM03TFaLSCjI3FNbUwyt3T7StBU9tj/LtbypHhSdXyQBpzUtXTOMWCEhg=="; }; }; - "@aws-sdk/credential-provider-ini-3.67.0" = { + "@aws-sdk/credential-provider-ini-3.72.0" = { name = "_at_aws-sdk_slash_credential-provider-ini"; packageName = "@aws-sdk/credential-provider-ini"; - version = "3.67.0"; + version = "3.72.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.67.0.tgz"; - sha512 = "47uNhLsd2eKWOa+alsyoT48TbtIfYtIJmC85APunHczqfpUC1YHOyHZ3pCzByGrgx4khjnJ323gfq9kreEHCvA=="; + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.72.0.tgz"; + sha512 = "KeZAywZ5CxEUIRvIpxRiOkRUwGy+rTTGTfjQz/Mz6AUj+nx+8M5WnSLRgENcwXmX59A7VdqosvD1jnRiXJjmPg=="; }; }; - "@aws-sdk/credential-provider-node-3.67.0" = { + "@aws-sdk/credential-provider-node-3.72.0" = { name = "_at_aws-sdk_slash_credential-provider-node"; packageName = "@aws-sdk/credential-provider-node"; - version = "3.67.0"; + version = "3.72.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.67.0.tgz"; - sha512 = "nxBUJ4rANue9MWQyhrmkZwuKVVpwbUXEqyMwJD1uxEZnYXksmAoVxKW/m4vxy1nh/65wAFCCipeLmqYzwJ8m0A=="; + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.72.0.tgz"; + sha512 = "8yNNILXPAD9RlcKI0aronXOgwF9vRZQqEwPuvkurCPFQFt+OM/4/HTJns2NSVmImKDMV36sG+6Ld6aJEVW4cLQ=="; }; }; "@aws-sdk/credential-provider-process-3.58.0" = { @@ -544,13 +562,13 @@ let sha512 = "npgFqPUjMhUamf1FvJjBYUdpbWx8XWkKCwJsX73I7IYQAvAi2atCOkdtKq+4rds0VWAYu6vzlaI1tXgFxjOPNQ=="; }; }; - "@aws-sdk/credential-provider-sso-3.67.0" = { + "@aws-sdk/credential-provider-sso-3.72.0" = { name = "_at_aws-sdk_slash_credential-provider-sso"; packageName = "@aws-sdk/credential-provider-sso"; - version = "3.67.0"; + version = "3.72.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.67.0.tgz"; - sha512 = "AwS7tvA++2li0+yZkiCL1zk56EC3N6fDXWDqPEG/lKuviwyv1B+up6r/6ks7ADWbXuOKzrmslS7rn3DT2ZUkig=="; + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.72.0.tgz"; + sha512 = "2NGjF2gMls5f/9QbUQEHR9kbVGePLI7EXVOyPb1H6DvQLp54keMVdTlSzKlRIcGUNd4MBYuDJak8Slf976/UVw=="; }; }; "@aws-sdk/credential-provider-web-identity-3.55.0" = { @@ -571,13 +589,13 @@ let sha512 = "vTdVFLIHGZTx/Anp9GpkTXVuvwSCNOecTutU5Py4i6fATgefWiSutc5Xc/FLujBSc0EhAXDGZIcTMpZC7jUpeg=="; }; }; - "@aws-sdk/eventstream-serde-browser-3.58.0" = { + "@aws-sdk/eventstream-serde-browser-3.72.0" = { name = "_at_aws-sdk_slash_eventstream-serde-browser"; packageName = "@aws-sdk/eventstream-serde-browser"; - version = "3.58.0"; + version = "3.72.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-browser/-/eventstream-serde-browser-3.58.0.tgz"; - sha512 = "oR5yoOoJrTSUKwbxZSt37bZgMXUUSsOub96E6SOb8wh8TMq2f0wvqeO8A+aaxY487gKpzuVUClp7jSQ9LgiVcw=="; + url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-browser/-/eventstream-serde-browser-3.72.0.tgz"; + sha512 = "UhMZ4P60mZu7G+craAdkRgR4/n3lWAgrNp1upgN2W8RLEQwhqY3qHiUdn/kp6qvontwHnxZkXNB+5Zm5pcP8bQ=="; }; }; "@aws-sdk/eventstream-serde-config-resolver-3.55.0" = { @@ -589,22 +607,22 @@ let sha512 = "NTJHLq1sbXyXAaJucKvcdN3Svr/fM2TjHEC3l8P/torFjIsX1+Ykpi8tZt8KsX8RjoUTTfKylh41AjJq0K9X4Q=="; }; }; - "@aws-sdk/eventstream-serde-node-3.58.0" = { + "@aws-sdk/eventstream-serde-node-3.72.0" = { name = "_at_aws-sdk_slash_eventstream-serde-node"; packageName = "@aws-sdk/eventstream-serde-node"; - version = "3.58.0"; + version = "3.72.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-node/-/eventstream-serde-node-3.58.0.tgz"; - sha512 = "U1DnRVfvKOXty+Bei6oqhRWFzGWzxl0OFHtev9GzC7BE/E6s4Gn695o+NO+9IwQgjOlc/JsGyAcWevq3MDxymg=="; + url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-node/-/eventstream-serde-node-3.72.0.tgz"; + sha512 = "woemBkQ3O7mTiT3kdJH72s3lQLhr2B7hxRhYeaa1xQf1UjLJkKXL5PEOOrcylmxLdF6rYLsFs8Y/Hr4FZfqAqA=="; }; }; - "@aws-sdk/eventstream-serde-universal-3.58.0" = { + "@aws-sdk/eventstream-serde-universal-3.72.0" = { name = "_at_aws-sdk_slash_eventstream-serde-universal"; packageName = "@aws-sdk/eventstream-serde-universal"; - version = "3.58.0"; + version = "3.72.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-universal/-/eventstream-serde-universal-3.58.0.tgz"; - sha512 = "w7czmMNvCCspJi8Ij0lTByCiuYBhyNzYTM1wv33vtF7dL+FJgi4W4c5WFAOtvpsPulobY013TWCjPJG+V0IPGQ=="; + url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-universal/-/eventstream-serde-universal-3.72.0.tgz"; + sha512 = "iIaDC/2xgK+2kLiOPJv8wMDCCtI2JB8bkeac6cQOfn4hZGQdP6fvRGFWD2R8//VR52H68N2vrhCXHvtjnF4iFg=="; }; }; "@aws-sdk/fetch-http-handler-3.58.0" = { @@ -697,13 +715,13 @@ let sha512 = "nx6X6qLPwvbJrGoPxXSu4tsOek2eRnnjk78hhRUDfxFewpHJQLSPlyNKkXAo+C3syVALe6RJRmUYu5bShY6FfA=="; }; }; - "@aws-sdk/middleware-flexible-checksums-3.58.0" = { + "@aws-sdk/middleware-flexible-checksums-3.72.0" = { name = "_at_aws-sdk_slash_middleware-flexible-checksums"; packageName = "@aws-sdk/middleware-flexible-checksums"; - version = "3.58.0"; + version = "3.72.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.58.0.tgz"; - sha512 = "R8S3U1boaIb7+kYhLJBks7rv/eaGj7I5T/2CgmcGY1BJBUU0h0arjPC7eeA/5wV29EHapoxVYQvJda//706rCw=="; + url = "https://registry.npmjs.org/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.72.0.tgz"; + sha512 = "lrwTmpygp6bxGRi6kbMq+EtTW5nsts+B7Wj7MA8PBIQsKU06T2tYxjDBYOyHB1MiVhltlq+vebBvacT64KsbFA=="; }; }; "@aws-sdk/middleware-header-default-3.58.0" = { @@ -868,13 +886,13 @@ let sha512 = "e+2FLgo+eDx7oh7ap5HngN9XSVMxredAVztLHxCcSN0lFHHHzMa8b2SpXbaowUxQHh7ziymSqvOrPYFQ71Filg=="; }; }; - "@aws-sdk/s3-request-presigner-3.67.0" = { + "@aws-sdk/s3-request-presigner-3.72.0" = { name = "_at_aws-sdk_slash_s3-request-presigner"; packageName = "@aws-sdk/s3-request-presigner"; - version = "3.67.0"; + version = "3.72.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/s3-request-presigner/-/s3-request-presigner-3.67.0.tgz"; - sha512 = "GOkB+k5EVSRJg6v3th8Ynhrh89hIW4uP0CjrKChvrDpBOyU2cFN0yLYtIVKaY6FZh7wanMGLhDzCsHPnpBKmfQ=="; + url = "https://registry.npmjs.org/@aws-sdk/s3-request-presigner/-/s3-request-presigner-3.72.0.tgz"; + sha512 = "6CxvI0tdamXn58OEmg59YHZPpsiLvCDtbijs9JhCYxvMblhkyPwWZglsZgcEkzIEPySe9RTZ5/BTHn6FzAe4xw=="; }; }; "@aws-sdk/service-error-classification-3.55.0" = { @@ -913,13 +931,13 @@ let sha512 = "Akvc8G9Del2+umg0R/5Gc/PWgQwbxxTXdnm6YTHtDzvyPPiYWBs6au6WqJQqcqk07gcQV67MLVqFFhnFuLlcVg=="; }; }; - "@aws-sdk/smithy-client-3.55.0" = { + "@aws-sdk/smithy-client-3.72.0" = { name = "_at_aws-sdk_slash_smithy-client"; packageName = "@aws-sdk/smithy-client"; - version = "3.55.0"; + version = "3.72.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/smithy-client/-/smithy-client-3.55.0.tgz"; - sha512 = "YgBpqg6R3Qg8CH9biOP1N1lYTvh8VLGD6AoDGgy/R1dQSqRQuxgKANLl3DOVcZnIZLsw4TdB0m7U+ZPtirPR1Q=="; + url = "https://registry.npmjs.org/@aws-sdk/smithy-client/-/smithy-client-3.72.0.tgz"; + sha512 = "eQ2pEzxtS1Vz1XyNKzG4Z+mtfwRzcAs4FUQP0wrrYVJMsIdI0X4vvro8gYGoBbQtOz65uY3XqQdLuXX/SabTQg=="; }; }; "@aws-sdk/types-3.55.0" = { @@ -1003,31 +1021,31 @@ let sha512 = "30dzofQQfx6tp1jVZkZ0DGRsT0wwC15nEysKRiAcjncM64A0Cm6sra77d0os3vbKiKoPCI/lMsFr4o3533+qvQ=="; }; }; - "@aws-sdk/util-create-request-3.58.0" = { + "@aws-sdk/util-create-request-3.72.0" = { name = "_at_aws-sdk_slash_util-create-request"; packageName = "@aws-sdk/util-create-request"; - version = "3.58.0"; + version = "3.72.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/util-create-request/-/util-create-request-3.58.0.tgz"; - sha512 = "EP6HLQHc8RxjSJ95Ca9Ppp5F0aS6QNSQg03hbjcpmKK42h8dtuXFp5qGAu35VxUg6IRztN2x7lpa+b3d/SdDoQ=="; + url = "https://registry.npmjs.org/@aws-sdk/util-create-request/-/util-create-request-3.72.0.tgz"; + sha512 = "SRxo1RWQ9e7QonuIH8oNEiOJTtasOtYNRD5QYwbJKhNkB4Z6AaE00V28AjrdS/+rMOcb0DKugXZ8Nhbd+n+K0g=="; }; }; - "@aws-sdk/util-defaults-mode-browser-3.55.0" = { + "@aws-sdk/util-defaults-mode-browser-3.72.0" = { name = "_at_aws-sdk_slash_util-defaults-mode-browser"; packageName = "@aws-sdk/util-defaults-mode-browser"; - version = "3.55.0"; + version = "3.72.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/util-defaults-mode-browser/-/util-defaults-mode-browser-3.55.0.tgz"; - sha512 = "OS3gAwR84bHz7ObhjsSJM+grfeaBq3leGrj7xiX4BH3C8J+c10GMo3fqx1pV8Fq5F+9lMmhHpfOocD63SN5Q8A=="; + url = "https://registry.npmjs.org/@aws-sdk/util-defaults-mode-browser/-/util-defaults-mode-browser-3.72.0.tgz"; + sha512 = "xeoh4jdq+tpZWDwGeXeoAQI+rZaCBEicjumBcqfzkRFE3DyaeyPHn3hiKGSR13R+P6Uf86aqaRNmWAeZZjeE0w=="; }; }; - "@aws-sdk/util-defaults-mode-node-3.58.0" = { + "@aws-sdk/util-defaults-mode-node-3.72.0" = { name = "_at_aws-sdk_slash_util-defaults-mode-node"; packageName = "@aws-sdk/util-defaults-mode-node"; - version = "3.58.0"; + version = "3.72.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/util-defaults-mode-node/-/util-defaults-mode-node-3.58.0.tgz"; - sha512 = "KNUCp0MXI+z3Z3pQCKDkx3Stdy1TXDjcUB+ZJFxRTJGIuBYwX4fV6G8s/zeFJi5Qv1ztR3CJ9fWJGsrx9mQ5EA=="; + url = "https://registry.npmjs.org/@aws-sdk/util-defaults-mode-node/-/util-defaults-mode-node-3.72.0.tgz"; + sha512 = "Qf4BZmjWTaWaWbIhra/il8zUAdYY6G4JIcg9WMzQgnh1L/iXpCZddInfB2zT4j5rSAuBf5Ov2T6zvtw3/KOh6Q=="; }; }; "@aws-sdk/util-format-url-3.58.0" = { @@ -2335,13 +2353,13 @@ let sha512 = "TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw=="; }; }; - "@blueprintjs/colors-4.0.5" = { + "@blueprintjs/colors-4.1.0" = { name = "_at_blueprintjs_slash_colors"; packageName = "@blueprintjs/colors"; - version = "4.0.5"; + version = "4.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@blueprintjs/colors/-/colors-4.0.5.tgz"; - sha512 = "5ewWnDdUzyP7hnfidIPyAykGmjHAY2xjcUPM3J2hmnAQ4FORWPv7Mr3PJ9D0D7GfZV/ACx3URRclE1MXfvVlGA=="; + url = "https://registry.npmjs.org/@blueprintjs/colors/-/colors-4.1.0.tgz"; + sha512 = "aXgkEBg2oEz6lCE/sidvREUzQF7eJq2R8BvfOcQ1ICV4r/KVFszee6seA12ZtVaphfvuR4EE/raH6F1d0f4y7g=="; }; }; "@blueprintjs/core-3.54.0" = { @@ -3406,6 +3424,51 @@ let sha512 = "QRVtqJuS1mcT56oHpVegkKBlgtWjXw/gHNWO3eL9oyB5Sc7HBoc2OLG/nYpVfT/Jejvo3NUrD0Udk7XgoyDKkA=="; }; }; + "@envelop/core-2.3.1" = { + name = "_at_envelop_slash_core"; + packageName = "@envelop/core"; + version = "2.3.1"; + src = fetchurl { + url = "https://registry.npmjs.org/@envelop/core/-/core-2.3.1.tgz"; + sha512 = "AnYUci7EGyA8flml881lDvVDl6n/u6GQpVIOTsZVO29d4/rPqSJ2KFguDD3mjDL406doTTLNuDI4ndxfJl6fmQ=="; + }; + }; + "@envelop/disable-introspection-3.3.1" = { + name = "_at_envelop_slash_disable-introspection"; + packageName = "@envelop/disable-introspection"; + version = "3.3.1"; + src = fetchurl { + url = "https://registry.npmjs.org/@envelop/disable-introspection/-/disable-introspection-3.3.1.tgz"; + sha512 = "THR8UnRQQB5nCLmITXvebwXwSHvFjS+ThA3RRVXpFX9EupMbTFN5a4NHty7+BYD798c3VrBZ/InbMlEWqw1c9g=="; + }; + }; + "@envelop/parser-cache-4.3.1" = { + name = "_at_envelop_slash_parser-cache"; + packageName = "@envelop/parser-cache"; + version = "4.3.1"; + src = fetchurl { + url = "https://registry.npmjs.org/@envelop/parser-cache/-/parser-cache-4.3.1.tgz"; + sha512 = "IqerCVjvVTiGvSZ8qSpdEc55hhiuekufJd0+ldWtyMPznhMaYOzpLifFUhjhhD7004eJM17n9vjJQFa7fIGz8Q=="; + }; + }; + "@envelop/types-2.2.0" = { + name = "_at_envelop_slash_types"; + packageName = "@envelop/types"; + version = "2.2.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@envelop/types/-/types-2.2.0.tgz"; + sha512 = "Lghvfs0kh53G5mUKpCMlB/FhHh3O8SSR4hewB7JyE9hOEu/9h/6u+GHH/OEgdaRHky1Sae5Jf4grO+h21ka4ig=="; + }; + }; + "@envelop/validation-cache-4.3.1" = { + name = "_at_envelop_slash_validation-cache"; + packageName = "@envelop/validation-cache"; + version = "4.3.1"; + src = fetchurl { + url = "https://registry.npmjs.org/@envelop/validation-cache/-/validation-cache-4.3.1.tgz"; + sha512 = "lmtu9idhdWqbYkcFoFsL1ED4y38DLvj6EDEwE9tULXWuZm4WWmlNQAmKHAwB1d3kGVQAMtxM59crkOOJGRBgHQ=="; + }; + }; "@eslint/eslintrc-0.4.3" = { name = "_at_eslint_slash_eslintrc"; packageName = "@eslint/eslintrc"; @@ -3667,22 +3730,22 @@ let sha512 = "M4SmXu428wwQLu1iw6ST07iACjdKY5HiU+xpcgD3IQMMQazgN616GDzc6KZ1ebuBsF7B4TyQS7KZh9mfxnnldg=="; }; }; - "@fluentui/font-icons-mdl2-8.3.0" = { + "@fluentui/font-icons-mdl2-8.3.1" = { name = "_at_fluentui_slash_font-icons-mdl2"; packageName = "@fluentui/font-icons-mdl2"; - version = "8.3.0"; + version = "8.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/font-icons-mdl2/-/font-icons-mdl2-8.3.0.tgz"; - sha512 = "o67iMsFFqBCSL/l9D+wAguHCPOFd9xde9SztL7zwlf/c3o3+7oPRfzI/Zs1BqMxwd3WDsoKidhS2X6U8sZAuyg=="; + url = "https://registry.npmjs.org/@fluentui/font-icons-mdl2/-/font-icons-mdl2-8.3.1.tgz"; + sha512 = "L+rYMpTqj335zOhgLEf5vbzyhbSnqTXdsTbN4I9eUHZStrCzrKVcrQ57J/PvBVCZlqkqC9EAOaqhsf2CahPhBg=="; }; }; - "@fluentui/foundation-legacy-8.2.5" = { + "@fluentui/foundation-legacy-8.2.6" = { name = "_at_fluentui_slash_foundation-legacy"; packageName = "@fluentui/foundation-legacy"; - version = "8.2.5"; + version = "8.2.6"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/foundation-legacy/-/foundation-legacy-8.2.5.tgz"; - sha512 = "PP8Wbw1QK9lmzReh+C7XG7A7Q3WTXAaxAMHjcBE3m2OPnhlF77Ok6IAJBkuKTWg0SZYQqJilTDSkVDnXVylGgQ=="; + url = "https://registry.npmjs.org/@fluentui/foundation-legacy/-/foundation-legacy-8.2.6.tgz"; + sha512 = "exjlFBqtxoFdz9gAg106iTtYhdtvztUHWcpxENwBGfSyFdQNKBuitQPvR5V5xO2snWxJCo/UNK3YWjgTm7UB/A=="; }; }; "@fluentui/keyboard-key-0.4.0" = { @@ -3694,40 +3757,40 @@ let sha512 = "2jcD23FzOPaSXqWtfOSCzopkKtxTXUFuHZyVt4aqVRDEjPbkQ/7p37O1WL95xweWTR/9fEPO/gPtv9kOnXrJcA=="; }; }; - "@fluentui/merge-styles-8.5.0" = { + "@fluentui/merge-styles-8.5.1" = { name = "_at_fluentui_slash_merge-styles"; packageName = "@fluentui/merge-styles"; - version = "8.5.0"; + version = "8.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/merge-styles/-/merge-styles-8.5.0.tgz"; - sha512 = "+WoaAaoYx/wfkrz1Ag40JqHvDUFfQcg+dQ3jaEOoau16y7EZGIe7oN8WYIXNMgWuMxH7r1QlanFbQZ+ziKjHmw=="; + url = "https://registry.npmjs.org/@fluentui/merge-styles/-/merge-styles-8.5.1.tgz"; + sha512 = "jzTyqhockpunkFKbEK+8sBP2cbgLllcmcWdTkCrxb+8CxLXD5bMWGMgUiI99Xz7+G/01QBMgAHOngKC05dVS7A=="; }; }; - "@fluentui/react-8.64.3" = { + "@fluentui/react-8.65.0" = { name = "_at_fluentui_slash_react"; packageName = "@fluentui/react"; - version = "8.64.3"; + version = "8.65.0"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/react/-/react-8.64.3.tgz"; - sha512 = "zFZIydeLY5rovBXxVNvaRuDM1+TkBJ1h7s7bCGgZHuWbya0vmiWUJOEKsGL2hNJw9nppCrgau7EZU2b5d4xePQ=="; + url = "https://registry.npmjs.org/@fluentui/react/-/react-8.65.0.tgz"; + sha512 = "wQqRT8RemcSLJ1cinAAwgerZaax8mYys2eO5ZQtCoO84gbKvlF2G1OLfZpjXPUnu/R06o99GdFdOqIyOnPqyDQ=="; }; }; - "@fluentui/react-focus-8.5.6" = { + "@fluentui/react-focus-8.5.7" = { name = "_at_fluentui_slash_react-focus"; packageName = "@fluentui/react-focus"; - version = "8.5.6"; + version = "8.5.7"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/react-focus/-/react-focus-8.5.6.tgz"; - sha512 = "K4INgXiwlinLz0Msa5TQbhL3YoN1mtqXO3p7XChDKeIf0QepAUDTnmJCrtKXqzY5VuXauLXyqm2darcHFrotVw=="; + url = "https://registry.npmjs.org/@fluentui/react-focus/-/react-focus-8.5.7.tgz"; + sha512 = "5pL5Tbtu5eGtKMNYSHpZ7pNd/gR+Ge2Ye9r8UjphX2X3xYm0/Q0ktjRO1xdPDi7KW20I3GgLDviCW2atSxqIBw=="; }; }; - "@fluentui/react-hooks-8.5.3" = { + "@fluentui/react-hooks-8.5.4" = { name = "_at_fluentui_slash_react-hooks"; packageName = "@fluentui/react-hooks"; - version = "8.5.3"; + version = "8.5.4"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/react-hooks/-/react-hooks-8.5.3.tgz"; - sha512 = "zWiiEp/vYmKIXhw/bIVH9BnPKLT3zgWt9ryi3Tp1VVgxLEDloomM7RgDn0e2P8HZvynYRRT8GKq3XJ8H3AzAUg=="; + url = "https://registry.npmjs.org/@fluentui/react-hooks/-/react-hooks-8.5.4.tgz"; + sha512 = "WEU+NCrc080v631KFetcqNfXUBReX91cPbDyo8gi3M5babObs/m913SeV/m2llLKVCAelLVEIGw33QlQsGAK3g=="; }; }; "@fluentui/react-window-provider-2.2.0" = { @@ -3748,31 +3811,31 @@ let sha512 = "bqjpfhqaIkBy16vdYzdc7tER9Td7BTcmC+kCXuqkHOQVuG9LJfqVGRV0DA857KLhOxiy0GXwKMeDbNV5jJf6qQ=="; }; }; - "@fluentui/style-utilities-8.6.5" = { + "@fluentui/style-utilities-8.6.6" = { name = "_at_fluentui_slash_style-utilities"; packageName = "@fluentui/style-utilities"; - version = "8.6.5"; + version = "8.6.6"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/style-utilities/-/style-utilities-8.6.5.tgz"; - sha512 = "X0ZIreRdUlnJnRQmKtngWEbrqFuecBlEv9fkKoHJeu+27AD+AU9RPYgK4fd/QCJRFoTU9WzQJj9tWylTBK+kFA=="; + url = "https://registry.npmjs.org/@fluentui/style-utilities/-/style-utilities-8.6.6.tgz"; + sha512 = "axMN7sq4W/YLuk0LiYPrg23e45Tkv89w9w6FCRnhj6JWja+inlK/IPh/qR2egOBkXU0iJY3g03KP0GMqqm5eWg=="; }; }; - "@fluentui/theme-2.6.4" = { + "@fluentui/theme-2.6.5" = { name = "_at_fluentui_slash_theme"; packageName = "@fluentui/theme"; - version = "2.6.4"; + version = "2.6.5"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/theme/-/theme-2.6.4.tgz"; - sha512 = "MXCY2Z5zc1nK5PCN6tqhI1nplX/LF+8lF8YsrSGvu6VDnHilxi4Rifv2dRc+jybNI13tZ50uteok2Je7jABcMA=="; + url = "https://registry.npmjs.org/@fluentui/theme/-/theme-2.6.5.tgz"; + sha512 = "P22JpZSZoDjIWO5AxdPNjuDixqlhHvj8eEQB4Ilf/aYKXXzMI8HTc6eBcm9vQt3NKutzHsat3h+Jrstkw9H2YA=="; }; }; - "@fluentui/utilities-8.8.1" = { + "@fluentui/utilities-8.8.2" = { name = "_at_fluentui_slash_utilities"; packageName = "@fluentui/utilities"; - version = "8.8.1"; + version = "8.8.2"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/utilities/-/utilities-8.8.1.tgz"; - sha512 = "JtICpdTINvifiyjp/LxxuDiU8BMkU73mzAP/3mz5KIhqPn3QjKG9ZeaBLPpoUXNOP/I6i9AYbAQHDvQI/ZK5tg=="; + url = "https://registry.npmjs.org/@fluentui/utilities/-/utilities-8.8.2.tgz"; + sha512 = "hmPS0NiKT1QfBHRX8hM9V179jlM1nt4JxBuzkb+52+XPYwcwBYZJfb4UaX0UhMJH7Em5xwc5Dy2AjNqPCOvnIg=="; }; }; "@gar/promisify-1.1.3" = { @@ -3892,13 +3955,13 @@ let sha512 = "IuR2SB2MnC2ztA/XeTMTfWcA0Wy7ZH5u+nDkDNLAdX+AaSyDnsQS35sCmHqG0VOGTl7rzoyBWLCKGwSJplgtwg=="; }; }; - "@graphql-tools/batch-execute-8.4.4" = { + "@graphql-tools/batch-execute-8.4.5" = { name = "_at_graphql-tools_slash_batch-execute"; packageName = "@graphql-tools/batch-execute"; - version = "8.4.4"; + version = "8.4.5"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/batch-execute/-/batch-execute-8.4.4.tgz"; - sha512 = "5B3srfrNh7qqaH4FWysiZXPDVD7snwM+qsW3Bkq8M0iRAZVUb3P9o23xJbBwS32g678TuCjKy113K0PSqHyeCw=="; + url = "https://registry.npmjs.org/@graphql-tools/batch-execute/-/batch-execute-8.4.5.tgz"; + sha512 = "wx2bK3EZ5XSF/jXCQyx/IAucHxCbcQpNNE3wlIxrymZkGSVnwdz0xBfefsn17smImNXGaXgQ+pE7gPDCKmeGrw=="; }; }; "@graphql-tools/delegate-7.1.5" = { @@ -3910,13 +3973,13 @@ let sha512 = "bQu+hDd37e+FZ0CQGEEczmRSfQRnnXeUxI/0miDV+NV/zCbEdIJj5tYFNrKT03W6wgdqx8U06d8L23LxvGri/g=="; }; }; - "@graphql-tools/delegate-8.7.4" = { + "@graphql-tools/delegate-8.7.6" = { name = "_at_graphql-tools_slash_delegate"; packageName = "@graphql-tools/delegate"; - version = "8.7.4"; + version = "8.7.6"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-8.7.4.tgz"; - sha512 = "OXdIHRqqUDFvBebSZ/MQAvQOJ1Kvl7gjD78ClG4bPts6qDfFHwzlX0V8QESFCo8H67VDRzB4nnqlDyOIzjVNlQ=="; + url = "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-8.7.6.tgz"; + sha512 = "x/dJzgocSANk4Tw6kaASn2aSTJpYvQoLsOSH2fVgnjiaDJkidwctbb5rpbEs6n+WjNB2gW/ldyHTdEbNREJjsw=="; }; }; "@graphql-tools/graphql-file-loader-6.2.7" = { @@ -3928,22 +3991,22 @@ let sha512 = "5k2SNz0W87tDcymhEMZMkd6/vs6QawDyjQXWtqkuLTBF3vxjxPD1I4dwHoxgWPIjjANhXybvulD7E+St/7s9TQ=="; }; }; - "@graphql-tools/graphql-file-loader-7.3.9" = { + "@graphql-tools/graphql-file-loader-7.3.10" = { name = "_at_graphql-tools_slash_graphql-file-loader"; packageName = "@graphql-tools/graphql-file-loader"; - version = "7.3.9"; + version = "7.3.10"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/graphql-file-loader/-/graphql-file-loader-7.3.9.tgz"; - sha512 = "jCc4X6+PFVQlhpd+bvHxfldteYrzWvoYDNy+dzPgw3O/NYtjJ/B1wH6X2L4wXI+CDlKEdUKSEe+Dk6j9gmaItw=="; + url = "https://registry.npmjs.org/@graphql-tools/graphql-file-loader/-/graphql-file-loader-7.3.10.tgz"; + sha512 = "IkhBU3ho+LL9hKSwiBX/of0zIkq/T1Z3Cd8v2COZAsq1qfg07s1xJUA+gZYZPkxcaa12ThUxyNGf5SuF6T7uZA=="; }; }; - "@graphql-tools/import-6.6.11" = { + "@graphql-tools/import-6.6.12" = { name = "_at_graphql-tools_slash_import"; packageName = "@graphql-tools/import"; - version = "6.6.11"; + version = "6.6.12"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/import/-/import-6.6.11.tgz"; - sha512 = "lKIRTsDxqdzrJtEOnqW4pr73/QRbGhyc37xewz4EvCYoUk6FEwqilEZIrkChmdQFjOV9BnwxFCp8KaS0P+qU4A=="; + url = "https://registry.npmjs.org/@graphql-tools/import/-/import-6.6.12.tgz"; + sha512 = "M0detzy3ihJGJbo7MZ6j02198o2nBhiY2MpnWEMRtUMgmZgz5ZTctK3lIxMsd+6LU96m+mc1i2MNIruTHQ6czw=="; }; }; "@graphql-tools/json-file-loader-6.2.6" = { @@ -3955,13 +4018,13 @@ let sha512 = "CnfwBSY5926zyb6fkDBHnlTblHnHI4hoBALFYXnrg0Ev4yWU8B04DZl/pBRUc459VNgO2x8/mxGIZj2hPJG1EA=="; }; }; - "@graphql-tools/json-file-loader-7.3.9" = { + "@graphql-tools/json-file-loader-7.3.10" = { name = "_at_graphql-tools_slash_json-file-loader"; packageName = "@graphql-tools/json-file-loader"; - version = "7.3.9"; + version = "7.3.10"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/json-file-loader/-/json-file-loader-7.3.9.tgz"; - sha512 = "yLX5ADmT4m8hZvgsh9zjvcfS0ijrh3C/TNroRt81thN2nFMYmglRbxmOZgHXnT5DnL8v/BiqmlVpiq4cWEeJcw=="; + url = "https://registry.npmjs.org/@graphql-tools/json-file-loader/-/json-file-loader-7.3.10.tgz"; + sha512 = "wLWv0NWRJm3YG1uKkGU4dFTiw8vy6iLxsSCW6ud8f87AfEIG07vS6w2598c1kB1UlTAGqWQYG3HyJ65cjFripA=="; }; }; "@graphql-tools/load-6.2.4" = { @@ -3973,13 +4036,13 @@ let sha512 = "FlQC50VELwRxoWUbJMMMs5gG0Dl8BaQYMrXUHTsxwqR7UmksUYnysC21rdousvs6jVZ7pf4unZfZFtBjz+8Edg=="; }; }; - "@graphql-tools/load-7.5.8" = { + "@graphql-tools/load-7.5.9" = { name = "_at_graphql-tools_slash_load"; packageName = "@graphql-tools/load"; - version = "7.5.8"; + version = "7.5.9"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/load/-/load-7.5.8.tgz"; - sha512 = "+kQ7aT9GEuBmiGQlGsFU5f2e1A0hMbwCePzHYOvHR5BF8soJeToWZLiIC2hJf6z06aco+LC9x/os+6p9U9+7iQ=="; + url = "https://registry.npmjs.org/@graphql-tools/load/-/load-7.5.9.tgz"; + sha512 = "khm1v76ZZseptpweCQ1SIUWi8Y17VCWKTFmKNGkaCDtFEOrwPH6B8u+/J3xS5J+ltQc9FoomMpn6ZELUOqq1dg=="; }; }; "@graphql-tools/merge-6.2.17" = { @@ -3991,13 +4054,13 @@ let sha512 = "G5YrOew39fZf16VIrc49q3c8dBqQDD0ax5LYPiNja00xsXDi0T9zsEWVt06ApjtSdSF6HDddlu5S12QjeN8Tow=="; }; }; - "@graphql-tools/merge-8.2.8" = { + "@graphql-tools/merge-8.2.9" = { name = "_at_graphql-tools_slash_merge"; packageName = "@graphql-tools/merge"; - version = "8.2.8"; + version = "8.2.9"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.2.8.tgz"; - sha512 = "e4kpzgEIlA0sC0NjJlMwUL73Iz/HoP2OgAUReDDsupvWCqW3PMxjNoviS8xmcklVnv1w8Vmr8U2tao+x40ypLA=="; + url = "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.2.9.tgz"; + sha512 = "mHRrqMc1NTL6MALBQK1DmAzSxJIKoaCaW7ZCk5bRGzVj/MNQz3OsqlDb/+t9/ONT0V+WI/uxBFsrLMwa4p6L7A=="; }; }; "@graphql-tools/schema-7.1.5" = { @@ -4009,13 +4072,13 @@ let sha512 = "uyn3HSNSckf4mvQSq0Q07CPaVZMNFCYEVxroApOaw802m9DcZPgf9XVPy/gda5GWj9AhbijfRYVTZQgHnJ4CXA=="; }; }; - "@graphql-tools/schema-8.3.8" = { + "@graphql-tools/schema-8.3.9" = { name = "_at_graphql-tools_slash_schema"; packageName = "@graphql-tools/schema"; - version = "8.3.8"; + version = "8.3.9"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/schema/-/schema-8.3.8.tgz"; - sha512 = "Bba60ali4fLOKJz/Kk39RcBrDUBtu0Wy7pjpIOmFIKQKwUBNNB0eAmfpvrjnFhRAVdO2kOkPpc8DQY+SCG+lWw=="; + url = "https://registry.npmjs.org/@graphql-tools/schema/-/schema-8.3.9.tgz"; + sha512 = "9YFCzn0sYAGTWhZrVYY/neK5cie3s0dNm7Qq38tkhOh2ME5BtHW/8ZIq+UrLGKsBYwa+Qjb/UojGWUm2yG/z6Q=="; }; }; "@graphql-tools/url-loader-6.10.1" = { @@ -4027,13 +4090,13 @@ let sha512 = "DSDrbhQIv7fheQ60pfDpGD256ixUQIR6Hhf9Z5bRjVkXOCvO5XrkwoWLiU7iHL81GB1r0Ba31bf+sl+D4nyyfw=="; }; }; - "@graphql-tools/url-loader-7.9.11" = { + "@graphql-tools/url-loader-7.9.13" = { name = "_at_graphql-tools_slash_url-loader"; packageName = "@graphql-tools/url-loader"; - version = "7.9.11"; + version = "7.9.13"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-7.9.11.tgz"; - sha512 = "janH0mhUxIsttEFwjtFIDAsfQwf1A2f9qKrvBIljF1Gcr/IWVH2DB7HfaQ5jIQrxaKv2wD3VHuU+/vMz+hpyOw=="; + url = "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-7.9.13.tgz"; + sha512 = "AeLCLhUyXt2Owt624v0/xjGBvBrYJLWhdNm5LJLcWrMxRoEq16B+E5/JOq3aXruDAaq3VmINjnRMM1As+FphSg=="; }; }; "@graphql-tools/utils-6.2.4" = { @@ -4063,13 +4126,13 @@ let sha512 = "gzkavMOgbhnwkHJYg32Adv6f+LxjbQmmbdD5Hty0+CWxvaiuJq+nU6tzb/7VSU4cwhbNLx/lGu2jbCPEW1McZQ=="; }; }; - "@graphql-tools/utils-8.6.7" = { + "@graphql-tools/utils-8.6.8" = { name = "_at_graphql-tools_slash_utils"; packageName = "@graphql-tools/utils"; - version = "8.6.7"; + version = "8.6.8"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.6.7.tgz"; - sha512 = "Qi3EN95Rt3hb8CyDKpPKFWOPrnc00P18cpVTXEgtKxetSP39beJBeEEtLB0R53eP/6IolsyTZOTgkET1EaERaw=="; + url = "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.6.8.tgz"; + sha512 = "EdUUeKi/wp/UvuknyINpQ/uXDqTM3qxPPPDIq5RpfW0zQOeCvbZcx8xHoMox0TYKvKtg3zoB7aprUtoW+iZLxw=="; }; }; "@graphql-tools/wrap-7.0.8" = { @@ -4081,13 +4144,49 @@ let sha512 = "1NDUymworsOlb53Qfh7fonDi2STvqCtbeE68ntKY9K/Ju/be2ZNxrFSbrBHwnxWcN9PjISNnLcAyJ1L5tCUyhg=="; }; }; - "@graphql-tools/wrap-8.4.13" = { + "@graphql-tools/wrap-8.4.15" = { name = "_at_graphql-tools_slash_wrap"; packageName = "@graphql-tools/wrap"; - version = "8.4.13"; + version = "8.4.15"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/wrap/-/wrap-8.4.13.tgz"; - sha512 = "q0Fa0CVgcaqm4FI4GXAVLjz8TQaF6lpFOm/rlgEkMzW9wFY/ZvDs+K3fVh9BgNvpudJArnVzAZgl2+FHNdY9CA=="; + url = "https://registry.npmjs.org/@graphql-tools/wrap/-/wrap-8.4.15.tgz"; + sha512 = "O3a3IP2yDWqR+B+WtAodiLx166ylGWLuM86upQfZGyJgjhIGqVAEqKIZbE/FyvHUpSiuVpcKwDgwtfCV/s1qNQ=="; + }; + }; + "@graphql-typed-document-node/core-3.1.1" = { + name = "_at_graphql-typed-document-node_slash_core"; + packageName = "@graphql-typed-document-node/core"; + version = "3.1.1"; + src = fetchurl { + url = "https://registry.npmjs.org/@graphql-typed-document-node/core/-/core-3.1.1.tgz"; + sha512 = "NQ17ii0rK1b34VZonlmT2QMJFI70m0TRwbknO/ihlbatXyaktDhN/98vBiUU6kNBPljqGqyIrl2T4nY2RpFANg=="; + }; + }; + "@graphql-yoga/common-2.3.0" = { + name = "_at_graphql-yoga_slash_common"; + packageName = "@graphql-yoga/common"; + version = "2.3.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@graphql-yoga/common/-/common-2.3.0.tgz"; + sha512 = "EPKK97953c8E1FiaLHMMGqLKtoAN5H9qHr0AiAzMlruJHn0JcbMf2qFTUXklCsuk6UEwNtxeHX42zim11O/E1g=="; + }; + }; + "@graphql-yoga/node-2.3.0" = { + name = "_at_graphql-yoga_slash_node"; + packageName = "@graphql-yoga/node"; + version = "2.3.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@graphql-yoga/node/-/node-2.3.0.tgz"; + sha512 = "uofEmKIDYthJuCcdhbgU0VW5i2cCqZVKIiEW/xbwvCOBJt439k46D+M6youiQYJ1miaA/m0btbuZ1sAo/TLjdQ=="; + }; + }; + "@graphql-yoga/subscription-2.0.0" = { + name = "_at_graphql-yoga_slash_subscription"; + packageName = "@graphql-yoga/subscription"; + version = "2.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@graphql-yoga/subscription/-/subscription-2.0.0.tgz"; + sha512 = "HlG+gIddjIP3/BDrMZymdzmzDjNdYuSGMxx6+1JA83gAEVRDR4yOoT4QeNKYqRhLK9xca/Hxp1PfBpquSa244Q=="; }; }; "@grpc/grpc-js-1.5.10" = { @@ -4126,6 +4225,15 @@ let sha512 = "9+89Ne1K8F9u86T+l1yIV2DS+dWHYVK61SsDZN4MFTFehOOaJ4rHxa1cW8Lwdn2/6tOx7N3+SY/vfcjztOHopA=="; }; }; + "@grpc/grpc-js-1.6.4" = { + name = "_at_grpc_slash_grpc-js"; + packageName = "@grpc/grpc-js"; + version = "1.6.4"; + src = fetchurl { + url = "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.6.4.tgz"; + sha512 = "Jqq8t3ylPLPK4XXnYPj2uuESirRCAaQ0//GxRLPK6Xq2TBHb2DlmSzJUh15a6R4uUIjBwA8wI69JuKleZXz4jQ=="; + }; + }; "@grpc/proto-loader-0.6.9" = { name = "_at_grpc_slash_proto-loader"; packageName = "@grpc/proto-loader"; @@ -5746,13 +5854,13 @@ let sha512 = "W6CLUJ2eBMw3Rec70qrsEW0jOm/3twwJv21mrmj2yORiaVmVYGS4sSS5yUwvQc1ZlDLYGPnClVWmUUMagKNsfA=="; }; }; - "@microsoft/load-themed-styles-1.10.257" = { + "@microsoft/load-themed-styles-1.10.258" = { name = "_at_microsoft_slash_load-themed-styles"; packageName = "@microsoft/load-themed-styles"; - version = "1.10.257"; + version = "1.10.258"; src = fetchurl { - url = "https://registry.npmjs.org/@microsoft/load-themed-styles/-/load-themed-styles-1.10.257.tgz"; - sha512 = "QRWEP1re0byEdedyYr82/mL8lcKPihNiASO+YJlohX9vsa/FSUSVD5lZQ87xSpgpOjGGc37CuPHhU+xnhLsS7A=="; + url = "https://registry.npmjs.org/@microsoft/load-themed-styles/-/load-themed-styles-1.10.258.tgz"; + sha512 = "MUJGLLztVKuL7cvQcErURsqDF1XW3XR8FKJDgoxZ1g55C7k28TNZ3DkLSVLI/Z3arCB5ZbYQBx5pXAXlyKXtEA=="; }; }; "@mitmaro/errors-1.0.0" = { @@ -7753,6 +7861,15 @@ let sha512 = "feQEZlyBvQsbT/fvpJ4jJ5OLGaUPpnskHYDsY8DGpPymN+HUeDQrqkBEbbKRwMKidFTI2cxk2kJNNTnvdS9jyw=="; }; }; + "@repeaterjs/repeater-3.0.4" = { + name = "_at_repeaterjs_slash_repeater"; + packageName = "@repeaterjs/repeater"; + version = "3.0.4"; + src = fetchurl { + url = "https://registry.npmjs.org/@repeaterjs/repeater/-/repeater-3.0.4.tgz"; + sha512 = "AW8PKd6iX3vAZ0vA43nOUOnbq/X5ihgU+mSXXqunMkeQADGiqw/PY0JNeYtD5sr0PAy51YPgAPbDoeapv9r8WA=="; + }; + }; "@request/api-0.6.0" = { name = "_at_request_slash_api"; packageName = "@request/api"; @@ -7798,13 +7915,13 @@ let sha512 = "c/qwwcHyafOQuVQJj0IlBjf5yYgBI7YPJ77k4fOJYesb41jio65eaJODRUmfYKhTOFBrIZ66kgvGPlNbjuoRdQ=="; }; }; - "@schematics/angular-13.3.2" = { + "@schematics/angular-13.3.3" = { name = "_at_schematics_slash_angular"; packageName = "@schematics/angular"; - version = "13.3.2"; + version = "13.3.3"; src = fetchurl { - url = "https://registry.npmjs.org/@schematics/angular/-/angular-13.3.2.tgz"; - sha512 = "ycTrPEsaSEtJ/CR8MVBrU6jaxcdBSy1lGUW8qSElsGS0OkHFKaV7fkzS9h0gPK9ANp6grZn0Ms3Hy3gAKQkiiQ=="; + url = "https://registry.npmjs.org/@schematics/angular/-/angular-13.3.3.tgz"; + sha512 = "kX5ghVCmWHcMN+g0pUaFuIJzwrXsVnK4bfid8DckU4EEtfFSv3UA5I1QNJRgpCPxTPhNEAk+3ePN8nzDSjdU+w=="; }; }; "@segment/loosely-validate-event-2.0.0" = { @@ -8527,13 +8644,13 @@ let sha512 = "azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g=="; }; }; - "@types/babel__traverse-7.14.2" = { + "@types/babel__traverse-7.17.0" = { name = "_at_types_slash_babel__traverse"; packageName = "@types/babel__traverse"; - version = "7.14.2"; + version = "7.17.0"; src = fetchurl { - url = "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.14.2.tgz"; - sha512 = "K2waXdXBi2302XUdcHcR1jCeU0LL4TD9HRs/gk0N2Xvrht+G/BfJa4QObBQZfhMdxiCpV3COl5Nfq4uKTeTnJA=="; + url = "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.17.0.tgz"; + sha512 = "r8aveDbd+rzGP+ykSdF3oPuTVRWRfbBiHl0rVDM2yNEmSMXfkObQLV46b4RnCv3Lra51OlfnZhkkFaDl2MIRaA=="; }; }; "@types/babylon-6.16.6" = { @@ -9391,13 +9508,13 @@ let sha512 = "Exw4yUWMBXM3X+8oqzJNRqZSwUAaS4+7NdvHqQuFi/d+synz++xmX3QIf+BFqneW8N31R8Ky+sikfZUXq07ggQ=="; }; }; - "@types/node-12.20.47" = { + "@types/node-12.20.48" = { name = "_at_types_slash_node"; packageName = "@types/node"; - version = "12.20.47"; + version = "12.20.48"; src = fetchurl { - url = "https://registry.npmjs.org/@types/node/-/node-12.20.47.tgz"; - sha512 = "BzcaRsnFuznzOItW1WpQrDHM7plAa7GIDMZ6b5pnMbkqEtM/6WCOhvZar39oeMQP79gwvFUWjjptE7/KGcNqFg=="; + url = "https://registry.npmjs.org/@types/node/-/node-12.20.48.tgz"; + sha512 = "4kxzqkrpwYtn6okJUcb2lfUu9ilnb3yhUOH6qX3nug8D2DupZ2drIkff2yJzYcNJVl3begnlcaBJ7tqiTTzjnQ=="; }; }; "@types/node-13.13.52" = { @@ -9418,13 +9535,13 @@ let sha512 = "USUftMYpmuMzeWobskoPfzDi+vkpe0dvcOBRNOscFrGxVp4jomnRxWuVohgqBow2xyIPC0S3gjxV/5079jhmDg=="; }; }; - "@types/node-14.18.12" = { + "@types/node-14.18.13" = { name = "_at_types_slash_node"; packageName = "@types/node"; - version = "14.18.12"; + version = "14.18.13"; src = fetchurl { - url = "https://registry.npmjs.org/@types/node/-/node-14.18.12.tgz"; - sha512 = "q4jlIR71hUpWTnGhXWcakgkZeHa3CCjcQcnuzU8M891BAWA2jHiziiWEPEkdS5pFsz7H9HJiy8BrK7tBRNrY7A=="; + url = "https://registry.npmjs.org/@types/node/-/node-14.18.13.tgz"; + sha512 = "Z6/KzgyWOga3pJNS42A+zayjhPbf2zM3hegRQaOPnLOzEi86VV++6FLDWgR1LGrVCRufP/ph2daa3tEa5br1zA=="; }; }; "@types/node-15.14.9" = { @@ -9436,13 +9553,13 @@ let sha512 = "qjd88DrCxupx/kJD5yQgZdcYKZKSIGBVDIBE1/LTGcNm3d2Np/jxojkdePDdfnBHJc5W7vSMpbJ1aB7p/Py69A=="; }; }; - "@types/node-16.11.26" = { + "@types/node-16.11.27" = { name = "_at_types_slash_node"; packageName = "@types/node"; - version = "16.11.26"; + version = "16.11.27"; src = fetchurl { - url = "https://registry.npmjs.org/@types/node/-/node-16.11.26.tgz"; - sha512 = "GZ7bu5A6+4DtG7q9GsoHXy3ALcgeIHP4NnL0Vv2wu0uUB/yQex26v0tf6/na1mm0+bS9Uw+0DFex7aaKr2qawQ=="; + url = "https://registry.npmjs.org/@types/node/-/node-16.11.27.tgz"; + sha512 = "C1pD3kgLoZ56Uuy5lhfOxie4aZlA3UMGLX9rXteq4WitEZH6Rl80mwactt9QG0w0gLFlN/kLBTFnGXtDVWvWQw=="; }; }; "@types/node-16.11.6" = { @@ -9472,6 +9589,15 @@ let sha512 = "UxDxWn7dl97rKVeVS61vErvw086aCYhDLyvRQZ5Rk65rZKepaFdm53GeqXaKBuOhED4e9uWq34IC3TdSdJJ2Gw=="; }; }; + "@types/node-17.0.24" = { + name = "_at_types_slash_node"; + packageName = "@types/node"; + version = "17.0.24"; + src = fetchurl { + url = "https://registry.npmjs.org/@types/node/-/node-17.0.24.tgz"; + sha512 = "aveCYRQbgTH9Pssp1voEP7HiuWlD2jW2BO56w+bVrJn04i61yh6mRfoKO6hEYQD9vF+W8Chkwc6j1M36uPkx4g=="; + }; + }; "@types/node-6.14.13" = { name = "_at_types_slash_node"; packageName = "@types/node"; @@ -9616,13 +9742,13 @@ let sha512 = "+TRLFmHLnpoV0uw4O/PzqMbPT6bhQM0q2KO0l+R7M3sHYRndPpNL6kv8p7Ee9ZxgQ6noYB18/t+heQi7eijOHA=="; }; }; - "@types/react-16.14.24" = { + "@types/react-16.14.25" = { name = "_at_types_slash_react"; packageName = "@types/react"; - version = "16.14.24"; + version = "16.14.25"; src = fetchurl { - url = "https://registry.npmjs.org/@types/react/-/react-16.14.24.tgz"; - sha512 = "e7U2WC8XQP/xfR7bwhOhNFZKPTfW1ph+MiqtudKb8tSV8RyCsovQx2sNVtKoOryjxFKpHPPC/yNiGfdeVM5Gyw=="; + url = "https://registry.npmjs.org/@types/react/-/react-16.14.25.tgz"; + sha512 = "cXRVHd7vBT5v1is72mmvmsg9stZrbJO04DJqFeh3Yj2tVKO6vmxg5BI+ybI6Ls7ROXRG3aFbZj9x0WA3ZAoDQw=="; }; }; "@types/react-dom-16.9.14" = { @@ -9868,13 +9994,13 @@ let sha512 = "7axfYN8SW9pWg78NgenHasSproWQee5rzyPVLC9HpaQSDgNArsnKJD88EaMfi4Pl48AyciO3agYCFqpHS1gLpg=="; }; }; - "@types/tough-cookie-4.0.1" = { + "@types/tough-cookie-4.0.2" = { name = "_at_types_slash_tough-cookie"; packageName = "@types/tough-cookie"; - version = "4.0.1"; + version = "4.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@types/tough-cookie/-/tough-cookie-4.0.1.tgz"; - sha512 = "Y0K95ThC3esLEYD6ZuqNek29lNX2EM1qxV8y2FTLUB0ff5wWrk7az+mLrnNFUnaXcgKye22+sFBRXOgpPILZNg=="; + url = "https://registry.npmjs.org/@types/tough-cookie/-/tough-cookie-4.0.2.tgz"; + sha512 = "Q5vtl1W5ue16D+nIaW8JWebSSraJVlK+EthKn7e7UcD4KWsaSJ8BqGPXNaPghgtcn/fhvrN17Tv8ksUsQpiplw=="; }; }; "@types/uglify-js-3.13.2" = { @@ -9994,13 +10120,13 @@ let sha512 = "XCph0RiiqFGetukCTC3KVnY1jwLcZ84illFRMbyFzCcWl90B/76ew0tSqF46oBhnLC4obNDG7dMO0JfTN0MgMQ=="; }; }; - "@types/webpack-env-1.16.3" = { + "@types/webpack-env-1.16.4" = { name = "_at_types_slash_webpack-env"; packageName = "@types/webpack-env"; - version = "1.16.3"; + version = "1.16.4"; src = fetchurl { - url = "https://registry.npmjs.org/@types/webpack-env/-/webpack-env-1.16.3.tgz"; - sha512 = "9gtOPPkfyNoEqCQgx4qJKkuNm/x0R2hKR7fdl7zvTJyHnIisuE/LfvXOsYWL0o3qq6uiBnKZNNNzi3l0y/X+xw=="; + url = "https://registry.npmjs.org/@types/webpack-env/-/webpack-env-1.16.4.tgz"; + sha512 = "llS8qveOUX3wxHnSykP5hlYFFuMfJ9p5JvIyCiBgp7WTfl6K5ZcyHj8r8JsN/J6QODkAsRRCLIcTuOCu8etkUw=="; }; }; "@types/webpack-sources-3.2.0" = { @@ -10021,15 +10147,6 @@ let sha512 = "B5m9aq7cbbD/5/jThEr33nUY8WEfVi6A2YKCTOvw5Ldy7mtsOkqRvGjnzy6g7iMMDsgu7xREuCzqATLDLQVKcQ=="; }; }; - "@types/websocket-1.0.5" = { - name = "_at_types_slash_websocket"; - packageName = "@types/websocket"; - version = "1.0.5"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/websocket/-/websocket-1.0.5.tgz"; - sha512 = "NbsqiNX9CnEfC1Z0Vf4mE1SgAJ07JnRYcNex7AJ9zAVzmiGHmjKFEk7O4TJIsgv2B1sLEb6owKFZrACwdYngsQ=="; - }; - }; "@types/whatwg-url-8.2.1" = { name = "_at_types_slash_whatwg-url"; packageName = "@types/whatwg-url"; @@ -10471,22 +10588,22 @@ let sha512 = "KmJUazIEZWhy0UaFHV5Uy8AXpTqJgCPizEHhtxs3f8mIkUnwWjcQFG7FGfsAW7RgsN8hwcSZ5ZFjmXhllVwrkw=="; }; }; - "@vue/compiler-core-3.2.32" = { + "@vue/compiler-core-3.2.33" = { name = "_at_vue_slash_compiler-core"; packageName = "@vue/compiler-core"; - version = "3.2.32"; + version = "3.2.33"; src = fetchurl { - url = "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.2.32.tgz"; - sha512 = "bRQ8Rkpm/aYFElDWtKkTPHeLnX5pEkNxhPUcqu5crEJIilZH0yeFu/qUAcV4VfSE2AudNPkQSOwMZofhnuutmA=="; + url = "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.2.33.tgz"; + sha512 = "AAmr52ji3Zhk7IKIuigX2osWWsb2nQE5xsdFYjdnmtQ4gymmqXbjLvkSE174+fF3A3kstYrTgGkqgOEbsdLDpw=="; }; }; - "@vue/compiler-dom-3.2.32" = { + "@vue/compiler-dom-3.2.33" = { name = "_at_vue_slash_compiler-dom"; packageName = "@vue/compiler-dom"; - version = "3.2.32"; + version = "3.2.33"; src = fetchurl { - url = "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.2.32.tgz"; - sha512 = "maa3PNB/NxR17h2hDQfcmS02o1f9r9QIpN1y6fe8tWPrS1E4+q8MqrvDDQNhYVPd84rc3ybtyumrgm9D5Rf/kg=="; + url = "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.2.33.tgz"; + sha512 = "GhiG1C8X98Xz9QUX/RlA6/kgPBWJkjq0Rq6//5XTAGSYrTMBgcLpP9+CnlUg1TFxnnCVughAG+KZl28XJqw8uQ=="; }; }; "@vue/component-compiler-utils-3.3.0" = { @@ -10525,13 +10642,13 @@ let sha512 = "LIZMuJk38pk9U9Ur4YzHjlIyMuxPlACdBIHH9/nGYVTsaGKOSnSuELiE8vS9wa+dJpIYspYUOqk+L1Q4pgHQHQ=="; }; }; - "@vue/shared-3.2.32" = { + "@vue/shared-3.2.33" = { name = "_at_vue_slash_shared"; packageName = "@vue/shared"; - version = "3.2.32"; + version = "3.2.33"; src = fetchurl { - url = "https://registry.npmjs.org/@vue/shared/-/shared-3.2.32.tgz"; - sha512 = "bjcixPErUsAnTQRQX4Z5IQnICYjIfNCyCl8p29v1M6kfVzvwOICPw+dz48nNuWlTOOx2RHhzHdazJibE8GSnsw=="; + url = "https://registry.npmjs.org/@vue/shared/-/shared-3.2.33.tgz"; + sha512 = "UBc1Pg1T3yZ97vsA2ueER0F6GbJebLHYlEi4ou1H5YL4KWvMOOWwpYo9/QpWq93wxKG6Wo13IY74Hcn/f7c7Bg=="; }; }; "@vue/web-component-wrapper-1.3.0" = { @@ -12928,6 +13045,15 @@ let sha512 = "iUw+oDwK0fgNpvveEsdQ0Ase6IIKztBJU2U0E9MzszMfmVVUyv1QJhS2ITW9ZCqx8dktAxVAjWWkKehuZE8OPg=="; }; }; + "archiver-5.3.1" = { + name = "archiver"; + packageName = "archiver"; + version = "5.3.1"; + src = fetchurl { + url = "https://registry.npmjs.org/archiver/-/archiver-5.3.1.tgz"; + sha512 = "8KyabkmbYrH+9ibcTScQ1xCJC/CGcugdVIwB+53f5sZziXgwUh3iXlAlANMxcZyDEfTHMe6+Z5FofV8nopXP7w=="; + }; + }; "archiver-utils-2.1.0" = { name = "archiver-utils"; packageName = "archiver-utils"; @@ -13900,13 +14026,13 @@ let sha512 = "xAfGg1/NTLBBKlHFmnd7PlmUW9KhVQIUuSrYem9xzFUZy13ScvtyGGejaae9iAVRiRq9+Cx7DPFaAAhCpyxyPw=="; }; }; - "async-2.6.3" = { + "async-2.6.4" = { name = "async"; packageName = "async"; - version = "2.6.3"; + version = "2.6.4"; src = fetchurl { - url = "https://registry.npmjs.org/async/-/async-2.6.3.tgz"; - sha512 = "zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg=="; + url = "https://registry.npmjs.org/async/-/async-2.6.4.tgz"; + sha512 = "mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA=="; }; }; "async-3.2.3" = { @@ -14269,13 +14395,22 @@ let sha512 = "fChMDiSfWcW0EUWmiqlyc+VAIXKH0w7BBruL3cVWSwO+5oA5A9juGF4NCBV2/KAHzaKaG0hXKPE49Wh6Lq74ag=="; }; }; - "aws-sdk-2.1113.0" = { + "aws-sdk-2.1115.0" = { name = "aws-sdk"; packageName = "aws-sdk"; - version = "2.1113.0"; + version = "2.1115.0"; src = fetchurl { - url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1113.0.tgz"; - sha512 = "F+B+HFnKCVIOmErZ1jJ8YL4XxDSaUI9l3JskfpIrk0XdJVcIfyHgA4XUrTUda4z5TOy1Z7eWV2IXgEpVRM4xyw=="; + url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1115.0.tgz"; + sha512 = "WuMPBkE2b0hGRcF4oYw9zhjG0PC20lFKHT5FS8PXgZgu4GK8adQ8oIK0wBYPjq3F6b+VNdhDWSy3R7a6K+ENOQ=="; + }; + }; + "aws-sdk-2.1116.0" = { + name = "aws-sdk"; + packageName = "aws-sdk"; + version = "2.1116.0"; + src = fetchurl { + url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1116.0.tgz"; + sha512 = "36JFrxPPh/fRQWsgGrZZbzTxRu7dq4KyCKKXPxgVMXylEJsG/KEAVMB1f3eq4PiI5eGxYrpt2OkKoMQZQZLjPA=="; }; }; "aws-sign2-0.6.0" = { @@ -17132,15 +17267,6 @@ let sha512 = "c5mRlguI/Pe2dSZmpER62rSCu0ryKmWddzRYsuXc50U2/g8jMOulc31VZMa4mYx31U5xsmSOpDCgH88Vl9cDGQ=="; }; }; - "buffer-from-1.1.1" = { - name = "buffer-from"; - packageName = "buffer-from"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz"; - sha512 = "MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A=="; - }; - }; "buffer-from-1.1.2" = { name = "buffer-from"; packageName = "buffer-from"; @@ -17960,13 +18086,13 @@ let sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw=="; }; }; - "caniuse-lite-1.0.30001331" = { + "caniuse-lite-1.0.30001332" = { name = "caniuse-lite"; packageName = "caniuse-lite"; - version = "1.0.30001331"; + version = "1.0.30001332"; src = fetchurl { - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001331.tgz"; - sha512 = "Y1xk6paHpUXKP/P6YjQv1xqyTbgAP05ycHBcRdQjTcyXlWol868sJJPlmk5ylOekw2BrucWes5jk+LvVd7WZ5Q=="; + url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001332.tgz"; + sha512 = "10T30NYOEQtN6C11YGg411yebhvpnC6Z102+B95eAsN0oB6KUs01ivE8u+G6FMIRtIrVlYXhL+LUwQ3/hXwDWw=="; }; }; "canvas-2.9.1" = { @@ -18122,22 +18248,22 @@ let sha512 = "eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg=="; }; }; - "cdk8s-1.5.67" = { + "cdk8s-1.5.69" = { name = "cdk8s"; packageName = "cdk8s"; - version = "1.5.67"; + version = "1.5.69"; src = fetchurl { - url = "https://registry.npmjs.org/cdk8s/-/cdk8s-1.5.67.tgz"; - sha512 = "T64trVn18NKz3WAlYFavkFS3Cw1eGy/5DkBwNgKL/VIfbaJFfBEIBgATJysECulB1pV4zxFAFLly+h/lFAbdwA=="; + url = "https://registry.npmjs.org/cdk8s/-/cdk8s-1.5.69.tgz"; + sha512 = "IIewuKWN2rA0eEu0F2LqbWpMDbnFWnQta4pHhJr++MUfryi+SIDBibBn4f3Yr9X2wCYQ30zQorBKLPVWSDbsXg=="; }; }; - "cdk8s-plus-22-1.0.0-beta.191" = { + "cdk8s-plus-22-1.0.0-beta.193" = { name = "cdk8s-plus-22"; packageName = "cdk8s-plus-22"; - version = "1.0.0-beta.191"; + version = "1.0.0-beta.193"; src = fetchurl { - url = "https://registry.npmjs.org/cdk8s-plus-22/-/cdk8s-plus-22-1.0.0-beta.191.tgz"; - sha512 = "zDd2VAfaumBEhRMHh0yPMcho15fDHTui8bkxx6yPYa/d8h8RhUkNPcAef2zBClarYdmquFtdo6MS24/6nduw0g=="; + url = "https://registry.npmjs.org/cdk8s-plus-22/-/cdk8s-plus-22-1.0.0-beta.193.tgz"; + sha512 = "AnLYgHgNV8fuID4AYvrAL+drooU3LAcxqWONouo3nim3aIVlmCGecaNJU9K1bkVG+7P5TKoWsKiKx9QFzGBV2A=="; }; }; "cdktf-0.10.1" = { @@ -20246,13 +20372,13 @@ let sha512 = "JJfP2saEKbQqvW+FI93OYUB4ByV5cizMpFMiiJI8xDbBvQvSkIk0VvQdn1CZ8mqAO8Loq2h0gYTYtDFUZUeERw=="; }; }; - "commander-9.1.0" = { + "commander-9.2.0" = { name = "commander"; packageName = "commander"; - version = "9.1.0"; + version = "9.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/commander/-/commander-9.1.0.tgz"; - sha512 = "i0/MaqBtdbnJ4XQs4Pmyb+oFQl+q0lsAmokVUH92SlSw4fkeAcG3bVon+Qt7hmtF+u3Het6o4VgrcY3qAoEB6w=="; + url = "https://registry.npmjs.org/commander/-/commander-9.2.0.tgz"; + sha512 = "e2i4wANQiSXgnrBlIatyHtP1odfUp0BbV5Y5nEGbxtIrStkEOAAzCUirvLBNXHLr7kwLvJl6V+4V3XV9x7Wd9w=="; }; }; "commandpost-1.4.0" = { @@ -20795,22 +20921,22 @@ let sha1 = "c20b96d8c617748aaf1c16021760cd27fcb8cb75"; }; }; - "constructs-10.0.113" = { + "constructs-10.0.115" = { name = "constructs"; packageName = "constructs"; - version = "10.0.113"; + version = "10.0.115"; src = fetchurl { - url = "https://registry.npmjs.org/constructs/-/constructs-10.0.113.tgz"; - sha512 = "Q2UNZz2nGiW2ZDZz7+FLOKQNyGr0LXc6mjuAvxXJ57UMwLabbhva8lKWMv3fztdsqlVbtl1DGq1vw2htbaNNJw=="; + url = "https://registry.npmjs.org/constructs/-/constructs-10.0.115.tgz"; + sha512 = "BZfiDjilEzfq+y8hNGRbh5yIYa+mK6ZAO172Q03pvN47Fe2a2PxzA1Y6dNCP+AKcajAiyzHjYg/hw98XheZh5A=="; }; }; - "constructs-3.3.266" = { + "constructs-3.3.268" = { name = "constructs"; packageName = "constructs"; - version = "3.3.266"; + version = "3.3.268"; src = fetchurl { - url = "https://registry.npmjs.org/constructs/-/constructs-3.3.266.tgz"; - sha512 = "J0aAGYEaYU+4J9PTCGgqIE7cZZZrG+1tvuJhcSn7eKkYqshYVMoCglVtStjD9RXs+e8QzQjvYU0D0dJwe8uc0A=="; + url = "https://registry.npmjs.org/constructs/-/constructs-3.3.268.tgz"; + sha512 = "hbWMEALQbekilwintwaWTw7Hxj+EKn45lIWd3jwp1kiLFfMe1IGOh81JC/suFw3Ig9eFe3akAgZu3mcBUarkjg=="; }; }; "consume-http-header-1.0.0" = { @@ -21408,31 +21534,31 @@ let sha512 = "YUdI3fFu4TF/2WykQ2xzSiTQdldLB4KVuL9WeAy5XONZYt5Cun/fpQvctoKbCgvPhmzADeesTk/j2Rdx77AcKQ=="; }; }; - "core-js-3.21.1" = { + "core-js-3.22.0" = { name = "core-js"; packageName = "core-js"; - version = "3.21.1"; + version = "3.22.0"; src = fetchurl { - url = "https://registry.npmjs.org/core-js/-/core-js-3.21.1.tgz"; - sha512 = "FRq5b/VMrWlrmCzwRrpDYNxyHP9BcAZC+xHJaqTgIE5091ZV1NTmyh0sGOg5XqpnHvR0svdy0sv1gWA1zmhxig=="; + url = "https://registry.npmjs.org/core-js/-/core-js-3.22.0.tgz"; + sha512 = "8h9jBweRjMiY+ORO7bdWSeWfHhLPO7whobj7Z2Bl0IDo00C228EdGgH7FE4jGumbEjzcFfkfW8bXgdkEDhnwHQ=="; }; }; - "core-js-compat-3.21.1" = { + "core-js-compat-3.22.0" = { name = "core-js-compat"; packageName = "core-js-compat"; - version = "3.21.1"; + version = "3.22.0"; src = fetchurl { - url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.21.1.tgz"; - sha512 = "gbgX5AUvMb8gwxC7FLVWYT7Kkgu/y7+h/h1X43yJkNqhlK2fuYyQimqvKGNZFAY6CKii/GFKJ2cp/1/42TN36g=="; + url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.22.0.tgz"; + sha512 = "WwA7xbfRGrk8BGaaHlakauVXrlYmAIkk8PNGb1FDQS+Rbrewc3pgFfwJFRw6psmJVAll7Px9UHRYE16oRQnwAQ=="; }; }; - "core-js-pure-3.21.1" = { + "core-js-pure-3.22.0" = { name = "core-js-pure"; packageName = "core-js-pure"; - version = "3.21.1"; + version = "3.22.0"; src = fetchurl { - url = "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.21.1.tgz"; - sha512 = "12VZfFIu+wyVbBebyHmRTuEE/tZrB4tJToWcwAMcsp3h4+sHR+fMJWbKpYiCRWlhFBq+KNyO8rIV9rTkeVmznQ=="; + url = "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.22.0.tgz"; + sha512 = "ylOC9nVy0ak1N+fPIZj00umoZHgUVqmucklP5RT5N+vJof38klKn8Ze6KGyvchdClvEBr6LcQqJpI216LUMqYA=="; }; }; "core-util-is-1.0.2" = { @@ -23559,13 +23685,13 @@ let sha512 = "eyTcpKOcamdhWJXj56DpQMo1ylSQpcGtGKXcU0Tb97+K56/CF5amAqqqNj0+KvA0iw2ynxtHWFsPDSClCxe48w=="; }; }; - "date-format-4.0.6" = { + "date-format-4.0.7" = { name = "date-format"; packageName = "date-format"; - version = "4.0.6"; + version = "4.0.7"; src = fetchurl { - url = "https://registry.npmjs.org/date-format/-/date-format-4.0.6.tgz"; - sha512 = "B9vvg5rHuQ8cbUXE/RMWMyX2YA5TecT3jKF5fLtGNlzPlU7zblSPmAm2OImDbWL+LDOQ6pUm+4LOFz+ywS41Zw=="; + url = "https://registry.npmjs.org/date-format/-/date-format-4.0.7.tgz"; + sha512 = "k5xqlzDGIfv2N/DHR/BR8Kc4N9CRy9ReuDkmdxeX/jNfit94QXd36emWMm40ZOEDKNm/c91yV9EO3uGPkR7wWQ=="; }; }; "date-now-0.1.4" = { @@ -23604,13 +23730,13 @@ let sha512 = "2P0p0pFGzHS5EMnhdxQi7aJN+iMheud0UhG4dlE1DLAlvL8JHjJJTX/CSm4JXwV0Ka5nGk3zC5mcb5bUQUxxMA=="; }; }; - "dayjs-1.11.0" = { + "dayjs-1.11.1" = { name = "dayjs"; packageName = "dayjs"; - version = "1.11.0"; + version = "1.11.1"; src = fetchurl { - url = "https://registry.npmjs.org/dayjs/-/dayjs-1.11.0.tgz"; - sha512 = "JLC809s6Y948/FuCZPm5IX8rRhQwOiyMb2TfVVQEixG7P8Lm/gt5S7yoQZmC8x1UehI9Pb7sksEt4xx14m+7Ug=="; + url = "https://registry.npmjs.org/dayjs/-/dayjs-1.11.1.tgz"; + sha512 = "ER7EjqVAMkRRsxNCC5YqJ9d9VQYuWdGt7aiH2qA5R5wt8ZmWaP2dLUSIK6y/kVzLMlmh1Tvu5xUf4M/wdGJ5KA=="; }; }; "dayjs-1.8.36" = { @@ -24342,13 +24468,13 @@ let sha512 = "Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og=="; }; }; - "define-properties-1.1.3" = { + "define-properties-1.1.4" = { name = "define-properties"; packageName = "define-properties"; - version = "1.1.3"; + version = "1.1.4"; src = fetchurl { - url = "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz"; - sha512 = "3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ=="; + url = "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz"; + sha512 = "uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA=="; }; }; "define-property-0.2.5" = { @@ -24918,13 +25044,13 @@ let sha512 = "IayShXAgj/QMXgB0IWmKx+rOPuGMhqm5w6jvFxmVenXKIzRqTAAsbBPT3kWQeGANj3jGgvcvv4yK6SxqYmikgw=="; }; }; - "diff2html-3.4.16" = { + "diff2html-3.4.17" = { name = "diff2html"; packageName = "diff2html"; - version = "3.4.16"; + version = "3.4.17"; src = fetchurl { - url = "https://registry.npmjs.org/diff2html/-/diff2html-3.4.16.tgz"; - sha512 = "KfkvEoZTJertjoGPYFLn8n0yRdvzJcHvFJpJwbIxUlHU9x6qqhRZEM+TlgtU09jdLqRZAQyWFoxPiP6HeT2IYA=="; + url = "https://registry.npmjs.org/diff2html/-/diff2html-3.4.17.tgz"; + sha512 = "B/H+iLRHTsRl2Ffs/7tYJ0Rg4uisXe83inIdNE8trXY83Wn7OCTslJNP7fyaUpSsLbRIzPSNgT7LqFNiIQlDyg=="; }; }; "diff3-0.0.3" = { @@ -26007,13 +26133,13 @@ let sha512 = "WvaW1EgRinDQ61khHFZfx30rkPQG5ItaOT0wrI7iJv9A3SbghriQGfZQfHZs25fWLBe6/vkv05LOqg6aDw6Wzw=="; }; }; - "electron-to-chromium-1.4.107" = { + "electron-to-chromium-1.4.110" = { name = "electron-to-chromium"; packageName = "electron-to-chromium"; - version = "1.4.107"; + version = "1.4.110"; src = fetchurl { - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.107.tgz"; - sha512 = "Huen6taaVrUrSy8o7mGStByba8PfOWWluHNxSHGBrCgEdFVLtvdQDBr9LBCF9Uci8SYxh28QNNMO0oC17wbGAg=="; + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.110.tgz"; + sha512 = "TvHZrkj9anfWkxgblHlNr4IMQdm2N6D0o8Wu1BDpSL/RKT4DHyUt/tvDFtApgZ+LGFL3U9EO4LRZ1eSlQ8xMYA=="; }; }; "electrum-client-git://github.com/janoside/electrum-client" = { @@ -26702,13 +26828,13 @@ let sha512 = "rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A=="; }; }; - "es-abstract-1.19.4" = { + "es-abstract-1.19.5" = { name = "es-abstract"; packageName = "es-abstract"; - version = "1.19.4"; + version = "1.19.5"; src = fetchurl { - url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.19.4.tgz"; - sha512 = "flV8e5g9/xulChMG48Fygk1ptpo4lQRJ0eJYtxJFgi7pklLx7EFcOJ34jnvr8pbWlaFN/AT1cZpe0hiFel9Hqg=="; + url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.19.5.tgz"; + sha512 = "Aa2G2+Rd3b6kxEUKTF4TaW67czBLyAv3z7VOhYRU50YBx+bbsYZ9xQP4lMNazePuFlybXI0V4MruPos7qUo5fA=="; }; }; "es-get-iterator-1.1.2" = { @@ -28970,6 +29096,15 @@ let sha512 = "5rOQWkBVz3FnYWTi/ELZmq4CoK1Pb+xKNZWuJRsOwo0+8DrP43CrWJtyLVvb5U7z7ggE5llahfDbLjaVNzXVJQ=="; }; }; + "fecha-4.2.3" = { + name = "fecha"; + packageName = "fecha"; + version = "4.2.3"; + src = fetchurl { + url = "https://registry.npmjs.org/fecha/-/fecha-4.2.3.tgz"; + sha512 = "OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw=="; + }; + }; "fetch-blob-3.1.5" = { name = "fetch-blob"; packageName = "fetch-blob"; @@ -28979,13 +29114,13 @@ let sha512 = "N64ZpKqoLejlrwkIAnb9iLSA3Vx/kjgzpcDhygcqJ2KKjky8nCgUQ+dzXtbrLaWZGZNmNfQTsiQ0weZ1svglHg=="; }; }; - "fetch-cookie-0.10.1" = { + "fetch-cookie-0.11.0" = { name = "fetch-cookie"; packageName = "fetch-cookie"; - version = "0.10.1"; + version = "0.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/fetch-cookie/-/fetch-cookie-0.10.1.tgz"; - sha512 = "beB+VEd4cNeVG1PY+ee74+PkuCQnik78pgLi5Ah/7qdUfov8IctU0vLUbBT8/10Ma5GMBeI4wtxhGrEfKNYs2g=="; + url = "https://registry.npmjs.org/fetch-cookie/-/fetch-cookie-0.11.0.tgz"; + sha512 = "BQm7iZLFhMWFy5CZ/162sAGjBfdNWb7a8LEqqnzsHFhxT/X/SVj/z2t2nu3aJvjlbQkrAlTUApplPRjWyH4mhA=="; }; }; "fetch-everywhere-1.0.5" = { @@ -29798,13 +29933,13 @@ let sha512 = "jlbUu0XkbpXeXhan5xyTqVK1jmEKNxE8hpzznI3TThHTr76GiFwK0iRzhDo4KNy+S9h/KxHaqVhTP86vA6wHCg=="; }; }; - "flow-parser-0.176.0" = { + "flow-parser-0.176.2" = { name = "flow-parser"; packageName = "flow-parser"; - version = "0.176.0"; + version = "0.176.2"; src = fetchurl { - url = "https://registry.npmjs.org/flow-parser/-/flow-parser-0.176.0.tgz"; - sha512 = "h3OUIHINMtdOnaMXyJH5ryqly1rft0Lt/di22dJB35FCnulSTxWvQhDtOH2dxQMU48/wtUmAOo4sv7Mj7XNyng=="; + url = "https://registry.npmjs.org/flow-parser/-/flow-parser-0.176.2.tgz"; + sha512 = "unqoh60i18C67h2rvK0SCFUBac/waUcx7CF1a5E4D0Cwj1NErTP42RF7yb7+dy25Tpyzt7uwVtXw13Wr17VzWA=="; }; }; "fluent-ffmpeg-2.1.2" = { @@ -30257,13 +30392,13 @@ let sha512 = "wJaE62fLaB3jCYvY2ZHjZvmKK2iiLiiehX38rz5QZxtdN8fVPJDeZUiVvJrHStdTc+23LHlyZuSEKgFc0pxi2g=="; }; }; - "fp-ts-2.11.9" = { + "fp-ts-2.11.10" = { name = "fp-ts"; packageName = "fp-ts"; - version = "2.11.9"; + version = "2.11.10"; src = fetchurl { - url = "https://registry.npmjs.org/fp-ts/-/fp-ts-2.11.9.tgz"; - sha512 = "GhYlNKkCOfdjp71ocdtyaQGoqCswEoWDJLRr+2jClnBBq2dnSOtd6QxmJdALq8UhfqCyZZ0f0lxadU4OhwY9nw=="; + url = "https://registry.npmjs.org/fp-ts/-/fp-ts-2.11.10.tgz"; + sha512 = "wtUo3eA0/+GZnT+dCjkSt5CuGCH5ZXjjrcZvYm/3BC5KGavuwgvME+eRRHYtCGYWD6I+fJ2uZ9en/JVqDEPrJw=="; }; }; "fraction.js-4.2.0" = { @@ -30734,6 +30869,15 @@ let sha1 = "1b0ab3bd553b2a0d6399d29c0e3ea0b252078327"; }; }; + "functions-have-names-1.2.2" = { + name = "functions-have-names"; + packageName = "functions-have-names"; + version = "1.2.2"; + src = fetchurl { + url = "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.2.tgz"; + sha512 = "bLgc3asbWdwPbx2mNk2S49kmJCuQeu0nfmaOgbs8WIyzzkw3r4htszdIi9Q9EMezDPTYuJx2wvjZ/EwgAthpnA=="; + }; + }; "fuse.js-6.4.1" = { name = "fuse.js"; packageName = "fuse.js"; @@ -32004,6 +32148,15 @@ let sha512 = "mxP1gmk5Bg72biHUgH7RYAQAjqX16/e5npGYPeBScspNYdwxqK87PDkZADy3p26dlOnbZN3G7tP06xzASKb7/g=="; }; }; + "goldengate-11.2.1" = { + name = "goldengate"; + packageName = "goldengate"; + version = "11.2.1"; + src = fetchurl { + url = "https://registry.npmjs.org/goldengate/-/goldengate-11.2.1.tgz"; + sha512 = "v0REhYrm8fUJMvDAGzYhymB3R9BqTEulUcD740zNEsH2umNc9Jv+RI4sXGygIXUtUi9FSlBrO4udVerBoRMBLQ=="; + }; + }; "gonzales-pe-4.3.0" = { name = "gonzales-pe"; packageName = "gonzales-pe"; @@ -32229,6 +32382,15 @@ let sha512 = "7a4mFIGpFZgjk1G+CbFudOX8y8J5HzHkP19eYuEcv1Dif5IITYVDoQxa5GTORL6dsmmQ/sdZQ3QXuT1DMq6gbg=="; }; }; + "grammy-1.7.3" = { + name = "grammy"; + packageName = "grammy"; + version = "1.7.3"; + src = fetchurl { + url = "https://registry.npmjs.org/grammy/-/grammy-1.7.3.tgz"; + sha512 = "vODORSFt3lHInoHB5dWKXKF1zwGAd4JogQrtkczCVCyjLkqhED3OZjOOxeMI2mQxuGYiiCPyjUomRpzqP+KoTQ=="; + }; + }; "grant-4.7.0" = { name = "grant"; packageName = "grant"; @@ -32418,15 +32580,6 @@ let sha512 = "Wci5MbrQj+6d7rfvbORrA9uDlfMysBWYaG49ST5TKylNaXYFf3ixFOa74iM1KtM9eidosUbI3E1JlWi0JaidJA=="; }; }; - "graphql-sse-1.1.0" = { - name = "graphql-sse"; - packageName = "graphql-sse"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/graphql-sse/-/graphql-sse-1.1.0.tgz"; - sha512 = "xE8AGPJa5X+g7iFmRQw/8H+7lXIDJvSkW6lou/XSSq17opPQl+dbKOMiqraHMx52VrDgS061ZVx90OSuqS6ykA=="; - }; - }; "graphql-subscriptions-1.2.1" = { name = "graphql-subscriptions"; packageName = "graphql-subscriptions"; @@ -32922,6 +33075,15 @@ let sha512 = "Pq0h+hvsVm6dDEa8x82GnLSYHOzNDt7f0ddFa3FqcQlgzEiptPqL+XrOJNavjOzSYiYWIrgeVYYgGlLmnxwilQ=="; }; }; + "has-property-descriptors-1.0.0" = { + name = "has-property-descriptors"; + packageName = "has-property-descriptors"; + version = "1.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz"; + sha512 = "62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ=="; + }; + }; "has-symbol-support-x-1.4.2" = { name = "has-symbol-support-x"; packageName = "has-symbol-support-x"; @@ -34182,13 +34344,13 @@ let sha512 = "3adrsD6zqo4GsTqtO7FyrejHNv+NgiIfAfv68+jVlFmSr9OGy7zrxONceFRLKvnnZA5jbxQBX1u9PpB6Wi32Gw=="; }; }; - "http-status-1.5.0" = { + "http-status-1.5.1" = { name = "http-status"; packageName = "http-status"; - version = "1.5.0"; + version = "1.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/http-status/-/http-status-1.5.0.tgz"; - sha512 = "wcGvY31MpFNHIkUcXHHnvrE4IKYlpvitJw5P/1u892gMBAM46muQ+RH7UN1d+Ntnfx5apnOnVY6vcLmrWHOLwg=="; + url = "https://registry.npmjs.org/http-status/-/http-status-1.5.1.tgz"; + sha512 = "EP6M4naWmtIrCHL1QfVHz6hsQb8dJLP5rDO1oPn03eAXD3CNVXgUqR5302gr3Gl8B/gVE1zz+Pmws7aJx+VMSw=="; }; }; "http2-client-1.3.5" = { @@ -34263,6 +34425,15 @@ let sha512 = "EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA=="; }; }; + "https-proxy-agent-5.0.1" = { + name = "https-proxy-agent"; + packageName = "https-proxy-agent"; + version = "5.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz"; + sha512 = "dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA=="; + }; + }; "hue-sdk-0.1.0" = { name = "hue-sdk"; packageName = "hue-sdk"; @@ -38431,13 +38602,13 @@ let sha512 = "aeFHXnO9hQXirgLjYqYMoAdvBGnpLOEhRVe4w7RuYjaqwsIPof4xIfSj2YvNQ9ZAWalYpg1Tm8kiLeWEyEeX6w=="; }; }; - "jsii-srcmak-0.1.529" = { + "jsii-srcmak-0.1.531" = { name = "jsii-srcmak"; packageName = "jsii-srcmak"; - version = "0.1.529"; + version = "0.1.531"; src = fetchurl { - url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.529.tgz"; - sha512 = "ldLyakH99iz5j0A0sxwXSCIWrAbeSb2QZs13D/3JU83wKzuPNx4f5zgXj/rmjkrF3o2XAkBo4H63P057In4oCQ=="; + url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.531.tgz"; + sha512 = "Ol0Lo1h03APM5zhVwGVaBgdzZbJb+o6D3cch9J9TEjSXOcQH/G64txSb/L2afLskqca3mj4ClCcli2XSwZv3FA=="; }; }; "json-bigint-1.0.0" = { @@ -38737,13 +38908,13 @@ let sha512 = "YRZbUnyaJZLZUJSRi2G/MqahCyRv9n/ds+4oIetjDF3jWQA7AG7iSeKTiZiCNqtMZM7HDyt0e/W6lEnoGEmMGA=="; }; }; - "json2jsii-0.2.190" = { + "json2jsii-0.2.192" = { name = "json2jsii"; packageName = "json2jsii"; - version = "0.2.190"; + version = "0.2.192"; src = fetchurl { - url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.2.190.tgz"; - sha512 = "v8iKJmPIjmoYfoAlhPdtxOonIaRxwe0dI9mfiy7TiYqlYnNH9pKnrFglyDizlvnSeUL5XVUabGiXDkfIDtBw2w=="; + url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.2.192.tgz"; + sha512 = "6Hwlnu4J4toplfk10/lzWZV8EwwgGZiclQDqKm8CX0ghmwE7kHsD8JUIjZbdVvcb1l+s1epXUCnEmKthv0nZdQ=="; }; }; "json3-3.2.6" = { @@ -40501,13 +40672,13 @@ let sha512 = "gto+BB2uEob8qRiTlOq+R3uX0YNHsX9mjxj9Sbdue/LIKqu6IlZjrsjKeGyOMquc/474GEqFyX2pdytpydp0rQ=="; }; }; - "lmdb-2.3.2" = { + "lmdb-2.3.3" = { name = "lmdb"; packageName = "lmdb"; - version = "2.3.2"; + version = "2.3.3"; src = fetchurl { - url = "https://registry.npmjs.org/lmdb/-/lmdb-2.3.2.tgz"; - sha512 = "kgn/zic1JeatYwz/64vpj3SLxff/qS2H1DeTj8mxDrNuF6gDSLdDS2r6YogV4T6eV6GddMu5Zn0E9d/xyo39eA=="; + url = "https://registry.npmjs.org/lmdb/-/lmdb-2.3.3.tgz"; + sha512 = "CrooSvHOzd+jPXCXpiffu2+5m90Fe6L/cw90fg+4sCWNrw3W7/ad20CGuTkMVU7mAuwXEAJAfnUwvHN2pS9Rqg=="; }; }; "lmdb-darwin-arm64-2.3.2" = { @@ -42202,13 +42373,13 @@ let sha512 = "Mc8jNuSFImQUIateBFwdOQcmC6Q5maU0VVvdC2R6XMb66/VnT+7WS4D/0EeNMZu1YODmJe5NIn2XftCzEocUgw=="; }; }; - "log4js-6.4.4" = { + "log4js-6.4.5" = { name = "log4js"; packageName = "log4js"; - version = "6.4.4"; + version = "6.4.5"; src = fetchurl { - url = "https://registry.npmjs.org/log4js/-/log4js-6.4.4.tgz"; - sha512 = "ncaWPsuw9Vl1CKA406hVnJLGQKy1OHx6buk8J4rE2lVW+NW5Y82G5/DIloO7NkqLOUtNPEANaWC1kZYVjXssPw=="; + url = "https://registry.npmjs.org/log4js/-/log4js-6.4.5.tgz"; + sha512 = "43RJcYZ7nfUxpPO2woTl8CJ0t5+gucLJZ43mtp2PlInT+LygCp/bl6hNJtKulCJ+++fQsjIv4EO3Mp611PfeLQ=="; }; }; "logform-2.4.0" = { @@ -47280,15 +47451,6 @@ let sha512 = "NhZ4CsKx7cYm2vSrBAr2PvFOe6sWDf0UYLRqA6svUYg7+/TSfVAu49jYC4BvQ4Sms9SZgdqGBgroqfDhJdTyKQ=="; }; }; - "node-fetch-2.6.0" = { - name = "node-fetch"; - packageName = "node-fetch"; - version = "2.6.0"; - src = fetchurl { - url = "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.0.tgz"; - sha512 = "8dG4H5ujfvFiqDmVu9fQ5bOHUC15JMjMY/Zumv26oOvvVJjM67KF8koCWIabKQ1GJIa9r2mMZscBq/TbdOcmNA=="; - }; - }; "node-fetch-2.6.1" = { name = "node-fetch"; packageName = "node-fetch"; @@ -48279,13 +48441,13 @@ let sha512 = "Df5QT3RaJnXYuOwtXBXS9BWs+tHH2olvkCLh6jcR/b/u3DvPMlp3J0TvvYwplPKxHMOwfg287PYih9QqaVFoKA=="; }; }; - "npm-registry-fetch-13.1.0" = { + "npm-registry-fetch-13.1.1" = { name = "npm-registry-fetch"; packageName = "npm-registry-fetch"; - version = "13.1.0"; + version = "13.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-13.1.0.tgz"; - sha512 = "TIYL5X8CcwDhbFMXFDShNcpG6OMCYK6VzvSr6MUWP20tCU2DJ4ao2qQg3DT+3Pet8mO6/cgbZpon4LMh3duYLg=="; + url = "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-13.1.1.tgz"; + sha512 = "5p8rwe6wQPLJ8dMqeTnA57Dp9Ox6GH9H60xkyJup07FmVlu3Mk7pf/kIIpl9gaN5bM8NM+UUx3emUWvDNTt39w=="; }; }; "npm-registry-fetch-9.0.0" = { @@ -52997,13 +53159,13 @@ let sha512 = "choctRBIV9EMT9WGAZHn3V7t0Z2pMQyl0EZE6pFc/6ml3ssw7Dlf/oAOvFwjm1HVsqfQN8GfeFyJ+d8tRzqueQ=="; }; }; - "pouchdb-abstract-mapreduce-7.2.2" = { + "pouchdb-abstract-mapreduce-7.3.0" = { name = "pouchdb-abstract-mapreduce"; packageName = "pouchdb-abstract-mapreduce"; - version = "7.2.2"; + version = "7.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/pouchdb-abstract-mapreduce/-/pouchdb-abstract-mapreduce-7.2.2.tgz"; - sha512 = "7HWN/2yV2JkwMnGnlp84lGvFtnm0Q55NiBUdbBcaT810+clCGKvhssBCrXnmwShD1SXTwT83aszsgiSfW+SnBA=="; + url = "https://registry.npmjs.org/pouchdb-abstract-mapreduce/-/pouchdb-abstract-mapreduce-7.3.0.tgz"; + sha512 = "+2fVt3SDh7D776lIGbYZOsKX5js1aUyUw7iJaTGitxSdQ2ObWSTrr3SUrj5Qo1CkgPXwRM3Tdoq/53JYAa2qCA=="; }; }; "pouchdb-adapter-node-websql-7.0.0" = { @@ -53042,31 +53204,31 @@ let sha512 = "yUktdOPIPvOVouCjJN3uop+bCcpdPwePrLm9eUAZNgEYnUFu0njdx7Q0WRsZ7UJ6l75HinL5ZHk4bnvEt86FLw=="; }; }; - "pouchdb-binary-utils-7.2.2" = { + "pouchdb-binary-utils-7.3.0" = { name = "pouchdb-binary-utils"; packageName = "pouchdb-binary-utils"; - version = "7.2.2"; + version = "7.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/pouchdb-binary-utils/-/pouchdb-binary-utils-7.2.2.tgz"; - sha512 = "shacxlmyHbUrNfE6FGYpfyAJx7Q0m91lDdEAaPoKZM3SzAmbtB1i+OaDNtYFztXjJl16yeudkDb3xOeokVL3Qw=="; + url = "https://registry.npmjs.org/pouchdb-binary-utils/-/pouchdb-binary-utils-7.3.0.tgz"; + sha512 = "xvBH/XGHGcou2vkEzszJxkCc7YElfRUrkLUg51Jbdmh1mogLDUO0bU3Tj6TOIIJfRkQrU/HV+dDkMAhsil0amQ=="; }; }; - "pouchdb-changes-filter-7.2.2" = { + "pouchdb-changes-filter-7.3.0" = { name = "pouchdb-changes-filter"; packageName = "pouchdb-changes-filter"; - version = "7.2.2"; + version = "7.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/pouchdb-changes-filter/-/pouchdb-changes-filter-7.2.2.tgz"; - sha512 = "1txJnTtL/C7zrq+spLt3pH9EDHTWmLLwp2zx8zUQrkt6eQtuLuXUI7G84xe+hfpU0rQvUzp/APYMnko0/6Rw0A=="; + url = "https://registry.npmjs.org/pouchdb-changes-filter/-/pouchdb-changes-filter-7.3.0.tgz"; + sha512 = "9E/EC9BP9dH9sfqUBdcWlR5HHeDdWqP82MmdEtg5c8spgxttYPwqrPfSHa7T2n55IRnaIoQbVyndmfAoz9GsOw=="; }; }; - "pouchdb-collate-7.2.2" = { + "pouchdb-collate-7.3.0" = { name = "pouchdb-collate"; packageName = "pouchdb-collate"; - version = "7.2.2"; + version = "7.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/pouchdb-collate/-/pouchdb-collate-7.2.2.tgz"; - sha512 = "/SMY9GGasslknivWlCVwXMRMnQ8myKHs4WryQ5535nq1Wj/ehpqWloMwxEQGvZE1Sda3LOm7/5HwLTcB8Our+w=="; + url = "https://registry.npmjs.org/pouchdb-collate/-/pouchdb-collate-7.3.0.tgz"; + sha512 = "ys7rXKtEr6cfghgUjknwFJiOkITebV6JmeTybJKCzMV0r2luXu0OoPQsKVpE/wbM/3F5LxfpbFKGFpPcfGMvTA=="; }; }; "pouchdb-collections-7.0.0" = { @@ -53078,22 +53240,22 @@ let sha512 = "DaoUr/vU24Q3gM6ghj0va9j/oBanPwkbhkvnqSyC3Dm5dgf5pculNxueLF9PKMo3ycApoWzHMh6N2N8KJbDU2Q=="; }; }; - "pouchdb-collections-7.2.2" = { + "pouchdb-collections-7.3.0" = { name = "pouchdb-collections"; packageName = "pouchdb-collections"; - version = "7.2.2"; + version = "7.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/pouchdb-collections/-/pouchdb-collections-7.2.2.tgz"; - sha512 = "6O9zyAYlp3UdtfneiMYuOCWdUCQNo2bgdjvNsMSacQX+3g8WvIoFQCYJjZZCpTttQGb+MHeRMr8m2U95lhJTew=="; + url = "https://registry.npmjs.org/pouchdb-collections/-/pouchdb-collections-7.3.0.tgz"; + sha512 = "Xr54m2+fErShXn+qAT4xwqJ+8NwddNPeTMJT4z4k1sZsrwfHmZsWbsKAyGPMF04eQaaU+7DDRMciu2VzaBUXyg=="; }; }; - "pouchdb-core-7.2.2" = { + "pouchdb-core-7.3.0" = { name = "pouchdb-core"; packageName = "pouchdb-core"; - version = "7.2.2"; + version = "7.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/pouchdb-core/-/pouchdb-core-7.2.2.tgz"; - sha512 = "AnMmSH+xx12Vk6oASDRQoElXfV9fSn8MIwfus0oa2lqkxowx4bvidofZbhZfKEiE6QgKwFEOBzs56MS3znI8TQ=="; + url = "https://registry.npmjs.org/pouchdb-core/-/pouchdb-core-7.3.0.tgz"; + sha512 = "fpEbjrYzmZivSupl7V0Aa2vHivyJHi9gx7+d021Wxajx4br515eYcN6Whk/L0L4xgoDVKoqUwmv+XgEF8EZhwg=="; }; }; "pouchdb-errors-7.0.0" = { @@ -53105,13 +53267,13 @@ let sha512 = "dTusY8nnTw4HIztCrNl7AoGgwvS1bVf/3/97hDaGc4ytn72V9/4dK8kTqlimi3UpaurohYRnqac0SGXYP8vgXA=="; }; }; - "pouchdb-errors-7.2.2" = { + "pouchdb-errors-7.3.0" = { name = "pouchdb-errors"; packageName = "pouchdb-errors"; - version = "7.2.2"; + version = "7.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/pouchdb-errors/-/pouchdb-errors-7.2.2.tgz"; - sha512 = "6GQsiWc+7uPfgEHeavG+7wuzH3JZW29Dnrvz8eVbDFE50kVFxNDVm3EkYHskvo5isG7/IkOx7PV7RPTA3keG3g=="; + url = "https://registry.npmjs.org/pouchdb-errors/-/pouchdb-errors-7.3.0.tgz"; + sha512 = "dTBbIC1BbCy6J9W/Csg5xROgb3wJN3HpbgAJHHSEtAkb8oA45KZmU3ZwEpNhf0AfPuQm4XgW1936PvlDlGgJiw=="; }; }; "pouchdb-extend-0.1.2" = { @@ -53123,22 +53285,22 @@ let sha1 = "d1ce511bf704ed2e29f7bf428a416acfffa124b8"; }; }; - "pouchdb-fetch-7.2.2" = { + "pouchdb-fetch-7.3.0" = { name = "pouchdb-fetch"; packageName = "pouchdb-fetch"; - version = "7.2.2"; + version = "7.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/pouchdb-fetch/-/pouchdb-fetch-7.2.2.tgz"; - sha512 = "lUHmaG6U3zjdMkh8Vob9GvEiRGwJfXKE02aZfjiVQgew+9SLkuOxNw3y2q4d1B6mBd273y1k2Lm0IAziRNxQnA=="; + url = "https://registry.npmjs.org/pouchdb-fetch/-/pouchdb-fetch-7.3.0.tgz"; + sha512 = "8/lcg8iMDG+GVs1dHNXA4ktJSEpH71dHU3xesMJ25tNQOqfAaaWrkfz9j71ZYDDkveLYE6UjUzl/sDacu2hSjw=="; }; }; - "pouchdb-find-7.2.2" = { + "pouchdb-find-7.3.0" = { name = "pouchdb-find"; packageName = "pouchdb-find"; - version = "7.2.2"; + version = "7.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/pouchdb-find/-/pouchdb-find-7.2.2.tgz"; - sha512 = "BmFeFVQ0kHmDehvJxNZl9OmIztCjPlZlVSdpijuFbk/Fi1EFPU1BAv3kLC+6DhZuOqU/BCoaUBY9sn66pPY2ag=="; + url = "https://registry.npmjs.org/pouchdb-find/-/pouchdb-find-7.3.0.tgz"; + sha512 = "EwhnfyxCAkKf8PG4tfndTTygEmtuz+o1LiZkxfPrflfXA3m1jo1ithib0hwBYtEwEYWuZxH6B8pRZutbLoQCGA=="; }; }; "pouchdb-json-7.0.0" = { @@ -53150,13 +53312,13 @@ let sha512 = "w0bNRu/7VmmCrFWMYAm62n30wvJJUT2SokyzeTyj3hRohj4GFwTRg1mSZ+iAmxgRKOFE8nzZstLG/WAB4Ymjew=="; }; }; - "pouchdb-mapreduce-utils-7.2.2" = { + "pouchdb-mapreduce-utils-7.3.0" = { name = "pouchdb-mapreduce-utils"; packageName = "pouchdb-mapreduce-utils"; - version = "7.2.2"; + version = "7.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/pouchdb-mapreduce-utils/-/pouchdb-mapreduce-utils-7.2.2.tgz"; - sha512 = "rAllb73hIkU8rU2LJNbzlcj91KuulpwQu804/F6xF3fhZKC/4JQMClahk+N/+VATkpmLxp1zWmvmgdlwVU4HtQ=="; + url = "https://registry.npmjs.org/pouchdb-mapreduce-utils/-/pouchdb-mapreduce-utils-7.3.0.tgz"; + sha512 = "KDVSd+H2r+XWTrQfKWV71SknDDYRjYXoeWs0ZQl3xITHCcTl+fIgqyagg/XN+Zy/U9LeLPGMe2JdgPx9H8lJgw=="; }; }; "pouchdb-md5-7.0.0" = { @@ -53168,13 +53330,13 @@ let sha512 = "yaSJKhLA3QlgloKUQeb2hLdT3KmUmPfoYdryfwHZuPTpXIRKTnMQTR9qCIRUszc0ruBpDe53DRslCgNUhAyTNQ=="; }; }; - "pouchdb-md5-7.2.2" = { + "pouchdb-md5-7.3.0" = { name = "pouchdb-md5"; packageName = "pouchdb-md5"; - version = "7.2.2"; + version = "7.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/pouchdb-md5/-/pouchdb-md5-7.2.2.tgz"; - sha512 = "c/RvLp2oSh8PLAWU5vFBnp6ejJABIdKqboZwRRUrWcfGDf+oyX8RgmJFlYlzMMOh4XQLUT1IoaDV8cwlsuryZw=="; + url = "https://registry.npmjs.org/pouchdb-md5/-/pouchdb-md5-7.3.0.tgz"; + sha512 = "wL04QgoKyd/L/TV5gxgcvlEyCJiZoXCOEFJklTzkdza/kBQNJGPH7i0ZhKa7Sb+AvZYoWZHddf1Zgv7rBScHkA=="; }; }; "pouchdb-merge-7.0.0" = { @@ -53186,13 +53348,13 @@ let sha512 = "tci5u6NpznQhGcPv4ho1h0miky9rs+ds/T9zQ9meQeDZbUojXNaX1Jxsb0uYEQQ+HMqdcQs3Akdl0/u0mgwPGg=="; }; }; - "pouchdb-merge-7.2.2" = { + "pouchdb-merge-7.3.0" = { name = "pouchdb-merge"; packageName = "pouchdb-merge"; - version = "7.2.2"; + version = "7.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/pouchdb-merge/-/pouchdb-merge-7.2.2.tgz"; - sha512 = "6yzKJfjIchBaS7Tusuk8280WJdESzFfQ0sb4jeMUNnrqs4Cx3b0DIEOYTRRD9EJDM+je7D3AZZ4AT0tFw8gb4A=="; + url = "https://registry.npmjs.org/pouchdb-merge/-/pouchdb-merge-7.3.0.tgz"; + sha512 = "E7LmchMzwYFm6V8OBxejzARLisanpksOju2LEfuiYnotGfNDeW7MByP0qBH0/zF8BfUyyjA1cl7ByaEpsapkeQ=="; }; }; "pouchdb-promise-5.4.3" = { @@ -53204,13 +53366,13 @@ let sha1 = "331d670b1989d5a03f268811214f27f54150cb2b"; }; }; - "pouchdb-selector-core-7.2.2" = { + "pouchdb-selector-core-7.3.0" = { name = "pouchdb-selector-core"; packageName = "pouchdb-selector-core"; - version = "7.2.2"; + version = "7.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/pouchdb-selector-core/-/pouchdb-selector-core-7.2.2.tgz"; - sha512 = "XYKCNv9oiNmSXV5+CgR9pkEkTFqxQGWplnVhO3W9P154H08lU0ZoNH02+uf+NjZ2kjse7Q1fxV4r401LEcGMMg=="; + url = "https://registry.npmjs.org/pouchdb-selector-core/-/pouchdb-selector-core-7.3.0.tgz"; + sha512 = "sK/cCrIGeL9ImcMhKGcwa54+bzX7Wv4hhVV+oUW3T1Nasaoxh+Muem1GuA+x1+SbTCE8y37rUg8i6DIOhX51ew=="; }; }; "pouchdb-utils-7.0.0" = { @@ -53222,13 +53384,13 @@ let sha512 = "1bnoX1KdZYHv9wicDIFdO0PLiVIMzNDUBUZ/yOJZ+6LW6niQCB8aCv09ZztmKfSQcU5nnN3fe656tScBgP6dOQ=="; }; }; - "pouchdb-utils-7.2.2" = { + "pouchdb-utils-7.3.0" = { name = "pouchdb-utils"; packageName = "pouchdb-utils"; - version = "7.2.2"; + version = "7.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/pouchdb-utils/-/pouchdb-utils-7.2.2.tgz"; - sha512 = "XmeM5ioB4KCfyB2MGZXu1Bb2xkElNwF1qG+zVFbQsKQij0zvepdOUfGuWvLRHxTOmt4muIuSOmWZObZa3NOgzQ=="; + url = "https://registry.npmjs.org/pouchdb-utils/-/pouchdb-utils-7.3.0.tgz"; + sha512 = "HH+5IXXWn/ZgVCSnrlydBMYn6MabT7RS7SNoo9w8qVH9efpZSp3eLchw6yMQNLw8LQefWmbbskiHV9VgJmSVWQ=="; }; }; "pouchdb-wrappers-4.1.0" = { @@ -57083,13 +57245,13 @@ let sha512 = "1CJygtdvsfNFwiyjaMLBWtg2tfEqx/jSZ8S6TV+GlNL8kiH8rb4cm5Pb7A/C2BpyM/fA8ZJEudlCwi/jvAY+Ow=="; }; }; - "regexp.prototype.flags-1.4.2" = { + "regexp.prototype.flags-1.4.3" = { name = "regexp.prototype.flags"; packageName = "regexp.prototype.flags"; - version = "1.4.2"; + version = "1.4.3"; src = fetchurl { - url = "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.2.tgz"; - sha512 = "Ynz8fTQW5/1elh+jWU2EDDzeoNbD0OQ0R+D1VJU5ATOkUaro4A9YEkdN2ODQl/8UQFPPpZNw91fOcLFamM7Pww=="; + url = "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz"; + sha512 = "fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA=="; }; }; "regexpp-1.1.0" = { @@ -61997,15 +62159,6 @@ let sha1 = "3722227c54e2faf24b1dc6d933cc144e6f71bfef"; }; }; - "spark-md5-3.0.1" = { - name = "spark-md5"; - packageName = "spark-md5"; - version = "3.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/spark-md5/-/spark-md5-3.0.1.tgz"; - sha512 = "0tF3AGSD1ppQeuffsLDIOWlKUd3lS92tFxcsrh5Pe3ZphhnoK+oXIBTzOAThZCiuINZLvpiLH/1VS1/ANEJVig=="; - }; - }; "spark-md5-3.0.2" = { name = "spark-md5"; packageName = "spark-md5"; @@ -62862,13 +63015,13 @@ let sha512 = "zZ/Q1M+9ZWlrchgh4QauD/MEUFa6eC6H6FYq6T8Of/y82JqsQBLwN6YlzbO09evE7Rx6x0oliXDCnQSjwGwQRA=="; }; }; - "sscaff-1.2.256" = { + "sscaff-1.2.258" = { name = "sscaff"; packageName = "sscaff"; - version = "1.2.256"; + version = "1.2.258"; src = fetchurl { - url = "https://registry.npmjs.org/sscaff/-/sscaff-1.2.256.tgz"; - sha512 = "pVtKvFBNenal5UXDeEDQ98pK1n/mmEI3UYMaBmUImPVZB474uGlD99TkMGNFHUWBMmIf75zcEMezlG2FSxcJxA=="; + url = "https://registry.npmjs.org/sscaff/-/sscaff-1.2.258.tgz"; + sha512 = "xgzUmt9tuBjGwGXzffkOAvvXBqzWnrGDcsAbQbqXJ8uewtaWRI4SzVJsrsFJwQd18E1f7C7mPqR+eia2E4Ymuw=="; }; }; "ssh-config-1.1.6" = { @@ -63546,13 +63699,13 @@ let sha512 = "OG79qm3AujAM9ImoqgWEY1xG4HX+Lw+yY6qZj9R1K2mhF5bEmQ849wvrb+4vt4jLMLzwXttJlQbOdPOQVRv7DQ=="; }; }; - "streamroller-3.0.6" = { + "streamroller-3.0.7" = { name = "streamroller"; packageName = "streamroller"; - version = "3.0.6"; + version = "3.0.7"; src = fetchurl { - url = "https://registry.npmjs.org/streamroller/-/streamroller-3.0.6.tgz"; - sha512 = "Qz32plKq/MZywYyhEatxyYc8vs994Gz0Hu2MSYXXLD233UyPeIeRBZARIIGwFer4Mdb8r3Y2UqKkgyDghM6QCg=="; + url = "https://registry.npmjs.org/streamroller/-/streamroller-3.0.7.tgz"; + sha512 = "kh68kwiDGuIPiPDWwRbEC5us+kfARP1e9AsQiaLaSqGrctOvMn0mtL8iNY3r4/o5nIoYi3gPI1jexguZsXDlxw=="; }; }; "streamsearch-0.1.2" = { @@ -64383,15 +64536,6 @@ let sha512 = "cVqd/URpp7si1HWu5YqQ3vqQkjuolAwHypY1B4itPlS71/lsf6TQPZ2Y0ijT22EYVkvH5ove9JFJf4u7VGPuZw=="; }; }; - "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.18" = { name = "subscriptions-transport-ws"; packageName = "subscriptions-transport-ws"; @@ -64680,22 +64824,22 @@ let sha512 = "4JaJp3HEoTCGARRWZQIZDUanhYv0iyoHikklVHVLH9xFE9db22g4TDv7CPeNA8HD1JgjXI1vlhR1JZvvhaTu2Q=="; }; }; - "svelte-preprocess-4.10.5" = { + "svelte-preprocess-4.10.6" = { name = "svelte-preprocess"; packageName = "svelte-preprocess"; - version = "4.10.5"; + version = "4.10.6"; src = fetchurl { - url = "https://registry.npmjs.org/svelte-preprocess/-/svelte-preprocess-4.10.5.tgz"; - sha512 = "VKXPRScCzAZqeBZOGq4LLwtNrAu++mVn7XvQox3eFDV7Ciq0Lg70Q8QWjH9iXF7J+pMlXhPsSFwpCb2E+hoeyA=="; + url = "https://registry.npmjs.org/svelte-preprocess/-/svelte-preprocess-4.10.6.tgz"; + sha512 = "I2SV1w/AveMvgIQlUF/ZOO3PYVnhxfcpNyGt8pxpUVhPfyfL/CZBkkw/KPfuFix5FJ9TnnNYMhACK3DtSaYVVQ=="; }; }; - "svelte2tsx-0.5.8" = { + "svelte2tsx-0.5.9" = { name = "svelte2tsx"; packageName = "svelte2tsx"; - version = "0.5.8"; + version = "0.5.9"; src = fetchurl { - url = "https://registry.npmjs.org/svelte2tsx/-/svelte2tsx-0.5.8.tgz"; - sha512 = "z5Mfpmy/jkpFIiePAocgWxGRJg+Ka0zlxyvFlpP2X1BoQuXjFC6pnIR9CGebOTmi+W1JnSUAdxrCCj/sEMXZ8Q=="; + url = "https://registry.npmjs.org/svelte2tsx/-/svelte2tsx-0.5.9.tgz"; + sha512 = "xTDASjlh+rKo4QRhTRYSH87sS7fRoyX67xhGIMPKa3FYqftRHRmMes6nVgEskiuhBovslNHYYpMMg5YM5n/STg=="; }; }; "sver-compat-1.5.0" = { @@ -66085,6 +66229,15 @@ let sha512 = "pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw=="; }; }; + "tiny-lru-7.0.6" = { + name = "tiny-lru"; + packageName = "tiny-lru"; + version = "7.0.6"; + src = fetchurl { + url = "https://registry.npmjs.org/tiny-lru/-/tiny-lru-7.0.6.tgz"; + sha512 = "zNYO0Kvgn5rXzWpL0y3RS09sMK67eGaQj9805jlK9G6pSadfriTczzLHFXa/xcW4mIRfmlB9HyQ/+SgL0V1uow=="; + }; + }; "tiny-queue-0.2.1" = { name = "tiny-queue"; packageName = "tiny-queue"; @@ -73782,6 +73935,15 @@ let sha512 = "5kGSQrzDyjCk0BLuFfjkoUE9vYcoyrwZIZ+GnpOSM9vhkvPjItYiWJ1jpRSo0aU4QmsoNrFwDT4O7XS2UGcBQg=="; }; }; + "yaml-2.0.1" = { + name = "yaml"; + packageName = "yaml"; + version = "2.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/yaml/-/yaml-2.0.1.tgz"; + sha512 = "1NpAYQ3wjzIlMs0mgdBmYzLkFgWBIWrzYVDYfrixhoFNNgJ444/jT2kUT2sicRbJES3oQYRZugjB6Ro8SjKeFg=="; + }; + }; "yaml-ast-parser-0.0.43" = { name = "yaml-ast-parser"; packageName = "yaml-ast-parser"; @@ -74463,15 +74625,15 @@ in "@angular/cli" = nodeEnv.buildNodePackage { name = "_at_angular_slash_cli"; packageName = "@angular/cli"; - version = "13.3.2"; + version = "13.3.3"; src = fetchurl { - url = "https://registry.npmjs.org/@angular/cli/-/cli-13.3.2.tgz"; - sha512 = "sfhMbm0wBAYmG+8YEYYZ5QkFyv2TJmMua/LbGoJE/y5UKBN+zLsMO3G/CW3D6pWThbgf04qQpi2LHonbPC/Bkg=="; + url = "https://registry.npmjs.org/@angular/cli/-/cli-13.3.3.tgz"; + sha512 = "a+nnzFP1FfnypXpAhrHbIBaJcxzegWLZUvVzJQwt6P2z60IoHdvTVmyNbY89qI0LE1SrAokEUO1zW3Yjmu7fUw=="; }; dependencies = [ - sources."@angular-devkit/architect-0.1303.2" - sources."@angular-devkit/core-13.3.2" - sources."@angular-devkit/schematics-13.3.2" + sources."@angular-devkit/architect-0.1303.3" + sources."@angular-devkit/core-13.3.3" + sources."@angular-devkit/schematics-13.3.3" sources."@gar/promisify-1.1.3" sources."@npmcli/fs-1.1.1" sources."@npmcli/git-2.1.0" @@ -74480,7 +74642,7 @@ in sources."@npmcli/node-gyp-1.0.3" sources."@npmcli/promise-spawn-1.3.2" sources."@npmcli/run-script-2.0.0" - sources."@schematics/angular-13.3.2" + sources."@schematics/angular-13.3.3" sources."@tootallnate/once-1.1.2" sources."@yarnpkg/lockfile-1.1.0" sources."abbrev-1.1.1" @@ -74545,7 +74707,7 @@ in sources."hosted-git-info-4.1.0" sources."http-cache-semantics-4.1.0" sources."http-proxy-agent-4.0.1" - sources."https-proxy-agent-5.0.0" + sources."https-proxy-agent-5.0.1" sources."humanize-ms-1.2.1" sources."iconv-lite-0.4.24" sources."ieee754-1.2.1" @@ -74852,7 +75014,7 @@ in sources."crc-32-1.2.2" sources."dateformat-4.6.3" sources."decompress-response-4.2.1" - sources."define-properties-1.1.3" + sources."define-properties-1.1.4" sources."diff3-0.0.3" sources."duplexify-4.1.2" sources."end-of-stream-1.4.4" @@ -74883,6 +75045,7 @@ in sources."handlebars-4.7.7" sources."has-1.0.3" sources."has-flag-3.0.0" + sources."has-property-descriptors-1.0.0" sources."has-symbols-1.0.3" sources."hpagent-0.1.2" sources."ignore-5.2.0" @@ -75060,7 +75223,7 @@ in sources."pascal-case-3.1.2" sources."source-map-0.7.3" sources."svelte-3.47.0" - sources."svelte2tsx-0.5.8" + sources."svelte2tsx-0.5.9" sources."tslib-2.3.1" sources."typescript-4.6.3" sources."vscode-css-languageservice-5.4.1" @@ -75399,7 +75562,7 @@ in sources."@tsconfig/node14-1.0.1" sources."@tsconfig/node16-1.0.2" sources."@types/minimist-1.2.2" - sources."@types/node-17.0.23" + sources."@types/node-17.0.24" sources."@types/normalize-package-data-2.4.1" sources."@types/parse-json-4.0.0" sources."JSONStream-1.3.5" @@ -75629,7 +75792,7 @@ in sources."@types/json-buffer-3.0.0" sources."@types/keyv-3.1.4" sources."@types/minimatch-3.0.5" - sources."@types/node-17.0.23" + sources."@types/node-17.0.24" sources."@types/normalize-package-data-2.4.1" sources."@types/responselike-1.0.0" sources."abort-controller-3.0.0" @@ -75717,7 +75880,7 @@ in sources."hosted-git-info-4.1.0" sources."http-cache-semantics-4.1.0" sources."http2-wrapper-1.0.3" - sources."https-proxy-agent-5.0.0" + sources."https-proxy-agent-5.0.1" sources."iconv-lite-0.4.24" sources."ieee754-1.2.1" sources."indent-string-4.0.0" @@ -75915,7 +76078,7 @@ in sources."@hyperswarm/hypersign-2.1.1" sources."@hyperswarm/network-2.1.0" sources."@leichtgewicht/ip-codec-2.0.3" - sources."@types/node-17.0.23" + sources."@types/node-17.0.24" sources."abstract-extension-3.1.1" sources."abstract-leveldown-6.2.3" sources."acorn-8.7.0" @@ -76311,7 +76474,7 @@ in sources."@types/markdown-it-12.2.3" sources."@types/mdurl-1.0.2" sources."@types/minimatch-3.0.5" - sources."@types/node-17.0.23" + sources."@types/node-17.0.24" sources."@types/tough-cookie-2.3.8" sources."abbrev-1.1.1" sources."abort-controller-3.0.0" @@ -76342,7 +76505,7 @@ in sources."assert-plus-1.0.0" sources."assign-symbols-1.0.0" sources."ast-types-0.9.6" - sources."async-2.6.3" + sources."async-2.6.4" sources."async-iter-stream-1.2.0" sources."asynckit-0.4.0" sources."atob-2.1.2" @@ -76525,7 +76688,7 @@ in sources."fast-json-stable-stringify-2.1.0" sources."fast-levenshtein-2.0.6" sources."fastq-1.13.0" - sources."fetch-cookie-0.10.1" + sources."fetch-cookie-0.11.0" (sources."figures-2.0.0" // { dependencies = [ sources."escape-string-regexp-1.0.5" @@ -76613,7 +76776,7 @@ in sources."hash-base-3.1.0" sources."hasurl-1.0.0" sources."http-signature-1.2.0" - sources."https-proxy-agent-5.0.0" + sources."https-proxy-agent-5.0.1" sources."iconv-lite-0.4.24" sources."ignore-5.2.0" sources."ignore-walk-3.0.4" @@ -76820,50 +76983,50 @@ in sources."pify-4.0.1" sources."pluralize-7.0.0" sources."posix-character-classes-0.1.1" - (sources."pouchdb-abstract-mapreduce-7.2.2" // { + (sources."pouchdb-abstract-mapreduce-7.3.0" // { dependencies = [ - sources."buffer-from-1.1.1" + sources."buffer-from-1.1.2" sources."immediate-3.3.0" - sources."pouchdb-binary-utils-7.2.2" - sources."pouchdb-collections-7.2.2" - sources."pouchdb-errors-7.2.2" - sources."pouchdb-md5-7.2.2" - sources."pouchdb-utils-7.2.2" - sources."spark-md5-3.0.1" - sources."uuid-8.1.0" + sources."pouchdb-binary-utils-7.3.0" + sources."pouchdb-collections-7.3.0" + sources."pouchdb-errors-7.3.0" + sources."pouchdb-md5-7.3.0" + sources."pouchdb-utils-7.3.0" + sources."spark-md5-3.0.2" + sources."uuid-8.3.2" ]; }) sources."pouchdb-adapter-node-websql-7.0.0" sources."pouchdb-adapter-utils-7.0.0" sources."pouchdb-adapter-websql-core-7.0.0" sources."pouchdb-binary-utils-7.0.0" - (sources."pouchdb-changes-filter-7.2.2" // { + (sources."pouchdb-changes-filter-7.3.0" // { dependencies = [ - sources."buffer-from-1.1.1" + sources."buffer-from-1.1.2" sources."immediate-3.3.0" - sources."pouchdb-binary-utils-7.2.2" - sources."pouchdb-collections-7.2.2" - sources."pouchdb-errors-7.2.2" - sources."pouchdb-md5-7.2.2" - sources."pouchdb-utils-7.2.2" - sources."spark-md5-3.0.1" - sources."uuid-8.1.0" + sources."pouchdb-binary-utils-7.3.0" + sources."pouchdb-collections-7.3.0" + sources."pouchdb-errors-7.3.0" + sources."pouchdb-md5-7.3.0" + sources."pouchdb-utils-7.3.0" + sources."spark-md5-3.0.2" + sources."uuid-8.3.2" ]; }) - sources."pouchdb-collate-7.2.2" + sources."pouchdb-collate-7.3.0" sources."pouchdb-collections-7.0.0" - (sources."pouchdb-core-7.2.2" // { + (sources."pouchdb-core-7.3.0" // { dependencies = [ - sources."buffer-from-1.1.1" + sources."buffer-from-1.1.2" sources."immediate-3.3.0" - sources."pouchdb-binary-utils-7.2.2" - sources."pouchdb-collections-7.2.2" - sources."pouchdb-errors-7.2.2" - sources."pouchdb-md5-7.2.2" - sources."pouchdb-merge-7.2.2" - sources."pouchdb-utils-7.2.2" - sources."spark-md5-3.0.1" - sources."uuid-8.1.0" + sources."pouchdb-binary-utils-7.3.0" + sources."pouchdb-collections-7.3.0" + sources."pouchdb-errors-7.3.0" + sources."pouchdb-md5-7.3.0" + sources."pouchdb-merge-7.3.0" + sources."pouchdb-utils-7.3.0" + sources."spark-md5-3.0.2" + sources."uuid-8.3.2" ]; }) (sources."pouchdb-errors-7.0.0" // { @@ -76872,52 +77035,48 @@ in ]; }) sources."pouchdb-extend-0.1.2" - (sources."pouchdb-fetch-7.2.2" // { + sources."pouchdb-fetch-7.3.0" + (sources."pouchdb-find-7.3.0" // { dependencies = [ - sources."node-fetch-2.6.0" - ]; - }) - (sources."pouchdb-find-7.2.2" // { - dependencies = [ - sources."buffer-from-1.1.1" + sources."buffer-from-1.1.2" sources."immediate-3.3.0" - sources."pouchdb-binary-utils-7.2.2" - sources."pouchdb-collections-7.2.2" - sources."pouchdb-errors-7.2.2" - sources."pouchdb-md5-7.2.2" - sources."pouchdb-utils-7.2.2" - sources."spark-md5-3.0.1" - sources."uuid-8.1.0" + sources."pouchdb-binary-utils-7.3.0" + sources."pouchdb-collections-7.3.0" + sources."pouchdb-errors-7.3.0" + sources."pouchdb-md5-7.3.0" + sources."pouchdb-utils-7.3.0" + sources."spark-md5-3.0.2" + sources."uuid-8.3.2" ]; }) sources."pouchdb-json-7.0.0" - (sources."pouchdb-mapreduce-utils-7.2.2" // { + (sources."pouchdb-mapreduce-utils-7.3.0" // { dependencies = [ - sources."buffer-from-1.1.1" + sources."buffer-from-1.1.2" sources."immediate-3.3.0" - sources."pouchdb-binary-utils-7.2.2" - sources."pouchdb-collections-7.2.2" - sources."pouchdb-errors-7.2.2" - sources."pouchdb-md5-7.2.2" - sources."pouchdb-utils-7.2.2" - sources."spark-md5-3.0.1" - sources."uuid-8.1.0" + sources."pouchdb-binary-utils-7.3.0" + sources."pouchdb-collections-7.3.0" + sources."pouchdb-errors-7.3.0" + sources."pouchdb-md5-7.3.0" + sources."pouchdb-utils-7.3.0" + sources."spark-md5-3.0.2" + sources."uuid-8.3.2" ]; }) sources."pouchdb-md5-7.0.0" sources."pouchdb-merge-7.0.0" sources."pouchdb-promise-5.4.3" - (sources."pouchdb-selector-core-7.2.2" // { + (sources."pouchdb-selector-core-7.3.0" // { dependencies = [ - sources."buffer-from-1.1.1" + sources."buffer-from-1.1.2" sources."immediate-3.3.0" - sources."pouchdb-binary-utils-7.2.2" - sources."pouchdb-collections-7.2.2" - sources."pouchdb-errors-7.2.2" - sources."pouchdb-md5-7.2.2" - sources."pouchdb-utils-7.2.2" - sources."spark-md5-3.0.1" - sources."uuid-8.1.0" + sources."pouchdb-binary-utils-7.3.0" + sources."pouchdb-collections-7.3.0" + sources."pouchdb-errors-7.3.0" + sources."pouchdb-md5-7.3.0" + sources."pouchdb-utils-7.3.0" + sources."spark-md5-3.0.2" + sources."uuid-8.3.2" ]; }) (sources."pouchdb-utils-7.0.0" // { @@ -77340,7 +77499,7 @@ in sources."@types/estree-0.0.51" sources."@types/json-schema-7.0.11" sources."@types/json5-0.0.29" - sources."@types/node-17.0.23" + sources."@types/node-17.0.24" sources."@types/parse-json-4.0.0" sources."@webassemblyjs/ast-1.11.1" sources."@webassemblyjs/floating-point-hex-parser-1.11.1" @@ -77379,7 +77538,7 @@ in sources."buffer-5.7.1" sources."buffer-from-1.1.2" sources."callsites-3.1.0" - sources."caniuse-lite-1.0.30001331" + sources."caniuse-lite-1.0.30001332" sources."chalk-3.0.0" sources."chardet-0.7.0" sources."chokidar-3.5.3" @@ -77398,7 +77557,7 @@ in sources."cross-spawn-7.0.3" sources."deepmerge-4.2.2" sources."defaults-1.0.3" - sources."electron-to-chromium-1.4.107" + sources."electron-to-chromium-1.4.110" sources."emoji-regex-8.0.0" sources."end-of-stream-1.4.4" sources."enhanced-resolve-5.9.3" @@ -77783,7 +77942,7 @@ in sources."async-limiter-1.0.1" sources."asynckit-0.4.0" sources."atob-2.1.2" - (sources."aws-sdk-2.1113.0" // { + (sources."aws-sdk-2.1115.0" // { dependencies = [ sources."uuid-3.3.2" ]; @@ -77828,7 +77987,7 @@ in ]; }) sources."deep-copy-1.4.2" - sources."define-properties-1.1.3" + sources."define-properties-1.1.4" sources."delayed-stream-1.0.0" sources."denque-1.5.1" sources."depd-1.1.2" @@ -77883,6 +78042,7 @@ in sources."har-validator-5.1.5" sources."has-1.0.3" sources."has-flag-3.0.0" + sources."has-property-descriptors-1.0.0" sources."has-symbols-1.0.3" sources."helmet-4.6.0" sources."http-errors-1.7.2" @@ -78260,7 +78420,7 @@ in sources."@types/koa-compose-3.2.5" sources."@types/long-4.0.1" sources."@types/mime-1.3.2" - sources."@types/node-17.0.23" + sources."@types/node-17.0.24" sources."@types/normalize-package-data-2.4.1" sources."@types/qs-6.9.7" sources."@types/range-parser-1.2.4" @@ -78275,9 +78435,9 @@ in }) sources."@vue/cli-ui-addon-webpack-5.0.4" sources."@vue/cli-ui-addon-widgets-5.0.4" - sources."@vue/compiler-core-3.2.32" - sources."@vue/compiler-dom-3.2.32" - sources."@vue/shared-3.2.32" + sources."@vue/compiler-core-3.2.33" + sources."@vue/compiler-dom-3.2.33" + sources."@vue/shared-3.2.33" (sources."@wry/equality-0.1.11" // { dependencies = [ sources."tslib-1.14.1" @@ -78330,7 +78490,7 @@ in sources."arrify-2.0.1" sources."assign-symbols-1.0.0" sources."ast-types-0.14.2" - sources."async-2.6.3" + sources."async-2.6.4" sources."async-retry-1.3.3" sources."at-least-node-1.0.0" sources."atob-2.1.2" @@ -78386,7 +78546,7 @@ in }) sources."call-bind-1.0.2" sources."camelcase-6.3.0" - sources."caniuse-lite-1.0.30001331" + sources."caniuse-lite-1.0.30001332" sources."caw-2.0.1" sources."chalk-4.1.2" sources."chardet-0.7.0" @@ -78439,12 +78599,12 @@ in sources."cookie-0.4.2" sources."cookie-signature-1.0.6" sources."copy-descriptor-0.1.1" - (sources."core-js-compat-3.21.1" // { + (sources."core-js-compat-3.22.0" // { dependencies = [ sources."semver-7.0.0" ]; }) - sources."core-js-pure-3.21.1" + sources."core-js-pure-3.22.0" sources."core-util-is-1.0.3" sources."cors-2.8.5" (sources."cross-spawn-6.0.5" // { @@ -78490,7 +78650,7 @@ in sources."deepmerge-4.2.2" sources."defaults-1.0.3" sources."define-lazy-prop-2.0.0" - sources."define-properties-1.1.3" + sources."define-properties-1.1.4" sources."define-property-2.0.2" sources."depd-1.1.2" sources."deprecated-decorator-0.1.6" @@ -78507,14 +78667,14 @@ in sources."easy-stack-1.0.1" sources."ee-first-1.1.1" sources."ejs-3.1.6" - sources."electron-to-chromium-1.4.107" + sources."electron-to-chromium-1.4.110" sources."emoji-regex-8.0.0" sources."encodeurl-1.0.2" sources."end-of-stream-1.4.4" sources."entities-2.2.0" sources."envinfo-7.8.1" sources."error-ex-1.3.2" - sources."es-abstract-1.19.4" + sources."es-abstract-1.19.5" sources."es-to-primitive-1.2.1" sources."escalade-3.1.1" sources."escape-html-1.0.3" @@ -78612,7 +78772,7 @@ in sources."which-2.0.2" ]; }) - sources."flow-parser-0.176.0" + sources."flow-parser-0.176.2" sources."for-each-0.3.3" sources."for-in-1.0.2" sources."forwarded-0.2.0" @@ -78669,6 +78829,7 @@ in sources."has-1.0.3" sources."has-bigints-1.0.1" sources."has-flag-4.0.0" + sources."has-property-descriptors-1.0.0" sources."has-symbol-support-x-1.4.2" sources."has-symbols-1.0.3" sources."has-to-string-tag-x-1.4.1" @@ -79446,7 +79607,7 @@ in sources."@types/minimist-1.2.2" sources."@types/ms-0.7.31" sources."@types/nlcst-1.0.0" - sources."@types/node-17.0.23" + sources."@types/node-17.0.24" sources."@types/normalize-package-data-2.4.1" sources."@types/parse5-6.0.3" sources."@types/supports-color-8.1.1" @@ -79953,7 +80114,7 @@ in sources."balanced-match-1.0.2" sources."brace-expansion-1.1.11" sources."browserslist-4.20.2" - sources."caniuse-lite-1.0.30001331" + sources."caniuse-lite-1.0.30001332" sources."chalk-2.4.2" sources."color-convert-1.9.3" sources."color-name-1.1.3" @@ -79963,7 +80124,7 @@ in sources."convert-source-map-1.8.0" sources."debug-4.3.4" sources."ejs-3.1.6" - sources."electron-to-chromium-1.4.107" + sources."electron-to-chromium-1.4.110" sources."ensure-posix-path-1.1.1" sources."escalade-3.1.1" sources."escape-string-regexp-1.0.5" @@ -80069,7 +80230,7 @@ in sources."argparse-1.0.10" sources."asn1-0.2.6" sources."assert-plus-1.0.0" - sources."async-2.6.3" + sources."async-2.6.4" sources."asynckit-0.4.0" sources."aws-sign2-0.7.0" sources."aws4-1.11.0" @@ -80254,7 +80415,7 @@ in dependencies = [ sources."@types/glob-7.2.0" sources."@types/minimatch-3.0.5" - sources."@types/node-17.0.23" + sources."@types/node-17.0.24" sources."balanced-match-1.0.2" sources."brace-expansion-1.1.11" sources."chromium-pickle-js-0.2.0" @@ -80339,8 +80500,8 @@ in }; dependencies = [ sources."browserslist-4.20.2" - sources."caniuse-lite-1.0.30001331" - sources."electron-to-chromium-1.4.107" + sources."caniuse-lite-1.0.30001332" + sources."electron-to-chromium-1.4.110" sources."escalade-3.1.1" sources."fraction.js-4.2.0" sources."node-releases-2.0.3" @@ -80368,14 +80529,14 @@ in }; dependencies = [ sources."@tootallnate/once-1.1.2" - sources."@types/node-17.0.23" + sources."@types/node-17.0.24" sources."@types/yauzl-2.10.0" sources."agent-base-6.0.2" sources."ansi-escapes-4.3.2" sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" sources."ast-types-0.13.4" - (sources."aws-sdk-2.1113.0" // { + (sources."aws-sdk-2.1115.0" // { dependencies = [ sources."uuid-3.3.2" ]; @@ -80454,7 +80615,7 @@ in sources."htmlparser2-6.1.0" sources."http-errors-2.0.0" sources."http-proxy-agent-4.0.1" - sources."https-proxy-agent-5.0.0" + sources."https-proxy-agent-5.0.1" sources."iconv-lite-0.4.24" sources."ieee754-1.1.13" sources."inflight-1.0.6" @@ -80507,6 +80668,7 @@ in (sources."puppeteer-10.4.0" // { dependencies = [ sources."debug-4.3.1" + sources."https-proxy-agent-5.0.0" ]; }) sources."querystring-0.2.0" @@ -80993,13 +81155,13 @@ in balanceofsatoshis = nodeEnv.buildNodePackage { name = "balanceofsatoshis"; packageName = "balanceofsatoshis"; - version = "11.64.2"; + version = "12.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-11.64.2.tgz"; - sha512 = "sYju0HhL1tlxwa85jBioJZ7Cgbzbuy8Xx2MrE084KZ/00KEfVOMEEKoAjtKIK4BanQCeDA/EzuBjEksDx8K9Ag=="; + url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-12.1.0.tgz"; + sha512 = "Kj7bXqIw9oe3zvDKSyfkqRG+5rVMUU91QEYBCf1EybHwGOyKZi3QO7rdf4M5QMM/D1wHsxyWE5h6J6mCoDitdw=="; }; dependencies = [ - (sources."@alexbosworth/caporal-1.4.1" // { + (sources."@alexbosworth/caporal-1.4.4" // { dependencies = [ sources."colorette-1.4.0" ]; @@ -81020,8 +81182,10 @@ in sources."string_decoder-1.3.0" ]; }) + sources."@colors/colors-1.5.0" + sources."@dabh/diagnostics-2.0.3" sources."@grammyjs/types-2.6.0" - sources."@grpc/grpc-js-1.6.1" + sources."@grpc/grpc-js-1.6.4" sources."@grpc/proto-loader-0.6.9" sources."@handsontable/formulajs-2.0.2" sources."@mitmaro/errors-1.0.0" @@ -81045,13 +81209,13 @@ in sources."@types/express-serve-static-core-4.17.28" sources."@types/long-4.0.1" sources."@types/mime-1.3.2" - sources."@types/node-17.0.23" + sources."@types/node-17.0.24" sources."@types/qs-6.9.7" sources."@types/range-parser-1.2.4" sources."@types/request-2.48.8" sources."@types/serve-static-1.13.10" - sources."@types/tough-cookie-4.0.1" - sources."@types/ws-8.5.3" + sources."@types/tough-cookie-4.0.2" + sources."@types/ws-8.5.2" sources."abort-controller-3.0.0" sources."accepts-1.3.8" (sources."agent-base-6.0.2" // { @@ -81100,6 +81264,8 @@ in dependencies = [ sources."ansi-styles-4.3.0" sources."chalk-4.1.2" + sources."color-convert-2.0.1" + sources."color-name-1.1.4" sources."supports-color-7.2.0" sources."type-fest-0.20.2" ]; @@ -81136,10 +81302,13 @@ in sources."clone-1.0.4" sources."clone-response-1.0.2" sources."code-point-at-1.1.0" - sources."color-convert-2.0.1" - sources."color-name-1.1.4" + sources."color-3.2.1" + sources."color-convert-1.9.3" + sources."color-name-1.1.3" + sources."color-string-1.9.0" sources."colorette-2.0.16" sources."colors-1.4.0" + sources."colorspace-1.1.4" sources."combined-stream-1.0.8" sources."commander-6.2.1" sources."concat-stream-1.6.2" @@ -81158,7 +81327,6 @@ in sources."crypto-js-4.1.1" sources."crypto-random-string-2.0.0" sources."csv-parse-5.0.4" - sources."cycle-1.0.3" sources."debug-2.6.9" sources."decompress-response-3.3.0" sources."deep-extend-0.6.0" @@ -81174,6 +81342,7 @@ in sources."ecpair-2.0.1" sources."ee-first-1.1.1" sources."emoji-regex-8.0.0" + sources."enabled-2.0.0" sources."encodeurl-1.0.2" sources."end-of-stream-1.4.4" sources."escalade-3.1.1" @@ -81197,9 +81366,9 @@ in }) sources."extend-3.0.2" sources."external-editor-1.1.1" - sources."eyes-0.1.8" sources."fast-deep-equal-3.1.3" sources."fast-levenshtein-2.0.6" + sources."fecha-4.2.2" sources."figures-1.7.0" (sources."finalhandler-1.1.2" // { dependencies = [ @@ -81207,6 +81376,7 @@ in sources."statuses-1.5.0" ]; }) + sources."fn.name-1.1.0" sources."form-data-2.5.1" sources."forwarded-0.2.0" sources."fresh-0.5.2" @@ -81220,20 +81390,10 @@ in sources."ini-2.0.0" ]; }) - (sources."goldengate-11.1.1" // { - dependencies = [ - sources."bolt07-1.8.0" - (sources."invoices-2.0.4" // { - dependencies = [ - sources."tiny-secp256k1-2.2.0" - ]; - }) - sources."ln-service-53.10.0" - ]; - }) + sources."goldengate-11.2.1" sources."got-9.6.0" sources."graceful-fs-4.2.10" - (sources."grammy-1.7.1" // { + (sources."grammy-1.7.3" // { dependencies = [ sources."debug-4.3.4" sources."ms-2.1.2" @@ -81271,6 +81431,8 @@ in sources."chalk-4.1.2" sources."cli-cursor-3.1.0" sources."cli-width-3.0.0" + sources."color-convert-2.0.1" + sources."color-name-1.1.4" sources."external-editor-3.1.0" sources."figures-3.2.0" sources."mute-stream-0.0.8" @@ -81278,17 +81440,19 @@ in sources."restore-cursor-3.1.0" sources."supports-color-7.2.0" sources."tmp-0.0.33" - sources."type-fest-0.21.3" ]; }) - (sources."invoices-2.0.5" // { + (sources."invoices-2.0.4" // { dependencies = [ - sources."bolt09-0.2.2" + sources."bolt07-1.8.0" + sources."tiny-secp256k1-2.2.0" + sources."uint8array-tools-0.0.6" ]; }) sources."ip-1.1.5" sources."ipaddr.js-1.9.1" sources."is-accessor-descriptor-1.0.0" + sources."is-arrayish-0.3.2" sources."is-buffer-1.1.6" sources."is-ci-2.0.0" sources."is-data-descriptor-1.0.0" @@ -81304,11 +81468,11 @@ in }) sources."is-obj-2.0.0" sources."is-path-inside-3.0.3" + sources."is-stream-2.0.1" sources."is-typedarray-1.0.0" sources."is-unicode-supported-0.1.0" sources."is-yarn-global-0.3.0" sources."isarray-1.0.0" - sources."isstream-0.1.2" sources."json-buffer-3.0.0" sources."json-schema-traverse-1.0.0" sources."json2csv-5.0.7" @@ -81316,33 +81480,31 @@ in sources."jstat-1.9.5" sources."keyv-3.1.0" sources."kind-of-6.0.3" + sources."kuler-2.0.0" sources."latest-version-5.1.0" - (sources."lightning-5.9.0" // { + (sources."lightning-5.8.2" // { dependencies = [ + sources."@grpc/grpc-js-1.5.7" + sources."@types/node-17.0.21" sources."asyncjs-util-1.2.8" sources."body-parser-1.19.2" sources."bolt07-1.8.0" sources."bolt09-0.2.2" sources."depd-1.1.2" sources."http-errors-1.8.1" - (sources."invoices-2.0.4" // { - dependencies = [ - sources."bolt09-0.2.1" - sources."tiny-secp256k1-2.2.0" - ]; - }) sources."on-finished-2.3.0" sources."psbt-2.0.0" sources."qs-6.9.7" sources."raw-body-2.4.3" sources."statuses-1.5.0" + sources."type-fest-2.12.0" ]; }) (sources."ln-accounting-5.0.6" // { dependencies = [ sources."@grpc/grpc-js-1.5.7" - sources."@types/node-17.0.21" - sources."@types/ws-8.5.2" + sources."@types/node-17.0.23" + sources."@types/ws-8.5.3" sources."body-parser-1.19.2" sources."bolt07-1.8.0" sources."bolt09-0.2.2" @@ -81354,52 +81516,51 @@ in ]; }) sources."http-errors-1.8.1" - sources."invoices-2.0.4" - (sources."lightning-5.8.2" // { - dependencies = [ - sources."asyncjs-util-1.2.8" - sources."tiny-secp256k1-2.2.1" - ]; - }) (sources."ln-service-53.10.0" // { dependencies = [ sources."@grpc/grpc-js-1.6.1" - sources."@types/node-17.0.23" - sources."@types/ws-8.5.3" sources."asyncjs-util-1.2.8" sources."lightning-5.9.0" - sources."tiny-secp256k1-2.2.1" - sources."type-fest-2.12.2" ]; }) sources."on-finished-2.3.0" - (sources."p2tr-1.3.0" // { - dependencies = [ - sources."tiny-secp256k1-2.2.1" - ]; - }) + sources."p2tr-1.3.0" sources."psbt-2.0.0" sources."qs-6.9.7" sources."raw-body-2.4.3" sources."statuses-1.5.0" - sources."tiny-secp256k1-2.2.0" - sources."type-fest-2.12.0" - sources."uint8array-tools-0.0.7" + sources."type-fest-2.12.2" ]; }) (sources."ln-service-53.11.0" // { dependencies = [ sources."@grpc/grpc-js-1.6.2" - sources."bolt09-0.2.3" - sources."lightning-5.10.1" + sources."@types/node-17.0.23" + sources."@types/ws-8.5.3" + sources."bolt09-0.2.2" + sources."invoices-2.0.5" + (sources."lightning-5.10.1" // { + dependencies = [ + sources."bolt09-0.2.3" + ]; + }) + sources."type-fest-2.12.2" ]; }) (sources."ln-sync-3.12.0" // { dependencies = [ - (sources."invoices-2.0.4" // { + sources."@grpc/grpc-js-1.6.1" + sources."@types/node-17.0.23" + sources."@types/ws-8.5.3" + sources."body-parser-1.19.2" + sources."bolt09-0.2.2" + sources."depd-1.1.2" + sources."http-errors-1.8.1" + (sources."lightning-5.9.0" // { dependencies = [ + sources."asyncjs-util-1.2.8" sources."bolt07-1.8.0" - sources."tiny-secp256k1-2.2.0" + sources."psbt-2.0.0" ]; }) (sources."ln-service-53.10.0" // { @@ -81407,37 +81568,51 @@ in sources."bolt07-1.8.0" ]; }) + sources."on-finished-2.3.0" + sources."qs-6.9.7" + sources."raw-body-2.4.3" + sources."statuses-1.5.0" + sources."type-fest-2.12.2" ]; }) (sources."ln-telegram-3.21.1" // { dependencies = [ - sources."body-parser-1.19.2" + sources."@grpc/grpc-js-1.6.1" + sources."@types/node-17.0.23" + sources."@types/ws-8.5.3" + (sources."body-parser-1.19.2" // { + dependencies = [ + sources."debug-2.6.9" + sources."ms-2.0.0" + ]; + }) sources."bolt07-1.8.0" sources."bolt09-0.2.2" + sources."debug-4.3.4" sources."depd-1.1.2" + sources."goldengate-11.1.1" + sources."grammy-1.7.1" sources."http-errors-1.8.1" - sources."invoices-2.0.4" - (sources."lightning-5.8.6" // { + (sources."lightning-5.9.0" // { dependencies = [ sources."asyncjs-util-1.2.8" - sources."tiny-secp256k1-2.2.1" ]; }) sources."ln-service-53.10.0" (sources."ln-sync-3.11.1" // { dependencies = [ sources."asyncjs-util-1.2.8" + sources."lightning-5.8.6" sources."ln-service-53.9.4" - sources."tiny-secp256k1-2.2.1" ]; }) + sources."ms-2.1.2" sources."on-finished-2.3.0" sources."psbt-2.0.0" sources."qs-6.9.7" sources."raw-body-2.4.3" sources."statuses-1.5.0" - sources."tiny-secp256k1-2.2.0" - sources."uint8array-tools-0.0.7" + sources."type-fest-2.12.2" ]; }) sources."lodash-4.17.21" @@ -81453,9 +81628,16 @@ in dependencies = [ sources."ansi-styles-4.3.0" sources."chalk-4.1.2" + sources."color-convert-2.0.1" + sources."color-name-1.1.4" sources."supports-color-7.2.0" ]; }) + (sources."logform-2.4.0" // { + dependencies = [ + sources."ms-2.1.3" + ]; + }) sources."long-4.0.0" sources."lowercase-keys-1.0.1" sources."lru-cache-6.0.0" @@ -81497,12 +81679,15 @@ in sources."on-finished-2.4.1" sources."on-headers-1.0.2" sources."once-1.4.0" + sources."one-time-1.0.0" sources."onetime-1.1.0" (sources."ora-5.4.1" // { dependencies = [ sources."ansi-styles-4.3.0" sources."chalk-4.1.2" sources."cli-cursor-3.1.0" + sources."color-convert-2.0.1" + sources."color-name-1.1.4" sources."onetime-5.1.2" sources."restore-cursor-3.1.0" sources."supports-color-7.2.0" @@ -81520,9 +81705,9 @@ in (sources."paid-services-3.14.5" // { dependencies = [ sources."@alexbosworth/fiat-1.0.1" - sources."@grpc/grpc-js-1.5.7" - sources."@types/node-17.0.21" - sources."@types/ws-8.5.2" + sources."@grpc/grpc-js-1.6.1" + sources."@types/node-17.0.23" + sources."@types/ws-8.5.3" sources."asyncjs-util-1.2.8" sources."body-parser-1.19.2" sources."bolt01-1.2.3" @@ -81530,17 +81715,16 @@ in sources."bolt09-0.2.2" sources."depd-1.1.2" sources."http-errors-1.8.1" - (sources."invoices-2.0.4" // { - dependencies = [ - sources."tiny-secp256k1-2.2.0" - ]; - }) sources."lightning-5.8.6" sources."ln-service-53.9.4" (sources."ln-sync-3.11.0" // { dependencies = [ + sources."@grpc/grpc-js-1.5.7" + sources."@types/node-17.0.21" + sources."@types/ws-8.5.2" sources."lightning-5.8.2" sources."ln-service-53.9.3" + sources."type-fest-2.12.0" ]; }) sources."on-finished-2.3.0" @@ -81548,7 +81732,7 @@ in sources."qs-6.9.7" sources."raw-body-2.4.3" sources."statuses-1.5.0" - sources."type-fest-2.12.0" + sources."type-fest-2.12.2" ]; }) sources."parseurl-1.3.3" @@ -81587,6 +81771,7 @@ in sources."rx-4.1.0" sources."rxjs-7.5.5" sources."safe-buffer-5.1.2" + sources."safe-stable-stringify-2.3.1" sources."safer-buffer-2.1.2" sources."sanitize-filename-1.6.3" sources."semver-7.3.7" @@ -81610,10 +81795,13 @@ in sources."sha.js-2.4.11" sources."side-channel-1.0.4" sources."signal-exit-3.0.7" + sources."simple-swizzle-0.2.2" sources."sjcl-1.0.8" (sources."slice-ansi-4.0.0" // { dependencies = [ sources."ansi-styles-4.3.0" + sources."color-convert-2.0.1" + sources."color-name-1.1.4" ]; }) sources."smart-buffer-4.2.0" @@ -81642,33 +81830,33 @@ in sources."strip-ansi-3.0.1" ]; }) + sources."text-hex-1.0.0" sources."through-2.3.8" sources."tiny-emitter-2.1.0" - (sources."tiny-secp256k1-2.2.1" // { - dependencies = [ - sources."uint8array-tools-0.0.7" - ]; - }) + sources."tiny-secp256k1-2.2.1" sources."tmp-0.0.29" sources."to-readable-stream-1.0.0" sources."toidentifier-1.0.1" sources."tr46-0.0.3" + sources."triple-beam-1.3.0" sources."truncate-utf8-bytes-1.0.2" sources."tslib-2.3.1" sources."tweetnacl-1.0.3" sources."tweetnacl-util-0.15.1" - sources."type-fest-2.12.2" + sources."type-fest-0.21.3" sources."type-is-1.6.18" sources."typedarray-0.0.6" sources."typedarray-to-buffer-3.1.5" sources."typeforce-1.18.0" - sources."uint8array-tools-0.0.6" + sources."uint8array-tools-0.0.7" sources."unique-string-2.0.0" sources."unpipe-1.0.0" (sources."update-notifier-5.1.0" // { dependencies = [ sources."ansi-styles-4.3.0" sources."chalk-4.1.2" + sources."color-convert-2.0.1" + sources."color-name-1.1.4" sources."import-lazy-2.1.0" sources."supports-color-7.2.0" ]; @@ -81686,15 +81874,21 @@ in sources."widest-line-3.1.0" sources."wif-2.0.6" sources."window-size-1.1.1" - (sources."winston-2.4.5" // { + (sources."winston-3.7.2" // { dependencies = [ - sources."async-1.0.0" - sources."colors-1.0.3" + sources."readable-stream-3.6.0" + ]; + }) + (sources."winston-transport-4.5.0" // { + dependencies = [ + sources."readable-stream-3.6.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."wrappy-1.0.2" @@ -82236,7 +82430,7 @@ in sources."create-hmac-1.1.7" sources."crypto-browserify-3.12.0" sources."dash-ast-1.0.0" - sources."define-properties-1.1.3" + sources."define-properties-1.1.4" sources."defined-1.0.0" sources."deps-sort-2.0.1" sources."des.js-1.0.1" @@ -82253,7 +82447,7 @@ in sources."bn.js-4.12.0" ]; }) - sources."es-abstract-1.19.4" + sources."es-abstract-1.19.5" sources."es-to-primitive-1.2.1" sources."events-3.3.0" sources."evp_bytestokey-1.0.3" @@ -82267,6 +82461,7 @@ in sources."glob-7.2.0" sources."has-1.0.3" sources."has-bigints-1.0.1" + sources."has-property-descriptors-1.0.0" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" (sources."hash-base-3.1.0" // { @@ -82422,7 +82617,7 @@ in sources."@types/component-emitter-1.2.11" sources."@types/cookie-0.4.1" sources."@types/cors-2.8.12" - sources."@types/node-17.0.23" + sources."@types/node-17.0.24" sources."accepts-1.3.8" sources."ansi-regex-2.1.1" sources."ansi-styles-2.2.1" @@ -83128,7 +83323,7 @@ in sources."@protobufjs/pool-1.1.0" sources."@protobufjs/utf8-1.1.0" sources."@types/long-4.0.1" - sources."@types/node-17.0.23" + sources."@types/node-17.0.24" sources."addr-to-ip-port-1.5.4" sources."airplay-js-0.2.16" sources."ajv-6.12.6" @@ -83190,7 +83385,7 @@ in sources."co-3.1.0" sources."codepage-1.4.0" sources."combined-stream-1.0.8" - sources."commander-9.1.0" + sources."commander-9.2.0" sources."compact2string-1.4.1" sources."concat-map-0.0.1" (sources."concat-stream-2.0.0" // { @@ -84135,10 +84330,10 @@ in cdk8s-cli = nodeEnv.buildNodePackage { name = "cdk8s-cli"; packageName = "cdk8s-cli"; - version = "1.0.146"; + version = "1.0.148"; src = fetchurl { - url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-1.0.146.tgz"; - sha512 = "DPTpfMPJFC82Qqyx7Ci5XYwJ6bOE1UWozEw9lbw70nTEPoCWfO2Yu45A/68491xVp22eRbMQ0wbP7eSHRtCS5Q=="; + url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-1.0.148.tgz"; + sha512 = "sNZPZDbxMrECsM8gr1zOprPsq+TGdZtrRlh3MIpUQuFql65nHjhJjtB5FCCCFE4h53KsdNaBvkukEcWAoilpCQ=="; }; dependencies = [ sources."@jsii/check-node-1.56.0" @@ -84146,7 +84341,7 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@types/node-12.20.47" + sources."@types/node-12.20.48" sources."@xmldom/xmldom-0.8.2" sources."ajv-8.11.0" sources."ansi-regex-5.0.1" @@ -84157,8 +84352,8 @@ in sources."call-bind-1.0.2" sources."camelcase-6.3.0" sources."case-1.6.3" - sources."cdk8s-1.5.67" - sources."cdk8s-plus-22-1.0.0-beta.191" + sources."cdk8s-1.5.69" + sources."cdk8s-plus-22-1.0.0-beta.193" sources."chalk-4.1.2" sources."cliui-7.0.4" sources."clone-2.1.2" @@ -84171,18 +84366,18 @@ in sources."color-name-1.1.4" sources."colors-1.4.0" sources."commonmark-0.30.0" - sources."constructs-3.3.266" - sources."date-format-4.0.6" + sources."constructs-3.3.268" + sources."date-format-4.0.7" sources."debug-4.3.4" sources."decamelize-5.0.1" sources."deep-equal-2.0.5" - sources."define-properties-1.1.3" + sources."define-properties-1.1.4" sources."detect-indent-5.0.0" sources."detect-newline-2.1.0" sources."dot-case-3.0.4" sources."emoji-regex-8.0.0" sources."entities-2.0.3" - sources."es-abstract-1.19.4" + sources."es-abstract-1.19.5" sources."es-get-iterator-1.1.2" sources."es-to-primitive-1.2.1" sources."escalade-3.1.1" @@ -84201,6 +84396,7 @@ in ]; }) sources."function-bind-1.1.1" + sources."functions-have-names-1.2.2" sources."get-caller-file-2.0.5" sources."get-intrinsic-1.1.1" sources."get-symbol-description-1.0.0" @@ -84209,6 +84405,7 @@ in sources."has-1.0.3" sources."has-bigints-1.0.1" sources."has-flag-4.0.0" + sources."has-property-descriptors-1.0.0" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" sources."internal-slot-1.0.3" @@ -84258,18 +84455,18 @@ in sources."yargs-16.2.0" ]; }) - (sources."jsii-srcmak-0.1.529" // { + (sources."jsii-srcmak-0.1.531" // { dependencies = [ sources."fs-extra-9.1.0" ]; }) sources."json-schema-0.4.0" sources."json-schema-traverse-1.0.0" - sources."json2jsii-0.2.190" + sources."json2jsii-0.2.192" sources."jsonfile-6.1.0" sources."jsonschema-1.4.0" sources."locate-path-5.0.0" - sources."log4js-6.4.4" + sources."log4js-6.4.5" sources."lower-case-2.0.2" sources."lru-cache-6.0.0" sources."mdurl-1.0.1" @@ -84291,7 +84488,7 @@ in sources."picomatch-2.3.1" sources."punycode-2.1.1" sources."queue-microtask-1.2.3" - sources."regexp.prototype.flags-1.4.2" + sources."regexp.prototype.flags-1.4.3" sources."require-directory-2.1.1" sources."require-from-string-2.0.2" sources."require-main-filename-2.0.0" @@ -84309,8 +84506,8 @@ in sources."snake-case-3.0.4" sources."sort-json-2.0.1" sources."spdx-license-list-6.5.0" - sources."sscaff-1.2.256" - (sources."streamroller-3.0.6" // { + sources."sscaff-1.2.258" + (sources."streamroller-3.0.7" // { dependencies = [ sources."fs-extra-10.0.1" ]; @@ -84391,7 +84588,7 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@types/node-17.0.23" + sources."@types/node-17.0.24" sources."@types/node-fetch-2.6.1" sources."@xmldom/xmldom-0.8.2" sources."ansi-regex-5.0.1" @@ -84420,18 +84617,18 @@ in sources."combined-stream-1.0.8" sources."commonmark-0.30.0" sources."concat-map-0.0.1" - sources."constructs-10.0.113" - sources."date-format-4.0.6" + sources."constructs-10.0.115" + sources."date-format-4.0.7" sources."debug-4.3.4" sources."decamelize-1.2.0" sources."deep-equal-2.0.5" - sources."define-properties-1.1.3" + sources."define-properties-1.1.4" sources."delayed-stream-1.0.0" sources."detect-indent-5.0.0" sources."detect-newline-2.1.0" sources."emoji-regex-8.0.0" sources."entities-2.0.3" - sources."es-abstract-1.19.4" + sources."es-abstract-1.19.5" sources."es-get-iterator-1.1.2" sources."es-to-primitive-1.2.1" sources."escalade-3.1.1" @@ -84448,6 +84645,7 @@ in sources."fs-extra-8.1.0" sources."fs.realpath-1.0.0" sources."function-bind-1.1.1" + sources."functions-have-names-1.2.2" sources."get-caller-file-2.0.5" sources."get-intrinsic-1.1.1" sources."get-symbol-description-1.0.0" @@ -84463,6 +84661,7 @@ in sources."has-1.0.3" sources."has-bigints-1.0.1" sources."has-flag-3.0.0" + sources."has-property-descriptors-1.0.0" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" sources."inflight-1.0.6" @@ -84563,7 +84762,7 @@ in sources."yargs-parser-20.2.9" ]; }) - (sources."jsii-srcmak-0.1.529" // { + (sources."jsii-srcmak-0.1.531" // { dependencies = [ sources."fs-extra-9.1.0" sources."jsonfile-6.1.0" @@ -84575,7 +84774,7 @@ in sources."jsonschema-1.4.0" sources."locate-path-5.0.0" sources."lodash.isequal-4.5.0" - sources."log4js-6.4.4" + sources."log4js-6.4.5" sources."lru-cache-6.0.0" sources."mdurl-1.0.1" sources."merge2-1.4.1" @@ -84608,7 +84807,7 @@ in sources."prettier-2.6.2" sources."punycode-2.1.1" sources."queue-microtask-1.2.3" - sources."regexp.prototype.flags-1.4.2" + sources."regexp.prototype.flags-1.4.3" sources."require-directory-2.1.1" sources."require-main-filename-2.0.0" sources."reserved-words-0.1.2" @@ -84627,7 +84826,7 @@ in sources."sort-json-2.0.1" sources."source-map-0.5.7" sources."spdx-license-list-6.5.0" - (sources."streamroller-3.0.6" // { + (sources."streamroller-3.0.7" // { dependencies = [ sources."fs-extra-10.0.1" sources."jsonfile-6.1.0" @@ -85107,6 +85306,23 @@ in bypassCache = true; reconstructLock = true; }; + coc-flutter = nodeEnv.buildNodePackage { + name = "coc-flutter"; + packageName = "coc-flutter"; + version = "1.9.7"; + src = fetchurl { + url = "https://registry.npmjs.org/coc-flutter/-/coc-flutter-1.9.7.tgz"; + sha512 = "12tXdF76vIOKhswubUNsd69jva2QxVStJuKSL8Ul7qH664MH3Pk1H6h26V+xu+vAeJKLZYp27MFZQmlpnd82IQ=="; + }; + buildInputs = globalBuildInputs; + meta = { + description = "flutter support for (Neo)vim"; + license = "MIT"; + }; + production = true; + bypassCache = true; + reconstructLock = true; + }; coc-git = nodeEnv.buildNodePackage { name = "coc-git"; packageName = "coc-git"; @@ -85306,7 +85522,7 @@ in sources."@tootallnate/once-1.1.2" sources."agent-base-6.0.2" sources."arch-2.2.0" - sources."async-2.6.3" + sources."async-2.6.4" sources."await-semaphore-0.1.3" sources."balanced-match-1.0.2" sources."big-integer-1.6.51" @@ -85331,14 +85547,14 @@ in sources."which-1.3.1" ]; }) - sources."date-format-4.0.6" + sources."date-format-4.0.7" sources."debounce-1.2.1" sources."debug-4.3.4" sources."deep-extend-0.6.0" - sources."define-properties-1.1.3" + sources."define-properties-1.1.4" sources."duplexer2-0.1.4" sources."end-of-stream-1.4.4" - sources."es-abstract-1.19.4" + sources."es-abstract-1.19.5" sources."es-to-primitive-1.2.1" sources."event-lite-0.1.2" sources."execa-1.0.0" @@ -85346,7 +85562,7 @@ in sources."fb-watchman-2.0.1" sources."flatted-3.2.5" sources."follow-redirects-1.14.9" - sources."fp-ts-2.11.9" + sources."fp-ts-2.11.10" sources."fs-extra-10.0.1" sources."fs-minipass-2.1.0" sources."fs.realpath-1.0.0" @@ -85364,10 +85580,11 @@ in sources."graceful-fs-4.2.10" sources."has-1.0.3" sources."has-bigints-1.0.1" + sources."has-property-descriptors-1.0.0" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" sources."http-proxy-agent-4.0.1" - sources."https-proxy-agent-5.0.0" + sources."https-proxy-agent-5.0.1" sources."ieee754-1.2.1" sources."inflight-1.0.6" sources."inherits-2.0.4" @@ -85400,7 +85617,7 @@ in ]; }) sources."lodash-4.17.21" - sources."log4js-6.4.4" + sources."log4js-6.4.5" sources."lru-cache-6.0.0" sources."metals-languageclient-0.4.2" sources."minimatch-3.1.2" @@ -85450,7 +85667,7 @@ in sources."shell-quote-1.7.3" sources."side-channel-1.0.4" sources."signal-exit-3.0.7" - sources."streamroller-3.0.6" + sources."streamroller-3.0.7" sources."string.prototype.trimend-1.0.4" sources."string.prototype.trimstart-1.0.4" (sources."string_decoder-1.1.1" // { @@ -85753,7 +85970,7 @@ in sources."callsites-3.1.0" sources."camelcase-5.3.1" sources."camelcase-keys-6.2.2" - sources."caniuse-lite-1.0.30001331" + sources."caniuse-lite-1.0.30001332" (sources."chalk-4.1.2" // { dependencies = [ sources."ansi-styles-4.3.0" @@ -85790,7 +86007,7 @@ in sources."domelementtype-1.3.1" sources."domhandler-2.4.2" sources."domutils-1.7.0" - sources."electron-to-chromium-1.4.107" + sources."electron-to-chromium-1.4.110" sources."emoji-regex-8.0.0" sources."entities-1.1.2" sources."error-ex-1.3.2" @@ -87109,7 +87326,7 @@ in sources."array-union-2.1.0" sources."asn1-0.2.6" sources."assert-plus-1.0.0" - sources."async-2.6.3" + sources."async-2.6.4" sources."asynckit-0.4.0" sources."at-least-node-1.0.0" sources."atomically-1.7.0" @@ -87316,7 +87533,7 @@ in sources."http-errors-1.8.1" sources."http-proxy-agent-4.0.1" sources."http-signature-1.2.0" - sources."https-proxy-agent-5.0.0" + sources."https-proxy-agent-5.0.1" sources."human-signals-2.1.0" sources."humanize-ms-1.2.1" sources."iconv-lite-0.6.3" @@ -87813,7 +88030,7 @@ in sources."@cycle/run-3.4.0" sources."@cycle/time-0.10.1" sources."@types/cookiejar-2.1.2" - sources."@types/node-17.0.23" + sources."@types/node-17.0.24" sources."@types/superagent-3.8.2" sources."ansi-escapes-3.2.0" sources."ansi-regex-2.1.1" @@ -87842,7 +88059,7 @@ in sources."cycle-onionify-4.0.0" sources."d-1.0.1" sources."debug-3.2.7" - sources."define-properties-1.1.3" + sources."define-properties-1.1.4" sources."delayed-stream-1.0.0" sources."es5-ext-0.10.60" sources."es6-iterator-2.0.3" @@ -87871,6 +88088,7 @@ in sources."has-1.0.3" sources."has-ansi-2.0.0" sources."has-flag-3.0.0" + sources."has-property-descriptors-1.0.0" sources."has-symbols-1.0.3" sources."iconv-lite-0.4.24" sources."inherits-2.0.4" @@ -88150,7 +88368,7 @@ in sources."clear-module-4.1.2" sources."color-convert-2.0.1" sources."color-name-1.1.4" - sources."commander-9.1.0" + sources."commander-9.2.0" sources."comment-json-4.2.2" sources."concat-map-0.0.1" sources."configstore-5.0.1" @@ -89030,7 +89248,7 @@ in sources."@babel/template-7.16.7" sources."@babel/traverse-7.17.9" sources."@babel/types-7.17.0" - sources."@blueprintjs/colors-4.0.5" + sources."@blueprintjs/colors-4.1.0" sources."@blueprintjs/core-3.54.0" sources."@blueprintjs/icons-3.33.0" sources."@deltachat/message_parser_wasm-0.3.0" @@ -89062,11 +89280,11 @@ in sources."@types/mapbox-gl-0.54.5" sources."@types/mime-types-2.1.1" sources."@types/minimist-1.2.2" - sources."@types/node-14.18.12" + sources."@types/node-14.18.13" sources."@types/node-fetch-2.6.1" sources."@types/prop-types-15.7.5" sources."@types/rc-1.2.1" - sources."@types/react-16.14.24" + sources."@types/react-16.14.25" sources."@types/react-dom-16.9.14" sources."@types/react-window-1.8.5" sources."@types/react-window-infinite-loader-1.0.6" @@ -89119,7 +89337,7 @@ in ]; }) sources."call-bind-1.0.2" - sources."caniuse-lite-1.0.30001331" + sources."caniuse-lite-1.0.30001332" sources."chalk-2.4.2" sources."chokidar-2.1.8" (sources."class-utils-0.3.6" // { @@ -89160,7 +89378,7 @@ in ]; }) sources."copy-descriptor-0.1.1" - (sources."core-js-compat-3.21.1" // { + (sources."core-js-compat-3.22.0" // { dependencies = [ sources."semver-7.0.0" ]; @@ -89176,7 +89394,7 @@ in sources."deep-equal-1.1.1" sources."deep-extend-0.6.0" sources."defer-to-connect-1.1.3" - sources."define-properties-1.1.3" + sources."define-properties-1.1.4" sources."define-property-2.0.2" sources."delayed-stream-1.0.0" sources."deltachat-node-1.76.0" @@ -89186,7 +89404,7 @@ in sources."duplexer3-0.1.4" sources."earcut-2.2.3" sources."electron-14.2.9" - sources."electron-to-chromium-1.4.107" + sources."electron-to-chromium-1.4.110" sources."emoji-js-clean-4.0.0" sources."emoji-mart-3.0.1" sources."emoji-regex-9.2.2" @@ -89251,6 +89469,7 @@ in sources."fs-extra-8.1.0" sources."fsevents-1.2.13" sources."function-bind-1.1.1" + sources."functions-have-names-1.2.2" sources."gensync-1.0.0-beta.2" sources."geojson-flatten-1.0.4" sources."geojson-vt-3.2.1" @@ -89283,6 +89502,7 @@ in sources."gud-1.0.0" sources."has-1.0.3" sources."has-flag-3.0.0" + sources."has-property-descriptors-1.0.0" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" sources."has-value-1.0.0" @@ -89443,7 +89663,7 @@ in sources."regenerator-runtime-0.13.9" sources."regenerator-transform-0.15.0" sources."regex-not-1.0.2" - sources."regexp.prototype.flags-1.4.2" + sources."regexp.prototype.flags-1.4.3" sources."regexpu-core-5.0.1" sources."regjsgen-0.6.0" (sources."regjsparser-0.8.4" // { @@ -89770,12 +89990,12 @@ in dependencies = [ sources."@fast-csv/format-4.3.5" sources."@fast-csv/parse-4.3.6" - sources."@types/node-14.18.12" + sources."@types/node-14.18.13" sources."JSONStream-1.3.5" sources."ajv-6.12.6" sources."asn1-0.2.6" sources."assert-plus-1.0.0" - sources."async-2.6.3" + sources."async-2.6.4" sources."asynckit-0.4.0" sources."aws-sdk-2.1097.0" sources."aws-sign2-0.7.0" @@ -89807,7 +90027,7 @@ in sources."har-schema-2.0.0" sources."har-validator-5.1.5" sources."http-signature-1.2.0" - sources."http-status-1.5.0" + sources."http-status-1.5.1" sources."ieee754-1.1.13" sources."inherits-2.0.4" sources."ini-2.0.0" @@ -89973,7 +90193,7 @@ in sources."@types/json-buffer-3.0.0" sources."@types/keyv-3.1.4" sources."@types/minimatch-3.0.5" - sources."@types/node-17.0.23" + sources."@types/node-17.0.24" sources."@types/responselike-1.0.0" sources."@types/yauzl-2.10.0" sources."abbrev-1.1.1" @@ -90063,7 +90283,7 @@ in sources."defaults-1.0.3" sources."defer-to-connect-2.0.1" sources."define-lazy-prop-2.0.0" - (sources."define-properties-1.1.3" // { + (sources."define-properties-1.1.4" // { dependencies = [ sources."object-keys-1.1.1" ]; @@ -90163,6 +90383,7 @@ in sources."gauge-4.0.4" sources."get-caller-file-2.0.5" sources."get-installed-path-2.1.1" + sources."get-intrinsic-1.1.1" (sources."get-package-info-1.0.0" // { dependencies = [ sources."debug-2.6.9" @@ -90187,6 +90408,8 @@ in sources."har-validator-5.1.5" sources."has-1.0.3" sources."has-flag-4.0.0" + sources."has-property-descriptors-1.0.0" + sources."has-symbols-1.0.3" sources."has-unicode-2.0.1" sources."homedir-polyfill-1.0.3" sources."hosted-git-info-2.8.9" @@ -90194,7 +90417,7 @@ in sources."http-proxy-agent-4.0.1" sources."http-signature-1.2.0" sources."http2-wrapper-1.0.3" - sources."https-proxy-agent-5.0.0" + sources."https-proxy-agent-5.0.1" sources."humanize-ms-1.2.1" sources."iconv-lite-0.6.3" sources."ieee754-1.2.1" @@ -90580,7 +90803,7 @@ in sources."callsites-3.1.0" sources."camelcase-5.3.1" sources."camelcase-keys-6.2.2" - sources."caniuse-lite-1.0.30001331" + sources."caniuse-lite-1.0.30001332" sources."chalk-2.4.2" sources."ci-info-2.0.0" sources."cli-boxes-2.2.1" @@ -90609,7 +90832,7 @@ in ]; }) sources."dot-prop-5.3.0" - sources."electron-to-chromium-1.4.107" + sources."electron-to-chromium-1.4.110" sources."emoji-regex-8.0.0" sources."emojilib-2.4.0" sources."end-of-stream-1.4.4" @@ -90875,18 +91098,18 @@ in }) sources."@fluentui/date-time-utilities-8.5.0" sources."@fluentui/dom-utilities-2.2.0" - sources."@fluentui/font-icons-mdl2-8.3.0" - sources."@fluentui/foundation-legacy-8.2.5" + sources."@fluentui/font-icons-mdl2-8.3.1" + sources."@fluentui/foundation-legacy-8.2.6" sources."@fluentui/keyboard-key-0.4.0" - sources."@fluentui/merge-styles-8.5.0" - sources."@fluentui/react-8.64.3" - sources."@fluentui/react-focus-8.5.6" - sources."@fluentui/react-hooks-8.5.3" + sources."@fluentui/merge-styles-8.5.1" + sources."@fluentui/react-8.65.0" + sources."@fluentui/react-focus-8.5.7" + sources."@fluentui/react-hooks-8.5.4" sources."@fluentui/react-window-provider-2.2.0" sources."@fluentui/set-version-8.2.0" - sources."@fluentui/style-utilities-8.6.5" - sources."@fluentui/theme-2.6.4" - sources."@fluentui/utilities-8.8.1" + sources."@fluentui/style-utilities-8.6.6" + sources."@fluentui/theme-2.6.5" + sources."@fluentui/utilities-8.8.2" (sources."@gulp-sourcemaps/identity-map-2.0.1" // { dependencies = [ sources."acorn-6.4.2" @@ -90908,7 +91131,7 @@ in ]; }) sources."@humanwhocodes/object-schema-1.2.1" - sources."@microsoft/load-themed-styles-1.10.257" + sources."@microsoft/load-themed-styles-1.10.258" sources."@node-rs/crc32-1.5.0" sources."@node-rs/crc32-android-arm-eabi-1.5.0" sources."@node-rs/crc32-android-arm64-1.5.0" @@ -91258,7 +91481,7 @@ in }) sources."default-resolution-2.0.0" sources."defer-to-connect-1.1.3" - sources."define-properties-1.1.3" + sources."define-properties-1.1.4" sources."define-property-2.0.2" (sources."del-6.0.0" // { dependencies = [ @@ -91606,6 +91829,7 @@ in sources."has-1.0.3" sources."has-ansi-2.0.0" sources."has-flag-4.0.0" + sources."has-property-descriptors-1.0.0" sources."has-symbols-1.0.3" sources."has-unicode-2.0.1" sources."has-value-1.0.0" @@ -92508,7 +92732,7 @@ in sources."@types/mime-1.3.2" sources."@types/minimatch-3.0.5" sources."@types/minimist-1.2.2" - sources."@types/node-17.0.23" + sources."@types/node-17.0.24" sources."@types/normalize-package-data-2.4.1" sources."@types/parse-json-4.0.0" sources."@types/q-1.5.5" @@ -92530,7 +92754,7 @@ in ]; }) sources."@types/webpack-dev-server-3.11.6" - sources."@types/webpack-env-1.16.3" + sources."@types/webpack-env-1.16.4" (sources."@types/webpack-sources-3.2.0" // { dependencies = [ sources."source-map-0.7.3" @@ -92715,7 +92939,7 @@ in sources."assert-plus-1.0.0" sources."assign-symbols-1.0.0" sources."astral-regex-2.0.0" - sources."async-2.6.3" + sources."async-2.6.4" sources."async-each-1.0.3" sources."async-limiter-1.0.1" sources."asynckit-0.4.0" @@ -92823,7 +93047,7 @@ in sources."camel-case-3.0.0" sources."camelcase-5.3.1" sources."caniuse-api-3.0.0" - sources."caniuse-lite-1.0.30001331" + sources."caniuse-lite-1.0.30001332" sources."case-sensitive-paths-webpack-plugin-2.4.0" sources."caseless-0.12.0" sources."chalk-2.4.2" @@ -93013,7 +93237,7 @@ in ]; }) sources."defaults-1.0.3" - sources."define-properties-1.1.3" + sources."define-properties-1.1.4" sources."define-property-2.0.2" (sources."del-4.1.1" // { dependencies = [ @@ -93064,7 +93288,7 @@ in sources."ecc-jsbn-0.1.2" sources."ee-first-1.1.1" sources."ejs-2.7.4" - sources."electron-to-chromium-1.4.107" + sources."electron-to-chromium-1.4.110" (sources."elliptic-6.5.4" // { dependencies = [ sources."bn.js-4.12.0" @@ -93090,7 +93314,7 @@ in sources."errno-0.1.8" sources."error-ex-1.3.2" sources."error-stack-parser-2.0.7" - sources."es-abstract-1.19.4" + sources."es-abstract-1.19.5" sources."es-to-primitive-1.2.1" sources."es6-promise-4.2.8" sources."escalade-3.1.1" @@ -93277,6 +93501,7 @@ in sources."fsevents-2.3.2" sources."function-bind-1.1.1" sources."functional-red-black-tree-1.0.1" + sources."functions-have-names-1.2.2" sources."get-caller-file-2.0.5" sources."get-intrinsic-1.1.1" sources."get-stdin-6.0.0" @@ -93307,6 +93532,7 @@ in sources."has-bigints-1.0.1" sources."has-cors-1.1.0" sources."has-flag-3.0.0" + sources."has-property-descriptors-1.0.0" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" sources."has-value-1.0.0" @@ -93848,7 +94074,7 @@ in sources."rechoir-0.6.2" sources."reflect-metadata-0.1.13" sources."regex-not-1.0.2" - sources."regexp.prototype.flags-1.4.2" + sources."regexp.prototype.flags-1.4.3" sources."regexpp-3.2.0" sources."relateurl-0.2.7" sources."remove-trailing-separator-1.1.0" @@ -94804,7 +95030,7 @@ in sources."@types/json-schema-7.0.11" sources."@types/keyv-3.1.4" sources."@types/minimatch-3.0.5" - sources."@types/node-17.0.23" + sources."@types/node-17.0.24" sources."@types/q-1.5.5" sources."@types/responselike-1.0.0" sources."@types/retry-0.12.1" @@ -95009,7 +95235,7 @@ in }) sources."camelcase-6.3.0" sources."caniuse-api-3.0.0" - sources."caniuse-lite-1.0.30001331" + sources."caniuse-lite-1.0.30001332" (sources."chalk-4.1.2" // { dependencies = [ sources."ansi-styles-4.3.0" @@ -95214,7 +95440,7 @@ in sources."defaults-1.0.3" sources."defer-to-connect-2.0.1" sources."define-lazy-prop-2.0.0" - sources."define-properties-1.1.3" + sources."define-properties-1.1.4" sources."define-property-2.0.2" (sources."del-6.0.0" // { dependencies = [ @@ -95267,7 +95493,7 @@ in sources."duplexer3-0.1.4" sources."duplexify-3.7.1" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.107" + sources."electron-to-chromium-1.4.110" (sources."elliptic-6.5.4" // { dependencies = [ sources."bn.js-4.12.0" @@ -95288,7 +95514,7 @@ in sources."errno-0.1.8" sources."error-ex-1.3.2" sources."errorhandler-1.5.1" - sources."es-abstract-1.19.4" + sources."es-abstract-1.19.5" sources."es-to-primitive-1.2.1" sources."escalade-3.1.1" sources."escape-html-1.0.3" @@ -95451,6 +95677,7 @@ in sources."fs.realpath-1.0.0" sources."fsevents-2.3.2" sources."function-bind-1.1.1" + sources."functions-have-names-1.2.2" sources."gensync-1.0.0-beta.2" sources."get-caller-file-2.0.5" sources."get-intrinsic-1.1.1" @@ -95478,6 +95705,7 @@ in sources."has-1.0.3" sources."has-bigints-1.0.1" sources."has-flag-3.0.0" + sources."has-property-descriptors-1.0.0" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" sources."has-value-1.0.0" @@ -95986,7 +96214,7 @@ in sources."pnp-webpack-plugin-1.7.0" (sources."portfinder-1.0.28" // { dependencies = [ - sources."async-2.6.3" + sources."async-2.6.4" sources."debug-3.2.7" ]; }) @@ -96203,7 +96431,7 @@ in }) sources."regenerator-runtime-0.13.9" sources."regex-not-1.0.2" - sources."regexp.prototype.flags-1.4.2" + sources."regexp.prototype.flags-1.4.3" sources."registry-auth-token-3.3.2" sources."registry-url-3.1.0" sources."relateurl-0.2.7" @@ -96855,7 +97083,7 @@ in sources."@jridgewell/sourcemap-codec-1.4.11" sources."@jridgewell/trace-mapping-0.3.4" sources."@types/minimist-1.2.2" - sources."@types/node-17.0.23" + sources."@types/node-17.0.24" sources."@types/normalize-package-data-2.4.1" sources."@types/yauzl-2.10.0" sources."@types/yoga-layout-1.9.2" @@ -96882,7 +97110,7 @@ in sources."callsites-3.1.0" sources."camelcase-5.3.1" sources."camelcase-keys-6.2.2" - sources."caniuse-lite-1.0.30001331" + sources."caniuse-lite-1.0.30001332" sources."chalk-2.4.2" sources."chownr-1.1.4" sources."ci-info-2.0.0" @@ -96907,7 +97135,7 @@ in }) sources."delay-5.0.0" sources."devtools-protocol-0.0.969999" - sources."electron-to-chromium-1.4.107" + sources."electron-to-chromium-1.4.110" sources."emoji-regex-8.0.0" sources."end-of-stream-1.4.4" sources."error-ex-1.3.2" @@ -97535,7 +97763,7 @@ in sources."@types/duplexify-3.6.1" sources."@types/json-schema-7.0.11" sources."@types/long-4.0.1" - sources."@types/node-17.0.23" + sources."@types/node-17.0.24" sources."abbrev-1.1.1" sources."abort-controller-3.0.0" sources."accepts-1.3.8" @@ -97894,7 +98122,7 @@ in sources."http-errors-2.0.0" sources."http-proxy-agent-4.0.1" sources."http-signature-1.2.0" - sources."https-proxy-agent-5.0.0" + sources."https-proxy-agent-5.0.1" sources."humanize-ms-1.2.1" sources."iconv-lite-0.4.24" sources."ieee754-1.2.1" @@ -98105,7 +98333,7 @@ in sources."picomatch-2.3.1" (sources."portfinder-1.0.28" // { dependencies = [ - sources."async-2.6.3" + sources."async-2.6.4" sources."debug-3.2.7" ]; }) @@ -98636,7 +98864,7 @@ in sources."@types/atob-2.1.2" sources."@types/bn.js-5.1.0" sources."@types/inquirer-6.5.0" - sources."@types/node-17.0.23" + sources."@types/node-17.0.24" sources."@types/pbkdf2-3.1.0" sources."@types/secp256k1-4.0.3" sources."@types/through-0.0.30" @@ -98963,13 +99191,13 @@ in sources."debug-2.6.9" sources."decode-uri-component-0.2.0" sources."deep-equal-2.0.5" - sources."define-properties-1.1.3" + sources."define-properties-1.1.4" sources."define-property-2.0.2" sources."director-1.2.7" sources."dot-prop-4.2.1" sources."duplexer-0.1.2" sources."enabled-2.0.0" - sources."es-abstract-1.19.4" + sources."es-abstract-1.19.5" sources."es-get-iterator-1.1.2" sources."es-to-primitive-1.2.1" sources."event-stream-3.3.4" @@ -99020,6 +99248,7 @@ in sources."fs.realpath-1.0.0" sources."fsevents-1.2.13" sources."function-bind-1.1.1" + sources."functions-have-names-1.2.2" sources."get-intrinsic-1.1.1" sources."get-symbol-description-1.0.0" sources."get-value-2.0.6" @@ -99032,6 +99261,7 @@ in sources."graceful-fs-4.2.10" sources."has-1.0.3" sources."has-bigints-1.0.1" + sources."has-property-descriptors-1.0.0" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" sources."has-value-1.0.0" @@ -99173,7 +99403,7 @@ in }) sources."readdirp-2.2.1" sources."regex-not-1.0.2" - sources."regexp.prototype.flags-1.4.2" + sources."regexp.prototype.flags-1.4.3" sources."remove-trailing-separator-1.1.0" sources."repeat-element-1.1.4" sources."repeat-string-1.6.1" @@ -99443,7 +99673,7 @@ in sources."@types/http-cache-semantics-4.0.1" sources."@types/json-buffer-3.0.0" sources."@types/keyv-3.1.4" - sources."@types/node-17.0.23" + sources."@types/node-17.0.24" sources."@types/node-fetch-2.6.1" sources."@types/responselike-1.0.0" sources."@types/yoga-layout-1.9.2" @@ -99472,7 +99702,7 @@ in }) sources."call-bind-1.0.2" sources."camelcase-6.3.0" - sources."caniuse-lite-1.0.30001331" + sources."caniuse-lite-1.0.30001332" (sources."chalk-4.1.2" // { dependencies = [ sources."ansi-styles-4.3.0" @@ -99537,7 +99767,7 @@ in sources."domutils-2.8.0" sources."dot-prop-5.3.0" sources."duplexer3-0.1.4" - sources."electron-to-chromium-1.4.107" + sources."electron-to-chromium-1.4.110" sources."emoji-regex-8.0.0" sources."end-of-stream-1.4.4" sources."entities-2.2.0" @@ -99640,7 +99870,7 @@ in sources."keyv-4.2.2" sources."kleur-3.0.3" sources."latest-version-5.1.0" - sources."lmdb-2.3.2" + sources."lmdb-2.3.3" sources."lmdb-darwin-arm64-2.3.2" sources."lmdb-darwin-x64-2.3.2" sources."lmdb-linux-arm-2.3.2" @@ -100085,7 +100315,7 @@ in sha512 = "76zCOpXUl/85CMk9aJwWbBy2vGYv+Yn17PcUMhksTtMJLAUujje3eP8v7FufC2pN9SbQx88Gtr4ARXGeVWwAJA=="; }; dependencies = [ - sources."async-2.6.3" + sources."async-2.6.4" sources."debug-4.3.4" sources."lodash-4.17.21" sources."lodash.groupby-4.6.0" @@ -100330,7 +100560,7 @@ in sources."@types/http-cache-semantics-4.0.1" sources."@types/json-buffer-3.0.0" sources."@types/keyv-3.1.4" - sources."@types/node-17.0.23" + sources."@types/node-17.0.24" sources."@types/responselike-1.0.0" sources."ansi-regex-6.0.1" sources."ansi-styles-4.3.0" @@ -100435,10 +100665,10 @@ in gitmoji-cli = nodeEnv.buildNodePackage { name = "gitmoji-cli"; packageName = "gitmoji-cli"; - version = "4.13.0"; + version = "4.13.1"; src = fetchurl { - url = "https://registry.npmjs.org/gitmoji-cli/-/gitmoji-cli-4.13.0.tgz"; - sha512 = "HF4X8Ov5uw32ksrJAJb2eG/lHu2yPe1+VZg+A5vl6rWn/GeCiuQeJdvjZB2RWJ4c0yDoGd16UbLvpUdnWZk6jg=="; + url = "https://registry.npmjs.org/gitmoji-cli/-/gitmoji-cli-4.13.1.tgz"; + sha512 = "2gj+T45cAuhaT6OICHKPxRAnGSXEsYRa/tgcNM8HmhENEcyjun7x0LAgP/soRXjENJ2CgWJrATU0EVUhb9uAYA=="; }; dependencies = [ sources."@babel/code-frame-7.16.7" @@ -100569,7 +100799,7 @@ in sources."http-cache-semantics-4.1.0" sources."http-errors-2.0.0" sources."http-proxy-agent-4.0.1" - sources."https-proxy-agent-5.0.0" + sources."https-proxy-agent-5.0.1" sources."human-signals-2.1.0" sources."iconv-lite-0.4.24" sources."ieee754-1.2.1" @@ -100828,7 +101058,7 @@ in dependencies = [ sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" - sources."async-2.6.3" + sources."async-2.6.4" sources."balanced-match-1.0.2" sources."base64-js-1.5.1" sources."bl-1.2.3" @@ -101029,9 +101259,9 @@ in sources."tslib-2.1.0" ]; }) - (sources."@graphql-tools/import-6.6.11" // { + (sources."@graphql-tools/import-6.6.12" // { dependencies = [ - sources."@graphql-tools/utils-8.6.7" + sources."@graphql-tools/utils-8.6.8" sources."tslib-2.3.1" ]; }) @@ -101056,10 +101286,10 @@ in sources."tslib-2.3.1" ]; }) - (sources."@graphql-tools/schema-8.3.8" // { + (sources."@graphql-tools/schema-8.3.9" // { dependencies = [ - sources."@graphql-tools/merge-8.2.8" - sources."@graphql-tools/utils-8.6.7" + sources."@graphql-tools/merge-8.2.9" + sources."@graphql-tools/utils-8.6.8" sources."tslib-2.3.1" ]; }) @@ -101090,7 +101320,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-17.0.23" + sources."@types/node-17.0.24" sources."@types/parse-json-4.0.0" sources."@types/websocket-1.0.2" sources."abort-controller-3.0.0" @@ -101176,7 +101406,7 @@ in sources."deep-extend-0.6.0" sources."defaults-1.0.3" sources."defer-to-connect-1.1.3" - sources."define-properties-1.1.3" + sources."define-properties-1.1.4" sources."delayed-stream-1.0.0" sources."dir-glob-3.0.1" sources."duplexer3-0.1.4" @@ -101184,7 +101414,7 @@ in sources."emoji-regex-8.0.0" sources."end-of-stream-1.4.4" sources."error-ex-1.3.2" - sources."es-abstract-1.19.4" + sources."es-abstract-1.19.5" sources."es-get-iterator-1.1.2" sources."es-to-primitive-1.2.1" sources."es6-promise-3.3.1" @@ -101220,6 +101450,7 @@ in sources."fs.realpath-1.0.0" sources."fullname-4.0.1" sources."function-bind-1.1.1" + sources."functions-have-names-1.2.2" sources."get-caller-file-2.0.5" sources."get-intrinsic-1.1.1" sources."get-stream-4.1.0" @@ -101249,6 +101480,7 @@ in sources."has-1.0.3" sources."has-bigints-1.0.1" sources."has-flag-4.0.0" + sources."has-property-descriptors-1.0.0" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" sources."http-cache-semantics-4.1.0" @@ -101448,7 +101680,7 @@ in sources."queue-microtask-1.2.3" sources."rc-1.2.8" sources."reftools-1.1.9" - sources."regexp.prototype.flags-1.4.2" + sources."regexp.prototype.flags-1.4.3" sources."registry-auth-token-4.2.1" sources."registry-url-5.1.0" sources."remove-trailing-separator-1.1.0" @@ -101580,26 +101812,30 @@ in }) sources."@cronvel/get-pixels-3.4.0" sources."@endemolshinegroup/cosmiconfig-typescript-loader-3.0.2" - sources."@graphql-tools/batch-execute-8.4.4" - sources."@graphql-tools/delegate-8.7.4" - sources."@graphql-tools/graphql-file-loader-7.3.9" - sources."@graphql-tools/import-6.6.11" - sources."@graphql-tools/json-file-loader-7.3.9" - sources."@graphql-tools/load-7.5.8" - sources."@graphql-tools/merge-8.2.8" - sources."@graphql-tools/schema-8.3.8" - (sources."@graphql-tools/url-loader-7.9.11" // { + sources."@envelop/core-2.3.1" + sources."@envelop/disable-introspection-3.3.1" + sources."@envelop/parser-cache-4.3.1" + sources."@envelop/types-2.2.0" + sources."@envelop/validation-cache-4.3.1" + sources."@graphql-tools/batch-execute-8.4.5" + sources."@graphql-tools/delegate-8.7.6" + sources."@graphql-tools/graphql-file-loader-7.3.10" + sources."@graphql-tools/import-6.6.12" + sources."@graphql-tools/json-file-loader-7.3.10" + sources."@graphql-tools/load-7.5.9" + sources."@graphql-tools/merge-8.2.9" + sources."@graphql-tools/schema-8.3.9" + (sources."@graphql-tools/url-loader-7.9.13" // { dependencies = [ - (sources."subscriptions-transport-ws-0.11.0" // { - dependencies = [ - sources."ws-7.5.7" - ]; - }) sources."ws-8.5.0" ]; }) - sources."@graphql-tools/utils-8.6.7" - sources."@graphql-tools/wrap-8.4.13" + sources."@graphql-tools/utils-8.6.8" + sources."@graphql-tools/wrap-8.4.15" + sources."@graphql-typed-document-node/core-3.1.1" + sources."@graphql-yoga/common-2.3.0" + sources."@graphql-yoga/node-2.3.0" + sources."@graphql-yoga/subscription-2.0.0" sources."@iarna/toml-2.2.5" sources."@n1ru4l/graphql-live-query-0.9.0" sources."@nodelib/fs.scandir-2.1.5" @@ -101634,10 +101870,10 @@ in ]; }) sources."@oclif/screen-1.0.4" + sources."@repeaterjs/repeater-3.0.4" sources."@types/json-schema-7.0.9" - sources."@types/node-17.0.23" + sources."@types/node-17.0.24" sources."@types/parse-json-4.0.0" - sources."@types/websocket-1.0.5" sources."@types/ws-8.5.3" sources."abort-controller-3.0.0" sources."accepts-1.3.8" @@ -101761,7 +101997,6 @@ in sources."graphql-language-service-parser-1.10.4" sources."graphql-language-service-types-1.8.7" sources."graphql-language-service-utils-2.5.1" - sources."graphql-sse-1.1.0" sources."graphql-ws-5.7.0" sources."has-flag-4.0.0" sources."http-errors-1.6.3" @@ -101894,6 +102129,7 @@ in sources."symbol-observable-1.2.0" sources."sync-fetch-0.3.1" sources."terminal-kit-1.49.4" + sources."tiny-lru-7.0.6" sources."to-regex-range-5.0.1" sources."tr46-0.0.3" sources."tree-kit-0.7.4" @@ -102359,7 +102595,7 @@ in ]; }) sources."default-resolution-2.0.0" - sources."define-properties-1.1.3" + sources."define-properties-1.1.4" sources."define-property-2.0.2" sources."detect-file-1.0.0" sources."duplexify-3.7.1" @@ -102444,6 +102680,7 @@ in sources."gulp-cli-2.3.0" sources."gulplog-1.0.0" sources."has-1.0.3" + sources."has-property-descriptors-1.0.0" sources."has-symbols-1.0.3" sources."has-value-1.0.0" (sources."has-values-1.0.0" // { @@ -102777,7 +103014,7 @@ in sources."decamelize-1.2.0" sources."decode-uri-component-0.2.0" sources."default-compare-1.0.0" - sources."define-properties-1.1.3" + sources."define-properties-1.1.4" sources."define-property-2.0.2" sources."detect-file-1.0.0" (sources."each-props-1.3.2" // { @@ -102845,6 +103082,7 @@ in sources."graceful-fs-4.2.10" sources."gulplog-1.0.0" sources."has-1.0.3" + sources."has-property-descriptors-1.0.0" sources."has-symbols-1.0.3" sources."has-value-1.0.0" (sources."has-values-1.0.0" // { @@ -103152,7 +103390,7 @@ in sources."chalk-4.1.2" sources."color-convert-2.0.1" sources."color-name-1.1.4" - sources."commander-9.1.0" + sources."commander-9.2.0" sources."concat-map-0.0.1" sources."fs.realpath-1.0.0" sources."glob-7.2.0" @@ -103193,7 +103431,7 @@ in }; dependencies = [ sources."ansi-styles-4.3.0" - sources."async-2.6.3" + sources."async-2.6.4" sources."basic-auth-2.0.1" sources."call-bind-1.0.2" sources."chalk-4.1.2" @@ -103415,16 +103653,16 @@ in sources."@colors/colors-1.5.0" sources."@fast-csv/format-4.3.5" sources."@fast-csv/parse-4.3.6" - sources."@types/node-14.18.12" + sources."@types/node-14.18.13" sources."ajv-6.12.6" sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" sources."argparse-1.0.10" sources."asn1-0.2.6" sources."assert-plus-1.0.0" - sources."async-2.6.3" + sources."async-2.6.4" sources."asynckit-0.4.0" - sources."aws-sdk-2.1113.0" + sources."aws-sdk-2.1116.0" sources."aws-sign2-0.7.0" sources."aws4-1.11.0" sources."base64-js-1.5.1" @@ -104361,7 +104599,7 @@ in sources."has-symbols-1.0.3" sources."http-errors-2.0.0" sources."http-proxy-agent-4.0.1" - sources."https-proxy-agent-5.0.0" + sources."https-proxy-agent-5.0.1" sources."iconv-lite-0.4.24" sources."imurmurhash-0.1.4" sources."inflight-1.0.6" @@ -104893,22 +105131,22 @@ in sources."@aws-sdk/abort-controller-3.55.0" sources."@aws-sdk/chunked-blob-reader-3.55.0" sources."@aws-sdk/chunked-blob-reader-native-3.58.0" - sources."@aws-sdk/client-s3-3.67.0" - sources."@aws-sdk/client-sso-3.67.0" - sources."@aws-sdk/client-sts-3.67.0" + sources."@aws-sdk/client-s3-3.72.0" + sources."@aws-sdk/client-sso-3.72.0" + sources."@aws-sdk/client-sts-3.72.0" sources."@aws-sdk/config-resolver-3.58.0" sources."@aws-sdk/credential-provider-env-3.55.0" sources."@aws-sdk/credential-provider-imds-3.58.0" - sources."@aws-sdk/credential-provider-ini-3.67.0" - sources."@aws-sdk/credential-provider-node-3.67.0" + sources."@aws-sdk/credential-provider-ini-3.72.0" + sources."@aws-sdk/credential-provider-node-3.72.0" sources."@aws-sdk/credential-provider-process-3.58.0" - sources."@aws-sdk/credential-provider-sso-3.67.0" + sources."@aws-sdk/credential-provider-sso-3.72.0" sources."@aws-sdk/credential-provider-web-identity-3.55.0" sources."@aws-sdk/eventstream-marshaller-3.58.0" - sources."@aws-sdk/eventstream-serde-browser-3.58.0" + sources."@aws-sdk/eventstream-serde-browser-3.72.0" sources."@aws-sdk/eventstream-serde-config-resolver-3.55.0" - sources."@aws-sdk/eventstream-serde-node-3.58.0" - sources."@aws-sdk/eventstream-serde-universal-3.58.0" + sources."@aws-sdk/eventstream-serde-node-3.72.0" + sources."@aws-sdk/eventstream-serde-universal-3.72.0" sources."@aws-sdk/fetch-http-handler-3.58.0" sources."@aws-sdk/hash-blob-browser-3.58.0" sources."@aws-sdk/hash-node-3.55.0" @@ -104919,7 +105157,7 @@ in sources."@aws-sdk/middleware-bucket-endpoint-3.58.0" sources."@aws-sdk/middleware-content-length-3.58.0" sources."@aws-sdk/middleware-expect-continue-3.58.0" - sources."@aws-sdk/middleware-flexible-checksums-3.58.0" + sources."@aws-sdk/middleware-flexible-checksums-3.72.0" sources."@aws-sdk/middleware-header-default-3.58.0" sources."@aws-sdk/middleware-host-header-3.58.0" sources."@aws-sdk/middleware-location-constraint-3.55.0" @@ -104942,12 +105180,12 @@ in sources."@aws-sdk/protocol-http-3.58.0" sources."@aws-sdk/querystring-builder-3.55.0" sources."@aws-sdk/querystring-parser-3.55.0" - sources."@aws-sdk/s3-request-presigner-3.67.0" + sources."@aws-sdk/s3-request-presigner-3.72.0" sources."@aws-sdk/service-error-classification-3.55.0" sources."@aws-sdk/shared-ini-file-loader-3.58.0" sources."@aws-sdk/signature-v4-3.58.0" sources."@aws-sdk/signature-v4-multi-region-3.66.0" - sources."@aws-sdk/smithy-client-3.55.0" + sources."@aws-sdk/smithy-client-3.72.0" sources."@aws-sdk/types-3.55.0" sources."@aws-sdk/url-parser-3.55.0" sources."@aws-sdk/util-arn-parser-3.55.0" @@ -104957,9 +105195,9 @@ in sources."@aws-sdk/util-body-length-node-3.55.0" sources."@aws-sdk/util-buffer-from-3.55.0" sources."@aws-sdk/util-config-provider-3.55.0" - sources."@aws-sdk/util-create-request-3.58.0" - sources."@aws-sdk/util-defaults-mode-browser-3.55.0" - sources."@aws-sdk/util-defaults-mode-node-3.58.0" + sources."@aws-sdk/util-create-request-3.72.0" + sources."@aws-sdk/util-defaults-mode-browser-3.72.0" + sources."@aws-sdk/util-defaults-mode-node-3.72.0" sources."@aws-sdk/util-format-url-3.58.0" sources."@aws-sdk/util-hex-encoding-3.58.0" sources."@aws-sdk/util-locate-window-3.55.0" @@ -105075,7 +105313,7 @@ in sources."async-mutex-0.1.4" sources."asynckit-0.4.0" sources."atob-2.1.2" - (sources."aws-sdk-2.1113.0" // { + (sources."aws-sdk-2.1116.0" // { dependencies = [ sources."sax-1.2.1" sources."uuid-3.3.2" @@ -105341,7 +105579,7 @@ in ]; }) sources."http-signature-1.2.0" - (sources."https-proxy-agent-5.0.0" // { + (sources."https-proxy-agent-5.0.1" // { dependencies = [ sources."debug-4.3.4" ]; @@ -107281,7 +107519,7 @@ in sources."@types/component-emitter-1.2.11" sources."@types/cookie-0.4.1" sources."@types/cors-2.8.12" - sources."@types/node-17.0.23" + sources."@types/node-17.0.24" sources."accepts-1.3.8" sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" @@ -107305,7 +107543,7 @@ in sources."cookie-0.4.2" sources."cors-2.8.5" sources."custom-event-1.0.1" - sources."date-format-4.0.6" + sources."date-format-4.0.7" sources."debug-2.6.9" sources."depd-2.0.0" sources."destroy-1.2.0" @@ -107359,7 +107597,7 @@ in sources."isbinaryfile-4.0.10" sources."jsonfile-6.1.0" sources."lodash-4.17.21" - (sources."log4js-6.4.4" // { + (sources."log4js-6.4.5" // { dependencies = [ sources."debug-4.3.4" sources."ms-2.1.2" @@ -107409,7 +107647,7 @@ in }) sources."source-map-0.6.1" sources."statuses-2.0.1" - (sources."streamroller-3.0.6" // { + (sources."streamroller-3.0.7" // { dependencies = [ sources."debug-4.3.4" sources."ms-2.1.2" @@ -107579,7 +107817,7 @@ in sources."buffer-from-1.1.2" sources."bytes-3.1.2" sources."call-bind-1.0.2" - sources."caniuse-lite-1.0.30001331" + sources."caniuse-lite-1.0.30001332" sources."chalk-2.4.2" sources."chardet-1.4.0" sources."chownr-1.1.4" @@ -107608,7 +107846,7 @@ in sources."convert-source-map-1.8.0" sources."cookie-0.4.2" sources."cookie-signature-1.0.6" - sources."core-js-3.21.1" + sources."core-js-3.22.0" sources."core-util-is-1.0.3" sources."cors-2.8.5" sources."create-hash-1.2.0" @@ -107632,7 +107870,7 @@ in sources."decompress-response-4.2.1" sources."deep-extend-0.6.0" sources."deep-is-0.1.4" - sources."define-properties-1.1.3" + sources."define-properties-1.1.4" sources."delayed-stream-1.0.0" sources."delegates-1.0.0" sources."depd-1.1.2" @@ -107647,12 +107885,12 @@ in }) sources."dotenv-8.6.0" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.107" + sources."electron-to-chromium-1.4.110" sources."emoji-regex-8.0.0" sources."encodeurl-1.0.2" sources."end-of-stream-1.4.4" sources."enquirer-2.3.6" - sources."es-abstract-1.19.4" + sources."es-abstract-1.19.5" sources."es-to-primitive-1.2.1" sources."escalade-3.1.1" sources."escape-html-1.0.3" @@ -107730,6 +107968,7 @@ in sources."has-1.0.3" sources."has-bigints-1.0.1" sources."has-flag-3.0.0" + sources."has-property-descriptors-1.0.0" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" sources."has-unicode-2.0.1" @@ -107742,7 +107981,7 @@ in sources."html-encoding-sniffer-2.0.1" sources."http-errors-1.8.1" sources."http-proxy-agent-4.0.1" - sources."https-proxy-agent-5.0.0" + sources."https-proxy-agent-5.0.1" sources."iconv-lite-0.4.24" sources."ieee754-1.2.1" sources."ignore-5.2.0" @@ -108050,7 +108289,7 @@ in sources."concat-map-0.0.1" sources."convert-source-map-1.8.0" sources."core-util-is-1.0.3" - sources."define-properties-1.1.3" + sources."define-properties-1.1.4" sources."duplexify-3.7.1" sources."end-of-stream-1.4.4" sources."extend-3.0.2" @@ -108064,6 +108303,7 @@ in sources."glob-stream-6.1.0" sources."graceful-fs-4.2.10" sources."has-1.0.3" + sources."has-property-descriptors-1.0.0" sources."has-symbols-1.0.3" sources."inflight-1.0.6" sources."inherits-2.0.4" @@ -108887,7 +109127,7 @@ in sources."decode-uri-component-0.2.0" sources."dedent-0.7.0" sources."defaults-1.0.3" - sources."define-properties-1.1.3" + sources."define-properties-1.1.4" sources."delayed-stream-1.0.0" sources."delegates-1.0.0" sources."depd-1.1.2" @@ -108904,7 +109144,7 @@ in sources."envinfo-7.8.1" sources."err-code-2.0.3" sources."error-ex-1.3.2" - sources."es-abstract-1.19.4" + sources."es-abstract-1.19.5" sources."es-to-primitive-1.2.1" sources."escalade-3.1.1" sources."escape-string-regexp-1.0.5" @@ -108979,6 +109219,7 @@ in sources."has-1.0.3" sources."has-bigints-1.0.1" sources."has-flag-4.0.0" + sources."has-property-descriptors-1.0.0" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" sources."has-unicode-2.0.1" @@ -108986,7 +109227,7 @@ in sources."http-cache-semantics-4.1.0" sources."http-proxy-agent-4.0.1" sources."http-signature-1.2.0" - sources."https-proxy-agent-5.0.0" + sources."https-proxy-agent-5.0.1" sources."human-signals-2.1.0" sources."humanize-ms-1.2.1" sources."iconv-lite-0.6.3" @@ -110456,14 +110697,14 @@ in sources."@types/babel__core-7.1.19" sources."@types/babel__generator-7.6.4" sources."@types/babel__template-7.4.1" - sources."@types/babel__traverse-7.14.2" + sources."@types/babel__traverse-7.17.0" sources."@types/estree-0.0.51" sources."@types/graceful-fs-4.1.5" sources."@types/istanbul-lib-coverage-2.0.4" sources."@types/istanbul-lib-report-3.0.0" sources."@types/istanbul-reports-1.1.2" sources."@types/json-schema-7.0.11" - sources."@types/node-17.0.23" + sources."@types/node-17.0.24" sources."@types/normalize-package-data-2.4.1" sources."@types/resolve-0.0.8" sources."@types/yargs-15.0.14" @@ -110636,7 +110877,7 @@ in sources."cached-path-relative-1.1.0" sources."call-bind-1.0.2" sources."camelcase-5.3.1" - sources."caniuse-lite-1.0.30001331" + sources."caniuse-lite-1.0.30001332" sources."capture-exit-2.0.0" sources."caseless-0.12.0" (sources."chalk-3.0.0" // { @@ -110707,7 +110948,7 @@ in }) sources."copy-descriptor-0.1.1" sources."core-js-2.6.12" - (sources."core-js-compat-3.21.1" // { + (sources."core-js-compat-3.22.0" // { dependencies = [ sources."semver-7.0.0" ]; @@ -110742,7 +110983,7 @@ in sources."debug-4.3.4" sources."decamelize-1.2.0" sources."decode-uri-component-0.2.0" - sources."define-properties-1.1.3" + sources."define-properties-1.1.4" sources."define-property-2.0.2" sources."defined-1.0.0" sources."delayed-stream-1.0.0" @@ -110759,7 +111000,7 @@ in sources."duplexer2-0.1.4" sources."duplexify-3.7.1" sources."ecc-jsbn-0.1.2" - sources."electron-to-chromium-1.4.107" + sources."electron-to-chromium-1.4.110" (sources."elliptic-6.5.4" // { dependencies = [ sources."bn.js-4.12.0" @@ -110890,6 +111131,7 @@ in sources."har-validator-5.1.5" sources."has-1.0.3" sources."has-flag-3.0.0" + sources."has-property-descriptors-1.0.0" sources."has-symbols-1.0.3" sources."has-value-1.0.0" (sources."has-values-1.0.0" // { @@ -111497,7 +111739,7 @@ in sources."@types/commander-2.12.2" sources."@types/diff-3.5.5" sources."@types/get-stdin-5.0.1" - sources."@types/node-17.0.23" + sources."@types/node-17.0.24" sources."commander-2.20.3" sources."diff-3.5.0" sources."get-stdin-5.0.1" @@ -112364,7 +112606,7 @@ in }; dependencies = [ sources."@braintree/sanitize-url-3.1.0" - sources."@types/node-17.0.23" + sources."@types/node-17.0.24" sources."@types/yauzl-2.10.0" sources."agent-base-6.0.2" sources."ansi-styles-4.3.0" @@ -112378,7 +112620,7 @@ in sources."chownr-1.1.4" sources."color-convert-2.0.1" sources."color-name-1.1.4" - sources."commander-9.1.0" + sources."commander-9.2.0" sources."concat-map-0.0.1" sources."cross-fetch-3.1.5" sources."d3-7.4.4" @@ -112843,7 +113085,7 @@ in sources."@types/istanbul-lib-coverage-2.0.4" sources."@types/istanbul-lib-report-3.0.0" sources."@types/istanbul-reports-3.0.1" - sources."@types/node-17.0.23" + sources."@types/node-17.0.24" sources."@types/stack-utils-2.0.1" sources."@types/yargs-16.0.4" sources."@types/yargs-parser-21.0.0" @@ -113266,7 +113508,7 @@ in sources."has-unicode-2.0.1" sources."http-cache-semantics-4.1.0" sources."http-proxy-agent-5.0.0" - sources."https-proxy-agent-5.0.0" + sources."https-proxy-agent-5.0.1" sources."humanize-ms-1.2.1" sources."iconv-lite-0.6.3" sources."imurmurhash-0.1.4" @@ -113786,7 +114028,7 @@ in sources."@types/http-cache-semantics-4.0.1" sources."@types/json-buffer-3.0.0" sources."@types/keyv-3.1.4" - sources."@types/node-17.0.23" + sources."@types/node-17.0.24" sources."@types/responselike-1.0.0" sources."abbrev-1.1.1" sources."accepts-1.3.8" @@ -114541,7 +114783,7 @@ in sources."@types/json-buffer-3.0.0" sources."@types/keyv-3.1.4" sources."@types/minimist-1.2.2" - sources."@types/node-17.0.23" + sources."@types/node-17.0.24" sources."@types/normalize-package-data-2.4.1" sources."@types/parse-json-4.0.0" sources."@types/responselike-1.0.0" @@ -115036,10 +115278,10 @@ in npm = nodeEnv.buildNodePackage { name = "npm"; packageName = "npm"; - version = "8.6.0"; + version = "8.7.0"; src = fetchurl { - url = "https://registry.npmjs.org/npm/-/npm-8.6.0.tgz"; - sha512 = "icekvN8FJFESIFkLaFEVl05Nocl5Id5HnoVhJzhCUvtNY8tj9kfUlH/J527fZq/8ltsAUqpettfutwRjQYS2fA=="; + url = "https://registry.npmjs.org/npm/-/npm-8.7.0.tgz"; + sha512 = "fOSunmSa1K3dBv4YFoX54wew3PC6aYYDMGWBAonWRO4Yc7smYtk3nLrCda6+dtkTJwA8D4Tv/0wmnpYNgf5VFw=="; }; buildInputs = globalBuildInputs; meta = { @@ -115111,7 +115353,7 @@ in sources."color-name-1.1.4" sources."color-support-1.1.3" sources."colors-1.0.3" - sources."commander-9.1.0" + sources."commander-9.2.0" sources."concat-map-0.0.1" sources."configstore-5.0.1" sources."console-control-strings-1.1.0" @@ -115166,7 +115408,7 @@ in sources."hosted-git-info-5.0.0" sources."http-cache-semantics-4.1.0" sources."http-proxy-agent-5.0.0" - sources."https-proxy-agent-5.0.0" + sources."https-proxy-agent-5.0.1" sources."humanize-ms-1.2.1" sources."iconv-lite-0.6.3" sources."ignore-5.2.0" @@ -115249,7 +115491,7 @@ in sources."npm-package-arg-9.0.2" sources."npm-packlist-5.0.0" sources."npm-pick-manifest-7.0.1" - sources."npm-registry-fetch-13.1.0" + sources."npm-registry-fetch-13.1.1" sources."npmlog-6.0.1" sources."once-1.4.0" sources."p-cancelable-1.1.0" @@ -115915,7 +116157,7 @@ in sources."caller-path-2.0.0" sources."callsites-2.0.0" sources."caniuse-api-3.0.0" - sources."caniuse-lite-1.0.30001331" + sources."caniuse-lite-1.0.30001332" sources."caseless-0.12.0" sources."chalk-2.4.2" sources."chokidar-2.1.8" @@ -115941,7 +116183,7 @@ in sources."convert-source-map-1.8.0" sources."copy-descriptor-0.1.1" sources."core-js-2.6.12" - (sources."core-js-compat-3.21.1" // { + (sources."core-js-compat-3.22.0" // { dependencies = [ sources."semver-7.0.0" ]; @@ -116006,7 +116248,7 @@ in sources."clone-1.0.4" ]; }) - sources."define-properties-1.1.3" + sources."define-properties-1.1.4" (sources."define-property-0.2.5" // { dependencies = [ (sources."is-accessor-descriptor-0.1.6" // { @@ -116052,7 +116294,7 @@ in sources."duplexer2-0.1.4" sources."ecc-jsbn-0.1.2" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.107" + sources."electron-to-chromium-1.4.110" (sources."elliptic-6.5.4" // { dependencies = [ sources."bn.js-4.12.0" @@ -116062,7 +116304,7 @@ in sources."entities-2.2.0" sources."envinfo-7.8.1" sources."error-ex-1.3.2" - (sources."es-abstract-1.19.4" // { + (sources."es-abstract-1.19.5" // { dependencies = [ sources."object-inspect-1.12.0" ]; @@ -116136,6 +116378,7 @@ in }) sources."has-bigints-1.0.1" sources."has-flag-3.0.0" + sources."has-property-descriptors-1.0.0" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" sources."has-value-1.0.0" @@ -116789,7 +117032,7 @@ in sources."browserslist-4.20.2" sources."buffer-from-1.1.2" sources."callsites-3.1.0" - sources."caniuse-lite-1.0.30001331" + sources."caniuse-lite-1.0.30001332" (sources."chalk-4.1.2" // { dependencies = [ sources."ansi-styles-4.3.0" @@ -116820,7 +117063,7 @@ in sources."domutils-2.8.0" sources."dotenv-7.0.0" sources."dotenv-expand-5.1.0" - sources."electron-to-chromium-1.4.107" + sources."electron-to-chromium-1.4.110" sources."entities-3.0.1" sources."error-ex-1.3.2" sources."escalade-3.1.1" @@ -116969,7 +117212,7 @@ in sources."dashdash-1.14.1" sources."debug-2.6.9" sources."decamelize-1.2.0" - sources."define-properties-1.1.3" + sources."define-properties-1.1.4" sources."delayed-stream-1.0.0" sources."depd-1.1.2" sources."destroy-1.0.4" @@ -117024,6 +117267,7 @@ in sources."har-schema-2.0.0" sources."har-validator-5.1.5" sources."has-1.0.3" + sources."has-property-descriptors-1.0.0" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" sources."hat-0.0.3" @@ -117342,7 +117586,7 @@ in sources."decompress-response-3.3.0" sources."deep-equal-1.1.1" sources."deep-extend-0.6.0" - sources."define-properties-1.1.3" + sources."define-properties-1.1.4" sources."dns-equal-1.0.0" sources."dns-packet-1.3.4" sources."dns-txt-2.0.2" @@ -117362,6 +117606,7 @@ in }) sources."fs.realpath-1.0.0" sources."function-bind-1.1.1" + sources."functions-have-names-1.2.2" sources."get-browser-rtc-1.1.0" sources."get-intrinsic-1.1.1" sources."get-stdin-4.0.1" @@ -117370,6 +117615,7 @@ in sources."has-1.0.3" sources."has-ansi-2.0.0" sources."has-flag-3.0.0" + sources."has-property-descriptors-1.0.0" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" sources."hat-0.0.3" @@ -117493,7 +117739,7 @@ in sources."read-pkg-up-1.0.1" sources."readable-stream-2.3.7" sources."redent-1.0.0" - sources."regexp.prototype.flags-1.4.2" + sources."regexp.prototype.flags-1.4.3" sources."repeating-2.0.1" sources."resolve-1.22.0" sources."restore-cursor-2.0.0" @@ -117603,7 +117849,7 @@ in sources."arraybuffer.slice-0.0.7" sources."asn1-0.2.6" sources."assert-plus-1.0.0" - sources."async-2.6.3" + sources."async-2.6.4" sources."asynckit-0.4.0" sources."aws-sign2-0.7.0" sources."aws4-1.11.0" @@ -118072,7 +118318,7 @@ in sources."has-1.0.3" sources."has-flag-4.0.0" sources."has-unicode-2.0.1" - sources."https-proxy-agent-5.0.0" + sources."https-proxy-agent-5.0.1" sources."ieee754-1.2.1" sources."ignore-5.2.0" sources."inherits-2.0.4" @@ -118204,7 +118450,7 @@ in }) (sources."@pm2/io-5.0.0" // { dependencies = [ - sources."async-2.6.3" + sources."async-2.6.4" sources."eventemitter2-6.4.5" sources."semver-6.3.0" sources."tslib-1.9.3" @@ -118212,7 +118458,7 @@ in }) (sources."@pm2/js-api-0.6.7" // { dependencies = [ - sources."async-2.6.3" + sources."async-2.6.4" sources."eventemitter2-6.4.5" ]; }) @@ -118294,7 +118540,7 @@ in sources."has-flag-4.0.0" sources."http-errors-2.0.0" sources."http-proxy-agent-4.0.1" - sources."https-proxy-agent-5.0.0" + sources."https-proxy-agent-5.0.1" sources."iconv-lite-0.4.24" sources."inflight-1.0.6" sources."inherits-2.0.4" @@ -118394,7 +118640,7 @@ in sources."uuid-3.4.0" (sources."vizion-2.2.1" // { dependencies = [ - sources."async-2.6.3" + sources."async-2.6.4" ]; }) sources."vm2-3.9.9" @@ -118418,10 +118664,10 @@ in pnpm = nodeEnv.buildNodePackage { name = "pnpm"; packageName = "pnpm"; - version = "6.32.6"; + version = "6.32.7"; src = fetchurl { - url = "https://registry.npmjs.org/pnpm/-/pnpm-6.32.6.tgz"; - sha512 = "ucrdCw3F/qjjzoR9+UtLXH1jkDqsbinz+hzSz54WQOOPt/F+9uxm8irrO/mdGkmsy844kAX6vsfS85gZLTg+yA=="; + url = "https://registry.npmjs.org/pnpm/-/pnpm-6.32.7.tgz"; + sha512 = "2LtKMtQ7ffQEIW0lQn6z1WBnz2SPB416DDlyEf3WzOlXCO0BXjLr6kX2vDOTFzKyHWbhjcd45qw3ty3G92fb2Q=="; }; buildInputs = globalBuildInputs; meta = { @@ -119195,7 +119441,7 @@ in sources."has-1.0.3" sources."has-symbols-1.0.3" sources."http-cache-semantics-4.1.0" - sources."https-proxy-agent-5.0.0" + sources."https-proxy-agent-5.0.1" sources."ini-1.3.8" sources."ip-1.1.5" sources."is-docker-2.2.1" @@ -119525,8 +119771,8 @@ in sources."concat-map-0.0.1" sources."cycle-1.0.3" sources."deep-equal-2.0.5" - sources."define-properties-1.1.3" - sources."es-abstract-1.19.4" + sources."define-properties-1.1.4" + sources."es-abstract-1.19.5" sources."es-get-iterator-1.1.2" sources."es-to-primitive-1.2.1" sources."escape-string-regexp-1.0.5" @@ -119534,12 +119780,14 @@ in sources."foreach-2.0.5" sources."fs.realpath-1.0.0" sources."function-bind-1.1.1" + sources."functions-have-names-1.2.2" sources."get-intrinsic-1.1.1" sources."get-symbol-description-1.0.0" sources."glob-7.2.0" sources."has-1.0.3" sources."has-ansi-2.0.0" sources."has-bigints-1.0.1" + sources."has-property-descriptors-1.0.0" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" sources."i-0.3.7" @@ -119579,7 +119827,7 @@ in sources."pkginfo-0.4.1" sources."prompt-0.2.14" sources."read-1.0.7" - sources."regexp.prototype.flags-1.4.2" + sources."regexp.prototype.flags-1.4.3" sources."revalidator-0.1.8" sources."rimraf-2.7.1" sources."semver-5.7.1" @@ -119760,7 +120008,7 @@ in sources."@types/glob-7.2.0" sources."@types/json-schema-7.0.11" sources."@types/minimatch-3.0.5" - sources."@types/node-17.0.23" + sources."@types/node-17.0.24" sources."@types/parse-json-4.0.0" sources."@types/q-1.5.5" sources."@webassemblyjs/ast-1.9.0" @@ -119828,7 +120076,7 @@ in ]; }) sources."assign-symbols-1.0.0" - sources."async-2.6.3" + sources."async-2.6.4" sources."async-each-1.0.3" sources."async-limiter-1.0.1" sources."atob-2.1.2" @@ -119952,7 +120200,7 @@ in sources."camel-case-3.0.0" sources."camelcase-5.3.1" sources."caniuse-api-3.0.0" - sources."caniuse-lite-1.0.30001331" + sources."caniuse-lite-1.0.30001332" sources."case-sensitive-paths-webpack-plugin-2.4.0" sources."caw-2.0.1" sources."chalk-2.4.2" @@ -120036,7 +120284,7 @@ in sources."copy-concurrently-1.0.5" sources."copy-descriptor-0.1.1" sources."core-js-2.6.12" - (sources."core-js-compat-3.21.1" // { + (sources."core-js-compat-3.22.0" // { dependencies = [ sources."semver-7.0.0" ]; @@ -120140,7 +120388,7 @@ in sources."pump-3.0.0" ]; }) - sources."define-properties-1.1.3" + sources."define-properties-1.1.4" sources."define-property-2.0.2" sources."del-4.1.1" sources."depd-1.1.2" @@ -120182,7 +120430,7 @@ in sources."duplexify-3.7.1" sources."ee-first-1.1.1" sources."ejs-2.7.4" - sources."electron-to-chromium-1.4.107" + sources."electron-to-chromium-1.4.110" (sources."elliptic-6.5.4" // { dependencies = [ sources."bn.js-4.12.0" @@ -120213,7 +120461,7 @@ in sources."entities-2.2.0" sources."errno-0.1.8" sources."error-ex-1.3.2" - sources."es-abstract-1.19.4" + sources."es-abstract-1.19.5" sources."es-to-primitive-1.2.1" sources."escalade-3.1.1" sources."escape-html-1.0.3" @@ -120330,6 +120578,7 @@ in sources."fs.realpath-1.0.0" sources."fsevents-2.3.2" sources."function-bind-1.1.1" + sources."functions-have-names-1.2.2" sources."gensync-1.0.0-beta.2" sources."get-caller-file-2.0.5" sources."get-intrinsic-1.1.1" @@ -120366,6 +120615,7 @@ in }) sources."has-cors-1.1.0" sources."has-flag-3.0.0" + sources."has-property-descriptors-1.0.0" sources."has-symbol-support-x-1.4.2" sources."has-symbols-1.0.3" sources."has-to-string-tag-x-1.4.1" @@ -120903,7 +121153,7 @@ in sources."regenerator-runtime-0.13.9" sources."regenerator-transform-0.15.0" sources."regex-not-1.0.2" - sources."regexp.prototype.flags-1.4.2" + sources."regexp.prototype.flags-1.4.3" sources."regexpu-core-5.0.1" sources."registry-auth-token-3.3.2" sources."registry-url-3.1.0" @@ -121500,7 +121750,7 @@ in sources."get-caller-file-2.0.5" sources."html-encoding-sniffer-3.0.0" sources."http-proxy-agent-5.0.0" - sources."https-proxy-agent-5.0.0" + sources."https-proxy-agent-5.0.1" sources."iconv-lite-0.6.3" sources."is-fullwidth-code-point-3.0.0" sources."is-potential-custom-element-name-1.0.1" @@ -121588,7 +121838,7 @@ in sources."@redocly/openapi-core-1.0.0-beta.94" sources."@redocly/react-dropdown-aria-2.0.12" sources."@types/json-schema-7.0.11" - sources."@types/node-14.18.12" + sources."@types/node-14.18.13" sources."ansi-regex-5.0.1" sources."ansi-styles-3.2.1" sources."anymatch-3.1.2" @@ -122359,10 +122609,10 @@ in rollup = nodeEnv.buildNodePackage { name = "rollup"; packageName = "rollup"; - version = "2.70.1"; + version = "2.70.2"; src = fetchurl { - url = "https://registry.npmjs.org/rollup/-/rollup-2.70.1.tgz"; - sha512 = "CRYsI5EuzLbXdxC6RnYhOuRdtz4bhejPMSWjsFLfVM/7w/85n2szZv6yExqUXsBdz5KT8eoubeyDUDjhLHEslA=="; + url = "https://registry.npmjs.org/rollup/-/rollup-2.70.2.tgz"; + sha512 = "EitogNZnfku65I1DD5Mxe8JYRUCy0hkK5X84IlDtUs+O6JRMpRciXTzyCUuX11b5L5pvjH+OmFXiQ3XjabcXgg=="; }; dependencies = [ sources."fsevents-2.3.2" @@ -122593,7 +122843,7 @@ in sources."hosted-git-info-4.1.0" sources."htmlparser2-6.1.0" sources."http-proxy-agent-4.0.1" - sources."https-proxy-agent-5.0.0" + sources."https-proxy-agent-5.0.1" sources."iconv-lite-0.6.3" sources."ieee754-1.2.1" sources."ignore-5.2.0" @@ -123079,10 +123329,10 @@ in serverless = nodeEnv.buildNodePackage { name = "serverless"; packageName = "serverless"; - version = "3.13.0"; + version = "3.14.0"; src = fetchurl { - url = "https://registry.npmjs.org/serverless/-/serverless-3.13.0.tgz"; - sha512 = "IICXx9c2jAZzE+tPiO5E/DZ6J7Lglhg8PkeeYbYNozNtlzPl9rNUoeSyKkWVrZtt7DG+iQZtBaJtu8e/Y2vB2w=="; + url = "https://registry.npmjs.org/serverless/-/serverless-3.14.0.tgz"; + sha512 = "+8B26dyIfsQ9QqDubKJhVRbSjcg0qJNWlFU/fdHYoLn/nUO4u1u+4AYdnUSiku8bDyrdaAjFJp9Zk3cwPCsm9A=="; }; dependencies = [ sources."2-thenable-1.0.0" @@ -123111,7 +123361,7 @@ in sources."@types/json-buffer-3.0.0" sources."@types/keyv-3.1.4" sources."@types/lodash-4.14.181" - sources."@types/node-17.0.23" + sources."@types/node-17.0.24" sources."@types/responselike-1.0.0" sources."adm-zip-0.5.9" sources."agent-base-6.0.2" @@ -123126,7 +123376,7 @@ in sources."file-type-4.4.0" ]; }) - (sources."archiver-5.3.0" // { + (sources."archiver-5.3.1" // { dependencies = [ sources."readable-stream-3.6.0" ]; @@ -123137,7 +123387,7 @@ in sources."async-3.2.3" sources."asynckit-0.4.0" sources."at-least-node-1.0.0" - (sources."aws-sdk-2.1113.0" // { + (sources."aws-sdk-2.1116.0" // { dependencies = [ sources."buffer-4.9.2" sources."ieee754-1.1.13" @@ -123230,7 +123480,7 @@ in sources."type-1.2.0" ]; }) - sources."dayjs-1.11.0" + sources."dayjs-1.11.1" sources."debug-4.3.4" (sources."decompress-4.2.1" // { dependencies = [ @@ -123336,7 +123586,7 @@ in sources."has-symbols-1.0.3" sources."http-cache-semantics-4.1.0" sources."http2-wrapper-1.0.3" - sources."https-proxy-agent-5.0.0" + sources."https-proxy-agent-5.0.1" sources."iconv-lite-0.4.24" sources."ieee754-1.2.1" sources."ignore-5.2.0" @@ -124202,10 +124452,10 @@ in snyk = nodeEnv.buildNodePackage { name = "snyk"; packageName = "snyk"; - version = "1.905.0"; + version = "1.906.0"; src = fetchurl { - url = "https://registry.npmjs.org/snyk/-/snyk-1.905.0.tgz"; - sha512 = "VAUwhWBeWONI/a2ky0ONMizr74zCmEJuMej5zV8XgmowONj6KwQotm0k7kfs3l1ZH5RKHBMWREA65TulcGGObA=="; + url = "https://registry.npmjs.org/snyk/-/snyk-1.906.0.tgz"; + sha512 = "BqHGSWBVx7LuiM9BuPE2zXRCQyAN7wJch4IEm0LFibZcLaoJ+4QWcn6X2ZynRzMCX7UJOntQUQj3q7lTmSaiug=="; }; buildInputs = globalBuildInputs; meta = { @@ -124229,7 +124479,7 @@ in sources."@types/component-emitter-1.2.11" sources."@types/cookie-0.4.1" sources."@types/cors-2.8.12" - sources."@types/node-17.0.23" + sources."@types/node-17.0.24" sources."accepts-1.3.8" sources."base64id-2.0.0" sources."component-emitter-1.3.0" @@ -124585,7 +124835,7 @@ in sources."abstract-leveldown-6.2.3" ]; }) - sources."define-properties-1.1.3" + sources."define-properties-1.1.4" (sources."define-property-2.0.2" // { dependencies = [ sources."isobject-3.0.1" @@ -124607,7 +124857,7 @@ in }) sources."epidemic-broadcast-trees-7.0.0" sources."errno-0.1.8" - sources."es-abstract-1.19.4" + sources."es-abstract-1.19.5" (sources."es-get-iterator-1.1.2" // { dependencies = [ sources."isarray-2.0.5" @@ -124677,6 +124927,7 @@ in sources."fs.realpath-1.0.0" sources."fsevents-1.2.13" sources."function-bind-1.1.1" + sources."functions-have-names-1.2.2" sources."get-intrinsic-1.1.1" sources."get-symbol-description-1.0.0" sources."get-value-2.0.6" @@ -124690,6 +124941,7 @@ in sources."has-ansi-2.0.0" sources."has-bigints-1.0.1" sources."has-network-0.0.1" + sources."has-property-descriptors-1.0.0" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" (sources."has-value-1.0.0" // { @@ -125096,7 +125348,7 @@ in }) sources."regex-cache-0.4.4" sources."regex-not-1.0.2" - sources."regexp.prototype.flags-1.4.2" + sources."regexp.prototype.flags-1.4.3" sources."relative-url-1.0.2" (sources."remark-3.2.3" // { dependencies = [ @@ -125465,7 +125717,7 @@ in sources."async-1.5.2" sources."async-limiter-1.0.1" sources."asynckit-0.4.0" - (sources."aws-sdk-2.1113.0" // { + (sources."aws-sdk-2.1116.0" // { dependencies = [ sources."uuid-3.3.2" ]; @@ -126265,10 +126517,10 @@ in stylelint = nodeEnv.buildNodePackage { name = "stylelint"; packageName = "stylelint"; - version = "14.6.1"; + version = "14.7.0"; src = fetchurl { - url = "https://registry.npmjs.org/stylelint/-/stylelint-14.6.1.tgz"; - sha512 = "FfNdvZUZdzh9KDQxDnO7Opp+prKh8OQVuSW8S13cBtxrooCbm6J6royhUeb++53WPMt04VB+ZbOz/QmzAijs6Q=="; + url = "https://registry.npmjs.org/stylelint/-/stylelint-14.7.0.tgz"; + sha512 = "vAVPAYaHhcexOiuvym0S64UWIIonMKgYz1Eh+SZgXKkKFLL+wwBzzWGH7Bdnk/HLyH3KlrX+tlisFdEG8ik+Lw=="; }; dependencies = [ sources."@babel/code-frame-7.16.7" @@ -126619,16 +126871,16 @@ in svelte-check = nodeEnv.buildNodePackage { name = "svelte-check"; packageName = "svelte-check"; - version = "2.6.0"; + version = "2.7.0"; src = fetchurl { - url = "https://registry.npmjs.org/svelte-check/-/svelte-check-2.6.0.tgz"; - sha512 = "POL3IqLUuGqb9DdvuXQaSTNXYnw/odK4hqW86+2LwGcZTdbUPKBBln7pq74wXmcnRE+12bXMY1CvbcUNa2d5nw=="; + url = "https://registry.npmjs.org/svelte-check/-/svelte-check-2.7.0.tgz"; + sha512 = "GrvG24j0+i8AOm0k0KyJ6Dqc+TAR2yzB7rtS4nljHStunVxCTr/1KYlv4EsOeoqtHLzeWMOd5D2O6nDdP/yw4A=="; }; dependencies = [ sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@types/node-17.0.23" + sources."@types/node-17.0.24" sources."@types/pug-2.0.6" sources."@types/sass-1.43.1" sources."anymatch-3.1.2" @@ -126683,7 +126935,7 @@ in sources."source-map-0.7.3" sources."sourcemap-codec-1.4.8" sources."strip-indent-3.0.0" - sources."svelte-preprocess-4.10.5" + sources."svelte-preprocess-4.10.6" sources."to-regex-range-5.0.1" sources."typescript-4.6.3" sources."wrappy-1.0.2" @@ -126701,10 +126953,10 @@ in svelte-language-server = nodeEnv.buildNodePackage { name = "svelte-language-server"; packageName = "svelte-language-server"; - version = "0.14.25"; + version = "0.14.26"; src = fetchurl { - url = "https://registry.npmjs.org/svelte-language-server/-/svelte-language-server-0.14.25.tgz"; - sha512 = "IdQP7sSFH0UgtFhpFu29GfWPR8obahr/k3ntXsW4AlGxplsnDTd7cLkmtkoNZe+gcXV9ixvcBi7LzR+FY3Nssg=="; + url = "https://registry.npmjs.org/svelte-language-server/-/svelte-language-server-0.14.26.tgz"; + sha512 = "U4pJ0ISruXQ6z+4++szyN2fsapa9/usVb1UlPC0p6sPfWfmQgFlR4125zWsMr0nl1ScsYa8VdEweQlk7mrq6zw=="; }; dependencies = [ sources."@emmetio/abbreviation-2.2.3" @@ -126713,7 +126965,7 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@types/node-17.0.23" + sources."@types/node-17.0.24" sources."@types/pug-2.0.6" sources."@types/sass-1.43.1" sources."anymatch-3.1.2" @@ -126772,8 +127024,8 @@ in sources."sourcemap-codec-1.4.8" sources."strip-indent-3.0.0" sources."svelte-3.47.0" - sources."svelte-preprocess-4.10.5" - sources."svelte2tsx-0.5.8" + sources."svelte-preprocess-4.10.6" + sources."svelte2tsx-0.5.9" sources."to-regex-range-5.0.1" sources."tslib-2.3.1" sources."typescript-4.6.3" @@ -127861,7 +128113,7 @@ in sources."debug-4.3.4" sources."deep-equal-1.1.1" sources."deep-is-0.1.4" - sources."define-properties-1.1.3" + sources."define-properties-1.1.4" sources."diff-4.0.2" sources."emoji-regex-8.0.0" sources."error-ex-1.3.2" @@ -127878,12 +128130,14 @@ in sources."format-0.2.2" sources."fs.realpath-1.0.0" sources."function-bind-1.1.1" + sources."functions-have-names-1.2.2" sources."get-intrinsic-1.1.1" sources."get-stdin-5.0.1" sources."glob-7.2.0" sources."graceful-fs-4.2.10" sources."has-1.0.3" sources."has-flag-4.0.0" + sources."has-property-descriptors-1.0.0" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" sources."hosted-git-info-2.8.9" @@ -127975,7 +128229,7 @@ in sources."strip-bom-3.0.0" ]; }) - sources."regexp.prototype.flags-1.4.2" + sources."regexp.prototype.flags-1.4.3" sources."remark-footnotes-3.0.0" sources."remark-frontmatter-3.0.0" sources."remark-gfm-1.0.0" @@ -128060,14 +128314,16 @@ in }; dependencies = [ sources."call-bind-1.0.2" - sources."define-properties-1.1.3" + sources."define-properties-1.1.4" sources."function-bind-1.1.1" + sources."functions-have-names-1.2.2" sources."get-intrinsic-1.1.1" sources."has-1.0.3" + sources."has-property-descriptors-1.0.0" sources."has-symbols-1.0.3" sources."match-index-1.0.3" sources."object-keys-1.1.1" - sources."regexp.prototype.flags-1.4.2" + sources."regexp.prototype.flags-1.4.3" ]; buildInputs = globalBuildInputs; meta = { @@ -128669,10 +128925,10 @@ in sources."array.prototype.find-2.2.0" sources."call-bind-1.0.2" sources."check-ends-with-period-1.0.1" - sources."define-properties-1.1.3" + sources."define-properties-1.1.4" sources."emoji-regex-6.5.1" sources."end-with-1.0.2" - sources."es-abstract-1.19.4" + sources."es-abstract-1.19.5" sources."es-shim-unscopables-1.0.0" sources."es-to-primitive-1.2.1" sources."function-bind-1.1.1" @@ -128680,6 +128936,7 @@ in sources."get-symbol-description-1.0.0" sources."has-1.0.3" sources."has-bigints-1.0.1" + sources."has-property-descriptors-1.0.0" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" sources."internal-slot-1.0.3" @@ -128782,14 +129039,15 @@ in dependencies = [ sources."array-includes-3.1.4" sources."call-bind-1.0.2" - sources."define-properties-1.1.3" - sources."es-abstract-1.19.4" + sources."define-properties-1.1.4" + sources."es-abstract-1.19.5" sources."es-to-primitive-1.2.1" sources."function-bind-1.1.1" sources."get-intrinsic-1.1.1" sources."get-symbol-description-1.0.0" sources."has-1.0.3" sources."has-bigints-1.0.1" + sources."has-property-descriptors-1.0.0" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" sources."internal-slot-1.0.3" @@ -128881,7 +129139,7 @@ in sources."@types/http-cache-semantics-4.0.1" sources."@types/json-buffer-3.0.0" sources."@types/keyv-3.1.4" - sources."@types/node-17.0.23" + sources."@types/node-17.0.24" sources."@types/responselike-1.0.0" sources."abbrev-1.1.1" sources."abstract-logging-2.0.1" @@ -128933,7 +129191,7 @@ in sources."content-type-1.0.4" sources."cookie-0.4.2" sources."cookie-signature-1.0.6" - sources."core-js-3.21.1" + sources."core-js-3.22.0" sources."core-util-is-1.0.2" sources."cors-2.8.5" sources."css-select-4.3.0" @@ -128946,7 +129204,7 @@ in }) sources."deep-extend-0.6.0" sources."defer-to-connect-2.0.1" - sources."define-properties-1.1.3" + sources."define-properties-1.1.4" sources."delegates-1.0.0" sources."depd-1.1.2" sources."destroy-1.0.4" @@ -128968,7 +129226,7 @@ in }) sources."engine.io-parser-5.0.3" sources."entities-2.2.0" - sources."es-abstract-1.19.4" + sources."es-abstract-1.19.5" sources."es-to-primitive-1.2.1" sources."escape-html-1.0.3" sources."escape-string-regexp-1.0.5" @@ -128997,6 +129255,7 @@ in sources."has-1.0.3" sources."has-bigints-1.0.1" sources."has-flag-4.0.0" + sources."has-property-descriptors-1.0.0" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" sources."has-unicode-2.0.1" @@ -129005,7 +129264,7 @@ in sources."http-errors-1.8.1" sources."http2-wrapper-1.0.3" sources."http_ece-1.1.0" - (sources."https-proxy-agent-5.0.0" // { + (sources."https-proxy-agent-5.0.1" // { dependencies = [ sources."debug-4.3.4" sources."ms-2.1.2" @@ -129224,7 +129483,7 @@ in sources."@types/http-cache-semantics-4.0.1" sources."@types/json-buffer-3.0.0" sources."@types/keyv-3.1.4" - sources."@types/node-17.0.23" + sources."@types/node-17.0.24" sources."@types/responselike-1.0.0" sources."abbrev-1.1.1" sources."abstract-logging-2.0.1" @@ -129276,7 +129535,7 @@ in sources."content-type-1.0.4" sources."cookie-0.4.2" sources."cookie-signature-1.0.6" - sources."core-js-3.21.1" + sources."core-js-3.22.0" sources."core-util-is-1.0.2" sources."cors-2.8.5" sources."css-select-4.3.0" @@ -129289,7 +129548,7 @@ in }) sources."deep-extend-0.6.0" sources."defer-to-connect-2.0.1" - sources."define-properties-1.1.3" + sources."define-properties-1.1.4" sources."delegates-1.0.0" sources."depd-1.1.2" sources."destroy-1.0.4" @@ -129311,7 +129570,7 @@ in }) sources."engine.io-parser-5.0.3" sources."entities-2.2.0" - sources."es-abstract-1.19.4" + sources."es-abstract-1.19.5" sources."es-to-primitive-1.2.1" sources."escape-html-1.0.3" sources."escape-string-regexp-1.0.5" @@ -129340,6 +129599,7 @@ in sources."has-1.0.3" sources."has-bigints-1.0.1" sources."has-flag-4.0.0" + sources."has-property-descriptors-1.0.0" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" sources."has-unicode-2.0.1" @@ -129348,7 +129608,7 @@ in sources."http-errors-1.8.1" sources."http2-wrapper-1.0.3" sources."http_ece-1.1.0" - (sources."https-proxy-agent-5.0.0" // { + (sources."https-proxy-agent-5.0.1" // { dependencies = [ sources."debug-4.3.4" sources."ms-2.1.2" @@ -129640,7 +129900,7 @@ in sources."content-type-1.0.4" sources."cookie-0.4.0" sources."cookie-signature-1.0.6" - sources."core-js-3.21.1" + sources."core-js-3.22.0" sources."core-util-is-1.0.2" sources."css-select-1.2.0" sources."css-what-2.1.3" @@ -130094,10 +130354,10 @@ in thelounge-theme-chord = nodeEnv.buildNodePackage { name = "thelounge-theme-chord"; packageName = "thelounge-theme-chord"; - version = "1.0.1"; + version = "1.1.3"; src = fetchurl { - url = "https://registry.npmjs.org/thelounge-theme-chord/-/thelounge-theme-chord-1.0.1.tgz"; - sha512 = "Y9nr1ZIUAGFyDBRCXmJcZ93pEWdjzfvyFvg+4X0hPC/+mn1QmE5nfx060ExCNRY4uKl1T0muWV89X4B2FAVoHg=="; + url = "https://registry.npmjs.org/thelounge-theme-chord/-/thelounge-theme-chord-1.1.3.tgz"; + sha512 = "1STzJ2NT68+4IxSlV82W3Z8UkVwCZV+qLdDW/z927k4ZKCjP0cWGH7nB2CwiBBJpBm4zAhBjmwa4Ip3jYWZ/eg=="; }; buildInputs = globalBuildInputs; meta = { @@ -130233,7 +130493,7 @@ in sources."@types/http-cache-semantics-4.0.1" sources."@types/json-buffer-3.0.0" sources."@types/keyv-3.1.4" - sources."@types/node-17.0.23" + sources."@types/node-17.0.24" sources."@types/responselike-1.0.0" sources."abbrev-1.1.1" sources."abstract-logging-2.0.1" @@ -130314,7 +130574,7 @@ in sources."content-type-1.0.4" sources."cookie-0.4.0" sources."cookie-signature-1.0.6" - sources."core-js-3.21.1" + sources."core-js-3.22.0" sources."core-util-is-1.0.2" sources."css-select-1.2.0" sources."css-what-2.1.3" @@ -130409,7 +130669,7 @@ in sources."http-signature-1.2.0" sources."http2-wrapper-1.0.3" sources."http_ece-1.1.0" - (sources."https-proxy-agent-5.0.0" // { + (sources."https-proxy-agent-5.0.1" // { dependencies = [ sources."debug-4.3.4" sources."ms-2.1.2" @@ -130700,7 +130960,7 @@ in sources."@types/http-cache-semantics-4.0.1" sources."@types/json-buffer-3.0.0" sources."@types/keyv-3.1.4" - sources."@types/node-17.0.23" + sources."@types/node-17.0.24" sources."@types/responselike-1.0.0" sources."abbrev-1.1.1" sources."abstract-logging-2.0.1" @@ -130781,7 +131041,7 @@ in sources."content-type-1.0.4" sources."cookie-0.4.0" sources."cookie-signature-1.0.6" - sources."core-js-3.21.1" + sources."core-js-3.22.0" sources."core-util-is-1.0.2" sources."css-select-1.2.0" sources."css-what-2.1.3" @@ -130876,7 +131136,7 @@ in sources."http-signature-1.2.0" sources."http2-wrapper-1.0.3" sources."http_ece-1.1.0" - (sources."https-proxy-agent-5.0.0" // { + (sources."https-proxy-agent-5.0.1" // { dependencies = [ sources."debug-4.3.4" sources."ms-2.1.2" @@ -132064,7 +132324,7 @@ in sources."brace-expansion-1.1.11" sources."braces-3.0.2" sources."clean-stack-2.2.0" - sources."commander-9.1.0" + sources."commander-9.2.0" sources."concat-map-0.0.1" sources."crypto-random-string-2.0.0" sources."del-6.0.0" @@ -132196,7 +132456,7 @@ in sources."@types/http-cache-semantics-4.0.1" sources."@types/json-buffer-3.0.0" sources."@types/keyv-3.1.4" - sources."@types/node-16.11.26" + sources."@types/node-16.11.27" sources."@types/responselike-1.0.0" sources."abbrev-1.1.1" sources."accepts-1.3.8" @@ -132255,7 +132515,7 @@ in sources."depd-1.1.2" sources."destroy-1.0.4" sources."diff-5.0.0" - sources."diff2html-3.4.16" + sources."diff2html-3.4.17" sources."dnd-page-scroll-0.0.4" sources."ee-first-1.1.1" sources."emoji-regex-8.0.0" @@ -132284,7 +132544,7 @@ in sources."depd-2.0.0" ]; }) - sources."fecha-4.2.2" + sources."fecha-4.2.3" sources."finalhandler-1.1.2" sources."fn.name-1.1.0" sources."forwarded-0.2.0" @@ -132513,7 +132773,7 @@ in sources."@types/is-empty-1.2.1" sources."@types/js-yaml-4.0.5" sources."@types/ms-0.7.31" - sources."@types/node-17.0.23" + sources."@types/node-17.0.24" sources."@types/supports-color-8.1.1" sources."@types/unist-2.0.6" sources."ansi-regex-6.0.1" @@ -132666,7 +132926,7 @@ in sources."get-caller-file-2.0.5" sources."glob-7.2.0" sources."has-unicode-2.0.1" - sources."https-proxy-agent-5.0.0" + sources."https-proxy-agent-5.0.1" sources."iconv-lite-0.6.3" sources."inflight-1.0.6" sources."inherits-2.0.4" @@ -132826,7 +133086,7 @@ in dependencies = [ sources."@sindresorhus/is-0.14.0" sources."@szmarczak/http-timer-1.1.2" - sources."@types/node-17.0.23" + sources."@types/node-17.0.24" sources."@vercel/build-utils-2.15.1" sources."@vercel/go-1.3.2" sources."@vercel/node-1.14.1" @@ -133324,7 +133584,7 @@ in sha512 = "HZfrlqpVu8N0UkSyjldPsGFpVFByYaDRDMmBvmKwKai2rAsd2vtde2CFnX9rOpmg3pN2vET8j3qtqZvZLzmkjQ=="; }; dependencies = [ - sources."core-js-3.21.1" + sources."core-js-3.22.0" sources."jsonc-parser-3.0.0" sources."regenerator-runtime-0.13.9" sources."request-light-0.5.8" @@ -133413,7 +133673,7 @@ in sources."buffer-from-1.1.2" sources."call-bind-1.0.2" sources."camelcase-6.3.0" - sources."caniuse-lite-1.0.30001331" + sources."caniuse-lite-1.0.30001332" (sources."chalk-4.1.2" // { dependencies = [ sources."supports-color-7.2.0" @@ -133453,7 +133713,7 @@ in sources."domelementtype-2.3.0" sources."domhandler-4.3.1" sources."domutils-2.8.0" - sources."electron-to-chromium-1.4.107" + sources."electron-to-chromium-1.4.110" sources."emoji-regex-8.0.0" sources."emojis-list-3.0.0" sources."enhanced-resolve-5.9.3" @@ -133727,7 +133987,7 @@ in sources."arrify-1.0.1" sources."asn1-0.2.6" sources."assert-plus-1.0.0" - sources."async-2.6.3" + sources."async-2.6.4" sources."asynckit-0.4.0" sources."aws-sign2-0.7.0" sources."aws4-1.11.0" @@ -134028,7 +134288,7 @@ in sources."@starptech/rehype-webparser-0.10.0" sources."@starptech/webparser-0.10.0" sources."@szmarczak/http-timer-1.1.2" - sources."@types/node-17.0.23" + sources."@types/node-17.0.24" sources."@types/unist-2.0.6" sources."@types/vfile-3.0.2" sources."@types/vfile-message-2.0.0" @@ -134989,7 +135249,7 @@ in sources."combined-stream-1.0.8" sources."concat-map-0.0.1" sources."console-control-strings-1.1.0" - sources."core-js-pure-3.21.1" + sources."core-js-pure-3.22.0" sources."cssom-0.4.4" (sources."cssstyle-2.3.0" // { dependencies = [ @@ -135033,7 +135293,7 @@ in sources."has-unicode-2.0.1" sources."html-encoding-sniffer-2.0.1" sources."http-proxy-agent-4.0.1" - sources."https-proxy-agent-5.0.0" + sources."https-proxy-agent-5.0.1" sources."iconv-lite-0.4.24" sources."inflight-1.0.6" sources."inherits-2.0.4" @@ -135186,7 +135446,7 @@ in sources."@sindresorhus/is-0.14.0" sources."@szmarczak/http-timer-1.1.2" sources."@types/minimatch-3.0.5" - sources."@types/node-17.0.23" + sources."@types/node-17.0.24" sources."@types/yauzl-2.9.2" sources."acorn-8.7.0" sources."acorn-jsx-5.3.2" @@ -135278,7 +135538,7 @@ in sources."deepmerge-4.2.2" sources."defaults-1.0.3" sources."defer-to-connect-1.1.3" - sources."define-properties-1.1.3" + sources."define-properties-1.1.4" sources."delayed-stream-1.0.0" sources."doctrine-3.0.0" sources."dom-serializer-1.4.1" @@ -135353,6 +135613,7 @@ in sources."fs.realpath-1.0.0" sources."function-bind-1.1.1" sources."functional-red-black-tree-1.0.1" + sources."functions-have-names-1.2.2" (sources."fx-runner-1.2.0" // { dependencies = [ sources."commander-2.9.0" @@ -135381,6 +135642,7 @@ in sources."har-validator-5.1.5" sources."has-1.0.3" sources."has-flag-4.0.0" + sources."has-property-descriptors-1.0.0" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" sources."has-yarn-2.1.0" @@ -135562,7 +135824,7 @@ in sources."readable-stream-3.6.0" sources."real-require-0.1.0" sources."regenerator-runtime-0.13.9" - sources."regexp.prototype.flags-1.4.2" + sources."regexp.prototype.flags-1.4.3" sources."regexpp-3.2.0" sources."registry-auth-token-4.2.1" sources."registry-url-5.1.0" @@ -135712,7 +135974,7 @@ in sources."@types/eslint-scope-3.7.3" sources."@types/estree-0.0.51" sources."@types/json-schema-7.0.11" - sources."@types/node-17.0.23" + sources."@types/node-17.0.24" sources."@webassemblyjs/ast-1.11.1" sources."@webassemblyjs/floating-point-hex-parser-1.11.1" sources."@webassemblyjs/helper-api-error-1.11.1" @@ -135736,10 +135998,10 @@ in sources."ajv-keywords-3.5.2" sources."browserslist-4.20.2" sources."buffer-from-1.1.2" - sources."caniuse-lite-1.0.30001331" + sources."caniuse-lite-1.0.30001332" sources."chrome-trace-event-1.0.3" sources."commander-2.20.3" - sources."electron-to-chromium-1.4.107" + sources."electron-to-chromium-1.4.110" sources."enhanced-resolve-5.9.3" sources."es-module-lexer-0.9.3" sources."escalade-3.1.1" @@ -135883,7 +136145,7 @@ in sources."@types/http-proxy-1.17.8" sources."@types/json-schema-7.0.11" sources."@types/mime-1.3.2" - sources."@types/node-17.0.23" + sources."@types/node-17.0.24" sources."@types/qs-6.9.7" sources."@types/range-parser-1.2.4" sources."@types/retry-0.12.1" @@ -135898,7 +136160,7 @@ in sources."ansi-html-community-0.0.8" sources."anymatch-3.1.2" sources."array-flatten-2.1.2" - sources."async-2.6.3" + sources."async-2.6.4" sources."balanced-match-1.0.2" sources."batch-0.6.1" sources."binary-extensions-2.2.0" @@ -136197,7 +136459,7 @@ in sources."@protobufjs/pool-1.1.0" sources."@protobufjs/utf8-1.1.0" sources."@types/long-4.0.1" - sources."@types/node-17.0.23" + sources."@types/node-17.0.24" sources."@webtorrent/http-node-1.3.0" sources."addr-to-ip-port-1.5.4" sources."airplay-js-0.3.0" @@ -136777,7 +137039,7 @@ in sources."asn1-0.2.6" sources."assert-plus-1.0.0" sources."astral-regex-1.0.0" - sources."async-2.6.3" + sources."async-2.6.4" sources."asynckit-0.4.0" sources."aws-sign2-0.7.0" sources."aws4-1.11.0" @@ -136856,7 +137118,7 @@ in sources."config-chain-1.1.13" sources."configstore-3.1.5" sources."console-control-strings-1.1.0" - sources."core-js-3.21.1" + sources."core-js-3.22.0" sources."core-util-is-1.0.3" sources."create-error-class-3.0.2" sources."cross-spawn-6.0.5" @@ -136872,7 +137134,7 @@ in sources."deep-extend-0.6.0" sources."default-uid-1.0.0" sources."defaults-1.0.3" - sources."define-properties-1.1.3" + sources."define-properties-1.1.4" sources."delayed-stream-1.0.0" sources."delegates-1.0.0" sources."depd-1.1.2" @@ -136928,6 +137190,7 @@ in sources."fullname-4.0.1" sources."function-bind-1.1.1" sources."gauge-1.2.7" + sources."get-intrinsic-1.1.1" sources."get-stdin-4.0.1" sources."get-stream-4.1.0" sources."getpass-0.1.7" @@ -136959,7 +137222,9 @@ in ]; }) sources."has-flag-3.0.0" + sources."has-property-descriptors-1.0.0" sources."has-symbol-support-x-1.4.2" + sources."has-symbols-1.0.3" sources."has-to-string-tag-x-1.4.1" sources."has-unicode-2.0.1" sources."hosted-git-info-2.8.9" @@ -136971,7 +137236,7 @@ in ]; }) sources."http-signature-1.2.0" - (sources."https-proxy-agent-5.0.0" // { + (sources."https-proxy-agent-5.0.1" // { dependencies = [ sources."debug-4.3.4" sources."ms-2.1.2" @@ -137659,10 +137924,10 @@ in zx = nodeEnv.buildNodePackage { name = "zx"; packageName = "zx"; - version = "6.0.7"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/zx/-/zx-6.0.7.tgz"; - sha512 = "aJTTKN4m9m8wM02yQ4jMOXMp53Ni+r+VDAs0D+bo9l9x9nCMhOocNWeTjoaancHkb7LpNb4oLILp58HzTy0GpQ=="; + url = "https://registry.npmjs.org/zx/-/zx-6.1.0.tgz"; + sha512 = "LcvyN946APdktLPm1ta4wfNiJaDuq1iHOTDwApP69ug5hNYWzMYaVMC5Ek6Ny4nnSLpJ6wdY42feR/2LY5/nVA=="; }; dependencies = [ sources."@nodelib/fs.scandir-2.1.5" @@ -137670,7 +137935,7 @@ in sources."@nodelib/fs.walk-1.2.8" sources."@types/fs-extra-9.0.13" sources."@types/minimist-1.2.2" - sources."@types/node-17.0.23" + sources."@types/node-17.0.24" sources."@types/which-2.0.1" sources."braces-3.0.2" sources."chalk-5.0.1" @@ -137715,7 +137980,7 @@ in sources."universalify-2.0.0" sources."web-streams-polyfill-3.2.1" sources."which-2.0.2" - sources."yaml-1.10.2" + sources."yaml-2.0.1" ]; buildInputs = globalBuildInputs; meta = { diff --git a/pkgs/development/python-modules/django-hijack-admin/default.nix b/pkgs/development/python-modules/django-hijack-admin/default.nix index ee5a47d3787c..ccd285757cbd 100644 --- a/pkgs/development/python-modules/django-hijack-admin/default.nix +++ b/pkgs/development/python-modules/django-hijack-admin/default.nix @@ -34,5 +34,8 @@ buildPythonPackage rec { homepage = "https://github.com/arteria/django-hijack-admin"; license = licenses.mit; maintainers = with maintainers; [ lsix ]; + # may be unmaintained, doesn't work with recent django-hijack: + # https://github.com/django-hijack/django-hijack-admin/issues/46 + broken = true; }; } diff --git a/pkgs/development/python-modules/django-hijack/default.nix b/pkgs/development/python-modules/django-hijack/default.nix index fd9c30a4bc7c..78cce76ca5b0 100644 --- a/pkgs/development/python-modules/django-hijack/default.nix +++ b/pkgs/development/python-modules/django-hijack/default.nix @@ -1,34 +1,34 @@ -{ lib, buildPythonPackage, fetchFromGitHub, python, - django, django_compat, django_nose +{ lib +, fetchPypi +, buildPythonPackage +, django +, django_compat +, pytest-django +, pytestCheckHook }: + buildPythonPackage rec { pname = "django-hijack"; - version = "2.1.10"; + version = "3.2.0"; - # the pypi packages don't include everything required for the tests - src = fetchFromGitHub { - owner = "arteria"; - repo = "django-hijack"; - rev = "v${version}"; - sha256 = "01fwkjdzvw0yx2spwi7zc1yy64ndq1y72bfmk7kxnq5x803m2ak6"; + # the wheel comes with pre-built assets, allowing us to avoid fighting + # with npm/webpack/gettext to build them ourselves. + format = "wheel"; + src = fetchPypi { + inherit version format; + pname = "django_hijack"; + dist = "py3"; + python = "py3"; + sha256 = "1ixn7ppmbq1bgqahwv3z57hk80ql7sxpwl8jms7y8w5z1h91cn86"; }; - checkInputs = [ django_nose ]; propagatedBuildInputs = [ django django_compat ]; - checkPhase = '' - runHook preCheck - - # we have to do a little bit of tinkering to convince the tests to run against the installed package, not the - # source directory - mkdir testbase - pushd testbase - mv ../runtests.py . - ${python.interpreter} runtests.py hijack - popd - - runHook postCheck + checkInputs = [ pytestCheckHook pytest-django ]; + preCheck = '' + export DJANGO_SETTINGS_MODULE='hijack.tests.test_app.settings' ''; + pytestFlagsArray = [ "--pyargs" "hijack" ]; meta = with lib; { description = "Allows superusers to hijack (=login as) and work on behalf of another user"; diff --git a/pkgs/development/python-modules/gb-io/default.nix b/pkgs/development/python-modules/gb-io/default.nix new file mode 100644 index 000000000000..e61248cecf93 --- /dev/null +++ b/pkgs/development/python-modules/gb-io/default.nix @@ -0,0 +1,45 @@ +{ lib +, fetchFromGitHub +, buildPythonPackage +, rustPlatform +, setuptools-rust +}: + +buildPythonPackage rec { + pname = "gb-io"; + version = "0.1.1"; + + src = fetchFromGitHub { + owner = "althonos"; + repo = "gb-io.py"; + rev = "v${version}"; + sha256 = "05fpz11rqqjrb8lc8id6ssv7sni9i1h7x1ra5v5flw9ghpf29ncm"; + }; + + cargoDeps = rustPlatform.fetchCargoTarball { + inherit src sourceRoot; + name = "${pname}-${version}"; + sha256 = "1qh31jysg475f2qc70b3bczmzywmg9987kn2vsmk88h8sx4nnwc5"; + }; + + sourceRoot = "source"; + + nativeBuildInputs = [ setuptools-rust ] ++ (with rustPlatform; [ + cargoSetupHook + rust.cargo + rust.rustc + ]); + + checkPhase = '' + python -m unittest discover + ''; + + pythonImportsCheck = [ "gb_io" ]; + + meta = with lib; { + homepage = "https://github.com/althonos/gb-io.py"; + description = "A Python interface to gb-io, a fast GenBank parser written in Rust"; + license = licenses.mit; + maintainers = with lib.maintainers; [ dlesl ]; + }; +} diff --git a/pkgs/development/python-modules/iso4217/default.nix b/pkgs/development/python-modules/iso4217/default.nix index 12cf40a6764e..8df5f962ce58 100644 --- a/pkgs/development/python-modules/iso4217/default.nix +++ b/pkgs/development/python-modules/iso4217/default.nix @@ -16,7 +16,7 @@ let in buildPythonPackage rec { pname = "iso4217"; - version = "1.8"; + version = "1.9"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -25,7 +25,7 @@ buildPythonPackage rec { owner = "dahlia"; repo = pname; rev = version; - hash = "sha256-L0vx6Aan6D1lusgBh/pcT373ZTxbtWpQnFKB2V0dxlA="; + hash = "sha256-7VrXAP/Qyzy2BDTmFwDlxHvF7HhndJsDMt/qHcsmhzs="; }; propagatedBuildInputs = lib.optionals (pythonOlder "3.9") [ diff --git a/pkgs/development/python-modules/mechanize/default.nix b/pkgs/development/python-modules/mechanize/default.nix index aa309ff33cea..5b0ca1735cbd 100644 --- a/pkgs/development/python-modules/mechanize/default.nix +++ b/pkgs/development/python-modules/mechanize/default.nix @@ -6,11 +6,11 @@ buildPythonPackage rec { pname = "mechanize"; - version = "0.4.7"; + version = "0.4.8"; src = fetchPypi { inherit pname version; - sha256 = "1773a8f5818398e0010e781dc0f942cd88b107a57424c904d545cd827c216809"; + sha256 = "sha256-XoasB3c1fgBusEzSj37Z+BHUjf+mA9OJGsbSuSKA3JE="; }; propagatedBuildInputs = [ html5lib ]; diff --git a/pkgs/development/python-modules/pyefergy/default.nix b/pkgs/development/python-modules/pyefergy/default.nix index 28fb058c52a2..7b7e587feddb 100644 --- a/pkgs/development/python-modules/pyefergy/default.nix +++ b/pkgs/development/python-modules/pyefergy/default.nix @@ -1,11 +1,9 @@ { lib , aiohttp -, aresponses , buildPythonPackage , fetchFromGitHub , iso4217 , pytest-asyncio -, pytestCheckHook , pythonOlder , pytz }: @@ -21,7 +19,7 @@ buildPythonPackage rec { owner = "tkdrob"; repo = pname; rev = version; - sha256 = "sha256-AdoM+PcVoajxhnEfkyN9UuNufChu8XGmZDLNC3mjrps="; + hash = "sha256-AdoM+PcVoajxhnEfkyN9UuNufChu8XGmZDLNC3mjrps="; }; propagatedBuildInputs = [ @@ -30,11 +28,8 @@ buildPythonPackage rec { pytz ]; - checkInputs = [ - aresponses - pytest-asyncio - pytestCheckHook - ]; + # Tests require network access + doCheck =false; pythonImportsCheck = [ "pyefergy" diff --git a/pkgs/development/python-modules/pywlroots/default.nix b/pkgs/development/python-modules/pywlroots/default.nix index b4f23f71d748..e6c64cc33e3f 100644 --- a/pkgs/development/python-modules/pywlroots/default.nix +++ b/pkgs/development/python-modules/pywlroots/default.nix @@ -18,11 +18,11 @@ buildPythonPackage rec { pname = "pywlroots"; - version = "0.15.11"; + version = "0.15.12"; src = fetchPypi { inherit pname version; - sha256 = "sha256-L+59uf3/wqWnmWpqm8RAyIEarbj2Sdwf1Pbweh/z9C8="; + sha256 = "sha256-4uS47SJelkeBkqBcA6xzcTQqAXXSgcVJIZErVdR9ELY="; }; nativeBuildInputs = [ pkg-config ]; diff --git a/pkgs/development/python-modules/qiskit-aer/default.nix b/pkgs/development/python-modules/qiskit-aer/default.nix index d7b195f1debf..7fb67c5449bd 100644 --- a/pkgs/development/python-modules/qiskit-aer/default.nix +++ b/pkgs/development/python-modules/qiskit-aer/default.nix @@ -30,7 +30,7 @@ buildPythonPackage rec { pname = "qiskit-aer"; - version = "0.10.3"; + version = "0.10.4"; format = "pyproject"; disabled = pythonOlder "3.6"; @@ -39,7 +39,7 @@ buildPythonPackage rec { owner = "Qiskit"; repo = "qiskit-aer"; rev = version; - sha256 = "sha256-COvJCj18qRNQJUXKrtlYJQGLjna44IgtNZeNVJJaIHg="; + sha256 = "sha256-mf+Pgw/daFkt1bvqSeYzlO/Sd2F2MtwZcLr+h1u+eb0="; }; postPatch = '' @@ -55,15 +55,14 @@ buildPythonPackage rec { cmake ninja scikit-build - pybind11 ]; buildInputs = [ blas catch2 + nlohmann_json fmt muparserx - nlohmann_json spdlog ]; @@ -71,6 +70,7 @@ buildPythonPackage rec { cvxpy cython # generates some cython files at runtime that need to be cython-ized numpy + pybind11 ]; preBuild = '' @@ -80,19 +80,18 @@ buildPythonPackage rec { dontUseCmakeConfigure = true; # *** Testing *** - pythonImportsCheck = [ "qiskit.providers.aer" "qiskit.providers.aer.backends.qasm_simulator" "qiskit.providers.aer.backends.controller_wrappers" # Checks C++ files built correctly. Only exists if built & moved to output ]; - # Slow tests disabledTests = [ - "test_snapshot" # TODO: these ~30 tests fail on setup due to pytest fixture issues? - "test_initialize_2" # TODO: simulations appear incorrect, off by >10%. - # These tests fail on cvxpy >= 1.1.15 + # these tests don't work with cvxpy >= 1.1.15 "test_clifford" "test_approx_random" + "test_snapshot" # TODO: these ~30 tests fail on setup due to pytest fixture issues? + "test_initialize_2" # TODO: simulations appear incorrect, off by >10%. + "test_pauli_error_2q_gate_from_string_1qonly" # these fail for some builds. Haven't been able to reproduce error locally. "test_kraus_gate_noise" diff --git a/pkgs/development/python-modules/qiskit-finance/default.nix b/pkgs/development/python-modules/qiskit-finance/default.nix index 1fc98361ad09..2c544d5a92ed 100644 --- a/pkgs/development/python-modules/qiskit-finance/default.nix +++ b/pkgs/development/python-modules/qiskit-finance/default.nix @@ -33,6 +33,10 @@ buildPythonPackage rec { sha256 = "sha256-wnto3IqrJFAqIv6QAXe3BB9fvXQXe2fw/iUZe3+198M="; }; + postPatch = '' + substituteInPlace requirements.txt --replace "pandas<1.4.0" "pandas" + ''; + propagatedBuildInputs = [ fastdtw numpy diff --git a/pkgs/development/python-modules/qiskit-ibmq-provider/default.nix b/pkgs/development/python-modules/qiskit-ibmq-provider/default.nix index 0c8f74cf66dd..8f8d510712c9 100644 --- a/pkgs/development/python-modules/qiskit-ibmq-provider/default.nix +++ b/pkgs/development/python-modules/qiskit-ibmq-provider/default.nix @@ -40,7 +40,7 @@ let in buildPythonPackage rec { pname = "qiskit-ibmq-provider"; - version = "0.18.3"; + version = "0.19.0"; disabled = pythonOlder "3.6"; @@ -48,7 +48,7 @@ buildPythonPackage rec { owner = "Qiskit"; repo = pname; rev = version; - sha256 = "1n1w1lnq2xw94hhhn6kdvw8dqlxk5fxwpm8ng31gxbp1s3qgni17"; + sha256 = "sha256-ODu8OgGpzlMjRX7ebMu4DXKj6jUyohCq4Hb8aV5eWIU="; }; propagatedBuildInputs = [ @@ -58,6 +58,7 @@ buildPythonPackage rec { requests requests_ntlm websocket-client + websockets ] ++ lib.optionals withVisualization visualizationPackages; postPatch = '' @@ -72,12 +73,12 @@ buildPythonPackage rec { pproxy qiskit-aer vcrpy - websockets ] ++ lib.optionals (!withVisualization) visualizationPackages; pythonImportsCheck = [ "qiskit.providers.ibmq" ]; - # These disabled tests require internet connection, aren't skipped elsewhere disabledTests = [ + "test_coder_operators" # fails for some reason on nixos-21.05+ + # These disabled tests require internet connection, aren't skipped elsewhere "test_old_api_url" "test_non_auth_url" "test_non_auth_url_with_hub" diff --git a/pkgs/development/python-modules/qiskit-nature/default.nix b/pkgs/development/python-modules/qiskit-nature/default.nix index 2693daa6ead0..7b652c507223 100644 --- a/pkgs/development/python-modules/qiskit-nature/default.nix +++ b/pkgs/development/python-modules/qiskit-nature/default.nix @@ -21,15 +21,15 @@ buildPythonPackage rec { pname = "qiskit-nature"; - version = "0.3.1"; + version = "0.3.2"; disabled = pythonOlder "3.6"; src = fetchFromGitHub { - owner = "qiskit"; + owner = "Qiskit"; repo = pname; rev = version; - sha256 = "sha256-EkYppEOQGmRIxKC4ArXZb0b+p1gPGnP6AU8LbEbOpPo="; + sha256 = "sha256-BXUVRZ8X3OJiRexNXZsnvp+Yh8ARNYohYH49/IYFYM0="; }; propagatedBuildInputs = [ @@ -56,7 +56,7 @@ buildPythonPackage rec { ]; disabledTests = [ - "test_two_qubit_reduction" # unsure of failure reason. Might be related to recent cvxpy update? + "test_two_qubit_reduction" # failure cause unclear ]; meta = with lib; { diff --git a/pkgs/development/python-modules/qiskit-terra/default.nix b/pkgs/development/python-modules/qiskit-terra/default.nix index 1a5aa516c52d..8289e3e24ec2 100644 --- a/pkgs/development/python-modules/qiskit-terra/default.nix +++ b/pkgs/development/python-modules/qiskit-terra/default.nix @@ -2,8 +2,8 @@ , pythonOlder , buildPythonPackage , fetchFromGitHub +, rustPlatform # Python requirements -, cython , dill , numpy , networkx @@ -14,6 +14,7 @@ , retworkx , scipy , scikit-quant ? null +, setuptools-rust , stevedore , symengine , sympy @@ -54,18 +55,24 @@ in buildPythonPackage rec { pname = "qiskit-terra"; - version = "0.19.2"; + version = "0.20.0"; - disabled = pythonOlder "3.6"; + disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "qiskit"; repo = pname; rev = version; - sha256 = "sha256-P2QTdt1H9I5T/ONNoo7XEVnoHweOdq3p2NH3l3/yAn4="; + sha256 = "sha256-/t87IgazpJlfd8NT2Pkn5b6/Ut104DcJEFCubQ/bBiw="; }; - nativeBuildInputs = [ cython ]; + nativeBuildInputs = [ setuptools-rust ] ++ (with rustPlatform; [ rust.rustc rust.cargo cargoSetupHook ]); + + cargoDeps = rustPlatform.fetchCargoTarball { + inherit src; + name = "${pname}-${version}"; + sha256 = "sha256-tNiBXn32g1PTuTmKNXSac+4PLSc1Ao9n+oAMfvVYR30="; + }; propagatedBuildInputs = [ dill @@ -96,7 +103,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "qiskit" - "qiskit.transpiler.passes.routing.cython.stochastic_swap.swap_trial" + "qiskit.pulse" ]; disabledTestPaths = [ @@ -109,7 +116,10 @@ buildPythonPackage rec { ]; pytestFlagsArray = [ "--durations=10" ]; disabledTests = [ - "TestUnitarySynthesisPlugin" # uses unittest mocks for transpiler.run(), seems incompatible somehow w/ pytest infrastructure + "TestUnitarySynthesisPlugin" # use unittest mocks for transpiler.run(), seems incompatible somehow w/ pytest infrastructure + # matplotlib tests seems to fail non-deterministically + "TestMatplotlibDrawer" + "TestGraphMatplotlibDrawer" "test_copy" # assertNotIn doesn't seem to work as expected w/ pytest vs unittest # Flaky tests @@ -153,18 +163,14 @@ buildPythonPackage rec { "test_two_qubit_weyl_decomposition_ab0" "test_sample_counts_memory_superposition" "test_piecewise_polynomial_function" - "test_vqe_qasm" "test_piecewise_chebyshev_mutability" "test_bit_conditional_no_cregbundle" "test_gradient_wrapper2" "test_two_qubit_weyl_decomposition_abmb" "test_two_qubit_weyl_decomposition_abb" - "test_two_qubit_weyl_decomposition_aac" - "test_aqc" - "test_gradient" - "test_piecewise_polynomial_rotations_mutability" - "test_confidence_intervals_1" - "test_trotter_from_bound" + "test_vqe_qasm" + "test_dag_from_networkx" + "test_defaults_to_dict_46" ]; # Moves tests to $PACKAGEDIR/test. They can't be run from /build because of finding diff --git a/pkgs/development/python-modules/qiskit/default.nix b/pkgs/development/python-modules/qiskit/default.nix index aa81ba00a8ca..74d227e22e90 100644 --- a/pkgs/development/python-modules/qiskit/default.nix +++ b/pkgs/development/python-modules/qiskit/default.nix @@ -28,15 +28,15 @@ in buildPythonPackage rec { pname = "qiskit"; # NOTE: This version denotes a specific set of subpackages. See https://qiskit.org/documentation/release_notes.html#version-history - version = "0.34.2"; + version = "0.36.0"; disabled = pythonOlder "3.6"; src = fetchFromGitHub { - owner = "qiskit"; + owner = "Qiskit"; repo = "qiskit"; rev = version; - sha256 = "sha256-weL65IQs6vbjJiPJdaizU0ST6u9qDYb0LhTwC6yAdhY="; + sha256 = "sha256-zTdvROru56/HNpoHKSVe3pQZeDSMFmaTCUAr1FOaE5A="; }; propagatedBuildInputs = [ diff --git a/pkgs/development/python-modules/symengine/default.nix b/pkgs/development/python-modules/symengine/default.nix index db0f01ae51f0..ea85fc23008a 100644 --- a/pkgs/development/python-modules/symengine/default.nix +++ b/pkgs/development/python-modules/symengine/default.nix @@ -1,5 +1,6 @@ { lib , buildPythonPackage +, fetchpatch , fetchFromGitHub , cython , cmake @@ -12,6 +13,7 @@ buildPythonPackage rec { pname = "symengine"; version = "0.9.2"; + format = "setuptools"; src = fetchFromGitHub { owner = "symengine"; @@ -20,13 +22,18 @@ buildPythonPackage rec { sha256 = "sha256-ZHplYEG97foy/unOdSokFFkDl4LK5TI4kypHSLpcCM4="; }; + patches = [ + (fetchpatch { + # setuptools 61 compat + url = "https://github.com/symengine/symengine.py/commit/987e665e71cf92d1b021d7d573a1b9733408eecf.patch"; + hash = "sha256-2QbNdw/lKYRIRpOU5BiwF2kK+5Lh2j/Q82MKUIvl0+c="; + }) + ]; + postConfigure = '' substituteInPlace setup.py \ --replace "\"cmake\"" "\"${cmake}/bin/cmake\"" \ --replace "'cython>=0.29.24'" "'cython'" - - substituteInPlace cmake/FindCython.cmake \ - --replace "SET(CYTHON_BIN cython" "SET(CYTHON_BIN ${cython}/bin/cython" ''; nativeBuildUnputs = [ cmake ]; diff --git a/pkgs/os-specific/linux/libbpf/default.nix b/pkgs/os-specific/linux/libbpf/default.nix index 8e6b9fa0663a..cb2f4611fde0 100644 --- a/pkgs/os-specific/linux/libbpf/default.nix +++ b/pkgs/os-specific/linux/libbpf/default.nix @@ -8,8 +8,6 @@ , nixosTests }: -with builtins; - stdenv.mkDerivation rec { pname = "libbpf"; version = "0.7.0"; diff --git a/pkgs/os-specific/linux/rasdaemon/default.nix b/pkgs/os-specific/linux/rasdaemon/default.nix index 22ca59bff536..cccd91fff8e1 100644 --- a/pkgs/os-specific/linux/rasdaemon/default.nix +++ b/pkgs/os-specific/linux/rasdaemon/default.nix @@ -7,13 +7,13 @@ stdenv.mkDerivation rec { pname = "rasdaemon"; - version = "0.6.7"; + version = "0.6.8"; src = fetchFromGitHub { owner = "mchehab"; repo = "rasdaemon"; rev = "v${version}"; - sha256 = "sha256-vyUDwqDe+HD4mka6smdQuVSM5U9uMv/TrfHkyqVJMIo="; + sha256 = "sha256-gcwoc9lIJyqUiCSAHf1U8geLG58CxzjMFYFl8moaA2Q="; }; nativeBuildInputs = [ autoreconfHook ]; diff --git a/pkgs/servers/soft-serve/default.nix b/pkgs/servers/soft-serve/default.nix index 582603a7a76c..0d4c58d2b86a 100644 --- a/pkgs/servers/soft-serve/default.nix +++ b/pkgs/servers/soft-serve/default.nix @@ -2,16 +2,16 @@ buildGoModule rec { pname = "soft-serve"; - version = "0.2.3"; + version = "0.3.0"; src = fetchFromGitHub { owner = "charmbracelet"; repo = "soft-serve"; rev = "v${version}"; - sha256 = "sha256-IaSXkbOBuvC7BhM+rGGYMcvk6jjKVDHH+lSs3y2UM40="; + sha256 = "sha256-FtWlE2CmUx9ric4yFItj7lc57259/BVINyUhSuBNapo="; }; - vendorSha256 = "sha256-m5xwxs6XvmPffDX9dkkEG0/LdlDDm6Eq9CC0tVdauVI="; + vendorSha256 = "sha256-MwbtrtfvQ1HimLjUCmk8Twr4tpfP4eFBUlDP15IZKto="; doCheck = false; diff --git a/pkgs/servers/web-apps/discourse/default.nix b/pkgs/servers/web-apps/discourse/default.nix index b30ee9034b0d..19860ad7886d 100644 --- a/pkgs/servers/web-apps/discourse/default.nix +++ b/pkgs/servers/web-apps/discourse/default.nix @@ -11,13 +11,13 @@ }@args: let - version = "2.9.0.beta3"; + version = "2.9.0.beta4"; src = fetchFromGitHub { owner = "discourse"; repo = "discourse"; rev = "v${version}"; - sha256 = "sha256-+VYHGkISY4PFScUzk6eJ7eN9cPTjNEww/kusKcufMI0="; + sha256 = "sha256-DpUEBGLgjcroVzdDG8/nGvC+ym19ZkGa7qvHKZZ1mH4="; }; runtimeDeps = [ @@ -161,7 +161,7 @@ let yarnOfflineCache = fetchYarnDeps { yarnLock = src + "/app/assets/javascripts/yarn.lock"; - sha256 = "0xx5gncvb2mwpwwbgi4y320ji143i38vmz946xjcx5z3jxxjkymz"; + sha256 = "1l4nfc14cm42lkilsawfhdcnv1ln7m7bpan9a804abv4hwrs3f52"; }; assets = stdenv.mkDerivation { diff --git a/pkgs/servers/web-apps/discourse/plugins/discourse-assign/default.nix b/pkgs/servers/web-apps/discourse/plugins/discourse-assign/default.nix index 7fa373106f7c..3cf491a2f42d 100644 --- a/pkgs/servers/web-apps/discourse/plugins/discourse-assign/default.nix +++ b/pkgs/servers/web-apps/discourse/plugins/discourse-assign/default.nix @@ -5,8 +5,8 @@ mkDiscoursePlugin { src = fetchFromGitHub { owner = "discourse"; repo = "discourse-assign"; - rev = "d8d2dc950a0512cc53885afbd1da26ea38fdf1e1"; - sha256 = "sha256-FRq/zL+Hiu/Pd/8HDOmFW8Uoovw9so1gKbM4by3jSYg="; + rev = "7a854fe5046783bcff6cc24fca818056e1b9414a"; + sha256 = "sha256-SGGwj0V4mTXD33tLnH76tQD/f6IvDbacq23XbaRdLsI="; }; meta = with lib; { homepage = "https://github.com/discourse/discourse-docs"; diff --git a/pkgs/servers/web-apps/discourse/plugins/discourse-calendar/default.nix b/pkgs/servers/web-apps/discourse/plugins/discourse-calendar/default.nix index 15d7abfec19e..d935b37b5a11 100644 --- a/pkgs/servers/web-apps/discourse/plugins/discourse-calendar/default.nix +++ b/pkgs/servers/web-apps/discourse/plugins/discourse-calendar/default.nix @@ -6,8 +6,8 @@ mkDiscoursePlugin { src = fetchFromGitHub { owner = "discourse"; repo = "discourse-calendar"; - rev = "c44d348c7739f08fe026f1d67dbd902cb2f4d590"; - sha256 = "sha256-+876F3/nGhqtwQn2D/v3WzqchemsocnneiYYFmjqGGo="; + rev = "eb8bc3e864c6f735fa5a005e854f8c37411b6288"; + sha256 = "sha256-fc3oQj2NqaTfmokJUryd2oBd/eVAcNOMMT0ZT45bU28="; }; meta = with lib; { homepage = "https://github.com/discourse/discourse-calendar"; diff --git a/pkgs/servers/web-apps/discourse/plugins/discourse-canned-replies/default.nix b/pkgs/servers/web-apps/discourse/plugins/discourse-canned-replies/default.nix index e41574a2ca7e..07e58652d9fe 100644 --- a/pkgs/servers/web-apps/discourse/plugins/discourse-canned-replies/default.nix +++ b/pkgs/servers/web-apps/discourse/plugins/discourse-canned-replies/default.nix @@ -5,8 +5,8 @@ mkDiscoursePlugin { src = fetchFromGitHub { owner = "discourse"; repo = "discourse-canned-replies"; - rev = "f9d1d87e352c0d1c41c1a8e4ef26b7766e39d2f1"; - sha256 = "sha256-luFPwcnH6faTJV7Bhx9nnaxkK5PHI9vqhHrFO0m49mg="; + rev = "18af3367d9eda8842e8ff0de96c90aa2f0bdb0a3"; + sha256 = "sha256-v8QOR0/9RUJ1zFmzhKYe/GEev3Jl4AlXWkQyuquyuJY="; }; meta = with lib; { homepage = "https://github.com/discourse/discourse-canned-replies"; diff --git a/pkgs/servers/web-apps/discourse/plugins/discourse-chat-integration/default.nix b/pkgs/servers/web-apps/discourse/plugins/discourse-chat-integration/default.nix index e279c12ce70b..f96348e6f273 100644 --- a/pkgs/servers/web-apps/discourse/plugins/discourse-chat-integration/default.nix +++ b/pkgs/servers/web-apps/discourse/plugins/discourse-chat-integration/default.nix @@ -5,8 +5,8 @@ mkDiscoursePlugin { src = fetchFromGitHub { owner = "discourse"; repo = "discourse-chat-integration"; - rev = "0c367e19ca4c06ace067f1268c1a1a64d8da4253"; - sha256 = "sha256-X7bkAjINzKTrWcVd9MPl51Vy6pOWp378ACJJTSihQRc="; + rev = "eaa7de8c2b659d107c2b16ac0d469592aff79d7c"; + sha256 = "sha256-7anXDbltMBM22dBnE5FFwNk7IJEUFZgDzR4Q/AYn6ng="; }; meta = with lib; { homepage = "https://github.com/discourse/discourse-chat-integration"; diff --git a/pkgs/servers/web-apps/discourse/plugins/discourse-checklist/default.nix b/pkgs/servers/web-apps/discourse/plugins/discourse-checklist/default.nix index c5958589fd19..d1bcd57fc66a 100644 --- a/pkgs/servers/web-apps/discourse/plugins/discourse-checklist/default.nix +++ b/pkgs/servers/web-apps/discourse/plugins/discourse-checklist/default.nix @@ -5,8 +5,8 @@ mkDiscoursePlugin { src = fetchFromGitHub { owner = "discourse"; repo = "discourse-checklist"; - rev = "c4f3df0d825082eeaaa3fd9fceba0258080aa6fa"; - sha256 = "sha256-VGKDpu8tohMgSjMoTzhVnPLHMfLsXOejXL3bmQQ3jWM="; + rev = "68941e370e132c17fc2aa21ac40c033df72c9771"; + sha256 = "sha256-jJM/01fKxc1RBcSPt9/KDxMkBMH2AOp9dINxSneNhAs="; }; meta = with lib; { homepage = "https://github.com/discourse/discourse-checklist"; diff --git a/pkgs/servers/web-apps/discourse/plugins/discourse-data-explorer/default.nix b/pkgs/servers/web-apps/discourse/plugins/discourse-data-explorer/default.nix index 74c6b3eebb4f..8073d89df817 100644 --- a/pkgs/servers/web-apps/discourse/plugins/discourse-data-explorer/default.nix +++ b/pkgs/servers/web-apps/discourse/plugins/discourse-data-explorer/default.nix @@ -5,8 +5,8 @@ mkDiscoursePlugin { src = fetchFromGitHub { owner = "discourse"; repo = "discourse-data-explorer"; - rev = "e7c19ac107dcd37618c7ac7b98530e99c7fe31db"; - sha256 = "sha256-w7IzniVlSArmR58Xk9U4MLolV61w/7t1C0nMqERM9J4="; + rev = "baaac7ce671e716559329ae756988cc395d7079e"; + sha256 = "sha256-bUCRfbKXdNbiJnU3xPMhG3s8kH7wQQoS2kV7ScHGOMQ="; }; meta = with lib; { homepage = "https://github.com/discourse/discourse-data-explorer"; diff --git a/pkgs/servers/web-apps/discourse/plugins/discourse-docs/default.nix b/pkgs/servers/web-apps/discourse/plugins/discourse-docs/default.nix index b006f62dc545..071b1eb5dd9b 100644 --- a/pkgs/servers/web-apps/discourse/plugins/discourse-docs/default.nix +++ b/pkgs/servers/web-apps/discourse/plugins/discourse-docs/default.nix @@ -5,8 +5,8 @@ mkDiscoursePlugin { src = fetchFromGitHub { owner = "discourse"; repo = "discourse-docs"; - rev = "e517e69c09479654c197b1d620e6e7a5e69edca7"; - sha256 = "sha256-fbkuFWyY25V3B32a7NYtTcOlBot18JZYRth6ainHDQo="; + rev = "72b2e87e84221588bc2ff08961a492044f1f8237"; + sha256 = "sha256-moR4TJYffh6JwC7oxeS4+Cyngi88Ht2eTbSEJJ4JKdY="; }; meta = with lib; { homepage = "https://github.com/discourse/discourse-docs"; diff --git a/pkgs/servers/web-apps/discourse/plugins/discourse-github/Gemfile.lock b/pkgs/servers/web-apps/discourse/plugins/discourse-github/Gemfile.lock index a569496b5a89..ba0516980977 100644 --- a/pkgs/servers/web-apps/discourse/plugins/discourse-github/Gemfile.lock +++ b/pkgs/servers/web-apps/discourse/plugins/discourse-github/Gemfile.lock @@ -30,7 +30,7 @@ GEM octokit (4.22.0) faraday (>= 0.9) sawyer (~> 0.8.0, >= 0.5.3) - public_suffix (4.0.6) + public_suffix (4.0.7) ruby2_keywords (0.0.5) sawyer (0.8.2) addressable (>= 2.3.5) diff --git a/pkgs/servers/web-apps/discourse/plugins/discourse-github/default.nix b/pkgs/servers/web-apps/discourse/plugins/discourse-github/default.nix index 8970f8560516..f9ccaed863ef 100644 --- a/pkgs/servers/web-apps/discourse/plugins/discourse-github/default.nix +++ b/pkgs/servers/web-apps/discourse/plugins/discourse-github/default.nix @@ -6,8 +6,8 @@ mkDiscoursePlugin { src = fetchFromGitHub { owner = "discourse"; repo = "discourse-github"; - rev = "810105186dbe8441852e2df9a9fc2ae8b8516ec6"; - sha256 = "sha256-96sqnvtEmm7sxFPAk6iDiYm7XChaQV+6HXZt/m5BtsI="; + rev = "36cbacdd32916435391b4700c024074da3bcbe74"; + sha256 = "sha256-R4Kp7NFMIXYDcAZlOUdhNdN/mmQMgXlLFolzo2OZahw="; }; meta = with lib; { homepage = "https://github.com/discourse/discourse-github"; diff --git a/pkgs/servers/web-apps/discourse/plugins/discourse-github/gemset.nix b/pkgs/servers/web-apps/discourse/plugins/discourse-github/gemset.nix index 62b54dbb0b0c..7bab2858b652 100644 --- a/pkgs/servers/web-apps/discourse/plugins/discourse-github/gemset.nix +++ b/pkgs/servers/web-apps/discourse/plugins/discourse-github/gemset.nix @@ -148,10 +148,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1xqcgkl7bwws1qrlnmxgh8g4g9m10vg60bhlw40fplninb3ng6d9"; + sha256 = "1f3knlwfwm05sfbaihrxm4g772b79032q14c16q4b38z8bi63qcb"; type = "gem"; }; - version = "4.0.6"; + version = "4.0.7"; }; ruby2_keywords = { groups = ["default"]; diff --git a/pkgs/servers/web-apps/discourse/plugins/discourse-math/default.nix b/pkgs/servers/web-apps/discourse/plugins/discourse-math/default.nix index 85475db73fb1..d65087cca737 100644 --- a/pkgs/servers/web-apps/discourse/plugins/discourse-math/default.nix +++ b/pkgs/servers/web-apps/discourse/plugins/discourse-math/default.nix @@ -5,8 +5,8 @@ mkDiscoursePlugin { src = fetchFromGitHub { owner = "discourse"; repo = "discourse-math"; - rev = "447c4811ea44d006da98dcbb6dfde142ada53567"; - sha256 = "sha256-iq3wWhYhOnh+QgChEsSIlRzDmD8kXbjNerVGfuNF7uY="; + rev = "b875a21b4d5225b61cb525531d30eaf852db6237"; + sha256 = "sha256-UKba9ZaVjIxOqUYdl00Z2sLt3Y+exBX7MJax8EzXB1Q="; }; meta = with lib; { homepage = "https://github.com/discourse/discourse-math"; diff --git a/pkgs/servers/web-apps/discourse/plugins/discourse-openid-connect/default.nix b/pkgs/servers/web-apps/discourse/plugins/discourse-openid-connect/default.nix index d6282cd8c62e..e3c52319d279 100644 --- a/pkgs/servers/web-apps/discourse/plugins/discourse-openid-connect/default.nix +++ b/pkgs/servers/web-apps/discourse/plugins/discourse-openid-connect/default.nix @@ -6,8 +6,8 @@ mkDiscoursePlugin { src = fetchFromGitHub { owner = "discourse"; repo = "discourse-openid-connect"; - rev = "dfcdc38d77aab4010cfe032cdd4155b4ae60ed14"; - sha256 = "sha256-I2cuyhA4jhhz+pJ5692/lRj6YRViP//HsoZOZjtu/e4="; + rev = "e897702139b9c0dca40b9385427ba8bad0e1eae9"; + sha256 = "sha256-miosXf4to60BqGsbXYEL37G38uVHrz2/2Pizn0Rlp2o="; }; meta = with lib; { homepage = "https://github.com/discourse/discourse-openid-connect"; diff --git a/pkgs/servers/web-apps/discourse/plugins/discourse-prometheus/default.nix b/pkgs/servers/web-apps/discourse/plugins/discourse-prometheus/default.nix index a1e540f7fd0d..e5d7259099ad 100644 --- a/pkgs/servers/web-apps/discourse/plugins/discourse-prometheus/default.nix +++ b/pkgs/servers/web-apps/discourse/plugins/discourse-prometheus/default.nix @@ -6,8 +6,8 @@ src = fetchFromGitHub { owner = "discourse"; repo = "discourse-prometheus"; - rev = "834f8683dfae475483c50bdeec979a5fa4a1cf04"; - sha256 = "sha256-M7NnXUib/iKxQT+UTqicmrZONR/Z+oXl46BNgYf1SQM="; + rev = "43536e4a4977718972a673dc2475ae07df9a0a45"; + sha256 = "sha256-7sQldPLY7YW/sr4WBHWxJVvhvRK0LwO3+52HAIJFvY4="; }; patches = [ diff --git a/pkgs/servers/web-apps/discourse/plugins/discourse-saved-searches/default.nix b/pkgs/servers/web-apps/discourse/plugins/discourse-saved-searches/default.nix index 84d801b12fa9..682032bb9d0f 100644 --- a/pkgs/servers/web-apps/discourse/plugins/discourse-saved-searches/default.nix +++ b/pkgs/servers/web-apps/discourse/plugins/discourse-saved-searches/default.nix @@ -5,8 +5,8 @@ mkDiscoursePlugin { src = fetchFromGitHub { owner = "discourse"; repo = "discourse-saved-searches"; - rev = "a7eafe288a2f93aa8cc7cf59d8173adc70c8f48a"; - sha256 = "sha256-Zli+tzNxLIwp5sZome+pXqvpsvqM/kXRbe73QtH0rTc="; + rev = "f008809ee3bf3a8a5c11daff0807d59ab4336a0c"; + sha256 = "sha256-/OyFL/9fLdVpsFQIlnjQ6ser6hdEs4X434nAaqKCTUE="; }; meta = with lib; { homepage = "https://github.com/discourse/discourse-saved-searches"; diff --git a/pkgs/servers/web-apps/discourse/plugins/discourse-solved/default.nix b/pkgs/servers/web-apps/discourse/plugins/discourse-solved/default.nix index e7b0adbb826b..ebec54bc6e5d 100644 --- a/pkgs/servers/web-apps/discourse/plugins/discourse-solved/default.nix +++ b/pkgs/servers/web-apps/discourse/plugins/discourse-solved/default.nix @@ -5,8 +5,8 @@ mkDiscoursePlugin { src = fetchFromGitHub { owner = "discourse"; repo = "discourse-solved"; - rev = "9aba2bd6b7efbea3e46158fd0b1ce96a975379d7"; - sha256 = "sha256-RmYsDCDuVxXX91haljP6Jbx3s4Nl2RV6UU3PBQ/Xi7Y="; + rev = "17ba805a06ddfc27c6435eb20c0f8466f1708be8"; + sha256 = "sha256-G48c1khRVnCPXA8ujpDmEzL10uLC9e2sYVLVEXWIk0s="; }; meta = with lib; { homepage = "https://github.com/discourse/discourse-solved"; diff --git a/pkgs/servers/web-apps/discourse/plugins/discourse-spoiler-alert/default.nix b/pkgs/servers/web-apps/discourse/plugins/discourse-spoiler-alert/default.nix index 63cdeefd235e..b4f7e000fd64 100644 --- a/pkgs/servers/web-apps/discourse/plugins/discourse-spoiler-alert/default.nix +++ b/pkgs/servers/web-apps/discourse/plugins/discourse-spoiler-alert/default.nix @@ -5,8 +5,8 @@ mkDiscoursePlugin { src = fetchFromGitHub { owner = "discourse"; repo = "discourse-spoiler-alert"; - rev = "7382d74af57f4476004014598135aec530b0342f"; - sha256 = "sha256-YyCG1bAfjJ9/itHlsZTBQgkRjgPKNKPzJopnP/Z7/NA="; + rev = "4a07519cf9d7ac713f5e21ba770adb127524a22d"; + sha256 = "sha256-pMTXdjqI4GrLNfZMbyPdeW+Jwieh6I4O/pT2Yyf4ltA="; }; meta = with lib; { homepage = "https://github.com/discourse/discourse-spoiler-alert"; diff --git a/pkgs/servers/web-apps/discourse/plugins/discourse-voting/default.nix b/pkgs/servers/web-apps/discourse/plugins/discourse-voting/default.nix index f2a97d9e44d6..4d0f71fdd7f6 100644 --- a/pkgs/servers/web-apps/discourse/plugins/discourse-voting/default.nix +++ b/pkgs/servers/web-apps/discourse/plugins/discourse-voting/default.nix @@ -5,8 +5,8 @@ mkDiscoursePlugin { src = fetchFromGitHub { owner = "discourse"; repo = "discourse-voting"; - rev = "2de1fe5df1a5c25ad1e0e31e8d28adca315d9092"; - sha256 = "sha256-XxrRPIc9F78wHF6p1qqUZhkPqKWSebqGZn9P5lNTDeo="; + rev = "1da667721269ca01ef53c35ec0470486b490e72c"; + sha256 = "sha256-VCMv6YWHY24v9KyO4q0YSSYK+mszOVqP46slOh8okvY="; }; meta = with lib; { homepage = "https://github.com/discourse/discourse-voting"; diff --git a/pkgs/servers/web-apps/discourse/plugins/discourse-yearly-review/default.nix b/pkgs/servers/web-apps/discourse/plugins/discourse-yearly-review/default.nix index 62e943537a6c..e38aa7f83571 100644 --- a/pkgs/servers/web-apps/discourse/plugins/discourse-yearly-review/default.nix +++ b/pkgs/servers/web-apps/discourse/plugins/discourse-yearly-review/default.nix @@ -5,8 +5,8 @@ mkDiscoursePlugin { src = fetchFromGitHub { owner = "discourse"; repo = "discourse-yearly-review"; - rev = "f2224b38c96c8772ce6cc64514b8a3edaa42ebb9"; - sha256 = "sha256-dJtQXaLsADXcsADzExGPj3L2x4zlNfsQCNBk17W0a5A="; + rev = "ef4855f6afa16ef86013bba7da8e50a63e11b493"; + sha256 = "sha256-IVKGysAKr+lKV1CO1JJIMLtzcvpK8joWjx8Bfy+dx8Y="; }; meta = with lib; { homepage = "https://github.com/discourse/discourse-yearly-review"; diff --git a/pkgs/servers/web-apps/discourse/rubyEnv/Gemfile b/pkgs/servers/web-apps/discourse/rubyEnv/Gemfile index c66a3f25542c..2766c3feadc0 100644 --- a/pkgs/servers/web-apps/discourse/rubyEnv/Gemfile +++ b/pkgs/servers/web-apps/discourse/rubyEnv/Gemfile @@ -31,9 +31,7 @@ end gem 'json' -# TODO: At the moment Discourse does not work with Sprockets 4, we would need to correct internals -# This is a desired upgrade we should get to. -gem 'sprockets', '3.7.2' +gem 'sprockets' # this will eventually be added to rails, # allows us to precompile all our templates in the unicorn master diff --git a/pkgs/servers/web-apps/discourse/rubyEnv/Gemfile.lock b/pkgs/servers/web-apps/discourse/rubyEnv/Gemfile.lock index 7ae505b5c194..4e832c8abdb1 100644 --- a/pkgs/servers/web-apps/discourse/rubyEnv/Gemfile.lock +++ b/pkgs/servers/web-apps/discourse/rubyEnv/Gemfile.lock @@ -92,7 +92,7 @@ GEM chunky_png (1.4.0) coderay (1.1.3) colored2 (3.1.2) - concurrent-ruby (1.1.9) + concurrent-ruby (1.1.10) connection_pool (2.2.5) cose (1.2.0) cbor (~> 0.5.9) @@ -129,10 +129,10 @@ GEM sprockets (>= 3.3, < 4.1) ember-source (2.18.2) erubi (1.10.0) - excon (0.92.1) + excon (0.92.2) execjs (2.8.1) exifr (1.3.9) - fabrication (2.27.0) + fabrication (2.28.0) faker (2.20.0) i18n (>= 1.8.11, < 2) fakeweb (1.3.0) @@ -194,7 +194,7 @@ GEM json (2.6.1) json-schema (2.8.1) addressable (>= 2.4) - json_schemer (0.2.19) + json_schemer (0.2.20) ecma-re-validator (~> 0.3) hana (~> 1.3) regexp_parser (~> 2.0) @@ -206,7 +206,7 @@ GEM rb-fsevent (~> 0.10, >= 0.10.3) rb-inotify (~> 0.9, >= 0.9.10) literate_randomizer (0.4.0) - lograge (0.11.2) + lograge (0.12.0) actionpack (>= 4) activesupport (>= 4) railties (>= 4) @@ -215,7 +215,7 @@ GEM logstash-logger (0.26.1) logstash-event (~> 1.2) logster (2.11.0) - loofah (2.15.0) + loofah (2.16.0) crass (~> 1.0.2) nokogiri (>= 1.5.9) lru_redux (1.1.0) @@ -236,13 +236,13 @@ GEM ffi (~> 1.9) minitest (5.15.0) mocha (1.13.0) - msgpack (1.4.5) + msgpack (1.5.1) multi_json (1.15.0) multi_xml (0.6.0) multipart-post (2.1.1) mustache (1.1.1) nio4r (2.5.8) - nokogiri (1.13.3) + nokogiri (1.13.4) mini_portile2 (~> 2.8.0) racc (~> 1.4) oauth (0.5.8) @@ -280,12 +280,12 @@ GEM openssl-signature_algorithm (1.1.1) openssl (~> 2.0) optimist (3.0.1) - parallel (1.22.0) - parallel_tests (3.7.3) + parallel (1.22.1) + parallel_tests (3.8.1) parallel - parser (3.1.1.0) + parser (3.1.2.0) ast (~> 2.4.1) - pg (1.3.4) + pg (1.3.5) progress (3.6.0) pry (0.13.1) coderay (~> 1.1) @@ -295,8 +295,8 @@ GEM pry (~> 0.13.0) pry-rails (0.3.9) pry (>= 0.10.4) - public_suffix (4.0.6) - puma (5.6.2) + public_suffix (4.0.7) + puma (5.6.4) nio4r (~> 2.0) r2 (0.2.7) racc (1.6.0) @@ -339,7 +339,7 @@ GEM redis (4.5.1) redis-namespace (1.8.2) redis (>= 3.0.4) - regexp_parser (2.2.1) + regexp_parser (2.3.0) request_store (1.5.1) rack (>= 1.4) rexml (3.2.5) @@ -361,7 +361,7 @@ GEM rspec-html-matchers (0.9.4) nokogiri (~> 1) rspec (>= 3.0.0.a, < 4) - rspec-mocks (3.11.0) + rspec-mocks (3.11.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.11.0) rspec-rails (5.1.1) @@ -380,7 +380,7 @@ GEM json-schema (~> 2.2) railties (>= 3.1, < 7.1) rtlit (0.0.5) - rubocop (1.26.0) + rubocop (1.27.0) parallel (~> 1.10) parser (>= 3.1.0.0) rainbow (>= 2.2.2, < 4.0) @@ -389,7 +389,7 @@ GEM rubocop-ast (>= 1.16.0, < 2.0) ruby-progressbar (~> 1.7) unicode-display_width (>= 1.4.0, < 3.0) - rubocop-ast (1.16.0) + rubocop-ast (1.17.0) parser (>= 3.1.1.0) rubocop-discourse (2.5.0) rubocop (>= 1.1.0) @@ -430,7 +430,7 @@ GEM simplecov_json_formatter (~> 0.1) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - sprockets (3.7.2) + sprockets (4.0.3) concurrent-ruby (~> 1.0) rack (> 1, < 3) sprockets-rails (3.4.2) @@ -439,7 +439,7 @@ GEM sprockets (>= 3.0.0) sshkey (2.0.0) stackprof (0.2.19) - test-prof (1.0.7) + test-prof (1.0.8) thor (1.2.1) tilt (2.0.10) tzinfo (2.0.4) @@ -453,7 +453,7 @@ GEM unicorn (6.1.0) kgio (~> 2.6) raindrops (~> 0.7) - uniform_notifier (1.15.0) + uniform_notifier (1.16.0) uri_template (0.7.0) webmock (3.14.0) addressable (>= 2.8.0) @@ -583,7 +583,7 @@ DEPENDENCIES shoulda-matchers sidekiq simplecov - sprockets (= 3.7.2) + sprockets sprockets-rails sshkey stackprof @@ -598,4 +598,4 @@ DEPENDENCIES yaml-lint BUNDLED WITH - 2.3.5 + 2.3.9 diff --git a/pkgs/servers/web-apps/discourse/rubyEnv/gemset.nix b/pkgs/servers/web-apps/discourse/rubyEnv/gemset.nix index 72748dad501b..84f4c37dfb22 100644 --- a/pkgs/servers/web-apps/discourse/rubyEnv/gemset.nix +++ b/pkgs/servers/web-apps/discourse/rubyEnv/gemset.nix @@ -351,10 +351,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0nwad3211p7yv9sda31jmbyw6sdafzmdi2i2niaz6f0wk5nq9h0f"; + sha256 = "0s4fpn3mqiizpmpy2a24k4v365pv75y50292r8ajrv4i1p5b2k14"; type = "gem"; }; - version = "1.1.9"; + version = "1.1.10"; }; connection_pool = { groups = ["default"]; @@ -573,10 +573,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "12d0xkb2qkydygs4py2z2m7vzx0hygx2dnyk98ja8lkj2k348925"; + sha256 = "01pcl1vx60x3f28rs6iw1lgqxycgb2yxq2p45k7b4a8liadykhba"; type = "gem"; }; - version = "0.92.1"; + version = "0.92.2"; }; execjs = { groups = ["assets" "default"]; @@ -603,10 +603,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1zmak7fgis1nk9j157g2rjzxrw9prr3jzlxap9vix3xm0gkihr53"; + sha256 = "0rgbmk044akxa84z9vdl8lkmd9z4xy3na1w0vh12pz02drxd93j9"; type = "gem"; }; - version = "2.27.0"; + version = "2.28.0"; }; faker = { dependencies = ["i18n"]; @@ -1012,10 +1012,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "03lzdfwpmywxc6l5apnhfjwl8swf9jz2ajwjgq38am0q60ggjrcf"; + sha256 = "1ahcnfw3lchyyq7ixjfghkw709fbm8mkqsqq9yhd9in3bhzywa88"; type = "gem"; }; - version = "0.2.19"; + version = "0.2.20"; }; jwt = { groups = ["default"]; @@ -1080,10 +1080,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1vrjm4yqn5l6q5gsl72fmk95fl6j9z1a05gzbrwmsm3gp1a1bgac"; + sha256 = "15pjm9pa5m3mbv9xvfgfr16q4jyaznsg8y63jz9x4jqr8npw0vx3"; type = "gem"; }; - version = "0.11.2"; + version = "0.12.0"; }; logstash-event = { groups = ["default"]; @@ -1122,10 +1122,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1yp1h1j7pdkqvnx8jl6bkzlajav3h5mhqzihgs9p6y3c8927mw23"; + sha256 = "15s6z5bvhdhnqv4wg8zcz3mhbc7i4dbqskv5jvhprz33ak7682km"; type = "gem"; }; - version = "2.15.0"; + version = "2.16.0"; }; lru_redux = { groups = ["default"]; @@ -1303,10 +1303,10 @@ }]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1cshgsx3hmpgx639xyqjqa2q3hgrhlyr9rpwhsglsx529alqq125"; + sha256 = "1i0gbypr1yxwfkaxzrk0i1wz4n6v3mw7z24k65jy3q1h5lda5xbw"; type = "gem"; }; - version = "1.4.5"; + version = "1.5.1"; }; multi_json = { groups = ["default"]; @@ -1364,10 +1364,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1p6b3q411h2mw4dsvhjrp1hh66hha5cm69fqg85vn2lizz71n6xz"; + sha256 = "1g43ii497cwdqhfnaxfl500bq5yfc5hfv5df1lvf6wcjnd708ihd"; type = "gem"; }; - version = "1.13.3"; + version = "1.13.4"; }; oauth = { groups = ["default"]; @@ -1518,10 +1518,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1bncdqm62l1q8flw10gl86gcc74zm89s5vrjww73i3094jg64pam"; + sha256 = "07vnk6bb54k4yc06xnwck7php50l09vvlw1ga8wdz0pia461zpzb"; type = "gem"; }; - version = "1.22.0"; + version = "1.22.1"; }; parallel_tests = { dependencies = ["parallel"]; @@ -1529,10 +1529,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1vsfsfd194xnzjz94ml157w61fnag8jg47b4bssc508kb3vmk20w"; + sha256 = "01kzjshbim0w5ax7vcjfxvb83x2pglws7qr43x0qkd731f8w10f7"; type = "gem"; }; - version = "3.7.3"; + version = "3.8.1"; }; parser = { dependencies = ["ast"]; @@ -1540,20 +1540,20 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0zaghgvva2q4jqbachg8jvpwgbg3w1jqr0d00m8rqciqznjgsw3c"; + sha256 = "0xhfghgidj8cbdnqp01f7kvnrv1f60izpkd9dhxsvpdzkfsdg97d"; type = "gem"; }; - version = "3.1.1.0"; + version = "3.1.2.0"; }; pg = { groups = ["default"]; platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "090c3kazlmiizp25las7dgi8wlc11s29nrs2gy3qrp1z8qikgcmb"; + sha256 = "10ryzmc3r5ja6g90a9ycsxcxsy5872xa1vf01jam0bm74zq3zmi6"; type = "gem"; }; - version = "1.3.4"; + version = "1.3.5"; }; progress = { groups = ["default"]; @@ -1603,10 +1603,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1xqcgkl7bwws1qrlnmxgh8g4g9m10vg60bhlw40fplninb3ng6d9"; + sha256 = "1f3knlwfwm05sfbaihrxm4g772b79032q14c16q4b38z8bi63qcb"; type = "gem"; }; - version = "4.0.6"; + version = "4.0.7"; }; puma = { dependencies = ["nio4r"]; @@ -1614,10 +1614,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1np2myaxlk5iab1zarwgmp7zsjvm5j8ssg35ijv8b6dpvc3cjd56"; + sha256 = "0dgr2rybayih2naz3658mbzqwfrg9fxl80zsvhscf6b972kp3jdw"; type = "gem"; }; - version = "5.6.2"; + version = "5.6.4"; }; r2 = { groups = ["default"]; @@ -1849,10 +1849,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "155f6cr4rrfw5bs5xd3m5kfw32qhc5fsi4nk82rhif56rc6cs0wm"; + sha256 = "0a6nxfq3ln1i109jx172n33s73a90l8g04h8p56bmw9phj467h9k"; type = "gem"; }; - version = "2.2.1"; + version = "2.3.0"; }; request_store = { dependencies = ["rack"]; @@ -1966,10 +1966,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0y38dc66yhnfcf4ky3k47c20xak1rax940s4a96qkjxqrniy5ys3"; + sha256 = "07vagjxdm5a6s103y8zkcnja6avpl8r196hrpiffmg7sk83dqdsm"; type = "gem"; }; - version = "3.11.0"; + version = "3.11.1"; }; rspec-rails = { dependencies = ["actionpack" "activesupport" "railties" "rspec-core" "rspec-expectations" "rspec-mocks" "rspec-support"]; @@ -2030,10 +2030,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "03c6v6bfqdw8vnda0if0sx7aff0iq6xnv1adyfs0bi9msgggafcr"; + sha256 = "00d9nzlnbxr3jqkya2b2rcahs9l22qpdk5qf3y7pws8m555l8slk"; type = "gem"; }; - version = "1.26.0"; + version = "1.27.0"; }; rubocop-ast = { dependencies = ["parser"]; @@ -2041,10 +2041,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1bd2z82ly7fix8415gvfiwzb6bjialz5rs3sr72kv1lk68rd23wv"; + sha256 = "1k9izkr5rhw3zc309yjp17z7496l74j4li3zrcgpgqfnqwz695qx"; type = "gem"; }; - version = "1.16.0"; + version = "1.17.0"; }; rubocop-discourse = { dependencies = ["rubocop" "rubocop-rspec"]; @@ -2226,10 +2226,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "182jw5a0fbqah5w9jancvfmjbk88h8bxdbwnl4d3q809rpxdg8ay"; + sha256 = "19k5cwg8gyb6lkmz4kab7c5nlplpgj64jy7vw8p5l2i2ysq5hym0"; type = "gem"; }; - version = "3.7.2"; + version = "4.0.3"; }; sprockets-rails = { dependencies = ["actionpack" "activesupport" "sprockets"]; @@ -2271,10 +2271,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1vg0zjfgibdcgkzb4c25v0f4v6v8mvpzvgcag194rwglmkkyrwkx"; + sha256 = "04yxdm2cdhwp0wsp8891f06cprp4442p3mlgpdc4pziflpfvaw05"; type = "gem"; }; - version = "1.0.7"; + version = "1.0.8"; }; thor = { groups = ["default" "development" "test"]; @@ -2371,10 +2371,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "00dj2vsz9sq5i9wnncbiy4v5vayqbssppazzigd1ibpl60pzfxkq"; + sha256 = "1dfvqixshwvm82b9qwdidvnkavdj7s0fbdbmyd4knkl6l3j9xcwr"; type = "gem"; }; - version = "1.15.0"; + version = "1.16.0"; }; uri_template = { groups = ["default"]; diff --git a/pkgs/tools/X11/caffeine-ng/default.nix b/pkgs/tools/X11/caffeine-ng/default.nix index 36d43ea75d4d..85f196b460ea 100644 --- a/pkgs/tools/X11/caffeine-ng/default.nix +++ b/pkgs/tools/X11/caffeine-ng/default.nix @@ -34,6 +34,7 @@ python3Packages.buildPythonApplication rec { postInstall = '' mkdir -p $out/share cp -r share $out/ + cp -r caffeine/assets/icons $out/share/icons # autostart file cp -r $out/lib/python*/site-packages/etc $out/etc/ glib-compile-schemas --strict $out/share/glib-2.0/schemas diff --git a/pkgs/tools/networking/wormhole-william/default.nix b/pkgs/tools/networking/wormhole-william/default.nix index 157119e64750..95d77f7402c7 100644 --- a/pkgs/tools/networking/wormhole-william/default.nix +++ b/pkgs/tools/networking/wormhole-william/default.nix @@ -13,7 +13,12 @@ buildGoModule rec { vendorSha256 = "sha256-J6iht3cagcwFekydShgaYJtkNLfEvSDqonkC7+frldM="; - doCheck = false; + preCheck = '' + # wormhole_test.go:692: failed to establish connection + substituteInPlace wormhole/wormhole_test.go \ + --replace "TestWormholeDirectoryTransportSendRecvDirect" \ + "SkipWormholeDirectoryTransportSendRecvDirect" + ''; meta = with lib; { homepage = "https://github.com/psanford/wormhole-william"; diff --git a/pkgs/tools/security/melt/default.nix b/pkgs/tools/security/melt/default.nix index 846b70b87538..5690958848c0 100644 --- a/pkgs/tools/security/melt/default.nix +++ b/pkgs/tools/security/melt/default.nix @@ -2,16 +2,16 @@ buildGoModule rec { pname = "melt"; - version = "0.2.0"; + version = "0.3.0"; src = fetchFromGitHub { owner = "charmbracelet"; repo = "melt"; rev = "v${version}"; - sha256 = "sha256-HambmUodAwgi1/r/Nj7P7gXNK5pyBO3omMZ9ZvSK7cc=4"; + sha256 = "sha256-I1LNCrJo3Ihh03aTUG0QhS6ySuMqNJJGyZ8XZzClDlU="; }; - vendorSha256 = "sha256-1f3QBbWaTiplEp/4ihds1PwrEnoq/81TzlT46TufGFs="; + vendorSha256 = "sha256-eRFWDyXN2c5VSxYOE12sczYP3rGtzLjY9M2DQgHNFyA="; ldflags = [ "-s" "-w" "-X=main.Version=${version}" ]; diff --git a/pkgs/tools/security/metasploit/Gemfile b/pkgs/tools/security/metasploit/Gemfile index fe38b6cd19c5..bb742e3832c0 100644 --- a/pkgs/tools/security/metasploit/Gemfile +++ b/pkgs/tools/security/metasploit/Gemfile @@ -1,4 +1,4 @@ # frozen_string_literal: true source "https://rubygems.org" -gem "metasploit-framework", git: "https://github.com/rapid7/metasploit-framework", ref: "refs/tags/6.1.37" +gem "metasploit-framework", git: "https://github.com/rapid7/metasploit-framework", ref: "refs/tags/6.1.38" diff --git a/pkgs/tools/security/metasploit/Gemfile.lock b/pkgs/tools/security/metasploit/Gemfile.lock index 4a8f6c4be93d..d6e628191152 100644 --- a/pkgs/tools/security/metasploit/Gemfile.lock +++ b/pkgs/tools/security/metasploit/Gemfile.lock @@ -1,9 +1,9 @@ GIT remote: https://github.com/rapid7/metasploit-framework - revision: 214817055bc104e6876882ef794f1de1031edb53 - ref: refs/tags/6.1.37 + revision: 295599a02453423ea06e25c7f4347d88d1f2debc + ref: refs/tags/6.1.38 specs: - metasploit-framework (6.1.37) + metasploit-framework (6.1.38) actionpack (~> 6.0) activerecord (~> 6.0) activesupport (~> 6.0) @@ -31,7 +31,7 @@ GIT metasploit-concern metasploit-credential metasploit-model - metasploit-payloads (= 2.0.80) + metasploit-payloads (= 2.0.83) metasploit_data_models metasploit_payloads-mettle (= 1.0.18) mqtt @@ -129,13 +129,13 @@ GEM arel-helpers (2.14.0) activerecord (>= 3.1.0, < 8) aws-eventstream (1.2.0) - aws-partitions (1.575.0) - aws-sdk-core (3.130.0) + aws-partitions (1.577.0) + aws-sdk-core (3.130.1) aws-eventstream (~> 1, >= 1.0.2) aws-partitions (~> 1, >= 1.525.0) aws-sigv4 (~> 1.1) jmespath (~> 1.0) - aws-sdk-ec2 (1.305.0) + aws-sdk-ec2 (1.307.0) aws-sdk-core (~> 3, >= 3.127.0) aws-sigv4 (~> 1.1) aws-sdk-iam (1.68.0) @@ -254,7 +254,7 @@ GEM activemodel (~> 6.0) activesupport (~> 6.0) railties (~> 6.0) - metasploit-payloads (2.0.80) + metasploit-payloads (2.0.83) metasploit_data_models (5.0.5) activerecord (~> 6.0) activesupport (~> 6.0) @@ -308,7 +308,7 @@ GEM ruby-rc4 ttfunk pg (1.3.5) - public_suffix (4.0.6) + public_suffix (4.0.7) puma (5.6.4) nio4r (~> 2.0) racc (1.6.0) @@ -388,7 +388,7 @@ GEM ruby-macho (3.0.0) ruby-rc4 (0.1.5) ruby2_keywords (0.0.5) - ruby_smb (3.0.6) + ruby_smb (3.1.0) bindata openssl-ccm openssl-cmac diff --git a/pkgs/tools/security/metasploit/default.nix b/pkgs/tools/security/metasploit/default.nix index cc359dcd0699..9f811999b79b 100644 --- a/pkgs/tools/security/metasploit/default.nix +++ b/pkgs/tools/security/metasploit/default.nix @@ -15,13 +15,13 @@ let }; in stdenv.mkDerivation rec { pname = "metasploit-framework"; - version = "6.1.37"; + version = "6.1.38"; src = fetchFromGitHub { owner = "rapid7"; repo = "metasploit-framework"; rev = version; - sha256 = "sha256-umSWJq9jJrjawP+eXkZEKcomJNHpt7IOk+ZI1iAM6OU="; + sha256 = "sha256-3wpO2+ALt5sw6TSGCp7ARn5TEHVi+bBgP4uJPRwVIOM="; }; nativeBuildInputs = [ makeWrapper ]; diff --git a/pkgs/tools/security/metasploit/gemset.nix b/pkgs/tools/security/metasploit/gemset.nix index 76c8ed6fe3f5..2d4c4808f45e 100644 --- a/pkgs/tools/security/metasploit/gemset.nix +++ b/pkgs/tools/security/metasploit/gemset.nix @@ -104,30 +104,30 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "07kbrac2r883h4bsw4qhgkd97v0f4p05saqj8zsy300wx56nyssm"; + sha256 = "0rl0wcvcl1dnyzyxs0m6iyma0ibx2f9a2d4zac6hrdfcqf4s6zx9"; type = "gem"; }; - version = "1.575.0"; + version = "1.577.0"; }; aws-sdk-core = { groups = ["default"]; platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "14ymvp06k46gvkpvz5zaqvbvr6wd8vdka5iq25q0wd0fzdx7aivm"; + sha256 = "0lrmk788830adljzfdv9ws4q7cqfh0qyp7w908pja4rkgsd4baln"; type = "gem"; }; - version = "3.130.0"; + version = "3.130.1"; }; aws-sdk-ec2 = { groups = ["default"]; platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1dpid33sl72nsxyr7d57yqzqb9jby0dyjc0ncncdm41is7d25vki"; + sha256 = "13dbg60p44llx4h99s6vdqngkwkx1521ixvzrlj630wrjp6dfkp2"; type = "gem"; }; - version = "1.305.0"; + version = "1.307.0"; }; aws-sdk-iam = { groups = ["default"]; @@ -694,12 +694,12 @@ platforms = []; source = { fetchSubmodules = false; - rev = "214817055bc104e6876882ef794f1de1031edb53"; - sha256 = "1rg81hhdcj76jc7b5dz9s4j2dji98i35x7pzq3dbh9k3mwk9cr5s"; + rev = "295599a02453423ea06e25c7f4347d88d1f2debc"; + sha256 = "1qr02lf3v2cb7xhb1yb2fl856zj6q2g0m1ilx4q9pdqbw3dlw2nz"; type = "git"; url = "https://github.com/rapid7/metasploit-framework"; }; - version = "6.1.37"; + version = "6.1.38"; }; metasploit-model = { groups = ["default"]; @@ -716,10 +716,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "12xggj210fqprkcd6zb4rnis12l9q2fi42gmwh2hfdwvbm3syvzy"; + sha256 = "15vlazx39flz2pci2yqjcgd4ljslhivbq1vvyajgsxl15q772ni0"; type = "gem"; }; - version = "2.0.80"; + version = "2.0.83"; }; metasploit_data_models = { groups = ["default"]; @@ -1017,10 +1017,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1xqcgkl7bwws1qrlnmxgh8g4g9m10vg60bhlw40fplninb3ng6d9"; + sha256 = "1f3knlwfwm05sfbaihrxm4g772b79032q14c16q4b38z8bi63qcb"; type = "gem"; }; - version = "4.0.6"; + version = "4.0.7"; }; puma = { groups = ["default"]; @@ -1387,10 +1387,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1mxm2948xz9pfl2jhngvjw89arvm9qznrf86pbqi8hi7cxfr4grk"; + sha256 = "0j378l0zh3y2hdnxx753p2ds7nssi8v08fkv1wzm3yl5ws8zkxaf"; type = "gem"; }; - version = "3.0.6"; + version = "3.1.0"; }; rubyntlm = { groups = ["default"]; diff --git a/pkgs/tools/video/xjadeo/default.nix b/pkgs/tools/video/xjadeo/default.nix index bcd6d5601c0f..53d6c49b7e64 100644 --- a/pkgs/tools/video/xjadeo/default.nix +++ b/pkgs/tools/video/xjadeo/default.nix @@ -3,13 +3,13 @@ stdenv.mkDerivation rec { pname = "xjadeo"; - version = "0.8.10"; + version = "0.8.11"; src = fetchFromGitHub { owner = "x42"; repo = "xjadeo"; rev = "v${version}"; - sha256 = "0dma4cjgbrpy16x63zvfr0xss4lryl0zw7nvixvhq2f6z8day1ds"; + sha256 = "sha256-S8eIkmfjwpcILZc+by0Mk4VPRUlbJT0GBe8NlJ1F9EI="; }; nativeBuildInputs = [ autoreconfHook pkg-config ]; diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index 8e0d0a75ffa7..b672e7c8c937 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -344,8 +344,8 @@ mapAliases ({ electrum-dash = throw "electrum-dash has been removed from nixpkgs as the project is abandoned"; # Added 2022-01-01 # Emacs - emacs27Packages = emacs27.pkgs; # Added 2020-12-18 - emacs27WithPackages = emacs27.pkgs.withPackages; # Added 2020-12-18 + emacs28Packages = emacs28.pkgs; # Added 2021-10-04 + emacs28WithPackages = emacs28.pkgs.withPackages; # Added 2021-10-04 emacsPackages = emacs.pkgs; # Added 2020-12-18 emacsPackagesGen = throw "'emacsPackagesGen' has been renamed to/replaced by 'emacsPackagesFor'"; # Converted to throw 2022-02-22 emacsPackagesNg = emacs.pkgs; # Added 2019-08-07 diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 025461bd61e4..57f33d035302 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -25500,10 +25500,11 @@ with pkgs; em = callPackage ../applications/editors/em { }; - emacs = emacs27; - emacs-nox = emacs27-nox; + emacs = emacs28; + emacsNativeComp = emacs28NativeComp; + emacs-nox = emacs28-nox; - emacs27 = callPackage ../applications/editors/emacs/27.nix { + emacs28 = callPackage ../applications/editors/emacs/28.nix { # use override to enable additional features libXaw = xorg.libXaw; Xaw3d = null; @@ -25515,7 +25516,11 @@ with pkgs; inherit (darwin) sigtool; }; - emacs27-nox = lowPrio (emacs27.override { + emacs28NativeComp = emacs28.override { + nativeComp = true; + }; + + emacs28-nox = lowPrio (emacs28.override { withX = false; withNS = false; withGTK2 = false; diff --git a/pkgs/top-level/packages-config.nix b/pkgs/top-level/packages-config.nix index c33f8b2dc2aa..fa99c0eead85 100644 --- a/pkgs/top-level/packages-config.nix +++ b/pkgs/top-level/packages-config.nix @@ -47,6 +47,6 @@ }; # This is an alias which we disallow by default; explicitly allow it - emacs27Packages = emacs27.pkgs; + emacs28Packages = emacs28.pkgs; }; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index b9637aef7d18..6660f4463b11 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -3215,6 +3215,8 @@ in { inherit (pkgs) bluez glib pkg-config; }; + gb-io = callPackage ../development/python-modules/gb-io { }; + gbinder-python = callPackage ../development/python-modules/gbinder-python { }; gcovr = callPackage ../development/python-modules/gcovr { };