diff --git a/lib/modules.nix b/lib/modules.nix index 894104cc5790..abcdd1a894cc 100644 --- a/lib/modules.nix +++ b/lib/modules.nix @@ -46,6 +46,7 @@ let showFiles showOption unknownModule + literalExpression ; showDeclPrefix = loc: decl: prefix: @@ -140,7 +141,7 @@ rec { # this module is used, to avoid conflicts and allow chaining of # extendModules. internalModule = rec { - _file = ./modules.nix; + _file = "lib/modules.nix"; key = _file; @@ -153,8 +154,91 @@ rec { # a `_module.args.pkgs = import (fetchTarball { ... }) {}` won't # start a download when `pkgs` wasn't evaluated. type = types.lazyAttrsOf types.raw; - internal = true; - description = "Arguments passed to each module."; + # Only render documentation once at the root of the option tree, + # not for all individual submodules. + internal = prefix != []; + # TODO: Change the type of this option to a submodule with a + # freeformType, so that individual arguments can be documented + # separately + description = '' + Additional arguments passed to each module in addition to ones + like lib, config, + and pkgs, modulesPath. + + + This option is also available to all submodules. Submodules do not + inherit args from their parent module, nor do they provide args to + their parent module or sibling submodules. The sole exception to + this is the argument name which is provided by + parent modules to a submodule and contains the attribute name + the submodule is bound to, or a unique generated name if it is + not bound to an attribute. + + + Some arguments are already passed by default, of which the + following cannot be changed with this option: + + + + lib: The nixpkgs library. + + + + + config: The results of all options after merging the values from all modules together. + + + + + options: The options declared in all modules. + + + + + specialArgs: The specialArgs argument passed to evalModules. + + + + + All attributes of specialArgs + + + Whereas option values can generally depend on other option values + thanks to laziness, this does not apply to imports, which + must be computed statically before anything else. + + + For this reason, callers of the module system can provide specialArgs + which are available during import resolution. + + + For NixOS, specialArgs includes + modulesPath, which allows you to import + extra modules from the nixpkgs package tree without having to + somehow make the module aware of the location of the + nixpkgs or NixOS directories. + + { modulesPath, ... }: { + imports = [ + (modulesPath + "/profiles/minimal.nix") + ]; + } + + + + + + + For NixOS, the default value for this option includes at least this argument: + + + + pkgs: The nixpkgs package set according to + the option. + + + + ''; }; _module.check = mkOption { diff --git a/lib/strings.nix b/lib/strings.nix index d34263c99494..820d1901f945 100644 --- a/lib/strings.nix +++ b/lib/strings.nix @@ -756,7 +756,14 @@ rec { sanitizeDerivationName pkgs.hello => "-nix-store-2g75chlbpxlrqn15zlby2dfh8hr9qwbk-hello-2.10" */ - sanitizeDerivationName = string: lib.pipe string [ + sanitizeDerivationName = + let okRegex = match "[[:alnum:]+_?=-][[:alnum:]+._?=-]*"; + in + string: + # First detect the common case of already valid strings, to speed those up + if stringLength string <= 207 && okRegex string != null + then unsafeDiscardStringContext string + else lib.pipe string [ # Get rid of string context. This is safe under the assumption that the # resulting string is only used as a derivation name unsafeDiscardStringContext diff --git a/lib/tests/misc.nix b/lib/tests/misc.nix index 1eb2d953ebbe..9012bba2b567 100644 --- a/lib/tests/misc.nix +++ b/lib/tests/misc.nix @@ -649,6 +649,11 @@ runTests { expected = "foo"; }; + testSanitizeDerivationNameUnicode = testSanitizeDerivationName { + name = "fö"; + expected = "f-"; + }; + testSanitizeDerivationNameAscii = testSanitizeDerivationName { name = " !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~"; expected = "-+--.-0123456789-=-?-ABCDEFGHIJKLMNOPQRSTUVWXYZ-_-abcdefghijklmnopqrstuvwxyz-"; @@ -691,7 +696,7 @@ runTests { locs = filter (o: ! o.internal) (optionAttrSetToDocList options); in map (o: o.loc) locs; - expected = [ [ "foo" ] [ "foo" "" "bar" ] [ "foo" "bar" ] ]; + expected = [ [ "_module" "args" ] [ "foo" ] [ "foo" "" "bar" ] [ "foo" "bar" ] ]; }; testCartesianProductOfEmptySet = { diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index ef6fdab0efac..72d4e8dfb21e 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -8258,6 +8258,17 @@ githubId = 1776903; name = "Andrew Abbott"; }; + misterio77 = { + email = "eu@misterio.me"; + github = "misterio77"; + githubId = 5727578; + matrix = "@misterio:matrix.org"; + name = "Gabriel Fontes"; + keys = [{ + longkeyid = "rsa3072/0x245CAB70B4C225E9"; + fingerprint = "7088 C742 1873 E0DB 97FF 17C2 245C AB70 B4C2 25E9"; + }]; + }; mitchmindtree = { email = "mail@mitchellnordine.com"; github = "mitchmindtree"; diff --git a/nixos/doc/manual/from_md/release-notes/rl-2205.section.xml b/nixos/doc/manual/from_md/release-notes/rl-2205.section.xml index d1d7713fec26..b548d93a7c0d 100644 --- a/nixos/doc/manual/from_md/release-notes/rl-2205.section.xml +++ b/nixos/doc/manual/from_md/release-notes/rl-2205.section.xml @@ -1523,9 +1523,11 @@ programs.ssh.knownHosts has gained an extraHostNames option to - replace hostNames. - hostNames is deprecated, but still - available for now. + augment hostNames. It is now possible to + use the attribute name of a knownHosts + entry as the primary host name and specify secondary host + names using extraHostNames without having + to duplicate the primary host name. diff --git a/nixos/doc/manual/release-notes/rl-2205.section.md b/nixos/doc/manual/release-notes/rl-2205.section.md index 44d65ceeb189..e74270f91822 100644 --- a/nixos/doc/manual/release-notes/rl-2205.section.md +++ b/nixos/doc/manual/release-notes/rl-2205.section.md @@ -541,7 +541,9 @@ In addition to numerous new and upgraded packages, this release has the followin e.g. Wayland. - [programs.ssh.knownHosts](#opt-programs.ssh.knownHosts) has gained an `extraHostNames` - option to replace `hostNames`. `hostNames` is deprecated, but still available for now. + option to augment `hostNames`. It is now possible to use the attribute name of a `knownHosts` + entry as the primary host name and specify secondary host names using `extraHostNames` without + having to duplicate the primary host name. - The `services.stubby` module was converted to a [settings-style](https://github.com/NixOS/rfcs/blob/master/rfcs/0042-config-option.md) configuration. diff --git a/nixos/lib/make-options-doc/mergeJSON.py b/nixos/lib/make-options-doc/mergeJSON.py index 8e2ea322dc89..44a188a08c99 100644 --- a/nixos/lib/make-options-doc/mergeJSON.py +++ b/nixos/lib/make-options-doc/mergeJSON.py @@ -48,7 +48,9 @@ overrides = pivot(json.load(open(sys.argv[2 + optOffset], 'r'))) # fix up declaration paths in lazy options, since we don't eval them from a full nixpkgs dir for (k, v) in options.items(): - v.value['declarations'] = list(map(lambda s: f'nixos/modules/{s}', v.value['declarations'])) + # The _module options are not declared in nixos/modules + if v.value['loc'][0] != "_module": + v.value['declarations'] = list(map(lambda s: f'nixos/modules/{s}', v.value['declarations'])) # merge both descriptions for (k, v) in overrides.items(): diff --git a/nixos/modules/programs/ssh.nix b/nixos/modules/programs/ssh.nix index b31fce915240..75685de4f04e 100644 --- a/nixos/modules/programs/ssh.nix +++ b/nixos/modules/programs/ssh.nix @@ -157,9 +157,13 @@ in default = [ name ] ++ config.extraHostNames; defaultText = literalExpression "[ ${name} ] ++ config.${options.extraHostNames}"; description = '' - DEPRECATED, please use extraHostNames. A list of host names and/or IP numbers used for accessing - the host's ssh service. + the host's ssh service. This list includes the name of the + containing knownHosts attribute by default + for convenience. If you wish to configure multiple host keys + for the same host use multiple knownHosts + entries with different attribute names and the same + hostNames list. ''; }; extraHostNames = mkOption { @@ -167,7 +171,8 @@ in default = []; description = '' A list of additional host names and/or IP numbers used for - accessing the host's ssh service. + accessing the host's ssh service. This list is ignored if + hostNames is set explicitly. ''; }; publicKey = mkOption { @@ -198,7 +203,12 @@ in }; })); description = '' - The set of system-wide known SSH hosts. + The set of system-wide known SSH hosts. To make simple setups more + convenient the name of an attribute in this set is used as a host name + for the entry. This behaviour can be disabled by setting + hostNames explicitly. You can use + extraHostNames to add additional host names without + disabling this default. ''; example = literalExpression '' { @@ -207,6 +217,10 @@ in publicKeyFile = ./pubkeys/myhost_ssh_host_dsa_key.pub; }; "myhost2.net".publicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILIRuJ8p1Fi+m6WkHV0KWnRfpM1WxoW8XAS+XvsSKsTK"; + "myhost2.net/dsa" = { + hostNames = [ "myhost2.net" ]; + publicKeyFile = ./pubkeys/myhost2_ssh_host_dsa_key.pub; + }; } ''; }; @@ -279,9 +293,6 @@ in message = "knownHost ${name} must contain either a publicKey or publicKeyFile"; }); - warnings = mapAttrsToList (name: _: ''programs.ssh.knownHosts.${name}.hostNames is deprecated, use programs.ssh.knownHosts.${name}.extraHostNames'') - (filterAttrs (name: {hostNames, extraHostNames, ...}: hostNames != [ name ] ++ extraHostNames) cfg.knownHosts); - # SSH configuration. Slight duplication of the sshd_config # generation in the sshd service. environment.etc."ssh/ssh_config".text = diff --git a/nixos/modules/services/network-filesystems/ipfs.nix b/nixos/modules/services/network-filesystems/ipfs.nix index 7e96179b3cab..a670551d9f3b 100644 --- a/nixos/modules/services/network-filesystems/ipfs.nix +++ b/nixos/modules/services/network-filesystems/ipfs.nix @@ -267,11 +267,15 @@ in '' + '' ipfs --offline config show \ | ${pkgs.jq}/bin/jq '. * $extraConfig' --argjson extraConfig ${ - escapeShellArg (builtins.toJSON ({ - Addresses.API = cfg.apiAddress; - Addresses.Gateway = cfg.gatewayAddress; - Addresses.Swarm = cfg.swarmAddress; - } // cfg.extraConfig)) + escapeShellArg (builtins.toJSON ( + recursiveUpdate + { + Addresses.API = cfg.apiAddress; + Addresses.Gateway = cfg.gatewayAddress; + Addresses.Swarm = cfg.swarmAddress; + } + cfg.extraConfig + )) } \ | ipfs --offline config replace - ''; diff --git a/nixos/modules/services/x11/window-managers/qtile.nix b/nixos/modules/services/x11/window-managers/qtile.nix index 835b41d4ada9..4d455fdf7b2d 100644 --- a/nixos/modules/services/x11/window-managers/qtile.nix +++ b/nixos/modules/services/x11/window-managers/qtile.nix @@ -7,19 +7,26 @@ let in { - options = { - services.xserver.windowManager.qtile.enable = mkEnableOption "qtile"; + options.services.xserver.windowManager.qtile = { + enable = mkEnableOption "qtile"; + + package = mkPackageOption pkgs "qtile" { }; }; config = mkIf cfg.enable { services.xserver.windowManager.session = [{ name = "qtile"; start = '' - ${pkgs.qtile}/bin/qtile start & + ${cfg.package}/bin/qtile start & waitPID=$! ''; }]; - environment.systemPackages = [ pkgs.qtile ]; + environment.systemPackages = [ + # pkgs.qtile is currently a buildenv of qtile and its dependencies. + # For userland commands, we want the underlying package so that + # packages such as python don't bleed into userland and overwrite intended behavior. + (cfg.package.unwrapped or cfg.package) + ]; }; } diff --git a/nixos/modules/tasks/lvm.nix b/nixos/modules/tasks/lvm.nix index 35316603c38f..59711f90dce3 100644 --- a/nixos/modules/tasks/lvm.nix +++ b/nixos/modules/tasks/lvm.nix @@ -7,17 +7,18 @@ in { options.services.lvm = { package = mkOption { type = types.package; - default = if cfg.dmeventd.enable then pkgs.lvm2_dmeventd else pkgs.lvm2; + default = pkgs.lvm2; internal = true; defaultText = literalExpression "pkgs.lvm2"; description = '' This option allows you to override the LVM package that's used on the system (udev rules, tmpfiles, systemd services). - Defaults to pkgs.lvm2, or pkgs.lvm2_dmeventd if dmeventd is enabled. + Defaults to pkgs.lvm2, pkgs.lvm2_dmeventd if dmeventd or pkgs.lvm2_vdo if vdo is enabled. ''; }; dmeventd.enable = mkEnableOption "the LVM dmevent daemon"; boot.thin.enable = mkEnableOption "support for booting from ThinLVs"; + boot.vdo.enable = mkEnableOption "support for booting from VDOLVs"; }; config = mkMerge [ @@ -40,6 +41,7 @@ in { environment.etc."lvm/lvm.conf".text = '' dmeventd/executable = "${cfg.package}/bin/dmeventd" ''; + services.lvm.package = mkDefault pkgs.lvm2_dmeventd; }) (mkIf cfg.boot.thin.enable { boot.initrd = { @@ -61,6 +63,32 @@ in { environment.etc."lvm/lvm.conf".text = concatMapStringsSep "\n" (bin: "global/${bin}_executable = ${pkgs.thin-provisioning-tools}/bin/${bin}") [ "thin_check" "thin_dump" "thin_repair" "cache_check" "cache_dump" "cache_repair" ]; + + environment.systemPackages = [ pkgs.thin-provisioning-tools ]; + }) + (mkIf cfg.boot.vdo.enable { + boot = { + initrd = { + kernelModules = [ "kvdo" ]; + + extraUtilsCommands = '' + ls ${pkgs.vdo}/bin/ | grep -v adaptLVMVDO | while read BIN; do + copy_bin_and_libs ${pkgs.vdo}/bin/$BIN + done + ''; + + extraUtilsCommandsTest = '' + ls ${pkgs.vdo}/bin/ | grep -v adaptLVMVDO | while read BIN; do + $out/bin/$(basename $BIN) --help > /dev/null + done + ''; + }; + extraModulePackages = [ config.boot.kernelPackages.kvdo ]; + }; + + services.lvm.package = mkOverride 999 pkgs.lvm2_vdo; # this overrides mkDefault + + environment.systemPackages = [ pkgs.vdo ]; }) (mkIf (cfg.dmeventd.enable || cfg.boot.thin.enable) { boot.initrd.preLVMCommands = '' diff --git a/nixos/tests/all-tests.nix b/nixos/tests/all-tests.nix index dcbdf34e9441..799ce9b4017e 100644 --- a/nixos/tests/all-tests.nix +++ b/nixos/tests/all-tests.nix @@ -274,6 +274,7 @@ in login = handleTest ./login.nix {}; logrotate = handleTest ./logrotate.nix {}; loki = handleTest ./loki.nix {}; + lvm2 = handleTest ./lvm2 {}; lxd = handleTest ./lxd.nix {}; lxd-image = handleTest ./lxd-image.nix {}; lxd-nftables = handleTest ./lxd-nftables.nix {}; diff --git a/nixos/tests/atop.nix b/nixos/tests/atop.nix index d9304834692c..ec10369a24fd 100644 --- a/nixos/tests/atop.nix +++ b/nixos/tests/atop.nix @@ -182,10 +182,6 @@ in atopgpu = makeTest { name = "atop-atopgpu"; nodes.machine = { - nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (getName pkg) [ - "cudatoolkit" - ]; - programs.atop = { enable = true; atopgpu.enable = true; @@ -205,10 +201,6 @@ in everything = makeTest { name = "atop-everthing"; nodes.machine = { - nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (getName pkg) [ - "cudatoolkit" - ]; - programs.atop = { enable = true; settings = { diff --git a/nixos/tests/lvm2/default.nix b/nixos/tests/lvm2/default.nix new file mode 100644 index 000000000000..2ba17809569a --- /dev/null +++ b/nixos/tests/lvm2/default.nix @@ -0,0 +1,27 @@ +{ system ? builtins.currentSystem +, config ? { } +, pkgs ? import ../../.. { inherit system config; } +, lib ? pkgs.lib +, kernelVersionsToTest ? [ "4.19" "5.4" "5.10" "5.15" "latest" ] +}: + +# For quickly running a test, the nixosTests.lvm2.lvm-thinpool-linux-latest attribute is recommended +let + tests = let callTest = p: lib.flip (import p) { inherit system pkgs; }; in { + thinpool = { test = callTest ./thinpool.nix; kernelFilter = lib.id; }; + # we would like to test all versions, but the kernel module currently does not compile against the other versions + vdo = { test = callTest ./vdo.nix; kernelFilter = lib.filter (v: v == "5.15"); }; + }; +in +lib.listToAttrs ( + lib.filter (x: x.value != {}) ( + lib.flip lib.concatMap kernelVersionsToTest (version: + let + v' = lib.replaceStrings [ "." ] [ "_" ] version; + in + lib.flip lib.mapAttrsToList tests (name: t: + lib.nameValuePair "lvm-${name}-linux-${v'}" (lib.optionalAttrs (builtins.elem version (t.kernelFilter kernelVersionsToTest)) (t.test { kernelPackages = pkgs."linuxPackages_${v'}"; })) + ) + ) + ) +) diff --git a/nixos/tests/lvm2/thinpool.nix b/nixos/tests/lvm2/thinpool.nix new file mode 100644 index 000000000000..82c6460a890a --- /dev/null +++ b/nixos/tests/lvm2/thinpool.nix @@ -0,0 +1,32 @@ +{ kernelPackages ? null }: +import ../make-test-python.nix ({ pkgs, ... }: { + name = "lvm2-thinpool"; + meta.maintainers = with pkgs.lib.maintainers; [ ajs124 ]; + + nodes.machine = { pkgs, lib, ... }: { + virtualisation.emptyDiskImages = [ 4096 ]; + services.lvm = { + boot.thin.enable = true; + dmeventd.enable = true; + }; + environment.systemPackages = with pkgs; [ xfsprogs ]; + environment.etc."lvm/lvm.conf".text = '' + activation/thin_pool_autoextend_percent = 10 + activation/thin_pool_autoextend_threshold = 80 + ''; + boot = lib.mkIf (kernelPackages != null) { inherit kernelPackages; }; + }; + + testScript = '' + machine.succeed("vgcreate test_vg /dev/vdb") + machine.succeed("lvcreate -L 512M -T test_vg/test_thin_pool") + machine.succeed("lvcreate -n test_lv -V 16G --thinpool test_thin_pool test_vg") + machine.succeed("mkfs.xfs /dev/test_vg/test_lv") + machine.succeed("mkdir /mnt; mount /dev/test_vg/test_lv /mnt") + assert "/dev/mapper/test_vg-test_lv" == machine.succeed("findmnt -no SOURCE /mnt").strip() + machine.succeed("dd if=/dev/zero of=/mnt/empty.file bs=1M count=1024") + machine.succeed("journalctl -u dm-event.service | grep \"successfully resized\"") + machine.succeed("umount /mnt") + machine.succeed("vgchange -a n") + ''; +}) diff --git a/nixos/tests/lvm2/vdo.nix b/nixos/tests/lvm2/vdo.nix new file mode 100644 index 000000000000..5b014c2f7222 --- /dev/null +++ b/nixos/tests/lvm2/vdo.nix @@ -0,0 +1,27 @@ +{ kernelPackages ? null }: +import ../make-test-python.nix ({ pkgs, ... }: { + name = "lvm2-vdo"; + meta.maintainers = with pkgs.lib.maintainers; [ ajs124 ]; + + nodes.machine = { pkgs, lib, ... }: { + # Minimum required size for VDO volume: 5063921664 bytes + virtualisation.emptyDiskImages = [ 8192 ]; + services.lvm = { + boot.vdo.enable = true; + dmeventd.enable = true; + }; + environment.systemPackages = with pkgs; [ xfsprogs ]; + boot = lib.mkIf (kernelPackages != null) { inherit kernelPackages; }; + }; + + testScript = '' + machine.succeed("vgcreate test_vg /dev/vdb") + machine.succeed("lvcreate --type vdo -n vdo_lv -L 6G -V 12G test_vg/vdo_pool_lv") + machine.succeed("mkfs.xfs -K /dev/test_vg/vdo_lv") + machine.succeed("mkdir /mnt; mount /dev/test_vg/vdo_lv /mnt") + assert "/dev/mapper/test_vg-vdo_lv" == machine.succeed("findmnt -no SOURCE /mnt").strip() + machine.succeed("umount /mnt") + machine.succeed("vdostats") + machine.succeed("vgchange -a n") + ''; +}) diff --git a/nixos/tests/nixops/default.nix b/nixos/tests/nixops/default.nix index f0834c51f0b4..227b38815073 100644 --- a/nixos/tests/nixops/default.nix +++ b/nixos/tests/nixops/default.nix @@ -97,7 +97,7 @@ let derivations and all build dependency outputs, all the way down. */ allDrvOutputs = pkg: - let name = lib.strings.sanitizeDerivationName "allDrvOutputs-${pkg.pname or pkg.name or "unknown"}"; + let name = "allDrvOutputs-${pkg.pname or pkg.name or "unknown"}"; in pkgs.runCommand name { refs = pkgs.writeReferencesToFile pkg.drvPath; } '' touch $out diff --git a/pkgs/applications/blockchains/ledger-live-desktop/default.nix b/pkgs/applications/blockchains/ledger-live-desktop/default.nix index 6dc644fbb968..d72da2c060f1 100644 --- a/pkgs/applications/blockchains/ledger-live-desktop/default.nix +++ b/pkgs/applications/blockchains/ledger-live-desktop/default.nix @@ -2,12 +2,12 @@ let pname = "ledger-live-desktop"; - version = "2.39.2"; + version = "2.40.2"; name = "${pname}-${version}"; src = fetchurl { url = "https://github.com/LedgerHQ/${pname}/releases/download/v${version}/${pname}-${version}-linux-x86_64.AppImage"; - hash = "sha256-zVefF5CsyVVMNffec/xwA3KmMtZepM51C3Xh0ZCGl0c="; + hash = "sha256-2L1iVPLCCIQ6qBqkg+GmiqMmknHmdDLUrysN8vcW2YQ="; }; appimageContents = appimageTools.extractType2 { diff --git a/pkgs/applications/blockchains/lndmanage/default.nix b/pkgs/applications/blockchains/lndmanage/default.nix index ebbe653c96b2..c9e655448d28 100644 --- a/pkgs/applications/blockchains/lndmanage/default.nix +++ b/pkgs/applications/blockchains/lndmanage/default.nix @@ -2,13 +2,13 @@ python3Packages.buildPythonApplication rec { pname = "lndmanage"; - version = "0.14.0"; + version = "0.14.1"; src = fetchFromGitHub { owner = "bitromortac"; repo = pname; rev = "v${version}"; - hash = "sha256-wPr/R+WGACyhv2Qh9JeLJwvr2vQfxpqj2XjEkrRoSX4="; + hash = "sha256-c36AbND01bUr0Klme4fU7GrY1oYcmoEREQI9cwsK7YM="; }; propagatedBuildInputs = with python3Packages; [ diff --git a/pkgs/applications/editors/helix/default.nix b/pkgs/applications/editors/helix/default.nix index 6cc5714fb83f..fb1abcd6cffe 100644 --- a/pkgs/applications/editors/helix/default.nix +++ b/pkgs/applications/editors/helix/default.nix @@ -1,18 +1,18 @@ -{ fetchFromGitHub, lib, rustPlatform, makeWrapper }: +{ fetchzip, lib, rustPlatform, makeWrapper }: rustPlatform.buildRustPackage rec { pname = "helix"; - version = "0.6.0"; + version = "22.03"; - src = fetchFromGitHub { - owner = "helix-editor"; - repo = pname; - rev = "v${version}"; - fetchSubmodules = true; - sha256 = "sha256-d/USOtcPLjdgzN7TBCouBRmoSDH5LZD4R5Qq7lUrWZw="; + # This release tarball includes source code for the tree-sitter grammars, + # which is not ordinarily part of the repository. + src = fetchzip { + url = "https://github.com/helix-editor/helix/releases/download/${version}/helix-${version}-source.tar.xz"; + sha256 = "DP/hh6JfnyHdW2bg0cvhwlWvruNDvL9bmXM46iAUQzA="; + stripRoot = false; }; - cargoSha256 = "sha256-/EATU7HsGNB35YOBp8sofbPd1nl4d3Ggj1ay3QuHkCI="; + cargoSha256 = "zJQ+KvO+6iUIb0eJ+LnMbitxaqTxfqgu7XXj3j0GiX4="; nativeBuildInputs = [ makeWrapper ]; @@ -29,6 +29,6 @@ rustPlatform.buildRustPackage rec { homepage = "https://helix-editor.com"; license = licenses.mpl20; mainProgram = "hx"; - maintainers = with maintainers; [ yusdacra ]; + maintainers = with maintainers; [ danth yusdacra ]; }; } diff --git a/pkgs/applications/editors/vim/plugins/generated.nix b/pkgs/applications/editors/vim/plugins/generated.nix index c62140c66a1a..59fe030b2412 100644 --- a/pkgs/applications/editors/vim/plugins/generated.nix +++ b/pkgs/applications/editors/vim/plugins/generated.nix @@ -149,12 +149,12 @@ final: prev: LeaderF = buildVimPluginFrom2Nix { pname = "LeaderF"; - version = "2022-04-03"; + version = "2022-04-05"; src = fetchFromGitHub { owner = "Yggdroot"; repo = "LeaderF"; - rev = "cc21177618270255e4181dfa1ade52abebb71c23"; - sha256 = "0i1dgvn3s0d4k84avb4yz28hm05v3n0krq9clizxg8vi24g58lci"; + rev = "7292967624ba89e2c3ab2f374959d5a25d5c9d9f"; + sha256 = "0l2vnickmgcvnlqv13bcqgvpsygkbwzgc70bx253cfbnddqssbpj"; }; meta.homepage = "https://github.com/Yggdroot/LeaderF/"; }; @@ -269,12 +269,12 @@ final: prev: SchemaStore-nvim = buildVimPluginFrom2Nix { pname = "SchemaStore.nvim"; - version = "2022-04-01"; + version = "2022-04-03"; src = fetchFromGitHub { owner = "b0o"; repo = "SchemaStore.nvim"; - rev = "d423f6c7bbf85c701ce0ce5cfd0f3f340e9419d1"; - sha256 = "0mcx09j6b6x7f85m5nhv8h9r2p4h92cv4jh94p4j2w0byh6pfz9b"; + rev = "6598caa4ca4f6fa28f975025bec411611abbcb4d"; + sha256 = "1p0w9i471gqknb8w89ifggsa4hdgdx5zm09mzypqq9344w68fsds"; }; meta.homepage = "https://github.com/b0o/SchemaStore.nvim/"; }; @@ -329,12 +329,12 @@ final: prev: SpaceVim = buildVimPluginFrom2Nix { pname = "SpaceVim"; - version = "2022-04-03"; + version = "2022-04-05"; src = fetchFromGitHub { owner = "SpaceVim"; repo = "SpaceVim"; - rev = "bc5e24c6932f5cdb56520c6fc7e3807cae919fdf"; - sha256 = "1iz477kmmvw16mxq7mcaqiznqc42p7qiz2dp6bb474c9mp1b3c4a"; + rev = "77378e06df9c7ac4345fee932b9c1923a15e8ef9"; + sha256 = "1274xhabkhkla2qljsdby4klyr05hf5vpbrra6i08pm5jhzp5h90"; }; meta.homepage = "https://github.com/SpaceVim/SpaceVim/"; }; @@ -486,12 +486,12 @@ final: prev: aerial-nvim = buildVimPluginFrom2Nix { pname = "aerial.nvim"; - version = "2022-03-31"; + version = "2022-04-05"; src = fetchFromGitHub { owner = "stevearc"; repo = "aerial.nvim"; - rev = "0f22463cc1616c0ae7a5a4ad4d81f133035e61c4"; - sha256 = "0r3my7w1pryqfvzyn32x4063y8cqlx5aps399vv4bq79y60n9rch"; + rev = "85c9bbb69f0cdf7949ace27030e4d130cb9ffca3"; + sha256 = "1lpl9f96m9vkz8lzpq68rvycapy29dbzfm0sdmpx6mccygdb6ds1"; }; meta.homepage = "https://github.com/stevearc/aerial.nvim/"; }; @@ -522,12 +522,12 @@ final: prev: ale = buildVimPluginFrom2Nix { pname = "ale"; - version = "2022-04-01"; + version = "2022-04-05"; src = fetchFromGitHub { owner = "dense-analysis"; repo = "ale"; - rev = "d3df00b89803f1891a772c47fc8eda6a1e9e1baa"; - sha256 = "0cm374asrkp9nbimp73ljsvaqbc2piqyrmci8n0zshyqq1z6klk2"; + rev = "cae550f07b608ab591f7fd37ffcab78a07caad8f"; + sha256 = "0dfhqbfarynnw6p3fq81k2wadinm1fz3z6c3as5kv1bn34y528rn"; }; meta.homepage = "https://github.com/dense-analysis/ale/"; }; @@ -606,12 +606,12 @@ final: prev: async-vim = buildVimPluginFrom2Nix { pname = "async.vim"; - version = "2022-01-04"; + version = "2022-04-04"; src = fetchFromGitHub { owner = "prabirshrestha"; repo = "async.vim"; - rev = "f20569020d65bec3249222606c073c0943045b5e"; - sha256 = "0lff0v2vd06amcjirnpa4wc4l4nsbngcrdqcv34kszyqgzd7phka"; + rev = "2082d13bb195f3203d41a308b89417426a7deca1"; + sha256 = "08mblrrkxn1hivj1yjrn3vx3skd6l3xl96800i6qrsbsjlx5s5k3"; }; meta.homepage = "https://github.com/prabirshrestha/async.vim/"; }; @@ -1206,12 +1206,12 @@ final: prev: cmp-tabnine = buildVimPluginFrom2Nix { pname = "cmp-tabnine"; - version = "2022-04-03"; + version = "2022-04-04"; src = fetchFromGitHub { owner = "tzachar"; repo = "cmp-tabnine"; - rev = "a436b4af861e33ab9281a32cf0369404a3dcdf9f"; - sha256 = "0sqd98qz1ydp9wafnhmnndjx75cm06n27aq24cddnifrxp412f57"; + rev = "1c6e5c55f3a879354891c59cf27da733890bfc88"; + sha256 = "1hmif83kl2h4zz4xqkxb0xc003wzlirr26znx0r1f8z54f1j1hik"; }; meta.homepage = "https://github.com/tzachar/cmp-tabnine/"; }; @@ -1372,6 +1372,18 @@ final: prev: meta.homepage = "https://github.com/iamcco/coc-tailwindcss/"; }; + coc-nvim = buildVimPluginFrom2Nix { + pname = "coc.nvim"; + version = "2022-04-05"; + src = fetchFromGitHub { + owner = "neoclide"; + repo = "coc.nvim"; + rev = "1d85f511f9966b445b5200f35f8db8d4cc0af805"; + sha256 = "0yk9wghix3mh63p7w6hqk7crv4z6c2hi7ywdg6cnnkhnxviih7lp"; + }; + meta.homepage = "https://github.com/neoclide/coc.nvim/"; + }; + codi-vim = buildVimPluginFrom2Nix { pname = "codi.vim"; version = "2022-03-20"; @@ -1615,12 +1627,12 @@ final: prev: coq_nvim = buildVimPluginFrom2Nix { pname = "coq_nvim"; - version = "2022-04-03"; + version = "2022-04-05"; src = fetchFromGitHub { owner = "ms-jpq"; repo = "coq_nvim"; - rev = "ed7e610e42ab70ccbfb2fe08fbdd963fe160a00c"; - sha256 = "1ry1mlcayanmhnlki4ifpkia889adp8rv8kx46k80i9lnpm1mhrq"; + rev = "60df9082402acb1d9d258fb9f9763a085ca04952"; + sha256 = "0gv4h0imxbfgw0g3z6xwqk7iczcs1zq5jdvpbn20gwsizrfgk6ap"; }; meta.homepage = "https://github.com/ms-jpq/coq_nvim/"; }; @@ -2121,12 +2133,12 @@ final: prev: diffview-nvim = buildVimPluginFrom2Nix { pname = "diffview.nvim"; - version = "2022-04-02"; + version = "2022-04-05"; src = fetchFromGitHub { owner = "sindrets"; repo = "diffview.nvim"; - rev = "6d25771128fd0d2ba272261ac84b3e6798b724b9"; - sha256 = "0d36hqwk9pficiqp3w488g6iy1w167jciy8m8sfx0x5fvybd8rxv"; + rev = "71e972ecec34cc9b4917ccdacbbd29062ef9657c"; + sha256 = "0ksq9d0glhn4d4s0png3pbvf7a5rbv1xgna49fz81d5qy5ih0rsl"; }; meta.homepage = "https://github.com/sindrets/diffview.nvim/"; }; @@ -2181,12 +2193,12 @@ final: prev: edge = buildVimPluginFrom2Nix { pname = "edge"; - version = "2022-03-21"; + version = "2022-04-04"; src = fetchFromGitHub { owner = "sainnhe"; repo = "edge"; - rev = "36c08622c4420129fa576ceafa4ed3388d3beb56"; - sha256 = "0hai4ns9chvqb8x7vgcl0i0lxqvqwxwhpa489zsqsp1lb436bwqc"; + rev = "ee4c9b797bce2d5fdcdb3904d2f3916d4ef3e615"; + sha256 = "123xp6hqjz3ys34dii8rbl6l9i5s2sbnjh80sax7d9l22jqcv1qf"; }; meta.homepage = "https://github.com/sainnhe/edge/"; }; @@ -2230,12 +2242,12 @@ final: prev: elvish-vim = buildVimPluginFrom2Nix { pname = "elvish.vim"; - version = "2019-06-29"; + version = "2022-04-04"; src = fetchFromGitHub { owner = "dmix"; repo = "elvish.vim"; - rev = "67ef8e89bff7cb8ea936f2164c8c268bbb3295f0"; - sha256 = "133hr3i7zxysf2gnnimhz3gf3nda3fyfxmqq7mhq544v2mki4x9m"; + rev = "ab3f9cff31fb3c2871d437dd058b13526ddf66a0"; + sha256 = "1y1adg42iv0xhww2vxmxw3pky5syjc3djc1h2s7mm0bjg2marlha"; }; meta.homepage = "https://github.com/dmix/elvish.vim/"; }; @@ -2267,12 +2279,12 @@ final: prev: everforest = buildVimPluginFrom2Nix { pname = "everforest"; - version = "2022-03-21"; + version = "2022-04-04"; src = fetchFromGitHub { owner = "sainnhe"; repo = "everforest"; - rev = "764e36cf49a5845217ef09281adf708ab5abd9e3"; - sha256 = "03byh70krkcgcj6yis7x73bzs8b21qic5qhi01az057rp7mx462l"; + rev = "1a2c447fc014e55b5347b85df090b67af6ed28a6"; + sha256 = "1cx5gm629r23prrn3j9awcmqi7zslzgk6aikws38x0mm9jlr3bxg"; }; meta.homepage = "https://github.com/sainnhe/everforest/"; }; @@ -2832,12 +2844,12 @@ final: prev: gruvbox-material = buildVimPluginFrom2Nix { pname = "gruvbox-material"; - version = "2022-03-21"; + version = "2022-04-04"; src = fetchFromGitHub { owner = "sainnhe"; repo = "gruvbox-material"; - rev = "b8b63c81637c845e8a7c2dff4c206b714f7b93e4"; - sha256 = "0ds72yyca1sgrr5b7i683i0lpfz6n75vrij94vc8z07ivn33qy2r"; + rev = "5b98f2121ff3ece1e0b2ea037b86dd9ce0a346ad"; + sha256 = "0gp4dmrf33m6hpsnqqqv8ab8hflqgwdinr8c8w1k4qkipvg6xkpf"; }; meta.homepage = "https://github.com/sainnhe/gruvbox-material/"; }; @@ -3349,12 +3361,12 @@ final: prev: lean-nvim = buildVimPluginFrom2Nix { pname = "lean.nvim"; - version = "2022-04-01"; + version = "2022-04-04"; src = fetchFromGitHub { owner = "Julian"; repo = "lean.nvim"; - rev = "d4f1097b8fb659eef47899b5dd04d924e24a893b"; - sha256 = "11garckhnycds1njifczgspl6jwl4is25d6bnp22kvvjjy5bc5px"; + rev = "ca6a46c5ecba9f8957948e26b71c226d738f1efa"; + sha256 = "0mxd9xgnfgal9dd56vchqhkg0hhw4jn6mrqm0b885j9krl78hbvq"; }; meta.homepage = "https://github.com/Julian/lean.nvim/"; }; @@ -3505,12 +3517,12 @@ final: prev: lightspeed-nvim = buildVimPluginFrom2Nix { pname = "lightspeed.nvim"; - version = "2022-03-31"; + version = "2022-04-04"; src = fetchFromGitHub { owner = "ggandor"; repo = "lightspeed.nvim"; - rev = "ecb8bbca37ee1c9d153e0835af507905af05f2b5"; - sha256 = "13b221n9h31i4mqiscdzq6299s6615hvdxc16pwsv18w2mfhpiax"; + rev = "cfde2b2fe0dafc5684780399961595357998f611"; + sha256 = "0zcippcfv87vcsbld0kka4mn2lixg0r6m2c82g9bssf304skfhfr"; }; meta.homepage = "https://github.com/ggandor/lightspeed.nvim/"; }; @@ -3744,12 +3756,12 @@ final: prev: luasnip = buildVimPluginFrom2Nix { pname = "luasnip"; - version = "2022-04-01"; + version = "2022-04-05"; src = fetchFromGitHub { owner = "l3mon4d3"; repo = "luasnip"; - rev = "eb5b77e7927e4b28800b4f40c5507d6396b7eeaf"; - sha256 = "03jjrd9k2cksrq5j2js9kdx4np1gy89z2r33baffrfpzy6rnak8b"; + rev = "69cb81cf7490666890545fef905d31a414edc15b"; + sha256 = "1dj86wljkhxri6k536ihds9v27wvs672rgmaj5i4migwxjlh6jb8"; }; meta.homepage = "https://github.com/l3mon4d3/luasnip/"; }; @@ -3804,12 +3816,12 @@ final: prev: marks-nvim = buildVimPluginFrom2Nix { pname = "marks.nvim"; - version = "2022-03-03"; + version = "2022-04-03"; src = fetchFromGitHub { owner = "chentau"; repo = "marks.nvim"; - rev = "74885b10abf792f61a612f5724030678b9704dab"; - sha256 = "12653fd7h1s0hf55399vdk2w3aqyx8n8v62kgpvb62mywbg37bam"; + rev = "8e80a20a170434bc77decc97bc4364c3ba848925"; + sha256 = "0bah5xjrwq43ihw37gw8nxsj3qdh9fjqs9n7fkfhsg6hyp1qy4fc"; }; meta.homepage = "https://github.com/chentau/marks.nvim/"; }; @@ -3852,12 +3864,12 @@ final: prev: mini-nvim = buildVimPluginFrom2Nix { pname = "mini.nvim"; - version = "2022-04-03"; + version = "2022-04-05"; src = fetchFromGitHub { owner = "echasnovski"; repo = "mini.nvim"; - rev = "aedcaba7892b8a016bf385672ec70ff99cd7876c"; - sha256 = "0p4q4pxg692b1frs9v8rqbbha7jb4ngjm714ajfiaawn6kgy6r23"; + rev = "10b1fb8ead63309be01f48da78d7d83d0f2b041f"; + sha256 = "015ls360cwifh1jdzf6zxbqlc0dd0mgl029vs3brsn8h7b78rbv0"; }; meta.homepage = "https://github.com/echasnovski/mini.nvim/"; }; @@ -4452,12 +4464,12 @@ final: prev: nightfox-nvim = buildVimPluginFrom2Nix { pname = "nightfox.nvim"; - version = "2022-04-02"; + version = "2022-04-05"; src = fetchFromGitHub { owner = "EdenEast"; repo = "nightfox.nvim"; - rev = "18fea7708f6195ea26ec87701b59bb61a64532d8"; - sha256 = "1aj6sn20hhdz2kmjgi4gr3m9izhbhjlw7kx2ydkm8bfhjx5wpgjq"; + rev = "0670b85c5322da682498be9f355e050507fa6622"; + sha256 = "11gzi6kx1f57a6b5w7rqjwh0qah757g9814fw7qv76wc9cwbki1v"; }; meta.homepage = "https://github.com/EdenEast/nightfox.nvim/"; }; @@ -4560,12 +4572,12 @@ final: prev: null-ls-nvim = buildVimPluginFrom2Nix { pname = "null-ls.nvim"; - version = "2022-04-02"; + version = "2022-04-05"; src = fetchFromGitHub { owner = "jose-elias-alvarez"; repo = "null-ls.nvim"; - rev = "899785c17c8ec701efc618520edf46bc0f3f367b"; - sha256 = "0pwvq4aqfjr4vsymc40ppk6jb0qqclj3k47m6vzp2p1d4wa0qbz9"; + rev = "f3107c3b211d62f53d34cbf0ca100fc948bc42d4"; + sha256 = "07x55chr28f9azqgjjwv0dnn9l0gm0n4z1wdf6libikbnh9jm522"; }; meta.homepage = "https://github.com/jose-elias-alvarez/null-ls.nvim/"; }; @@ -4944,12 +4956,12 @@ final: prev: nvim-lsp-ts-utils = buildVimPluginFrom2Nix { pname = "nvim-lsp-ts-utils"; - version = "2022-03-15"; + version = "2022-04-04"; src = fetchFromGitHub { owner = "jose-elias-alvarez"; repo = "nvim-lsp-ts-utils"; - rev = "1d2c585cb69a91cf53f17a90d2544ed10eb03193"; - sha256 = "07vf3xzcld2h3j6hnrrib60p2gnjkcb96h33sm8kfdvaj1578pbd"; + rev = "1826275ee0fc7fded65e8716b231db86a17080e3"; + sha256 = "129zjds8c69hahv307wnpdsjzfh29flsr99lkjma8dymsan96lb0"; }; meta.homepage = "https://github.com/jose-elias-alvarez/nvim-lsp-ts-utils/"; }; @@ -4980,12 +4992,12 @@ final: prev: nvim-metals = buildVimPluginFrom2Nix { pname = "nvim-metals"; - version = "2022-04-02"; + version = "2022-04-04"; src = fetchFromGitHub { owner = "scalameta"; repo = "nvim-metals"; - rev = "64db05106c952bfc29ad165f21c43e7fdc97eaf1"; - sha256 = "0m4ab6774j0yj8b1h6p0y0m5zgs4w3x2vn20ahx3z6dr6bzk2pph"; + rev = "6da18b24f1215f05c7c7edbf460c93cefb9b5688"; + sha256 = "1mv41ryxsx6wm909yby6z84xmhw3ibigw8zk34prhyvszz3psmvl"; }; meta.homepage = "https://github.com/scalameta/nvim-metals/"; }; @@ -5040,12 +5052,12 @@ final: prev: nvim-scrollview = buildVimPluginFrom2Nix { pname = "nvim-scrollview"; - version = "2022-03-15"; + version = "2022-04-04"; src = fetchFromGitHub { owner = "dstein64"; repo = "nvim-scrollview"; - rev = "f1cdec5869de70359c8dff06e9057b99a56a0e48"; - sha256 = "028wvmdbj2fllkw6nr2sasxpamqpl3gmrzdn8lw2bjfzy5xf88x1"; + rev = "0e463065dd2b213d9c6adb00c88000c1bdb5c633"; + sha256 = "1k47r446a850bxwb70n00w5wz835jgj7sg175nldp6brq4lrd1x5"; }; meta.homepage = "https://github.com/dstein64/nvim-scrollview/"; }; @@ -5088,24 +5100,24 @@ final: prev: nvim-tree-lua = buildVimPluginFrom2Nix { pname = "nvim-tree.lua"; - version = "2022-04-03"; + version = "2022-04-04"; src = fetchFromGitHub { owner = "kyazdani42"; repo = "nvim-tree.lua"; - rev = "63688809682af5fcfa6aedec21b1c9ef3aeb2f4c"; - sha256 = "0jmllkfj5l5f5a6nlzlglh48n12rmxwb57vz346ji1a1qrrs6bhj"; + rev = "924aa290921426682f86495cf64f48fcdab3c2fd"; + sha256 = "01wn4vfk23ciyd69drh49jz67x254dn0q6k55akqc9pxlllds4pg"; }; meta.homepage = "https://github.com/kyazdani42/nvim-tree.lua/"; }; nvim-treesitter = buildVimPluginFrom2Nix { pname = "nvim-treesitter"; - version = "2022-04-03"; + version = "2022-04-05"; src = fetchFromGitHub { owner = "nvim-treesitter"; repo = "nvim-treesitter"; - rev = "2472e47e15eb56e8d6d421d7c2c7169140db2813"; - sha256 = "1cyi7h5xpw2hfyniwqyc5fnmvlyjb6bfbg4l586kn8q34hq5s3kq"; + rev = "f083b7bbfe9480df00a45ab5a0978cb2586dddf2"; + sha256 = "0zhgkbzr2hnwy94zfg2mk9l364rcmw7z2bvhbbriywg5k7drpla8"; }; meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter/"; }; @@ -5280,12 +5292,12 @@ final: prev: octo-nvim = buildVimPluginFrom2Nix { pname = "octo.nvim"; - version = "2022-04-01"; + version = "2022-04-03"; src = fetchFromGitHub { owner = "pwntester"; repo = "octo.nvim"; - rev = "a83219f69320fc65c12427d6bcbcea135861bb3d"; - sha256 = "11hqfz7rsxnsxqw06zpj3mq1hxz06hsdjbav00jd4zryvcgs6r3v"; + rev = "50d58b195ea1f1ac620d775f39c95fe524f051d1"; + sha256 = "0cmzb6cp8n8jwzjmv3h0ikv5gn3dn3aq8kgsnmrkqlafh19692rr"; }; meta.homepage = "https://github.com/pwntester/octo.nvim/"; }; @@ -5328,12 +5340,12 @@ final: prev: onedarkpro-nvim = buildVimPluginFrom2Nix { pname = "onedarkpro.nvim"; - version = "2022-03-25"; + version = "2022-04-04"; src = fetchFromGitHub { owner = "olimorris"; repo = "onedarkpro.nvim"; - rev = "46b0ffb97f3778a1f6f5da6471a42f3f64bbf238"; - sha256 = "13gyfz9fxgzvmcwwv19f8csmanv52144gvr5xdgvcg5nygkmydcp"; + rev = "86d633963bfbd6ff5448589a20a41deb8c19f90e"; + sha256 = "0nrq65gd2arxg4r0sqh4y4ikaadlrsbgcz1zq7yfpfbb76cia26w"; }; meta.homepage = "https://github.com/olimorris/onedarkpro.nvim/"; }; @@ -5380,8 +5392,8 @@ final: prev: src = fetchFromGitHub { owner = "nvim-orgmode"; repo = "orgmode"; - rev = "3a87036a0b6315a41b4292885cbe372b2f763d99"; - sha256 = "1fak1pfvyy4wwhc4lww5c2ak6b8x0pwgkbljm5azd943lravya1l"; + rev = "8e52714a1851bb3c781a744489c31bf8fb2c4e28"; + sha256 = "1h3rzab981y0yp7kfkjpgjlj03kf6lyxxg2wikbdbkyz1c2bbkvk"; }; meta.homepage = "https://github.com/nvim-orgmode/orgmode/"; }; @@ -6135,12 +6147,12 @@ final: prev: sonokai = buildVimPluginFrom2Nix { pname = "sonokai"; - version = "2022-03-21"; + version = "2022-04-04"; src = fetchFromGitHub { owner = "sainnhe"; repo = "sonokai"; - rev = "774ccdb95a04539530be34fa17a34c0f64139aca"; - sha256 = "1myz05j6i7h0yyffbip6a2gpfb61y35w48aa1wlh8i3m9bhy7g4a"; + rev = "444e40de8dac0afb3654b860d4d005cb34547840"; + sha256 = "10jnvax4fmvmgham3s632j7v7f3cbz96yxciscx9rrsfgcrlm9d4"; }; meta.homepage = "https://github.com/sainnhe/sonokai/"; }; @@ -6582,12 +6594,12 @@ final: prev: telescope-coc-nvim = buildVimPluginFrom2Nix { pname = "telescope-coc.nvim"; - version = "2022-02-21"; + version = "2022-04-03"; src = fetchFromGitHub { owner = "fannheyward"; repo = "telescope-coc.nvim"; - rev = "33a8785dc0d0a5fdd243875eba48bfec95e2cebc"; - sha256 = "1zf4x7jwy0p52nq2yhzap9bi8kc4npbdvxs6gbwy9kd1ddidfrkb"; + rev = "9748123aafbe915f34ddcfe583fc868f301f51ba"; + sha256 = "0kvwp5bpqw5vygacrq9cdr3237w7fmj3sqx1vk12sxbx85cdcvz9"; }; meta.homepage = "https://github.com/fannheyward/telescope-coc.nvim/"; }; @@ -7128,8 +7140,8 @@ final: prev: src = fetchFromGitHub { owner = "axieax"; repo = "urlview.nvim"; - rev = "ca2b8bca2fa229275d3c33c13bc61a76cda9b714"; - sha256 = "10q1ifsi4z2g8f2kvij9kmfl41lysr7lnxl73m59zzp27zl2ddd8"; + rev = "8815c06145f36dce7734ba4b95eb50c3e24074c4"; + sha256 = "1n46x1v2rw70ad6b6z04ik9rjvpkl8bbw62l8wfn7lkzdjgwi50d"; }; meta.homepage = "https://github.com/axieax/urlview.nvim/"; }; @@ -7832,12 +7844,12 @@ final: prev: vim-bufkill = buildVimPluginFrom2Nix { pname = "vim-bufkill"; - version = "2020-08-04"; + version = "2022-04-05"; src = fetchFromGitHub { owner = "qpkorr"; repo = "vim-bufkill"; - rev = "2bd6d7e791668ea52bb26be2639406fcf617271f"; - sha256 = "1cvma03bg9psil67kg1x90lny7a31ljz5shybcl1jrfpzsybcqvg"; + rev = "ba6253de82f982722ef7eaee6751d788aefd568a"; + sha256 = "187pj4dw78xd3wlpf24nll89kggk4q38gi51dnq95qywfk4w2k5h"; }; meta.homepage = "https://github.com/qpkorr/vim-bufkill/"; }; @@ -8360,12 +8372,12 @@ final: prev: vim-easymotion = buildVimPluginFrom2Nix { pname = "vim-easymotion"; - version = "2020-12-17"; + version = "2022-04-04"; src = fetchFromGitHub { owner = "easymotion"; repo = "vim-easymotion"; - rev = "d75d9591e415652b25d9e0a3669355550325263d"; - sha256 = "1j2kgh1iri0fqkbgbgvfjqgsksfipnmr1xbj554i602pnm0hbg19"; + rev = "b3cfab2a6302b3b39f53d9fd2cd997e1127d7878"; + sha256 = "1h30ak0ir5320asd5p7a9bqiv5whakv3022b3rakgnsjg503nxz1"; }; meta.homepage = "https://github.com/easymotion/vim-easymotion/"; }; @@ -8684,12 +8696,12 @@ final: prev: vim-fugitive = buildVimPluginFrom2Nix { pname = "vim-fugitive"; - version = "2022-04-01"; + version = "2022-04-05"; src = fetchFromGitHub { owner = "tpope"; repo = "vim-fugitive"; - rev = "d725ef529e3de712304ab0f9c7e5e61107a00cad"; - sha256 = "0sw3qxs7j2cqzbdcip4sphmi8jj0y665kacxpgjhry6xa36rh24l"; + rev = "cba863444c9e970bc7282f76df0f559b5fc830bd"; + sha256 = "09g9cgs89c02qsjyp3n343dkqkwzr9jwrhn6l51c8c3dclp07870"; }; meta.homepage = "https://github.com/tpope/vim-fugitive/"; }; @@ -8832,8 +8844,8 @@ final: prev: src = fetchFromGitHub { owner = "fatih"; repo = "vim-go"; - rev = "421563081bddaec1f7a66710b5c8ee305724d2a9"; - sha256 = "0fddj4ara4zpdlri4r0rxbivr7xcf0zaakmq51m4b6k66q21f3fz"; + rev = "119797938eeb875e91182d6bd86eb001d0ef9029"; + sha256 = "1rclpd2nf26slz38imq8g5h1pknkwdbgnv4iz04vhq7k3gvls6vk"; }; meta.homepage = "https://github.com/fatih/vim-go/"; }; @@ -9213,12 +9225,12 @@ final: prev: vim-jack-in = buildVimPluginFrom2Nix { pname = "vim-jack-in"; - version = "2021-03-27"; + version = "2022-04-03"; src = fetchFromGitHub { owner = "clojure-vim"; repo = "vim-jack-in"; - rev = "80c69cc021486d1cfa5dac7d9d6ab6954ff20c27"; - sha256 = "11dw8kngzznzf91n6iyvw7yi1l35vgpva32dck3n25vpxc24krpn"; + rev = "5467e00e26f15680b0a7998f8aa20d5a7dd44cd5"; + sha256 = "1wi379l8d793v6hjx11v0dhgdn8a9ihx64gv51v9wpmjlvp9xbzd"; }; meta.homepage = "https://github.com/clojure-vim/vim-jack-in/"; }; @@ -9538,12 +9550,12 @@ final: prev: vim-lsp = buildVimPluginFrom2Nix { pname = "vim-lsp"; - version = "2022-03-04"; + version = "2022-04-05"; src = fetchFromGitHub { owner = "prabirshrestha"; repo = "vim-lsp"; - rev = "bfb7541eb88eb9804287af39aca70102e60d2bf0"; - sha256 = "1kaa92ylw5i8ysb2yxyqf666194wwcixgagi7gq3apkddr35a6g0"; + rev = "edd6629f0940e37ca988620e404e79e600962a6f"; + sha256 = "0qc2x0la72xhbbwdrm6iyjlip3pcfj0wk4msi6zfz9zmyrzcfnhb"; }; meta.homepage = "https://github.com/prabirshrestha/vim-lsp/"; }; @@ -9911,12 +9923,12 @@ final: prev: vim-obsession = buildVimPluginFrom2Nix { pname = "vim-obsession"; - version = "2022-03-25"; + version = "2022-04-05"; src = fetchFromGitHub { owner = "tpope"; repo = "vim-obsession"; - rev = "d2818a614ec3a5d174c6bb19e87e2eeb207f4900"; - sha256 = "08scgvpc5rmcc6xwbqir1b8y4fx58im5gn55fpg33s5346lxwd62"; + rev = "7d39576149d17bde3c096fd57e3a2cdae65deaf5"; + sha256 = "0g716c3dvd7068lfgcbxlzn86529kji4zms5n2xgrn3h0vn722zz"; }; meta.homepage = "https://github.com/tpope/vim-obsession/"; }; @@ -10199,12 +10211,12 @@ final: prev: vim-plug = buildVimPluginFrom2Nix { pname = "vim-plug"; - version = "2022-01-03"; + version = "2022-04-04"; src = fetchFromGitHub { owner = "junegunn"; repo = "vim-plug"; - rev = "e300178a0e2fb04b56de8957281837f13ecf0b27"; - sha256 = "0bfgadn31n516x0m0kr88jk9x79rl6zllnwij759wpazmw1p0xg8"; + rev = "93ab5909784e09134e90f15cafa8a5edcc9a00fe"; + sha256 = "0cq2ilqqq90bpp8pzylqi759hqb9ni6l1rqkvj6aj7a4b29a59nv"; }; meta.homepage = "https://github.com/junegunn/vim-plug/"; }; @@ -11052,12 +11064,12 @@ final: prev: vim-test = buildVimPluginFrom2Nix { pname = "vim-test"; - version = "2022-03-26"; + version = "2022-04-04"; src = fetchFromGitHub { owner = "vim-test"; repo = "vim-test"; - rev = "56bbfa295fe62123d2ebe8ed57dd002afab46097"; - sha256 = "0ggk1c5767hjjfg1nwdm880bj9cgj6bgvf25dgjhwx83xxhzpp6d"; + rev = "d340f840725e6ee1b8abc63e852d80ded496ffc9"; + sha256 = "08y4x97l0749i6d7qc512irql5zpxdwyzrbsw6h507jq7cvaw8hb"; }; meta.homepage = "https://github.com/vim-test/vim-test/"; }; @@ -11712,12 +11724,12 @@ final: prev: vimspector = buildVimPluginFrom2Nix { pname = "vimspector"; - version = "2022-03-29"; + version = "2022-04-03"; src = fetchFromGitHub { owner = "puremourning"; repo = "vimspector"; - rev = "e4b5c76b9c9e333f7cdc853af42e7ef12a1d5e58"; - sha256 = "15ycns70fafhi0nx7sriv9fkxnkkg7hz7amc1pz5rhpnns78gbnz"; + rev = "da851334c72c44de95d00a152f98ee8e628be68f"; + sha256 = "16390g548y5bp6c08d481jafav83rbg4zd69r6fbfcnhzxmv7vhs"; fetchSubmodules = true; }; meta.homepage = "https://github.com/puremourning/vimspector/"; @@ -12050,12 +12062,12 @@ final: prev: chad = buildVimPluginFrom2Nix { pname = "chad"; - version = "2022-04-03"; + version = "2022-04-05"; src = fetchFromGitHub { owner = "ms-jpq"; repo = "chadtree"; - rev = "08f66a1e9f6befe914a554db90c047fe47d7e228"; - sha256 = "1dgbddn69cd8s3mbav5rs22h6ng065p27kv4wwa2s6zn27wnysky"; + rev = "e03f7c8cbaeb85272d2d3d2c24af5065be4f5e71"; + sha256 = "08971zkma4zwz5511vzhgi99000xin5psy1hkancxr4v2bw68dh3"; }; meta.homepage = "https://github.com/ms-jpq/chadtree/"; }; @@ -12120,18 +12132,6 @@ final: prev: meta.homepage = "https://github.com/shaunsingh/moonlight.nvim/"; }; - release = buildVimPluginFrom2Nix { - pname = "release"; - version = "2022-04-02"; - src = fetchFromGitHub { - owner = "neoclide"; - repo = "coc.nvim"; - rev = "d6a665bb13044d4899e2a3529c3ca68104d9b2f5"; - sha256 = "0pgzygvn5x2szm0fz12rlbblf1pk92r8p5fn8c7frxnmb2nsgsvd"; - }; - meta.homepage = "https://github.com/neoclide/coc.nvim/"; - }; - rose-pine = buildVimPluginFrom2Nix { pname = "rose-pine"; version = "2022-04-01"; diff --git a/pkgs/applications/editors/vim/plugins/vim-plugin-names b/pkgs/applications/editors/vim/plugins/vim-plugin-names index 6845738e8a45..065063091a5c 100644 --- a/pkgs/applications/editors/vim/plugins/vim-plugin-names +++ b/pkgs/applications/editors/vim/plugins/vim-plugin-names @@ -115,7 +115,7 @@ https://github.com/neoclide/coc-neco/,, https://github.com/iamcco/coc-spell-checker/,, https://github.com/coc-extensions/coc-svelte/,, https://github.com/iamcco/coc-tailwindcss/,, -https://github.com/neoclide/coc.nvim/,,release +https://github.com/neoclide/coc.nvim/,release, https://github.com/metakirby5/codi.vim/,, https://github.com/tjdevries/colorbuddy.nvim/,, https://github.com/lilydjwg/colorizer/,, diff --git a/pkgs/applications/graphics/shotwell/default.nix b/pkgs/applications/graphics/shotwell/default.nix index 56d41d3dd503..098d330f004a 100644 --- a/pkgs/applications/graphics/shotwell/default.nix +++ b/pkgs/applications/graphics/shotwell/default.nix @@ -41,11 +41,11 @@ stdenv.mkDerivation rec { pname = "shotwell"; - version = "0.30.14"; + version = "0.30.15"; src = fetchurl { url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; - sha256 = "sha256-McLkgzkI02GcssNnWgXw2lnCuqduKLkFOF/VbADBKJU="; + sha256 = "sha256-OlKtYLEC2g31902wMcRdTM8mNRPJVGFu4WZL9PTpvck="; }; nativeBuildInputs = [ diff --git a/pkgs/applications/misc/pytrainer/default.nix b/pkgs/applications/misc/pytrainer/default.nix index d7969155370e..675df5d5ba3e 100644 --- a/pkgs/applications/misc/pytrainer/default.nix +++ b/pkgs/applications/misc/pytrainer/default.nix @@ -26,13 +26,13 @@ let }; in python.pkgs.buildPythonApplication rec { pname = "pytrainer"; - version = "2.0.2"; + version = "2.1.0"; src = fetchFromGitHub { owner = "pytrainer"; repo = "pytrainer"; rev = "v${version}"; - sha256 = "sha256-i3QC6ct7tS8B0QQjtVqPcd03LLIxo6djQe4YX35syzk="; + sha256 = "sha256-U2SVQKkr5HF7LB0WuCZ1xc7TljISjCNO26QUDGR+W/4="; }; propagatedBuildInputs = with python.pkgs; [ diff --git a/pkgs/applications/networking/browsers/chromium/upstream-info.json b/pkgs/applications/networking/browsers/chromium/upstream-info.json index cd525f8d2add..c19bb1dfe8a5 100644 --- a/pkgs/applications/networking/browsers/chromium/upstream-info.json +++ b/pkgs/applications/networking/browsers/chromium/upstream-info.json @@ -1,8 +1,8 @@ { "stable": { - "version": "100.0.4896.60", - "sha256": "1p7zggnhsz9gj3zil0nyas4ym5bd94vs0z6mdg7r1l0s0vrsaphf", - "sha256bin64": "07wavs9r6ilwx5rzyqvydcjskg6sml5b8m6mw7qzykvhs8bnvfh5", + "version": "100.0.4896.75", + "sha256": "1h60l1g340gvm4lz2lps6dqpvahpzn24hz47y2qvc6mavx9d6ki4", + "sha256bin64": "0nrrkgwcnqg4l8x1nk1rdxnv9xa0c24ync1yls7s9rc34wkk8sc5", "deps": { "gn": { "version": "2022-01-21", @@ -12,10 +12,10 @@ } }, "chromedriver": { - "version": "100.0.4896.20", - "sha256_linux": "1d3g43s5adn1vs7iv5ccp0f376qvnvf67mhid7kxkysnqv55bxdw", - "sha256_darwin": "129vw1ablb6xyr7j30zxkh7n835wi82ksd8c5m11mmdnrmrcdabv", - "sha256_darwin_aarch64": "0zgnisvdvcc726q22jn1cyfg41zz1af5l3fy3m81jlfhph2ibbra" + "version": "100.0.4896.60", + "sha256_linux": "0q9ddwhccd0jmzi8jksxlfjavmm913c9bmb4lz1ahxplsnxd8z31", + "sha256_darwin": "0q0ikhf5pkbrqln91fklbbfmqi33nfcjdg5dm7zb66b4alxwwas9", + "sha256_darwin_aarch64": "1vf3s0gq61riqsv85pr6xj0c2afdnv1b2w4gp2bwlfq4ffkfq38y" } }, "beta": { diff --git a/pkgs/applications/networking/browsers/firefox-bin/release_sources.nix b/pkgs/applications/networking/browsers/firefox-bin/release_sources.nix index 080fec91c1ca..407bf2ba3753 100644 --- a/pkgs/applications/networking/browsers/firefox-bin/release_sources.nix +++ b/pkgs/applications/networking/browsers/firefox-bin/release_sources.nix @@ -1,985 +1,985 @@ { - version = "98.0.2"; + version = "99.0"; sources = [ - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/ach/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/ach/firefox-99.0.tar.bz2"; locale = "ach"; arch = "linux-x86_64"; - sha256 = "e40a11afbb7a464eb7817457cf360ec2b4e0d77b8d5db5d7856c5b79cdb1425e"; + sha256 = "86cf773e1637f17ce85810712c6fae9a2e5d9d7ee0bf7b265a30f4a469c87215"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/af/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/af/firefox-99.0.tar.bz2"; locale = "af"; arch = "linux-x86_64"; - sha256 = "8d0570e82ec73708933cbe2cacd53d89503cdc7d1e97cc57edaa066960340a1c"; + sha256 = "72e525fee2e85110b77057178e77ddb277dd9c58609befbad04653e40cba6842"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/an/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/an/firefox-99.0.tar.bz2"; locale = "an"; arch = "linux-x86_64"; - sha256 = "04403b0d68911dde99880c76d1e87f1315d1c463a63711e37e0f40abbfd9c2eb"; + sha256 = "373700cebfc90fad01f5add0d5a0ff49ccab3ce8286adf3b3c91f2d69c51a18a"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/ar/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/ar/firefox-99.0.tar.bz2"; locale = "ar"; arch = "linux-x86_64"; - sha256 = "57ab64dfa19fead2a828333456921465cd77e37a36d2030f81b7c022062fe215"; + sha256 = "50dcb4b8bf1a6df6fd17975c9f5c3a2b54b23697191c853d48e08a01429ea102"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/ast/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/ast/firefox-99.0.tar.bz2"; locale = "ast"; arch = "linux-x86_64"; - sha256 = "3dfb8f3c288e6c910d929da7c0228c52c490e33a1fbc99ce90c231e81cd9896d"; + sha256 = "947401a336c715809de254d7e6381b902dc663e350bc1f89bf4ad08819a1f811"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/az/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/az/firefox-99.0.tar.bz2"; locale = "az"; arch = "linux-x86_64"; - sha256 = "b5fc1a8d7decd2372026f9e4d4d8bb4d5fd839b165168f01e08a9641c0d7f92e"; + sha256 = "87115f184011114f54110b3dcdbe2c7833a90be44f38294395274971710f6162"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/be/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/be/firefox-99.0.tar.bz2"; locale = "be"; arch = "linux-x86_64"; - sha256 = "8b1fffc493c20318533879ecf9a006d0215d7c6f2323134fadecdfea68aaaa6f"; + sha256 = "ea0844501b10ece23edc98781a2428de1f9a1b012a06c062765b1558c0d66706"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/bg/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/bg/firefox-99.0.tar.bz2"; locale = "bg"; arch = "linux-x86_64"; - sha256 = "852016bb71423b058a195d1b8631331a6da144a20c0d74b641d6189c93730ad5"; + sha256 = "9cf618bfc8f46e9ec787274b320879d56bb1437685b3a8d057def285a1ab3621"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/bn/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/bn/firefox-99.0.tar.bz2"; locale = "bn"; arch = "linux-x86_64"; - sha256 = "748e7303d01ca41fed55dc31d0bb57458c69180499bb5915ca4c835f7fdb56c4"; + sha256 = "c41c3fd72734b6f81e4b92682a2b004058dab570e29721d227cc32719c5d7433"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/br/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/br/firefox-99.0.tar.bz2"; locale = "br"; arch = "linux-x86_64"; - sha256 = "efc2e20d5201621c76411ffc3c7df227c9462bb6994f7ad19d735c986c362aa1"; + sha256 = "627f1cf6109a6c529cabd537ac47a4ba907b7f4a2c2b565f715535d08696d8f4"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/bs/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/bs/firefox-99.0.tar.bz2"; locale = "bs"; arch = "linux-x86_64"; - sha256 = "adb507af1a64e2c72193942b2c3a839576ca7d493541bdfed06b0f838f3bef43"; + sha256 = "283f229ea9b0430613988fce636ee11a91d73e1e5caba2671965b57df39127ed"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/ca-valencia/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/ca-valencia/firefox-99.0.tar.bz2"; locale = "ca-valencia"; arch = "linux-x86_64"; - sha256 = "1cb7d989fcb1ca726d022a2e20523427d9aa0718d2129cea5102971624edff61"; + sha256 = "1fb7e3474af461ea33769c8ac2bf3f0c7d6376caf7d8de549f11987fd83be198"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/ca/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/ca/firefox-99.0.tar.bz2"; locale = "ca"; arch = "linux-x86_64"; - sha256 = "0d746e8c8ca233d4f4161134f920a44e1a3593a2277101e20184087f76a443b5"; + sha256 = "68045b6c2fae1024fd85c759e3da18857a7ab335da055c105c428244ef98127c"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/cak/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/cak/firefox-99.0.tar.bz2"; locale = "cak"; arch = "linux-x86_64"; - sha256 = "fac629e27bb9e60fef81fa58268f9367a95af59b299a628ffe692731fd5ae4c8"; + sha256 = "b6bd14470ec62436e99d72097e7f82566cefe70a2a0d57be729b9e3665070004"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/cs/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/cs/firefox-99.0.tar.bz2"; locale = "cs"; arch = "linux-x86_64"; - sha256 = "7f6f30ea9afac44b1d1fde8abe2701f8f83b3014aa1c98fba1e2c4ae6c841140"; + sha256 = "ad005d5e99575a0773882f933344453a73478e58c7d48769735a69ed39ca59f8"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/cy/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/cy/firefox-99.0.tar.bz2"; locale = "cy"; arch = "linux-x86_64"; - sha256 = "63c2b0bf442365c7db1cf96f192db016c4ddd4233a32190d657779a254871a2f"; + sha256 = "6f22fe5b3bc4649b4f73220530571140d94291f69c4fd7c512b88a3471291e3c"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/da/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/da/firefox-99.0.tar.bz2"; locale = "da"; arch = "linux-x86_64"; - sha256 = "f7d18039814a6310ce4a4e37d10d131639868a6f5ae85c4718ca1f9ceb90ae13"; + sha256 = "2b1b37cd8e270f410a1bfa1e0e04dfb5acb17853d4f9a184eb52655b79f9d29b"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/de/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/de/firefox-99.0.tar.bz2"; locale = "de"; arch = "linux-x86_64"; - sha256 = "736f10e89507455708e40c9cdbd093fb1cb802ada7dd5d3e0d612cb0e11db096"; + sha256 = "a115c9b1a29baa75579dd6fea40f7f498177dba0ba901f4c6de35a07fbcbb9a1"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/dsb/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/dsb/firefox-99.0.tar.bz2"; locale = "dsb"; arch = "linux-x86_64"; - sha256 = "50ca85b163011ebdda69be8772a76ff4a912653a03d527784b18bbffd7c63a16"; + sha256 = "ecdf01b499c393e06caeba03be7e3c89303a3f770859f228155bceb8c1a9c49b"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/el/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/el/firefox-99.0.tar.bz2"; locale = "el"; arch = "linux-x86_64"; - sha256 = "4b3a28670c6a7577f65dba7f857e8c68009a8d1e80089707d8d830e02a5f7fa3"; + sha256 = "0205616cbfa802c67abff6cbb8e23e26b45fb8b224b5d7c02dece0ff3da4b924"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/en-CA/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/en-CA/firefox-99.0.tar.bz2"; locale = "en-CA"; arch = "linux-x86_64"; - sha256 = "f3a7c9de172b6ec0673d2600537ab9265cf3cde3e2fa614424e9f4c08986eb7c"; + sha256 = "764ed326f89e0e3ef0cab0252cbfafe8b1b739268f787f5893d1110e4cfde4b5"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/en-GB/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/en-GB/firefox-99.0.tar.bz2"; locale = "en-GB"; arch = "linux-x86_64"; - sha256 = "49f044b0b5f841d5e42b9c6275dc7c78e2b2f903aa28f0d6a02a25a41d781d23"; + sha256 = "dcfe8088136427476353c2797ee9ca159414f60b09fffe126eeb009ea041ebdd"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/en-US/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/en-US/firefox-99.0.tar.bz2"; locale = "en-US"; arch = "linux-x86_64"; - sha256 = "07c5f3dad0850a92d5c609278fb1fe682b2562fa55e6733c09a6b4da7373bfcc"; + sha256 = "b6d895047c8911a49d944f78f710718091957f0057344cea735096ab4a8c07d1"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/eo/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/eo/firefox-99.0.tar.bz2"; locale = "eo"; arch = "linux-x86_64"; - sha256 = "98626ef3b514d1ddf0d9d530ef7b3ac8bb504717eb633f036fe9cb9437d8ea56"; + sha256 = "acdf7d24ac1c91802938e8151c2876765532d935c3add9028a15ff47e0dedb38"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/es-AR/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/es-AR/firefox-99.0.tar.bz2"; locale = "es-AR"; arch = "linux-x86_64"; - sha256 = "86a57a29b086fbc1d59731f94b792d1116a358e4735d9a8d08c022a2d5c7d0d6"; + sha256 = "6d350750f744ff633168008d364b70a07a3becae1eb102c73bd2ddb6ddd8fbf5"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/es-CL/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/es-CL/firefox-99.0.tar.bz2"; locale = "es-CL"; arch = "linux-x86_64"; - sha256 = "834bbbe0388631cae1e87e464c0b4e0151c37341828d71dd99fccc2d56c179c2"; + sha256 = "9a4720bdf50e13bea6c98ba2e48b85dcca13683594e7b4d1e280649ac069ac3b"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/es-ES/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/es-ES/firefox-99.0.tar.bz2"; locale = "es-ES"; arch = "linux-x86_64"; - sha256 = "590efa38b4a374ccac89128a0e84de77492f1a8702e70b3b13d9a456575963f6"; + sha256 = "cb78b97c05002db97bd15038b2c34f582199934302c1157912f95a7304112536"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/es-MX/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/es-MX/firefox-99.0.tar.bz2"; locale = "es-MX"; arch = "linux-x86_64"; - sha256 = "f64ac621daa5f891541d836727d91cb56d5eb8db6093aa7f83af19adfc49ffc9"; + sha256 = "10965923df9ed49c0dbe7a00154f70eb7fcc2254de77d0eacb115a0466881dbd"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/et/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/et/firefox-99.0.tar.bz2"; locale = "et"; arch = "linux-x86_64"; - sha256 = "08374c6ae7b8eff3b6ce748c87f18136c86f73abf6238383ba3c4b1555f8a003"; + sha256 = "dafe509497714b9fa6d97ff279cb0f79b8ab0ddec1a1ca0f538301875acbf22c"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/eu/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/eu/firefox-99.0.tar.bz2"; locale = "eu"; arch = "linux-x86_64"; - sha256 = "3ce288c26201feca071bfd56f66fca69da7a68b3a468405ff6a665cb666cd799"; + sha256 = "fa3098d1dc3fe3a4775fb431465ff9f1d6bea286cd0753afe373b907a09a7a41"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/fa/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/fa/firefox-99.0.tar.bz2"; locale = "fa"; arch = "linux-x86_64"; - sha256 = "3bfac0751b251dbd3ddb253973bb1ad7afe58f7cb824bef59d4f6c7dc5acec78"; + sha256 = "cc7374de92c433d30e98f01e0cc742bb0fe3ec90894953423ead3e756b2377aa"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/ff/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/ff/firefox-99.0.tar.bz2"; locale = "ff"; arch = "linux-x86_64"; - sha256 = "2b962a0442a12c7f2dd7d2c716fbac0ad9435debf06d1c1e9f95fcb62fb90d50"; + sha256 = "41765b0971f3185b0124726983de84dbfa6ce9f2018ba53cdb69703302ee50f8"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/fi/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/fi/firefox-99.0.tar.bz2"; locale = "fi"; arch = "linux-x86_64"; - sha256 = "705b21bdfa9826563042d0014a9225870c87b3351b9920cca35e203d1375f9b6"; + sha256 = "b34ac17ab0e2aa8dfce3dbf4f3f50fcc748ad57cb2c5dcfc5026e74243df4b54"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/fr/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/fr/firefox-99.0.tar.bz2"; locale = "fr"; arch = "linux-x86_64"; - sha256 = "e1d9cbb1c529508bb8262b0498506c30c7932b17a7d86d9b5877f44877cea60e"; + sha256 = "62c1a24620ab6010c4a279d3e440e654fb446f8a8cd2c2906253d623d3d6a2a4"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/fy-NL/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/fy-NL/firefox-99.0.tar.bz2"; locale = "fy-NL"; arch = "linux-x86_64"; - sha256 = "c1b40fb366281b9df839083af4aaaaa7a264e1ce380f9ffe46a2fe181bddd3f7"; + sha256 = "34c6bd8a1400f35f970ba5cad69c32826550e3d429e63002a1c34ef5f9c0c98a"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/ga-IE/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/ga-IE/firefox-99.0.tar.bz2"; locale = "ga-IE"; arch = "linux-x86_64"; - sha256 = "466ff81e255bed9c03669c974581ee2cfc796e77456dea25af75adb501855c54"; + sha256 = "0e4954e566f128fe93a970d41df9a05c631fc22fd500b7cae43559ba836c1bba"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/gd/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/gd/firefox-99.0.tar.bz2"; locale = "gd"; arch = "linux-x86_64"; - sha256 = "0e1de18ab0b75b43ee8caff97c2963b7047f1000fa8dfdcc4e3fe87f29794c17"; + sha256 = "1dd639f39a95a50d41a7759a43ac0eabea36e1ff80c557222d6b4e8dcf85701c"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/gl/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/gl/firefox-99.0.tar.bz2"; locale = "gl"; arch = "linux-x86_64"; - sha256 = "56f259c9f2f13d3f366e921aae1fbd069f00d59131cd3a3b31cb0f3e16f2ad74"; + sha256 = "ba2525bc4c25c74b0aaaa77dae6c05dd4a7519086d756d34fc462ea907840b8e"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/gn/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/gn/firefox-99.0.tar.bz2"; locale = "gn"; arch = "linux-x86_64"; - sha256 = "b532c79002184bb13a3f197b5c0faf4a24e0b71f737de31c242f9fd286f05aa9"; + sha256 = "6566afd98454031eca6ad3020323b82e1a8beb20a0e1f1ceacd3785a6e53725a"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/gu-IN/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/gu-IN/firefox-99.0.tar.bz2"; locale = "gu-IN"; arch = "linux-x86_64"; - sha256 = "12ec5c968d852a7a72221373813fca48a4e524e552d22aca50ae99111a7128fa"; + sha256 = "afc0da597d00fe408574e4036d2e928c644ff57857f6bf4b3182947e119cde73"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/he/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/he/firefox-99.0.tar.bz2"; locale = "he"; arch = "linux-x86_64"; - sha256 = "3c1c1222a4ffcac6679849c94da395440d417284a922cae16b5edd1cf4ba678d"; + sha256 = "5ec824f60e9b8df7a570eae973489751a2167e423fccdf750ee9320b9a1dee2d"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/hi-IN/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/hi-IN/firefox-99.0.tar.bz2"; locale = "hi-IN"; arch = "linux-x86_64"; - sha256 = "6ae96b87b251917d2c11684ae58ac3df54496cf047b115145a5f85cfb1575b9a"; + sha256 = "6640405a9361c4f080b552a4da9757cd7b81030fec328a96793a7cc752e00371"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/hr/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/hr/firefox-99.0.tar.bz2"; locale = "hr"; arch = "linux-x86_64"; - sha256 = "4a77fb11f0d27a4abfc1426136d93404baaa730ffea2a31fe337f11ad92bcc8a"; + sha256 = "75072debad6b291a051dc2af60a52554e9db3e5d87cc3fca2ea2974adfa3c3d5"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/hsb/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/hsb/firefox-99.0.tar.bz2"; locale = "hsb"; arch = "linux-x86_64"; - sha256 = "725e2f719720c84ba06a28c5f025a16a951642c1102f7fe5faa41baede1b6a5d"; + sha256 = "8ce2a5cf8e65d3d5de31105a7db1280c0379c77186af8deae17e6c23c6bd3edf"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/hu/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/hu/firefox-99.0.tar.bz2"; locale = "hu"; arch = "linux-x86_64"; - sha256 = "4a128951a5466189b703fbf3055a9e65af64f08a7fcd979448611b91a63bb456"; + sha256 = "595be31ce2c0671916bf8ad66f03e81bd8e53d7136d4e62d50fc7f250629bd05"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/hy-AM/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/hy-AM/firefox-99.0.tar.bz2"; locale = "hy-AM"; arch = "linux-x86_64"; - sha256 = "70e44a8105ef260b3e10271f1a9c36a5149a485130d5a1219397aff93500639a"; + sha256 = "2a3bcd22400dfe87e6dfcb38b0d4e970a49b9b4386c3d7bb3598299fbdd06c6f"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/ia/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/ia/firefox-99.0.tar.bz2"; locale = "ia"; arch = "linux-x86_64"; - sha256 = "a121636fb2513557f8e7e0a1b30e3d855202db14f997437cc5a6d7863214d385"; + sha256 = "d13f9cb95fc78bf4f744ada47f2758c61d85ed231b2195ea579635c2aca4c749"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/id/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/id/firefox-99.0.tar.bz2"; locale = "id"; arch = "linux-x86_64"; - sha256 = "eccb423ef76aab7725cd21efda222ed63c030d494c294998f4e9837ecccbbf06"; + sha256 = "b6e02073e442960c773a5b77f66d54685dc617f3f6c9ad085caa923e84be5b4c"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/is/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/is/firefox-99.0.tar.bz2"; locale = "is"; arch = "linux-x86_64"; - sha256 = "86aac8ae944846967e472d6fd893c40ac988c25a2c2ee9af40485e216bb67b2d"; + sha256 = "c6f45c0ea25b560e1f3f5a8f4c38d3732e7a944fbaf7ea766eef1a6162830631"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/it/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/it/firefox-99.0.tar.bz2"; locale = "it"; arch = "linux-x86_64"; - sha256 = "f0ccf0977b3f3e05ed0d07980eca2179a808e0f62930690fb33f17b68c3bdca7"; + sha256 = "adf2da8dce907f184cfbcad8ee7cc645fe707b0fb2ccec480f5baf503a03ed0d"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/ja/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/ja/firefox-99.0.tar.bz2"; locale = "ja"; arch = "linux-x86_64"; - sha256 = "217159ae769b050bf9ff1b04ed80ad85a384625e2ccbf0d9f98c0786dc2e6c5a"; + sha256 = "6698d549fdc42794372a32d6a435ebb90300ba42594de94d9ffeaf5aca53002f"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/ka/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/ka/firefox-99.0.tar.bz2"; locale = "ka"; arch = "linux-x86_64"; - sha256 = "c4aa9e994cad797afc081d2031296cac780e76966a7f231e6a0e3187d9e8aef2"; + sha256 = "a16e4e6b86c9d1f62f6267417711a668d8899c2ed3414e32da13ac592bbc70c8"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/kab/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/kab/firefox-99.0.tar.bz2"; locale = "kab"; arch = "linux-x86_64"; - sha256 = "cc8333cb75f48ea82b752023162a270f18e33cbec610571624a38919737b00c7"; + sha256 = "2ee4c463d31a388d22a4039365ed18103b4b56a3b584d32ebe393cfb956b34ea"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/kk/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/kk/firefox-99.0.tar.bz2"; locale = "kk"; arch = "linux-x86_64"; - sha256 = "3482645b2581284503f72569caedc750706c439346917c07673ed0a27b0bbf36"; + sha256 = "f4d9a8d6e6fec7f38664dd3c1fa9512dcf734481ffa20029295a86c4944c7b23"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/km/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/km/firefox-99.0.tar.bz2"; locale = "km"; arch = "linux-x86_64"; - sha256 = "b70fcfa2b4b4bed16d4fe8af2d57d8b7a4af346f321ece425895c10f7ac058d1"; + sha256 = "04fd804bbd428f8441ff1900d356104160dda63ac5c6bdcc54c5fd6ada23185a"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/kn/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/kn/firefox-99.0.tar.bz2"; locale = "kn"; arch = "linux-x86_64"; - sha256 = "63550bf8572312f3c69c90f65de89423fc0ac926736723be3034d5d441ceb1e4"; + sha256 = "ab8a5e9c60a9bbe1d44ad4c997491e7fed9cdfe7a2c83dbfeda60d7f1a90e1ce"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/ko/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/ko/firefox-99.0.tar.bz2"; locale = "ko"; arch = "linux-x86_64"; - sha256 = "de17cda5324ca6d179b9d576b62cde0ed21718b72896b161631513b654540cf0"; + sha256 = "bf741c3962de3277a00c5aed83e45af14743767000365153a28cbc558a6778d6"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/lij/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/lij/firefox-99.0.tar.bz2"; locale = "lij"; arch = "linux-x86_64"; - sha256 = "67cafe6a9f0c01aadb1fb55afe273fb58e4baeb38be2b472ed90a83c72b07ed6"; + sha256 = "bd40f1f0126d60e539baeb2264b275a0983d83ab56dd8881c838f1d40a7299b7"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/lt/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/lt/firefox-99.0.tar.bz2"; locale = "lt"; arch = "linux-x86_64"; - sha256 = "135773dc11e691c20f20b0a1d37e2b25d92062c573846127c113896708e649d8"; + sha256 = "29f3ea64fbe0e8fd4c53789de1819c29d497688180c5573fadeedd48182d5044"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/lv/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/lv/firefox-99.0.tar.bz2"; locale = "lv"; arch = "linux-x86_64"; - sha256 = "44bfaf12e5d34e1b8e281d00c7d9a26c2d0aa0a8ffbd74df9a5026e15ac12b66"; + sha256 = "f1a6dbf6fb72733e681c000c1ee96b895ad28bd14925185c1f1ba4445e589513"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/mk/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/mk/firefox-99.0.tar.bz2"; locale = "mk"; arch = "linux-x86_64"; - sha256 = "94d7db6bc2ba9de25207a058d29d8abc57e967dfaf59c3388438953098da9580"; + sha256 = "bc8826ad43d8c51379f4479366b1c52635c69660b7bcc3bcb9897e6be15fc370"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/mr/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/mr/firefox-99.0.tar.bz2"; locale = "mr"; arch = "linux-x86_64"; - sha256 = "e2ef6708ed116e40d3cc776c483d3cd42c91988673b91d2d29f4da8ea996f1c0"; + sha256 = "7ef006861e0b17df49a08ebd877e91ea78d741c6966569df95554b813d0ad615"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/ms/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/ms/firefox-99.0.tar.bz2"; locale = "ms"; arch = "linux-x86_64"; - sha256 = "e376a479d170ff881d6de21f9c03ffc7a4968fccde7347e9fa261de7bb11e427"; + sha256 = "2ffd658538429e5dbee797c12a95f5c294622bf110a607bf5cb0219680bde05b"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/my/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/my/firefox-99.0.tar.bz2"; locale = "my"; arch = "linux-x86_64"; - sha256 = "a1143bce18aaadd340b69403f064574664f202765ee5a8553ac6d3372ab33134"; + sha256 = "0d533237d125a3c73d36d8a86d58026daf8338df3034cef661510c387109b774"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/nb-NO/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/nb-NO/firefox-99.0.tar.bz2"; locale = "nb-NO"; arch = "linux-x86_64"; - sha256 = "eebdd022202cb7140db46995a3925c990e614233f3e15b850e5176b1f2c07907"; + sha256 = "aeef86125435a840bfc23c23d9648e1d49a51079bda1e63276495512c8164391"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/ne-NP/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/ne-NP/firefox-99.0.tar.bz2"; locale = "ne-NP"; arch = "linux-x86_64"; - sha256 = "084a278fe0b67a51126518d9aa62cae7cf78d96e3f6cf5b191f136a5c20acf84"; + sha256 = "30618d33a48ac7cf990e669ff009b36d4ca491f266fb7d917ad64b213d0e47ff"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/nl/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/nl/firefox-99.0.tar.bz2"; locale = "nl"; arch = "linux-x86_64"; - sha256 = "fdae25ccd979bdb5b4bb23f4e9e82e432df98059d82732ee187f37c8cb3547d4"; + sha256 = "fa30128a44619961b3144b338612b8677bec82c5bb4a3ee37dfda9bc0d54f5bd"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/nn-NO/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/nn-NO/firefox-99.0.tar.bz2"; locale = "nn-NO"; arch = "linux-x86_64"; - sha256 = "7ec4c099c7a282a5b38df9a124ea6f2ee3a1704746aa308431aa8c356a57bec5"; + sha256 = "96e31471625624ab0bfeecd2abec6b78bc4414a451ae3b5488ff09fecfac23d2"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/oc/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/oc/firefox-99.0.tar.bz2"; locale = "oc"; arch = "linux-x86_64"; - sha256 = "7f6d8ed3a7511d6af408c47c626a3e141425925df364f26a622a088491d7fe5d"; + sha256 = "3802cce7288bf14780f78e117c528324611683dc1e8bf4db7f4c875958dd5610"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/pa-IN/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/pa-IN/firefox-99.0.tar.bz2"; locale = "pa-IN"; arch = "linux-x86_64"; - sha256 = "9fa3699918286b6f9f8829beac8cd45e59f35f389a09e0cbb34dc393885ec8f6"; + sha256 = "177241ad04a1d18154657e753c7058e709d260af767bc53d786f5ca76ff2250a"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/pl/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/pl/firefox-99.0.tar.bz2"; locale = "pl"; arch = "linux-x86_64"; - sha256 = "e2ebf0346fb5b626a048a720782e325eefd04f1fe62de5c57826ebdd3ab1bec5"; + sha256 = "1691326be5d01826c8ebd207a2fe3f00021a8edfcf3b44ab7f28024466118ebb"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/pt-BR/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/pt-BR/firefox-99.0.tar.bz2"; locale = "pt-BR"; arch = "linux-x86_64"; - sha256 = "dc79e634319ffc7221245e2a081cf6bfc15ddcd4bd8bf110d5dc15732aaab33f"; + sha256 = "6b789a430c5c7b80f230fff69b20429a9329deb6c30f174882d71c80e3af9e02"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/pt-PT/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/pt-PT/firefox-99.0.tar.bz2"; locale = "pt-PT"; arch = "linux-x86_64"; - sha256 = "f94ba01eca76939d1ecbfccfd9647c96244effb080df98b4e04d3edfd80ffa48"; + sha256 = "e45567074b0573a3023e6c70241e0203cb8707e4d8c8a250d42aa29f207a969c"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/rm/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/rm/firefox-99.0.tar.bz2"; locale = "rm"; arch = "linux-x86_64"; - sha256 = "6b27aee9330a94e659da34f17213522687859263ed8500daf1d62fc496cff033"; + sha256 = "8e4ca7411436f910d6a2c271924fd61deb295081d7a1218cd19023635f76b18e"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/ro/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/ro/firefox-99.0.tar.bz2"; locale = "ro"; arch = "linux-x86_64"; - sha256 = "b6029f72497173e8aef444cb42437d6035354fe4a2bfe6359c50eefa4d6e1850"; + sha256 = "9df7c85feafd6611c29c38ca25371b224e36fbbd602e74a986c26ef1f6f7c361"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/ru/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/ru/firefox-99.0.tar.bz2"; locale = "ru"; arch = "linux-x86_64"; - sha256 = "73cbafa190a5083cfeba8ad0971d28eaaa228b9a9345ddc72d4f5d6490ebbad1"; + sha256 = "61015fdab4d7791a2eae09a99440df7a65828a5092d04a7376049dd7f1b5c062"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/sco/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/sco/firefox-99.0.tar.bz2"; locale = "sco"; arch = "linux-x86_64"; - sha256 = "dd2d86ddcd270d2bb58c7152d15072341460a09b2da1639a76ac70afc9a714e6"; + sha256 = "0481eec6bbe61c586c0a14416d7fc03df661432f2e2ad10c342fd6f6a6132e29"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/si/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/si/firefox-99.0.tar.bz2"; locale = "si"; arch = "linux-x86_64"; - sha256 = "0cf0281b2d082b3861947e5002f843df050586e96027ec30acba2913ce588daf"; + sha256 = "1443ac2cfcea8fc577e341efc3d87406c01c94af9fadcf9672fd5283794d0107"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/sk/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/sk/firefox-99.0.tar.bz2"; locale = "sk"; arch = "linux-x86_64"; - sha256 = "8853372fdbe0834f6322e2e1c03d909b2c21f60496d7e679266dfc35e5835191"; + sha256 = "4ffc688b2c38af18d28c7110f51a7a910b6671612b3a9ab657b579fabf9fb7f8"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/sl/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/sl/firefox-99.0.tar.bz2"; locale = "sl"; arch = "linux-x86_64"; - sha256 = "ce97423a4ad380fb019b3e4c8d57a44bb15ca0b0afc7778a10fd23cb9382c143"; + sha256 = "7eba5fe498e694650047a2d5a9bcd0ef12f65b32c554ddb64fe79ba16a097927"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/son/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/son/firefox-99.0.tar.bz2"; locale = "son"; arch = "linux-x86_64"; - sha256 = "468b642210c8c52ef5a8b91ddf81b9ff9c25768d7b0481f361e7c95861dfa5d0"; + sha256 = "3dec0e49c906b0923229789fac38927a19e43c27a7a6004223f50bf267fb83e4"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/sq/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/sq/firefox-99.0.tar.bz2"; locale = "sq"; arch = "linux-x86_64"; - sha256 = "8a079436e4be7ceb82b56f02d50054066906b2f819b787ba964d20c64ba731d1"; + sha256 = "c2f9c4ad474223a18b11f8b0f7453b0e2a8800030ae506c7c6aabe56440e9677"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/sr/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/sr/firefox-99.0.tar.bz2"; locale = "sr"; arch = "linux-x86_64"; - sha256 = "e9f0f1a8d6bf3bcb6df32a27560e952e3373d712cee08fb97e1c41b76052d370"; + sha256 = "87d70164fa38d2c8ce13bb7af9c86c84d546bba9e2bd9f37ea345664edb27a76"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/sv-SE/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/sv-SE/firefox-99.0.tar.bz2"; locale = "sv-SE"; arch = "linux-x86_64"; - sha256 = "eb4b4092f1f667661afbce19e0d3ef75301976689f1ea2ee11104d11fea2ddd0"; + sha256 = "e6a167e9b9e10232ca338560f80eeeedc4b32854893905e97881102c718f8ef7"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/szl/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/szl/firefox-99.0.tar.bz2"; locale = "szl"; arch = "linux-x86_64"; - sha256 = "29c9fcd787fafc93480fabb59573dd500d557847079f032a6f3ca6e9c4422c80"; + sha256 = "49ca939d4a7f714ae4318a13c1229c1f6f5e8b903cba2a31f4ebd98469f6bb14"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/ta/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/ta/firefox-99.0.tar.bz2"; locale = "ta"; arch = "linux-x86_64"; - sha256 = "f07b8a79048b55d6fd8f7d19858ea2f1b5f53bde782c65ea7fb3f34d9cd5ac40"; + sha256 = "5f8951a89a1dbe81d5327597373738a87bc5316601714ec759a4dd9d020e7ab6"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/te/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/te/firefox-99.0.tar.bz2"; locale = "te"; arch = "linux-x86_64"; - sha256 = "14882f8a3c425dd512c37f80fd45bdf9d34c4d7163454e1533c6306713935d36"; + sha256 = "ad4b82cdacbd019a06acdcc7f76385edcd167efa8127a5bb6456ba53bc879298"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/th/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/th/firefox-99.0.tar.bz2"; locale = "th"; arch = "linux-x86_64"; - sha256 = "c91bb2249cd2b22ae86b1b51fe6c34062a4da7772eab97b1e39915a2c2782488"; + sha256 = "cbd3ecc7e51e35aad4ab16f91e014e502005903b2a1d2fc3bebcac987e033ba3"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/tl/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/tl/firefox-99.0.tar.bz2"; locale = "tl"; arch = "linux-x86_64"; - sha256 = "1c6fe06f19821a7a77a26bedf38ed3fea20561df0589c672027b2108e080e6b3"; + sha256 = "b0466b793df5feb08eb8ff8f53b70e7d58c56602acf6c7b1dc1c97c96a881348"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/tr/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/tr/firefox-99.0.tar.bz2"; locale = "tr"; arch = "linux-x86_64"; - sha256 = "c06881993063dcdf6fbfebe139f9fdafe2ca37667375683ae85497603517b5a0"; + sha256 = "9ef3e70378c059075017ab8e3c104651e4845ceb6a981d9da85278881ea05b18"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/trs/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/trs/firefox-99.0.tar.bz2"; locale = "trs"; arch = "linux-x86_64"; - sha256 = "fcfd9120933339006f1868b27e0fff1d60f562a3d11e826bbf9996f69d4256ae"; + sha256 = "c31471dd116db01c888753a77bdd3078a84ad2bbc19d93b91e54ab79fb4b7de7"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/uk/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/uk/firefox-99.0.tar.bz2"; locale = "uk"; arch = "linux-x86_64"; - sha256 = "01cabeeb98988d4478d381b34e7c0e6cde887d2ea83feeb349763ee454760924"; + sha256 = "4fde8729334a29c38d8bccad9d6632b8ba99a4faa769ce34d59b748aded50a93"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/ur/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/ur/firefox-99.0.tar.bz2"; locale = "ur"; arch = "linux-x86_64"; - sha256 = "db7de84fed953da53998ae6ff2456a02de833de22d13d1aa7e16f53d3bcb7fb1"; + sha256 = "b1476c1b0bdbcc9cc6722db50f12b7fc92dcab3848478a184b6879a927e38d3b"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/uz/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/uz/firefox-99.0.tar.bz2"; locale = "uz"; arch = "linux-x86_64"; - sha256 = "9fe0fc4851f005160de9562123e48c19216cb013dcdd2b8bd2b745d7838062ea"; + sha256 = "3efae069d67253c450de209a3b028910aa3a3d0c14aae259d8096414d86d6ab5"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/vi/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/vi/firefox-99.0.tar.bz2"; locale = "vi"; arch = "linux-x86_64"; - sha256 = "e335f20bd5a63c2fa17ce15fdebe0c5af5c6787d37bd49ad2da156b450383ae3"; + sha256 = "d781e5fd73bb219fdfeb9be8e6fc861886724c48aaa4bf480605e1d641ff1c80"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/xh/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/xh/firefox-99.0.tar.bz2"; locale = "xh"; arch = "linux-x86_64"; - sha256 = "9cd953e87b70c979a8c03fde8c989f626a23f62a7d59be8796a09c8a8950127f"; + sha256 = "1db80ed81fd431373338693ea81961089e0251dadeeaf9f4e5179b0f5abd657a"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/zh-CN/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/zh-CN/firefox-99.0.tar.bz2"; locale = "zh-CN"; arch = "linux-x86_64"; - sha256 = "2c7d059be4474164fddd349fc3f18d1f380af5f9ba82f8e01b04e2f18bcd09e8"; + sha256 = "b0c1d1cb71947cdab88859e08c09910120a2117440c03ea29f1c2d0b40d29918"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-x86_64/zh-TW/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-x86_64/zh-TW/firefox-99.0.tar.bz2"; locale = "zh-TW"; arch = "linux-x86_64"; - sha256 = "37b5a0275b137b0ef578591ccf5a54518bdbb449915f4ad50c276952a0bcccd8"; + sha256 = "d4807ad378d61e01d8dcf53530deec5d4fad7b8d7df50f3df0918d2b591e6d46"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/ach/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/ach/firefox-99.0.tar.bz2"; locale = "ach"; arch = "linux-i686"; - sha256 = "b3b734eb8d62112f7983e86dbd49d2d3be3ed6d2f80fd2d7bc189f12e03ab0b6"; + sha256 = "79b90de5371b68c404db32c4498b4866b4ed6b10dbf58f9a2e4ebcc6d7b17478"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/af/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/af/firefox-99.0.tar.bz2"; locale = "af"; arch = "linux-i686"; - sha256 = "fcf6a355f70392606ec2ed5853b1d14e8d5923fd92c10774c776c43e6c8a6cdb"; + sha256 = "2a6f75faef4006c878b8a5156412a490c667dd970779d48a891b4d898c664e27"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/an/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/an/firefox-99.0.tar.bz2"; locale = "an"; arch = "linux-i686"; - sha256 = "388532ad380bf43c287ca3e7e29a3a6f97fbbc0e02c2ae5207ac07587c3faa2d"; + sha256 = "613f776853c37115f610206f6769f36adff86ed3b5b46cbe81a2ccece469cacd"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/ar/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/ar/firefox-99.0.tar.bz2"; locale = "ar"; arch = "linux-i686"; - sha256 = "178a38e6bec65a59679944fdd6882774d23bb15e62f2e697cf369742bc4c8196"; + sha256 = "a436337365e0865801fab136f710cb3134dfcf93896cf59aa78bf28bd70bb5a1"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/ast/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/ast/firefox-99.0.tar.bz2"; locale = "ast"; arch = "linux-i686"; - sha256 = "5fa0aea769c7f7fba13168fb404f03b2cb8f6df5ab733054118df67015ab665f"; + sha256 = "85a937e65ac45dde5235e85194c9764056fcbf531f53a443c849fc727bfc5b8a"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/az/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/az/firefox-99.0.tar.bz2"; locale = "az"; arch = "linux-i686"; - sha256 = "62816d95c32f04090a5e23bc38ebc774355ac77dfdd1a41a2d6e10ce983c53ac"; + sha256 = "7a154cf0086ee80e03d88740f3b05d3de288dcab25ac151bc5ebc81af30e1220"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/be/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/be/firefox-99.0.tar.bz2"; locale = "be"; arch = "linux-i686"; - sha256 = "918447a5f57647ed5d846a0a0bbbcbaa55559722de7b8dca2ed2e744eb14ce36"; + sha256 = "c05628994a45f2bebd6b912175b012aca3af563ec70b85c93f65106ccfa5b4f6"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/bg/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/bg/firefox-99.0.tar.bz2"; locale = "bg"; arch = "linux-i686"; - sha256 = "74851892da2c6c0a9a75d822aeef2c0a275fb5bbc32b88abb28e67f9310bb2ba"; + sha256 = "9fc5b8266fb107b6ace769a0a75ed47bc4af5a9de6e215c4e0cd59e0f99c0711"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/bn/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/bn/firefox-99.0.tar.bz2"; locale = "bn"; arch = "linux-i686"; - sha256 = "2a6f53aa3fec578a76368120bca30240bb631db9767159aedb3b5480c1ab661a"; + sha256 = "3010fdb412c86b282b6a6bb9531124e8e06c409c64f3738d7c142be7d83277f2"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/br/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/br/firefox-99.0.tar.bz2"; locale = "br"; arch = "linux-i686"; - sha256 = "5d1d9478f459bcc3e6b148ff42d6f9f589b8fb395672e3b8ce8f333832b523dd"; + sha256 = "acf68c7dbc8f702f1280136f2443effbc8af793bc8be8621e617a757440c6f72"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/bs/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/bs/firefox-99.0.tar.bz2"; locale = "bs"; arch = "linux-i686"; - sha256 = "ed99ea471d6e30c0304bbb27bbdf88b479fee4df7f8cbba481d03de13954131a"; + sha256 = "233b6b37d7e4f15bc971d48c1a0d55be146bdd430bb281472367a5526867f8af"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/ca-valencia/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/ca-valencia/firefox-99.0.tar.bz2"; locale = "ca-valencia"; arch = "linux-i686"; - sha256 = "5dd1447b3fea23f08551b2ab5a80581c3e0e09f5602709cbdce751d491faa60a"; + sha256 = "ee80548107642ed65feacfe480c7fa219b77ec6376244865e0deda14ffea8a7e"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/ca/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/ca/firefox-99.0.tar.bz2"; locale = "ca"; arch = "linux-i686"; - sha256 = "21f6c622de4016a8e372ae7d249a07800b4393ba02ab59994356869a01cef571"; + sha256 = "244107e338a2a290987d452953b93049642eb5008c897216d952851895011adc"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/cak/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/cak/firefox-99.0.tar.bz2"; locale = "cak"; arch = "linux-i686"; - sha256 = "e9895877763157132e390f31c859b561c7d62adb011e209ab9cc0092ecfccb1a"; + sha256 = "8db4e710b982e6f4f0c5e09b170884a8bd44db72a01ebb69f1eb899772132538"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/cs/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/cs/firefox-99.0.tar.bz2"; locale = "cs"; arch = "linux-i686"; - sha256 = "13c94b8b12fcbee4d41c6f7289f0cf2f199ef3d750628cc0ea11a60534ab6954"; + sha256 = "768976418cae1fdeddd8ebbbc53edda46c7b05b997db813573705bcb6dc80d80"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/cy/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/cy/firefox-99.0.tar.bz2"; locale = "cy"; arch = "linux-i686"; - sha256 = "c21d9e83d14ac46effb9e12a5210d7b56e3d765eef877f8ac4ed5104582d2631"; + sha256 = "26705ed485b8436861032e74da2ef27b06b0d4471b6f019003175b8ef99e411b"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/da/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/da/firefox-99.0.tar.bz2"; locale = "da"; arch = "linux-i686"; - sha256 = "74a4a14ae8d8f64c56ce4409851f3e8e51bac61e2223c022f40d56d341fdcc65"; + sha256 = "2828700cbc12e6d349b862bc49258752602ad9ea74a8ad1b52a8171caff3e0ad"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/de/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/de/firefox-99.0.tar.bz2"; locale = "de"; arch = "linux-i686"; - sha256 = "d3449eec8075f3b6d07b2e6d7adecbec60a7e29b12c2016f642a90c5555971ed"; + sha256 = "b27bf803ca3ac8f4530339f648c2c7248e674f5e52a327d4d62d5dc8055c8683"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/dsb/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/dsb/firefox-99.0.tar.bz2"; locale = "dsb"; arch = "linux-i686"; - sha256 = "0dfac7916796d4ec7943963e28d7ca65f78661b6f22c226afb2dd00db47917e0"; + sha256 = "b3a31746bf575bf2c06227eb01cd07013b59ec2e17f6603babacc3be76222254"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/el/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/el/firefox-99.0.tar.bz2"; locale = "el"; arch = "linux-i686"; - sha256 = "c2769489e0947a7eeb0cb1f9d99d51317fd037e2a7bb06134403df1d4560a767"; + sha256 = "b220df0d42dee179c02066677db3edc3526d1f91df9399d6555f79dc96212ae6"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/en-CA/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/en-CA/firefox-99.0.tar.bz2"; locale = "en-CA"; arch = "linux-i686"; - sha256 = "87bb7162b58f7632ddf733fbdd4f195d75a9a6d467355c2625344171c72f4e9f"; + sha256 = "a87252dfa797e7777823a84e80d6f9d8de6d1f17d29f8d2ee4ece46ab8d1b917"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/en-GB/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/en-GB/firefox-99.0.tar.bz2"; locale = "en-GB"; arch = "linux-i686"; - sha256 = "89bbf10bb75effa9e8064b6c42d0a4d7fd21ac2cd6e4ed3625d92c6b55ba1ee6"; + sha256 = "37001a756bf9ea4e042ec043339e86eba4abaa4bc248bc699836ac8338f56ff8"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/en-US/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/en-US/firefox-99.0.tar.bz2"; locale = "en-US"; arch = "linux-i686"; - sha256 = "888db6752eb5703af5fe5ab4b1575f2a35dbd204614552fbe3a276042a3509d5"; + sha256 = "c6e074e4083c366793dbc6d96968fd323fe0ffec1b8629be16e7c984ab1c3bef"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/eo/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/eo/firefox-99.0.tar.bz2"; locale = "eo"; arch = "linux-i686"; - sha256 = "a2004dc59269fb2b37e568767593bcc0a7862a109df18f548eb1a0b829cf4293"; + sha256 = "a5b6b630d5e58e20d6af73d6646954f0842ef537f8e0fdd4a424e6d34ccd2d7c"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/es-AR/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/es-AR/firefox-99.0.tar.bz2"; locale = "es-AR"; arch = "linux-i686"; - sha256 = "9e2c0f6cb231c469660cc7fe63489e69a2616553d17c52f5e7a2a86a171bc6e9"; + sha256 = "84f7042e098eecf4974fef594c3640bd0e4c1c9fdab373c287ed580b2bac0a8b"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/es-CL/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/es-CL/firefox-99.0.tar.bz2"; locale = "es-CL"; arch = "linux-i686"; - sha256 = "dfe6f1229a6f80b6fab3a22fc8a8a6ecf3137b31805339a489ec53e5af63f040"; + sha256 = "15a9ee9c9765ad5e0303cd94d22c61af50c723ba5241102d327e88eed2e8110e"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/es-ES/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/es-ES/firefox-99.0.tar.bz2"; locale = "es-ES"; arch = "linux-i686"; - sha256 = "01020488ee2ad2e2357bbaf83857a2ad0820fb9f97302d1447cf4148b22d2bd4"; + sha256 = "acd612f04297eed5f09b47615412e3b19099610c7a62ea8468382fdbfccf7d1f"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/es-MX/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/es-MX/firefox-99.0.tar.bz2"; locale = "es-MX"; arch = "linux-i686"; - sha256 = "3c7bacc6f703cdff7adb9097bfc39f52a67aa6a9814d7a8f451d4ef50c591714"; + sha256 = "e86c3e1a68e7b33413b0c97ac1ad63535faa618228db207abd1d0fbdae4f5f08"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/et/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/et/firefox-99.0.tar.bz2"; locale = "et"; arch = "linux-i686"; - sha256 = "f2bc8e4200c89cf74ae6c984543e97b2523782dae70ecf6135f47943a01f1d83"; + sha256 = "dcb820763848a5bbe5b32dba6be949877bc38e123c9d7553ed569316ed1d436e"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/eu/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/eu/firefox-99.0.tar.bz2"; locale = "eu"; arch = "linux-i686"; - sha256 = "62bf0d826adb66d755f38bf25199eaf3850c37bfddca627b597802a20f8d3367"; + sha256 = "dd1b5cbb48ea9aef8d3acab9f6a4c8de44128584b9d95fd50b2ed1b1ca79d367"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/fa/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/fa/firefox-99.0.tar.bz2"; locale = "fa"; arch = "linux-i686"; - sha256 = "9d4dfff33db462c71eb12067f56f2e20b0a557f9cbf1234b617e1c2ab5832ea8"; + sha256 = "e4e66fb13ac850712bfa9946c05b97bc69f1d750037f8524ad766d6fcde67d86"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/ff/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/ff/firefox-99.0.tar.bz2"; locale = "ff"; arch = "linux-i686"; - sha256 = "5b3a271207003e25776a55b7ee6adba2f83e844d4b0a738209d21be7db82ac33"; + sha256 = "a793ad05230d98cfb4a003263082a64de86998eb5148ab3827b3e999e242a758"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/fi/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/fi/firefox-99.0.tar.bz2"; locale = "fi"; arch = "linux-i686"; - sha256 = "50a9408303ac8fc7c22da96f993b0b251407261d35598b4fe06f1c545788ef0b"; + sha256 = "0567d3400a281bd569c81c406b462a101d3dcf041c4ec4e0e9753301ec0aa629"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/fr/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/fr/firefox-99.0.tar.bz2"; locale = "fr"; arch = "linux-i686"; - sha256 = "65db55f518be2abd8da5b52654bdf0efecd94b21ab843b76a6ad9e9ccb516a55"; + sha256 = "fbb0392b310297e0ee974486092f7e6ed74f63d1f190218c63796bedf4e2b90d"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/fy-NL/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/fy-NL/firefox-99.0.tar.bz2"; locale = "fy-NL"; arch = "linux-i686"; - sha256 = "b3da8b5a077e4955bf2c662840005adaba2dd77af4724e965403da3139b5fb3f"; + sha256 = "8eccc6e66de2b523e4e811d5d57b8eb17496ea9c5566c29ae7fedeb751876bf9"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/ga-IE/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/ga-IE/firefox-99.0.tar.bz2"; locale = "ga-IE"; arch = "linux-i686"; - sha256 = "f4812b90fa0a0391d2a372e7bf45a3393d59714209046618e7b1ed72f1889e2f"; + sha256 = "239f4dfc4e5fc29b32a75ce0c4397a8785f3cc0b5e10b61b08565b6902342cbe"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/gd/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/gd/firefox-99.0.tar.bz2"; locale = "gd"; arch = "linux-i686"; - sha256 = "769c42c86d5b3866f9ad38bc833f5f1f1b01c7f5ed6898eba064ce6f31c9f550"; + sha256 = "312c89bee7911e74fb87ce7cd128d55c7e4b0f706dba5950e7b45d39cfd5a817"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/gl/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/gl/firefox-99.0.tar.bz2"; locale = "gl"; arch = "linux-i686"; - sha256 = "b75ed9efccd63053589a3f60fbabb6ce5fc1c027a1a00789ff23b6971b0ebad5"; + sha256 = "98d7ee9fb9dc4442d475db37925128858d807f3e686e9624902e62a872322a91"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/gn/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/gn/firefox-99.0.tar.bz2"; locale = "gn"; arch = "linux-i686"; - sha256 = "bf60ba48f5d5a18ef9aeaf631d564412788ca102990b69b176ac66c1b8e3535c"; + sha256 = "5d1e387fc779d0226347dbc6abfa9acd5ed5c39f30da22f36789dc1b2d68326e"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/gu-IN/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/gu-IN/firefox-99.0.tar.bz2"; locale = "gu-IN"; arch = "linux-i686"; - sha256 = "19f568337cfba71d7e1626099b1c6cee4d69a0332065779e5375da648d70a3f4"; + sha256 = "51f5f582d2b2bda10ac528a2b0842ca86b29d20421ba83ae56493d791613bbc0"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/he/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/he/firefox-99.0.tar.bz2"; locale = "he"; arch = "linux-i686"; - sha256 = "7d6a55d76f74d85e2f9da77ee071df31aed1c37f9fb139e448624a105b6ef19d"; + sha256 = "d0192b6ad1508b1ebae13cbd3bc3d7fbf5b5e222d5f5cba1857d2b3d73c1c048"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/hi-IN/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/hi-IN/firefox-99.0.tar.bz2"; locale = "hi-IN"; arch = "linux-i686"; - sha256 = "12451d7cc49ca2629ffedeebd1d77f8ac96d5839ed165ea91f55a249427ebf09"; + sha256 = "9bf5814ada09f878d484ccd4a37d56054316372caf9766b8da70cd81f817f208"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/hr/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/hr/firefox-99.0.tar.bz2"; locale = "hr"; arch = "linux-i686"; - sha256 = "b2197d6d51847848cd849fef446e8b84725fc2b9539824e65719c4fd1d7f29ba"; + sha256 = "4c2453a9ac74a71d7f5dfea3474ae68cd5fc2d4a85aeb04e367116d80df9cdbd"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/hsb/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/hsb/firefox-99.0.tar.bz2"; locale = "hsb"; arch = "linux-i686"; - sha256 = "5000e21630440a446416de3cc38bcfc7c22bb8bc8d1a1a027c14b9548acff74a"; + sha256 = "c3904c1a8b1ecedded23ceef7d8168865a0f18f08b81600e013f7cfebc5d5ce7"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/hu/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/hu/firefox-99.0.tar.bz2"; locale = "hu"; arch = "linux-i686"; - sha256 = "dee75736596f5f0dc1d6952327274d07f927ff42e7c9a0ed8c8ba8dc78a6b3f9"; + sha256 = "e05debfc803f3752dfaffef6b30e0079f5af44107217c362325e1e5922eb18a0"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/hy-AM/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/hy-AM/firefox-99.0.tar.bz2"; locale = "hy-AM"; arch = "linux-i686"; - sha256 = "4b7dcb46864b058bdbeb35404de32c88e2822dd0315f105e95f61be857288282"; + sha256 = "364a7408f1d2a150f04ab759da6a45021fad3bca5ba2811931df46960671c1ee"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/ia/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/ia/firefox-99.0.tar.bz2"; locale = "ia"; arch = "linux-i686"; - sha256 = "e89e07b1d71e1b2ccfd4d412dabea164bae8448f57a5f99a07ab04f9dcaa0bab"; + sha256 = "5dc2a481ce5e9bd54241363fb88b62a655584293fd9d3f7ddf13dd0195d8cea0"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/id/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/id/firefox-99.0.tar.bz2"; locale = "id"; arch = "linux-i686"; - sha256 = "398ee6ed278cec1ceb489dd06d8f4c2671309a3e0d61f3202fd5280a5b596ca7"; + sha256 = "b9d5b10461130d5c2895b04604be7eccf8979b87c4e8acc03173709979185eb5"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/is/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/is/firefox-99.0.tar.bz2"; locale = "is"; arch = "linux-i686"; - sha256 = "a3531b8f68ee22452390ff8e1c70d7f6b842e10ab60ca6666f79fd958284d099"; + sha256 = "6e4506fd90b7f3ee316a500f5e2fd3e2063fbeea79f3a86dcfc8573b8c355469"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/it/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/it/firefox-99.0.tar.bz2"; locale = "it"; arch = "linux-i686"; - sha256 = "fe8fd2e7b0e87cb3b12ab6d8d973c422ef763d9d3a78620fe5a9f374455ccecc"; + sha256 = "2bdc9c8aa3f8b0b86b0310a95e4f3aa74de418aef7dadd7ef3c24af51c4bf0ed"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/ja/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/ja/firefox-99.0.tar.bz2"; locale = "ja"; arch = "linux-i686"; - sha256 = "5d52ec4afd7de44806b804b5de6e597228d7061c10b0cc8d6fabeca505a0b207"; + sha256 = "8e035fa783b64ec5e8503bf329346799aec628df03b013319586cf04969d36f9"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/ka/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/ka/firefox-99.0.tar.bz2"; locale = "ka"; arch = "linux-i686"; - sha256 = "902abc9df459c6dd2168050764cb2301ffee566f4deb11b2ef7c694cf429cc58"; + sha256 = "59d2b9eaed8a898be979286d7ecf963e4f2241dfcbed9ac8e0d0b1821fb9e2fd"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/kab/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/kab/firefox-99.0.tar.bz2"; locale = "kab"; arch = "linux-i686"; - sha256 = "aa96307da2c832df7ea7ea418d3dae6dd9f2aed56432a8ed6e43fabe71aa9828"; + sha256 = "2506702d67e1576df307bfcfcb9e20809352a37be3650c9a454e906a5d78fd2c"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/kk/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/kk/firefox-99.0.tar.bz2"; locale = "kk"; arch = "linux-i686"; - sha256 = "addb689db7bb19f28db963ca61dd0ece3813f5ca21f3437c1320c3f972e19029"; + sha256 = "df0e505fd8552384ea55024531378e7228e35d9a40b66288631f524a565b94c3"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/km/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/km/firefox-99.0.tar.bz2"; locale = "km"; arch = "linux-i686"; - sha256 = "7a982cdb847d162c6cedf724adebfab904cfacdbe3d4e48ee9af3e644e74cc14"; + sha256 = "fc2202caadc90364dca89329a335869dd9bc8a2240fb95d5b3c6fcfdd6586be1"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/kn/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/kn/firefox-99.0.tar.bz2"; locale = "kn"; arch = "linux-i686"; - sha256 = "d2cb6eb8c004d9c0e0929d8047d93902a2235b5068b86672c693edef1a2b8911"; + sha256 = "8b4fe5e47aeaf7d1f15fa00d74088689f40a9d92df893b79d6c3c950f182c234"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/ko/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/ko/firefox-99.0.tar.bz2"; locale = "ko"; arch = "linux-i686"; - sha256 = "63770f2a873b520e5b1c1bece82ea4a987a2ae6535f9c4047e99b68f62c91748"; + sha256 = "ce2a3f64b6d2b4ca319ed020ef621974977216aa468811609431a618aee9b77e"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/lij/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/lij/firefox-99.0.tar.bz2"; locale = "lij"; arch = "linux-i686"; - sha256 = "ff130a01dc266b5b49f39f9c4355a6576211c0008cd5008290266daff222e18d"; + sha256 = "6b8ebcebb1c9ffec9993663ef6040007909136d99dc9a2f724d16d9b9dc1f647"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/lt/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/lt/firefox-99.0.tar.bz2"; locale = "lt"; arch = "linux-i686"; - sha256 = "04105e0614b660d0e156b0aa2307af9d0d11236119b6667718d7f0f1f13ae505"; + sha256 = "798c36f256f173fc5662d5edca6c4eaa55bc0c4f794a481524871aebabcf9b0f"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/lv/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/lv/firefox-99.0.tar.bz2"; locale = "lv"; arch = "linux-i686"; - sha256 = "50dd34d558800dafc84d714f5cf08a26eb4970c3aa6b8850430aa156d8869549"; + sha256 = "4ea59a53fcbfd93959540edd12b4760586ca3f0a26fcdbdafa13cad70db7ca0c"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/mk/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/mk/firefox-99.0.tar.bz2"; locale = "mk"; arch = "linux-i686"; - sha256 = "8ca0b1cc9ff39757f2cc513d61a77d1d95a607862ea654d6743bf4a8f7bde99c"; + sha256 = "c4bab25688564f1dc34b14d96695bb03881af3e2551040a8cd3e4543d8107338"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/mr/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/mr/firefox-99.0.tar.bz2"; locale = "mr"; arch = "linux-i686"; - sha256 = "b24884486692dfcad578026498a3654d34ae78cd39e977b3708053bd7754d37b"; + sha256 = "e440be0dcd8714e7f08dad0800ccb642677e98444fd115c9a8ee5684f6b619e7"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/ms/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/ms/firefox-99.0.tar.bz2"; locale = "ms"; arch = "linux-i686"; - sha256 = "c43f2f10d928a3cf875e81afb54c09c1ef49ff8457069c054df2f62e0a43979f"; + sha256 = "4d09e9925b2c67c1ea082b895f62db8f1282dbad073a851504187ff9b1725e74"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/my/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/my/firefox-99.0.tar.bz2"; locale = "my"; arch = "linux-i686"; - sha256 = "296d3860c2224deaa43184fa85dfce21eb9fc9b11d080d7f71cc189c4a790ed3"; + sha256 = "be56fa7ae49aa26d174633d7e2bf426fb6931901176d8ecd26fdcc6e02749b6f"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/nb-NO/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/nb-NO/firefox-99.0.tar.bz2"; locale = "nb-NO"; arch = "linux-i686"; - sha256 = "b0ce5e0157ff9f64434b38cf9338960870bbf6bdb4b75494b82c8ba871868ff3"; + sha256 = "52a14a147126a49314425fb9ce2c964786cf409e176e1fc949ecf9a1c67627aa"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/ne-NP/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/ne-NP/firefox-99.0.tar.bz2"; locale = "ne-NP"; arch = "linux-i686"; - sha256 = "58b7a719e7fb10bf7bfbe23f4ffcf002434652f792a3a1ffbadb13a5e06a04ba"; + sha256 = "25fa25a6d63008badc2bdab5242c0620520b427df68de45fab873c230f7e948f"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/nl/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/nl/firefox-99.0.tar.bz2"; locale = "nl"; arch = "linux-i686"; - sha256 = "2951dae0cbb3bec0e47ae44b70e6796ace16c8fbac18d7d04da84a51ded6a650"; + sha256 = "0d751560dfd83afdbe69aab576449ab25a3b2b66ebed28ff4d13ddfefe520f9b"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/nn-NO/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/nn-NO/firefox-99.0.tar.bz2"; locale = "nn-NO"; arch = "linux-i686"; - sha256 = "6f44201f301931e3b51144d57a79c484b776c37cb29dda93b57795c0a756c62f"; + sha256 = "baf6b5ae7d2848344648fe3b3fa95991ccea45d2302eec5c657671a5736cbc7f"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/oc/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/oc/firefox-99.0.tar.bz2"; locale = "oc"; arch = "linux-i686"; - sha256 = "899a48b47dd642a64de0ac9226b4655e74bba9f0f6d1eccebc1c1875e1d3ea12"; + sha256 = "bcf9df67acd24f0bdd4794820863f91b60bfe745471b0e88d29a22a225922665"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/pa-IN/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/pa-IN/firefox-99.0.tar.bz2"; locale = "pa-IN"; arch = "linux-i686"; - sha256 = "392b6e6cb3ca1ef3e17f73ca327bf7fd49d453ee0216f922dfc3bfc7b2ce18da"; + sha256 = "c0d8aaab99ddfa3b0be3bc323483f99094feaa67aa3d94bab4f5cf2ca8612fb7"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/pl/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/pl/firefox-99.0.tar.bz2"; locale = "pl"; arch = "linux-i686"; - sha256 = "f4f6124c3520c58ee00b7f4f00a39a904657b21072fe3d822a17b072c8e69473"; + sha256 = "df2d1ba0a3db60f32c9031db067d14a56f06ebb8a3e04b540d4d7f15e2bc4367"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/pt-BR/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/pt-BR/firefox-99.0.tar.bz2"; locale = "pt-BR"; arch = "linux-i686"; - sha256 = "b19e3aee72fb779ab139535295d3279cd06c125349fb5ee71c12737ab2aff733"; + sha256 = "8f038e619e5380491b2002909930ac254a60f92215ba922a7fb2ec0895047a91"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/pt-PT/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/pt-PT/firefox-99.0.tar.bz2"; locale = "pt-PT"; arch = "linux-i686"; - sha256 = "0924bc137f6eaaf6686249f59540eadfd9b09aa843a071bd7db5d62f742258af"; + sha256 = "749ba7ce1e93dad3a95f28f5ec6bb81e9bcf63a7c4d436487422126d2f04d8c3"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/rm/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/rm/firefox-99.0.tar.bz2"; locale = "rm"; arch = "linux-i686"; - sha256 = "ea9b082ba495a19162c0945b865eae6f66c689962807873bf27ad59a3e83c85e"; + sha256 = "1b3ff965145535d0c3275366c27c4ed3a0d95a47e42d8baa7088dcdd58fb5e13"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/ro/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/ro/firefox-99.0.tar.bz2"; locale = "ro"; arch = "linux-i686"; - sha256 = "3bbd902b4ace383d914f51553bce3de83c2ca4f6366e3f2dc42268795c7bf72b"; + sha256 = "51640a0f3792d962a31ab494fe9c8f6a31cb6c2093d06f2293b2d2614d82e17a"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/ru/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/ru/firefox-99.0.tar.bz2"; locale = "ru"; arch = "linux-i686"; - sha256 = "84296b00a3646cf8d0e7ba3ec6cbc90592b8fe8b2dcc36b8c904d1e15c264575"; + sha256 = "01e25d1e39ad93fdaad2382039dbf3b0d9a7e1c6f7993ebe6088a7f0d6545ad1"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/sco/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/sco/firefox-99.0.tar.bz2"; locale = "sco"; arch = "linux-i686"; - sha256 = "8f966e6fa33e9e0242dd422818c9c46c5ffe37ebeb34e01a7eb57258e0aea481"; + sha256 = "cf27b720e94a69df2a18ff9846108672bfe757224b71625a1ff1445ab11d5489"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/si/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/si/firefox-99.0.tar.bz2"; locale = "si"; arch = "linux-i686"; - sha256 = "3ce96976ec5e920b20fdb1ff7fa8d20db2a67c0797ac4307f7e387db91306719"; + sha256 = "4e64606407dfb9d9bbd44dc8eeb493208d546cb8d79c526a3e261a18b899b050"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/sk/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/sk/firefox-99.0.tar.bz2"; locale = "sk"; arch = "linux-i686"; - sha256 = "1a4d37ac6777185230343dceb4902b55e0adad62d144347d09f031228583370c"; + sha256 = "7917d08b5870a3e02c7d2393a9bfae39e9bc45114ce37c1e2cebbe81d6ed3f60"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/sl/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/sl/firefox-99.0.tar.bz2"; locale = "sl"; arch = "linux-i686"; - sha256 = "e1875f0077c3c03f34d7fa33e807d0297f831d451a045cd55accc493c3dce366"; + sha256 = "12c7b3b525fc7fa1ab76f12bb837f481ccb30b317202f185cf5e71bda80048d8"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/son/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/son/firefox-99.0.tar.bz2"; locale = "son"; arch = "linux-i686"; - sha256 = "1d13d9d3f9d8cfc03e5e45cd1c62a08b24437ed9feeb27ce42b07a75f0aefc04"; + sha256 = "b0d0d04af3623eca737b8325e607e330636531525b92e23150d05204b29ba7e3"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/sq/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/sq/firefox-99.0.tar.bz2"; locale = "sq"; arch = "linux-i686"; - sha256 = "e2ae3fa32c56258069cdb95231a5d3b44218d32f0b10afc4174ac204bda7acf5"; + sha256 = "4ee2854ec755ef5c1e4f4761819cd7125bbcff832d7c8ce6f3ee96e92c343b8c"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/sr/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/sr/firefox-99.0.tar.bz2"; locale = "sr"; arch = "linux-i686"; - sha256 = "96a5178bdbca9f6d1434610aa0d35c32b6eb542d6d3e760ce778a8e4181515f7"; + sha256 = "6a2e415702701fb082beacababab5cf9368790a9876114eb2186f5691f32d265"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/sv-SE/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/sv-SE/firefox-99.0.tar.bz2"; locale = "sv-SE"; arch = "linux-i686"; - sha256 = "fabe9274a8ac78ba84a394a7a5e7cfa22c41e3b58c8e6b94496fda6490bad644"; + sha256 = "cdae3c72e5f79fb2a5ed988d39eac0f21e321feebe9ca67d8b7362c80160d7d4"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/szl/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/szl/firefox-99.0.tar.bz2"; locale = "szl"; arch = "linux-i686"; - sha256 = "d77505b5fe04946002e5d1a28081c7e2933ce910a8d67f4e5ed31508808cfd41"; + sha256 = "d39ec7a68195af2bded9826a251904b5f501c58dcb3c92789a2ab5251fe2618f"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/ta/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/ta/firefox-99.0.tar.bz2"; locale = "ta"; arch = "linux-i686"; - sha256 = "a34e5b28526f9861bdc7af910e0a3418404f4316ad5792607493a698f480c9a1"; + sha256 = "a7220a78f600010125b20c22205865169330c45bb9eacf4496c26ccf780257d2"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/te/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/te/firefox-99.0.tar.bz2"; locale = "te"; arch = "linux-i686"; - sha256 = "c3b8653af6ed8f4cf7e9f3e5a4a0c622a163f7c45dd0d1ddcb3936e1504ea1af"; + sha256 = "8c4973de96cda2a3448a30ec4776e488ceac9b27a9f5142f2256b92ac5c31102"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/th/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/th/firefox-99.0.tar.bz2"; locale = "th"; arch = "linux-i686"; - sha256 = "a6456037b76bf2adaa6a6d68f8b20f293f8a4fdbbc3e533c8a6a22aedcc3bf4d"; + sha256 = "aefbf224abd9b77303b90437a5ab87bacd4f04334d84c29c3d41c4b9922282e3"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/tl/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/tl/firefox-99.0.tar.bz2"; locale = "tl"; arch = "linux-i686"; - sha256 = "51ff115845f3d70a9fb08f08fcd3c1f86a41b3570f81f460c24a5a87605a779d"; + sha256 = "d0c1e4c099482fbcbfdea2f45b3f6e1ec6744b3073d5c0ab840ed6eab129aa26"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/tr/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/tr/firefox-99.0.tar.bz2"; locale = "tr"; arch = "linux-i686"; - sha256 = "3ccb5735a16622dafe6ae465ba167ea164843c85df436e7cd20cf6e7a4fbb610"; + sha256 = "97b7f1c90fe846a4eb8c1a0dbef7eb9fa8f3a536f8e37b24565b4cb42ede27bc"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/trs/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/trs/firefox-99.0.tar.bz2"; locale = "trs"; arch = "linux-i686"; - sha256 = "7d1a71033460524506082087ce1b3ddc424207ea3ade6e0bbdbb00310e74cfea"; + sha256 = "3910053c3e0ab255cd595cdebbbb0e0720a32cc1f20d6e74b5fdd3427fbb5137"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/uk/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/uk/firefox-99.0.tar.bz2"; locale = "uk"; arch = "linux-i686"; - sha256 = "6db06ed2f126c5307ef6380dff4dae14cc39ca58d23b827835d3e702acf33c72"; + sha256 = "4736b57b2beea7f6a09a289b3ce6921082541acf20faf9d6165658ba96e06dc2"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/ur/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/ur/firefox-99.0.tar.bz2"; locale = "ur"; arch = "linux-i686"; - sha256 = "d00bcd6b3c70919999e748046b3291279d313f850c3daedae37259b695cb351d"; + sha256 = "072b4f58064362f74eef2984c94cf42302bff9e61d0f9d8adf13124cef699386"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/uz/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/uz/firefox-99.0.tar.bz2"; locale = "uz"; arch = "linux-i686"; - sha256 = "1d77240a5f6d7542a7035fd32fd73e07bee1e1e880800cabd01e357a3da30907"; + sha256 = "42f99dd9d61f29491ba55edb806131a4768768145676b42c886b5848d09dd451"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/vi/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/vi/firefox-99.0.tar.bz2"; locale = "vi"; arch = "linux-i686"; - sha256 = "9469a1c6613ea83a8e367c0e25e188ea9b9fddcc1497725a3ebb008fb5d5d73e"; + sha256 = "d9c9cf96117b7e759291d7731fb53b51fc9f7d07b95ec7d479f6a03c34227b9a"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/xh/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/xh/firefox-99.0.tar.bz2"; locale = "xh"; arch = "linux-i686"; - sha256 = "af3144bfcb52df706182fa04badf39be51e5774335af21d8ec38dcbebe3bdf13"; + sha256 = "929005cf3eba0a59e13e9af9f1595e218757a1d08c7c9a50cfc2323cd8d2de1c"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/zh-CN/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/zh-CN/firefox-99.0.tar.bz2"; locale = "zh-CN"; arch = "linux-i686"; - sha256 = "fe6fc7bda0e52d64abcef8cbfc5e8576c64067b8746605e80790bde6dcd9b03d"; + sha256 = "06bef0564337cfeab47ce84a095e9bcd347df4f6c821eb5d0404d984689c9e6d"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/98.0.2/linux-i686/zh-TW/firefox-98.0.2.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/99.0/linux-i686/zh-TW/firefox-99.0.tar.bz2"; locale = "zh-TW"; arch = "linux-i686"; - sha256 = "18da6dcf61bba9a22b5487f695793d65b952cfc7065ff334b0faf8e7ec82d90f"; + sha256 = "7eda1a1131117ceb3b513dc345c62397542bcb58cda1e97ade47fedb4fe704c9"; } ]; } diff --git a/pkgs/applications/networking/browsers/firefox/packages.nix b/pkgs/applications/networking/browsers/firefox/packages.nix index 94aa4d74feb6..cdaf63179512 100644 --- a/pkgs/applications/networking/browsers/firefox/packages.nix +++ b/pkgs/applications/networking/browsers/firefox/packages.nix @@ -7,10 +7,10 @@ in rec { firefox = common rec { pname = "firefox"; - version = "98.0.2"; + version = "99.0"; src = fetchurl { url = "mirror://mozilla/firefox/releases/${version}/source/firefox-${version}.source.tar.xz"; - sha512 = "b567b53fcdc08491063d535545f558ea56ec5be02ca540661de116986245b79f509e0103cea5661faf9f4b3d30b67758ebdb4b30401e260ee27cbb300203f36e"; + sha512 = "08f6d5a668140c4275aba6df463ed3af596043dfe5f27573583afbc1e9f6b27ebca79a52ce2c9598261c631b400b5378744e9e70f51ef9c4098b419e9904aa7c"; }; meta = { @@ -32,10 +32,10 @@ rec { firefox-esr-91 = common rec { pname = "firefox-esr"; - version = "91.7.1esr"; + version = "91.8.0esr"; src = fetchurl { url = "mirror://mozilla/firefox/releases/${version}/source/firefox-${version}.source.tar.xz"; - sha512 = "c56aa38e9d706ff1f1838d2639dac82109dcffb54a7ea17326ae306604d78967ac32da13676756999bc1aa0bf50dc4e7072936ceb16e2e834bea48382ae4b48c"; + sha512 = "edea2c7d4d3d0322091b20b623019ef041090d9f89f33c8e3140f66a54624261f278257393db70d2038154de8ee02da0bee6ecf85c281f3558338da71fc173c3"; }; meta = { diff --git a/pkgs/applications/networking/browsers/lagrange/default.nix b/pkgs/applications/networking/browsers/lagrange/default.nix index 00d0bc8f6fd5..53d5733bb584 100644 --- a/pkgs/applications/networking/browsers/lagrange/default.nix +++ b/pkgs/applications/networking/browsers/lagrange/default.nix @@ -19,13 +19,13 @@ stdenv.mkDerivation rec { pname = "lagrange"; - version = "1.11.1"; + version = "1.12.0"; src = fetchFromGitHub { owner = "skyjake"; repo = "lagrange"; rev = "v${version}"; - sha256 = "sha256-RrdD+G8DKOBm0TpmRQg1uMGNFAlAADFeK3h6oyo5RZ4="; + sha256 = "sha256-1eWd4En14p8E04kLWbsbJSEdjManQ87N/P3klFbUQx4="; fetchSubmodules = true; }; diff --git a/pkgs/applications/networking/cluster/kubeless/default.nix b/pkgs/applications/networking/cluster/kubeless/default.nix deleted file mode 100644 index 537fb611783e..000000000000 --- a/pkgs/applications/networking/cluster/kubeless/default.nix +++ /dev/null @@ -1,38 +0,0 @@ -{ lib, buildGoPackage, fetchFromGitHub, installShellFiles }: - -buildGoPackage rec { - pname = "kubeless"; - version = "1.0.7"; - - src = fetchFromGitHub { - owner = "kubeless"; - repo = "kubeless"; - rev = "v${version}"; - sha256 = "0x2hydywnnlh6arzz71p7gg9yzq5z2y2lppn1jszvkbgh11kkqfr"; - }; - - goPackagePath = "github.com/kubeless/kubeless"; - - nativeBuildInputs = [ installShellFiles ]; - - subPackages = [ "cmd/kubeless" ]; - - ldflags = [ - "-s" "-w" "-X github.com/kubeless/kubeless/pkg/version.Version=${version}" - ]; - - postInstall = '' - for shell in bash; do - $out/bin/kubeless completion $shell > kubeless.$shell - installShellCompletion kubeless.$shell - done - ''; - - meta = with lib; { - homepage = "https://kubeless.io"; - description = "The Kubernetes Native Serverless Framework"; - license = licenses.asl20; - maintainers = with maintainers; []; - platforms = platforms.unix; - }; -} diff --git a/pkgs/applications/networking/instant-messengers/alfaview/default.nix b/pkgs/applications/networking/instant-messengers/alfaview/default.nix index ebed984c4d53..a810dbdc3a1f 100644 --- a/pkgs/applications/networking/instant-messengers/alfaview/default.nix +++ b/pkgs/applications/networking/instant-messengers/alfaview/default.nix @@ -5,11 +5,11 @@ stdenv.mkDerivation rec { pname = "alfaview"; - version = "8.40.0"; + version = "8.41.0"; src = fetchurl { url = "https://production-alfaview-assets.alfaview.com/stable/linux/${pname}_${version}.deb"; - sha256 = "sha256-meiIDIG7OXxF2aclHA/8FN8aSz5KWJliDbm2p/flD4k="; + sha256 = "sha256-qW+MB71sylKJQycSX6hiBgxAO4MuhnBaPGFjm+6y4vk="; }; nativeBuildInputs = [ diff --git a/pkgs/applications/networking/instant-messengers/deltachat-desktop/default.nix b/pkgs/applications/networking/instant-messengers/deltachat-desktop/default.nix index f80d8cab8b11..03d1d74305e6 100644 --- a/pkgs/applications/networking/instant-messengers/deltachat-desktop/default.nix +++ b/pkgs/applications/networking/instant-messengers/deltachat-desktop/default.nix @@ -1,6 +1,6 @@ { lib , copyDesktopItems -, electron_14 +, electron_16 , esbuild , fetchFromGitHub , fetchpatch @@ -33,9 +33,9 @@ let }; }); electronExec = if stdenv.isDarwin then - "${electron_14}/Applications/Electron.app/Contents/MacOS/Electron" + "${electron_16}/Applications/Electron.app/Contents/MacOS/Electron" else - "${electron_14}/bin/electron"; + "${electron_16}/bin/electron"; esbuild' = esbuild.overrideAttrs (old: rec { version = "0.12.29"; src = fetchFromGitHub { @@ -47,13 +47,13 @@ let }); in nodejs-14_x.pkgs.deltachat-desktop.override rec { pname = "deltachat-desktop"; - version = "1.28.0"; + version = "1.28.1"; src = fetchFromGitHub { owner = "deltachat"; repo = "deltachat-desktop"; rev = "v${version}"; - hash = "sha256-Ur0UxaKEWp+y7lGz2Khsg4npOf+gjCiOoijkSbnp0hg="; + hash = "sha256-i2Cb2HfapYTaxg5IUl4pGWYUM6o/4mWgMO7QsBqDHoU="; }; nativeBuildInputs = [ diff --git a/pkgs/applications/networking/instant-messengers/deltachat-desktop/package.json b/pkgs/applications/networking/instant-messengers/deltachat-desktop/package.json index ca584702765a..0f4e421a762a 100644 --- a/pkgs/applications/networking/instant-messengers/deltachat-desktop/package.json +++ b/pkgs/applications/networking/instant-messengers/deltachat-desktop/package.json @@ -1,6 +1,6 @@ { "name": "deltachat-desktop", - "version": "1.28.0", + "version": "1.28.1", "dependencies": { "@blueprintjs/core": "^3.22.3", "@deltachat/message_parser_wasm": "^0.3.0", diff --git a/pkgs/applications/networking/nextdns/default.nix b/pkgs/applications/networking/nextdns/default.nix index c06291c719e8..d2c24d9c7a30 100644 --- a/pkgs/applications/networking/nextdns/default.nix +++ b/pkgs/applications/networking/nextdns/default.nix @@ -2,16 +2,16 @@ buildGoModule rec { pname = "nextdns"; - version = "1.37.10"; + version = "1.37.11"; src = fetchFromGitHub { owner = "nextdns"; repo = "nextdns"; rev = "v${version}"; - sha256 = "sha256-iwxgDBIuTClikvXF+3mCjFKKV0upN+K+aL85ewYkMXo="; + sha256 = "sha256-BOmu4OjDq1IwsPjbqzV2OtvKpaYFqP/XdYL2Ug28TbU="; }; - vendorSha256 = "sha256-6hWD05lXteqL7egj9tiRVHlevKM33i+a+zBUZs7PF7I="; + vendorSha256 = "sha256-M2PlvUsEG3Um+NqbpHdtu9g+Gj6jSXZ9YZ7t1MwjjdI="; doCheck = false; diff --git a/pkgs/applications/version-management/git-and-tools/hut/default.nix b/pkgs/applications/version-management/git-and-tools/hut/default.nix index ad0c02aa2e0d..49e5fa675a94 100644 --- a/pkgs/applications/version-management/git-and-tools/hut/default.nix +++ b/pkgs/applications/version-management/git-and-tools/hut/default.nix @@ -2,21 +2,20 @@ , buildGoModule , fetchFromSourcehut , scdoc -, unstableGitUpdater }: -buildGoModule { +buildGoModule rec { pname = "hut"; - version = "unstable-2022-03-02"; + version = "0.1.0"; src = fetchFromSourcehut { owner = "~emersion"; repo = "hut"; - rev = "55ad2fbd9ceeeb9e7dc203c15476fa785f1209e0"; - sha256 = "sha256-j2IVwCm7iq3JKccPL8noRBhqw+V+4qfcpAwV65xhZk0="; + rev = "v${version}"; + sha256 = "sha256-2YUrDPulpLQQGw31nEasHoQ/AppECg7acwwqu6JDT5U="; }; - vendorSha256 = "sha256-zdQvk0M1a+Y90pnhqIpKxLJnlVJqMoSycewTep2Oux4="; + vendorSha256 = "sha256-EmokL3JlyM6C5/NOarCAJuqNsDO2tgHwqQdv0rAk+Xk="; nativeBuildInputs = [ scdoc @@ -32,8 +31,6 @@ buildGoModule { make $makeFlags install ''; - passthru.updateScript = unstableGitUpdater { }; - meta = with lib; { homepage = "https://sr.ht/~emersion/hut/"; description = "A CLI tool for Sourcehut / sr.ht"; diff --git a/pkgs/applications/version-management/github-desktop/default.nix b/pkgs/applications/version-management/github-desktop/default.nix index 83991407fd41..6017d105fed7 100644 --- a/pkgs/applications/version-management/github-desktop/default.nix +++ b/pkgs/applications/version-management/github-desktop/default.nix @@ -19,11 +19,11 @@ stdenv.mkDerivation rec { pname = "github-desktop"; - version = "2.9.9"; + version = "2.9.12"; src = fetchurl { url = "https://github.com/shiftkey/desktop/releases/download/release-${version}-linux1/GitHubDesktop-linux-${version}-linux1.deb"; - sha256 = "sha256-LMKOxQR3Bgw00LnKqAe2hq+eASgwC7y0cxNSSt/sjWA="; + sha256 = "sha256-tr1u6q7sHI1Otor53d1F7J0f9eV9tKtLZx8+40I16y8="; }; nativeBuildInputs = [ diff --git a/pkgs/applications/version-management/mercurial/default.nix b/pkgs/applications/version-management/mercurial/default.nix index 9dc3e0329e3c..489872915990 100644 --- a/pkgs/applications/version-management/mercurial/default.nix +++ b/pkgs/applications/version-management/mercurial/default.nix @@ -21,18 +21,13 @@ let self = python3Packages.buildPythonApplication rec { pname = "mercurial${lib.optionalString fullBuild "-full"}"; - version = "6.1"; + version = "6.1.1"; src = fetchurl { url = "https://mercurial-scm.org/release/mercurial-${version}.tar.gz"; - sha256 = "sha256-hvmGReRWWpJWmR3N4it3uOfSLKb7tgwfTNvYRpo4zB8="; + sha256 = "sha256-V7ikYdDOE9muOBfYqL35Ay407fqsPbzLO2a4NdzpM4g="; }; - patches = [ - # Fix the type of libc buffer for aarch64-linux - ./fix-rhg-type-aarch64.patch - ]; - format = "other"; passthru = { inherit python; }; # pass it so that the same version can be used in hg2git @@ -40,7 +35,7 @@ let cargoDeps = if rustSupport then rustPlatform.fetchCargoTarball { inherit src; name = "mercurial-${version}"; - sha256 = "sha256-+Y91gEC8vmyutNpVFAAL4MSg4KnpFbhH12CIuMRx0Mc="; + sha256 = "sha256-HYH7+OD11kdZdxFrx1KVle1NesS3fAgwVXJpAeiXDTo="; sourceRoot = "mercurial-${version}/rust"; } else null; cargoRoot = if rustSupport then "rust" else null; diff --git a/pkgs/applications/version-management/mercurial/fix-rhg-type-aarch64.patch b/pkgs/applications/version-management/mercurial/fix-rhg-type-aarch64.patch deleted file mode 100644 index 84417b497c0a..000000000000 --- a/pkgs/applications/version-management/mercurial/fix-rhg-type-aarch64.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff --git a/rust/hg-core/src/lock.rs b/rust/hg-core/src/lock.rs ---- a/rust/hg-core/src/lock.rs -+++ b/rust/hg-core/src/lock.rs -@@ -145,7 +145,7 @@ lazy_static::lazy_static! { - - /// Same as https://github.com/python/cpython/blob/v3.10.0/Modules/socketmodule.c#L5414 - const BUFFER_SIZE: usize = 1024; -- let mut buffer = [0_i8; BUFFER_SIZE]; -+ let mut buffer = [0 as libc::c_char; BUFFER_SIZE]; - let hostname_bytes = unsafe { - let result = libc::gethostname(buffer.as_mut_ptr(), BUFFER_SIZE); - if result != 0 { diff --git a/pkgs/applications/video/ani-cli/default.nix b/pkgs/applications/video/ani-cli/default.nix index 6883587b4b81..1cd44bd34883 100644 --- a/pkgs/applications/video/ani-cli/default.nix +++ b/pkgs/applications/video/ani-cli/default.nix @@ -12,13 +12,13 @@ stdenvNoCC.mkDerivation rec { pname = "ani-cli"; - version = "1.9"; + version = "2.0"; src = fetchFromGitHub { owner = "pystardust"; repo = "ani-cli"; rev = "v${version}"; - sha256 = "sha256-oYiq3Mnuhba5NELJXqVN3gY/d0RfQIqW13YtdcmYKK4="; + sha256 = "sha256-cDxb/IcpzR5akWnA8RN+fKQn0+QnpBV8tAbUjjPICsA="; }; nativeBuildInputs = [ makeWrapper ]; diff --git a/pkgs/build-support/test-equal-derivation.nix b/pkgs/build-support/test-equal-derivation.nix index 5d2185ce1652..652f3716b2a7 100644 --- a/pkgs/build-support/test-equal-derivation.nix +++ b/pkgs/build-support/test-equal-derivation.nix @@ -23,7 +23,7 @@ let drvB = builtins.unsafeDiscardOutputDependency b.drvPath or (throw "testEqualDerivation third argument must be a package"); name = if a?name - then lib.strings.sanitizeDerivationName "testEqualDerivation-${a.name}" + then "testEqualDerivation-${a.name}" else "testEqualDerivation"; in if drvA == drvB then diff --git a/pkgs/build-support/trivial-builders.nix b/pkgs/build-support/trivial-builders.nix index d864eced2817..124ade8cfa0d 100644 --- a/pkgs/build-support/trivial-builders.nix +++ b/pkgs/build-support/trivial-builders.nix @@ -70,8 +70,7 @@ rec { # name of the resulting derivation }: buildCommand: stdenv.mkDerivation ({ - name = lib.strings.sanitizeDerivationName name; - inherit buildCommand; + inherit buildCommand name; passAsFile = [ "buildCommand" ] ++ (derivationArgs.passAsFile or []); } diff --git a/pkgs/desktops/gnome/core/eog/default.nix b/pkgs/desktops/gnome/core/eog/default.nix index 08baf9022f71..9a152921994d 100644 --- a/pkgs/desktops/gnome/core/eog/default.nix +++ b/pkgs/desktops/gnome/core/eog/default.nix @@ -38,6 +38,13 @@ stdenv.mkDerivation rec { sha256 = "sha256-+zW/tRZ6QhIfWae5t6wNdbvQUXua/W2Rgx6E01c13fg="; }; + patches = [ + # Fix path to libeog.so in the gir file. + # We patch gobject-introspection to hardcode absolute paths but + # our Meson patch will only pass the info when install_dir is absolute as well. + ./fix-gir-lib-path.patch + ]; + nativeBuildInputs = [ meson ninja diff --git a/pkgs/desktops/gnome/core/eog/fix-gir-lib-path.patch b/pkgs/desktops/gnome/core/eog/fix-gir-lib-path.patch new file mode 100644 index 000000000000..eb087b58a317 --- /dev/null +++ b/pkgs/desktops/gnome/core/eog/fix-gir-lib-path.patch @@ -0,0 +1,13 @@ +diff --git a/src/meson.build b/src/meson.build +index cc9d3856..f909836d 100644 +--- a/src/meson.build ++++ b/src/meson.build +@@ -165,7 +165,7 @@ libeog = shared_library( + link_args: ldflags, + link_depends: symbol_map, + install: true, +- install_dir: eog_pkglibdir, ++ install_dir: eog_prefix / eog_pkglibdir, + ) + + libeog_dep = declare_dependency( diff --git a/pkgs/desktops/gnome/extensions/arcmenu/default.nix b/pkgs/desktops/gnome/extensions/arcmenu/default.nix index 7bc997a4bf1a..6e6085485306 100644 --- a/pkgs/desktops/gnome/extensions/arcmenu/default.nix +++ b/pkgs/desktops/gnome/extensions/arcmenu/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { pname = "gnome-shell-extension-arcmenu"; - version = "24"; + version = "27"; src = fetchFromGitLab { owner = "arcmenu"; repo = "ArcMenu"; rev = "v${version}"; - sha256 = "sha256-GbZt6JC+uAPkb4GU1Q7WRJ6Pf95Uh48cYwvoTgLimHs="; + sha256 = "sha256-X5oA475Wl3SKVLLcg47Hv91VV8HGeNHhaQLfNi3xt8k="; }; patches = [ diff --git a/pkgs/desktops/gnome/extensions/system-monitor/default.nix b/pkgs/desktops/gnome/extensions/system-monitor/default.nix index d770acfec16f..216a1d4c77de 100644 --- a/pkgs/desktops/gnome/extensions/system-monitor/default.nix +++ b/pkgs/desktops/gnome/extensions/system-monitor/default.nix @@ -1,20 +1,19 @@ -{ lib, stdenv, substituteAll, fetchFromGitHub, fetchpatch, glib, glib-networking, libgtop, gnome }: +{ lib, stdenv, substituteAll, fetchFromGitHub, glib, glib-networking, libgtop, gnome }: stdenv.mkDerivation rec { pname = "gnome-shell-extension-system-monitor"; - version = "unstable-2021-09-07"; + version = "unstable-2022-02-04"; src = fetchFromGitHub { owner = "paradoxxxzero"; repo = "gnome-shell-system-monitor-applet"; - rev = "133f9f32bca5d159515d709bbdee81bf497ebdc5"; - sha256 = "1vz1s1x22xmmzaayrzv5jyzlmxslhfaybbnv959szvfp4mdrhch9"; + rev = "2c6eb0a447bfc9f1a07c61956c92a55c874baf16"; + hash = "sha256-JuRRlvqlqneqUdgezKGl2yg7wFYGCCo51q9CBwrxTBY="; }; - buildInputs = [ + nativeBuildInputs = [ glib - glib-networking - libgtop + gnome.gnome-shell ]; patches = [ @@ -24,25 +23,13 @@ stdenv.mkDerivation rec { gtop_path = "${libgtop}/lib/girepository-1.0"; glib_net_path = "${glib-networking}/lib/girepository-1.0"; }) - # Support GNOME 41 - (fetchpatch { - url = "https://github.com/paradoxxxzero/gnome-shell-system-monitor-applet/pull/718/commits/f4ebc29afa707326b977230329e634db169f55b1.patch"; - sha256 = "0ndnla41mvrww6ldf9d55ar1ibyj8ak5pp1dkjg75jii9slgzjqb"; - }) ]; - buildPhase = '' - runHook preBuild - glib-compile-schemas --targetdir="system-monitor@paradoxxx.zero.gmail.com/schemas" "system-monitor@paradoxxx.zero.gmail.com/schemas" - runHook postBuild - ''; - - installPhase = '' - runHook preInstall - mkdir -p $out/share/gnome-shell/extensions - cp -r "system-monitor@paradoxxx.zero.gmail.com" $out/share/gnome-shell/extensions - runHook postInstall - ''; + makeFlags = [ + "VERSION=${version}" + "INSTALLBASE=$(out)/share/gnome-shell/extensions" + "SUDO=" + ]; passthru = { extensionUuid = "system-monitor@paradoxxx.zero.gmail.com"; diff --git a/pkgs/development/compilers/llvm/multi.nix b/pkgs/development/compilers/llvm/multi.nix index 60db622a73ab..ecea5d440378 100644 --- a/pkgs/development/compilers/llvm/multi.nix +++ b/pkgs/development/compilers/llvm/multi.nix @@ -19,9 +19,9 @@ let lib = gcc_multi_sysroot; }; } '' - mkdir -p $out/lib/gcc + mkdir -p $out/lib{,64}/gcc - ln -s ${combine gcc64}/lib/gcc/* $out/lib/gcc/ + ln -s ${combine gcc64}/lib/gcc/* $out/lib64/gcc/ ln -s ${combine gcc32}/lib/gcc/* $out/lib/gcc/ # XXX: This shouldn't be needed, clang just doesn't look for "i686-unknown" ln -s $out/lib/gcc/i686-unknown-linux-gnu $out/lib/gcc/i686-pc-linux-gnu diff --git a/pkgs/development/interpreters/clojure/babashka.nix b/pkgs/development/interpreters/clojure/babashka.nix index c3dcd0a0f71f..de46d33bdf60 100644 --- a/pkgs/development/interpreters/clojure/babashka.nix +++ b/pkgs/development/interpreters/clojure/babashka.nix @@ -2,11 +2,11 @@ buildGraalvmNativeImage rec { pname = "babashka"; - version = "0.7.8"; + version = "0.8.0"; src = fetchurl { url = "https://github.com/babashka/${pname}/releases/download/v${version}/${pname}-${version}-standalone.jar"; - sha256 = "sha256-VbDivl92YYWzIbkbOgDijzf9bZ5ZyodcapPPG4EiGXc="; + sha256 = "sha256-xe+WL2V56ETnWv6ey+3xrvC21MfhT5AMtmOkVPbX5N0="; }; executable = "bb"; diff --git a/pkgs/development/libraries/avro-c/default.nix b/pkgs/development/libraries/avro-c/default.nix index 76d5839402cf..e38a748317fb 100644 --- a/pkgs/development/libraries/avro-c/default.nix +++ b/pkgs/development/libraries/avro-c/default.nix @@ -1,4 +1,4 @@ -{ lib, stdenv, cmake, fetchurl, pkg-config, jansson, zlib }: +{ lib, stdenv, cmake, fetchurl, pkg-config, jansson, lzma, snappy, zlib }: stdenv.mkDerivation rec { pname = "avro-c"; @@ -15,7 +15,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkg-config cmake ]; - buildInputs = [ jansson zlib ]; + buildInputs = [ jansson lzma snappy zlib ]; meta = with lib; { description = "A C library which implements parts of the Avro Specification"; diff --git a/pkgs/development/libraries/openmpi/default.nix b/pkgs/development/libraries/openmpi/default.nix index aac11dc83bda..7baf99266972 100644 --- a/pkgs/development/libraries/openmpi/default.nix +++ b/pkgs/development/libraries/openmpi/default.nix @@ -27,11 +27,11 @@ let }; in stdenv.mkDerivation rec { pname = "openmpi"; - version = "4.1.2"; + version = "4.1.3"; src = with lib.versions; fetchurl { url = "https://www.open-mpi.org/software/ompi/v${major version}.${minor version}/downloads/${pname}-${version}.tar.bz2"; - sha256 = "09xmlr4mfs02kwcf5cmdgkcdjj81fjwjmpa3rz2k28f3gz7wfy4v"; + sha256 = "sha256-PYHQTFTvtV04caRl/7CY2NcsH0j/HLryWA6wWFZ8Cjs="; }; postPatch = '' diff --git a/pkgs/development/node-packages/default.nix b/pkgs/development/node-packages/default.nix index 07ed3d19e4eb..9ecb7c5f3ef4 100644 --- a/pkgs/development/node-packages/default.nix +++ b/pkgs/development/node-packages/default.nix @@ -352,6 +352,9 @@ let meta.mainProgram = "postcss"; }; + # To update prisma, please first update prisma-engines to the latest + # version. Then change the correct hash to this package. The PR should hold + # two commits: one for the engines and the other one for the node package. prisma = super.prisma.override rec { nativeBuildInputs = [ pkgs.makeWrapper ]; @@ -359,7 +362,7 @@ let src = fetchurl { url = "https://registry.npmjs.org/prisma/-/prisma-${version}.tgz"; - sha512 = "sha512-8SdsLPhKR3mOfoo2o73h9mNn3v5kA/RqGA26Sv6qDS78Eh2uepPqt5e8/nwj5EOblYm5HEGuitaXQrOCLb6uTw=="; + sha512 = "sha512-ltCMZAx1i0i9xuPM692Srj8McC665h6E5RqJom999sjtVSccHSD8Z+HSdBN2183h9PJKvC5dapkn78dd0NWMBg=="; }; postInstall = with pkgs; '' wrapProgram "$out/bin/prisma" \ diff --git a/pkgs/development/node-packages/node-packages.nix b/pkgs/development/node-packages/node-packages.nix index 0ab3eda77407..64400c47fc20 100644 --- a/pkgs/development/node-packages/node-packages.nix +++ b/pkgs/development/node-packages/node-packages.nix @@ -103,22 +103,13 @@ let sha512 = "hoyByceqwKirw7w3Z7gnIIZC3Wx3J484Y3L/cMpXFbr7d9ZQj2mODrirNzcJa+SM3UlpWXYvKV4RlRpFXlWgXg=="; }; }; - "@angular-devkit/architect-0.1303.0" = { + "@angular-devkit/architect-0.1303.1" = { name = "_at_angular-devkit_slash_architect"; packageName = "@angular-devkit/architect"; - version = "0.1303.0"; + version = "0.1303.1"; src = fetchurl { - url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1303.0.tgz"; - sha512 = "kTcKB917ICA8j53SGo4gn+qAlzx8si+iHnOTbp5QlMr7qt/Iz07SVVI8mRlMD6c6lr7eE/fVlCLzEZ1+WCQpTA=="; - }; - }; - "@angular-devkit/core-13.2.5" = { - name = "_at_angular-devkit_slash_core"; - packageName = "@angular-devkit/core"; - version = "13.2.5"; - src = fetchurl { - url = "https://registry.npmjs.org/@angular-devkit/core/-/core-13.2.5.tgz"; - sha512 = "WuWp/1R0FtCHPBcJLF13lTLHETtDGFUX0ULfGPRaYB5OVCSQcovVp5UbZTTy/Ss3ub3EOEmJlU8kMJfBrWuq+A=="; + url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1303.1.tgz"; + sha512 = "ppaLzNZPrqrI96ddgm1RuEALVpWZsmHbIPLDd0GBwhF6aOkwF0LpZHd5XyS4ktGFZPReiFIjWSVtqV5vaBdRsw=="; }; }; "@angular-devkit/core-13.3.0" = { @@ -130,13 +121,13 @@ let sha512 = "8YrreVbWlJVZnk5zs4vfkRItrPEtWhUcxWOBfYT/Kwu4FwJVAnNuhJAxxXOAQ2Ckd7cv30Idh/RFVLbTZ5Gs9w=="; }; }; - "@angular-devkit/schematics-13.2.5" = { - name = "_at_angular-devkit_slash_schematics"; - packageName = "@angular-devkit/schematics"; - version = "13.2.5"; + "@angular-devkit/core-13.3.1" = { + name = "_at_angular-devkit_slash_core"; + packageName = "@angular-devkit/core"; + version = "13.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-13.2.5.tgz"; - sha512 = "kAye6VYiF9JQAoeO+BYhy8eT2QOmhB+WLziRjXoFCBxh5+yXTygTVfs9fD5jmIpHmeu4hd2ErSh69yT5xWcD9g=="; + url = "https://registry.npmjs.org/@angular-devkit/core/-/core-13.3.1.tgz"; + sha512 = "eXAcQaP1mn6rnQb+5bv5NsamY6b34UYM7G+S154Hnma6CTTSGBtcmoNAJs8cekuFqWlw7YgpB/e15jR5OLPkDA=="; }; }; "@angular-devkit/schematics-13.3.0" = { @@ -148,6 +139,15 @@ let sha512 = "hq7tqnB3uVT/iDgqWWZ4kvnijeAcgd4cfLzZiCPaYn1nuhZf0tWsho6exhJ/odMZHvVp7w8OibqWiUKxNY9zHA=="; }; }; + "@angular-devkit/schematics-13.3.1" = { + name = "_at_angular-devkit_slash_schematics"; + packageName = "@angular-devkit/schematics"; + version = "13.3.1"; + src = fetchurl { + url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-13.3.1.tgz"; + sha512 = "DxXMjlq/sALcHuONZRMTBX5k30XPfN4b6Ue4k7Xl8JKZqyHhEzfXaZzgD9u2cwb7wybKEeF/BZ5eJd8JG525og=="; + }; + }; "@angular-devkit/schematics-cli-13.3.0" = { name = "_at_angular-devkit_slash_schematics-cli"; packageName = "@angular-devkit/schematics-cli"; @@ -319,13 +319,13 @@ let sha512 = "vF+zxhPiLtkwxONs6YanSt1EpwpGilThpneExUN5K3tCymuxNnVq2yojTvnpRjv2QfsEIt/n7ozPIIzBLwGIDQ=="; }; }; - "@apollographql/apollo-tools-0.5.2" = { + "@apollographql/apollo-tools-0.5.3" = { name = "_at_apollographql_slash_apollo-tools"; packageName = "@apollographql/apollo-tools"; - version = "0.5.2"; + version = "0.5.3"; src = fetchurl { - url = "https://registry.npmjs.org/@apollographql/apollo-tools/-/apollo-tools-0.5.2.tgz"; - sha512 = "KxZiw0Us3k1d0YkJDhOpVH5rJ+mBfjXcgoRoCcslbgirjgLotKMzOcx4PZ7YTEvvEROmvG7X3Aon41GvMmyGsw=="; + url = "https://registry.npmjs.org/@apollographql/apollo-tools/-/apollo-tools-0.5.3.tgz"; + sha512 = "VcsXHfTFoCodDAgJZxN04GdFK1kqOhZQnQY/9Fa147P+I8xfvOSz5d+lKAPB+hwSgBNyd7ncAKGIs4+utbL+yA=="; }; }; "@apollographql/graphql-playground-html-1.6.27" = { @@ -463,49 +463,49 @@ let sha512 = "o/xjMCq81opAjSBjt7YdHJwIJcGVG5XIV9+C2KXcY5QwVimkOKPybWTv0mXPvSwSilSx+EhpLNhkcJuXdzhw4w=="; }; }; - "@aws-sdk/chunked-blob-reader-native-3.55.0" = { + "@aws-sdk/chunked-blob-reader-native-3.58.0" = { name = "_at_aws-sdk_slash_chunked-blob-reader-native"; packageName = "@aws-sdk/chunked-blob-reader-native"; - version = "3.55.0"; + version = "3.58.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/chunked-blob-reader-native/-/chunked-blob-reader-native-3.55.0.tgz"; - sha512 = "juorCwSR9O1XhpSIBSAiIH7cP1c67J4wnoiXmmbun/qzmBPipGYm0PHX5H+J89s8gD2F3e49/TWFXbZmxRw57w=="; + url = "https://registry.npmjs.org/@aws-sdk/chunked-blob-reader-native/-/chunked-blob-reader-native-3.58.0.tgz"; + sha512 = "+D3xnPD5985iphgAqgUerBDs371a2WzzoEVi7eHJUMMsP/gEnSTdSH0HNxsqhYv6CW4EdKtvDAQdAwA1VtCf2A=="; }; }; - "@aws-sdk/client-s3-3.56.0" = { + "@aws-sdk/client-s3-3.58.0" = { name = "_at_aws-sdk_slash_client-s3"; packageName = "@aws-sdk/client-s3"; - version = "3.56.0"; + version = "3.58.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.56.0.tgz"; - sha512 = "g/OiJtD8d0roi3XK5ThIwEvkAkSDoKzxkE0gqKKJNABBnyozNnDNAVt4XnMxuXX1PPjg1KVKH2iJWFGj5I0jPQ=="; + url = "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.58.0.tgz"; + sha512 = "7TAqYFpFeaahLCdIxsdWLz3uRrzITFFFitbfVxQ+eaR6EMuH3VEhbGEZ66+zieWns9a1UXc11918vpwgu0zTtw=="; }; }; - "@aws-sdk/client-sso-3.56.0" = { + "@aws-sdk/client-sso-3.58.0" = { name = "_at_aws-sdk_slash_client-sso"; packageName = "@aws-sdk/client-sso"; - version = "3.56.0"; + version = "3.58.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.56.0.tgz"; - sha512 = "5gkbkNK1iaQ7C053HG5yvWNE/AB8w39kxk/VGxACrX6bVZR1tnN36vhInjom83mWlDIu0Tl5WqD8tmkjqCYMFQ=="; + url = "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.58.0.tgz"; + sha512 = "nS5G/OX8Bg4ajBa6+jLcbbr4PpEO+l5eJfGUzoJQwS4Zqa0lF/wC0kyjKm61gLp4JuvhrQskxIC/3IXUqB1XVQ=="; }; }; - "@aws-sdk/client-sts-3.56.0" = { + "@aws-sdk/client-sts-3.58.0" = { name = "_at_aws-sdk_slash_client-sts"; packageName = "@aws-sdk/client-sts"; - version = "3.56.0"; + version = "3.58.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.56.0.tgz"; - sha512 = "6LFwAU/K02Q8eNk8O/ZnaPCsnDibKYReiRV222hD64vy8rMvtGO1l+RTf5cFVa1XxHNy9ZERIJBn60EO2Zw7FA=="; + url = "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.58.0.tgz"; + sha512 = "2cHZsG2eXv/Zl0hvsG9+rdHEuAclMFfkma/3LC3RRwSuZXo1rXoIhFkzHfGfIbivdk738YAo7FT3ZYGlrsK4ow=="; }; }; - "@aws-sdk/config-resolver-3.56.0" = { + "@aws-sdk/config-resolver-3.58.0" = { name = "_at_aws-sdk_slash_config-resolver"; packageName = "@aws-sdk/config-resolver"; - version = "3.56.0"; + version = "3.58.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/config-resolver/-/config-resolver-3.56.0.tgz"; - sha512 = "Gzx/fkUqixQkNpqoVTyR0+BUpJTfv+9qBNbhBw79V+HnPeY+tyqkVB4vZNJYbYSR6A/rMwYThxPOfvsNDFPk6A=="; + url = "https://registry.npmjs.org/@aws-sdk/config-resolver/-/config-resolver-3.58.0.tgz"; + sha512 = "NXEwYw0JrXcvenu42QpNMQXK+6pgZ+6bDGfCgOfCC0FmyI+w/CuF36lApwm7InHvHazOaDlwArXm2pfntErKoA=="; }; }; "@aws-sdk/credential-provider-env-3.55.0" = { @@ -517,49 +517,49 @@ let sha512 = "4AIIXEdvinLlWNFtrUbUgoB7dkuV04RTcTruVWI4Ub4WSsuSCa72ZU1vqyvcEAOgGGLBmcSaGTWByjiD2sGcGA=="; }; }; - "@aws-sdk/credential-provider-imds-3.56.0" = { + "@aws-sdk/credential-provider-imds-3.58.0" = { name = "_at_aws-sdk_slash_credential-provider-imds"; packageName = "@aws-sdk/credential-provider-imds"; - version = "3.56.0"; + version = "3.58.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-imds/-/credential-provider-imds-3.56.0.tgz"; - sha512 = "EibXjFcGtDEm8g9DhGtJpcVLxRhnN1tnrTxwlwTdc510k7F4Aly7PNLT/72tr4IQ8hl9eCCYgsNBpPDlY4pMmQ=="; + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-imds/-/credential-provider-imds-3.58.0.tgz"; + sha512 = "CdtnTQ9zqLx1FbXdbgjijLbMcIWOyQM03TFaLSCjI3FNbUwyt3T7StBU9tj/LtbypHhSdXyQBpzUtXTOMWCEhg=="; }; }; - "@aws-sdk/credential-provider-ini-3.56.0" = { + "@aws-sdk/credential-provider-ini-3.58.0" = { name = "_at_aws-sdk_slash_credential-provider-ini"; packageName = "@aws-sdk/credential-provider-ini"; - version = "3.56.0"; + version = "3.58.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.56.0.tgz"; - sha512 = "XpZf8LPIIbBI0zvsRPW9ZNyom5ymctr+lMIv62w9bUglojdVtBVC2ErGBmQXSWWITk/hzFZ122txU5fyRjyAFg=="; + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.58.0.tgz"; + sha512 = "uM62hcHUVaHP1YFnbrjf2RlrRj1m/BvMPE+T5jdNRWdE3lvnunhEMawB26HZs9nQqCV6d25I8G9/fGWVL7g3Og=="; }; }; - "@aws-sdk/credential-provider-node-3.56.0" = { + "@aws-sdk/credential-provider-node-3.58.0" = { name = "_at_aws-sdk_slash_credential-provider-node"; packageName = "@aws-sdk/credential-provider-node"; - version = "3.56.0"; + version = "3.58.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.56.0.tgz"; - sha512 = "TSnjA1grdyTP8xNNgNxLmOvZMUT3zT9JLydBOqpQptLjLBbP90F32CCxKZWFOA/DXtZA0QK9Fjo+8t0Q3xZtiw=="; + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.58.0.tgz"; + sha512 = "f0wzcgMYCQUrii6TLP2ggCxkQP4HH8PW8tbbWEgt4cdIXcjE9KEuxN5yOV6sFHzL3eJh0QM9Yaz8WzhWn6fT2A=="; }; }; - "@aws-sdk/credential-provider-process-3.56.0" = { + "@aws-sdk/credential-provider-process-3.58.0" = { name = "_at_aws-sdk_slash_credential-provider-process"; packageName = "@aws-sdk/credential-provider-process"; - version = "3.56.0"; + version = "3.58.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.56.0.tgz"; - sha512 = "B+Y35sefW1iTKqAPdlgzRy4lYx7nhXQNn+gyyt1ohfJLEvP3twv/n2xdNrF9xewCyF9glBm3YkxSleFZsGoBCw=="; + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.58.0.tgz"; + sha512 = "npgFqPUjMhUamf1FvJjBYUdpbWx8XWkKCwJsX73I7IYQAvAi2atCOkdtKq+4rds0VWAYu6vzlaI1tXgFxjOPNQ=="; }; }; - "@aws-sdk/credential-provider-sso-3.56.0" = { + "@aws-sdk/credential-provider-sso-3.58.0" = { name = "_at_aws-sdk_slash_credential-provider-sso"; packageName = "@aws-sdk/credential-provider-sso"; - version = "3.56.0"; + version = "3.58.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.56.0.tgz"; - sha512 = "oCUWNl742VgrlES5LVgmtyl6ruin8xXCG8Igv6SO0gxYswkv/ed/3yhQfOOaUmO4hY7p+q0ClwXZ3EQ3UH66wg=="; + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.58.0.tgz"; + sha512 = "2qO34s9lJqvCC6zOF4UpopW6xURZpYfVC8xTUDpAUnvTOt4nS5hkx4vNyqPAXILoRHuFJsnlWsBH1UP5ZnBiZg=="; }; }; "@aws-sdk/credential-provider-web-identity-3.55.0" = { @@ -571,22 +571,22 @@ let sha512 = "aKnXfZNGohTuF9rCGYLg4JEIOvWIZ/sb66XMq7bOUrx13KRPDwL/eUQL8quS5jGRLpjXVNvrS17AFf65GbdUBg=="; }; }; - "@aws-sdk/eventstream-marshaller-3.55.0" = { + "@aws-sdk/eventstream-marshaller-3.58.0" = { name = "_at_aws-sdk_slash_eventstream-marshaller"; packageName = "@aws-sdk/eventstream-marshaller"; - version = "3.55.0"; + version = "3.58.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/eventstream-marshaller/-/eventstream-marshaller-3.55.0.tgz"; - sha512 = "ubPmAce0pxVsxrKsQQ/1q0xTY9S14m2/7REnkE0pzAGrl8xjH5OUpGml4yWqyboZPk1chnTaw+hoC5fj8Avexw=="; + url = "https://registry.npmjs.org/@aws-sdk/eventstream-marshaller/-/eventstream-marshaller-3.58.0.tgz"; + sha512 = "vTdVFLIHGZTx/Anp9GpkTXVuvwSCNOecTutU5Py4i6fATgefWiSutc5Xc/FLujBSc0EhAXDGZIcTMpZC7jUpeg=="; }; }; - "@aws-sdk/eventstream-serde-browser-3.55.0" = { + "@aws-sdk/eventstream-serde-browser-3.58.0" = { name = "_at_aws-sdk_slash_eventstream-serde-browser"; packageName = "@aws-sdk/eventstream-serde-browser"; - version = "3.55.0"; + version = "3.58.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-browser/-/eventstream-serde-browser-3.55.0.tgz"; - sha512 = "V0/54j6sTBIRjhJJWjG1j44PsmZHfYzD0n2vxfhwmEvrK3BSXYU3Z3D9kYcajSvcvO8KRFU9/ZqRFJEN60Cl1g=="; + url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-browser/-/eventstream-serde-browser-3.58.0.tgz"; + sha512 = "oR5yoOoJrTSUKwbxZSt37bZgMXUUSsOub96E6SOb8wh8TMq2f0wvqeO8A+aaxY487gKpzuVUClp7jSQ9LgiVcw=="; }; }; "@aws-sdk/eventstream-serde-config-resolver-3.55.0" = { @@ -598,40 +598,40 @@ let sha512 = "NTJHLq1sbXyXAaJucKvcdN3Svr/fM2TjHEC3l8P/torFjIsX1+Ykpi8tZt8KsX8RjoUTTfKylh41AjJq0K9X4Q=="; }; }; - "@aws-sdk/eventstream-serde-node-3.55.0" = { + "@aws-sdk/eventstream-serde-node-3.58.0" = { name = "_at_aws-sdk_slash_eventstream-serde-node"; packageName = "@aws-sdk/eventstream-serde-node"; - version = "3.55.0"; + version = "3.58.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-node/-/eventstream-serde-node-3.55.0.tgz"; - sha512 = "0/kzJfupYrNLbJqn+MsTGGV0/dhPbqTN6g/4GqnoVDOiZPQeJjWEzmrWcXUDDbXq79+Zw0fIlniVkAMxhK2hvw=="; + url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-node/-/eventstream-serde-node-3.58.0.tgz"; + sha512 = "U1DnRVfvKOXty+Bei6oqhRWFzGWzxl0OFHtev9GzC7BE/E6s4Gn695o+NO+9IwQgjOlc/JsGyAcWevq3MDxymg=="; }; }; - "@aws-sdk/eventstream-serde-universal-3.55.0" = { + "@aws-sdk/eventstream-serde-universal-3.58.0" = { name = "_at_aws-sdk_slash_eventstream-serde-universal"; packageName = "@aws-sdk/eventstream-serde-universal"; - version = "3.55.0"; + version = "3.58.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-universal/-/eventstream-serde-universal-3.55.0.tgz"; - sha512 = "fUqmpCO1jtdg5t1KQbKfs17KGsMUj9+d2hiIx7XxnL5SroXpBU6LIuiFgrjPluGWi0SsdOrL6SAkrDyR6aa/Xw=="; + url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-universal/-/eventstream-serde-universal-3.58.0.tgz"; + sha512 = "w7czmMNvCCspJi8Ij0lTByCiuYBhyNzYTM1wv33vtF7dL+FJgi4W4c5WFAOtvpsPulobY013TWCjPJG+V0IPGQ=="; }; }; - "@aws-sdk/fetch-http-handler-3.55.0" = { + "@aws-sdk/fetch-http-handler-3.58.0" = { name = "_at_aws-sdk_slash_fetch-http-handler"; packageName = "@aws-sdk/fetch-http-handler"; - version = "3.55.0"; + version = "3.58.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/fetch-http-handler/-/fetch-http-handler-3.55.0.tgz"; - sha512 = "/Sta3MLlszpRZ1pg+ClxfNqGvraX93F587eHrfQMaGXgQ2BqJLiAVRorBRGcmmmrHxfLOqspNqufF7ibrqziRQ=="; + url = "https://registry.npmjs.org/@aws-sdk/fetch-http-handler/-/fetch-http-handler-3.58.0.tgz"; + sha512 = "timF3FjPV5Bd+Kgph83LIKVlPCFObVYzious1a6doeLAT6YFwZpRrWbfP/HzS+DCoYiwUsH69oVJ91BoV66oyA=="; }; }; - "@aws-sdk/hash-blob-browser-3.55.0" = { + "@aws-sdk/hash-blob-browser-3.58.0" = { name = "_at_aws-sdk_slash_hash-blob-browser"; packageName = "@aws-sdk/hash-blob-browser"; - version = "3.55.0"; + version = "3.58.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/hash-blob-browser/-/hash-blob-browser-3.55.0.tgz"; - sha512 = "/tVsZDPXgxIovFRrKclcq304KEHcHUbBcpqar2QRYZAvaK+vxZM9h7ZmAKemmlkzV7mdh0KZqzPnfr6+KN4IGg=="; + url = "https://registry.npmjs.org/@aws-sdk/hash-blob-browser/-/hash-blob-browser-3.58.0.tgz"; + sha512 = "fdp12BqypRxwvevbJSl/sUhXJRi4Ghv6JKEXAHI1klkR6xY1GRORO5SHWltVY/xl373ERMol5o/n+ra/7jcx/g=="; }; }; "@aws-sdk/hash-node-3.55.0" = { @@ -643,13 +643,13 @@ let sha512 = "2UdYwY/++AlzWEAFaK9wOed2QSxbzV527vmqKjReLHpPKPrSIlooUxlTH3LU6Y6WVDAzDRtLK43KUVXTLgGK1A=="; }; }; - "@aws-sdk/hash-stream-node-3.55.0" = { + "@aws-sdk/hash-stream-node-3.58.0" = { name = "_at_aws-sdk_slash_hash-stream-node"; packageName = "@aws-sdk/hash-stream-node"; - version = "3.55.0"; + version = "3.58.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/hash-stream-node/-/hash-stream-node-3.55.0.tgz"; - sha512 = "0FuQmHZK3XAd+dL+UC36PiPhZ80lOvkbFusFpZLwXTelXB3AUsiVl2IebA4EpE352XU+1ACEAAWwQpj8zsdcOw=="; + url = "https://registry.npmjs.org/@aws-sdk/hash-stream-node/-/hash-stream-node-3.58.0.tgz"; + sha512 = "y7HEeC3OiuXCRqsHnKDn5yef8UAbnegD9r+OM9bdD+3e6FLAL8Rq7hQTOpwIAiPXuD7HKx8h98s9JLvkwTOBkg=="; }; }; "@aws-sdk/invalid-dependency-3.55.0" = { @@ -670,67 +670,67 @@ let sha512 = "NbiPHVYuPxdqdFd6FxzzN3H1BQn/iWA3ri3Ry7AyLeP/tGs1yzEWMwf8BN8TSMALI0GXT6Sh0GDWy3Ok5xB6DA=="; }; }; - "@aws-sdk/md5-js-3.55.0" = { + "@aws-sdk/md5-js-3.58.0" = { name = "_at_aws-sdk_slash_md5-js"; packageName = "@aws-sdk/md5-js"; - version = "3.55.0"; + version = "3.58.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/md5-js/-/md5-js-3.55.0.tgz"; - sha512 = "+jh2p2B0KsyODQR01bAh7Ywladi9oVL4MSfskwl6AQApKaj8/2xLqW9I89zbRSMfPEgi2eIksQgCWET7tUc29Q=="; + url = "https://registry.npmjs.org/@aws-sdk/md5-js/-/md5-js-3.58.0.tgz"; + sha512 = "V5f4Re+CLn3aDF1nrmDqdUtcqBHCyxxD2s2Ot+hZ2JFit+OtJggo1cI03ldTrQpG79rwHG+bHqL2VvNQP7Aj9A=="; }; }; - "@aws-sdk/middleware-bucket-endpoint-3.56.0" = { + "@aws-sdk/middleware-bucket-endpoint-3.58.0" = { name = "_at_aws-sdk_slash_middleware-bucket-endpoint"; packageName = "@aws-sdk/middleware-bucket-endpoint"; - version = "3.56.0"; + version = "3.58.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/middleware-bucket-endpoint/-/middleware-bucket-endpoint-3.56.0.tgz"; - sha512 = "czf0u1+QeYg43hXYpR/udf3YwIq1CX5kd4bL5U6DryH9E39sHeIoEGt5NC+82OTnbezqrHBalzZX7h7Y2pI8Sg=="; + url = "https://registry.npmjs.org/@aws-sdk/middleware-bucket-endpoint/-/middleware-bucket-endpoint-3.58.0.tgz"; + sha512 = "zocLfFzj+NQjXLGZKPJBAYWWldAKBJkGzGVpTfrYx9bxxHTA70Gu+3sx+Xe+iOu8dtQT0OAnIX0wGudOPnTGNg=="; }; }; - "@aws-sdk/middleware-content-length-3.55.0" = { + "@aws-sdk/middleware-content-length-3.58.0" = { name = "_at_aws-sdk_slash_middleware-content-length"; packageName = "@aws-sdk/middleware-content-length"; - version = "3.55.0"; + version = "3.58.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/middleware-content-length/-/middleware-content-length-3.55.0.tgz"; - sha512 = "IkFBwa1G5ERfKFh4Kdtcn/aNAGi3Hcp9IO1PVt69LZWaevxjXAi5NS2k65E9mZPEumzuLtcEeC+3qhPs4FUkqQ=="; + url = "https://registry.npmjs.org/@aws-sdk/middleware-content-length/-/middleware-content-length-3.58.0.tgz"; + sha512 = "h/BypPkhjv2CpCUbXA8Fa2s7V2GPiz9l11XhYK+sKSuQvQ7Lbq6VhaKaLqfeD3gLVZHgJZSLGl2btdHV1qHNNA=="; }; }; - "@aws-sdk/middleware-expect-continue-3.55.0" = { + "@aws-sdk/middleware-expect-continue-3.58.0" = { name = "_at_aws-sdk_slash_middleware-expect-continue"; packageName = "@aws-sdk/middleware-expect-continue"; - version = "3.55.0"; + version = "3.58.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/middleware-expect-continue/-/middleware-expect-continue-3.55.0.tgz"; - sha512 = "RT6w9AJvZyMn8Cdw6RHaLK8c/Lkqdi4v19XAJCPaAaD2rQ6GhZ+AawgfkF5zawzN1TgzLmzWB4e1ts4+chr74Q=="; + url = "https://registry.npmjs.org/@aws-sdk/middleware-expect-continue/-/middleware-expect-continue-3.58.0.tgz"; + sha512 = "nx6X6qLPwvbJrGoPxXSu4tsOek2eRnnjk78hhRUDfxFewpHJQLSPlyNKkXAo+C3syVALe6RJRmUYu5bShY6FfA=="; }; }; - "@aws-sdk/middleware-flexible-checksums-3.55.0" = { + "@aws-sdk/middleware-flexible-checksums-3.58.0" = { name = "_at_aws-sdk_slash_middleware-flexible-checksums"; packageName = "@aws-sdk/middleware-flexible-checksums"; - version = "3.55.0"; + version = "3.58.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.55.0.tgz"; - sha512 = "Uhx0HAUkpRfRny5bGNPYNlaznMKSa5d88RWhrAEiYMgrhUsOcAahyj74lHrphGQ0nUwJr67uq55GPRRWn9Q4Ig=="; + url = "https://registry.npmjs.org/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.58.0.tgz"; + sha512 = "R8S3U1boaIb7+kYhLJBks7rv/eaGj7I5T/2CgmcGY1BJBUU0h0arjPC7eeA/5wV29EHapoxVYQvJda//706rCw=="; }; }; - "@aws-sdk/middleware-header-default-3.55.0" = { + "@aws-sdk/middleware-header-default-3.58.0" = { name = "_at_aws-sdk_slash_middleware-header-default"; packageName = "@aws-sdk/middleware-header-default"; - version = "3.55.0"; + version = "3.58.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/middleware-header-default/-/middleware-header-default-3.55.0.tgz"; - sha512 = "IrIsVoiol36Ap3VLtrofx95PkiBd4aNw6k4FRi9TsRxmOhfcAe3MvG521wyVEg+n3DqkYPb1N4SVTUENewo8bQ=="; + url = "https://registry.npmjs.org/@aws-sdk/middleware-header-default/-/middleware-header-default-3.58.0.tgz"; + sha512 = "7F+CdLLauMmNbwFGYrE2pKsgTKY8G2PgazHmaE9s3FySEFcGPWmiEAG8sVImfZooj8gxGFQMLr97nanWjhSq2Q=="; }; }; - "@aws-sdk/middleware-host-header-3.55.0" = { + "@aws-sdk/middleware-host-header-3.58.0" = { name = "_at_aws-sdk_slash_middleware-host-header"; packageName = "@aws-sdk/middleware-host-header"; - version = "3.55.0"; + version = "3.58.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.55.0.tgz"; - sha512 = "69mTWJfuPP4aC+h2/cb9B2CUNA9tiRPUBp67dmMrA2dHyy53kNYo8TGgfLKProoBidBz/AVXIfnh+izJj0F20w=="; + url = "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.58.0.tgz"; + sha512 = "q/UKGcanm9e6DBRNN6UKhVqLvpRRdZWbmmPCeDNr4HqhCmgT6i1OvWdhAMOnT++hvCX8DpTsIXzNSlY6zWAxBg=="; }; }; "@aws-sdk/middleware-location-constraint-3.55.0" = { @@ -751,31 +751,31 @@ let sha512 = "PtRbVrxEzDmeV9prBIP4/9or7R5Dj66mjbFSvNRGZ0n+UBfBFfVRfNrhQPNzQpfV9A3KVl9YyWCVXDSW+/rk9Q=="; }; }; - "@aws-sdk/middleware-retry-3.56.0" = { + "@aws-sdk/middleware-retry-3.58.0" = { name = "_at_aws-sdk_slash_middleware-retry"; packageName = "@aws-sdk/middleware-retry"; - version = "3.56.0"; + version = "3.58.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/middleware-retry/-/middleware-retry-3.56.0.tgz"; - sha512 = "AkunQvVex5JimQ+xLDcPcdsseVdvxE5rUSPh/NKLGO0bOyMxPnJSRlOxrOoibK0i1BPHkTpwdx+BDFrWiRLqug=="; + url = "https://registry.npmjs.org/@aws-sdk/middleware-retry/-/middleware-retry-3.58.0.tgz"; + sha512 = "sfSq+t0Yy47DQwrWGpA8iOx9sd26l4l1JDVTwHNi7+OKD4ClRPVCEdw3bTbbyYz/PV4f9AEfAZ6jwtSff4wkGw=="; }; }; - "@aws-sdk/middleware-sdk-s3-3.56.0" = { + "@aws-sdk/middleware-sdk-s3-3.58.0" = { name = "_at_aws-sdk_slash_middleware-sdk-s3"; packageName = "@aws-sdk/middleware-sdk-s3"; - version = "3.56.0"; + version = "3.58.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.56.0.tgz"; - sha512 = "ERHjQsA4ZTMDiKlSWF6dGt/UT15OQCCR8qRR+d/n3hVs6Nzyrt/ajEIBuea7E5lDuGwgyua5wkj1UjiHFQ4YeA=="; + url = "https://registry.npmjs.org/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.58.0.tgz"; + sha512 = "vOTPOdhZpNJo4v54evg6JnFz14hK8IW2u8B+12iV5ZQ4zJom6VowzFmIOUn+KIsw/6SrwEX9tFb0aXLlVRw27Q=="; }; }; - "@aws-sdk/middleware-sdk-sts-3.56.0" = { + "@aws-sdk/middleware-sdk-sts-3.58.0" = { name = "_at_aws-sdk_slash_middleware-sdk-sts"; packageName = "@aws-sdk/middleware-sdk-sts"; - version = "3.56.0"; + version = "3.58.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/middleware-sdk-sts/-/middleware-sdk-sts-3.56.0.tgz"; - sha512 = "LutcntT3DvS0nnHdGPHES+J+NUtKJFAVgz1gSqPq4MLIAB5oUm9QAWhmki5s2dfBbeRR7Kh1tWpzE00XowyBog=="; + url = "https://registry.npmjs.org/@aws-sdk/middleware-sdk-sts/-/middleware-sdk-sts-3.58.0.tgz"; + sha512 = "HUz7MhcsSDDTGygOwL61l4voc0pZco06J3z06JjTX19D5XxcQ7hSCtkHHHz0oMb9M1himVSiEon2tjhjsnB99g=="; }; }; "@aws-sdk/middleware-serde-3.55.0" = { @@ -787,13 +787,13 @@ let sha512 = "NkEbTDrSZcC2NhuvfjXHKJEl0xgI2B5tMAwi/rMOq/TEnARwVUL9qAy+5lgeiPCqebiNllWatARrFgAaYf0VeA=="; }; }; - "@aws-sdk/middleware-signing-3.56.0" = { + "@aws-sdk/middleware-signing-3.58.0" = { name = "_at_aws-sdk_slash_middleware-signing"; packageName = "@aws-sdk/middleware-signing"; - version = "3.56.0"; + version = "3.58.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/middleware-signing/-/middleware-signing-3.56.0.tgz"; - sha512 = "m0Rmlb3eojvZs0DQdfTZ+xJwJ0SuTXdeXn75jnpDAlnzRNKy7aRGYSsHChK8nkXgYKkpO2JmYywiTUriwwVULA=="; + url = "https://registry.npmjs.org/@aws-sdk/middleware-signing/-/middleware-signing-3.58.0.tgz"; + sha512 = "4FXubHB66GbhyZUlo6YPQoWpYfED15GNbEmHbJLSONzrVzZR3IkViSPLasDngVm1a050JqKuqNkFYGJBP4No/Q=="; }; }; "@aws-sdk/middleware-ssec-3.55.0" = { @@ -814,31 +814,31 @@ let sha512 = "ouD+wFz8W2R0ZQ8HrbhgN8tg1jyINEg9lPEEXY79w1Q5sf94LJ90XKAMVk02rw3dJalUWjLHf0OQe1/qxZfHyA=="; }; }; - "@aws-sdk/middleware-user-agent-3.55.0" = { + "@aws-sdk/middleware-user-agent-3.58.0" = { name = "_at_aws-sdk_slash_middleware-user-agent"; packageName = "@aws-sdk/middleware-user-agent"; - version = "3.55.0"; + version = "3.58.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.55.0.tgz"; - sha512 = "UOBimkQrj6onXb3Fyuao85IjipnDSowNHfOOl3ADVX9boA/A4db5QAXBSxThV0WHLArC0iiUsnwu95ElSSMVIg=="; + url = "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.58.0.tgz"; + sha512 = "1c69bIWM63JwXijXvb9IWwcwQ/gViKMZ1lhxv52NvdG5VSxWXXsFJ2jETEXZoAypwT97Hmf3xo9SYuaHcKoq+g=="; }; }; - "@aws-sdk/node-config-provider-3.56.0" = { + "@aws-sdk/node-config-provider-3.58.0" = { name = "_at_aws-sdk_slash_node-config-provider"; packageName = "@aws-sdk/node-config-provider"; - version = "3.56.0"; + version = "3.58.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/node-config-provider/-/node-config-provider-3.56.0.tgz"; - sha512 = "2uCisndaymG/tXsfVj+ZqybmNTRJwhTm3sPBB8+utSDcUe7PWR0viNEqR2lPO5Uds1zOQm4MPv1v+j4jZufFyw=="; + url = "https://registry.npmjs.org/@aws-sdk/node-config-provider/-/node-config-provider-3.58.0.tgz"; + sha512 = "AMcPqPhKxo/3/yOMS9PsKlI0GWp2/8eD6gSlhzdBpznPCKplyqXOSnSX7wS814Cyh373hFSjCaOrCOA9/EYtDg=="; }; }; - "@aws-sdk/node-http-handler-3.55.0" = { + "@aws-sdk/node-http-handler-3.58.0" = { name = "_at_aws-sdk_slash_node-http-handler"; packageName = "@aws-sdk/node-http-handler"; - version = "3.55.0"; + version = "3.58.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/node-http-handler/-/node-http-handler-3.55.0.tgz"; - sha512 = "yF4YQr72YgVgWO9IDOhDcncqlKUJmMCtserAYhKNvmkVuaMGHE11p+IByWgcIsMJTvtFaFBhTA3W7zhJB1C1xA=="; + url = "https://registry.npmjs.org/@aws-sdk/node-http-handler/-/node-http-handler-3.58.0.tgz"; + sha512 = "D9xVZG2nfo4GbPsby3JuBiAhpqXTFk1+CfuQU0AZv0gQvE3fFTCnB3za83jo7JV/pyRPU+s+/LHIpxCWUHzStg=="; }; }; "@aws-sdk/property-provider-3.55.0" = { @@ -850,13 +850,13 @@ let sha512 = "o7cKFJSHq5WOhwPsspYrzNto35oKKZvESZuWDtLxaZKSI6l7zpA366BI4kDG6Tc9i2+teV553MbxyZ9eya5A8g=="; }; }; - "@aws-sdk/protocol-http-3.55.0" = { + "@aws-sdk/protocol-http-3.58.0" = { name = "_at_aws-sdk_slash_protocol-http"; packageName = "@aws-sdk/protocol-http"; - version = "3.55.0"; + version = "3.58.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/protocol-http/-/protocol-http-3.55.0.tgz"; - sha512 = "vNjjsP5bFuKQMhmuBQZDddH441xanPbm8n42qgfigv0RzgWQhvUFrnmZWLBdyY8geY0RwsQ6x9yfQ0gvs48tpw=="; + url = "https://registry.npmjs.org/@aws-sdk/protocol-http/-/protocol-http-3.58.0.tgz"; + sha512 = "0yFFRPbR+CCa9eOQBBQ2qtrIDLYqSMN0y7G4iqVM8wQdIw7n3QK1PsTI3RNPGJ3Oi2krFTw5uUKqQQZPZEBuVQ=="; }; }; "@aws-sdk/querystring-builder-3.55.0" = { @@ -877,13 +877,13 @@ let sha512 = "e+2FLgo+eDx7oh7ap5HngN9XSVMxredAVztLHxCcSN0lFHHHzMa8b2SpXbaowUxQHh7ziymSqvOrPYFQ71Filg=="; }; }; - "@aws-sdk/s3-request-presigner-3.56.0" = { + "@aws-sdk/s3-request-presigner-3.58.0" = { name = "_at_aws-sdk_slash_s3-request-presigner"; packageName = "@aws-sdk/s3-request-presigner"; - version = "3.56.0"; + version = "3.58.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/s3-request-presigner/-/s3-request-presigner-3.56.0.tgz"; - sha512 = "Ct/eGVojY1Mtmd4oC3n+OXnL7QmEDCQ8pXIGvhZIFwd/ZyiZsMdEz9ZO2+b8izdMGu9V9gg8EftV+hDfbMxMOQ=="; + url = "https://registry.npmjs.org/@aws-sdk/s3-request-presigner/-/s3-request-presigner-3.58.0.tgz"; + sha512 = "rkwRSLSuTJaW3+rJgfjtJ8VCbuUh3iXKeeml3QP7ldsHg/4knUxEMr/Ja0PIkVrbPts2g4KGr4ZlppvxC9b4lA=="; }; }; "@aws-sdk/service-error-classification-3.55.0" = { @@ -895,22 +895,22 @@ let sha512 = "HdjnDyarsa1Avq1MJurkLyEe9c3eRa76dPmK4TmRGgwJ+tInEzGHL0rBW7V8xBK+PDF+fJQ71hvm8jPYmzvBwQ=="; }; }; - "@aws-sdk/shared-ini-file-loader-3.56.0" = { + "@aws-sdk/shared-ini-file-loader-3.58.0" = { name = "_at_aws-sdk_slash_shared-ini-file-loader"; packageName = "@aws-sdk/shared-ini-file-loader"; - version = "3.56.0"; + version = "3.58.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/shared-ini-file-loader/-/shared-ini-file-loader-3.56.0.tgz"; - sha512 = "dCy3mXqYKK76iep9rn2inFrPOlGURvoO+B0Ygem0jgkDuxIF8t5wa10WHWB2ee8qZRlfwPYtcVdpEm2398St3g=="; + url = "https://registry.npmjs.org/@aws-sdk/shared-ini-file-loader/-/shared-ini-file-loader-3.58.0.tgz"; + sha512 = "ARDKQerIzgNs/MFNdCEuK2lgRJ1lneAaJw0p9O1LkJUvcSibvkSATwny7vwJMueOf+ae1Pf+8+54OMNIt0nTkQ=="; }; }; - "@aws-sdk/signature-v4-3.56.0" = { + "@aws-sdk/signature-v4-3.58.0" = { name = "_at_aws-sdk_slash_signature-v4"; packageName = "@aws-sdk/signature-v4"; - version = "3.56.0"; + version = "3.58.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/signature-v4/-/signature-v4-3.56.0.tgz"; - sha512 = "aCvYQDMSAPe2K1lk0A+B+4xPBF50zf5ufO2k6FmBba020kqe8ODZjLq6vJJJfwrywc1B+2xWKvdpvCB7qbAOUw=="; + url = "https://registry.npmjs.org/@aws-sdk/signature-v4/-/signature-v4-3.58.0.tgz"; + sha512 = "flEo8p3XkzWoBDqnIUQre4jLuT5aLnmfQNI8c2uSjyJ3OBxpJ0iS1cDu3E++d1/pN6Q8o0KOmr2ypHeiyBOujw=="; }; }; "@aws-sdk/smithy-client-3.55.0" = { @@ -949,13 +949,13 @@ let sha512 = "76KJxp4MRWufHYWys7DFl64znr5yeJ3AIQNAPCKKw1sP0hzO7p6Kx0PaJnw9x+CPSzOrT4NbuApL6/srYhKDGg=="; }; }; - "@aws-sdk/util-base64-browser-3.55.0" = { + "@aws-sdk/util-base64-browser-3.58.0" = { name = "_at_aws-sdk_slash_util-base64-browser"; packageName = "@aws-sdk/util-base64-browser"; - version = "3.55.0"; + version = "3.58.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/util-base64-browser/-/util-base64-browser-3.55.0.tgz"; - sha512 = "3hrZ2R/ZyD3IM25KhETOGLC5tB/ft8zoyVmNg1l4+takoUm46ompnglFXCVkWBu9Hpxc+M4XtiY7MHE6es4Wtg=="; + url = "https://registry.npmjs.org/@aws-sdk/util-base64-browser/-/util-base64-browser-3.58.0.tgz"; + sha512 = "0ebsXIZNpu/fup9OgsFPnRKfCFbuuI9PPRzvP6twzLxUB0c/aix6Co7LGHFKcRKHZdaykoJMXArf8eHj2Nzv1Q=="; }; }; "@aws-sdk/util-base64-node-3.55.0" = { @@ -1003,13 +1003,13 @@ let sha512 = "30dzofQQfx6tp1jVZkZ0DGRsT0wwC15nEysKRiAcjncM64A0Cm6sra77d0os3vbKiKoPCI/lMsFr4o3533+qvQ=="; }; }; - "@aws-sdk/util-create-request-3.55.0" = { + "@aws-sdk/util-create-request-3.58.0" = { name = "_at_aws-sdk_slash_util-create-request"; packageName = "@aws-sdk/util-create-request"; - version = "3.55.0"; + version = "3.58.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/util-create-request/-/util-create-request-3.55.0.tgz"; - sha512 = "ihCVXBWQopYk9R1H/+IsBKuRx1OqBx4OmTMzL7dRC+wnOV1h0nOUhps19QidppT/uIZUnuV8EZs3KnOWdZzH3w=="; + url = "https://registry.npmjs.org/@aws-sdk/util-create-request/-/util-create-request-3.58.0.tgz"; + sha512 = "EP6HLQHc8RxjSJ95Ca9Ppp5F0aS6QNSQg03hbjcpmKK42h8dtuXFp5qGAu35VxUg6IRztN2x7lpa+b3d/SdDoQ=="; }; }; "@aws-sdk/util-defaults-mode-browser-3.55.0" = { @@ -1021,31 +1021,31 @@ let sha512 = "OS3gAwR84bHz7ObhjsSJM+grfeaBq3leGrj7xiX4BH3C8J+c10GMo3fqx1pV8Fq5F+9lMmhHpfOocD63SN5Q8A=="; }; }; - "@aws-sdk/util-defaults-mode-node-3.56.0" = { + "@aws-sdk/util-defaults-mode-node-3.58.0" = { name = "_at_aws-sdk_slash_util-defaults-mode-node"; packageName = "@aws-sdk/util-defaults-mode-node"; - version = "3.56.0"; + version = "3.58.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/util-defaults-mode-node/-/util-defaults-mode-node-3.56.0.tgz"; - sha512 = "NKHW5kxH5EIcAa4b0Vua6t75z5D3lanwbAeiHzYrA1MeDIFlfXHs/kiHT2KTpr6stZZEEVPOEwb628AnkHAZTg=="; + url = "https://registry.npmjs.org/@aws-sdk/util-defaults-mode-node/-/util-defaults-mode-node-3.58.0.tgz"; + sha512 = "KNUCp0MXI+z3Z3pQCKDkx3Stdy1TXDjcUB+ZJFxRTJGIuBYwX4fV6G8s/zeFJi5Qv1ztR3CJ9fWJGsrx9mQ5EA=="; }; }; - "@aws-sdk/util-format-url-3.55.0" = { + "@aws-sdk/util-format-url-3.58.0" = { name = "_at_aws-sdk_slash_util-format-url"; packageName = "@aws-sdk/util-format-url"; - version = "3.55.0"; + version = "3.58.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/util-format-url/-/util-format-url-3.55.0.tgz"; - sha512 = "xSVunSEiTPzemeEtyR8lIc027LsMKtwmC3j9QDV6oGMEZjarfrVB7SsxgVklTQvm4lPICEpmajMxR9Z0vSxYQg=="; + url = "https://registry.npmjs.org/@aws-sdk/util-format-url/-/util-format-url-3.58.0.tgz"; + sha512 = "nhxomsG+OIBqpIyc2AU88J3+dTap0H5R1D2lNAsSZk07kuu2B1H4qAXIlWPkXyxTi9uL9aykBMuCosECD062NA=="; }; }; - "@aws-sdk/util-hex-encoding-3.55.0" = { + "@aws-sdk/util-hex-encoding-3.58.0" = { name = "_at_aws-sdk_slash_util-hex-encoding"; packageName = "@aws-sdk/util-hex-encoding"; - version = "3.55.0"; + version = "3.58.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/util-hex-encoding/-/util-hex-encoding-3.55.0.tgz"; - sha512 = "zbDWNzIyqN2Po7SIo1ZDL4rQMP3R0TzGcCrm01bpQAb+2fWqUPigolvNZXXtMO6eS7EW3ZJJzkfoWHdH8zDz1A=="; + url = "https://registry.npmjs.org/@aws-sdk/util-hex-encoding/-/util-hex-encoding-3.58.0.tgz"; + sha512 = "Rl+jXUzk/FJkOLYfUVYPhKa2aUmTpeobRP31l8IatQltSzDgLyRHO35f6UEs7Ztn5s1jbu/POatLAZ2WjbgVyg=="; }; }; "@aws-sdk/util-locate-window-3.55.0" = { @@ -1093,22 +1093,22 @@ let sha512 = "mmdDLUpFCN2nkfwlLdOM54lTD528GiGSPN1qb8XtGLgZsJUmg3uJSFIN2lPeSbEwJB3NFjVas/rnQC48i7mV8w=="; }; }; - "@aws-sdk/util-user-agent-browser-3.55.0" = { + "@aws-sdk/util-user-agent-browser-3.58.0" = { name = "_at_aws-sdk_slash_util-user-agent-browser"; packageName = "@aws-sdk/util-user-agent-browser"; - version = "3.55.0"; + version = "3.58.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.55.0.tgz"; - sha512 = "E+8PluqbdOKfdJc9E4k0vy4PPb9wvAMa2Zdm5ycoaY0IXRI9RjQJnRw5JKAAJWLuOy7Lb83LgoowGW3o+4AuKw=="; + url = "https://registry.npmjs.org/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.58.0.tgz"; + sha512 = "aJpqCvT09giJRg5xFTBDBRAVF0k0yq3OEf6UTuiOVf5azlL2MGp6PJ/xkJp9Z06PuQQkwBJ/2nIQZemo02a5Sw=="; }; }; - "@aws-sdk/util-user-agent-node-3.56.0" = { + "@aws-sdk/util-user-agent-node-3.58.0" = { name = "_at_aws-sdk_slash_util-user-agent-node"; packageName = "@aws-sdk/util-user-agent-node"; - version = "3.56.0"; + version = "3.58.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.56.0.tgz"; - sha512 = "jpWDpEG2M06jqGtk/Jz9Iu94lBI8tdP7r2ctq2ptki9wYNmmWKdIXlS/W0g2UFx3qa9G9W67QI1efSTh2B0nfA=="; + url = "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.58.0.tgz"; + sha512 = "VlbY/nzWdN2pfLUHqKvnlGBQ6tEeV4jyK9ggAD2Szjj0bkYvaaKwpBKswQmuJpi5/J2v7Bo4ayBLnqDL7PgzLA=="; }; }; "@aws-sdk/util-utf8-browser-3.55.0" = { @@ -2344,13 +2344,13 @@ let sha512 = "TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw=="; }; }; - "@blueprintjs/colors-4.0.1" = { + "@blueprintjs/colors-4.0.2" = { name = "_at_blueprintjs_slash_colors"; packageName = "@blueprintjs/colors"; - version = "4.0.1"; + version = "4.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@blueprintjs/colors/-/colors-4.0.1.tgz"; - sha512 = "w2kMtUzQjHdrmjXpUnCfTq7/pc41S4UnXzOp6+AZtzCR4cVG1r2yBWR4XxaAAecDb94/yIBXooqtMD0B8T1Y2w=="; + url = "https://registry.npmjs.org/@blueprintjs/colors/-/colors-4.0.2.tgz"; + sha512 = "+luoTHBcdUD5y5SGCxk9CAHPfa9WeGdHuTRGABFanoyXZwrtzh5a8hlN/g3B5xeseGdoz50uMtmeanF8Atx0fg=="; }; }; "@blueprintjs/core-3.54.0" = { @@ -2425,40 +2425,40 @@ let sha512 = "GcIY79elgB+azP74j8vqkiXz8xLFfIzbQJdlwOPisgbKT00tviJQuEghOXSMVxJ00HoYJbGswr4kcllUc4xCcg=="; }; }; - "@cdktf/hcl2cdk-0.9.4" = { + "@cdktf/hcl2cdk-0.10.1" = { name = "_at_cdktf_slash_hcl2cdk"; packageName = "@cdktf/hcl2cdk"; - version = "0.9.4"; + version = "0.10.1"; src = fetchurl { - url = "https://registry.npmjs.org/@cdktf/hcl2cdk/-/hcl2cdk-0.9.4.tgz"; - sha512 = "sUg9GsmaFpqqfoGcqibMEDHozMQhaDOxBT3Dz3ioNc0SSWhBpDRwrlctK3rNNKvWUetEeUr28L7SJR/I0TSd+Q=="; + url = "https://registry.npmjs.org/@cdktf/hcl2cdk/-/hcl2cdk-0.10.1.tgz"; + sha512 = "TzMrX+stsho41G/Vkbvk/b3PQcs4ug8KilU+Nffqz6fqPBbkBc9ZMSLQZw4I6gso02R/CQ7Zh32K/c9zNIx8zQ=="; }; }; - "@cdktf/hcl2json-0.9.4" = { + "@cdktf/hcl2json-0.10.1" = { name = "_at_cdktf_slash_hcl2json"; packageName = "@cdktf/hcl2json"; - version = "0.9.4"; + version = "0.10.1"; src = fetchurl { - url = "https://registry.npmjs.org/@cdktf/hcl2json/-/hcl2json-0.9.4.tgz"; - sha512 = "dZZUi94C7TFs0E8IubNYu38mBncVlQVUeGp6nA3tYxs/ue1igKqx7+mWfZP7NYVOSlggMGRNaTts6ZA0UAtOYQ=="; + url = "https://registry.npmjs.org/@cdktf/hcl2json/-/hcl2json-0.10.1.tgz"; + sha512 = "JTOSg7Q3CKELPIL9m2qP9uYxSpwhrHEcKaxZUdfXakx6YhKieBUK6P3SrEHhCaJ+/9ZJwuxo7ZmYkn5pwyXsUA=="; }; }; - "@cdktf/provider-generator-0.9.4" = { + "@cdktf/provider-generator-0.10.1" = { name = "_at_cdktf_slash_provider-generator"; packageName = "@cdktf/provider-generator"; - version = "0.9.4"; + version = "0.10.1"; src = fetchurl { - url = "https://registry.npmjs.org/@cdktf/provider-generator/-/provider-generator-0.9.4.tgz"; - sha512 = "06sfpBTn3+PqiU/XP3RQ6FO6M+GxzmHo6yIJk9r5x1QmIlitDE9tdogXqmAVVHB4nGRL/v7SXefcrOHrOkl1YQ=="; + url = "https://registry.npmjs.org/@cdktf/provider-generator/-/provider-generator-0.10.1.tgz"; + sha512 = "dta913ZHPpsylXlwAl4++JV64Fy0u0ahp6KoKVzj6Ee9u2CY3P6CDi8NLBAE4orluhHz8aZlkYcL//I5kjBHuA=="; }; }; - "@chemzqm/neovim-5.7.7" = { + "@chemzqm/neovim-5.7.8" = { name = "_at_chemzqm_slash_neovim"; packageName = "@chemzqm/neovim"; - version = "5.7.7"; + version = "5.7.8"; src = fetchurl { - url = "https://registry.npmjs.org/@chemzqm/neovim/-/neovim-5.7.7.tgz"; - sha512 = "d9Bu5WA3fTEZw40EfEAkpevoE0HiPEwUAIYw4hfsGwwmcagMJzpx47h3EkH/r0I3qfXeDWEZ353fx9bc1qvYcA=="; + url = "https://registry.npmjs.org/@chemzqm/neovim/-/neovim-5.7.8.tgz"; + sha512 = "QjCwx/71/FoQcrBSPiFTXYbizols+1OR3i6RXAnaOAQeKjc2u8zDYQPv6EYIO/cacFxzwNravXRMzIeD27gF/Q=="; }; }; "@chinachu/aribts-1.3.5-mirakurun.17" = { @@ -2650,31 +2650,31 @@ let sha512 = "do5jDoX9oCR/dGHE4POVQ3PYDCmQ2Fow4CA72UL4WoE8zUImA/0lChczjfl+ucNjE4sXFWUnzoO6j4WzrUvLnw=="; }; }; - "@cspell/cspell-bundled-dicts-5.19.3" = { + "@cspell/cspell-bundled-dicts-5.19.5" = { name = "_at_cspell_slash_cspell-bundled-dicts"; packageName = "@cspell/cspell-bundled-dicts"; - version = "5.19.3"; + version = "5.19.5"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-5.19.3.tgz"; - sha512 = "YAz68AgXTFFtrBUhNJlOQ7KOjUE6ncYt578/esa2GStMJHgJoUtPnOZsE41hh+cVWXqO5yRRI+Qkwub99zLMgQ=="; + url = "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-5.19.5.tgz"; + sha512 = "qXW99H+S/529cTOtRBTPiTV1Ay+I2+kcF5lfVblSRsij7fBM6d99dB3Fg6oL0i6okRwOUNFAV4qbxgg7zxA3wA=="; }; }; - "@cspell/cspell-pipe-5.19.3" = { + "@cspell/cspell-pipe-5.19.5" = { name = "_at_cspell_slash_cspell-pipe"; packageName = "@cspell/cspell-pipe"; - version = "5.19.3"; + version = "5.19.5"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-5.19.3.tgz"; - sha512 = "3RKntgGRxYYzoxoH3VBPvnNMYkHKPq0U+U7qogcWxDkgAUgKXlBP0oc2mw96grJQ4HIzOL1vBnaVAWAqteY9Kw=="; + url = "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-5.19.5.tgz"; + sha512 = "dNCMYDgjeWKw7KIptjxHu17UfeT3oiqQk6LkSyi3BewUxpnlLLO7EsxR6GRW+RVU/MrPXe7BF9WgF0gO8m+8cQ=="; }; }; - "@cspell/cspell-types-5.19.3" = { + "@cspell/cspell-types-5.19.5" = { name = "_at_cspell_slash_cspell-types"; packageName = "@cspell/cspell-types"; - version = "5.19.3"; + version = "5.19.5"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-5.19.3.tgz"; - sha512 = "tub7PW/I6qB6o+ZtlahAZjm5O5cnzj88HRiC8nAbJFpa7q0mrdpFMYhd7ksWtyFLlNbuDkCsfzXGamAhIQnnIw=="; + url = "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-5.19.5.tgz"; + sha512 = "tOzCzuQQ4DdgfnI6+FGBPOVL/1JbH0pWtoOinPoU93/pH29XOKGW2I24HLeESzgskfoZGK274wMFQfGp6oJw9g=="; }; }; "@cspell/dict-ada-2.0.0" = { @@ -3694,13 +3694,13 @@ let sha512 = "+WoaAaoYx/wfkrz1Ag40JqHvDUFfQcg+dQ3jaEOoau16y7EZGIe7oN8WYIXNMgWuMxH7r1QlanFbQZ+ziKjHmw=="; }; }; - "@fluentui/react-8.62.3" = { + "@fluentui/react-8.64.0" = { name = "_at_fluentui_slash_react"; packageName = "@fluentui/react"; - version = "8.62.3"; + version = "8.64.0"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/react/-/react-8.62.3.tgz"; - sha512 = "ENfTetlsI74k4vgJ3574mWSoRv7kcwUMow+7GBFBw3EZcwnkUXPG6FubzuLBbn36X8MjeRSi8pnaR6T73GaBOw=="; + url = "https://registry.npmjs.org/@fluentui/react/-/react-8.64.0.tgz"; + sha512 = "ykO3VHQVQL6IUAXnp5No38fMqG5XOqjP0bNOv5klCYelfF0bnDdbzmT+nHMorq+SKqaHnbnryO+OQuXDmyujCQ=="; }; }; "@fluentui/react-focus-8.5.6" = { @@ -3901,13 +3901,13 @@ let sha512 = "bQu+hDd37e+FZ0CQGEEczmRSfQRnnXeUxI/0miDV+NV/zCbEdIJj5tYFNrKT03W6wgdqx8U06d8L23LxvGri/g=="; }; }; - "@graphql-tools/delegate-8.7.0" = { + "@graphql-tools/delegate-8.7.1" = { name = "_at_graphql-tools_slash_delegate"; packageName = "@graphql-tools/delegate"; - version = "8.7.0"; + version = "8.7.1"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-8.7.0.tgz"; - sha512 = "tsmNFV8nVvPY2nApCj69ck32/Jdj44rYbUZx+cpyUWOzfbUT1iu0d1mUwn5UeHuGnB+Bzgn3fuTypg97mDEyEw=="; + url = "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-8.7.1.tgz"; + sha512 = "e98/NRaOH5wQy624bRd5i5qUKz5tCs8u4xBmxW89d7t6V6CveXj7pvAgmnR9DbwOkO6IA3P799p/aa/YG/pWTA=="; }; }; "@graphql-tools/graphql-file-loader-6.2.7" = { @@ -3964,13 +3964,13 @@ let sha512 = "FlQC50VELwRxoWUbJMMMs5gG0Dl8BaQYMrXUHTsxwqR7UmksUYnysC21rdousvs6jVZ7pf4unZfZFtBjz+8Edg=="; }; }; - "@graphql-tools/load-7.5.5" = { + "@graphql-tools/load-7.5.6" = { name = "_at_graphql-tools_slash_load"; packageName = "@graphql-tools/load"; - version = "7.5.5"; + version = "7.5.6"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/load/-/load-7.5.5.tgz"; - sha512 = "qPasit140nwTbMQbFCfZcgaS7q/0+xMQGdkMGU11rtHt6/jMgJIKDUU8/fJGKltNY3EeHlEdVtZmggZD7Rr6bA=="; + url = "https://registry.npmjs.org/@graphql-tools/load/-/load-7.5.6.tgz"; + sha512 = "IocEP4METGdbDzV44VaeiXO387NOYSW4cTuBP8qybHZX0XlIp8bEv7c8GKS3m8DeRop/9SnOL7HyiAfNMA4Chg=="; }; }; "@graphql-tools/merge-6.2.17" = { @@ -4000,13 +4000,13 @@ let sha512 = "uyn3HSNSckf4mvQSq0Q07CPaVZMNFCYEVxroApOaw802m9DcZPgf9XVPy/gda5GWj9AhbijfRYVTZQgHnJ4CXA=="; }; }; - "@graphql-tools/schema-8.3.5" = { + "@graphql-tools/schema-8.3.6" = { name = "_at_graphql-tools_slash_schema"; packageName = "@graphql-tools/schema"; - version = "8.3.5"; + version = "8.3.6"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/schema/-/schema-8.3.5.tgz"; - sha512 = "3mJ/K7TdL+fnEUtCUqF4qkh1fcNMzaxgwKgO9fSYSTS7zyT16hbi5XSulSTshygHgaD2u+MO588iR4ZJcbZcIg=="; + url = "https://registry.npmjs.org/@graphql-tools/schema/-/schema-8.3.6.tgz"; + sha512 = "7tWYRQ8hB/rv2zAtv2LtnQl4UybyJPtRz/VLKRmgi7+F5t8iYBahmmsxMDAYMWMmWMqEDiKk54TvAes+J069rQ=="; }; }; "@graphql-tools/url-loader-6.10.1" = { @@ -4018,13 +4018,13 @@ let sha512 = "DSDrbhQIv7fheQ60pfDpGD256ixUQIR6Hhf9Z5bRjVkXOCvO5XrkwoWLiU7iHL81GB1r0Ba31bf+sl+D4nyyfw=="; }; }; - "@graphql-tools/url-loader-7.9.7" = { + "@graphql-tools/url-loader-7.9.8" = { name = "_at_graphql-tools_slash_url-loader"; packageName = "@graphql-tools/url-loader"; - version = "7.9.7"; + version = "7.9.8"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-7.9.7.tgz"; - sha512 = "cJoZcv6oJrhArRPmSnw8wcqnz7F8p+HzwvjoJyHbs0ne2jTXazD+LOHaXMAa1L7lKK2YmH2Txy8pOI76JnvUiQ=="; + url = "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-7.9.8.tgz"; + sha512 = "nRMXwwoIDLt7ohBWvKKjEEH61YS1nnWs6BVgGStePfmRGrhxECpLWmfAmKLNXPqDJN7Nu6ykFJYjt65j5l6qsw=="; }; }; "@graphql-tools/utils-6.2.4" = { @@ -4072,13 +4072,13 @@ let sha512 = "1NDUymworsOlb53Qfh7fonDi2STvqCtbeE68ntKY9K/Ju/be2ZNxrFSbrBHwnxWcN9PjISNnLcAyJ1L5tCUyhg=="; }; }; - "@graphql-tools/wrap-8.4.9" = { + "@graphql-tools/wrap-8.4.10" = { name = "_at_graphql-tools_slash_wrap"; packageName = "@graphql-tools/wrap"; - version = "8.4.9"; + version = "8.4.10"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/wrap/-/wrap-8.4.9.tgz"; - sha512 = "YFb34itVWyE3sMifvPRqvYjXYpjJle2hkq9nIELQOumc1yqxT7jf/+YnNZalS1DoOdWn4GbDmqO/uljf6AuuDA=="; + url = "https://registry.npmjs.org/@graphql-tools/wrap/-/wrap-8.4.10.tgz"; + sha512 = "1/pcKRDTGIUspUl6uhlfQ0u1l4j15TVGkOkijI+gX25Q9sfAJclT0bovKBksP39G6v4hZnolpOU2txJ47MxxEg=="; }; }; "@grpc/grpc-js-1.4.4" = { @@ -4117,6 +4117,15 @@ let sha512 = "RAlSbZ9LXo0wNoHKeUlwP9dtGgVBDUbnBKFpfAv5iSqMG4qWz9um2yLH215+Wow1I48etIa1QMS+WAGmsE/7HQ=="; }; }; + "@grpc/grpc-js-1.6.1" = { + name = "_at_grpc_slash_grpc-js"; + packageName = "@grpc/grpc-js"; + version = "1.6.1"; + src = fetchurl { + url = "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.6.1.tgz"; + sha512 = "ix3rQS64rKL1s6CfIaRgnts+RNYZZ2NaYyTK7iimai6an/0GGDbukzy990hJ5vtKHjhaqJxJMB6Qq7BMZ0zZSQ=="; + }; + }; "@grpc/proto-loader-0.6.6" = { name = "_at_grpc_slash_proto-loader"; packageName = "@grpc/proto-loader"; @@ -5494,13 +5503,13 @@ let sha512 = "/PT1P6DNf7vjEEiPkVIRJkvibbqWtqnyGaBz3nfRdcxclNSnSdaLU5tfAgcD7I8Yt5i+L19s406YLl1koLnLbg=="; }; }; - "@mapbox/node-pre-gyp-1.0.8" = { + "@mapbox/node-pre-gyp-1.0.9" = { name = "_at_mapbox_slash_node-pre-gyp"; packageName = "@mapbox/node-pre-gyp"; - version = "1.0.8"; + version = "1.0.9"; src = fetchurl { - url = "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.8.tgz"; - sha512 = "CMGKi28CF+qlbXh26hDe6NxCd7amqeAzEqnS6IHeO6LoaKyM/n+Xw3HT1COdq8cuioOdlKdqn/hCmqPUOMOywg=="; + url = "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.9.tgz"; + sha512 = "aDF3S3rK9Q2gey/WAttUlISduDItz5BU3306M9Eyv6/oS40aMprnopshtlKTykxRNIBEZuRMaZAnbrQ4QtKGyw=="; }; }; "@mapbox/point-geometry-0.1.0" = { @@ -5584,31 +5593,49 @@ let sha512 = "y3Ntio6hb5+m6asxcA3nnIN6URjAFMji2EZZVYGd2Ag5On4mmvPhMnXdiIScCMXgHjFX+5qXuKaojLLhJHZPAg=="; }; }; - "@medable/mdctl-api-1.0.63" = { + "@medable/mdctl-api-1.0.64" = { name = "_at_medable_slash_mdctl-api"; packageName = "@medable/mdctl-api"; - version = "1.0.63"; + version = "1.0.64"; src = fetchurl { - url = "https://registry.npmjs.org/@medable/mdctl-api/-/mdctl-api-1.0.63.tgz"; - sha512 = "B4AgY+HGy7nJpGCY1+88F74NeXEJbmKGud5sgWaBOXHnOweNHvqWb0c2Fkn5A2LxiYPXpDvmGmiypCHubqJlQg=="; + url = "https://registry.npmjs.org/@medable/mdctl-api/-/mdctl-api-1.0.64.tgz"; + sha512 = "EPYWmkTMazBrilFm1YgSsQ8e62poVJbXdWHiCgUaVfqgE5htuogUSx1qMQbkGPYA1eWeZQLEpmTaKZXfI/1Vtw=="; }; }; - "@medable/mdctl-core-1.0.63" = { + "@medable/mdctl-api-driver-1.0.64" = { + name = "_at_medable_slash_mdctl-api-driver"; + packageName = "@medable/mdctl-api-driver"; + version = "1.0.64"; + src = fetchurl { + url = "https://registry.npmjs.org/@medable/mdctl-api-driver/-/mdctl-api-driver-1.0.64.tgz"; + sha512 = "w4OzAcQJvAlOBelophFpIM4TZdxFRyFTn71J88TME8h/swxC/YbfUmN3HVRQMxMimhnX0kGC44pm1YiHcqOg/g=="; + }; + }; + "@medable/mdctl-axon-tools-1.0.64" = { + name = "_at_medable_slash_mdctl-axon-tools"; + packageName = "@medable/mdctl-axon-tools"; + version = "1.0.64"; + src = fetchurl { + url = "https://registry.npmjs.org/@medable/mdctl-axon-tools/-/mdctl-axon-tools-1.0.64.tgz"; + sha512 = "Weew9WUga+AmZUbB4NZDR17qvv8rQ05F2gzlRxDdNwjbuwRmglwtBf2nbZu4SkAYhIFSSf3yPerhHpQsPpaf+w=="; + }; + }; + "@medable/mdctl-core-1.0.64" = { name = "_at_medable_slash_mdctl-core"; packageName = "@medable/mdctl-core"; - version = "1.0.63"; + version = "1.0.64"; src = fetchurl { - url = "https://registry.npmjs.org/@medable/mdctl-core/-/mdctl-core-1.0.63.tgz"; - sha512 = "XDZS5TN6d7BuHmIFi83P8MPg1zioiOzPFkq/S27DZ0Oa7Z9tW+w29IG0ltYZ6/uFuo8Z0VPiu9MdwM2vmzIPKQ=="; + url = "https://registry.npmjs.org/@medable/mdctl-core/-/mdctl-core-1.0.64.tgz"; + sha512 = "iu/iZwtueHD0uzuO/3kNECdZRKndF37VS+kRSS0diMkjgcgAqTo5telnnkEreJ6F/rULTlag6D5IkZNI9b/3LQ=="; }; }; - "@medable/mdctl-core-schemas-1.0.63" = { + "@medable/mdctl-core-schemas-1.0.64" = { name = "_at_medable_slash_mdctl-core-schemas"; packageName = "@medable/mdctl-core-schemas"; - version = "1.0.63"; + version = "1.0.64"; src = fetchurl { - url = "https://registry.npmjs.org/@medable/mdctl-core-schemas/-/mdctl-core-schemas-1.0.63.tgz"; - sha512 = "eoYyS0m4ZFE+q3QpkoHbl+HDxhDxx/xN0i6VeWhQsSMCeTeLffrXBWYIdZvi39QKLCL171m9uWr83yNKkvEp1w=="; + url = "https://registry.npmjs.org/@medable/mdctl-core-schemas/-/mdctl-core-schemas-1.0.64.tgz"; + sha512 = "qgSx/Br+B6eFtPWEPLMT6G2kZf6gCLyayN3O7MpwaF1RA8dH7kAqm+EWsiLvIrhYMfQ+3reTvHvP7K3431piRA=="; }; }; "@medable/mdctl-core-utils-1.0.63" = { @@ -5620,31 +5647,31 @@ let sha512 = "9Xx4Fku47H00F9K5cCbHE3ugz3PWyUxXBRp86ee1n3QVTvhoE2PdCHYH2RES24385uH+/BrYfclMtZ4pCfXVwg=="; }; }; - "@medable/mdctl-credentials-provider-keychain-1.0.63" = { + "@medable/mdctl-credentials-provider-keychain-1.0.64" = { name = "_at_medable_slash_mdctl-credentials-provider-keychain"; packageName = "@medable/mdctl-credentials-provider-keychain"; - version = "1.0.63"; + version = "1.0.64"; src = fetchurl { - url = "https://registry.npmjs.org/@medable/mdctl-credentials-provider-keychain/-/mdctl-credentials-provider-keychain-1.0.63.tgz"; - sha512 = "Vr+VpZ9XrPdsg5+qW6YNikED+RUn/v8/RMvbZ78hsEFEjEHRYT0He7f/nbJVkrS7+zYX7cdmzlZnKPV5z5HiQQ=="; + url = "https://registry.npmjs.org/@medable/mdctl-credentials-provider-keychain/-/mdctl-credentials-provider-keychain-1.0.64.tgz"; + sha512 = "PXCw9HfDbEu9w7c6MPSFG2rrqDDcEr8oDvr6m7FpmU/VjujsE055JkmmJ5nQTpBRex1pHuGkPWUgtSEMvzhITg=="; }; }; - "@medable/mdctl-credentials-provider-pouchdb-1.0.63" = { + "@medable/mdctl-credentials-provider-pouchdb-1.0.64" = { name = "_at_medable_slash_mdctl-credentials-provider-pouchdb"; packageName = "@medable/mdctl-credentials-provider-pouchdb"; - version = "1.0.63"; + version = "1.0.64"; src = fetchurl { - url = "https://registry.npmjs.org/@medable/mdctl-credentials-provider-pouchdb/-/mdctl-credentials-provider-pouchdb-1.0.63.tgz"; - sha512 = "FNIq2RxBd9NJPz4oBCs17sd3Zg2g0Y7zjAqu3G3I9LyEjbeJZLGwr7lu6NqmtG/F3e/TH2d6ecMK0zKPlpAJQg=="; + url = "https://registry.npmjs.org/@medable/mdctl-credentials-provider-pouchdb/-/mdctl-credentials-provider-pouchdb-1.0.64.tgz"; + sha512 = "qCcxaVrUUxsgtEPA693VanapacR0/l51o029YmYCDtIzTnndK7rjpxQ7XDNGLd8o3suzKEq8MrQDF0USkE/18g=="; }; }; - "@medable/mdctl-docs-1.0.63" = { + "@medable/mdctl-docs-1.0.64" = { name = "_at_medable_slash_mdctl-docs"; packageName = "@medable/mdctl-docs"; - version = "1.0.63"; + version = "1.0.64"; src = fetchurl { - url = "https://registry.npmjs.org/@medable/mdctl-docs/-/mdctl-docs-1.0.63.tgz"; - sha512 = "1DUsJFnpJNkwTZ65vx5rd+hzkuM3sfSJ3nxYfwcyOWw1bErloObXSEMw2iPIyt3ryYg3i9Jtt+d3AUuDpcT4PQ=="; + url = "https://registry.npmjs.org/@medable/mdctl-docs/-/mdctl-docs-1.0.64.tgz"; + sha512 = "33HEgkgL1Hu4yHYU0uH+zQukLiMv+e/NtfbCFBCGNuelvvSQHI4m/ZzAdriF9h7Ovyv1IFAKylEGKrw4A7xyZQ=="; }; }; "@medable/mdctl-export-adapter-console-1.0.63" = { @@ -5656,49 +5683,49 @@ let sha512 = "hPGbVYsWH/BVA9Q8cWuTMAeWtGvBg5TDE3pYWdVzaRMUqNt1af7weaieYX56h7jlOhkl4AtkKcW6S5AK0Q8w+w=="; }; }; - "@medable/mdctl-export-adapter-tree-1.0.63" = { + "@medable/mdctl-export-adapter-tree-1.0.64" = { name = "_at_medable_slash_mdctl-export-adapter-tree"; packageName = "@medable/mdctl-export-adapter-tree"; - version = "1.0.63"; + version = "1.0.64"; src = fetchurl { - url = "https://registry.npmjs.org/@medable/mdctl-export-adapter-tree/-/mdctl-export-adapter-tree-1.0.63.tgz"; - sha512 = "RfmHQUosT3qXnL0jFM2KPkc+JeHv7Ur9Qf16ffOAJCqopbJ+4ZAfUn/3IOUnlYZbeifWy3xU6gptSCqHITJokQ=="; + url = "https://registry.npmjs.org/@medable/mdctl-export-adapter-tree/-/mdctl-export-adapter-tree-1.0.64.tgz"; + sha512 = "O3zQpVACsFfeat3hmBiQXLoHpU4tnjQ0ggDr5pOpQUuWnV3H8lxzDNw1UTmcZuN9e+WA2HoX2C5I3yWZ/2uCvg=="; }; }; - "@medable/mdctl-import-adapter-1.0.63" = { + "@medable/mdctl-import-adapter-1.0.64" = { name = "_at_medable_slash_mdctl-import-adapter"; packageName = "@medable/mdctl-import-adapter"; - version = "1.0.63"; + version = "1.0.64"; src = fetchurl { - url = "https://registry.npmjs.org/@medable/mdctl-import-adapter/-/mdctl-import-adapter-1.0.63.tgz"; - sha512 = "l3xxVPyMvruvbi5JL75TqcFnh1wa+enFnJT9lk6tESy858w57PQes3cqhWdMZHJlDDBvpKhus/UiIERSEfwRDA=="; + url = "https://registry.npmjs.org/@medable/mdctl-import-adapter/-/mdctl-import-adapter-1.0.64.tgz"; + sha512 = "0HWnOFQVKomxKwu1nt3o1fK4+ObT10r545viQg8Ad2zEYzcb/jE3k7FlSQOkvLqTk/JCcNjp0AIWV6R3PFHJ0w=="; }; }; - "@medable/mdctl-manifest-1.0.63" = { + "@medable/mdctl-manifest-1.0.64" = { name = "_at_medable_slash_mdctl-manifest"; packageName = "@medable/mdctl-manifest"; - version = "1.0.63"; + version = "1.0.64"; src = fetchurl { - url = "https://registry.npmjs.org/@medable/mdctl-manifest/-/mdctl-manifest-1.0.63.tgz"; - sha512 = "lNepdPyMUTMNL87QrVoHklUOK8d0Nrv72y19gdO52yAM7IZPXG/UORlfip0JYFkFu/KSedrIVodjp6prm7+sgA=="; + url = "https://registry.npmjs.org/@medable/mdctl-manifest/-/mdctl-manifest-1.0.64.tgz"; + sha512 = "9lT6lAw9Y0m5Pv3sHXjOJIalUgcazrmCc0GGRmIoxDvWn9AUyaJ0p2dilyh9wR9IX1HAexEAuQR5IviGCLq/Hg=="; }; }; - "@medable/mdctl-node-utils-1.0.63" = { + "@medable/mdctl-node-utils-1.0.64" = { name = "_at_medable_slash_mdctl-node-utils"; packageName = "@medable/mdctl-node-utils"; - version = "1.0.63"; + version = "1.0.64"; src = fetchurl { - url = "https://registry.npmjs.org/@medable/mdctl-node-utils/-/mdctl-node-utils-1.0.63.tgz"; - sha512 = "wbC+fKBmdf0Zk1pB3x0T+4Z1fk3anSE3kcp8VznOZfpGD5UgYUzbhZzH8oPhT/3X1jx17XUS7XTURjqj6vTQew=="; + url = "https://registry.npmjs.org/@medable/mdctl-node-utils/-/mdctl-node-utils-1.0.64.tgz"; + sha512 = "ITZP4EHYqJbF0sxfHddrPvTRvEfuBiyZuI8gOBjTOHUUMj9PE8vG3D9okWIoCtvkaNAgr2Jjd/SHkEYDRZHnpA=="; }; }; - "@medable/mdctl-sandbox-1.0.63" = { + "@medable/mdctl-sandbox-1.0.64" = { name = "_at_medable_slash_mdctl-sandbox"; packageName = "@medable/mdctl-sandbox"; - version = "1.0.63"; + version = "1.0.64"; src = fetchurl { - url = "https://registry.npmjs.org/@medable/mdctl-sandbox/-/mdctl-sandbox-1.0.63.tgz"; - sha512 = "GENimL772K2Udv4id+QqL6E66Oko4e2UOeN93tYiUrU92w3S3wvEu/UyXXKjS/rzgs2naBmo6T3K7gdu8HqF4Q=="; + url = "https://registry.npmjs.org/@medable/mdctl-sandbox/-/mdctl-sandbox-1.0.64.tgz"; + sha512 = "dhoWUIfRgPJeymAxwW6D4T4k3QNrwvfeANRrIuNj7CT0hcn7CsusQhoCyYkhrymAvN5/X0KoTvYCGRj6sSLeMg=="; }; }; "@medable/mdctl-secrets-1.0.63" = { @@ -5728,13 +5755,13 @@ let sha512 = "W6CLUJ2eBMw3Rec70qrsEW0jOm/3twwJv21mrmj2yORiaVmVYGS4sSS5yUwvQc1ZlDLYGPnClVWmUUMagKNsfA=="; }; }; - "@microsoft/load-themed-styles-1.10.249" = { + "@microsoft/load-themed-styles-1.10.250" = { name = "_at_microsoft_slash_load-themed-styles"; packageName = "@microsoft/load-themed-styles"; - version = "1.10.249"; + version = "1.10.250"; src = fetchurl { - url = "https://registry.npmjs.org/@microsoft/load-themed-styles/-/load-themed-styles-1.10.249.tgz"; - sha512 = "qrLdjIZ9znm2CUILAXuwyAcUvyBzSNaf8wIzaZf/ul2UKhww5xSI7pT7bIqWbuwn5SB+xOmIZrlRr3DyzuVBYQ=="; + url = "https://registry.npmjs.org/@microsoft/load-themed-styles/-/load-themed-styles-1.10.250.tgz"; + sha512 = "uxn8ho0Wlc+JL8epCErwKIBK5ulva33VrabPbqPM1A770RGdxfW0J9PhnaIDOlz9p2w4DeyNhcLXIZry2eOaBg=="; }; }; "@mitmaro/errors-1.0.0" = { @@ -5791,13 +5818,13 @@ let sha512 = "BTpWy1e+FxN82RnLz4x1+JcEewVdfmUhV1C6/XYD5AjS7PQp9QFF7K8bCD6gzPTr2l+prvqOyVueQhFJxB1vfg=="; }; }; - "@nestjs/schematics-8.0.8" = { + "@nestjs/schematics-8.0.9" = { name = "_at_nestjs_slash_schematics"; packageName = "@nestjs/schematics"; - version = "8.0.8"; + version = "8.0.9"; src = fetchurl { - url = "https://registry.npmjs.org/@nestjs/schematics/-/schematics-8.0.8.tgz"; - sha512 = "xIIb5YnMQN/OJQ68+MCapy2bXvTxSWgINoqQbyZWkLL/yTIuROvZCdtV850NPGyr7f7l93VBP0ZPitbFIexy3Q=="; + url = "https://registry.npmjs.org/@nestjs/schematics/-/schematics-8.0.9.tgz"; + sha512 = "2YNRFWyQCxKaK7XTKBRKecERKQj2cg9FLxsHwAf9beryXxVmciTmHV0gHCW7Pfatj38R50QFGPN71wuyyZIC5g=="; }; }; "@netflix/nerror-1.1.3" = { @@ -6520,481 +6547,481 @@ let sha512 = "GdTwDHSaZ6iP5LUdvS/SLUjn3067xn1HcBsLZCh8YOsf22d/YWTBcnFl3buieBP4KiajwHLho4I8HSMDKACBSg=="; }; }; - "@ot-builder/bin-composite-types-1.5.0" = { + "@ot-builder/bin-composite-types-1.5.1" = { name = "_at_ot-builder_slash_bin-composite-types"; packageName = "@ot-builder/bin-composite-types"; - version = "1.5.0"; + version = "1.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/bin-composite-types/-/bin-composite-types-1.5.0.tgz"; - sha512 = "0X12BGmy7l91ONXGLfmG3BQerqjdipYgrGhREXL80qcKQfcZL4o+7NHjq/FDlFYpMGLxDq9CkprGEDmgSIL9CA=="; + url = "https://registry.npmjs.org/@ot-builder/bin-composite-types/-/bin-composite-types-1.5.1.tgz"; + sha512 = "ocwr19PbiqbZ6X64IhTzZzXvYxrGBUQHSN3Ii1RAPbZ8McHlNX4LtUbxAE1P3MnXOWtlZO4YUr4hHOZY2c6/7A=="; }; }; - "@ot-builder/bin-util-1.5.0" = { + "@ot-builder/bin-util-1.5.1" = { name = "_at_ot-builder_slash_bin-util"; packageName = "@ot-builder/bin-util"; - version = "1.5.0"; + version = "1.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/bin-util/-/bin-util-1.5.0.tgz"; - sha512 = "zLBqM5SjP/EmVaZtwqOjK832yzYQTlWqtldOmgAizckiNpayC6P5c49KJpVTLhVh54euhsk9oJUjsi0L9i8A0g=="; + url = "https://registry.npmjs.org/@ot-builder/bin-util/-/bin-util-1.5.1.tgz"; + sha512 = "uYz/dEE723loQiNIoRifnY8TWOdheuorCojIoTtZa3CIiAzfjpkVpHXpoSrDpO0Syep0tfq8pgDf/vm0fv0Mnw=="; }; }; - "@ot-builder/cli-help-shower-1.5.0" = { + "@ot-builder/cli-help-shower-1.5.1" = { name = "_at_ot-builder_slash_cli-help-shower"; packageName = "@ot-builder/cli-help-shower"; - version = "1.5.0"; + version = "1.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/cli-help-shower/-/cli-help-shower-1.5.0.tgz"; - sha512 = "2jMS5aTr+92mt0HsUoLLV+1GBMsk2GC1tx5YFcdDBH7rfExvYR5NKgpO1d7muVdUi8WBh4fn611rb5sjhBtF5Q=="; + url = "https://registry.npmjs.org/@ot-builder/cli-help-shower/-/cli-help-shower-1.5.1.tgz"; + sha512 = "xSeyQV/muAqr0ZMZprdAAz+4fq3C8j1AOPqjv0jWeyUcDTGHR1Itvf1iigL7+LB9nIn3bZXKFLBiUUQx2Lmhig=="; }; }; - "@ot-builder/cli-proc-1.5.0" = { + "@ot-builder/cli-proc-1.5.1" = { name = "_at_ot-builder_slash_cli-proc"; packageName = "@ot-builder/cli-proc"; - version = "1.5.0"; + version = "1.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/cli-proc/-/cli-proc-1.5.0.tgz"; - sha512 = "zU0afR6WqkUcogoX1pLJBsYSlViPJCkQ1zrHjnOLcHRJ5zIPwNXbFUTAhWePMvNF8EAjtILGeX8ZxoE3PtXMTQ=="; + url = "https://registry.npmjs.org/@ot-builder/cli-proc/-/cli-proc-1.5.1.tgz"; + sha512 = "/uUtJIOHiUzfFeWMQFF9CNg93+cZc9DIbPb7fIS3yucWSpaKP2cXjwZ9LeHDxkbtIMLwfr9W/ktRk/DlKERPJw=="; }; }; - "@ot-builder/cli-shared-1.5.0" = { + "@ot-builder/cli-shared-1.5.1" = { name = "_at_ot-builder_slash_cli-shared"; packageName = "@ot-builder/cli-shared"; - version = "1.5.0"; + version = "1.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/cli-shared/-/cli-shared-1.5.0.tgz"; - sha512 = "hOYs07mNlg9Z+Rl2wKsDRzb0gYVsnAv6K8O52Q141QBvu5Uyjb6p19zM8pYvOF7VXZTGEhki9WNoM3qVgp5pSA=="; + url = "https://registry.npmjs.org/@ot-builder/cli-shared/-/cli-shared-1.5.1.tgz"; + sha512 = "FbFIQ5lWNobNR7Sg4TDevNpEGn03Com+5+OfLLUToHhXoTuGmJDfrHeQ7KG7bFs4pnCNDDavM1Dn34v/U5zmbA=="; }; }; - "@ot-builder/common-impl-1.5.0" = { + "@ot-builder/common-impl-1.5.1" = { name = "_at_ot-builder_slash_common-impl"; packageName = "@ot-builder/common-impl"; - version = "1.5.0"; + version = "1.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/common-impl/-/common-impl-1.5.0.tgz"; - sha512 = "6linn1dhjDVIiu2cvY0UACSAJClKvLmwrLigg3dzlEjJRvr6jnE/zZ8D401CuL7EMLJPNjciSlf1lQCj5/MU8Q=="; + url = "https://registry.npmjs.org/@ot-builder/common-impl/-/common-impl-1.5.1.tgz"; + sha512 = "5cBzUheN3hOn0Di47FXW83PN6/ggcIBo3g5jIEP0UiYFXnUkO9YLzdQWEz5dLa0cUVkaotfwS7XYbaiBOmW57g=="; }; }; - "@ot-builder/errors-1.5.0" = { + "@ot-builder/errors-1.5.1" = { name = "_at_ot-builder_slash_errors"; packageName = "@ot-builder/errors"; - version = "1.5.0"; + version = "1.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/errors/-/errors-1.5.0.tgz"; - sha512 = "vARlbSzv3euBX0/Y4orHhbYZOsj7hYjsPU+VXt2LD+do6On1EJ8z6vvXXZxB4B52Rr2jnxzycqk0fNh95IKTeg=="; + url = "https://registry.npmjs.org/@ot-builder/errors/-/errors-1.5.1.tgz"; + sha512 = "++wdnFpE9Z/YR/sosddrtdIO4rIglp8V/igHCvZtsyIPR88q+q0/NTmQBMOLsZn6MeHRJgYIt0/Q4yZEhezUiA=="; }; }; - "@ot-builder/io-bin-cff-1.5.0" = { + "@ot-builder/io-bin-cff-1.5.1" = { name = "_at_ot-builder_slash_io-bin-cff"; packageName = "@ot-builder/io-bin-cff"; - version = "1.5.0"; + version = "1.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/io-bin-cff/-/io-bin-cff-1.5.0.tgz"; - sha512 = "3KWiwRB/8JUkfxE3WqR/xOWQdBDbIS6evdQPBQ/CAJV1qyTtL3Q9KfCHaMPHJcDLbKPP/4lnhKEyi6QsnJU/Tw=="; + url = "https://registry.npmjs.org/@ot-builder/io-bin-cff/-/io-bin-cff-1.5.1.tgz"; + sha512 = "7RcEM5hTDWM9vds2EXyS9sW2KRFUlnQuys9eMQ0OvgU9cO3hrN7UDhNtMTcjDFTtD668DX82jkP1CtnwORUczA=="; }; }; - "@ot-builder/io-bin-encoding-1.5.0" = { + "@ot-builder/io-bin-encoding-1.5.1" = { name = "_at_ot-builder_slash_io-bin-encoding"; packageName = "@ot-builder/io-bin-encoding"; - version = "1.5.0"; + version = "1.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/io-bin-encoding/-/io-bin-encoding-1.5.0.tgz"; - sha512 = "h55cS6agqz++YRMPAi6Zvgd6oWllF9+SjF72whPGekOjRZLNemuTpmWBbXbD3gc1pU8SqSUUSeIcUdny3sqtdg=="; + url = "https://registry.npmjs.org/@ot-builder/io-bin-encoding/-/io-bin-encoding-1.5.1.tgz"; + sha512 = "0nDTXPdTfHDvThAGuS/Td8HDp7FV7mQBcC1YVblA7L1RXf0EU2dxbLKgjqt9s4diQRsMRAvIs+REc0oa+/FFzQ=="; }; }; - "@ot-builder/io-bin-ext-private-1.5.0" = { + "@ot-builder/io-bin-ext-private-1.5.1" = { name = "_at_ot-builder_slash_io-bin-ext-private"; packageName = "@ot-builder/io-bin-ext-private"; - version = "1.5.0"; + version = "1.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/io-bin-ext-private/-/io-bin-ext-private-1.5.0.tgz"; - sha512 = "11K88CL96HiSP0DZYvNd/oULlDbKfD+RYChnl8OJlYDKqxQcFfecIcgKAJmEpmkr11MurRB0AdP2Hg6HBCUFuA=="; + url = "https://registry.npmjs.org/@ot-builder/io-bin-ext-private/-/io-bin-ext-private-1.5.1.tgz"; + sha512 = "wB8F3cpeSYbUQl9yQPdc/vtq//KKI9g9INc2vh/OaQVBeGtfEEHmyVtTsVg3qaBNH5UVcJLO1n8WPMaUejPQ4w=="; }; }; - "@ot-builder/io-bin-font-1.5.0" = { + "@ot-builder/io-bin-font-1.5.1" = { name = "_at_ot-builder_slash_io-bin-font"; packageName = "@ot-builder/io-bin-font"; - version = "1.5.0"; + version = "1.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/io-bin-font/-/io-bin-font-1.5.0.tgz"; - sha512 = "UuepwTTj9lbFh92vvyyK346OBVKlG7mXUcafrRijGGCyc1Toe+HONaCU1dcNy9IvwlNjEa6svrQfMFx8fwxMKA=="; + url = "https://registry.npmjs.org/@ot-builder/io-bin-font/-/io-bin-font-1.5.1.tgz"; + sha512 = "gyjIucWeUUe5Qa5kgyoKQ5ZgmcEqmjXhyOrMAftflo13JUe48azoqFgmcR2F7mLHEEp0o6zPxIFhuq4Osjoi/g=="; }; }; - "@ot-builder/io-bin-glyph-store-1.5.0" = { + "@ot-builder/io-bin-glyph-store-1.5.1" = { name = "_at_ot-builder_slash_io-bin-glyph-store"; packageName = "@ot-builder/io-bin-glyph-store"; - version = "1.5.0"; + version = "1.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/io-bin-glyph-store/-/io-bin-glyph-store-1.5.0.tgz"; - sha512 = "Xtg0k34yj4nfFlyh/lpBM6O66QYiAW9+/qmn5Rtp9N8hDCGD+2HZ7fTZZdcqgXYZblZvlknzBFKSOLoupcvZNg=="; + url = "https://registry.npmjs.org/@ot-builder/io-bin-glyph-store/-/io-bin-glyph-store-1.5.1.tgz"; + sha512 = "UmVjJ5SZxwEgaJFbO/l5gN4VD5GQwP0mkFhrTa0iubHMcKsAYAPiXJfs/YCaGj/cWaVtyucilk7+dbHsRglGnw=="; }; }; - "@ot-builder/io-bin-layout-1.5.0" = { + "@ot-builder/io-bin-layout-1.5.1" = { name = "_at_ot-builder_slash_io-bin-layout"; packageName = "@ot-builder/io-bin-layout"; - version = "1.5.0"; + version = "1.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/io-bin-layout/-/io-bin-layout-1.5.0.tgz"; - sha512 = "bS+e8VkFUX6LyWqD7zGa5FvJbCtIw6Crs2g4DVivn6slhru9JIc5DcNOHp86zwNkwlzg+v+5/3KUoNZoWgxWpw=="; + url = "https://registry.npmjs.org/@ot-builder/io-bin-layout/-/io-bin-layout-1.5.1.tgz"; + sha512 = "SoarXj9DVSuGSMxGetF9jIBeO0BV1KGMuHs23+CTD6xKSBn0YrPa3S/kim8crCbhdJl5az0pIa2X3EvJ+sGziw=="; }; }; - "@ot-builder/io-bin-metadata-1.5.0" = { + "@ot-builder/io-bin-metadata-1.5.1" = { name = "_at_ot-builder_slash_io-bin-metadata"; packageName = "@ot-builder/io-bin-metadata"; - version = "1.5.0"; + version = "1.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/io-bin-metadata/-/io-bin-metadata-1.5.0.tgz"; - sha512 = "0Q0K1UkSqO0wW03UbUuOw79abzNeK6cHjzCE0UX2hZPtH26gEG32xCPYUNCaSxOFPWXSRXPg/kmYIT6/ZmkWLA=="; + url = "https://registry.npmjs.org/@ot-builder/io-bin-metadata/-/io-bin-metadata-1.5.1.tgz"; + sha512 = "XC+0/BBXFUQxP+jeRq7H9QQZLBlsXGvwiSc0Fll8zQjVgFJB8HS/sOpCvr1kP3AiuFpUtnXsFSCp4SUM+phZEQ=="; }; }; - "@ot-builder/io-bin-metric-1.5.0" = { + "@ot-builder/io-bin-metric-1.5.1" = { name = "_at_ot-builder_slash_io-bin-metric"; packageName = "@ot-builder/io-bin-metric"; - version = "1.5.0"; + version = "1.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/io-bin-metric/-/io-bin-metric-1.5.0.tgz"; - sha512 = "Ezw3MBw4rO6fMrikm1Mc0nOnf3E4FPkHMhUAXN62AFcz6VOKMY34OL+NSoLkJL+HfGTju4KcF3guiNytXrtLeA=="; + url = "https://registry.npmjs.org/@ot-builder/io-bin-metric/-/io-bin-metric-1.5.1.tgz"; + sha512 = "WfQtSPgsOaydreLa2j9wjBg1UfBPmi2vYHG5M8LrD0iygOG+OoFcAvuX58gvOxz0n6OS3bHIeI2KAXd/9XLLew=="; }; }; - "@ot-builder/io-bin-name-1.5.0" = { + "@ot-builder/io-bin-name-1.5.1" = { name = "_at_ot-builder_slash_io-bin-name"; packageName = "@ot-builder/io-bin-name"; - version = "1.5.0"; + version = "1.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/io-bin-name/-/io-bin-name-1.5.0.tgz"; - sha512 = "zPhTA5HEwQ0jAovA+ZwPjt3ZNnOaLSQagoLHo6zuETOb+uJSksTExg+G4h6PFHC9U9q55OZ0HidlWOmnmi1xbA=="; + url = "https://registry.npmjs.org/@ot-builder/io-bin-name/-/io-bin-name-1.5.1.tgz"; + sha512 = "R7UT653Y/OYcSRT+cjXpsbPRRU4mAz5RfYxKTW8yKFJ2SN++17LqlkHAUhhWMiU6mJwNjIkpx6/g97ewRgY0oA=="; }; }; - "@ot-builder/io-bin-sfnt-1.5.0" = { + "@ot-builder/io-bin-sfnt-1.5.1" = { name = "_at_ot-builder_slash_io-bin-sfnt"; packageName = "@ot-builder/io-bin-sfnt"; - version = "1.5.0"; + version = "1.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/io-bin-sfnt/-/io-bin-sfnt-1.5.0.tgz"; - sha512 = "/8sANRI3aBKKdOcbnULiS5w5c34d6lb8IufJtYpCuowUuvkDUXF3vlGw7t7CL7mudzdcELpW4ROa1/vNRR+c6Q=="; + url = "https://registry.npmjs.org/@ot-builder/io-bin-sfnt/-/io-bin-sfnt-1.5.1.tgz"; + sha512 = "/PedJquNAlN+brP11hxKtDsNwVqklZVO8kYBOfh/8M/W5DDiz0Vrp36hSj8/qI0waYQWQegoN8l31y81YQRYxw=="; }; }; - "@ot-builder/io-bin-ttf-1.5.0" = { + "@ot-builder/io-bin-ttf-1.5.1" = { name = "_at_ot-builder_slash_io-bin-ttf"; packageName = "@ot-builder/io-bin-ttf"; - version = "1.5.0"; + version = "1.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/io-bin-ttf/-/io-bin-ttf-1.5.0.tgz"; - sha512 = "tiyuas19970WkKNFRC4ja9rMD0mgt9arbYbNeQvDjFB9MPsV0+BNgk6fpGr2o8tmYpw73/TZcJfEgIiEICJKtg=="; + url = "https://registry.npmjs.org/@ot-builder/io-bin-ttf/-/io-bin-ttf-1.5.1.tgz"; + sha512 = "xeV56Bd72YGm0n4Pt5SOcA+nocNEP/D2P1oieGu0Karb7yMqwd+fkoxPBo6+UMxWkWh0x7iztY4uMGI87HEpqQ=="; }; }; - "@ot-builder/io-bin-vtt-private-1.5.0" = { + "@ot-builder/io-bin-vtt-private-1.5.1" = { name = "_at_ot-builder_slash_io-bin-vtt-private"; packageName = "@ot-builder/io-bin-vtt-private"; - version = "1.5.0"; + version = "1.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/io-bin-vtt-private/-/io-bin-vtt-private-1.5.0.tgz"; - sha512 = "yz7WLqLI8XZ0KgYowu5ct9rbOS97TQRwudndDDXJZynSFZyUK5wYV9hfqXwKPDQI2QViAWhYBUJDR94zeSe7MA=="; + url = "https://registry.npmjs.org/@ot-builder/io-bin-vtt-private/-/io-bin-vtt-private-1.5.1.tgz"; + sha512 = "QL6HLeE7fs5gYiazG+2DVRg6zbL2O/srkkVGU4L1++1Z87BFp4xvID9LvePwLEpWUJFl9+4bRB6j5ozoYU3vYA=="; }; }; - "@ot-builder/ot-1.5.0" = { + "@ot-builder/ot-1.5.1" = { name = "_at_ot-builder_slash_ot"; packageName = "@ot-builder/ot"; - version = "1.5.0"; + version = "1.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/ot/-/ot-1.5.0.tgz"; - sha512 = "8nmX1B5D7974LaqH2ieIcZ4TDaAILGvANipOL5e75MMt6jF1O72UUHzO4vJ/llIsZYasqm9+rlv6dkp9CkveZA=="; + url = "https://registry.npmjs.org/@ot-builder/ot/-/ot-1.5.1.tgz"; + sha512 = "XIIYr9jv1TSYmcOkZDPRJASvgeKUQ+WnfaScu0fDiFI5GcLCLZOQnYjju8P1Q7/YOHT6HLZlD8T1MgXR8auo+w=="; }; }; - "@ot-builder/ot-encoding-1.5.0" = { + "@ot-builder/ot-encoding-1.5.1" = { name = "_at_ot-builder_slash_ot-encoding"; packageName = "@ot-builder/ot-encoding"; - version = "1.5.0"; + version = "1.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/ot-encoding/-/ot-encoding-1.5.0.tgz"; - sha512 = "cWVGpb/A3jKPqobIdMUdScq1tUd+ew282P/yLFejIeJvaE4U3zZas6wS9pg4se6uiRsdf8bY5xSjAvnfbJAM1w=="; + url = "https://registry.npmjs.org/@ot-builder/ot-encoding/-/ot-encoding-1.5.1.tgz"; + sha512 = "jgAxj59W5P3bC33FGYGINjFvgc6JVX6ppPN4LVeXnl0ExtqVqiBDf83DA33u+tDrZlqkAtYSed42V3TNA90wXg=="; }; }; - "@ot-builder/ot-ext-private-1.5.0" = { + "@ot-builder/ot-ext-private-1.5.1" = { name = "_at_ot-builder_slash_ot-ext-private"; packageName = "@ot-builder/ot-ext-private"; - version = "1.5.0"; + version = "1.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/ot-ext-private/-/ot-ext-private-1.5.0.tgz"; - sha512 = "gxbsodaN07XLNtTNLIWhhgHCsXjOs9D7M7c4i40UTv4S80FGzpyJpz2VOW1BJ8SUQjGFP/eeDdSyHWtmrBH21g=="; + url = "https://registry.npmjs.org/@ot-builder/ot-ext-private/-/ot-ext-private-1.5.1.tgz"; + sha512 = "fcnGZ6MgMdQIGipVzBuiH1lIOFWovi7Lfwt0ddYMzWjUqlnZgzpl6JwROQkmcfweAguEN3gFB/2Nkd+B5IHNgw=="; }; }; - "@ot-builder/ot-glyphs-1.5.0" = { + "@ot-builder/ot-glyphs-1.5.1" = { name = "_at_ot-builder_slash_ot-glyphs"; packageName = "@ot-builder/ot-glyphs"; - version = "1.5.0"; + version = "1.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/ot-glyphs/-/ot-glyphs-1.5.0.tgz"; - sha512 = "SxqNTishqTKf36tt6XRQkXXLD3fw+7azbf/kSu4A0Pq6MdmRMy5CGs6HDA9KhqaPpmq1UpMk876QPA9vCXoLPw=="; + url = "https://registry.npmjs.org/@ot-builder/ot-glyphs/-/ot-glyphs-1.5.1.tgz"; + sha512 = "hHKK6TWINdwy/pYQgPNfSlTWaIesHrizk6Uu2uT66ISRd3FAUcr3L+kjf8nLimkFDqPBvvQGMW8c3pEVlOt3Cw=="; }; }; - "@ot-builder/ot-layout-1.5.0" = { + "@ot-builder/ot-layout-1.5.1" = { name = "_at_ot-builder_slash_ot-layout"; packageName = "@ot-builder/ot-layout"; - version = "1.5.0"; + version = "1.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/ot-layout/-/ot-layout-1.5.0.tgz"; - sha512 = "fdmOl/HZi2Jdl0Fh8bx7CCG9s+jXimH+UCez3LPhTXgNNvOaFVqhABPtP+tAepqWi9J0MjBCeWMnFUmGiSa5gw=="; + url = "https://registry.npmjs.org/@ot-builder/ot-layout/-/ot-layout-1.5.1.tgz"; + sha512 = "ORIVOQFccaCkA/CpmKEUAGBU3jE3LtyQGl/g+sQPHNGR4H0Amrm9X4FlDuQAgzqMEDC3jUPmcyB3yBxJ71CLzQ=="; }; }; - "@ot-builder/ot-metadata-1.5.0" = { + "@ot-builder/ot-metadata-1.5.1" = { name = "_at_ot-builder_slash_ot-metadata"; packageName = "@ot-builder/ot-metadata"; - version = "1.5.0"; + version = "1.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/ot-metadata/-/ot-metadata-1.5.0.tgz"; - sha512 = "OARTkm/LDERbwo6I0BMdAmA0D6vMP2A0IaQlOWn1PxjNoHOZQY6U+1er1H//xJQZ4aA5BZtRgOoQebjQpYELbg=="; + url = "https://registry.npmjs.org/@ot-builder/ot-metadata/-/ot-metadata-1.5.1.tgz"; + sha512 = "t8u2Uf418PQBXA+Ex5vhAkqg1z7U3ULr4P3gdzwlvs82HpeTVrsJvYbpWj4RymSGUTDB56GT6dpvL9n9MZfg7w=="; }; }; - "@ot-builder/ot-name-1.5.0" = { + "@ot-builder/ot-name-1.5.1" = { name = "_at_ot-builder_slash_ot-name"; packageName = "@ot-builder/ot-name"; - version = "1.5.0"; + version = "1.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/ot-name/-/ot-name-1.5.0.tgz"; - sha512 = "b/NSfonC0QqMVNBloOPHeeQIqVAaHaID0oVD/C9jEGKPtp3zpSgS2oycmtZ8JmSqwS2qfJTU9lfzusT6E/LWsw=="; + url = "https://registry.npmjs.org/@ot-builder/ot-name/-/ot-name-1.5.1.tgz"; + sha512 = "SYwiXsP0edNS7kQcRpqmUOJX5koqnA888/kyalzzmStGm95JGoT6bX8dWp6MY/KOyzSHq4srJcM23GBxGs4epA=="; }; }; - "@ot-builder/ot-sfnt-1.5.0" = { + "@ot-builder/ot-sfnt-1.5.1" = { name = "_at_ot-builder_slash_ot-sfnt"; packageName = "@ot-builder/ot-sfnt"; - version = "1.5.0"; + version = "1.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/ot-sfnt/-/ot-sfnt-1.5.0.tgz"; - sha512 = "imCGAlN78Yc2HQDVUzNPixj0ERT+PEodi9bp+wINLVYF9G6CgRMTIuSgG0KBK9H8T20sBrorOFfcZFQJuucy4A=="; + url = "https://registry.npmjs.org/@ot-builder/ot-sfnt/-/ot-sfnt-1.5.1.tgz"; + sha512 = "BPfGhc6xpZWKrOcLoH0+ceVxu7EWqaByzkz56d58bh/EGdLRqbQegjRyNsHQz3U237I9YulbsAOBi4LMh9EbCg=="; }; }; - "@ot-builder/ot-standard-glyph-namer-1.5.0" = { + "@ot-builder/ot-standard-glyph-namer-1.5.1" = { name = "_at_ot-builder_slash_ot-standard-glyph-namer"; packageName = "@ot-builder/ot-standard-glyph-namer"; - version = "1.5.0"; + version = "1.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/ot-standard-glyph-namer/-/ot-standard-glyph-namer-1.5.0.tgz"; - sha512 = "aZkJBn2kog2eyAcXygzvYte5uH7GCVgO2jM9QeB4bpWoxXYjIF3dy58hsbZ6zKMXMncphOFcnTgxgvct45bglA=="; + url = "https://registry.npmjs.org/@ot-builder/ot-standard-glyph-namer/-/ot-standard-glyph-namer-1.5.1.tgz"; + sha512 = "6zJken8UG3En8/Z0sN1gDvFoXfgxN4hgLD6ElKLzu9gBw3zXdgdigLnIgTecOGzoYUfnO17pA0/tY4AH6Z70OQ=="; }; }; - "@ot-builder/ot-vtt-private-1.5.0" = { + "@ot-builder/ot-vtt-private-1.5.1" = { name = "_at_ot-builder_slash_ot-vtt-private"; packageName = "@ot-builder/ot-vtt-private"; - version = "1.5.0"; + version = "1.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/ot-vtt-private/-/ot-vtt-private-1.5.0.tgz"; - sha512 = "iMQP2zI56mZJqG98VVAswCe2f2NgApW0BtAKfC/e3VKDJPWbsJHcIHnkcRReaC4FzAmzxqarY1IyeNC94xSNVg=="; + url = "https://registry.npmjs.org/@ot-builder/ot-vtt-private/-/ot-vtt-private-1.5.1.tgz"; + sha512 = "757L0L3kNZxx3fG5FUeGFGtZIPerv2gAycat91Wtbw6XjiMtqcJITwO7/rkUWD+6u3vMYTWpFO1Ye4XgClYuWQ=="; }; }; - "@ot-builder/prelude-1.5.0" = { + "@ot-builder/prelude-1.5.1" = { name = "_at_ot-builder_slash_prelude"; packageName = "@ot-builder/prelude"; - version = "1.5.0"; + version = "1.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/prelude/-/prelude-1.5.0.tgz"; - sha512 = "b3tJ4GTZvK+sFNHlihFaOTxeMOWmSqIDKGOJuV9l6Svn/1moTcO3VWjRuriHmsrA0ZuaSQxTKMf3Na5BYiTnXw=="; + url = "https://registry.npmjs.org/@ot-builder/prelude/-/prelude-1.5.1.tgz"; + sha512 = "0ovDORVvH3SWHoG+nNL0RAAk6wsHrfxp6cW8Fk+7vum06JWWGTiv9VEDyYNWWfCRD958T/xUguk/q/0slr38Ow=="; }; }; - "@ot-builder/primitive-1.5.0" = { + "@ot-builder/primitive-1.5.1" = { name = "_at_ot-builder_slash_primitive"; packageName = "@ot-builder/primitive"; - version = "1.5.0"; + version = "1.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/primitive/-/primitive-1.5.0.tgz"; - sha512 = "jJN98wURFXGa8KTfjrIlB54AF2QJw+w9eQuJ812mt8Nmw2Mle+IaYCRAiD8IKWjRWMZcd6bztkOoDbCavqcrUQ=="; + url = "https://registry.npmjs.org/@ot-builder/primitive/-/primitive-1.5.1.tgz"; + sha512 = "xRIHI7+EKqq+3XAJMRne4lX41Y85QLtyf+mAN6CpFfrtTRd9U47BpbLHV8fktW/tzR+iuOtWL5C0g4iNVqrTTA=="; }; }; - "@ot-builder/rectify-1.5.0" = { + "@ot-builder/rectify-1.5.1" = { name = "_at_ot-builder_slash_rectify"; packageName = "@ot-builder/rectify"; - version = "1.5.0"; + version = "1.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/rectify/-/rectify-1.5.0.tgz"; - sha512 = "Ivx2VxlMB/Btq4+YLaH4KhPb+eoU4Nsg4UMd5u0BXQ+JjC3HvUbyXDWRMJn3ACDLvvkXSqjEprf7G3BFp58p7g=="; + url = "https://registry.npmjs.org/@ot-builder/rectify/-/rectify-1.5.1.tgz"; + sha512 = "AXM+fy1h/JAvf0y79a31w92NwicQb9y+hotRthd88EXTxOZLlyyuwzUdfBW5MaMfXq7/SfeCxlz6xcSaMMjfrg=="; }; }; - "@ot-builder/stat-glyphs-1.5.0" = { + "@ot-builder/stat-glyphs-1.5.1" = { name = "_at_ot-builder_slash_stat-glyphs"; packageName = "@ot-builder/stat-glyphs"; - version = "1.5.0"; + version = "1.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/stat-glyphs/-/stat-glyphs-1.5.0.tgz"; - sha512 = "OMCvsvxsX0dkjWcde3J3sxF1xRbzVm4uyz+G9sgjRXznBLVKtvstTpspFqpTfhUFEcjRU+7AJhWNn4nvXQR/jw=="; + url = "https://registry.npmjs.org/@ot-builder/stat-glyphs/-/stat-glyphs-1.5.1.tgz"; + sha512 = "trH59RavFr0++8WnodHF/A3YpKXXcW68fbugm19dW5Pen5sUSfEh0OpLKwI4YjW98/kKiLYqu8MwJCIugEaKqQ=="; }; }; - "@ot-builder/trace-1.5.0" = { + "@ot-builder/trace-1.5.1" = { name = "_at_ot-builder_slash_trace"; packageName = "@ot-builder/trace"; - version = "1.5.0"; + version = "1.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/trace/-/trace-1.5.0.tgz"; - sha512 = "qegG5Oc9gYHWMSnV9qLqYQnQAq79SRHo/apQtnnpD4o7d1SsxDPqR+xspzl3dprPRYSqq8zUKVZ5mxnLNcLPWQ=="; + url = "https://registry.npmjs.org/@ot-builder/trace/-/trace-1.5.1.tgz"; + sha512 = "M+8o1JvM4T99ciRdipJDWIshBN1878EB5B2m7VvB9SwcfIRy2bBEW2pNIf+nWBgttbkXqeMNi9JMGgBlcCbK/w=="; }; }; - "@ot-builder/var-store-1.5.0" = { + "@ot-builder/var-store-1.5.1" = { name = "_at_ot-builder_slash_var-store"; packageName = "@ot-builder/var-store"; - version = "1.5.0"; + version = "1.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/var-store/-/var-store-1.5.0.tgz"; - sha512 = "NufILxFqLWcXjhJqG0IgVCDr0ey/e4Q+mX8k0o+SV1/yHdVxug5CrBQnmF7/yIB1Au9FgdZp2eal2Un1gjxQ4A=="; + url = "https://registry.npmjs.org/@ot-builder/var-store/-/var-store-1.5.1.tgz"; + sha512 = "GJWlE7hDwajX1cvGjChR9rt8kqiC3O5cr9ikFpPyz150zkkqWaLi38sISA1h7Vk/dU5TQ6nVka53/I2Q4tWptA=="; }; }; - "@ot-builder/variance-1.5.0" = { + "@ot-builder/variance-1.5.1" = { name = "_at_ot-builder_slash_variance"; packageName = "@ot-builder/variance"; - version = "1.5.0"; + version = "1.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/@ot-builder/variance/-/variance-1.5.0.tgz"; - sha512 = "iA8tovocbymAAhA1zRO29vltUlZGfLjYaukyLu3mH8XBgNuxTwb0aUbQ9muDKyWS+E5Q23+KN/PaA8ZwUtlHlA=="; + url = "https://registry.npmjs.org/@ot-builder/variance/-/variance-1.5.1.tgz"; + sha512 = "v4HMolIM+Jigr9N8TTAYnPcGhsUr54WDpJbVVW6fueH54ePD3Z9MYE0X22TAjpFwZbBHUUAjtoHeUP32pMMpqg=="; }; }; - "@parcel/bundler-default-2.4.0" = { + "@parcel/bundler-default-2.4.1" = { name = "_at_parcel_slash_bundler-default"; packageName = "@parcel/bundler-default"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/bundler-default/-/bundler-default-2.4.0.tgz"; - sha512 = "RaXlxo0M51739Ko3bsOJpDBZlJ+cqkDoBTozNeSc65jS2TMBIBWLMapm8095qmty39OrgYNhzjgPiIlKDS/LWA=="; + url = "https://registry.npmjs.org/@parcel/bundler-default/-/bundler-default-2.4.1.tgz"; + sha512 = "PTfBOuoiiYdfwyoPFeBTOinyl1RL4qaoyAQ0PCe01C1i4NcRWCY1w7zRvwJW/OhU3Ka+LtioGmfxu5/drdXzLg=="; }; }; - "@parcel/cache-2.4.0" = { + "@parcel/cache-2.4.1" = { name = "_at_parcel_slash_cache"; packageName = "@parcel/cache"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/cache/-/cache-2.4.0.tgz"; - sha512 = "oOudoAafrCAHQY0zkU7gVHG1pAGBUz9rht7Tx4WupTmAH0O0F5UnZs6XbjoBJaPHg+CYUXK7v9wQcrNA72E3GA=="; + url = "https://registry.npmjs.org/@parcel/cache/-/cache-2.4.1.tgz"; + sha512 = "2N5ly++p/yefmPdK39X1QIoA2e6NtS1aYSsxrIC9EX92Kjd7SfSceqUJhlJWB49omJSheEJLd1qM3EJG9EvICQ=="; }; }; - "@parcel/codeframe-2.4.0" = { + "@parcel/codeframe-2.4.1" = { name = "_at_parcel_slash_codeframe"; packageName = "@parcel/codeframe"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/codeframe/-/codeframe-2.4.0.tgz"; - sha512 = "PJ3W9Z0sjoS2CANyo50c+LEr9IRZrtu0WsVPSYZ5ZYRuSXrSa/6PcAlnkyDk2+hi7Od8ncT2bmDexl0Oar3Jyg=="; + url = "https://registry.npmjs.org/@parcel/codeframe/-/codeframe-2.4.1.tgz"; + sha512 = "m3WDeEpWvgqekCqsHfPMJrSQquahdIgSR1x1RDCqQ1YelvW0fQiGgu42MXI5tjoBrHC1l1mF01UDb+xMSxz1DA=="; }; }; - "@parcel/compressor-raw-2.4.0" = { + "@parcel/compressor-raw-2.4.1" = { name = "_at_parcel_slash_compressor-raw"; packageName = "@parcel/compressor-raw"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/compressor-raw/-/compressor-raw-2.4.0.tgz"; - sha512 = "ZErX14fTc0gKIgtnuqW7Clfln4dpXWfUaJQQIf5C3x/LkpUeEhdXeKntkvSxOddDk2JpIKDwqzAxEMZUnDo4Nw=="; + url = "https://registry.npmjs.org/@parcel/compressor-raw/-/compressor-raw-2.4.1.tgz"; + sha512 = "cEOOOzIK7glxCqJX0OfBFBZE/iT7tmjEOXswRY3CnqY9FGoY3NYDAsOLm7A73RuIdNaZfYVxVUy3g7OLpbKL+g=="; }; }; - "@parcel/config-default-2.4.0" = { + "@parcel/config-default-2.4.1" = { name = "_at_parcel_slash_config-default"; packageName = "@parcel/config-default"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/config-default/-/config-default-2.4.0.tgz"; - sha512 = "pFOPBXPO6HGqNWTLkcK5i8haMOrRgUouUhcWPGWDpN9IPUYFK2E/O1E/uyMjIA1mSL3FnazI+jJwZ45NhKPpIA=="; + url = "https://registry.npmjs.org/@parcel/config-default/-/config-default-2.4.1.tgz"; + sha512 = "yGA4Mx/KDzVOPm8IYb4Id+zlz1TaIM7s472pxA4tUV1qcEtBInY0aeO9R/GsLKC2+3QPHURZld9WI9EMXRUBBA=="; }; }; - "@parcel/core-2.4.0" = { + "@parcel/core-2.4.1" = { name = "_at_parcel_slash_core"; packageName = "@parcel/core"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/core/-/core-2.4.0.tgz"; - sha512 = "EWZ2UWtIuwDc3fgsKyyTLpNNPoG8Yk2L117ICWF/+cqY8z/wJHm2KwLbeplDeq524shav0GJ9O4CemP3JPx0Nw=="; + url = "https://registry.npmjs.org/@parcel/core/-/core-2.4.1.tgz"; + sha512 = "h2FvqLA75ZQdIXX1y+ylGjIIi7YtbAUJyIapxaO081h3EsYG2jr9sRL4sym5ECgmvbyua/DEgtMLX3eGYn09FA=="; }; }; - "@parcel/css-1.7.3" = { + "@parcel/css-1.7.4" = { name = "_at_parcel_slash_css"; packageName = "@parcel/css"; - version = "1.7.3"; + version = "1.7.4"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/css/-/css-1.7.3.tgz"; - sha512 = "rgdRX4Uk31EvzH/mUScL0wdXtkci3U5N1W2pgam+9S10vQy4uONhWBepZ1tUCjONHLacGXr1jp3LbG/HI7LiTw=="; + url = "https://registry.npmjs.org/@parcel/css/-/css-1.7.4.tgz"; + sha512 = "K1N9mxEkWQQmSINMNuGvlyPq7yCY+AtHskGxWav97lhu2i8GMMXRV9kc8/x/jkZh5KDBWO5vHhdQiujRBrgR8g=="; }; }; - "@parcel/css-darwin-arm64-1.7.3" = { + "@parcel/css-darwin-arm64-1.7.4" = { name = "_at_parcel_slash_css-darwin-arm64"; packageName = "@parcel/css-darwin-arm64"; - version = "1.7.3"; + version = "1.7.4"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/css-darwin-arm64/-/css-darwin-arm64-1.7.3.tgz"; - sha512 = "m3HDY+Rh8HJxmLELKAvCpF59vLS7FWtgBODHxl8G9Jl2CnGtXpXvdpyeMxNsTE+2QuPC+a5QT7IeZAKb2Gjmxg=="; + url = "https://registry.npmjs.org/@parcel/css-darwin-arm64/-/css-darwin-arm64-1.7.4.tgz"; + sha512 = "fA+aBZAAgXSV7jUQFRYuKpJr5EEqNq++mFu4o/pU/lBFMJhL6Z11aqzrBecC1JziWT3t/BgryWdznf1QkNtM4w=="; }; }; - "@parcel/css-darwin-x64-1.7.3" = { + "@parcel/css-darwin-x64-1.7.4" = { name = "_at_parcel_slash_css-darwin-x64"; packageName = "@parcel/css-darwin-x64"; - version = "1.7.3"; + version = "1.7.4"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/css-darwin-x64/-/css-darwin-x64-1.7.3.tgz"; - sha512 = "LuhweXKxVwrz/hjAOm9XNRMSL+p23px20nhSCASkyUP7Higaxza948W3TSQdoL3YyR+wQxQH8Yj+R/T8Tz3E3g=="; + url = "https://registry.npmjs.org/@parcel/css-darwin-x64/-/css-darwin-x64-1.7.4.tgz"; + sha512 = "qx/+vEXSmed7eeBgVvV/1lrEjk8KnKUiAN+CCes8d6ddJJzK5evTKQsWkywe1jNdHC33d2mlLlhLFmC2+2IPOw=="; }; }; - "@parcel/css-linux-arm-gnueabihf-1.7.3" = { + "@parcel/css-linux-arm-gnueabihf-1.7.4" = { name = "_at_parcel_slash_css-linux-arm-gnueabihf"; packageName = "@parcel/css-linux-arm-gnueabihf"; - version = "1.7.3"; + version = "1.7.4"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/css-linux-arm-gnueabihf/-/css-linux-arm-gnueabihf-1.7.3.tgz"; - sha512 = "/pd9Em18zMvt7eDZAMpNBEwF7c4VPVhAtBOZ59ClFrsXCTDNYP7mSy0cwNgtLelCRZCGAQmZNBDNQPH7vO3rew=="; + url = "https://registry.npmjs.org/@parcel/css-linux-arm-gnueabihf/-/css-linux-arm-gnueabihf-1.7.4.tgz"; + sha512 = "+Qf+j8dqJ+t7V/w9LnyWBzNcMG/GnlzjlWNQhiUkt1aYFYPr5i/eRWuWLYxVlz8EGQOUbYlinDGLXTUJDt31gA=="; }; }; - "@parcel/css-linux-arm64-gnu-1.7.3" = { + "@parcel/css-linux-arm64-gnu-1.7.4" = { name = "_at_parcel_slash_css-linux-arm64-gnu"; packageName = "@parcel/css-linux-arm64-gnu"; - version = "1.7.3"; + version = "1.7.4"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/css-linux-arm64-gnu/-/css-linux-arm64-gnu-1.7.3.tgz"; - sha512 = "5aKiEhQK40riO4iVKzRqISzgYK+7Z7i3e6JTSz+/BHuQyHEUaBe/RuJ8Z0BDQtFz0HmWQlrQCd+7hd0Xgd8vYQ=="; + url = "https://registry.npmjs.org/@parcel/css-linux-arm64-gnu/-/css-linux-arm64-gnu-1.7.4.tgz"; + sha512 = "ITP0HZT/Ay6JCgH3W7JpoRUYfciW+jBVBTjglZjYgyYPLLWk2J1kXB+qC3jHp5XCeH4feh7eFB1pyQcE7kqCjA=="; }; }; - "@parcel/css-linux-arm64-musl-1.7.3" = { + "@parcel/css-linux-arm64-musl-1.7.4" = { name = "_at_parcel_slash_css-linux-arm64-musl"; packageName = "@parcel/css-linux-arm64-musl"; - version = "1.7.3"; + version = "1.7.4"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/css-linux-arm64-musl/-/css-linux-arm64-musl-1.7.3.tgz"; - sha512 = "Wf7/aIueDED2JqBMfZvzbBAFSaPmd3TR28bD2pmP7CI/jZnm9vHVKMdOLgt9NKSSSjdGrp+VM410CsrUM7xcOw=="; + url = "https://registry.npmjs.org/@parcel/css-linux-arm64-musl/-/css-linux-arm64-musl-1.7.4.tgz"; + sha512 = "or61QRhhpsDlHfrc73KP4bPwnnVZWni1jkuRv1mCi+0SzYzoaO190JEaj7VWh/boUvjGiIl//FsLoZleQIWKNA=="; }; }; - "@parcel/css-linux-x64-gnu-1.7.3" = { + "@parcel/css-linux-x64-gnu-1.7.4" = { name = "_at_parcel_slash_css-linux-x64-gnu"; packageName = "@parcel/css-linux-x64-gnu"; - version = "1.7.3"; + version = "1.7.4"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/css-linux-x64-gnu/-/css-linux-x64-gnu-1.7.3.tgz"; - sha512 = "0ZADbuFklUrHC1p2uPY4BPcN07jUTMqJzr/SSdnGN2XiXgiVZGcDCMHUj0DvC9Vwy11DDM6Rnw4QBbKHG+QGjQ=="; + url = "https://registry.npmjs.org/@parcel/css-linux-x64-gnu/-/css-linux-x64-gnu-1.7.4.tgz"; + sha512 = "GHGsM06F26FAkvPcnsGw7NHxPVD7TQvg7OC7cVAYmETccO8mqs9DyRzBTevk+1kl7EQXNnHDojn7VpVN6q+phg=="; }; }; - "@parcel/css-linux-x64-musl-1.7.3" = { + "@parcel/css-linux-x64-musl-1.7.4" = { name = "_at_parcel_slash_css-linux-x64-musl"; packageName = "@parcel/css-linux-x64-musl"; - version = "1.7.3"; + version = "1.7.4"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/css-linux-x64-musl/-/css-linux-x64-musl-1.7.3.tgz"; - sha512 = "mFWWM8lX2OIID81YQuDDt9zTqof0B7UcEcs0huE7Zbs60uLEEQupdf8iH0yh5EOhxPt3sRcQnGXf2QTrXdjIMA=="; + url = "https://registry.npmjs.org/@parcel/css-linux-x64-musl/-/css-linux-x64-musl-1.7.4.tgz"; + sha512 = "H/9wvQ7LNqng9yIwulpfUUhs6zm9+vLCzri2qnC4vm8geyTjA0W0H5fphV8IlzNJ/DfHmoesJ+TXw5NG+QC9hg=="; }; }; - "@parcel/css-win32-x64-msvc-1.7.3" = { + "@parcel/css-win32-x64-msvc-1.7.4" = { name = "_at_parcel_slash_css-win32-x64-msvc"; packageName = "@parcel/css-win32-x64-msvc"; - version = "1.7.3"; + version = "1.7.4"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/css-win32-x64-msvc/-/css-win32-x64-msvc-1.7.3.tgz"; - sha512 = "KUFEMQcoP7DG3QbsN21OxhjHkfQ1BARn7D9puX75bV5N1F1kv557aaLkQZiMsgiYOL4tmJvsdQXutG7x++3j4Q=="; + url = "https://registry.npmjs.org/@parcel/css-win32-x64-msvc/-/css-win32-x64-msvc-1.7.4.tgz"; + sha512 = "xmg18iISCn1f9IyYUif6yR8FuEmi93qzH55oUiri5vZWuCY8xfraHsRA6i8yLWnxgDmVeHyiN0IICl7rgZo10A=="; }; }; - "@parcel/diagnostic-2.4.0" = { + "@parcel/diagnostic-2.4.1" = { name = "_at_parcel_slash_diagnostic"; packageName = "@parcel/diagnostic"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/diagnostic/-/diagnostic-2.4.0.tgz"; - sha512 = "TjWO/b2zMFhub5ouwGjazMm7iAUvdmXBfWmjrg4TBhUbhoQwBnyWfvMDtAYo7PcvXfxVPgPZv86Nv6Ym5H6cHQ=="; + url = "https://registry.npmjs.org/@parcel/diagnostic/-/diagnostic-2.4.1.tgz"; + sha512 = "wmJIfn0PG2ABuraS+kMjl6UKaLjTDTtG+XkjJLWHzU/dd5RozqAZDKp65GWjvHzHLx7KICTAdUJsXh2s3TnTOQ=="; }; }; - "@parcel/events-2.4.0" = { + "@parcel/events-2.4.1" = { name = "_at_parcel_slash_events"; packageName = "@parcel/events"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/events/-/events-2.4.0.tgz"; - sha512 = "DEaEtFbhOhNAEmiXJ3MyF8Scq+sNDKiTyLax4lAC5/dpE5GvwfNnoD17C2+0gDuuDpdQkdHfXfvr50aYFt7jcw=="; + url = "https://registry.npmjs.org/@parcel/events/-/events-2.4.1.tgz"; + sha512 = "er2jwyzYt3Zimkrp7TR865GIeIMYNd7YSSxW39y/egm4LIPBsruUpHSnKRD5b65Jd+gckkxDsnrpADG6MH1zNw=="; }; }; "@parcel/fs-1.11.0" = { @@ -7006,40 +7033,40 @@ let sha512 = "86RyEqULbbVoeo8OLcv+LQ1Vq2PKBAvWTU9fCgALxuCTbbs5Ppcvll4Vr+Ko1AnmMzja/k++SzNAwJfeQXVlpA=="; }; }; - "@parcel/fs-2.4.0" = { + "@parcel/fs-2.4.1" = { name = "_at_parcel_slash_fs"; packageName = "@parcel/fs"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/fs/-/fs-2.4.0.tgz"; - sha512 = "CnUlWGUJ52SJVQi8QnaAPPQZOADmHMV9D9aX9GLcDm5XLT3Em7vmesG4bNLdMLwzYuzAtenhcWmuRCACuYztHw=="; + url = "https://registry.npmjs.org/@parcel/fs/-/fs-2.4.1.tgz"; + sha512 = "kE9HzW6XjO/ZA5bQnAzp1YVmGlXeDqUaius2cH2K0wU7KQX/GBjyfEWJm/UsKPB6QIrGXgkPH6ashNzOgwDqpw=="; }; }; - "@parcel/fs-search-2.4.0" = { + "@parcel/fs-search-2.4.1" = { name = "_at_parcel_slash_fs-search"; packageName = "@parcel/fs-search"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/fs-search/-/fs-search-2.4.0.tgz"; - sha512 = "W/Vu6wbZk4wuB6AVdMkyymwh/S8Peed/PgJgSsApYD6lSTD315I6OuEdxZh3lWY+dqQdog/NJ7dvi/hdpH/Iqw=="; + url = "https://registry.npmjs.org/@parcel/fs-search/-/fs-search-2.4.1.tgz"; + sha512 = "xfoLvHjHkZm4VZf3UWU5v6gzz+x7IBVY7siHGn0YyGwvlv73FmiR4mCSizqerXOyXknF2fpg6tNHNQyyNLS32Q=="; }; }; - "@parcel/graph-2.4.0" = { + "@parcel/graph-2.4.1" = { name = "_at_parcel_slash_graph"; packageName = "@parcel/graph"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/graph/-/graph-2.4.0.tgz"; - sha512 = "5TZIAfDITkJCzgH4j4OQhnIvjV9IFwWqNBJanRl5QQTmKvdcODS3WbnK1SOJ+ZltcLVXMB+HNXmL0bX0tVolcw=="; + url = "https://registry.npmjs.org/@parcel/graph/-/graph-2.4.1.tgz"; + sha512 = "3JCnPI9BJdKpGIk6NtVN7ML3C/J9Ey+WfUfk8WisDxFP7vjYkXwZbNSR/HnxH+Y03wmB6cv4HI8A4kndF0H0pw=="; }; }; - "@parcel/hash-2.4.0" = { + "@parcel/hash-2.4.1" = { name = "_at_parcel_slash_hash"; packageName = "@parcel/hash"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/hash/-/hash-2.4.0.tgz"; - sha512 = "nB+wYNUhe6+G8M7vQhdeFXtpYJYwJgBHOPZ7Hd9O2jdlamWjDbw0t/u1dJbYvGJ8ZDtLDwiItawQVpuVdskQ9g=="; + url = "https://registry.npmjs.org/@parcel/hash/-/hash-2.4.1.tgz"; + sha512 = "Ch1kkFPedef3geapU+XYmAdZY29u3eQXn/twMjowAKkWCmj6wZ+muUgBmOO2uCfK3xys7GycI8jYZcAbF5DVLg=="; }; }; "@parcel/logger-1.11.1" = { @@ -7051,211 +7078,211 @@ let sha512 = "9NF3M6UVeP2udOBDILuoEHd8VrF4vQqoWHEafymO1pfSoOMfxrSJZw1MfyAAIUN/IFp9qjcpDCUbDZB+ioVevA=="; }; }; - "@parcel/logger-2.4.0" = { + "@parcel/logger-2.4.1" = { name = "_at_parcel_slash_logger"; packageName = "@parcel/logger"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/logger/-/logger-2.4.0.tgz"; - sha512 = "DqfU0Zcs/0a7VBk+MsjJ80C66w4kM9EbkO3G12NIyEjNeG50ayW2CE9rUuJ91JaM9j0NFM1P82eyLpQPFFaVPw=="; + url = "https://registry.npmjs.org/@parcel/logger/-/logger-2.4.1.tgz"; + sha512 = "wm7FoKY+1dyo+Dd7Z4b0d6hmpgRBWfZwCoZSSyhgbG96Ty68/oo3m7oEMXPfry8IVGIhShmWKDp4py44PH3l7w=="; }; }; - "@parcel/markdown-ansi-2.4.0" = { + "@parcel/markdown-ansi-2.4.1" = { name = "_at_parcel_slash_markdown-ansi"; packageName = "@parcel/markdown-ansi"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/markdown-ansi/-/markdown-ansi-2.4.0.tgz"; - sha512 = "gPUP1xikxHiu2kFyPy35pfuVkFgAmcywO8YDQj7iYcB+k7l4QPpIYFYGXn2QADV4faf66ncMeTD4uYV8c0GqjQ=="; + url = "https://registry.npmjs.org/@parcel/markdown-ansi/-/markdown-ansi-2.4.1.tgz"; + sha512 = "BkWhzbKQhTQ9lS96ZMMG0KyXSJBFdNeBVobWrdrrwcFlNER0nt2m6fdF7Hfpf1TqFhM4tT+GNFtON7ybL53RiQ=="; }; }; - "@parcel/namer-default-2.4.0" = { + "@parcel/namer-default-2.4.1" = { name = "_at_parcel_slash_namer-default"; packageName = "@parcel/namer-default"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/namer-default/-/namer-default-2.4.0.tgz"; - sha512 = "DfL+Gx0Tyoa0vsgRpNybXjuKbWNw8MTVpy7Dk7r0btfVsn1jy3SSwlxH4USf76gb00/pK6XBsMp9zn7Z8ePREQ=="; + url = "https://registry.npmjs.org/@parcel/namer-default/-/namer-default-2.4.1.tgz"; + sha512 = "a/Xulfia7JJP6Cw/D6Wq5xX6IAKVKMRPEYtU2wB8vKuwC/et6kXi+0bFVeCLnTjDzVtsjDdyOEwfRC4yiEy3BA=="; }; }; - "@parcel/node-resolver-core-2.4.0" = { + "@parcel/node-resolver-core-2.4.1" = { name = "_at_parcel_slash_node-resolver-core"; packageName = "@parcel/node-resolver-core"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/node-resolver-core/-/node-resolver-core-2.4.0.tgz"; - sha512 = "qiN97XcfW2fYNoYuVEhNKuVPEJKj5ONQl0fqr/NEMmYvWz3bVKjgiXNJwW558elZvCI08gEbdxgyThpuFFQeKQ=="; + url = "https://registry.npmjs.org/@parcel/node-resolver-core/-/node-resolver-core-2.4.1.tgz"; + sha512 = "CvCADj3l4o5USqz/ZCaqbK8gdAQK63q94oSa0KnP6hrcDI/gDyf5Bk4+3cD4kSI+ByuN6aFLAYBS2nHBh5O/MQ=="; }; }; - "@parcel/optimizer-css-2.4.0" = { + "@parcel/optimizer-css-2.4.1" = { name = "_at_parcel_slash_optimizer-css"; packageName = "@parcel/optimizer-css"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/optimizer-css/-/optimizer-css-2.4.0.tgz"; - sha512 = "LQmjjOGsHEHKTJqfHR2eJyhWhLXvHP0uOAU+qopBttYYlB2J/vMK9RYAye5cyAb8bQmV8wAdi2mq9rnt7FMSPw=="; + url = "https://registry.npmjs.org/@parcel/optimizer-css/-/optimizer-css-2.4.1.tgz"; + sha512 = "+1CxZ43aoAUF8Hj2wLPK4d+TzdJlgYidXJ19Qwlh6XdQs8OeFGBAzIsUBFSr8+XCugXmnTkjYK94nX04Z2FhtQ=="; }; }; - "@parcel/optimizer-htmlnano-2.4.0" = { + "@parcel/optimizer-htmlnano-2.4.1" = { name = "_at_parcel_slash_optimizer-htmlnano"; packageName = "@parcel/optimizer-htmlnano"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/optimizer-htmlnano/-/optimizer-htmlnano-2.4.0.tgz"; - sha512 = "02EbeElLgNOAYhGU7fFBahpoKrX5G/yzahpaoKB/ypScM4roSsAMBkGcluboR5L10YRsvfvJEpxvfGyDA3tPmw=="; + url = "https://registry.npmjs.org/@parcel/optimizer-htmlnano/-/optimizer-htmlnano-2.4.1.tgz"; + sha512 = "JkykHZcBS92iggT7GHuJJd+MDIc7BMAG0xxTJIY9KzzcxGNYsY8P3LedGVTL0/X8tkdlYQSGNLkTCntP0/62cw=="; }; }; - "@parcel/optimizer-image-2.4.0" = { + "@parcel/optimizer-image-2.4.1" = { name = "_at_parcel_slash_optimizer-image"; packageName = "@parcel/optimizer-image"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/optimizer-image/-/optimizer-image-2.4.0.tgz"; - sha512 = "Q4onaBMPkDyYxPzrb8ytBUftaQZFepj9dSUgq+ETuHDzkgia0tomDPfCqrw6ld0qvYyANzXTP5+LC4g0i5yh+A=="; + url = "https://registry.npmjs.org/@parcel/optimizer-image/-/optimizer-image-2.4.1.tgz"; + sha512 = "cv03Ta1FWuF75o9DJLuk1eYk1ULSdSbSkriQUAzc4InKW1bJH6gJasMZSTBsAg2Oz1TWqiDyiy5D/6i/UPoBJg=="; }; }; - "@parcel/optimizer-svgo-2.4.0" = { + "@parcel/optimizer-svgo-2.4.1" = { name = "_at_parcel_slash_optimizer-svgo"; packageName = "@parcel/optimizer-svgo"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/optimizer-svgo/-/optimizer-svgo-2.4.0.tgz"; - sha512 = "mwvGuCqVuNCAuMlp2maFE/Uz9ud1T1AuX0f6cCRczjFYiwZuIr/0iDdfFzSziOkVo1MRAGAZNa0dRR/UzCZtVg=="; + url = "https://registry.npmjs.org/@parcel/optimizer-svgo/-/optimizer-svgo-2.4.1.tgz"; + sha512 = "sOiofvHXjwJDu0NnTO8gGKDv0BztykVczfJdcedYmj207uU71JG1uODZvhyY4uiw1eRqmZnIXELZIftvYnZnDA=="; }; }; - "@parcel/optimizer-terser-2.4.0" = { + "@parcel/optimizer-terser-2.4.1" = { name = "_at_parcel_slash_optimizer-terser"; packageName = "@parcel/optimizer-terser"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/optimizer-terser/-/optimizer-terser-2.4.0.tgz"; - sha512 = "PdCgRgXNSY6R1HTV9VG2MHp1CgUbP5pslCyxvlbUmQAS6bvEpMOpn3qSd+U28o7mGE/qXIhvpDyi808sb+MEcg=="; + url = "https://registry.npmjs.org/@parcel/optimizer-terser/-/optimizer-terser-2.4.1.tgz"; + sha512 = "naRdp6gApWHUI1FCBZEJs9NzNngjZx8hRhIHeQtTxWpc2Mu8cVzxbVHNAwUj10nW3iOYmxyj4wleOArl8xpVCQ=="; }; }; - "@parcel/package-manager-2.4.0" = { + "@parcel/package-manager-2.4.1" = { name = "_at_parcel_slash_package-manager"; packageName = "@parcel/package-manager"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/package-manager/-/package-manager-2.4.0.tgz"; - sha512 = "21AEfAQnZbHRVViTn7QsPGe/CiGaFaDUH5f0m8qVC7fDjjhC8LM8blkqU72goaO9FbaLMadtEf2txhzly7h/bg=="; + url = "https://registry.npmjs.org/@parcel/package-manager/-/package-manager-2.4.1.tgz"; + sha512 = "JUUinm4U3hy4epHl9A389xb+BGiFR8n9+qw3Z4UDfS1te43sh8+0virBGcnai/G7mlr5/vHW+l9xulc7WQaY6w=="; }; }; - "@parcel/packager-css-2.4.0" = { + "@parcel/packager-css-2.4.1" = { name = "_at_parcel_slash_packager-css"; packageName = "@parcel/packager-css"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/packager-css/-/packager-css-2.4.0.tgz"; - sha512 = "LmPDWzkXi60Oy3WrPF0jPKQxeTwW5hmNBgrcXJMHSu+VcXdaQZNzNxVzhnZkJUbDd2z9vAUrUGzdLh8TquC8iQ=="; + url = "https://registry.npmjs.org/@parcel/packager-css/-/packager-css-2.4.1.tgz"; + sha512 = "COx6RvHbpZ3DzuAgB/XvLLR/luxn9kYhqdFrnmIlYBh4B9atfXyr4rKDlWj1W/r2R72R6LHM35KhkwUATmrC/w=="; }; }; - "@parcel/packager-html-2.4.0" = { + "@parcel/packager-html-2.4.1" = { name = "_at_parcel_slash_packager-html"; packageName = "@parcel/packager-html"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/packager-html/-/packager-html-2.4.0.tgz"; - sha512 = "OPMIQ1uHYQFpRPrsmm5BqONbAyzjlhVsPRAzHlcBrglG4BTUeOR2ow4MUKblHmVVqc3QHnfZG4nHHtFkeuNQ3A=="; + url = "https://registry.npmjs.org/@parcel/packager-html/-/packager-html-2.4.1.tgz"; + sha512 = "F5/PmWKoz8JhToufnp3u+NQ4LUoVkabzIJYHyQrM858XVmNbMInRfiTYxtgCBa2ARm2BTPhToh7N01OEyFCOhA=="; }; }; - "@parcel/packager-js-2.4.0" = { + "@parcel/packager-js-2.4.1" = { name = "_at_parcel_slash_packager-js"; packageName = "@parcel/packager-js"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/packager-js/-/packager-js-2.4.0.tgz"; - sha512 = "cfslIH43CJFgBS9PmdFaSnbInMCoejsFCnxtJa2GeUpjCXSfelPRp0OPx7m8n+fap4czftPhoxBALeDUElOZGQ=="; + url = "https://registry.npmjs.org/@parcel/packager-js/-/packager-js-2.4.1.tgz"; + sha512 = "broWBUQisJLF5ThFtnl/asypuLMlMBwFPBTr8Ho9FYlL6W4wUzIymu7eOcuDljstmbD6luNVGMdCBYqt3IhHmw=="; }; }; - "@parcel/packager-raw-2.4.0" = { + "@parcel/packager-raw-2.4.1" = { name = "_at_parcel_slash_packager-raw"; packageName = "@parcel/packager-raw"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/packager-raw/-/packager-raw-2.4.0.tgz"; - sha512 = "SFfw7chMFITj3J26ZVDJxbO6xwtPFcFBm1js8cwWMgzwuwS6CEc43k5+Abj+2/EqHU9kNJU9eWV5vT6lQwf3HA=="; + url = "https://registry.npmjs.org/@parcel/packager-raw/-/packager-raw-2.4.1.tgz"; + sha512 = "4lCY3TjiYaZyRIqshNF21i6XkQ5PJyr+ahhK4O2IymuYuD8/wGH2amTZqKPpGLuiF3j1HskRRUNv1ekpvExJ8w=="; }; }; - "@parcel/packager-svg-2.4.0" = { + "@parcel/packager-svg-2.4.1" = { name = "_at_parcel_slash_packager-svg"; packageName = "@parcel/packager-svg"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/packager-svg/-/packager-svg-2.4.0.tgz"; - sha512 = "DwkgrdLEQop+tu9Ocr1ZaadmpsbSgVruJPr80xq1LaB0Jiwrl9HjHStMNH1laNFueK1yydxhnj9C2JQfW28qag=="; + url = "https://registry.npmjs.org/@parcel/packager-svg/-/packager-svg-2.4.1.tgz"; + sha512 = "V7GW/dgJPqXHReTzwpLcNEdyT5WWveYOW1MfxvKgOOK1ENk6oPgXL0FUdm5IHzqlK1bbwF5hzSQs2vaJMv7rPg=="; }; }; - "@parcel/plugin-2.4.0" = { + "@parcel/plugin-2.4.1" = { name = "_at_parcel_slash_plugin"; packageName = "@parcel/plugin"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/plugin/-/plugin-2.4.0.tgz"; - sha512 = "ehFUAL2+h27Lv+cYbbXA74UGy8C+eglUjcpvASOOjVRFuD6poMAMliKkKAXBhQaFx/Rvhz27A2PIPv9lL2i4UQ=="; + url = "https://registry.npmjs.org/@parcel/plugin/-/plugin-2.4.1.tgz"; + sha512 = "EJzNhwNWYuSpIPRlG1U2hKcovq/RsVie4Os1z51/e2dcCto/uAoJOMoWYYsCxtjkJ7BjFYyQ7fcZRKM9DEr6gQ=="; }; }; - "@parcel/reporter-cli-2.4.0" = { + "@parcel/reporter-cli-2.4.1" = { name = "_at_parcel_slash_reporter-cli"; packageName = "@parcel/reporter-cli"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/reporter-cli/-/reporter-cli-2.4.0.tgz"; - sha512 = "Q9bIFMaGvQgypCDxdMEKOwrJzIHAXScKkuFsqTHnUL6mmH3Mo2CoEGAq/wpMXuPhXRn1dPJcHgTNDwZ2fSzz0A=="; + url = "https://registry.npmjs.org/@parcel/reporter-cli/-/reporter-cli-2.4.1.tgz"; + sha512 = "99v/dSQ6wYmfpjmBxbsuBoxPWu9bm7PRxDDJxiVapbbym50bWYwVmMEHj6mYnK151YbMssV0garrSs1yYQEvqw=="; }; }; - "@parcel/reporter-dev-server-2.4.0" = { + "@parcel/reporter-dev-server-2.4.1" = { name = "_at_parcel_slash_reporter-dev-server"; packageName = "@parcel/reporter-dev-server"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/reporter-dev-server/-/reporter-dev-server-2.4.0.tgz"; - sha512 = "24h++wevs7XYuX4dKa4PUfLSstvn3g7udajFv6CeQoME+dR25RL/wH/2LUbhV5ilgXXab76rWIndSqp78xHxPA=="; + url = "https://registry.npmjs.org/@parcel/reporter-dev-server/-/reporter-dev-server-2.4.1.tgz"; + sha512 = "tRz1LHiudDhujBC3kJ3Qm0Wnbo3p3SpE6fjyCFRhdv2PJnEufNTTwzEUoa7lYZACwFVQUtrh6F7nMXFw6ynrsQ=="; }; }; - "@parcel/resolver-default-2.4.0" = { + "@parcel/resolver-default-2.4.1" = { name = "_at_parcel_slash_resolver-default"; packageName = "@parcel/resolver-default"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/resolver-default/-/resolver-default-2.4.0.tgz"; - sha512 = "K7pIIFmGm1hjg/7Mzkg99i8tfCClKfBUTuc2R5j8cdr2n0mCAi4/f2mFf5svLrb5XZrnDgoQ05tHKklLEfUDUw=="; + url = "https://registry.npmjs.org/@parcel/resolver-default/-/resolver-default-2.4.1.tgz"; + sha512 = "iJRt1+7lk0n7+wb+S/tVyiObbaiYP1YQGKRsTE8y4Kgp4/OPukdUHGFJwzbojWa0HnyoXm3zEgelVz7cHl47fQ=="; }; }; - "@parcel/runtime-browser-hmr-2.4.0" = { + "@parcel/runtime-browser-hmr-2.4.1" = { name = "_at_parcel_slash_runtime-browser-hmr"; packageName = "@parcel/runtime-browser-hmr"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/runtime-browser-hmr/-/runtime-browser-hmr-2.4.0.tgz"; - sha512 = "swPFtvxGoCA9LEjU/pHPNjxG1l0fte8447zXwRN/AaYrtjNu9Ww117OSKCyvCnE143E79jZOFStodTQGFuH+9A=="; + url = "https://registry.npmjs.org/@parcel/runtime-browser-hmr/-/runtime-browser-hmr-2.4.1.tgz"; + sha512 = "INsr78Kn0OuwMdXHCzw7v6l3Gf/UBTYtX7N7JNDOIBEFFkuZQiFWyAOI2P/DvMm8qeqcsrKliBO5Xty/a2Ivaw=="; }; }; - "@parcel/runtime-js-2.4.0" = { + "@parcel/runtime-js-2.4.1" = { name = "_at_parcel_slash_runtime-js"; packageName = "@parcel/runtime-js"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/runtime-js/-/runtime-js-2.4.0.tgz"; - sha512 = "67OOvmkDdtmgzZVP/EyAzoXhJ/Ug3LUVUt7idg9arun5rdJptqEb3Um3wmH0zjcNa9jMbJt7Kl5x1wA8dJgPYg=="; + url = "https://registry.npmjs.org/@parcel/runtime-js/-/runtime-js-2.4.1.tgz"; + sha512 = "/EXwRpo+GPvWgN5yD0hjjt84Gm6QWp757dqOOzTG5R2rm1WU+g1a+zJJB1zXkxhu9lleQs44D1jEffzhh2Voyw=="; }; }; - "@parcel/runtime-react-refresh-2.4.0" = { + "@parcel/runtime-react-refresh-2.4.1" = { name = "_at_parcel_slash_runtime-react-refresh"; packageName = "@parcel/runtime-react-refresh"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/runtime-react-refresh/-/runtime-react-refresh-2.4.0.tgz"; - sha512 = "flnr+bf06lMZPbXZZLLaFNrPHvYpfuXTVovEghyUW46qLVpaHj33dpsU/LqZplIuHgBp2ibgrKhr/hY9ell68w=="; + url = "https://registry.npmjs.org/@parcel/runtime-react-refresh/-/runtime-react-refresh-2.4.1.tgz"; + sha512 = "a4GBQ/fO7Mklh1M1G2JVpJBPbZD7YXUPAzh9Y4vpCf0ouTHBRMc8ew4CyKPJIrrTly5P42tFWnD3P4FVNKwHOQ=="; }; }; - "@parcel/runtime-service-worker-2.4.0" = { + "@parcel/runtime-service-worker-2.4.1" = { name = "_at_parcel_slash_runtime-service-worker"; packageName = "@parcel/runtime-service-worker"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/runtime-service-worker/-/runtime-service-worker-2.4.0.tgz"; - sha512 = "RgM5QUqW22WzstW03CtV+Oih8VGVuwsf94Cc4hLouU2EAD0NUJgATWbFocZVTZIBTKELAWh2gjpSQDdnL4Ur+A=="; + url = "https://registry.npmjs.org/@parcel/runtime-service-worker/-/runtime-service-worker-2.4.1.tgz"; + sha512 = "WtMKSiyQ0kF78rBw0XIx7n65mMb+6GBx+5m49r1aVZzeZEOSynpjJzJvqo7rxVmA7qTDkD2bko7BH41iScsEaw=="; }; }; "@parcel/source-map-2.0.2" = { @@ -7267,112 +7294,112 @@ let sha512 = "NnUrPYLpYB6qyx2v6bcRPn/gVigmGG6M6xL8wIg/i0dP1GLkuY1nf+Hqdf63FzPTqqT7K3k6eE5yHPQVMO5jcA=="; }; }; - "@parcel/transformer-babel-2.4.0" = { + "@parcel/transformer-babel-2.4.1" = { name = "_at_parcel_slash_transformer-babel"; packageName = "@parcel/transformer-babel"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/transformer-babel/-/transformer-babel-2.4.0.tgz"; - sha512 = "iWDa7KzJTMP3HNmrYxiYq/S6redk2qminx/9MwmKIN9jzm8mgts2Lj9lOg/t66YaDGky6JAvw4DhB2qW4ni6yQ=="; + url = "https://registry.npmjs.org/@parcel/transformer-babel/-/transformer-babel-2.4.1.tgz"; + sha512 = "S+L14Fdr+S/+hqOi2nqnhuJvBbEJW24KyQeLmdaoMkt7DQLy5zENjGb9U2WYgB0Q96au0vX8NgB6jOnONecnpg=="; }; }; - "@parcel/transformer-css-2.4.0" = { + "@parcel/transformer-css-2.4.1" = { name = "_at_parcel_slash_transformer-css"; packageName = "@parcel/transformer-css"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/transformer-css/-/transformer-css-2.4.0.tgz"; - sha512 = "D2u48LuiQsQvbknABE0wVKFp9r6yCgWrHKEP1J6EJ31c49nXGXDHrpHJJwqq9BvAs/124eBI5mSsehTJyFEMwg=="; + url = "https://registry.npmjs.org/@parcel/transformer-css/-/transformer-css-2.4.1.tgz"; + sha512 = "+6wCc0eEg4ez96Mucp/RjYKyRVN+7HPWPH7axalsQdp88t7wawWoqI2nd2mEw2PxpyuejIsk0ixLzYZ5opZivw=="; }; }; - "@parcel/transformer-html-2.4.0" = { + "@parcel/transformer-html-2.4.1" = { name = "_at_parcel_slash_transformer-html"; packageName = "@parcel/transformer-html"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/transformer-html/-/transformer-html-2.4.0.tgz"; - sha512 = "2/8X/o5QaCNVPr4wkxLCUub7v/YVvVN2L5yCEcTatNeFhNg/2iz7P2ekfqOaoDCHWZEOBT1VTwPbdBt+TMM71Q=="; + url = "https://registry.npmjs.org/@parcel/transformer-html/-/transformer-html-2.4.1.tgz"; + sha512 = "jyteTWuBA+f5wXn1RmAq3gOnB3yy41c748vARU9uNEXkLB4a7R106w4e5dlTG1DJfk+Tw1okSe1p2BeHoZntAw=="; }; }; - "@parcel/transformer-image-2.4.0" = { + "@parcel/transformer-image-2.4.1" = { name = "_at_parcel_slash_transformer-image"; packageName = "@parcel/transformer-image"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/transformer-image/-/transformer-image-2.4.0.tgz"; - sha512 = "JZkQvGGoGiD0AVKLIbAYYUWxepMmUaWZ4XXx71MmS/kA7cUDwTZ0CXq63YnSY1m+DX+ClTuTN8mBlwe2dkcGbA=="; + url = "https://registry.npmjs.org/@parcel/transformer-image/-/transformer-image-2.4.1.tgz"; + sha512 = "pOfgPVe13lMTKdzydjXXNl4bojVMmuQmwm44OZ9cmpwOD3phkZzCtrxgySoV1eRBCOipdQg1O6GGI3za1KNdvw=="; }; }; - "@parcel/transformer-js-2.4.0" = { + "@parcel/transformer-js-2.4.1" = { name = "_at_parcel_slash_transformer-js"; packageName = "@parcel/transformer-js"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/transformer-js/-/transformer-js-2.4.0.tgz"; - sha512 = "eeLHFwv3jT3GmIxpLC7B8EXExGK0MFaK91HXljOMh6l8a+GlQYw27MSFQVtoXr0Olx9Uq2uvjXP1+zSsq3LQUQ=="; + url = "https://registry.npmjs.org/@parcel/transformer-js/-/transformer-js-2.4.1.tgz"; + sha512 = "39Y9RUuDk5dc09Z3Pgj8snQd5E8926IqOowdTLKNJr7EcmkwHdinbpI4EqgKnisOwX4NSzxUti1I2DHsP1QZHw=="; }; }; - "@parcel/transformer-json-2.4.0" = { + "@parcel/transformer-json-2.4.1" = { name = "_at_parcel_slash_transformer-json"; packageName = "@parcel/transformer-json"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/transformer-json/-/transformer-json-2.4.0.tgz"; - sha512 = "3nR+d39mbURoXIypDfVCaxpwL65qMV+h8SLD78up2uhaRGklHQfN7GuemR7L+mcVAgNrmwVvZHhyNjdgYwWqqg=="; + url = "https://registry.npmjs.org/@parcel/transformer-json/-/transformer-json-2.4.1.tgz"; + sha512 = "bAwKyWb2/Wm6GS7OpQg1lWgcq+VDBXTKy5oFGX3edbpZFsrb59Ln1v+1jI888zRq4ehDBybhx8WTxPKTJnU+jA=="; }; }; - "@parcel/transformer-postcss-2.4.0" = { + "@parcel/transformer-postcss-2.4.1" = { name = "_at_parcel_slash_transformer-postcss"; packageName = "@parcel/transformer-postcss"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/transformer-postcss/-/transformer-postcss-2.4.0.tgz"; - sha512 = "ijIa2x+dbKnJhr7zO5WlXkvuj832fDoGksMBk2DX3u2WMrbh2rqVWPpGFsDhESx7EAy38nUoV/5KUdrNqUmCEA=="; + url = "https://registry.npmjs.org/@parcel/transformer-postcss/-/transformer-postcss-2.4.1.tgz"; + sha512 = "I+jauarY5RlDUcd0zb9CC4GlpA7/+FqNSqCaGrM73aoszh6FNs4GiwD5tgy0pKOEASBZ0fBPmHEG1OBiVBXRGg=="; }; }; - "@parcel/transformer-posthtml-2.4.0" = { + "@parcel/transformer-posthtml-2.4.1" = { name = "_at_parcel_slash_transformer-posthtml"; packageName = "@parcel/transformer-posthtml"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/transformer-posthtml/-/transformer-posthtml-2.4.0.tgz"; - sha512 = "xoL3AzgtVeRRAo6bh0AHAYm9bt1jZ+HiH86/7oARj/uJs6Wd8kXK/DZf6fH+F87hj4e7bnjmDDc0GPVK0lPz1w=="; + url = "https://registry.npmjs.org/@parcel/transformer-posthtml/-/transformer-posthtml-2.4.1.tgz"; + sha512 = "DNtS41Sew940vnnqlFS0QK3ZbjQqCGT8JXkvwFojIrdH+3BW/n/9Hrtxj+X/bxrlwZlsRiqiRJ7crXp7TVhx2g=="; }; }; - "@parcel/transformer-raw-2.4.0" = { + "@parcel/transformer-raw-2.4.1" = { name = "_at_parcel_slash_transformer-raw"; packageName = "@parcel/transformer-raw"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/transformer-raw/-/transformer-raw-2.4.0.tgz"; - sha512 = "fciFbNrzj0kLlDgr6OsI0PUv414rVygDWAsgbCCq4BexDkuemMs9f9FjMctx9B2VZlctE8dTT4RGkuQumTIpUg=="; + url = "https://registry.npmjs.org/@parcel/transformer-raw/-/transformer-raw-2.4.1.tgz"; + sha512 = "0PzdWJSGSTQ522aohymHEnq4GABy0mHSs+LkPZyMfNmX9ZAIyy6XuFJ9dz8nUmP4Nhn8qDvbRjoAYXR3XsGDGQ=="; }; }; - "@parcel/transformer-react-refresh-wrap-2.4.0" = { + "@parcel/transformer-react-refresh-wrap-2.4.1" = { name = "_at_parcel_slash_transformer-react-refresh-wrap"; packageName = "@parcel/transformer-react-refresh-wrap"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/transformer-react-refresh-wrap/-/transformer-react-refresh-wrap-2.4.0.tgz"; - sha512 = "9+f6sGOWkf0jyUQ1CuFWk+04Mq3KTOCU9kRiwCHX1YdUCv5uki6r9XUSpqiYodrV+L6w9CCwLvGMLCDHxtCxMg=="; + url = "https://registry.npmjs.org/@parcel/transformer-react-refresh-wrap/-/transformer-react-refresh-wrap-2.4.1.tgz"; + sha512 = "zF6pzj/BwSiD1jA/BHDCEJnKSIDekjblU+OWp1WpSjA1uYkJORuZ5knLcq6mXOQ8M2NCbOXosc1ru8071i8sYA=="; }; }; - "@parcel/transformer-svg-2.4.0" = { + "@parcel/transformer-svg-2.4.1" = { name = "_at_parcel_slash_transformer-svg"; packageName = "@parcel/transformer-svg"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/transformer-svg/-/transformer-svg-2.4.0.tgz"; - sha512 = "D+yzVtSxtQML3d26fd/g4E/xYW68+OMbMUVLXORtoYMU42fnXQkJP6jGOdqy8Td+WORNY7EwVtQnESLwhBmolw=="; + url = "https://registry.npmjs.org/@parcel/transformer-svg/-/transformer-svg-2.4.1.tgz"; + sha512 = "E0XdXsZOnP7g9zvJskfvXeIHx9pKjPHtLKo/txmpjW1eXOmsFcRMVy6l4pFh+kBciAgiZOI6o1pVHt+Uf7ia/g=="; }; }; - "@parcel/types-2.4.0" = { + "@parcel/types-2.4.1" = { name = "_at_parcel_slash_types"; packageName = "@parcel/types"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/types/-/types-2.4.0.tgz"; - sha512 = "nysGIbBEnp+7R+tKTysdcTFOZDTCodsiXFeAhYQa5bhiOnG1l9gzhxQnE2OsdsgvMm40IOsgKprqvM/DbdLfnQ=="; + url = "https://registry.npmjs.org/@parcel/types/-/types-2.4.1.tgz"; + sha512 = "YqkiyGS8oiD89Z2lJP7sbjn0F0wlSJMAuqgqf7obeKj0zmZJS7n2xK0uUEuIlUO+Cbqgl0kCGsUSjuT8xcEqjg=="; }; }; "@parcel/utils-1.11.0" = { @@ -7384,13 +7411,13 @@ let sha512 = "cA3p4jTlaMeOtAKR/6AadanOPvKeg8VwgnHhOyfi0yClD0TZS/hi9xu12w4EzA/8NtHu0g6o4RDfcNjqN8l1AQ=="; }; }; - "@parcel/utils-2.4.0" = { + "@parcel/utils-2.4.1" = { name = "_at_parcel_slash_utils"; packageName = "@parcel/utils"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/utils/-/utils-2.4.0.tgz"; - sha512 = "sdNo+mZqDZT8LJYB6WWRKa4wFVZcK6Zb5Jh6Du76QvXXwHbPIQNZgJBb6gd/Rbk4GLOp2tW7MnBfq6zP9E9E2g=="; + url = "https://registry.npmjs.org/@parcel/utils/-/utils-2.4.1.tgz"; + sha512 = "hmbrnPtFAfMT6s9FMMIVlIzCwEFX/+byB67GoJmSCAMRmj6RMu4a6xKlv2FdzkTKJV2ucg8vxAcua0MQ/q8rkQ=="; }; }; "@parcel/watcher-1.12.1" = { @@ -7420,13 +7447,13 @@ let sha512 = "USSjRAAQYsZFlv43FUPdD+jEGML5/8oLF0rUzPQTtK4q9kvaXr49F5ZplyLz5lox78cLZ0TxN2bIDQ1xhOkulQ=="; }; }; - "@parcel/workers-2.4.0" = { + "@parcel/workers-2.4.1" = { name = "_at_parcel_slash_workers"; packageName = "@parcel/workers"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/workers/-/workers-2.4.0.tgz"; - sha512 = "eSFyvEoXXPgFzQfKIlpkUjpHfIbezUCRFTPKyJAKCxvU5DSXOpb1kz5vDESWQ4qTZXKnrKvxS1PPWN6bam9z0g=="; + url = "https://registry.npmjs.org/@parcel/workers/-/workers-2.4.1.tgz"; + sha512 = "EYujbJOblFqIt2NGQ+baIYTuavJqbhy84IfZ3j0jmACeKO5Ew1EHXZyl9LJgWHKaIPZsnvnbxw2mDOF05K65xQ=="; }; }; "@peculiar/asn1-schema-2.1.0" = { @@ -7501,22 +7528,22 @@ let sha512 = "DiIjtous4XPuR2deTctD3/RVZy/vRzVYBgYYvHV313MmTfkbVP60qLH5txrT3/bYNvnb0poNDelLS6U0kqlvHA=="; }; }; - "@prisma/engines-3.11.1-1.1a2506facaf1a4727b7c26850735e88ec779dee9" = { + "@prisma/engines-3.12.0-37.22b822189f46ef0dc5c5b503368d1bee01213980" = { name = "_at_prisma_slash_engines"; packageName = "@prisma/engines"; - version = "3.11.1-1.1a2506facaf1a4727b7c26850735e88ec779dee9"; + version = "3.12.0-37.22b822189f46ef0dc5c5b503368d1bee01213980"; src = fetchurl { - url = "https://registry.npmjs.org/@prisma/engines/-/engines-3.11.1-1.1a2506facaf1a4727b7c26850735e88ec779dee9.tgz"; - sha512 = "MILbsGnvmnhCbFGa2/iSnsyGyazU3afzD7ldjCIeLIGKkNBMSZgA2IvpYsAXl+6qFHKGrS3B2otKfV31dwMSQw=="; + url = "https://registry.npmjs.org/@prisma/engines/-/engines-3.12.0-37.22b822189f46ef0dc5c5b503368d1bee01213980.tgz"; + sha512 = "zULjkN8yhzS7B3yeEz4aIym4E2w1ChrV12i14pht3ePFufvsAvBSoZ+tuXMvfSoNTgBS5E4bolRzLbMmbwkkMQ=="; }; }; - "@prisma/prisma-fmt-wasm-3.11.0-48.b371888aaf8f51357c7457d836b86d12da91658b" = { + "@prisma/prisma-fmt-wasm-3.12.0-37.22b822189f46ef0dc5c5b503368d1bee01213980" = { name = "_at_prisma_slash_prisma-fmt-wasm"; packageName = "@prisma/prisma-fmt-wasm"; - version = "3.11.0-48.b371888aaf8f51357c7457d836b86d12da91658b"; + version = "3.12.0-37.22b822189f46ef0dc5c5b503368d1bee01213980"; src = fetchurl { - url = "https://registry.npmjs.org/@prisma/prisma-fmt-wasm/-/prisma-fmt-wasm-3.11.0-48.b371888aaf8f51357c7457d836b86d12da91658b.tgz"; - sha512 = "bp8ksqxPmTIuAF13ujxtyUnbbeQl5H3EVLUDjswSARK/8dwQ6ORQC/Ho1wv63joyiuZstwl7K3FgqIY1OB1lcA=="; + url = "https://registry.npmjs.org/@prisma/prisma-fmt-wasm/-/prisma-fmt-wasm-3.12.0-37.22b822189f46ef0dc5c5b503368d1bee01213980.tgz"; + sha512 = "9L+jHXt1zFcnhhcxa+oUBI9r0qh+fNFtDKxndj0C4pnAnGGNevvAo4GZNqWICa8BJbNgiV/XacTMea+98e1Rhw=="; }; }; "@protobufjs/aspromise-1.1.2" = { @@ -7690,13 +7717,13 @@ let sha512 = "y9qNj0//tZtWB2jfXNK3BX18BSBp9zNR7KE7lMysVHwbZtY392OJCjm6Rb/h4UHH2r1AqjNEHFD6bRn+DqU9Mw=="; }; }; - "@redocly/openapi-core-1.0.0-beta.90" = { + "@redocly/openapi-core-1.0.0-beta.93" = { name = "_at_redocly_slash_openapi-core"; packageName = "@redocly/openapi-core"; - version = "1.0.0-beta.90"; + version = "1.0.0-beta.93"; src = fetchurl { - url = "https://registry.npmjs.org/@redocly/openapi-core/-/openapi-core-1.0.0-beta.90.tgz"; - sha512 = "MvkME+AWCBexyJyNp/sVFRUBjxCSk5CQ+CAozkwm0t/HusXp9G+kH26+e9giD6Fms129smr1qp3pCAUbwJZzZA=="; + url = "https://registry.npmjs.org/@redocly/openapi-core/-/openapi-core-1.0.0-beta.93.tgz"; + sha512 = "xQj7UnjPj3mKtkyRrm+bjzEoyo0CVNjGP4pV6BzQ0vgKf0Jqq7apFC703psyBH+JscYr7NKK1hPQU76ylhFDdg=="; }; }; "@redocly/react-dropdown-aria-2.0.12" = { @@ -7753,13 +7780,13 @@ let sha512 = "c/qwwcHyafOQuVQJj0IlBjf5yYgBI7YPJ77k4fOJYesb41jio65eaJODRUmfYKhTOFBrIZ66kgvGPlNbjuoRdQ=="; }; }; - "@schematics/angular-13.3.0" = { + "@schematics/angular-13.3.1" = { name = "_at_schematics_slash_angular"; packageName = "@schematics/angular"; - version = "13.3.0"; + version = "13.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/@schematics/angular/-/angular-13.3.0.tgz"; - sha512 = "WND6DXWf0ZFefqlC2hUm1FzHDonRfGpDEPWVhVulhYkB7IUUaXuCz8K41HAScyJ3bxUngs2Lx9+4omikc05fxA=="; + url = "https://registry.npmjs.org/@schematics/angular/-/angular-13.3.1.tgz"; + sha512 = "+lrK/d1eJsAK6d6E9TDeg3Vc71bDy1KsE8M+lEINdX9Wax22mAz4pw20X9RSCw5RHgn+XcNUuMsgRJAwVhDNpg=="; }; }; "@segment/loosely-validate-event-2.0.0" = { @@ -7780,13 +7807,13 @@ let sha512 = "J3jpy002TyBjd4N/p6s+s90eX42H2eRhK3SbsZuvTDv977/E8p2U3zikdiehyJja66do7FlxLomZLPlvl2/xaA=="; }; }; - "@serverless/dashboard-plugin-6.2.0" = { + "@serverless/dashboard-plugin-6.2.1" = { name = "_at_serverless_slash_dashboard-plugin"; packageName = "@serverless/dashboard-plugin"; - version = "6.2.0"; + version = "6.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/@serverless/dashboard-plugin/-/dashboard-plugin-6.2.0.tgz"; - sha512 = "3vapxoW1hI8OBxLRJq+J9vt3tdckZObhYWfwRPDlqPs6FOEoHuJieAzz07e7YdWt7fO/LkQx6rlgCXlGamLnjw=="; + url = "https://registry.npmjs.org/@serverless/dashboard-plugin/-/dashboard-plugin-6.2.1.tgz"; + sha512 = "ZvkDZsakoVluEbaQsskY1fW8puVjKjfjkMFAuXJnAPflGy0LCgT1ETGFEqCrAJwUJhgenPVxpZalO8J/22nzKw=="; }; }; "@serverless/event-mocks-1.1.1" = { @@ -8599,13 +8626,13 @@ let sha512 = "SRXjM+tfsSlA9VuG8hGO2nft2p8zjXCK1VcC6N4NXbBbYbSia9kzCChYQajIjzIqOOOuh5Ock6MmV2oux4jDZQ=="; }; }; - "@types/concat-stream-1.6.1" = { + "@types/concat-stream-2.0.0" = { name = "_at_types_slash_concat-stream"; packageName = "@types/concat-stream"; - version = "1.6.1"; + version = "2.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/@types/concat-stream/-/concat-stream-1.6.1.tgz"; - sha512 = "eHE4cQPoj6ngxBZMvVf6Hw7Mh4jMW4U9lpGmS5GBPB9RYxlFg+CHaVN7ErNY4W9XfLIEn20b4VDYaIrbq0q4uA=="; + url = "https://registry.npmjs.org/@types/concat-stream/-/concat-stream-2.0.0.tgz"; + sha512 = "t3YCerNM7NTVjLuICZo5gYAXYoDvpuuTceCcFQWcDQz26kxUR5uIWolxbIR5jRNIXpMqhOpW/b8imCR1LEmuJw=="; }; }; "@types/connect-3.4.35" = { @@ -8959,13 +8986,13 @@ let sha512 = "rjaYQ9b9y/VFGOpqBEXRavc3jh0a+e6evAbI31tMda8VlPaSy0AZJfXsvmIe3wklc7W6C3zCSfleuMXR7NOyXw=="; }; }; - "@types/inquirer-8.2.0" = { + "@types/inquirer-8.2.1" = { name = "_at_types_slash_inquirer"; packageName = "@types/inquirer"; - version = "8.2.0"; + version = "8.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/@types/inquirer/-/inquirer-8.2.0.tgz"; - sha512 = "BNoMetRf3gmkpAlV5we+kxyZTle7YibdOntIZbU5pyIfMdcwy784KfeZDAcuyMznkh5OLa17RVXZOGA5LTlkgQ=="; + url = "https://registry.npmjs.org/@types/inquirer/-/inquirer-8.2.1.tgz"; + sha512 = "wKW3SKIUMmltbykg4I5JzCVzUhkuD9trD6efAmYgN2MrSntY0SMRQzEnD3mkyJ/rv9NLbTC7g3hKKE86YwEDLw=="; }; }; "@types/is-empty-1.2.1" = { @@ -9067,6 +9094,15 @@ let sha512 = "k4ih8ayQ65e26vhCxeMTKtZ808DzC0RFQ4unBvPEy9bcFhS4aPm3oXgWWZNmZ4u+H2WzHQDCNrRC5iNX+afiZw=="; }; }; + "@types/json-buffer-3.0.0" = { + name = "_at_types_slash_json-buffer"; + packageName = "@types/json-buffer"; + version = "3.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@types/json-buffer/-/json-buffer-3.0.0.tgz"; + sha512 = "3YP80IxxFJB4b5tYC2SUPwkg0XQLiu0nWvhRgEatgjf+29IcWO9X1k8xRv5DGssJ/lCrjYTjQPcobJr2yWIVuQ=="; + }; + }; "@types/json-schema-7.0.11" = { name = "_at_types_slash_json-schema"; packageName = "@types/json-schema"; @@ -9166,13 +9202,13 @@ let sha512 = "0d5Wd09ItQWH1qFbEyQ7oTQ3GZrMfth5JkbN3EvTKLXcHLRDSXeLnlvlOn0wvxVIwK5o2M8JzP/OWz7T3NRsbw=="; }; }; - "@types/lodash-4.14.180" = { + "@types/lodash-4.14.181" = { name = "_at_types_slash_lodash"; packageName = "@types/lodash"; - version = "4.14.180"; + version = "4.14.181"; src = fetchurl { - url = "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.180.tgz"; - sha512 = "XOKXa1KIxtNXgASAnwj7cnttJxS4fksBRywK/9LzRV5YxrF80BXZIGeQSuoESQ/VkUj30Ae0+YcuHc15wJCB2g=="; + url = "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.181.tgz"; + sha512 = "n3tyKthHJbkiWhDZs3DkhkCzt2MexYHXlX0td5iMplyfwketaOeKboEVBqzceH7juqvEg3q5oUoBFxSLu7zFag=="; }; }; "@types/long-4.0.1" = { @@ -9931,13 +9967,13 @@ let sha512 = "awvdx4vX7SkMKyvWIlRjycjb4blYRSQI3Bav0YMn+lJLGN6gJgb20urN/dQCv/2ejDu5S6ADEBt6O15DOpIAkg=="; }; }; - "@types/vscode-1.65.0" = { + "@types/vscode-1.66.0" = { name = "_at_types_slash_vscode"; packageName = "@types/vscode"; - version = "1.65.0"; + version = "1.66.0"; src = fetchurl { - url = "https://registry.npmjs.org/@types/vscode/-/vscode-1.65.0.tgz"; - sha512 = "wQhExnh2nEzpjDMSKhUvnNmz3ucpd3E+R7wJkOhBNK3No6fG3VUdmVmMOKD0A8NDZDDDiQcLNxe3oGmX5SjJ5w=="; + url = "https://registry.npmjs.org/@types/vscode/-/vscode-1.66.0.tgz"; + sha512 = "ZfJck4M7nrGasfs4A4YbUoxis3Vu24cETw3DERsNYtDZmYSYtk6ljKexKFKhImO/ZmY6ZMsmegu2FPkXoUFImA=="; }; }; "@types/webidl-conversions-6.1.1" = { @@ -10129,13 +10165,13 @@ let sha512 = "aINiAxGVdOl1eJyVjaWn/YcVAq4Gi/Yo35qHGCnqbWVz61g39D0h23veY/MA0rFFGfxK7TySg2uwDeNv+JgVpg=="; }; }; - "@typescript-eslint/eslint-plugin-5.16.0" = { + "@typescript-eslint/eslint-plugin-5.18.0" = { name = "_at_typescript-eslint_slash_eslint-plugin"; packageName = "@typescript-eslint/eslint-plugin"; - version = "5.16.0"; + version = "5.18.0"; src = fetchurl { - url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.16.0.tgz"; - sha512 = "SJoba1edXvQRMmNI505Uo4XmGbxCK9ARQpkvOd00anxzri9RNQk0DDCxD+LIl+jYhkzOJiOMMKYEHnHEODjdCw=="; + url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.18.0.tgz"; + sha512 = "tzrmdGMJI/uii9/V6lurMo4/o+dMTKDH82LkNjhJ3adCW22YQydoRs5MwTiqxGF9CSYxPxQ7EYb4jLNlIs+E+A=="; }; }; "@typescript-eslint/experimental-utils-4.33.0" = { @@ -10156,13 +10192,13 @@ let sha512 = "ZohdsbXadjGBSK0/r+d87X0SBmKzOq4/S5nzK6SBgJspFo9/CUDJ7hjayuze+JK7CZQLDMroqytp7pOcFKTxZA=="; }; }; - "@typescript-eslint/parser-5.16.0" = { + "@typescript-eslint/parser-5.18.0" = { name = "_at_typescript-eslint_slash_parser"; packageName = "@typescript-eslint/parser"; - version = "5.16.0"; + version = "5.18.0"; src = fetchurl { - url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.16.0.tgz"; - sha512 = "fkDq86F0zl8FicnJtdXakFs4lnuebH6ZADDw6CYQv0UZeIjHvmEw87m9/29nk2Dv5Lmdp0zQ3zDQhiMWQf/GbA=="; + url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.18.0.tgz"; + sha512 = "+08nYfurBzSSPndngnHvFw/fniWYJ5ymOrn/63oMIbgomVQOvIDhBoJmYZ9lwQOCnQV9xHGvf88ze3jFGUYooQ=="; }; }; "@typescript-eslint/scope-manager-4.33.0" = { @@ -10174,22 +10210,22 @@ let sha512 = "5IfJHpgTsTZuONKbODctL4kKuQje/bzBRkwHE8UOZ4f89Zeddg+EGZs8PD8NcN4LdM3ygHWYB3ukPAYjvl/qbQ=="; }; }; - "@typescript-eslint/scope-manager-5.16.0" = { + "@typescript-eslint/scope-manager-5.18.0" = { name = "_at_typescript-eslint_slash_scope-manager"; packageName = "@typescript-eslint/scope-manager"; - version = "5.16.0"; + version = "5.18.0"; src = fetchurl { - url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.16.0.tgz"; - sha512 = "P+Yab2Hovg8NekLIR/mOElCDPyGgFZKhGoZA901Yax6WR6HVeGLbsqJkZ+Cvk5nts/dAlFKm8PfL43UZnWdpIQ=="; + url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.18.0.tgz"; + sha512 = "C0CZML6NyRDj+ZbMqh9FnPscg2PrzSaVQg3IpTmpe0NURMVBXlghGZgMYqBw07YW73i0MCqSDqv2SbywnCS8jQ=="; }; }; - "@typescript-eslint/type-utils-5.16.0" = { + "@typescript-eslint/type-utils-5.18.0" = { name = "_at_typescript-eslint_slash_type-utils"; packageName = "@typescript-eslint/type-utils"; - version = "5.16.0"; + version = "5.18.0"; src = fetchurl { - url = "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.16.0.tgz"; - sha512 = "SKygICv54CCRl1Vq5ewwQUJV/8padIWvPgCxlWPGO/OgQLCijY9G7lDu6H+mqfQtbzDNlVjzVWQmeqbLMBLEwQ=="; + url = "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.18.0.tgz"; + sha512 = "vcn9/6J5D6jtHxpEJrgK8FhaM8r6J1/ZiNu70ZUJN554Y3D9t3iovi6u7JF8l/e7FcBIxeuTEidZDR70UuCIfA=="; }; }; "@typescript-eslint/types-4.33.0" = { @@ -10201,13 +10237,13 @@ let sha512 = "zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ=="; }; }; - "@typescript-eslint/types-5.16.0" = { + "@typescript-eslint/types-5.18.0" = { name = "_at_typescript-eslint_slash_types"; packageName = "@typescript-eslint/types"; - version = "5.16.0"; + version = "5.18.0"; src = fetchurl { - url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.16.0.tgz"; - sha512 = "oUorOwLj/3/3p/HFwrp6m/J2VfbLC8gjW5X3awpQJ/bSG+YRGFS4dpsvtQ8T2VNveV+LflQHjlLvB6v0R87z4g=="; + url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.18.0.tgz"; + sha512 = "bhV1+XjM+9bHMTmXi46p1Led5NP6iqQcsOxgx7fvk6gGiV48c6IynY0apQb7693twJDsXiVzNXTflhplmaiJaw=="; }; }; "@typescript-eslint/typescript-estree-4.33.0" = { @@ -10219,22 +10255,22 @@ let sha512 = "rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA=="; }; }; - "@typescript-eslint/typescript-estree-5.16.0" = { + "@typescript-eslint/typescript-estree-5.18.0" = { name = "_at_typescript-eslint_slash_typescript-estree"; packageName = "@typescript-eslint/typescript-estree"; - version = "5.16.0"; + version = "5.18.0"; src = fetchurl { - url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.16.0.tgz"; - sha512 = "SE4VfbLWUZl9MR+ngLSARptUv2E8brY0luCdgmUevU6arZRY/KxYoLI/3V/yxaURR8tLRN7bmZtJdgmzLHI6pQ=="; + url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.18.0.tgz"; + sha512 = "wa+2VAhOPpZs1bVij9e5gyVu60ReMi/KuOx4LKjGx2Y3XTNUDJgQ+5f77D49pHtqef/klglf+mibuHs9TrPxdQ=="; }; }; - "@typescript-eslint/utils-5.16.0" = { + "@typescript-eslint/utils-5.18.0" = { name = "_at_typescript-eslint_slash_utils"; packageName = "@typescript-eslint/utils"; - version = "5.16.0"; + version = "5.18.0"; src = fetchurl { - url = "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.16.0.tgz"; - sha512 = "iYej2ER6AwmejLWMWzJIHy3nPJeGDuCqf8Jnb+jAQVoPpmWzwQOfa9hWVB8GIQE5gsCv/rfN4T+AYb/V06WseQ=="; + url = "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.18.0.tgz"; + sha512 = "+hFGWUMMri7OFY26TsOlGa+zgjEy1ssEipxpLjtl4wSll8zy85x0GrUSju/FHdKfVorZPYJLkF3I4XPtnCTewA=="; }; }; "@typescript-eslint/visitor-keys-4.33.0" = { @@ -10246,13 +10282,13 @@ let sha512 = "uqi/2aSz9g2ftcHWf8uLPJA70rUv6yuMW5Bohw+bwcuzaxQIHaKFZCKGoGXIrc9vkTJ3+0txM73K0Hq3d5wgIg=="; }; }; - "@typescript-eslint/visitor-keys-5.16.0" = { + "@typescript-eslint/visitor-keys-5.18.0" = { name = "_at_typescript-eslint_slash_visitor-keys"; packageName = "@typescript-eslint/visitor-keys"; - version = "5.16.0"; + version = "5.18.0"; src = fetchurl { - url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.16.0.tgz"; - sha512 = "jqxO8msp5vZDhikTwq9ubyMHqZ67UIvawohr4qF3KhlpL7gzSjOd+8471H3nh5LyABkaI85laEKKU8SnGUK5/g=="; + url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.18.0.tgz"; + sha512 = "Hf+t+dJsjAKpKSkg3EHvbtEpFFb/1CiOHnvI8bjHgOD4/wAw3gKrA0i94LrbekypiZVanJu3McWJg7rWDMzRTg=="; }; }; "@ungap/promise-all-settled-1.1.2" = { @@ -11083,6 +11119,15 @@ let sha512 = "4wOae+5N2RZ+CZXd9ZKwkaDi55IxrSTOjHpxTvQQ4fomtOJmqVxbmICA9jE1jvnqNhpfgz8cnfFagG86wV/xLQ=="; }; }; + "@xmldom/xmldom-0.8.2" = { + name = "_at_xmldom_slash_xmldom"; + packageName = "@xmldom/xmldom"; + version = "0.8.2"; + src = fetchurl { + url = "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.8.2.tgz"; + sha512 = "+R0juSseERyoPvnBQ/cZih6bpF7IpCXlWbHRoCRzYzqpz6gWHOgf8o4MOEf6KBVuOyqU+gCNLkCWVIJAro8XyQ=="; + }; + }; "@xmpp/base64-0.13.1" = { name = "_at_xmpp_slash_base64"; packageName = "@xmpp/base64"; @@ -12622,13 +12667,13 @@ let sha512 = "y8H99NExU1Sk4TvcaUxTdzfq2SZo6uSj5dyh75XSQvbpH6gdAXIW9MaBcvlNC7n0cVPsidHmOcHOWxJ/pTXGjA=="; }; }; - "apollo-graphql-0.9.5" = { + "apollo-graphql-0.9.6" = { name = "apollo-graphql"; packageName = "apollo-graphql"; - version = "0.9.5"; + version = "0.9.6"; src = fetchurl { - url = "https://registry.npmjs.org/apollo-graphql/-/apollo-graphql-0.9.5.tgz"; - sha512 = "RGt5k2JeBqrmnwRM0VOgWFiGKlGJMfmiif/4JvdaEqhMJ+xqe/9cfDYzXfn33ke2eWixsAbjEbRfy8XbaN9nTw=="; + url = "https://registry.npmjs.org/apollo-graphql/-/apollo-graphql-0.9.6.tgz"; + sha512 = "CrqJxZwfu/U5x0bYYPPluwu1G+oC3jjKFK/EVn9CDcpi4+yD9rAYko/h1iUB5A6VRQhA4Boluc7QexMYQ2tCng=="; }; }; "apollo-link-1.2.1" = { @@ -13135,6 +13180,15 @@ let sha1 = "3a77345ffc1cf35e2a91825601f9e58f2e24cac4"; }; }; + "arr-rotate-1.0.0" = { + name = "arr-rotate"; + packageName = "arr-rotate"; + version = "1.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/arr-rotate/-/arr-rotate-1.0.0.tgz"; + sha512 = "yOzOZcR9Tn7enTF66bqKorGGH0F36vcPaSWg8fO0c0UYb3LX3VMXj5ZxEqQLNOecAhlRJ7wYZja5i4jTlnbIfQ=="; + }; + }; "arr-union-2.1.0" = { name = "arr-union"; packageName = "arr-union"; @@ -13954,6 +14008,15 @@ let sha512 = "gFaHkFfSxTjvoxDMYqDuGHlcRyUuamF8s+ZTtJdDzqjws4mCt7v0vuV79/E2Wr2/riMQgtG4/yUtXWs1gZ7JMg=="; }; }; + "async-iter-stream-1.2.0" = { + name = "async-iter-stream"; + packageName = "async-iter-stream"; + version = "1.2.0"; + src = fetchurl { + url = "https://registry.npmjs.org/async-iter-stream/-/async-iter-stream-1.2.0.tgz"; + sha1 = "91afbe5e9a7714fd1dd63d4a8dcb1284a3f72826"; + }; + }; "async-limiter-1.0.1" = { name = "async-limiter"; packageName = "async-limiter"; @@ -14242,13 +14305,22 @@ let sha512 = "fChMDiSfWcW0EUWmiqlyc+VAIXKH0w7BBruL3cVWSwO+5oA5A9juGF4NCBV2/KAHzaKaG0hXKPE49Wh6Lq74ag=="; }; }; - "aws-sdk-2.1101.0" = { + "aws-sdk-2.1107.0" = { name = "aws-sdk"; packageName = "aws-sdk"; - version = "2.1101.0"; + version = "2.1107.0"; src = fetchurl { - url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1101.0.tgz"; - sha512 = "7lyVb7GXGl8yyu954Qxf6vU6MrcgFlmKyTLBVXJyo3Phn1OB+qOExA55WtSC6gQiQ7e5TeWOn1RUHLg30ywTBA=="; + url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1107.0.tgz"; + sha512 = "gZaCm+zSSwjUYSa/cVg63uXhq5w9coT9yA8aTDOYzFkyl19b9H2CCixPeyf7KHtZdGwe3QAG2Oe6Rw0xtoCs+Q=="; + }; + }; + "aws-sdk-2.1108.0" = { + name = "aws-sdk"; + packageName = "aws-sdk"; + version = "2.1108.0"; + src = fetchurl { + url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1108.0.tgz"; + sha512 = "BpoHW6vk8cXQDf0M+j7LSti7db4vIWocfUDTFbmkOT0hH9pR3f4IDzbnGzGmlka6IOFWkb9sVHl+P5S2meswOg=="; }; }; "aws-sign2-0.6.0" = { @@ -15493,13 +15565,13 @@ let sha1 = "dd3a862b2fedf66fee8471320069428d0d84427a"; }; }; - "bin-links-3.0.0" = { + "bin-links-3.0.1" = { name = "bin-links"; packageName = "bin-links"; - version = "3.0.0"; + version = "3.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/bin-links/-/bin-links-3.0.0.tgz"; - sha512 = "fC7kPWcEkAWBgCKxmAMqZldlIeHsXwQy9JXzrppAVQiukGiDKxmYesJcBKWu6UMwx/5GOfo10wtK/4zy+Xt/mg=="; + url = "https://registry.npmjs.org/bin-links/-/bin-links-3.0.1.tgz"; + sha512 = "9vx+ypzVhASvHTS6K+YSGf7nwQdANoz7v6MTC0aCtYnOEZ87YvMf81aY737EZnGZdpbRM3sfWjO9oWkKmuIvyQ=="; }; }; "bin-version-3.1.0" = { @@ -15682,13 +15754,13 @@ let sha512 = "O1htyufFTYy3EO0JkHg2CLykdXEtV2ssqw47Gq9A0WByp662xpJnMEB9m43LZjsSDjIAOozWRExlFQk2hlV1XQ=="; }; }; - "bipf-1.5.5" = { + "bipf-1.6.1" = { name = "bipf"; packageName = "bipf"; - version = "1.5.5"; + version = "1.6.1"; src = fetchurl { - url = "https://registry.npmjs.org/bipf/-/bipf-1.5.5.tgz"; - sha512 = "sGJPBMy5GUBXhmc50TX+LdBXpU6oTR/lkxwbU98GzA2XdmcDK2rmPxcH6NWMtbRO5sv9LhBDrmCxR89HPZsRuQ=="; + url = "https://registry.npmjs.org/bipf/-/bipf-1.6.1.tgz"; + sha512 = "wsn3ickoiYgUn9Bd0JUTPnpJemEcjWtXkMLLQyNVhrnKhRxKhma8Gq/DoB1Di8GUcHhgeEVH+PQT2C/JRFpOgw=="; }; }; "bit-field-1.5.3" = { @@ -16195,6 +16267,15 @@ let sha512 = "SAAwOxgoCKMGs9uUAUFHygfLAyaniaoun6I8mFY9pRAJL9+Kec34aU+oIjDhTycub1jozEfEwx1W1IuOYxVSFw=="; }; }; + "body-parser-1.20.0" = { + name = "body-parser"; + packageName = "body-parser"; + version = "1.20.0"; + src = fetchurl { + url = "https://registry.npmjs.org/body-parser/-/body-parser-1.20.0.tgz"; + sha512 = "DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg=="; + }; + }; "bolt01-1.2.3" = { name = "bolt01"; packageName = "bolt01"; @@ -16267,6 +16348,15 @@ let sha1 = "8e890a183d8ee9a2393b3844c691a42bcf7bc9f5"; }; }; + "bonjour-service-1.0.11" = { + name = "bonjour-service"; + packageName = "bonjour-service"; + version = "1.0.11"; + src = fetchurl { + url = "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.0.11.tgz"; + sha512 = "drMprzr2rDTCtgEE3VgdA9uUFaUHF+jXduwYSThHJnKMYM+FhI9Z3ph+TX3xy0LtgYHae6CHYPJ/2UnK8nQHcA=="; + }; + }; "boolbase-1.0.0" = { name = "boolbase"; packageName = "boolbase"; @@ -16474,15 +16564,6 @@ let sha512 = "z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw=="; }; }; - "bplist-parser-0.3.0" = { - name = "bplist-parser"; - packageName = "bplist-parser"; - version = "0.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.3.0.tgz"; - sha512 = "zgmaRvT6AN1JpPPV+S0a1/FAtoxSreYDccZGIqEMSvZl9DMe70mJ7MFzpxa1X+gHVdkToE2haRUHHMiW1OdejA=="; - }; - }; "bplist-parser-0.3.1" = { name = "bplist-parser"; packageName = "bplist-parser"; @@ -17285,6 +17366,15 @@ let sha512 = "1bPRZQtmKaO6h7qV1YHXNtr6nCK28k0Zo95KM4dXfILcZZwoHJBN1m3lfLv9LPkcOZlrSr+J1bzMaZFO98Yq0w=="; }; }; + "builtins-5.0.0" = { + name = "builtins"; + packageName = "builtins"; + version = "5.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/builtins/-/builtins-5.0.0.tgz"; + sha512 = "aizhtbxgT1Udg0Fj6GssXshAVK+nxbtCV+1OtTrMNy67jffDFBY6CUBAkhO4owbleAx6fdbnWdpsmmcXydbzNw=="; + }; + }; "bulk-write-stream-1.1.4" = { name = "bulk-write-stream"; packageName = "bulk-write-stream"; @@ -17915,13 +18005,13 @@ let sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw=="; }; }; - "caniuse-lite-1.0.30001320" = { + "caniuse-lite-1.0.30001325" = { name = "caniuse-lite"; packageName = "caniuse-lite"; - version = "1.0.30001320"; + version = "1.0.30001325"; src = fetchurl { - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001320.tgz"; - sha512 = "MWPzG54AGdo3nWx7zHZTefseM5Y1ccM7hlQKHRqJkPozUaw3hNbBTMmLn16GG2FUzjR13Cr3NPfhIieX5PzXDA=="; + url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001325.tgz"; + sha512 = "sB1bZHjseSjDtijV1Hb7PB2Zd58Kyx+n/9EotvZ4Qcz2K3d0lWB8dB4nb8wN/TsOGFq3UuAm0zQZNQ4SoR7TrQ=="; }; }; "canvas-2.9.1" = { @@ -18077,31 +18167,31 @@ let sha512 = "eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg=="; }; }; - "cdk8s-1.5.52" = { + "cdk8s-1.5.62" = { name = "cdk8s"; packageName = "cdk8s"; - version = "1.5.52"; + version = "1.5.62"; src = fetchurl { - url = "https://registry.npmjs.org/cdk8s/-/cdk8s-1.5.52.tgz"; - sha512 = "xqVD2lUGC3JJC1Zl2YWDop5xcJRl0OT91PAkT7qrWO5Xho4cz3B3NA3Cua4Q7bcLQViL7CeRdH4d9zL9mJmuMw=="; + url = "https://registry.npmjs.org/cdk8s/-/cdk8s-1.5.62.tgz"; + sha512 = "zspC9PLbuRVlDp+D9mhnqiBD3d4TAcgiIU0E12B6paJUM9gZaJEOi5q/DQcoGXa0AbnnGbSjmd+b0BgHFQJTGg=="; }; }; - "cdk8s-plus-22-1.0.0-beta.158" = { + "cdk8s-plus-22-1.0.0-beta.180" = { name = "cdk8s-plus-22"; packageName = "cdk8s-plus-22"; - version = "1.0.0-beta.158"; + version = "1.0.0-beta.180"; src = fetchurl { - url = "https://registry.npmjs.org/cdk8s-plus-22/-/cdk8s-plus-22-1.0.0-beta.158.tgz"; - sha512 = "//RAiob+IkkJxMtt2GhLUIchljTjdwkfPSqC+R3scZLtDM1yPlyN1u5qKp/3C6anm2nKtw96zAENpqzfXdZasw=="; + url = "https://registry.npmjs.org/cdk8s-plus-22/-/cdk8s-plus-22-1.0.0-beta.180.tgz"; + sha512 = "7jZonUlzpGSyY7v9TWk42lznAh5GSNKRE/Xq0S4kRsZYMePCDNMgxyodlNp0Yd5mhPZYHAy/D7Rm7V3miuEvLg=="; }; }; - "cdktf-0.9.4" = { + "cdktf-0.10.1" = { name = "cdktf"; packageName = "cdktf"; - version = "0.9.4"; + version = "0.10.1"; src = fetchurl { - url = "https://registry.npmjs.org/cdktf/-/cdktf-0.9.4.tgz"; - sha512 = "CuTCNVV3Goptnq3daPVfs9boODEoIrjy09XAj9nkApcozgidPkNIkDcaJCo/7q3rxnoblsK9u2nj6CDUB8cTIg=="; + url = "https://registry.npmjs.org/cdktf/-/cdktf-0.10.1.tgz"; + sha512 = "c+Hj3cBppRNcT1qD2FL1R4IDQXaQWwq4ZCyQeWktT5IB3tE2ncRCoZ8me8aaZ4vfT5CpAIkPf5heNmhy+U5P0Q=="; }; }; "center-align-0.1.3" = { @@ -18491,13 +18581,13 @@ let sha512 = "0td5ijfUPuubwLUu0OBoe98gZj8C/AA+RW3v67GPlGOrvxWjZmBXiBCRU+I8VEiNyJzjth40POfHiz2RB3gImA=="; }; }; - "cheerio-select-1.5.0" = { + "cheerio-select-1.6.0" = { name = "cheerio-select"; packageName = "cheerio-select"; - version = "1.5.0"; + version = "1.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/cheerio-select/-/cheerio-select-1.5.0.tgz"; - sha512 = "qocaHPv5ypefh6YNxvnbABM07KMxExbtbfuJoIie3iZXX1ERwYmJcIiRrr9H05ucQP1k28dav8rpdDgjQd8drg=="; + url = "https://registry.npmjs.org/cheerio-select/-/cheerio-select-1.6.0.tgz"; + sha512 = "eq0GdBvxVFbqWgmCm7M3XGs1I8oLy/nExUnh6oLqmBditPO9AqQJrkslDpMun/hZ0yyTs8L0m85OHp4ho6Qm9g=="; }; }; "chevrotain-4.1.1" = { @@ -18878,13 +18968,13 @@ let sha512 = "EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A=="; }; }; - "clean-css-5.2.4" = { + "clean-css-5.3.0" = { name = "clean-css"; packageName = "clean-css"; - version = "5.2.4"; + version = "5.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/clean-css/-/clean-css-5.2.4.tgz"; - sha512 = "nKseG8wCzEuji/4yrgM/5cthL9oTDc5UOQyFMvW/Q53oP6gLH690o1NbuTh6Y18nujr7BxlsFuS7gXLnLzKJGg=="; + url = "https://registry.npmjs.org/clean-css/-/clean-css-5.3.0.tgz"; + sha512 = "YYuuxv4H/iNb1Z/5IbMRoxgrzjWGhOEFfd+groZ5dMCVkpENiMZmwspdrzBo9286JjM1gZJPAyL7ZIdzuvu2AQ=="; }; }; "clean-git-ref-2.0.1" = { @@ -18977,13 +19067,13 @@ let sha512 = "xu6RvQqqrWEo6MPR1eixqGPywhYBHRs653F9jfXB2Hx4jdM/3WxiNE1vppRmxtMIfl16SFYTpYlrnqH/HsK/2w=="; }; }; - "cli-color-2.0.1" = { + "cli-color-2.0.2" = { name = "cli-color"; packageName = "cli-color"; - version = "2.0.1"; + version = "2.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/cli-color/-/cli-color-2.0.1.tgz"; - sha512 = "eBbxZF6fqPUNnf7CLAFOersUnyYzv83tHFLSlts+OAHsNendaqv2tHCq+/MO+b3Y+9JeoUlIvobyxG/Z8GNeOg=="; + url = "https://registry.npmjs.org/cli-color/-/cli-color-2.0.2.tgz"; + sha512 = "g4JYjrTW9MGtCziFNjkqp3IMpGhnJyeB0lOtRPjQkYhXzKYr6tYnXKyEVnMzITxhpbahsEW9KsxOYIDKwcsIBw=="; }; }; "cli-cursor-1.0.2" = { @@ -19049,13 +19139,13 @@ let sha512 = "kLORQrhYCAtUPLZxqsAt2YJGOvRdt34+O6jl5cQGb7iF3dM55FQZlTR+rQyIK9JUcO9bBMwZsTlND+3dmFU2Cw=="; }; }; - "cli-progress-footer-2.3.0" = { + "cli-progress-footer-2.3.1" = { name = "cli-progress-footer"; packageName = "cli-progress-footer"; - version = "2.3.0"; + version = "2.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/cli-progress-footer/-/cli-progress-footer-2.3.0.tgz"; - sha512 = "xJl+jqvdsE0Gjh5tKoLzZrQS4nPHC+yzeitgq2faAZiHl+/Peuwzoy5Sed6EBkm8JNrPk7W4U3YNVO/uxoqOFg=="; + url = "https://registry.npmjs.org/cli-progress-footer/-/cli-progress-footer-2.3.1.tgz"; + sha512 = "urD1hiEIQeZadVABtW5ExM8wse1phnmz15oJ4QEe46GQN87v1VBa0lZQ7gXkPELMzP6At4VY6v07baAiyztulw=="; }; }; "cli-spinner-0.2.10" = { @@ -19517,6 +19607,15 @@ let sha512 = "lb9L7EM4I/ZRVuljLPEtUJOP+xiQVknZ4ZMpMgEp4JzNldPb27HU03hi6K1/6CoIuit/Zm/LQXySErFeXxDprw=="; }; }; + "cmd-shim-5.0.0" = { + name = "cmd-shim"; + packageName = "cmd-shim"; + version = "5.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/cmd-shim/-/cmd-shim-5.0.0.tgz"; + sha512 = "qkCtZ59BidfEwHltnJwkyVZn+XQojdAySM1D1gSeh11Z4pW1Kpolkyo53L5noc0nrxmIvyFwTmJRo4xs7FFLPw=="; + }; + }; "cmdln-3.2.1" = { name = "cmdln"; packageName = "cmdln"; @@ -20390,6 +20489,15 @@ let sha1 = "8a47901700238e4fc32269771230226f24b415a9"; }; }; + "compress-brotli-1.3.6" = { + name = "compress-brotli"; + packageName = "compress-brotli"; + version = "1.3.6"; + src = fetchurl { + url = "https://registry.npmjs.org/compress-brotli/-/compress-brotli-1.3.6.tgz"; + sha512 = "au99/GqZtUtiCBliqLFbWlhnCxn+XSYjwZ77q6mKN4La4qOXDoLVPZ50iXr0WmAyMxl8yqoq3Yq4OeQNPPkyeQ=="; + }; + }; "compress-commons-2.1.1" = { name = "compress-commons"; packageName = "compress-commons"; @@ -20471,13 +20579,13 @@ let sha512 = "bzlVWS2THbMetHqXKB8ypsXN4DQ/1qopGwNJi1eYbpwesJcd86FBjFciCQX/YwAhp9bM7NVnPFqZ5LpV7gP0Dg=="; }; }; - "conf-10.1.1" = { + "conf-10.1.2" = { name = "conf"; packageName = "conf"; - version = "10.1.1"; + version = "10.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/conf/-/conf-10.1.1.tgz"; - sha512 = "z2civwq/k8TMYtcn3SVP0Peso4otIWnHtcTuHhQ0zDZDdP4NTxqEc8owfkz4zBsdMYdn/LFcE+ZhbCeqkhtq3Q=="; + url = "https://registry.npmjs.org/conf/-/conf-10.1.2.tgz"; + sha512 = "o9Fv1Mv+6A0JpoayQ8JleNp3hhkbOJP/Re/Q+QqxMPHPkABVsRjQGWZn9A5GcqLiTNC6d89p2PB5ZhHVDSMwyg=="; }; }; "conf-6.2.4" = { @@ -20723,22 +20831,22 @@ let sha1 = "c20b96d8c617748aaf1c16021760cd27fcb8cb75"; }; }; - "constructs-10.0.97" = { + "constructs-10.0.106" = { name = "constructs"; packageName = "constructs"; - version = "10.0.97"; + version = "10.0.106"; src = fetchurl { - url = "https://registry.npmjs.org/constructs/-/constructs-10.0.97.tgz"; - sha512 = "2193Y3iDLY9sYCd89eb4TfjeDN+oD5ocl5d1LRnbGwlmvMe2fWqd9i84ET6K8K/PXBPSTyRQghnpw+Smn8b9vA=="; + url = "https://registry.npmjs.org/constructs/-/constructs-10.0.106.tgz"; + sha512 = "6k8z7O3q6UigE62QW/z34YcSqa1elCDEGz1rTwaMkiVjdL93mB6YLNCpC21FYVUbx+rauTdsQCD3ejVxdAmazg=="; }; }; - "constructs-3.3.250" = { + "constructs-3.3.259" = { name = "constructs"; packageName = "constructs"; - version = "3.3.250"; + version = "3.3.259"; src = fetchurl { - url = "https://registry.npmjs.org/constructs/-/constructs-3.3.250.tgz"; - sha512 = "D1817bciQBs1xFEx1+Yh0ynd4GmrrjNPo93Z3Q8H+bxHBfRN00xSCfgDHttv+dk+6UEA43eYaI4SNYbmfSj2gQ=="; + url = "https://registry.npmjs.org/constructs/-/constructs-3.3.259.tgz"; + sha512 = "hI++shPkBPk8yPD/Af48B6nPmnZIXsKx2dnqDiqadoU0i7Z75/G/TqtLVF96h8XC4A6JkzQ89+CxJLpRTqwy8w=="; }; }; "consume-http-header-1.0.0" = { @@ -21471,13 +21579,13 @@ let sha512 = "H/2gurFWVi7xXvCyvsWRLCMekl4tITJcX0QEsDMpzxtuxDyM59xLatYNg4s/k9AA/HdtCYfj2su8mgA0GSDLDA=="; }; }; - "cosmiconfig-typescript-loader-1.0.6" = { + "cosmiconfig-typescript-loader-1.0.9" = { name = "cosmiconfig-typescript-loader"; packageName = "cosmiconfig-typescript-loader"; - version = "1.0.6"; + version = "1.0.9"; src = fetchurl { - url = "https://registry.npmjs.org/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-1.0.6.tgz"; - sha512 = "2nEotziYJWtNtoTjKbchj9QrdTT6DBxCvqjNKoDKARw+e2yZmTQCa07uRrykLIZuvSgp69YXLH89UHc0WhdMfQ=="; + url = "https://registry.npmjs.org/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-1.0.9.tgz"; + sha512 = "tRuMRhxN4m1Y8hP9SNYfz7jRwt8lZdWxdjg/ohg5esKmsndJIn4yT96oJVcf5x0eA11taXl+sIp+ielu529k6g=="; }; }; "couch-login-0.1.20" = { @@ -21561,13 +21669,13 @@ let sha512 = "iX3mfgcTMIq3ZKLIsVFAbv7+Mc10kxabAGQb8HvjA1o3T1PIYprbakQ65d3I+2HGHt6nSKkM9PYjgoJO2KcFBQ=="; }; }; - "crc-32-1.2.1" = { + "crc-32-1.2.2" = { name = "crc-32"; packageName = "crc-32"; - version = "1.2.1"; + version = "1.2.2"; src = fetchurl { - url = "https://registry.npmjs.org/crc-32/-/crc-32-1.2.1.tgz"; - sha512 = "Dn/xm/1vFFgs3nfrpEVScHoIslO9NZRITWGz/1E/St6u4xw99vfZzVkW0OSnzx2h9egej9xwMCEut6sqwokM/w=="; + url = "https://registry.npmjs.org/crc-32/-/crc-32-1.2.2.tgz"; + sha512 = "ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ=="; }; }; "crc32-stream-3.0.1" = { @@ -21606,13 +21714,13 @@ let sha1 = "06be7abef947a3f14a30fd610671d401bca8b7b6"; }; }; - "create-gatsby-2.10.2" = { + "create-gatsby-2.11.2" = { name = "create-gatsby"; packageName = "create-gatsby"; - version = "2.10.2"; + version = "2.11.2"; src = fetchurl { - url = "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.10.2.tgz"; - sha512 = "OmuFey3Eoaek20m8Br/iIqEr76AUrl/ThCn7TBYJ6RvWVKezKV5UksQlFpdQgPK8kO9LogjkmiyA0k94VC3nXg=="; + url = "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.11.2.tgz"; + sha512 = "EHlULRVoiXoLM400sLYNtFRy5pemp2WoNKR6vjUlFnLBqn+BGe+TJAmKfwqHYFheXMozKqY2bW0ekuDj2x8zAg=="; }; }; "create-graphback-1.0.1" = { @@ -21795,13 +21903,13 @@ let sha512 = "mkLtJJcYbDCxEG7Js6eUnUNndWjyUZwJ3H7bErmmtOYU/Zb99DyUkpamuIZE0b3bhmJyZ7D90uS6f+CGxRRjOw=="; }; }; - "cross-undici-fetch-0.1.27" = { + "cross-undici-fetch-0.1.28" = { name = "cross-undici-fetch"; packageName = "cross-undici-fetch"; - version = "0.1.27"; + version = "0.1.28"; src = fetchurl { - url = "https://registry.npmjs.org/cross-undici-fetch/-/cross-undici-fetch-0.1.27.tgz"; - sha512 = "Oz/zXdh2HCq55xARCwFAYtKlyGp3VFAIfOEexN6nVm06rD6O5g47fKp7fggf/kBtc7iG09asNoGW+CUwIi4Efg=="; + url = "https://registry.npmjs.org/cross-undici-fetch/-/cross-undici-fetch-0.1.28.tgz"; + sha512 = "/nLMyVE5IC9PQdBtmgjpGZfK0wo8UupomAPx+7HlbEgVDkZOa9xCiZP9goo5aLYofP0gHXgovjXdXrE2obANag=="; }; }; "crossroads-0.12.2" = { @@ -21876,49 +21984,49 @@ let sha512 = "v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA=="; }; }; - "cspell-gitignore-5.19.3" = { + "cspell-gitignore-5.19.5" = { name = "cspell-gitignore"; packageName = "cspell-gitignore"; - version = "5.19.3"; + version = "5.19.5"; src = fetchurl { - url = "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-5.19.3.tgz"; - sha512 = "Q67uHcf0qNgOoanRLhatapjWpLiftT+MuLIyAaSLe5eNVzQurQIc+UnXhtaslkVyOTqQt4NJFqLgtf5ZSGz1bg=="; + url = "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-5.19.5.tgz"; + sha512 = "Wj16pnPmx7PGd2PcVAEsxWnTtfY4qNzUBtfTqo5VEd23WME6SgEtffxm4eSRpHYZmmDclir+Tbb9yQAsZajDeQ=="; }; }; - "cspell-glob-5.19.3" = { + "cspell-glob-5.19.5" = { name = "cspell-glob"; packageName = "cspell-glob"; - version = "5.19.3"; + version = "5.19.5"; src = fetchurl { - url = "https://registry.npmjs.org/cspell-glob/-/cspell-glob-5.19.3.tgz"; - sha512 = "qp2Oe/euzTu3e0zZrQxHuTrqRo418tYfh4CnCa+DKU6lWKKcF4zCEhOGJHPsYak8SFIXZ4ZE360wHFxB/JDutQ=="; + url = "https://registry.npmjs.org/cspell-glob/-/cspell-glob-5.19.5.tgz"; + sha512 = "fnrUNLNY9CMsr5J1wRPoGpx7aastD05wEZ/NL+Xd7uEmuU+R7gViOjyOPlUMFH+YARwY0youHRiobkl7pJNngw=="; }; }; - "cspell-io-5.19.3" = { + "cspell-io-5.19.5" = { name = "cspell-io"; packageName = "cspell-io"; - version = "5.19.3"; + version = "5.19.5"; src = fetchurl { - url = "https://registry.npmjs.org/cspell-io/-/cspell-io-5.19.3.tgz"; - sha512 = "dE9eBvHgIJ11DelWtyehMU3W3bCpcB+0nS6uOZJ2d8fDu13m5BebpLrXZ2dKfY4cjksJUhRPatt14uwQSeUp2A=="; + url = "https://registry.npmjs.org/cspell-io/-/cspell-io-5.19.5.tgz"; + sha512 = "R6q1Dor6mfs1VBpuXVlcm/Vvr96GclO/BtNDK/8ppcm22Ct1VF24MG2itoYO7296dOgR1H4HkndvvEgx3p8fzw=="; }; }; - "cspell-lib-5.19.3" = { + "cspell-lib-5.19.5" = { name = "cspell-lib"; packageName = "cspell-lib"; - version = "5.19.3"; + version = "5.19.5"; src = fetchurl { - url = "https://registry.npmjs.org/cspell-lib/-/cspell-lib-5.19.3.tgz"; - sha512 = "peMJggwJpxCXKZZ0DuHyDtZmf66POKaHf5Im8LGEyMKFARUIq6O2WvaUGggYjyRe3Ng/f5G+EYTcIHbF9pZYcg=="; + url = "https://registry.npmjs.org/cspell-lib/-/cspell-lib-5.19.5.tgz"; + sha512 = "6HOJ7O+vDYzJs49fHZI5xzsL5TxeR7WsfjWvx1BwgRs1rHdA9/8KFZFX2DJazKRGm+kL1kBO0VJlaF0tvVsjzw=="; }; }; - "cspell-trie-lib-5.19.3" = { + "cspell-trie-lib-5.19.5" = { name = "cspell-trie-lib"; packageName = "cspell-trie-lib"; - version = "5.19.3"; + version = "5.19.5"; src = fetchurl { - url = "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-5.19.3.tgz"; - sha512 = "Io8EB7E1pmttHzZvgvPEF0b87qlq8G5uA4B+sbqCxrUf5l4JDcK/UYLih0+rekLTbv4Q68zqgCTASvqxgqnoAg=="; + url = "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-5.19.5.tgz"; + sha512 = "yNOmd7uzLiu5UDpbIfJlORx8rJZltLz/ebostAV7UC3wzrOIQgS8xKoFfqiE0iWxIMwmV9eyydVcyzh5grx0gg=="; }; }; "csrf-3.1.0" = { @@ -22056,13 +22164,13 @@ let sha512 = "Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ=="; }; }; - "css-select-4.2.1" = { + "css-select-4.3.0" = { name = "css-select"; packageName = "css-select"; - version = "4.2.1"; + version = "4.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/css-select/-/css-select-4.2.1.tgz"; - sha512 = "/aUslKhzkTNCQUB2qTX84lVmfia9NyjP3WpDGtj/WxhwBzWBYUV3DgUpurHTme8UTPcPlAD1DJ+b0nN/t50zDQ=="; + url = "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz"; + sha512 = "wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ=="; }; }; "css-select-base-adapter-0.1.1" = { @@ -22137,13 +22245,13 @@ let sha512 = "ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ=="; }; }; - "css-what-5.1.0" = { + "css-what-6.1.0" = { name = "css-what"; packageName = "css-what"; - version = "5.1.0"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/css-what/-/css-what-5.1.0.tgz"; - sha512 = "arSMRWIIFY0hV8pIxZMEfmMI47Wj3R/aWpZDDxWYCPEiOMv6tfOrnpDtgxBYPEQD4V0Y/958+1TdC3iWTFcUPw=="; + url = "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz"; + sha512 = "HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw=="; }; }; "cssauron-1.4.0" = { @@ -22515,13 +22623,13 @@ let sha512 = "4PL5hHaHwX4m7Zr1UapXW23apo6pexCgdetdJ5kTmADpG/7T9Gkxw0M0tf/pjoB63ezCCm0u5UaFYy2aMt0Mcw=="; }; }; - "d3-7.3.0" = { + "d3-7.4.2" = { name = "d3"; packageName = "d3"; - version = "7.3.0"; + version = "7.4.2"; src = fetchurl { - url = "https://registry.npmjs.org/d3/-/d3-7.3.0.tgz"; - sha512 = "MDRLJCMK232OJQRqGljQ/gCxtB8k3/sLKFjftMjzPB3nKVUODpdW9Rb3vcq7U8Ka5YKoZkAmp++Ur6I+6iNWIw=="; + url = "https://registry.npmjs.org/d3/-/d3-7.4.2.tgz"; + sha512 = "7VK+QBAWtNDbP2EU/ThkXgjd0u1MsXYYgCK2ElQ4BBWh0usE75tHVVeYx47m2pqQEy4isYKAA0tAFSln0l+9EQ=="; }; }; "d3-array-1.2.4" = { @@ -22542,6 +22650,15 @@ let sha512 = "33qQ+ZoZlli19IFiQx4QEpf2CBEayMRzhlisJHSCsSUbDXv6ZishqS1x7uFVClKG4Wr7rZVHvaAttoLow6GqdQ=="; }; }; + "d3-array-3.1.4" = { + name = "d3-array"; + packageName = "d3-array"; + version = "3.1.4"; + src = fetchurl { + url = "https://registry.npmjs.org/d3-array/-/d3-array-3.1.4.tgz"; + sha512 = "H8lM97Gr9+LAR4WVHETCMt6LlWtLJVMCKsz1ojors+/PvAs2QqdLa20BuYvU11/DU+nLF0GVWL5Rv3jSgo2KmA=="; + }; + }; "d3-axis-1.0.12" = { name = "d3-axis"; packageName = "d3-axis"; @@ -22623,13 +22740,13 @@ let sha512 = "SPXi0TSKPD4g9tw0NMZFnR95XVgUZiBH+uUTqQuDu1OsE2zomHU7ho0FISciaPvosimixwHFl3WHLGabv6dDgQ=="; }; }; - "d3-color-3.0.1" = { + "d3-color-3.1.0" = { name = "d3-color"; packageName = "d3-color"; - version = "3.0.1"; + version = "3.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/d3-color/-/d3-color-3.0.1.tgz"; - sha512 = "6/SlHkDOBLyQSJ1j1Ghs82OIUXpKWlR0hCsw0XrLSQhuUPuCSmLQ1QPH98vpnQxMUQM2/gfAkUEWsupVpd9JGw=="; + url = "https://registry.npmjs.org/d3-color/-/d3-color-3.1.0.tgz"; + sha512 = "zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA=="; }; }; "d3-contour-1.3.2" = { @@ -22866,13 +22983,13 @@ let sha512 = "j8tPxlqh1srJHAtxfvOUwKNYJkQuBFdM1+JAUfq6xqH5eAqf93L7oG1NVqDa4CpFZNvnNKtCYEUC8KY9yEn9lQ=="; }; }; - "d3-hierarchy-3.1.1" = { + "d3-hierarchy-3.1.2" = { name = "d3-hierarchy"; packageName = "d3-hierarchy"; - version = "3.1.1"; + version = "3.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/d3-hierarchy/-/d3-hierarchy-3.1.1.tgz"; - sha512 = "LtAIu54UctRmhGKllleflmHalttH3zkfSi4NlKrTAoFKjC+AFBJohsCAdgCBYQwH0F8hIOGY89X1pPqAchlMkA=="; + url = "https://registry.npmjs.org/d3-hierarchy/-/d3-hierarchy-3.1.2.tgz"; + sha512 = "FX/9frcub54beBdugHjDCdikxThEqjnR93Qt7PvQTOHxyiNCAlvMrHhclk3cD5VeAaq9fxmfRp+CnWw9rEMBuA=="; }; }; "d3-interpolate-1.4.0" = { @@ -23541,13 +23658,13 @@ let sha512 = "E1GI7jMI57hL30OX6Ht/hfQU8DO4AuB9m72WFm4c38GNbUD4Q03//XZaOIHZiY+H1xUaomcot5yk2q/qIZQkGQ=="; }; }; - "deasync-0.1.24" = { + "deasync-0.1.26" = { name = "deasync"; packageName = "deasync"; - version = "0.1.24"; + version = "0.1.26"; src = fetchurl { - url = "https://registry.npmjs.org/deasync/-/deasync-0.1.24.tgz"; - sha512 = "i98vg42xNfRZCymummMAN0rIcQ1gZFinSe3btvPIvy6JFTaeHcumeKybRo2HTv86nasfmT0nEgAn2ggLZhOCVA=="; + url = "https://registry.npmjs.org/deasync/-/deasync-0.1.26.tgz"; + sha512 = "YKw0BmJSWxkjtQsbgn6Q9CHSWB7DKMen8vKrgyC006zy0UZ6nWyGidB0IzZgqkVRkOglAeUaFtiRTeLyel72bg=="; }; }; "death-1.1.0" = { @@ -25107,13 +25224,13 @@ let sha1 = "ea80b106a87538774e8a3a4a5afe293de489e0a9"; }; }; - "doipjs-0.15.5" = { + "doipjs-0.15.6" = { name = "doipjs"; packageName = "doipjs"; - version = "0.15.5"; + version = "0.15.6"; src = fetchurl { - url = "https://registry.npmjs.org/doipjs/-/doipjs-0.15.5.tgz"; - sha512 = "PIZIx+2+LqDtJWUXOMAd0PabT6uojkk5x4k1crUX68nMqDuNKne8v4K2Viytu8F9eBgN1cIUL9gLV8p4oqXI4A=="; + url = "https://registry.npmjs.org/doipjs/-/doipjs-0.15.6.tgz"; + sha512 = "oC9uXxkUye8XTin/U+veA2Qmt++4I+WRBxtIoeufGmWqaD5iLM5REMSVbrOX4FbuLtimYEnajlgFXhh1fdF72A=="; }; }; "dom-converter-0.2.0" = { @@ -25872,13 +25989,13 @@ let sha512 = "9lt9Zse4hPucPkoP7FHDF0LQAlGyF9JVpnClFLFH3aSSbxmyoqINRpp/9wePWJTUl4KOQwRL72Iw3InHPDkoGw=="; }; }; - "electron-14.2.8" = { + "electron-14.2.9" = { name = "electron"; packageName = "electron"; - version = "14.2.8"; + version = "14.2.9"; src = fetchurl { - url = "https://registry.npmjs.org/electron/-/electron-14.2.8.tgz"; - sha512 = "K22hI0NVkC7sU5sMDXwW1lxAjhNsFXL2wuJF7Ij9CyWqW/j6AtIMfDkUoM5mXaTg0FGUlmlNr9Rh7cp8bBn6Sg=="; + url = "https://registry.npmjs.org/electron/-/electron-14.2.9.tgz"; + sha512 = "7LdJFmqVzO9NLKO0hwOwPA6Kv4GSybGMcej8f2q7fVT4O8mIfL9oo/v4axVjVWm0+58ROQtHv8hYnnAs3ygG0Q=="; }; }; "electron-notarize-1.2.1" = { @@ -25917,13 +26034,13 @@ let sha512 = "WvaW1EgRinDQ61khHFZfx30rkPQG5ItaOT0wrI7iJv9A3SbghriQGfZQfHZs25fWLBe6/vkv05LOqg6aDw6Wzw=="; }; }; - "electron-to-chromium-1.4.96" = { + "electron-to-chromium-1.4.103" = { name = "electron-to-chromium"; packageName = "electron-to-chromium"; - version = "1.4.96"; + version = "1.4.103"; src = fetchurl { - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.96.tgz"; - sha512 = "DPNjvNGPabv6FcyjzLAN4C0psN/GgD9rSGvMTuv81SeXG/EX3mCz0wiw9N1tUEnfQXYCJi3H8M0oFPRziZh7rw=="; + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.103.tgz"; + sha512 = "c/uKWR1Z/W30Wy/sx3dkZoj4BijbXX85QKWu9jJfjho3LBAXNEGAEW3oWiGb+dotA6C6BzCTxL2/aLes7jlUeg=="; }; }; "electrum-client-git://github.com/janoside/electrum-client" = { @@ -26630,13 +26747,13 @@ let sha512 = "rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A=="; }; }; - "es-abstract-1.19.1" = { + "es-abstract-1.19.2" = { name = "es-abstract"; packageName = "es-abstract"; - version = "1.19.1"; + version = "1.19.2"; src = fetchurl { - url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.19.1.tgz"; - sha512 = "2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w=="; + url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.19.2.tgz"; + sha512 = "gfSBJoZdlL2xRiOCy0g8gLMryhoe1TlimjzU99L/31Z8QEGIhVQI+EWwt5lT+AuU9SnorVupXFqqOGqGfsyO6w=="; }; }; "es-get-iterator-1.1.2" = { @@ -28025,6 +28142,15 @@ let sha512 = "vJCpKROPULPrTnLTCytZuxBkm23yS9CBXBald2BDeizgKsJV19vOc2+lmTk4fL5hh+TgHQybwtt6UwEy3ORjgg=="; }; }; + "exponential-backoff-3.1.0" = { + name = "exponential-backoff"; + packageName = "exponential-backoff"; + version = "3.1.0"; + src = fetchurl { + url = "https://registry.npmjs.org/exponential-backoff/-/exponential-backoff-3.1.0.tgz"; + sha512 = "oBuz5SYz5zzyuHINoe9ooePwSu0xApKWgeNzok4hZ5YKXFh9zrQBEM15CXqoZkJJPuI2ArvqjPQd8UKJA753XA=="; + }; + }; "express-2.5.11" = { name = "express"; packageName = "express"; @@ -28808,13 +28934,13 @@ let sha512 = "WtySTkS4OKev5JtpHXnib4Gxiurzh5NCGvWrFaZ34m6JehfTUhKZvn9njTfw48t6JumVQOmrKqpmGcdwxnhqBQ=="; }; }; - "faunadb-4.5.2" = { + "faunadb-4.5.4" = { name = "faunadb"; packageName = "faunadb"; - version = "4.5.2"; + version = "4.5.4"; src = fetchurl { - url = "https://registry.npmjs.org/faunadb/-/faunadb-4.5.2.tgz"; - sha512 = "XQ2yDoPZc5/IqC4eS4tP5tjewFbAK8UdQYLDGlUiJy5E9F3rpvYCMdjlkRWcaxOMD2yPYr8NSoql10zy1CNoCA=="; + url = "https://registry.npmjs.org/faunadb/-/faunadb-4.5.4.tgz"; + sha512 = "v0e1aXPhitIGMtuC7NFtp//hyr0d2NtHFcGqsEJgWx49rRJoonZQl6hLQ3lBjhA/LPg26U4R/BAlmDFE2pzsUA=="; }; }; "faye-websocket-0.10.0" = { @@ -29735,13 +29861,13 @@ let sha512 = "jlbUu0XkbpXeXhan5xyTqVK1jmEKNxE8hpzznI3TThHTr76GiFwK0iRzhDo4KNy+S9h/KxHaqVhTP86vA6wHCg=="; }; }; - "flow-parser-0.174.1" = { + "flow-parser-0.175.0" = { name = "flow-parser"; packageName = "flow-parser"; - version = "0.174.1"; + version = "0.175.0"; src = fetchurl { - url = "https://registry.npmjs.org/flow-parser/-/flow-parser-0.174.1.tgz"; - sha512 = "nDMOvlFR+4doLpB3OJpseHZ7uEr3ENptlF6qMas/kzQmNcLzMwfQeFX0gGJ/+em7UdldB/nGsk55tDTOvjbCuw=="; + url = "https://registry.npmjs.org/flow-parser/-/flow-parser-0.175.0.tgz"; + sha512 = "9XG5JGOjhODF+OQF5ufCw8XiGi+8B46scjr3Q49JxN7IDRdT2W+1AOuvKKd6j766/5E7qSuCn/dsq1y3hihntg=="; }; }; "fluent-ffmpeg-2.1.2" = { @@ -30311,13 +30437,13 @@ let sha512 = "KhjJmZAs2eqfhCb6PdPx4RcZtheGTz86tpTC5JTvqBn/xda+Nb+0C7dCyjOSN7T76H6a56LvH0SVXQMchLXDRw=="; }; }; - "fs-chunk-store-2.0.4" = { + "fs-chunk-store-2.0.5" = { name = "fs-chunk-store"; packageName = "fs-chunk-store"; - version = "2.0.4"; + version = "2.0.5"; src = fetchurl { - url = "https://registry.npmjs.org/fs-chunk-store/-/fs-chunk-store-2.0.4.tgz"; - sha512 = "JfeKRPPWkLaUoNKZdi+eLPKzZkZK1pdj2Y5lidEw9fUCkglvK/muLe6ONjdvn8yAGrDsk4tkjNp52GS658yy0g=="; + url = "https://registry.npmjs.org/fs-chunk-store/-/fs-chunk-store-2.0.5.tgz"; + sha512 = "z3c2BmyaHdQTtIVXJDQOvwZVWN2gNU//0IYKK2LuPr+cZyGoIrgDwI4iDASaTUyQbOBtyg/k6GuDZepB6jQIPw=="; }; }; "fs-constants-1.0.0" = { @@ -30725,22 +30851,22 @@ let sha1 = "cbed2d20a40c1f5679a35908e2b9415733e78db9"; }; }; - "gatsby-core-utils-3.10.1" = { + "gatsby-core-utils-3.11.1" = { name = "gatsby-core-utils"; packageName = "gatsby-core-utils"; - version = "3.10.1"; + version = "3.11.1"; src = fetchurl { - url = "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.10.1.tgz"; - sha512 = "WqNMm0u1CAZm6Q+UQ4dDHwIAt3l32NeIaPuSXmDX7QcMGR3FUUk8cl2Ym6gx1hfILm1aCexqfaSCLUXtaWKkbQ=="; + url = "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.11.1.tgz"; + sha512 = "Op9/uihtcsDLlZDfRsGJ1ya2mFx2YH9Zmx93bawElZ0YpIzKjCkNTp+I5i5UANxvs5I+Fljl0WHQRudMWg+fWA=="; }; }; - "gatsby-telemetry-3.10.1" = { + "gatsby-telemetry-3.11.1" = { name = "gatsby-telemetry"; packageName = "gatsby-telemetry"; - version = "3.10.1"; + version = "3.11.1"; src = fetchurl { - url = "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.10.1.tgz"; - sha512 = "935quI1YsQfzYREuvPLNKBb7IUE2vX9p7WoS7Dc9TbV2xDZPTAzeOfX+HE56ZltkxMi8Zivp7mqe5+n//WL7EQ=="; + url = "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.11.1.tgz"; + sha512 = "TPNKTpuYFyULOuRvhpXUtj8h2E7bvrTYsRC/aKeHoWqEchwwbzPwBSJd+3ZFjsxLHIXAa5sTAlR2wd9SYBgOlA=="; }; }; "gauge-1.2.7" = { @@ -30770,13 +30896,13 @@ let sha512 = "+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q=="; }; }; - "gauge-4.0.3" = { + "gauge-4.0.4" = { name = "gauge"; packageName = "gauge"; - version = "4.0.3"; + version = "4.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/gauge/-/gauge-4.0.3.tgz"; - sha512 = "ICw1DhAwMtb22rYFwEHgJcx1JCwJGv3x6G0OQUq56Nge+H4Q8JEwr8iveS0XFlsUNSI67F5ffMGK25bK4Pmskw=="; + url = "https://registry.npmjs.org/gauge/-/gauge-4.0.4.tgz"; + sha512 = "f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg=="; }; }; "gaxios-2.3.4" = { @@ -32139,13 +32265,13 @@ let sha512 = "J55gaCS4iTTJfTXIxSVw3EMQckcqkpdRv3IR7gu6sq0+tbC363Zx6KH/SEwXASK9JRbhyZmVjJEVJIOxYsB3Qg=="; }; }; - "graceful-fs-4.2.9" = { + "graceful-fs-4.2.10" = { name = "graceful-fs"; packageName = "graceful-fs"; - version = "4.2.9"; + version = "4.2.10"; src = fetchurl { - url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.9.tgz"; - sha512 = "NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ=="; + url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz"; + sha512 = "9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA=="; }; }; "graceful-readlink-1.0.1" = { @@ -32157,13 +32283,13 @@ let sha1 = "4cafad76bc62f02fa039b2f94e9a3dd3a391a725"; }; }; - "grammy-1.7.0" = { + "grammy-1.7.1" = { name = "grammy"; packageName = "grammy"; - version = "1.7.0"; + version = "1.7.1"; src = fetchurl { - url = "https://registry.npmjs.org/grammy/-/grammy-1.7.0.tgz"; - sha512 = "Xs4vRzCkSO+8CrFP8BXXOo4BGfBGWTPoDcbj8V3kz/c01XLNXI738HWv6/qjQ+IuPLnd/Qegjy7MBogbymogUg=="; + url = "https://registry.npmjs.org/grammy/-/grammy-1.7.1.tgz"; + sha512 = "7a4mFIGpFZgjk1G+CbFudOX8y8J5HzHkP19eYuEcv1Dif5IITYVDoQxa5GTORL6dsmmQ/sdZQ3QXuT1DMq6gbg=="; }; }; "grant-4.7.0" = { @@ -32283,13 +32409,13 @@ let sha512 = "MBY0wEjvcgJtZUyoqpPvOE1e5qPI0hJaa1gKTqjonSFiCsNHX2lykNjpOPcodmAgH1V06ELxhGnm9kcVzqvi/g=="; }; }; - "graphql-config-4.1.0" = { + "graphql-config-4.3.0" = { name = "graphql-config"; packageName = "graphql-config"; - version = "4.1.0"; + version = "4.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/graphql-config/-/graphql-config-4.1.0.tgz"; - sha512 = "Myqay6pmdcmX3KqoH+bMbeKZ1cTODpHS2CxF1ZzNnfTE+YUpGTcp01bOw6LpzamRb0T/WTYtGFbZeXGo9Hab2Q=="; + url = "https://registry.npmjs.org/graphql-config/-/graphql-config-4.3.0.tgz"; + sha512 = "Uiu3X7+s5c056WyrvdZVz2vG1fhAipMlYmtiCU/4Z2mX79OXDr1SqIon2MprC/pExIWJfAQZCcjYDY76fPBUQg=="; }; }; "graphql-executor-0.0.22" = { @@ -33813,13 +33939,13 @@ let sha512 = "jWTtP3dCd7R8x/tt9DK3pvpcQd7HDMcRPUqPxr/i9989q2k5RHIhmlRDFeyQ/LSd8IKrteG8Ce5g0Ig4eGIipg=="; }; }; - "htmlnano-2.0.0" = { + "htmlnano-2.0.1" = { name = "htmlnano"; packageName = "htmlnano"; - version = "2.0.0"; + version = "2.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/htmlnano/-/htmlnano-2.0.0.tgz"; - sha512 = "thKQfhcp2xgtsWNE27A2bliEeqVL5xjAgGn0wajyttvFFsvFWWah1ntV9aEX61gz0T6MBQ5xK/1lXuEumhJTcg=="; + url = "https://registry.npmjs.org/htmlnano/-/htmlnano-2.0.1.tgz"; + sha512 = "SIe/X2W5/9hmB4sFSw4HxQEMR1ERq+GXvasJQiatjKWEv6QCuvNHfPqeW8DRNtuGHOPlsfuFz0SbAStv63ZMvw=="; }; }; "htmlparser2-3.10.1" = { @@ -35154,6 +35280,15 @@ let sha512 = "firNp1q3xxTzoItj/eOOSZQnYSlyrWks5llCTVX37nJ59K3eXbQ8PtzCguqo8YI19EELo5QxaKnJd4VxzhU8tg=="; }; }; + "ink-select-input-4.2.1" = { + name = "ink-select-input"; + packageName = "ink-select-input"; + version = "4.2.1"; + src = fetchurl { + url = "https://registry.npmjs.org/ink-select-input/-/ink-select-input-4.2.1.tgz"; + sha512 = "WvlrYdwmdnD6/nE/9mNhaaanTQOKmwy/hT/vuAqbDec3PUQBQ8Pkwszii/8eGvDTx5bGiUHu18P9D5IoB/ERaw=="; + }; + }; "ink-spinner-4.0.3" = { name = "ink-spinner"; packageName = "ink-spinner"; @@ -35289,15 +35424,6 @@ let sha512 = "0crLweprevJ02tTuA6ThpoAERAGyVILC4sS74uib58Xf/zSr1/ZWtmm7D5CI+bSQEaA04f0K7idaHpQbSWgiVQ=="; }; }; - "inquirer-8.2.1" = { - name = "inquirer"; - packageName = "inquirer"; - version = "8.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/inquirer/-/inquirer-8.2.1.tgz"; - sha512 = "pxhBaw9cyTFMjwKtkjePWDhvwzvrNGAw7En4hottzlPvz80GZaMZthdDU35aA6/f5FRZf3uhE057q8w1DE3V2g=="; - }; - }; "inquirer-8.2.2" = { name = "inquirer"; packageName = "inquirer"; @@ -36729,13 +36855,13 @@ let sha512 = "6rZi3ezCyFcn5L71ywzz2bS5b2Igl1En3eTlZlvKjpz1n3IZLAYMbKYAIQgFmEu0GENg92ziU/faEOA/aixjbA=="; }; }; - "is-number-object-1.0.6" = { + "is-number-object-1.0.7" = { name = "is-number-object"; packageName = "is-number-object"; - version = "1.0.6"; + version = "1.0.7"; src = fetchurl { - url = "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.6.tgz"; - sha512 = "bEVOqiRcvo3zO1+G2lVMy+gkkEm9Yh7cDMRusKKu5ZJKPUYSJwICTKZrNKHA2EbSP0Tu0+6B/emsYNHZyn6K8g=="; + url = "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz"; + sha512 = "k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ=="; }; }; "is-obj-1.0.1" = { @@ -37125,13 +37251,13 @@ let sha512 = "+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g=="; }; }; - "is-shared-array-buffer-1.0.1" = { + "is-shared-array-buffer-1.0.2" = { name = "is-shared-array-buffer"; packageName = "is-shared-array-buffer"; - version = "1.0.1"; + version = "1.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.1.tgz"; - sha512 = "IU0NmyknYZN0rChcKhRO1X8LYz5Isj/Fsqh8NJOSf+N/hCOTwy29F32Ik7a+QszE63IdvmwdTPDd6cZ5pg4cwA=="; + url = "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz"; + sha512 = "sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA=="; }; }; "is-ssh-1.3.3" = { @@ -38044,13 +38170,13 @@ let sha512 = "NnRs6dsyqUXejqk/yv2aiXlAvOs56sLkX6nUdeaNezI5LFFLlsZjOThmwnrcwh5ZZRwZlCMnVAY3CvhIhoVEKQ=="; }; }; - "js-beautify-1.14.0" = { + "js-beautify-1.14.2" = { name = "js-beautify"; packageName = "js-beautify"; - version = "1.14.0"; + version = "1.14.2"; src = fetchurl { - url = "https://registry.npmjs.org/js-beautify/-/js-beautify-1.14.0.tgz"; - sha512 = "yuck9KirNSCAwyNJbqW+BxJqJ0NLJ4PwBUzQQACl5O3qHMBXVkXb/rD0ilh/Lat/tn88zSZ+CAHOlk0DsY7GuQ=="; + url = "https://registry.npmjs.org/js-beautify/-/js-beautify-1.14.2.tgz"; + sha512 = "H85kX95a53os+q1OCqtYe8AXAmgy3BvtysA/V83S3fdhznm6WlUpGi14DqSPbKFsL3dXZFXYl7YQwW9U1+76ng=="; }; }; "js-git-0.7.8" = { @@ -38368,13 +38494,13 @@ let sha512 = "ZUzuO2JgnxE01tgIdZorsUZj5jiHP8uxeLDU/vsnmnAU2ZbMHFDT1cWacoAKESDnCyFF8VRCuPXHx8e5/SOXig=="; }; }; - "jsii-srcmak-0.1.512" = { + "jsii-srcmak-0.1.521" = { name = "jsii-srcmak"; packageName = "jsii-srcmak"; - version = "0.1.512"; + version = "0.1.521"; src = fetchurl { - url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.512.tgz"; - sha512 = "AA/WSd6ysD6xPrwLvsXOnbgwgN+TlX9ApXBNTsZohQxlKEnyyQAPt945rW9cu/cdNbpc/U/Dnig3CLqDn+PogQ=="; + url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.521.tgz"; + sha512 = "cZv5C7kMUz+UZqZsZpmz+xDWZCC8VNJNRo/nO+1uuzKuBk1XRAvKOEiMI5E//tZqRuv2BXuyGIhyJOMrOpP4dg=="; }; }; "json-bigint-1.0.0" = { @@ -38674,13 +38800,13 @@ let sha512 = "0/4Lv6IenJV0qj2oBdgPIAmFiKKnh8qh7bmLFJ+/ZZHLjSeiL3fKKGX3UryvKPbxFbhV+JcYo9KUC19GJ/Z/4A=="; }; }; - "json2jsii-0.2.172" = { + "json2jsii-0.2.181" = { name = "json2jsii"; packageName = "json2jsii"; - version = "0.2.172"; + version = "0.2.181"; src = fetchurl { - url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.2.172.tgz"; - sha512 = "SXqltdQ3byo8XEsClMR5xnV6US5MWu0rBJdAC3NcvFCb0jgzu0V8ljfNJWEJJUKInuQWAsJ788ep5oKbLf3W7g=="; + url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.2.181.tgz"; + sha512 = "pFUtkCYepbjES8GBuxzkHXEuQyx7CE2VZp6OouvjbrFYJTx3SbbDXmyPuk/ytiD2pPBblwlpb+9VOohxBxXZsQ=="; }; }; "json3-3.2.6" = { @@ -39034,13 +39160,13 @@ let sha1 = "b88f3a7b2e67a2a048152982c7a3756d9c4828f0"; }; }; - "jszip-3.7.1" = { + "jszip-3.9.0" = { name = "jszip"; packageName = "jszip"; - version = "3.7.1"; + version = "3.9.0"; src = fetchurl { - url = "https://registry.npmjs.org/jszip/-/jszip-3.7.1.tgz"; - sha512 = "ghL0tz1XG9ZEmRMcEN2vt7xabrDdqHHeykgARpmZ0BiIctWxM47Vt63ZO2dnp4QYt/xJVLLy5Zv1l/xRdh2byg=="; + url = "https://registry.npmjs.org/jszip/-/jszip-3.9.0.tgz"; + sha512 = "Vb3SMfASUN1EKrFzv5A5+lTaZnzLzT5E6A9zyT7WFqMSfhT2Z7iS5FgSOjx2Olm3MDj8OqKj6GHyP2kMt1Ir6w=="; }; }; "junk-3.1.0" = { @@ -39088,13 +39214,13 @@ let sha512 = "X00TokkRIDotUIf3EV4xUm6ELc/IkqhS/vPSHdWnsM5y0HoNMfEqrazizI7g78lpHvnRSRt/PFfKtRqJCOGIuQ=="; }; }; - "just-diff-apply-4.0.1" = { + "just-diff-apply-5.2.0" = { name = "just-diff-apply"; packageName = "just-diff-apply"; - version = "4.0.1"; + version = "5.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/just-diff-apply/-/just-diff-apply-4.0.1.tgz"; - sha512 = "AKOkzB5P6FkfP21UlZVX/OPXx/sC2GagpLX9cBxqHqDuRjwmZ/AJRKSNrB9jHPpRW1W1ONs6gly1gW46t055nQ=="; + url = "https://registry.npmjs.org/just-diff-apply/-/just-diff-apply-5.2.0.tgz"; + sha512 = "unjtin7rnng0KUpE4RPWwTl8iwWiZuyZqOQ+vm8orV6aIXX8mHN8zlKCPPbOycfDNuLh2PBazbFhNoDJv4S/FA=="; }; }; "jwa-1.4.1" = { @@ -39349,13 +39475,13 @@ let sha512 = "9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA=="; }; }; - "keyv-4.1.1" = { + "keyv-4.2.1" = { name = "keyv"; packageName = "keyv"; - version = "4.1.1"; + version = "4.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/keyv/-/keyv-4.1.1.tgz"; - sha512 = "tGv1yP6snQVDSM4X6yxrv2zzq/EvpW+oYiUz6aueW1u9CtS8RzUQYxxmFwgZlO2jSgCxQbchhxaqXXp2hnKGpQ=="; + url = "https://registry.npmjs.org/keyv/-/keyv-4.2.1.tgz"; + sha512 = "cAJq5cTfxQdq1DHZEVNpnk4mEvhP+8UP8UQftLtTtJ98beKkRHf+62M0mIDM2u/IWXyP8bmGB375/6uGdSX2MA=="; }; }; "khroma-1.4.1" = { @@ -40240,6 +40366,15 @@ let sha512 = "ryJlD9qhbUSq4ZS6Q0WXnTgmj3IMqN1iBfUJoGAMzSbSGZAS8E8eejci88naBbbDA0N34hALpSsa5Ok7JayAdQ=="; }; }; + "lightning-5.8.6" = { + name = "lightning"; + packageName = "lightning"; + version = "5.8.6"; + src = fetchurl { + url = "https://registry.npmjs.org/lightning/-/lightning-5.8.6.tgz"; + sha512 = "qiKxXH81vfxJdR1TbY095IKjD7kwbiWbdGcGHs1GMaAxxcGo/iqf5F+VDWHwGjSlPMohMI827vN0JHqZQKcojA=="; + }; + }; "lilconfig-2.0.5" = { name = "lilconfig"; packageName = "lilconfig"; @@ -40474,6 +40609,15 @@ let sha512 = "vB7pnTJveZSMHbyO6qyGbxNqo+rNTYexb3PONon2+Ow4fBUQW5eeBTj+LguuQdN7AgpXX/PHZUQM0TPFeHlVWw=="; }; }; + "ln-service-53.9.4" = { + name = "ln-service"; + packageName = "ln-service"; + version = "53.9.4"; + src = fetchurl { + url = "https://registry.npmjs.org/ln-service/-/ln-service-53.9.4.tgz"; + sha512 = "JHPpLaJJ3LSyytDdor9V5GQViEI06kZlxtE6SJeyL+/KAL+feC6Iz/6AlE39pmb1ymm1/CihtSeYcQmgreXlgA=="; + }; + }; "ln-sync-3.11.0" = { name = "ln-sync"; packageName = "ln-sync"; @@ -40483,13 +40627,13 @@ let sha512 = "YqtS0v6zsDvv7rA51bSbXnB7Il4HQida+FpPD9KTAXdEiJW1L/NiyV4B+oosaygdUbT2oYgM3xw++L7XVBkPvA=="; }; }; - "ln-telegram-3.20.0" = { + "ln-telegram-3.21.0" = { name = "ln-telegram"; packageName = "ln-telegram"; - version = "3.20.0"; + version = "3.21.0"; src = fetchurl { - url = "https://registry.npmjs.org/ln-telegram/-/ln-telegram-3.20.0.tgz"; - sha512 = "gPh5EG0sNQUoqnn0Y1SeXXV0rNZN05LC8uKnvCbjPeHrFdx+3TdRLlMrsSITJL1xwATVtxN4+YWMuCSMEU7S+g=="; + url = "https://registry.npmjs.org/ln-telegram/-/ln-telegram-3.21.0.tgz"; + sha512 = "a1MvI5yMUStDZ7tOnPeh3nz6yftIESRw/R79oeh2eSvYbS6AGel35pKJ5E+aXVWuQR+0jeA3uGKKBBI1LGc9mw=="; }; }; "load-bmfont-1.4.1" = { @@ -42409,13 +42553,13 @@ let sha512 = "Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA=="; }; }; - "lru-cache-7.7.1" = { + "lru-cache-7.7.3" = { name = "lru-cache"; packageName = "lru-cache"; - version = "7.7.1"; + version = "7.7.3"; src = fetchurl { - url = "https://registry.npmjs.org/lru-cache/-/lru-cache-7.7.1.tgz"; - sha512 = "cRffBiTW8s73eH4aTXqBcTLU0xQnwGV3/imttRHGWCrbergmnK4D6JXQd8qin5z43HnDwRI+o7mVW0LEB+tpAw=="; + url = "https://registry.npmjs.org/lru-cache/-/lru-cache-7.7.3.tgz"; + sha512 = "WY9wjJNQt9+PZilnLbuFKM+SwDull9+6IAguOrarOMoOHTcJ9GnXSO11+Gw6c7xtDkBkthR57OZMtZKYr+1CEw=="; }; }; "lru-queue-0.1.0" = { @@ -42680,13 +42824,22 @@ let sha512 = "s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw=="; }; }; - "make-fetch-happen-10.1.0" = { + "make-fetch-happen-10.1.1" = { name = "make-fetch-happen"; packageName = "make-fetch-happen"; - version = "10.1.0"; + version = "10.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-10.1.0.tgz"; - sha512 = "HeP4QlkadP/Op+hE+Une1070kcyN85FshQObku3/rmzRh4zDcKXA19d2L3AQR6UoaX3uZmhSOpTLH15b1vOFvQ=="; + url = "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-10.1.1.tgz"; + sha512 = "3/mCljDQNjmrP7kl0vhS5WVlV+TvSKoZaFhdiYV7MOijEnrhrjaVnqbp/EY/7S+fhUB2KpH7j8c1iRsIOs+kjw=="; + }; + }; + "make-fetch-happen-10.1.2" = { + name = "make-fetch-happen"; + packageName = "make-fetch-happen"; + version = "10.1.2"; + src = fetchurl { + url = "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-10.1.2.tgz"; + sha512 = "GWMGiZsKVeJACQGJ1P3Z+iNec7pLsU6YW1q11eaPn3RR8nRXHppFWfP7Eu0//55JK3hSjrAQRl8sDa5uXpq1Ew=="; }; }; "make-fetch-happen-8.0.14" = { @@ -42905,13 +43058,13 @@ let sha512 = "/V1MnLL/rgJ3jkMWo84UR+K+jF1cxNG1a+KwqeXqTIJ+jtA8aWSHuigx8lTzauiIjBDbwF3NcWQMotd0Dm39jA=="; }; }; - "markdown-it-anchor-8.4.1" = { + "markdown-it-anchor-8.5.0" = { name = "markdown-it-anchor"; packageName = "markdown-it-anchor"; - version = "8.4.1"; + version = "8.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/markdown-it-anchor/-/markdown-it-anchor-8.4.1.tgz"; - sha512 = "sLODeRetZ/61KkKLJElaU3NuU2z7MhXf12Ml1WJMSdwpngeofneCRF+JBbat8HiSqhniOMuTemXMrsI7hA6XyA=="; + url = "https://registry.npmjs.org/markdown-it-anchor/-/markdown-it-anchor-8.5.0.tgz"; + sha512 = "ii8jRFS4Sxny0nevOOQZqZKswcZyXnD00AlPKctM0PkNRVsT1/2fQMQPXAdWmRz9kYrMupElsEwCikR7Fd2JFQ=="; }; }; "markdown-it-deflist-2.1.0" = { @@ -45398,6 +45551,15 @@ let sha512 = "kHmoybcPV8Sqy59DwNDY3Jefr64lK/by/da0ViFcuA4DH0vQg5Q6Ze5VimxkfQNSC+Mls/Kx53s7TjP1RhFEDQ=="; }; }; + "moment-2.29.2" = { + name = "moment"; + packageName = "moment"; + version = "2.29.2"; + src = fetchurl { + url = "https://registry.npmjs.org/moment/-/moment-2.29.2.tgz"; + sha512 = "UgzG4rvxYpN15jgCmVJwac49h9ly9NurikMWGPdVxm8GZD6XjkKPxDTjQQ43gtGgnV3X0cAyWDdP2Wexoquifg=="; + }; + }; "moment-2.7.0" = { name = "moment"; packageName = "moment"; @@ -45434,13 +45596,13 @@ let sha512 = "3zAEHh2hKUs3EXLESx/wsgw6IQdusOT8Bxm3D9UrHPQR7zlMmzwybC8zHEM1tQ4LJwP7fcxrWr8tuBg05fFCbg=="; }; }; - "mongodb-4.4.1" = { + "mongodb-4.5.0" = { name = "mongodb"; packageName = "mongodb"; - version = "4.4.1"; + version = "4.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/mongodb/-/mongodb-4.4.1.tgz"; - sha512 = "IAD3nFtCR4s22vi5qjqkCBnuyDDrOW8WVSSmgHquOvGaP1iTD+XpC5tr8wAUbZ2EeZkaswwBKQFHDvl4qYcKqQ=="; + url = "https://registry.npmjs.org/mongodb/-/mongodb-4.5.0.tgz"; + sha512 = "A2l8MjEpKojnhbCM0MK3+UOGUSGvTNNSv7AkP1fsT7tkambrkkqN/5F2y+PhzsV0Nbv58u04TETpkaSEdI2zKA=="; }; }; "mongodb-connection-string-url-2.5.2" = { @@ -45704,13 +45866,67 @@ let sha512 = "JG0V47xRIQ9pyUnx6Hb4+3TrQoia2nA3UIdmyTldhxaxtKFkekkKpUW/N6fwHwod9o4BGuJGtouxOk+yCP5PEA=="; }; }; - "msgpackr-extract-1.0.16" = { + "msgpackr-extract-1.1.0" = { name = "msgpackr-extract"; packageName = "msgpackr-extract"; - version = "1.0.16"; + version = "1.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/msgpackr-extract/-/msgpackr-extract-1.0.16.tgz"; - sha512 = "fxdRfQUxPrL/TizyfYfMn09dK58e+d65bRD/fcaVH4052vj30QOzzqxcQIS7B0NsqlypEQ/6Du3QmP2DhWFfCA=="; + url = "https://registry.npmjs.org/msgpackr-extract/-/msgpackr-extract-1.1.0.tgz"; + sha512 = "9QxKc4KYr7bNV0/2JPDbRIxCgMEYhDiZtOszvA+eH8Rx8IOOSv3bzP95RoxREwgekdXej+/GhA2Y6paSNBYsgA=="; + }; + }; + "msgpackr-extract-darwin-arm64-1.1.0" = { + name = "msgpackr-extract-darwin-arm64"; + packageName = "msgpackr-extract-darwin-arm64"; + version = "1.1.0"; + src = fetchurl { + url = "https://registry.npmjs.org/msgpackr-extract-darwin-arm64/-/msgpackr-extract-darwin-arm64-1.1.0.tgz"; + sha512 = "s1kHoT12tS2cCQOv+Wl3I+/cYNJXBPtwQqGA+dPYoXmchhXiE0Nso+BIfvQ5PxbmAyjj54Q5o7PnLTqVquNfZA=="; + }; + }; + "msgpackr-extract-darwin-x64-1.1.0" = { + name = "msgpackr-extract-darwin-x64"; + packageName = "msgpackr-extract-darwin-x64"; + version = "1.1.0"; + src = fetchurl { + url = "https://registry.npmjs.org/msgpackr-extract-darwin-x64/-/msgpackr-extract-darwin-x64-1.1.0.tgz"; + sha512 = "yx/H/i12IKg4eWGu/eKdKzJD4jaYvvujQSaVmeOMCesbSQnWo5X6YR9TFjoiNoU9Aexk1KufzL9gW+1DozG1yw=="; + }; + }; + "msgpackr-extract-linux-arm-1.1.0" = { + name = "msgpackr-extract-linux-arm"; + packageName = "msgpackr-extract-linux-arm"; + version = "1.1.0"; + src = fetchurl { + url = "https://registry.npmjs.org/msgpackr-extract-linux-arm/-/msgpackr-extract-linux-arm-1.1.0.tgz"; + sha512 = "0VvSCqi12xpavxl14gMrauwIzHqHbmSChUijy/uo3mpjB1Pk4vlisKpZsaOZvNJyNKj0ACi5jYtbWnnOd7hYGw=="; + }; + }; + "msgpackr-extract-linux-arm64-1.1.0" = { + name = "msgpackr-extract-linux-arm64"; + packageName = "msgpackr-extract-linux-arm64"; + version = "1.1.0"; + src = fetchurl { + url = "https://registry.npmjs.org/msgpackr-extract-linux-arm64/-/msgpackr-extract-linux-arm64-1.1.0.tgz"; + sha512 = "AxFle3fHNwz2V4CYDIGFxI6o/ZuI0lBKg0uHI8EcCMUmDE5mVAUWYge5WXmORVvb8sVWyVgFlmi3MTu4Ve6tNQ=="; + }; + }; + "msgpackr-extract-linux-x64-1.1.0" = { + name = "msgpackr-extract-linux-x64"; + packageName = "msgpackr-extract-linux-x64"; + version = "1.1.0"; + src = fetchurl { + url = "https://registry.npmjs.org/msgpackr-extract-linux-x64/-/msgpackr-extract-linux-x64-1.1.0.tgz"; + sha512 = "O+XoyNFWpdB8oQL6O/YyzffPpmG5rTNrr1nKLW70HD2ENJUhcITzbV7eZimHPzkn8LAGls1tBaMTHQezTBpFOw=="; + }; + }; + "msgpackr-extract-win32-x64-1.1.0" = { + name = "msgpackr-extract-win32-x64"; + packageName = "msgpackr-extract-win32-x64"; + version = "1.1.0"; + src = fetchurl { + url = "https://registry.npmjs.org/msgpackr-extract-win32-x64/-/msgpackr-extract-win32-x64-1.1.0.tgz"; + sha512 = "6AJdM5rNsL4yrskRfhujVSPEd6IBpgvsnIT/TPowKNLQ62iIdryizPY2PJNFiW3AJcY249AHEiDBXS1cTDPxzA=="; }; }; "multer-1.4.3" = { @@ -46208,6 +46424,15 @@ let sha512 = "n6Vs/3KGyxPQd6uO0eH4Bv0ojGSUvuLlIHtC3Y0kEO23YRge8H9x1GCzLn28YX0H66pMkxuaeESFq4tKISKwdw=="; }; }; + "nanoid-3.3.2" = { + name = "nanoid"; + packageName = "nanoid"; + version = "3.3.2"; + src = fetchurl { + url = "https://registry.npmjs.org/nanoid/-/nanoid-3.3.2.tgz"; + sha512 = "CuHBogktKwpm5g2sRgv83jEy2ijFzBwMoYA60orPDR7ynsLijJDqgsi4RDGj3OJpy3Ieb+LYwiRmIOGyytgITA=="; + }; + }; "nanoiterator-1.2.1" = { name = "nanoiterator"; packageName = "nanoiterator"; @@ -46623,13 +46848,13 @@ let sha512 = "SrQrok4CATudVzBS7coSz26QRSmlK9TzzoFbeKfcPBUFPjcQM9Rqvr/DlJkOrwI/0KcgvMub1n1g5Jt9EgRn4A=="; }; }; - "nested-error-stacks-2.1.0" = { + "nested-error-stacks-2.1.1" = { name = "nested-error-stacks"; packageName = "nested-error-stacks"; - version = "2.1.0"; + version = "2.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/nested-error-stacks/-/nested-error-stacks-2.1.0.tgz"; - sha512 = "AO81vsIO1k1sM4Zrd6Hu7regmJN1NSiAja10gc4bX3F0wd+9rQmcuHQaHVQCYIEC8iFXnE+mavh23GOt7wBgug=="; + url = "https://registry.npmjs.org/nested-error-stacks/-/nested-error-stacks-2.1.1.tgz"; + sha512 = "9iN1ka/9zmX1ZvLV9ewJYEk9h7RyRRtqdK0woXcqohu8EWIerfPUjYJPg0ULy0UqP7cslmdGc8xKDJcojlKiaw=="; }; }; "netmask-1.0.6" = { @@ -47136,13 +47361,13 @@ let sha512 = "G6RlQt5Sb4GMBzXvhfkeFmbqR6MzhtnT7VTHuLadjkii3rdYHNdw0m8zA4BTxVIh68FicCQ2NSUANpsqkr9jvQ=="; }; }; - "node-forge-1.3.0" = { + "node-forge-1.3.1" = { name = "node-forge"; packageName = "node-forge"; - version = "1.3.0"; + version = "1.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/node-forge/-/node-forge-1.3.0.tgz"; - sha512 = "08ARB91bUi6zNKzVmaj3QO7cr397uiDT2nJ63cHjyNtCTWIgvS47j3eT0WfzUwS9+6Z5YshRaoasFkXCKrIYbA=="; + url = "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz"; + sha512 = "dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA=="; }; }; "node-gyp-3.8.0" = { @@ -47199,13 +47424,23 @@ let sha512 = "dSq1xmcPDKPZ2EED2S6zw/b9NKsqzXRE6dVr8TVQnI3FJOTteUMuqF3Qqs6LZg+mLGYJWqQzMbIjMtJqTv87nQ=="; }; }; - "node-gyp-build-4.3.0" = { + "node-gyp-build-4.4.0" = { + name = "node-gyp-build"; + packageName = "node-gyp-build"; + version = "4.4.0"; + src = fetchurl { + url = "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.4.0.tgz"; + sha512 = "amJnQCcgtRVw9SvoebO3BKGESClrfXGCUTX9hSn1OuGQTQBOZmVd0Z0OlecpuRksKvbsUqALE8jls/ErClAPuQ=="; + }; + }; + "node-gyp-build-git://github.com/kriszyp/node-gyp-build#optional-packages" = { name = "node-gyp-build"; packageName = "node-gyp-build"; version = "4.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.3.0.tgz"; - sha512 = "iWjXZvmboq0ja1pUGULQBexmxq8CV4xBhX7VDOTbL7ZR4FOowwY/VOtRxBN/yKxmdGoIp4j5ysNT4u3S2pDQ3Q=="; + src = fetchgit { + url = "git://github.com/kriszyp/node-gyp-build"; + rev = "c9952cb77e89d2cd8b6c2d4d056a06d41834b305"; + sha256 = "c94d85ea73a0770f4e6c6af7967d19ddf09dd721fb0d6d097a0124e976df6487"; }; }; "node-hid-2.1.1" = { @@ -47847,6 +48082,15 @@ let sha512 = "09OmyDkNLYwqKPOnbI8exiOZU2GVVmQp7tgez2BPi5OZC8M82elDAps7sxC4l//uSUtotWqoEIDwjRvWH4qz8w=="; }; }; + "npm-install-checks-5.0.0" = { + name = "npm-install-checks"; + packageName = "npm-install-checks"; + version = "5.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/npm-install-checks/-/npm-install-checks-5.0.0.tgz"; + sha512 = "65lUsMI8ztHCxFz5ckCEC44DRvEGdZX5usQFriauxHEwt7upv1FKaQEmAtU0YnOAdwuNWCmk64xYiQABNrEyLA=="; + }; + }; "npm-keyword-5.0.0" = { name = "npm-keyword"; packageName = "npm-keyword"; @@ -47919,13 +48163,13 @@ let sha512 = "LhgZrg0n0VgvzVdSm1oiZworPbTxYHUJCgtsJW8mGvlDpxTM1vSJc3m5QZeUkhAHIzbz3VCHd/R4osi1L1Tg/Q=="; }; }; - "npm-package-arg-9.0.1" = { + "npm-package-arg-9.0.2" = { name = "npm-package-arg"; packageName = "npm-package-arg"; - version = "9.0.1"; + version = "9.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-9.0.1.tgz"; - sha512 = "Xs9wznfEAmZAR61qsYH3iN24V/qMYYkvAR5CRQNMvC6PjN2fHtO8y9XP/xdp5K+Icx+u1wMBMgWRPCmAEChSog=="; + url = "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-9.0.2.tgz"; + sha512 = "v/miORuX8cndiOheW8p2moNuPJ7QhcFh9WGlTorruG8hXSA23vMTEp5hTCmDxic0nD8KHhj/NQgFuySD3GYY3g=="; }; }; "npm-packlist-1.4.8" = { @@ -47973,13 +48217,13 @@ let sha512 = "dBsdBtORT84S8V8UTad1WlUyKIY9iMsAmqxHbLdeEeBNMLQDlDWWra3wYUx9EBEIiG/YwAy0XyNHDd2goAsfuA=="; }; }; - "npm-pick-manifest-7.0.0" = { + "npm-pick-manifest-7.0.1" = { name = "npm-pick-manifest"; packageName = "npm-pick-manifest"; - version = "7.0.0"; + version = "7.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/npm-pick-manifest/-/npm-pick-manifest-7.0.0.tgz"; - sha512 = "njM1AcdioFaKd0JSGtLO09YA1WRwctjGQJbnHGmKS+u+uwP8oFvtZtOQWPYdxrnY5eJud3wn8OpH4sEIx6+GEQ=="; + url = "https://registry.npmjs.org/npm-pick-manifest/-/npm-pick-manifest-7.0.1.tgz"; + sha512 = "IA8+tuv8KujbsbLQvselW2XQgmXWS47t3CB0ZrzsRZ82DbDfkcFunOaPm4X7qNuhMfq+FmV7hQT4iFVpHqV7mg=="; }; }; "npm-prefix-1.2.0" = { @@ -49576,22 +49820,22 @@ let sha512 = "0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g=="; }; }; - "ot-builder-1.5.0" = { + "ot-builder-1.5.1" = { name = "ot-builder"; packageName = "ot-builder"; - version = "1.5.0"; + version = "1.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/ot-builder/-/ot-builder-1.5.0.tgz"; - sha512 = "taCpdbAu+OFogPf5AMdGMt2PnAGER7p4B4EWmIoMh00ZyDcyOVwgbV5V7z64wxo24tAaWXGwLqWOcI2K0SdWhQ=="; + url = "https://registry.npmjs.org/ot-builder/-/ot-builder-1.5.1.tgz"; + sha512 = "i5kUXVflf7Ek10jTng/E4pVt9F/8PpIQ5p3estArHrzi6OL2EfsqeQskz3IKoAhNjjfsq1h/+MpL3yNu6ZYoVg=="; }; }; - "otb-ttc-bundle-1.5.0" = { + "otb-ttc-bundle-1.5.1" = { name = "otb-ttc-bundle"; packageName = "otb-ttc-bundle"; - version = "1.5.0"; + version = "1.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/otb-ttc-bundle/-/otb-ttc-bundle-1.5.0.tgz"; - sha512 = "wiavReuHttWgXplMV/T86jiT+dYPOZCq1UtsJR11m8ddI2BnDxhNZcg65OlkGU0Iq4tQmyjVG2PdX2sGH319XQ=="; + url = "https://registry.npmjs.org/otb-ttc-bundle/-/otb-ttc-bundle-1.5.1.tgz"; + sha512 = "i6c3SBvEHyxnptFm0uoRNbfGt6UuXnQOIChG65IFlj9OizEZhqkdwPs+AQ3CZcHcsj6/lXCs20lFOtMOYeScEg=="; }; }; "ow-0.21.0" = { @@ -50251,15 +50495,6 @@ let sha1 = "ad1f22ce1bf0fdc0d6ddd908af17f351a404b8ac"; }; }; - "paid-services-3.14.2" = { - name = "paid-services"; - packageName = "paid-services"; - version = "3.14.2"; - src = fetchurl { - url = "https://registry.npmjs.org/paid-services/-/paid-services-3.14.2.tgz"; - sha512 = "Juz+H52DcDe8m0DlYm3oPN1Lf3VKLG5p7/CiiNBoLbZ7vkgO1BU6v71nv1klrvYIJBL9+uwuzgDxWaqYqw4Yxw=="; - }; - }; "paid-services-3.14.4" = { name = "paid-services"; packageName = "paid-services"; @@ -50269,6 +50504,15 @@ let sha512 = "DLmutrDtOoxgcaiyZcdzD6nIVFwMwnkcriJhZEvVNeyzXlB+aNySn5MpB4YPlDtxKuSd6use+JZxQ5RzifcJ4g=="; }; }; + "paid-services-3.14.5" = { + name = "paid-services"; + packageName = "paid-services"; + version = "3.14.5"; + src = fetchurl { + url = "https://registry.npmjs.org/paid-services/-/paid-services-3.14.5.tgz"; + sha512 = "oFfpfIeXLJfulqQNupGyWukEgt5yFVm+hNulRm9PCfS9Tr+9akZvW1ZvmakNxuwZugaJqkAgZaDi0xIe9v9Fdw=="; + }; + }; "pako-0.2.9" = { name = "pako"; packageName = "pako"; @@ -50413,13 +50657,13 @@ let sha512 = "bjnliEOmGv3y1aMEfREMBJ9tfL3WR0i0CKPj61DnSLaoxWR3nLrsQrEbCId/8rF4NyRF0cCqisSVXyQYWM+mCQ=="; }; }; - "parse-conflict-json-2.0.1" = { + "parse-conflict-json-2.0.2" = { name = "parse-conflict-json"; packageName = "parse-conflict-json"; - version = "2.0.1"; + version = "2.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/parse-conflict-json/-/parse-conflict-json-2.0.1.tgz"; - sha512 = "Y7nYw+QaSGBto1LB9lgwOR05Rtz5SbuTf+Oe7HJ6SYQ/DHsvRjQ8O03oWdJbvkt6GzDWospgyZbGmjDYL0sDgA=="; + url = "https://registry.npmjs.org/parse-conflict-json/-/parse-conflict-json-2.0.2.tgz"; + sha512 = "jDbRGb00TAPFsKWCpZZOT93SxVP9nONOSgES3AevqRq/CHvavEBvKAjxX9p5Y5F0RZLxH9Ufd9+RwtCsa+lFDA=="; }; }; "parse-english-4.2.0" = { @@ -51655,13 +51899,13 @@ let sha512 = "IWo0HwnxUEH9OtQ3qEZsKUbpdStRSomS18Gx4UV5JT1fj/E/opYGZMgpcdzC1+3ouBJECV1evzt0778S2RJ+/Q=="; }; }; - "pkg-5.5.2" = { + "pkg-5.6.0" = { name = "pkg"; packageName = "pkg"; - version = "5.5.2"; + version = "5.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/pkg/-/pkg-5.5.2.tgz"; - sha512 = "pD0UB2ud01C6pVv2wpGsTYJrXI/bnvGRYvMLd44wFzA1p+A2jrlTGFPAYa7YEYzmitXhx23PqalaG1eUEnSwcA=="; + url = "https://registry.npmjs.org/pkg/-/pkg-5.6.0.tgz"; + sha512 = "mHrAVSQWmHA41RnUmRpC7pK9lNnMfdA16CF3cqOI22a8LZxOQzF7M8YWtA2nfs+d7I0MTDXOtkDsAsFXeCpYjg=="; }; }; "pkg-conf-1.1.3" = { @@ -51709,13 +51953,13 @@ let sha512 = "NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA=="; }; }; - "pkg-fetch-3.2.6" = { + "pkg-fetch-3.3.0" = { name = "pkg-fetch"; packageName = "pkg-fetch"; - version = "3.2.6"; + version = "3.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/pkg-fetch/-/pkg-fetch-3.2.6.tgz"; - sha512 = "Q8fx6SIT022g0cdSE4Axv/xpfHeltspo2gg1KsWRinLQZOTRRAtOOaEFghA1F3jJ8FVsh8hGrL/Pb6Ea5XHIFw=="; + url = "https://registry.npmjs.org/pkg-fetch/-/pkg-fetch-3.3.0.tgz"; + sha512 = "xJnIZ1KP+8rNN+VLafwu4tEeV4m8IkFBDdCFqmAJz9K1aiXEtbARmdbEe6HlXWGSVuShSHjFXpfkKRkDBQ5kiA=="; }; }; "pkg-up-2.0.0" = { @@ -52006,13 +52250,13 @@ let sha512 = "2Rb3vm+EXble/sMXNSu6eoBx8e79gKqhNq9F5ZWW6ERNCTE/Q0wQNne5541tE5vKjfM8hpNCYL+LGc1YTfI0dg=="; }; }; - "polished-4.1.4" = { + "polished-4.2.1" = { name = "polished"; packageName = "polished"; - version = "4.1.4"; + version = "4.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/polished/-/polished-4.1.4.tgz"; - sha512 = "Nq5Mbza+Auo7N3sQb1QMFaQiDO+4UexWuSGR7Cjb4Sw11SZIJcrrFtiZ+L0jT9MBsUsxDboHVASbCLbE1rnECg=="; + url = "https://registry.npmjs.org/polished/-/polished-4.2.1.tgz"; + sha512 = "vRkUnHBwVX7kIeCzCghcLCWoDenV+sV7lkItnmTc7bb6Uzbe8ogU1FxqEW8+dXCxUX8YW8vusQ0HTk2yES7bfQ=="; }; }; "polyraf-1.1.0" = { @@ -52232,13 +52476,13 @@ let sha512 = "/rDeGV6vMUo3mwJZmeHfEDvwnTKKqQ0S7OHUi/kJvvtx3aWtyWG2/0ZWnzCt2keEclwN6Tf0DST2v9kITdOKYw=="; }; }; - "postcss-load-config-3.1.3" = { + "postcss-load-config-3.1.4" = { name = "postcss-load-config"; packageName = "postcss-load-config"; - version = "3.1.3"; + version = "3.1.4"; src = fetchurl { - url = "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.1.3.tgz"; - sha512 = "5EYgaM9auHGtO//ljHH+v/aC/TQ5LHXtL7bQajNAUBKUVKiYE8rYpFms7+V26D9FncaGe2zwCoPQsFKb5zF/Hw=="; + url = "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.1.4.tgz"; + sha512 = "6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg=="; }; }; "postcss-loader-3.0.0" = { @@ -52583,6 +52827,15 @@ let sha512 = "h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA=="; }; }; + "postcss-selector-parser-6.0.10" = { + name = "postcss-selector-parser"; + packageName = "postcss-selector-parser"; + version = "6.0.10"; + src = fetchurl { + url = "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz"; + sha512 = "IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w=="; + }; + }; "postcss-selector-parser-6.0.2" = { name = "postcss-selector-parser"; packageName = "postcss-selector-parser"; @@ -52592,15 +52845,6 @@ let sha512 = "36P2QR59jDTOAiIkqEprfJDsoNrvwFei3eCqKd1Y0tUsBimsq39BLp7RD+JWny3WgB1zGhJX8XVePwm9k4wdBg=="; }; }; - "postcss-selector-parser-6.0.9" = { - name = "postcss-selector-parser"; - packageName = "postcss-selector-parser"; - version = "6.0.9"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.9.tgz"; - sha512 = "UO3SgnZOVTwu4kyLR22UQ1xZh086RyNZppb7lLAKBFK8a32ttG5i87Y/P3+2bRSjZNyJ1B7hfFNo273tKe9YxQ=="; - }; - }; "postcss-svgo-4.0.3" = { name = "postcss-svgo"; packageName = "postcss-svgo"; @@ -53132,13 +53376,13 @@ let sha512 = "vBZcPRUR5MZJwoyi3ZoyQlc1rXeEck8KgeC9AwwOn+exuxLxq5toTRDTSaVrXHxelDMHy9zlicw8u66yxoSUFg=="; }; }; - "prettier-2.6.1" = { + "prettier-2.6.2" = { name = "prettier"; packageName = "prettier"; - version = "2.6.1"; + version = "2.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/prettier/-/prettier-2.6.1.tgz"; - sha512 = "8UVbTBYGwN37Bs9LERmxCPjdvPxlEowx2urIL6urHzdb3SDq4B/Z6xLFCblrSnE4iKWcS6ziJ3aOYrc1kz/E2A=="; + url = "https://registry.npmjs.org/prettier/-/prettier-2.6.2.tgz"; + sha512 = "PkUpF+qoXTqhOeWL9fu7As8LXsIUZ1WYaJiY/a7McAQzxjk82OF0tibkFXVCDImZtWxbvojFjerkiLb0/q8mew=="; }; }; "prettier-bytes-1.0.4" = { @@ -53294,15 +53538,6 @@ let sha1 = "c438ca2ca33e3927671db4ab69c0e52f936a4f0f"; }; }; - "printj-1.3.1" = { - name = "printj"; - packageName = "printj"; - version = "1.3.1"; - src = fetchurl { - url = "https://registry.npmjs.org/printj/-/printj-1.3.1.tgz"; - sha512 = "GA3TdL8szPK4AQ2YnOe/b+Y1jUFwmmGMMK/qbY7VcE3Z7FU8JstbKiKRzO6CIiAKPhTO8m01NoQ0V5f3jc4OGg=="; - }; - }; "prism-media-0.0.4" = { name = "prism-media"; packageName = "prism-media"; @@ -53366,13 +53601,13 @@ let sha512 = "aCk8AO51s+4JyuYGg3Q/a6gnrlDO09NpVWePtjp7xwphcoQ04x5WAfCyugcsbLooWcMJ87CLkD4+604IckEdhg=="; }; }; - "proc-log-2.0.0" = { + "proc-log-2.0.1" = { name = "proc-log"; packageName = "proc-log"; - version = "2.0.0"; + version = "2.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/proc-log/-/proc-log-2.0.0.tgz"; - sha512 = "I/35MfCX2H8jBUhKN8JB8nmqvQo/nKdrBodBY7L3RhDSPPyvOHwLYNmPuhwuJq7a7C3vgFKWGQM+ecPStcvOHA=="; + url = "https://registry.npmjs.org/proc-log/-/proc-log-2.0.1.tgz"; + sha512 = "Kcmo2FhfDTXdcbfDH76N7uBYHINxc/8GW7UAVuVP9I+Va3uHSerrnKV6dLooga/gh7GlgzuCCr/eoldnL1muGw=="; }; }; "process-0.10.1" = { @@ -54887,13 +55122,13 @@ let sha512 = "2cP8mBoqnu5gzAVpbZ0fRaobBWZM8GEUF4I1F6WbgHrKV/rz7SX8PG2wMymZgD0wo0UBlg2FBPNxlF/xlqW6+w=="; }; }; - "puppeteer-13.5.1" = { + "puppeteer-13.5.2" = { name = "puppeteer"; packageName = "puppeteer"; - version = "13.5.1"; + version = "13.5.2"; src = fetchurl { - url = "https://registry.npmjs.org/puppeteer/-/puppeteer-13.5.1.tgz"; - sha512 = "wWxO//vMiqxlvuzHMAJ0pRJeDHvDtM7DQpW1GKdStz2nZo2G42kOXBDgkmQ+zqjwMCFofKGesBeeKxIkX9BO+w=="; + url = "https://registry.npmjs.org/puppeteer/-/puppeteer-13.5.2.tgz"; + sha512 = "DJAyXODBikZ3xPs8C35CtExEw78LZR9RyelGDAs0tX1dERv3OfW7qpQ9VPBgsfz+hG2HiMTO/Tyf7BuMVWsrxg=="; }; }; "purest-3.1.0" = { @@ -54968,13 +55203,13 @@ let sha512 = "pMpnA0qRdFp32b1sJl1wOJNxZLQ2cbQx+k6tjNtZ8CpvVhNqEPRgivZ2WOUev2YMajecdH7ctUPDvEe87nariQ=="; }; }; - "pyright-1.1.233" = { + "pyright-1.1.235" = { name = "pyright"; packageName = "pyright"; - version = "1.1.233"; + version = "1.1.235"; src = fetchurl { - url = "https://registry.npmjs.org/pyright/-/pyright-1.1.233.tgz"; - sha512 = "qjyKJd6mfXLwaBls4Ww0CmML+K2gA4NnTelxGktLC3JQv7ioWU7lmiQ1KSr1BnmwuuTfsaJSDN3f+hUf9YPfWg=="; + url = "https://registry.npmjs.org/pyright/-/pyright-1.1.235.tgz"; + sha512 = "eW40mxHo8WE7WHoBzFfyrH0lQ9nP5rTM5XKvkBgaYjhVafh4MmQeaEm8LmYGN2vUq2//YFLVprvA+U6u+v9i3g=="; }; }; "q-0.9.7" = { @@ -55634,6 +55869,15 @@ let sha512 = "PPYLwZ63lXi6Tv2EZ8w3M4FzC0rVqvxivaOVS8pXSp5FMIHFnvi4MWHL3UdFLhwSy50aNtJsgjY0mBC6oFL26Q=="; }; }; + "rate-limiter-flexible-2.3.6" = { + name = "rate-limiter-flexible"; + packageName = "rate-limiter-flexible"; + version = "2.3.6"; + src = fetchurl { + url = "https://registry.npmjs.org/rate-limiter-flexible/-/rate-limiter-flexible-2.3.6.tgz"; + sha512 = "8DVFOe89rreyut/vzwBI7vgXJynyYoYnH5XogtAKs0F/neAbCTTglXxSJ7fZeZamcFXZDvMidCBvps4KM+1srw=="; + }; + }; "raven-js-3.27.2" = { name = "raven-js"; packageName = "raven-js"; @@ -55751,13 +55995,13 @@ let sha512 = "bwfUSB37TWkHfP+PPjb/x8BUjChFmmBK44JMfVnU7paisWqZl/o5k7ttCH+EQLnrbn2Aq8Fo1LAsyUiz+WF4CQ=="; }; }; - "rc-config-loader-4.0.0" = { + "rc-config-loader-4.1.0" = { name = "rc-config-loader"; packageName = "rc-config-loader"; - version = "4.0.0"; + version = "4.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/rc-config-loader/-/rc-config-loader-4.0.0.tgz"; - sha512 = "//LRTblJEcqbmmro1GCmZ39qZXD+JqzuD8Y5/IZU3Dhp3A1Yr0Xn68ks8MQ6qKfKvYCWDveUmRDKDA40c+sCXw=="; + url = "https://registry.npmjs.org/rc-config-loader/-/rc-config-loader-4.1.0.tgz"; + sha512 = "aW+kX4qy0CiM9L4fG4Us3oEOpIrOrXzWykAn+xldD07Y9PXWjTH744oHbv0Kc9ZwWaylw3jMjxaf14RgStrNrA=="; }; }; "rc4-0.1.5" = { @@ -55841,13 +56085,13 @@ let sha512 = "dx0LvIGHcOPtKbeiSUM4jqpBl3TcY7CDjZdfOIcKeznE7BWr9dg0iPG90G5yfVQ+p/rGNMXdbfStvzQZEVEi4A=="; }; }; - "react-devtools-core-4.24.2" = { + "react-devtools-core-4.24.3" = { name = "react-devtools-core"; packageName = "react-devtools-core"; - version = "4.24.2"; + version = "4.24.3"; src = fetchurl { - url = "https://registry.npmjs.org/react-devtools-core/-/react-devtools-core-4.24.2.tgz"; - sha512 = "UC3rvQCG/dnC95NPNWBFrUEtdAEiFZ9xZe1tTHFOELVR5qfNLroZ3w9tC51NQvvK5E10G2ko3lQ5Vrh3p0bHrA=="; + url = "https://registry.npmjs.org/react-devtools-core/-/react-devtools-core-4.24.3.tgz"; + sha512 = "+htKZxLxDN14jhRG3+IXRiJqNSGHUiPYrMtv9e7qlZxcbKeJjVs+C/hd8kZF5rydp3faBwFN6ZpTaZnLA3/ZGA=="; }; }; "react-dom-17.0.2" = { @@ -56111,6 +56355,15 @@ let sha512 = "HJpV9bQpkl6KwjxlJcBoqu9Ba0PQg8TqSNIOrulGt54a0uup0HtevreFHzYzkm0lpnleRdNBzXznKrgxglEHQw=="; }; }; + "read-cmd-shim-3.0.0" = { + name = "read-cmd-shim"; + packageName = "read-cmd-shim"; + version = "3.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/read-cmd-shim/-/read-cmd-shim-3.0.0.tgz"; + sha512 = "KQDVjGqhZk92PPNRj9ZEXEuqg8bUobSKRw+q0YQ3TKI5xkce7bUJobL4Z/OtiEbAAv70yEpYIXp4iQ9L8oPVog=="; + }; + }; "read-last-lines-1.6.0" = { name = "read-last-lines"; packageName = "read-last-lines"; @@ -56669,13 +56922,13 @@ let sha1 = "b66d828cdcafe6b4b8a428a7def4c6bcac31c8b4"; }; }; - "redoc-2.0.0-rc.65" = { + "redoc-2.0.0-rc.66" = { name = "redoc"; packageName = "redoc"; - version = "2.0.0-rc.65"; + version = "2.0.0-rc.66"; src = fetchurl { - url = "https://registry.npmjs.org/redoc/-/redoc-2.0.0-rc.65.tgz"; - sha512 = "VqJbhb3krYXFP8De7ygyaWsA4jr9K5avsMo3GJUDv2xPiHTOzcprkIfOaL4ZdINn03x6JT1GOa47cWhrmb5KVA=="; + url = "https://registry.npmjs.org/redoc/-/redoc-2.0.0-rc.66.tgz"; + sha512 = "ZjmZhYkg46QAkza4SYCouY3TEuqnkjf50uyJBiz6Dyaz55RLClofAKokPoy5uEBo0RkPjxebKf9HTGyrxNqJ8A=="; }; }; "reduce-component-1.0.1" = { @@ -59288,13 +59541,13 @@ let sha512 = "zmXn03k3hN0KaiVTjohgkg98C3UowhL1/VSGdj4/VAAiMKGQOE80PFPxFP2Kyq0OUskPKcY5lImkhBKEHlypJA=="; }; }; - "sass-1.49.9" = { + "sass-1.49.11" = { name = "sass"; packageName = "sass"; - version = "1.49.9"; + version = "1.49.11"; src = fetchurl { - url = "https://registry.npmjs.org/sass/-/sass-1.49.9.tgz"; - sha512 = "YlYWkkHP9fbwaFRZQRXgDi3mXZShslVmmo+FVK3kHLUELHHEYrCmL1x6IUjC7wLS6VuJSAFXRQS/DxdsC4xL1A=="; + url = "https://registry.npmjs.org/sass/-/sass-1.49.11.tgz"; + sha512 = "wvS/geXgHUGs6A/4ud5BFIWKO1nKd7wYIGimDk4q4GFkJicILActpv9ueMT4eRGSsp1BdKHuw1WwAHXbhsJELQ=="; }; }; "sass-loader-10.2.0" = { @@ -59936,13 +60189,13 @@ let sha512 = "Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag=="; }; }; - "serialize-to-js-3.1.1" = { + "serialize-to-js-3.1.2" = { name = "serialize-to-js"; packageName = "serialize-to-js"; - version = "3.1.1"; + version = "3.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/serialize-to-js/-/serialize-to-js-3.1.1.tgz"; - sha512 = "F+NGU0UHMBO4Q965tjw7rvieNVjlH6Lqi2emq/Lc9LUURYJbiCzmpi4Cy1OOjjVPtxu0c+NE85LU6968Wko5ZA=="; + url = "https://registry.npmjs.org/serialize-to-js/-/serialize-to-js-3.1.2.tgz"; + sha512 = "owllqNuDDEimQat7EPG0tH7JjO090xKNzUtYz6X+Sk2BXDnOCilDdNLwjWeFywG9xkJul1ULvtUQa9O4pUaY0w=="; }; }; "serve-11.3.2" = { @@ -60575,13 +60828,13 @@ let sha512 = "z4qtrRuaAFJS4PUd0g+xy7aN4y+RvEt/QTJpR184lhJguBA1S/LsVlvE/CM95RsYMOFJG3NGGDjqFCzKU19S/A=="; }; }; - "simple-git-3.4.0" = { + "simple-git-3.5.0" = { name = "simple-git"; packageName = "simple-git"; - version = "3.4.0"; + version = "3.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/simple-git/-/simple-git-3.4.0.tgz"; - sha512 = "sBRdudUc1yvi0xQQPuHXc1L9gTWkRn4hP2bbc7q4BTxR502d3JJAGsDOhrmsBY+wAZAw5JLl82tx55fSWYE65w=="; + url = "https://registry.npmjs.org/simple-git/-/simple-git-3.5.0.tgz"; + sha512 = "fZsaq5nzdxQRhMNs6ESGLpMUHoL5GRP+boWPhq9pMYMKwOGZV2jHOxi8AbFFA2Y/6u4kR99HoULizSbpzaODkA=="; }; }; "simple-handshake-3.0.0" = { @@ -60638,13 +60891,13 @@ let sha512 = "D1SaWpOW8afq1CZGWB8xTfrT3FekjQmPValrqncJMX7QFl8YwhrPTZvMCANLtgBwwdS+7zURyqxDDEmY558tTw=="; }; }; - "simple-plist-1.3.0" = { + "simple-plist-1.3.1" = { name = "simple-plist"; packageName = "simple-plist"; - version = "1.3.0"; + version = "1.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/simple-plist/-/simple-plist-1.3.0.tgz"; - sha512 = "uYWpeGFtZtVt2NhG4AHgpwx323zxD85x42heMJBan1qAiqqozIlaGrwrEt6kRjXWRWIXsuV1VLCvVmZan2B5dg=="; + url = "https://registry.npmjs.org/simple-plist/-/simple-plist-1.3.1.tgz"; + sha512 = "iMSw5i0XseMnrhtIzRb7XpQEXepa9xhWxGUojHBL43SIpQuDQkh3Wpy67ZbDzZVr6EKxvwVChnVpdl8hEVLDiw=="; }; }; "simple-sha1-2.1.2" = { @@ -61862,13 +62115,13 @@ let sha512 = "Ctl2BrFiM0X3MANYgj3CkygxhRmr9mi6xhejbdO960nF6EDJApTYpn0BQnDKlnNBULKiCN1n3w9EBkHK8ZWg+g=="; }; }; - "spdx-license-list-6.4.0" = { + "spdx-license-list-6.5.0" = { name = "spdx-license-list"; packageName = "spdx-license-list"; - version = "6.4.0"; + version = "6.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/spdx-license-list/-/spdx-license-list-6.4.0.tgz"; - sha512 = "4BxgJ1IZxTJuX1YxMGu2cRYK46Bk9zJNTK2/R0wNZR0cm+6SVl26/uG7FQmQtxoJQX1uZ0EpTi2L7zvMLboaBA=="; + url = "https://registry.npmjs.org/spdx-license-list/-/spdx-license-list-6.5.0.tgz"; + sha512 = "28O9GgFrMg2Wp8tVML0Zk+fnXaECy7UbB6pxo+93whHay/nqPyEdM07Cx6B4+j2pniUZTYr57OaIOyNTxsTwtw=="; }; }; "spdy-1.32.5" = { @@ -62591,13 +62844,13 @@ let sha512 = "zZ/Q1M+9ZWlrchgh4QauD/MEUFa6eC6H6FYq6T8Of/y82JqsQBLwN6YlzbO09evE7Rx6x0oliXDCnQSjwGwQRA=="; }; }; - "sscaff-1.2.239" = { + "sscaff-1.2.248" = { name = "sscaff"; packageName = "sscaff"; - version = "1.2.239"; + version = "1.2.248"; src = fetchurl { - url = "https://registry.npmjs.org/sscaff/-/sscaff-1.2.239.tgz"; - sha512 = "labp/0JhozHLJWGAdobeGgabqIosT6oTjRYPVSGQUy+P1L4qTBWLAOBCRURm+4JHLh7fOHXt7gnFLrEg42SDrA=="; + url = "https://registry.npmjs.org/sscaff/-/sscaff-1.2.248.tgz"; + sha512 = "rHpwuR6VXLYvHowk/AZTNbTbhnxQ20+G6izyrdCXH7qxIcU05sbo328b8WdglFi3ncm6FF9Rn2PmGEc2HGaY/Q=="; }; }; "ssh-config-1.1.6" = { @@ -62699,6 +62952,15 @@ let sha512 = "97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ=="; }; }; + "ssri-9.0.0" = { + name = "ssri"; + packageName = "ssri"; + version = "9.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/ssri/-/ssri-9.0.0.tgz"; + sha512 = "Y1Z6J8UYnexKFN1R/hxUaYoY2LVdKEzziPmVAFKiKX8fiwvCJTVzn/xYE9TEWod5OVyNfIHHuVfIEuBClL/uJQ=="; + }; + }; "stable-0.1.8" = { name = "stable"; packageName = "stable"; @@ -63185,6 +63447,15 @@ let sha512 = "PS6wT2ZyyR38Cy+lE6PBEI1ZmO2HdzZoLeDGG0zZbYikCZd0dh8FUoSeFzgWLItpBYw1WJmPVRLpykRV+lAWLQ=="; }; }; + "stream-to-iterator-3.0.3" = { + name = "stream-to-iterator"; + packageName = "stream-to-iterator"; + version = "3.0.3"; + src = fetchurl { + url = "https://registry.npmjs.org/stream-to-iterator/-/stream-to-iterator-3.0.3.tgz"; + sha512 = "KT1EWa9Wug83efjIRA8fGaCEFblgU9yNSwoE/uXfuEb0g2LL0vbayn8p6gQ2iuxVUnrIepH0soWBjN8oUShvfg=="; + }; + }; "stream-to-promise-3.0.0" = { name = "stream-to-promise"; packageName = "stream-to-promise"; @@ -64040,13 +64311,13 @@ let sha512 = "luHn2OAMGJouOnadm6Fim6WXodQ2AWDkWjYq0rMdyEwzO5PdE4LzoXAEn9LL2snmBAlwUp1URVOTF7lZR3KU+Q=="; }; }; - "stylis-4.0.13" = { + "stylis-4.1.0" = { name = "stylis"; packageName = "stylis"; - version = "4.0.13"; + version = "4.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/stylis/-/stylis-4.0.13.tgz"; - sha512 = "xGPXiFVl4YED9Jh7Euv2V220mriG9u4B2TA6Ybjc1catrstKD2PpIdU3U0RKpkVBC2EhmL/F0sPCr9vrFTNRag=="; + url = "https://registry.npmjs.org/stylis/-/stylis-4.1.0.tgz"; + sha512 = "SrSDzNasOCBTo7C2N9geFwydg/2bmdkWXd4gJirtq82m5JBYtR2+Ialck8czmfBLIdPxCOotlgJESPa8C1RqvA=="; }; }; "stylus-0.54.8" = { @@ -64328,13 +64599,13 @@ let sha512 = "MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q=="; }; }; - "supports-color-9.2.1" = { + "supports-color-9.2.2" = { name = "supports-color"; packageName = "supports-color"; - version = "9.2.1"; + version = "9.2.2"; src = fetchurl { - url = "https://registry.npmjs.org/supports-color/-/supports-color-9.2.1.tgz"; - sha512 = "Obv7ycoCTG51N7y175StI9BlAXrmgZrFhZOb0/PyjHBher/NmsdBgbbQ1Inhq+gIhz6+7Gb+jWF2Vqi7Mf1xnQ=="; + url = "https://registry.npmjs.org/supports-color/-/supports-color-9.2.2.tgz"; + sha512 = "XC6g/Kgux+rJXmwokjm9ECpD6k/smUoS5LKlUCcsYr4IY3rW0XyAympon2RmxGrlnZURMpg5T18gWDP9CsHXFA=="; }; }; "supports-hyperlinks-1.0.1" = { @@ -64382,22 +64653,22 @@ let sha1 = "5a7f8a20a71188cf9e75a2cfe8eb182de90daf3b"; }; }; - "svelte-3.46.4" = { + "svelte-3.46.6" = { name = "svelte"; packageName = "svelte"; - version = "3.46.4"; + version = "3.46.6"; src = fetchurl { - url = "https://registry.npmjs.org/svelte/-/svelte-3.46.4.tgz"; - sha512 = "qKJzw6DpA33CIa+C/rGp4AUdSfii0DOTCzj/2YpSKKayw5WGSS624Et9L1nU1k2OVRS9vaENQXp2CVZNU+xvIg=="; + url = "https://registry.npmjs.org/svelte/-/svelte-3.46.6.tgz"; + sha512 = "o9nNft/OzCz/9kJpmWa1S52GAM+huCjPIsNWydYmgei74ZWlOA9/hN9+Z12INdklghu31seEXZMRHhS1+8DETw=="; }; }; - "svelte-preprocess-4.10.4" = { + "svelte-preprocess-4.10.5" = { name = "svelte-preprocess"; packageName = "svelte-preprocess"; - version = "4.10.4"; + version = "4.10.5"; src = fetchurl { - url = "https://registry.npmjs.org/svelte-preprocess/-/svelte-preprocess-4.10.4.tgz"; - sha512 = "fuwol0N4UoHsNQolLFbMqWivqcJ9N0vfWO9IuPAiX/5okfoGXURyJ6nECbuEIv0nU3M8Xe2I1ONNje2buk7l6A=="; + url = "https://registry.npmjs.org/svelte-preprocess/-/svelte-preprocess-4.10.5.tgz"; + sha512 = "VKXPRScCzAZqeBZOGq4LLwtNrAu++mVn7XvQox3eFDV7Ciq0Lg70Q8QWjH9iXF7J+pMlXhPsSFwpCb2E+hoeyA=="; }; }; "svelte2tsx-0.5.6" = { @@ -64562,13 +64833,13 @@ let sha512 = "8z18eX8G/jbTXYzyNIaobrnD7PSN7yU/YkSasMmajrXtw0FGS64XjrKn5v37d36qmU3o1xLeuYnktshRr7uIFw=="; }; }; - "swagger-ui-dist-4.9.1" = { + "swagger-ui-dist-4.10.3" = { name = "swagger-ui-dist"; packageName = "swagger-ui-dist"; - version = "4.9.1"; + version = "4.10.3"; src = fetchurl { - url = "https://registry.npmjs.org/swagger-ui-dist/-/swagger-ui-dist-4.9.1.tgz"; - sha512 = "hYo/kt/wXYd/4WOUm2NLyDa3tR3lCfHbjVa1wSvvSL8AKbYoJsBkc4Va7VJ1uv/JO89xM1736pp1tzJkrVsBxA=="; + url = "https://registry.npmjs.org/swagger-ui-dist/-/swagger-ui-dist-4.10.3.tgz"; + sha512 = "eR4vsd7sYo0Sx7ZKRP5Z04yij7JkNmIlUQfrDQgC+xO5ABYx+waabzN+nDsQTLAJ4Z04bjkRd8xqkJtbxr3G7w=="; }; }; "swagger2openapi-7.0.8" = { @@ -65328,13 +65599,13 @@ let sha1 = "7f5ee823ae805207c00af2df4a84ec3fcfa570b4"; }; }; - "textextensions-5.14.0" = { + "textextensions-5.15.0" = { name = "textextensions"; packageName = "textextensions"; - version = "5.14.0"; + version = "5.15.0"; src = fetchurl { - url = "https://registry.npmjs.org/textextensions/-/textextensions-5.14.0.tgz"; - sha512 = "4cAYwNFNYlIAHBUo7p6zw8POUvWbZor+/R0Tanv+rIhsauEyV9QSrEXL40pI+GfTQxKX8k6Tyw6CmdSDSmASrg=="; + url = "https://registry.npmjs.org/textextensions/-/textextensions-5.15.0.tgz"; + sha512 = "MeqZRHLuaGamUXGuVn2ivtU3LA3mLCCIO5kUGoohTCoGmCBg/+8yPhWVX9WSl9telvVd8erftjFk9Fwb2dD6rw=="; }; }; "textlint-rule-helper-1.2.0" = { @@ -67272,13 +67543,13 @@ let sha512 = "Qe5GRT+n/4GoqCNGGVp5Snapg1Omq3V7irBJB3EaKsp7HWDo5Gv2d/67gfNyV+d5EXD+x/RF5l1h4yJ7qNkcGA=="; }; }; - "type-fest-2.12.1" = { + "type-fest-2.12.2" = { name = "type-fest"; packageName = "type-fest"; - version = "2.12.1"; + version = "2.12.2"; src = fetchurl { - url = "https://registry.npmjs.org/type-fest/-/type-fest-2.12.1.tgz"; - sha512 = "AiknQSEqKVGDDjtZqeKrUoTlcj7FKhupmnVUgz6KoOKtvMwRGE6hUNJ/nVear+h7fnUPO1q/htSkYKb1pyntkQ=="; + url = "https://registry.npmjs.org/type-fest/-/type-fest-2.12.2.tgz"; + sha512 = "qt6ylCGpLjZ7AaODxbpyBZSs9fCI9SkL3Z9q2oxMBQhs/uyY+VD8jHA8ULCGmWQJlBgqvO3EJeAngOHD8zQCrQ=="; }; }; "type-is-1.6.18" = { @@ -67947,13 +68218,13 @@ let sha1 = "5e4bda308e4a8a2ae584f9b9a4359a499825cc50"; }; }; - "undici-4.16.0" = { + "undici-5.0.0" = { name = "undici"; packageName = "undici"; - version = "4.16.0"; + version = "5.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/undici/-/undici-4.16.0.tgz"; - sha512 = "tkZSECUYi+/T1i4u+4+lwZmQgLXd4BLGlrc7KZPcLIW7Jpq99+Xpc30ONv7nS6F5UNOxp/HBZSSL9MafUrvJbw=="; + url = "https://registry.npmjs.org/undici/-/undici-5.0.0.tgz"; + sha512 = "VhUpiZ3No1DOPPQVQnsDZyfcbTTcHdcgWej1PdFnSvOeJmOVDgiOHkunJmBLfmjt4CqgPQddPVjSWW0dsTs5Yg=="; }; }; "unherit-1.1.3" = { @@ -68136,13 +68407,13 @@ let sha512 = "ZlMm62ejrf+tJHdyOjQfljszngQjRor95q2XZMGk6rpJUYi7ZIHY/EXEhOcj9PZkMKKdLIM+dqL4s0ceyk9wbA=="; }; }; - "unified-engine-9.0.5" = { + "unified-engine-9.1.0" = { name = "unified-engine"; packageName = "unified-engine"; - version = "9.0.5"; + version = "9.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/unified-engine/-/unified-engine-9.0.5.tgz"; - sha512 = "frQ6lUNlkTwVC0JELJqSSITpE7MLrLJqAWmDrUFj5Do6A4/3n6eX5Jyg8fhe4Dbwwh38spqUJd39FtRFG34QWg=="; + url = "https://registry.npmjs.org/unified-engine/-/unified-engine-9.1.0.tgz"; + sha512 = "V3UAUsVSAPSNsAdGeYHjtM6FWKIXUt6fPZovbBI5L6WsQIRkRkuFfllquTGCvtu0RckrzdOC7jGaV/tKkokwDw=="; }; }; "unified-lint-rule-1.0.6" = { @@ -68415,13 +68686,13 @@ let sha512 = "w+PkwCbYSFw8vpgWD0v7zRCl1FpY3fjDSQ3/N/wNd9Ffa4gPi8+4keqt99N3XW6F99t/mUzp2xAhNmfKWp95QA=="; }; }; - "unist-util-position-4.0.2" = { + "unist-util-position-4.0.3" = { name = "unist-util-position"; packageName = "unist-util-position"; - version = "4.0.2"; + version = "4.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/unist-util-position/-/unist-util-position-4.0.2.tgz"; - sha512 = "Y6+plxR41dOLbyyqVDLuGWgXDmxdXslCSRYQkSDagBnOT9oFsQH0J8FzhirSklUEe0xZTT0WDnAE1gXPaDFljA=="; + url = "https://registry.npmjs.org/unist-util-position/-/unist-util-position-4.0.3.tgz"; + sha512 = "p/5EMGIa1qwbXjA+QgcBXaPWjSnZfQ2Sc3yBEEfgPwsEmJd8Qh+DSk3LGnmOM4S1bY2C0AjmMnB8RuEYxpPwXQ=="; }; }; "unist-util-position-from-estree-1.1.1" = { @@ -68955,13 +69226,13 @@ let sha512 = "7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg=="; }; }; - "urijs-1.19.10" = { + "urijs-1.19.11" = { name = "urijs"; packageName = "urijs"; - version = "1.19.10"; + version = "1.19.11"; src = fetchurl { - url = "https://registry.npmjs.org/urijs/-/urijs-1.19.10.tgz"; - sha512 = "EzauQlgKuJgsXOqoMrCiePBf4At5jVqRhXykF3Wfb8ZsOBMxPcfiVBcsHXug4Aepb/ICm2PIgqAUGMelgdrWEg=="; + url = "https://registry.npmjs.org/urijs/-/urijs-1.19.11.tgz"; + sha512 = "HXgFDgDommxn5/bIv0cnQZsPhHDA90NPHD6+c/v21U5+Sx5hoP8+dP9IZXBU1gIfvdRfhG8cel9QNPeionfcCQ=="; }; }; "urix-0.1.0" = { @@ -69631,6 +69902,15 @@ let sha1 = "5fa912d81eb7d0c74afc140de7317f0ca7df437e"; }; }; + "validate-npm-package-name-4.0.0" = { + name = "validate-npm-package-name"; + packageName = "validate-npm-package-name"; + version = "4.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-4.0.0.tgz"; + sha512 = "mzR0L8ZDktZjpX4OB46KT+56MAhl4EIazWP/+G/HPGuvfdaqg4YsCdtOm6U9+LOFyYDoh4dpnpxZRB9MQQns5Q=="; + }; + }; "validator-10.11.0" = { name = "validator"; packageName = "validator"; @@ -70558,13 +70838,13 @@ let sha512 = "FA0foqMzMmEoO0WJP+MjoD4dRERhKS+Ag+yBrtmWQDmw2OuZ1R/5FkvI/XdTkCpHmTD9VMczugpHRejQyTXCNQ=="; }; }; - "vscode-css-languageservice-5.3.0" = { + "vscode-css-languageservice-5.4.1" = { name = "vscode-css-languageservice"; packageName = "vscode-css-languageservice"; - version = "5.3.0"; + version = "5.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/vscode-css-languageservice/-/vscode-css-languageservice-5.3.0.tgz"; - sha512 = "ujWW855AoJlE4ETU17Gff7unlZZTHDA0w26itk9EQFMfJqi9lE6S67zOsMvcPmJf55MrnGQbojDYZRiDVaFjdA=="; + url = "https://registry.npmjs.org/vscode-css-languageservice/-/vscode-css-languageservice-5.4.1.tgz"; + sha512 = "W7D3GKFXf97ReAaU4EZ2nxVO1kQhztbycJgc1b/Ipr0h8zYWr88BADmrXu02z+lsCS84D7Sr4hoUzDKeaFn2Kg=="; }; }; "vscode-debugadapter-testsupport-1.51.0" = { @@ -71611,13 +71891,13 @@ let sha512 = "WkwV9qJLZZm1ygrryt4+6hAKbk4jLSVCpE92RYk/MOtLSpxq/2S1U0JFyKgsASXhYU5hqHQRiXvFBoNQhfCHyg=="; }; }; - "webcrypto-core-1.7.2" = { + "webcrypto-core-1.7.3" = { name = "webcrypto-core"; packageName = "webcrypto-core"; - version = "1.7.2"; + version = "1.7.3"; src = fetchurl { - url = "https://registry.npmjs.org/webcrypto-core/-/webcrypto-core-1.7.2.tgz"; - sha512 = "GUblRwka3JiP/dduk9/Hdkbm7/+ZqVPISJj9Fq1rZ/JBSInmaeVbeH0KuIy4/gtoC7aWpu6DEnYk0VhkZXmFSA=="; + url = "https://registry.npmjs.org/webcrypto-core/-/webcrypto-core-1.7.3.tgz"; + sha512 = "8TnMtwwC/hQOyvElAOJ26lJKGgcErUG02KnKS1+QhjV4mDvQetVWU1EUEeLF8ICOrdc42+GypocyBJKRqo2kQg=="; }; }; "webidl-conversions-2.0.1" = { @@ -71710,6 +71990,15 @@ let sha512 = "ZMWWy8CeuTTjCxbeaQI21xSswseF2oNOwc70QSKNePvmxE7XW36i7vpBMYZFAUHPwQiEbNGCEYIOOlyRbdGmxw=="; }; }; + "webpack-5.71.0" = { + name = "webpack"; + packageName = "webpack"; + version = "5.71.0"; + src = fetchurl { + url = "https://registry.npmjs.org/webpack/-/webpack-5.71.0.tgz"; + sha512 = "g4dFT7CFG8LY0iU5G8nBL6VlkT21Z7dcYDpJAEJV5Q1WLb9UwnFbrem1k7K52ILqEmomN7pnzWFxxE6SlDY56A=="; + }; + }; "webpack-bundle-analyzer-3.9.0" = { name = "webpack-bundle-analyzer"; packageName = "webpack-bundle-analyzer"; @@ -71917,13 +72206,13 @@ let sha512 = "7iZ+u28Ljw5hCnMiq0BCOeSYf0vCFQe/ORY0HgscTiKjQed8WqugpBUggJ2NTnB9fahn1kEnPRX2jf8Px5PhJw=="; }; }; - "webtorrent-1.8.10" = { + "webtorrent-1.8.13" = { name = "webtorrent"; packageName = "webtorrent"; - version = "1.8.10"; + version = "1.8.13"; src = fetchurl { - url = "https://registry.npmjs.org/webtorrent/-/webtorrent-1.8.10.tgz"; - sha512 = "0ywp9VXPMpqemsamWWUjU74vdNpOKUILK+lAfZnOgolybAcYZRJ5gCz0u01BI2NFKHZFWoyDacl3fkbxVb57pw=="; + url = "https://registry.npmjs.org/webtorrent/-/webtorrent-1.8.13.tgz"; + sha512 = "CrNeCA2ZRSvG7YRVpmjyT8sr7QOa7E70k0nAAqIEIvXsYgDexwrwMe4TxH9sXbwaJCA9URSX9UBEGNZ/bjhwMg=="; }; }; "webworkify-webpack-2.1.5" = { @@ -72421,6 +72710,15 @@ let sha512 = "9j8T75p+bcN6D00sF/zjFVmPp+t8KMPB1MzbbzYjeN9VWxdsYnTB40TkbNUEXAmILEfChMvAMgidlX64OG3p6w=="; }; }; + "winston-3.7.2" = { + name = "winston"; + packageName = "winston"; + version = "3.7.2"; + src = fetchurl { + url = "https://registry.npmjs.org/winston/-/winston-3.7.2.tgz"; + sha512 = "QziIqtojHBoyzUOdQvQiar1DH0Xp9nF1A1y7NVy2DGEsz82SBDtOalS0ulTRGVT14xPX3WRWkCsdcJKqNflKng=="; + }; + }; "winston-transport-4.5.0" = { name = "winston-transport"; packageName = "winston-transport"; @@ -74147,15 +74445,15 @@ in "@angular/cli" = nodeEnv.buildNodePackage { name = "_at_angular_slash_cli"; packageName = "@angular/cli"; - version = "13.3.0"; + version = "13.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/@angular/cli/-/cli-13.3.0.tgz"; - sha512 = "2qCKP/QsyxrJnpd3g4P/iTQ4TjI04N8r+bG5YLLfudoMDsQ/Ti4ogdI7PBeG2IMbRylZW9XLjHraWG42+Y9tWw=="; + url = "https://registry.npmjs.org/@angular/cli/-/cli-13.3.1.tgz"; + sha512 = "0uwU8v3V/2s95X4cZT582J6upReT/ZNw/VAf4p4q51JN+BBvdCEb251xTF+TcOojyToFyJYvg8T28XSrsNsmTQ=="; }; dependencies = [ - sources."@angular-devkit/architect-0.1303.0" - sources."@angular-devkit/core-13.3.0" - sources."@angular-devkit/schematics-13.3.0" + sources."@angular-devkit/architect-0.1303.1" + sources."@angular-devkit/core-13.3.1" + sources."@angular-devkit/schematics-13.3.1" sources."@gar/promisify-1.1.3" sources."@npmcli/fs-1.1.1" sources."@npmcli/git-2.1.0" @@ -74164,7 +74462,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.0" + sources."@schematics/angular-13.3.1" sources."@tootallnate/once-1.1.2" sources."@yarnpkg/lockfile-1.1.0" sources."abbrev-1.1.1" @@ -74220,9 +74518,9 @@ in sources."fs-minipass-2.1.0" sources."fs.realpath-1.0.0" sources."function-bind-1.1.1" - sources."gauge-4.0.3" + sources."gauge-4.0.4" sources."glob-7.2.0" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."has-1.0.3" sources."has-flag-4.0.0" sources."has-unicode-2.0.1" @@ -74292,8 +74590,8 @@ in sources."@tootallnate/once-2.0.0" sources."cacache-16.0.3" sources."http-proxy-agent-5.0.0" - sources."lru-cache-7.7.1" - (sources."make-fetch-happen-10.1.0" // { + sources."lru-cache-7.7.3" + (sources."make-fetch-happen-10.1.1" // { dependencies = [ sources."minipass-fetch-2.1.0" ]; @@ -74531,7 +74829,7 @@ in sources."convert-source-map-1.8.0" sources."convict-6.2.2" sources."core-util-is-1.0.3" - sources."crc-32-1.2.1" + sources."crc-32-1.2.2" sources."dateformat-4.6.3" sources."decompress-response-4.2.1" sources."define-properties-1.1.3" @@ -74539,7 +74837,6 @@ in sources."duplexify-4.1.2" sources."end-of-stream-1.4.4" sources."escape-string-regexp-1.0.5" - sources."exit-on-epipe-1.0.1" sources."extend-3.0.2" sources."fast-redact-3.1.1" sources."fast-safe-stringify-2.1.1" @@ -74561,7 +74858,7 @@ in sources."glob-7.2.0" ]; }) - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."gulp-vinyl-zip-2.5.0" sources."handlebars-4.7.7" sources."has-1.0.3" @@ -74631,7 +74928,6 @@ in sources."pino-abstract-transport-0.5.0" sources."pino-pretty-7.3.0" sources."pino-std-serializers-4.0.0" - sources."printj-1.3.1" sources."process-nextick-args-2.0.1" sources."process-warning-1.0.0" sources."progress-2.0.3" @@ -74720,10 +75016,10 @@ in "@astrojs/language-server" = nodeEnv.buildNodePackage { name = "_at_astrojs_slash_language-server"; packageName = "@astrojs/language-server"; - version = "0.13.2"; + version = "0.13.4"; src = fetchurl { - url = "https://registry.npmjs.org/@astrojs/language-server/-/language-server-0.13.2.tgz"; - sha512 = "4YM4hM02ILvvsSQljAlwLY7OWymlhbikY7O/gsZqELVGMXixemA6dI3GTr2K6duU4ktPBJ3JexuU/OFyb5jvtQ=="; + url = "https://registry.npmjs.org/@astrojs/language-server/-/language-server-0.13.4.tgz"; + sha512 = "xWtzZMEVsEZkRLlHMKiOoQIXyQwdMkBPHsRcO1IbzpCmaMQGfKKYNANJ1FKZSHsybbXG/BBaB+LqgVPFNFufew=="; }; dependencies = [ sources."@astrojs/svelte-language-integration-0.1.2" @@ -74743,11 +75039,11 @@ in sources."no-case-3.0.4" sources."pascal-case-3.1.2" sources."source-map-0.7.3" - sources."svelte-3.46.4" + sources."svelte-3.46.6" sources."svelte2tsx-0.5.6" sources."tslib-2.3.1" sources."typescript-4.6.3" - sources."vscode-css-languageservice-5.3.0" + sources."vscode-css-languageservice-5.4.1" sources."vscode-html-languageservice-4.2.4" sources."vscode-jsonrpc-6.0.0" sources."vscode-languageserver-7.0.0" @@ -74875,7 +75171,7 @@ in sources."fresh-0.5.2" sources."function-bind-1.1.1" sources."get-intrinsic-1.1.1" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."has-1.0.3" sources."has-flag-4.0.0" sources."has-symbols-1.0.3" @@ -74903,7 +75199,7 @@ in ]; }) sources."json-stringify-safe-5.0.1" - sources."jszip-3.7.1" + sources."jszip-3.9.0" sources."keygrip-1.1.0" (sources."koa-2.13.4" // { dependencies = [ @@ -75106,7 +75402,7 @@ in sources."conventional-changelog-angular-5.0.13" sources."conventional-commits-parser-3.2.4" sources."cosmiconfig-7.0.1" - sources."cosmiconfig-typescript-loader-1.0.6" + sources."cosmiconfig-typescript-loader-1.0.9" sources."create-require-1.1.1" sources."cross-spawn-7.0.3" sources."dargs-7.0.0" @@ -75132,7 +75428,7 @@ in sources."get-stream-6.0.1" sources."git-raw-commits-2.0.11" sources."global-dirs-0.1.1" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."hard-rejection-2.1.0" sources."has-1.0.3" sources."has-flag-4.0.0" @@ -75310,6 +75606,7 @@ in sources."@szmarczak/http-timer-4.0.6" sources."@types/cacheable-request-6.0.2" sources."@types/http-cache-semantics-4.0.1" + 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" @@ -75352,6 +75649,7 @@ in sources."color-convert-2.0.1" sources."color-name-1.1.4" sources."commander-7.2.0" + sources."compress-brotli-1.3.6" sources."concat-map-0.0.1" sources."currently-unhandled-0.4.1" sources."debounce-1.2.1" @@ -75391,7 +75689,7 @@ in sources."googleapis-76.0.0" sources."googleapis-common-5.1.0" sources."got-11.8.3" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."gtoken-5.3.2" sources."has-1.0.3" sources."has-flag-4.0.0" @@ -75438,7 +75736,7 @@ in sources."jsonfile-6.1.0" sources."jwa-2.0.0" sources."jws-4.0.0" - sources."keyv-4.1.1" + sources."keyv-4.2.1" sources."lines-and-columns-1.2.4" sources."locate-path-6.0.0" sources."lodash-4.17.21" @@ -75458,7 +75756,7 @@ in sources."multimatch-5.0.0" sources."mute-stream-0.0.8" sources."node-fetch-2.6.7" - sources."node-forge-1.3.0" + sources."node-forge-1.3.1" sources."normalize-newline-4.1.0" (sources."normalize-package-data-3.0.3" // { dependencies = [ @@ -75549,7 +75847,7 @@ in sources."tr46-0.0.3" (sources."ts2gas-4.2.0" // { dependencies = [ - sources."type-fest-2.12.1" + sources."type-fest-2.12.2" ]; }) sources."tslib-2.3.1" @@ -75790,7 +76088,7 @@ in sources."minimist-1.2.6" sources."mkdirp-1.0.4" sources."mkdirp-classic-0.5.3" - sources."moment-2.29.1" + sources."moment-2.29.2" sources."mountable-hypertrie-2.8.0" sources."ms-2.0.0" sources."multicast-dns-7.2.4" @@ -75801,7 +76099,7 @@ in sources."nanoresource-1.3.0" sources."nanoresource-promise-1.2.2" sources."napi-macros-2.0.0" - sources."node-gyp-build-4.3.0" + sources."node-gyp-build-4.4.0" (sources."noise-peer-2.1.1" // { dependencies = [ sources."readable-stream-3.6.0" @@ -75893,7 +76191,7 @@ in sources."supports-preserve-symlinks-flag-1.0.0" sources."temp-dir-1.0.0" sources."tempy-0.1.0" - sources."textextensions-5.14.0" + sources."textextensions-5.15.0" (sources."through2-4.0.2" // { dependencies = [ sources."readable-stream-3.6.0" @@ -75952,35 +76250,37 @@ in "@medable/mdctl-cli" = nodeEnv.buildNodePackage { name = "_at_medable_slash_mdctl-cli"; packageName = "@medable/mdctl-cli"; - version = "1.0.62"; + version = "1.0.64"; src = fetchurl { - url = "https://registry.npmjs.org/@medable/mdctl-cli/-/mdctl-cli-1.0.62.tgz"; - sha512 = "7EpRhhrJqICbMGjLkdthQYLLGMXNCsrsq8/xxYX1cdRiNwoGb84yjL1WFBrnQtaM8rXShOvhf4lrM2W0K9m4lQ=="; + url = "https://registry.npmjs.org/@medable/mdctl-cli/-/mdctl-cli-1.0.64.tgz"; + sha512 = "hV1PG20mLFmYbSJvV+JIGVLUT3zzDt2snR9T7tKMBAVvGQBAfzodylbTZe+b20hNz3Max2Z4zsKVksRu71x1+A=="; }; dependencies = [ sources."@babel/parser-7.17.8" - sources."@medable/mdctl-api-1.0.63" - sources."@medable/mdctl-core-1.0.63" - sources."@medable/mdctl-core-schemas-1.0.63" + sources."@medable/mdctl-api-1.0.64" + sources."@medable/mdctl-api-driver-1.0.64" + sources."@medable/mdctl-axon-tools-1.0.64" + sources."@medable/mdctl-core-1.0.64" + sources."@medable/mdctl-core-schemas-1.0.64" sources."@medable/mdctl-core-utils-1.0.63" - sources."@medable/mdctl-credentials-provider-keychain-1.0.63" - sources."@medable/mdctl-credentials-provider-pouchdb-1.0.63" - sources."@medable/mdctl-docs-1.0.63" + sources."@medable/mdctl-credentials-provider-keychain-1.0.64" + sources."@medable/mdctl-credentials-provider-pouchdb-1.0.64" + sources."@medable/mdctl-docs-1.0.64" sources."@medable/mdctl-export-adapter-console-1.0.63" - (sources."@medable/mdctl-export-adapter-tree-1.0.63" // { + (sources."@medable/mdctl-export-adapter-tree-1.0.64" // { dependencies = [ sources."glob-7.2.0" sources."globby-10.0.2" ]; }) - sources."@medable/mdctl-import-adapter-1.0.63" - (sources."@medable/mdctl-manifest-1.0.63" // { + sources."@medable/mdctl-import-adapter-1.0.64" + (sources."@medable/mdctl-manifest-1.0.64" // { dependencies = [ sources."pluralize-8.0.0" ]; }) - sources."@medable/mdctl-node-utils-1.0.63" - sources."@medable/mdctl-sandbox-1.0.63" + sources."@medable/mdctl-node-utils-1.0.64" + sources."@medable/mdctl-sandbox-1.0.64" sources."@medable/mdctl-secrets-1.0.63" sources."@mrmlnc/readdir-enhanced-2.2.1" sources."@nodelib/fs.scandir-2.1.5" @@ -76023,6 +76323,7 @@ in sources."assign-symbols-1.0.0" sources."ast-types-0.9.6" sources."async-2.6.3" + sources."async-iter-stream-1.2.0" sources."asynckit-0.4.0" sources."atob-2.1.2" sources."aws-sign2-0.7.0" @@ -76267,7 +76568,7 @@ in sources."to-regex-range-2.1.1" ]; }) - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" (sources."handlebars-4.7.7" // { dependencies = [ sources."source-map-0.6.1" @@ -76389,11 +76690,15 @@ in sources."lodash.isstring-4.0.1" sources."lodash.once-4.1.1" sources."lodash.sortby-4.7.0" - sources."map-age-cleaner-0.1.3" + (sources."map-age-cleaner-0.1.3" // { + dependencies = [ + sources."p-defer-1.0.0" + ]; + }) sources."map-cache-0.2.2" sources."map-visit-1.0.0" sources."markdown-it-12.3.2" - sources."markdown-it-anchor-8.4.1" + sources."markdown-it-anchor-8.5.0" sources."marked-4.0.12" sources."md5.js-1.3.5" sources."mdurl-1.0.1" @@ -76419,6 +76724,7 @@ in ]; }) sources."mkdirp-0.5.6" + sources."moment-2.29.2" sources."ms-2.1.2" sources."mute-stream-0.0.7" sources."nan-2.14.0" @@ -76476,7 +76782,7 @@ in sources."os-locale-3.1.0" sources."os-tmpdir-1.0.2" sources."osenv-0.1.5" - sources."p-defer-1.0.0" + sources."p-defer-3.0.0" sources."p-finally-1.0.0" sources."p-is-promise-2.1.0" sources."p-limit-2.3.0" @@ -76740,6 +77046,7 @@ in sources."kind-of-5.1.0" ]; }) + sources."stream-to-iterator-3.0.3" sources."string-natural-compare-2.0.3" sources."string-width-1.0.2" sources."string_decoder-1.3.0" @@ -76920,7 +77227,7 @@ in sources."deprecation-2.3.1" sources."esprima-4.0.1" sources."fs-extra-9.1.0" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."has-flag-4.0.0" sources."ieee754-1.2.1" sources."inherits-2.0.4" @@ -77007,10 +77314,10 @@ in sources."supports-color-5.5.0" ]; }) - (sources."@nestjs/schematics-8.0.8" // { + (sources."@nestjs/schematics-8.0.9" // { dependencies = [ - sources."@angular-devkit/core-13.2.5" - sources."@angular-devkit/schematics-13.2.5" + sources."@angular-devkit/core-13.3.1" + sources."@angular-devkit/schematics-13.3.1" ]; }) sources."@types/eslint-8.4.1" @@ -77057,7 +77364,7 @@ in sources."buffer-5.7.1" sources."buffer-from-1.1.2" sources."callsites-3.1.0" - sources."caniuse-lite-1.0.30001320" + sources."caniuse-lite-1.0.30001325" sources."chalk-3.0.0" sources."chardet-0.7.0" sources."chokidar-3.5.3" @@ -77076,7 +77383,7 @@ in sources."cross-spawn-7.0.3" sources."deepmerge-4.2.2" sources."defaults-1.0.3" - sources."electron-to-chromium-1.4.96" + sources."electron-to-chromium-1.4.103" sources."emoji-regex-8.0.0" sources."end-of-stream-1.4.4" sources."enhanced-resolve-5.9.2" @@ -77112,7 +77419,7 @@ in sources."glob-7.2.0" sources."glob-parent-5.1.2" sources."glob-to-regexp-0.4.1" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."has-1.0.3" sources."has-flag-4.0.0" sources."human-signals-1.1.1" @@ -77467,7 +77774,7 @@ in sources."async-limiter-1.0.1" sources."asynckit-0.4.0" sources."atob-2.1.2" - (sources."aws-sdk-2.1101.0" // { + (sources."aws-sdk-2.1107.0" // { dependencies = [ sources."uuid-3.3.2" ]; @@ -77557,7 +77864,7 @@ in sources."function-bind-1.1.1" sources."get-intrinsic-1.1.1" sources."getpass-0.1.7" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" (sources."grant-4.7.0" // { dependencies = [ sources."qs-6.10.3" @@ -77621,7 +77928,7 @@ in sources."mime-db-1.42.0" ]; }) - sources."moment-2.29.1" + sources."moment-2.29.2" sources."moment-timezone-0.5.34" (sources."morgan-1.10.0" // { dependencies = [ @@ -77752,7 +78059,7 @@ in sources."@types/node-10.17.60" ]; }) - sources."@apollographql/apollo-tools-0.5.2" + sources."@apollographql/apollo-tools-0.5.3" sources."@apollographql/graphql-playground-html-1.6.27" sources."@apollographql/graphql-upload-8-fork-8.1.3" sources."@babel/code-frame-7.16.7" @@ -77933,7 +78240,7 @@ in sources."@types/fs-capacitor-2.0.0" sources."@types/http-assert-1.5.3" sources."@types/http-errors-1.8.2" - sources."@types/inquirer-8.2.0" + sources."@types/inquirer-8.2.1" (sources."@types/jscodeshift-0.7.2" // { dependencies = [ sources."ast-types-0.12.1" @@ -77980,7 +78287,7 @@ in sources."ansi-styles-4.3.0" sources."apollo-cache-control-0.14.0" sources."apollo-datasource-0.9.0" - sources."apollo-graphql-0.9.5" + sources."apollo-graphql-0.9.6" (sources."apollo-link-1.2.14" // { dependencies = [ sources."tslib-1.14.1" @@ -78037,9 +78344,12 @@ in }) sources."base64-js-1.5.1" sources."bl-4.1.0" - (sources."body-parser-1.19.2" // { + (sources."body-parser-1.20.0" // { dependencies = [ sources."debug-2.6.9" + sources."depd-2.0.0" + sources."http-errors-2.0.0" + sources."statuses-2.0.1" ]; }) (sources."boxen-5.1.2" // { @@ -78068,7 +78378,7 @@ in }) sources."call-bind-1.0.2" sources."camelcase-6.3.0" - sources."caniuse-lite-1.0.30001320" + sources."caniuse-lite-1.0.30001325" sources."caw-2.0.1" sources."chalk-4.1.2" sources."chardet-0.7.0" @@ -78176,7 +78486,7 @@ in sources."define-property-2.0.2" sources."depd-1.1.2" sources."deprecated-decorator-0.1.6" - sources."destroy-1.0.4" + sources."destroy-1.2.0" sources."dicer-0.3.0" sources."dir-glob-3.0.1" (sources."download-7.1.0" // { @@ -78189,14 +78499,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.96" + sources."electron-to-chromium-1.4.103" 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.1" + sources."es-abstract-1.19.2" sources."es-to-primitive-1.2.1" sources."escalade-3.1.1" sources."escape-html-1.0.3" @@ -78229,7 +78539,11 @@ in }) (sources."express-4.17.3" // { dependencies = [ + sources."body-parser-1.19.2" sources."debug-2.6.9" + sources."on-finished-2.3.0" + sources."qs-6.9.7" + sources."raw-body-2.4.3" ]; }) sources."express-history-api-fallback-2.2.1" @@ -78260,6 +78574,7 @@ in (sources."finalhandler-1.1.2" // { dependencies = [ sources."debug-2.6.9" + sources."on-finished-2.3.0" ]; }) (sources."find-cache-dir-2.1.0" // { @@ -78289,7 +78604,7 @@ in sources."which-2.0.2" ]; }) - sources."flow-parser-0.174.1" + sources."flow-parser-0.175.0" sources."for-each-0.3.3" sources."for-in-1.0.2" sources."forwarded-0.2.0" @@ -78331,7 +78646,7 @@ in sources."get-stream-3.0.0" ]; }) - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."graphql-15.8.0" sources."graphql-extensions-0.15.0" sources."graphql-subscriptions-1.2.1" @@ -78397,14 +78712,14 @@ in sources."is-natural-number-4.0.1" sources."is-negative-zero-2.0.2" sources."is-number-7.0.0" - sources."is-number-object-1.0.6" + sources."is-number-object-1.0.7" sources."is-object-1.0.2" sources."is-plain-obj-1.1.0" sources."is-plain-object-2.0.4" sources."is-promise-2.2.2" sources."is-regex-1.1.4" sources."is-retry-allowed-1.2.0" - sources."is-shared-array-buffer-1.0.1" + sources."is-shared-array-buffer-1.0.2" sources."is-stream-1.1.0" sources."is-string-1.0.7" sources."is-symbol-1.0.4" @@ -78538,7 +78853,7 @@ in sources."object.assign-4.1.2" sources."object.getownpropertydescriptors-2.1.3" sources."object.pick-1.3.0" - sources."on-finished-2.3.0" + sources."on-finished-2.4.1" sources."once-1.4.0" sources."onetime-5.1.2" sources."open-8.4.0" @@ -78607,11 +78922,17 @@ in sources."proxy-addr-2.0.7" sources."ps-list-7.2.0" sources."pump-3.0.0" - sources."qs-6.9.7" + sources."qs-6.10.3" sources."query-string-5.1.1" sources."queue-microtask-1.2.3" sources."range-parser-1.2.1" - sources."raw-body-2.4.3" + (sources."raw-body-2.5.1" // { + dependencies = [ + sources."depd-2.0.0" + sources."http-errors-2.0.0" + sources."statuses-2.0.1" + ]; + }) sources."read-pkg-5.2.0" sources."readable-stream-3.6.0" sources."recast-0.20.5" @@ -78659,7 +78980,9 @@ in sources."ms-2.0.0" ]; }) + sources."destroy-1.0.4" sources."ms-2.1.3" + sources."on-finished-2.3.0" ]; }) sources."serve-static-1.14.2" @@ -79104,7 +79427,7 @@ in sources."@sindresorhus/is-0.14.0" sources."@szmarczak/http-timer-1.1.2" sources."@types/acorn-4.0.6" - sources."@types/concat-stream-1.6.1" + sources."@types/concat-stream-2.0.0" sources."@types/debug-4.1.7" sources."@types/estree-0.0.51" sources."@types/estree-jsx-0.0.1" @@ -79225,7 +79548,7 @@ in ]; }) sources."got-9.6.0" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."hard-rejection-2.1.0" sources."has-1.0.3" sources."has-flag-3.0.0" @@ -79493,7 +79816,7 @@ in ]; }) sources."unified-diff-4.0.1" - (sources."unified-engine-9.0.5" // { + (sources."unified-engine-9.1.0" // { dependencies = [ sources."is-plain-obj-4.0.0" sources."lines-and-columns-2.0.3" @@ -79509,7 +79832,7 @@ in sources."unist-util-inspect-7.0.0" sources."unist-util-is-5.1.1" sources."unist-util-modify-children-2.0.0" - sources."unist-util-position-4.0.2" + sources."unist-util-position-4.0.3" sources."unist-util-position-from-estree-1.1.1" sources."unist-util-remove-position-4.0.1" sources."unist-util-stringify-position-3.0.2" @@ -79544,7 +79867,7 @@ in sources."emoji-regex-9.2.2" sources."string-width-5.1.2" sources."strip-ansi-7.0.1" - sources."supports-color-9.2.1" + sources."supports-color-9.2.2" ]; }) sources."vfile-sort-3.0.0" @@ -79623,7 +79946,7 @@ in sources."balanced-match-1.0.2" sources."brace-expansion-1.1.11" sources."browserslist-4.20.2" - sources."caniuse-lite-1.0.30001320" + sources."caniuse-lite-1.0.30001325" sources."chalk-2.4.2" sources."color-convert-1.9.3" sources."color-name-1.1.3" @@ -79633,7 +79956,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.96" + sources."electron-to-chromium-1.4.103" sources."ensure-posix-path-1.1.1" sources."escalade-3.1.1" sources."escape-string-regexp-1.0.5" @@ -79653,7 +79976,7 @@ in ]; }) sources."globals-11.12.0" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."has-1.0.3" sources."has-color-0.1.7" sources."has-flag-3.0.0" @@ -79887,7 +80210,7 @@ in sources."tweetnacl-0.14.5" sources."type-is-1.6.18" sources."uri-js-4.4.1" - sources."urijs-1.19.10" + sources."urijs-1.19.11" sources."uuid-3.4.0" sources."vary-1.1.2" sources."verror-1.10.0" @@ -80009,8 +80332,8 @@ in }; dependencies = [ sources."browserslist-4.20.2" - sources."caniuse-lite-1.0.30001320" - sources."electron-to-chromium-1.4.96" + sources."caniuse-lite-1.0.30001325" + sources."electron-to-chromium-1.4.103" sources."escalade-3.1.1" sources."fraction.js-4.2.0" sources."node-releases-2.0.2" @@ -80045,7 +80368,7 @@ in sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" sources."ast-types-0.13.4" - (sources."aws-sdk-2.1101.0" // { + (sources."aws-sdk-2.1107.0" // { dependencies = [ sources."uuid-3.3.2" ]; @@ -80066,7 +80389,7 @@ in sources."chalk-4.1.2" sources."chardet-0.7.0" sources."cheerio-1.0.0-rc.10" - sources."cheerio-select-1.5.0" + sources."cheerio-select-1.6.0" sources."chownr-1.1.4" sources."cli-cursor-3.1.0" sources."cli-spinners-2.6.1" @@ -80077,8 +80400,8 @@ in sources."commander-8.3.0" sources."concat-map-0.0.1" sources."core-util-is-1.0.3" - sources."css-select-4.2.1" - sources."css-what-5.1.0" + sources."css-select-4.3.0" + sources."css-what-6.1.0" sources."data-uri-to-buffer-3.0.1" sources."debug-4.3.4" sources."deep-is-0.1.4" @@ -80119,7 +80442,7 @@ in sources."get-stream-5.2.0" sources."get-uri-3.0.2" sources."glob-7.2.0" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."has-flag-4.0.0" sources."htmlparser2-6.1.0" sources."http-errors-2.0.0" @@ -80360,7 +80683,7 @@ in sources."glob-parent-5.1.2" sources."globby-11.1.0" sources."got-9.6.0" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."hard-rejection-2.1.0" sources."has-1.0.3" sources."has-flag-4.0.0" @@ -80663,10 +80986,10 @@ in balanceofsatoshis = nodeEnv.buildNodePackage { name = "balanceofsatoshis"; packageName = "balanceofsatoshis"; - version = "11.61.3"; + version = "11.64.1"; src = fetchurl { - url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-11.61.3.tgz"; - sha512 = "+ORg7HujAcHBRnOycZsbkVaNESplxHqYUxbtfZ1jSqNRoIf/mjQhpzTa4L5huBk7C+nFnx/rbfJn+xFIeL7ebA=="; + url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-11.64.1.tgz"; + sha512 = "k8ft+Al3mYVW9hfQ2JjkKIrbUmIyhZzjUqHz16ieo/4ggWMPr8WxKiiz7ZuPgG/kog8XY0RlkFT2F0/9Ej9gdg=="; }; dependencies = [ (sources."@alexbosworth/caporal-1.4.1" // { @@ -80718,10 +81041,10 @@ in sources."@types/node-17.0.23" sources."@types/qs-6.9.7" sources."@types/range-parser-1.2.4" - sources."@types/request-2.48.7" + sources."@types/request-2.48.8" sources."@types/serve-static-1.13.10" sources."@types/tough-cookie-4.0.1" - sources."@types/ws-8.2.0" + sources."@types/ws-8.5.2" sources."abort-controller-3.0.0" sources."accepts-1.3.8" (sources."agent-base-6.0.2" // { @@ -80773,7 +81096,7 @@ in sources."bolt01-1.2.3" sources."bolt03-1.2.13" sources."bolt07-1.8.0" - sources."bolt09-0.2.1" + sources."bolt09-0.2.2" (sources."boxen-5.1.2" // { dependencies = [ sources."ansi-styles-4.3.0" @@ -80822,9 +81145,13 @@ in sources."commander-6.2.1" sources."concat-stream-1.6.2" sources."configstore-5.0.1" - sources."content-disposition-0.5.3" + (sources."content-disposition-0.5.4" // { + dependencies = [ + sources."safe-buffer-5.2.1" + ]; + }) sources."content-type-1.0.4" - sources."cookie-0.4.0" + sources."cookie-0.4.2" sources."cookie-signature-1.0.6" sources."core-util-is-1.0.3" sources."cors-2.8.5" @@ -80863,16 +81190,9 @@ in sources."etag-1.8.1" sources."event-target-shim-5.0.1" sources."exit-hook-1.1.1" - (sources."express-4.17.1" // { + (sources."express-4.17.3" // { dependencies = [ - sources."body-parser-1.19.0" - sources."bytes-3.1.0" - sources."http-errors-1.7.2" - sources."inherits-2.0.3" - sources."qs-6.7.0" - sources."raw-body-2.4.0" - sources."setprototypeof-1.1.1" - sources."toidentifier-1.0.0" + sources."safe-buffer-5.2.1" ]; }) sources."extend-3.0.2" @@ -80890,10 +81210,14 @@ in sources."get-caller-file-2.0.5" sources."get-stream-4.1.0" sources."global-dirs-3.0.0" - sources."goldengate-11.1.0" + (sources."goldengate-11.1.0" // { + dependencies = [ + sources."ln-service-53.9.3" + ]; + }) sources."got-9.6.0" - sources."graceful-fs-4.2.9" - (sources."grammy-1.7.0" // { + sources."graceful-fs-4.2.10" + (sources."grammy-1.7.1" // { dependencies = [ sources."debug-4.3.4" sources."ms-2.1.2" @@ -80938,10 +81262,12 @@ 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.4" // { dependencies = [ + sources."bolt09-0.2.1" sources."tiny-secp256k1-2.2.0" sources."uint8array-tools-0.0.6" ]; @@ -80977,50 +81303,18 @@ in sources."keyv-3.1.0" sources."kind-of-6.0.3" sources."latest-version-5.1.0" - (sources."lightning-4.14.3" // { + (sources."lightning-5.8.2" // { dependencies = [ - sources."@grpc/grpc-js-1.4.4" - sources."@grpc/proto-loader-0.6.6" - sources."@types/node-16.11.7" - sources."async-3.2.2" - sources."asyncjs-util-1.2.7" - sources."bech32-1.1.4" - sources."bitcoinjs-lib-6.0.0" - sources."body-parser-1.19.0" - sources."bolt07-1.7.4" - sources."bolt09-0.2.0" - sources."bytes-3.1.0" - sources."http-errors-1.7.2" - sources."inherits-2.0.3" - (sources."invoices-2.0.1" // { - dependencies = [ - (sources."bitcoinjs-lib-5.2.0" // { - dependencies = [ - sources."bech32-1.1.4" - ]; - }) - ]; - }) - (sources."psbt-1.1.10" // { - dependencies = [ - sources."bitcoinjs-lib-5.2.0" - ]; - }) - sources."qs-6.7.0" - sources."raw-body-2.4.0" - sources."setprototypeof-1.1.1" - (sources."tiny-secp256k1-1.1.6" // { - dependencies = [ - sources."bn.js-4.12.0" - ]; - }) - sources."toidentifier-1.0.0" + sources."@types/node-17.0.21" ]; }) (sources."ln-accounting-5.0.5" // { dependencies = [ sources."@grpc/grpc-js-1.4.4" sources."@grpc/proto-loader-0.6.6" + sources."@types/node-16.11.7" + sources."@types/request-2.48.7" + sources."@types/ws-8.2.0" sources."async-3.2.2" sources."asyncjs-util-1.2.7" sources."bech32-1.1.4" @@ -81034,7 +81328,10 @@ in }) sources."bolt09-0.2.0" sources."bytes-3.1.0" + sources."content-disposition-0.5.3" + sources."cookie-0.4.0" sources."ecpair-1.0.1" + sources."express-4.17.1" sources."goldengate-10.4.2" sources."http-errors-1.7.2" sources."inherits-2.0.3" @@ -81044,7 +81341,23 @@ in sources."bn.js-5.2.0" ]; }) + (sources."lightning-4.14.3" // { + dependencies = [ + sources."bech32-2.0.0" + sources."bn.js-5.2.0" + (sources."invoices-2.0.1" // { + dependencies = [ + (sources."bitcoinjs-lib-5.2.0" // { + dependencies = [ + sources."bech32-1.1.4" + ]; + }) + ]; + }) + ]; + }) sources."ln-service-52.16.0" + sources."ms-2.1.1" (sources."psbt-1.1.10" // { dependencies = [ sources."bitcoinjs-lib-5.2.0" @@ -81053,33 +81366,31 @@ in }) sources."qs-6.7.0" sources."raw-body-2.4.0" + sources."send-0.17.1" + sources."serve-static-1.14.1" sources."setprototypeof-1.1.1" sources."tiny-secp256k1-1.1.6" sources."toidentifier-1.0.0" + sources."ws-8.2.3" ]; }) - (sources."ln-service-53.9.3" // { + (sources."ln-service-53.9.4" // { dependencies = [ - sources."@types/node-17.0.21" - sources."@types/request-2.48.8" - sources."@types/ws-8.5.2" - sources."bolt09-0.2.2" - sources."content-disposition-0.5.4" - sources."cookie-0.4.2" - sources."express-4.17.3" - sources."lightning-5.8.2" - sources."ms-2.1.3" - sources."safe-buffer-5.2.1" - sources."send-0.17.2" - sources."serve-static-1.14.2" - sources."type-fest-2.12.0" - sources."ws-8.5.0" + sources."@grpc/grpc-js-1.6.1" + sources."@types/ws-8.5.3" + sources."lightning-5.8.6" + sources."type-fest-2.12.2" ]; }) - sources."ln-sync-3.11.0" - (sources."ln-telegram-3.20.0" // { + (sources."ln-sync-3.11.0" // { dependencies = [ - sources."paid-services-3.14.2" + sources."ln-service-53.9.3" + ]; + }) + (sources."ln-telegram-3.21.0" // { + dependencies = [ + sources."ln-service-53.9.3" + sources."paid-services-3.14.4" ]; }) sources."lodash-4.17.21" @@ -81135,7 +81446,7 @@ in sources."negotiator-0.6.3" sources."node-addon-api-2.0.2" sources."node-fetch-2.6.7" - sources."node-gyp-build-4.3.0" + sources."node-gyp-build-4.4.0" sources."nofilter-3.1.0" sources."normalize-url-4.5.1" sources."npmlog-2.0.4" @@ -81164,7 +81475,7 @@ in sources."semver-6.3.0" ]; }) - sources."paid-services-3.14.4" + sources."paid-services-3.14.5" sources."parseurl-1.3.3" sources."path-to-regexp-0.1.7" sources."pinkie-2.0.4" @@ -81174,23 +81485,19 @@ in dependencies = [ sources."@grpc/grpc-js-1.5.4" sources."@types/node-17.0.15" - sources."@types/request-2.48.8" sources."@types/ws-8.2.2" sources."body-parser-1.19.1" + sources."bolt09-0.2.1" sources."bytes-3.1.1" - sources."content-disposition-0.5.4" sources."cookie-0.4.1" sources."express-4.17.2" sources."invoices-2.0.3" sources."lightning-5.6.2" sources."ln-service-53.7.3" - sources."ms-2.1.3" sources."qs-6.9.6" sources."raw-body-2.4.2" sources."safe-buffer-5.2.1" sources."secp256k1-4.0.3" - sources."send-0.17.2" - sources."serve-static-1.14.2" sources."tiny-secp256k1-2.2.0" sources."type-fest-2.11.1" sources."uint8array-tools-0.0.6" @@ -81236,15 +81543,12 @@ in sources."semver-6.3.0" ]; }) - (sources."send-0.17.1" // { + (sources."send-0.17.2" // { dependencies = [ - sources."http-errors-1.7.3" - sources."ms-2.1.1" - sources."setprototypeof-1.1.1" - sources."toidentifier-1.0.0" + sources."ms-2.1.3" ]; }) - sources."serve-static-1.14.1" + sources."serve-static-1.14.2" sources."setprototypeof-1.2.0" sources."sha.js-2.4.11" sources."signal-exit-3.0.7" @@ -81291,7 +81595,7 @@ in sources."tslib-2.3.1" sources."tweetnacl-1.0.3" sources."tweetnacl-util-0.15.1" - sources."type-fest-0.21.3" + sources."type-fest-2.12.0" sources."type-is-1.6.18" sources."typedarray-0.0.6" sources."typedarray-to-buffer-3.1.5" @@ -81333,7 +81637,7 @@ in }) sources."wrappy-1.0.2" sources."write-file-atomic-3.0.3" - sources."ws-8.2.3" + sources."ws-8.5.0" sources."xdg-basedir-4.0.0" sources."y18n-5.0.8" sources."yallist-4.0.0" @@ -81461,7 +81765,7 @@ in sources."tweetnacl-0.14.5" sources."type-check-0.3.2" sources."uri-js-4.4.1" - sources."urijs-1.19.10" + sources."urijs-1.19.11" sources."uuid-3.4.0" sources."verror-1.10.0" sources."vscode-jsonrpc-6.0.0" @@ -81702,7 +82006,7 @@ in sources."find-up-1.1.2" (sources."fs-extra-0.26.7" // { dependencies = [ - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" ]; }) sources."fs.realpath-1.0.0" @@ -81723,17 +82027,17 @@ in sources."is-utf8-0.2.1" (sources."jsonfile-2.4.0" // { dependencies = [ - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" ]; }) (sources."klaw-1.3.1" // { dependencies = [ - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" ]; }) (sources."load-json-file-1.1.0" // { dependencies = [ - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" ]; }) sources."lodash-4.2.1" @@ -81756,7 +82060,7 @@ in sources."path-parse-1.0.7" (sources."path-type-1.1.0" // { dependencies = [ - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" ]; }) sources."pify-2.3.0" @@ -81887,7 +82191,7 @@ in sources."bn.js-4.12.0" ]; }) - sources."es-abstract-1.19.1" + sources."es-abstract-1.19.2" sources."es-to-primitive-1.2.1" sources."events-3.3.0" sources."evp_bytestokey-1.0.3" @@ -81927,9 +82231,9 @@ in sources."is-date-object-1.0.5" sources."is-generator-function-1.0.10" sources."is-negative-zero-2.0.2" - sources."is-number-object-1.0.6" + sources."is-number-object-1.0.7" sources."is-regex-1.1.4" - sources."is-shared-array-buffer-1.0.1" + sources."is-shared-array-buffer-1.0.2" sources."is-string-1.0.7" sources."is-symbol-1.0.4" sources."is-typed-array-1.1.8" @@ -82129,7 +82433,7 @@ in sources."fsevents-2.3.2" sources."get-caller-file-2.0.5" sources."glob-parent-5.1.2" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."has-ansi-2.0.0" sources."has-cors-1.1.0" (sources."http-errors-2.0.0" // { @@ -82327,7 +82631,7 @@ in }) sources."bluebird-3.7.2" sources."bn.js-4.12.0" - (sources."body-parser-1.19.2" // { + (sources."body-parser-1.20.0" // { dependencies = [ sources."debug-2.6.9" ]; @@ -82380,8 +82684,10 @@ in (sources."csurf-1.11.0" // { dependencies = [ sources."cookie-0.4.0" + sources."depd-1.1.2" sources."http-errors-1.7.3" sources."setprototypeof-1.1.1" + sources."statuses-1.5.0" sources."toidentifier-1.0.0" ]; }) @@ -82405,8 +82711,8 @@ in sources."decimal.js-10.3.1" sources."delayed-stream-1.0.0" sources."denque-1.5.1" - sources."depd-1.1.2" - sources."destroy-1.0.4" + sources."depd-2.0.0" + sources."destroy-1.2.0" sources."dijkstrajs-1.0.2" sources."doctypes-1.1.0" sources."dotenv-10.0.0" @@ -82426,16 +82732,22 @@ in sources."event-loop-stats-1.4.1" (sources."express-4.17.3" // { dependencies = [ + sources."body-parser-1.19.2" sources."cookie-0.4.2" sources."debug-2.6.9" + sources."depd-1.1.2" + sources."http-errors-1.8.1" + sources."on-finished-2.3.0" + sources."qs-6.9.7" + sources."raw-body-2.4.3" sources."safe-buffer-5.2.1" + sources."statuses-1.5.0" ]; }) sources."express-async-handler-1.2.0" (sources."express-session-1.17.2" // { dependencies = [ sources."debug-2.6.9" - sources."depd-2.0.0" sources."safe-buffer-5.2.1" ]; }) @@ -82447,6 +82759,8 @@ in (sources."finalhandler-1.1.2" // { dependencies = [ sources."debug-2.6.9" + sources."on-finished-2.3.0" + sources."statuses-1.5.0" ]; }) sources."find-up-4.1.0" @@ -82475,7 +82789,7 @@ in sources."hash.js-1.1.7" sources."hmac-drbg-1.0.1" sources."hosted-git-info-4.1.0" - sources."http-errors-1.8.1" + sources."http-errors-2.0.0" sources."http-signature-1.2.0" sources."iconv-lite-0.4.24" sources."indent-string-4.0.0" @@ -82539,12 +82853,12 @@ in sources."minimist-1.2.6" sources."minimist-options-4.1.0" sources."mkdirp-0.5.6" - sources."moment-2.29.1" + sources."moment-2.29.2" sources."moment-duration-format-2.3.2" (sources."morgan-1.10.0" // { dependencies = [ sources."debug-2.6.9" - sources."depd-2.0.0" + sources."on-finished-2.3.0" ]; }) sources."ms-2.0.0" @@ -82555,7 +82869,8 @@ in sources."normalize-package-data-3.0.3" sources."oauth-sign-0.9.0" sources."object-assign-4.1.1" - sources."on-finished-2.3.0" + sources."object-inspect-1.12.0" + sources."on-finished-2.4.1" sources."on-headers-1.0.2" sources."once-1.4.0" sources."p-limit-2.3.0" @@ -82592,12 +82907,12 @@ in sources."punycode-2.1.1" sources."pushdata-bitcoin-1.0.1" sources."qrcode-1.5.0" - sources."qs-6.9.7" + sources."qs-6.10.3" sources."quick-lru-4.0.1" sources."random-bytes-1.0.0" sources."randombytes-2.1.0" sources."range-parser-1.2.1" - sources."raw-body-2.4.3" + sources."raw-body-2.5.1" (sources."read-pkg-5.2.0" // { dependencies = [ sources."hosted-git-info-2.8.9" @@ -82639,7 +82954,12 @@ in sources."ms-2.0.0" ]; }) + sources."depd-1.1.2" + sources."destroy-1.0.4" + sources."http-errors-1.8.1" sources."ms-2.1.3" + sources."on-finished-2.3.0" + sources."statuses-1.5.0" ]; }) (sources."serve-favicon-2.5.0" // { @@ -82652,6 +82972,7 @@ in sources."set-blocking-2.0.0" sources."setprototypeof-1.2.0" sources."sha.js-2.4.11" + sources."side-channel-1.0.4" sources."simple-git-2.48.0" sources."spdx-correct-3.1.1" sources."spdx-exceptions-2.3.0" @@ -82660,7 +82981,7 @@ in sources."sprintf-js-1.0.3" sources."sshpk-1.17.0" sources."standard-error-1.1.0" - sources."statuses-1.5.0" + sources."statuses-2.0.1" sources."string-width-4.2.3" (sources."string_decoder-1.3.0" // { dependencies = [ @@ -82869,7 +83190,7 @@ in sources."getpass-0.1.7" sources."glob-7.2.0" sources."got-1.2.2" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."har-schema-2.0.0" sources."har-validator-5.1.5" sources."has-1.0.3" @@ -83360,7 +83681,7 @@ in sources."global-dirs-0.1.1" sources."globby-8.0.2" sources."got-6.7.1" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."has-1.0.3" (sources."has-ansi-2.0.0" // { dependencies = [ @@ -83752,10 +84073,10 @@ in cdk8s-cli = nodeEnv.buildNodePackage { name = "cdk8s-cli"; packageName = "cdk8s-cli"; - version = "1.0.134"; + version = "1.0.143"; src = fetchurl { - url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-1.0.134.tgz"; - sha512 = "piVuRH84D5xsGeC7uOOGQNBR7JrhrDT+6g5GEM4EOZf1XjxeuH15YfRsI6+ukexwq85kseEoCWltcOvGZefYQQ=="; + url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-1.0.143.tgz"; + sha512 = "H2aROcLGTNDjTdpFf1C3wniW8HtsoKkoL9JX/0Yddu+yBx7Kens2B9Hlh83qgb2PWIqWfiXtYpy4ug/jTLAtqA=="; }; dependencies = [ sources."@jsii/check-node-1.55.1" @@ -83774,8 +84095,8 @@ in sources."call-bind-1.0.2" sources."camelcase-6.3.0" sources."case-1.6.3" - sources."cdk8s-1.5.52" - sources."cdk8s-plus-22-1.0.0-beta.158" + sources."cdk8s-1.5.62" + sources."cdk8s-plus-22-1.0.0-beta.180" sources."chalk-4.1.2" sources."cliui-7.0.4" sources."clone-2.1.2" @@ -83788,7 +84109,7 @@ in sources."color-name-1.1.4" sources."colors-1.4.0" sources."commonmark-0.30.0" - sources."constructs-3.3.250" + sources."constructs-3.3.259" sources."date-format-4.0.6" sources."debug-4.3.4" sources."decamelize-5.0.1" @@ -83799,7 +84120,7 @@ in sources."dot-case-3.0.4" sources."emoji-regex-8.0.0" sources."entities-2.0.3" - sources."es-abstract-1.19.1" + sources."es-abstract-1.19.2" sources."es-get-iterator-1.1.2" sources."es-to-primitive-1.2.1" sources."escalade-3.1.1" @@ -83822,7 +84143,7 @@ in sources."get-intrinsic-1.1.1" sources."get-symbol-description-1.0.0" sources."glob-parent-5.1.2" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."has-1.0.3" sources."has-bigints-1.0.1" sources."has-flag-4.0.0" @@ -83840,10 +84161,10 @@ in sources."is-map-2.0.2" sources."is-negative-zero-2.0.2" sources."is-number-7.0.0" - sources."is-number-object-1.0.6" + sources."is-number-object-1.0.7" sources."is-regex-1.1.4" sources."is-set-2.0.2" - sources."is-shared-array-buffer-1.0.1" + sources."is-shared-array-buffer-1.0.2" sources."is-string-1.0.7" sources."is-symbol-1.0.4" sources."is-typed-array-1.1.8" @@ -83875,14 +84196,14 @@ in sources."yargs-16.2.0" ]; }) - (sources."jsii-srcmak-0.1.512" // { + (sources."jsii-srcmak-0.1.521" // { dependencies = [ sources."fs-extra-9.1.0" ]; }) sources."json-schema-0.4.0" sources."json-schema-traverse-1.0.0" - sources."json2jsii-0.2.172" + sources."json2jsii-0.2.181" sources."jsonfile-6.1.0" sources."jsonschema-1.4.0" sources."locate-path-5.0.0" @@ -83925,8 +84246,8 @@ in sources."side-channel-1.0.4" sources."snake-case-3.0.4" sources."sort-json-2.0.1" - sources."spdx-license-list-6.4.0" - sources."sscaff-1.2.239" + sources."spdx-license-list-6.5.0" + sources."sscaff-1.2.248" (sources."streamroller-3.0.6" // { dependencies = [ sources."fs-extra-10.0.1" @@ -83978,10 +84299,10 @@ in cdktf-cli = nodeEnv.buildNodePackage { name = "cdktf-cli"; packageName = "cdktf-cli"; - version = "0.9.4"; + version = "0.10.1"; src = fetchurl { - url = "https://registry.npmjs.org/cdktf-cli/-/cdktf-cli-0.9.4.tgz"; - sha512 = "C7nL+AVA2ltmRhFdAb6yinXzjumRIAyaNi1p5QyZpythrg6+GThxZS/We+s8GIA000uIrPMvesuHCE+dGxkssw=="; + url = "https://registry.npmjs.org/cdktf-cli/-/cdktf-cli-0.10.1.tgz"; + sha512 = "zmmalXgXObKkh8IY5cFJkpbN0iWzJDUMaQlJHmivmTFAxgNTn31/zJjjg6zqngIFpkpDOHbf5nyinJVKXKxI5Q=="; }; dependencies = [ sources."@babel/code-frame-7.16.7" @@ -83991,9 +84312,9 @@ in sources."@babel/parser-7.17.8" sources."@babel/template-7.16.7" sources."@babel/types-7.17.0" - sources."@cdktf/hcl2cdk-0.9.4" - sources."@cdktf/hcl2json-0.9.4" - sources."@cdktf/provider-generator-0.9.4" + sources."@cdktf/hcl2cdk-0.10.1" + sources."@cdktf/hcl2json-0.10.1" + sources."@cdktf/provider-generator-0.10.1" (sources."@jsii/check-node-1.55.1" // { dependencies = [ sources."ansi-styles-4.3.0" @@ -84013,6 +84334,7 @@ in sources."@xmldom/xmldom-0.8.1" sources."ansi-regex-5.0.1" sources."ansi-styles-3.2.1" + sources."arr-rotate-1.0.0" sources."asynckit-0.4.0" sources."at-least-node-1.0.0" sources."available-typed-arrays-1.0.5" @@ -84022,7 +84344,7 @@ in sources."call-bind-1.0.2" sources."camelcase-6.3.0" sources."case-1.6.3" - sources."cdktf-0.9.4" + sources."cdktf-0.10.1" sources."chalk-2.4.2" sources."cliui-6.0.0" sources."clone-2.1.2" @@ -84036,7 +84358,7 @@ in sources."combined-stream-1.0.8" sources."commonmark-0.30.0" sources."concat-map-0.0.1" - sources."constructs-10.0.97" + sources."constructs-10.0.106" sources."date-format-4.0.6" sources."debug-4.3.4" sources."decamelize-1.2.0" @@ -84047,7 +84369,7 @@ in sources."detect-newline-2.1.0" sources."emoji-regex-8.0.0" sources."entities-2.0.3" - sources."es-abstract-1.19.1" + sources."es-abstract-1.19.2" sources."es-get-iterator-1.1.2" sources."es-to-primitive-1.2.1" sources."escalade-3.1.1" @@ -84055,6 +84377,7 @@ in sources."events-3.3.0" sources."fast-glob-3.2.11" sources."fastq-1.13.0" + sources."figures-3.2.0" sources."fill-range-7.0.1" sources."find-up-4.1.0" sources."flatted-3.2.5" @@ -84066,9 +84389,13 @@ in sources."get-caller-file-2.0.5" sources."get-intrinsic-1.1.1" sources."get-symbol-description-1.0.0" - sources."glob-7.2.0" + (sources."glob-7.2.0" // { + dependencies = [ + sources."minimatch-3.1.2" + ]; + }) sources."glob-parent-5.1.2" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."graphology-0.24.1" sources."graphology-types-0.21.2" sources."has-1.0.3" @@ -84078,6 +84405,7 @@ in sources."has-tostringtag-1.0.0" sources."inflight-1.0.6" sources."inherits-2.0.4" + sources."ink-select-input-4.2.1" sources."internal-slot-1.0.3" sources."is-arguments-1.1.1" sources."is-bigint-1.0.4" @@ -84090,10 +84418,10 @@ in sources."is-map-2.0.2" sources."is-negative-zero-2.0.2" sources."is-number-7.0.0" - sources."is-number-object-1.0.6" + sources."is-number-object-1.0.7" sources."is-regex-1.1.4" sources."is-set-2.0.2" - sources."is-shared-array-buffer-1.0.1" + sources."is-shared-array-buffer-1.0.2" sources."is-string-1.0.7" sources."is-symbol-1.0.4" sources."is-typed-array-1.1.8" @@ -84173,7 +84501,7 @@ in sources."yargs-parser-20.2.9" ]; }) - (sources."jsii-srcmak-0.1.512" // { + (sources."jsii-srcmak-0.1.521" // { dependencies = [ sources."fs-extra-9.1.0" sources."jsonfile-6.1.0" @@ -84184,6 +84512,7 @@ in sources."jsonfile-4.0.0" sources."jsonschema-1.4.0" sources."locate-path-5.0.0" + sources."lodash.isequal-4.5.0" sources."log4js-6.4.4" sources."lru-cache-6.0.0" sources."mdurl-1.0.1" @@ -84191,10 +84520,15 @@ in sources."micromatch-4.0.5" sources."mime-db-1.52.0" sources."mime-types-2.1.35" - sources."minimatch-3.1.2" + (sources."minimatch-5.0.1" // { + dependencies = [ + sources."brace-expansion-2.0.1" + ]; + }) sources."minimist-1.2.6" sources."ms-2.1.2" sources."ncp-2.0.0" + sources."node-abort-controller-3.0.1" sources."node-fetch-2.6.7" sources."object-inspect-1.12.0" sources."object-is-1.1.5" @@ -84209,7 +84543,7 @@ in sources."path-exists-4.0.0" sources."path-is-absolute-1.0.1" sources."picomatch-2.3.1" - sources."prettier-2.6.1" + sources."prettier-2.6.2" sources."punycode-2.1.1" sources."queue-microtask-1.2.3" sources."regexp.prototype.flags-1.4.1" @@ -84219,6 +84553,7 @@ in sources."reusify-1.0.4" sources."rfdc-1.3.0" sources."run-parallel-1.2.0" + sources."safe-buffer-5.2.1" sources."semver-7.3.5" (sources."semver-intersect-1.4.0" // { dependencies = [ @@ -84229,7 +84564,7 @@ in sources."side-channel-1.0.4" sources."sort-json-2.0.1" sources."source-map-0.5.7" - sources."spdx-license-list-6.4.0" + sources."spdx-license-list-6.5.0" (sources."streamroller-3.0.6" // { dependencies = [ sources."fs-extra-10.0.1" @@ -84246,6 +84581,7 @@ in sources."to-fast-properties-2.0.0" sources."to-regex-range-5.0.1" sources."tr46-0.0.3" + sources."tunnel-agent-0.6.0" sources."typescript-3.9.10" sources."unbox-primitive-1.0.1" sources."universalify-0.1.2" @@ -84298,10 +84634,10 @@ in clean-css-cli = nodeEnv.buildNodePackage { name = "clean-css-cli"; packageName = "clean-css-cli"; - version = "5.5.2"; + version = "5.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/clean-css-cli/-/clean-css-cli-5.5.2.tgz"; - sha512 = "4y5FD+ayRz7IWqZRCCMvFxNUhluc1Yv8mNPmrHbrm2NjKsv9uaQZedZKN4L+QMkTqANL1RfOwhpe22neDEgEMA=="; + url = "https://registry.npmjs.org/clean-css-cli/-/clean-css-cli-5.6.0.tgz"; + sha512 = "68vorNEG808D1QzeerO9AlwQVTuaR8YSK4aqwIsjJq0wDSyPH11ApHY0O+EQrdEGUZcN+d72v+Nn/gpxjAFewQ=="; }; dependencies = [ sources."anymatch-3.1.2" @@ -84310,7 +84646,7 @@ in sources."brace-expansion-1.1.11" sources."braces-3.0.2" sources."chokidar-3.5.3" - sources."clean-css-5.2.4" + sources."clean-css-5.3.0" sources."commander-7.2.0" sources."concat-map-0.0.1" sources."fill-range-7.0.1" @@ -84518,10 +84854,10 @@ in coc-clangd = nodeEnv.buildNodePackage { name = "coc-clangd"; packageName = "coc-clangd"; - version = "0.21.1"; + version = "0.21.3"; src = fetchurl { - url = "https://registry.npmjs.org/coc-clangd/-/coc-clangd-0.21.1.tgz"; - sha512 = "222VMJBKE4ReyznvWjgJv4lZFtCrkEnKfJk4cL20SH+74x95JP2N0ujNtUiggBhaWcxvOiQxRt467NuVI48Fxg=="; + url = "https://registry.npmjs.org/coc-clangd/-/coc-clangd-0.21.3.tgz"; + sha512 = "fo38suoOGygQ68d6WAcQyTT0uVyEq+plVgr0viWb/DVe4vy51S5RLDboGFuCfkk8GIy6snWCv0am0w83WXBuig=="; }; buildInputs = globalBuildInputs; meta = { @@ -84730,10 +85066,10 @@ in coc-go = nodeEnv.buildNodePackage { name = "coc-go"; packageName = "coc-go"; - version = "1.2.1"; + version = "1.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/coc-go/-/coc-go-1.2.1.tgz"; - sha512 = "wC3hU4P7w9QtGUNng4lb3PFjfZvOwaSCz9V/M7xcnscuyyoA1j0nNB1/GsBNmW7xnhRS4kEfRPeeHwvj/3YYmA=="; + url = "https://registry.npmjs.org/coc-go/-/coc-go-1.3.0.tgz"; + sha512 = "Oh3ea/gb0lU5qZN1qaQMAQhxscrgcYfB3ZuRWxi+tMLCjoi8gJg/g05C5zD6hfbgmhC1PsL7jPeWSe5F4MifLg=="; }; dependencies = [ sources."isexe-2.0.0" @@ -84904,7 +85240,7 @@ in sha512 = "zFExh1wGAZl4LXSp76NAjWORO9Tyhfw8WtALnhDv741p4tjWjVSEl6GmXTQN0U0tXz8UZ8ln2rL2OaxOdgMCTA=="; }; dependencies = [ - sources."@chemzqm/neovim-5.7.7" + sources."@chemzqm/neovim-5.7.8" sources."@tootallnate/once-1.1.2" sources."agent-base-6.0.2" sources."arch-2.2.0" @@ -84940,7 +85276,7 @@ in sources."define-properties-1.1.3" sources."duplexer2-0.1.4" sources."end-of-stream-1.4.4" - sources."es-abstract-1.19.1" + sources."es-abstract-1.19.2" sources."es-to-primitive-1.2.1" sources."event-lite-0.1.2" sources."execa-1.0.0" @@ -84963,7 +85299,7 @@ in sources."get-stream-4.1.0" sources."get-symbol-description-1.0.0" sources."glob-7.2.0" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."has-1.0.3" sources."has-bigints-1.0.1" sources."has-symbols-1.0.3" @@ -84982,9 +85318,9 @@ in sources."is-date-object-1.0.5" sources."is-docker-2.2.1" sources."is-negative-zero-2.0.2" - sources."is-number-object-1.0.6" + sources."is-number-object-1.0.7" sources."is-regex-1.1.4" - sources."is-shared-array-buffer-1.0.1" + sources."is-shared-array-buffer-1.0.2" sources."is-stream-1.1.0" sources."is-string-1.0.7" sources."is-symbol-1.0.4" @@ -85123,7 +85459,7 @@ in sha512 = "LkwQTBlD/chH0BTl7zFMw+M1CKbVIy8W49nVLuB+wmgS3dqnKZo58PRTYkcX2X25/FIWOh/oMSjWoZ8cTck8zQ=="; }; dependencies = [ - sources."prettier-2.6.1" + sources."prettier-2.6.2" ]; buildInputs = globalBuildInputs; meta = { @@ -85144,7 +85480,7 @@ in sha512 = "1ytGBG4gmz/M/6guRKUvTSltXDpoWlcbqq7RsMi3fFEBhYvSQVpy3MkKgxjkJNVbp+YKuJpcuNAhCIjq0+BHAg=="; }; dependencies = [ - sources."pyright-1.1.233" + sources."pyright-1.1.235" ]; buildInputs = globalBuildInputs; meta = { @@ -85218,10 +85554,10 @@ in coc-rust-analyzer = nodeEnv.buildNodePackage { name = "coc-rust-analyzer"; packageName = "coc-rust-analyzer"; - version = "0.61.1"; + version = "0.61.2"; src = fetchurl { - url = "https://registry.npmjs.org/coc-rust-analyzer/-/coc-rust-analyzer-0.61.1.tgz"; - sha512 = "xQtIB93k8SIlK6tOS1XEpdFAypU8mLVWhqsPkfV8Hf7AP3m4prErooMS8Du/9AMRqwL2nQxsBjAwpWYI/gJCgA=="; + url = "https://registry.npmjs.org/coc-rust-analyzer/-/coc-rust-analyzer-0.61.2.tgz"; + sha512 = "qFVrmFNls2WsLtfgGlChm+mKpQc5lypxhjHgELslQbKBKSEZHpV4OfpknTpCjocSHpP0HFgIKiDVVwC2wsW0PA=="; }; buildInputs = globalBuildInputs; meta = { @@ -85254,10 +85590,10 @@ in coc-snippets = nodeEnv.buildNodePackage { name = "coc-snippets"; packageName = "coc-snippets"; - version = "3.0.5"; + version = "3.0.8"; src = fetchurl { - url = "https://registry.npmjs.org/coc-snippets/-/coc-snippets-3.0.5.tgz"; - sha512 = "fyJwbwX6FJVNb8NMmkyN2JDj5pr/imvfOCePPvkHiQCybnU82YM05+CKpBIAUBfxzwkBLQq64V4D7LD+lrUVLQ=="; + url = "https://registry.npmjs.org/coc-snippets/-/coc-snippets-3.0.8.tgz"; + sha512 = "+9CpyQNMNQQCn3gGbH84/nuihfWzt0I/TXGVAj11AQL4ns4iAlQaaqqle7FmG1VTlvHYwZy5luN8YYWqKBx6uQ=="; }; buildInputs = globalBuildInputs; meta = { @@ -85356,7 +85692,7 @@ in sources."callsites-3.1.0" sources."camelcase-5.3.1" sources."camelcase-keys-6.2.2" - sources."caniuse-lite-1.0.30001320" + sources."caniuse-lite-1.0.30001325" (sources."chalk-4.1.2" // { dependencies = [ sources."ansi-styles-4.3.0" @@ -85393,7 +85729,7 @@ in sources."domelementtype-1.3.1" sources."domhandler-2.4.2" sources."domutils-1.7.0" - sources."electron-to-chromium-1.4.96" + sources."electron-to-chromium-1.4.103" sources."emoji-regex-8.0.0" sources."entities-1.1.2" sources."error-ex-1.3.2" @@ -85525,7 +85861,7 @@ in sources."postcss-safe-parser-4.0.2" sources."postcss-sass-0.4.4" sources."postcss-scss-2.1.1" - sources."postcss-selector-parser-6.0.9" + sources."postcss-selector-parser-6.0.10" sources."postcss-syntax-0.36.2" sources."postcss-value-parser-4.2.0" sources."punycode-2.1.1" @@ -85937,7 +86273,7 @@ in sources."path-key-3.1.1" sources."path-parse-1.0.7" sources."prelude-ls-1.2.1" - sources."prettier-2.6.1" + sources."prettier-2.6.2" sources."progress-2.0.3" sources."pug-error-2.0.0" sources."pug-lexer-5.0.1" @@ -86165,7 +86501,7 @@ in sources."git-clone-0.1.0" sources."glob-7.2.0" sources."got-6.7.1" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."has-flag-3.0.0" sources."has-symbol-support-x-1.4.2" sources."has-to-string-tag-x-1.4.1" @@ -86336,10 +86672,10 @@ in concurrently = nodeEnv.buildNodePackage { name = "concurrently"; packageName = "concurrently"; - version = "7.0.0"; + version = "7.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/concurrently/-/concurrently-7.0.0.tgz"; - sha512 = "WKM7PUsI8wyXpF80H+zjHP32fsgsHNQfPLw/e70Z5dYkV7hF+rf8q3D+ScWJIEr57CpkO3OWBko6hwhQLPR8Pw=="; + url = "https://registry.npmjs.org/concurrently/-/concurrently-7.1.0.tgz"; + sha512 = "Bz0tMlYKZRUDqJlNiF/OImojMB9ruKUz6GCfmhFnSapXgPe+3xzY4byqoKG9tUZ7L2PGEUjfLPOLfIX3labnmw=="; }; dependencies = [ sources."ansi-regex-5.0.1" @@ -86518,7 +86854,7 @@ in sources."git-remote-origin-url-2.0.0" sources."git-semver-tags-4.1.1" sources."gitconfiglocal-1.0.0" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."handlebars-4.7.7" sources."hard-rejection-2.1.0" sources."has-1.0.3" @@ -86776,7 +87112,7 @@ in ]; }) sources."concat-map-0.0.1" - (sources."conf-10.1.1" // { + (sources."conf-10.1.2" // { dependencies = [ sources."ajv-8.11.0" sources."dot-prop-6.0.1" @@ -86907,7 +87243,7 @@ in sources."get-stream-4.1.0" ]; }) - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."har-schema-2.0.0" sources."har-validator-5.1.5" sources."has-1.0.3" @@ -87316,7 +87652,7 @@ in sources."function-bind-1.1.1" sources."glob-parent-5.1.2" sources."globby-13.1.1" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."hard-rejection-2.1.0" sources."has-1.0.3" sources."has-flag-3.0.0" @@ -87347,7 +87683,7 @@ in sources."arrify-1.0.1" ]; }) - sources."nested-error-stacks-2.1.0" + sources."nested-error-stacks-2.1.1" (sources."normalize-package-data-3.0.3" // { dependencies = [ sources."semver-7.3.5" @@ -87594,7 +87930,7 @@ in sources."fstream-1.0.12" sources."fstream-ignore-1.0.5" sources."glob-7.2.0" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."has-flag-4.0.0" sources."hyperquest-2.1.3" sources."inflight-1.0.6" @@ -87680,10 +88016,10 @@ in cspell = nodeEnv.buildNodePackage { name = "cspell"; packageName = "cspell"; - version = "5.19.3"; + version = "5.19.5"; src = fetchurl { - url = "https://registry.npmjs.org/cspell/-/cspell-5.19.3.tgz"; - sha512 = "JJBH8iqtHYmxqLQZ+7GAMTVvc6SAoHVgn1tdYknOI2/uxAbZVH29eaxINY7JfjwPuxPPVAvttRetBAIRiu6ZYw=="; + url = "https://registry.npmjs.org/cspell/-/cspell-5.19.5.tgz"; + sha512 = "LFKWBBOY6s1SYJcMlWmFP2ml3kxgzUcUCOY4JYDCAzA088gbBEiSN8sM0X6MhobsMJx4MchxjwveXFRP+1umyA=="; }; dependencies = [ sources."@babel/code-frame-7.16.7" @@ -87698,9 +88034,9 @@ in sources."supports-color-5.5.0" ]; }) - sources."@cspell/cspell-bundled-dicts-5.19.3" - sources."@cspell/cspell-pipe-5.19.3" - sources."@cspell/cspell-types-5.19.3" + sources."@cspell/cspell-bundled-dicts-5.19.5" + sources."@cspell/cspell-pipe-5.19.5" + sources."@cspell/cspell-types-5.19.5" sources."@cspell/dict-ada-2.0.0" sources."@cspell/dict-aws-2.0.0" sources."@cspell/dict-bash-2.0.1" @@ -87759,11 +88095,11 @@ in sources."core-util-is-1.0.3" sources."cosmiconfig-7.0.1" sources."crypto-random-string-2.0.0" - sources."cspell-gitignore-5.19.3" - sources."cspell-glob-5.19.3" - sources."cspell-io-5.19.3" - sources."cspell-lib-5.19.3" - sources."cspell-trie-lib-5.19.3" + sources."cspell-gitignore-5.19.5" + sources."cspell-glob-5.19.5" + sources."cspell-io-5.19.5" + sources."cspell-lib-5.19.5" + sources."cspell-trie-lib-5.19.5" sources."dot-prop-5.3.0" sources."error-ex-1.3.2" sources."escape-string-regexp-1.0.5" @@ -87781,7 +88117,7 @@ in sources."get-stdin-8.0.0" sources."glob-7.2.0" sources."global-dirs-0.1.1" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."has-flag-4.0.0" sources."has-own-prop-2.0.0" (sources."import-fresh-3.3.0" // { @@ -88112,7 +88448,7 @@ in sources."global-4.4.0" sources."global-dirs-0.1.1" sources."got-6.7.1" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."guard-timeout-2.0.0" sources."har-schema-2.0.0" sources."har-validator-5.1.5" @@ -88231,7 +88567,7 @@ in sources."neat-input-1.11.1" sources."neat-log-3.1.0" sources."nets-3.2.0" - sources."node-gyp-build-4.3.0" + sources."node-gyp-build-4.4.0" sources."normalize-path-2.1.1" sources."npm-run-path-2.0.2" sources."oauth-sign-0.9.0" @@ -88519,7 +88855,7 @@ in "deltachat-desktop-../../applications/networking/instant-messengers/deltachat-desktop" = nodeEnv.buildNodePackage { name = "deltachat-desktop"; packageName = "deltachat-desktop"; - version = "1.28.0"; + version = "1.28.1"; src = ../../applications/networking/instant-messengers/deltachat-desktop; dependencies = [ sources."@ampproject/remapping-2.1.2" @@ -88633,7 +88969,7 @@ in sources."@babel/template-7.16.7" sources."@babel/traverse-7.17.3" sources."@babel/types-7.17.0" - sources."@blueprintjs/colors-4.0.1" + sources."@blueprintjs/colors-4.0.2" sources."@blueprintjs/core-3.54.0" sources."@blueprintjs/icons-3.33.0" sources."@deltachat/message_parser_wasm-0.3.0" @@ -88722,7 +89058,7 @@ in ]; }) sources."call-bind-1.0.2" - sources."caniuse-lite-1.0.30001320" + sources."caniuse-lite-1.0.30001325" sources."chalk-2.4.2" sources."chokidar-2.1.8" (sources."class-utils-0.3.6" // { @@ -88788,8 +89124,8 @@ in sources."dom4-2.1.6" sources."duplexer3-0.1.4" sources."earcut-2.2.3" - sources."electron-14.2.8" - sources."electron-to-chromium-1.4.96" + sources."electron-14.2.9" + sources."electron-to-chromium-1.4.103" sources."emoji-js-clean-4.0.0" sources."emoji-mart-3.0.1" sources."emoji-regex-9.2.2" @@ -88881,7 +89217,7 @@ in sources."get-stream-4.1.0" ]; }) - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."grid-index-1.1.0" sources."gud-1.0.0" sources."has-1.0.3" @@ -88961,14 +89297,14 @@ in ]; }) sources."mkdirp-0.5.6" - sources."moment-2.29.1" + sources."moment-2.29.2" sources."ms-2.1.2" sources."murmurhash-js-1.0.0" sources."nan-2.15.0" sources."nanomatch-1.2.13" sources."napi-macros-2.0.0" sources."node-fetch-2.6.7" - sources."node-gyp-build-4.3.0" + sources."node-gyp-build-4.4.0" sources."node-releases-2.0.2" sources."normalize-path-3.0.0" sources."normalize-url-4.5.1" @@ -89068,7 +89404,7 @@ in sources."rw-0.1.4" sources."safe-buffer-5.2.1" sources."safe-regex-1.1.0" - (sources."sass-1.49.9" // { + (sources."sass-1.49.11" // { dependencies = [ sources."anymatch-3.1.2" sources."binary-extensions-2.2.0" @@ -89275,7 +89611,7 @@ in sources."glob-7.2.0" sources."glob-parent-5.1.2" sources."globby-11.1.0" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."ignore-5.2.0" sources."indent-string-4.0.0" sources."inflight-1.0.6" @@ -89365,10 +89701,10 @@ in elasticdump = nodeEnv.buildNodePackage { name = "elasticdump"; packageName = "elasticdump"; - version = "6.82.1"; + version = "6.82.3"; src = fetchurl { - url = "https://registry.npmjs.org/elasticdump/-/elasticdump-6.82.1.tgz"; - sha512 = "21LnOw92tD3UXOP0/yaWYBig5p28N5q8TTgL64mkIkNWUIKA2gOa+UO+Enejs1Mubo36jNX830w2ea1uJfHcLg=="; + url = "https://registry.npmjs.org/elasticdump/-/elasticdump-6.82.3.tgz"; + sha512 = "Q7JNsKRQbPkwCQIj9YNHbgYZ2TcHAMdKlga++mBkKwpuIiwYYtqvb40TtjQBWpAD+k9MI7Lrp2/Vqrt9vmy0ow=="; }; dependencies = [ sources."@fast-csv/format-4.3.5" @@ -89573,6 +89909,7 @@ in sources."@types/cacheable-request-6.0.2" sources."@types/glob-7.2.0" sources."@types/http-cache-semantics-4.0.1" + 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" @@ -89640,6 +89977,7 @@ in sources."combined-stream-1.0.8" sources."commander-4.1.1" sources."compare-version-0.1.2" + sources."compress-brotli-1.3.6" sources."concat-map-0.0.1" sources."config-chain-1.1.13" sources."console-control-strings-1.1.0" @@ -89761,7 +90099,7 @@ in sources."universalify-0.1.2" ]; }) - sources."gauge-4.0.3" + sources."gauge-4.0.4" sources."get-caller-file-2.0.5" sources."get-installed-path-2.1.1" (sources."get-package-info-1.0.0" // { @@ -89783,7 +90121,7 @@ in sources."global-tunnel-ng-2.7.1" sources."globalthis-1.0.2" sources."got-11.8.3" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."har-schema-2.0.0" sources."har-validator-5.1.5" sources."has-1.0.3" @@ -89833,7 +90171,7 @@ in sources."jsonfile-6.1.0" sources."jsprim-1.4.2" sources."junk-3.1.0" - sources."keyv-4.1.1" + sources."keyv-4.2.1" sources."load-json-file-2.0.0" sources."locate-path-2.0.0" sources."lodash-4.17.21" @@ -89875,7 +90213,7 @@ in sources."node-api-version-0.1.4" sources."node-fetch-2.6.7" sources."node-gyp-8.4.1" - sources."node-gyp-build-4.3.0" + sources."node-gyp-build-4.4.0" sources."nopt-5.0.0" (sources."normalize-package-data-2.5.0" // { dependencies = [ @@ -90182,7 +90520,7 @@ in sources."callsites-3.1.0" sources."camelcase-5.3.1" sources."camelcase-keys-6.2.2" - sources."caniuse-lite-1.0.30001320" + sources."caniuse-lite-1.0.30001325" sources."chalk-2.4.2" sources."ci-info-2.0.0" sources."cli-boxes-2.2.1" @@ -90211,7 +90549,7 @@ in ]; }) sources."dot-prop-5.3.0" - sources."electron-to-chromium-1.4.96" + sources."electron-to-chromium-1.4.103" sources."emoji-regex-8.0.0" sources."emojilib-2.4.0" sources."end-of-stream-1.4.4" @@ -90336,7 +90674,7 @@ in sources."punycode-2.1.1" sources."quick-lru-4.0.1" sources."react-16.14.0" - sources."react-devtools-core-4.24.2" + sources."react-devtools-core-4.24.3" sources."react-is-16.13.1" sources."react-reconciler-0.26.2" (sources."read-pkg-5.2.0" // { @@ -90479,7 +90817,7 @@ in sources."@fluentui/foundation-legacy-8.2.5" sources."@fluentui/keyboard-key-0.4.0" sources."@fluentui/merge-styles-8.5.0" - sources."@fluentui/react-8.62.3" + sources."@fluentui/react-8.64.0" sources."@fluentui/react-focus-8.5.6" sources."@fluentui/react-hooks-8.5.3" sources."@fluentui/react-window-provider-2.2.0" @@ -90506,7 +90844,7 @@ in ]; }) sources."@humanwhocodes/object-schema-1.2.1" - sources."@microsoft/load-themed-styles-1.10.249" + sources."@microsoft/load-themed-styles-1.10.250" 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" @@ -91090,7 +91428,7 @@ in sources."globby-11.1.0" sources."glogg-1.0.2" sources."got-9.6.0" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."gulp-4.0.2" (sources."gulp-cli-2.3.0" // { dependencies = [ @@ -91402,7 +91740,7 @@ in ]; }) sources."openapi-types-7.2.3" - sources."swagger-ui-dist-4.9.1" + sources."swagger-ui-dist-4.10.3" ]; }) (sources."mixin-deep-1.3.2" // { @@ -91411,7 +91749,7 @@ in ]; }) sources."mkdirp-1.0.4" - sources."mongodb-4.4.1" + sources."mongodb-4.5.0" sources."mongodb-connection-string-url-2.5.2" (sources."morgan-1.10.0" // { dependencies = [ @@ -91457,7 +91795,7 @@ in sources."tar-2.2.2" ]; }) - sources."node-gyp-build-4.3.0" + sources."node-gyp-build-4.4.0" (sources."node-pre-gyp-0.11.0" // { dependencies = [ sources."minimist-1.2.6" @@ -92387,7 +92725,7 @@ in sources."camel-case-3.0.0" sources."camelcase-5.3.1" sources."caniuse-api-3.0.0" - sources."caniuse-lite-1.0.30001320" + sources."caniuse-lite-1.0.30001325" sources."case-sensitive-paths-webpack-plugin-2.4.0" sources."caseless-0.12.0" sources."chalk-2.4.2" @@ -92628,7 +92966,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.96" + sources."electron-to-chromium-1.4.103" (sources."elliptic-6.5.4" // { dependencies = [ sources."bn.js-4.12.0" @@ -92654,7 +92992,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.1" + sources."es-abstract-1.19.2" sources."es-to-primitive-1.2.1" sources."es6-promise-4.2.8" sources."escalade-3.1.1" @@ -92857,7 +93195,7 @@ in ]; }) sources."globby-11.1.0" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."gzip-size-5.1.1" sources."handle-thing-2.0.1" sources."har-schema-2.0.0" @@ -93002,7 +93340,7 @@ in sources."is-glob-4.0.3" sources."is-negative-zero-2.0.2" sources."is-number-7.0.0" - sources."is-number-object-1.0.6" + sources."is-number-object-1.0.7" sources."is-obj-2.0.0" sources."is-path-cwd-2.2.0" sources."is-path-in-cwd-2.1.0" @@ -93011,7 +93349,7 @@ in sources."is-plain-object-2.0.4" sources."is-regex-1.1.4" sources."is-resolvable-1.1.0" - sources."is-shared-array-buffer-1.0.1" + sources."is-shared-array-buffer-1.0.2" sources."is-stream-1.1.0" sources."is-string-1.0.7" sources."is-symbol-1.0.4" @@ -93358,7 +93696,7 @@ in sources."postcss-value-parser-3.3.1" ]; }) - sources."postcss-selector-parser-6.0.9" + sources."postcss-selector-parser-6.0.10" (sources."postcss-svgo-4.0.3" // { dependencies = [ sources."postcss-value-parser-3.3.1" @@ -93419,8 +93757,8 @@ in (sources."renderkid-2.0.7" // { dependencies = [ sources."ansi-regex-2.1.1" - sources."css-select-4.2.1" - sources."css-what-5.1.0" + sources."css-select-4.3.0" + sources."css-what-6.1.0" sources."dom-serializer-1.3.2" sources."domelementtype-2.2.0" sources."domutils-2.8.0" @@ -94418,6 +94756,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/json-buffer-3.0.0" sources."@types/json-schema-7.0.11" sources."@types/keyv-3.1.4" sources."@types/minimatch-3.0.5" @@ -94626,7 +94965,7 @@ in }) sources."camelcase-6.3.0" sources."caniuse-api-3.0.0" - sources."caniuse-lite-1.0.30001320" + sources."caniuse-lite-1.0.30001325" (sources."chalk-4.1.2" // { dependencies = [ sources."ansi-styles-4.3.0" @@ -94708,6 +95047,7 @@ in sources."commondir-1.0.1" sources."component-emitter-1.3.0" sources."component-type-1.2.1" + sources."compress-brotli-1.3.6" sources."compressible-2.0.18" (sources."compression-1.7.4" // { dependencies = [ @@ -94786,7 +95126,7 @@ in sources."semver-6.3.0" ]; }) - (sources."css-select-4.2.1" // { + (sources."css-select-4.3.0" // { dependencies = [ sources."domhandler-4.3.1" ]; @@ -94797,7 +95137,7 @@ in sources."source-map-0.6.1" ]; }) - sources."css-what-5.1.0" + sources."css-what-6.1.0" sources."cssesc-3.0.0" sources."cssnano-4.1.11" sources."cssnano-preset-default-4.0.8" @@ -94884,7 +95224,7 @@ in sources."duplexer3-0.1.4" sources."duplexify-3.7.1" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.96" + sources."electron-to-chromium-1.4.103" (sources."elliptic-6.5.4" // { dependencies = [ sources."bn.js-4.12.0" @@ -94905,7 +95245,7 @@ in sources."errno-0.1.8" sources."error-ex-1.3.2" sources."errorhandler-1.5.1" - sources."es-abstract-1.19.1" + sources."es-abstract-1.19.2" sources."es-to-primitive-1.2.1" sources."escalade-3.1.1" sources."escape-html-1.0.3" @@ -95083,7 +95423,7 @@ in sources."globals-11.12.0" sources."globby-11.1.0" sources."got-11.8.3" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."graphql-0.13.2" (sources."graphql-tools-3.0.0" // { dependencies = [ @@ -95218,7 +95558,7 @@ in }) sources."is-negative-zero-2.0.2" sources."is-number-7.0.0" - sources."is-number-object-1.0.6" + sources."is-number-object-1.0.7" sources."is-obj-2.0.0" sources."is-path-cwd-2.2.0" (sources."is-path-in-cwd-2.1.0" // { @@ -95255,7 +95595,7 @@ in sources."is-regex-1.1.4" sources."is-resolvable-1.1.0" sources."is-root-2.1.0" - sources."is-shared-array-buffer-1.0.1" + sources."is-shared-array-buffer-1.0.2" sources."is-stream-2.0.1" sources."is-string-1.0.7" sources."is-symbol-1.0.4" @@ -95297,7 +95637,7 @@ in sources."jsonfile-6.1.0" sources."jsonify-0.0.0" sources."keychain-1.3.0" - sources."keyv-4.1.1" + sources."keyv-4.2.1" sources."killable-1.0.1" sources."kind-of-6.0.3" sources."kleur-3.0.3" @@ -95716,7 +96056,7 @@ in ]; }) sources."postcss-safe-parser-4.0.2" - sources."postcss-selector-parser-6.0.9" + sources."postcss-selector-parser-6.0.10" (sources."postcss-svgo-4.0.3" // { dependencies = [ sources."postcss-value-parser-3.3.1" @@ -95924,9 +96264,9 @@ in sources."shell-quote-1.6.1" sources."side-channel-1.0.4" sources."signal-exit-3.0.7" - (sources."simple-plist-1.3.0" // { + (sources."simple-plist-1.3.1" // { dependencies = [ - sources."bplist-parser-0.3.0" + sources."bplist-parser-0.3.1" ]; }) (sources."simple-swizzle-0.2.2" // { @@ -96500,7 +96840,7 @@ in sources."callsites-3.1.0" sources."camelcase-5.3.1" sources."camelcase-keys-6.2.2" - sources."caniuse-lite-1.0.30001320" + sources."caniuse-lite-1.0.30001325" sources."chalk-2.4.2" sources."chownr-1.1.4" sources."ci-info-2.0.0" @@ -96525,7 +96865,7 @@ in }) sources."delay-5.0.0" sources."devtools-protocol-0.0.969999" - sources."electron-to-chromium-1.4.96" + sources."electron-to-chromium-1.4.103" sources."emoji-regex-8.0.0" sources."end-of-stream-1.4.4" sources."error-ex-1.3.2" @@ -96615,15 +96955,14 @@ in sources."progress-2.0.3" sources."proxy-from-env-1.1.0" sources."pump-3.0.0" - (sources."puppeteer-13.5.1" // { + (sources."puppeteer-13.5.2" // { dependencies = [ - sources."debug-4.3.3" sources."ws-8.5.0" ]; }) sources."quick-lru-4.0.1" sources."react-17.0.2" - sources."react-devtools-core-4.24.2" + sources."react-devtools-core-4.24.3" sources."react-reconciler-0.26.2" (sources."read-pkg-5.2.0" // { dependencies = [ @@ -96717,10 +97056,10 @@ in fauna-shell = nodeEnv.buildNodePackage { name = "fauna-shell"; packageName = "fauna-shell"; - version = "0.14.0"; + version = "0.15.0"; src = fetchurl { - url = "https://registry.npmjs.org/fauna-shell/-/fauna-shell-0.14.0.tgz"; - sha512 = "BkerCVGNYE81YUaXK1N4Zv9Sppa1KqfdaqDF03o+B1fnDrQLeCftN+8j8P/z9iFH8ZDrDR9E1qgWNA5NvjHbAw=="; + url = "https://registry.npmjs.org/fauna-shell/-/fauna-shell-0.15.0.tgz"; + sha512 = "/1EUu9Z5ICqSOwegsl0aWI1e3yvfr0/HEw8ns9RLYmROKqihO0IaeWkcf0vqayjp7vp6gl9SoJF8yiX1soYpvA=="; }; dependencies = [ (sources."@heroku-cli/color-1.1.14" // { @@ -96854,6 +97193,7 @@ in sources."semver-5.7.1" ]; }) + sources."csv-parse-5.0.4" sources."csv-stream-0.2.0" sources."dashdash-1.14.1" sources."debug-4.3.4" @@ -96873,6 +97213,7 @@ in sources."estraverse-4.3.0" sources."esutils-2.0.3" sources."execa-0.10.0" + sources."exponential-backoff-3.1.0" sources."extend-3.0.2" sources."external-editor-3.1.0" sources."extract-stack-1.0.0" @@ -96882,7 +97223,7 @@ in sources."fast-json-stable-stringify-2.1.0" sources."fast-levenshtein-2.0.6" sources."fastq-1.13.0" - sources."faunadb-4.5.2" + sources."faunadb-4.5.4" (sources."figures-3.2.0" // { dependencies = [ sources."escape-string-regexp-1.0.5" @@ -96899,7 +97240,7 @@ in sources."glob-parent-5.1.2" sources."globby-11.1.0" sources."got-8.3.2" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."har-schema-2.0.0" sources."har-validator-5.1.5" sources."has-flag-3.0.0" @@ -96973,7 +97314,7 @@ in sources."mime-types-2.1.35" sources."mimic-fn-2.1.0" sources."mimic-response-1.0.1" - sources."moment-2.29.1" + sources."moment-2.29.2" sources."ms-2.1.2" sources."mute-stream-0.0.8" (sources."netrc-parser-3.1.6" // { @@ -97006,13 +97347,14 @@ in sources."pify-3.0.0" sources."prelude-ls-1.1.2" sources."prepend-http-2.0.0" - sources."prettier-2.6.1" + sources."prettier-2.6.2" sources."process-nextick-args-2.0.1" sources."psl-1.8.0" sources."punycode-2.1.1" sources."qs-6.5.3" sources."query-string-5.1.1" sources."queue-microtask-1.2.3" + sources."rate-limiter-flexible-2.3.6" (sources."readable-stream-2.3.7" // { dependencies = [ sources."safe-buffer-5.1.2" @@ -97101,10 +97443,10 @@ in firebase-tools = nodeEnv.buildNodePackage { name = "firebase-tools"; packageName = "firebase-tools"; - version = "10.5.0"; + version = "10.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/firebase-tools/-/firebase-tools-10.5.0.tgz"; - sha512 = "sl4ycYfKsliII500HuqgEOWeB3OXi0twDDC/xPv1Eiw8FFYoTJwHm2w4YWUhTtDq4tSrHNCmdBza9LP+wvelnA=="; + url = "https://registry.npmjs.org/firebase-tools/-/firebase-tools-10.6.0.tgz"; + sha512 = "bJvamfCfvgoPixnJQwKdju88u+fWC0fvbQHRD11IPKFH6G9zd41nlAzqP/b9Sh9YjA/MSDpVA7nUnlnipxB01g=="; }; dependencies = [ (sources."@apidevtools/json-schema-ref-parser-9.0.9" // { @@ -97158,7 +97500,11 @@ in sources."acorn-8.7.0" sources."acorn-walk-8.2.0" sources."agent-base-6.0.2" - sources."agentkeepalive-4.2.1" + (sources."agentkeepalive-4.2.1" // { + dependencies = [ + sources."depd-1.1.2" + ]; + }) sources."aggregate-error-3.1.0" sources."ajv-6.12.6" (sources."ajv-formats-2.1.1" // { @@ -97210,7 +97556,7 @@ in sources."bl-4.1.0" sources."blakejs-1.2.1" sources."bluebird-3.4.7" - (sources."body-parser-1.19.2" // { + (sources."body-parser-1.20.0" // { dependencies = [ sources."debug-2.6.9" sources."ms-2.0.0" @@ -97241,6 +97587,7 @@ in sources."lowercase-keys-2.0.0" ]; }) + sources."call-bind-1.0.2" sources."call-me-maybe-1.0.1" sources."camelcase-5.3.1" sources."cardinal-2.1.1" @@ -97306,7 +97653,7 @@ in sources."cookie-signature-1.0.6" sources."core-util-is-1.0.3" sources."cors-2.8.5" - sources."crc-32-1.2.1" + sources."crc-32-1.2.2" sources."crc32-stream-4.0.2" (sources."cross-env-5.2.1" // { dependencies = [ @@ -97336,8 +97683,8 @@ in sources."degenerator-3.0.2" sources."delayed-stream-1.0.0" sources."delegates-1.0.0" - sources."depd-1.1.2" - sources."destroy-1.0.4" + sources."depd-2.0.0" + sources."destroy-1.2.0" sources."dot-prop-5.3.0" sources."dotenv-6.2.0" (sources."duplexer2-0.1.4" // { @@ -97388,11 +97735,17 @@ in }) sources."exegesis-express-4.0.0" sources."exit-code-1.0.2" - sources."exit-on-epipe-1.0.1" (sources."express-4.17.3" // { dependencies = [ + sources."body-parser-1.19.2" sources."debug-2.6.9" + sources."depd-1.1.2" + sources."http-errors-1.8.1" sources."ms-2.0.0" + sources."on-finished-2.3.0" + sources."qs-6.9.7" + sources."raw-body-2.4.3" + sources."statuses-1.5.0" ]; }) (sources."ext-1.6.0" // { @@ -97421,6 +97774,8 @@ in dependencies = [ sources."debug-2.6.9" sources."ms-2.0.0" + sources."on-finished-2.3.0" + sources."statuses-1.5.0" ]; }) (sources."flat-arguments-1.0.2" // { @@ -97456,10 +97811,12 @@ in sources."string_decoder-0.10.31" ]; }) - sources."gauge-4.0.3" + sources."function-bind-1.1.1" + sources."gauge-4.0.4" sources."gaxios-4.3.2" sources."gcp-metadata-4.3.1" sources."get-caller-file-2.0.5" + sources."get-intrinsic-1.1.1" sources."get-stream-4.1.0" (sources."get-uri-3.0.2" // { dependencies = [ @@ -97476,21 +97833,23 @@ in sources."google-gax-2.29.6" sources."google-p12-pem-3.1.3" sources."got-9.6.0" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."gtoken-5.3.2" sources."har-schema-2.0.0" sources."har-validator-5.1.5" + sources."has-1.0.3" (sources."has-ansi-2.0.0" // { dependencies = [ sources."ansi-regex-2.1.1" ]; }) sources."has-flag-4.0.0" + sources."has-symbols-1.0.3" sources."has-unicode-2.0.1" sources."has-yarn-2.1.0" sources."home-dir-1.0.0" sources."http-cache-semantics-4.1.0" - sources."http-errors-1.8.1" + 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" @@ -97643,8 +98002,8 @@ in (sources."morgan-1.10.0" // { dependencies = [ sources."debug-2.6.9" - sources."depd-2.0.0" sources."ms-2.0.0" + sources."on-finished-2.3.0" ]; }) sources."ms-2.1.2" @@ -97661,7 +98020,7 @@ in sources."nice-try-1.0.5" sources."node-emoji-1.11.0" sources."node-fetch-2.6.7" - sources."node-forge-1.3.0" + sources."node-forge-1.3.1" (sources."node-gyp-8.4.1" // { dependencies = [ sources."semver-7.3.5" @@ -97675,7 +98034,8 @@ in sources."oauth-sign-0.9.0" sources."object-assign-4.1.1" sources."object-hash-2.2.0" - sources."on-finished-2.3.0" + sources."object-inspect-1.12.0" + sources."on-finished-2.4.1" sources."on-headers-1.0.2" sources."once-1.4.0" sources."one-time-1.0.0" @@ -97709,7 +98069,6 @@ in }) sources."prelude-ls-1.1.2" sources."prepend-http-2.0.0" - sources."printj-1.3.1" sources."process-nextick-args-2.0.1" sources."progress-2.0.3" sources."promise-breaker-5.0.0" @@ -97733,9 +98092,9 @@ in sources."pump-3.0.0" sources."punycode-2.1.1" sources."pupa-2.1.1" - sources."qs-6.9.7" + sources."qs-6.10.3" sources."range-parser-1.2.1" - sources."raw-body-2.4.3" + sources."raw-body-2.5.1" sources."rc-1.2.8" sources."re2-1.17.4" sources."readable-stream-3.6.0" @@ -97783,8 +98142,13 @@ in sources."ms-2.0.0" ]; }) + sources."depd-1.1.2" + sources."destroy-1.0.4" + sources."http-errors-1.8.1" sources."mime-1.6.0" sources."ms-2.1.3" + sources."on-finished-2.3.0" + sources."statuses-1.5.0" ]; }) sources."serve-static-1.14.2" @@ -97793,6 +98157,7 @@ in sources."setprototypeof-1.2.0" sources."shebang-command-1.2.0" sources."shebang-regex-1.0.0" + sources."side-channel-1.0.4" sources."signal-exit-3.0.7" sources."simple-swizzle-0.2.2" sources."smart-buffer-4.2.0" @@ -97803,7 +98168,7 @@ in sources."sshpk-1.17.0" sources."ssri-8.0.1" sources."stack-trace-0.0.10" - sources."statuses-1.5.0" + sources."statuses-2.0.1" sources."stream-chain-2.2.5" sources."stream-json-1.7.4" sources."stream-shift-1.0.1" @@ -97929,7 +98294,7 @@ in sources."which-1.3.1" sources."wide-align-1.1.5" sources."widest-line-3.1.0" - sources."winston-3.6.0" + sources."winston-3.7.2" sources."winston-transport-4.5.0" sources."word-wrap-1.2.3" sources."wrap-ansi-7.0.0" @@ -98307,7 +98672,7 @@ in sources."fs-extra-9.1.0" sources."get-caller-file-2.0.5" sources."getpass-0.1.7" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."har-schema-2.0.0" sources."har-validator-5.1.5" sources."has-flag-4.0.0" @@ -98352,7 +98717,7 @@ in sources."nedb-1.8.0" sources."node-addon-api-2.0.2" sources."node-fetch-2.6.7" - sources."node-gyp-build-4.3.0" + sources."node-gyp-build-4.4.0" (sources."number-to-bn-1.7.0" // { dependencies = [ sources."bn.js-4.11.6" @@ -98562,7 +98927,7 @@ in sources."dot-prop-4.2.1" sources."duplexer-0.1.2" sources."enabled-2.0.0" - sources."es-abstract-1.19.1" + sources."es-abstract-1.19.2" sources."es-get-iterator-1.1.2" sources."es-to-primitive-1.2.1" sources."event-stream-3.3.4" @@ -98622,7 +98987,7 @@ in sources."is-glob-3.1.0" ]; }) - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."has-1.0.3" sources."has-bigints-1.0.1" sources."has-symbols-1.0.3" @@ -98660,12 +99025,12 @@ in sources."kind-of-3.2.2" ]; }) - sources."is-number-object-1.0.6" + sources."is-number-object-1.0.7" sources."is-obj-1.0.1" sources."is-plain-object-2.0.4" sources."is-regex-1.1.4" sources."is-set-2.0.2" - sources."is-shared-array-buffer-1.0.1" + sources."is-shared-array-buffer-1.0.2" sources."is-stream-2.0.1" sources."is-string-1.0.7" sources."is-symbol-1.0.4" @@ -98884,7 +99249,7 @@ in sources."which-boxed-primitive-1.0.2" sources."which-collection-1.0.1" sources."which-typed-array-1.1.7" - (sources."winston-3.6.0" // { + (sources."winston-3.7.2" // { dependencies = [ sources."async-3.2.3" sources."readable-stream-3.6.0" @@ -98965,10 +99330,10 @@ in gatsby-cli = nodeEnv.buildNodePackage { name = "gatsby-cli"; packageName = "gatsby-cli"; - version = "4.10.2"; + version = "4.11.2"; src = fetchurl { - url = "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.10.2.tgz"; - sha512 = "lA1zFuWZwE+VtKYgntls0EC5PG4QoqqeJFWP+83Lmh+9hoLLkmL1plALBQeI3JY/9KXgRiC4OoR94CQkI329TA=="; + url = "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.11.2.tgz"; + sha512 = "MypoVvMwWcDEtf5JTm1UTdGeOavRjnNRKfuUqvbhvb+q1vQ2xIFhu/pK9sdOlQfL6v6Fl8xwO2FuOfz+i53z3w=="; }; dependencies = [ sources."@ampproject/remapping-2.1.2" @@ -99035,6 +99400,7 @@ in sources."@types/cacheable-request-6.0.2" sources."@types/common-tags-1.8.1" 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-fetch-2.6.1" @@ -99065,7 +99431,7 @@ in }) sources."call-bind-1.0.2" sources."camelcase-6.3.0" - sources."caniuse-lite-1.0.30001320" + sources."caniuse-lite-1.0.30001325" (sources."chalk-4.1.2" // { dependencies = [ sources."ansi-styles-4.3.0" @@ -99098,19 +99464,20 @@ in sources."color-name-1.1.3" sources."combined-stream-1.0.8" sources."common-tags-1.8.2" + sources."compress-brotli-1.3.6" sources."concat-map-0.0.1" sources."configstore-5.0.1" sources."convert-hrtime-3.0.0" sources."convert-source-map-1.8.0" - sources."create-gatsby-2.10.2" + sources."create-gatsby-2.11.2" (sources."cross-spawn-6.0.5" // { dependencies = [ sources."semver-5.7.1" ]; }) sources."crypto-random-string-2.0.0" - sources."css-select-4.2.1" - sources."css-what-5.1.0" + sources."css-select-4.3.0" + sources."css-what-6.1.0" sources."debug-4.3.4" sources."decamelize-1.2.0" sources."decode-uri-component-0.2.0" @@ -99129,7 +99496,7 @@ in sources."domutils-2.8.0" sources."dot-prop-5.3.0" sources."duplexer3-0.1.4" - sources."electron-to-chromium-1.4.96" + sources."electron-to-chromium-1.4.103" sources."emoji-regex-8.0.0" sources."end-of-stream-1.4.4" sources."entities-2.2.0" @@ -99164,8 +99531,8 @@ in sources."fs-extra-10.0.1" sources."fs.realpath-1.0.0" sources."function-bind-1.1.1" - sources."gatsby-core-utils-3.10.1" - (sources."gatsby-telemetry-3.10.1" // { + sources."gatsby-core-utils-3.11.1" + (sources."gatsby-telemetry-3.11.1" // { dependencies = [ sources."ansi-styles-4.3.0" sources."boxen-4.2.0" @@ -99187,7 +99554,7 @@ in sources."global-dirs-3.0.0" sources."globals-11.12.0" sources."got-11.8.3" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."has-1.0.3" sources."has-flag-3.0.0" sources."has-symbols-1.0.3" @@ -99229,7 +99596,7 @@ in sources."json-buffer-3.0.1" sources."json5-2.2.1" sources."jsonfile-6.1.0" - sources."keyv-4.1.1" + sources."keyv-4.2.1" sources."kleur-3.0.3" sources."latest-version-5.1.0" sources."lmdb-2.2.6" @@ -99253,12 +99620,22 @@ in sources."minimist-1.2.6" sources."ms-2.1.2" sources."msgpackr-1.5.5" - sources."msgpackr-extract-1.0.16" + (sources."msgpackr-extract-1.1.0" // { + dependencies = [ + sources."node-gyp-build-git://github.com/kriszyp/node-gyp-build#optional-packages" + ]; + }) + sources."msgpackr-extract-darwin-arm64-1.1.0" + sources."msgpackr-extract-darwin-x64-1.1.0" + sources."msgpackr-extract-linux-arm-1.1.0" + sources."msgpackr-extract-linux-arm64-1.1.0" + sources."msgpackr-extract-linux-x64-1.1.0" + sources."msgpackr-extract-win32-x64-1.1.0" sources."mute-stream-0.0.8" sources."nan-2.15.0" sources."nice-try-1.0.5" sources."node-fetch-2.6.7" - sources."node-gyp-build-4.3.0" + sources."node-gyp-build-4.4.0" sources."node-object-hash-2.3.10" sources."node-releases-2.0.2" sources."normalize-url-6.1.0" @@ -99734,7 +100111,7 @@ in sources."mime-types-2.1.35" sources."minimist-1.2.6" sources."mkdirp-0.5.6" - sources."moment-2.29.1" + sources."moment-2.29.2" sources."moo-0.5.1" sources."ms-2.1.2" sources."multicb-1.2.2" @@ -99743,7 +100120,7 @@ in sources."multiserver-scopes-2.0.0" sources."muxrpc-6.7.2" sources."nearley-2.20.1" - sources."node-gyp-build-4.3.0" + sources."node-gyp-build-4.4.0" sources."node-polyglot-1.0.0" sources."non-private-ip-2.2.0" sources."os-homedir-1.0.2" @@ -99907,6 +100284,7 @@ in sources."@szmarczak/http-timer-4.0.6" sources."@types/cacheable-request-6.0.2" 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/responselike-1.0.0" @@ -99927,6 +100305,7 @@ in sources."color-convert-2.0.1" sources."color-name-1.1.4" sources."combined-stream-1.0.8" + sources."compress-brotli-1.3.6" sources."decode-uri-component-0.2.0" (sources."decompress-response-6.0.0" // { dependencies = [ @@ -99954,7 +100333,7 @@ in sources."is-interactive-2.0.0" sources."is-unicode-supported-1.2.0" sources."json-buffer-3.0.1" - sources."keyv-4.1.1" + sources."keyv-4.2.1" sources."li-1.3.0" (sources."log-symbols-5.1.0" // { dependencies = [ @@ -100012,10 +100391,10 @@ in gitmoji-cli = nodeEnv.buildNodePackage { name = "gitmoji-cli"; packageName = "gitmoji-cli"; - version = "4.11.0"; + version = "4.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/gitmoji-cli/-/gitmoji-cli-4.11.0.tgz"; - sha512 = "tRX7PJ+qYGsfQcfaXT5rGgXE0KOXz7sR6rS8oScFPguXTSUtBl3cW74jNh92nGVHhbCCVBFq9vqVBgt5aRo9RQ=="; + url = "https://registry.npmjs.org/gitmoji-cli/-/gitmoji-cli-4.12.0.tgz"; + sha512 = "selN2/DBH5qN27r0PH6FuEO6B5X1qFd3x8M9YP3+23NjgPM6sUOSw2V0phP9Ofir/uubKl7jEao+rVH/NONJdg=="; }; dependencies = [ sources."@babel/code-frame-7.16.7" @@ -100076,7 +100455,7 @@ in sources."clone-response-1.0.2" sources."color-convert-2.0.1" sources."color-name-1.1.4" - sources."conf-10.1.1" + sources."conf-10.1.2" (sources."configstore-5.0.1" // { dependencies = [ sources."dot-prop-5.3.0" @@ -100137,7 +100516,7 @@ in sources."get-stream-4.1.0" ]; }) - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."hard-rejection-2.1.0" sources."has-1.0.3" sources."has-flag-4.0.0" @@ -100155,7 +100534,7 @@ in sources."indent-string-4.0.0" sources."inherits-2.0.4" sources."ini-2.0.0" - (sources."inquirer-8.2.1" // { + (sources."inquirer-8.2.2" // { dependencies = [ sources."chalk-4.1.2" ]; @@ -100218,7 +100597,7 @@ in sources."ms-2.1.2" sources."mute-stream-0.0.8" sources."netmask-2.0.2" - sources."node-fetch-2.6.0" + sources."node-fetch-2.6.7" sources."normalize-package-data-3.0.3" sources."normalize-url-4.5.1" sources."npm-run-path-4.0.1" @@ -100326,6 +100705,7 @@ in sources."tmp-0.0.33" sources."to-readable-stream-1.0.0" sources."toidentifier-1.0.1" + sources."tr46-0.0.3" sources."trim-newlines-3.0.1" sources."tslib-2.3.1" sources."type-check-0.3.2" @@ -100341,6 +100721,8 @@ in sources."validate-npm-package-license-3.0.4" sources."vm2-3.9.9" sources."wcwidth-1.0.1" + sources."webidl-conversions-3.0.1" + sources."whatwg-url-5.0.0" sources."which-2.0.2" sources."widest-line-3.1.0" sources."word-wrap-1.2.3" @@ -100448,7 +100830,7 @@ in sources."get-caller-file-2.0.5" sources."get-stream-2.3.1" sources."glob-7.2.0" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."ieee754-1.2.1" sources."inflight-1.0.6" sources."inherits-2.0.4" @@ -100631,7 +101013,7 @@ in sources."tslib-2.3.1" ]; }) - (sources."@graphql-tools/schema-8.3.5" // { + (sources."@graphql-tools/schema-8.3.6" // { dependencies = [ sources."@graphql-tools/merge-8.2.6" sources."@graphql-tools/utils-8.6.5" @@ -100759,7 +101141,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.1" + sources."es-abstract-1.19.2" sources."es-get-iterator-1.1.2" sources."es-to-primitive-1.2.1" sources."es6-promise-3.3.1" @@ -100808,7 +101190,7 @@ in sources."p-cancelable-1.1.0" ]; }) - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."graphql-15.3.0" (sources."graphql-config-3.0.3" // { dependencies = [ @@ -100867,11 +101249,11 @@ in sources."is-map-2.0.2" sources."is-negative-zero-2.0.2" sources."is-number-7.0.0" - sources."is-number-object-1.0.6" + sources."is-number-object-1.0.7" sources."is-promise-4.0.0" sources."is-regex-1.1.4" sources."is-set-2.0.2" - sources."is-shared-array-buffer-1.0.1" + sources."is-shared-array-buffer-1.0.2" sources."is-stream-1.1.0" sources."is-string-1.0.7" sources."is-symbol-1.0.4" @@ -101156,14 +101538,14 @@ in sources."@cronvel/get-pixels-3.4.0" sources."@endemolshinegroup/cosmiconfig-typescript-loader-3.0.2" sources."@graphql-tools/batch-execute-8.4.1" - sources."@graphql-tools/delegate-8.7.0" + sources."@graphql-tools/delegate-8.7.1" sources."@graphql-tools/graphql-file-loader-7.3.7" sources."@graphql-tools/import-6.6.9" sources."@graphql-tools/json-file-loader-7.3.7" - sources."@graphql-tools/load-7.5.5" + sources."@graphql-tools/load-7.5.6" sources."@graphql-tools/merge-8.2.6" - sources."@graphql-tools/schema-8.3.5" - (sources."@graphql-tools/url-loader-7.9.7" // { + sources."@graphql-tools/schema-8.3.6" + (sources."@graphql-tools/url-loader-7.9.8" // { dependencies = [ (sources."subscriptions-transport-ws-0.11.0" // { dependencies = [ @@ -101174,7 +101556,7 @@ in ]; }) sources."@graphql-tools/utils-8.6.5" - sources."@graphql-tools/wrap-8.4.9" + sources."@graphql-tools/wrap-8.4.10" sources."@iarna/toml-2.2.5" sources."@n1ru4l/graphql-live-query-0.9.0" sources."@nodelib/fs.scandir-2.1.5" @@ -101277,7 +101659,7 @@ in sources."semver-5.7.1" ]; }) - sources."cross-undici-fetch-0.1.27" + sources."cross-undici-fetch-0.1.28" sources."cwise-compiler-1.1.3" sources."dataloader-2.0.0" sources."debug-4.3.4" @@ -101324,9 +101706,9 @@ in sources."fs-extra-8.1.0" sources."glob-parent-5.1.2" sources."globby-11.1.0" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."graphql-15.4.0" - sources."graphql-config-4.1.0" + sources."graphql-config-4.3.0" sources."graphql-executor-0.0.22" (sources."graphql-language-service-interface-2.10.2" // { dependencies = [ @@ -101387,7 +101769,7 @@ in sources."mime-1.4.1" sources."mime-db-1.52.0" sources."mime-types-2.1.35" - sources."minimatch-3.0.4" + sources."minimatch-4.2.1" sources."ms-2.1.2" sources."ndarray-1.0.19" sources."ndarray-pack-1.2.1" @@ -101476,7 +101858,7 @@ in sources."ts-node-9.1.1" sources."tslib-2.3.1" sources."type-is-1.6.18" - sources."undici-4.16.0" + sources."undici-5.0.0" sources."uniq-1.0.1" sources."universalify-0.1.2" sources."unixify-1.0.0" @@ -102016,7 +102398,7 @@ in sources."global-modules-1.0.0" sources."global-prefix-1.0.2" sources."glogg-1.0.2" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."gulp-cli-2.3.0" sources."gulplog-1.0.0" sources."has-1.0.3" @@ -102418,7 +102800,7 @@ in sources."global-modules-1.0.0" sources."global-prefix-1.0.2" sources."glogg-1.0.2" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."gulplog-1.0.0" sources."has-1.0.3" sources."has-symbols-1.0.3" @@ -102715,10 +103097,10 @@ in htmlhint = nodeEnv.buildNodePackage { name = "htmlhint"; packageName = "htmlhint"; - version = "1.1.2"; + version = "1.1.3"; src = fetchurl { - url = "https://registry.npmjs.org/htmlhint/-/htmlhint-1.1.2.tgz"; - sha512 = "3rUS4ROXjyRidMiThTXhwtAotmGvOOof3uUk1X0YWjJF63qOP0sorogfgvo+XFcp5Q6IWhiFcZqd3giCrKHg+g=="; + url = "https://registry.npmjs.org/htmlhint/-/htmlhint-1.1.3.tgz"; + sha512 = "Z2GtamhFnhCAXKP5lsfqShIDlk6eHEI5U6B9A/JXstdgakoOC2y9nF1b38DcVNBJ8eHn/wfSdh4GVrW4NmmFEQ=="; }; dependencies = [ sources."ansi-styles-4.3.0" @@ -102728,22 +103110,18 @@ in sources."chalk-4.1.2" sources."color-convert-2.0.1" sources."color-name-1.1.4" - sources."commander-8.3.0" + sources."commander-9.1.0" sources."concat-map-0.0.1" sources."fs.realpath-1.0.0" sources."glob-7.2.0" - sources."glob-base-0.3.0" - sources."glob-parent-2.0.0" sources."has-flag-4.0.0" sources."inflight-1.0.6" sources."inherits-2.0.4" - sources."is-dotfile-1.0.3" - sources."is-extglob-1.0.0" - sources."is-glob-2.0.1" + sources."is-extglob-2.1.1" + sources."is-glob-4.0.3" sources."minimatch-3.1.2" sources."node-fetch-2.6.7" sources."once-1.4.0" - sources."parse-glob-3.0.4" sources."path-is-absolute-1.0.1" sources."strip-json-comments-3.1.0" sources."supports-color-7.2.0" @@ -103004,7 +103382,7 @@ in sources."assert-plus-1.0.0" sources."async-2.6.3" sources."asynckit-0.4.0" - sources."aws-sdk-2.1101.0" + sources."aws-sdk-2.1107.0" sources."aws-sign2-0.7.0" sources."aws4-1.11.0" sources."base64-js-1.5.1" @@ -103111,7 +103489,7 @@ in sources."mime-types-2.1.35" sources."minimist-1.2.6" sources."mkdirp-0.5.6" - sources."moment-2.29.1" + sources."moment-2.29.2" sources."moment-timezone-0.5.34" sources."ms-2.1.2" sources."mute-stream-0.0.8" @@ -103209,7 +103587,7 @@ in sources."jp-kernel-2.0.0" sources."nan-2.14.2" sources."nel-1.3.0" - sources."node-gyp-build-4.3.0" + sources."node-gyp-build-4.4.0" sources."uuid-3.4.0" sources."zeromq-5.2.8" ]; @@ -103301,7 +103679,7 @@ in sources."object-assign-3.0.0" ]; }) - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."har-schema-2.0.0" sources."har-validator-5.1.5" sources."has-ansi-2.0.0" @@ -103475,7 +103853,7 @@ in sources."minimist-1.2.6" ]; }) - sources."moment-2.29.1" + sources."moment-2.29.2" sources."mv-2.1.1" sources."nan-2.15.0" sources."ncp-2.0.0" @@ -103565,7 +103943,7 @@ in sources."fsevents-2.3.2" sources."get-stream-4.1.0" sources."glob-7.2.0" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."historic-readline-1.0.8" sources."iconv-lite-0.6.3" sources."inflight-1.0.6" @@ -103714,7 +104092,7 @@ in sources."getpass-0.1.7" sources."glob-7.2.0" sources."glob-parent-5.1.2" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."har-schema-2.0.0" sources."har-validator-5.1.5" sources."he-1.2.0" @@ -103788,7 +104166,7 @@ in sources."uri-js-4.4.1" sources."uuid-3.4.0" sources."verror-1.10.0" - (sources."vscode-css-languageservice-5.3.0" // { + (sources."vscode-css-languageservice-5.4.1" // { dependencies = [ sources."vscode-languageserver-types-3.16.0" ]; @@ -103935,7 +104313,7 @@ in sources."get-stream-4.1.0" sources."get-uri-3.0.2" sources."glob-7.2.0" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."has-1.0.3" sources."has-flag-4.0.0" sources."has-symbols-1.0.3" @@ -104148,42 +104526,42 @@ in dependencies = [ sources."@iarna/toml-2.2.5" sources."@msgpack/msgpack-2.7.2" - sources."@ot-builder/bin-composite-types-1.5.0" - sources."@ot-builder/bin-util-1.5.0" - sources."@ot-builder/cli-help-shower-1.5.0" - sources."@ot-builder/cli-proc-1.5.0" - sources."@ot-builder/cli-shared-1.5.0" - sources."@ot-builder/common-impl-1.5.0" - sources."@ot-builder/errors-1.5.0" - sources."@ot-builder/io-bin-cff-1.5.0" - sources."@ot-builder/io-bin-encoding-1.5.0" - sources."@ot-builder/io-bin-ext-private-1.5.0" - sources."@ot-builder/io-bin-font-1.5.0" - sources."@ot-builder/io-bin-glyph-store-1.5.0" - sources."@ot-builder/io-bin-layout-1.5.0" - sources."@ot-builder/io-bin-metadata-1.5.0" - sources."@ot-builder/io-bin-metric-1.5.0" - sources."@ot-builder/io-bin-name-1.5.0" - sources."@ot-builder/io-bin-sfnt-1.5.0" - sources."@ot-builder/io-bin-ttf-1.5.0" - sources."@ot-builder/io-bin-vtt-private-1.5.0" - sources."@ot-builder/ot-1.5.0" - sources."@ot-builder/ot-encoding-1.5.0" - sources."@ot-builder/ot-ext-private-1.5.0" - sources."@ot-builder/ot-glyphs-1.5.0" - sources."@ot-builder/ot-layout-1.5.0" - sources."@ot-builder/ot-metadata-1.5.0" - sources."@ot-builder/ot-name-1.5.0" - sources."@ot-builder/ot-sfnt-1.5.0" - sources."@ot-builder/ot-standard-glyph-namer-1.5.0" - sources."@ot-builder/ot-vtt-private-1.5.0" - sources."@ot-builder/prelude-1.5.0" - sources."@ot-builder/primitive-1.5.0" - sources."@ot-builder/rectify-1.5.0" - sources."@ot-builder/stat-glyphs-1.5.0" - sources."@ot-builder/trace-1.5.0" - sources."@ot-builder/var-store-1.5.0" - sources."@ot-builder/variance-1.5.0" + sources."@ot-builder/bin-composite-types-1.5.1" + sources."@ot-builder/bin-util-1.5.1" + sources."@ot-builder/cli-help-shower-1.5.1" + sources."@ot-builder/cli-proc-1.5.1" + sources."@ot-builder/cli-shared-1.5.1" + sources."@ot-builder/common-impl-1.5.1" + sources."@ot-builder/errors-1.5.1" + sources."@ot-builder/io-bin-cff-1.5.1" + sources."@ot-builder/io-bin-encoding-1.5.1" + sources."@ot-builder/io-bin-ext-private-1.5.1" + sources."@ot-builder/io-bin-font-1.5.1" + sources."@ot-builder/io-bin-glyph-store-1.5.1" + sources."@ot-builder/io-bin-layout-1.5.1" + sources."@ot-builder/io-bin-metadata-1.5.1" + sources."@ot-builder/io-bin-metric-1.5.1" + sources."@ot-builder/io-bin-name-1.5.1" + sources."@ot-builder/io-bin-sfnt-1.5.1" + sources."@ot-builder/io-bin-ttf-1.5.1" + sources."@ot-builder/io-bin-vtt-private-1.5.1" + sources."@ot-builder/ot-1.5.1" + sources."@ot-builder/ot-encoding-1.5.1" + sources."@ot-builder/ot-ext-private-1.5.1" + sources."@ot-builder/ot-glyphs-1.5.1" + sources."@ot-builder/ot-layout-1.5.1" + sources."@ot-builder/ot-metadata-1.5.1" + sources."@ot-builder/ot-name-1.5.1" + sources."@ot-builder/ot-sfnt-1.5.1" + sources."@ot-builder/ot-standard-glyph-namer-1.5.1" + sources."@ot-builder/ot-vtt-private-1.5.1" + sources."@ot-builder/prelude-1.5.1" + sources."@ot-builder/primitive-1.5.1" + sources."@ot-builder/rectify-1.5.1" + sources."@ot-builder/stat-glyphs-1.5.1" + sources."@ot-builder/trace-1.5.1" + sources."@ot-builder/var-store-1.5.1" + sources."@ot-builder/variance-1.5.1" sources."@unicode/unicode-14.0.0-1.2.1" sources."@xmldom/xmldom-0.7.5" sources."aglfn-1.0.2" @@ -104232,7 +104610,7 @@ in sources."fast-levenshtein-2.0.6" sources."fs-extra-10.0.1" sources."get-caller-file-2.0.5" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."has-flag-4.0.0" sources."hashish-0.0.4" sources."iconv-lite-0.6.3" @@ -104245,8 +104623,8 @@ in sources."mimic-fn-2.1.0" sources."onetime-5.1.2" sources."optionator-0.8.3" - sources."ot-builder-1.5.0" - sources."otb-ttc-bundle-1.5.0" + sources."ot-builder-1.5.1" + sources."otb-ttc-bundle-1.5.1" sources."passerror-1.1.1" sources."patel-0.37.1" sources."patrisika-0.24.0" @@ -104472,82 +104850,82 @@ 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.55.0" - sources."@aws-sdk/client-s3-3.56.0" - sources."@aws-sdk/client-sso-3.56.0" - sources."@aws-sdk/client-sts-3.56.0" - sources."@aws-sdk/config-resolver-3.56.0" + sources."@aws-sdk/chunked-blob-reader-native-3.58.0" + sources."@aws-sdk/client-s3-3.58.0" + sources."@aws-sdk/client-sso-3.58.0" + sources."@aws-sdk/client-sts-3.58.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.56.0" - sources."@aws-sdk/credential-provider-ini-3.56.0" - sources."@aws-sdk/credential-provider-node-3.56.0" - sources."@aws-sdk/credential-provider-process-3.56.0" - sources."@aws-sdk/credential-provider-sso-3.56.0" + sources."@aws-sdk/credential-provider-imds-3.58.0" + sources."@aws-sdk/credential-provider-ini-3.58.0" + sources."@aws-sdk/credential-provider-node-3.58.0" + sources."@aws-sdk/credential-provider-process-3.58.0" + sources."@aws-sdk/credential-provider-sso-3.58.0" sources."@aws-sdk/credential-provider-web-identity-3.55.0" - sources."@aws-sdk/eventstream-marshaller-3.55.0" - sources."@aws-sdk/eventstream-serde-browser-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-config-resolver-3.55.0" - sources."@aws-sdk/eventstream-serde-node-3.55.0" - sources."@aws-sdk/eventstream-serde-universal-3.55.0" - sources."@aws-sdk/fetch-http-handler-3.55.0" - sources."@aws-sdk/hash-blob-browser-3.55.0" + sources."@aws-sdk/eventstream-serde-node-3.58.0" + sources."@aws-sdk/eventstream-serde-universal-3.58.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" - sources."@aws-sdk/hash-stream-node-3.55.0" + sources."@aws-sdk/hash-stream-node-3.58.0" sources."@aws-sdk/invalid-dependency-3.55.0" sources."@aws-sdk/is-array-buffer-3.55.0" - sources."@aws-sdk/md5-js-3.55.0" - sources."@aws-sdk/middleware-bucket-endpoint-3.56.0" - sources."@aws-sdk/middleware-content-length-3.55.0" - sources."@aws-sdk/middleware-expect-continue-3.55.0" - sources."@aws-sdk/middleware-flexible-checksums-3.55.0" - sources."@aws-sdk/middleware-header-default-3.55.0" - sources."@aws-sdk/middleware-host-header-3.55.0" + sources."@aws-sdk/md5-js-3.58.0" + 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-header-default-3.58.0" + sources."@aws-sdk/middleware-host-header-3.58.0" sources."@aws-sdk/middleware-location-constraint-3.55.0" sources."@aws-sdk/middleware-logger-3.55.0" - (sources."@aws-sdk/middleware-retry-3.56.0" // { + (sources."@aws-sdk/middleware-retry-3.58.0" // { dependencies = [ sources."uuid-8.3.2" ]; }) - sources."@aws-sdk/middleware-sdk-s3-3.56.0" - sources."@aws-sdk/middleware-sdk-sts-3.56.0" + sources."@aws-sdk/middleware-sdk-s3-3.58.0" + sources."@aws-sdk/middleware-sdk-sts-3.58.0" sources."@aws-sdk/middleware-serde-3.55.0" - sources."@aws-sdk/middleware-signing-3.56.0" + sources."@aws-sdk/middleware-signing-3.58.0" sources."@aws-sdk/middleware-ssec-3.55.0" sources."@aws-sdk/middleware-stack-3.55.0" - sources."@aws-sdk/middleware-user-agent-3.55.0" - sources."@aws-sdk/node-config-provider-3.56.0" - sources."@aws-sdk/node-http-handler-3.55.0" + sources."@aws-sdk/middleware-user-agent-3.58.0" + sources."@aws-sdk/node-config-provider-3.58.0" + sources."@aws-sdk/node-http-handler-3.58.0" sources."@aws-sdk/property-provider-3.55.0" - sources."@aws-sdk/protocol-http-3.55.0" + 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.56.0" + sources."@aws-sdk/s3-request-presigner-3.58.0" sources."@aws-sdk/service-error-classification-3.55.0" - sources."@aws-sdk/shared-ini-file-loader-3.56.0" - sources."@aws-sdk/signature-v4-3.56.0" + sources."@aws-sdk/shared-ini-file-loader-3.58.0" + sources."@aws-sdk/signature-v4-3.58.0" sources."@aws-sdk/smithy-client-3.55.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" - sources."@aws-sdk/util-base64-browser-3.55.0" + sources."@aws-sdk/util-base64-browser-3.58.0" sources."@aws-sdk/util-base64-node-3.55.0" sources."@aws-sdk/util-body-length-browser-3.55.0" 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.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.56.0" - sources."@aws-sdk/util-format-url-3.55.0" - sources."@aws-sdk/util-hex-encoding-3.55.0" + sources."@aws-sdk/util-defaults-mode-node-3.58.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" sources."@aws-sdk/util-middleware-3.55.0" sources."@aws-sdk/util-stream-browser-3.55.0" sources."@aws-sdk/util-stream-node-3.55.0" sources."@aws-sdk/util-uri-escape-3.55.0" - sources."@aws-sdk/util-user-agent-browser-3.55.0" - sources."@aws-sdk/util-user-agent-node-3.56.0" + sources."@aws-sdk/util-user-agent-browser-3.58.0" + sources."@aws-sdk/util-user-agent-node-3.58.0" sources."@aws-sdk/util-utf8-browser-3.55.0" sources."@aws-sdk/util-utf8-node-3.55.0" sources."@aws-sdk/util-waiter-3.55.0" @@ -104611,7 +104989,7 @@ in sources."async-mutex-0.1.4" sources."asynckit-0.4.0" sources."atob-2.1.2" - (sources."aws-sdk-2.1101.0" // { + (sources."aws-sdk-2.1108.0" // { dependencies = [ sources."sax-1.2.1" sources."uuid-3.3.2" @@ -104676,13 +105054,13 @@ in ]; }) sources."cwise-compiler-1.1.3" - sources."d3-7.3.0" - sources."d3-array-3.1.1" + sources."d3-7.4.2" + sources."d3-array-3.1.4" sources."d3-axis-3.0.0" sources."d3-brush-3.0.0" sources."d3-chord-3.0.1" sources."d3-collection-1.0.7" - sources."d3-color-3.0.1" + sources."d3-color-3.1.0" sources."d3-contour-3.0.1" sources."d3-delaunay-6.0.2" sources."d3-dispatch-3.0.1" @@ -104698,7 +105076,7 @@ in sources."d3-force-3.0.0" sources."d3-format-3.1.0" sources."d3-geo-3.0.1" - sources."d3-hierarchy-3.1.1" + sources."d3-hierarchy-3.1.2" sources."d3-interpolate-3.0.1" sources."d3-path-3.0.1" sources."d3-polygon-3.0.1" @@ -104842,7 +105220,7 @@ in sources."github-from-package-0.0.0" sources."glob-7.2.0" sources."glob-parent-5.1.2" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."graphlib-2.1.8" sources."growly-1.3.0" sources."har-schema-2.0.0" @@ -105000,12 +105378,12 @@ in sources."minizlib-1.3.3" sources."mkdirp-0.5.6" sources."mkdirp-classic-0.5.3" - sources."moment-2.29.1" + sources."moment-2.29.2" sources."moment-mini-2.24.0" sources."ms-2.1.3" sources."multiparty-4.2.3" sources."mustache-4.2.0" - sources."nanoid-3.3.1" + sources."nanoid-3.3.2" sources."napi-build-utils-1.0.2" sources."ndarray-1.0.19" sources."ndarray-pack-1.2.1" @@ -105202,7 +105580,7 @@ in ]; }) sources."strip-json-comments-2.0.1" - sources."stylis-4.0.13" + sources."stylis-4.1.0" sources."supports-color-7.2.0" sources."symbol-observable-1.2.0" sources."symbol-tree-3.2.4" @@ -105309,10 +105687,10 @@ in js-beautify = nodeEnv.buildNodePackage { name = "js-beautify"; packageName = "js-beautify"; - version = "1.14.0"; + version = "1.14.2"; src = fetchurl { - url = "https://registry.npmjs.org/js-beautify/-/js-beautify-1.14.0.tgz"; - sha512 = "yuck9KirNSCAwyNJbqW+BxJqJ0NLJ4PwBUzQQACl5O3qHMBXVkXb/rD0ilh/Lat/tn88zSZ+CAHOlk0DsY7GuQ=="; + url = "https://registry.npmjs.org/js-beautify/-/js-beautify-1.14.2.tgz"; + sha512 = "H85kX95a53os+q1OCqtYe8AXAmgy3BvtysA/V83S3fdhznm6WlUpGi14DqSPbKFsL3dXZFXYl7YQwW9U1+76ng=="; }; dependencies = [ sources."abbrev-1.1.1" @@ -105393,7 +105771,7 @@ in sources."linkify-it-3.0.3" sources."lodash-4.17.21" sources."markdown-it-12.3.2" - sources."markdown-it-anchor-8.4.1" + sources."markdown-it-anchor-8.5.0" sources."marked-4.0.12" sources."mdurl-1.0.1" sources."mkdirp-1.0.4" @@ -105492,7 +105870,7 @@ in sha512 = "VBvNBt3cIrCBHa3gYbVsCFUEReqWZPf+Biq1ZtFdIiQ6rytRLDp3qvtrGv7z/iZDd1D4vXWpW7Nx1nP8muLzkg=="; }; dependencies = [ - sources."cli-color-2.0.1" + sources."cli-color-2.0.2" sources."d-1.0.1" sources."difflib-0.2.4" sources."dreamopt-0.8.0" @@ -105605,7 +105983,7 @@ in sources."ansi-styles-4.3.0" sources."array-flatten-1.1.1" sources."basic-auth-2.0.1" - sources."body-parser-1.19.2" + sources."body-parser-1.20.0" sources."boxen-5.1.2" sources."bytes-3.1.2" (sources."cacheable-request-6.1.0" // { @@ -105614,6 +105992,7 @@ in sources."lowercase-keys-2.0.0" ]; }) + sources."call-bind-1.0.2" sources."camelcase-6.3.0" sources."chalk-4.1.2" sources."ci-info-2.0.0" @@ -105644,8 +106023,8 @@ in sources."decompress-response-3.3.0" sources."deep-extend-0.6.0" sources."defer-to-connect-1.1.3" - sources."depd-1.1.2" - sources."destroy-1.0.4" + sources."depd-2.0.0" + sources."destroy-1.2.0" sources."dot-prop-5.3.0" sources."duplexer3-0.1.4" sources."ee-first-1.1.1" @@ -105659,7 +106038,14 @@ in sources."etag-1.8.1" (sources."express-4.17.3" // { dependencies = [ + sources."body-parser-1.19.2" + sources."depd-1.1.2" + sources."http-errors-1.8.1" + sources."on-finished-2.3.0" + sources."qs-6.9.7" + sources."raw-body-2.4.3" sources."safe-buffer-5.2.1" + sources."statuses-1.5.0" ]; }) (sources."express-urlrewrite-1.4.0" // { @@ -105667,18 +106053,27 @@ in sources."path-to-regexp-1.8.0" ]; }) - sources."finalhandler-1.1.2" + (sources."finalhandler-1.1.2" // { + dependencies = [ + sources."on-finished-2.3.0" + sources."statuses-1.5.0" + ]; + }) sources."forwarded-0.2.0" sources."fresh-0.5.2" + sources."function-bind-1.1.1" sources."get-caller-file-2.0.5" + sources."get-intrinsic-1.1.1" sources."get-stream-4.1.0" sources."global-dirs-3.0.0" sources."got-9.6.0" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" + sources."has-1.0.3" sources."has-flag-4.0.0" + sources."has-symbols-1.0.3" sources."has-yarn-2.1.0" sources."http-cache-semantics-4.1.0" - sources."http-errors-1.8.1" + sources."http-errors-2.0.0" sources."iconv-lite-0.4.24" sources."import-lazy-2.1.0" sources."imurmurhash-0.1.4" @@ -105725,15 +106120,16 @@ in sources."minimist-1.2.6" (sources."morgan-1.10.0" // { dependencies = [ - sources."depd-2.0.0" + sources."on-finished-2.3.0" ]; }) sources."ms-2.0.0" - sources."nanoid-3.3.1" + sources."nanoid-3.3.2" sources."negotiator-0.6.3" sources."normalize-url-4.5.1" sources."object-assign-4.1.1" - sources."on-finished-2.3.0" + sources."object-inspect-1.12.0" + sources."on-finished-2.4.1" sources."on-headers-1.0.2" sources."once-1.4.0" sources."p-cancelable-1.1.0" @@ -105751,9 +106147,9 @@ in sources."proxy-addr-2.0.7" sources."pump-3.0.0" sources."pupa-2.1.1" - sources."qs-6.9.7" + sources."qs-6.10.3" sources."range-parser-1.2.1" - sources."raw-body-2.4.3" + sources."raw-body-2.5.1" (sources."rc-1.2.8" // { dependencies = [ sources."ini-1.3.8" @@ -105774,14 +106170,20 @@ in }) (sources."send-0.17.2" // { dependencies = [ + sources."depd-1.1.2" + sources."destroy-1.0.4" + sources."http-errors-1.8.1" sources."ms-2.1.3" + sources."on-finished-2.3.0" + sources."statuses-1.5.0" ]; }) sources."serve-static-1.14.2" sources."server-destroy-1.0.1" sources."setprototypeof-1.2.0" + sources."side-channel-1.0.4" sources."signal-exit-3.0.7" - sources."statuses-1.5.0" + sources."statuses-2.0.1" sources."steno-0.4.4" sources."string-width-4.2.3" sources."strip-ansi-6.0.1" @@ -105882,7 +106284,7 @@ in sources."bcrypt-pbkdf-1.0.2" sources."binary-extensions-1.13.1" sources."bindings-1.5.0" - sources."body-parser-1.19.2" + sources."body-parser-1.20.0" sources."boxen-0.6.0" sources."braces-1.8.5" sources."bytes-3.1.2" @@ -105891,6 +106293,7 @@ in sources."isobject-3.0.1" ]; }) + sources."call-bind-1.0.2" sources."camelcase-2.1.1" sources."capture-stack-trace-1.0.1" sources."caseless-0.12.0" @@ -105956,8 +106359,8 @@ in ]; }) sources."delayed-stream-1.0.0" - sources."depd-1.1.2" - sources."destroy-1.0.4" + sources."depd-2.0.0" + sources."destroy-1.2.0" sources."dot-prop-3.0.0" sources."duplexer2-0.1.4" sources."ecc-jsbn-0.1.2" @@ -105972,7 +106375,14 @@ in sources."expand-range-1.8.2" (sources."express-4.17.3" // { dependencies = [ + sources."body-parser-1.19.2" + sources."depd-1.1.2" + sources."http-errors-1.8.1" + sources."on-finished-2.3.0" + sources."qs-6.9.7" + sources."raw-body-2.4.3" sources."safe-buffer-5.2.1" + sources."statuses-1.5.0" ]; }) sources."extend-3.0.2" @@ -105989,7 +106399,12 @@ in sources."filename-regex-2.0.1" sources."fill-range-2.2.4" sources."filled-array-1.1.0" - sources."finalhandler-1.1.2" + (sources."finalhandler-1.1.2" // { + dependencies = [ + sources."on-finished-2.3.0" + sources."statuses-1.5.0" + ]; + }) sources."find-up-1.1.2" sources."for-in-1.0.2" sources."for-own-0.1.5" @@ -106001,16 +106416,18 @@ in sources."fsevents-1.2.13" sources."function-bind-1.1.1" sources."get-caller-file-1.0.3" + sources."get-intrinsic-1.1.1" sources."get-value-2.0.6" sources."getpass-0.1.7" sources."glob-base-0.3.0" sources."glob-parent-2.0.0" sources."got-5.7.1" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."har-schema-2.0.0" sources."har-validator-5.1.5" sources."has-1.0.3" sources."has-ansi-2.0.0" + sources."has-symbols-1.0.3" (sources."has-value-1.0.0" // { dependencies = [ sources."isobject-3.0.1" @@ -106027,7 +106444,7 @@ in ]; }) sources."hosted-git-info-2.8.9" - sources."http-errors-1.8.1" + sources."http-errors-2.0.0" sources."http-signature-1.2.0" sources."iconv-lite-0.4.24" sources."imurmurhash-0.1.4" @@ -106118,7 +106535,7 @@ in sources."mkdirp-0.5.6" (sources."morgan-1.10.0" // { dependencies = [ - sources."depd-2.0.0" + sources."on-finished-2.3.0" ]; }) sources."ms-2.0.0" @@ -106150,6 +106567,7 @@ in }) ]; }) + sources."object-inspect-1.12.0" (sources."object-visit-1.0.1" // { dependencies = [ sources."isobject-3.0.1" @@ -106161,7 +106579,7 @@ in sources."isobject-3.0.1" ]; }) - sources."on-finished-2.3.0" + sources."on-finished-2.4.1" sources."on-headers-1.0.2" sources."os-homedir-1.0.2" sources."os-locale-1.4.0" @@ -106189,7 +106607,7 @@ in sources."proxy-addr-2.0.7" sources."psl-1.8.0" sources."punycode-2.1.1" - sources."qs-6.9.7" + sources."qs-6.10.3" (sources."randomatic-3.1.1" // { dependencies = [ sources."is-number-4.0.0" @@ -106197,7 +106615,7 @@ in ]; }) sources."range-parser-1.2.1" - sources."raw-body-2.4.3" + sources."raw-body-2.5.1" sources."rc-1.2.8" sources."read-all-stream-3.1.0" sources."read-pkg-1.1.0" @@ -106279,7 +106697,12 @@ in sources."semver-diff-2.1.0" (sources."send-0.17.2" // { dependencies = [ + sources."depd-1.1.2" + sources."destroy-1.0.4" + sources."http-errors-1.8.1" sources."ms-2.1.3" + sources."on-finished-2.3.0" + sources."statuses-1.5.0" ]; }) sources."serve-static-1.14.2" @@ -106291,6 +106714,7 @@ in ]; }) sources."setprototypeof-1.2.0" + sources."side-channel-1.0.4" sources."slide-1.1.6" (sources."snapdragon-0.8.2" // { dependencies = [ @@ -106343,7 +106767,7 @@ in sources."kind-of-5.1.0" ]; }) - sources."statuses-1.5.0" + sources."statuses-2.0.1" sources."steno-0.4.4" sources."string-width-1.0.2" sources."string_decoder-1.1.1" @@ -106536,7 +106960,7 @@ in sources."get-intrinsic-1.1.1" sources."glob-parent-5.1.2" sources."globby-11.1.0" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."has-1.0.3" sources."has-flag-4.0.0" sources."has-symbols-1.0.3" @@ -106573,7 +106997,7 @@ in sources."mime-db-1.52.0" sources."mime-types-2.1.35" sources."mimic-fn-2.1.0" - sources."moment-2.29.1" + sources."moment-2.29.2" sources."ms-2.1.2" sources."mute-stream-0.0.8" sources."natural-orderby-2.0.3" @@ -106631,7 +107055,7 @@ in sources."typedarray-to-buffer-3.1.5" sources."universalify-0.1.2" sources."uri-js-4.4.1" - sources."urijs-1.19.10" + sources."urijs-1.19.11" sources."uuid-8.3.2" sources."which-1.3.1" sources."widest-line-3.1.0" @@ -106692,10 +107116,11 @@ in sources."balanced-match-1.0.2" sources."base64id-2.0.0" sources."binary-extensions-2.2.0" - sources."body-parser-1.19.2" + sources."body-parser-1.20.0" sources."brace-expansion-1.1.11" sources."braces-3.0.2" sources."bytes-3.1.2" + sources."call-bind-1.0.2" sources."chokidar-3.5.3" sources."cliui-7.0.4" sources."color-convert-2.0.1" @@ -106709,7 +107134,8 @@ in sources."custom-event-1.0.1" sources."date-format-4.0.6" sources."debug-2.6.9" - sources."depd-1.1.2" + sources."depd-2.0.0" + sources."destroy-1.2.0" sources."di-0.0.1" sources."dom-serialize-2.2.1" sources."ee-first-1.1.1" @@ -106728,17 +107154,26 @@ in sources."eventemitter3-4.0.7" sources."extend-3.0.2" sources."fill-range-7.0.1" - sources."finalhandler-1.1.2" + (sources."finalhandler-1.1.2" // { + dependencies = [ + sources."on-finished-2.3.0" + sources."statuses-1.5.0" + ]; + }) sources."flatted-3.2.5" sources."follow-redirects-1.14.9" sources."fs-extra-10.0.1" sources."fs.realpath-1.0.0" sources."fsevents-2.3.2" + sources."function-bind-1.1.1" sources."get-caller-file-2.0.5" + sources."get-intrinsic-1.1.1" sources."glob-7.2.0" sources."glob-parent-5.1.2" - sources."graceful-fs-4.2.9" - sources."http-errors-1.8.1" + sources."graceful-fs-4.2.10" + sources."has-1.0.3" + sources."has-symbols-1.0.3" + sources."http-errors-2.0.0" sources."http-proxy-1.18.1" sources."iconv-lite-0.4.24" sources."inflight-1.0.6" @@ -106768,15 +107203,16 @@ in sources."negotiator-0.6.3" sources."normalize-path-3.0.0" sources."object-assign-4.1.1" - sources."on-finished-2.3.0" + sources."object-inspect-1.12.0" + sources."on-finished-2.4.1" sources."once-1.4.0" sources."parseurl-1.3.3" sources."path-is-absolute-1.0.1" sources."picomatch-2.3.1" sources."qjobs-1.2.0" - sources."qs-6.9.7" + sources."qs-6.10.3" sources."range-parser-1.2.1" - sources."raw-body-2.4.3" + sources."raw-body-2.5.1" sources."readdirp-3.6.0" sources."require-directory-2.1.1" sources."requires-port-1.0.0" @@ -106784,6 +107220,7 @@ in sources."rimraf-3.0.2" sources."safer-buffer-2.1.2" sources."setprototypeof-1.2.0" + sources."side-channel-1.0.4" (sources."socket.io-4.4.1" // { dependencies = [ sources."debug-4.3.4" @@ -106798,7 +107235,7 @@ in ]; }) sources."source-map-0.6.1" - sources."statuses-1.5.0" + sources."statuses-2.0.1" (sources."streamroller-3.0.6" // { dependencies = [ sources."debug-4.3.4" @@ -106970,7 +107407,7 @@ in sources."buffer-from-1.1.2" sources."bytes-3.1.2" sources."call-bind-1.0.2" - sources."caniuse-lite-1.0.30001320" + sources."caniuse-lite-1.0.30001325" sources."chalk-2.4.2" sources."chardet-1.4.0" sources."chownr-1.1.4" @@ -107030,7 +107467,7 @@ in sources."destroy-1.0.4" sources."detect-libc-1.0.3" sources."dir-glob-3.0.1" - sources."doipjs-0.15.5" + sources."doipjs-0.15.6" (sources."domexception-2.0.1" // { dependencies = [ sources."webidl-conversions-5.0.0" @@ -107038,12 +107475,12 @@ in }) sources."dotenv-8.6.0" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.4.96" + sources."electron-to-chromium-1.4.103" 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.1" + sources."es-abstract-1.19.2" sources."es-to-primitive-1.2.1" sources."escalade-3.1.1" sources."escape-html-1.0.3" @@ -107117,7 +107554,7 @@ in sources."slash-3.0.0" ]; }) - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."has-1.0.3" sources."has-bigints-1.0.1" sources."has-flag-3.0.0" @@ -107159,12 +107596,12 @@ in sources."is-glob-4.0.3" sources."is-negative-zero-2.0.2" sources."is-number-7.0.0" - sources."is-number-object-1.0.6" + sources."is-number-object-1.0.7" sources."is-plain-obj-2.1.0" sources."is-plain-object-2.0.4" sources."is-potential-custom-element-name-1.0.1" sources."is-regex-1.1.4" - sources."is-shared-array-buffer-1.0.1" + sources."is-shared-array-buffer-1.0.2" sources."is-string-1.0.7" sources."is-symbol-1.0.4" sources."is-weakref-1.0.2" @@ -107245,7 +107682,7 @@ in sources."picomatch-2.3.1" sources."pify-4.0.1" sources."pirates-4.0.5" - (sources."pkg-5.5.2" // { + (sources."pkg-5.6.0" // { dependencies = [ sources."@babel/parser-7.16.2" sources."@babel/types-7.16.0" @@ -107258,7 +107695,7 @@ in ]; }) sources."pkg-dir-3.0.0" - (sources."pkg-fetch-3.2.6" // { + (sources."pkg-fetch-3.3.0" // { dependencies = [ sources."ansi-styles-4.3.0" sources."chalk-4.1.2" @@ -107379,7 +107816,7 @@ in sources."vary-1.1.2" sources."w3c-hr-time-1.0.2" sources."w3c-xmlserializer-2.0.0" - sources."webcrypto-core-1.7.2" + sources."webcrypto-core-1.7.3" sources."webidl-conversions-3.0.1" sources."whatwg-encoding-1.0.5" sources."whatwg-mimetype-2.3.0" @@ -107453,7 +107890,7 @@ in sources."glob-7.2.0" sources."glob-parent-3.1.0" sources."glob-stream-6.1.0" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."has-1.0.3" sources."has-symbols-1.0.3" sources."inflight-1.0.6" @@ -107640,7 +108077,7 @@ in sources."minimatch-3.1.2" sources."minimist-0.0.8" sources."mkdirp-0.5.1" - sources."moment-2.29.1" + sources."moment-2.29.2" sources."mute-stream-0.0.8" (sources."nconf-0.10.0" // { dependencies = [ @@ -107890,7 +108327,7 @@ in sources."minimatch-3.1.2" sources."minimist-1.2.6" sources."mkdirp-1.0.4" - sources."moment-2.29.1" + sources."moment-2.29.2" sources."mute-stream-0.0.8" (sources."nconf-0.10.0" // { dependencies = [ @@ -108295,7 +108732,7 @@ in sources."envinfo-7.8.1" sources."err-code-2.0.3" sources."error-ex-1.3.2" - sources."es-abstract-1.19.1" + sources."es-abstract-1.19.2" sources."es-to-primitive-1.2.1" sources."escalade-3.1.1" sources."escape-string-regexp-1.0.5" @@ -108362,7 +108799,7 @@ in sources."glob-7.2.0" sources."glob-parent-5.1.2" sources."globby-11.1.0" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."handlebars-4.7.7" sources."har-schema-2.0.0" sources."har-validator-5.1.5" @@ -108417,12 +108854,12 @@ in sources."is-lambda-1.0.1" sources."is-negative-zero-2.0.2" sources."is-number-7.0.0" - sources."is-number-object-1.0.6" + sources."is-number-object-1.0.7" sources."is-obj-2.0.0" sources."is-plain-obj-1.1.0" sources."is-plain-object-2.0.4" sources."is-regex-1.1.4" - sources."is-shared-array-buffer-1.0.1" + sources."is-shared-array-buffer-1.0.2" sources."is-ssh-1.3.3" sources."is-stream-2.0.1" sources."is-string-1.0.7" @@ -108784,7 +109221,7 @@ in sources."copy-anything-2.0.6" sources."debug-3.2.7" sources."errno-0.1.8" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."iconv-lite-0.4.24" sources."image-size-0.5.5" sources."is-what-3.14.1" @@ -108959,7 +109396,7 @@ in sources."is-glob-3.1.0" ]; }) - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."has-value-1.0.0" (sources."has-values-1.0.0" // { dependencies = [ @@ -109208,7 +109645,7 @@ in sources."binary-extensions-1.13.1" sources."bindings-1.5.0" sources."blob-0.0.5" - sources."body-parser-1.19.2" + sources."body-parser-1.20.0" sources."braces-1.8.5" sources."bytes-3.1.2" (sources."cache-base-1.0.1" // { @@ -109216,6 +109653,7 @@ in sources."isobject-3.0.1" ]; }) + sources."call-bind-1.0.2" sources."caseless-0.12.0" sources."chokidar-1.7.0" (sources."class-utils-0.3.6" // { @@ -109260,8 +109698,8 @@ in ]; }) sources."delayed-stream-1.0.0" - sources."depd-1.1.2" - sources."destroy-1.0.4" + sources."depd-2.0.0" + sources."destroy-1.2.0" sources."ecc-jsbn-0.1.2" sources."ee-first-1.1.1" sources."encodeurl-1.0.2" @@ -109284,7 +109722,14 @@ in sources."expand-range-1.8.2" (sources."express-4.17.3" // { dependencies = [ + sources."body-parser-1.19.2" + sources."depd-1.1.2" + sources."http-errors-1.8.1" + sources."on-finished-2.3.0" + sources."qs-6.9.7" + sources."raw-body-2.4.3" sources."safe-buffer-5.2.1" + sources."statuses-1.5.0" ]; }) sources."extend-3.0.2" @@ -109300,7 +109745,12 @@ in sources."file-uri-to-path-1.0.0" sources."filename-regex-2.0.1" sources."fill-range-2.2.4" - sources."finalhandler-1.1.2" + (sources."finalhandler-1.1.2" // { + dependencies = [ + sources."on-finished-2.3.0" + sources."statuses-1.5.0" + ]; + }) sources."for-in-1.0.2" sources."for-own-0.1.5" sources."forever-agent-0.6.1" @@ -109309,20 +109759,24 @@ in sources."fragment-cache-0.2.1" sources."fresh-0.5.2" sources."fsevents-1.2.13" + sources."function-bind-1.1.1" + sources."get-intrinsic-1.1.1" sources."get-value-2.0.6" sources."getpass-0.1.7" sources."github-slugger-1.4.0" sources."glob-base-0.3.0" sources."glob-parent-2.0.0" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."har-schema-2.0.0" sources."har-validator-5.1.5" + sources."has-1.0.3" (sources."has-binary2-1.0.3" // { dependencies = [ sources."isarray-2.0.1" ]; }) sources."has-cors-1.1.0" + sources."has-symbols-1.0.3" (sources."has-value-1.0.0" // { dependencies = [ sources."isobject-3.0.1" @@ -109339,7 +109793,7 @@ in ]; }) sources."html-entities-1.4.0" - sources."http-errors-1.8.1" + sources."http-errors-2.0.0" sources."http-signature-1.2.0" sources."iconv-lite-0.4.24" sources."indexof-0.0.1" @@ -109434,6 +109888,7 @@ in }) ]; }) + sources."object-inspect-1.12.0" (sources."object-visit-1.0.1" // { dependencies = [ sources."isobject-3.0.1" @@ -109445,7 +109900,7 @@ in sources."isobject-3.0.1" ]; }) - sources."on-finished-2.3.0" + sources."on-finished-2.4.1" sources."opn-5.5.0" sources."parse-glob-3.0.4" sources."parseqs-0.0.6" @@ -109461,7 +109916,7 @@ in sources."proxy-addr-2.0.7" sources."psl-1.8.0" sources."punycode-2.1.1" - sources."qs-6.9.7" + sources."qs-6.10.3" (sources."randomatic-3.1.1" // { dependencies = [ sources."is-number-4.0.0" @@ -109469,7 +109924,7 @@ in ]; }) sources."range-parser-1.2.1" - sources."raw-body-2.4.3" + sources."raw-body-2.5.1" sources."readable-stream-2.3.7" (sources."readdirp-2.2.1" // { dependencies = [ @@ -109539,7 +109994,12 @@ in sources."safer-buffer-2.1.2" (sources."send-0.17.2" // { dependencies = [ + sources."depd-1.1.2" + sources."destroy-1.0.4" + sources."http-errors-1.8.1" sources."ms-2.1.3" + sources."on-finished-2.3.0" + sources."statuses-1.5.0" ]; }) sources."serve-static-1.14.2" @@ -109549,6 +110009,7 @@ in ]; }) sources."setprototypeof-1.2.0" + sources."side-channel-1.0.4" (sources."snapdragon-0.8.2" // { dependencies = [ sources."define-property-0.2.5" @@ -109619,7 +110080,7 @@ in sources."kind-of-5.1.0" ]; }) - sources."statuses-1.5.0" + sources."statuses-2.0.1" sources."string_decoder-1.1.1" sources."to-array-0.1.4" sources."to-object-path-0.3.0" @@ -110004,7 +110465,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.30001320" + sources."caniuse-lite-1.0.30001325" sources."capture-exit-2.0.0" sources."caseless-0.12.0" (sources."chalk-3.0.0" // { @@ -110127,7 +110588,7 @@ in sources."duplexer2-0.1.4" sources."duplexify-3.7.1" sources."ecc-jsbn-0.1.2" - sources."electron-to-chromium-1.4.96" + sources."electron-to-chromium-1.4.103" (sources."elliptic-6.5.4" // { dependencies = [ sources."bn.js-4.12.0" @@ -110247,7 +110708,7 @@ in }) sources."globals-11.12.0" sources."google-closure-compiler-js-20170910.0.1" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" (sources."gunzip-maybe-1.4.2" // { dependencies = [ sources."browserify-zlib-0.1.4" @@ -110950,7 +111411,7 @@ in sources."fuzzyset.js-0.0.1" sources."getpass-0.1.7" sources."glob-6.0.4" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."hogan.js-2.0.0" (sources."http-signature-1.3.6" // { dependencies = [ @@ -110987,7 +111448,7 @@ in sources."minimatch-3.1.2" sources."minimist-1.2.6" sources."mkdirp-0.5.6" - sources."moment-2.29.1" + sources."moment-2.29.2" (sources."mooremachine-2.3.0" // { dependencies = [ sources."assert-plus-0.2.0" @@ -111492,7 +111953,7 @@ in sources."glob-7.2.0" sources."globals-9.18.0" sources."glogg-1.0.2" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."gulp-eslint-3.0.1" (sources."gulp-util-3.0.8" // { dependencies = [ @@ -111749,13 +112210,13 @@ in sources."commander-9.1.0" sources."concat-map-0.0.1" sources."cross-fetch-3.1.5" - sources."d3-7.3.0" - sources."d3-array-3.1.1" + sources."d3-7.4.2" + sources."d3-array-3.1.4" sources."d3-axis-3.0.0" sources."d3-brush-3.0.0" sources."d3-chord-3.0.1" sources."d3-collection-1.0.7" - sources."d3-color-3.0.1" + sources."d3-color-3.1.0" sources."d3-contour-3.0.1" sources."d3-delaunay-6.0.2" sources."d3-dispatch-3.0.1" @@ -111770,7 +112231,7 @@ in sources."d3-force-3.0.0" sources."d3-format-3.1.0" sources."d3-geo-3.0.1" - sources."d3-hierarchy-3.1.1" + sources."d3-hierarchy-3.1.2" sources."d3-interpolate-3.0.1" sources."d3-path-3.0.1" sources."d3-polygon-3.0.1" @@ -111823,7 +112284,7 @@ in sources."iconv-lite-0.4.24" ]; }) - sources."debug-4.3.3" + sources."debug-4.3.4" sources."delaunator-5.0.0" sources."devtools-protocol-0.0.969999" sources."dompurify-2.3.5" @@ -111863,7 +112324,7 @@ in sources."progress-2.0.3" sources."proxy-from-env-1.1.0" sources."pump-3.0.0" - sources."puppeteer-13.5.1" + sources."puppeteer-13.5.2" sources."readable-stream-3.6.0" sources."rimraf-3.0.2" sources."robust-predicates-3.0.1" @@ -111871,7 +112332,7 @@ in sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" sources."string_decoder-1.3.0" - sources."stylis-4.0.13" + sources."stylis-4.1.0" sources."supports-color-7.2.0" sources."tar-fs-2.1.1" sources."tar-stream-2.2.0" @@ -112309,7 +112770,7 @@ in sources."glob-7.2.0" sources."global-dirs-3.0.0" sources."got-9.6.0" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."has-flag-4.0.0" sources."has-unicode-2.0.1" sources."has-yarn-2.1.0" @@ -112386,7 +112847,7 @@ in }) sources."node-addon-api-3.2.1" sources."node-fetch-2.6.7" - sources."node-gyp-build-4.3.0" + sources."node-gyp-build-4.4.0" sources."node-hid-2.1.1" sources."normalize-url-4.5.1" sources."npmlog-4.1.2" @@ -112613,7 +113074,11 @@ in sources."are-we-there-yet-3.0.0" sources."balanced-match-1.0.2" sources."brace-expansion-1.1.11" - sources."cacache-16.0.3" + (sources."cacache-16.0.3" // { + dependencies = [ + sources."ssri-8.0.1" + ]; + }) sources."chownr-2.0.0" sources."clean-stack-2.2.0" sources."color-support-1.1.3" @@ -112628,9 +113093,9 @@ in sources."err-code-2.0.3" sources."fs-minipass-2.1.0" sources."fs.realpath-1.0.0" - sources."gauge-4.0.3" + sources."gauge-4.0.4" sources."glob-7.2.0" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."has-unicode-2.0.1" sources."http-cache-semantics-4.1.0" sources."http-proxy-agent-5.0.0" @@ -112646,8 +113111,8 @@ in sources."is-fullwidth-code-point-3.0.0" sources."is-lambda-1.0.1" sources."isexe-2.0.0" - sources."lru-cache-7.7.1" - sources."make-fetch-happen-10.1.0" + sources."lru-cache-7.7.3" + sources."make-fetch-happen-10.1.2" sources."minimatch-3.1.2" sources."minipass-3.1.6" sources."minipass-collect-1.0.2" @@ -112681,7 +113146,7 @@ in sources."smart-buffer-4.2.0" sources."socks-2.6.2" sources."socks-proxy-agent-6.1.1" - sources."ssri-8.0.1" + sources."ssri-9.0.0" sources."string-width-4.2.3" sources."string_decoder-1.3.0" sources."strip-ansi-6.0.1" @@ -112707,10 +113172,10 @@ in node-gyp-build = nodeEnv.buildNodePackage { name = "node-gyp-build"; packageName = "node-gyp-build"; - version = "4.3.0"; + version = "4.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.3.0.tgz"; - sha512 = "iWjXZvmboq0ja1pUGULQBexmxq8CV4xBhX7VDOTbL7ZR4FOowwY/VOtRxBN/yKxmdGoIp4j5ysNT4u3S2pDQ3Q=="; + url = "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.4.0.tgz"; + sha512 = "amJnQCcgtRVw9SvoebO3BKGESClrfXGCUTX9hSn1OuGQTQBOZmVd0Z0OlecpuRksKvbsUqALE8jls/ErClAPuQ=="; }; buildInputs = globalBuildInputs; meta = { @@ -112815,7 +113280,7 @@ in ]; }) sources."glob-5.0.15" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."har-schema-1.0.5" sources."har-validator-4.2.1" sources."has-1.0.3" @@ -113129,7 +113594,7 @@ in }; dependencies = [ sources."@babel/runtime-7.17.8" - sources."@mapbox/node-pre-gyp-1.0.8" + sources."@mapbox/node-pre-gyp-1.0.9" sources."@node-red/editor-api-2.2.2" sources."@node-red/editor-client-2.2.2" (sources."@node-red/nodes-2.2.2" // { @@ -113152,6 +113617,7 @@ in sources."@szmarczak/http-timer-4.0.6" sources."@types/cacheable-request-6.0.2" 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/responselike-1.0.0" @@ -113207,7 +113673,7 @@ in sources."cacheable-lookup-5.0.4" sources."cacheable-request-7.0.2" sources."cheerio-1.0.0-rc.10" - sources."cheerio-select-1.5.0" + sources."cheerio-select-1.6.0" sources."chownr-2.0.0" sources."cli-table-0.3.11" sources."clone-2.1.2" @@ -113216,6 +113682,7 @@ in sources."colors-1.0.3" sources."combined-stream-1.0.8" sources."commist-1.1.0" + sources."compress-brotli-1.3.6" sources."concat-map-0.0.1" (sources."concat-stream-1.6.2" // { dependencies = [ @@ -113234,8 +113701,8 @@ in sources."core-util-is-1.0.3" sources."cors-2.8.5" sources."cronosjs-1.7.1" - sources."css-select-4.2.1" - sources."css-what-5.1.0" + sources."css-select-4.3.0" + sources."css-what-6.1.0" sources."debug-2.6.9" (sources."decompress-response-6.0.0" // { dependencies = [ @@ -113248,7 +113715,7 @@ in sources."denque-2.0.1" sources."depd-1.1.2" sources."destroy-1.0.4" - sources."detect-libc-1.0.3" + sources."detect-libc-2.0.1" sources."dicer-0.2.5" sources."dom-serializer-1.3.2" sources."domelementtype-2.2.0" @@ -113293,7 +113760,7 @@ in sources."get-stream-5.2.0" sources."glob-7.2.0" sources."got-11.8.3" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."has-unicode-2.0.1" sources."hash-sum-2.0.0" (sources."help-me-3.0.0" // { @@ -113333,7 +113800,7 @@ in sources."universalify-2.0.0" ]; }) - sources."keyv-4.1.1" + sources."keyv-4.2.1" sources."leven-2.1.0" sources."lodash.clonedeep-4.5.0" sources."lowercase-keys-2.0.0" @@ -113369,7 +113836,7 @@ in ]; }) sources."mkdirp-0.5.6" - sources."moment-2.29.1" + sources."moment-2.29.2" sources."moment-timezone-0.5.34" (sources."mqtt-4.3.5" // { dependencies = [ @@ -113571,7 +114038,7 @@ in sources."gauge-2.7.4" sources."getpass-0.1.7" sources."glob-7.2.0" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."har-schema-2.0.0" sources."har-validator-5.1.5" sources."has-1.0.3" @@ -113771,7 +114238,7 @@ in sources."glob-parent-5.1.2" sources."global-dirs-3.0.0" sources."got-9.6.0" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."has-flag-3.0.0" sources."has-yarn-2.1.0" sources."http-cache-semantics-4.1.0" @@ -113904,6 +114371,7 @@ in sources."@szmarczak/http-timer-4.0.6" sources."@types/cacheable-request-6.0.2" sources."@types/http-cache-semantics-4.0.1" + 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" @@ -113962,6 +114430,7 @@ in sources."code-point-at-1.1.0" sources."color-convert-2.0.1" sources."color-name-1.1.4" + sources."compress-brotli-1.3.6" sources."concat-map-0.0.1" (sources."configstore-5.0.1" // { dependencies = [ @@ -114016,7 +114485,7 @@ in sources."type-fest-0.10.0" ]; }) - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."hard-rejection-2.1.0" sources."has-1.0.3" (sources."has-ansi-2.0.0" // { @@ -114109,7 +114578,7 @@ in sources."js-tokens-4.0.0" sources."json-buffer-3.0.1" sources."json-parse-even-better-errors-2.3.1" - sources."keyv-4.1.1" + sources."keyv-4.2.1" sources."kind-of-6.0.3" sources."latest-version-5.1.0" sources."lines-and-columns-1.2.4" @@ -114400,10 +114869,10 @@ in npm = nodeEnv.buildNodePackage { name = "npm"; packageName = "npm"; - version = "8.5.5"; + version = "8.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/npm/-/npm-8.5.5.tgz"; - sha512 = "a1vl26nokCNlD+my/iNYmOUPx/hpYR4ZyZk8gb7/A2XXtrPZf2gTSJOnVjS77jQS+BSfIVQpipZwXWCL0+5wzg=="; + url = "https://registry.npmjs.org/npm/-/npm-8.6.0.tgz"; + sha512 = "icekvN8FJFESIFkLaFEVl05Nocl5Id5HnoVhJzhCUvtNY8tj9kfUlH/J527fZq/8ltsAUqpettfutwRjQYS2fA=="; }; buildInputs = globalBuildInputs; meta = { @@ -114418,10 +114887,10 @@ in npm-check-updates = nodeEnv.buildNodePackage { name = "npm-check-updates"; packageName = "npm-check-updates"; - version = "12.5.4"; + version = "12.5.7"; src = fetchurl { - url = "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-12.5.4.tgz"; - sha512 = "4+27zaTdieWgvPLaCZ/A6Q2WC1cYVcrc2SqVmLFYgkWBrKw1QkwpeV16FSvkFGZr3OdFyr7Dpjw8JRn4H2QxFw=="; + url = "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-12.5.7.tgz"; + sha512 = "WDkqPBevmgphV1UH3FImsDEpTAq2UFvnMZC3GdXPknE2VL701kfKylnae8IA9ZeYfm/uU0249N9gjMXqA/9y3w=="; }; dependencies = [ sources."@gar/promisify-1.1.3" @@ -114429,11 +114898,7 @@ in sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" sources."@npmcli/fs-2.1.0" - (sources."@npmcli/git-3.0.0" // { - dependencies = [ - sources."lru-cache-7.7.1" - ]; - }) + sources."@npmcli/git-3.0.0" sources."@npmcli/installed-package-contents-1.0.7" sources."@npmcli/move-file-1.1.2" sources."@npmcli/node-gyp-1.0.3" @@ -114458,12 +114923,8 @@ in sources."brace-expansion-2.0.1" sources."braces-3.0.2" sources."buffer-from-1.1.2" - sources."builtins-1.0.3" - (sources."cacache-16.0.3" // { - dependencies = [ - sources."lru-cache-7.7.1" - ]; - }) + sources."builtins-5.0.0" + sources."cacache-16.0.3" (sources."cacheable-request-6.1.0" // { dependencies = [ sources."get-stream-5.2.0" @@ -114513,7 +114974,7 @@ in sources."fs-minipass-2.1.0" sources."fs.realpath-1.0.0" sources."function-bind-1.1.1" - sources."gauge-4.0.3" + sources."gauge-4.0.4" sources."get-stdin-8.0.0" sources."get-stream-4.1.0" (sources."glob-7.2.0" // { @@ -114530,12 +114991,12 @@ in }) sources."globby-11.1.0" sources."got-9.6.0" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."has-1.0.3" sources."has-flag-4.0.0" sources."has-unicode-2.0.1" sources."has-yarn-2.1.0" - sources."hosted-git-info-4.1.0" + 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" @@ -114593,15 +115054,15 @@ in sources."locate-path-6.0.0" sources."lodash-4.17.21" sources."lowercase-keys-1.0.1" - sources."lru-cache-6.0.0" + sources."lru-cache-7.7.3" (sources."make-dir-3.1.0" // { dependencies = [ sources."semver-6.3.0" ]; }) - (sources."make-fetch-happen-10.1.0" // { + (sources."make-fetch-happen-10.1.2" // { dependencies = [ - sources."lru-cache-7.7.1" + sources."ssri-9.0.0" ]; }) sources."merge2-1.4.1" @@ -114622,24 +115083,14 @@ in sources."negotiator-0.6.3" sources."node-gyp-9.0.0" sources."nopt-5.0.0" - (sources."normalize-package-data-4.0.0" // { - dependencies = [ - sources."hosted-git-info-5.0.0" - sources."lru-cache-7.7.1" - ]; - }) + sources."normalize-package-data-4.0.0" sources."normalize-url-4.5.1" sources."npm-bundled-1.1.2" - sources."npm-install-checks-4.0.0" + sources."npm-install-checks-5.0.0" sources."npm-normalize-package-bin-1.0.1" - (sources."npm-package-arg-9.0.1" // { - dependencies = [ - sources."hosted-git-info-5.0.0" - sources."lru-cache-7.7.1" - ]; - }) + sources."npm-package-arg-9.0.2" sources."npm-packlist-4.0.0" - sources."npm-pick-manifest-7.0.0" + sources."npm-pick-manifest-7.0.1" sources."npm-registry-fetch-13.1.0" sources."npmlog-6.0.1" sources."once-1.4.0" @@ -114660,7 +115111,7 @@ in sources."path-type-4.0.0" sources."picomatch-2.3.1" sources."prepend-http-2.0.0" - sources."proc-log-2.0.0" + sources."proc-log-2.0.1" sources."progress-2.0.3" sources."promise-inflight-1.0.1" sources."promise-retry-2.0.1" @@ -114669,7 +115120,7 @@ in sources."pupa-2.1.1" sources."queue-microtask-1.2.3" sources."rc-1.2.8" - sources."rc-config-loader-4.0.0" + sources."rc-config-loader-4.1.0" sources."read-package-json-5.0.0" sources."read-package-json-fast-2.0.3" sources."readable-stream-3.6.0" @@ -114684,7 +115135,11 @@ in sources."run-parallel-1.2.0" sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" - sources."semver-7.3.5" + (sources."semver-7.3.5" // { + dependencies = [ + sources."lru-cache-6.0.0" + ]; + }) (sources."semver-diff-3.1.1" // { dependencies = [ sources."semver-6.3.0" @@ -114723,7 +115178,7 @@ in sources."url-parse-lax-3.0.0" sources."util-deprecate-1.0.2" sources."validate-npm-package-license-3.0.4" - sources."validate-npm-package-name-3.0.0" + sources."validate-npm-package-name-4.0.0" sources."which-2.0.2" sources."wide-align-1.1.5" sources."widest-line-3.1.0" @@ -114828,7 +115283,7 @@ in sources."mkdirp-0.5.6" ]; }) - sources."gauge-4.0.3" + sources."gauge-4.0.4" sources."getpass-0.1.7" sources."glob-7.2.0" sources."graceful-fs-2.0.3" @@ -115303,7 +115758,7 @@ in sources."caller-path-2.0.0" sources."callsites-2.0.0" sources."caniuse-api-3.0.0" - sources."caniuse-lite-1.0.30001320" + sources."caniuse-lite-1.0.30001325" sources."caseless-0.12.0" sources."chalk-2.4.2" sources."chokidar-2.1.8" @@ -115385,7 +115840,7 @@ in sources."cssstyle-1.4.0" sources."dashdash-1.14.1" sources."data-urls-1.1.0" - sources."deasync-0.1.24" + sources."deasync-0.1.26" sources."debug-4.3.4" sources."decode-uri-component-0.2.0" sources."deep-is-0.1.4" @@ -115440,7 +115895,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.96" + sources."electron-to-chromium-1.4.103" (sources."elliptic-6.5.4" // { dependencies = [ sources."bn.js-4.12.0" @@ -115450,7 +115905,7 @@ in sources."entities-2.2.0" sources."envinfo-7.8.1" sources."error-ex-1.3.2" - (sources."es-abstract-1.19.1" // { + (sources."es-abstract-1.19.2" // { dependencies = [ sources."object-inspect-1.12.0" ]; @@ -115512,7 +115967,7 @@ in }) sources."glob-to-regexp-0.3.0" sources."globals-11.12.0" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."grapheme-breaker-0.3.2" sources."har-schema-2.0.0" sources."har-validator-5.1.5" @@ -115604,12 +116059,12 @@ in sources."is-html-1.1.0" sources."is-negative-zero-2.0.2" sources."is-number-3.0.0" - sources."is-number-object-1.0.6" + sources."is-number-object-1.0.7" sources."is-obj-2.0.0" sources."is-plain-object-2.0.4" sources."is-regex-1.1.4" sources."is-resolvable-1.1.0" - sources."is-shared-array-buffer-1.0.1" + sources."is-shared-array-buffer-1.0.2" sources."is-string-1.0.7" sources."is-symbol-1.0.4" sources."is-typedarray-1.0.0" @@ -115809,7 +116264,7 @@ in sources."postcss-ordered-values-4.1.2" sources."postcss-reduce-initial-4.0.3" sources."postcss-reduce-transforms-4.0.2" - sources."postcss-selector-parser-6.0.9" + sources."postcss-selector-parser-6.0.10" sources."postcss-svgo-4.0.3" sources."postcss-unique-selectors-4.0.1" sources."postcss-value-parser-3.3.1" @@ -115903,7 +116358,7 @@ in sources."ms-2.1.3" ]; }) - sources."serialize-to-js-3.1.1" + sources."serialize-to-js-3.1.2" sources."serve-static-1.15.0" sources."set-value-2.0.1" sources."setimmediate-1.0.5" @@ -116081,10 +116536,10 @@ in parcel = nodeEnv.buildNodePackage { name = "parcel"; packageName = "parcel"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/parcel/-/parcel-2.4.0.tgz"; - sha512 = "dPWpu4RnxG9HqiLvaF8COEWEnT/KrigrC6PyPaQ0zEgpBfp7/jzXZFBVaZk2N+lpvrbNEYMjN9bv5UQGJJszIw=="; + url = "https://registry.npmjs.org/parcel/-/parcel-2.4.1.tgz"; + sha512 = "H8n7cJ0rOt0AZZLuPuG6hvujUWiWz8kxx4pkqEDm31dijrbKb0pNgccXOllQ34em6r7elv6yH7lxox8jDCp0hw=="; }; dependencies = [ sources."@babel/code-frame-7.16.7" @@ -116094,78 +116549,78 @@ in sources."chalk-2.4.2" ]; }) - sources."@parcel/bundler-default-2.4.0" - sources."@parcel/cache-2.4.0" - sources."@parcel/codeframe-2.4.0" - sources."@parcel/compressor-raw-2.4.0" - sources."@parcel/config-default-2.4.0" - sources."@parcel/core-2.4.0" - sources."@parcel/css-1.7.3" - sources."@parcel/css-darwin-arm64-1.7.3" - sources."@parcel/css-darwin-x64-1.7.3" - sources."@parcel/css-linux-arm-gnueabihf-1.7.3" - sources."@parcel/css-linux-arm64-gnu-1.7.3" - sources."@parcel/css-linux-arm64-musl-1.7.3" - sources."@parcel/css-linux-x64-gnu-1.7.3" - sources."@parcel/css-linux-x64-musl-1.7.3" - sources."@parcel/css-win32-x64-msvc-1.7.3" - sources."@parcel/diagnostic-2.4.0" - sources."@parcel/events-2.4.0" - sources."@parcel/fs-2.4.0" - sources."@parcel/fs-search-2.4.0" - sources."@parcel/graph-2.4.0" - sources."@parcel/hash-2.4.0" - sources."@parcel/logger-2.4.0" - sources."@parcel/markdown-ansi-2.4.0" - sources."@parcel/namer-default-2.4.0" - sources."@parcel/node-resolver-core-2.4.0" - sources."@parcel/optimizer-css-2.4.0" - sources."@parcel/optimizer-htmlnano-2.4.0" - sources."@parcel/optimizer-image-2.4.0" - sources."@parcel/optimizer-svgo-2.4.0" - sources."@parcel/optimizer-terser-2.4.0" - sources."@parcel/package-manager-2.4.0" - sources."@parcel/packager-css-2.4.0" - sources."@parcel/packager-html-2.4.0" - sources."@parcel/packager-js-2.4.0" - sources."@parcel/packager-raw-2.4.0" - sources."@parcel/packager-svg-2.4.0" - sources."@parcel/plugin-2.4.0" - sources."@parcel/reporter-cli-2.4.0" - sources."@parcel/reporter-dev-server-2.4.0" - sources."@parcel/resolver-default-2.4.0" - sources."@parcel/runtime-browser-hmr-2.4.0" - sources."@parcel/runtime-js-2.4.0" - sources."@parcel/runtime-react-refresh-2.4.0" - sources."@parcel/runtime-service-worker-2.4.0" + sources."@parcel/bundler-default-2.4.1" + sources."@parcel/cache-2.4.1" + sources."@parcel/codeframe-2.4.1" + sources."@parcel/compressor-raw-2.4.1" + sources."@parcel/config-default-2.4.1" + sources."@parcel/core-2.4.1" + sources."@parcel/css-1.7.4" + sources."@parcel/css-darwin-arm64-1.7.4" + sources."@parcel/css-darwin-x64-1.7.4" + sources."@parcel/css-linux-arm-gnueabihf-1.7.4" + sources."@parcel/css-linux-arm64-gnu-1.7.4" + sources."@parcel/css-linux-arm64-musl-1.7.4" + sources."@parcel/css-linux-x64-gnu-1.7.4" + sources."@parcel/css-linux-x64-musl-1.7.4" + sources."@parcel/css-win32-x64-msvc-1.7.4" + sources."@parcel/diagnostic-2.4.1" + sources."@parcel/events-2.4.1" + sources."@parcel/fs-2.4.1" + sources."@parcel/fs-search-2.4.1" + sources."@parcel/graph-2.4.1" + sources."@parcel/hash-2.4.1" + sources."@parcel/logger-2.4.1" + sources."@parcel/markdown-ansi-2.4.1" + sources."@parcel/namer-default-2.4.1" + sources."@parcel/node-resolver-core-2.4.1" + sources."@parcel/optimizer-css-2.4.1" + sources."@parcel/optimizer-htmlnano-2.4.1" + sources."@parcel/optimizer-image-2.4.1" + sources."@parcel/optimizer-svgo-2.4.1" + sources."@parcel/optimizer-terser-2.4.1" + sources."@parcel/package-manager-2.4.1" + sources."@parcel/packager-css-2.4.1" + sources."@parcel/packager-html-2.4.1" + sources."@parcel/packager-js-2.4.1" + sources."@parcel/packager-raw-2.4.1" + sources."@parcel/packager-svg-2.4.1" + sources."@parcel/plugin-2.4.1" + sources."@parcel/reporter-cli-2.4.1" + sources."@parcel/reporter-dev-server-2.4.1" + sources."@parcel/resolver-default-2.4.1" + sources."@parcel/runtime-browser-hmr-2.4.1" + sources."@parcel/runtime-js-2.4.1" + sources."@parcel/runtime-react-refresh-2.4.1" + sources."@parcel/runtime-service-worker-2.4.1" sources."@parcel/source-map-2.0.2" - sources."@parcel/transformer-babel-2.4.0" - sources."@parcel/transformer-css-2.4.0" - (sources."@parcel/transformer-html-2.4.0" // { + sources."@parcel/transformer-babel-2.4.1" + sources."@parcel/transformer-css-2.4.1" + (sources."@parcel/transformer-html-2.4.1" // { dependencies = [ sources."posthtml-parser-0.10.2" ]; }) - sources."@parcel/transformer-image-2.4.0" - sources."@parcel/transformer-js-2.4.0" - sources."@parcel/transformer-json-2.4.0" - sources."@parcel/transformer-postcss-2.4.0" - (sources."@parcel/transformer-posthtml-2.4.0" // { + sources."@parcel/transformer-image-2.4.1" + sources."@parcel/transformer-js-2.4.1" + sources."@parcel/transformer-json-2.4.1" + sources."@parcel/transformer-postcss-2.4.1" + (sources."@parcel/transformer-posthtml-2.4.1" // { dependencies = [ sources."posthtml-parser-0.10.2" ]; }) - sources."@parcel/transformer-raw-2.4.0" - sources."@parcel/transformer-react-refresh-wrap-2.4.0" - (sources."@parcel/transformer-svg-2.4.0" // { + sources."@parcel/transformer-raw-2.4.1" + sources."@parcel/transformer-react-refresh-wrap-2.4.1" + (sources."@parcel/transformer-svg-2.4.1" // { dependencies = [ sources."posthtml-parser-0.10.2" ]; }) - sources."@parcel/types-2.4.0" - sources."@parcel/utils-2.4.0" + sources."@parcel/types-2.4.1" + sources."@parcel/utils-2.4.1" sources."@parcel/watcher-2.0.5" - sources."@parcel/workers-2.4.0" + sources."@parcel/workers-2.4.1" sources."@swc/helpers-0.3.8" sources."@trysound/sax-0.2.0" sources."@types/parse-json-4.0.0" @@ -116177,7 +116632,7 @@ in sources."browserslist-4.20.2" sources."buffer-from-1.1.2" sources."callsites-3.1.0" - sources."caniuse-lite-1.0.30001320" + sources."caniuse-lite-1.0.30001325" (sources."chalk-4.1.2" // { dependencies = [ sources."ansi-styles-4.3.0" @@ -116193,9 +116648,9 @@ in sources."color-name-1.1.3" sources."commander-7.2.0" sources."cosmiconfig-7.0.1" - sources."css-select-4.2.1" + sources."css-select-4.3.0" sources."css-tree-1.1.3" - sources."css-what-5.1.0" + sources."css-what-6.1.0" sources."csso-4.2.0" sources."detect-libc-1.0.3" (sources."dom-serializer-1.3.2" // { @@ -116208,7 +116663,7 @@ in sources."domutils-2.8.0" sources."dotenv-7.0.0" sources."dotenv-expand-5.1.0" - sources."electron-to-chromium-1.4.96" + sources."electron-to-chromium-1.4.103" sources."entities-3.0.1" sources."error-ex-1.3.2" sources."escalade-3.1.1" @@ -116216,7 +116671,7 @@ in sources."get-port-4.2.0" sources."globals-13.13.0" sources."has-flag-3.0.0" - sources."htmlnano-2.0.0" + sources."htmlnano-2.0.1" sources."htmlparser2-7.2.0" sources."import-fresh-3.3.0" sources."is-arrayish-0.2.1" @@ -116229,10 +116684,20 @@ in sources."lmdb-2.2.4" sources."mdn-data-2.0.14" sources."msgpackr-1.5.5" - sources."msgpackr-extract-1.0.16" + (sources."msgpackr-extract-1.1.0" // { + dependencies = [ + sources."node-gyp-build-git://github.com/kriszyp/node-gyp-build#optional-packages" + ]; + }) + sources."msgpackr-extract-darwin-arm64-1.1.0" + sources."msgpackr-extract-darwin-x64-1.1.0" + sources."msgpackr-extract-linux-arm-1.1.0" + sources."msgpackr-extract-linux-arm64-1.1.0" + sources."msgpackr-extract-linux-x64-1.1.0" + sources."msgpackr-extract-win32-x64-1.1.0" sources."nan-2.15.0" sources."node-addon-api-3.2.1" - sources."node-gyp-build-4.3.0" + sources."node-gyp-build-4.4.0" sources."node-releases-2.0.2" sources."nth-check-2.0.1" sources."nullthrows-1.1.1" @@ -116400,7 +116865,7 @@ in sources."get-intrinsic-1.1.1" sources."getpass-0.1.7" sources."glob-7.2.0" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."handlebars-4.7.7" sources."har-schema-2.0.0" sources."har-validator-5.1.5" @@ -116446,7 +116911,7 @@ in sources."minimatch-3.1.2" sources."minimist-1.2.6" sources."mkdirp-0.5.6" - sources."moment-2.29.1" + sources."moment-2.29.2" sources."ms-2.0.0" sources."msgpack5-3.6.1" sources."mv-2.1.1" @@ -116602,7 +117067,7 @@ in sources."fs-extra-7.0.1" sources."fs.realpath-1.0.0" sources."glob-7.2.0" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."has-flag-3.0.0" sources."inflight-1.0.6" sources."inherits-2.0.4" @@ -116747,7 +117212,7 @@ in sources."get-intrinsic-1.1.1" sources."get-stdin-4.0.1" sources."glob-7.2.0" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."has-1.0.3" sources."has-ansi-2.0.0" sources."has-flag-3.0.0" @@ -117009,7 +117474,7 @@ in sources."blob-0.0.5" sources."bn.js-4.12.0" sources."bncode-0.5.3" - sources."body-parser-1.19.2" + sources."body-parser-1.20.0" sources."brace-expansion-1.1.11" sources."buffer-5.7.1" sources."buffer-alloc-1.2.0" @@ -117020,6 +117485,7 @@ in sources."buffer-fill-1.0.0" sources."buffer-from-1.1.2" sources."bytes-3.1.2" + sources."call-bind-1.0.2" sources."caseless-0.12.0" sources."chrome-dgram-3.0.6" sources."chrome-dns-1.0.1" @@ -117037,9 +117503,12 @@ in sources."concat-map-0.0.1" (sources."connect-multiparty-2.2.0" // { dependencies = [ + sources."depd-1.1.2" sources."http-errors-1.7.3" + sources."on-finished-2.3.0" sources."qs-6.5.3" sources."setprototypeof-1.1.1" + sources."statuses-1.5.0" sources."toidentifier-1.0.0" ]; }) @@ -117059,8 +117528,8 @@ in sources."debug-2.6.9" sources."decompress-response-3.3.0" sources."delayed-stream-1.0.0" - sources."depd-1.1.2" - sources."destroy-1.0.4" + sources."depd-2.0.0" + sources."destroy-1.2.0" sources."ecc-jsbn-0.1.2" sources."ee-first-1.1.1" sources."encodeurl-1.0.2" @@ -117082,8 +117551,15 @@ in sources."events-3.3.0" (sources."express-4.17.3" // { dependencies = [ + sources."body-parser-1.19.2" + sources."depd-1.1.2" + sources."http-errors-1.8.1" + sources."on-finished-2.3.0" + sources."qs-6.9.7" + sources."raw-body-2.4.3" sources."safe-buffer-5.2.1" sources."serve-static-1.14.2" + sources."statuses-1.5.0" ]; }) sources."extend-3.0.2" @@ -117091,7 +117567,12 @@ in sources."fast-deep-equal-3.1.3" sources."fast-json-stable-stringify-2.1.0" sources."fifo-0.1.4" - sources."finalhandler-1.1.2" + (sources."finalhandler-1.1.2" // { + dependencies = [ + sources."on-finished-2.3.0" + sources."statuses-1.5.0" + ]; + }) sources."flatten-0.0.1" sources."fluent-ffmpeg-2.1.2" sources."forever-agent-0.6.1" @@ -117101,20 +117582,24 @@ in sources."fs-chunk-store-1.7.0" sources."fs-constants-1.0.0" sources."fs.realpath-1.0.0" + sources."function-bind-1.1.1" sources."get-browser-rtc-1.1.0" + sources."get-intrinsic-1.1.1" sources."getpass-0.1.7" sources."glob-7.2.0" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."har-schema-2.0.0" sources."har-validator-5.1.5" + sources."has-1.0.3" (sources."has-binary2-1.0.3" // { dependencies = [ sources."isarray-2.0.1" ]; }) sources."has-cors-1.1.0" + sources."has-symbols-1.0.3" sources."hat-0.0.3" - sources."http-errors-1.8.1" + sources."http-errors-2.0.0" sources."http-signature-1.2.0" sources."iconv-lite-0.4.24" sources."ieee754-1.2.1" @@ -117171,19 +117656,23 @@ in sources."mkdirp-classic-0.5.3" (sources."morgan-1.10.0" // { dependencies = [ - sources."depd-2.0.0" + sources."on-finished-2.3.0" ]; }) sources."ms-2.0.0" (sources."multiparty-4.2.3" // { dependencies = [ + sources."depd-1.1.2" + sources."http-errors-1.8.1" sources."safe-buffer-5.2.1" + sources."statuses-1.5.0" ]; }) sources."negotiator-0.6.3" sources."normalize-path-3.0.0" sources."oauth-sign-0.9.0" - sources."on-finished-2.3.0" + sources."object-inspect-1.12.0" + sources."on-finished-2.4.1" sources."on-headers-1.0.2" sources."once-1.4.0" sources."options-0.0.6" @@ -117213,7 +117702,7 @@ in sources."psl-1.8.0" sources."pump-3.0.0" sources."punycode-2.1.1" - sources."qs-6.9.7" + sources."qs-6.10.3" sources."queue-microtask-1.2.3" sources."queue-tick-1.0.0" sources."random-access-file-2.2.1" @@ -117222,7 +117711,7 @@ in sources."random-iterate-1.0.1" sources."randombytes-2.1.0" sources."range-parser-1.2.1" - sources."raw-body-2.4.3" + sources."raw-body-2.5.1" sources."re-emitter-1.1.4" sources."read-torrent-1.3.1" sources."readable-stream-3.6.0" @@ -117239,21 +117728,22 @@ in sources."safer-buffer-2.1.2" (sources."send-0.17.2" // { dependencies = [ + sources."depd-1.1.2" + sources."destroy-1.0.4" + sources."http-errors-1.8.1" sources."ms-2.1.3" + sources."on-finished-2.3.0" + sources."statuses-1.5.0" ]; }) (sources."serve-static-1.15.0" // { dependencies = [ - sources."depd-2.0.0" - sources."destroy-1.2.0" - sources."http-errors-2.0.0" sources."ms-2.1.3" - sources."on-finished-2.4.1" sources."send-0.18.0" - sources."statuses-2.0.1" ]; }) sources."setprototypeof-1.2.0" + sources."side-channel-1.0.4" sources."simple-concat-1.0.1" sources."simple-get-2.8.2" (sources."simple-peer-6.4.4" // { @@ -117293,7 +117783,7 @@ in }) sources."speedometer-0.1.4" sources."sshpk-1.17.0" - sources."statuses-1.5.0" + sources."statuses-2.0.1" (sources."string2compact-1.3.2" // { dependencies = [ sources."ipaddr.js-2.0.1" @@ -117354,10 +117844,10 @@ in pkg = nodeEnv.buildNodePackage { name = "pkg"; packageName = "pkg"; - version = "5.5.2"; + version = "5.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/pkg/-/pkg-5.5.2.tgz"; - sha512 = "pD0UB2ud01C6pVv2wpGsTYJrXI/bnvGRYvMLd44wFzA1p+A2jrlTGFPAYa7YEYzmitXhx23PqalaG1eUEnSwcA=="; + url = "https://registry.npmjs.org/pkg/-/pkg-5.6.0.tgz"; + sha512 = "mHrAVSQWmHA41RnUmRpC7pK9lNnMfdA16CF3cqOI22a8LZxOQzF7M8YWtA2nfs+d7I0MTDXOtkDsAsFXeCpYjg=="; }; dependencies = [ sources."@babel/helper-validator-identifier-7.16.7" @@ -117424,7 +117914,7 @@ in sources."github-from-package-0.0.0" sources."glob-parent-5.1.2" sources."globby-11.1.0" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."has-1.0.3" sources."has-flag-4.0.0" sources."has-unicode-2.0.1" @@ -117470,7 +117960,7 @@ in sources."path-parse-1.0.7" sources."path-type-4.0.0" sources."picomatch-2.3.1" - sources."pkg-fetch-3.2.6" + sources."pkg-fetch-3.3.0" sources."prebuild-install-6.1.4" sources."prelude-ls-1.1.2" sources."process-nextick-args-2.0.1" @@ -117645,7 +118135,7 @@ in sources."git-sha1-0.1.2" sources."glob-7.2.0" sources."glob-parent-5.1.2" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."has-1.0.3" sources."has-flag-4.0.0" sources."http-errors-2.0.0" @@ -117774,10 +118264,10 @@ in pnpm = nodeEnv.buildNodePackage { name = "pnpm"; packageName = "pnpm"; - version = "6.32.3"; + version = "6.32.4"; src = fetchurl { - url = "https://registry.npmjs.org/pnpm/-/pnpm-6.32.3.tgz"; - sha512 = "lMQgROSwiUA+kt+suAPinjNwqevS1Iz0rppWNZ3jHhzeP07RFRQ+Ksai2OlAnM+YjlbHT9niQ4ICBVSqcdQ04w=="; + url = "https://registry.npmjs.org/pnpm/-/pnpm-6.32.4.tgz"; + sha512 = "rOG+VpOzs6g/MR5HWc8KTlLAx3ljdRJCMQwSg1DE/hzAaqF/Y2zIHH0u6dZw/XnRb9w1U8rOs9MJT9jMt7e+Qw=="; }; buildInputs = globalBuildInputs; meta = { @@ -117801,7 +118291,7 @@ in sources."commander-2.11.0" sources."file-or-stdin-1.0.2" sources."get-stdin-5.0.1" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."inspect-with-kind-1.0.5" sources."kind-of-6.0.3" sources."poor-mans-t-sql-formatter-1.6.10" @@ -117826,7 +118316,7 @@ in sha512 = "lg6eITwYe9v6Hr5CncVbK70SoioNQIq81nsaG86ev5hAidQvmOeETBqs7jm43K2F5/Ley3ytDtriImV6TpNiSg=="; }; dependencies = [ - sources."nanoid-3.3.1" + sources."nanoid-3.3.2" sources."picocolors-1.0.0" sources."source-map-js-1.0.2" ]; @@ -117875,7 +118365,7 @@ in sources."get-stdin-9.0.0" sources."glob-parent-5.1.2" sources."globby-12.2.0" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."ignore-5.2.0" sources."is-binary-path-2.1.0" sources."is-extglob-2.1.1" @@ -117891,7 +118381,7 @@ in sources."picocolors-1.0.0" sources."picomatch-2.3.1" sources."pify-2.3.0" - sources."postcss-load-config-3.1.3" + sources."postcss-load-config-3.1.4" sources."postcss-reporter-7.0.5" sources."pretty-hrtime-1.0.3" sources."queue-microtask-1.2.3" @@ -118009,10 +118499,10 @@ in prettier = nodeEnv.buildNodePackage { name = "prettier"; packageName = "prettier"; - version = "2.6.1"; + version = "2.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/prettier/-/prettier-2.6.1.tgz"; - sha512 = "8UVbTBYGwN37Bs9LERmxCPjdvPxlEowx2urIL6urHzdb3SDq4B/Z6xLFCblrSnE4iKWcS6ziJ3aOYrc1kz/E2A=="; + url = "https://registry.npmjs.org/prettier/-/prettier-2.6.2.tgz"; + sha512 = "PkUpF+qoXTqhOeWL9fu7As8LXsIUZ1WYaJiY/a7McAQzxjk82OF0tibkFXVCDImZtWxbvojFjerkiLb0/q8mew=="; }; buildInputs = globalBuildInputs; meta = { @@ -118042,7 +118532,7 @@ in sources."minimist-1.2.6" sources."nanolru-1.0.0" sources."path-parse-1.0.7" - sources."prettier-2.6.1" + sources."prettier-2.6.2" sources."resolve-1.22.0" sources."supports-color-8.1.1" sources."supports-preserve-symlinks-flag-1.0.0" @@ -118084,13 +118574,13 @@ in prisma = nodeEnv.buildNodePackage { name = "prisma"; packageName = "prisma"; - version = "3.11.1"; + version = "3.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/prisma/-/prisma-3.11.1.tgz"; - sha512 = "aYn8bQwt1xwR2oSsVNHT4PXU7EhsThIwmpNB/MNUaaMx5OPLTro6VdNJe/sJssXFLxhamfWeMjwmpXjljo6xkg=="; + url = "https://registry.npmjs.org/prisma/-/prisma-3.12.0.tgz"; + sha512 = "ltCMZAx1i0i9xuPM692Srj8McC665h6E5RqJom999sjtVSccHSD8Z+HSdBN2183h9PJKvC5dapkn78dd0NWMBg=="; }; dependencies = [ - sources."@prisma/engines-3.11.1-1.1a2506facaf1a4727b7c26850735e88ec779dee9" + sources."@prisma/engines-3.12.0-37.22b822189f46ef0dc5c5b503368d1bee01213980" ]; buildInputs = globalBuildInputs; meta = { @@ -118105,31 +118595,16 @@ in "@prisma/language-server" = nodeEnv.buildNodePackage { name = "_at_prisma_slash_language-server"; packageName = "@prisma/language-server"; - version = "3.11.0"; + version = "3.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/@prisma/language-server/-/language-server-3.11.0.tgz"; - sha512 = "gH48Ytf2EOtKAM2uDGbGwh/Y3gHIsHigV4nBbnsodbCZpirbbWXxO/L5+sY1nSeU49wnd6GUcQ7dqZCMW+bcaQ=="; + url = "https://registry.npmjs.org/@prisma/language-server/-/language-server-3.12.0.tgz"; + sha512 = "YP22QXvdwCHKmYObWJzmHgFJKJ/g4NDhgJ22vfcOYVRIqu4PanK8XyBtjiKqj4SJMkg1QjhxWkdH+KSA6wQszA=="; }; dependencies = [ - sources."@prisma/prisma-fmt-wasm-3.11.0-48.b371888aaf8f51357c7457d836b86d12da91658b" + sources."@prisma/prisma-fmt-wasm-3.12.0-37.22b822189f46ef0dc5c5b503368d1bee01213980" sources."@types/js-levenshtein-1.1.1" - sources."anymatch-3.1.2" - sources."binary-extensions-2.2.0" - sources."braces-3.0.2" - sources."chokidar-3.5.3" - sources."fill-range-7.0.1" - sources."fsevents-2.3.2" - sources."glob-parent-5.1.2" - sources."is-binary-path-2.1.0" - sources."is-extglob-2.1.1" - sources."is-glob-4.0.3" - sources."is-number-7.0.0" sources."js-levenshtein-1.1.6" sources."klona-2.0.5" - sources."normalize-path-3.0.0" - sources."picomatch-2.3.1" - sources."readdirp-3.6.0" - sources."to-regex-range-5.0.1" sources."vscode-jsonrpc-6.0.0" sources."vscode-languageserver-7.0.0" sources."vscode-languageserver-protocol-3.16.0" @@ -118138,7 +118613,7 @@ in ]; buildInputs = globalBuildInputs; meta = { - description = "Implementation of a language server in Node."; + description = "Prisma Language Server"; homepage = "https://github.com/prisma/language-tools#readme"; license = "Apache-2.0"; }; @@ -118299,7 +118774,7 @@ in sources."glob-7.1.7" ]; }) - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."has-1.0.3" (sources."hash-base-3.1.0" // { dependencies = [ @@ -118562,7 +119037,7 @@ in sources."get-intrinsic-1.1.1" sources."get-stream-4.1.0" sources."got-9.6.0" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."has-1.0.3" sources."has-symbols-1.0.3" sources."http-cache-semantics-4.1.0" @@ -118581,7 +119056,7 @@ in sources."lowercase-keys-1.0.1" sources."mimic-response-1.0.1" sources."minimist-1.2.6" - sources."moment-2.29.1" + sources."moment-2.29.2" sources."ms-2.1.2" sources."node-abort-controller-3.0.1" sources."normalize-url-4.5.1" @@ -118631,10 +119106,10 @@ in pyright = nodeEnv.buildNodePackage { name = "pyright"; packageName = "pyright"; - version = "1.1.233"; + version = "1.1.235"; src = fetchurl { - url = "https://registry.npmjs.org/pyright/-/pyright-1.1.233.tgz"; - sha512 = "qjyKJd6mfXLwaBls4Ww0CmML+K2gA4NnTelxGktLC3JQv7ioWU7lmiQ1KSr1BnmwuuTfsaJSDN3f+hUf9YPfWg=="; + url = "https://registry.npmjs.org/pyright/-/pyright-1.1.235.tgz"; + sha512 = "eW40mxHo8WE7WHoBzFfyrH0lQ9nP5rTM5XKvkBgaYjhVafh4MmQeaEm8LmYGN2vUq2//YFLVprvA+U6u+v9i3g=="; }; buildInputs = globalBuildInputs; meta = { @@ -118649,10 +119124,10 @@ in quicktype = nodeEnv.buildNodePackage { name = "quicktype"; packageName = "quicktype"; - version = "15.0.260"; + version = "15.0.261"; src = fetchurl { - url = "https://registry.npmjs.org/quicktype/-/quicktype-15.0.260.tgz"; - sha512 = "OYP77enVz2UkcdDqVFc2AcFGYjk5/ENGYZHmSEY5Oy6Y2xVatlHUnrScddEkI+xJxSfYS6UXSH8oOTW7mEOiEw=="; + url = "https://registry.npmjs.org/quicktype/-/quicktype-15.0.261.tgz"; + sha512 = "y2Se/GFGSeFNfON7X0MEJO8K+Lm23hWEZs5UMP9dVy3ShSYng6HTVw1YmqreUwGCLRGn4jD9TjNB1oqyaT3NBw=="; }; dependencies = [ sources."@mark.probst/typescript-json-schema-0.32.0" @@ -118745,7 +119220,7 @@ in sources."mimic-fn-2.1.0" sources."minimatch-3.1.2" sources."minimist-1.2.6" - sources."moment-2.29.1" + sources."moment-2.29.2" sources."nice-try-1.0.5" sources."node-fetch-2.6.7" sources."npm-run-path-2.0.2" @@ -118839,7 +119314,7 @@ in sources."pako-0.2.9" ]; }) - sources."urijs-1.19.10" + sources."urijs-1.19.11" sources."util-deprecate-1.0.2" sources."uuid-3.4.0" sources."vlq-0.2.3" @@ -118897,7 +119372,7 @@ in sources."cycle-1.0.3" sources."deep-equal-2.0.5" sources."define-properties-1.1.3" - sources."es-abstract-1.19.1" + sources."es-abstract-1.19.2" sources."es-get-iterator-1.1.2" sources."es-to-primitive-1.2.1" sources."escape-string-regexp-1.0.5" @@ -118924,10 +119399,10 @@ in sources."is-date-object-1.0.5" sources."is-map-2.0.2" sources."is-negative-zero-2.0.2" - sources."is-number-object-1.0.6" + sources."is-number-object-1.0.7" sources."is-regex-1.1.4" sources."is-set-2.0.2" - sources."is-shared-array-buffer-1.0.1" + sources."is-shared-array-buffer-1.0.2" sources."is-string-1.0.7" sources."is-symbol-1.0.4" sources."is-typed-array-1.1.8" @@ -119324,7 +119799,7 @@ in sources."camel-case-3.0.0" sources."camelcase-5.3.1" sources."caniuse-api-3.0.0" - sources."caniuse-lite-1.0.30001320" + sources."caniuse-lite-1.0.30001325" sources."case-sensitive-paths-webpack-plugin-2.4.0" sources."caw-2.0.1" sources."chalk-2.4.2" @@ -119554,7 +120029,7 @@ in sources."duplexify-3.7.1" sources."ee-first-1.1.1" sources."ejs-2.7.4" - sources."electron-to-chromium-1.4.96" + sources."electron-to-chromium-1.4.103" (sources."elliptic-6.5.4" // { dependencies = [ sources."bn.js-4.12.0" @@ -119585,7 +120060,7 @@ in sources."entities-2.2.0" sources."errno-0.1.8" sources."error-ex-1.3.2" - sources."es-abstract-1.19.1" + sources."es-abstract-1.19.2" sources."es-to-primitive-1.2.1" sources."escalade-3.1.1" sources."escape-html-1.0.3" @@ -119724,7 +120199,7 @@ in sources."pify-3.0.0" ]; }) - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."gud-1.0.0" sources."gunzip-maybe-1.4.2" sources."gzip-size-5.1.1" @@ -119865,7 +120340,7 @@ in sources."is-natural-number-4.0.1" sources."is-negative-zero-2.0.2" sources."is-number-7.0.0" - sources."is-number-object-1.0.6" + sources."is-number-object-1.0.7" sources."is-obj-2.0.0" sources."is-object-1.0.2" sources."is-path-cwd-2.2.0" @@ -119876,7 +120351,7 @@ in sources."is-regex-1.1.4" sources."is-resolvable-1.1.0" sources."is-retry-allowed-1.2.0" - sources."is-shared-array-buffer-1.0.1" + sources."is-shared-array-buffer-1.0.2" sources."is-stream-1.1.0" sources."is-string-1.0.7" sources."is-symbol-1.0.4" @@ -120213,7 +120688,7 @@ in sources."postcss-value-parser-3.3.1" ]; }) - sources."postcss-selector-parser-6.0.9" + sources."postcss-selector-parser-6.0.10" (sources."postcss-svgo-4.0.3" // { dependencies = [ sources."postcss-value-parser-3.3.1" @@ -120290,8 +120765,8 @@ in (sources."renderkid-2.0.7" // { dependencies = [ sources."ansi-regex-2.1.1" - sources."css-select-4.2.1" - sources."css-what-5.1.0" + sources."css-select-4.3.0" + sources."css-what-6.1.0" sources."dom-serializer-1.3.2" sources."domelementtype-2.2.0" sources."domutils-2.8.0" @@ -120789,7 +121264,7 @@ in sources."esprima-3.1.3" sources."esprima-fb-13001.1001.0-dev-harmony-fb" sources."glob-5.0.15" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."iconv-lite-0.4.24" sources."inflight-1.0.6" sources."inherits-2.0.4" @@ -120926,10 +121401,10 @@ in redoc-cli = nodeEnv.buildNodePackage { name = "redoc-cli"; packageName = "redoc-cli"; - version = "0.13.9"; + version = "0.13.10"; src = fetchurl { - url = "https://registry.npmjs.org/redoc-cli/-/redoc-cli-0.13.9.tgz"; - sha512 = "RoUonPhAQeEpg6lCJyi7Oha5iYPNFhAN2lFWzc3biLigJCTh6JDwPHlomfLMrwkri6bz8W3vVEtEqQ1RLaxMJQ=="; + url = "https://registry.npmjs.org/redoc-cli/-/redoc-cli-0.13.10.tgz"; + sha512 = "txYchKO6rpXJapD6Kg/Vd6mEg3ZJDz+TLCev8dvj8cGQxiSZDJ/V/x3uRfg03EH5FrC71kHC4ETI97MUlye9NQ=="; }; dependencies = [ sources."@babel/code-frame-7.16.7" @@ -120958,7 +121433,7 @@ in sources."@emotion/unitless-0.7.5" sources."@exodus/schemasafe-1.0.0-rc.6" sources."@redocly/ajv-8.6.4" - sources."@redocly/openapi-core-1.0.0-beta.90" + sources."@redocly/openapi-core-1.0.0-beta.93" sources."@redocly/react-dropdown-aria-2.0.12" sources."@types/json-schema-7.0.11" sources."@types/node-14.18.12" @@ -121132,7 +121607,7 @@ in sources."perfect-scrollbar-1.5.5" sources."picomatch-2.3.1" sources."pluralize-8.0.0" - sources."polished-4.1.4" + sources."polished-4.2.1" sources."postcss-value-parser-4.2.0" sources."prismjs-1.27.0" sources."process-0.11.10" @@ -121161,7 +121636,7 @@ in ]; }) sources."readdirp-3.6.0" - (sources."redoc-2.0.0-rc.65" // { + (sources."redoc-2.0.0-rc.66" // { dependencies = [ sources."path-browserify-1.0.1" ]; @@ -121285,7 +121760,7 @@ in sources."figures-3.2.0" sources."find-up-2.1.0" sources."function-bind-1.1.1" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."has-1.0.3" sources."has-flag-4.0.0" sources."hosted-git-info-2.8.9" @@ -121513,7 +121988,7 @@ in sources."glob-parent-5.1.2" sources."global-dirs-3.0.0" sources."got-9.6.0" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."has-flag-4.0.0" sources."has-yarn-2.1.0" sources."highlight.js-10.7.2" @@ -121767,14 +122242,14 @@ in sources."@types/json-schema-7.0.11" sources."@types/node-14.17.34" sources."@types/vscode-1.63.2" - sources."@typescript-eslint/eslint-plugin-5.16.0" - sources."@typescript-eslint/parser-5.16.0" - sources."@typescript-eslint/scope-manager-5.16.0" - sources."@typescript-eslint/type-utils-5.16.0" - sources."@typescript-eslint/types-5.16.0" - sources."@typescript-eslint/typescript-estree-5.16.0" - sources."@typescript-eslint/utils-5.16.0" - sources."@typescript-eslint/visitor-keys-5.16.0" + sources."@typescript-eslint/eslint-plugin-5.18.0" + sources."@typescript-eslint/parser-5.18.0" + sources."@typescript-eslint/scope-manager-5.18.0" + sources."@typescript-eslint/type-utils-5.18.0" + sources."@typescript-eslint/types-5.18.0" + sources."@typescript-eslint/typescript-estree-5.18.0" + sources."@typescript-eslint/utils-5.18.0" + sources."@typescript-eslint/visitor-keys-5.18.0" sources."@vscode/test-electron-2.1.3" sources."acorn-8.7.0" sources."acorn-jsx-5.3.2" @@ -121809,7 +122284,7 @@ in sources."chainsaw-0.1.0" sources."chalk-4.1.2" sources."cheerio-1.0.0-rc.10" - sources."cheerio-select-1.5.0" + sources."cheerio-select-1.6.0" sources."chownr-1.1.4" sources."cliui-7.0.4" sources."code-point-at-1.1.0" @@ -121821,14 +122296,14 @@ in sources."console-control-strings-1.1.0" sources."core-util-is-1.0.3" sources."cross-spawn-7.0.3" - sources."css-select-4.2.1" - sources."css-what-5.1.0" - sources."d3-7.3.0" - sources."d3-array-3.1.1" + sources."css-select-4.3.0" + sources."css-what-6.1.0" + sources."d3-7.4.2" + sources."d3-array-3.1.4" sources."d3-axis-3.0.0" sources."d3-brush-3.0.0" sources."d3-chord-3.0.1" - sources."d3-color-3.0.1" + sources."d3-color-3.1.0" sources."d3-contour-3.0.1" sources."d3-delaunay-6.0.2" sources."d3-dispatch-3.0.1" @@ -121854,7 +122329,7 @@ in sources."d3-zoom-2.0.0" ]; }) - sources."d3-hierarchy-3.1.1" + sources."d3-hierarchy-3.1.2" sources."d3-interpolate-3.0.1" sources."d3-path-3.0.1" sources."d3-polygon-3.0.1" @@ -121958,7 +122433,7 @@ in sources."glob-parent-5.1.2" sources."globals-13.13.0" sources."globby-11.1.0" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."has-1.0.3" sources."has-flag-4.0.0" sources."has-symbols-1.0.3" @@ -122153,7 +122628,7 @@ in dependencies = [ sources."find-up-5.0.0" sources."locate-path-6.0.0" - sources."nanoid-3.3.1" + sources."nanoid-3.3.2" sources."p-limit-3.1.0" sources."p-locate-5.0.0" sources."path-exists-4.0.0" @@ -122272,10 +122747,10 @@ in sass = nodeEnv.buildNodePackage { name = "sass"; packageName = "sass"; - version = "1.49.9"; + version = "1.49.11"; src = fetchurl { - url = "https://registry.npmjs.org/sass/-/sass-1.49.9.tgz"; - sha512 = "YlYWkkHP9fbwaFRZQRXgDi3mXZShslVmmo+FVK3kHLUELHHEYrCmL1x6IUjC7wLS6VuJSAFXRQS/DxdsC4xL1A=="; + url = "https://registry.npmjs.org/sass/-/sass-1.49.11.tgz"; + sha512 = "wvS/geXgHUGs6A/4ud5BFIWKO1nKd7wYIGimDk4q4GFkJicILActpv9ueMT4eRGSsp1BdKHuw1WwAHXbhsJELQ=="; }; dependencies = [ sources."anymatch-3.1.2" @@ -122452,10 +122927,10 @@ in serverless = nodeEnv.buildNodePackage { name = "serverless"; packageName = "serverless"; - version = "3.10.0"; + version = "3.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/serverless/-/serverless-3.10.0.tgz"; - sha512 = "2bRpqJFrejlN0hIrTnFQKV/MejUF8lZSRfULBqdUG4emwrUiTzZSerYdUVifHvhvIEcno6GeTbMs1xwQrCb2fw=="; + url = "https://registry.npmjs.org/serverless/-/serverless-3.11.0.tgz"; + sha512 = "v4yfKOK46ri12TkiuNfUrLo+PrfR4BI9WkrUxPF66Cst7Kdu1RH0qiCA6Gxpibauox++gnbxCdgoJ+XKw9nv1g=="; }; dependencies = [ sources."2-thenable-1.0.0" @@ -122464,7 +122939,7 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@serverless/dashboard-plugin-6.2.0" + sources."@serverless/dashboard-plugin-6.2.1" sources."@serverless/event-mocks-1.1.1" (sources."@serverless/platform-client-4.3.2" // { dependencies = [ @@ -122481,8 +122956,9 @@ in sources."@tokenizer/token-0.3.0" sources."@types/cacheable-request-6.0.2" sources."@types/http-cache-semantics-4.0.1" + sources."@types/json-buffer-3.0.0" sources."@types/keyv-3.1.4" - sources."@types/lodash-4.14.180" + sources."@types/lodash-4.14.181" sources."@types/node-17.0.23" sources."@types/responselike-1.0.0" sources."adm-zip-0.5.9" @@ -122509,7 +122985,7 @@ in sources."async-3.2.3" sources."asynckit-0.4.0" sources."at-least-node-1.0.0" - (sources."aws-sdk-2.1101.0" // { + (sources."aws-sdk-2.1108.0" // { dependencies = [ sources."buffer-4.9.2" sources."ieee754-1.1.13" @@ -122555,9 +123031,9 @@ in sources."chokidar-3.5.3" sources."chownr-2.0.0" sources."ci-info-3.3.0" - sources."cli-color-2.0.1" + sources."cli-color-2.0.2" sources."cli-cursor-3.1.0" - sources."cli-progress-footer-2.3.0" + sources."cli-progress-footer-2.3.1" sources."cli-spinners-2.6.1" (sources."cli-sprintf-format-1.1.1" // { dependencies = [ @@ -122572,6 +123048,7 @@ in sources."combined-stream-1.0.8" sources."commander-2.20.3" sources."component-emitter-1.3.0" + sources."compress-brotli-1.3.6" (sources."compress-commons-4.1.1" // { dependencies = [ sources."readable-stream-3.6.0" @@ -122585,7 +123062,7 @@ in }) sources."cookiejar-2.1.3" sources."core-util-is-1.0.3" - sources."crc-32-1.2.1" + sources."crc-32-1.2.2" (sources."crc32-stream-4.0.2" // { dependencies = [ sources."readable-stream-3.6.0" @@ -122665,7 +123142,6 @@ in sources."essentials-1.2.0" sources."event-emitter-0.3.5" sources."events-1.1.1" - sources."exit-on-epipe-1.0.1" sources."ext-1.6.0" sources."ext-list-2.2.2" sources."ext-name-5.0.0" @@ -122701,7 +123177,7 @@ in sources."glob-parent-5.1.2" sources."globby-11.1.0" sources."got-11.8.3" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."graphlib-2.1.8" sources."has-1.0.3" sources."has-flag-3.0.0" @@ -122749,9 +123225,9 @@ in }) sources."json-schema-traverse-1.0.0" sources."jsonfile-6.1.0" - sources."jszip-3.7.1" + sources."jszip-3.9.0" sources."jwt-decode-2.2.0" - sources."keyv-4.1.1" + sources."keyv-4.2.1" sources."lazystream-1.0.1" sources."lie-3.3.0" sources."lodash-4.17.21" @@ -122819,7 +123295,6 @@ in sources."pify-2.3.0" sources."pinkie-2.0.4" sources."pinkie-promise-2.0.1" - sources."printj-1.3.1" sources."process-nextick-args-2.0.1" sources."process-utils-4.0.0" sources."promise-queue-2.2.5" @@ -122856,7 +123331,7 @@ in sources."shebang-regex-1.0.0" sources."side-channel-1.0.4" sources."signal-exit-3.0.7" - sources."simple-git-3.4.0" + sources."simple-git-3.5.0" sources."slash-3.0.0" sources."sort-keys-1.1.2" sources."sort-keys-length-1.0.1" @@ -123270,7 +123745,7 @@ in sources."for-in-1.0.2" sources."fragment-cache-0.2.1" sources."get-value-2.0.6" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."graceful-readlink-1.0.1" sources."has-value-1.0.0" (sources."has-values-1.0.0" // { @@ -123575,10 +124050,10 @@ in snyk = nodeEnv.buildNodePackage { name = "snyk"; packageName = "snyk"; - version = "1.884.0"; + version = "1.895.0"; src = fetchurl { - url = "https://registry.npmjs.org/snyk/-/snyk-1.884.0.tgz"; - sha512 = "lQtXRoi0mgTsrjzTcKNbpec+q4ai8rhls1FOcr2ZBTe7V7mKTGXZ9yk6DY2VXRKyboL8zvV3rIrzm+l85n5yIg=="; + url = "https://registry.npmjs.org/snyk/-/snyk-1.895.0.tgz"; + sha512 = "8/1P6Hx5aiDzTYKCC+yPg5ZhKf4gflodohaQc8/852ftUkCZ58UJopaYkiBTXbN51OTLRIK/TLGfPY0DpVUe+w=="; }; buildInputs = globalBuildInputs; meta = { @@ -123874,7 +124349,7 @@ in sources."binary-search-1.3.6" sources."binary-search-bounds-2.0.5" sources."bindings-1.5.0" - sources."bipf-1.5.5" + sources."bipf-1.6.1" sources."blake2s-1.1.0" sources."brace-expansion-1.1.11" sources."braces-1.8.5" @@ -123980,7 +124455,7 @@ in }) sources."epidemic-broadcast-trees-7.0.0" sources."errno-0.1.8" - sources."es-abstract-1.19.1" + sources."es-abstract-1.19.2" (sources."es-get-iterator-1.1.2" // { dependencies = [ sources."isarray-2.0.5" @@ -124058,7 +124533,7 @@ in sources."glob-parent-2.0.0" sources."globby-4.1.0" sources."gossip-query-2.0.2" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."has-1.0.3" sources."has-ansi-2.0.0" sources."has-bigints-1.0.1" @@ -124132,7 +124607,7 @@ in sources."is-map-2.0.2" sources."is-negative-zero-2.0.2" sources."is-number-2.1.0" - sources."is-number-object-1.0.6" + sources."is-number-object-1.0.7" sources."is-options-1.0.2" (sources."is-plain-object-2.0.4" // { dependencies = [ @@ -124143,7 +124618,7 @@ in sources."is-primitive-2.0.0" sources."is-regex-1.1.4" sources."is-set-2.0.2" - sources."is-shared-array-buffer-1.0.1" + sources."is-shared-array-buffer-1.0.2" sources."is-string-1.0.7" sources."is-symbol-1.0.4" sources."is-typed-array-1.1.8" @@ -124257,7 +124732,7 @@ in sources."next-tick-1.1.0" sources."nice-try-1.0.5" sources."node-bindgen-loader-1.0.1" - sources."node-gyp-build-4.3.0" + sources."node-gyp-build-4.4.0" sources."non-private-ip-2.2.0" sources."normalize-path-2.1.1" sources."normalize-uri-1.1.3" @@ -124838,7 +125313,7 @@ in sources."async-1.5.2" sources."async-limiter-1.0.1" sources."asynckit-0.4.0" - (sources."aws-sdk-2.1101.0" // { + (sources."aws-sdk-2.1108.0" // { dependencies = [ sources."uuid-3.3.2" ]; @@ -124866,9 +125341,9 @@ in sources."bindings-1.2.1" sources."blob-0.0.5" sources."bluebird-2.11.0" - (sources."body-parser-1.19.2" // { + (sources."body-parser-1.20.0" // { dependencies = [ - sources."qs-6.9.7" + sources."qs-6.10.3" ]; }) sources."boom-2.10.1" @@ -124931,11 +125406,7 @@ in }) sources."cookie-signature-1.0.6" sources."cookiejar-2.1.3" - (sources."cookies-0.8.0" // { - dependencies = [ - sources."depd-2.0.0" - ]; - }) + sources."cookies-0.8.0" sources."core-js-2.6.12" sources."core-util-is-1.0.2" sources."cors-2.8.5" @@ -124944,8 +125415,10 @@ in sources."csrf-3.1.0" (sources."csurf-1.11.0" // { dependencies = [ + sources."depd-1.1.2" sources."http-errors-1.7.3" sources."setprototypeof-1.1.1" + sources."statuses-1.5.0" sources."toidentifier-1.0.0" ]; }) @@ -124963,9 +125436,9 @@ in sources."decamelize-1.2.0" sources."deep-extend-0.4.2" sources."delayed-stream-1.0.0" - sources."depd-1.1.2" + sources."depd-2.0.0" sources."deref-0.6.4" - sources."destroy-1.0.4" + sources."destroy-1.2.0" sources."dicer-0.2.5" sources."doctypes-1.1.0" sources."drange-1.1.1" @@ -125010,11 +125483,17 @@ in }) (sources."express-4.17.3" // { dependencies = [ + sources."body-parser-1.19.2" sources."cookie-0.4.2" + sources."depd-1.1.2" + sources."http-errors-1.8.1" + sources."on-finished-2.3.0" sources."proxy-addr-2.0.7" sources."qs-6.9.7" + sources."raw-body-2.4.3" sources."safe-buffer-5.2.1" sources."serve-static-1.14.2" + sources."statuses-1.5.0" ]; }) (sources."express-validator-2.21.0" // { @@ -125030,7 +125509,12 @@ in sources."fast-deep-equal-3.1.3" sources."fast-json-stable-stringify-2.1.0" sources."fd-slicer-1.1.0" - sources."finalhandler-1.1.2" + (sources."finalhandler-1.1.2" // { + dependencies = [ + sources."on-finished-2.3.0" + sources."statuses-1.5.0" + ]; + }) sources."find-up-3.0.0" sources."follow-redirects-1.14.9" sources."forever-agent-0.6.1" @@ -125056,7 +125540,7 @@ in sources."debug-3.2.7" ]; }) - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."graphlib-2.1.8" sources."har-schema-2.0.0" sources."har-validator-2.0.6" @@ -125079,7 +125563,7 @@ in }) sources."hoek-2.16.3" sources."hosted-git-info-2.8.9" - sources."http-errors-1.8.1" + sources."http-errors-2.0.0" (sources."http-proxy-1.18.1" // { dependencies = [ sources."eventemitter3-4.0.7" @@ -125209,7 +125693,7 @@ in sources."minimist-1.2.6" sources."minitouch-prebuilt-1.2.0" sources."mkdirp-0.5.6" - sources."moment-2.29.1" + sources."moment-2.29.2" sources."ms-2.1.3" sources."multer-1.4.4" sources."mustache-2.3.2" @@ -125231,7 +125715,7 @@ in sources."object-assign-4.1.1" sources."object-hash-0.3.0" sources."object-inspect-1.12.0" - sources."on-finished-2.3.0" + sources."on-finished-2.4.1" sources."on-headers-1.0.2" sources."once-1.4.0" (sources."openid-2.0.10" // { @@ -125309,7 +125793,7 @@ in sources."randexp-0.4.9" sources."random-bytes-1.0.0" sources."range-parser-1.2.1" - sources."raw-body-2.4.3" + sources."raw-body-2.5.1" sources."read-pkg-1.1.0" (sources."read-pkg-up-1.0.1" // { dependencies = [ @@ -125360,7 +125844,15 @@ in sources."safer-buffer-2.1.2" sources."sax-1.2.1" sources."semver-5.7.1" - sources."send-0.17.2" + (sources."send-0.17.2" // { + dependencies = [ + sources."depd-1.1.2" + sources."destroy-1.0.4" + sources."http-errors-1.8.1" + sources."on-finished-2.3.0" + sources."statuses-1.5.0" + ]; + }) (sources."serve-favicon-2.5.0" // { dependencies = [ sources."ms-2.1.1" @@ -125369,12 +125861,7 @@ in }) (sources."serve-static-1.15.0" // { dependencies = [ - sources."depd-2.0.0" - sources."destroy-1.2.0" - sources."http-errors-2.0.0" - sources."on-finished-2.4.1" sources."send-0.18.0" - sources."statuses-2.0.1" ]; }) sources."set-blocking-2.0.0" @@ -125419,7 +125906,7 @@ in ]; }) sources."stack-trace-0.0.10" - sources."statuses-1.5.0" + sources."statuses-2.0.1" sources."stf-appstore-db-1.0.0" sources."stf-browser-db-1.0.2" sources."stf-device-db-1.2.0" @@ -125741,7 +126228,7 @@ in sources."minimatch-3.1.2" sources."minimist-options-4.1.0" sources."ms-2.1.2" - sources."nanoid-3.3.1" + sources."nanoid-3.3.2" sources."normalize-package-data-3.0.3" sources."normalize-path-3.0.0" sources."normalize-selector-0.2.0" @@ -125761,7 +126248,7 @@ in sources."postcss-media-query-parser-0.2.3" sources."postcss-resolve-nested-selector-0.1.1" sources."postcss-safe-parser-6.0.0" - sources."postcss-selector-parser-6.0.9" + sources."postcss-selector-parser-6.0.10" sources."postcss-value-parser-4.2.0" sources."punycode-2.1.1" sources."queue-microtask-1.2.3" @@ -125890,7 +126377,7 @@ in sources."fstream-1.0.12" sources."getpass-0.1.7" sources."glob-7.2.0" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."har-schema-2.0.0" sources."har-validator-5.1.5" sources."has-flag-3.0.0" @@ -126010,7 +126497,7 @@ in sources."fsevents-2.3.2" sources."glob-7.2.0" sources."glob-parent-5.1.2" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."import-fresh-3.3.0" sources."inflight-1.0.6" sources."inherits-2.0.4" @@ -126044,7 +126531,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.4" + sources."svelte-preprocess-4.10.5" sources."to-regex-range-5.0.1" sources."typescript-4.6.3" sources."wrappy-1.0.2" @@ -126097,7 +126584,7 @@ in sources."fsevents-2.3.2" sources."glob-7.2.0" sources."glob-parent-5.1.2" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."inflight-1.0.6" sources."inherits-2.0.4" sources."is-binary-path-2.1.0" @@ -126132,8 +126619,8 @@ in sources."source-map-0.7.3" sources."sourcemap-codec-1.4.8" sources."strip-indent-3.0.0" - sources."svelte-3.46.4" - sources."svelte-preprocess-4.10.4" + sources."svelte-3.46.6" + sources."svelte-preprocess-4.10.5" sources."svelte2tsx-0.5.6" sources."to-regex-range-5.0.1" sources."tslib-2.3.1" @@ -126185,9 +126672,9 @@ in sources."@trysound/sax-0.2.0" sources."boolbase-1.0.0" sources."commander-7.2.0" - sources."css-select-4.2.1" + sources."css-select-4.3.0" sources."css-tree-1.1.3" - sources."css-what-5.1.0" + sources."css-what-6.1.0" sources."csso-4.2.0" sources."dom-serializer-1.3.2" sources."domelementtype-2.2.0" @@ -126418,7 +126905,7 @@ in }) sources."global-dirs-0.1.1" sources."got-6.7.1" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" (sources."graphlib-2.1.8" // { dependencies = [ sources."lodash-4.17.21" @@ -126934,7 +127421,7 @@ in sources."merge2-1.4.1" sources."micromatch-4.0.5" sources."minimist-1.2.6" - sources."nanoid-3.3.1" + sources."nanoid-3.3.2" sources."normalize-path-3.0.0" sources."object-hash-2.2.0" sources."parent-module-1.0.1" @@ -126945,9 +127432,9 @@ in sources."picomatch-2.3.1" sources."postcss-8.4.12" sources."postcss-js-4.0.0" - sources."postcss-load-config-3.1.3" + sources."postcss-load-config-3.1.4" sources."postcss-nested-5.0.6" - sources."postcss-selector-parser-6.0.9" + sources."postcss-selector-parser-6.0.10" sources."postcss-value-parser-4.2.0" sources."queue-microtask-1.2.3" sources."quick-lru-5.1.1" @@ -127042,7 +127529,7 @@ in sources."mime-types-2.1.35" sources."minimist-1.2.6" sources."module-alias-2.2.2" - sources."moment-2.29.1" + sources."moment-2.29.2" sources."ms-2.1.2" sources."node-fetch-2.6.7" sources."oauth-sign-0.9.0" @@ -127110,7 +127597,7 @@ in }; dependencies = [ sources."node-addon-api-4.3.0" - sources."node-gyp-build-4.3.0" + sources."node-gyp-build-4.4.0" sources."q-1.5.1" sources."usb-1.9.2" ]; @@ -127144,7 +127631,7 @@ in sources."errno-0.1.8" sources."fs.realpath-1.0.0" sources."glob-7.2.0" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."inflight-1.0.6" sources."inherits-2.0.4" sources."isarray-1.0.0" @@ -127273,7 +127760,7 @@ in sources."get-intrinsic-1.1.1" sources."get-stdin-5.0.1" sources."glob-7.2.0" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."has-1.0.3" sources."has-flag-4.0.0" sources."has-symbols-1.0.3" @@ -127590,7 +128077,7 @@ in ]; }) sources."got-9.6.0" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."hard-rejection-2.1.0" sources."has-1.0.3" sources."has-flag-3.0.0" @@ -128064,7 +128551,7 @@ in sources."define-properties-1.1.3" sources."emoji-regex-6.5.1" sources."end-with-1.0.2" - sources."es-abstract-1.19.1" + sources."es-abstract-1.19.2" sources."es-to-primitive-1.2.1" sources."function-bind-1.1.1" sources."get-intrinsic-1.1.1" @@ -128079,9 +128566,9 @@ in sources."is-callable-1.2.4" sources."is-date-object-1.0.5" sources."is-negative-zero-2.0.2" - sources."is-number-object-1.0.6" + sources."is-number-object-1.0.7" sources."is-regex-1.1.4" - sources."is-shared-array-buffer-1.0.1" + sources."is-shared-array-buffer-1.0.2" sources."is-string-1.0.7" sources."is-symbol-1.0.4" sources."is-weakref-1.0.2" @@ -128174,7 +128661,7 @@ in sources."array-includes-3.1.4" sources."call-bind-1.0.2" sources."define-properties-1.1.3" - sources."es-abstract-1.19.1" + sources."es-abstract-1.19.2" sources."es-to-primitive-1.2.1" sources."function-bind-1.1.1" sources."get-intrinsic-1.1.1" @@ -128190,9 +128677,9 @@ in sources."is-capitalized-1.0.0" sources."is-date-object-1.0.5" sources."is-negative-zero-2.0.2" - sources."is-number-object-1.0.6" + sources."is-number-object-1.0.7" sources."is-regex-1.1.4" - sources."is-shared-array-buffer-1.0.1" + sources."is-shared-array-buffer-1.0.2" sources."is-string-1.0.7" sources."is-symbol-1.0.4" sources."is-weakref-1.0.2" @@ -128267,6 +128754,7 @@ in sources."@types/cookie-0.4.1" sources."@types/cors-2.8.12" 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/responselike-1.0.0" @@ -128323,7 +128811,7 @@ in sources."caseless-0.12.0" sources."chalk-4.1.2" sources."cheerio-1.0.0-rc.10" - sources."cheerio-select-1.5.0" + sources."cheerio-select-1.6.0" sources."chownr-1.1.4" sources."clone-response-1.0.2" sources."code-point-at-1.1.0" @@ -128332,6 +128820,7 @@ in sources."combined-stream-1.0.8" sources."commander-7.2.0" sources."component-emitter-1.3.0" + sources."compress-brotli-1.3.6" sources."concat-map-0.0.1" sources."console-control-strings-1.1.0" sources."content-disposition-0.5.3" @@ -128341,8 +128830,8 @@ in sources."core-js-3.21.1" sources."core-util-is-1.0.2" sources."cors-2.8.5" - sources."css-select-4.2.1" - sources."css-what-5.1.0" + sources."css-select-4.3.0" + sources."css-what-6.1.0" sources."dashdash-1.14.1" sources."debug-2.6.9" (sources."decompress-response-6.0.0" // { @@ -128378,7 +128867,7 @@ in }) sources."engine.io-parser-4.0.3" sources."entities-2.2.0" - sources."es-abstract-1.19.1" + sources."es-abstract-1.19.2" sources."es-to-primitive-1.2.1" sources."escape-html-1.0.3" sources."escape-string-regexp-1.0.5" @@ -128410,7 +128899,7 @@ in sources."getpass-0.1.7" sources."glob-7.2.0" sources."got-11.8.2" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."grapheme-splitter-1.0.4" sources."har-schema-2.0.0" sources."har-validator-5.1.5" @@ -128454,9 +128943,9 @@ in sources."is-fullwidth-code-point-1.0.0" sources."is-generator-function-1.0.10" sources."is-negative-zero-2.0.2" - sources."is-number-object-1.0.6" + sources."is-number-object-1.0.7" sources."is-regex-1.1.4" - sources."is-shared-array-buffer-1.0.1" + sources."is-shared-array-buffer-1.0.2" sources."is-string-1.0.7" sources."is-symbol-1.0.4" sources."is-typed-array-1.1.8" @@ -128480,7 +128969,7 @@ in }) sources."jwa-2.0.0" sources."jws-4.0.0" - sources."keyv-4.1.1" + sources."keyv-4.2.1" sources."ldap-filter-0.3.3" sources."ldapjs-2.3.1" sources."linkify-it-3.0.3" @@ -128740,6 +129229,7 @@ in sources."@types/cookie-0.4.1" sources."@types/cors-2.8.12" 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/responselike-1.0.0" @@ -128796,7 +129286,7 @@ in sources."caseless-0.12.0" sources."chalk-4.1.2" sources."cheerio-1.0.0-rc.10" - sources."cheerio-select-1.5.0" + sources."cheerio-select-1.6.0" sources."chownr-1.1.4" sources."clone-response-1.0.2" sources."code-point-at-1.1.0" @@ -128805,6 +129295,7 @@ in sources."combined-stream-1.0.8" sources."commander-7.2.0" sources."component-emitter-1.3.0" + sources."compress-brotli-1.3.6" sources."concat-map-0.0.1" sources."console-control-strings-1.1.0" sources."content-disposition-0.5.3" @@ -128814,8 +129305,8 @@ in sources."core-js-3.21.1" sources."core-util-is-1.0.2" sources."cors-2.8.5" - sources."css-select-4.2.1" - sources."css-what-5.1.0" + sources."css-select-4.3.0" + sources."css-what-6.1.0" sources."dashdash-1.14.1" sources."debug-2.6.9" (sources."decompress-response-6.0.0" // { @@ -128851,7 +129342,7 @@ in }) sources."engine.io-parser-4.0.3" sources."entities-2.2.0" - sources."es-abstract-1.19.1" + sources."es-abstract-1.19.2" sources."es-to-primitive-1.2.1" sources."escape-html-1.0.3" sources."escape-string-regexp-1.0.5" @@ -128883,7 +129374,7 @@ in sources."getpass-0.1.7" sources."glob-7.2.0" sources."got-11.8.2" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."grapheme-splitter-1.0.4" sources."har-schema-2.0.0" sources."har-validator-5.1.5" @@ -128927,9 +129418,9 @@ in sources."is-fullwidth-code-point-1.0.0" sources."is-generator-function-1.0.10" sources."is-negative-zero-2.0.2" - sources."is-number-object-1.0.6" + sources."is-number-object-1.0.7" sources."is-regex-1.1.4" - sources."is-shared-array-buffer-1.0.1" + sources."is-shared-array-buffer-1.0.2" sources."is-string-1.0.7" sources."is-symbol-1.0.4" sources."is-typed-array-1.1.8" @@ -128953,7 +129444,7 @@ in }) sources."jwa-2.0.0" sources."jws-4.0.0" - sources."keyv-4.1.1" + sources."keyv-4.2.1" sources."ldap-filter-0.3.3" sources."ldapjs-2.3.1" sources."linkify-it-3.0.3" @@ -129374,7 +129865,7 @@ in sources."getpass-0.1.7" sources."glob-7.2.0" sources."got-9.6.0" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."grapheme-splitter-1.0.4" sources."har-schema-2.0.0" sources."har-validator-5.1.5" @@ -129655,15 +130146,15 @@ in thelounge-theme-abyss = nodeEnv.buildNodePackage { name = "thelounge-theme-abyss"; packageName = "thelounge-theme-abyss"; - version = "2.0.2"; + version = "2.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/thelounge-theme-abyss/-/thelounge-theme-abyss-2.0.2.tgz"; - sha512 = "1TrJGKqrk+zltLhythNDfEScgt1FL8b1j+3+tPno1yN06vm3yn8dRQlNesMP52op5jX+xJqA5jBFQGMQYSS19g=="; + url = "https://registry.npmjs.org/thelounge-theme-abyss/-/thelounge-theme-abyss-2.0.3.tgz"; + sha512 = "Kx0eqblXlz3aRN/XNxcwQXN5L2K2QIgmXdn6OJKBcwXCIBqcAf+2Njey6iNtEbB+lIBYm+yXBQJOuGnLuECIsA=="; }; buildInputs = globalBuildInputs; meta = { description = "A theme for The Lounge"; - homepage = "https://github.com/rj45man/thelounge-theme-abyss"; + homepage = "https://github.com/Flisk/thelounge-theme-abyss"; license = "GPL-3"; }; production = true; @@ -129882,6 +130373,7 @@ in sources."@tokenizer/token-0.3.0" sources."@types/cacheable-request-6.0.2" 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/responselike-1.0.0" @@ -129953,6 +130445,7 @@ in sources."component-bind-1.0.0" sources."component-emitter-1.2.1" sources."component-inherit-0.0.3" + sources."compress-brotli-1.3.6" sources."concat-map-0.0.1" sources."console-control-strings-1.1.0" (sources."content-disposition-0.5.3" // { @@ -130040,7 +130533,7 @@ in sources."getpass-0.1.7" sources."glob-7.2.0" sources."got-11.5.2" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."grapheme-splitter-1.0.4" sources."har-schema-2.0.0" sources."har-validator-5.1.5" @@ -130097,7 +130590,7 @@ in }) sources."jwa-2.0.0" sources."jws-4.0.0" - sources."keyv-4.1.1" + sources."keyv-4.2.1" sources."ldap-filter-0.3.3" sources."ldapjs-2.1.1" sources."linkify-it-3.0.2" @@ -130347,6 +130840,7 @@ in sources."@tokenizer/token-0.3.0" sources."@types/cacheable-request-6.0.2" 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/responselike-1.0.0" @@ -130418,6 +130912,7 @@ in sources."component-bind-1.0.0" sources."component-emitter-1.2.1" sources."component-inherit-0.0.3" + sources."compress-brotli-1.3.6" sources."concat-map-0.0.1" sources."console-control-strings-1.1.0" (sources."content-disposition-0.5.3" // { @@ -130505,7 +131000,7 @@ in sources."getpass-0.1.7" sources."glob-7.2.0" sources."got-11.5.2" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."grapheme-splitter-1.0.4" sources."har-schema-2.0.0" sources."har-validator-5.1.5" @@ -130562,7 +131057,7 @@ in }) sources."jwa-2.0.0" sources."jws-4.0.0" - sources."keyv-4.1.1" + sources."keyv-4.2.1" sources."ldap-filter-0.3.3" sources."ldapjs-2.1.1" sources."linkify-it-3.0.2" @@ -131197,10 +131692,10 @@ in three = nodeEnv.buildNodePackage { name = "three"; packageName = "three"; - version = "0.139.0"; + version = "0.139.2"; src = fetchurl { - url = "https://registry.npmjs.org/three/-/three-0.139.0.tgz"; - sha512 = "hZ4LkCjgoEM82WLaOVptDKGpB3SkEyuJP2OHe36AFO8hS2I6CrEiNanXj7wwR3wIPT7V5wi5Y5pFnncS5SVHgQ=="; + url = "https://registry.npmjs.org/three/-/three-0.139.2.tgz"; + sha512 = "gV7q7QY8rogu7HLFZR9cWnOQAUedUhu2WXAnpr2kdXZP9YDKsG/0ychwQvWkZN5PlNw9mv5MoCTin6zNTXoONg=="; }; buildInputs = globalBuildInputs; meta = { @@ -131251,7 +131746,7 @@ in sources."@octokit/request-error-2.1.0" sources."@octokit/rest-18.12.0" sources."@octokit/types-6.34.0" - sources."@xmldom/xmldom-0.8.1" + sources."@xmldom/xmldom-0.8.2" sources."ajv-6.12.6" sources."asn1-0.2.6" sources."assert-plus-1.0.0" @@ -131292,7 +131787,7 @@ in sources."fs.realpath-1.0.0" sources."getpass-0.1.7" sources."glob-7.2.0" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."har-schema-2.0.0" sources."har-validator-5.1.5" sources."http-signature-1.2.0" @@ -131447,7 +131942,7 @@ in sources."minimatch-3.1.2" sources."minimist-0.0.8" sources."mkdirp-0.5.1" - sources."moment-2.29.1" + sources."moment-2.29.2" sources."mooremachine-2.3.0" sources."mute-stream-0.0.8" sources."mv-2.1.1" @@ -131691,7 +132186,7 @@ in sources."glob-7.2.0" sources."glob-parent-5.1.2" sources."globby-11.1.0" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."ignore-5.2.0" sources."indent-string-4.0.0" sources."inflight-1.0.6" @@ -131807,6 +132302,7 @@ in sources."@types/cookie-0.4.1" sources."@types/cors-2.8.12" 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/responselike-1.0.0" @@ -131840,6 +132336,7 @@ in sources."color-string-1.9.0" sources."colorspace-1.1.4" sources."component-emitter-1.3.0" + sources."compress-brotli-1.3.6" sources."concat-map-0.0.1" sources."content-disposition-0.5.4" sources."content-type-1.0.4" @@ -131932,7 +132429,7 @@ in sources."jquery-ui-1.13.1" sources."json-buffer-3.0.1" sources."just-detect-adblock-1.1.0" - sources."keyv-4.1.1" + sources."keyv-4.2.1" sources."knockout-3.5.1" sources."kuler-2.0.0" sources."latest-version-6.0.0" @@ -131960,7 +132457,7 @@ in sources."minimatch-3.1.2" sources."minimist-1.2.6" sources."mkdirp-1.0.4" - sources."moment-2.29.1" + sources."moment-2.29.2" sources."ms-2.0.0" sources."negotiator-0.6.3" sources."node-cache-5.1.2" @@ -132119,7 +132616,7 @@ in sources."@babel/code-frame-7.16.7" sources."@babel/helper-validator-identifier-7.16.7" sources."@babel/highlight-7.16.10" - sources."@types/concat-stream-1.6.1" + sources."@types/concat-stream-2.0.0" sources."@types/debug-4.1.7" sources."@types/is-empty-1.2.1" sources."@types/js-yaml-4.0.5" @@ -132187,7 +132684,7 @@ in sources."to-vfile-7.2.3" sources."trough-2.1.0" sources."typedarray-0.0.6" - sources."unified-engine-9.0.5" + sources."unified-engine-9.1.0" sources."unist-util-inspect-7.0.0" sources."unist-util-stringify-position-3.0.2" sources."util-deprecate-1.0.2" @@ -132195,7 +132692,7 @@ in sources."vfile-message-3.1.2" (sources."vfile-reporter-7.0.4" // { dependencies = [ - sources."supports-color-9.2.1" + sources."supports-color-9.2.2" ]; }) sources."vfile-sort-3.0.0" @@ -132227,7 +132724,7 @@ in sha512 = "gX4TrHLo1nsBiLC/bZkWnZANp1ib4b4+3drekhCkJv0ne+Ti9Xuf5b2G8yqYv4pmT/sB5/ClvxFKmm1Ol0tFIQ=="; }; dependencies = [ - sources."@mapbox/node-pre-gyp-1.0.8" + sources."@mapbox/node-pre-gyp-1.0.9" sources."@types/estree-0.0.50" sources."abbrev-1.1.1" sources."agent-base-6.0.2" @@ -132246,8 +132743,8 @@ in sources."commander-7.2.0" sources."concat-map-0.0.1" sources."console-control-strings-1.1.0" - sources."d3-array-3.1.1" - sources."d3-color-3.0.1" + sources."d3-array-3.1.4" + sources."d3-color-3.1.0" sources."d3-delaunay-6.0.2" sources."d3-dispatch-3.0.1" sources."d3-dsv-3.0.1" @@ -132255,7 +132752,7 @@ in sources."d3-format-3.1.0" sources."d3-geo-3.0.1" sources."d3-geo-projection-4.0.0" - sources."d3-hierarchy-3.1.1" + sources."d3-hierarchy-3.1.2" sources."d3-interpolate-3.0.1" sources."d3-path-3.0.1" sources."d3-quadtree-3.0.1" @@ -132268,7 +132765,7 @@ in sources."decompress-response-4.2.1" sources."delaunator-5.0.0" sources."delegates-1.0.0" - sources."detect-libc-1.0.3" + sources."detect-libc-2.0.1" sources."emoji-regex-8.0.0" sources."escalade-3.1.1" sources."fs-minipass-2.1.0" @@ -132345,7 +132842,11 @@ in sources."vega-runtime-6.1.3" sources."vega-scale-7.2.0" sources."vega-scenegraph-4.10.1" - sources."vega-selections-5.4.0" + (sources."vega-selections-5.4.0" // { + dependencies = [ + sources."d3-array-3.1.1" + ]; + }) sources."vega-statistics-1.8.0" sources."vega-time-2.1.0" sources."vega-transforms-4.10.0" @@ -132473,7 +132974,7 @@ in sources."get-stream-4.1.0" sources."global-dirs-2.1.0" sources."got-9.6.0" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."has-flag-4.0.0" sources."has-yarn-2.1.0" sources."http-cache-semantics-4.1.0" @@ -132696,7 +133197,7 @@ in sources."path-key-3.1.1" sources."path-parse-1.0.7" sources."prelude-ls-1.2.1" - sources."prettier-2.6.1" + sources."prettier-2.6.2" sources."progress-2.0.3" sources."pug-error-2.0.0" sources."pug-lexer-5.0.1" @@ -132936,7 +133437,7 @@ in sources."regenerator-runtime-0.13.9" sources."request-light-0.5.7" sources."typescript-4.6.3" - sources."vscode-css-languageservice-5.3.0" + sources."vscode-css-languageservice-5.4.1" sources."vscode-html-languageservice-4.2.4" sources."vscode-json-languageservice-4.2.1" sources."vscode-jsonrpc-8.0.0-next.7" @@ -132975,7 +133476,7 @@ in sources."@types/json-schema-7.0.11" sources."@types/mocha-7.0.2" sources."@types/node-8.10.66" - sources."@types/vscode-1.65.0" + sources."@types/vscode-1.66.0" sources."@types/yauzl-2.9.2" sources."@ungap/promise-all-settled-1.1.2" sources."@webassemblyjs/ast-1.11.1" @@ -133020,14 +133521,14 @@ in sources."buffer-from-1.1.2" sources."call-bind-1.0.2" sources."camelcase-6.3.0" - sources."caniuse-lite-1.0.30001320" + sources."caniuse-lite-1.0.30001325" (sources."chalk-4.1.2" // { dependencies = [ sources."supports-color-7.2.0" ]; }) sources."cheerio-1.0.0-rc.10" - sources."cheerio-select-1.5.0" + sources."cheerio-select-1.6.0" sources."chokidar-3.5.1" sources."chrome-trace-event-1.0.3" (sources."cliui-7.0.4" // { @@ -133046,8 +133547,8 @@ in sources."concat-map-0.0.1" sources."core-util-is-1.0.3" sources."cross-spawn-7.0.3" - sources."css-select-4.2.1" - sources."css-what-5.1.0" + sources."css-select-4.3.0" + sources."css-what-6.1.0" (sources."debug-4.3.1" // { dependencies = [ sources."ms-2.1.2" @@ -133060,7 +133561,7 @@ in sources."domelementtype-2.2.0" sources."domhandler-4.3.1" sources."domutils-2.8.0" - sources."electron-to-chromium-1.4.96" + sources."electron-to-chromium-1.4.103" sources."emoji-regex-8.0.0" sources."emojis-list-3.0.0" sources."enhanced-resolve-5.9.2" @@ -133095,7 +133596,7 @@ in sources."glob-7.1.6" sources."glob-parent-5.1.2" sources."glob-to-regexp-0.4.1" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."growl-1.10.5" sources."has-1.0.3" sources."has-flag-4.0.0" @@ -133269,7 +133770,7 @@ in sources."vscode-debugadapter-testsupport-1.51.0" sources."vscode-debugprotocol-1.51.0" sources."watchpack-2.3.1" - sources."webpack-5.70.0" + sources."webpack-5.71.0" (sources."webpack-cli-4.9.2" // { dependencies = [ sources."commander-7.2.0" @@ -133422,7 +133923,7 @@ in sources."git-clone-0.1.0" sources."glob-7.2.0" sources."got-6.7.1" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."gray-matter-4.0.3" sources."handlebars-4.7.7" sources."har-schema-2.0.0" @@ -133937,7 +134438,7 @@ in sources."get-stream-4.1.0" ]; }) - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."gridsome-helper-json-1.0.3" sources."has-1.0.3" (sources."has-ansi-2.0.0" // { @@ -134024,7 +134525,7 @@ in sources."isarray-1.0.0" sources."isexe-2.0.0" sources."isobject-3.0.1" - sources."js-beautify-1.14.0" + sources."js-beautify-1.14.2" sources."js-tokens-4.0.0" sources."js-yaml-3.14.1" sources."json-buffer-3.0.0" @@ -134562,7 +135063,7 @@ in }; dependencies = [ sources."@babel/runtime-corejs3-7.17.8" - sources."@mapbox/node-pre-gyp-1.0.8" + sources."@mapbox/node-pre-gyp-1.0.9" sources."@tootallnate/once-1.1.2" sources."@types/raf-3.4.0" sources."abab-2.0.5" @@ -134616,7 +135117,7 @@ in sources."deep-is-0.1.4" sources."delayed-stream-1.0.0" sources."delegates-1.0.0" - sources."detect-libc-1.0.3" + sources."detect-libc-2.0.1" (sources."domexception-2.0.1" // { dependencies = [ sources."webidl-conversions-5.0.0" @@ -134636,7 +135137,7 @@ in sources."gauge-3.0.2" sources."get-caller-file-2.0.5" sources."glob-7.2.0" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."has-unicode-2.0.1" sources."html-encoding-sniffer-2.0.1" sources."http-proxy-agent-4.0.1" @@ -134845,7 +135346,7 @@ in sources."caseless-0.12.0" sources."chalk-4.1.2" sources."cheerio-1.0.0-rc.10" - sources."cheerio-select-1.5.0" + sources."cheerio-select-1.6.0" sources."chrome-launcher-0.15.0" sources."ci-info-2.0.0" sources."cli-boxes-2.2.1" @@ -134871,8 +135372,8 @@ in sources."core-util-is-1.0.3" sources."cross-spawn-7.0.3" sources."crypto-random-string-2.0.0" - sources."css-select-4.2.1" - sources."css-what-5.1.0" + sources."css-select-4.3.0" + sources."css-what-6.1.0" sources."dashdash-1.14.1" sources."debounce-1.2.0" sources."debug-2.6.9" @@ -134981,7 +135482,7 @@ in sources."get-stream-4.1.0" ]; }) - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."graceful-readlink-1.0.1" sources."growly-1.3.0" sources."har-schema-2.0.0" @@ -135052,7 +135553,7 @@ in ]; }) sources."jsprim-1.4.2" - (sources."jszip-3.7.1" // { + (sources."jszip-3.9.0" // { dependencies = [ sources."readable-stream-2.3.7" sources."safe-buffer-5.1.2" @@ -135095,7 +135596,7 @@ in sources."minimatch-3.1.2" sources."minimist-1.2.6" sources."mkdirp-1.0.4" - sources."moment-2.29.1" + sources."moment-2.29.2" sources."ms-2.0.0" sources."multimatch-5.0.0" (sources."mv-2.1.1" // { @@ -135107,7 +135608,7 @@ in }) sources."mz-2.7.0" sources."nan-2.15.0" - sources."nanoid-3.3.1" + sources."nanoid-3.3.2" sources."natural-compare-1.4.0" sources."ncp-2.0.0" sources."node-forge-0.10.0" @@ -135309,10 +135810,10 @@ in webpack = nodeEnv.buildNodePackage { name = "webpack"; packageName = "webpack"; - version = "5.70.0"; + version = "5.71.0"; src = fetchurl { - url = "https://registry.npmjs.org/webpack/-/webpack-5.70.0.tgz"; - sha512 = "ZMWWy8CeuTTjCxbeaQI21xSswseF2oNOwc70QSKNePvmxE7XW36i7vpBMYZFAUHPwQiEbNGCEYIOOlyRbdGmxw=="; + url = "https://registry.npmjs.org/webpack/-/webpack-5.71.0.tgz"; + sha512 = "g4dFT7CFG8LY0iU5G8nBL6VlkT21Z7dcYDpJAEJV5Q1WLb9UwnFbrem1k7K52ILqEmomN7pnzWFxxE6SlDY56A=="; }; dependencies = [ sources."@types/eslint-8.4.1" @@ -135343,10 +135844,10 @@ in sources."ajv-keywords-3.5.2" sources."browserslist-4.20.2" sources."buffer-from-1.1.2" - sources."caniuse-lite-1.0.30001320" + sources."caniuse-lite-1.0.30001325" sources."chrome-trace-event-1.0.3" sources."commander-2.20.3" - sources."electron-to-chromium-1.4.96" + sources."electron-to-chromium-1.4.103" sources."enhanced-resolve-5.9.2" sources."es-module-lexer-0.9.3" sources."escalade-3.1.1" @@ -135361,7 +135862,7 @@ in sources."fast-deep-equal-3.1.3" sources."fast-json-stable-stringify-2.1.0" sources."glob-to-regexp-0.4.1" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."has-flag-4.0.0" sources."jest-worker-27.5.1" sources."json-parse-better-errors-1.0.2" @@ -135474,15 +135975,13 @@ in webpack-dev-server = nodeEnv.buildNodePackage { name = "webpack-dev-server"; packageName = "webpack-dev-server"; - version = "4.7.4"; + version = "4.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.7.4.tgz"; - sha512 = "nfdsb02Zi2qzkNmgtZjkrMOcXnYZ6FLKcQwpxT7MvmHKc+oTtDsBju8j+NMyAygZ9GW1jMEUpy3itHtqgEhe1A=="; + url = "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.8.0.tgz"; + sha512 = "yZ7OWVP1nOtv8s10R/ZCsH6zf6QKkNusMRBE9DsQbOknRzKaFYYrbwVPCXp8ynUOTt3RlD9szM8H0pUlrJ6wcw=="; }; dependencies = [ - sources."@nodelib/fs.scandir-2.1.5" - sources."@nodelib/fs.stat-2.0.5" - sources."@nodelib/fs.walk-1.2.8" + sources."@leichtgewicht/ip-codec-2.0.3" sources."@types/body-parser-1.19.2" sources."@types/bonjour-3.5.10" sources."@types/connect-3.4.35" @@ -135501,15 +136000,12 @@ in sources."@types/sockjs-0.3.33" sources."@types/ws-8.5.3" sources."accepts-1.3.8" - sources."aggregate-error-3.1.0" sources."ajv-8.11.0" sources."ajv-formats-2.1.1" sources."ajv-keywords-5.1.0" sources."ansi-html-community-0.0.8" - sources."ansi-regex-6.0.1" sources."anymatch-3.1.2" sources."array-flatten-2.1.2" - sources."array-union-2.1.0" sources."async-2.6.3" sources."balanced-match-1.0.2" sources."batch-0.6.1" @@ -135519,42 +136015,34 @@ in sources."bytes-3.1.2" ]; }) - sources."bonjour-3.5.0" + sources."bonjour-service-1.0.11" sources."brace-expansion-1.1.11" sources."braces-3.0.2" - sources."buffer-indexof-1.1.1" sources."bytes-3.0.0" - sources."call-bind-1.0.2" sources."chokidar-3.5.3" - sources."clean-stack-2.2.0" sources."colorette-2.0.16" sources."compressible-2.0.18" - (sources."compression-1.7.4" // { - dependencies = [ - sources."safe-buffer-5.1.2" - ]; - }) + sources."compression-1.7.4" sources."concat-map-0.0.1" sources."connect-history-api-fallback-1.6.0" - sources."content-disposition-0.5.4" + (sources."content-disposition-0.5.4" // { + dependencies = [ + sources."safe-buffer-5.2.1" + ]; + }) sources."content-type-1.0.4" sources."cookie-0.4.2" sources."cookie-signature-1.0.6" sources."core-util-is-1.0.3" sources."cross-spawn-7.0.3" sources."debug-2.6.9" - sources."deep-equal-1.1.1" sources."default-gateway-6.0.3" sources."define-lazy-prop-2.0.0" - sources."define-properties-1.1.3" - sources."del-6.0.0" sources."depd-1.1.2" sources."destroy-1.0.4" sources."detect-node-2.1.0" - sources."dir-glob-3.0.1" sources."dns-equal-1.0.0" - sources."dns-packet-1.3.4" - sources."dns-txt-2.0.2" + sources."dns-packet-5.3.1" sources."ee-first-1.1.1" sources."encodeurl-1.0.2" sources."escape-html-1.0.3" @@ -135564,11 +136052,10 @@ in (sources."express-4.17.3" // { dependencies = [ sources."array-flatten-1.1.1" + sources."safe-buffer-5.2.1" ]; }) sources."fast-deep-equal-3.1.3" - sources."fast-glob-3.2.11" - sources."fastq-1.13.0" sources."faye-websocket-0.11.4" sources."fill-range-7.0.1" sources."finalhandler-1.1.2" @@ -135578,21 +136065,14 @@ in sources."fs-monkey-1.0.3" sources."fs.realpath-1.0.0" sources."fsevents-2.3.2" - sources."function-bind-1.1.1" - sources."get-intrinsic-1.1.1" sources."get-stream-6.0.1" sources."glob-7.2.0" sources."glob-parent-5.1.2" - sources."globby-11.1.0" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."handle-thing-2.0.1" - sources."has-1.0.3" - sources."has-symbols-1.0.3" - sources."has-tostringtag-1.0.0" (sources."hpack.js-2.1.6" // { dependencies = [ sources."readable-stream-2.3.7" - sources."safe-buffer-5.1.2" ]; }) sources."html-entities-2.3.3" @@ -135603,23 +136083,15 @@ in sources."http-proxy-middleware-2.0.4" sources."human-signals-2.1.0" sources."iconv-lite-0.4.24" - sources."ignore-5.2.0" - sources."indent-string-4.0.0" sources."inflight-1.0.6" sources."inherits-2.0.4" - sources."ip-1.1.5" sources."ipaddr.js-2.0.1" - sources."is-arguments-1.1.1" sources."is-binary-path-2.1.0" - sources."is-date-object-1.0.5" sources."is-docker-2.2.1" sources."is-extglob-2.1.1" sources."is-glob-4.0.3" sources."is-number-7.0.0" - sources."is-path-cwd-2.2.0" - sources."is-path-inside-3.0.3" sources."is-plain-obj-3.0.0" - sources."is-regex-1.1.4" sources."is-stream-2.0.1" sources."is-wsl-2.2.0" sources."isarray-1.0.0" @@ -135630,7 +136102,6 @@ in sources."memfs-3.4.1" sources."merge-descriptors-1.0.1" sources."merge-stream-2.0.0" - sources."merge2-1.4.1" sources."methods-1.1.2" sources."micromatch-4.0.5" sources."mime-1.6.0" @@ -135642,27 +136113,22 @@ in sources."minimist-1.2.6" sources."mkdirp-0.5.6" sources."ms-2.0.0" - sources."multicast-dns-6.2.3" - sources."multicast-dns-service-types-1.1.0" + sources."multicast-dns-7.2.4" sources."negotiator-0.6.3" - sources."node-forge-1.3.0" + sources."node-forge-1.3.1" sources."normalize-path-3.0.0" sources."npm-run-path-4.0.1" - sources."object-is-1.1.5" - sources."object-keys-1.1.1" sources."obuf-1.1.2" sources."on-finished-2.3.0" sources."on-headers-1.0.2" sources."once-1.4.0" sources."onetime-5.1.2" sources."open-8.4.0" - sources."p-map-4.0.0" sources."p-retry-4.6.1" sources."parseurl-1.3.3" sources."path-is-absolute-1.0.1" sources."path-key-3.1.1" sources."path-to-regexp-0.1.7" - sources."path-type-4.0.0" sources."picomatch-2.3.1" (sources."portfinder-1.0.28" // { dependencies = [ @@ -135678,7 +136144,6 @@ in }) sources."punycode-2.1.1" sources."qs-6.9.7" - sources."queue-microtask-1.2.3" sources."range-parser-1.2.1" (sources."raw-body-2.4.3" // { dependencies = [ @@ -135687,14 +136152,11 @@ in }) sources."readable-stream-3.6.0" sources."readdirp-3.6.0" - sources."regexp.prototype.flags-1.4.1" sources."require-from-string-2.0.2" sources."requires-port-1.0.0" sources."retry-0.13.1" - sources."reusify-1.0.4" sources."rimraf-3.0.2" - sources."run-parallel-1.2.0" - sources."safe-buffer-5.2.1" + sources."safe-buffer-5.1.2" sources."safer-buffer-2.1.2" sources."schema-utils-4.0.0" sources."select-hose-2.0.0" @@ -135716,7 +136178,6 @@ in sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" sources."signal-exit-3.0.7" - sources."slash-3.0.0" sources."sockjs-0.3.24" (sources."spdy-4.0.2" // { dependencies = [ @@ -135731,12 +136192,7 @@ in ]; }) sources."statuses-1.5.0" - (sources."string_decoder-1.1.1" // { - dependencies = [ - sources."safe-buffer-5.1.2" - ]; - }) - sources."strip-ansi-7.0.1" + sources."string_decoder-1.1.1" sources."strip-final-newline-2.0.0" sources."thunky-1.1.0" sources."to-regex-range-5.0.1" @@ -135964,7 +136420,7 @@ in sources."fast-fifo-1.1.0" sources."filestream-5.0.0" sources."freelist-1.0.3" - (sources."fs-chunk-store-2.0.4" // { + (sources."fs-chunk-store-2.0.5" // { dependencies = [ sources."thunky-1.1.0" ]; @@ -136022,7 +136478,7 @@ in sources."minimatch-3.1.2" sources."minimist-1.2.6" sources."mkdirp-classic-0.5.3" - sources."moment-2.29.1" + sources."moment-2.29.2" sources."mp4-box-encoding-1.4.1" sources."mp4-stream-3.1.3" sources."ms-2.0.0" @@ -136036,7 +136492,7 @@ in sources."netmask-2.0.2" sources."network-address-1.1.2" sources."next-event-1.0.0" - sources."node-gyp-build-4.3.0" + sources."node-gyp-build-4.4.0" sources."node-ssdp-2.9.1" sources."nodebmc-0.0.7" sources."on-finished-2.4.1" @@ -136149,7 +136605,7 @@ in sources."utp-native-2.5.3" sources."videostream-3.2.2" sources."vlc-command-1.2.0" - (sources."webtorrent-1.8.10" // { + (sources."webtorrent-1.8.13" // { dependencies = [ sources."debug-4.3.4" sources."decompress-response-6.0.0" @@ -136279,7 +136735,7 @@ in sources."fs.realpath-1.0.0" sources."get-caller-file-2.0.5" sources."glob-7.2.0" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."has-flag-4.0.0" sources."ignore-5.2.0" sources."ignore-walk-3.0.4" @@ -136436,7 +136892,7 @@ in sources."balanced-match-1.0.2" sources."base64-js-1.5.1" sources."bcrypt-pbkdf-1.0.2" - (sources."bin-links-3.0.0" // { + (sources."bin-links-3.0.1" // { dependencies = [ sources."write-file-atomic-4.0.1" ]; @@ -136492,7 +136948,7 @@ in sources."clone-response-1.0.2" sources."clone-stats-1.0.0" sources."cloneable-readable-1.1.3" - sources."cmd-shim-4.1.0" + sources."cmd-shim-5.0.0" sources."code-point-at-1.1.0" sources."color-convert-1.9.3" sources."color-name-1.1.3" @@ -136600,7 +137056,7 @@ in sources."p-cancelable-0.4.1" ]; }) - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."grouped-queue-2.0.0" sources."har-schema-2.0.0" sources."har-validator-5.1.5" @@ -136708,7 +137164,7 @@ in sources."jsonparse-1.3.1" sources."jsprim-1.4.2" sources."just-diff-5.0.1" - sources."just-diff-apply-4.0.1" + sources."just-diff-apply-5.2.0" sources."keyv-3.0.0" (sources."latest-version-3.1.0" // { dependencies = [ @@ -136798,7 +137254,7 @@ in sources."ansi-regex-5.0.1" sources."are-we-there-yet-3.0.0" sources."env-paths-2.2.1" - sources."gauge-4.0.3" + sources."gauge-4.0.4" sources."is-fullwidth-code-point-3.0.0" sources."npmlog-6.0.1" sources."readable-stream-3.6.0" @@ -136846,12 +137302,16 @@ in dependencies = [ sources."@npmcli/fs-2.1.0" sources."@tootallnate/once-2.0.0" - sources."cacache-16.0.3" + (sources."cacache-16.0.3" // { + dependencies = [ + sources."ssri-8.0.1" + ]; + }) sources."debug-4.3.4" sources."http-cache-semantics-4.1.0" sources."http-proxy-agent-5.0.0" - sources."lru-cache-7.7.1" - (sources."make-fetch-happen-10.1.0" // { + sources."lru-cache-7.7.3" + (sources."make-fetch-happen-10.1.2" // { dependencies = [ sources."minipass-fetch-2.1.0" ]; @@ -136863,6 +137323,7 @@ in sources."lru-cache-6.0.0" ]; }) + sources."ssri-9.0.0" ]; }) sources."npm-run-path-2.0.2" @@ -136927,7 +137388,7 @@ in ]; }) sources."pad-component-0.0.1" - sources."parse-conflict-json-2.0.1" + sources."parse-conflict-json-2.0.2" sources."parse-help-1.0.0" sources."parse-json-2.2.0" sources."passwd-user-3.0.0" @@ -136979,7 +137440,7 @@ in sources."query-string-5.1.1" sources."queue-microtask-1.2.3" sources."rc-1.2.8" - sources."read-cmd-shim-2.0.0" + sources."read-cmd-shim-3.0.0" sources."read-package-json-fast-2.0.3" (sources."read-pkg-1.1.0" // { dependencies = [ @@ -137150,7 +137611,7 @@ in ]; }) sources."text-table-0.2.0" - sources."textextensions-5.14.0" + sources."textextensions-5.15.0" sources."through-2.3.8" sources."timed-out-4.0.1" sources."titleize-1.0.1" @@ -137337,7 +137798,7 @@ in sources."fs-extra-10.0.1" sources."glob-parent-5.1.2" sources."globby-13.1.1" - sources."graceful-fs-4.2.9" + sources."graceful-fs-4.2.10" sources."ignore-5.2.0" sources."is-extglob-2.1.1" sources."is-glob-4.0.3" diff --git a/pkgs/development/python-modules/afsapi/default.nix b/pkgs/development/python-modules/afsapi/default.nix index 4bc3532f5b57..864d0caba395 100644 --- a/pkgs/development/python-modules/afsapi/default.nix +++ b/pkgs/development/python-modules/afsapi/default.nix @@ -11,7 +11,7 @@ buildPythonPackage rec { pname = "afsapi"; - version = "0.2.2"; + version = "0.2.3"; format = "setuptools"; disabled = pythonOlder "3.8"; @@ -20,7 +20,7 @@ buildPythonPackage rec { owner = "wlcrs"; repo = "python-afsapi"; rev = version; - hash = "sha256-C4rxlkylWGsDsnMPuecrC2ELj1PvP6EelZ/kzTn4Brk="; + hash = "sha256-6nmj15jCGBRkT7Ip/VGHX5IrAbhu1LUlvXuvFhvXknY="; }; SETUPTOOLS_SCM_PRETEND_VERSION = version; diff --git a/pkgs/development/python-modules/aioguardian/default.nix b/pkgs/development/python-modules/aioguardian/default.nix index baf84ad89f42..ed902288d0f2 100644 --- a/pkgs/development/python-modules/aioguardian/default.nix +++ b/pkgs/development/python-modules/aioguardian/default.nix @@ -15,13 +15,13 @@ buildPythonPackage rec { pname = "aioguardian"; - version = "2022.03.1"; + version = "2022.03.2"; src = fetchFromGitHub { owner = "bachya"; repo = pname; rev = version; - sha256 = "sha256-UiRTyUAoTcohRkTBF5Jvd/uY2zAbHV5z4HC8Oc0QNTs="; + sha256 = "sha256-eEvvcj8tHNErU6RrWar5mxG3xbQ5wCEEYJ95hXkdY54="; }; format = "pyproject"; diff --git a/pkgs/development/python-modules/anybadge/default.nix b/pkgs/development/python-modules/anybadge/default.nix index bc776e42f07b..49be7afaac7a 100644 --- a/pkgs/development/python-modules/anybadge/default.nix +++ b/pkgs/development/python-modules/anybadge/default.nix @@ -6,14 +6,14 @@ buildPythonPackage rec { pname = "anybadge"; - version = "1.8.0"; + version = "1.9.0"; format = "setuptools"; src = fetchFromGitHub { owner = "jongracecox"; repo = pname; rev = "v${version}"; - sha256 = "sha256-xKHIoV/8qsNMcU5fd92Jjh7d7jTeYN5xakMEjR6qPX8="; + sha256 = "sha256-9C1oPZcXjrGwvkx20E+xPGje+ATD9HwOCWWn/pg+98Q="; }; # setup.py reads its version from the TRAVIS_TAG environment variable diff --git a/pkgs/development/python-modules/awscrt/default.nix b/pkgs/development/python-modules/awscrt/default.nix index 6197914f435b..ab689bda51ef 100644 --- a/pkgs/development/python-modules/awscrt/default.nix +++ b/pkgs/development/python-modules/awscrt/default.nix @@ -12,14 +12,14 @@ buildPythonPackage rec { pname = "awscrt"; - version = "0.13.7"; + version = "0.13.8"; format = "setuptools"; disabled = pythonOlder "3.6"; src = fetchPypi { inherit pname version; - hash = "sha256-FCmdYuXh8+nWfeGbJ9IhfwASFsZoxOp7jL+5/TrtG5Q="; + hash = "sha256-n1ckAHU31Lo/CdhKxa4sOWuNLg565BB0XKcmpZovCMs="; }; buildInputs = lib.optionals stdenv.isDarwin [ diff --git a/pkgs/development/python-modules/bc-python-hcl2/default.nix b/pkgs/development/python-modules/bc-python-hcl2/default.nix index 78529e288ca2..7b34a3d382a8 100644 --- a/pkgs/development/python-modules/bc-python-hcl2/default.nix +++ b/pkgs/development/python-modules/bc-python-hcl2/default.nix @@ -8,14 +8,14 @@ buildPythonPackage rec { pname = "bc-python-hcl2"; - version = "0.3.33"; + version = "0.3.37"; format = "setuptools"; disabled = pythonOlder "3.6"; src = fetchPypi { inherit pname version; - hash = "sha256-tdsw9gf64VGH9tRWgYZZq3FNa5B5JNhN3k6wUHrU5zY="; + hash = "sha256-+Wr/JF9es2LQhQ5rc0iyGZa0Di5CsFo9k36WI7jrOqs="; }; # Nose is required during build process, so can not use `checkInputs`. diff --git a/pkgs/development/python-modules/chiavdf/default.nix b/pkgs/development/python-modules/chiavdf/default.nix index 1525c5ac9058..a4bd20f9cd6a 100644 --- a/pkgs/development/python-modules/chiavdf/default.nix +++ b/pkgs/development/python-modules/chiavdf/default.nix @@ -14,12 +14,12 @@ buildPythonPackage rec { pname = "chiavdf"; - version = "1.0.5"; + version = "1.0.6"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-2pC6sFRwgAwIEanZXe99848XMxK/lyLGxiA+UA+q3H0="; + hash = "sha256-Ri7j/T0nnZFml4kC0qIQkyYRJBPZMhTYxolW/A25030="; }; patches = [ diff --git a/pkgs/development/python-modules/dotmap/default.nix b/pkgs/development/python-modules/dotmap/default.nix index 1378569f3a9c..b0627160e3ee 100644 --- a/pkgs/development/python-modules/dotmap/default.nix +++ b/pkgs/development/python-modules/dotmap/default.nix @@ -7,14 +7,14 @@ buildPythonPackage rec { pname = "dotmap"; - version = "1.3.28"; + version = "1.3.29"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-riqDYqtjstyx681zz80aZ6hBizNw4V3NOusInHGlXoI="; + hash = "sha256-5mhR+Ey8RrruucUIt5LxBNM6OBUWbLy5jNOWg6tzxRE="; }; checkInputs = [ diff --git a/pkgs/development/python-modules/dunamai/default.nix b/pkgs/development/python-modules/dunamai/default.nix index f4a24a7a7f8a..8b51d829c8df 100644 --- a/pkgs/development/python-modules/dunamai/default.nix +++ b/pkgs/development/python-modules/dunamai/default.nix @@ -10,7 +10,7 @@ buildPythonPackage rec { pname = "dunamai"; - version = "1.10.0"; + version = "1.11.1"; format = "pyproject"; disabled = pythonOlder "3.7"; @@ -19,7 +19,7 @@ buildPythonPackage rec { owner = "mtkennerly"; repo = "dunamai"; rev = "v${version}"; - sha256 = "sha256-Sp0yfNkFwNc2qR9aSPteBqZcqRokM9whOVmduXVK3CI="; + sha256 = "sha256-nkE9QBziCQA/aN+Z0OuqJlf5FJ4fidE7u5Gt25zjX0c="; }; nativeBuildInputs = [ diff --git a/pkgs/development/python-modules/google-cloud-secret-manager/default.nix b/pkgs/development/python-modules/google-cloud-secret-manager/default.nix index f7c79521b632..76c686c951ad 100644 --- a/pkgs/development/python-modules/google-cloud-secret-manager/default.nix +++ b/pkgs/development/python-modules/google-cloud-secret-manager/default.nix @@ -8,15 +8,19 @@ , proto-plus , pytestCheckHook , pytest-asyncio +, pythonOlder }: buildPythonPackage rec { pname = "google-cloud-secret-manager"; - version = "2.9.2"; + version = "2.10.0"; + format = "setuptools"; + + disabled = pythonOlder "3.6"; src = fetchPypi { inherit pname version; - sha256 = "sha256-W93SDJR8bUPQX9KzoZ6YvV9kU+Twd9huH09Smap481g="; + hash = "sha256-nQfdej2SveO0Qxam57ZRAyTQ0NnGoyb4nx2YFnqtAhI="; }; propagatedBuildInputs = [ diff --git a/pkgs/development/python-modules/graphql-subscription-manager/default.nix b/pkgs/development/python-modules/graphql-subscription-manager/default.nix index 2ca6a134ee27..ab12d3500886 100644 --- a/pkgs/development/python-modules/graphql-subscription-manager/default.nix +++ b/pkgs/development/python-modules/graphql-subscription-manager/default.nix @@ -8,7 +8,7 @@ buildPythonPackage rec { pname = "graphql-subscription-manager"; - version = "0.5.5"; + version = "0.5.6"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -17,7 +17,7 @@ buildPythonPackage rec { owner = "Danielhiversen"; repo = "PyGraphqlWebsocketManager"; rev = version; - hash = "sha256-7MqFsttMNnWmmWKj1zaOORBTDGt6Wm8GU7w56DfPl2c="; + hash = "sha256-nieKl25yDc3FHnMqwn6FNzWKd8sas3rTlBonYbJc1tg="; }; propagatedBuildInputs = [ diff --git a/pkgs/development/python-modules/teletype/default.nix b/pkgs/development/python-modules/teletype/default.nix index 47f6357a5683..999454edf83f 100644 --- a/pkgs/development/python-modules/teletype/default.nix +++ b/pkgs/development/python-modules/teletype/default.nix @@ -1,18 +1,27 @@ -{ buildPythonPackage, fetchPypi, lib }: +{ lib +, buildPythonPackage +, fetchPypi +, pythonOlder +}: buildPythonPackage rec { pname = "teletype"; - version = "1.3.2"; + version = "1.3.4"; format = "pyproject"; + disabled = pythonOlder "3.7"; + src = fetchPypi { inherit pname version; - sha256 = "sha256-9q46a4ui2kgSUL/vImR02r4T9huwLFwd70AqGBNJNzs="; + hash = "sha256-uBppM4w9GlMgYqKFGw1Rcjvq+mnU04K3E74jCgK9YYo="; }; # no tests doCheck = false; - pythonImportsCheck = [ "teletype" ]; + + pythonImportsCheck = [ + "teletype" + ]; meta = with lib; { description = "A high-level cross platform tty library"; diff --git a/pkgs/development/tools/buildpack/default.nix b/pkgs/development/tools/buildpack/default.nix index d607f7af00c3..2fc1a18c1ff8 100644 --- a/pkgs/development/tools/buildpack/default.nix +++ b/pkgs/development/tools/buildpack/default.nix @@ -2,13 +2,13 @@ buildGoModule rec { pname = "pack"; - version = "0.24.0"; + version = "0.24.1"; src = fetchFromGitHub { owner = "buildpacks"; repo = pname; rev = "v${version}"; - sha256 = "sha256-nlSJwo2YjbOOKofZwXdWB3fxRUNTeSUcT6jN987SB3o="; + sha256 = "sha256-zwvZ99SLeYQDSzrEy2eYPMyFh9B6LWZT3tY92EOrXnU="; }; vendorSha256 = "sha256-4uMd0KaV5xrxuJ9yqpxbD3YTNaBHsH2d/IRtYRyN5+0="; diff --git a/pkgs/development/tools/container-linux-config-transpiler/default.nix b/pkgs/development/tools/container-linux-config-transpiler/default.nix deleted file mode 100644 index 5b2a7fddeb45..000000000000 --- a/pkgs/development/tools/container-linux-config-transpiler/default.nix +++ /dev/null @@ -1,34 +0,0 @@ -{ lib, fetchFromGitHub, buildGoPackage }: - -with lib; - -buildGoPackage rec { - pname = "ct"; - version = "0.9.0"; - - goPackagePath = "github.com/coreos/container-linux-config-transpiler"; - - src = fetchFromGitHub { - owner = "coreos"; - repo = "container-linux-config-transpiler"; - rev = "v${version}"; - sha256="1w6nvgrl5qp3ci9igflk9dlk3020psv5m4f3p57f3qcx9vrcl4lw"; - }; - - ldflags = [ - "-X ${goPackagePath}/internal/version.Raw=v${version}" - ]; - - postInstall = '' - mv $out/bin/{internal,ct} - rm $out/bin/tools - ''; - - meta = { - description = "Convert a Container Linux Config into Ignition"; - license = licenses.asl20; - homepage = "https://github.com/coreos/container-linux-config-transpiler"; - maintainers = with maintainers; [elijahcaine]; - platforms = with platforms; unix; - }; -} diff --git a/pkgs/development/tools/continuous-integration/buildkite-agent/default.nix b/pkgs/development/tools/continuous-integration/buildkite-agent/default.nix index bd345d731097..70e60d8418ff 100644 --- a/pkgs/development/tools/continuous-integration/buildkite-agent/default.nix +++ b/pkgs/development/tools/continuous-integration/buildkite-agent/default.nix @@ -3,13 +3,13 @@ nixosTests }: buildGoModule rec { pname = "buildkite-agent"; - version = "3.35.0"; + version = "3.35.1"; src = fetchFromGitHub { owner = "buildkite"; repo = "agent"; rev = "v${version}"; - sha256 = "sha256-Ql6Oe58a5z4UhANDVRGwcmwVgrCfkRKyN5DVXPshf3w="; + sha256 = "sha256-fa32tKOlRuKTONiMboX7CUxeknePsNRC7jlBvAtXmus="; }; vendorSha256 = "sha256-YnOOJDzdirikFbS9451A/TWOSWv04QsqO68/cSXK82k="; diff --git a/pkgs/development/tools/database/prisma-engines/default.nix b/pkgs/development/tools/database/prisma-engines/default.nix index 015b60d9ccf0..73af1bde5ea2 100644 --- a/pkgs/development/tools/database/prisma-engines/default.nix +++ b/pkgs/development/tools/database/prisma-engines/default.nix @@ -8,21 +8,24 @@ , stdenv }: +# Updating this package will force an update for nodePackages.prisma. The +# version of prisma-engines and nodePackages.prisma must be the same for them to +# function correctly. rustPlatform.buildRustPackage rec { pname = "prisma-engines"; - version = "3.11.0"; + version = "3.12.0"; src = fetchFromGitHub { owner = "prisma"; repo = "prisma-engines"; rev = version; - sha256 = "sha256-z7ebwidY+p350XaGeyohoSHWc2DhfzpRxsRDLON1BuA="; + sha256 = "sha256-lIHE63XIPutvTS2cid0+tuo+JMSKMGuSUcnFv1mCRrM="; }; # Use system openssl. OPENSSL_NO_VENDOR = 1; - cargoSha256 = "sha256-PQdLoNJL9szPzPtFRznWS0lngTvtWK+Ko2rp4JWH9dQ="; + cargoSha256 = "sha256-SkI+GLHknC+CGhGo7KiZahBxMp/JCIukTe2C0mMTdjY="; nativeBuildInputs = [ pkg-config ]; diff --git a/pkgs/development/tools/interfacer/default.nix b/pkgs/development/tools/interfacer/default.nix deleted file mode 100644 index 072818ea621d..000000000000 --- a/pkgs/development/tools/interfacer/default.nix +++ /dev/null @@ -1,30 +0,0 @@ -{ buildGoPackage -, lib -, fetchFromGitHub -}: - -buildGoPackage rec { - pname = "interfacer-unstable"; - version = "2018-08-31"; - rev = "c20040233aedb03da82d460eca6130fcd91c629a"; - - goPackagePath = "mvdan.cc/interfacer"; - - src = fetchFromGitHub { - inherit rev; - - owner = "mvdan"; - repo = "interfacer"; - sha256 = "0cx4m74mvn200360pmsqxx4z0apk9fcknwwqh8r94zd3jfv4akq2"; - }; - - goDeps = ./deps.nix; - - meta = with lib; { - description = "A linter that suggests interface types"; - homepage = "https://github.com/mvdan/interfacer"; - license = licenses.bsd3; - maintainers = with maintainers; [ kalbasit ]; - platforms = platforms.linux ++ platforms.darwin; - }; -} diff --git a/pkgs/development/tools/interfacer/deps.nix b/pkgs/development/tools/interfacer/deps.nix deleted file mode 100644 index 6810950878be..000000000000 --- a/pkgs/development/tools/interfacer/deps.nix +++ /dev/null @@ -1,29 +0,0 @@ -[ - { - goPackagePath = "github.com/kisielk/gotool"; - fetch = { - type = "git"; - url = "https://github.com/kisielk/gotool"; - rev = "80517062f582ea3340cd4baf70e86d539ae7d84d"; - sha256 = "14af2pa0ssyp8bp2mvdw184s5wcysk6akil3wzxmr05wwy951iwn"; - }; - } - { - goPackagePath = "golang.org/x/tools"; - fetch = { - type = "git"; - url = "https://go.googlesource.com/tools"; - rev = "96e9e165b75e735822645eff82850b08c377be36"; - sha256 = "1zj9ck5sg9b0pphxybmvxf64hhcap7v7j37fx3v5aknf18crjjdg"; - }; - } - { - goPackagePath = "mvdan.cc/lint"; - fetch = { - type = "git"; - url = "https://github.com/mvdan/lint"; - rev = "adc824a0674b99099789b6188a058d485eaf61c0"; - sha256 = "17mi2rvkg9kzv1shxcyawzcj4jj3v738d1j82fp4yygx859yvr8r"; - }; - } -] diff --git a/pkgs/development/tools/kube-aws/default.nix b/pkgs/development/tools/kube-aws/default.nix deleted file mode 100644 index e095755df110..000000000000 --- a/pkgs/development/tools/kube-aws/default.nix +++ /dev/null @@ -1,36 +0,0 @@ -{ lib, fetchFromGitHub, buildGoPackage }: - -with lib; - -buildGoPackage rec { - pname = "kube-aws"; - version = "0.9.4"; - - goPackagePath = "github.com/coreos/kube-aws"; - - src = fetchFromGitHub { - owner = "coreos"; - repo = "kube-aws"; - rev = "v${version}"; - sha256 = "11h14fsnflbx76rmpp0fxahbxi2qgcamgyxy9s4rmw83j2m8csxp"; - }; - - preBuild = ''( - cd go/src/${goPackagePath} - go generate ./core/controlplane/config - go generate ./core/nodepool/config - go generate ./core/root/config - )''; - - ldflags = [ - "-X github.com/coreos/kube-aws/core/controlplane/cluster.VERSION=v${version}" - ]; - - meta = { - description = "Tool for deploying kubernetes on aws using coreos"; - license = licenses.asl20; - homepage = "https://github.com/coreos/coreos-kubernetes"; - maintainers = with maintainers; [offline]; - platforms = with platforms; unix; - }; -} diff --git a/pkgs/development/tools/kustomize/default.nix b/pkgs/development/tools/kustomize/default.nix index dcaafe676e9a..92cab080aa80 100644 --- a/pkgs/development/tools/kustomize/default.nix +++ b/pkgs/development/tools/kustomize/default.nix @@ -2,9 +2,9 @@ buildGoModule rec { pname = "kustomize"; - version = "4.5.3"; + version = "4.5.4"; # rev is the commit of the tag, mainly for kustomize version command output - rev = "b2d65ddc98e09187a8e38adc27c30bab078c1dbf"; + rev = "cf3a452ddd6f83945d39d582243b8592ec627ae3"; ldflags = let t = "sigs.k8s.io/kustomize/api/provenance"; in [ @@ -17,7 +17,7 @@ buildGoModule rec { owner = "kubernetes-sigs"; repo = pname; rev = "kustomize/v${version}"; - sha256 = "sha256-sy429uTTYvjnweZlsuolBamcggRXmaR8uxD043GUIQE="; + sha256 = "sha256-7Ode+ONgWJRNSbIpvIjhuT+oVvZgJfByFqS/iSUhcXw="; }; doCheck = true; @@ -25,7 +25,7 @@ buildGoModule rec { # avoid finding test and development commands sourceRoot = "source/kustomize"; - vendorSha256 = "sha256-5kMMSr+YyuoASgW+qzkyO4CcDHFFANcsAZTUqHX5nGk="; + vendorSha256 = "sha256-beIbeY/+k2NgotGw5zQFkYuqMKlwctoxuToZfiFlCm4="; meta = with lib; { description = "Customization of kubernetes YAML configurations"; diff --git a/pkgs/development/tools/misc/nix-bisect/default.nix b/pkgs/development/tools/misc/nix-bisect/default.nix new file mode 100644 index 000000000000..4075fe5ffbba --- /dev/null +++ b/pkgs/development/tools/misc/nix-bisect/default.nix @@ -0,0 +1,35 @@ +{ lib +, fetchFromGitHub +, python3 +}: + +let + pname = "nix-bisect"; + version = "0.4.1"; +in +python3.pkgs.buildPythonApplication { + inherit pname version; + format = "setuptools"; + + src = fetchFromGitHub { + owner = "timokau"; + repo = pname; + rev = "v${version}"; + hash = "sha256-01vj35mMakqKi5zbMIPQ+R8xdkOWbzpnigd3/SU+svw="; + }; + + propagatedBuildInputs = with python3.pkgs; [ + appdirs + numpy + pexpect + ]; + + doCheck = false; + + meta = with lib; { + description = "Bisect nix builds"; + homepage = "https://github.com/timokau/nix-bisect"; + license = licenses.mit; + maintainers = with maintainers; [ hexa ]; + }; +} diff --git a/pkgs/development/tools/misc/patchelf/unstable.nix b/pkgs/development/tools/misc/patchelf/unstable.nix index e62805867504..350424747e88 100644 --- a/pkgs/development/tools/misc/patchelf/unstable.nix +++ b/pkgs/development/tools/misc/patchelf/unstable.nix @@ -1,14 +1,14 @@ -{ lib, stdenv, fetchurl, autoreconfHook, fetchFromGitHub }: +{ lib, stdenv, fetchurl, autoreconfHook, fetchFromGitHub, unstableGitUpdater }: stdenv.mkDerivation rec { pname = "patchelf"; - version = "2021-11-16"; + version = "unstable-2022-02-21"; src = fetchFromGitHub { owner = "NixOS"; repo = "patchelf"; - rev = "a174cf3006baf31e0e9eaa62bc9adead93af63f7"; - sha256 = "sha256-cKZ4DE70R5XiIqfnIVAl2s7a1bJxaaPpuCmxs3pxFRU="; + rev = "a35054504293f9ff64539850d1ed0bfd2f5399f2"; + sha256 = "sha256-/hD/abmzWSkDhAWPLHiLQQ9cwJF8oFDuovNzRqs3Bho="; }; # Drop test that fails on musl (?) @@ -24,6 +24,12 @@ stdenv.mkDerivation rec { doCheck = !stdenv.isDarwin; + passthru = { + updateScript = unstableGitUpdater { + url = "https://github.com/NixOS/patchelf.git"; + }; + }; + meta = with lib; { homepage = "https://github.com/NixOS/patchelf"; license = licenses.gpl3; diff --git a/pkgs/development/tools/ocaml/utop/default.nix b/pkgs/development/tools/ocaml/utop/default.nix index 3e5471db5ae0..08abbc1c9f21 100644 --- a/pkgs/development/tools/ocaml/utop/default.nix +++ b/pkgs/development/tools/ocaml/utop/default.nix @@ -4,7 +4,7 @@ buildDunePackage rec { pname = "utop"; - version = "2.9.0"; + version = "2.9.1"; useDune2 = true; @@ -12,7 +12,7 @@ buildDunePackage rec { src = fetchurl { url = "https://github.com/ocaml-community/utop/releases/download/${version}/utop-${version}.tbz"; - sha256 = "sha256:17jd61bc6pva5wqmnc9xq70ysyjplrzf1p25sq1s7wgrfq2vlyyd"; + sha256 = "sha256-6TQxLYN/qjTABZuK6rp+daCSNWyJIXzB8q2QpZeBwaY="; }; nativeBuildInputs = [ makeWrapper cppo ]; diff --git a/pkgs/development/web/nodejs/v12.nix b/pkgs/development/web/nodejs/v12.nix index e2db169bad37..ea7c211163e2 100644 --- a/pkgs/development/web/nodejs/v12.nix +++ b/pkgs/development/web/nodejs/v12.nix @@ -8,7 +8,7 @@ let in buildNodejs { inherit enableNpm; - version = "12.22.11"; - sha256 = "sha256-XoHaJv1bH4lxRIOrqmjj2jBFI+QzTHjEm/p6A+541vE="; + version = "12.22.12"; + sha256 = "1whl0zi6fs9ay33bhcn2kh9xynran05iipahg1zzr6sv97wbfhmw"; patches = lib.optional stdenv.isDarwin ./bypass-xcodebuild.diff; } diff --git a/pkgs/games/bugdom/default.nix b/pkgs/games/bugdom/default.nix new file mode 100644 index 000000000000..c5170c9845cc --- /dev/null +++ b/pkgs/games/bugdom/default.nix @@ -0,0 +1,66 @@ +{ lib, stdenv, fetchFromGitHub, SDL2, IOKit, Foundation, cmake, makeWrapper }: + +stdenv.mkDerivation rec { + pname = "bugdom"; + version = "1.3.1"; + + src = fetchFromGitHub { + owner = "jorio"; + repo = pname; + rev = version; + sha256 = "sha256:1371inw11rzfrxmc3v4gv5axp56bxjbcr0mhqm4x839401bfq5mf"; + fetchSubmodules = true; + }; + + postPatch = lib.optionalString stdenv.hostPlatform.isDarwin '' + # Expects SDL2.framework in specific location, which we don't have + # Passing this in cmakeFlags doesn't work because the path is hard-coded for Darwin + substituteInPlace cmake/FindSDL2.cmake \ + --replace 'set(SDL2_LIBRARIES' 'set(SDL2_LIBRARIES "${SDL2}/lib/libSDL2.dylib") #' + ''; + + buildInputs = [ + SDL2 + ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ + IOKit + Foundation + ]; + + nativeBuildInputs = [ + cmake + makeWrapper + ]; + + cmakeFlags = lib.optionals stdenv.hostPlatform.isDarwin [ + "-DCMAKE_OSX_ARCHITECTURES=${stdenv.hostPlatform.darwinArch}" + # Expects SDL2.framework in specific location, which we don't have + "-DSDL2_INCLUDE_DIRS=${SDL2.dev}/include/SDL2" + ]; + + installPhase = '' + runHook preInstall + + '' + (if stdenv.hostPlatform.isDarwin then '' + mkdir -p $out/{bin,Applications} + mv {,$out/Applications/}Bugdom.app + ln -s $out/{Applications/Bugdom.app/Contents/MacOS,bin}/Bugdom + '' else '' + mkdir -p $out/share/bugdom + mv Data $out/share/bugdom + install -Dm755 {.,$out/bin}/Bugdom + wrapProgram $out/bin/Bugdom --run "cd $out/share/bugdom" + '') + '' + + runHook postInstall + ''; + + meta = with lib; { + description = "A port of Bugdom, a 1999 Macintosh game by Pangea Software, for modern operating systems"; + homepage = "https://github.com/jorio/Bugdom"; + license = with licenses; [ + cc-by-sa-40 + ]; + maintainers = with maintainers; [ lux ]; + platforms = platforms.unix; + }; +} diff --git a/pkgs/misc/drivers/argononed/default.nix b/pkgs/misc/drivers/argononed/default.nix new file mode 100644 index 000000000000..5fa28c17c529 --- /dev/null +++ b/pkgs/misc/drivers/argononed/default.nix @@ -0,0 +1,48 @@ +{ lib, stdenv, fetchFromGitLab, dtc, installShellFiles }: + +stdenv.mkDerivation rec { + pname = "argononed"; + version = "unstable-2022-03-26"; + + src = fetchFromGitLab { + owner = "DarkElvenAngel"; + repo = pname; + rev = "97c4fa07fc2c09ffc3bd86e0f6319d50fa639578"; + sha256 = "sha256-5/xUYbprRiwD+FN8V2cUpHxnTbBkEsFG2wfsEXrCrgQ="; + }; + + patches = [ ./fix-hardcoded-reboot-poweroff-paths.patch ]; + + postPatch = '' + patchShebangs configure + ''; + + nativeBuildInputs = [ installShellFiles ]; + + buildInputs = [ dtc ]; + + installPhase = '' + runHook preInstall + + install -Dm755 build/argononed $out/bin/argononed + install -Dm755 build/argonone-cli $out/bin/argonone-cli + install -Dm755 build/argonone-shutdown $out/lib/systemd/system-shutdown/argonone-shutdown + install -Dm644 build/argonone.dtbo $out/boot/overlays/argonone.dtbo + + install -Dm644 OS/_common/argononed.service $out/lib/systemd/system/argononed.service + install -Dm644 OS/_common/argononed.logrotate $out/etc/logrotate.d/argononed + install -Dm644 LICENSE $out/share/argononed/LICENSE + + installShellCompletion --bash --name argonone-cli OS/_common/argonone-cli-complete.bash + + runHook postInstall + ''; + + meta = with lib; { + homepage = "https://gitlab.com/DarkElvenAngel/argononed"; + description = "A replacement daemon for the Argon One Raspberry Pi case"; + license = licenses.mit; + platforms = platforms.linux; + maintainers = [ maintainers.misterio77 ]; + }; +} diff --git a/pkgs/misc/drivers/argononed/fix-hardcoded-reboot-poweroff-paths.patch b/pkgs/misc/drivers/argononed/fix-hardcoded-reboot-poweroff-paths.patch new file mode 100644 index 000000000000..88bcb6ddd25e --- /dev/null +++ b/pkgs/misc/drivers/argononed/fix-hardcoded-reboot-poweroff-paths.patch @@ -0,0 +1,18 @@ +--- a/src/argononed.c ++++ b/src/argononed.c +@@ -783,13 +783,13 @@ + { + log_message(LOG_DEBUG, "EXEC REBOOT"); + sync(); +- system("/sbin/reboot"); ++ system("/run/current-system/sw/bin/reboot"); + } + if (count >= 39 && count <= 41) + { + log_message(LOG_DEBUG, "EXEC SHUTDOWN"); + sync(); +- system("/sbin/poweroff"); ++ system("/run/current-system/sw/bin/poweroff"); + } + #else + log_message(LOG_INFO,"Daemon Ready"); diff --git a/pkgs/os-specific/linux/apfs/default.nix b/pkgs/os-specific/linux/apfs/default.nix index 98fd83ed5d51..eedaa9ef9687 100644 --- a/pkgs/os-specific/linux/apfs/default.nix +++ b/pkgs/os-specific/linux/apfs/default.nix @@ -6,13 +6,13 @@ stdenv.mkDerivation { pname = "apfs"; - version = "unstable-2021-09-21-${kernel.version}"; + version = "unstable-2022-02-03-${kernel.version}"; src = fetchFromGitHub { owner = "linux-apfs"; repo = "linux-apfs-rw"; - rev = "362c4e32ab585b9234a26aa3e49f29b605612a31"; - sha256 = "sha256-Y8/PGPLirNrICF+Bum60v/DBPa1xpox5VBvt64myZzs="; + rev = "a0d6a4dca69b6eab3cabaaee4d4284807828a266"; + sha256 = "sha256-3T1BNc6g3SDTxb0VrronLUIp/CWbwnzXTsc8Qk5c4jY="; }; hardeningDisable = [ "pic" ]; diff --git a/pkgs/os-specific/linux/busybox/default.nix b/pkgs/os-specific/linux/busybox/default.nix index 7aaedb5b1acd..970129f97390 100644 --- a/pkgs/os-specific/linux/busybox/default.nix +++ b/pkgs/os-specific/linux/busybox/default.nix @@ -65,6 +65,16 @@ stdenv.mkDerivation rec { patches = [ ./busybox-in-store.patch + (fetchurl { + name = "CVE-2022-28391.patch"; + url = "https://git.alpinelinux.org/aports/plain/main/busybox/0001-libbb-sockaddr2str-ensure-only-printable-characters-.patch?id=ed92963eb55bbc8d938097b9ccb3e221a94653f4"; + sha256 = "sha256-yviw1GV+t9tbHbY7YNxEqPi7xEreiXVqbeRyf8c6Awo="; + }) + (fetchurl { + name = "CVE-2022-28391.patch"; + url = "https://git.alpinelinux.org/aports/plain/main/busybox/0002-nslookup-sanitize-all-printed-strings-with-printable.patch?id=ed92963eb55bbc8d938097b9ccb3e221a94653f4"; + sha256 = "sha256-vl1wPbsHtXY9naajjnTicQ7Uj3N+EQ8pRNnrdsiow+w="; + }) ] ++ lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) ./clang-cross.patch; separateDebugInfo = true; diff --git a/pkgs/os-specific/linux/kvdo/default.nix b/pkgs/os-specific/linux/kvdo/default.nix new file mode 100644 index 000000000000..74895e11bd5a --- /dev/null +++ b/pkgs/os-specific/linux/kvdo/default.nix @@ -0,0 +1,31 @@ +{ stdenv, lib, fetchFromGitHub, vdo, kernel }: + +stdenv.mkDerivation rec { + inherit (vdo) version; + pname = "kvdo"; + + src = fetchFromGitHub { + owner = "dm-vdo"; + repo = "kvdo"; + rev = version; + sha256 = "1xl7dwcqx00w1gbpb6vlkn8nchyfj1fsc8c06vgda0sgxp7qs5gn"; + }; + + dontConfigure = true; + enableParallelBuilding = true; + + KSRC = "${kernel.dev}/lib/modules/${kernel.modDirVersion}/build"; + INSTALL_MOD_PATH = placeholder "out"; + + preBuild = '' + makeFlags="$makeFlags -C ${KSRC} M=$(pwd)" +''; + installTargets = [ "modules_install" ]; + + meta = with lib; { + inherit (vdo.meta) license maintainers; + homepage = "https://github.com/dm-vdo/kvdo"; + description = "A pair of kernel modules which provide pools of deduplicated and/or compressed block storage"; + platforms = platforms.linux; + }; +} diff --git a/pkgs/os-specific/linux/lvm2/common.nix b/pkgs/os-specific/linux/lvm2/common.nix index 07e8c9cb02da..7ba08e7d9034 100644 --- a/pkgs/os-specific/linux/lvm2/common.nix +++ b/pkgs/os-specific/linux/lvm2/common.nix @@ -11,6 +11,7 @@ , enableDmeventd ? false , udevSupport ? !stdenv.hostPlatform.isStatic, udev ? null , onlyLib ? stdenv.hostPlatform.isStatic +, enableVDO ? false, vdo ? null , nixosTests }: @@ -18,7 +19,7 @@ assert enableDmeventd -> enableCmdlib; stdenv.mkDerivation rec { - pname = "lvm2" + lib.optionalString enableDmeventd "-with-dmeventd"; + pname = "lvm2" + lib.optionalString enableDmeventd "-with-dmeventd" + lib.optionalString enableVDO "-with-vdo"; inherit version; src = fetchurl { @@ -33,6 +34,8 @@ stdenv.mkDerivation rec { udev ] ++ lib.optionals (!onlyLib) [ libuuid + ] ++ lib.optionals enableVDO [ + vdo ]; configureFlags = [ @@ -58,6 +61,8 @@ stdenv.mkDerivation rec { "--enable-udev_sync" ] ++ lib.optionals stdenv.hostPlatform.isStatic [ "--enable-static_link" + ] ++ lib.optionals enableVDO [ + "--enable-vdo" ]; preConfigure = '' diff --git a/pkgs/os-specific/linux/vdo/default.nix b/pkgs/os-specific/linux/vdo/default.nix new file mode 100644 index 000000000000..1904445d4c2c --- /dev/null +++ b/pkgs/os-specific/linux/vdo/default.nix @@ -0,0 +1,64 @@ +{ lib, stdenv +, fetchFromGitHub +, installShellFiles +, libuuid +, lvm2_dmeventd # +, zlib +, python3 +}: + +stdenv.mkDerivation rec { + pname = "vdo"; + version = "8.1.1.360"; # kvdo uses this! + + src = fetchFromGitHub { + owner = "dm-vdo"; + repo = pname; + rev = version; + sha256 = "1zp8aaw0diramnlx5z96jcpbm6x0r204xf1vwq6k21rzcazczkwv"; + }; + + nativeBuildInputs = [ + installShellFiles + ]; + + buildInputs = [ + libuuid + lvm2_dmeventd + zlib + python3.pkgs.wrapPython + ]; + + propagatedBuildInputs = with python3.pkgs; [ + pyyaml + ]; + + pythonPath = propagatedBuildInputs; + + makeFlags = [ + "DESTDIR=${placeholder "out"}" + "INSTALLOWNER=" + # all of these paths are relative to DESTDIR and have defaults that don't work for us + "bindir=/bin" + "defaultdocdir=/share/doc" + "mandir=/share/man" + "python3_sitelib=${python3.sitePackages}" + ]; + + enableParallelBuilding = true; + + postInstall = '' + installShellCompletion --bash $out/bash_completion.d/* + rm -r $out/bash_completion.d + + wrapPythonPrograms + ''; + + meta = with lib; { + homepage = "https://github.com/dm-vdo/vdo"; + description = "A set of userspace tools for managing pools of deduplicated and/or compressed block storage"; + platforms = platforms.linux; + license = with licenses; [ gpl2Plus ]; + maintainers = with maintainers; [ ajs124 ]; + }; +} diff --git a/pkgs/servers/dns/pdns/default.nix b/pkgs/servers/dns/pdns/default.nix index ff057b48bd54..0cec5f6e7446 100644 --- a/pkgs/servers/dns/pdns/default.nix +++ b/pkgs/servers/dns/pdns/default.nix @@ -20,6 +20,11 @@ stdenv.mkDerivation rec { libyamlcpp libsodium curl unixODBC openssl systemd lmdb tinycdb ]; + # Configure phase requires 64-bit time_t even on 32-bit platforms. + NIX_CFLAGS_COMPILE = lib.optionals stdenv.hostPlatform.is32bit [ + "-D_TIME_BITS=64" "-D_FILE_OFFSET_BITS=64" + ]; + configureFlags = [ "--disable-silent-rules" "--enable-dns-over-tls" diff --git a/pkgs/servers/memcached/default.nix b/pkgs/servers/memcached/default.nix index 4461930b13cc..eedb420f2eb4 100644 --- a/pkgs/servers/memcached/default.nix +++ b/pkgs/servers/memcached/default.nix @@ -1,12 +1,12 @@ {lib, stdenv, fetchurl, cyrus_sasl, libevent, nixosTests }: stdenv.mkDerivation rec { - version = "1.6.14"; + version = "1.6.15"; pname = "memcached"; src = fetchurl { url = "https://memcached.org/files/${pname}-${version}.tar.gz"; - sha256 = "sha256-VNY3QsaIbc3E4Mh/RDmikwqHbNnyv6AdaZsMa60XB7M="; + sha256 = "sha256-jXq+PWSTeO27oW9C7x1myj8qwHXy65cUXOFkOI5u1RU="; }; configureFlags = [ diff --git a/pkgs/servers/misc/oven-media-engine/default.nix b/pkgs/servers/misc/oven-media-engine/default.nix index 7cd209f95e3f..4760b2b7ccb5 100644 --- a/pkgs/servers/misc/oven-media-engine/default.nix +++ b/pkgs/servers/misc/oven-media-engine/default.nix @@ -53,7 +53,7 @@ stdenv.mkDerivation rec { meta = with lib; { description = "Open-source streaming video service with sub-second latency"; homepage = "https://ovenmediaengine.com"; - license = licenses.gpl2Only; + license = licenses.agpl3Only; maintainers = with maintainers; [ lukegb ]; platforms = [ "x86_64-linux" ]; }; diff --git a/pkgs/servers/monitoring/heapster/default.nix b/pkgs/servers/monitoring/heapster/default.nix deleted file mode 100644 index d1205ae353b2..000000000000 --- a/pkgs/servers/monitoring/heapster/default.nix +++ /dev/null @@ -1,28 +0,0 @@ -{ lib, buildGoPackage, fetchFromGitHub, docker }: - -buildGoPackage rec { - rev = "3057a2c07061c8d9ffaf77e5442ffd7512ac0133"; - pname = "heapster"; - version = lib.strings.substring 0 7 rev; - goPackagePath = "k8s.io/heapster"; - subPackages = [ "./" ]; - - src = fetchFromGitHub { - inherit rev; - owner = "kubernetes"; - repo = "heapster"; - sha256 = "1vg83207y7yigydnnhlvzs3s94vx02i56lqgs6a96c6i3mr3ydpb"; - }; - - preBuild = '' - export GOPATH=$GOPATH:$NIX_BUILD_TOP/go/src/${goPackagePath}/Godeps/_workspace - ''; - - meta = with lib; { - description = "Compute Resource Usage Analysis and Monitoring of Container Clusters"; - license = licenses.asl20; - homepage = "https://github.com/kubernetes/heapster"; - maintainers = with maintainers; [ offline ]; - platforms = docker.meta.platforms; - }; -} diff --git a/pkgs/servers/monitoring/prometheus/mesos-exporter.nix b/pkgs/servers/monitoring/prometheus/mesos-exporter.nix deleted file mode 100644 index 289b8f2403d8..000000000000 --- a/pkgs/servers/monitoring/prometheus/mesos-exporter.nix +++ /dev/null @@ -1,23 +0,0 @@ -{ lib, buildGoPackage, fetchFromGitHub }: - -buildGoPackage rec { - pname = "mesos_exporter"; - version = "1.1.2"; - - goPackagePath = "github.com/prometheus/mesos_exporter"; - - src = fetchFromGitHub { - rev = "v${version}"; - owner = "mesos"; - repo = "mesos_exporter"; - sha256 = "0nvjlpxdhh60wcdw2fdc8h0vn6fxkz0nh7zrx43hjxymvc15ixza"; - }; - - meta = with lib; { - description = "Export Mesos metrics to Prometheus"; - homepage = "https://github.com/prometheus/mesos_exporter"; - license = licenses.asl20; - maintainers = with maintainers; [ benley ]; - platforms = platforms.unix; - }; -} diff --git a/pkgs/servers/traefik/default.nix b/pkgs/servers/traefik/default.nix index 2dbed400650a..844ab036b5a6 100644 --- a/pkgs/servers/traefik/default.nix +++ b/pkgs/servers/traefik/default.nix @@ -2,11 +2,11 @@ buildGoModule rec { pname = "traefik"; - version = "2.6.2"; + version = "2.6.3"; src = fetchzip { url = "https://github.com/traefik/traefik/releases/download/v${version}/traefik-v${version}.src.tar.gz"; - sha256 = "sha256-DVmszzDre0pWXARUqXuqGfY3pX1Ijh33G0Gsdmp8f98="; + sha256 = "sha256-OaKgX3qwiJM/EPprV1r3CbUnxOaWl7BTMcS5v+tmHoo="; stripRoot = false; }; diff --git a/pkgs/shells/fish/plugins/fzf-fish.nix b/pkgs/shells/fish/plugins/fzf-fish.nix index 346761308583..41ecc70340c8 100644 --- a/pkgs/shells/fish/plugins/fzf-fish.nix +++ b/pkgs/shells/fish/plugins/fzf-fish.nix @@ -2,13 +2,13 @@ buildFishPlugin rec { pname = "fzf.fish"; - version = "8.1"; + version = "8.2"; src = fetchFromGitHub { owner = "PatrickF1"; repo = "fzf.fish"; rev = "v${version}"; - sha256 = "sha256-uqYVbRdrcO6StaIim9S8xmb9P67CmXnLEywSeILn4yQ="; + sha256 = "sha256-WRrPd/GuXHJ9uYvhwjwp9AEtvbfMlpV0xdgNyfx43ok="; }; checkInputs = [ fzf fd util-linux ]; diff --git a/pkgs/shells/zsh/oh-my-zsh/default.nix b/pkgs/shells/zsh/oh-my-zsh/default.nix index 082472b9cd39..1b777d96696b 100644 --- a/pkgs/shells/zsh/oh-my-zsh/default.nix +++ b/pkgs/shells/zsh/oh-my-zsh/default.nix @@ -5,15 +5,15 @@ , git, nix, nixfmt, jq, coreutils, gnused, curl, cacert }: stdenv.mkDerivation rec { - version = "2022-03-31"; + version = "2022-04-04"; pname = "oh-my-zsh"; - rev = "53863e7b3ff0c2e2816e90dab3d870adebdf49c7"; + rev = "4d9e5ce9a7d8db3c3aadcae81580a5c3ff5a0e8b"; src = fetchFromGitHub { inherit rev; owner = "ohmyzsh"; repo = "ohmyzsh"; - sha256 = "TQOGSAzcJfcUNTzUcCI5tTlAKD1JYtH9CiPnfHZaA9E="; + sha256 = "Plg7mr6ZOSzUpq5XMFkebVpCjdtwe237+4sVdtL+kLM="; }; installPhase = '' diff --git a/pkgs/stdenv/generic/make-derivation.nix b/pkgs/stdenv/generic/make-derivation.nix index 2465449867cb..8749e8b75552 100644 --- a/pkgs/stdenv/generic/make-derivation.nix +++ b/pkgs/stdenv/generic/make-derivation.nix @@ -219,9 +219,11 @@ else let # it again. staticMarker = lib.optionalString stdenv.hostPlatform.isStatic "-static"; in + lib.strings.sanitizeDerivationName ( if attrs ? name then attrs.name + hostSuffix - else "${attrs.pname}${staticMarker}${hostSuffix}-${attrs.version}"; + else "${attrs.pname}${staticMarker}${hostSuffix}-${attrs.version}" + ); }) // { builder = attrs.realBuilder or stdenv.shell; args = attrs.args or ["-e" (attrs.builder or ./default-builder.sh)]; @@ -340,8 +342,9 @@ else let # passed to the builder and is not a dependency. But since we # include it in the result, it *is* available to nix-env for queries. meta = { - # `name` above includes cross-compilation cruft (and is under assert), - # lets have a clean always accessible version here. + # `name` above includes cross-compilation cruft, + # is under assert, and is sanitized. + # Let's have a clean always accessible version here. name = attrs.name or "${attrs.pname}-${attrs.version}"; # If the packager hasn't specified `outputsToInstall`, choose a default, diff --git a/pkgs/tools/admin/trivy/default.nix b/pkgs/tools/admin/trivy/default.nix index 0d88df6185a6..83bdea6d49ee 100644 --- a/pkgs/tools/admin/trivy/default.nix +++ b/pkgs/tools/admin/trivy/default.nix @@ -5,16 +5,16 @@ buildGoModule rec { pname = "trivy"; - version = "0.25.0"; + version = "0.25.2"; src = fetchFromGitHub { owner = "aquasecurity"; repo = pname; rev = "v${version}"; - sha256 = "sha256-jlLE8io7/Yhu0rF7brV9YhDIsZBANZtatnWbgoHMReg="; + sha256 = "sha256-yDoHDOPtPX5u8K2/fnj6dgqlI+WUCsuxbdKtb/UtIRQ="; }; - vendorSha256 = "sha256-hOurOL7xowgBs9gXa++X7+iOKJJ6WjekGGFiR9Q0OEU="; + vendorSha256 = "sha256-HZpGPCayrnayOg+3mB8Tw+5M2IfIpIvzP7qfY1OL7tk="; excludedPackages = "misc"; diff --git a/pkgs/tools/audio/spotdl/default.nix b/pkgs/tools/audio/spotdl/default.nix index c9270ce58357..e407a5f99070 100644 --- a/pkgs/tools/audio/spotdl/default.nix +++ b/pkgs/tools/audio/spotdl/default.nix @@ -6,13 +6,13 @@ python3.pkgs.buildPythonApplication rec { pname = "spotdl"; - version = "3.9.3"; + version = "3.9.4"; src = fetchFromGitHub { owner = "spotDL"; repo = "spotify-downloader"; rev = "v${version}"; - sha256 = "sha256-sx6UtblpsetKPwhlXB3Kj3OMIOyW9QluzB+YbtQGdYQ="; + sha256 = "sha256-PJ9m+697bdrhHZ80wJvL6V366Vn3tmPfioK1sZAyB/Q="; }; propagatedBuildInputs = with python3.pkgs; [ diff --git a/pkgs/tools/filesystems/buttersink/default.nix b/pkgs/tools/filesystems/buttersink/default.nix deleted file mode 100644 index aa0f317787f8..000000000000 --- a/pkgs/tools/filesystems/buttersink/default.nix +++ /dev/null @@ -1,30 +0,0 @@ -{ lib, python2 }: - -python2.pkgs.buildPythonApplication rec { - pname = "buttersink"; - version = "0.6.9"; - - src = python2.pkgs.fetchPypi { - inherit pname version; - sha256 = "a797b6e92ad2acdf41e033c1368ab365aa268f4d8458b396a5770fa6c2bc3f54"; - }; - - propagatedBuildInputs = with python2.pkgs; [ boto crcmod psutil ]; - - # No tests implemented - doCheck = false; - - meta = with lib; { - description = "Synchronise btrfs snapshots"; - longDescription = '' - ButterSink is like rsync, but for btrfs subvolumes instead of files, - which makes it much more efficient for things like archiving backup - snapshots. It is built on top of btrfs send and receive capabilities. - Sources and destinations can be local btrfs file systems, remote btrfs - file systems over SSH, or S3 buckets. - ''; - homepage = "https://github.com/AmesCornish/buttersink/wiki"; - license = licenses.gpl3; - platforms = platforms.linux; - }; -} diff --git a/pkgs/tools/misc/dsq/default.nix b/pkgs/tools/misc/dsq/default.nix index 32c5ec6566da..72a38cf1eaf3 100644 --- a/pkgs/tools/misc/dsq/default.nix +++ b/pkgs/tools/misc/dsq/default.nix @@ -10,16 +10,16 @@ buildGoModule rec { pname = "dsq"; - version = "0.11.0"; + version = "0.12.0"; src = fetchFromGitHub { owner = "multiprocessio"; repo = "dsq"; rev = version; - hash = "sha256-4g9fu5taFtb7VzVa0X8s6SbEO9qTFD0ff+CVJpr376c="; + hash = "sha256-AxYqSCdCrhHrN21WGJtg0KIde8VAjj6bF7DzELZptj8="; }; - vendorSha256 = "sha256-YPH/uPPNT1byXOtCrNyU68H4mHO8arl6l5hs9WMcxVk="; + vendorSha256 = "sha256-aER7j/DG1WB5DZhvgXYrl19UwQ/lZLPRAptINVJ3rdI="; nativeBuildInputs = [ diffutils ]; diff --git a/pkgs/tools/misc/gparted/default.nix b/pkgs/tools/misc/gparted/default.nix index a002d190984f..8d6de0bbeb81 100644 --- a/pkgs/tools/misc/gparted/default.nix +++ b/pkgs/tools/misc/gparted/default.nix @@ -6,11 +6,11 @@ stdenv.mkDerivation rec { pname = "gparted"; - version = "1.3.1"; + version = "1.4.0"; src = fetchurl { url = "mirror://sourceforge/gparted/${pname}-${version}.tar.gz"; - sha256 = "sha256-Xu4ubXSxXvlrE7OiMQyGjtIpjgM0ECHn0SpamKHR4Qk="; + sha256 = "sha256-5Sk6eS5T/b66KcSoNBE82WA9DWOTMNqTGkaL82h4h74="; }; # Tries to run `pkexec --version` to get version. diff --git a/pkgs/tools/misc/mongodb-compass/default.nix b/pkgs/tools/misc/mongodb-compass/default.nix index 5528bb2f97c3..4560e14c697f 100644 --- a/pkgs/tools/misc/mongodb-compass/default.nix +++ b/pkgs/tools/misc/mongodb-compass/default.nix @@ -33,7 +33,7 @@ xorg, }: let - version = "1.30.1"; + version = "1.31.0"; rpath = lib.makeLibraryPath [ alsa-lib @@ -82,7 +82,7 @@ let if stdenv.hostPlatform.system == "x86_64-linux" then fetchurl { url = "https://downloads.mongodb.com/compass/mongodb-compass_${version}_amd64.deb"; - sha256 = "sha256-MwkYgkDZmzZsthJxSK6c+0us0D4cPuDfuV1XBbeTNXE="; + sha256 = "sha256-kzGBb8h03jPCqpwKPXeqB3yPTGgvVsl1DjIyCbNgjqM="; } else throw "MongoDB compass is not supported on ${stdenv.hostPlatform.system}"; diff --git a/pkgs/tools/misc/plantuml/default.nix b/pkgs/tools/misc/plantuml/default.nix index 8c4fa097ea41..3a60c3be3692 100644 --- a/pkgs/tools/misc/plantuml/default.nix +++ b/pkgs/tools/misc/plantuml/default.nix @@ -1,12 +1,12 @@ { lib, stdenv, fetchurl, makeWrapper, jre, graphviz }: stdenv.mkDerivation rec { - version = "1.2022.2"; + version = "1.2022.3"; pname = "plantuml"; src = fetchurl { url = "mirror://sourceforge/project/plantuml/${version}/plantuml.${version}.jar"; - sha256 = "sha256-4LPR8gdpfebq5U/umxcFfqe7i6qJHLqhOAu7DfYzTY8="; + sha256 = "sha256-u40P3YFiWd419Bz1NvhIsPa7nASl/I9z/L2Q5v9eOAo="; }; nativeBuildInputs = [ makeWrapper ]; diff --git a/pkgs/tools/misc/svtplay-dl/default.nix b/pkgs/tools/misc/svtplay-dl/default.nix index ad045aa1d924..1ed9a9fd237c 100644 --- a/pkgs/tools/misc/svtplay-dl/default.nix +++ b/pkgs/tools/misc/svtplay-dl/default.nix @@ -9,13 +9,13 @@ let in stdenv.mkDerivation rec { pname = "svtplay-dl"; - version = "4.10"; + version = "4.11"; src = fetchFromGitHub { owner = "spaam"; repo = "svtplay-dl"; rev = version; - sha256 = "sha256-JK/JtGDmmTJ+g0kmM7mSJi7+/N552GKtlMkh7quOBjo="; + sha256 = "1ybip45bfmvajw046v6mxjbf3vv0y7zgfb454rjy56zhx40l232v"; }; pythonPaths = [ cryptography pyyaml requests ]; diff --git a/pkgs/tools/misc/teleconsole/default.nix b/pkgs/tools/misc/teleconsole/default.nix deleted file mode 100644 index 3bf1f5cd34b6..000000000000 --- a/pkgs/tools/misc/teleconsole/default.nix +++ /dev/null @@ -1,41 +0,0 @@ -{ lib, stdenv, buildGoPackage, fetchFromGitHub }: - -buildGoPackage rec { - pname = "teleconsole"; - version = "0.4.0"; - - goPackagePath = "github.com/gravitational/teleconsole"; - - src = fetchFromGitHub { - owner = "gravitational"; - repo = "teleconsole"; - rev = version; - sha256 = "01552422n0bj1iaaw6pvg9l1qr66r69sdsngxbcdjn1xh3mj74sm"; - }; - - srcTeleport = fetchFromGitHub { - owner = "gravitational"; - repo = "teleport"; - rev = "2cb40abd8ea8fb2915304ea4888b5b9f3e5bc223"; - sha256 = "1xw3bfnjbj88x465snwwzn4bmpmzmsrq9r0pkj388qwvfrclgnfk"; - }; - - preBuild = '' - cp -r ${srcTeleport} ./go/src/github.com/gravitational/teleport - ''; - - CGO_ENABLED = 1; - - meta = with lib; { - homepage = "https://www.teleconsole.com/"; - description = "Share your terminal session with people you trust"; - license = licenses.asl20; - # Builds for Aarch64 not possible in the current release due to - # incompatibilities further up the dependency chain. - # See: - # - https://github.com/gravitational/teleport/issues/679 - # - https://github.com/kr/pty/issues/27 - broken = stdenv.isAarch64; - maintainers = [ maintainers.kimburgess ]; - }; -} diff --git a/pkgs/tools/misc/xvfb-run/default.nix b/pkgs/tools/misc/xvfb-run/default.nix index 06e886e4d04f..11875e73f930 100644 --- a/pkgs/tools/misc/xvfb-run/default.nix +++ b/pkgs/tools/misc/xvfb-run/default.nix @@ -1,18 +1,39 @@ -{ lib, stdenv, fetchurl, makeWrapper, xorgserver, getopt -, xauth, util-linux, which, fontsConf, gawk, coreutils }: -let - xvfb-run = fetchurl { - name = "xvfb-run"; - url = "https://raw.githubusercontent.com/archlinux/svntogit-packages/9cb733cefa92af3fca608fb051d5251160c9bbff/trunk/xvfb-run"; - sha256 = "1307mz4nr8ga3qz73i8hbcdphky75rq8lrvfk2zm4kmv6pkbk611"; - }; -in -stdenv.mkDerivation { +{ lib +, stdenvNoCC +, fetchFromGitHub +, makeWrapper +, xorgserver +, getopt +, xauth +, util-linux +, which +, fontsConf +, gawk +, coreutils +, installShellFiles +, xterm +}: +stdenvNoCC.mkDerivation rec { name = "xvfb-run"; - nativeBuildInputs = [ makeWrapper ]; - buildCommand = '' + version = "1+g87f6705"; + + src = fetchFromGitHub { + owner = "archlinux"; + repo = "svntogit-packages"; + rev = "87f67054c49b32511893acd22be94c47ecd44b4a"; + sha256 = "sha256-KEg92RYgJd7naHFDKbdXEy075bt6NLcmX8VhQROHVPs="; + }; + + nativeBuildInputs = [ makeWrapper installShellFiles ]; + + dontUnpack = true; + dontBuild = true; + dontConfigure = true; + + installPhase = '' mkdir -p $out/bin - cp ${xvfb-run} $out/bin/xvfb-run + cp $src/trunk/xvfb-run $out/bin/xvfb-run + installManPage $src/trunk/xvfb-run.1 chmod a+x $out/bin/xvfb-run patchShebangs $out/bin/xvfb-run @@ -21,8 +42,23 @@ stdenv.mkDerivation { --prefix PATH : ${lib.makeBinPath [ getopt xorgserver xauth which util-linux gawk coreutils ]} ''; + doInstallCheck = true; + installCheckPhase = '' + ( + unset PATH + echo "running xterm with xvfb-run" + $out/bin/xvfb-run ${lib.getBin xterm}/bin/xterm -e true + ) + ''; + + passthru = { + updateScript = ./update.sh; + }; + meta = with lib; { + description = "Convenience script to run a virtualized X-Server"; platforms = platforms.linux; license = licenses.gpl2; + maintainers = [ maintainers.artturin ]; }; } diff --git a/pkgs/tools/misc/xvfb-run/update.sh b/pkgs/tools/misc/xvfb-run/update.sh new file mode 100755 index 000000000000..e592323154e2 --- /dev/null +++ b/pkgs/tools/misc/xvfb-run/update.sh @@ -0,0 +1,21 @@ +#!/usr/bin/env nix-shell +#!nix-shell -i bash -p curl gnused nix-prefetch jq common-updater-scripts +# shellcheck shell=bash + +set -e + +info=$(nix-prefetch-git --quiet --url "https://github.com/archlinux/svntogit-packages" --rev "refs/heads/packages/xorg-server") + +rev=$(jq -r '.rev' <<< "$info") +sha256=$(nix hash to-sri --type sha256 "$(jq -r '.sha256' <<< "$info")") +dir=$(jq -r '.path' <<< "$info") + +newXvfbsha=$(sha256sum "$dir/trunk/xvfb-run") +oldXvfbsha=$(sha256sum "$(nix build --quiet ".#xvfb-run.src" --json --no-link | jq -r '.[].outputs.out')/trunk/xvfb-run") + +if [[ "$newXvfbsha" != "$oldXvfbsha" ]]; then + ( + cd "$(git rev-parse --show-toplevel)" + update-source-version xvfb-run "1+g${rev:0:7}" "$sha256" --rev="$rev" + ) +fi diff --git a/pkgs/tools/networking/gost/default.nix b/pkgs/tools/networking/gost/default.nix index 13cac7444617..c8f42b3ad4a7 100644 --- a/pkgs/tools/networking/gost/default.nix +++ b/pkgs/tools/networking/gost/default.nix @@ -13,8 +13,33 @@ buildGoModule rec { vendorSha256 = "1cgb957ipkiix3x0x84c77a1i8l679q3kqykm1lhb4f19x61dqjh"; - # Many tests fail. - doCheck = false; + postPatch = '' + substituteInPlace http2_test.go \ + --replace "TestH2CForwardTunnel" "SkipH2CForwardTunnel" \ + --replace "TestH2ForwardTunnel" "SkipH2ForwardTunnel" + + substituteInPlace resolver_test.go \ + --replace '{NameServer{Addr: "1.1.1.1"}, "github", true},' "" \ + --replace '{NameServer{Addr: "1.1.1.1"}, "github.com", true},' "" \ + --replace '{NameServer{Addr: "1.1.1.1:53"}, "github.com", true},' "" \ + --replace '{NameServer{Addr: "1.1.1.1:53", Protocol: "tcp"}, "github.com", true},' "" \ + --replace '{NameServer{Addr: "1.1.1.1:853", Protocol: "tls"}, "github.com", true},' "" \ + --replace '{NameServer{Addr: "1.1.1.1:853", Protocol: "tls", Hostname: "cloudflare-dns.com"}, "github.com", true},' "" \ + --replace '{NameServer{Addr: "https://cloudflare-dns.com/dns-query", Protocol: "https"}, "github.com", true},' "" \ + --replace '{NameServer{Addr: "https://1.0.0.1/dns-query", Protocol: "https"}, "github.com", true},' "" + + # Skip TestShadowTCP, TestShadowUDP: #70 #71 #72 #78 #83 #85 #86 #87 #93 + substituteInPlace ss_test.go \ + --replace '{url.User("xchacha20"), url.UserPassword("xchacha20", "123456"), false},' "" \ + --replace '{url.UserPassword("xchacha20", "123456"), url.User("xchacha20"), false},' "" \ + --replace '{url.UserPassword("xchacha20", "123456"), url.UserPassword("xchacha20", "abc"), false},' "" \ + --replace '{url.UserPassword("CHACHA20-IETF-POLY1305", "123456"), url.UserPassword("CHACHA20-IETF-POLY1305", "123456"), true},' "" \ + --replace '{url.UserPassword("AES-128-GCM", "123456"), url.UserPassword("AES-128-GCM", "123456"), true},' "" \ + --replace '{url.User("AES-192-GCM"), url.UserPassword("AES-192-GCM", "123456"), false},' "" \ + --replace '{url.UserPassword("AES-192-GCM", "123456"), url.User("AES-192-GCM"), false},' "" \ + --replace '{url.UserPassword("AES-192-GCM", "123456"), url.UserPassword("AES-192-GCM", "abc"), false},' "" \ + --replace '{url.UserPassword("AES-256-GCM", "123456"), url.UserPassword("AES-256-GCM", "123456"), true},' "" + ''; meta = with lib; { description = "A simple tunnel written in golang"; diff --git a/pkgs/tools/networking/nethogs/default.nix b/pkgs/tools/networking/nethogs/default.nix index c26cb527f55e..2c7347defdd3 100644 --- a/pkgs/tools/networking/nethogs/default.nix +++ b/pkgs/tools/networking/nethogs/default.nix @@ -1,26 +1,16 @@ -{ lib, stdenv, fetchFromGitHub, fetchpatch, ncurses, libpcap }: +{ lib, stdenv, fetchFromGitHub, ncurses, libpcap }: stdenv.mkDerivation rec { pname = "nethogs"; - version = "0.8.6"; + version = "0.8.7"; src = fetchFromGitHub { owner = "raboof"; repo = "nethogs"; rev = "v${version}"; - sha256 = "0sn1sdp86akwlm4r1vmkxjjl50c0xaisk91bbz57z7kcsaphxna9"; + sha256 = "10shdwvfj90lp2fxz9260342a1c2n1jbw058qy5pyq5kh3xwr9b8"; }; - patches = [ - # Pull upstream patch for ncurses-6.3 support: - # https://github.com/raboof/nethogs/pull/210 - (fetchpatch { - name = "ncurses-6.3.patch"; - url = "https://github.com/raboof/nethogs/commit/455daf357da7f394763e5b93b11b3defe1f82ed1.patch"; - sha256 = "0wkp0yr6qg1asgvmsn7blf7rq48sh5k4n3w0nxf5869hxvkhnnzs"; - }) - ]; - buildInputs = [ ncurses libpcap ]; makeFlags = [ "VERSION=${version}" "nethogs" ]; diff --git a/pkgs/tools/security/aws-okta/default.nix b/pkgs/tools/security/aws-okta/default.nix deleted file mode 100644 index 88002fc1ce43..000000000000 --- a/pkgs/tools/security/aws-okta/default.nix +++ /dev/null @@ -1,30 +0,0 @@ -{ buildGoPackage, fetchFromGitHub, libusb1, pkg-config, lib, libiconv }: - -buildGoPackage rec { - pname = "aws-okta"; - version = "1.0.11"; - - goPackagePath = "github.com/segmentio/aws-okta"; - - src = fetchFromGitHub { - owner = "segmentio"; - repo = "aws-okta"; - rev = "v${version}"; - sha256 = "sha256-1cprKpIFgM3+lUEHNvda34nJTH4Ch3LtTRq/Dp6QBQ8="; - }; - - tags = [ "release" ]; - - ldflags = [ "-X main.Version=${version}" ]; - - nativeBuildInputs = [ pkg-config ]; - buildInputs = [ libusb1 libiconv ]; - - meta = with lib; { - description = "aws-vault like tool for Okta authentication"; - license = licenses.mit; - maintainers = with maintainers; [imalsogreg Chili-Man]; - homepage = "https://github.com/segmentio/aws-okta"; - downloadPage = "https://github.com/segmentio/aws-okta"; - }; -} diff --git a/pkgs/tools/security/vaultwarden/vault.nix b/pkgs/tools/security/vaultwarden/vault.nix index 5ec014de9593..f37fbe12f1c6 100644 --- a/pkgs/tools/security/vaultwarden/vault.nix +++ b/pkgs/tools/security/vaultwarden/vault.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { pname = "vaultwarden-vault"; - version = "2.25.0"; + version = "2.27.0"; src = fetchurl { url = "https://github.com/dani-garcia/bw_web_builds/releases/download/v${version}/bw_web_v${version}.tar.gz"; - sha256 = "sha256-0uxkHz/oHWl4MdzV7zRVKgkEqOkrl7Fd405TOf472gw="; + sha256 = "sha256-r4z45gjVB+RMZM0IE/ec0yf+rt4YDz5IpZEz5FlQSds="; }; buildCommand = '' diff --git a/pkgs/tools/system/s-tui/default.nix b/pkgs/tools/system/s-tui/default.nix index 3943a8f4eef8..1152e66bd887 100644 --- a/pkgs/tools/system/s-tui/default.nix +++ b/pkgs/tools/system/s-tui/default.nix @@ -1,12 +1,18 @@ -{ lib, python3Packages }: +{ lib +, stdenv +, python3Packages +, nix-update-script +, s-tui +, testVersion +}: python3Packages.buildPythonPackage rec { pname = "s-tui"; - version = "1.0.1"; + version = "1.1.3"; src = python3Packages.fetchPypi { inherit pname version; - sha256 = "1gqrb2xxii43j7kszy7kvv4f6hr8ac4p0m9q8i1xs5fhsqcx186i"; + sha256 = "sha256-t3h8d0yc7i3UvO8CVfBd3/3h3RfGN6yE6hutymOZUdA="; }; propagatedBuildInputs = with python3Packages; [ @@ -14,12 +20,16 @@ python3Packages.buildPythonPackage rec { psutil ]; - LC_ALL = "en_US.UTF-8"; + passthru = { + updateScript = nix-update-script { attrPath = pname; }; + tests = testVersion { package = s-tui; }; + }; meta = with lib; { homepage = "https://amanusk.github.io/s-tui/"; description = "Stress-Terminal UI monitoring tool"; license = licenses.gpl2; maintainers = with maintainers; [ infinisil ]; + broken = stdenv.isDarwin; # https://github.com/amanusk/s-tui/issues/49 }; } diff --git a/pkgs/tools/virtualization/awsebcli/default.nix b/pkgs/tools/virtualization/awsebcli/default.nix index 8230768e997a..998ae80e306e 100644 --- a/pkgs/tools/virtualization/awsebcli/default.nix +++ b/pkgs/tools/virtualization/awsebcli/default.nix @@ -11,13 +11,6 @@ let }; }); - changeVersionHash = overrideFunc: version: hash: overrideFunc (oldAttrs: rec { - inherit version; - src = oldAttrs.src.override { - inherit version hash; - }; - }); - localPython = python3.override { self = localPython; @@ -26,7 +19,15 @@ let botocore = changeVersion super.botocore.overridePythonAttrs "1.23.54" "sha256-S7m6FszO5fWiYCBJvD4ttoZTRrJVBmfzATvfM7CgHOs="; colorama = changeVersion super.colorama.overridePythonAttrs "0.4.3" "189n8hpijy14jfan4ha9f5n06mnl33cxz7ay92wjqgkr639s0vg9"; future = changeVersion super.future.overridePythonAttrs "0.16.0" "1nzy1k4m9966sikp0qka7lirh8sqrsyainyf8rk97db7nwdfv773"; - requests = changeVersionHash super.requests.overridePythonAttrs "2.26.0" "sha256-uKpY+M95P/2HgtPYyxnmbvNverpDU+7IWedGeLAbB6c="; + requests = super.requests.overridePythonAttrs (oldAttrs: rec { + version = "2.26.0"; + checkInputs = oldAttrs.checkInputs ++ [ super.trustme ]; + src = oldAttrs.src.override { + inherit version; + hash = "sha256-uKpY+M95P/2HgtPYyxnmbvNverpDU+7IWedGeLAbB6c="; + }; + } + ); six = changeVersion super.six.overridePythonAttrs "1.14.0" "02lw67hprv57hyg3cfy02y3ixjk3nzwc0dx3c4ynlvkfwkfdnsr3"; wcwidth = changeVersion super.wcwidth.overridePythonAttrs "0.1.9" "1wf5ycjx8s066rdvr0fgz4xds9a8zhs91c4jzxvvymm1c8l8cwzf"; semantic-version = changeVersion super.semantic-version.overridePythonAttrs "2.8.5" "d2cb2de0558762934679b9a104e82eca7af448c9f4974d1f3eeccff651df8a54"; diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index 3eea188a7ba4..885117c8dea3 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -87,6 +87,7 @@ mapAliases ({ aucdtect = throw "aucdtect: Upstream no longer provides download urls"; # Added 2020-12-26 avldrums-lv2 = x42-avldrums; # Added 2020-03-29 avxsynth = throw "avxsynth was removed because it was broken"; # Added 2021-05-18 + aws-okta = throw "aws-okta is on indefinite hiatus. See https://github.com/segmentio/aws-okta/issues/278"; # Added 2022-04-05; azureus = throw "azureus is now known as vuze and the version in nixpkgs was really outdated"; # Added 2021-08-02 ### B ### @@ -102,6 +103,8 @@ mapAliases ({ bcat = throw "bcat has been removed because upstream is dead"; # Added 2021-08-22 beret = throw "beret has been removed"; # Added 2021-11-16 bin_replace_string = throw "bin_replace_string has been removed: deleted by upstream"; # Added 2022-01-07 + bird2 = bird; # Added 2022-02-21 + bird6 = throw "bird6 was dropped. Use bird instead, which has support for both ipv4/ipv6"; # Added 2022-02-21 bitbucket-cli = throw "bitbucket-cli has been removed: abandoned by upstream"; # Added 2022-03-21 bitsnbots = throw "bitsnbots has been removed because it was broken and upstream missing"; # Added 2021-08-22 blastem = throw "blastem has been removed from nixpkgs as it would still require python2"; # Added 2022-01-01 @@ -112,10 +115,9 @@ mapAliases ({ brackets = throw "brackets has been removed, it was unmaintained and had open vulnerabilities"; # Added 2021-01-24 bridge_utils = throw "'bridge_utils' has been renamed to/replaced by 'bridge-utils'"; # Converted to throw 2022-02-22 bro = zeek; # Added 2019-09-29 - bird2 = bird; # Added 2022-02-21 - bird6 = throw "bird6 was dropped. Use bird instead, which has support for both ipv4/ipv6"; # Added 2022-02-21 btrfsProgs = throw "'btrfsProgs' has been renamed to/replaced by 'btrfs-progs'"; # Converted to throw 2022-02-22 bud = throw "bud has been removed: abandoned by upstream"; # Added 2022-03-14 + buttersink = throw "buttersink has been removed: abandoned by upstream"; # Added 2022-04-05 # bitwarden_rs renamed to vaultwarden with release 1.21.0 (2021-04-30) bitwarden_rs = vaultwarden; @@ -179,6 +181,7 @@ mapAliases ({ compton-git = throw "'compton-git' has been renamed to/replaced by 'compton'"; # Converted to throw 2022-02-22 concurrencykit = libck; # Added 2021-03 conntrack_tools = throw "'conntrack_tools' has been renamed to/replaced by 'conntrack-tools'"; # Converted to throw 2022-02-22 + container-linux-config-transpiler = throw "container-linux-config-transpiler is deprecated and archived by upstream"; # Added 2022-04-05 cool-old-term = throw "'cool-old-term' has been renamed to/replaced by 'cool-retro-term'"; # Converted to throw 2022-02-22 corsmisc = throw "corsmisc has been removed (upstream is gone)"; # Added 2022-01-24 couchdb = throw "couchdb was removed from nixpkgs, use couchdb3 instead"; # Added 2021-03-03 @@ -475,6 +478,7 @@ mapAliases ({ hal-flash = throw "hal-flash has been removed as Adobe Flash Player is now deprecated"; # Added 2021-02-07 hawkthorne = throw "hawkthorne has been removed because it depended on a broken version of love"; # Added 2022-01-15 + heapster = throw "Heapster is now retired. See https://github.com/kubernetes-retired/heapster/blob/master/docs/deprecation.md"; # Added 2022-04-05 heimdalFull = throw "'heimdalFull' has been renamed to/replaced by 'heimdal'"; # Converted to throw 2022-02-22 heme = throw "heme has been removed: upstream is gone"; # added 2022-02-06 hepmc = hepmc2; # Added 2019-08-05 @@ -505,6 +509,7 @@ mapAliases ({ intecture-agent = throw "intecture-agent has been removed, because it was no longer maintained upstream"; # added 2021-12-15 intecture-auth = throw "intecture-auth has been removed, because it was no longer maintained upstream"; # added 2021-12-15 intecture-cli = throw "intecture-cli has been removed, because it was no longer maintained upstream"; # added 2021-12-15 + interfacer = throw "interfacer is deprecated and archived by upstream"; # Added 2022-04-05 inter-ui = inter; # Added 2021-03-27 iops = throw "iops was removed: upstream is gone"; # Added 2022-02-06 iproute = iproute2; # moved from top-level 2021-03-14 @@ -563,6 +568,8 @@ mapAliases ({ kramdown-rfc2629 = rubyPackages.kramdown-rfc2629; # Added 2021-03-23 krename-qt5 = throw "'krename-qt5' has been renamed to/replaced by 'krename'"; # Converted to throw 2022-02-22 krita-beta = krita; # moved from top-level 2021-12-23 + kube-aws = throw "kube-aws is deprecated and archived by upstream"; # Added 2022-04-05 + kubeless = throw "kubeless is deprecated and archived by upstream"; # Added 2022-04-05 kvm = throw "'kvm' has been renamed to/replaced by 'qemu_kvm'"; # Converted to throw 2022-02-22 ### L ### @@ -972,6 +979,7 @@ mapAliases ({ proglodyte-wasm = throw "proglodyte-wasm has been removed from nixpkgs, because it is unmaintained since 5 years with zero github stars"; # Added 2021-06-30 proj_5 = throw "Proj-5 has been removed from nixpkgs, use proj instead"; # Added 2021-04-12 prometheus-cups-exporter = throw "outdated and broken by design; removed by developer"; # Added 2021-03-16 + prometheus-mesos-exporter = throw "prometheus-mesos-exporter is deprecated and archived by upstream"; # Added 2022-04-05 proxytunnel = throw "proxytunnel has been removed from nixpkgs, because it has not been update upstream since it was added to nixpkgs in 2008 and has therefore bitrotted."; # added 2021-12-15 pulseaudio-hsphfpd = throw "pulseaudio-hsphfpd upstream has been abandoned"; # Added 2022-03-23 pulseaudio-modules-bt = throw "pulseaudio-modules-bt has been abandoned, and is superseded by pulseaudio's native bt functionality"; # Added 2022-04-01 @@ -1160,6 +1168,7 @@ mapAliases ({ tahoelafs = throw "'tahoelafs' has been renamed to/replaced by 'tahoe-lafs'"; # Converted to throw 2022-02-22 tangogps = foxtrotgps; # Added 2020-01-26 tdm = throw "tdm has been removed because nobody can figure out how to fix OpenAL integration. Use precompiled binary and `steam-run` instead"; + teleconsole = throw "teleconsole is archived by upstream"; # Added 2022-04-05 telepathy-qt = throw "telepathy-qt no longer supports Qt 4. Please use libsForQt5.telepathy instead"; # Added 2020-07-02 telepathy_farstream = throw "'telepathy_farstream' has been renamed to/replaced by 'telepathy-farstream'"; # Converted to throw 2022-02-22 telepathy_gabble = throw "'telepathy_gabble' has been renamed to/replaced by 'telepathy-gabble'"; # Converted to throw 2022-02-22 diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 2ab30486c4ae..5db71a9f7682 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1546,8 +1546,6 @@ with pkgs; aws-nuke = callPackage ../tools/admin/aws-nuke { }; - aws-okta = callPackage ../tools/security/aws-okta { }; - aws-rotate-key = callPackage ../tools/admin/aws-rotate-key { }; aws-sam-cli = callPackage ../development/tools/aws-sam-cli { }; @@ -1728,8 +1726,6 @@ with pkgs; codeql = callPackage ../development/tools/analysis/codeql { }; - container-linux-config-transpiler = callPackage ../development/tools/container-linux-config-transpiler { }; - fedora-backgrounds = callPackage ../data/misc/fedora-backgrounds { }; ccextractor = callPackage ../applications/video/ccextractor { }; @@ -2487,8 +2483,6 @@ with pkgs; bustle = haskellPackages.bustle; - buttersink = callPackage ../tools/filesystems/buttersink { }; - bwm_ng = callPackage ../tools/networking/bwm-ng { }; bwbasic = callPackage ../development/interpreters/bwbasic { }; @@ -10435,8 +10429,6 @@ with pkgs; teamviewer = libsForQt515.callPackage ../applications/networking/remote/teamviewer { }; - teleconsole = callPackage ../tools/misc/teleconsole { }; - telegraf = callPackage ../servers/monitoring/telegraf { }; teleport = callPackage ../servers/teleport {}; @@ -15375,8 +15367,6 @@ with pkgs; krew = callPackage ../development/tools/krew { }; - kube-aws = callPackage ../development/tools/kube-aws { }; - kube-hunter = callPackage ../tools/security/kube-hunter { }; kubeaudit = callPackage ../tools/security/kubeaudit { }; @@ -15533,6 +15523,8 @@ with pkgs; pythonPackages = python3Packages; }; + nix-bisect = callPackage ../development/tools/misc/nix-bisect { }; + nix-build-uncached = callPackage ../development/tools/misc/nix-build-uncached { }; nexus = callPackage ../development/tools/repository-managers/nexus { @@ -21414,8 +21406,6 @@ with pkgs; hasura-cli = callPackage ../servers/hasura/cli.nix { }; - heapster = callPackage ../servers/monitoring/heapster { }; - hbase = callPackage ../servers/hbase {}; headphones = callPackage ../servers/headphones {}; @@ -22010,7 +22000,6 @@ with pkgs; prometheus-knot-exporter = callPackage ../servers/monitoring/prometheus/knot-exporter.nix { }; prometheus-lnd-exporter = callPackage ../servers/monitoring/prometheus/lnd-exporter.nix { }; prometheus-mail-exporter = callPackage ../servers/monitoring/prometheus/mail-exporter.nix { }; - prometheus-mesos-exporter = callPackage ../servers/monitoring/prometheus/mesos-exporter.nix { }; prometheus-mikrotik-exporter = callPackage ../servers/monitoring/prometheus/mikrotik-exporter.nix { }; prometheus-minio-exporter = callPackage ../servers/monitoring/prometheus/minio-exporter { }; prometheus-modemmanager-exporter = callPackage ../servers/monitoring/prometheus/modemmanager-exporter.nix { }; @@ -22940,6 +22929,9 @@ with pkgs; enableDmeventd = true; enableCmdlib = true; }; + lvm2_vdo = lvm2_dmeventd.override { + enableVDO = true; + }; maddy = callPackage ../servers/maddy { }; @@ -23521,6 +23513,8 @@ with pkgs; vndr = callPackage ../development/tools/vndr { }; + vdo = callPackage ../os-specific/linux/vdo { }; + windows = callPackages ../os-specific/windows {}; wirelesstools = callPackage ../os-specific/linux/wireless-tools { }; @@ -24380,8 +24374,6 @@ with pkgs; hasklig = callPackage ../data/fonts/hasklig {}; - interfacer = callPackage ../development/tools/interfacer { }; - maligned = callPackage ../development/tools/maligned { }; inter = callPackage ../data/fonts/inter { }; @@ -27145,8 +27137,6 @@ with pkgs; kubectl-tree = callPackage ../applications/networking/cluster/kubectl-tree { }; - kubeless = callPackage ../applications/networking/cluster/kubeless { }; - kubelogin = callPackage ../applications/networking/cluster/kubelogin { }; kubelogin-oidc = callPackage ../applications/networking/cluster/kubelogin-oidc { }; @@ -31008,6 +30998,10 @@ with pkgs; btanks = callPackage ../games/btanks { }; + bugdom = callPackage ../games/bugdom { + inherit (darwin.apple_sdk.frameworks) IOKit Foundation; + }; + bzflag = callPackage ../games/bzflag { inherit (darwin.apple_sdk.frameworks) Carbon CoreServices; }; @@ -33193,6 +33187,8 @@ with pkgs; swt = swt_jdk8; }; + argononed = callPackage ../misc/drivers/argononed { }; + attract-mode = callPackage ../applications/emulators/attract-mode { }; autotiling = python3Packages.callPackage ../misc/autotiling { }; diff --git a/pkgs/top-level/linux-kernels.nix b/pkgs/top-level/linux-kernels.nix index 26e4b3229a27..ca80ea02ffc0 100644 --- a/pkgs/top-level/linux-kernels.nix +++ b/pkgs/top-level/linux-kernels.nix @@ -317,6 +317,8 @@ in { ena = callPackage ../os-specific/linux/ena {}; + kvdo = callPackage ../os-specific/linux/kvdo {}; + liquidtux = callPackage ../os-specific/linux/liquidtux {}; v4l2loopback = callPackage ../os-specific/linux/v4l2loopback { }; diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index ad99a4b32562..48cae4598d55 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -12,8 +12,6 @@ , python }: -with lib; - self: let @@ -40,12 +38,12 @@ let } else ff; - buildPythonPackage = makeOverridablePythonPackage ( makeOverridable (callPackage ../development/interpreters/python/mk-python-derivation.nix { + buildPythonPackage = makeOverridablePythonPackage (lib.makeOverridable (callPackage ../development/interpreters/python/mk-python-derivation.nix { inherit namePrefix; # We want Python libraries to be named like e.g. "python3.6-${name}" inherit toPythonModule; # Libraries provide modules })); - buildPythonApplication = makeOverridablePythonPackage ( makeOverridable (callPackage ../development/interpreters/python/mk-python-derivation.nix { + buildPythonApplication = makeOverridablePythonPackage (lib.makeOverridable (callPackage ../development/interpreters/python/mk-python-derivation.nix { namePrefix = ""; # Python applications should not have any prefix toPythonModule = x: x; # Application does not provide modules. })); @@ -60,15 +58,14 @@ let # Get list of required Python modules given a list of derivations. requiredPythonModules = drvs: let - modules = filter hasPythonModule drvs; - in unique ([python] ++ modules ++ concatLists (catAttrs "requiredPythonModules" modules)); + modules = lib.filter hasPythonModule drvs; + in lib.unique ([python] ++ modules ++ lib.concatLists (lib.catAttrs "requiredPythonModules" modules)); # Create a PYTHONPATH from a list of derivations. This function recurses into the items to find derivations # providing Python modules. makePythonPath = drvs: lib.makeSearchPath python.sitePackages (requiredPythonModules drvs); - removePythonPrefix = name: - removePrefix namePrefix name; + removePythonPrefix = lib.removePrefix namePrefix; # Convert derivation to a Python module. toPythonModule = drv: @@ -1889,7 +1886,7 @@ in { coveralls = callPackage ../development/python-modules/coveralls { }; cppe = callPackage ../development/python-modules/cppe { - cppe = pkgs.cppe; + inherit (pkgs) cppe; }; cppheaderparser = callPackage ../development/python-modules/cppheaderparser { }; @@ -3635,7 +3632,7 @@ in { gst-python = callPackage ../development/python-modules/gst-python { inherit (pkgs) meson; - gst-plugins-base = pkgs.gst_all_1.gst-plugins-base; + inherit (pkgs.gst_all_1) gst-plugins-base; }; gtfs-realtime-bindings = callPackage ../development/python-modules/gtfs-realtime-bindings { }; @@ -4655,7 +4652,7 @@ in { }); libgpuarray = callPackage ../development/python-modules/libgpuarray { - clblas = pkgs.clblas.override { boost = self.boost; }; + clblas = pkgs.clblas.override { inherit (self) boost; }; cudaSupport = pkgs.config.cudaSupport or false; }; @@ -4669,7 +4666,7 @@ in { inherit (pkgs) lzfse; }; - libmodulemd = pipe pkgs.libmodulemd [ + libmodulemd = lib.pipe pkgs.libmodulemd [ toPythonModule (p: p.overrideAttrs (super: { @@ -4694,7 +4691,7 @@ in { libpyvivotek = callPackage ../development/python-modules/libpyvivotek { }; - libpwquality = pipe pkgs.libpwquality [ + libpwquality = lib.pipe pkgs.libpwquality [ toPythonModule (p: p.overrideAttrs (super: { meta = super.meta // { outputsToInstall = [ "py" ]; }; })) (p: p.override { enablePython = true; inherit python; }) @@ -4706,7 +4703,7 @@ in { inherit (self) python libxml2; }); - librepo = pipe pkgs.librepo [ + librepo = lib.pipe pkgs.librepo [ toPythonModule (p: p.overrideAttrs (super: { meta = super.meta // { outputsToInstall = [ "py" ]; }; })) (p: p.override { inherit python; }) @@ -4717,13 +4714,13 @@ in { librouteros = callPackage ../development/python-modules/librouteros { }; - libsass = (callPackage ../development/python-modules/libsass { + libsass = callPackage ../development/python-modules/libsass { inherit (pkgs) libsass; - }); + }; libsavitar = callPackage ../development/python-modules/libsavitar { }; - libselinux = pipe pkgs.libselinux [ + libselinux = lib.pipe pkgs.libselinux [ toPythonModule (p: p.overrideAttrs (super: { @@ -5253,10 +5250,10 @@ in { monkeyhex = callPackage ../development/python-modules/monkeyhex { }; - monosat = (pkgs.monosat.python { + monosat = pkgs.monosat.python { inherit buildPythonPackage; inherit (self) cython; - }); + }; monotonic = callPackage ../development/python-modules/monotonic { }; @@ -5786,7 +5783,7 @@ in { openapi-spec-validator = callPackage ../development/python-modules/openapi-spec-validator { }; openbabel-bindings = callPackage ../development/python-modules/openbabel-bindings { - openbabel = (callPackage ../development/libraries/openbabel { python = self.python; }); + openbabel = callPackage ../development/libraries/openbabel { inherit (self) python; }; }; opencv3 = toPythonModule (pkgs.opencv3.override { @@ -6868,7 +6865,7 @@ in { pyctr = callPackage ../development/python-modules/pyctr { }; pycuda = callPackage ../development/python-modules/pycuda { - cudatoolkit = pkgs.cudatoolkit; + inherit (pkgs) cudatoolkit; inherit (pkgs.stdenv) mkDerivation; }; @@ -9409,12 +9406,12 @@ in { snuggs = callPackage ../development/python-modules/snuggs { }; soapysdr = toPythonModule (pkgs.soapysdr.override { - python = self.python; + inherit (self) python; usePython = true; }); soapysdr-with-plugins = toPythonModule (pkgs.soapysdr-with-plugins.override { - python = self.python; + inherit (self) python; usePython = true; }); @@ -10039,9 +10036,9 @@ in { thumborPexif = callPackage ../development/python-modules/thumborpexif { }; - tkinter = let + tkinter = callPackage ../development/python-modules/tkinter { py = python.override { x11Support=true; }; - in callPackage ../development/python-modules/tkinter { py = py; }; + }; tidylib = callPackage ../development/python-modules/pytidylib { };