From 85769a8cd8012e5dfb907f49555ccc7c3c5a9d35 Mon Sep 17 00:00:00 2001 From: Lucas Savva Date: Sun, 13 Dec 2020 20:22:33 +0000 Subject: [PATCH 01/39] nixos/acme: prevent mass account creation Closes #106565 When generating multiple certificates which all share the same server + email, lego will attempt to create an account multiple times. By adding an account creation target certificates which share an account will wait for one service (chosen at config build time) to complete first. --- nixos/modules/security/acme.nix | 46 +++++++++++++++++++++++---------- nixos/tests/acme.nix | 32 ++++++++++++++++++++++- 2 files changed, 64 insertions(+), 14 deletions(-) diff --git a/nixos/modules/security/acme.nix b/nixos/modules/security/acme.nix index 8e646ae1567..4a5ffb7ba19 100644 --- a/nixos/modules/security/acme.nix +++ b/nixos/modules/security/acme.nix @@ -7,6 +7,11 @@ let numCerts = length (builtins.attrNames cfg.certs); _24hSecs = 60 * 60 * 24; + # Used to make unique paths for each cert/account config set + mkHash = with builtins; val: substring 0 20 (hashString "sha256" val); + mkAccountHash = acmeServer: data: mkHash "${toString acmeServer} ${data.keyType} ${data.email}"; + accountDirRoot = "/var/lib/acme/.lego/accounts/"; + # There are many services required to make cert renewals work. # They all follow a common structure: # - They inherit this commonServiceConfig @@ -101,11 +106,10 @@ let ${toString acmeServer} ${toString data.dnsProvider} ${toString data.ocspMustStaple} ${data.keyType} ''; - mkHash = with builtins; val: substring 0 20 (hashString "sha256" val); certDir = mkHash hashData; domainHash = mkHash "${concatStringsSep " " extraDomains} ${data.domain}"; - othersHash = mkHash "${toString acmeServer} ${data.keyType} ${data.email}"; - accountDir = "/var/lib/acme/.lego/accounts/" + othersHash; + accountHash = (mkAccountHash acmeServer data); + accountDir = accountDirRoot + accountHash; protocolOpts = if useDns then ( [ "--dns" data.dnsProvider ] @@ -142,7 +146,7 @@ let ); in { - inherit accountDir selfsignedDeps; + inherit accountHash accountDir cert selfsignedDeps; webroot = data.webroot; group = data.group; @@ -253,8 +257,7 @@ let echo '${domainHash}' > domainhash.txt # Check if we can renew - # Certificates and account credentials must exist - if [ -e 'certificates/${keyName}.key' -a -e 'certificates/${keyName}.crt' -a "$(ls -1 accounts)" ]; then + if [ -e 'certificates/${keyName}.key' -a -e 'certificates/${keyName}.crt' -a -n "$(ls -1 accounts)" ]; then # When domains are updated, there's no need to do a full # Lego run, but it's likely renew won't work if days is too low. @@ -670,15 +673,32 @@ in { "d /var/lib/acme/.lego/accounts - acme acme" ] ++ (unique (concatMap (conf: [ "d ${conf.accountDir} - acme acme" - ] ++ (optional (conf.webroot != null) "d ${conf.webroot}/.well-known/acme-challenge - acme ${conf.group}") + ] ++ (optionals (conf.webroot != null) [ + "d ${conf.webroot} - acme ${conf.group}" + "d ${conf.webroot}/.well-known - acme ${conf.group}" + "d ${conf.webroot}/.well-known/acme-challenge - acme ${conf.group}" + ]) ) (attrValues certConfigs))); - # Create some targets which can be depended on to be "active" after cert renewals - systemd.targets = mapAttrs' (cert: conf: nameValuePair "acme-finished-${cert}" { - wantedBy = [ "default.target" ]; - requires = [ "acme-${cert}.service" ] ++ conf.selfsignedDeps; - after = [ "acme-${cert}.service" ] ++ conf.selfsignedDeps; - }) certConfigs; + systemd.targets = let + # Create some targets which can be depended on to be "active" after cert renewals + finishedTargets = mapAttrs' (cert: conf: nameValuePair "acme-finished-${cert}" { + wantedBy = [ "default.target" ]; + requires = [ "acme-${cert}.service" ] ++ conf.selfsignedDeps; + after = [ "acme-${cert}.service" ] ++ conf.selfsignedDeps; + }) certConfigs; + + # Create targets to limit the number of simultaneous account creations + accountTargets = mapAttrs' (hash: confs: let + leader = "acme-${(builtins.head confs).cert}.service"; + dependantServices = map (conf: "acme-${conf.cert}.service") (builtins.tail confs); + in nameValuePair "acme-account-${hash}" { + requiredBy = dependantServices; + before = dependantServices; + requires = [ leader ]; + after = [ leader ]; + }) (groupBy (conf: conf.accountHash) (attrValues certConfigs)); + in finishedTargets // accountTargets; }) ]; diff --git a/nixos/tests/acme.nix b/nixos/tests/acme.nix index eb152cf51a6..503d77f24f9 100644 --- a/nixos/tests/acme.nix +++ b/nixos/tests/acme.nix @@ -77,6 +77,27 @@ in import ./make-test-python.nix ({ lib, ... }: { after = [ "acme-a.example.test.service" "nginx-config-reload.service" ]; }; + # Test that account creation is collated into one service + specialisation.account-creation.configuration = { nodes, pkgs, lib, ... }: let + email = "newhostmaster@example.test"; + caDomain = nodes.acme.config.test-support.acme.caDomain; + # Exit 99 to make it easier to track if this is the reason a renew failed + testScript = '' + test -e accounts/${caDomain}/${email}/account.json || exit 99 + ''; + in { + security.acme.email = lib.mkForce email; + systemd.services."b.example.test".serviceConfig.preStart = testScript; + systemd.services."c.example.test".serviceConfig.preStart = testScript; + + services.nginx.virtualHosts."b.example.test" = (vhostBase pkgs) // { + enableACME = true; + }; + services.nginx.virtualHosts."c.example.test" = (vhostBase pkgs) // { + enableACME = true; + }; + }; + # Cert config changes will not cause the nginx configuration to change. # This tests that the reload service is correctly triggered. # It also tests that postRun is exec'd as root @@ -289,7 +310,7 @@ in import ./make-test-python.nix ({ lib, ... }: { acme.start() webserver.start() - acme.wait_for_unit("default.target") + acme.wait_for_unit("network-online.target") acme.wait_for_unit("pebble.service") client.succeed("curl https://${caDomain}:15000/roots/0 > /tmp/ca.crt") @@ -314,6 +335,15 @@ in import ./make-test-python.nix ({ lib, ... }: { check_issuer(webserver, "a.example.test", "pebble") check_connection(client, "a.example.test") + with subtest("Runs 1 cert for account creation before others"): + switch_to(webserver, "account-creation") + webserver.wait_for_unit("acme-finished-a.example.test.target") + check_connection(client, "a.example.test") + webserver.wait_for_unit("acme-finished-b.example.test.target") + webserver.wait_for_unit("acme-finished-c.example.test.target") + check_connection(client, "b.example.test") + check_connection(client, "c.example.test") + with subtest("Can reload web server when cert configuration changes"): switch_to(webserver, "cert-change") webserver.wait_for_unit("acme-finished-a.example.test.target") From 351065f9705c856ffc695af290a7c7aa2b57be6b Mon Sep 17 00:00:00 2001 From: Lucas Savva Date: Sun, 13 Dec 2020 22:19:53 +0000 Subject: [PATCH 02/39] nixos/acme: reduce dependency on tmpfiles systemd-tmpfiles is no longer required for most of the critical paths in the module. The only one that remains is the webroot acme-challenge directory since there's no other good place for this to live and forcing users to do the right thing alone will only create more issues. --- nixos/modules/security/acme.nix | 49 ++++++++++++++++++--------------- 1 file changed, 27 insertions(+), 22 deletions(-) diff --git a/nixos/modules/security/acme.nix b/nixos/modules/security/acme.nix index 4a5ffb7ba19..d9d8701ac30 100644 --- a/nixos/modules/security/acme.nix +++ b/nixos/modules/security/acme.nix @@ -59,9 +59,9 @@ let ''; }; - # Previously, all certs were owned by whatever user was configured in - # config.security.acme.certs..user. Now everything is owned by and - # run by the acme user. + # Ensures that directories which are shared across all certs + # exist and have the correct user and group, since group + # is configurable on a per-cert basis. userMigrationService = { description = "Fix owner and group of all ACME certificates"; @@ -74,8 +74,13 @@ let done '') certConfigs); - # We don't want this to run every time a renewal happens - serviceConfig.RemainAfterExit = true; + serviceConfig = { + # We don't want this to run every time a renewal happens + RemainAfterExit = true; + + # These StateDirectory entries negate the need for tmpfiles + StateDirectory = "acme acme/.lego acme/.lego/accounts"; + }; }; certToConfig = cert: data: let @@ -146,7 +151,7 @@ let ); in { - inherit accountHash accountDir cert selfsignedDeps; + inherit accountHash cert selfsignedDeps; webroot = data.webroot; group = data.group; @@ -226,10 +231,14 @@ let serviceConfig = commonServiceConfig // { Group = data.group; - # AccountDir dir will be created by tmpfiles to ensure correct permissions - # And to avoid deletion during systemctl clean - # acme/.lego/${cert} is listed so that it is deleted during systemctl clean - StateDirectory = "acme/${cert} acme/.lego/${cert} acme/.lego/${cert}/${certDir}"; + # Keep in mind that these directories will be deleted if the user runs + # systemctl clean --what=state + # acme/.lego/${cert} is listed for this reason. + StateDirectory = + "acme/${cert} " + + "acme/.lego/${cert} " + + "acme/.lego/${cert}/${certDir} " + + "acme/.lego/accounts/${accountHash} "; # Needs to be space separated, but can't use a multiline string because that'll include newlines BindPaths = @@ -667,18 +676,14 @@ in { systemd.timers = mapAttrs' (cert: conf: nameValuePair "acme-${cert}" conf.renewTimer) certConfigs; - # .lego and .lego/accounts specified to fix any incorrect permissions - systemd.tmpfiles.rules = [ - "d /var/lib/acme/.lego - acme acme" - "d /var/lib/acme/.lego/accounts - acme acme" - ] ++ (unique (concatMap (conf: [ - "d ${conf.accountDir} - acme acme" - ] ++ (optionals (conf.webroot != null) [ - "d ${conf.webroot} - acme ${conf.group}" - "d ${conf.webroot}/.well-known - acme ${conf.group}" - "d ${conf.webroot}/.well-known/acme-challenge - acme ${conf.group}" - ]) - ) (attrValues certConfigs))); + systemd.tmpfiles.rules = unique ( + flatten ( + mapAttrsToList ( + cert: conf: + optional (conf.webroot != null) "d ${conf.webroot}/.well-known/acme-challenge - acme ${conf.group}" + ) certConfigs + ) + ); systemd.targets = let # Create some targets which can be depended on to be "active" after cert renewals From f670e1dc23bab2af7fdd8d7121d9f281d744ed1b Mon Sep 17 00:00:00 2001 From: Lucas Savva Date: Sun, 13 Dec 2020 22:33:27 +0000 Subject: [PATCH 03/39] nixos/acme: change service umask to 0023 Closes #106603 Some webservers (lighttpd) require that the files they are serving are world readable. We do our own chmods in the scripts anyway, and lego has sensible permissions on its output files, so this change is safe enough. --- nixos/modules/security/acme.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/security/acme.nix b/nixos/modules/security/acme.nix index d9d8701ac30..70c86d19680 100644 --- a/nixos/modules/security/acme.nix +++ b/nixos/modules/security/acme.nix @@ -24,7 +24,7 @@ let Type = "oneshot"; User = "acme"; Group = mkDefault "acme"; - UMask = 0027; + UMask = 0023; StateDirectoryMode = 750; ProtectSystem = "full"; PrivateTmp = true; From e5913db0c946b0d3408fc902858cdc2a26f7ad36 Mon Sep 17 00:00:00 2001 From: Lucas Savva Date: Sun, 13 Dec 2020 23:09:23 +0000 Subject: [PATCH 04/39] nixos/acme: update documentation and release notes The instructions on recreating the cert were missing --what=state. Also added a note on ensuring the group of manual certs is correct. --- nixos/doc/manual/release-notes/rl-2103.xml | 9 +++++++++ nixos/modules/security/acme.xml | 12 ++++++++---- 2 files changed, 17 insertions(+), 4 deletions(-) diff --git a/nixos/doc/manual/release-notes/rl-2103.xml b/nixos/doc/manual/release-notes/rl-2103.xml index 38262b50899..4138f569c38 100644 --- a/nixos/doc/manual/release-notes/rl-2103.xml +++ b/nixos/doc/manual/release-notes/rl-2103.xml @@ -439,6 +439,15 @@ been dropped from upstream releases. + + + In the ACME module, the data used to build the hash for the account + directory has changed to accomodate new features to reduce account + rate limit issues. This will trigger new account creation on the first + rebuild following this update. No issues are expected to arise from this, + thanks to the new account creation handling. + + now always ensures home directory permissions to be 0700. diff --git a/nixos/modules/security/acme.xml b/nixos/modules/security/acme.xml index 517162d1a7b..3e7c8edfdf7 100644 --- a/nixos/modules/security/acme.xml +++ b/nixos/modules/security/acme.xml @@ -162,6 +162,9 @@ services.httpd = { ."foo.example.com" = { webroot = "/var/lib/acme/.challenges"; email = "foo@example.com"; + # Ensure that the web server you use can read the generated certs + # Take a look at the group option for the web server you choose. + group = "nginx"; # Since we have a wildcard vhost to handle port 80, # we can generate certs for anything! # Just make sure your DNS resolves them. @@ -257,10 +260,11 @@ chmod 400 /var/lib/secrets/certs.secret Should you need to regenerate a particular certificate in a hurry, such as when a vulnerability is found in Let's Encrypt, there is now a convenient - mechanism for doing so. Running systemctl clean acme-example.com.service - will remove all certificate files for the given domain, allowing you to then - systemctl start acme-example.com.service to generate fresh - ones. + mechanism for doing so. Running + systemctl clean --what=state acme-example.com.service + will remove all certificate files and the account data for the given domain, + allowing you to then systemctl start acme-example.com.service + to generate fresh ones.
From bfe07e21795685d023b0595d9305071f30e3d448 Mon Sep 17 00:00:00 2001 From: Lucas Savva Date: Mon, 14 Dec 2020 19:40:28 +0000 Subject: [PATCH 05/39] nixos/acme: fix test config --- nixos/tests/acme.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/tests/acme.nix b/nixos/tests/acme.nix index 503d77f24f9..c6d393d9196 100644 --- a/nixos/tests/acme.nix +++ b/nixos/tests/acme.nix @@ -87,8 +87,8 @@ in import ./make-test-python.nix ({ lib, ... }: { ''; in { security.acme.email = lib.mkForce email; - systemd.services."b.example.test".serviceConfig.preStart = testScript; - systemd.services."c.example.test".serviceConfig.preStart = testScript; + systemd.services."b.example.test".preStart = testScript; + systemd.services."c.example.test".preStart = testScript; services.nginx.virtualHosts."b.example.test" = (vhostBase pkgs) // { enableACME = true; From 92a3a37153b159951d027a77cbb7b1ee7f92bde6 Mon Sep 17 00:00:00 2001 From: Lucas Savva Date: Tue, 29 Dec 2020 15:01:08 +0000 Subject: [PATCH 06/39] nixos/acme: Remove all systemd-tmpfiles usage - Added an ExecPostStart to acme-$cert.service when webroot is defined to create the acme-challenge directory and fix required permissions. Lego always tries to create .well-known and acme-challenge, thus if any permissions in that tree are wrong it will crash and break cert renewal. - acme-fixperms now configured with acme User and Group, however the script still runs as root. This ensures the StateDirectories are owned by the acme user. - Switched to list syntax for systemd options where multiple values are specified. --- nixos/modules/security/acme.nix | 64 +++++++++++++++++++-------------- 1 file changed, 37 insertions(+), 27 deletions(-) diff --git a/nixos/modules/security/acme.nix b/nixos/modules/security/acme.nix index 70c86d19680..d2d68eea9fd 100644 --- a/nixos/modules/security/acme.nix +++ b/nixos/modules/security/acme.nix @@ -62,24 +62,30 @@ let # Ensures that directories which are shared across all certs # exist and have the correct user and group, since group # is configurable on a per-cert basis. - userMigrationService = { - description = "Fix owner and group of all ACME certificates"; - + userMigrationService = let script = with builtins; concatStringsSep "\n" (mapAttrsToList (cert: data: '' - for fixpath in /var/lib/acme/${escapeShellArg cert} /var/lib/acme/.lego/${escapeShellArg cert}; do + chown -R acme .lego/accounts + for fixpath in ${escapeShellArg cert} .lego/${escapeShellArg cert}; do if [ -d "$fixpath" ]; then chmod -R u=rwX,g=rX,o= "$fixpath" chown -R acme:${data.group} "$fixpath" fi done '') certConfigs); + in { + description = "Fix owner and group of all ACME certificates"; - serviceConfig = { + serviceConfig = commonServiceConfig // { # We don't want this to run every time a renewal happens RemainAfterExit = true; # These StateDirectory entries negate the need for tmpfiles - StateDirectory = "acme acme/.lego acme/.lego/accounts"; + StateDirectory = [ "acme" "acme/.lego" "acme/.lego/accounts" ]; + StateDirectoryMode = 755; + WorkingDirectory = "/var/lib/acme"; + + # Run the start script as root + ExecStart = "+" + (pkgs.writeShellScript "acme-fixperms" script); }; }; @@ -153,7 +159,6 @@ let in { inherit accountHash cert selfsignedDeps; - webroot = data.webroot; group = data.group; renewTimer = { @@ -193,7 +198,10 @@ let StateDirectory = "acme/${cert}"; - BindPaths = "/var/lib/acme/.minica:/tmp/ca /var/lib/acme/${cert}:/tmp/${keyName}"; + BindPaths = [ + "/var/lib/acme/.minica:/tmp/ca" + "/var/lib/acme/${cert}:/tmp/${keyName}" + ]; }; # Working directory will be /tmp @@ -234,17 +242,19 @@ let # Keep in mind that these directories will be deleted if the user runs # systemctl clean --what=state # acme/.lego/${cert} is listed for this reason. - StateDirectory = - "acme/${cert} " + - "acme/.lego/${cert} " + - "acme/.lego/${cert}/${certDir} " + - "acme/.lego/accounts/${accountHash} "; + StateDirectory = [ + "acme/${cert}" + "acme/.lego/${cert}" + "acme/.lego/${cert}/${certDir}" + "acme/.lego/accounts/${accountHash}" + ]; # Needs to be space separated, but can't use a multiline string because that'll include newlines - BindPaths = - "${accountDir}:/tmp/accounts " + - "/var/lib/acme/${cert}:/tmp/out " + - "/var/lib/acme/.lego/${cert}/${certDir}:/tmp/certificates "; + BindPaths = [ + "${accountDir}:/tmp/accounts" + "/var/lib/acme/${cert}:/tmp/out" + "/var/lib/acme/.lego/${cert}/${certDir}:/tmp/certificates" + ]; # Only try loading the credentialsFile if the dns challenge is enabled EnvironmentFile = mkIf useDns data.credentialsFile; @@ -257,7 +267,16 @@ let ${data.postRun} fi ''); - }; + + } // (optionalAttrs (data.webroot != null) { + # Lego always tries to create .well-known/acme-challenge, but if webroot is owned + # by the wrong user then it will crash and break cert renewal. + ExecStartPre = "+" + pkgs.writeShellScript "acme-${cert}-make-webroot" '' + mkdir -p '${data.webroot}/.well-known/acme-challenge' + cd '${data.webroot}' + chown 'acme:${data.group}' . .well-known .well-known/acme-challenge + ''; + }); # Working directory will be /tmp script = '' @@ -676,15 +695,6 @@ in { systemd.timers = mapAttrs' (cert: conf: nameValuePair "acme-${cert}" conf.renewTimer) certConfigs; - systemd.tmpfiles.rules = unique ( - flatten ( - mapAttrsToList ( - cert: conf: - optional (conf.webroot != null) "d ${conf.webroot}/.well-known/acme-challenge - acme ${conf.group}" - ) certConfigs - ) - ); - systemd.targets = let # Create some targets which can be depended on to be "active" after cert renewals finishedTargets = mapAttrs' (cert: conf: nameValuePair "acme-finished-${cert}" { From a01df7dc4663650146cba65d25aaf225391f22ce Mon Sep 17 00:00:00 2001 From: Lucas Savva Date: Sat, 9 Jan 2021 19:15:03 +0000 Subject: [PATCH 07/39] nixos/acme: Incorporate review suggestions --- nixos/modules/security/acme.nix | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/nixos/modules/security/acme.nix b/nixos/modules/security/acme.nix index d2d68eea9fd..bf748d16821 100644 --- a/nixos/modules/security/acme.nix +++ b/nixos/modules/security/acme.nix @@ -63,15 +63,16 @@ let # exist and have the correct user and group, since group # is configurable on a per-cert basis. userMigrationService = let - script = with builtins; concatStringsSep "\n" (mapAttrsToList (cert: data: '' + script = with builtins; '' chown -R acme .lego/accounts + '' + (concatStringsSep "\n" (mapAttrsToList (cert: data: '' for fixpath in ${escapeShellArg cert} .lego/${escapeShellArg cert}; do if [ -d "$fixpath" ]; then chmod -R u=rwX,g=rX,o= "$fixpath" chown -R acme:${data.group} "$fixpath" fi done - '') certConfigs); + '') certConfigs)); in { description = "Fix owner and group of all ACME certificates"; @@ -704,6 +705,14 @@ in { }) certConfigs; # Create targets to limit the number of simultaneous account creations + # How it works: + # - Pick a "leader" cert service, which will be in charge of creating the account, + # and run first (requires + after) + # - Make all other cert services sharing the same account wait for the leader to + # finish before starting (requiredBy + before). + # Using a target here is fine - account creation is a one time event. Even if + # systemd clean --what=state is used to delete the account, so long as the user + # then runs one of the cert services, there won't be any issues. accountTargets = mapAttrs' (hash: confs: let leader = "acme-${(builtins.head confs).cert}.service"; dependantServices = map (conf: "acme-${conf.cert}.service") (builtins.tail confs); From 5b4f9c42442545ea0352e4cb776a0f94074fca5b Mon Sep 17 00:00:00 2001 From: Lucas Savva Date: Sat, 9 Jan 2021 19:34:54 +0000 Subject: [PATCH 08/39] nixos/acme: Set up webroot as non-root user --- nixos/modules/security/acme.nix | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/nixos/modules/security/acme.nix b/nixos/modules/security/acme.nix index bf748d16821..b0f2f7265c5 100644 --- a/nixos/modules/security/acme.nix +++ b/nixos/modules/security/acme.nix @@ -268,21 +268,19 @@ let ${data.postRun} fi ''); - - } // (optionalAttrs (data.webroot != null) { - # Lego always tries to create .well-known/acme-challenge, but if webroot is owned - # by the wrong user then it will crash and break cert renewal. - ExecStartPre = "+" + pkgs.writeShellScript "acme-${cert}-make-webroot" '' - mkdir -p '${data.webroot}/.well-known/acme-challenge' - cd '${data.webroot}' - chown 'acme:${data.group}' . .well-known .well-known/acme-challenge - ''; - }); + }; # Working directory will be /tmp script = '' set -euo pipefail + ${optionalString (data.webroot != null) '' + # Ensure the webroot exists + mkdir -p '${data.webroot}/.well-known/acme-challenge' + chown 'acme:${data.group}' ${data.webroot}/{.well-known,.well-known/acme-challenge} \ + || echo "Please fix the permissions under ${data.webroot}/.well-known/acme-challenge" && exit 1 + ''} + echo '${domainHash}' > domainhash.txt # Check if we can renew From 335f1fb25f2f784e496dc4e5560cea7e3414a7a8 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Mon, 11 Jan 2021 17:47:24 -0500 Subject: [PATCH 09/39] Adds Haskell generic builder argument modifier This is a new argument to the Haskell builder's 'shellFor' which allows the caller to adjust the 'genericBuilderArgs' after they are built. One immediate application for this is that it allows users to disable tests, enable benchmarks, etc. for _all_ packages in a given Haskell package set. This is often useful when so many of the derivations in the package set have changed that most of the cache has been invalidated, and there is no need for the user to run tests on their dependencies, but they still want these dependencies available in their 'nix-shell' environment for some package-under-development. --- pkgs/development/haskell-modules/make-package-set.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/development/haskell-modules/make-package-set.nix b/pkgs/development/haskell-modules/make-package-set.nix index 4ae3f0b2427..c6b9f1021bc 100644 --- a/pkgs/development/haskell-modules/make-package-set.nix +++ b/pkgs/development/haskell-modules/make-package-set.nix @@ -323,6 +323,7 @@ in package-set { inherit pkgs stdenv callPackage; } self // { # packages. You should set this to true if you have benchmarks defined # in your local packages that you want to be able to run with cabal benchmark doBenchmark ? false + , genericBuilderArgsModifier ? (args: args) , ... } @ args: let @@ -439,7 +440,7 @@ in package-set { inherit pkgs stdenv callPackage; } self // { # This is a derivation created with `haskellPackages.mkDerivation`. # # pkgWithCombinedDeps :: HaskellDerivation - pkgWithCombinedDeps = self.mkDerivation genericBuilderArgs; + pkgWithCombinedDeps = self.mkDerivation (genericBuilderArgsModifier genericBuilderArgs); # The derivation returned from `envFunc` for `pkgWithCombinedDeps`. # @@ -453,7 +454,7 @@ in package-set { inherit pkgs stdenv callPackage; } self // { # pkgWithCombinedDepsDevDrv :: Derivation pkgWithCombinedDepsDevDrv = pkgWithCombinedDeps.envFunc { inherit withHoogle; }; - mkDerivationArgs = builtins.removeAttrs args [ "packages" "withHoogle" "doBenchmark" ]; + mkDerivationArgs = builtins.removeAttrs args [ "genericBuilderArgsModifier" "packages" "withHoogle" "doBenchmark" ]; in pkgWithCombinedDepsDevDrv.overrideAttrs (old: mkDerivationArgs // { nativeBuildInputs = old.nativeBuildInputs ++ mkDerivationArgs.nativeBuildInputs or []; From 514a0b6d8adf9fa181549dd0ae5c52ee04846975 Mon Sep 17 00:00:00 2001 From: Lucas Savva Date: Tue, 12 Jan 2021 19:11:50 +0000 Subject: [PATCH 10/39] nixos/acme: Fix bash issue, enable debug I found a logical error in the bash script, but during debugging I enabled command echoing and realised it would be a good idea to have it enabled all the time for ease of bug reporting. --- nixos/modules/security/acme.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/nixos/modules/security/acme.nix b/nixos/modules/security/acme.nix index b0f2f7265c5..6b62e5043ca 100644 --- a/nixos/modules/security/acme.nix +++ b/nixos/modules/security/acme.nix @@ -272,13 +272,12 @@ let # Working directory will be /tmp script = '' - set -euo pipefail + set -euxo pipefail ${optionalString (data.webroot != null) '' # Ensure the webroot exists mkdir -p '${data.webroot}/.well-known/acme-challenge' - chown 'acme:${data.group}' ${data.webroot}/{.well-known,.well-known/acme-challenge} \ - || echo "Please fix the permissions under ${data.webroot}/.well-known/acme-challenge" && exit 1 + chown 'acme:${data.group}' ${data.webroot}/{.well-known,.well-known/acme-challenge} ''} echo '${domainHash}' > domainhash.txt From eadffd915463ecbc93f7dc856b7059bd816e6b6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Thu, 14 Jan 2021 08:24:27 +0100 Subject: [PATCH 11/39] nixos/wrappers: fix applying capabilities With libcap 2.41 the output of cap_to_text changed, also the original author of code hoped that this would never happen. To counter this now the security-wrapper only relies on the syscall ABI, which is more stable and robust than string parsing. If new breakages occur this will be more obvious because version numbers will be incremented. Furthermore all errors no make execution explicitly fail instead of hiding errors behind debug environment variables and the code style was more consistent with no goto fail; goto fail; vulnerabilities (https://gotofail.com/) --- nixos/modules/security/wrappers/default.nix | 12 +- nixos/modules/security/wrappers/wrapper.c | 322 ++++++++++---------- nixos/modules/security/wrappers/wrapper.nix | 21 ++ 3 files changed, 181 insertions(+), 174 deletions(-) create mode 100644 nixos/modules/security/wrappers/wrapper.nix diff --git a/nixos/modules/security/wrappers/default.nix b/nixos/modules/security/wrappers/default.nix index de6213714ac..3cbf22fea7a 100644 --- a/nixos/modules/security/wrappers/default.nix +++ b/nixos/modules/security/wrappers/default.nix @@ -10,16 +10,8 @@ let (n: v: (if v ? program then v else v // {program=n;})) wrappers); - securityWrapper = pkgs.stdenv.mkDerivation { - name = "security-wrapper"; - phases = [ "installPhase" "fixupPhase" ]; - buildInputs = [ pkgs.libcap pkgs.libcap_ng pkgs.linuxHeaders ]; - hardeningEnable = [ "pie" ]; - installPhase = '' - mkdir -p $out/bin - $CC -Wall -O2 -DWRAPPER_DIR=\"${parentWrapperDir}\" \ - -lcap-ng -lcap ${./wrapper.c} -o $out/bin/security-wrapper - ''; + securityWrapper = pkgs.callPackage ./wrapper.nix { + inherit parentWrapperDir; }; ###### Activation script for the setcap wrappers diff --git a/nixos/modules/security/wrappers/wrapper.c b/nixos/modules/security/wrappers/wrapper.c index 494e9e93ac2..529669facda 100644 --- a/nixos/modules/security/wrappers/wrapper.c +++ b/nixos/modules/security/wrappers/wrapper.c @@ -4,15 +4,17 @@ #include #include #include +#include #include #include #include #include #include -#include #include #include -#include +#include +#include +#include // Make sure assertions are not compiled out, we use them to codify // invariants about this program and we want it to fail fast and @@ -23,182 +25,172 @@ extern char **environ; // The WRAPPER_DIR macro is supplied at compile time so that it cannot // be changed at runtime -static char * wrapperDir = WRAPPER_DIR; +static char *wrapper_dir = WRAPPER_DIR; // Wrapper debug variable name -static char * wrapperDebug = "WRAPPER_DEBUG"; +static char *wrapper_debug = "WRAPPER_DEBUG"; -// Update the capabilities of the running process to include the given -// capability in the Ambient set. -static void set_ambient_cap(cap_value_t cap) -{ - capng_get_caps_process(); +#define CAP_SETPCAP 8 - if (capng_update(CAPNG_ADD, CAPNG_INHERITABLE, (unsigned long) cap)) - { - perror("cannot raise the capability into the Inheritable set\n"); - exit(1); +#if __BYTE_ORDER == __BIG_ENDIAN +#define LE32_TO_H(x) bswap_32(x) +#else +#define LE32_TO_H(x) (x) +#endif + +int get_last_cap(unsigned *last_cap) { + FILE* file = fopen("/proc/sys/kernel/cap_last_cap", "r"); + if (file == NULL) { + int saved_errno = errno; + fprintf(stderr, "failed to open /proc/sys/kernel/cap_last_cap: %s\n", strerror(errno)); + return -saved_errno; } - - capng_apply(CAPNG_SELECT_CAPS); - - if (prctl(PR_CAP_AMBIENT, PR_CAP_AMBIENT_RAISE, (unsigned long) cap, 0, 0)) - { - perror("cannot raise the capability into the Ambient set\n"); - exit(1); + int res = fscanf(file, "%u", last_cap); + if (res == EOF) { + int saved_errno = errno; + fprintf(stderr, "could not read number from /proc/sys/kernel/cap_last_cap: %s\n", strerror(errno)); + return -saved_errno; } + fclose(file); + return 0; } // Given the path to this program, fetch its configured capability set // (as set by `setcap ... /path/to/file`) and raise those capabilities // into the Ambient set. -static int make_caps_ambient(const char *selfPath) -{ - cap_t caps = cap_get_file(selfPath); - - if(!caps) - { - if(getenv(wrapperDebug)) - fprintf(stderr, "no caps set or could not retrieve the caps for this file, not doing anything..."); +static int make_caps_ambient(const char *self_path) { + struct vfs_ns_cap_data data = {}; + int r = getxattr(self_path, "security.capability", &data, sizeof(data)); + if (r < 0) { + if (errno == ENODATA) { + // no capabilities set + return 0; + } + fprintf(stderr, "cannot get capabilities for %s: %s", self_path, strerror(errno)); return 1; } - // We use `cap_to_text` and iteration over the tokenized result - // string because, as of libcap's current release, there is no - // facility for retrieving an array of `cap_value_t`'s that can be - // given to `prctl` in order to lift that capability into the - // Ambient set. - // - // Some discussion was had around shot-gunning all of the - // capabilities we know about into the Ambient set but that has a - // security smell and I deemed the risk of the current - // implementation crashing the program to be lower than the risk - // of a privilege escalation security hole being introduced by - // raising all capabilities, even ones we didn't intend for the - // program, into the Ambient set. - // - // `cap_t` which is returned by `cap_get_*` is an opaque type and - // even if we could retrieve the bitmasks (which, as far as I can - // tell we cannot) in order to get the `cap_value_t` - // representation for each capability we would have to take the - // total number of capabilities supported and iterate over the - // sequence of integers up-to that maximum total, testing each one - // against the bitmask ((bitmask >> n) & 1) to see if it's set and - // aggregating each "capability integer n" that is set in the - // bitmask. - // - // That, combined with the fact that we can't easily get the - // bitmask anyway seemed much more brittle than fetching the - // `cap_t`, transforming it into a textual representation, - // tokenizing the string, and using `cap_from_name` on the token - // to get the `cap_value_t` that we need for `prctl`. There is - // indeed risk involved if the output string format of - // `cap_to_text` ever changes but at this time the combination of - // factors involving the below list have led me to the conclusion - // that the best implementation at this time is reading then - // parsing with *lots of documentation* about why we're doing it - // this way. - // - // 1. No explicit API for fetching an array of `cap_value_t`'s or - // for transforming a `cap_t` into such a representation - // 2. The risk of a crash is lower than lifting all capabilities - // into the Ambient set - // 3. libcap is depended on heavily in the Linux ecosystem so - // there is a high chance that the output representation of - // `cap_to_text` will not change which reduces our risk that - // this parsing step will cause a crash - // - // The preferred method, should it ever be available in the - // future, would be to use libcap API's to transform the result - // from a `cap_get_*` into an array of `cap_value_t`'s that can - // then be given to prctl. - // - // - Parnell - ssize_t capLen; - char* capstr = cap_to_text(caps, &capLen); - cap_free(caps); - - // TODO: For now, we assume that cap_to_text always starts its - // result string with " =" and that the first capability is listed - // immediately after that. We should verify this. - assert(capLen >= 2); - capstr += 2; - - char* saveptr = NULL; - for(char* tok = strtok_r(capstr, ",", &saveptr); tok; tok = strtok_r(NULL, ",", &saveptr)) - { - cap_value_t capnum; - if (cap_from_name(tok, &capnum)) - { - if(getenv(wrapperDebug)) - fprintf(stderr, "cap_from_name failed, skipping: %s", tok); - } - else if (capnum == CAP_SETPCAP) - { - // Check for the cap_setpcap capability, we set this on the - // wrapper so it can elevate the capabilities to the Ambient - // set but we do not want to propagate it down into the - // wrapped program. - // - // TODO: what happens if that's the behavior you want - // though???? I'm preferring a strict vs. loose policy here. - if(getenv(wrapperDebug)) - fprintf(stderr, "cap_setpcap in set, skipping it\n"); - } - else - { - set_ambient_cap(capnum); - - if(getenv(wrapperDebug)) - fprintf(stderr, "raised %s into the Ambient capability set\n", tok); - } + size_t size; + uint32_t version = LE32_TO_H(data.magic_etc) & VFS_CAP_REVISION_MASK; + switch (version) { + case VFS_CAP_REVISION_1: + size = VFS_CAP_U32_1; + break; + case VFS_CAP_REVISION_2: + case VFS_CAP_REVISION_3: + size = VFS_CAP_U32_3; + break; + default: + fprintf(stderr, "BUG! Unsupported capability version 0x%x on %s. Report to NixOS bugtracker\n", version, self_path); + return 1; + } + + const struct __user_cap_header_struct header = { + .version = _LINUX_CAPABILITY_VERSION_3, + .pid = getpid(), + }; + struct __user_cap_data_struct user_data[2] = {}; + + for (size_t i = 0; i < size; i++) { + // merge inheritable & permitted into one + user_data[i].permitted = user_data[i].inheritable = + LE32_TO_H(data.data[i].inheritable) | LE32_TO_H(data.data[i].permitted); + } + + if (syscall(SYS_capset, &header, &user_data) < 0) { + fprintf(stderr, "failed to inherit capabilities: %s", strerror(errno)); + return 1; + } + unsigned last_cap; + r = get_last_cap(&last_cap); + if (r < 0) { + return 1; + } + uint64_t set = user_data[0].permitted | (uint64_t)user_data[1].permitted << 32; + for (unsigned cap = 0; cap < last_cap; cap++) { + if (!(set & (1ULL << cap))) { + continue; + } + + // Check for the cap_setpcap capability, we set this on the + // wrapper so it can elevate the capabilities to the Ambient + // set but we do not want to propagate it down into the + // wrapped program. + // + // TODO: what happens if that's the behavior you want + // though???? I'm preferring a strict vs. loose policy here. + if (cap == CAP_SETPCAP) { + if(getenv(wrapper_debug)) { + fprintf(stderr, "cap_setpcap in set, skipping it\n"); + } + continue; + } + if (prctl(PR_CAP_AMBIENT, PR_CAP_AMBIENT_RAISE, (unsigned long) cap, 0, 0)) { + fprintf(stderr, "cannot raise the capability %d into the ambient set: %s\n", cap, strerror(errno)); + return 1; + } + if (getenv(wrapper_debug)) { + fprintf(stderr, "raised %d into the ambient capability set\n", cap); + } } - cap_free(capstr); return 0; } -int main(int argc, char * * argv) -{ - // I *think* it's safe to assume that a path from a symbolic link - // should safely fit within the PATH_MAX system limit. Though I'm - // not positive it's safe... - char selfPath[PATH_MAX]; - int selfPathSize = readlink("/proc/self/exe", selfPath, sizeof(selfPath)); +int readlink_malloc(const char *p, char **ret) { + size_t l = FILENAME_MAX+1; + int r; - assert(selfPathSize > 0); + for (;;) { + char *c = calloc(l, sizeof(char)); + if (!c) { + return -ENOMEM; + } - // Assert we have room for the zero byte, this ensures the path - // isn't being truncated because it's too big for the buffer. - // - // A better way to handle this might be to use something like the - // whereami library (https://github.com/gpakosz/whereami) or a - // loop that resizes the buffer and re-reads the link if the - // contents are being truncated. - assert(selfPathSize < sizeof(selfPath)); + ssize_t n = readlink(p, c, l-1); + if (n < 0) { + r = -errno; + free(c); + return r; + } - // Set the zero byte since readlink doesn't do that for us. - selfPath[selfPathSize] = '\0'; + if ((size_t) n < l-1) { + c[n] = 0; + *ret = c; + return 0; + } + + free(c); + l *= 2; + } +} + +int main(int argc, char **argv) { + char *self_path = NULL; + int self_path_size = readlink_malloc("/proc/self/exe", &self_path); + if (self_path_size < 0) { + fprintf(stderr, "cannot readlink /proc/self/exe: %s", strerror(-self_path_size)); + } // Make sure that we are being executed from the right location, - // i.e., `safeWrapperDir'. This is to prevent someone from creating + // i.e., `safe_wrapper_dir'. This is to prevent someone from creating // hard link `X' from some other location, along with a false // `X.real' file, to allow arbitrary programs from being executed // with elevated capabilities. - int len = strlen(wrapperDir); - if (len > 0 && '/' == wrapperDir[len - 1]) + int len = strlen(wrapper_dir); + if (len > 0 && '/' == wrapper_dir[len - 1]) --len; - assert(!strncmp(selfPath, wrapperDir, len)); - assert('/' == wrapperDir[0]); - assert('/' == selfPath[len]); + assert(!strncmp(self_path, wrapper_dir, len)); + assert('/' == wrapper_dir[0]); + assert('/' == self_path[len]); // Make *really* *really* sure that we were executed as - // `selfPath', and not, say, as some other setuid program. That + // `self_path', and not, say, as some other setuid program. That // is, our effective uid/gid should match the uid/gid of - // `selfPath'. + // `self_path'. struct stat st; - assert(lstat(selfPath, &st) != -1); + assert(lstat(self_path, &st) != -1); assert(!(st.st_mode & S_ISUID) || (st.st_uid == geteuid())); assert(!(st.st_mode & S_ISGID) || (st.st_gid == getegid())); @@ -207,33 +199,35 @@ int main(int argc, char * * argv) assert(!(st.st_mode & (S_IWGRP | S_IWOTH))); // Read the path of the real (wrapped) program from .real. - char realFN[PATH_MAX + 10]; - int realFNSize = snprintf (realFN, sizeof(realFN), "%s.real", selfPath); - assert (realFNSize < sizeof(realFN)); + char real_fn[PATH_MAX + 10]; + int real_fn_size = snprintf(real_fn, sizeof(real_fn), "%s.real", self_path); + assert(real_fn_size < sizeof(real_fn)); - int fdSelf = open(realFN, O_RDONLY); - assert (fdSelf != -1); + int fd_self = open(real_fn, O_RDONLY); + assert(fd_self != -1); - char sourceProg[PATH_MAX]; - len = read(fdSelf, sourceProg, PATH_MAX); - assert (len != -1); - assert (len < sizeof(sourceProg)); - assert (len > 0); - sourceProg[len] = 0; + char source_prog[PATH_MAX]; + len = read(fd_self, source_prog, PATH_MAX); + assert(len != -1); + assert(len < sizeof(source_prog)); + assert(len > 0); + source_prog[len] = 0; - close(fdSelf); + close(fd_self); // Read the capabilities set on the wrapper and raise them in to - // the Ambient set so the program we're wrapping receives the + // the ambient set so the program we're wrapping receives the // capabilities too! - make_caps_ambient(selfPath); + if (make_caps_ambient(self_path) != 0) { + free(self_path); + return 1; + } + free(self_path); - execve(sourceProg, argv, environ); + execve(source_prog, argv, environ); fprintf(stderr, "%s: cannot run `%s': %s\n", - argv[0], sourceProg, strerror(errno)); + argv[0], source_prog, strerror(errno)); - exit(1); + return 1; } - - diff --git a/nixos/modules/security/wrappers/wrapper.nix b/nixos/modules/security/wrappers/wrapper.nix new file mode 100644 index 00000000000..e3ca2f653fa --- /dev/null +++ b/nixos/modules/security/wrappers/wrapper.nix @@ -0,0 +1,21 @@ +{ stdenv, linuxHeaders, parentWrapperDir, debug ? false }: +# For testing: +# $ nix-build -E 'with import {}; pkgs.callPackage ./wrapper.nix { parentWrapperDir = "/run/wrappers"; debug = true; }' +stdenv.mkDerivation { + name = "security-wrapper"; + buildInputs = [ linuxHeaders ]; + dontUnpack = true; + hardeningEnable = [ "pie" ]; + CFLAGS = [ + "-DWRAPPER_DIR=\"${parentWrapperDir}\"" + ] ++ (if debug then [ + "-Werror" "-Og" "-g" + ] else [ + "-Wall" "-O2" + ]); + dontStrip = debug; + installPhase = '' + mkdir -p $out/bin + $CC $CFLAGS ${./wrapper.c} -o $out/bin/security-wrapper + ''; +} From dbd05a528960524b46cd40a81d9f86e400aed5fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Thu, 14 Jan 2021 09:00:34 +0000 Subject: [PATCH 12/39] Update nixos/modules/security/wrappers/wrapper.nix Co-authored-by: Cole Helbling --- nixos/modules/security/wrappers/wrapper.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/security/wrappers/wrapper.nix b/nixos/modules/security/wrappers/wrapper.nix index e3ca2f653fa..e3620fb222d 100644 --- a/nixos/modules/security/wrappers/wrapper.nix +++ b/nixos/modules/security/wrappers/wrapper.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation { dontUnpack = true; hardeningEnable = [ "pie" ]; CFLAGS = [ - "-DWRAPPER_DIR=\"${parentWrapperDir}\"" + ''-DWRAPPER_DIR="${parentWrapperDir}"'' ] ++ (if debug then [ "-Werror" "-Og" "-g" ] else [ From 95d0e6c1b8adca3a03c5e79fc1dba84b5c1f68d6 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Thu, 14 Jan 2021 11:36:42 -0500 Subject: [PATCH 13/39] Adds Haskell generic args builder documentation --- .../haskell-modules/make-package-set.nix | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/pkgs/development/haskell-modules/make-package-set.nix b/pkgs/development/haskell-modules/make-package-set.nix index c6b9f1021bc..9aa353aac13 100644 --- a/pkgs/development/haskell-modules/make-package-set.nix +++ b/pkgs/development/haskell-modules/make-package-set.nix @@ -323,6 +323,36 @@ in package-set { inherit pkgs stdenv callPackage; } self // { # packages. You should set this to true if you have benchmarks defined # in your local packages that you want to be able to run with cabal benchmark doBenchmark ? false + # An optional function that can modify the generic builder arguments + # for the fake package that shellFor uses to construct its environment. + # + # Example: + # let + # # elided... + # haskellPkgs = pkgs.haskell.packages.ghc884.override (hpArgs: { + # overrides = pkgs.lib.composeExtensions (hpArgs.overrides or (_: _: { })) ( + # _hfinal: hprev: { + # mkDerivation = args: hprev.mkDerivation ({ + # doCheck = false; + # doBenchmark = false; + # doHoogle = true; + # doHaddock = true; + # enableLibraryProfiling = false; + # enableExecutableProfiling = false; + # } // args); + # } + # ); + # }); + # in + # hpkgs.shellFor { + # packages = p: [ p.foo ]; + # genericBuilderArgsModifier = args: args // { doCheck = true; doBenchmark = true }; + # } + # + # This will disable tests and benchmarks for everything in "haskellPkgs" + # (which will invalidate the binary cache), and then re-enable them + # for the "shellFor" environment (ensuring that any test/benchmark + # dependencies for "foo" will be available within the nix-shell). , genericBuilderArgsModifier ? (args: args) , ... } @ args: From 9846ccd0a9a3b38ef6d44d4c350530ec8e348a87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Tue, 19 Jan 2021 18:47:50 +0100 Subject: [PATCH 14/39] postfix: 3.5.8 -> 3.5.9 http://www.postfix.org/announcements/postfix-3.5.9.html --- pkgs/servers/mail/postfix/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/mail/postfix/default.nix b/pkgs/servers/mail/postfix/default.nix index deea480b2f7..6862507c629 100644 --- a/pkgs/servers/mail/postfix/default.nix +++ b/pkgs/servers/mail/postfix/default.nix @@ -26,11 +26,11 @@ in stdenv.mkDerivation rec { pname = "postfix"; - version = "3.5.8"; + version = "3.5.9"; src = fetchurl { url = "ftp://ftp.cs.uu.nl/mirror/postfix/postfix-release/official/${pname}-${version}.tar.gz"; - sha256 = "0vs50z5p5xcrdbbkb0dnbx1sk5fx8d2z97sw2p2iip1yrwl2cn12"; + sha256 = "0avn00drmk9c9mjynfvcmir72ss9s3mckdhjm3mmnhas2sixbkji"; }; nativeBuildInputs = [ makeWrapper m4 ]; From b14d9d7dc44ec4306154c88d2df62b282e45c9ee Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Wed, 20 Jan 2021 07:19:03 +0000 Subject: [PATCH 15/39] mapnik: 3.0.23 -> 3.1.0 --- pkgs/development/libraries/mapnik/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/mapnik/default.nix b/pkgs/development/libraries/mapnik/default.nix index cf0539fe266..e76f59fdaec 100644 --- a/pkgs/development/libraries/mapnik/default.nix +++ b/pkgs/development/libraries/mapnik/default.nix @@ -8,12 +8,12 @@ stdenv.mkDerivation rec { pname = "mapnik"; - version = "3.0.23"; + version = "3.1.0"; src = fetchzip { # this one contains all git submodules and is cheaper than fetchgit url = "https://github.com/mapnik/mapnik/releases/download/v${version}/mapnik-v${version}.tar.bz2"; - sha256 = "1754m8y7fyk0dyf7cglhavsk66g5kdqhnmgicib1jkcgjbl69f15"; + sha256 = "sha256-qqPqN4vs3ZsqKgnx21yQhX8OzHca/0O+3mvQ/vnC5EY="; }; # a distinct dev output makes python-mapnik fail From d9ed03a3882c98ba1ff980262c400a020a674bdd Mon Sep 17 00:00:00 2001 From: Andrew Childs Date: Fri, 22 Jan 2021 12:44:25 +0900 Subject: [PATCH 16/39] redis: 6.0.6 -> 6.0.10 --- pkgs/servers/nosql/redis/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/nosql/redis/default.nix b/pkgs/servers/nosql/redis/default.nix index 799c26e82fd..9eac9e2f256 100644 --- a/pkgs/servers/nosql/redis/default.nix +++ b/pkgs/servers/nosql/redis/default.nix @@ -3,12 +3,12 @@ }: stdenv.mkDerivation rec { - version = "6.0.6"; + version = "6.0.10"; pname = "redis"; src = fetchurl { url = "http://download.redis.io/releases/${pname}-${version}.tar.gz"; - sha256 = "151x6qicmrmlxkmiwi2vdq8p50d52b9gglp8csag6pmgcfqlkb8j"; + sha256 = "1gc529nfh8frk4pynyjlnmzvwa0j9r5cmqwyd7537sywz6abifvr"; }; # Cross-compiling fixes From c3eeb88e535263914a41473e9edc12f691a848ff Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Fri, 22 Jan 2021 15:08:40 +0000 Subject: [PATCH 17/39] mandelbulber: 2.23 -> 2.24 --- pkgs/applications/graphics/mandelbulber/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/graphics/mandelbulber/default.nix b/pkgs/applications/graphics/mandelbulber/default.nix index 384ddac5b4c..a7a40966134 100644 --- a/pkgs/applications/graphics/mandelbulber/default.nix +++ b/pkgs/applications/graphics/mandelbulber/default.nix @@ -19,13 +19,13 @@ assert withOpenCL -> ocl-icd != null; mkDerivation rec { pname = "mandelbulber"; - version = "2.23"; + version = "2.24"; src = fetchFromGitHub { owner = "buddhi1980"; repo = "mandelbulber2"; rev = version; - sha256 = "08izphj7jyk3wsq3qbzaf2fplys80vr39wliqc1i4c5cr90nrq1l"; + sha256 = "sha256-JgpYGzD2FsqcCWnOKBiVCxUKqLfT4S++uUBZekhGWmA="; }; nativeBuildInputs = [ From 03ef0aae0a16f989228dc36ee3d4e25b511be87b Mon Sep 17 00:00:00 2001 From: Ben Wolsieffer Date: Sat, 23 Jan 2021 19:57:41 -0500 Subject: [PATCH 18/39] spdlog: propagate fmt fmt is needed by the CMake config script. --- pkgs/development/libraries/spdlog/default.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/spdlog/default.nix b/pkgs/development/libraries/spdlog/default.nix index ac74b74ccf1..7b6c98bebe8 100644 --- a/pkgs/development/libraries/spdlog/default.nix +++ b/pkgs/development/libraries/spdlog/default.nix @@ -14,7 +14,8 @@ let }; nativeBuildInputs = [ cmake ]; - buildInputs = [ fmt ]; + # spdlog <1.3 uses a bundled version of fmt + propagatedBuildInputs = lib.optional (lib.versionAtLeast version "1.3") fmt; cmakeFlags = [ "-DSPDLOG_BUILD_SHARED=${if stdenv.hostPlatform.isStatic then "OFF" else "ON"}" @@ -25,7 +26,9 @@ let "-DSPDLOG_FMT_EXTERNAL=ON" ]; - outputs = [ "out" "doc" ]; + outputs = [ "out" "doc" ] + # spdlog <1.4 is header only, no need to split libraries and headers + ++ lib.optional (lib.versionAtLeast version "1.4") "dev"; postInstall = '' mkdir -p $out/share/doc/spdlog From 190173e05b41153cefe0fefb3c0771e6f42e8c07 Mon Sep 17 00:00:00 2001 From: sternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org> Date: Mon, 25 Jan 2021 14:03:26 +0100 Subject: [PATCH 19/39] zz: adjust upstream URLs --- pkgs/development/compilers/zz/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/compilers/zz/default.nix b/pkgs/development/compilers/zz/default.nix index 273873c8801..cbf5e3bd9d8 100644 --- a/pkgs/development/compilers/zz/default.nix +++ b/pkgs/development/compilers/zz/default.nix @@ -5,7 +5,7 @@ rustPlatform.buildRustPackage rec { version = "0.1"; src = fetchFromGitHub { - owner = "aep"; + owner = "zetzit"; repo = "zz"; rev = version; sha256 = "0kqrfm2r9wn0p2c3lcprsy03p9qhrwjs990va8qi59jp704l84ad"; @@ -21,7 +21,7 @@ rustPlatform.buildRustPackage rec { meta = with lib; { description = "πŸΊπŸ™ ZetZ a zymbolic verifier and tranzpiler to bare metal C"; - homepage = "https://github.com/aep/zz"; + homepage = "https://github.com/zetzit/zz"; license = licenses.mit; maintainers = [ maintainers.marsam ]; }; From 4aa937d2e212285913563517f62641cbe6c1a129 Mon Sep 17 00:00:00 2001 From: sternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org> Date: Mon, 25 Jan 2021 14:25:42 +0100 Subject: [PATCH 20/39] zz: install modules shipped with the compiler Previously zz wouldn't be able to compile anything using standard modules like mem or log out of the box. To fix this we copy the modules directory included in the source to $out/share/zz/modules and add an entry to ZZ_MODULE_PATHS in the wrapper around zz. We also remove a search path entry which used to reference /build because it used CARGO_MANIFEST_DIR at build time. The default search path now includes: * /nix/store/modules * $out/share/zz/modules * $(pwd)/modules Patching out /nix/store/modules would be kind of cumbersome as it is a multi-line entry, but it probably does no harm and fine to leave in. An issue arising by this PR might be that the added search path entry may take priority over an user specified location even though we use --suffix. This is because zz internally uses a HashSet which has no guaranteed iteration order. This may lead to unexpected behavior for users wo previously provided custom versions of the standard modules via ZZ_MODULE_PATHS. However, this is an issue in upstream issue as well where ZZ_MODULE_PATHS may or may not take priority over the compiled in search path, so this issue should probably be resolved upstream (I'll file a report or PR). --- pkgs/development/compilers/zz/default.nix | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/pkgs/development/compilers/zz/default.nix b/pkgs/development/compilers/zz/default.nix index cbf5e3bd9d8..4d29e314c67 100644 --- a/pkgs/development/compilers/zz/default.nix +++ b/pkgs/development/compilers/zz/default.nix @@ -15,8 +15,18 @@ rustPlatform.buildRustPackage rec { cargoSha256 = "0yllcqxyyhwr9h0z8q84l0ms8x6jrqhpg79ik4xng6h5yf4ab0pq"; + postPatch = '' + # remove search path entry which would reference /build + sed -i '/env!("CARGO_MANIFEST_DIR")/d' src/lib.rs + ''; + postInstall = '' - wrapProgram $out/bin/zz --prefix PATH ":" "${lib.getBin z3}/bin" + mkdir -p "$out/share/zz" + cp -r modules "$out/share/zz/" + + wrapProgram $out/bin/zz \ + --prefix PATH ":" "${lib.getBin z3}/bin" \ + --suffix ZZ_MODULE_PATHS ":" "$out/share/zz/modules" ''; meta = with lib; { From 2c03cf9491e1c29bd8a3777a18a20926da2119dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Baylac-Jacqu=C3=A9?= Date: Sat, 7 Nov 2020 18:41:44 +0100 Subject: [PATCH 21/39] pleroma-otp: init at 2.2.2 Co-authored-by: flokli --- pkgs/servers/pleroma-otp/default.nix | 66 ++++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 2 files changed, 68 insertions(+) create mode 100644 pkgs/servers/pleroma-otp/default.nix diff --git a/pkgs/servers/pleroma-otp/default.nix b/pkgs/servers/pleroma-otp/default.nix new file mode 100644 index 00000000000..756f2fc33dc --- /dev/null +++ b/pkgs/servers/pleroma-otp/default.nix @@ -0,0 +1,66 @@ +{ stdenv +, autoPatchelfHook +, fetchurl +, file +, makeWrapper +, ncurses +, nixosTests +, openssl +, unzip +, zlib +}: +stdenv.mkDerivation { + pname = "pleroma-otp"; + version = "2.2.2"; + + # To find the latest binary release stable link, have a look at + # the CI pipeline for the latest commit of the stable branch + # https://git.pleroma.social/pleroma/pleroma/-/tree/stable + src = { + aarch64-linux = fetchurl { + url = "https://git.pleroma.social/pleroma/pleroma/-/jobs/175288/artifacts/download"; + sha256 = "107kp5zqwq1lixk1cwkx4v7zpm0h248xzlm152aj36ghb43j2snw"; + }; + x86_64-linux = fetchurl { + url = "https://git.pleroma.social/pleroma/pleroma/-/jobs/175284/artifacts/download"; + sha256 = "1c6l04gga9iigm249ywwcrjg6wzy8iiid652mws3j9dnl71w2sim"; + }; + }."${stdenv.hostPlatform.system}"; + + nativeBuildInputs = [ unzip ]; + + buildInputs = [ + autoPatchelfHook + file + makeWrapper + ncurses + openssl + zlib + ]; + + # mkDerivation fails to detect the zip nature of $src due to the + # missing .zip extension. + # Let's unpack the archive explicitely. + unpackCmd = "unzip $curSrc"; + + installPhase = '' + mkdir $out + cp -r * $out''; + + # Pleroma is using the project's root path (here the store path) + # as its TMPDIR. + # Patching it to move the tmp dir to the actual tmpdir + postFixup = '' + wrapProgram $out/bin/pleroma \ + --set-default RELEASE_TMP "/tmp" + wrapProgram $out/bin/pleroma_ctl \ + --set-default RELEASE_TMP "/tmp"''; + + meta = { + description = "ActivityPub microblogging server"; + homepage = https://git.pleroma.social/pleroma/pleroma; + license = stdenv.lib.licenses.agpl3; + maintainers = with stdenv.lib.maintainers; [ ninjatrappeur ]; + platforms = [ "x86_64-linux" "aarch64-linux" ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index b5f88bdb8e7..6eb9ef1f46e 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -7020,6 +7020,8 @@ in tautulli = python3Packages.callPackage ../servers/tautulli { }; + pleroma-otp = callPackage ../servers/pleroma-otp { }; + ploticus = callPackage ../tools/graphics/ploticus { libpng = libpng12; }; From 231c5a576a95391d5e4cd5b8948bfa8a6224bed1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Baylac-Jacqu=C3=A9?= Date: Sun, 8 Nov 2020 15:05:37 +0100 Subject: [PATCH 22/39] nixos/pleroma: init Adding a new pleroma NixOS module and its associated documentation. co-authored-by: duponin --- nixos/modules/module-list.nix | 1 + nixos/modules/services/networking/pleroma.nix | 140 ++++++++++++++++++ nixos/modules/services/networking/pleroma.xml | 132 +++++++++++++++++ 3 files changed, 273 insertions(+) create mode 100644 nixos/modules/services/networking/pleroma.nix create mode 100644 nixos/modules/services/networking/pleroma.xml diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index 1ccfba68453..0b565ed9f64 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -725,6 +725,7 @@ ./services/networking/owamp.nix ./services/networking/pdnsd.nix ./services/networking/pixiecore.nix + ./services/networking/pleroma.nix ./services/networking/polipo.nix ./services/networking/powerdns.nix ./services/networking/pdns-recursor.nix diff --git a/nixos/modules/services/networking/pleroma.nix b/nixos/modules/services/networking/pleroma.nix new file mode 100644 index 00000000000..9b2bf9f6124 --- /dev/null +++ b/nixos/modules/services/networking/pleroma.nix @@ -0,0 +1,140 @@ +{ config, options, lib, pkgs, stdenv, ... }: +let + cfg = config.services.pleroma; +in { + options = { + services.pleroma = with lib; { + enable = mkEnableOption "pleroma"; + + package = mkOption { + type = types.package; + default = pkgs.pleroma-otp; + description = "Pleroma package to use."; + }; + + user = mkOption { + type = types.str; + default = "pleroma"; + description = "User account under which pleroma runs."; + }; + + group = mkOption { + type = types.str; + default = "pleroma"; + description = "Group account under which pleroma runs."; + }; + + stateDir = mkOption { + type = types.str; + default = "/var/lib/pleroma"; + readOnly = true; + description = "Directory where the pleroma service will save the uploads and static files."; + }; + + configs = mkOption { + type = with types; listOf str; + description = '' + Pleroma public configuration. + + This list gets appended from left to + right into /etc/pleroma/config.exs. Elixir evaluates its + configuration imperatively, meaning you can override a + setting by appending a new str to this NixOS option list. + + DO NOT STORE ANY PLEROMA SECRET + HERE, use + services.pleroma.secretConfigFile + instead. + + This setting is going to be stored in a file part of + the Nix store. The Nix store being world-readable, it's not + the right place to store any secret + + Have a look to Pleroma section in the NixOS manual for more + informations. + ''; + }; + + secretConfigFile = mkOption { + type = types.str; + default = "/var/lib/pleroma/secrets.exs"; + description = '' + Path to the file containing your secret pleroma configuration. + + DO NOT POINT THIS OPTION TO THE NIX + STORE, the store being world-readable, it'll + compromise all your secrets. + ''; + }; + }; + }; + + config = lib.mkIf cfg.enable { + users = { + users."${cfg.user}" = { + description = "Pleroma user"; + home = cfg.stateDir; + extraGroups = [ cfg.group ]; + }; + groups."${cfg.group}" = {}; + }; + + environment.systemPackages = [ cfg.package ]; + + environment.etc."/pleroma/config.exs".text = '' + ${lib.concatMapStrings (x: "${x}") cfg.configs} + + # The lau/tzdata library is trying to download the latest + # timezone database in the OTP priv directory by default. + # This directory being in the store, it's read-only. + # Setting that up to a more appropriate location. + config :tzdata, :data_dir, "/var/lib/pleroma/elixir_tzdata_data" + + import_config "${cfg.secretConfigFile}" + ''; + + systemd.services.pleroma = { + description = "Pleroma social network"; + after = [ "network-online.target" "postgresql.service" ]; + wantedBy = [ "multi-user.target" ]; + restartTriggers = [ config.environment.etc."/pleroma/config.exs".source ]; + serviceConfig = { + User = cfg.user; + Group = cfg.group; + Type = "exec"; + WorkingDirectory = "~"; + StateDirectory = "pleroma pleroma/static pleroma/uploads"; + StateDirectoryMode = "700"; + + # Checking the conf file is there then running the database + # migration before each service start, just in case there are + # some pending ones. + # + # It's sub-optimal as we'll always run this, even if pleroma + # has not been updated. But the no-op process is pretty fast. + # Better be safe than sorry migration-wise. + ExecStartPre = + let preScript = pkgs.writers.writeBashBin "pleromaStartPre" + "${cfg.package}/bin/pleroma_ctl migrate"; + in "${preScript}/bin/pleromaStartPre"; + + ExecStart = "${cfg.package}/bin/pleroma start"; + ExecStop = "${cfg.package}/bin/pleroma stop"; + ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID"; + + # Systemd sandboxing directives. + # Taken from the upstream contrib systemd service at + # pleroma/installation/pleroma.service + PrivateTmp = true; + ProtectHome = true; + ProtectSystem = "full"; + PrivateDevices = false; + NoNewPrivileges = true; + CapabilityBoundingSet = "~CAP_SYS_ADMIN"; + }; + }; + + }; + meta.maintainers = with lib.maintainers; [ ninjatrappeur ]; + meta.doc = ./pleroma.xml; +} diff --git a/nixos/modules/services/networking/pleroma.xml b/nixos/modules/services/networking/pleroma.xml new file mode 100644 index 00000000000..9ab0be3d947 --- /dev/null +++ b/nixos/modules/services/networking/pleroma.xml @@ -0,0 +1,132 @@ + + Pleroma + Pleroma is a lightweight activity pub server. +
+ Quick Start + To get quickly started, you can use this sample NixOS configuration and adapt it to your use case. + + { + security.acme = { + email = "root@tld"; + acceptTerms = true; + certs = { + "social.tld.com" = { + webroot = "/var/www/social.tld.com"; + email = "root@tld"; + group = "nginx"; + }; + }; + }; + services = { + pleroma = { + enable = true; + secretConfigFile = "/var/lib/pleroma/secrets.exs"; + configs = [ + '' + import Config + + config :pleroma, Pleroma.Web.Endpoint, + url: [host: "social.tld.com", scheme: "https", port: 443], + http: [ip: {127, 0, 0, 1}, port: 4000] + + config :pleroma, :instance, + name: "NixOS test pleroma server", + email: "pleroma@social.tld.com", + notify_email: "pleroma@social.tld.com", + limit: 5000, + registrations_open: true + + config :pleroma, :media_proxy, + enabled: false, + redirect_on_failure: true + #base_url: "https://cache.pleroma.social" + + config :pleroma, Pleroma.Repo, + adapter: Ecto.Adapters.Postgres, + username: "pleroma", + password: "${test-db-passwd}", + database: "pleroma", + hostname: "localhost", + pool_size: 10, + prepare: :named, + parameters: [ + plan_cache_mode: "force_custom_plan" + ] + + config :pleroma, :database, rum_enabled: false + config :pleroma, :instance, static_dir: "/var/lib/pleroma/static" + config :pleroma, Pleroma.Uploaders.Local, uploads: "/var/lib/pleroma/uploads" + config :pleroma, configurable_from_database: false + '' + ]; + }; + postgresql = { + enable = true; + package = pkgs.postgresql_12; + }; + nginx = { + enable = true; + addSSL = true; + sslCertificate = "/var/lib/acme/social.tld.com/fullchain.pem"; + sslCertificateKey = "/var/lib/acme/social.tld.com/key.pem"; + root = "/var/www/social.tld.com"; + # ACME endpoint + locations."/.well-known/acme-challenge" = { + root = "/var/www/social.tld.com/"; + }; + virtualHosts."social.tld.com" = { + addSSL = true; + locations."/" = { + proxyPass = "http://127.0.0.1:4000"; + extraConfig = '' + add_header 'Access-Control-Allow-Origin' '*' always; + add_header 'Access-Control-Allow-Methods' 'POST, PUT, DELETE, GET, PATCH, OPTIONS' always; + add_header 'Access-Control-Allow-Headers' 'Authorization, Content-Type, Idempotency-Key' always; + add_header 'Access-Control-Expose-Headers' 'Link, X-RateLimit-Reset, X-RateLimit-Limit, X-RateLimit-Remaining, X-Request-Id' always; + if ($request_method = OPTIONS) { + return 204; + } + add_header X-XSS-Protection "1; mode=block"; + add_header X-Permitted-Cross-Domain-Policies none; + add_header X-Frame-Options DENY; + add_header X-Content-Type-Options nosniff; + add_header Referrer-Policy same-origin; + add_header X-Download-Options noopen; + proxy_http_version 1.1; + proxy_set_header Upgrade $http_upgrade; + proxy_set_header Connection "upgrade"; + proxy_set_header Host $host; + client_max_body_size 16m; + ''; + }; + }; + }; + }; + }; + + Note that you'll need to seed your database and upload your pleroma secrets to the path pointed by config.pleroma.secretConfigFile. You can find more informations about how to do that in the next section. +
+
+ Generating the Pleroma Config and Seed the Database + + Before using this service, you'll need to generate your +server configuration and its associated database seed. The +pleroma_ctl CLI utility can help you with that. You +can start with pleroma_ctl instance gen --output config.exs +--output-psql setup.psql, this will prompt you some +questions and will generate both your config file and database initial +migration. +For more details about this configuration format, please have a look at the upstream documentation. +To seed your database, you can use the setup.psql file you just generated by running + + sudo -u postgres psql -f setup.psql + + In regard of the pleroma service configuration you also just generated, you'll need to split it in two parts. The "public" part, which do not contain any secrets and thus can be safely stored in the Nix store and its "private" counterpart containing some secrets (database password, endpoint secret key, salts, etc.). + + The public part will live in your NixOS machine configuration in the services.pleroma.configs option. However, it's up to you to upload the secret pleroma configuration to the path pointed by services.pleroma.secretConfigFile. You can do that manually or rely on a third party tool such as Morph or NixOps. +
+
From 60b730fd944b6e42bc185dd92ed8cb71e48d795b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Baylac-Jacqu=C3=A9?= Date: Sun, 8 Nov 2020 15:10:14 +0100 Subject: [PATCH 23/39] nixos/pleroma: add NixOS VM test. --- nixos/tests/all-tests.nix | 1 + nixos/tests/pleroma.nix | 265 +++++++++++++++++++++++++++ pkgs/servers/pleroma-otp/default.nix | 4 + 3 files changed, 270 insertions(+) create mode 100644 nixos/tests/pleroma.nix diff --git a/nixos/tests/all-tests.nix b/nixos/tests/all-tests.nix index 902c3bbc65e..22629042ae5 100644 --- a/nixos/tests/all-tests.nix +++ b/nixos/tests/all-tests.nix @@ -301,6 +301,7 @@ in php = handleTest ./php {}; pinnwand = handleTest ./pinnwand.nix {}; plasma5 = handleTest ./plasma5.nix {}; + pleroma = handleTestOn [ "x86_64-linux" "aarch64-linux" ] ./pleroma.nix {}; plotinus = handleTest ./plotinus.nix {}; podman = handleTestOn ["x86_64-linux"] ./podman.nix {}; postfix = handleTest ./postfix.nix {}; diff --git a/nixos/tests/pleroma.nix b/nixos/tests/pleroma.nix new file mode 100644 index 00000000000..797cac44f95 --- /dev/null +++ b/nixos/tests/pleroma.nix @@ -0,0 +1,265 @@ +/* + Pleroma E2E VM test. + + Abstract: + ========= + Using pleroma, postgresql, a local CA cert, a nginx reverse proxy + and a toot-based client, we're going to: + + 1. Provision a pleroma service from scratch (pleroma config + postgres db). + 2. Create a "jamy" admin user. + 3. Send a toot from this user. + 4. Send a upload from this user. + 5. Check the toot is part of the server public timeline + + Notes: + - We need a fully functional TLS setup without having any access to + the internet. We do that by issuing a self-signed cert, add this + self-cert to the hosts pki trust store and finally spoof the + hostnames using /etc/hosts. + - For this NixOS test, we *had* to store some DB-related and + pleroma-related secrets to the store. Keep in mind the store is + world-readable, it's the worst place possible to store *any* + secret. **DO NOT DO THIS IN A REAL WORLD DEPLOYMENT**. +*/ + +import ./make-test-python.nix ({ pkgs, ... }: + let + send-toot = pkgs.writeScriptBin "send-toot" '' + set -eux + # toot is using the requests library internally. This library + # sadly embed its own certificate store instead of relying on the + # system one. Overriding this pretty bad default behaviour. + export REQUESTS_CA_BUNDLE=/etc/ssl/certs/ca-certificates.crt + + export TOOT_LOGIN_CLI_PASSWORD="jamy-password" + toot login_cli -i "pleroma.nixos.test" -e "jamy@nixos.test" + echo "Login OK" + + # Send a toot then verify it's part of the public timeline + echo "y" | toot post "hello world Jamy here" + echo "Send toot OK" + echo "y" | toot timeline | grep -c "hello world Jamy here" + echo "Get toot from timeline OK" + + # Test file upload + echo "y" | toot upload ${db-seed} | grep -c "https://pleroma.nixos.test/media" + echo "File upload OK" + + echo "=====================================================" + echo "= SUCCESS =" + echo "= =" + echo "= We were able to sent a toot + a upload and =" + echo "= retrieve both of them in the public timeline. =" + echo "=====================================================" + ''; + + provision-db = pkgs.writeScriptBin "provision-db" '' + set -eux + sudo -u postgres psql -f ${db-seed} + ''; + + test-db-passwd = "SccZOvTGM//BMrpoQj68JJkjDkMGb4pHv2cECWiI+XhVe3uGJTLI0vFV/gDlZ5jJ"; + + /* For this NixOS test, we *had* to store this secret to the store. + Keep in mind the store is world-readable, it's the worst place + possible to store *any* secret. **DO NOT DO THIS IN A REAL WORLD + DEPLOYMENT**.*/ + db-seed = pkgs.writeText "provision.psql" '' + CREATE USER pleroma WITH ENCRYPTED PASSWORD '${test-db-passwd}'; + CREATE DATABASE pleroma OWNER pleroma; + \c pleroma; + --Extensions made by ecto.migrate that need superuser access + CREATE EXTENSION IF NOT EXISTS citext; + CREATE EXTENSION IF NOT EXISTS pg_trgm; + CREATE EXTENSION IF NOT EXISTS "uuid-ossp"; + ''; + + pleroma-conf = '' + import Config + + config :pleroma, Pleroma.Web.Endpoint, + url: [host: "pleroma.nixos.test", scheme: "https", port: 443], + http: [ip: {127, 0, 0, 1}, port: 4000] + + config :pleroma, :instance, + name: "NixOS test pleroma server", + email: "pleroma@nixos.test", + notify_email: "pleroma@nixos.test", + limit: 5000, + registrations_open: true + + config :pleroma, :media_proxy, + enabled: false, + redirect_on_failure: true + #base_url: "https://cache.pleroma.social" + + config :pleroma, Pleroma.Repo, + adapter: Ecto.Adapters.Postgres, + username: "pleroma", + password: "${test-db-passwd}", + database: "pleroma", + hostname: "localhost", + pool_size: 10, + prepare: :named, + parameters: [ + plan_cache_mode: "force_custom_plan" + ] + + config :pleroma, :database, rum_enabled: false + config :pleroma, :instance, static_dir: "/var/lib/pleroma/static" + config :pleroma, Pleroma.Uploaders.Local, uploads: "/var/lib/pleroma/uploads" + config :pleroma, configurable_from_database: false + ''; + + /* For this NixOS test, we *had* to store this secret to the store. + Keep in mind the store is world-readable, it's the worst place + possible to store *any* secret. **DO NOT DO THIS IN A REAL WORLD + DEPLOYMENT**. + In a real-word deployment, you'd handle this either by: + - manually upload your pleroma secrets to /var/lib/pleroma/secrets.exs + - use a deployment tool such as morph or NixOps to deploy your secrets. + */ + pleroma-conf-secret = pkgs.writeText "secrets.exs" '' + import Config + + config :joken, default_signer: "PS69/wMW7X6FIQPABt9lwvlZvgrJIncfiAMrK9J5mjVus/7/NJJi1DsDA1OghBE5" + + config :pleroma, Pleroma.Web.Endpoint, + secret_key_base: "NvfmU7lYaQrmmxt4NACm0AaAfN9t6WxsrX0NCB4awkGHvr1S7jyshlEmrjaPFhhq", + signing_salt: "3L41+BuJ" + + config :web_push_encryption, :vapid_details, + subject: "mailto:pleroma@nixos.test", + public_key: "BKjfNX9-UqAcncaNqERQtF7n9pKrB0-MO-juv6U5E5XQr_Tg5D-f8AlRjduAguDpyAngeDzG8MdrTejMSL4VF30", + private_key: "k7o9onKMQrgMjMb6l4fsxSaXO0BTNAer5MVSje3q60k" + ''; + + /* For this NixOS test, we *had* to store this secret to the store. + Keep in mind the store is world-readable, it's the worst place + possible to store *any* secret. **DO NOT DO THIS IN A REAL WORLD + DEPLOYMENT**. + In a real-word deployment, you'd handle this either by: + - manually upload your pleroma secrets to /var/lib/pleroma/secrets.exs + - use a deployment tool such as morph or NixOps to deploy your secrets. + */ + provision-secrets = pkgs.writeScriptBin "provision-secrets" '' + set -eux + cp "${pleroma-conf-secret}" "/var/lib/pleroma/secrets.exs" + chown pleroma:pleroma /var/lib/pleroma/secrets.exs + ''; + + /* For this NixOS test, we *had* to store this secret to the store. + Keep in mind the store is world-readable, it's the worst place + possible to store *any* secret. **DO NOT DO THIS IN A REAL WORLD + DEPLOYMENT**. + */ + provision-user = pkgs.writeScriptBin "provision-user" '' + set -eux + + # Waiting for pleroma to be up. + timeout 5m bash -c 'while [[ "$(curl -s -o /dev/null -w '%{http_code}' https://pleroma.nixos.test/api/v1/instance)" != "200" ]]; do sleep 2; done' + pleroma_ctl user new jamy jamy@nixos.test --password 'jamy-password' --moderator --admin -y + ''; + + tls-cert = pkgs.runCommandNoCC "selfSignedCerts" { buildInputs = [ pkgs.openssl ]; } '' + openssl req -x509 -newkey rsa:4096 -keyout key.pem -out cert.pem -nodes -subj '/CN=pleroma.nixos.test' + mkdir -p $out + cp key.pem cert.pem $out + ''; + + /* Toot is preventing users from feeding login_cli a password non + interactively. While it makes sense most of the times, it's + preventing us to login in this non-interactive test. This patch + introduce a TOOT_LOGIN_CLI_PASSWORD env variable allowing us to + provide a password to toot login_cli + + If https://github.com/ihabunek/toot/pull/180 gets merged at some + point, feel free to remove this patch. */ + custom-toot = pkgs.toot.overrideAttrs(old:{ + patches = [ (pkgs.fetchpatch { + url = "https://github.com/NinjaTrappeur/toot/commit/b4a4c30f41c0cb7e336714c2c4af9bc9bfa0c9f2.patch"; + sha256 = "sha256-0xxNwjR/fStLjjUUhwzCCfrghRVts+fc+fvVJqVcaFg="; + }) ]; + }); + + hosts = nodes: '' + ${nodes.pleroma.config.networking.primaryIPAddress} pleroma.nixos.test + ${nodes.client.config.networking.primaryIPAddress} client.nixos.test + ''; + in { + name = "pleroma"; + nodes = { + client = { nodes, pkgs, config, ... }: { + security.pki.certificateFiles = [ "${tls-cert}/cert.pem" ]; + networking.extraHosts = hosts nodes; + environment.systemPackages = with pkgs; [ + custom-toot + send-toot + ]; + }; + pleroma = { nodes, pkgs, config, ... }: { + security.pki.certificateFiles = [ "${tls-cert}/cert.pem" ]; + networking.extraHosts = hosts nodes; + networking.firewall.enable = false; + environment.systemPackages = with pkgs; [ + provision-db + provision-secrets + provision-user + ]; + services = { + pleroma = { + enable = true; + configs = [ + pleroma-conf + ]; + }; + postgresql = { + enable = true; + package = pkgs.postgresql_12; + }; + nginx = { + enable = true; + virtualHosts."pleroma.nixos.test" = { + addSSL = true; + sslCertificate = "${tls-cert}/cert.pem"; + sslCertificateKey = "${tls-cert}/key.pem"; + locations."/" = { + proxyPass = "http://127.0.0.1:4000"; + extraConfig = '' + add_header 'Access-Control-Allow-Origin' '*' always; + add_header 'Access-Control-Allow-Methods' 'POST, PUT, DELETE, GET, PATCH, OPTIONS' always; + add_header 'Access-Control-Allow-Headers' 'Authorization, Content-Type, Idempotency-Key' always; + add_header 'Access-Control-Expose-Headers' 'Link, X-RateLimit-Reset, X-RateLimit-Limit, X-RateLimit-Remaining, X-Request-Id' always; + if ($request_method = OPTIONS) { + return 204; + } + add_header X-XSS-Protection "1; mode=block"; + add_header X-Permitted-Cross-Domain-Policies none; + add_header X-Frame-Options DENY; + add_header X-Content-Type-Options nosniff; + add_header Referrer-Policy same-origin; + add_header X-Download-Options noopen; + proxy_http_version 1.1; + proxy_set_header Upgrade $http_upgrade; + proxy_set_header Connection "upgrade"; + proxy_set_header Host $host; + client_max_body_size 16m; + ''; + }; + }; + }; + }; + }; + }; + + testScript = { nodes, ... }: '' + pleroma.wait_for_unit("postgresql.service") + pleroma.succeed("provision-db") + pleroma.succeed("provision-secrets") + pleroma.systemctl("restart pleroma.service") + pleroma.wait_for_unit("pleroma.service") + pleroma.succeed("provision-user") + client.succeed("send-toot") + ''; +}) diff --git a/pkgs/servers/pleroma-otp/default.nix b/pkgs/servers/pleroma-otp/default.nix index 756f2fc33dc..e66ae693a0e 100644 --- a/pkgs/servers/pleroma-otp/default.nix +++ b/pkgs/servers/pleroma-otp/default.nix @@ -56,6 +56,10 @@ stdenv.mkDerivation { wrapProgram $out/bin/pleroma_ctl \ --set-default RELEASE_TMP "/tmp"''; + passthru.tests = { + pleroma = nixosTests.pleroma; + }; + meta = { description = "ActivityPub microblogging server"; homepage = https://git.pleroma.social/pleroma/pleroma; From 5e3a6a0f460fd571930f60062780c50ac8751934 Mon Sep 17 00:00:00 2001 From: Jacek Galowicz Date: Wed, 27 Jan 2021 10:18:38 +0100 Subject: [PATCH 24/39] meshcommander: init at 0.9.0 --- .../node-packages/node-packages.json | 1 + .../node-packages/node-packages.nix | 8075 ++++++++--------- 2 files changed, 3917 insertions(+), 4159 deletions(-) diff --git a/pkgs/development/node-packages/node-packages.json b/pkgs/development/node-packages/node-packages.json index 96165097316..555f0cd1dfd 100644 --- a/pkgs/development/node-packages/node-packages.json +++ b/pkgs/development/node-packages/node-packages.json @@ -96,6 +96,7 @@ , "graphql-cli" , "grunt-cli" , "makam" +, "meshcommander" , "gqlint" , "gtop" , "gulp" diff --git a/pkgs/development/node-packages/node-packages.nix b/pkgs/development/node-packages/node-packages.nix index 94c0b38fc76..52a49d6fbee 100644 --- a/pkgs/development/node-packages/node-packages.nix +++ b/pkgs/development/node-packages/node-packages.nix @@ -22,13 +22,13 @@ let sha512 = "t4WmWoGV9gyzypwG3y3JlcK2t8fKLtvzBA7xEoFTj9SMPvOuLsf13uh4ikK0RRaaa9RPPWLgFUdOyIRaQvCpwQ=="; }; }; - "@angular-devkit/architect-0.1100.5" = { + "@angular-devkit/architect-0.1101.1" = { name = "_at_angular-devkit_slash_architect"; packageName = "@angular-devkit/architect"; - version = "0.1100.5"; + version = "0.1101.1"; src = fetchurl { - url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1100.5.tgz"; - sha512 = "yOYfucNouc1doTbcGbCNMXGMSc36+j97XpdNoeGyzFQ7GwezLAro0a9gxc5PdOxndfelkND7J1JuOjxdW5O17A=="; + url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1101.1.tgz"; + sha512 = "oyzDIzI5owzYmgwGQLBbKOkTDc49dPosI2BiBf0oWtKH2L2sQ6jiad1k/Oq4/k7TYEN8neb/eZ1dpsHmZdYqaw=="; }; }; "@angular-devkit/core-11.0.3" = { @@ -40,13 +40,22 @@ let sha512 = "gJRiBj0gWDR2VtIvLvwwc/GM2MZvg1xw69ZbBJ1VuUgDqPBHdC8q3UMW3B82wdhxK+RBYa7ZOJxtIVggaHkm9g=="; }; }; - "@angular-devkit/core-11.0.5" = { + "@angular-devkit/core-11.1.0" = { name = "_at_angular-devkit_slash_core"; packageName = "@angular-devkit/core"; - version = "11.0.5"; + version = "11.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@angular-devkit/core/-/core-11.0.5.tgz"; - sha512 = "hwV8fjF8JNPJkiVWw8MNzeIfDo01aD/OAOlC4L5rQnVHn+i2EiU3brSDmFqyeHPPV3h/QjuBkS3tkN7gSnVWaQ=="; + url = "https://registry.npmjs.org/@angular-devkit/core/-/core-11.1.0.tgz"; + sha512 = "O2oIcqpQKGvYJH88d/NCgLYZGc9laA1eo2d1s0FH1Udu4c2L+bAsviQqtTKNmzyaqODHrlkt+eKx7uakdwWtnQ=="; + }; + }; + "@angular-devkit/core-11.1.1" = { + name = "_at_angular-devkit_slash_core"; + packageName = "@angular-devkit/core"; + version = "11.1.1"; + src = fetchurl { + url = "https://registry.npmjs.org/@angular-devkit/core/-/core-11.1.1.tgz"; + sha512 = "eQTRmcuVCgGE7mR3qyabjlvXlQCMDI+gDCkcAlzn161pJY9Yxmw0Q1rXN2sZlUdfZuc9sSg0m2MaQQFBSGp+XA=="; }; }; "@angular-devkit/schematics-11.0.3" = { @@ -58,13 +67,22 @@ let sha512 = "VZnqgnnfyzyMluIDvGp+ZlDU2P9BnjrhacBOdqBS/jNQ7oxyE0AWrUApGXcejOJ13Z7pEf31E64P3bImcjwP+A=="; }; }; - "@angular-devkit/schematics-11.0.5" = { + "@angular-devkit/schematics-11.1.0" = { name = "_at_angular-devkit_slash_schematics"; packageName = "@angular-devkit/schematics"; - version = "11.0.5"; + version = "11.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-11.0.5.tgz"; - sha512 = "0NKGC8Nf/4vvDpWKB7bwxIazvNnNHnZBX6XlyBXNl+fW8tpTef3PNMJMSErTz9LFnuv61vsKbc36u/Ek2YChWg=="; + url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-11.1.0.tgz"; + sha512 = "6qfR5w1jyk8MC+5Tfimz+Czsq3WlsVoB57dpxSZfhGGsv1Vxc8Q41y5f3BrAyEqHYjcH7NtaoLQoJjtra5KaAg=="; + }; + }; + "@angular-devkit/schematics-11.1.1" = { + name = "_at_angular-devkit_slash_schematics"; + packageName = "@angular-devkit/schematics"; + version = "11.1.1"; + src = fetchurl { + url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-11.1.1.tgz"; + sha512 = "XYbC0cGPChdXg0LD9EA08W24Rv5GPxGNGJNRQhUwlcU9L/szhOw9NEhr/l/DLijAxKv0J2eM5CuzKI1O/3tZYg=="; }; }; "@angular-devkit/schematics-cli-0.1100.3" = { @@ -184,13 +202,13 @@ let sha512 = "eorTmZW7zc6ZHgGLt3Vrq7mzPuobPeJnyfli50/m/DIQ91slkqjPKUYGcq4paPEz6IWoa7LT2ZwtwA5KzMyTPg=="; }; }; - "@apidevtools/json-schema-ref-parser-9.0.6" = { + "@apidevtools/json-schema-ref-parser-9.0.7" = { name = "_at_apidevtools_slash_json-schema-ref-parser"; packageName = "@apidevtools/json-schema-ref-parser"; - version = "9.0.6"; + version = "9.0.7"; src = fetchurl { - url = "https://registry.npmjs.org/@apidevtools/json-schema-ref-parser/-/json-schema-ref-parser-9.0.6.tgz"; - sha512 = "M3YgsLjI0lZxvrpeGVk9Ap032W6TPQkH6pRAZz81Ac3WUNF79VQooAFnp8umjvVzUmD93NkogxEwbSce7qMsUg=="; + url = "https://registry.npmjs.org/@apidevtools/json-schema-ref-parser/-/json-schema-ref-parser-9.0.7.tgz"; + sha512 = "QdwOGF1+eeyFh+17v2Tz626WX0nucd1iKOm6JUTUvCZdbolblCOOQCxGrQPY0f7jEhn36PiAWqZnsC2r5vmUWg=="; }; }; "@apollo/federation-0.20.7" = { @@ -337,15 +355,6 @@ let sha512 = "kWc7L0fw1xwvI0zi8OKVBuxRVefwGOrKSQMvrQ3dW+bIIavBY3/NpXmpjMy7bQnLgwgzWQZ8TlM57YHpHNHz4w=="; }; }; - "@babel/generator-7.12.10" = { - name = "_at_babel_slash_generator"; - packageName = "@babel/generator"; - version = "7.12.10"; - src = fetchurl { - url = "https://registry.npmjs.org/@babel/generator/-/generator-7.12.10.tgz"; - sha512 = "6mCdfhWgmqLdtTkhXjnIz0LcdVCd26wS2JXRtj2XY0u5klDsXBREA/pG5NVOuVnF2LUrBGNFtQkIqqTbblg0ww=="; - }; - }; "@babel/generator-7.12.11" = { name = "_at_babel_slash_generator"; packageName = "@babel/generator"; @@ -1363,22 +1372,22 @@ let sha512 = "GcIY79elgB+azP74j8vqkiXz8xLFfIzbQJdlwOPisgbKT00tviJQuEghOXSMVxJ00HoYJbGswr4kcllUc4xCcg=="; }; }; - "@bugsnag/browser-7.5.4" = { + "@bugsnag/browser-7.6.0" = { name = "_at_bugsnag_slash_browser"; packageName = "@bugsnag/browser"; - version = "7.5.4"; + version = "7.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/@bugsnag/browser/-/browser-7.5.4.tgz"; - sha512 = "WyhDWeE2MXQTo9uJjpCOxqTWDlVgX/yKE/VZ0nVm4em2AxUmjAPM8jk9YOTYCKQfQFnIpgf62DjVlsszikUIBw=="; + url = "https://registry.npmjs.org/@bugsnag/browser/-/browser-7.6.0.tgz"; + sha512 = "8sth20TM8BVfebkqxqJQOCM2P2L4foOgFH2QA3ruG0iknDKZDhE7XcoWgmUP9zVSNJqkCyiIzcBOuiwZW8JaSQ=="; }; }; - "@bugsnag/core-7.5.4" = { + "@bugsnag/core-7.6.0" = { name = "_at_bugsnag_slash_core"; packageName = "@bugsnag/core"; - version = "7.5.4"; + version = "7.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/@bugsnag/core/-/core-7.5.4.tgz"; - sha512 = "QOvtWzM0XJTk5QCpiDFTva6FJXCKuKQHJu7sjrZwYA/7fblypl+ClP7inz9At5ijkKGm2pLyvZ9vvT2rq9TXuw=="; + url = "https://registry.npmjs.org/@bugsnag/core/-/core-7.6.0.tgz"; + sha512 = "hBYAZJw4ScqoyM1jA1x/m2e4iS2EqYEs0I2hdzBCZFv2ls17ILmU58eRSyVdUfyzbv0J7Hi6DwwBGC4Yb6ROZA=="; }; }; "@bugsnag/cuid-3.0.0" = { @@ -1390,22 +1399,22 @@ let sha512 = "LOt8aaBI+KvOQGneBtpuCz3YqzyEAehd1f3nC5yr9TIYW1+IzYKa2xWS4EiMz5pPOnRPHkyyS5t/wmSmN51Gjg=="; }; }; - "@bugsnag/js-7.5.4" = { + "@bugsnag/js-7.6.0" = { name = "_at_bugsnag_slash_js"; packageName = "@bugsnag/js"; - version = "7.5.4"; + version = "7.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/@bugsnag/js/-/js-7.5.4.tgz"; - sha512 = "V1+482YPndAD0c0ju7Ik1dXunyKAssZWUIqOMs7Ff3PtZb1107sJ4Hw1E7ZusQvvI/IjA6FO3ZJkmzjIJjQ+UA=="; + url = "https://registry.npmjs.org/@bugsnag/js/-/js-7.6.0.tgz"; + sha512 = "EcI3sTpyOs94/OOjwI7fOg1iZ800o3kkOAipAnULRoP62j1vmErH2l/2xubny7g0JTOL59iZEkt+5O5MhbQJ2A=="; }; }; - "@bugsnag/node-7.5.4" = { + "@bugsnag/node-7.6.0" = { name = "_at_bugsnag_slash_node"; packageName = "@bugsnag/node"; - version = "7.5.4"; + version = "7.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/@bugsnag/node/-/node-7.5.4.tgz"; - sha512 = "lfHEU2wsBO/hhHjsY6kqD/Ga6A3bzROeZEuE7/cT0xzDUvBnUsrw75/xZ5EyY3Xpyfe/Gw9t336semIqz46+cw=="; + url = "https://registry.npmjs.org/@bugsnag/node/-/node-7.6.0.tgz"; + sha512 = "n3BVb04bq4z16nOM4gbWoXsi6k8R9bryWS/NAYi/jQg6tgyBkNYzmK0ojf3fYJ7uAgCjUJNMX6S9UHSJy/MMcQ=="; }; }; "@bugsnag/safe-json-stringify-6.0.0" = { @@ -1633,6 +1642,15 @@ let sha512 = "EfB5OHNYp1F4px/LI/FEnGylop7nOqkQ1LRzCM0KccA2U8tvV8w01KBv37LbO7nW4H+YhKyo2LcJhRwjjV17QQ=="; }; }; + "@eslint/eslintrc-0.3.0" = { + name = "_at_eslint_slash_eslintrc"; + packageName = "@eslint/eslintrc"; + version = "0.3.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.3.0.tgz"; + sha512 = "1JTKgrOKAHVivSvOYw+sJOunkBjUOvjqWk1DPja7ZFhIS2mX/4EgTT8M7eTK9jrKhL/FvXXEbQwIs3pg1xp3dg=="; + }; + }; "@evocateur/libnpmaccess-3.1.2" = { name = "_at_evocateur_slash_libnpmaccess"; packageName = "@evocateur/libnpmaccess"; @@ -1678,6 +1696,15 @@ let sha512 = "GoXw0U2Qaa33m3eUcxuHnHpNvHjNlLo0gtV091XBpaRINaB4X6FGCG5XKxSFNFiPpugUDqNruHzaqpTdDm4AOg=="; }; }; + "@expo/apple-utils-0.0.0-alpha.17" = { + name = "_at_expo_slash_apple-utils"; + packageName = "@expo/apple-utils"; + version = "0.0.0-alpha.17"; + src = fetchurl { + url = "https://registry.npmjs.org/@expo/apple-utils/-/apple-utils-0.0.0-alpha.17.tgz"; + sha512 = "ecpC6e3xTtMVVKWpp231L8vptoSPqwtKSmfJ8sXfMlQRtWbq8Bu1pCHR/pdAx9X4IYzygjrTa9IDAPpbGuSaMg=="; + }; + }; "@expo/babel-preset-cli-0.2.18" = { name = "_at_expo_slash_babel-preset-cli"; packageName = "@expo/babel-preset-cli"; @@ -1696,22 +1723,22 @@ let sha512 = "Ydf4LidRB/EBI+YrB+cVLqIseiRfjUI/AeHBgjGMtq3GroraDu81OV7zqophRgupngoL3iS3JUMDMnxO7g39qA=="; }; }; - "@expo/config-3.3.22" = { + "@expo/config-3.3.26" = { name = "_at_expo_slash_config"; packageName = "@expo/config"; - version = "3.3.22"; + version = "3.3.26"; src = fetchurl { - url = "https://registry.npmjs.org/@expo/config/-/config-3.3.22.tgz"; - sha512 = "BzahndK+Uxsvzui1+9QiJXptjVPgbSCQ3saNVF4N3Wrxjyr0WXHNp3Gz3VAGkoHhoBlxZheslmiNoMwjG25xjw=="; + url = "https://registry.npmjs.org/@expo/config/-/config-3.3.26.tgz"; + sha512 = "krtvZ7P7BMbSbqPP5OFERrzxDGGA2qcFGmL/QpPX11P9wSSRXVqRar1OMwjuKaeQ36wdS21AiMmmvLNeFcbjww=="; }; }; - "@expo/config-plugins-1.0.13" = { + "@expo/config-plugins-1.0.17" = { name = "_at_expo_slash_config-plugins"; packageName = "@expo/config-plugins"; - version = "1.0.13"; + version = "1.0.17"; src = fetchurl { - url = "https://registry.npmjs.org/@expo/config-plugins/-/config-plugins-1.0.13.tgz"; - sha512 = "/Wt1uZJlwMSi20GlKX4FOijX8wYMj7zVVp091M9hXeIc7btq84nkhhtdwa60qnM0RACHWqv25uVTQochjNQrfw=="; + url = "https://registry.npmjs.org/@expo/config-plugins/-/config-plugins-1.0.17.tgz"; + sha512 = "q1Szz+2UyB6wB4FL2Wfd3tn9Ho7DAPs1Y+He583WY9CDx/hNhODZo+Ox7yPhcM+spP/itHxnXh+GFcmRX4M6Ag=="; }; }; "@expo/config-types-40.0.0-beta.2" = { @@ -1723,184 +1750,58 @@ let sha512 = "t9pHCQMXOP4nwd7LGXuHkLlFy0JdfknRSCAeVF4Kw2/y+5OBbR9hW9ZVnetpBf0kORrekgiI7K/qDaa3hh5+Qg=="; }; }; - "@expo/configure-splash-screen-0.3.2" = { + "@expo/configure-splash-screen-0.3.3" = { name = "_at_expo_slash_configure-splash-screen"; packageName = "@expo/configure-splash-screen"; - version = "0.3.2"; + version = "0.3.3"; src = fetchurl { - url = "https://registry.npmjs.org/@expo/configure-splash-screen/-/configure-splash-screen-0.3.2.tgz"; - sha512 = "+KvcPWv/EpAi9ng7KWsRCHUgN8qYcbpvrY8Pc3AtfPVHBhWuy7FhTdT0HUqjhOvqvwPF2Ygr//DHl8WBVg2ICA=="; + url = "https://registry.npmjs.org/@expo/configure-splash-screen/-/configure-splash-screen-0.3.3.tgz"; + sha512 = "fWy6Z52Mj2a7yjdvpIJkP9G3kfkoXE79aHvTDwgggIE0KLhwnPF27v+KS0wJUf7b4JM6w0zKOlUZjQhn0kSNyA=="; }; }; - "@expo/dev-server-0.1.48" = { + "@expo/dev-server-0.1.52" = { name = "_at_expo_slash_dev-server"; packageName = "@expo/dev-server"; - version = "0.1.48"; + version = "0.1.52"; src = fetchurl { - url = "https://registry.npmjs.org/@expo/dev-server/-/dev-server-0.1.48.tgz"; - sha512 = "aiuoVLfF+NzFBU6WvLRbVjYDhoLky22q0hiTQ5by3996drF0XUj752lUI8ckN5+8qX4Aaij++wkPMaLiHQ1vNw=="; + url = "https://registry.npmjs.org/@expo/dev-server/-/dev-server-0.1.52.tgz"; + sha512 = "c9/8P9S9fLJGgY4bSMl2z8nSsKVKR818G29EpWqQsD/Fk+UzTil4NeIwR7rcqOWOKXRYFXVzHCq0Nl4diwaMRw=="; }; }; - "@expo/dev-tools-0.13.74" = { + "@expo/dev-tools-0.13.79" = { name = "_at_expo_slash_dev-tools"; packageName = "@expo/dev-tools"; - version = "0.13.74"; + version = "0.13.79"; src = fetchurl { - url = "https://registry.npmjs.org/@expo/dev-tools/-/dev-tools-0.13.74.tgz"; - sha512 = "at58TNplT3FT1UWEYzpCMwtP4mzBDT81ApIlyudsd4k+uX74wSf+4v5WPUbgu1UCZBUuo/40ddhS3rgUozu4eQ=="; + url = "https://registry.npmjs.org/@expo/dev-tools/-/dev-tools-0.13.79.tgz"; + sha512 = "7Rg64svMdEJCI1nUlC1nVuRImKBQ9jsP5NPY36o88Aer7F0XAhR4IXKFU8EnzNzC7Acc+Pd+3tXvU/miadFQig=="; }; }; - "@expo/eas-build-job-0.1.2" = { - name = "_at_expo_slash_eas-build-job"; - packageName = "@expo/eas-build-job"; - version = "0.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/@expo/eas-build-job/-/eas-build-job-0.1.2.tgz"; - sha512 = "hBYVWlEWi8Iu+jWmbzKy2bMsYoWvRwY7MZ+SdKpNvAl+sMpp8rwvxRyRs7cRTa6DuiQ2sdOxqemnw9MJ6S5cRA=="; - }; - }; - "@expo/image-utils-0.3.9" = { + "@expo/image-utils-0.3.10" = { name = "_at_expo_slash_image-utils"; packageName = "@expo/image-utils"; - version = "0.3.9"; + version = "0.3.10"; src = fetchurl { - url = "https://registry.npmjs.org/@expo/image-utils/-/image-utils-0.3.9.tgz"; - sha512 = "VarvpeNXtvPexmJSEllDF1RRHrjznsgf2Y0bZ2IehmOZwxdqz/YssGxY2ztMx5pn3utuhc9Enx140BHDBOp8UQ=="; + url = "https://registry.npmjs.org/@expo/image-utils/-/image-utils-0.3.10.tgz"; + sha512 = "EebukeUnzyk4ts1E1vMQSb0p8otYqWKsZNDZEoqHtERhxMSO7WhQLqa7/z2kB/YMHRJjrhaa3Aa2X5zjYot1kA=="; }; }; - "@expo/json-file-8.2.25" = { + "@expo/json-file-8.2.26" = { name = "_at_expo_slash_json-file"; packageName = "@expo/json-file"; - version = "8.2.25"; + version = "8.2.26"; src = fetchurl { - url = "https://registry.npmjs.org/@expo/json-file/-/json-file-8.2.25.tgz"; - sha512 = "KFX6grWVzttaDskq/NK8ByqFPgpDZGFnyeZVeecGoKx5kU61zuR7/xQM04OvN6BNXq3jTUst1TyS8fXEfJuscA=="; + url = "https://registry.npmjs.org/@expo/json-file/-/json-file-8.2.26.tgz"; + sha512 = "9ahw1ztHtRhXE8/kTiOpXTXJ/Uq2lF8UlIIcJjoE5DCFA0epL8tnDiu6RDzXMhjhH1ytiojt2sYC4+lV29JPAA=="; }; }; - "@expo/metro-config-0.1.48" = { + "@expo/metro-config-0.1.52" = { name = "_at_expo_slash_metro-config"; packageName = "@expo/metro-config"; - version = "0.1.48"; + version = "0.1.52"; src = fetchurl { - url = "https://registry.npmjs.org/@expo/metro-config/-/metro-config-0.1.48.tgz"; - sha512 = "U2VkpNoecfCgju5Cfk9RyulrCwqWiGPCV1RSZPhP/yb6pSUyuQfYaxH5ULmrsYztp8hSfV0mqaVq5LPyhzczkw=="; - }; - }; - "@expo/ngrok-2.4.3" = { - name = "_at_expo_slash_ngrok"; - packageName = "@expo/ngrok"; - version = "2.4.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@expo/ngrok/-/ngrok-2.4.3.tgz"; - sha512 = "JOct+0BMTOTkTb2RreQc6uzhwCjX8Z/EYRo3EcbHMr5/3Zk+0YuujaM4Z84GeZcWz2sBMhnJj0LeJnhEkmd95Q=="; - }; - }; - "@expo/ngrok-bin-2.2.8-beta.3" = { - name = "_at_expo_slash_ngrok-bin"; - packageName = "@expo/ngrok-bin"; - version = "2.2.8-beta.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@expo/ngrok-bin/-/ngrok-bin-2.2.8-beta.3.tgz"; - sha512 = "VzL67ybSvSYhFJxwBm19VMEHAcgg6bDhE9p8HKDOXL2tdHIzqYtqAYxOyhv2mS263WYqdomtoAChSOb449of+g=="; - }; - }; - "@expo/ngrok-bin-darwin-ia32-2.2.8" = { - name = "_at_expo_slash_ngrok-bin-darwin-ia32"; - packageName = "@expo/ngrok-bin-darwin-ia32"; - version = "2.2.8"; - src = fetchurl { - url = "https://registry.npmjs.org/@expo/ngrok-bin-darwin-ia32/-/ngrok-bin-darwin-ia32-2.2.8.tgz"; - sha512 = "Mgept4WvXobcNQbxV0f8Nqrukl4HsAM4ExfFOC5BJ1PinlZisb1lQYp+PGu/3DuOYAinAspbL/3m77JkhT5Oow=="; - }; - }; - "@expo/ngrok-bin-darwin-x64-2.2.8" = { - name = "_at_expo_slash_ngrok-bin-darwin-x64"; - packageName = "@expo/ngrok-bin-darwin-x64"; - version = "2.2.8"; - src = fetchurl { - url = "https://registry.npmjs.org/@expo/ngrok-bin-darwin-x64/-/ngrok-bin-darwin-x64-2.2.8.tgz"; - sha512 = "hEVxBAKTT9G+jCy+2NOjgFrPrrzmdxljLhz3cQIb4izjooQXGCbTFvnEntB0odgsf6Dpa2jWNNt18H6t2nneOQ=="; - }; - }; - "@expo/ngrok-bin-freebsd-ia32-2.2.8" = { - name = "_at_expo_slash_ngrok-bin-freebsd-ia32"; - packageName = "@expo/ngrok-bin-freebsd-ia32"; - version = "2.2.8"; - src = fetchurl { - url = "https://registry.npmjs.org/@expo/ngrok-bin-freebsd-ia32/-/ngrok-bin-freebsd-ia32-2.2.8.tgz"; - sha512 = "yGdq06wUxreCPxXnhqlL3GzvLtArJ6eDOQinv4SiDK+ftQPY4TloEMQr/rwohvtx63O+bT9jAtgJW44jlfIQ2Q=="; - }; - }; - "@expo/ngrok-bin-freebsd-x64-2.2.8" = { - name = "_at_expo_slash_ngrok-bin-freebsd-x64"; - packageName = "@expo/ngrok-bin-freebsd-x64"; - version = "2.2.8"; - src = fetchurl { - url = "https://registry.npmjs.org/@expo/ngrok-bin-freebsd-x64/-/ngrok-bin-freebsd-x64-2.2.8.tgz"; - sha512 = "1uSZRastddaUIrK/2B5MANhV7LDKJ8/4cSQxn+E2+U296VKkU6n1ZfZ207a7hA1ctQeBcvwkRx9biFxDa99How=="; - }; - }; - "@expo/ngrok-bin-linux-arm-2.2.8" = { - name = "_at_expo_slash_ngrok-bin-linux-arm"; - packageName = "@expo/ngrok-bin-linux-arm"; - version = "2.2.8"; - src = fetchurl { - url = "https://registry.npmjs.org/@expo/ngrok-bin-linux-arm/-/ngrok-bin-linux-arm-2.2.8.tgz"; - sha512 = "qruRsoEuFvaVsSSlhNtHR8uWgF7aA6jdRtCuVKO4pMW32lTZfGS+U/y6hB0YBxXv4xhEn8o1x/15oLU7cNUxEA=="; - }; - }; - "@expo/ngrok-bin-linux-arm64-2.2.8" = { - name = "_at_expo_slash_ngrok-bin-linux-arm64"; - packageName = "@expo/ngrok-bin-linux-arm64"; - version = "2.2.8"; - src = fetchurl { - url = "https://registry.npmjs.org/@expo/ngrok-bin-linux-arm64/-/ngrok-bin-linux-arm64-2.2.8.tgz"; - sha512 = "9iXr88LlzBCp7+NwfPDsSg2sIy5GfWFXrhU8+vGLnFvZ5MO6ZoRmXbw2VRPFm7ekMa0Losddny4aiLDJkr9hXw=="; - }; - }; - "@expo/ngrok-bin-linux-ia32-2.2.8" = { - name = "_at_expo_slash_ngrok-bin-linux-ia32"; - packageName = "@expo/ngrok-bin-linux-ia32"; - version = "2.2.8"; - src = fetchurl { - url = "https://registry.npmjs.org/@expo/ngrok-bin-linux-ia32/-/ngrok-bin-linux-ia32-2.2.8.tgz"; - sha512 = "Cm3BH4nv55A6KF+XjrK8oLe1Ktn4WrUabd6TcErQRM6/2454A+vh1r6CEKWOVWy4bg7ceTbjgHhCdj9WMv8WTg=="; - }; - }; - "@expo/ngrok-bin-linux-x64-2.2.8" = { - name = "_at_expo_slash_ngrok-bin-linux-x64"; - packageName = "@expo/ngrok-bin-linux-x64"; - version = "2.2.8"; - src = fetchurl { - url = "https://registry.npmjs.org/@expo/ngrok-bin-linux-x64/-/ngrok-bin-linux-x64-2.2.8.tgz"; - sha512 = "jNhnnfMR/yAgUV1LnAheq/WWB/Tkdgm5sxZhN0fjN00CeiYTVyNuCsii2tdjXJCGrxdpb6RzvOxjLGstIT0mUQ=="; - }; - }; - "@expo/ngrok-bin-sunos-x64-2.2.8" = { - name = "_at_expo_slash_ngrok-bin-sunos-x64"; - packageName = "@expo/ngrok-bin-sunos-x64"; - version = "2.2.8"; - src = fetchurl { - url = "https://registry.npmjs.org/@expo/ngrok-bin-sunos-x64/-/ngrok-bin-sunos-x64-2.2.8.tgz"; - sha512 = "Ogcn/6jNN2PMMaZ1PJu7JBiZz92Yowa119cclI2E2RKyIqQaOYol2g72oHzm8SQ49KfzEJMGDmQA4Xh29cKmrQ=="; - }; - }; - "@expo/ngrok-bin-win32-ia32-2.2.8-beta.1" = { - name = "_at_expo_slash_ngrok-bin-win32-ia32"; - packageName = "@expo/ngrok-bin-win32-ia32"; - version = "2.2.8-beta.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@expo/ngrok-bin-win32-ia32/-/ngrok-bin-win32-ia32-2.2.8-beta.1.tgz"; - sha512 = "Pva9ZNjUieD2/RVav7LYGAXZ1O6MVXlvOnJmHSmjP4rhreek7/Ez7b5HsCEN3YLjZIcPHH8SV8Duix1NO2zB5A=="; - }; - }; - "@expo/ngrok-bin-win32-x64-2.2.8-beta.1" = { - name = "_at_expo_slash_ngrok-bin-win32-x64"; - packageName = "@expo/ngrok-bin-win32-x64"; - version = "2.2.8-beta.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@expo/ngrok-bin-win32-x64/-/ngrok-bin-win32-x64-2.2.8-beta.1.tgz"; - sha512 = "tVn0jkRC7cbDL502FU7iVI4jbaEKcbTER7pYo2xdUZgM02n4u0AS+FFuzUN+irDiRYZQIFdmDIhxDGl+SHkzbA=="; + url = "https://registry.npmjs.org/@expo/metro-config/-/metro-config-0.1.52.tgz"; + sha512 = "ODxn3/h/6A1qvvKOlmSOUuM2l0hWn02W5idBnCpN8feY3DLGdPh+IFDmpnkT5yFBJ0Fx7qlrgphN4O7+9SF9Bg=="; }; }; "@expo/osascript-2.0.24" = { @@ -1912,13 +1813,13 @@ let sha512 = "oqar3vmvxkVx1OBG7hTjTbCaVVUX2o+aEMLxZWLUiubL0ly1qxgQKEt5p3g3pzkxTft+b1oMf8bT7jMi6iOv+Q=="; }; }; - "@expo/package-manager-0.0.34" = { + "@expo/package-manager-0.0.36" = { name = "_at_expo_slash_package-manager"; packageName = "@expo/package-manager"; - version = "0.0.34"; + version = "0.0.36"; src = fetchurl { - url = "https://registry.npmjs.org/@expo/package-manager/-/package-manager-0.0.34.tgz"; - sha512 = "/zxESSNAjeBI7BlrFlmmLbEDNblJhR0fd9rZGPOwNlRoeojCJ0yh+nTUWXQtBgolffQMYq0LkTTjTDszqs4M+g=="; + url = "https://registry.npmjs.org/@expo/package-manager/-/package-manager-0.0.36.tgz"; + sha512 = "GsdGrtdtuXlEvq+fs6FF+knlgX0l3GII5H4e00Zd6JOz9u1+c+BmfnQNBW59KYvsJ6akmS8dCqUl0Bgt3Bj3Hg=="; }; }; "@expo/plist-0.0.11" = { @@ -1939,13 +1840,13 @@ let sha512 = "qECzzXX5oJot3m2Gu9pfRDz50USdBieQVwYAzeAtQRUTD3PVeTK1tlRUoDcrK8PSruDLuVYdKkLebX4w/o55VA=="; }; }; - "@expo/schemer-1.3.23" = { + "@expo/schemer-1.3.24" = { name = "_at_expo_slash_schemer"; packageName = "@expo/schemer"; - version = "1.3.23"; + version = "1.3.24"; src = fetchurl { - url = "https://registry.npmjs.org/@expo/schemer/-/schemer-1.3.23.tgz"; - sha512 = "ORDxT7mCTtiJZj1R44L5R8HvSMfTJk31qBAb57yx7WXY2crUrwZGwmZryUjGs0Z3BlrbwbsWTvF7CvVa6zy+Sg=="; + url = "https://registry.npmjs.org/@expo/schemer/-/schemer-1.3.24.tgz"; + sha512 = "0Ctzcnf/JhNF4OVOn1BKHKkZCoVA4mxzpTO9yCK/+Kbls9wMFUns1TGl10BYytozLC7AGSx8c4vg+Xn/ESVZNg=="; }; }; "@expo/simple-spinner-1.0.2" = { @@ -1966,40 +1867,22 @@ let sha512 = "LB7jWkqrHo+5fJHNrLAFdimuSXQ2MQ4lA7SQW5bf/HbsXuV2VrT/jN/M8f/KoWt0uJMGN4k/j7Opx4AvOOxSew=="; }; }; - "@expo/traveling-fastlane-darwin-1.15.1" = { - name = "_at_expo_slash_traveling-fastlane-darwin"; - packageName = "@expo/traveling-fastlane-darwin"; - version = "1.15.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@expo/traveling-fastlane-darwin/-/traveling-fastlane-darwin-1.15.1.tgz"; - sha512 = "7sjG83+o9BT4MVPNq2UVqy1Oyg3n47FpEIDxc0M9CQvbC1WgYsAKloOJ85g5GRXZAjqzPOPUZF+lBhGbOwmQvg=="; - }; - }; - "@expo/traveling-fastlane-linux-1.15.1" = { - name = "_at_expo_slash_traveling-fastlane-linux"; - packageName = "@expo/traveling-fastlane-linux"; - version = "1.15.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@expo/traveling-fastlane-linux/-/traveling-fastlane-linux-1.15.1.tgz"; - sha512 = "YaFAYYOOxImYNx9s6X3tY6fC1y6rka0KXstrs2zrS+vHyyBD8IOhNtIUvybHScM3jUL+qukgKElAb+7gzlF6Eg=="; - }; - }; - "@expo/webpack-config-0.12.52" = { + "@expo/webpack-config-0.12.56" = { name = "_at_expo_slash_webpack-config"; packageName = "@expo/webpack-config"; - version = "0.12.52"; + version = "0.12.56"; src = fetchurl { - url = "https://registry.npmjs.org/@expo/webpack-config/-/webpack-config-0.12.52.tgz"; - sha512 = "OOxIMaKa2O4JPDZpNMc+G40Z5MoOoRwvfU+331+ydqGzPDAev8/PtalnQbJTuqjVaU99QzVlrn1BfLWwJ/3fig=="; + url = "https://registry.npmjs.org/@expo/webpack-config/-/webpack-config-0.12.56.tgz"; + sha512 = "sp2anAJFm7pe5foF+UTrTpsryaEqg141qWkBqS5uJmROFWeM0SRhnW/axtRGvuZQnt4927RZ9a2FkDv+tXQEaA=="; }; }; - "@expo/xdl-59.0.14" = { + "@expo/xdl-59.0.19" = { name = "_at_expo_slash_xdl"; packageName = "@expo/xdl"; - version = "59.0.14"; + version = "59.0.19"; src = fetchurl { - url = "https://registry.npmjs.org/@expo/xdl/-/xdl-59.0.14.tgz"; - sha512 = "h2czzd9nBhiafVp1JFPcP/VYqefKpNb8Om7oY6twm7GCFkX+tlZ8zYtkVfgE9WlOhtAOu8b56eKfjAOdUsqlGQ=="; + url = "https://registry.npmjs.org/@expo/xdl/-/xdl-59.0.19.tgz"; + sha512 = "QfmDX1ujVjJmtQo9iz8Q32LsEFnLWyi9VEAOxOGhhW2pMshXfO+R2Twc8dyU1jgF/AL+LoUm4tIGsnoFewlhJQ=="; }; }; "@fast-csv/format-4.3.5" = { @@ -2047,22 +1930,22 @@ let sha512 = "t3yIbbPKJubb22vQ/FIWwS9vFAzaPYzFxKWPHVWLtxs/P+5yL+LD3B16DRtYreWAdl9CZvEbos58ChLZ0KHwSQ=="; }; }; - "@fluentui/react-7.155.3" = { + "@fluentui/react-7.157.0" = { name = "_at_fluentui_slash_react"; packageName = "@fluentui/react"; - version = "7.155.3"; + version = "7.157.0"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/react/-/react-7.155.3.tgz"; - sha512 = "bVK9qMUqjWQ68UPkQGHCMnCKeH8uSlCLF2QgR9ESMV/g0sHUvRqCO1Yuj9JyO4NDanqfX62NDgJzimHKj1/MQg=="; + url = "https://registry.npmjs.org/@fluentui/react/-/react-7.157.0.tgz"; + sha512 = "dpD+wmZIGFcxBkc4VxSbJikOkaEIPYq5XspEKIb6xdo6Us99zi4d4VH5omOF74xBxPVwPCDZG/bN07at7iuteQ=="; }; }; - "@fluentui/react-focus-7.17.0" = { + "@fluentui/react-focus-7.17.1" = { name = "_at_fluentui_slash_react-focus"; packageName = "@fluentui/react-focus"; - version = "7.17.0"; + version = "7.17.1"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/react-focus/-/react-focus-7.17.0.tgz"; - sha512 = "xr5LExRnLW9CNyWDkcMmvOAgOXru/GBTIKcVqNahgRf7CIyHraY0m/0gFblwNtPYQOS9ltM3c+fbyYvCXBZvEw=="; + url = "https://registry.npmjs.org/@fluentui/react-focus/-/react-focus-7.17.1.tgz"; + sha512 = "Nulq2pE4pX6Pf+tGZl8uLp8VfqUzx3elC5v7QvYSBdjnZK8ykitdsa+Sd3PKYWW2EMlzVRSptlzbuJ6JyEDQKQ=="; }; }; "@fluentui/react-window-provider-1.0.1" = { @@ -2074,13 +1957,13 @@ let sha512 = "5hvruDyF0uE8+6YN6Y+d2sEzexBadxUNxUjDcDreTPsmtHPwF5FPBYLhoD7T84L5U4YNvKxKh25tYJm6E0GE2w=="; }; }; - "@fluentui/theme-1.7.0" = { + "@fluentui/theme-1.7.1" = { name = "_at_fluentui_slash_theme"; packageName = "@fluentui/theme"; - version = "1.7.0"; + version = "1.7.1"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/theme/-/theme-1.7.0.tgz"; - sha512 = "pzqDZC2bVD6/S45Bnve4wmrXi4cN7XiCr+OhzvgmoQfDkm5vyXsa82/cVtif/zy1OFU96S9zOTtt3e+QQuGUUg=="; + url = "https://registry.npmjs.org/@fluentui/theme/-/theme-1.7.1.tgz"; + sha512 = "cwx8gJ0O9d+Z8g6Lq7BgDgH8XPfSloUSy0GN3fWHJGrDCBPcnmz6/GKbbvxw9PZ2t1iNcAzJEJNT6NyuOOobPA=="; }; }; "@google-cloud/paginator-3.0.5" = { @@ -2119,13 +2002,13 @@ let sha512 = "d4VSA86eL/AFTe5xtyZX+ePUjE8dIFu2T8zmdeNBSa5/kNgXPCx/o/wbFNHAGLJdGnk1vddRuMESD9HbOC8irw=="; }; }; - "@google-cloud/pubsub-2.7.0" = { + "@google-cloud/pubsub-2.8.0" = { name = "_at_google-cloud_slash_pubsub"; packageName = "@google-cloud/pubsub"; - version = "2.7.0"; + version = "2.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@google-cloud/pubsub/-/pubsub-2.7.0.tgz"; - sha512 = "wc/XOo5Ibo3GWmuaLu80EBIhXSdu2vf99HUqBbdsSSkmRNIka2HqoIhLlOFnnncQn0lZnGL7wtKGIDLoH9LiBg=="; + url = "https://registry.npmjs.org/@google-cloud/pubsub/-/pubsub-2.8.0.tgz"; + sha512 = "AoSKAbpHCoLq6jO9vMX+K6hJhkayafan24Rs2RKHU8Y0qF6IGSm1+ly0OG12TgziHWg818/6dljWWKgwDcp8KA=="; }; }; "@graphql-cli/common-4.1.0" = { @@ -2155,31 +2038,31 @@ let sha512 = "+ywPfK6N2Ddna6oOa5Qb1Mv7EA8LOwRNOAPP9dL37FEhksJM9pYqPSceUcqMqg7S9b0+Cgr78s408rgvurV3/Q=="; }; }; - "@graphql-tools/delegate-7.0.8" = { + "@graphql-tools/delegate-7.0.9" = { name = "_at_graphql-tools_slash_delegate"; packageName = "@graphql-tools/delegate"; - version = "7.0.8"; + version = "7.0.9"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-7.0.8.tgz"; - sha512 = "pS1wci7ZxzdCITRrMI66UA+6/E0Z1Yczd3QxJBDb4Kp0nTGy1xy7enGa0+i55EmCvKvuwyx+tzXzwA1fNGRJzg=="; + url = "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-7.0.9.tgz"; + sha512 = "nlelOb354cyweV+SpTXkoGZHKgJ1PwPkHWq/0RXM5LllQsR3OrSQKKWMrd1g9dyawEZbadCF3fDJJWSQ4HOg2g=="; }; }; - "@graphql-tools/graphql-file-loader-6.2.6" = { + "@graphql-tools/graphql-file-loader-6.2.7" = { name = "_at_graphql-tools_slash_graphql-file-loader"; packageName = "@graphql-tools/graphql-file-loader"; - version = "6.2.6"; + version = "6.2.7"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/graphql-file-loader/-/graphql-file-loader-6.2.6.tgz"; - sha512 = "L+RdYl5C6+X0zdOTUotY0K5zwqvSGpqI/qcZpVvCDenoAcVTyaNLmnd/ViErwedhCaGqAAV0wI1nPtyKFPlMUg=="; + url = "https://registry.npmjs.org/@graphql-tools/graphql-file-loader/-/graphql-file-loader-6.2.7.tgz"; + sha512 = "5k2SNz0W87tDcymhEMZMkd6/vs6QawDyjQXWtqkuLTBF3vxjxPD1I4dwHoxgWPIjjANhXybvulD7E+St/7s9TQ=="; }; }; - "@graphql-tools/import-6.2.5" = { + "@graphql-tools/import-6.2.6" = { name = "_at_graphql-tools_slash_import"; packageName = "@graphql-tools/import"; - version = "6.2.5"; + version = "6.2.6"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/import/-/import-6.2.5.tgz"; - sha512 = "ZGXT5tDod7m+LO38fc+o0JzR1LstL0RF35HKEWoUdxRIVaaeYH9VMuan9Gn+9M9RDME3RnzEa9aGzf9ATj8bTA=="; + url = "https://registry.npmjs.org/@graphql-tools/import/-/import-6.2.6.tgz"; + sha512 = "/0H/bDjNK1MnKonk8fMbB7wIYU6QLCwbQOHtSHbFJ4j2qki5CqfAxpF+fGX6KovDtkdigcgRMvSKKi14oiuHPA=="; }; }; "@graphql-tools/json-file-loader-6.2.6" = { @@ -2200,13 +2083,13 @@ let sha512 = "FlQC50VELwRxoWUbJMMMs5gG0Dl8BaQYMrXUHTsxwqR7UmksUYnysC21rdousvs6jVZ7pf4unZfZFtBjz+8Edg=="; }; }; - "@graphql-tools/merge-6.2.6" = { + "@graphql-tools/merge-6.2.7" = { name = "_at_graphql-tools_slash_merge"; packageName = "@graphql-tools/merge"; - version = "6.2.6"; + version = "6.2.7"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/merge/-/merge-6.2.6.tgz"; - sha512 = "G6x0QlIzFHoJ3dyF9a4gxmBtaEYJ+EoAAGqXHsE/drRr58K1jscQdfKZdF1wZWZgxkgakHqgt1+oFMeQg/O6ug=="; + url = "https://registry.npmjs.org/@graphql-tools/merge/-/merge-6.2.7.tgz"; + sha512 = "9acgDkkYeAHpuqhOa3E63NZPCX/iWo819Q320sCCMkydF1xgx0qCRYz/V03xPdpQETKRqBG2i2N2csneeEYYig=="; }; }; "@graphql-tools/schema-7.1.2" = { @@ -2218,13 +2101,13 @@ let sha512 = "GabNT51ErVHE2riDH4EQdRusUsI+nMElT8LdFHyuP53v8gwtleAj+LePQ9jif4NYUe/JQVqO8V28vPcHrA7gfQ=="; }; }; - "@graphql-tools/url-loader-6.7.1" = { + "@graphql-tools/url-loader-6.8.0" = { name = "_at_graphql-tools_slash_url-loader"; packageName = "@graphql-tools/url-loader"; - version = "6.7.1"; + version = "6.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-6.7.1.tgz"; - sha512 = "7NJ1G5diJAuWYZszQf0mNwPipVMOjIIMteNkutdExBq4CgN0V1xa3/iC25CUrI7sZiq+D367zZNONmKf+3bA2Q=="; + url = "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-6.8.0.tgz"; + sha512 = "x4f93UnH7kNr9iHFpJHL6kYWogRFlxMEnXybHS9xNCFd08+ftMO22bUb8esnFsyNrtMMlkLtshDSyNb3LbIMQg=="; }; }; "@graphql-tools/utils-6.2.4" = { @@ -2236,13 +2119,13 @@ let sha512 = "ybgZ9EIJE3JMOtTrTd2VcIpTXtDrn2q6eiYkeYMKRVh3K41+LZa6YnR2zKERTXqTWqhobROwLt4BZbw2O3Aeeg=="; }; }; - "@graphql-tools/utils-7.2.3" = { + "@graphql-tools/utils-7.2.4" = { name = "_at_graphql-tools_slash_utils"; packageName = "@graphql-tools/utils"; - version = "7.2.3"; + version = "7.2.4"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/utils/-/utils-7.2.3.tgz"; - sha512 = "9MvSKeo+8DM72706FvrUP8figQjRzSwBswWrXviyWyt3wSkk6MU2cURQKfMpc0I6nswZvkDSqYoQQ/6mazoXxA=="; + url = "https://registry.npmjs.org/@graphql-tools/utils/-/utils-7.2.4.tgz"; + sha512 = "EDSb98dTWX8FngvayWejip1DutOl0wGtNbXC7a3CZf5fiJS7bGHQ/8cSlMhe9XaHwpLJCbAk/Ijnp/dYbXk33w=="; }; }; "@graphql-tools/wrap-7.0.5" = { @@ -2254,31 +2137,22 @@ let sha512 = "KCWBXsDfvG46GNUawRltJL4j9BMGoOG7oo3WEyCQP+SByWXiTe5cBF45SLDVQgdjljGNZhZ4Lq/7avIkF7/zDQ=="; }; }; - "@grpc/grpc-js-1.1.8" = { + "@grpc/grpc-js-1.2.5" = { name = "_at_grpc_slash_grpc-js"; packageName = "@grpc/grpc-js"; - version = "1.1.8"; + version = "1.2.5"; src = fetchurl { - url = "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.1.8.tgz"; - sha512 = "64hg5rmEm6F/NvlWERhHmmgxbWU8nD2TMWE+9TvG7/WcOrFT3fzg/Uu631pXRFwmJ4aWO/kp9vVSlr8FUjBDLA=="; + url = "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.2.5.tgz"; + sha512 = "CBCNwedw8McnEBq9jvoiJikws16WN0OiHFejQPovY71XkFWSiIqgvydYiDwpvIYDJmhPQ7qZNzW9BPndhXbx1Q=="; }; }; - "@grpc/proto-loader-0.5.5" = { + "@grpc/proto-loader-0.5.6" = { name = "_at_grpc_slash_proto-loader"; packageName = "@grpc/proto-loader"; - version = "0.5.5"; + version = "0.5.6"; src = fetchurl { - url = "https://registry.npmjs.org/@grpc/proto-loader/-/proto-loader-0.5.5.tgz"; - sha512 = "WwN9jVNdHRQoOBo9FDH7qU+mgfjPc8GygPYms3M+y3fbQLfnCe/Kv/E01t7JRgnrsOHH8euvSbed3mIalXhwqQ=="; - }; - }; - "@grpc/proto-loader-0.6.0-pre9" = { - name = "_at_grpc_slash_proto-loader"; - packageName = "@grpc/proto-loader"; - version = "0.6.0-pre9"; - src = fetchurl { - url = "https://registry.npmjs.org/@grpc/proto-loader/-/proto-loader-0.6.0-pre9.tgz"; - sha512 = "oM+LjpEjNzW5pNJjt4/hq1HYayNeQT+eGrOPABJnYHv7TyNPDNzkQ76rDYZF86X5swJOa4EujEMzQ9iiTdPgww=="; + url = "https://registry.npmjs.org/@grpc/proto-loader/-/proto-loader-0.5.6.tgz"; + sha512 = "DT14xgw3PSzPxwS13auTEwxhMMOoz33DPUKNtmYK/QYbBSpLXJy78FGGs5yVoxVobEqPm4iW9MOIoz0A3bLTRQ=="; }; }; "@gulp-sourcemaps/identity-map-1.0.2" = { @@ -2839,58 +2713,58 @@ let sha512 = "EjPkDQOzV/oZfbolEUgFT6SE++PtCccVBvjuACkttyCfl0P2jnpR49SwstyVLc2u8AwBAZEHHAw9lPYaMjtbXQ=="; }; }; - "@joplin/fork-htmlparser2-4.1.14" = { + "@joplin/fork-htmlparser2-4.1.21" = { name = "_at_joplin_slash_fork-htmlparser2"; packageName = "@joplin/fork-htmlparser2"; - version = "4.1.14"; + version = "4.1.21"; src = fetchurl { - url = "https://registry.npmjs.org/@joplin/fork-htmlparser2/-/fork-htmlparser2-4.1.14.tgz"; - sha512 = "uE5StVO3A6XcQLd5CxRU+XU7ecAKX8lmTFnHlnhBkgn8V8CHsHIUfZy1uw+fZ4gnC0kenq6uiZavhDPBAkibKA=="; + url = "https://registry.npmjs.org/@joplin/fork-htmlparser2/-/fork-htmlparser2-4.1.21.tgz"; + sha512 = "1+3/llkmSFF62wCj+UPeHDO8QevQjEm8uGSq7SltHVARZgWuvE3s4U/sKOoWCuqs5u34QHC3DcJ2ZlJRTwgYdg=="; }; }; - "@joplin/fork-sax-1.2.18" = { + "@joplin/fork-sax-1.2.25" = { name = "_at_joplin_slash_fork-sax"; packageName = "@joplin/fork-sax"; - version = "1.2.18"; + version = "1.2.25"; src = fetchurl { - url = "https://registry.npmjs.org/@joplin/fork-sax/-/fork-sax-1.2.18.tgz"; - sha512 = "tlsBwoayPjEVjAsylCosflTtF4EgGrSP4b/2r5Ci640846YDPdg0nqKuOUs82Xmptc3QQcnjzRKW8+7Up9+lfQ=="; + url = "https://registry.npmjs.org/@joplin/fork-sax/-/fork-sax-1.2.25.tgz"; + sha512 = "m5ZdP1JX0GmTaNz3zhUxjiGdtaDtPVqpY2+h3e5mh2WLwZJmT9TCKp7upB1+L+fOLgjI6em7xYHpvIL/dml+5Q=="; }; }; - "@joplin/lib-1.0.15" = { + "@joplin/lib-1.0.18" = { name = "_at_joplin_slash_lib"; packageName = "@joplin/lib"; - version = "1.0.15"; - src = fetchurl { - url = "https://registry.npmjs.org/@joplin/lib/-/lib-1.0.15.tgz"; - sha512 = "wOA+fxi93b9qfuRV7Ynhc+uUmW2XDVMugHWzqDdiOPd394mYQSX21/Eqvxhd049SsHiqmsMo2scz7rNtFLMnuA=="; - }; - }; - "@joplin/renderer-1.0.23" = { - name = "_at_joplin_slash_renderer"; - packageName = "@joplin/renderer"; - version = "1.0.23"; - src = fetchurl { - url = "https://registry.npmjs.org/@joplin/renderer/-/renderer-1.0.23.tgz"; - sha512 = "1gddYqDLxeyR96m1/9WQ7Ri2tbaIOEW+JmbZKst9HDsgj8LiNwtBha+y35KqRAS6pWimbcXh0RZDkA4DmQ2VOw=="; - }; - }; - "@joplin/turndown-4.0.36" = { - name = "_at_joplin_slash_turndown"; - packageName = "@joplin/turndown"; - version = "4.0.36"; - src = fetchurl { - url = "https://registry.npmjs.org/@joplin/turndown/-/turndown-4.0.36.tgz"; - sha512 = "lks0n5HTAsg0O71L9kLoTaASAU4NILG3SyDcX/10K1g2wpoUadmXQmznaa3WqY4RgN0gzRKaZV51d7JtO9ZwXQ=="; - }; - }; - "@joplin/turndown-plugin-gfm-1.0.18" = { - name = "_at_joplin_slash_turndown-plugin-gfm"; - packageName = "@joplin/turndown-plugin-gfm"; version = "1.0.18"; src = fetchurl { - url = "https://registry.npmjs.org/@joplin/turndown-plugin-gfm/-/turndown-plugin-gfm-1.0.18.tgz"; - sha512 = "6uUXRU5PILzKAUP50t9FOyMrpGgfpw2ugrZ8hAfV+PhNZsjSgsc+cSBBdjn/HIEgNCr9m7TlHSzscxrHg496Iw=="; + url = "https://registry.npmjs.org/@joplin/lib/-/lib-1.0.18.tgz"; + sha512 = "r0Z+bolszlPUsanaQIUk/tog3jHw0rGtUxXTHDMtycFWkWYVpjlT3bvxiYrV5MwLjyn/xnfUCIdHeUi/Lz3LPQ=="; + }; + }; + "@joplin/renderer-1.0.26" = { + name = "_at_joplin_slash_renderer"; + packageName = "@joplin/renderer"; + version = "1.0.26"; + src = fetchurl { + url = "https://registry.npmjs.org/@joplin/renderer/-/renderer-1.0.26.tgz"; + sha512 = "RDRYjuPCn1ltematEZQhgvZbIGBQ+2F3jgAdXpqByg71pmxrMZyOLLbNVYJyKK4w2Ecvmbpwuo0h9RbMb/56Ow=="; + }; + }; + "@joplin/turndown-4.0.43" = { + name = "_at_joplin_slash_turndown"; + packageName = "@joplin/turndown"; + version = "4.0.43"; + src = fetchurl { + url = "https://registry.npmjs.org/@joplin/turndown/-/turndown-4.0.43.tgz"; + sha512 = "ZDGADbHVRPqeNrxvLTQ9JjmuChu40AyUPOA4N8zC8NcNzZQl5ZtKxZinMOOCGm8TXNNm7S987MYtnHszogCwtg=="; + }; + }; + "@joplin/turndown-plugin-gfm-1.0.25" = { + name = "_at_joplin_slash_turndown-plugin-gfm"; + packageName = "@joplin/turndown-plugin-gfm"; + version = "1.0.25"; + src = fetchurl { + url = "https://registry.npmjs.org/@joplin/turndown-plugin-gfm/-/turndown-plugin-gfm-1.0.25.tgz"; + sha512 = "ycWQ9a88tPH04sNfgZGsU5SuXWlOfEjVv2MLkF2D86ROyNIh7hxQe5sYvQTybhdUT2BkhLcRMm/qdp5Y/Cn67A=="; }; }; "@jsdevtools/ono-7.1.3" = { @@ -2902,13 +2776,13 @@ let sha512 = "4JQNk+3mVzK3xh2rqd6RB4J46qUR19azEHBneZyTZM+c456qOrbbM/5xcR8huNCCcbVt7+UmizG6GuUvPvKUYg=="; }; }; - "@jsii/spec-1.16.0" = { + "@jsii/spec-1.17.1" = { name = "_at_jsii_slash_spec"; packageName = "@jsii/spec"; - version = "1.16.0"; + version = "1.17.1"; src = fetchurl { - url = "https://registry.npmjs.org/@jsii/spec/-/spec-1.16.0.tgz"; - sha512 = "DH3rDGa781UmRtg/ykFyxrfhjaz1SRz2BblNXDxwArhl0aUiN5HOdzi9icX8CFwdB9+ZxTtXuxap3BwvLa5xnA=="; + url = "https://registry.npmjs.org/@jsii/spec/-/spec-1.17.1.tgz"; + sha512 = "9/bdS7MpIVwSgHfaZiYnpE56T2YNE2WAJbhZzQTsYZCYkB8icsP+hVCIWzeyGZmHR9KggaCETbmNlLG0v2QdSw=="; }; }; "@kwsites/file-exists-1.1.1" = { @@ -3496,22 +3370,22 @@ let sha512 = "/NdX1Ql8hKNM0vHFJnEr/bcw6BG0ULHD3HhInpniZw5ixpl+n/QIRfMEEmLCn7acedbM1zGdZvU5ZMbn9kcF5Q=="; }; }; - "@microsoft/load-themed-styles-1.10.141" = { + "@microsoft/load-themed-styles-1.10.146" = { name = "_at_microsoft_slash_load-themed-styles"; packageName = "@microsoft/load-themed-styles"; - version = "1.10.141"; + version = "1.10.146"; src = fetchurl { - url = "https://registry.npmjs.org/@microsoft/load-themed-styles/-/load-themed-styles-1.10.141.tgz"; - sha512 = "IWqbTWhxpp10X2nZI14oqbPtzrRLvXtyX7sV/QDfVBtQQivLilZFynr/X69SAZtbSp/wi7WI8gKl2/6TuTNN1A=="; + url = "https://registry.npmjs.org/@microsoft/load-themed-styles/-/load-themed-styles-1.10.146.tgz"; + sha512 = "qQZ4J58J2VMe/XRpr2YRDusQB9uRBJ1SjJB76x7uH94t9hqxjVVxn2qL99Bl+ERbfrACZ9peGn2uamt4ponqZQ=="; }; }; - "@mozilla/readability-0.3.0" = { + "@mozilla/readability-0.4.1" = { name = "_at_mozilla_slash_readability"; packageName = "@mozilla/readability"; - version = "0.3.0"; + version = "0.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@mozilla/readability/-/readability-0.3.0.tgz"; - sha512 = "q8f1CAZsRKK1j+O0BmikGIlKSK03RpT4woT0PCQwhw0nH0z4+rG026AkxoPcjT7Dsgh1ifGscW8tOpvjoyOjvw=="; + url = "https://registry.npmjs.org/@mozilla/readability/-/readability-0.4.1.tgz"; + sha512 = "yar/f0w0fRUVM895s6yd5Z2oIxjG/6c3ROB/uQboSOBaDlri/nqI4aKtdqrldWciTLcdpjB2Z6MiVF2Bl9b8LA=="; }; }; "@mrmlnc/readdir-enhanced-2.2.1" = { @@ -3532,13 +3406,13 @@ let sha512 = "Vwhc3ObxmDZmA5hY8mfsau2rJ4vGPvzbj20QSZ2/E1GDPF61QVyjLfNHak9xmel6pW4heRt3v1fHa6np9Ehfeg=="; }; }; - "@nestjs/schematics-7.2.6" = { + "@nestjs/schematics-7.2.7" = { name = "_at_nestjs_slash_schematics"; packageName = "@nestjs/schematics"; - version = "7.2.6"; + version = "7.2.7"; src = fetchurl { - url = "https://registry.npmjs.org/@nestjs/schematics/-/schematics-7.2.6.tgz"; - sha512 = "4geGO9pjYG4Sc4Qi+pkUVIbaxPEeySHi/z17po8nP9uaPPo8AUKP9rXjNL+mhMrXqFlB/hhN6xBBYtMyL5pB2Q=="; + url = "https://registry.npmjs.org/@nestjs/schematics/-/schematics-7.2.7.tgz"; + sha512 = "71XqMPf7s2P1Q6PVMDLbSLphVWgGDK2CgURVYyreuIWXVSoi9pcPIeO5k0Qb5n5jELlKwdrf66g05U2I6TIxzg=="; }; }; "@netflix/nerror-1.1.3" = { @@ -3550,13 +3424,13 @@ let sha512 = "b+MGNyP9/LXkapreJzNUzcvuzZslj/RGgdVVJ16P2wSlYatfLycPObImqVJSmNAdyeShvNeM/pl3sVZsObFueg=="; }; }; - "@netlify/build-8.0.1" = { + "@netlify/build-8.3.1" = { name = "_at_netlify_slash_build"; packageName = "@netlify/build"; - version = "8.0.1"; + version = "8.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/@netlify/build/-/build-8.0.1.tgz"; - sha512 = "DOBUR4x0GEmi4hD8LagJfPCtxnaAtjRTJgZdTx9lFngC2OHY+xIwGZ3Ilct1b3vbAcl0SzHA+HZ4xrG2V/EWdw=="; + url = "https://registry.npmjs.org/@netlify/build/-/build-8.3.1.tgz"; + sha512 = "E5vKBVk2x0ql5VKtGOpoWNsAzYUbVteK0VW+ZR69ANZPmCZjveeSJ/1bDVR+pme3yzGMTokX4eHS60ym5fvUjw=="; }; }; "@netlify/cache-utils-1.0.6" = { @@ -3568,31 +3442,31 @@ let sha512 = "Pz/TzLZhMUACT+X7Un6jZCXgEUwLPVNbx69DQtEOMZ6hNBE1b1ErTHFbSaHA0KfDn/yqCII5vS274DERvNuRwg=="; }; }; - "@netlify/config-0.11.11" = { + "@netlify/config-3.0.4" = { name = "_at_netlify_slash_config"; packageName = "@netlify/config"; - version = "0.11.11"; + version = "3.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/@netlify/config/-/config-0.11.11.tgz"; - sha512 = "Z7yzbx5qCX2I5RLlNyo0MMQ6GKJc8o5Nej9yspCavjqgYlUS7VJfbeE67WNxC26FXwDUqq00zJ0MrCS0Un1YOw=="; + url = "https://registry.npmjs.org/@netlify/config/-/config-3.0.4.tgz"; + sha512 = "BDENk7IOyLwADTebFhHrXNhn2H5tgTxkBJR/FPzzfWbq28YLrsKauFMmZbCUivoP594/gIKZT6cGlPm5tVjxbg=="; }; }; - "@netlify/config-2.4.3" = { - name = "_at_netlify_slash_config"; - packageName = "@netlify/config"; - version = "2.4.3"; + "@netlify/framework-info-2.1.1" = { + name = "_at_netlify_slash_framework-info"; + packageName = "@netlify/framework-info"; + version = "2.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/@netlify/config/-/config-2.4.3.tgz"; - sha512 = "Uz7Oo3tJP2VTgNgsJtRlwAhO5jTozkpNMCKALb814ssJKx7nE/4QvNxJPCQNBDXY9BSeXVIPfy0vMfshxatL+g=="; + url = "https://registry.npmjs.org/@netlify/framework-info/-/framework-info-2.1.1.tgz"; + sha512 = "JblagtBYtOwuxZy94jXPNc3p+QOuyx+kZurfduswYbT8VWPlyuiL4AQFKaIJvdZS6O9G8uKEiFGsKFhRTx6vAA=="; }; }; - "@netlify/functions-utils-1.3.4" = { + "@netlify/functions-utils-1.3.7" = { name = "_at_netlify_slash_functions-utils"; packageName = "@netlify/functions-utils"; - version = "1.3.4"; + version = "1.3.7"; src = fetchurl { - url = "https://registry.npmjs.org/@netlify/functions-utils/-/functions-utils-1.3.4.tgz"; - sha512 = "AkVd03D6K7Uwli+t5xTMm5c1jn1HRFY3YgslLV91huHI++3CjOsGpsnDfhoN2kj1aN8OLqliTOvs4PQHC2dKpw=="; + url = "https://registry.npmjs.org/@netlify/functions-utils/-/functions-utils-1.3.7.tgz"; + sha512 = "jqEPVGAOrf9JvUdFvPhSoBqTuWpL7l4XjejETqQpbHwXl1G711RC1vtgvVc8wYdFOBZNPfNEagtxmRwwbW8a/w=="; }; }; "@netlify/git-utils-1.0.6" = { @@ -3604,31 +3478,22 @@ let sha512 = "JpuvzCTf9QXVEgVA4mSshH6fi9Dtg0Pqe5d19yaN2f1H9DNnWro3kJUaoR68Hfo0rBls6kYwWJuNZ/csb03VuQ=="; }; }; - "@netlify/open-api-0.18.1" = { + "@netlify/open-api-1.3.0" = { name = "_at_netlify_slash_open-api"; packageName = "@netlify/open-api"; - version = "0.18.1"; + version = "1.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/@netlify/open-api/-/open-api-0.18.1.tgz"; - sha512 = "kkRCzA71HugJxmPOcWv2B4ArHhSMKjs2ArGBr10ndocVLdAHwCYoJm0X4Xt8IYaOcGD9Lm4fbLjpXDLDRGDzPw=="; + url = "https://registry.npmjs.org/@netlify/open-api/-/open-api-1.3.0.tgz"; + sha512 = "GcCPXIWI8VDBsLN4nPvb6sKS9tbi4lrHLhex90hT27nwTDeu4HgGE93YilcsgZ1LLODJNxC5LdfTNLtvEHMKVg=="; }; }; - "@netlify/open-api-1.0.0" = { - name = "_at_netlify_slash_open-api"; - packageName = "@netlify/open-api"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@netlify/open-api/-/open-api-1.0.0.tgz"; - sha512 = "LAicAlsAZXybGtKzaOTmIYelSe82vgZlc17IeNUQxab2IlUCH7VhTKCx9EyJEgiXhLvmYoOjuYE1Ee9ZsnrybA=="; - }; - }; - "@netlify/plugin-edge-handlers-1.10.0" = { + "@netlify/plugin-edge-handlers-1.11.2" = { name = "_at_netlify_slash_plugin-edge-handlers"; packageName = "@netlify/plugin-edge-handlers"; - version = "1.10.0"; + version = "1.11.2"; src = fetchurl { - url = "https://registry.npmjs.org/@netlify/plugin-edge-handlers/-/plugin-edge-handlers-1.10.0.tgz"; - sha512 = "ZgabL4Q+DfB5lqq36QYvGIhLifoiVz5oDfqLp1w7hRsJYwUhUPqeJx/0zph17ZaJB4CvHRadFOeyJeDSkzrERg=="; + url = "https://registry.npmjs.org/@netlify/plugin-edge-handlers/-/plugin-edge-handlers-1.11.2.tgz"; + sha512 = "mHCg3X3aU59DHtg7fsXvNA2CN9gwaX7aRtrHV/NWbHUPUuHzETTTd1Ig/u2zVo4ehi7KZKcqXr1jzQEoO6aJYA=="; }; }; "@netlify/plugins-list-2.2.0" = { @@ -3649,112 +3514,103 @@ let sha512 = "Ovgkw9b7HSLsdhTBA+LNq3KY83gU9DP0xHbwDlg07zLpY3RtRN2IBy11w+nRPjQwfNT33OmuTvayH6amJDku5Q=="; }; }; - "@netlify/traffic-mesh-agent-0.27.0" = { + "@netlify/traffic-mesh-agent-0.27.10" = { name = "_at_netlify_slash_traffic-mesh-agent"; packageName = "@netlify/traffic-mesh-agent"; - version = "0.27.0"; + version = "0.27.10"; src = fetchurl { - url = "https://registry.npmjs.org/@netlify/traffic-mesh-agent/-/traffic-mesh-agent-0.27.0.tgz"; - sha512 = "a+jXM75Ir9PavNTzDRkZWQT7jHc02wWF8mRYXWbvku+VLqmmkA61RyhAgSeo5dMWSdMofSRkoifnW7leyv7Obw=="; + url = "https://registry.npmjs.org/@netlify/traffic-mesh-agent/-/traffic-mesh-agent-0.27.10.tgz"; + sha512 = "HZXEdIXzg8CpysYRDVXkBpmjOj/C8Zb8Q/qkkt9x+npJ56HeX6sXAE4vK4SMCRLkkbQ2VyYTaDKg++GefeB2Gg=="; }; }; - "@netlify/traffic-mesh-agent-darwin-x64-0.27.0" = { + "@netlify/traffic-mesh-agent-darwin-x64-0.27.10" = { name = "_at_netlify_slash_traffic-mesh-agent-darwin-x64"; packageName = "@netlify/traffic-mesh-agent-darwin-x64"; - version = "0.27.0"; + version = "0.27.10"; src = fetchurl { - url = "https://registry.npmjs.org/@netlify/traffic-mesh-agent-darwin-x64/-/traffic-mesh-agent-darwin-x64-0.27.0.tgz"; - sha512 = "a0EDNrdLBjxp+GYj/WQSifuQZorFQkY6spO4wuOl3mQV3tKTkBmu09+FsfitYpgZHDMoPzfhvURJrUtJIHTgqQ=="; + url = "https://registry.npmjs.org/@netlify/traffic-mesh-agent-darwin-x64/-/traffic-mesh-agent-darwin-x64-0.27.10.tgz"; + sha512 = "j2blCh3TKNV35VPF9Zf/LM3v6pH/gz/Y7uu/78RLbgNvCW0vGN7b1GgFnXQKwrvbL6tRGumJS2P5PWUfEsKOBA=="; }; }; - "@netlify/traffic-mesh-agent-linux-x64-0.27.0" = { + "@netlify/traffic-mesh-agent-linux-x64-0.27.10" = { name = "_at_netlify_slash_traffic-mesh-agent-linux-x64"; packageName = "@netlify/traffic-mesh-agent-linux-x64"; - version = "0.27.0"; + version = "0.27.10"; src = fetchurl { - url = "https://registry.npmjs.org/@netlify/traffic-mesh-agent-linux-x64/-/traffic-mesh-agent-linux-x64-0.27.0.tgz"; - sha512 = "m7p/0eTXKILxCpTqQOmBkYdIjYKwSC2KZbPpDJ4sYfnMIF3qa9uMp8qrK9At/oGPckeiTq4Id775veldhwt2lw=="; + url = "https://registry.npmjs.org/@netlify/traffic-mesh-agent-linux-x64/-/traffic-mesh-agent-linux-x64-0.27.10.tgz"; + sha512 = "JdeGT356TtqbxY6IjsS+wik68V0iNGdRsGV4cYOx/aAfclAyZ9DL29A4nzobyq5J+s5binrbKpix26/WKi+sqA=="; }; }; - "@netlify/traffic-mesh-agent-win32-x64-0.27.0" = { + "@netlify/traffic-mesh-agent-win32-x64-0.27.10" = { name = "_at_netlify_slash_traffic-mesh-agent-win32-x64"; packageName = "@netlify/traffic-mesh-agent-win32-x64"; - version = "0.27.0"; + version = "0.27.10"; src = fetchurl { - url = "https://registry.npmjs.org/@netlify/traffic-mesh-agent-win32-x64/-/traffic-mesh-agent-win32-x64-0.27.0.tgz"; - sha512 = "u6Beazs0KWRcEx9q2n417Sj7+WGrDTtDGmmKPTE6WexFt6uY1oiq3AR+ohCtu1lIIsmAfAYd8O5dSOnyAT8dFg=="; + url = "https://registry.npmjs.org/@netlify/traffic-mesh-agent-win32-x64/-/traffic-mesh-agent-win32-x64-0.27.10.tgz"; + sha512 = "ea6S9ik5X0TlA2e+jXk5D7lfvArPZjyQoIBEo7G1Tjw/vUU5Fx6KLfXv1iy7eJy+ENTLoyidscAjJ2wXlHI47g=="; }; }; - "@netlify/zip-it-and-ship-it-1.7.0" = { + "@netlify/zip-it-and-ship-it-2.1.1" = { name = "_at_netlify_slash_zip-it-and-ship-it"; packageName = "@netlify/zip-it-and-ship-it"; - version = "1.7.0"; + version = "2.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/@netlify/zip-it-and-ship-it/-/zip-it-and-ship-it-1.7.0.tgz"; - sha512 = "7Fatc5OoRZ7V2tusx1CBWIdk9hXrr0JWoW547wsmopCkCl5O4TaLxw12CgfW6EQsjaufSnuQddzvnx5y1b5gGQ=="; + url = "https://registry.npmjs.org/@netlify/zip-it-and-ship-it/-/zip-it-and-ship-it-2.1.1.tgz"; + sha512 = "xG77kkrW4OtEcUrleQ5gcGmD8QZm0dOGbWZXtyL+gyoHuMxqLndcl0XymVlha9X9R00ecimSWxnf6SpdZ6UBXw=="; }; }; - "@netlify/zip-it-and-ship-it-2.0.0" = { - name = "_at_netlify_slash_zip-it-and-ship-it"; - packageName = "@netlify/zip-it-and-ship-it"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@netlify/zip-it-and-ship-it/-/zip-it-and-ship-it-2.0.0.tgz"; - sha512 = "DQQldFTRmEPHpvvKxAKLNk/RqVIfzZGsBcbmruy3zupPG2W+pGHnQUSMNXrUZmMkqekDh0nCHf8MfG0EakRqGg=="; - }; - }; - "@node-red/editor-api-1.2.6" = { + "@node-red/editor-api-1.2.7" = { name = "_at_node-red_slash_editor-api"; packageName = "@node-red/editor-api"; - version = "1.2.6"; + version = "1.2.7"; src = fetchurl { - url = "https://registry.npmjs.org/@node-red/editor-api/-/editor-api-1.2.6.tgz"; - sha512 = "RM243A8AgpoHEc8cu8STCYsJVx790clVxvRUCaLfbAyb+dKn+9b0TOKWsmLUW4fhrMqwwVlFOMulVHPhg0HhGg=="; + url = "https://registry.npmjs.org/@node-red/editor-api/-/editor-api-1.2.7.tgz"; + sha512 = "DY1rnKjX8ewkVwwCa6T+kjUHjCP+YMms8rPXFYZAi/r148jS7pKC21OgYe4FrJhM5EGREVJClG5Td6QAORR1vw=="; }; }; - "@node-red/editor-client-1.2.6" = { + "@node-red/editor-client-1.2.7" = { name = "_at_node-red_slash_editor-client"; packageName = "@node-red/editor-client"; - version = "1.2.6"; + version = "1.2.7"; src = fetchurl { - url = "https://registry.npmjs.org/@node-red/editor-client/-/editor-client-1.2.6.tgz"; - sha512 = "2hMnMVcqhR77mHqHzVj3hNJGZ8VcaO+lhggNYhORJXEqYCeAULj92hMCeoA4pjHDqGBn2F+gldli1WOs1/JgJg=="; + url = "https://registry.npmjs.org/@node-red/editor-client/-/editor-client-1.2.7.tgz"; + sha512 = "56NMyLL4iCuSaAYhWnsR3TTQidygoETRaG0GAYuU1iZgh+UZxvnLvIGa4gxgvMdtMgM0t4kS6tyMHhIIbX5Kvw=="; }; }; - "@node-red/nodes-1.2.6" = { + "@node-red/nodes-1.2.7" = { name = "_at_node-red_slash_nodes"; packageName = "@node-red/nodes"; - version = "1.2.6"; + version = "1.2.7"; src = fetchurl { - url = "https://registry.npmjs.org/@node-red/nodes/-/nodes-1.2.6.tgz"; - sha512 = "1LlECIzKKBHUOsWGLw31FT1mWL2mSecr9gBh2FqwnP7gNejebYjwP2zuHKOYs9sPRm3550zOJ5mlutXiiFKwYg=="; + url = "https://registry.npmjs.org/@node-red/nodes/-/nodes-1.2.7.tgz"; + sha512 = "GRUbM7HVPssjxbybMUkjEONi46eGabFYrY2OFZmzFF9L1ywTL9qMeEWsnHdV0Yibkr9Iq0VE4Ss/XZy+cCABAw=="; }; }; - "@node-red/registry-1.2.6" = { + "@node-red/registry-1.2.7" = { name = "_at_node-red_slash_registry"; packageName = "@node-red/registry"; - version = "1.2.6"; + version = "1.2.7"; src = fetchurl { - url = "https://registry.npmjs.org/@node-red/registry/-/registry-1.2.6.tgz"; - sha512 = "+zwHxnMr9Adve627dtw2jl/KSjTY+a5JrwJN10TSKMxVLwYeBLm/ugRTA9tkGiCjr2w9pgsnMUZRFFLfdyRZCQ=="; + url = "https://registry.npmjs.org/@node-red/registry/-/registry-1.2.7.tgz"; + sha512 = "FC14n/pEPiftsWGHQpLW9/4vstvtFpiczj/7CHp5p1Xmn2quSUzKBFOGtFr1FhglTJ3Nn59OOXL+59HMRF3Vcw=="; }; }; - "@node-red/runtime-1.2.6" = { + "@node-red/runtime-1.2.7" = { name = "_at_node-red_slash_runtime"; packageName = "@node-red/runtime"; - version = "1.2.6"; + version = "1.2.7"; src = fetchurl { - url = "https://registry.npmjs.org/@node-red/runtime/-/runtime-1.2.6.tgz"; - sha512 = "zfQGK4Hqssv5TV8S5WLZ77BHYmyylarZvEScVQpivhJHg6HeZL+MffqqtPIyTM1ulklPZvO6fPmq/f5T/CgAgw=="; + url = "https://registry.npmjs.org/@node-red/runtime/-/runtime-1.2.7.tgz"; + sha512 = "0QpolGMBL8ZMXKgzQRp9JFXYuoLaZZ4xkwFehMKH3KubDAYHHTl4tfTdY71hRxe8NbTZW9G9Gftt+e1vj0RGvg=="; }; }; - "@node-red/util-1.2.6" = { + "@node-red/util-1.2.7" = { name = "_at_node-red_slash_util"; packageName = "@node-red/util"; - version = "1.2.6"; + version = "1.2.7"; src = fetchurl { - url = "https://registry.npmjs.org/@node-red/util/-/util-1.2.6.tgz"; - sha512 = "CYUCS8iqcaZFBf0vwtVPqqNXX0XY0ajFW69smtDItbxslyZL3A0qRMiTTv0qMPA1uvOCEw4wQRSIQV7j/nd0yw=="; + url = "https://registry.npmjs.org/@node-red/util/-/util-1.2.7.tgz"; + sha512 = "+mftTJ1AtjqbO/5LjggXd36fcomKjlOy/IunjQULaMGO4MIIqPxZ/QUYTuSi2Z/rgHPMHRuwguwWnoca4GkBnw=="; }; }; "@nodelib/fs.scandir-2.1.4" = { @@ -3820,13 +3676,13 @@ let sha512 = "aKIwguaaqb6ViwSOFytniGvLPb9SMCUm39TgM3SfUo7n0TxUMbwoXfpwyvQ4blm10lzbAwTsvjr7QZ85LvTi4A=="; }; }; - "@npmcli/move-file-1.0.1" = { + "@npmcli/move-file-1.1.0" = { name = "_at_npmcli_slash_move-file"; packageName = "@npmcli/move-file"; - version = "1.0.1"; + version = "1.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.0.1.tgz"; - sha512 = "Uv6h1sT+0DrblvIrolFtbvM1FgWm+/sy4B3pvLp67Zys+thcukzS5ekn7HsZFGpWP4Q3fYJCljbWQE/XivMRLw=="; + url = "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.0.tgz"; + sha512 = "Iv2iq0JuyYjKeFkSR4LPaCdDZwlGK9X2cP/01nJcp3yMJ1FjNd9vpiEYvLUgzBxKPg2SFmaOhizoQsPc0LWeOQ=="; }; }; "@npmcli/node-gyp-1.0.1" = { @@ -3919,13 +3775,13 @@ let sha512 = "Afchpdd8FNfx9GaU/1D9IzyfiXvjfGybgzQ6G4GTFvPO0/hLdkXX3YyYq+SnxE6/bCrhg4pleiB+GuJACmmkEA=="; }; }; - "@oclif/plugin-autocomplete-0.2.1" = { + "@oclif/plugin-autocomplete-0.3.0" = { name = "_at_oclif_slash_plugin-autocomplete"; packageName = "@oclif/plugin-autocomplete"; - version = "0.2.1"; + version = "0.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/@oclif/plugin-autocomplete/-/plugin-autocomplete-0.2.1.tgz"; - sha512 = "EOcoh1x3auFg1a7NNVTT+hJ1PPih7Kg1it7WtG8oBgYKe+YD/bvHnX2QlXqi9S7H0XsQQMUb8hxbLP+XwQY/8Q=="; + url = "https://registry.npmjs.org/@oclif/plugin-autocomplete/-/plugin-autocomplete-0.3.0.tgz"; + sha512 = "gCuIUCswvoU1BxDDvHSUGxW8rFagiacle8jHqE49+WnuniXD/N8NmJvnzmlNyc8qLE192CnKK+qYyAF+vaFQBg=="; }; }; "@oclif/plugin-help-1.2.11" = { @@ -3964,15 +3820,6 @@ let sha512 = "G440PCuMi/OT8b71aWkR+kCWikngGtyRjOR24sPMDbpUFV4+B3r51fz1fcqeUiiEOYqUpr0Uy/sneUe1O/NfBg=="; }; }; - "@oclif/plugin-plugins-1.9.4" = { - name = "_at_oclif_slash_plugin-plugins"; - packageName = "@oclif/plugin-plugins"; - version = "1.9.4"; - src = fetchurl { - url = "https://registry.npmjs.org/@oclif/plugin-plugins/-/plugin-plugins-1.9.4.tgz"; - sha512 = "C5hEbX4zzTjzbym2RJUE4wxz2aL2ocb826HDs3suscsjMPA3mRHyu8/rWJW1Cgc2MeoIybNdrfyPU/zmpWkaWw=="; - }; - }; "@oclif/plugin-plugins-1.9.5" = { name = "_at_oclif_slash_plugin-plugins"; packageName = "@oclif/plugin-plugins"; @@ -4000,31 +3847,31 @@ let sha512 = "60CHpq+eqnTxLZQ4PGHYNwUX572hgpMHGPtTWMjdTMsAvlm69lZV/4ly6O3sAYkomo4NggGcomrDpBe34rxUqw=="; }; }; - "@octokit/auth-token-2.4.4" = { + "@octokit/auth-token-2.4.5" = { name = "_at_octokit_slash_auth-token"; packageName = "@octokit/auth-token"; - version = "2.4.4"; + version = "2.4.5"; src = fetchurl { - url = "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-2.4.4.tgz"; - sha512 = "LNfGu3Ro9uFAYh10MUZVaT7X2CnNm2C8IDQmabx+3DygYIQjs9FwzFAHN/0t6mu5HEPhxcb1XOuxdpY82vCg2Q=="; + url = "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-2.4.5.tgz"; + sha512 = "BpGYsPgJt05M7/L/5FoE1PiAbdxXFZkX/3kDYcsvd1v6UhlnE5e96dTDr0ezX/EFwciQxf3cNV0loipsURU+WA=="; }; }; - "@octokit/endpoint-6.0.10" = { + "@octokit/endpoint-6.0.11" = { name = "_at_octokit_slash_endpoint"; packageName = "@octokit/endpoint"; - version = "6.0.10"; + version = "6.0.11"; src = fetchurl { - url = "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-6.0.10.tgz"; - sha512 = "9+Xef8nT7OKZglfkOMm7IL6VwxXUQyR7DUSU0LH/F7VNqs8vyd7es5pTfz9E7DwUIx7R3pGscxu1EBhYljyu7Q=="; + url = "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-6.0.11.tgz"; + sha512 = "fUIPpx+pZyoLW4GCs3yMnlj2LfoXTWDUVPTC4V3MUEKZm48W+XYpeWSZCv+vYF1ZABUm2CqnDVf1sFtIYrj7KQ=="; }; }; - "@octokit/openapi-types-2.0.1" = { + "@octokit/openapi-types-3.3.0" = { name = "_at_octokit_slash_openapi-types"; packageName = "@octokit/openapi-types"; - version = "2.0.1"; + version = "3.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-2.0.1.tgz"; - sha512 = "9AuC04PUnZrjoLiw3uPtwGh9FE4Q3rTqs51oNlQ0rkwgE8ftYsOC+lsrQyvCvWm85smBbSc0FNRKKumvGyb44Q=="; + url = "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-3.3.0.tgz"; + sha512 = "s3dd32gagPmKaSLNJ9aPNok7U+tl69YLESf6DgQz5Ml/iipPZtif3GLvWpNXoA6qspFm1LFUZX+C3SqWX/Y/TQ=="; }; }; "@octokit/plugin-enterprise-rest-6.0.1" = { @@ -4045,13 +3892,13 @@ let sha512 = "jbsSoi5Q1pj63sC16XIUboklNw+8tL9VOnJsWycWYR78TKss5PVpIPb1TUUcMQ+bBh7cY579cVAWmf5qG+dw+Q=="; }; }; - "@octokit/plugin-request-log-1.0.2" = { + "@octokit/plugin-request-log-1.0.3" = { name = "_at_octokit_slash_plugin-request-log"; packageName = "@octokit/plugin-request-log"; - version = "1.0.2"; + version = "1.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/@octokit/plugin-request-log/-/plugin-request-log-1.0.2.tgz"; - sha512 = "oTJSNAmBqyDR41uSMunLQKMX0jmEXbwD1fpz8FG27lScV3RhtGfBa1/BBLym+PxcC16IBlF7KH9vP1BUYxA+Eg=="; + url = "https://registry.npmjs.org/@octokit/plugin-request-log/-/plugin-request-log-1.0.3.tgz"; + sha512 = "4RFU4li238jMJAzLgAwkBAw+4Loile5haQMQr+uhFq27BmyJXcXSKvoQKqh0agsZEiUlW6iSv3FAgvmGkur7OQ=="; }; }; "@octokit/plugin-rest-endpoint-methods-2.4.0" = { @@ -4063,13 +3910,13 @@ let sha512 = "EZi/AWhtkdfAYi01obpX0DF7U6b1VRr30QNQ5xSFPITMdLSfhcBqjamE3F+sKcxPbD7eZuMHu3Qkk2V+JGxBDQ=="; }; }; - "@octokit/request-5.4.12" = { + "@octokit/request-5.4.13" = { name = "_at_octokit_slash_request"; packageName = "@octokit/request"; - version = "5.4.12"; + version = "5.4.13"; src = fetchurl { - url = "https://registry.npmjs.org/@octokit/request/-/request-5.4.12.tgz"; - sha512 = "MvWYdxengUWTGFpfpefBBpVmmEYfkwMoxonIB3sUGp5rhdgwjXL1ejo6JbgzG/QD9B/NYt/9cJX1pxXeSIUCkg=="; + url = "https://registry.npmjs.org/@octokit/request/-/request-5.4.13.tgz"; + sha512 = "WcNRH5XPPtg7i1g9Da5U9dvZ6YbTffw9BN2rVezYiE7couoSyaRsw0e+Tl8uk1fArHE7Dn14U7YqUDy59WaqEw=="; }; }; "@octokit/request-error-1.2.1" = { @@ -4081,13 +3928,13 @@ let sha512 = "+6yDyk1EES6WK+l3viRDElw96MvwfJxCt45GvmjDUKWjYIb3PJZQkq3i46TwGwoPD4h8NmTrENmtyA1FwbmhRA=="; }; }; - "@octokit/request-error-2.0.4" = { + "@octokit/request-error-2.0.5" = { name = "_at_octokit_slash_request-error"; packageName = "@octokit/request-error"; - version = "2.0.4"; + version = "2.0.5"; src = fetchurl { - url = "https://registry.npmjs.org/@octokit/request-error/-/request-error-2.0.4.tgz"; - sha512 = "LjkSiTbsxIErBiRh5wSZvpZqT4t0/c9+4dOe0PII+6jXR+oj/h66s7E4a/MghV7iT8W9ffoQ5Skoxzs96+gBPA=="; + url = "https://registry.npmjs.org/@octokit/request-error/-/request-error-2.0.5.tgz"; + sha512 = "T/2wcCFyM7SkXzNoyVNWjyVlUwBvW3igM3Btr/eKYiPmucXTtkxt2RBsf6gn3LTzaLSLTQtNmvg+dGsOxQrjZg=="; }; }; "@octokit/rest-16.43.2" = { @@ -4108,13 +3955,13 @@ let sha512 = "O75k56TYvJ8WpAakWwYRN8Bgu60KrmX0z1KqFp1kNiFNkgW+JW+9EBKZ+S33PU6SLvbihqd+3drvPxKK68Ee8Q=="; }; }; - "@octokit/types-6.1.2" = { + "@octokit/types-6.6.0" = { name = "_at_octokit_slash_types"; packageName = "@octokit/types"; - version = "6.1.2"; + version = "6.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/@octokit/types/-/types-6.1.2.tgz"; - sha512 = "LPCpcLbcky7fWfHCTuc7tMiSHFpFlrThJqVdaHgowBTMS0ijlZFfonQC/C1PrZOjD4xRCYgBqH9yttEATGE/nw=="; + url = "https://registry.npmjs.org/@octokit/types/-/types-6.6.0.tgz"; + sha512 = "nmFoU3HCbw1AmnZU/eto2VvzV06+N7oAqXwMmAHGlNDF+KFykksh/VlAl85xc1P5T7Mw8fKYvXNaImNHCCH/rg=="; }; }; "@opencensus/core-0.0.8" = { @@ -4144,58 +3991,58 @@ let sha512 = "PffXX2AL8Sh0VHQ52jJC4u3T0H6wDK6N/4bg7xh4ngMYOIi13aR1kzVvX1sVDBgfGwDOkMbl4c54Xm3tlPx/+A=="; }; }; - "@opentelemetry/api-0.11.0" = { + "@opentelemetry/api-0.12.0" = { name = "_at_opentelemetry_slash_api"; packageName = "@opentelemetry/api"; - version = "0.11.0"; + version = "0.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/@opentelemetry/api/-/api-0.11.0.tgz"; - sha512 = "K+1ADLMxduhsXoZ0GRfi9Pw162FvzBQLDQlHru1lg86rpIU+4XqdJkSGo6y3Kg+GmOWq1HNHOA/ydw/rzHQkRg=="; + url = "https://registry.npmjs.org/@opentelemetry/api/-/api-0.12.0.tgz"; + sha512 = "Dn4vU5GlaBrIWzLpsM6xbJwKHdlpwBQ4Bd+cL9ofJP3hKT8jBXpBpribmyaqAzrajzzl2Yt8uTa9rFVLfjDAvw=="; }; }; - "@opentelemetry/context-base-0.11.0" = { + "@opentelemetry/context-base-0.12.0" = { name = "_at_opentelemetry_slash_context-base"; packageName = "@opentelemetry/context-base"; - version = "0.11.0"; + version = "0.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/@opentelemetry/context-base/-/context-base-0.11.0.tgz"; - sha512 = "ESRk+572bftles7CVlugAj5Azrz61VO0MO0TS2pE9MLVL/zGmWuUBQryART6/nsrFqo+v9HPt37GPNcECTZR1w=="; + url = "https://registry.npmjs.org/@opentelemetry/context-base/-/context-base-0.12.0.tgz"; + sha512 = "UXwSsXo3F3yZ1dIBOG9ID8v2r9e+bqLWoizCtTb8rXtwF+N5TM7hzzvQz72o3nBU+zrI/D5e+OqAYK8ZgDd3DA=="; }; }; - "@opentelemetry/core-0.11.0" = { + "@opentelemetry/core-0.12.0" = { name = "_at_opentelemetry_slash_core"; packageName = "@opentelemetry/core"; - version = "0.11.0"; + version = "0.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/@opentelemetry/core/-/core-0.11.0.tgz"; - sha512 = "ZEKjBXeDGBqzouz0uJmrbEKNExEsQOhsZ3tJDCLcz5dUNoVw642oIn2LYWdQK2YdIfZbEmltiF65/csGsaBtFA=="; + url = "https://registry.npmjs.org/@opentelemetry/core/-/core-0.12.0.tgz"; + sha512 = "oLZIkmTNWTJXzo1eA4dGu/S7wOVtylsgnEsCmhSJGhrJVDXm1eW/aGuNs3DVBeuxp0ZvQLAul3/PThsC3YrnzA=="; }; }; - "@opentelemetry/resources-0.11.0" = { + "@opentelemetry/resources-0.12.0" = { name = "_at_opentelemetry_slash_resources"; packageName = "@opentelemetry/resources"; - version = "0.11.0"; + version = "0.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/@opentelemetry/resources/-/resources-0.11.0.tgz"; - sha512 = "o7DwV1TcezqBtS5YW2AWBcn01nVpPptIbTr966PLlVBcS//w8LkjeOShiSZxQ0lmV4b2en0FiSouSDoXk/5qIQ=="; + url = "https://registry.npmjs.org/@opentelemetry/resources/-/resources-0.12.0.tgz"; + sha512 = "8cYvIKB68cyupc7D6SWzkLtt13mbjgxMahL4JKCM6hWPyiGSJlPFEAey4XFXI5LLpPZRYTPHLVoLqI/xwCFZZA=="; }; }; - "@opentelemetry/semantic-conventions-0.11.0" = { + "@opentelemetry/semantic-conventions-0.12.0" = { name = "_at_opentelemetry_slash_semantic-conventions"; packageName = "@opentelemetry/semantic-conventions"; - version = "0.11.0"; + version = "0.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/@opentelemetry/semantic-conventions/-/semantic-conventions-0.11.0.tgz"; - sha512 = "xsthnI/J+Cx0YVDGgUzvrH0ZTtfNtl866M454NarYwDrc0JvC24sYw+XS5PJyk2KDzAHtb0vlrumUc1OAut/Fw=="; + url = "https://registry.npmjs.org/@opentelemetry/semantic-conventions/-/semantic-conventions-0.12.0.tgz"; + sha512 = "BuCcDW0uLNYYTns0/LwXkJ8lp8aDm7kpS+WunEmPAPRSCe6ciOYRvzn5reqJfX93rf+6A3U2SgrBnCTH+0qoQQ=="; }; }; - "@opentelemetry/tracing-0.11.0" = { + "@opentelemetry/tracing-0.12.0" = { name = "_at_opentelemetry_slash_tracing"; packageName = "@opentelemetry/tracing"; - version = "0.11.0"; + version = "0.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/@opentelemetry/tracing/-/tracing-0.11.0.tgz"; - sha512 = "QweFmxzl32BcyzwdWCNjVXZT1WeENNS/RWETq/ohqu+fAsTcMyGcr6cOq/yDdFmtBy+bm5WVVdeByEjNS+c4/w=="; + url = "https://registry.npmjs.org/@opentelemetry/tracing/-/tracing-0.12.0.tgz"; + sha512 = "2TUGhTGkhgnxTciHCNAILPSeyXageJewRqfP9wOrx65sKd/jgvNYoY8nYf4EVWVMirDOxKDsmYgUkjdQrwb2dg=="; }; }; "@ot-builder/bin-composite-types-0.10.37" = { @@ -4576,13 +4423,13 @@ let sha512 = "CY/a6Nw72vrlp/FPx38l4jfEHp4gNEbo8i+WlSJ2cnWO6VE6CKmnC1zb4yQLvdP8f3EuzzoOBZVq6aGN20M82Q=="; }; }; - "@pm2/js-api-0.6.1" = { + "@pm2/js-api-0.6.7" = { name = "_at_pm2_slash_js-api"; packageName = "@pm2/js-api"; - version = "0.6.1"; + version = "0.6.7"; src = fetchurl { - url = "https://registry.npmjs.org/@pm2/js-api/-/js-api-0.6.1.tgz"; - sha512 = "LImZWHEzcpIrLZ7kt4z3Gllkoz+CChHk2waDretOWeinSItyTMrNpzcXcZd2QikP/57qPolLfHGFipHJmOKkwQ=="; + url = "https://registry.npmjs.org/@pm2/js-api/-/js-api-0.6.7.tgz"; + sha512 = "jiJUhbdsK+5C4zhPZNnyA3wRI01dEc6a2GhcQ9qI38DyIk+S+C8iC3fGjcjUbt/viLYKPjlAaE+hcT2/JMQPXw=="; }; }; "@pm2/pm2-version-check-1.0.3" = { @@ -4711,15 +4558,6 @@ let sha512 = "UFnkg5RTq3s2X15fSkrWY9+5BKOFjihNSnJjTV2H5PtTUFbd55qnxxPw8CxSfK0bXb1IrSvCESprk2LEpqr5cg=="; }; }; - "@react-native-community/cli-platform-android-4.13.0" = { - name = "_at_react-native-community_slash_cli-platform-android"; - packageName = "@react-native-community/cli-platform-android"; - version = "4.13.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@react-native-community/cli-platform-android/-/cli-platform-android-4.13.0.tgz"; - sha512 = "3i8sX8GklEytUZwPnojuoFbCjIRzMugCdzDIdZ9UNmi/OhD4/8mLGO0dgXfT4sMWjZwu3qjy45sFfk2zOAgHbA=="; - }; - }; "@react-native-community/cli-platform-ios-4.13.0" = { name = "_at_react-native-community_slash_cli-platform-ios"; packageName = "@react-native-community/cli-platform-ios"; @@ -4765,15 +4603,6 @@ let sha512 = "MjmH7GvFT4TW8xFdIeFS3wqIX646y5tACdxkTO+khbHvS3ZcVJL6vkAHLw2wqPmkhwCfWHoNsp15VYNwW6JEJA=="; }; }; - "@rollup/plugin-commonjs-15.1.0" = { - name = "_at_rollup_slash_plugin-commonjs"; - packageName = "@rollup/plugin-commonjs"; - version = "15.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@rollup/plugin-commonjs/-/plugin-commonjs-15.1.0.tgz"; - sha512 = "xCQqz4z/o0h2syQ7d9LskIMvBSH4PX5PjYdpSSvgS+pQik3WahkQVNWg3D8XJeYjZoVWnIUQYDghuEMRGrmQYQ=="; - }; - }; "@rollup/plugin-commonjs-17.0.0" = { name = "_at_rollup_slash_plugin-commonjs"; packageName = "@rollup/plugin-commonjs"; @@ -4801,22 +4630,13 @@ let sha512 = "yfLbTdNS6amI/2OpmbiBoW12vngr5NW2jCJVZSBEz+H5KfUJZ2M7sDjk0U6GOOdCWFVScShte29o9NezJ53TPw=="; }; }; - "@rollup/plugin-node-resolve-11.0.1" = { + "@rollup/plugin-node-resolve-11.1.0" = { name = "_at_rollup_slash_plugin-node-resolve"; packageName = "@rollup/plugin-node-resolve"; - version = "11.0.1"; + version = "11.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-11.0.1.tgz"; - sha512 = "ltlsj/4Bhwwhb+Nb5xCz/6vieuEj2/BAkkqVIKmZwC7pIdl8srmgmglE4S0jFlZa32K4qvdQ6NHdmpRKD/LwoQ=="; - }; - }; - "@rollup/plugin-node-resolve-9.0.0" = { - name = "_at_rollup_slash_plugin-node-resolve"; - packageName = "@rollup/plugin-node-resolve"; - version = "9.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-9.0.0.tgz"; - sha512 = "gPz+utFHLRrd41WMP13Jq5mqqzHL3OXrfj3/MkSyB6UBIcuNt9j60GCbarzMzdf1VHFpOxfQh/ez7wyadLMqkg=="; + url = "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-11.1.0.tgz"; + sha512 = "ouBBppRdWJKCllDXGzJ7ZIkYbaq+5TmyP0smt1vdJCFfoZhLi31vhpmjLhyo8lreHf4RoeSNllaWrvSqHpHRog=="; }; }; "@rollup/pluginutils-3.1.0" = { @@ -4846,13 +4666,13 @@ let sha512 = "c/qwwcHyafOQuVQJj0IlBjf5yYgBI7YPJ77k4fOJYesb41jio65eaJODRUmfYKhTOFBrIZ66kgvGPlNbjuoRdQ=="; }; }; - "@schematics/angular-11.0.5" = { + "@schematics/angular-11.1.1" = { name = "_at_schematics_slash_angular"; packageName = "@schematics/angular"; - version = "11.0.5"; + version = "11.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/@schematics/angular/-/angular-11.0.5.tgz"; - sha512 = "7p2wweoJYhim8YUy3ih1SrPGqRsa6+aEFbYgo9v4zt7b3tOva8SvkbC2alayK74fclzQ7umqa6xAwvWhy8ORvg=="; + url = "https://registry.npmjs.org/@schematics/angular/-/angular-11.1.1.tgz"; + sha512 = "K4G+PwCIGYE6aw28ZcqAhw+qI6I8d8qtE3D1Vd4MPVuguDWpNEaB0Y+TIYWzukh5bmOqdl9m/fkw6eZeOglUuQ=="; }; }; "@schematics/schematics-0.1100.3" = { @@ -4864,13 +4684,13 @@ let sha512 = "tzjKnjD90FQ4LgRN9ALT2qCqgJYZrAKoy1embFJRuGKA8vv1hTG4JonVDqQEUoNwTc9r/Ok2Z1eenAI9TSUd1A=="; }; }; - "@schematics/update-0.1100.5" = { + "@schematics/update-0.1101.1" = { name = "_at_schematics_slash_update"; packageName = "@schematics/update"; - version = "0.1100.5"; + version = "0.1101.1"; src = fetchurl { - url = "https://registry.npmjs.org/@schematics/update/-/update-0.1100.5.tgz"; - sha512 = "BYtKKuiWsrlc4FMW3bRyl4tm6lWNMTi8oql/mtkSgH7V5eMmaLDJtM+zDl+qyC/KHPxbHTfoHDapfv1tITSWjA=="; + url = "https://registry.npmjs.org/@schematics/update/-/update-0.1101.1.tgz"; + sha512 = "BmGxxAH05ey8rc0gQpMJ7hAJyr7bM172MStpIws+MLugxZ6a6jH8vI1+MpnrqE0TK1PIPx6vclCMgf3RbQEzIw=="; }; }; "@segment/loosely-validate-event-2.0.0" = { @@ -4900,13 +4720,13 @@ let sha512 = "lOUyRopNTKJYVEU9T6stp2irwlTDsYMmUKBOUjnMcwGveuUfIJqrCOtFLtIPPj3XJlbZy5F68l4KP9rZ8Ipang=="; }; }; - "@serverless/components-3.4.3" = { + "@serverless/components-3.5.1" = { name = "_at_serverless_slash_components"; packageName = "@serverless/components"; - version = "3.4.3"; + version = "3.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/@serverless/components/-/components-3.4.3.tgz"; - sha512 = "buKvUPDeS54bUG9c56bmX5WcL3hBCHASKamHpUGmSa1ArSem8BE76LzPjiNcreOJGSFf9VGMgpsW1d1WKy2fAA=="; + url = "https://registry.npmjs.org/@serverless/components/-/components-3.5.1.tgz"; + sha512 = "GRXdO4e2gWwVQ+RNdbffaym92cIcUHzYfIK3mxWv2zIL/4rKXz5YaptRj6hd3EST12/iBsEOktomtuCfG1i9RA=="; }; }; "@serverless/core-1.1.2" = { @@ -4918,13 +4738,13 @@ let sha512 = "PY7gH+7aQ+MltcUD7SRDuQODJ9Sav9HhFJsgOiyf8IVo7XVD6FxZIsSnpMI6paSkptOB7n+0Jz03gNlEkKetQQ=="; }; }; - "@serverless/enterprise-plugin-4.4.1" = { + "@serverless/enterprise-plugin-4.4.2" = { name = "_at_serverless_slash_enterprise-plugin"; packageName = "@serverless/enterprise-plugin"; - version = "4.4.1"; + version = "4.4.2"; src = fetchurl { - url = "https://registry.npmjs.org/@serverless/enterprise-plugin/-/enterprise-plugin-4.4.1.tgz"; - sha512 = "MTjpIwpCA1gmldGuEozHNKIlce8BXMilvH2K0nm5vJ45PAUwK1bL9moaLwDadaTEw9B1jKbboa5/wpzJwwFdxA=="; + url = "https://registry.npmjs.org/@serverless/enterprise-plugin/-/enterprise-plugin-4.4.2.tgz"; + sha512 = "w5xD8R8tFK6B7QiLvWI5jqVHTtH1LdTyGp5eRcjkdJBa10/D2IZFpJimMAGsBxk9U1JGKO4j0miVnRHIW8ppeg=="; }; }; "@serverless/event-mocks-1.1.1" = { @@ -4936,22 +4756,22 @@ let sha512 = "YAV5V/y+XIOfd+HEVeXfPWZb8C6QLruFk9tBivoX2roQLWVq145s4uxf8D0QioCueuRzkukHUS4JIj+KVoS34A=="; }; }; - "@serverless/platform-client-3.1.4" = { + "@serverless/platform-client-3.9.1" = { name = "_at_serverless_slash_platform-client"; packageName = "@serverless/platform-client"; - version = "3.1.4"; + version = "3.9.1"; src = fetchurl { - url = "https://registry.npmjs.org/@serverless/platform-client/-/platform-client-3.1.4.tgz"; - sha512 = "oc65L9Dl1Xe+T5qv/fkmjYREtPzrQMdje0fC5ntvsfR3luxvSfQIinHYKbt30Qpyy2sJCBPG4IPEip7b3y0WwA=="; + url = "https://registry.npmjs.org/@serverless/platform-client/-/platform-client-3.9.1.tgz"; + sha512 = "Sn2sQldciCWdIpiJ6MEmCQLQk/wFD0pqK9XBuqKk/9RfcFwjsFMJVX9W4q2cybZxZ0MIkQVOfNXCoB5OM6riSQ=="; }; }; - "@serverless/platform-client-china-2.0.9" = { + "@serverless/platform-client-china-2.1.3" = { name = "_at_serverless_slash_platform-client-china"; packageName = "@serverless/platform-client-china"; - version = "2.0.9"; + version = "2.1.3"; src = fetchurl { - url = "https://registry.npmjs.org/@serverless/platform-client-china/-/platform-client-china-2.0.9.tgz"; - sha512 = "qec3a5lVaMH0nccgjVgvcEF8M+M95BXZbbYDGypVHEieJQxrKqj057+VVKsiHBeHYXzr4B3v6pIyQHst40vpIw=="; + url = "https://registry.npmjs.org/@serverless/platform-client-china/-/platform-client-china-2.1.3.tgz"; + sha512 = "JZpwKZh4sOsKbYsRyp5UvkwWgcqgrzz/URqnjPXaw8WyaAL6ulSH5RE2vre7uyZ/jpA4XM13nT86KXmuo6gkUg=="; }; }; "@serverless/platform-sdk-2.3.2" = { @@ -4990,13 +4810,22 @@ let sha512 = "0TqmLwH9r2GAewvz9mhZ+TSyQBoE9ANuB4nNhn6lJvVUgzlzji3aqeFbAuDt+Z60ZkaIDNipU/J5Vf2Lo/QTQQ=="; }; }; - "@serverless/utils-china-1.0.12" = { + "@serverless/utils-3.0.0" = { + name = "_at_serverless_slash_utils"; + packageName = "@serverless/utils"; + version = "3.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@serverless/utils/-/utils-3.0.0.tgz"; + sha512 = "vY4oSLyANF+eMs24H+NGSrKxR5V/2n5l/PBL+J42uUfbcxjSHKx3bIzeKXSsaPkfvMHB6zD7tlkmgoCmkqPLUA=="; + }; + }; + "@serverless/utils-china-1.0.14" = { name = "_at_serverless_slash_utils-china"; packageName = "@serverless/utils-china"; - version = "1.0.12"; + version = "1.0.14"; src = fetchurl { - url = "https://registry.npmjs.org/@serverless/utils-china/-/utils-china-1.0.12.tgz"; - sha512 = "PuVap97QTf3Fi5+ez3ZUewGPFHTpf3dwZ+c6YWEoaf+1u7cgXzYFuWx8Ypi+4ghbL93/bf+blqdm+7CQi+CMRg=="; + url = "https://registry.npmjs.org/@serverless/utils-china/-/utils-china-1.0.14.tgz"; + sha512 = "7ku9ePjb+bneFV1Akmz0t8pU8hhHfPJsBjG/Kf6IjyGAQrEjN/PcY2QUDm0emdCNyCsuido1wp0DWMGiwuhC8Q=="; }; }; "@sindresorhus/is-0.14.0" = { @@ -5062,6 +4891,15 @@ let sha512 = "QSdIQ5keUFAZ3KLbfbsntW39ox0Ym8183RqTwBq/ZEFoN3NQAtGV+qWaNdzKpIDHgj9J2CQ2iNDRVU11Zyr7MQ=="; }; }; + "@skorfmann/terraform-cloud-1.7.1" = { + name = "_at_skorfmann_slash_terraform-cloud"; + packageName = "@skorfmann/terraform-cloud"; + version = "1.7.1"; + src = fetchurl { + url = "https://registry.npmjs.org/@skorfmann/terraform-cloud/-/terraform-cloud-1.7.1.tgz"; + sha512 = "uwcalR9R5/9M+UcOeKR+XgCyIlipl5dxiAryuWT8D4erW6sPnTE/B97G6F3VzzrZfcaPmljX5NVG8Dkl79ki6A=="; + }; + }; "@slack/client-3.16.0" = { name = "_at_slack_slash_client"; packageName = "@slack/client"; @@ -5125,6 +4963,15 @@ let sha512 = "+xwiU1zw+Z1V6RaIL7oWUqZo8jDIpoKfzvv8xGiq0hYxsiP9tGSUNuFXwQzAFEP60kJyD2a/nptdRPjsKD0jPw=="; }; }; + "@snyk/dep-graph-1.23.0" = { + name = "_at_snyk_slash_dep-graph"; + packageName = "@snyk/dep-graph"; + version = "1.23.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@snyk/dep-graph/-/dep-graph-1.23.0.tgz"; + sha512 = "qR0ENrbcNWHYmSRZCxjrlFy2T7i+rJjL6Rnd2e+NByJgn8zBmX6Qf5FjqNbZAI0AYjOlzXMZjGrbAbe4QkWV+w=="; + }; + }; "@snyk/docker-registry-v2-client-1.13.9" = { name = "_at_snyk_slash_docker-registry-v2-client"; packageName = "@snyk/docker-registry-v2-client"; @@ -5152,13 +4999,13 @@ let sha512 = "uO1b6UtT6QGz7F5ZgNdOSyMXBvykUhOcuHBRc//xUnBWsyJwdlAFp/d646zIeaBCe87Fcn5hXuWUGjj+N8rBzA=="; }; }; - "@snyk/java-call-graph-builder-1.18.0" = { + "@snyk/java-call-graph-builder-1.19.0" = { name = "_at_snyk_slash_java-call-graph-builder"; packageName = "@snyk/java-call-graph-builder"; - version = "1.18.0"; + version = "1.19.0"; src = fetchurl { - url = "https://registry.npmjs.org/@snyk/java-call-graph-builder/-/java-call-graph-builder-1.18.0.tgz"; - sha512 = "6Mt+Rs2N4HdHICCjxWRwtGXUrSktCsSGnn7HlL6wi+4JXjPWa+rDCzaF6furqRR3aphZAclgved0haFwwmqBxQ=="; + url = "https://registry.npmjs.org/@snyk/java-call-graph-builder/-/java-call-graph-builder-1.19.0.tgz"; + sha512 = "in26UkFVEWvGyHmSmVUebvgyubANJB7rfrkE3PKjHDA80NwSLZDSNWOOC2lF2B+4ob4STWjQdMbv+bMqXl5Yew=="; }; }; "@snyk/rpm-parser-2.2.1" = { @@ -5323,130 +5170,139 @@ let sha512 = "AmyMQndtxMsM59eDeA0gGiw8T2LzNvDhx/xl+ygFXXrsw+yb/mit73ndHkiHKcRA1EpNHTyD1PN9ATxghzplfg=="; }; }; - "@textlint/ast-node-types-4.3.5" = { + "@textlint/ast-node-types-4.4.1" = { name = "_at_textlint_slash_ast-node-types"; packageName = "@textlint/ast-node-types"; - version = "4.3.5"; + version = "4.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/ast-node-types/-/ast-node-types-4.3.5.tgz"; - sha512 = "syl8VE34DQDTV7+IADP1jYtGsxTC9MmCKLmpJX90G6nNv9CzgAZIukd7WMiJFZpFgcDAlibEaCKlJRxjfEmmPA=="; + url = "https://registry.npmjs.org/@textlint/ast-node-types/-/ast-node-types-4.4.1.tgz"; + sha512 = "2QBwlqi2SU83vTHibfdTxGiLdIqR0btNyMGfVl0bwA6FI85HnSYoGFLrdCnq2V0nxpbhuvwzcm2Ja81w0VkMGA=="; }; }; - "@textlint/ast-tester-2.2.5" = { + "@textlint/ast-tester-2.3.1" = { name = "_at_textlint_slash_ast-tester"; packageName = "@textlint/ast-tester"; - version = "2.2.5"; + version = "2.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/ast-tester/-/ast-tester-2.2.5.tgz"; - sha512 = "kKolF3xDI0G1sjM2HJE1EZAf407026b/wHC0FAdo9/FAipUTtAATKDnvjYeN++W1b5TxtIWRF5SbHppK7eRXGQ=="; + url = "https://registry.npmjs.org/@textlint/ast-tester/-/ast-tester-2.3.1.tgz"; + sha512 = "L9M2VNTYJ5sVdkPs9jH7s01Gg900Nuk7m9zQmCz9WFa3YyzJFEd7GCSmAvLMgX31jw5bbvvmj7DngymlP+PahQ=="; }; }; - "@textlint/ast-traverse-2.2.6" = { + "@textlint/ast-traverse-2.3.1" = { name = "_at_textlint_slash_ast-traverse"; packageName = "@textlint/ast-traverse"; - version = "2.2.6"; + version = "2.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/ast-traverse/-/ast-traverse-2.2.6.tgz"; - sha512 = "cpBF4UsbQ95oFU8gaGrkYar1H75ORvfRWN78dXneyinJFG1KBajXN9lLYhXhg+Z1Rn/9Ifw+SCjLZKnFmnwM0g=="; + url = "https://registry.npmjs.org/@textlint/ast-traverse/-/ast-traverse-2.3.1.tgz"; + sha512 = "uOFKqm3M9by55Zl2ryZ7jOSiLdLhDmVgX0IG/MJfGKY1a/MSyt5qwy9cvZNcob6hNCPeRMW8boAH2uRJOwRcoQ=="; }; }; - "@textlint/feature-flag-3.2.5" = { + "@textlint/feature-flag-3.3.1" = { name = "_at_textlint_slash_feature-flag"; packageName = "@textlint/feature-flag"; - version = "3.2.5"; + version = "3.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/feature-flag/-/feature-flag-3.2.5.tgz"; - sha512 = "OePponYtxPGjNf6GBqioRaOr1m8LJZQLCj49LgoGZnolm9hmKq3QP1jEKGbzxsHCADL7YHoKZ6zxKGkicmsxPA=="; + url = "https://registry.npmjs.org/@textlint/feature-flag/-/feature-flag-3.3.1.tgz"; + sha512 = "0a1UopFf30UrmEDKFNATXlotMqwbLGjJa1GTuljL/AKn2Adz7rPawclW4pHf/b//K7Da5GOtuzbIfVAZSFQRxA=="; }; }; - "@textlint/fixer-formatter-3.2.6" = { + "@textlint/fixer-formatter-3.3.1" = { name = "_at_textlint_slash_fixer-formatter"; packageName = "@textlint/fixer-formatter"; - version = "3.2.6"; + version = "3.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/fixer-formatter/-/fixer-formatter-3.2.6.tgz"; - sha512 = "xVVEHcpUeBBFI7Ug4y/tGTRLf6XX9lsg/iLvk6cjWJhxnFsVOkSFJRrZFetIJnAKnhQmCAv/i+ybgnTHhas7pw=="; + url = "https://registry.npmjs.org/@textlint/fixer-formatter/-/fixer-formatter-3.3.1.tgz"; + sha512 = "ZPK66J61lv8UMdqJeG4YUPfKPlCom/jiv8kZkz5ELnLA587HLOlEIYLaNjKop0viW5z3Fz9cZd5glIHrPymiqQ=="; }; }; - "@textlint/kernel-3.3.7" = { + "@textlint/kernel-3.4.1" = { name = "_at_textlint_slash_kernel"; packageName = "@textlint/kernel"; - version = "3.3.7"; + version = "3.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/kernel/-/kernel-3.3.7.tgz"; - sha512 = "zLk78gCwiQIl0ElkzT8DVMOLJ5PCDWZnuRaYk7YkwmGpjJSoJcGSCqiRGhmmc4d7CCZ+AcoM0DQUSyrFzJjyMA=="; + url = "https://registry.npmjs.org/@textlint/kernel/-/kernel-3.4.1.tgz"; + sha512 = "8ZpiLy5KgmIMjda7RNgbNzoHpDnF51OC0rmMBTUl5xFMrpOcmnKZ6qcnmP7hlyR1MQJxQVzG0PvWnLHFUZL53w=="; }; }; - "@textlint/linter-formatter-3.2.6" = { + "@textlint/linter-formatter-3.3.1" = { name = "_at_textlint_slash_linter-formatter"; packageName = "@textlint/linter-formatter"; - version = "3.2.6"; + version = "3.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/linter-formatter/-/linter-formatter-3.2.6.tgz"; - sha512 = "39R2PAKRDqq8p6jQj3u9ERUzrrhK33BnHK622oegaXzPeaBLjN2brBXsxnBpNJFPUW2L9BDmJcBd92E/ajLTGg=="; + url = "https://registry.npmjs.org/@textlint/linter-formatter/-/linter-formatter-3.3.1.tgz"; + sha512 = "tBtOSfpZWr3AwIJ1vbBSD+fwB4JSEtCQIE+AgfFqO8eDMOssjxKgVtIPX9dwh3/+6vlc6KozBJjIfXoxLuaWlg=="; }; }; - "@textlint/markdown-to-ast-6.2.6" = { + "@textlint/markdown-to-ast-6.3.1" = { name = "_at_textlint_slash_markdown-to-ast"; packageName = "@textlint/markdown-to-ast"; - version = "6.2.6"; + version = "6.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/markdown-to-ast/-/markdown-to-ast-6.2.6.tgz"; - sha512 = "TjZTMGYla9Nznegy0r23EEzNMfWva0oksj+48aqMlbQ+UvBA5vdEC0VzCO3l0Z137RgEJ+glInbvEilo2zcjZg=="; + url = "https://registry.npmjs.org/@textlint/markdown-to-ast/-/markdown-to-ast-6.3.1.tgz"; + sha512 = "piqeTN6dzMr7ljlo7GbRBILMcZ8zW2H9raN48qH+HYhfrGZfEOmL5HAMMeF8h0sDz9CzTvZixEwGWLMdlwsb+A=="; }; }; - "@textlint/module-interop-1.1.5" = { + "@textlint/module-interop-1.2.1" = { name = "_at_textlint_slash_module-interop"; packageName = "@textlint/module-interop"; - version = "1.1.5"; + version = "1.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/module-interop/-/module-interop-1.1.5.tgz"; - sha512 = "YXz4qV6thEuwNfamHFhRsebZM7FWe1x3fD7XAqPxE8J+HLQea3Y0i52hU/rTQvt85omYq+37g3YtqjX60mYjog=="; + url = "https://registry.npmjs.org/@textlint/module-interop/-/module-interop-1.2.1.tgz"; + sha512 = "ZvxTTvEm7nmkRctWKREfvNvnVtRxRbdUms8cqkiYbP2K0fRIMacrWpL8z8cdkkdNZbaYciaUnyE3be7UD4J8EA=="; }; }; - "@textlint/text-to-ast-3.2.5" = { + "@textlint/source-code-fixer-3.4.1" = { + name = "_at_textlint_slash_source-code-fixer"; + packageName = "@textlint/source-code-fixer"; + version = "3.4.1"; + src = fetchurl { + url = "https://registry.npmjs.org/@textlint/source-code-fixer/-/source-code-fixer-3.4.1.tgz"; + sha512 = "FqL+xdjIU2hswS4Cmhf/bL7SWTpXkKoK/wb8Lmo9sNmEE481fc5Ey/s8JgxAaOHRpwOcmErGd16c3gXcG6Y2ow=="; + }; + }; + "@textlint/text-to-ast-3.3.1" = { name = "_at_textlint_slash_text-to-ast"; packageName = "@textlint/text-to-ast"; - version = "3.2.5"; + version = "3.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/text-to-ast/-/text-to-ast-3.2.5.tgz"; - sha512 = "1B43L9tVr2b6Qm37KsdI8dbutL8b5AN95PFGzPpxaJbShz8TjVUFQ5bxPrnKGc7wV5MFpazf+/UVjZx6JtUbMA=="; + url = "https://registry.npmjs.org/@textlint/text-to-ast/-/text-to-ast-3.3.1.tgz"; + sha512 = "aN1IY3u98Wig2PTF/eEJdb7XfCH5VEwZagGdG1vajx6sdc7Sc3265UVv9uEB/ypJDteYnURRICfTd6NCGwkVGA=="; }; }; - "@textlint/textlint-plugin-markdown-5.2.7" = { + "@textlint/textlint-plugin-markdown-5.3.1" = { name = "_at_textlint_slash_textlint-plugin-markdown"; packageName = "@textlint/textlint-plugin-markdown"; - version = "5.2.7"; + version = "5.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-5.2.7.tgz"; - sha512 = "GKx79nbsLwvDdyv98wnX2BSF83MKTM5j09OFJp2+wi2qrWO3U0+7YMILfdHDqyPfUk+osuy65BAFeq5jlXPomQ=="; + url = "https://registry.npmjs.org/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-5.3.1.tgz"; + sha512 = "IhQVGW9YqylkuZ4AjOfLFtOWHPXtLMhWTVfvIFzMQ2TIpquIaybws8KiFN2yZzLBNNduF+PFvm+H2NRhR0w/lQ=="; }; }; - "@textlint/textlint-plugin-text-4.2.7" = { + "@textlint/textlint-plugin-text-4.3.1" = { name = "_at_textlint_slash_textlint-plugin-text"; packageName = "@textlint/textlint-plugin-text"; - version = "4.2.7"; + version = "4.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/textlint-plugin-text/-/textlint-plugin-text-4.2.7.tgz"; - sha512 = "uMoASP8kIJrMqMJCXePvKSh0tOEuiQS9vFjH+kq2kS8/+Po6Wwgma9IdJsLWuSI8H4ufcvbozREuY+DceQAp/w=="; + url = "https://registry.npmjs.org/@textlint/textlint-plugin-text/-/textlint-plugin-text-4.3.1.tgz"; + sha512 = "IqtO6TWOfVaw8sXMdVVwsvEYuqYk13ApKXBVjjJoLux0g+6G1rCEhFSZtopkrpC1Srr/OZCfb4nk8/zx+5M6Ng=="; }; }; - "@textlint/types-1.4.6" = { + "@textlint/types-1.5.1" = { name = "_at_textlint_slash_types"; packageName = "@textlint/types"; - version = "1.4.6"; + version = "1.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/types/-/types-1.4.6.tgz"; - sha512 = "hoKPvIzNf+vI0goRk90HfsVUbXkAp4BfpvRxh51TGqVG27dlYrQJZkYheuUNUAwyj0Id09qzVwXno/xQPMYPcg=="; + url = "https://registry.npmjs.org/@textlint/types/-/types-1.5.1.tgz"; + sha512 = "YgPmxEeFUXuCjWOFx4p0afxFCHJbTf9Muw/6SJDLd/txQ6YrStst3Kvw+6QGefdJe44/UdiUYtI8sYa5T1ejaQ=="; }; }; - "@textlint/utils-1.1.5" = { + "@textlint/utils-1.2.1" = { name = "_at_textlint_slash_utils"; packageName = "@textlint/utils"; - version = "1.1.5"; + version = "1.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/utils/-/utils-1.1.5.tgz"; - sha512 = "wv1m6yyaQpt1QrGKIUYwMoL5LLhDhXk05+pXg3i0+8PC8X95jNin10fSkxRMyXOsEqB6481GR3XgQ8Ia7DO1tg=="; + url = "https://registry.npmjs.org/@textlint/utils/-/utils-1.2.1.tgz"; + sha512 = "X/rLpqskTLWDPO5cvQO5CcA7zNnDimeBokwehiDwTg6aP9LYqFeOw5mKZ5lb4purY9zN9tLRxJGLle4Py1QobQ=="; }; }; "@tokenizer/token-0.1.1" = { @@ -5485,6 +5341,15 @@ let sha512 = "/+CRPXpBDpo2RK9C68N3b2cOvO0Cf5B9aPijHsoDQTHivnGSObdOF2BRQOYjojWTDy6nQvMjmqRXIxH55VjxxA=="; }; }; + "@types/archiver-5.1.0" = { + name = "_at_types_slash_archiver"; + packageName = "@types/archiver"; + version = "5.1.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@types/archiver/-/archiver-5.1.0.tgz"; + sha512 = "baFOhanb/hxmcOd1Uey2TfFg43kTSmM6py1Eo7Rjbv/ivcl7PXLhY0QgXGf50Hx/eskGCFqPfhs/7IZLb15C5g=="; + }; + }; "@types/babel-types-7.0.9" = { name = "_at_types_slash_babel-types"; packageName = "@types/babel-types"; @@ -5728,13 +5593,13 @@ let sha512 = "kM2g9Fdk/du24fKuuQhA/LBleFR4Z4JP2MVKpLxQQSzofF1uJ06D+c05zfLDAkkDO55aEeNwJih0gHrE/Ci20A=="; }; }; - "@types/engine.io-3.1.4" = { + "@types/engine.io-3.1.5" = { name = "_at_types_slash_engine.io"; packageName = "@types/engine.io"; - version = "3.1.4"; + version = "3.1.5"; src = fetchurl { - url = "https://registry.npmjs.org/@types/engine.io/-/engine.io-3.1.4.tgz"; - sha512 = "98rXVukLD6/ozrQ2O80NAlWDGA4INg+tqsEReWJldqyi2fulC9V7Use/n28SWgROXKm6003ycWV4gZHoF8GA6w=="; + url = "https://registry.npmjs.org/@types/engine.io/-/engine.io-3.1.5.tgz"; + sha512 = "DLVpLEGTEZGBXOYoYoagHSxXkDHONc0fZouF2ayw7Q18aRu1Afwci+1CFKvPpouCUOVWP+dmCaAWpQjswe7kpg=="; }; }; "@types/eslint-7.2.6" = { @@ -5782,6 +5647,15 @@ let sha512 = "jnqIUKDUqJbDIUxm0Uj7bnlMnRm1T/eZ9N+AVMqhPgzrba2GhGG5o/jCTwmdPK709nEZsGoMzXEDUjcXHa3W0g=="; }; }; + "@types/estree-0.0.46" = { + name = "_at_types_slash_estree"; + packageName = "@types/estree"; + version = "0.0.46"; + src = fetchurl { + url = "https://registry.npmjs.org/@types/estree/-/estree-0.0.46.tgz"; + sha512 = "laIjwTQaD+5DukBZaygQ79K1Z0jb1bPEMRrkXSLjtCcZm+abyp5YbrqpSLzD42FwWW6gK/aS4NYpJ804nG2brg=="; + }; + }; "@types/events-3.0.0" = { name = "_at_types_slash_events"; packageName = "@types/events"; @@ -5818,6 +5692,15 @@ let sha512 = "YYlVaCni5dnHc+bLZfY908IG1+x5xuibKZMGv8srKkvtul3wUuanYvpIj9GXXoWkQbaAdR+kgX46IETKUALWNQ=="; }; }; + "@types/express-serve-static-core-4.17.18" = { + name = "_at_types_slash_express-serve-static-core"; + packageName = "@types/express-serve-static-core"; + version = "4.17.18"; + src = fetchurl { + url = "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.18.tgz"; + sha512 = "m4JTwx5RUBNZvky/JJ8swEJPKFd8si08pPF2PfizYjGZOKr/svUWPcoUmLow6MmPzhasphB7gSTINY67xn3JNA=="; + }; + }; "@types/fancy-log-1.3.0" = { name = "_at_types_slash_fancy-log"; packageName = "@types/fancy-log"; @@ -5971,13 +5854,13 @@ let sha512 = "2aoSC4UUbHDj2uCsCxcG/vRMXey/m17bC7UwitVm5hn22nI8O8Y9iDpA76Orc+DWkQ4zZrOKEshCqR/jSuXAHA=="; }; }; - "@types/http-proxy-1.17.4" = { + "@types/http-proxy-1.17.5" = { name = "_at_types_slash_http-proxy"; packageName = "@types/http-proxy"; - version = "1.17.4"; + version = "1.17.5"; src = fetchurl { - url = "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.4.tgz"; - sha512 = "IrSHl2u6AWXduUaDLqYpt45tLVCtYv7o4Z0s1KghBCDgIIS9oW5K1H8mZG/A2CfeLdEa7rTd1ACOiHBc1EMT2Q=="; + url = "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.5.tgz"; + sha512 = "GNkDE7bTv6Sf8JbV2GksknKOsk7OznNYHSdrtvPJXO0qJ9odZig6IZKUi5RFGi6d1bf6dgIAe4uXi3DBc7069Q=="; }; }; "@types/inquirer-6.5.0" = { @@ -6034,6 +5917,15 @@ let sha512 = "JCcp6J0GV66Y4ZMDAQCXot4xprYB+Zfd3meK9+INSJeVZwJmHAW30BBEEkPzXswMXuiyReUGOP3GxrADc9wPww=="; }; }; + "@types/js-yaml-3.12.6" = { + name = "_at_types_slash_js-yaml"; + packageName = "@types/js-yaml"; + version = "3.12.6"; + src = fetchurl { + url = "https://registry.npmjs.org/@types/js-yaml/-/js-yaml-3.12.6.tgz"; + sha512 = "cK4XqrLvP17X6c0C8n4iTbT59EixqyXL3Fk8/Rsk4dF3oX4dg70gYUXrXVUUHpnsGMPNlTQMqf+TVmNPX6FmSQ=="; + }; + }; "@types/jscodeshift-0.7.2" = { name = "_at_types_slash_jscodeshift"; packageName = "@types/jscodeshift"; @@ -6043,13 +5935,13 @@ let sha512 = "k4ih8ayQ65e26vhCxeMTKtZ808DzC0RFQ4unBvPEy9bcFhS4aPm3oXgWWZNmZ4u+H2WzHQDCNrRC5iNX+afiZw=="; }; }; - "@types/json-schema-7.0.6" = { + "@types/json-schema-7.0.7" = { name = "_at_types_slash_json-schema"; packageName = "@types/json-schema"; - version = "7.0.6"; + version = "7.0.7"; src = fetchurl { - url = "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.6.tgz"; - sha512 = "3c+yGKvVP5Y9TYBEibGNR+kLtijnj7mYrXRg+WpFb2X9xm04g/DXYkfg4hmzJQosc9snFNUPkbYIhu+KAm6jJw=="; + url = "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.7.tgz"; + sha512 = "cxWFQVseBm6O9Gbw1IWb8r6OS4OhSt3hPZLkFApLjM8TEXROBuQGLAH2i2gZpcXdLBIrpXuTDhH7Vbm1iXmNGA=="; }; }; "@types/json5-0.0.29" = { @@ -6115,13 +6007,13 @@ let sha512 = "EP6O3Jkr7bXvZZSZYlsgt5DIjiGr0dXP1/jVEwVLTFgg0d+3lWVQkRavYVQszV7dYUwvg0B8R0MBDpcmXg7XIA=="; }; }; - "@types/lodash-4.14.167" = { + "@types/lodash-4.14.168" = { name = "_at_types_slash_lodash"; packageName = "@types/lodash"; - version = "4.14.167"; + version = "4.14.168"; src = fetchurl { - url = "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.167.tgz"; - sha512 = "w7tQPjARrvdeBkX/Rwg95S592JwxqOjmms3zWQ0XZgSyxSLdzWaYH3vErBhdVS/lRBX7F8aBYcYJYTr5TMGOzw=="; + url = "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.168.tgz"; + sha512 = "oVfRvqHV/V6D1yifJbVRU3TMp8OT6o6BG+U9MkwuJ3U8/CsDHvalRpsxBqivn71ztOFZBTfJMvETbqHiaNSj7Q=="; }; }; "@types/long-4.0.1" = { @@ -6151,13 +6043,13 @@ let sha512 = "SXPBMnFVQg1s00dlMCc/jCdvPqdE4mXaMMCeRlxLDmTAEoegHT53xKtkDnzDTOcmMHUfcjyf36/YYZ6SxRdnsw=="; }; }; - "@types/mime-2.0.3" = { + "@types/mime-1.3.2" = { name = "_at_types_slash_mime"; packageName = "@types/mime"; - version = "2.0.3"; + version = "1.3.2"; src = fetchurl { - url = "https://registry.npmjs.org/@types/mime/-/mime-2.0.3.tgz"; - sha512 = "Jus9s4CDbqwocc5pOAnh8ShfrnMcPHuJYzVcSUU7lrh8Ni5HuIqX3oilL86p3dlTrk0LzHRCgA/GQ7uNCw6l2Q=="; + url = "https://registry.npmjs.org/@types/mime/-/mime-1.3.2.tgz"; + sha512 = "YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw=="; }; }; "@types/minimatch-3.0.3" = { @@ -6259,13 +6151,13 @@ let sha512 = "fh+pAqt4xRzPfqA6eh3Z2y6fyZavRIumvjhaCL753+TVkGKGhpPeyrJG2JftD0T9q4GF00KjefsQ+PQNDdWQaQ=="; }; }; - "@types/node-10.17.50" = { + "@types/node-10.17.51" = { name = "_at_types_slash_node"; packageName = "@types/node"; - version = "10.17.50"; + version = "10.17.51"; src = fetchurl { - url = "https://registry.npmjs.org/@types/node/-/node-10.17.50.tgz"; - sha512 = "vwX+/ija9xKc/z9VqMCdbf4WYcMTGsI0I/L/6shIF3qXURxZOhPQlPRHtjTpiNhAwn0paMJzlOQqw6mAGEQnTA=="; + url = "https://registry.npmjs.org/@types/node/-/node-10.17.51.tgz"; + sha512 = "KANw+MkL626tq90l++hGelbl67irOJzGhUJk6a1Bt8QHOeh9tztJx+L0AqttraWKinmZn7Qi5lJZJzx45Gq0dg=="; }; }; "@types/node-12.12.70" = { @@ -6277,22 +6169,22 @@ let sha512 = "i5y7HTbvhonZQE+GnUM2rz1Bi8QkzxdQmEv1LKOv4nWyaQk/gdeiTApuQR3PDJHX7WomAbpx2wlWSEpxXGZ/UQ=="; }; }; - "@types/node-12.19.12" = { + "@types/node-12.19.15" = { name = "_at_types_slash_node"; packageName = "@types/node"; - version = "12.19.12"; + version = "12.19.15"; src = fetchurl { - url = "https://registry.npmjs.org/@types/node/-/node-12.19.12.tgz"; - sha512 = "UwfL2uIU9arX/+/PRcIkT08/iBadGN2z6ExOROA2Dh5mAuWTBj6iJbQX4nekiV5H8cTrEG569LeX+HRco9Cbxw=="; + url = "https://registry.npmjs.org/@types/node/-/node-12.19.15.tgz"; + sha512 = "lowukE3GUI+VSYSu6VcBXl14d61Rp5hA1D+61r16qnwC0lYNSqdxcvRh0pswejorHfS+HgwBasM8jLXz0/aOsw=="; }; }; - "@types/node-13.13.39" = { + "@types/node-13.13.40" = { name = "_at_types_slash_node"; packageName = "@types/node"; - version = "13.13.39"; + version = "13.13.40"; src = fetchurl { - url = "https://registry.npmjs.org/@types/node/-/node-13.13.39.tgz"; - sha512 = "wct+WgRTTkBm2R3vbrFOqyZM5w0g+D8KnhstG9463CJBVC3UVZHMToge7iMBR1vDl/I+NWFHUeK9X+JcF0rWKw=="; + url = "https://registry.npmjs.org/@types/node/-/node-13.13.40.tgz"; + sha512 = "eKaRo87lu1yAXrzEJl0zcJxfUMDT5/mZalFyOkT44rnQps41eS2pfWzbaulSPpQLFNy29bFqn+Y5lOTL8ATlEQ=="; }; }; "@types/node-14.11.1" = { @@ -6304,13 +6196,13 @@ let sha512 = "oTQgnd0hblfLsJ6BvJzzSL+Inogp3lq9fGgqRkMB/ziKMgEUaFl801OncOzUmalfzt14N0oPHMK47ipl+wbTIw=="; }; }; - "@types/node-14.14.20" = { + "@types/node-14.14.22" = { name = "_at_types_slash_node"; packageName = "@types/node"; - version = "14.14.20"; + version = "14.14.22"; src = fetchurl { - url = "https://registry.npmjs.org/@types/node/-/node-14.14.20.tgz"; - sha512 = "Y93R97Ouif9JEOWPIUyU+eyIdyRqQR0I8Ez1dzku4hDx34NWh4HbtIc3WNzwB1Y9ULvNGeu5B8h8bVL5cAk4/A=="; + url = "https://registry.npmjs.org/@types/node/-/node-14.14.22.tgz"; + sha512 = "g+f/qj/cNcqKkc3tFqlXOYjrmZA+jNBiDzbP3kH+B+otKFqAdPgVTGP1IeKRdMml/aE69as5S4FqtxAbl+LaMw=="; }; }; "@types/node-6.14.13" = { @@ -6349,6 +6241,15 @@ let sha512 = "o2WVNf5UhWRkxlf6eq+jMZDu7kjgpgJfl4xVNlvryc95O/6F2ld8ztKX+qu+Rjyet93WAWm5LjeX9H5FGkODvw=="; }; }; + "@types/node-fetch-2.5.8" = { + name = "_at_types_slash_node-fetch"; + packageName = "@types/node-fetch"; + version = "2.5.8"; + src = fetchurl { + url = "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.5.8.tgz"; + sha512 = "fbjI6ja0N5ZA8TV53RUqzsKNkl9fv8Oj3T7zxW7FGv1GSH7gwJaNF8dzCjrqKaxKeUpTz4yT1DaJFq/omNpGfw=="; + }; + }; "@types/normalize-package-data-2.4.0" = { name = "_at_types_slash_normalize-package-data"; packageName = "@types/normalize-package-data"; @@ -6385,13 +6286,13 @@ let sha512 = "wqTKZmqkqXd1YiVRBT2poRrMIojwEi2bKTAAjUX6nEbzr98jc3cfR/7o7ZtubhH5xT7YJ6LRdRr1GZOgs8OUjg=="; }; }; - "@types/pg-types-1.11.5" = { + "@types/pg-types-2.2.0" = { name = "_at_types_slash_pg-types"; packageName = "@types/pg-types"; - version = "1.11.5"; + version = "2.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/@types/pg-types/-/pg-types-1.11.5.tgz"; - sha512 = "L8ogeT6vDzT1vxlW3KITTCt+BVXXVkLXfZ/XNm6UqbcJgxf+KPO7yjWx7dQQE8RW07KopL10x2gNMs41+IkMGQ=="; + url = "https://registry.npmjs.org/@types/pg-types/-/pg-types-2.2.0.tgz"; + sha512 = "a+fLdul8OczRvPWPf8eTb6wPhxzyWQwRGhNN0ugtOtk6yFOG53i2LwXaA0d2D6bsJlWxi6eCuGZLGoCcdOlWZA=="; }; }; "@types/q-1.5.4" = { @@ -6502,13 +6403,13 @@ let sha512 = "41qEJgBH/TWgo5NFSvBCJ1qkoi3Q6ONSF2avrHq1LVEZfYpdHmj0y9SuTK+u9ZhG1sYQKBL1AWXKyLWP4RaUoQ=="; }; }; - "@types/serve-static-1.13.8" = { + "@types/serve-static-1.13.9" = { name = "_at_types_slash_serve-static"; packageName = "@types/serve-static"; - version = "1.13.8"; + version = "1.13.9"; src = fetchurl { - url = "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.13.8.tgz"; - sha512 = "MoJhSQreaVoL+/hurAZzIm8wafFR6ajiTM1m4A0kv6AGeVBl4r4pOV8bGFrjjq1sGxDTnCoF8i22o0/aE5XCyA=="; + url = "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.13.9.tgz"; + sha512 = "ZFqF6qa48XsPdjXV5Gsz0Zqmux2PerNd3a/ktL45mHpa19cuMi/cL8tcxdAx497yRh+QtYPuofjT9oWw9P7nkA=="; }; }; "@types/sizzle-2.3.2" = { @@ -6556,6 +6457,15 @@ let sha512 = "OBsK0KIGUICExQ/ZvnPY4cKx5Kz4NcrVyGTIvOL5y4ajXu7r++RfBajfpGfGDmDVCKcoCDX1dO84/oeyeITnxA=="; }; }; + "@types/stream-buffers-3.0.3" = { + name = "_at_types_slash_stream-buffers"; + packageName = "@types/stream-buffers"; + version = "3.0.3"; + src = fetchurl { + url = "https://registry.npmjs.org/@types/stream-buffers/-/stream-buffers-3.0.3.tgz"; + sha512 = "NeFeX7YfFZDYsCfbuaOmFQ0OjSmHreKBpp7MQ4alWQBHeh2USLsj7qyMyn9t82kjqIX516CR/5SRHnARduRtbQ=="; + }; + }; "@types/superagent-3.8.2" = { name = "_at_types_slash_superagent"; packageName = "@types/superagent"; @@ -6682,6 +6592,15 @@ let sha512 = "cr6kZ+4m9lp86ytQc1jPOJXgINQyz3kLLunZ57jznW+WIAL0JqZbGubQk4GlD42MuQL5JGOABrxdpqqWeovlVQ=="; }; }; + "@types/webpack-4.41.26" = { + name = "_at_types_slash_webpack"; + packageName = "@types/webpack"; + version = "4.41.26"; + src = fetchurl { + url = "https://registry.npmjs.org/@types/webpack/-/webpack-4.41.26.tgz"; + sha512 = "7ZyTfxjCRwexh+EJFwRUM+CDB2XvgHl4vfuqf1ZKrgGvcS5BrNvPQqJh3tsZ0P6h6Aa1qClVHaJZszLPzpqHeA=="; + }; + }; "@types/webpack-sources-2.1.0" = { name = "_at_types_slash_webpack-sources"; packageName = "@types/webpack-sources"; @@ -6763,13 +6682,13 @@ let sha512 = "HrCIVMLjE1MOozVoD86622S7aunluLb2PJdPfb3nYiEtohm8mIB/vyv0Fd37AdeMFrTUQXEunw78YloMA3Qilg=="; }; }; - "@typescript-eslint/eslint-plugin-4.12.0" = { + "@typescript-eslint/eslint-plugin-4.14.1" = { name = "_at_typescript-eslint_slash_eslint-plugin"; packageName = "@typescript-eslint/eslint-plugin"; - version = "4.12.0"; + version = "4.14.1"; src = fetchurl { - url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.12.0.tgz"; - sha512 = "wHKj6q8s70sO5i39H2g1gtpCXCvjVszzj6FFygneNFyIAxRvNSVz9GML7XpqrB9t7hNutXw+MHnLN/Ih6uyB8Q=="; + url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.14.1.tgz"; + sha512 = "5JriGbYhtqMS1kRcZTQxndz1lKMwwEXKbwZbkUZNnp6MJX0+OVXnG0kOlBZP4LUAxEyzu3cs+EXd/97MJXsGfw=="; }; }; "@typescript-eslint/experimental-utils-3.10.1" = { @@ -6781,13 +6700,13 @@ let sha512 = "DewqIgscDzmAfd5nOGe4zm6Bl7PKtMG2Ad0KG8CUZAHlXfAKTF9Ol5PXhiMh39yRL2ChRH1cuuUGOcVyyrhQIw=="; }; }; - "@typescript-eslint/experimental-utils-4.12.0" = { + "@typescript-eslint/experimental-utils-4.14.1" = { name = "_at_typescript-eslint_slash_experimental-utils"; packageName = "@typescript-eslint/experimental-utils"; - version = "4.12.0"; + version = "4.14.1"; src = fetchurl { - url = "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.12.0.tgz"; - sha512 = "MpXZXUAvHt99c9ScXijx7i061o5HEjXltO+sbYfZAAHxv3XankQkPaNi5myy0Yh0Tyea3Hdq1pi7Vsh0GJb0fA=="; + url = "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.14.1.tgz"; + sha512 = "2CuHWOJwvpw0LofbyG5gvYjEyoJeSvVH2PnfUQSn0KQr4v8Dql2pr43ohmx4fdPQ/eVoTSFjTi/bsGEXl/zUUQ=="; }; }; "@typescript-eslint/parser-3.10.1" = { @@ -6799,22 +6718,22 @@ let sha512 = "Ug1RcWcrJP02hmtaXVS3axPPTTPnZjupqhgj+NnZ6BCkwSImWk/283347+x9wN+lqOdK9Eo3vsyiyDHgsmiEJw=="; }; }; - "@typescript-eslint/parser-4.12.0" = { + "@typescript-eslint/parser-4.14.1" = { name = "_at_typescript-eslint_slash_parser"; packageName = "@typescript-eslint/parser"; - version = "4.12.0"; + version = "4.14.1"; src = fetchurl { - url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.12.0.tgz"; - sha512 = "9XxVADAo9vlfjfoxnjboBTxYOiNY93/QuvcPgsiKvHxW6tOZx1W4TvkIQ2jB3k5M0pbFP5FlXihLK49TjZXhuQ=="; + url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.14.1.tgz"; + sha512 = "mL3+gU18g9JPsHZuKMZ8Z0Ss9YP1S5xYZ7n68Z98GnPq02pYNQuRXL85b9GYhl6jpdvUc45Km7hAl71vybjUmw=="; }; }; - "@typescript-eslint/scope-manager-4.12.0" = { + "@typescript-eslint/scope-manager-4.14.1" = { name = "_at_typescript-eslint_slash_scope-manager"; packageName = "@typescript-eslint/scope-manager"; - version = "4.12.0"; + version = "4.14.1"; src = fetchurl { - url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.12.0.tgz"; - sha512 = "QVf9oCSVLte/8jvOsxmgBdOaoe2J0wtEmBr13Yz0rkBNkl5D8bfnf6G4Vhox9qqMIoG7QQoVwd2eG9DM/ge4Qg=="; + url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.14.1.tgz"; + sha512 = "F4bjJcSqXqHnC9JGUlnqSa3fC2YH5zTtmACS1Hk+WX/nFB0guuynVK5ev35D4XZbdKjulXBAQMyRr216kmxghw=="; }; }; "@typescript-eslint/types-3.10.1" = { @@ -6826,13 +6745,13 @@ let sha512 = "+3+FCUJIahE9q0lDi1WleYzjCwJs5hIsbugIgnbB+dSCYUxl8L6PwmsyOPFZde2hc1DlTo/xnkOgiTLSyAbHiQ=="; }; }; - "@typescript-eslint/types-4.12.0" = { + "@typescript-eslint/types-4.14.1" = { name = "_at_typescript-eslint_slash_types"; packageName = "@typescript-eslint/types"; - version = "4.12.0"; + version = "4.14.1"; src = fetchurl { - url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.12.0.tgz"; - sha512 = "N2RhGeheVLGtyy+CxRmxdsniB7sMSCfsnbh8K/+RUIXYYq3Ub5+sukRCjVE80QerrUBvuEvs4fDhz5AW/pcL6g=="; + url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.14.1.tgz"; + sha512 = "SkhzHdI/AllAgQSxXM89XwS1Tkic7csPdndUuTKabEwRcEfR8uQ/iPA3Dgio1rqsV3jtqZhY0QQni8rLswJM2w=="; }; }; "@typescript-eslint/typescript-estree-2.34.0" = { @@ -6853,13 +6772,13 @@ let sha512 = "QbcXOuq6WYvnB3XPsZpIwztBoquEYLXh2MtwVU+kO8jgYCiv4G5xrSP/1wg4tkvrEE+esZVquIPX/dxPlePk1w=="; }; }; - "@typescript-eslint/typescript-estree-4.12.0" = { + "@typescript-eslint/typescript-estree-4.14.1" = { name = "_at_typescript-eslint_slash_typescript-estree"; packageName = "@typescript-eslint/typescript-estree"; - version = "4.12.0"; + version = "4.14.1"; src = fetchurl { - url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.12.0.tgz"; - sha512 = "gZkFcmmp/CnzqD2RKMich2/FjBTsYopjiwJCroxqHZIY11IIoN0l5lKqcgoAPKHt33H2mAkSfvzj8i44Jm7F4w=="; + url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.14.1.tgz"; + sha512 = "M8+7MbzKC1PvJIA8kR2sSBnex8bsR5auatLCnVlNTJczmJgqRn8M+sAlQfkEq7M4IY3WmaNJ+LJjPVRrREVSHQ=="; }; }; "@typescript-eslint/visitor-keys-3.10.1" = { @@ -6871,31 +6790,31 @@ let sha512 = "9JgC82AaQeglebjZMgYR5wgmfUdUc+EitGUUMW8u2nDckaeimzW+VsoLV6FoimPv2id3VQzfjwBxEMVz08ameQ=="; }; }; - "@typescript-eslint/visitor-keys-4.12.0" = { + "@typescript-eslint/visitor-keys-4.14.1" = { name = "_at_typescript-eslint_slash_visitor-keys"; packageName = "@typescript-eslint/visitor-keys"; - version = "4.12.0"; + version = "4.14.1"; src = fetchurl { - url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.12.0.tgz"; - sha512 = "hVpsLARbDh4B9TKYz5cLbcdMIOAoBYgFPCSP9FFS/liSF+b33gVNq8JHY3QGhHNVz85hObvL7BEYLlgx553WCw=="; + url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.14.1.tgz"; + sha512 = "TAblbDXOI7bd0C/9PE1G+AFo7R5uc+ty1ArDoxmrC1ah61Hn6shURKy7gLdRb1qKJmjHkqu5Oq+e4Kt0jwf1IA=="; }; }; - "@uifabric/foundation-7.9.20" = { + "@uifabric/foundation-7.9.21" = { name = "_at_uifabric_slash_foundation"; packageName = "@uifabric/foundation"; - version = "7.9.20"; + version = "7.9.21"; src = fetchurl { - url = "https://registry.npmjs.org/@uifabric/foundation/-/foundation-7.9.20.tgz"; - sha512 = "AcOClWfs+rNK0XyPLKTK2Nqeom7zOESOfL3Tbwl5VuDlSrlGW9yNywuuo6gJSOyXCJQO5dJFVdGExmB0EM4vkw=="; + url = "https://registry.npmjs.org/@uifabric/foundation/-/foundation-7.9.21.tgz"; + sha512 = "z58pcC0hJr6S0iYLxNFoqfrfLIMxbSxFHRirk5LDT2HXbiVIYbJwbK4O0InS+sz3chdx8GGSdIUz7muXeT/D+A=="; }; }; - "@uifabric/icons-7.5.17" = { + "@uifabric/icons-7.5.18" = { name = "_at_uifabric_slash_icons"; packageName = "@uifabric/icons"; - version = "7.5.17"; + version = "7.5.18"; src = fetchurl { - url = "https://registry.npmjs.org/@uifabric/icons/-/icons-7.5.17.tgz"; - sha512 = "2S1kse0gtseTuV2r59iWukLxxoOJ6GgP2Yhxt9oxzaP9QubpYdxCUepvJmfPQQvvy4GELdykDUWQ6/hbzliJyw=="; + url = "https://registry.npmjs.org/@uifabric/icons/-/icons-7.5.18.tgz"; + sha512 = "gLPEccWlTER9NiXcOHZ+dSJ3tgLAQ4mTf3hTlKV7e7dKBTl95jzcemG5S2NJQ7xWPTH3+5K1Bpd+nqZo9EJw3w=="; }; }; "@uifabric/merge-styles-7.19.1" = { @@ -6925,13 +6844,13 @@ let sha512 = "9E+YKtnH2kyMKnK9XZZsqyM8OCxEJIIfxtaThTlQpYOzrWAGJxQADFbZ7+Usi0U2xHnWNPFROjq+B9ocEzhqMA=="; }; }; - "@uifabric/styling-7.16.18" = { + "@uifabric/styling-7.16.19" = { name = "_at_uifabric_slash_styling"; packageName = "@uifabric/styling"; - version = "7.16.18"; + version = "7.16.19"; src = fetchurl { - url = "https://registry.npmjs.org/@uifabric/styling/-/styling-7.16.18.tgz"; - sha512 = "jINFRMWfSIOZ4H29YNBHtwZU4f8JFprnyBX2E0Wq9rjqRzgcmdYbN2yn88gym6aC3houSDcYM0rdfG4ETjRQSA=="; + url = "https://registry.npmjs.org/@uifabric/styling/-/styling-7.16.19.tgz"; + sha512 = "T5fjUCx0LbzUC8Myw15YCaBjdGbSrihWSiPHtLVW77k59yWAW947XnH73QngE8xU7kyKPH3AhQrUEBMB2NjHag=="; }; }; "@uifabric/utilities-7.33.2" = { @@ -6979,40 +6898,40 @@ let sha1 = "c585c0bdb94210198945c6597e4fe23d6e63e084"; }; }; - "@vue/cli-shared-utils-4.5.9" = { + "@vue/cli-shared-utils-4.5.11" = { name = "_at_vue_slash_cli-shared-utils"; packageName = "@vue/cli-shared-utils"; - version = "4.5.9"; + version = "4.5.11"; src = fetchurl { - url = "https://registry.npmjs.org/@vue/cli-shared-utils/-/cli-shared-utils-4.5.9.tgz"; - sha512 = "anvsrv+rkQC+hgxaT2nQQxnSWSsIzyysZ36LO7qPjXvDRBvcvKLAAviFlUkYbZ+ntbV8puzJ3zw+gUhQw4SEVA=="; + url = "https://registry.npmjs.org/@vue/cli-shared-utils/-/cli-shared-utils-4.5.11.tgz"; + sha512 = "+aaQ+ThQG3+WMexfSWNl0y6f43edqVqRNbguE53F3TIH81I7saS5S750ayqXhZs2r6STJJyqorQnKtAWfHo29A=="; }; }; - "@vue/cli-ui-4.5.9" = { + "@vue/cli-ui-4.5.11" = { name = "_at_vue_slash_cli-ui"; packageName = "@vue/cli-ui"; - version = "4.5.9"; + version = "4.5.11"; src = fetchurl { - url = "https://registry.npmjs.org/@vue/cli-ui/-/cli-ui-4.5.9.tgz"; - sha512 = "JXQk29CLp7eBdO6uCr2s60xBoKjXPzr9ckpCicFMIWFLQOR0+DqWQpS1DIqETbgOmTYQj1LX+v1rkLeA74Lo2A=="; + url = "https://registry.npmjs.org/@vue/cli-ui/-/cli-ui-4.5.11.tgz"; + sha512 = "hT9cukom8WkV+U3GL0yOFDvWXqG35vy5ddSLideUOK2Ylht0AW7P9DDfUls/cDCpQ172LfPnvKRO/8zADqSElg=="; }; }; - "@vue/cli-ui-addon-webpack-4.5.9" = { + "@vue/cli-ui-addon-webpack-4.5.11" = { name = "_at_vue_slash_cli-ui-addon-webpack"; packageName = "@vue/cli-ui-addon-webpack"; - version = "4.5.9"; + version = "4.5.11"; src = fetchurl { - url = "https://registry.npmjs.org/@vue/cli-ui-addon-webpack/-/cli-ui-addon-webpack-4.5.9.tgz"; - sha512 = "fh79OvbqvZ2YQ7JI7DnDKeS3W72HoEMVS8m969g/kjrqkFM+Rt2cL81LBx3IgX5l/rZP999kof569vYsOyjVnA=="; + url = "https://registry.npmjs.org/@vue/cli-ui-addon-webpack/-/cli-ui-addon-webpack-4.5.11.tgz"; + sha512 = "k7Iv8ZfoiFtbHNDlntIUee1fCbS5PkQT9ZuI+tMV7eP7fbQXPSRDefsEOb0lAnrZ953tli+AF+hh2XhP6ihZig=="; }; }; - "@vue/cli-ui-addon-widgets-4.5.9" = { + "@vue/cli-ui-addon-widgets-4.5.11" = { name = "_at_vue_slash_cli-ui-addon-widgets"; packageName = "@vue/cli-ui-addon-widgets"; - version = "4.5.9"; + version = "4.5.11"; src = fetchurl { - url = "https://registry.npmjs.org/@vue/cli-ui-addon-widgets/-/cli-ui-addon-widgets-4.5.9.tgz"; - sha512 = "mFdUlfDGxoyreCQWO/SX4DvM/6epn37AimVGzLJLpSPJdWUerCnvxwzB6zL83SiYC6O6++cWEdzgz7EtKViFlA=="; + url = "https://registry.npmjs.org/@vue/cli-ui-addon-widgets/-/cli-ui-addon-widgets-4.5.11.tgz"; + sha512 = "uUZIfWWfvFMAtfyzaJDtwRqN2vNzc2nnALEJliv2ccVRZHS8mwB/aLoaX0hL3h+RBJ8WV2PDiXmRFcESyDfKjA=="; }; }; "@vue/compiler-core-3.0.5" = { @@ -7087,6 +7006,15 @@ let sha512 = "gYsNoGkWejBxNO6SNRjOh/xKeZ0H0V+TFzaPzODfBjkAIb0aQgBuixC1brandC/CDJy1wYPwSoYrXpvul7m6yw=="; }; }; + "@webassemblyjs/ast-1.11.0" = { + name = "_at_webassemblyjs_slash_ast"; + packageName = "@webassemblyjs/ast"; + version = "1.11.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.0.tgz"; + sha512 = "kX2W49LWsbthrmIRMbQZuQDhGtjyqXfEmmHyEi4XWnSZtPmxY0+3anPIzsnRb45VH/J55zlOfWvZuY47aJZTJg=="; + }; + }; "@webassemblyjs/ast-1.8.1" = { name = "_at_webassemblyjs_slash_ast"; packageName = "@webassemblyjs/ast"; @@ -7105,13 +7033,13 @@ let sha512 = "C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA=="; }; }; - "@webassemblyjs/ast-1.9.1" = { - name = "_at_webassemblyjs_slash_ast"; - packageName = "@webassemblyjs/ast"; - version = "1.9.1"; + "@webassemblyjs/floating-point-hex-parser-1.11.0" = { + name = "_at_webassemblyjs_slash_floating-point-hex-parser"; + packageName = "@webassemblyjs/floating-point-hex-parser"; + version = "1.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.9.1.tgz"; - sha512 = "uMu1nCWn2Wxyy126LlGqRVlhdTOsO/bsBRI4dNq3+6SiSuRKRQX6ejjKgh82LoGAPSq72lDUiQ4FWVaf0PecYw=="; + url = "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.0.tgz"; + sha512 = "Q/aVYs/VnPDVYvsCBL/gSgwmfjeCb4LW8+TMrO3cSzJImgv8lxxEPM2JA5jMrivE7LSz3V+PFqtMbls3m1exDA=="; }; }; "@webassemblyjs/floating-point-hex-parser-1.8.1" = { @@ -7132,13 +7060,13 @@ let sha512 = "TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA=="; }; }; - "@webassemblyjs/floating-point-hex-parser-1.9.1" = { - name = "_at_webassemblyjs_slash_floating-point-hex-parser"; - packageName = "@webassemblyjs/floating-point-hex-parser"; - version = "1.9.1"; + "@webassemblyjs/helper-api-error-1.11.0" = { + name = "_at_webassemblyjs_slash_helper-api-error"; + packageName = "@webassemblyjs/helper-api-error"; + version = "1.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.1.tgz"; - sha512 = "5VEKu024RySmLKTTBl9q1eO/2K5jk9ZS+2HXDBLA9s9p5IjkaXxWiDb/+b7wSQp6FRdLaH1IVGIfOex58Na2pg=="; + url = "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.0.tgz"; + sha512 = "baT/va95eXiXb2QflSx95QGT5ClzWpGaa8L7JnJbgzoYeaA27FCvuBXU758l+KXWRndEmUXjP0Q5fibhavIn8w=="; }; }; "@webassemblyjs/helper-api-error-1.8.1" = { @@ -7159,13 +7087,13 @@ let sha512 = "NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw=="; }; }; - "@webassemblyjs/helper-api-error-1.9.1" = { - name = "_at_webassemblyjs_slash_helper-api-error"; - packageName = "@webassemblyjs/helper-api-error"; - version = "1.9.1"; + "@webassemblyjs/helper-buffer-1.11.0" = { + name = "_at_webassemblyjs_slash_helper-buffer"; + packageName = "@webassemblyjs/helper-buffer"; + version = "1.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.1.tgz"; - sha512 = "y1lGmfm38djrScwpeL37rRR9f1D6sM8RhMpvM7CYLzOlHVboouZokXK/G88BpzW0NQBSvCCOnW5BFhten4FPfA=="; + url = "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.0.tgz"; + sha512 = "u9HPBEl4DS+vA8qLQdEQ6N/eJQ7gT7aNvMIo8AAWvAl/xMrcOSiI2M0MAnMCy3jIFke7bEee/JwdX1nUpCtdyA=="; }; }; "@webassemblyjs/helper-buffer-1.8.1" = { @@ -7186,13 +7114,13 @@ let sha512 = "qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA=="; }; }; - "@webassemblyjs/helper-buffer-1.9.1" = { - name = "_at_webassemblyjs_slash_helper-buffer"; - packageName = "@webassemblyjs/helper-buffer"; - version = "1.9.1"; + "@webassemblyjs/helper-code-frame-1.11.0" = { + name = "_at_webassemblyjs_slash_helper-code-frame"; + packageName = "@webassemblyjs/helper-code-frame"; + version = "1.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.1.tgz"; - sha512 = "uS6VSgieHbk/m4GSkMU5cqe/5TekdCzQso4revCIEQ3vpGZgqSSExi4jWpTWwDpAHOIAb1Jfrs0gUB9AA4n71w=="; + url = "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.11.0.tgz"; + sha512 = "crKJ80NppRzmKB9863Xq5ufVT6he+V4A2PoBfeblFGeeCb6zig34mW97tNBzGLcuOfSsq4ncmI4QOtqQBg047g=="; }; }; "@webassemblyjs/helper-code-frame-1.8.1" = { @@ -7213,31 +7141,31 @@ let sha512 = "ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA=="; }; }; - "@webassemblyjs/helper-code-frame-1.9.1" = { - name = "_at_webassemblyjs_slash_helper-code-frame"; - packageName = "@webassemblyjs/helper-code-frame"; - version = "1.9.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.1.tgz"; - sha512 = "ZQ2ZT6Evk4DPIfD+92AraGYaFIqGm4U20e7FpXwl7WUo2Pn1mZ1v8VGH8i+Y++IQpxPbQo/UyG0Khs7eInskzA=="; - }; - }; - "@webassemblyjs/helper-compiler-1.9.1" = { + "@webassemblyjs/helper-compiler-1.11.0" = { name = "_at_webassemblyjs_slash_helper-compiler"; packageName = "@webassemblyjs/helper-compiler"; - version = "1.9.1"; + version = "1.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/@webassemblyjs/helper-compiler/-/helper-compiler-1.9.1.tgz"; - sha512 = "Qad79JaN6Qgv+lWd3sLqt206o6WRne5AynNPuLQlTlvDh8P/QsqVzf6RAJnjn9snJczXxkdN3BhWg9jSgb1sUw=="; + url = "https://registry.npmjs.org/@webassemblyjs/helper-compiler/-/helper-compiler-1.11.0.tgz"; + sha512 = "XEKiHYE951mCW3kjXXK3sHdJI+IOD8k/Vfzk55FeFRJbKxucXZEJ+H1dcDp9MK0wXLtaMSVU5RFXf7chrCjdAg=="; }; }; - "@webassemblyjs/helper-flatten-ast-1.9.1" = { + "@webassemblyjs/helper-flatten-ast-1.11.0" = { name = "_at_webassemblyjs_slash_helper-flatten-ast"; packageName = "@webassemblyjs/helper-flatten-ast"; - version = "1.9.1"; + version = "1.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/@webassemblyjs/helper-flatten-ast/-/helper-flatten-ast-1.9.1.tgz"; - sha512 = "wb7ZvGAzfMdgPYAR5zQwu9R/M+kmJDYXKPCJ9vCMfUn3qMoa69Tn5J+Y9u+HzX7nt3TgPvJFcVZKWxCMIhuP7w=="; + url = "https://registry.npmjs.org/@webassemblyjs/helper-flatten-ast/-/helper-flatten-ast-1.11.0.tgz"; + sha512 = "T5zOuVT4mOXuDu2elXT/0P+2hhsIj/SgUUIxGTmpak6j3XruH0hYOOcnT9ES+qQ4vN3eq63ivGnLaMmjMPcExA=="; + }; + }; + "@webassemblyjs/helper-fsm-1.11.0" = { + name = "_at_webassemblyjs_slash_helper-fsm"; + packageName = "@webassemblyjs/helper-fsm"; + version = "1.11.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.11.0.tgz"; + sha512 = "H0vRFj05zA2J1SVi+VdNbMwi7m0yZQhLqq7vkjYk44ilLzk0zEXaBNofKH5rQcchQUP2gdqoxLLHA9EcUdW9nw=="; }; }; "@webassemblyjs/helper-fsm-1.8.1" = { @@ -7258,15 +7186,6 @@ let sha512 = "OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw=="; }; }; - "@webassemblyjs/helper-fsm-1.9.1" = { - name = "_at_webassemblyjs_slash_helper-fsm"; - packageName = "@webassemblyjs/helper-fsm"; - version = "1.9.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.1.tgz"; - sha512 = "J32HGpveEqqcKFS0YbgicB0zAlpfIxJa5MjxDxhu3i5ltPcVfY5EPvKQ1suRguFPehxiUs+/hfkwPEXom/l0lw=="; - }; - }; "@webassemblyjs/helper-module-context-1.8.1" = { name = "_at_webassemblyjs_slash_helper-module-context"; packageName = "@webassemblyjs/helper-module-context"; @@ -7285,13 +7204,22 @@ let sha512 = "MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g=="; }; }; - "@webassemblyjs/helper-module-context-1.9.1" = { - name = "_at_webassemblyjs_slash_helper-module-context"; - packageName = "@webassemblyjs/helper-module-context"; - version = "1.9.1"; + "@webassemblyjs/helper-numbers-1.11.0" = { + name = "_at_webassemblyjs_slash_helper-numbers"; + packageName = "@webassemblyjs/helper-numbers"; + version = "1.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.1.tgz"; - sha512 = "IEH2cMmEQKt7fqelLWB5e/cMdZXf2rST1JIrzWmf4XBt3QTxGdnnLvV4DYoN8pJjOx0VYXsWg+yF16MmJtolZg=="; + url = "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.0.tgz"; + sha512 = "DhRQKelIj01s5IgdsOJMKLppI+4zpmcMQ3XboFPLwCpSNH6Hqo1ritgHgD0nqHeSYqofA6aBN/NmXuGjM1jEfQ=="; + }; + }; + "@webassemblyjs/helper-wasm-bytecode-1.11.0" = { + name = "_at_webassemblyjs_slash_helper-wasm-bytecode"; + packageName = "@webassemblyjs/helper-wasm-bytecode"; + version = "1.11.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.0.tgz"; + sha512 = "MbmhvxXExm542tWREgSFnOVo07fDpsBJg3sIl6fSp9xuu75eGz5lz31q7wTLffwL3Za7XNRCMZy210+tnsUSEA=="; }; }; "@webassemblyjs/helper-wasm-bytecode-1.8.1" = { @@ -7312,13 +7240,13 @@ let sha512 = "R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw=="; }; }; - "@webassemblyjs/helper-wasm-bytecode-1.9.1" = { - name = "_at_webassemblyjs_slash_helper-wasm-bytecode"; - packageName = "@webassemblyjs/helper-wasm-bytecode"; - version = "1.9.1"; + "@webassemblyjs/helper-wasm-section-1.11.0" = { + name = "_at_webassemblyjs_slash_helper-wasm-section"; + packageName = "@webassemblyjs/helper-wasm-section"; + version = "1.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.1.tgz"; - sha512 = "i2rGTBqFUcSXxyjt2K4vm/3kkHwyzG6o427iCjcIKjOqpWH8SEem+xe82jUk1iydJO250/CvE5o7hzNAMZf0dQ=="; + url = "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.0.tgz"; + sha512 = "3Eb88hcbfY/FCukrg6i3EH8H2UsD7x8Vy47iVJrP967A9JGqgBVL9aH71SETPx1JrGsOUVLo0c7vMCN22ytJew=="; }; }; "@webassemblyjs/helper-wasm-section-1.8.1" = { @@ -7339,13 +7267,13 @@ let sha512 = "XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw=="; }; }; - "@webassemblyjs/helper-wasm-section-1.9.1" = { - name = "_at_webassemblyjs_slash_helper-wasm-section"; - packageName = "@webassemblyjs/helper-wasm-section"; - version = "1.9.1"; + "@webassemblyjs/ieee754-1.11.0" = { + name = "_at_webassemblyjs_slash_ieee754"; + packageName = "@webassemblyjs/ieee754"; + version = "1.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.1.tgz"; - sha512 = "FetqzjtXZr2d57IECK+aId3D0IcGweeM0CbAnJHkYJkcRTHP+YcMb7Wmc0j21h5UWBpwYGb9dSkK/93SRCTrGg=="; + url = "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.0.tgz"; + sha512 = "KXzOqpcYQwAfeQ6WbF6HXo+0udBNmw0iXDmEK5sFlmQdmND+tr773Ti8/5T/M6Tl/413ArSJErATd8In3B+WBA=="; }; }; "@webassemblyjs/ieee754-1.8.1" = { @@ -7366,13 +7294,13 @@ let sha512 = "dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg=="; }; }; - "@webassemblyjs/ieee754-1.9.1" = { - name = "_at_webassemblyjs_slash_ieee754"; - packageName = "@webassemblyjs/ieee754"; - version = "1.9.1"; + "@webassemblyjs/leb128-1.11.0" = { + name = "_at_webassemblyjs_slash_leb128"; + packageName = "@webassemblyjs/leb128"; + version = "1.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.9.1.tgz"; - sha512 = "EvTG9M78zP1MmkBpUjGQHZc26DzPGZSLIPxYHCjQsBMo60Qy2W34qf8z0exRDtxBbRIoiKa5dFyWer/7r1aaSQ=="; + url = "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.0.tgz"; + sha512 = "aqbsHa1mSQAbeeNcl38un6qVY++hh8OpCOzxhixSYgbRfNWcxJNJQwe2rezK9XEcssJbbWIkblaJRwGMS9zp+g=="; }; }; "@webassemblyjs/leb128-1.8.1" = { @@ -7393,13 +7321,13 @@ let sha512 = "ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw=="; }; }; - "@webassemblyjs/leb128-1.9.1" = { - name = "_at_webassemblyjs_slash_leb128"; - packageName = "@webassemblyjs/leb128"; - version = "1.9.1"; + "@webassemblyjs/utf8-1.11.0" = { + name = "_at_webassemblyjs_slash_utf8"; + packageName = "@webassemblyjs/utf8"; + version = "1.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.9.1.tgz"; - sha512 = "Oc04ub0vFfLnF+2/+ki3AE+anmW4sv9uNBqb+79fgTaPv6xJsOT0dhphNfL3FrME84CbX/D1T9XT8tjFo0IIiw=="; + url = "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.0.tgz"; + sha512 = "A/lclGxH6SpSLSyFowMzO/+aDEPU4hvEiooCMXQPcQFPPJaYcPQNKGOCLUySJsYJ4trbpr+Fs08n4jelkVTGVw=="; }; }; "@webassemblyjs/utf8-1.8.1" = { @@ -7420,22 +7348,22 @@ let sha512 = "GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w=="; }; }; - "@webassemblyjs/utf8-1.9.1" = { - name = "_at_webassemblyjs_slash_utf8"; - packageName = "@webassemblyjs/utf8"; - version = "1.9.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.9.1.tgz"; - sha512 = "llkYtppagjCodFjo0alWOUhAkfOiQPQDIc5oA6C9sFAXz7vC9QhZf/f8ijQIX+A9ToM3c9Pq85X0EX7nx9gVhg=="; - }; - }; - "@webassemblyjs/validation-1.9.1" = { + "@webassemblyjs/validation-1.11.0" = { name = "_at_webassemblyjs_slash_validation"; packageName = "@webassemblyjs/validation"; - version = "1.9.1"; + version = "1.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/@webassemblyjs/validation/-/validation-1.9.1.tgz"; - sha512 = "a/Vh1fKuvuqff0KqA9TYATTyk/FihoVcc5vp4qhXHfKjS4J9BIW548gh5YZ81ZB39yg5TKiApRy8zMRa82Ij/A=="; + url = "https://registry.npmjs.org/@webassemblyjs/validation/-/validation-1.11.0.tgz"; + sha512 = "0doaNEdjsurs3hUahxqoo3AJKvz+QnsIlkDnmd6nNmlFge3ixCrA7B8Xm6vmNoBPWWZgQ0VhvHV8Qs4768q1pw=="; + }; + }; + "@webassemblyjs/wasm-edit-1.11.0" = { + name = "_at_webassemblyjs_slash_wasm-edit"; + packageName = "@webassemblyjs/wasm-edit"; + version = "1.11.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.0.tgz"; + sha512 = "JHQ0damXy0G6J9ucyKVXO2j08JVJ2ntkdJlq1UTiUrIgfGMmA7Ik5VdC/L8hBK46kVJgujkBIoMtT8yVr+yVOQ=="; }; }; "@webassemblyjs/wasm-edit-1.9.0" = { @@ -7447,13 +7375,13 @@ let sha512 = "FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw=="; }; }; - "@webassemblyjs/wasm-edit-1.9.1" = { - name = "_at_webassemblyjs_slash_wasm-edit"; - packageName = "@webassemblyjs/wasm-edit"; - version = "1.9.1"; + "@webassemblyjs/wasm-gen-1.11.0" = { + name = "_at_webassemblyjs_slash_wasm-gen"; + packageName = "@webassemblyjs/wasm-gen"; + version = "1.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.1.tgz"; - sha512 = "S2IaD6+x9B2Xi8BCT0eGsrXXd8UxAh2LVJpg1ZMtHXnrDcsTtIX2bDjHi40Hio6Lc62dWHmKdvksI+MClCYbbw=="; + url = "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.0.tgz"; + sha512 = "BEUv1aj0WptCZ9kIS30th5ILASUnAPEvE3tVMTrItnZRT9tXCLW2LEXT8ezLw59rqPP9klh9LPmpU+WmRQmCPQ=="; }; }; "@webassemblyjs/wasm-gen-1.8.1" = { @@ -7474,13 +7402,13 @@ let sha512 = "cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA=="; }; }; - "@webassemblyjs/wasm-gen-1.9.1" = { - name = "_at_webassemblyjs_slash_wasm-gen"; - packageName = "@webassemblyjs/wasm-gen"; - version = "1.9.1"; + "@webassemblyjs/wasm-opt-1.11.0" = { + name = "_at_webassemblyjs_slash_wasm-opt"; + packageName = "@webassemblyjs/wasm-opt"; + version = "1.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.1.tgz"; - sha512 = "bqWI0S4lBQsEN5FTZ35vYzfKUJvtjNnBobB1agCALH30xNk1LToZ7Z8eiaR/Z5iVECTlBndoRQV3F6mbEqE/fg=="; + url = "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.0.tgz"; + sha512 = "tHUSP5F4ywyh3hZ0+fDQuWxKx3mJiPeFufg+9gwTpYp324mPCQgnuVKwzLTZVqj0duRDovnPaZqDwoyhIO8kYg=="; }; }; "@webassemblyjs/wasm-opt-1.9.0" = { @@ -7492,13 +7420,13 @@ let sha512 = "Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A=="; }; }; - "@webassemblyjs/wasm-opt-1.9.1" = { - name = "_at_webassemblyjs_slash_wasm-opt"; - packageName = "@webassemblyjs/wasm-opt"; - version = "1.9.1"; + "@webassemblyjs/wasm-parser-1.11.0" = { + name = "_at_webassemblyjs_slash_wasm-parser"; + packageName = "@webassemblyjs/wasm-parser"; + version = "1.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.1.tgz"; - sha512 = "gSf7I7YWVXZ5c6XqTEqkZjVs8K1kc1k57vsB6KBQscSagDNbAdxt6MwuJoMjsE1yWY1tsuL+pga268A6u+Fdkg=="; + url = "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.0.tgz"; + sha512 = "6L285Sgu9gphrcpDXINvm0M9BskznnzJTE7gYkjDbxET28shDqp27wpruyx3C2S/dvEwiigBwLA1cz7lNUi0kw=="; }; }; "@webassemblyjs/wasm-parser-1.8.1" = { @@ -7519,13 +7447,13 @@ let sha512 = "9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA=="; }; }; - "@webassemblyjs/wasm-parser-1.9.1" = { - name = "_at_webassemblyjs_slash_wasm-parser"; - packageName = "@webassemblyjs/wasm-parser"; - version = "1.9.1"; + "@webassemblyjs/wast-parser-1.11.0" = { + name = "_at_webassemblyjs_slash_wast-parser"; + packageName = "@webassemblyjs/wast-parser"; + version = "1.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.1.tgz"; - sha512 = "ImM4N2T1MEIond0MyE3rXvStVxEmivQrDKf/ggfh5pP6EHu3lL/YTAoSrR7shrbKNPpeKpGesW1LIK/L4kqduw=="; + url = "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.11.0.tgz"; + sha512 = "HKFbg+HvjITWuOOWehS2EUdNZ4fsfWislwDTrxuUL6FpzrjtsASd2c4hmqNSW6c7sv5iBx1puUWwNtVqLXxFqw=="; }; }; "@webassemblyjs/wast-parser-1.8.1" = { @@ -7546,13 +7474,13 @@ let sha512 = "qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw=="; }; }; - "@webassemblyjs/wast-parser-1.9.1" = { - name = "_at_webassemblyjs_slash_wast-parser"; - packageName = "@webassemblyjs/wast-parser"; - version = "1.9.1"; + "@webassemblyjs/wast-printer-1.11.0" = { + name = "_at_webassemblyjs_slash_wast-printer"; + packageName = "@webassemblyjs/wast-printer"; + version = "1.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.9.1.tgz"; - sha512 = "2xVxejXSvj3ls/o2TR/zI6p28qsGupjHhnHL6URULQRcXmryn3w7G83jQMcT7PHqUfyle65fZtWLukfdLdE7qw=="; + url = "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.0.tgz"; + sha512 = "Fg5OX46pRdTgB7rKIUojkh9vXaVN6sGYCnEiJN1GYkb0RPwShZXp6KTDqmoMdQPKhcroOXh3fEzmkWmCYaKYhQ=="; }; }; "@webassemblyjs/wast-printer-1.8.1" = { @@ -7573,13 +7501,13 @@ let sha512 = "2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA=="; }; }; - "@webassemblyjs/wast-printer-1.9.1" = { - name = "_at_webassemblyjs_slash_wast-printer"; - packageName = "@webassemblyjs/wast-printer"; - version = "1.9.1"; + "@webpack-cli/configtest-1.0.0" = { + name = "_at_webpack-cli_slash_configtest"; + packageName = "@webpack-cli/configtest"; + version = "1.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.9.1.tgz"; - sha512 = "tDV8V15wm7mmbAH6XvQRU1X+oPGmeOzYsd6h7hlRLz6QpV4Ec/KKxM8OpLtFmQPLCreGxTp+HuxtH4pRIZyL9w=="; + url = "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-1.0.0.tgz"; + sha512 = "Un0SdBoN1h4ACnIO7EiCjWuyhNI0Jl96JC+63q6xi4HDUYRZn8Auluea9D+v9NWKc5J4sICVEltdBaVjLX39xw=="; }; }; "@webpack-cli/info-1.2.1" = { @@ -7591,13 +7519,13 @@ let sha512 = "fLnDML5HZ5AEKzHul8xLAksoKN2cibu6MgonkUj8R9V7bbeVRkd1XbGEGWrAUNYHbX1jcqCsDEpBviE5StPMzQ=="; }; }; - "@webpack-cli/serve-1.2.1" = { + "@webpack-cli/serve-1.2.2" = { name = "_at_webpack-cli_slash_serve"; packageName = "@webpack-cli/serve"; - version = "1.2.1"; + version = "1.2.2"; src = fetchurl { - url = "https://registry.npmjs.org/@webpack-cli/serve/-/serve-1.2.1.tgz"; - sha512 = "Zj1z6AyS+vqV6Hfi7ngCjFGdHV5EwZNIHo6QfFTNe9PyW+zBU1zJ9BiOW1pmUEq950RC4+Dym6flyA/61/vhyw=="; + url = "https://registry.npmjs.org/@webpack-cli/serve/-/serve-1.2.2.tgz"; + sha512 = "03GkWxcgFfm8+WIwcsqJb9agrSDNDDoxaNnexPnCCexP5SCE4IgFd9lNpSy+K2nFqVMpgTFw6SwbmVAVTndVew=="; }; }; "@wry/context-0.4.4" = { @@ -7780,15 +7708,6 @@ let sha1 = "c22822f87e1c939f579887504d9c109c4173829d"; }; }; - "abstract-leveldown-0.12.4" = { - name = "abstract-leveldown"; - packageName = "abstract-leveldown"; - version = "0.12.4"; - src = fetchurl { - url = "https://registry.npmjs.org/abstract-leveldown/-/abstract-leveldown-0.12.4.tgz"; - sha1 = "29e18e632e60e4e221d5810247852a63d7b2e410"; - }; - }; "abstract-leveldown-6.0.3" = { name = "abstract-leveldown"; packageName = "abstract-leveldown"; @@ -7906,13 +7825,13 @@ let sha512 = "nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A=="; }; }; - "acorn-8.0.4" = { + "acorn-8.0.5" = { name = "acorn"; packageName = "acorn"; - version = "8.0.4"; + version = "8.0.5"; src = fetchurl { - url = "https://registry.npmjs.org/acorn/-/acorn-8.0.4.tgz"; - sha512 = "XNP0PqF1XD19ZlLKvB7cMmnZswW4C/03pRHgirB30uSJTaS3A3V1/P4sS3HPvFmjoriPCJQs+JDSbm4bL1TxGQ=="; + url = "https://registry.npmjs.org/acorn/-/acorn-8.0.5.tgz"; + sha512 = "v+DieK/HJkJOpFBETDJioequtc3PfxsWMaxIdIwujtF7FEV/MAyDQLlm6/zPvr7Mix07mLh6ccVwIsloceodlg=="; }; }; "acorn-globals-1.0.9" = { @@ -8086,6 +8005,15 @@ let sha512 = "TFi4HBKSGfIKsK5YCkKaaFG2m4PEDyViZmEwof3MTIgzimHLto6muaHVpbrljdIvIrFZzEq/p4nafOeLcYegrg=="; }; }; + "adm-zip-0.5.2" = { + name = "adm-zip"; + packageName = "adm-zip"; + version = "0.5.2"; + src = fetchurl { + url = "https://registry.npmjs.org/adm-zip/-/adm-zip-0.5.2.tgz"; + sha512 = "lUI3ZSNsfQXNYNzGjt68MdxzCs0eW29lgL74y/Y2h4nARgHmH3poFWuK3LonvFbNHFt4dTb2X/QQ4c1ZUWWsJw=="; + }; + }; "adverb-where-0.0.9" = { name = "adverb-where"; packageName = "adverb-where"; @@ -8518,15 +8446,6 @@ let sha512 = "JWF7ocqNrp8u9oqpgV+wH5ftbt+cfvv+PTjOvKLT3AdYly/LmORARfEVT1iyjwN+4MqE5UmVKoAdIBqeoCHgLA=="; }; }; - "ansi-fragments-0.2.1" = { - name = "ansi-fragments"; - packageName = "ansi-fragments"; - version = "0.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/ansi-fragments/-/ansi-fragments-0.2.1.tgz"; - sha512 = "DykbNHxuXQwUDRv5ibc2b0x7uw7wmwOGLBUd5RmaQ5z8Lhx19vwvKV+FAsM5rEA6dEcHxX+/Ad5s9eF2k2bB+w=="; - }; - }; "ansi-gray-0.1.1" = { name = "ansi-gray"; packageName = "ansi-gray"; @@ -8662,13 +8581,13 @@ let sha512 = "zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="; }; }; - "ansi-styles-5.0.0" = { + "ansi-styles-5.1.0" = { name = "ansi-styles"; packageName = "ansi-styles"; - version = "5.0.0"; + version = "5.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.0.0.tgz"; - sha512 = "6564t0m0fuQMnockqBv7wJxo9T5C2V9JpYXyNScfRDPVLusOQQhkpMGrFC17QbiolraQ1sMXX+Y5nJpjqozL4g=="; + url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.1.0.tgz"; + sha512 = "osxifZo3ar56+e8tdYreU6p8FZGciBHo5O0JoDAxMUqZuyNUb+yHEwYtJZ+Z32R459jEgtwVf1u8D7qYwU0l6w=="; }; }; "ansi-term-0.0.2" = { @@ -8797,13 +8716,13 @@ let sha512 = "sbLEIMQrkV7RkIruqTPXxeCMkAAycv4yzTkBzRgOR1BrR5UB7qZtupqxkersTJSf0HZ3sbaNRrNV80TnnM7cUw=="; }; }; - "apollo-2.32.0" = { + "apollo-2.32.1" = { name = "apollo"; packageName = "apollo"; - version = "2.32.0"; + version = "2.32.1"; src = fetchurl { - url = "https://registry.npmjs.org/apollo/-/apollo-2.32.0.tgz"; - sha512 = "6Wmt9OUYUET3JSQvAS6qgNP+vomf3P5zANARXDhqJ59c0/hAsXhdAvGaFFba+JhRRvyIVBOmaOpB880aNZeadg=="; + url = "https://registry.npmjs.org/apollo/-/apollo-2.32.1.tgz"; + sha512 = "aSjGnxxm+ZZ6uYTuGrBqtQ4e3boG408K16CbB5Zm/QHCRNHpPUz7r9VRDfAJWMFE1mBdWi+r0dyY+7FUkKeRrw=="; }; }; "apollo-cache-1.3.5" = { @@ -8815,13 +8734,13 @@ let sha512 = "1XoDy8kJnyWY/i/+gLTEbYLnoiVtS8y7ikBr/IfmML4Qb+CM7dEEbIUOjnY716WqmZ/UpXIxTfJsY7rMcqiCXA=="; }; }; - "apollo-cache-control-0.11.5" = { + "apollo-cache-control-0.11.6" = { name = "apollo-cache-control"; packageName = "apollo-cache-control"; - version = "0.11.5"; + version = "0.11.6"; src = fetchurl { - url = "https://registry.npmjs.org/apollo-cache-control/-/apollo-cache-control-0.11.5.tgz"; - sha512 = "jvarfQhwDRazpOsmkt5Pd7qGFrtbL70zMbUZGqDhJSYpfqI672f7bXXc7O3vtpbD3qnS3XTBvK2kspX/Bdo0IA=="; + url = "https://registry.npmjs.org/apollo-cache-control/-/apollo-cache-control-0.11.6.tgz"; + sha512 = "YZ+uuIG+fPy+mkpBS2qKF0v1qlzZ3PW6xZVaDukeK3ed3iAs4L/2YnkTqau3OmoF/VPzX2FmSkocX/OVd59YSw=="; }; }; "apollo-cache-inmemory-1.6.6" = { @@ -8842,58 +8761,58 @@ let sha512 = "jiPlMTN6/5CjZpJOkGeUV0mb4zxx33uXWdj/xQCfAMkuNAC3HN7CvYDyMHHEzmcQ5GV12LszWoQ/VlxET24CtA=="; }; }; - "apollo-codegen-core-0.39.0" = { + "apollo-codegen-core-0.39.1" = { name = "apollo-codegen-core"; packageName = "apollo-codegen-core"; - version = "0.39.0"; + version = "0.39.1"; src = fetchurl { - url = "https://registry.npmjs.org/apollo-codegen-core/-/apollo-codegen-core-0.39.0.tgz"; - sha512 = "b+RD8jerDMih2vf73hodOQAx4UODy1l053/Mdr4uIBlDbaF6OA4Q8TbTbH4k7tDzyAoL2pjH5v8AtlU8viIKwg=="; + url = "https://registry.npmjs.org/apollo-codegen-core/-/apollo-codegen-core-0.39.1.tgz"; + sha512 = "8Sb9CN+lYR2BMeg7p3A4wjsQW7oxDTnKbueUHV/fmZU+hg2GNLXqVTdyWE2UWDEOyDTNpQMyysGEUZZBsOmBrw=="; }; }; - "apollo-codegen-flow-0.37.0" = { + "apollo-codegen-flow-0.37.1" = { name = "apollo-codegen-flow"; packageName = "apollo-codegen-flow"; - version = "0.37.0"; + version = "0.37.1"; src = fetchurl { - url = "https://registry.npmjs.org/apollo-codegen-flow/-/apollo-codegen-flow-0.37.0.tgz"; - sha512 = "VWB++9ObUQx+Y1JPdgrkdkjPichsgXhYfz5w5HSKvare7SlkxEZFOzSXi9/bUAC3gry3B/38do1srDHtXZ366g=="; + url = "https://registry.npmjs.org/apollo-codegen-flow/-/apollo-codegen-flow-0.37.1.tgz"; + sha512 = "XhGUzlBxi3IHCBbIsnfk0c41mz30Ky1SPSYtJzrMdtMAdUAfMEGBLXzlLqgp1iAbUegQ10zbp2kgzLG0hkeYhg=="; }; }; - "apollo-codegen-scala-0.38.0" = { + "apollo-codegen-scala-0.38.1" = { name = "apollo-codegen-scala"; packageName = "apollo-codegen-scala"; - version = "0.38.0"; + version = "0.38.1"; src = fetchurl { - url = "https://registry.npmjs.org/apollo-codegen-scala/-/apollo-codegen-scala-0.38.0.tgz"; - sha512 = "oQAV65ZGaFGeNpxVVnZLh2kyBKfA6QzSeyosDp0HKxeXOGQ84dHJg1zGiN0oWXELBM2MqPtwWSGFYgnk3CNeHg=="; + url = "https://registry.npmjs.org/apollo-codegen-scala/-/apollo-codegen-scala-0.38.1.tgz"; + sha512 = "WvIX6Gm7KHnh6FJzq/XVRyHMNwwbQEnMfRXpR9zFtaUuzZHfg9RNawtsUGMSQCnNw1sm5YLGIJvNFUp1hUEqGA=="; }; }; - "apollo-codegen-swift-0.39.0" = { + "apollo-codegen-swift-0.39.1" = { name = "apollo-codegen-swift"; packageName = "apollo-codegen-swift"; - version = "0.39.0"; + version = "0.39.1"; src = fetchurl { - url = "https://registry.npmjs.org/apollo-codegen-swift/-/apollo-codegen-swift-0.39.0.tgz"; - sha512 = "fFaR8g62jjYS6QFW354ONcMHJNesy5EtCvYKsR9Sb1eBoLTx/6NkeMiGO28PIIk7bEw7FKMrzQE2UVNSeZbMxQ=="; + url = "https://registry.npmjs.org/apollo-codegen-swift/-/apollo-codegen-swift-0.39.1.tgz"; + sha512 = "dKqDd2w2YAOkyDbDkJ5etXLdn8foNnm55r5rsIssIxCdtdR5qsusrPHQvywVjHw8ZHBy4o229dVoSzmrIUygKg=="; }; }; - "apollo-codegen-typescript-0.39.0" = { + "apollo-codegen-typescript-0.39.1" = { name = "apollo-codegen-typescript"; packageName = "apollo-codegen-typescript"; - version = "0.39.0"; + version = "0.39.1"; src = fetchurl { - url = "https://registry.npmjs.org/apollo-codegen-typescript/-/apollo-codegen-typescript-0.39.0.tgz"; - sha512 = "/clemyhTd+s+b4HoMa72zjWir4QrDqjcN4tnSpQYXSsOFO4e4kWlxSj0zrtyYkcx/Gqod9UrPSSsx2CZHyB37A=="; + url = "https://registry.npmjs.org/apollo-codegen-typescript/-/apollo-codegen-typescript-0.39.1.tgz"; + sha512 = "cSnMrAqyK2AMZRxTsBrZZhemfv87AU0OS1/aM45WQRyQurkEjf8GmWMfp2IRkJo9m+jgdo74X5ct3KZOXbYMXg=="; }; }; - "apollo-datasource-0.7.2" = { + "apollo-datasource-0.7.3" = { name = "apollo-datasource"; packageName = "apollo-datasource"; - version = "0.7.2"; + version = "0.7.3"; src = fetchurl { - url = "https://registry.npmjs.org/apollo-datasource/-/apollo-datasource-0.7.2.tgz"; - sha512 = "ibnW+s4BMp4K2AgzLEtvzkjg7dJgCaw9M5b5N0YKNmeRZRnl/I/qBTQae648FsRKgMwTbRQIvBhQ0URUFAqFOw=="; + url = "https://registry.npmjs.org/apollo-datasource/-/apollo-datasource-0.7.3.tgz"; + sha512 = "PE0ucdZYjHjUyXrFWRwT02yLcx2DACsZ0jm1Mp/0m/I9nZu/fEkvJxfsryXB6JndpmQO77gQHixf/xGCN976kA=="; }; }; "apollo-env-0.6.5" = { @@ -9013,22 +8932,22 @@ let sha512 = "WJTJxLM+MRHNUxt1RTl4zD0HrLdH44F2mDzMweBj1yHL0kSt8I1WwoiF/wiGVSpnG48LZrBegCaOJeuVbJTbtw=="; }; }; - "apollo-server-caching-0.5.2" = { + "apollo-server-caching-0.5.3" = { name = "apollo-server-caching"; packageName = "apollo-server-caching"; - version = "0.5.2"; + version = "0.5.3"; src = fetchurl { - url = "https://registry.npmjs.org/apollo-server-caching/-/apollo-server-caching-0.5.2.tgz"; - sha512 = "HUcP3TlgRsuGgeTOn8QMbkdx0hLPXyEJehZIPrcof0ATz7j7aTPA4at7gaiFHCo8gk07DaWYGB3PFgjboXRcWQ=="; + url = "https://registry.npmjs.org/apollo-server-caching/-/apollo-server-caching-0.5.3.tgz"; + sha512 = "iMi3087iphDAI0U2iSBE9qtx9kQoMMEWr6w+LwXruBD95ek9DWyj7OeC2U/ngLjRsXM43DoBDXlu7R+uMjahrQ=="; }; }; - "apollo-server-core-2.19.1" = { + "apollo-server-core-2.19.2" = { name = "apollo-server-core"; packageName = "apollo-server-core"; - version = "2.19.1"; + version = "2.19.2"; src = fetchurl { - url = "https://registry.npmjs.org/apollo-server-core/-/apollo-server-core-2.19.1.tgz"; - sha512 = "5EVmcY8Ij7Ywwu+Ze4VaUhZBcxl8t5ztcSatJrKMd4HYlEHyaNGBV2itfpyqAthxfdMbGKqlpeCHmTGSqDcNpA=="; + url = "https://registry.npmjs.org/apollo-server-core/-/apollo-server-core-2.19.2.tgz"; + sha512 = "liLgLhTIGWZtdQbxuxo3/Yv8j+faKQcI60kOL+uwfByGhoKLZEQp5nqi2IdMK6JXt1VuyKwKu7lTzj02a9S3jA=="; }; }; "apollo-server-env-2.4.5" = { @@ -9040,6 +8959,15 @@ let sha512 = "nfNhmGPzbq3xCEWT8eRpoHXIPNcNy3QcEoBlzVMjeglrBGryLG2LXwBSPnVmTRRrzUYugX0ULBtgE3rBFNoUgA=="; }; }; + "apollo-server-env-3.0.0" = { + name = "apollo-server-env"; + packageName = "apollo-server-env"; + version = "3.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/apollo-server-env/-/apollo-server-env-3.0.0.tgz"; + sha512 = "tPSN+VttnPsoQAl/SBVUpGbLA97MXG990XIwq6YUnJyAixrrsjW1xYG7RlaOqetxm80y5mBZKLrRDiiSsW/vog=="; + }; + }; "apollo-server-errors-2.4.2" = { name = "apollo-server-errors"; packageName = "apollo-server-errors"; @@ -9049,40 +8977,40 @@ let sha512 = "FeGxW3Batn6sUtX3OVVUm7o56EgjxDlmgpTLNyWcLb0j6P8mw9oLNyAm3B+deHA4KNdNHO5BmHS2g1SJYjqPCQ=="; }; }; - "apollo-server-express-2.19.1" = { + "apollo-server-express-2.19.2" = { name = "apollo-server-express"; packageName = "apollo-server-express"; - version = "2.19.1"; + version = "2.19.2"; src = fetchurl { - url = "https://registry.npmjs.org/apollo-server-express/-/apollo-server-express-2.19.1.tgz"; - sha512 = "PJQmPtV3JD7RiV6cP7JcqAwVdUq6hWUtvDIoCOxPoeUWYf79nEF4WiYsPXVF0+meLLWKlL1fuSwEEt1CEHEG5w=="; + url = "https://registry.npmjs.org/apollo-server-express/-/apollo-server-express-2.19.2.tgz"; + sha512 = "1v2H6BgDkS4QzRbJ9djn2o0yv5m/filbpiupxAsCG9f+sAoSlY3eYSj84Sbex2r5+4itAvT9y84WI7d9RBYs/Q=="; }; }; - "apollo-server-plugin-base-0.10.3" = { + "apollo-server-plugin-base-0.10.4" = { name = "apollo-server-plugin-base"; packageName = "apollo-server-plugin-base"; - version = "0.10.3"; + version = "0.10.4"; src = fetchurl { - url = "https://registry.npmjs.org/apollo-server-plugin-base/-/apollo-server-plugin-base-0.10.3.tgz"; - sha512 = "NCLOsk9Jsd8oLvefkQvROdMDQvnHnzbzz3MPCqEYjCOEv0YBM8T77D0wCwbcViDS2M5p0W6un2ub9s/vU71f7Q=="; + url = "https://registry.npmjs.org/apollo-server-plugin-base/-/apollo-server-plugin-base-0.10.4.tgz"; + sha512 = "HRhbyHgHFTLP0ImubQObYhSgpmVH4Rk1BinnceZmwudIVLKrqayIVOELdyext/QnSmmzg5W7vF3NLGBcVGMqDg=="; }; }; - "apollo-server-types-0.6.2" = { + "apollo-server-types-0.6.3" = { name = "apollo-server-types"; packageName = "apollo-server-types"; - version = "0.6.2"; + version = "0.6.3"; src = fetchurl { - url = "https://registry.npmjs.org/apollo-server-types/-/apollo-server-types-0.6.2.tgz"; - sha512 = "LgSKgAStiDzpUSLYwJoAmy0W8nkxx/ExMmgEPgEYVi6dKPkUmtu561J970PhGdYH+D79ke3g87D+plkUkgfnlQ=="; + url = "https://registry.npmjs.org/apollo-server-types/-/apollo-server-types-0.6.3.tgz"; + sha512 = "aVR7SlSGGY41E1f11YYz5bvwA89uGmkVUtzMiklDhZ7IgRJhysT5Dflt5IuwDxp+NdQkIhVCErUXakopocFLAg=="; }; }; - "apollo-tracing-0.12.1" = { + "apollo-tracing-0.12.2" = { name = "apollo-tracing"; packageName = "apollo-tracing"; - version = "0.12.1"; + version = "0.12.2"; src = fetchurl { - url = "https://registry.npmjs.org/apollo-tracing/-/apollo-tracing-0.12.1.tgz"; - sha512 = "qdkUjW+pOaidGOSITypeYE288y28HkPmGNpUtyQSOeTxgqXHtQX3TDWiOJ2SmrLH08xdSwfvz9o5KrTq4PdISg=="; + url = "https://registry.npmjs.org/apollo-tracing/-/apollo-tracing-0.12.2.tgz"; + sha512 = "SYN4o0C0wR1fyS3+P0FthyvsQVHFopdmN3IU64IaspR/RZScPxZ3Ae8uu++fTvkQflAkglnFM0aX6DkZERBp6w=="; }; }; "apollo-upload-client-11.0.0" = { @@ -9229,13 +9157,13 @@ let sha512 = "Tq3yV/T4wxBsD2Wign8W9VQKhaUxzzRmjEiSoOK0SLqPgDP/N1TKdYyBeIEu56T4I9iO4fKTTR0mN9NWkBA0sg=="; }; }; - "archiver-5.1.0" = { + "archiver-5.2.0" = { name = "archiver"; packageName = "archiver"; - version = "5.1.0"; + version = "5.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/archiver/-/archiver-5.1.0.tgz"; - sha512 = "iKuQUP1nuKzBC2PFlGet5twENzCfyODmvkxwDV0cEFXavwcLrIW5ssTuHi9dyTPvpWr6Faweo2eQaQiLIwyXTA=="; + url = "https://registry.npmjs.org/archiver/-/archiver-5.2.0.tgz"; + sha512 = "QEAKlgQuAtUxKeZB9w5/ggKXh21bZS+dzzuQ0RPBC20qtDCbTyzqmisoeJP46MP39fg4B4IcyvR+yeyEBdblsQ=="; }; }; "archiver-utils-2.1.0" = { @@ -10174,13 +10102,13 @@ let sha512 = "zVWTmAnxxHaeB2B1te84oecI8zTDJ/8G49aVBblRX6be0oq6pAybNcUSxwfgVOmOjSCvN4aYZAqwtyNI8e1YGw=="; }; }; - "async-mutex-0.2.4" = { + "async-mutex-0.2.6" = { name = "async-mutex"; packageName = "async-mutex"; - version = "0.2.4"; + version = "0.2.6"; src = fetchurl { - url = "https://registry.npmjs.org/async-mutex/-/async-mutex-0.2.4.tgz"; - sha512 = "fcQKOXUKMQc57JlmjBCHtkKNrfGpHyR7vu18RfuLfeTAf4hK9PgOadPR5cDrBQ682zasrLUhJFe7EKAHJOduDg=="; + url = "https://registry.npmjs.org/async-mutex/-/async-mutex-0.2.6.tgz"; + sha512 = "Hs4R+4SPgamu6rSGW8C7cV9gaWUKEHykfzCCvIRuaVv636Ju10ZdeUbvb4TBEW0INuq2DHZqXbK4Nd3yG4RaRw=="; }; }; "async-retry-1.3.1" = { @@ -10399,13 +10327,13 @@ let sha512 = "+KBkqH7t/XE91Fqn8eyJeNIWsnhSWL8bSUqFD7TfE3FN07MTlC0nprGYp+2WfcYNz5i8Bus1vY2DHNVhtTImnw=="; }; }; - "aws-sdk-2.821.0" = { + "aws-sdk-2.831.0" = { name = "aws-sdk"; packageName = "aws-sdk"; - version = "2.821.0"; + version = "2.831.0"; src = fetchurl { - url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.821.0.tgz"; - sha512 = "UtUlURMzmns1Wq8uAdJcyKsm/nW7iRYgTQEONQIpud0xwtjpPPR1pBFB0RSNZuYnZxcWboo807+jxq+LjaBEKA=="; + url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.831.0.tgz"; + sha512 = "lrOjbGFpjk2xpESyUx2PGsTZgptCy5xycZazPeakNbFO19cOoxjHx3xyxOHsMCYb3pQwns35UvChQT60B4u6cw=="; }; }; "aws-sign2-0.6.0" = { @@ -10444,15 +10372,6 @@ let sha1 = "2d8e3e5d0bdbd7327f91bc814f5c57660f81824d"; }; }; - "axios-0.18.1" = { - name = "axios"; - packageName = "axios"; - version = "0.18.1"; - src = fetchurl { - url = "https://registry.npmjs.org/axios/-/axios-0.18.1.tgz"; - sha512 = "0BfJq4NSfQXd+SkFdrvFbG7addhYSBA2mQwISr46pD6E5iqkWg02RAs8vyTT/j0RTnoYmeXauBuSv1qKwR179g=="; - }; - }; "axios-0.19.0" = { name = "axios"; packageName = "axios"; @@ -10471,6 +10390,15 @@ let sha512 = "fjgm5MvRHLhx+osE2xoekY70AhARk3a6hkN+3Io1jc00jtquGvxYlKlsFUhmUET0V5te6CcZI7lcv2Ym61mjHA=="; }; }; + "axios-0.21.1" = { + name = "axios"; + packageName = "axios"; + version = "0.21.1"; + src = fetchurl { + url = "https://registry.npmjs.org/axios/-/axios-0.21.1.tgz"; + sha512 = "dKQiRHxGD9PPRIUNIWvZhPTPpl1rf/OxTYKsqKUDjBwYylTvV7SjSHJb9ratfyzM6wCdLCOYLzs73qpg5c4iGA=="; + }; + }; "axios-retry-3.1.9" = { name = "axios-retry"; packageName = "axios-retry"; @@ -11155,15 +11083,6 @@ let sha1 = "1101e9544f4a76b1bc3b26d452ca96d7a35e7978"; }; }; - "base64-js-1.3.1" = { - name = "base64-js"; - packageName = "base64-js"; - version = "1.3.1"; - src = fetchurl { - url = "https://registry.npmjs.org/base64-js/-/base64-js-1.3.1.tgz"; - sha512 = "mLQ4i2QO1ytvGWFWmcngKO//JXAQueZvwEKtjgQFM4jIK0kU+ytMfplL8j+n5mspOfjHwoAg+9yhb7BwAHm36g=="; - }; - }; "base64-js-1.5.1" = { name = "base64-js"; packageName = "base64-js"; @@ -11317,13 +11236,13 @@ let sha1 = "9ab5627b93e60621ff7cdac5da9733027df1d0cb"; }; }; - "bcrypto-5.3.0" = { + "bcrypto-5.4.0" = { name = "bcrypto"; packageName = "bcrypto"; - version = "5.3.0"; + version = "5.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/bcrypto/-/bcrypto-5.3.0.tgz"; - sha512 = "SP48cpoc4BkEPNOErdsZ1VjbtdXY/C0f5wAywWniLne/Fd/5oOBqLbC6ZavngLvk4oik76g4I7PO5KduJoqECQ=="; + url = "https://registry.npmjs.org/bcrypto/-/bcrypto-5.4.0.tgz"; + sha512 = "KDX2CR29o6ZoqpQndcCxFZAtYA1jDMnXU3jmCfzP44g++Cu7AHHtZN/JbrN/MXAg9SLvtQ8XISG+eVD9zH1+Jg=="; }; }; "bcurl-0.1.9" = { @@ -11587,13 +11506,13 @@ let sha512 = "Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw=="; }; }; - "binary-extensions-2.1.0" = { + "binary-extensions-2.2.0" = { name = "binary-extensions"; packageName = "binary-extensions"; - version = "2.1.0"; + version = "2.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.1.0.tgz"; - sha512 = "1Yj8h9Q+QDF5FzhMs/c9+6UntbD5MkRfRwac8DoEm9ZfUBZ7tZ55YcGVAzEe4bXsdQHEk+s9S5wsOKVdZrw0tQ=="; + url = "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz"; + sha512 = "jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA=="; }; }; "binary-search-1.3.6" = { @@ -11803,15 +11722,6 @@ let sha512 = "5LhLQeGxdVFumJTbveJS16Rc+Vzh/nbC6o80UMj6ZRvSkiVkk+4L782OMYI0VG1JTfUxiRFP4f+CZBFyuclLBg=="; }; }; - "bl-0.8.2" = { - name = "bl"; - packageName = "bl"; - version = "0.8.2"; - src = fetchurl { - url = "https://registry.npmjs.org/bl/-/bl-0.8.2.tgz"; - sha1 = "c9b6bca08d1bc2ea00fc8afb4f1a5fd1e1c66e4e"; - }; - }; "bl-1.2.3" = { name = "bl"; packageName = "bl"; @@ -11884,13 +11794,13 @@ let sha1 = "f962d687ec2c369570ae71af843256e6d0ca1129"; }; }; - "blessed-contrib-4.8.20" = { + "blessed-contrib-4.8.21" = { name = "blessed-contrib"; packageName = "blessed-contrib"; - version = "4.8.20"; + version = "4.8.21"; src = fetchurl { - url = "https://registry.npmjs.org/blessed-contrib/-/blessed-contrib-4.8.20.tgz"; - sha512 = "jLLXR9pjjm/T2jY0Q8OCCpuDquWiMULkPyT8YNaiLUR0j1MchTQK/Q7SiuD63jn9ekn9BrohwP1Kom/FylmeHQ=="; + url = "https://registry.npmjs.org/blessed-contrib/-/blessed-contrib-4.8.21.tgz"; + sha512 = "zdQMO3UyfhdG0S+Zqn7YexI6BHlnO26qxBKc9jzgyZdIoq7nELiGM/V89CvrTPblZGQr3eMUqCy7pxlKm3vCYA=="; }; }; "blgr-0.1.8" = { @@ -12073,13 +11983,13 @@ let sha1 = "e16661697452d436bf9886238cc791b08d66a61a"; }; }; - "bns-0.13.0" = { + "bns-0.14.0" = { name = "bns"; packageName = "bns"; - version = "0.13.0"; + version = "0.14.0"; src = fetchurl { - url = "https://registry.npmjs.org/bns/-/bns-0.13.0.tgz"; - sha512 = "2aRg/m7+fvXsf+CpR30f0iXTgAFdf2UdhreZNhxbgMpVTo83rnlGhb6QuMznGIiqDxj6akDnONVg50M8wADoIw=="; + url = "https://registry.npmjs.org/bns/-/bns-0.14.0.tgz"; + sha512 = "lqxDpj9gX7OtihwAzMhlMk0w38ObZu+aRSF9fzG/wUfF6RfocFSFDGHA+KVbLNXudiTStzhWVGc8cJmcL4IHYw=="; }; }; "body-0.1.0" = { @@ -12190,13 +12100,13 @@ let sha1 = "4d67dc2602c0cc16dd9bce7ebf87e948290f5812"; }; }; - "bower-1.8.8" = { + "bower-1.8.12" = { name = "bower"; packageName = "bower"; - version = "1.8.8"; + version = "1.8.12"; src = fetchurl { - url = "https://registry.npmjs.org/bower/-/bower-1.8.8.tgz"; - sha512 = "1SrJnXnkP9soITHptSO+ahx3QKp3cVzn8poI6ujqc5SeOkg5iqM1pK9H+DSc2OQ8SnO0jC/NG4Ur/UIwy7574A=="; + url = "https://registry.npmjs.org/bower/-/bower-1.8.12.tgz"; + sha512 = "u1xy9SrwwoPlgjuHNjhV+YUPVdqyBj2ALBxuzeIUKXaPI2i2xypGgxqXkuHcITGdi5yBj5JuXgyMvgiWiS1S3Q=="; }; }; "bower-endpoint-parser-0.2.1" = { @@ -12262,6 +12172,15 @@ let sha512 = "eB4uT9RGzg2odpER62bBwSLvUeGC+WbRjjyyFhGsKnc8wp/m0+hQsMUvUe3H2V0D5vw0nBdO1hCJoZo5mKeuIQ=="; }; }; + "boxen-5.0.0" = { + name = "boxen"; + packageName = "boxen"; + version = "5.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/boxen/-/boxen-5.0.0.tgz"; + sha512 = "5bvsqw+hhgUi3oYGK0Vf4WpIkyemp60WBInn7+WNfoISzAqk/HX4L7WNROq38E6UR/y3YADpv6pEm4BfkeEAdA=="; + }; + }; "bplist-creator-0.0.6" = { name = "bplist-creator"; packageName = "bplist-creator"; @@ -12478,15 +12397,6 @@ let sha512 = "BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A=="; }; }; - "browserify-fs-1.0.0" = { - name = "browserify-fs"; - packageName = "browserify-fs"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/browserify-fs/-/browserify-fs-1.0.0.tgz"; - sha1 = "f075aa8a729d4d1716d066620e386fcc1311a96f"; - }; - }; "browserify-incremental-3.1.1" = { name = "browserify-incremental"; packageName = "browserify-incremental"; @@ -12559,13 +12469,13 @@ let sha512 = "HI4lPveGKUR0x2StIz+2FXfDk9SfVMrxn6PLh1JeGUwcuoDkdKZebWiyLRJ68iIPDpMI4JLVDf7S7XzslgWOhw=="; }; }; - "browserslist-4.16.0" = { + "browserslist-4.16.1" = { name = "browserslist"; packageName = "browserslist"; - version = "4.16.0"; + version = "4.16.1"; src = fetchurl { - url = "https://registry.npmjs.org/browserslist/-/browserslist-4.16.0.tgz"; - sha512 = "/j6k8R0p3nxOC6kx5JGAxsnhc9ixaWJfYc+TNTzxg6+ARaESAvQGV7h0uNOB4t+pLQJZWzcrMxXOxjgsCj3dqQ=="; + url = "https://registry.npmjs.org/browserslist/-/browserslist-4.16.1.tgz"; + sha512 = "UXhDrwqsNcpTYJBTZsbGATDxZbiVDsx6UjpmRUmtnP10pr8wAYr5LgFoEFw9ixriQH2mv/NX2SfGzE/o8GndLA=="; }; }; "brq-0.1.8" = { @@ -13045,6 +12955,15 @@ let sha512 = "LlahJUxXzZLuw/hetUQJmRgZ1LF6+cr5TPpRj6jf327AsiIq2jhYEH4oqUUkVKTor+9w2BT3oxVwhzE5lw9tcg=="; }; }; + "bunyan-1.8.15" = { + name = "bunyan"; + packageName = "bunyan"; + version = "1.8.15"; + src = fetchurl { + url = "https://registry.npmjs.org/bunyan/-/bunyan-1.8.15.tgz"; + sha512 = "0tECWShh6wUysgucJcBAoYegf3JJoZWibxdqhTm7OHPeT42qdjkZ29QCMcKwbgU1kiH+auSIasNRXMLWXafXig=="; + }; + }; "bunyan-syslog-udp-0.2.0" = { name = "bunyan-syslog-udp"; packageName = "bunyan-syslog-udp"; @@ -13279,13 +13198,13 @@ let sha512 = "A+Fezp4zxnit6FanDmv9EqXNAi3vt9DWp51/71UEhXukb7QUuvtv9344h91dyAxuTLoSYJFU299qzR3tzwPAhw=="; }; }; - "call-bind-1.0.0" = { + "call-bind-1.0.2" = { name = "call-bind"; packageName = "call-bind"; - version = "1.0.0"; + version = "1.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/call-bind/-/call-bind-1.0.0.tgz"; - sha512 = "AEXsYIyyDY3MCzbwdhzG3Jx1R0J2wetQyUynn6dYHAO+bg8l1k7jwZtRv4ryryFs7EP+NDlikJlVe59jr0cM2w=="; + url = "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz"; + sha512 = "7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA=="; }; }; "call-me-maybe-1.0.1" = { @@ -13513,13 +13432,13 @@ let sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw=="; }; }; - "caniuse-lite-1.0.30001173" = { + "caniuse-lite-1.0.30001180" = { name = "caniuse-lite"; packageName = "caniuse-lite"; - version = "1.0.30001173"; + version = "1.0.30001180"; src = fetchurl { - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001173.tgz"; - sha512 = "R3aqmjrICdGCTAnSXtNyvWYMK3YtV5jwudbq0T7nN9k4kmE4CBuwPqyJ+KBzepSTh0huivV2gLbSMEzTTmfeYw=="; + url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001180.tgz"; + sha512 = "n8JVqXuZMVSPKiPiypjFtDTXc4jWIdjxull0f92WLo7e1MSi3uJ3NvveakSh/aCl1QKFAvIz3vIj0v+0K+FrXw=="; }; }; "canvas-2.6.1" = { @@ -13639,22 +13558,22 @@ let sha512 = "vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg=="; }; }; - "cdk8s-1.0.0-beta.5" = { + "cdk8s-1.0.0-beta.6" = { name = "cdk8s"; packageName = "cdk8s"; - version = "1.0.0-beta.5"; + version = "1.0.0-beta.6"; src = fetchurl { - url = "https://registry.npmjs.org/cdk8s/-/cdk8s-1.0.0-beta.5.tgz"; - sha512 = "E4l89rGnMI+OCdVojw0vV9xjkNgk9qMswkWc10hZLwwozhnx3ITMVgyjlRiZnCBIKMnKYY8ZhyMgEGgSVpR5fw=="; + url = "https://registry.npmjs.org/cdk8s/-/cdk8s-1.0.0-beta.6.tgz"; + sha512 = "L/J8c7/wSEY2POx5j9SnxxgEJ7V7mFYS3F9pGj2idUfj4GCHbMLCGXQ8bAPzaiWOFSEDVMOPBOangLEia+5RBw=="; }; }; - "cdktf-0.0.19" = { + "cdktf-0.1.0" = { name = "cdktf"; packageName = "cdktf"; - version = "0.0.19"; + version = "0.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/cdktf/-/cdktf-0.0.19.tgz"; - sha512 = "fBOl+yqMdMNRGNvLwAxOpE38PxHJG5Tdi/3J/Ag+KJwaDEXa/v5+ogwPxNtZ0dUdvZq2ovti9zbhdIPr59BvYQ=="; + url = "https://registry.npmjs.org/cdktf/-/cdktf-0.1.0.tgz"; + sha512 = "6PKMz7dkou3qrHD+rnj7fa8U+XujkRUVHsWcVaH7faCxBCIGSxUz0TFb8KeY//o0MHg285Agt1NTCgFIpJ7Clg=="; }; }; "center-align-0.1.3" = { @@ -14080,6 +13999,15 @@ let sha512 = "DtM3g7juCXQxFVSNPNByEC2+NImtBuxQQvWlHunpJIS5Ocr0lG306cC7FCi7cEA0fzmybPUIl4txBIobk1gGOQ=="; }; }; + "chokidar-3.5.1" = { + name = "chokidar"; + packageName = "chokidar"; + version = "3.5.1"; + src = fetchurl { + url = "https://registry.npmjs.org/chokidar/-/chokidar-3.5.1.tgz"; + sha512 = "9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw=="; + }; + }; "chownr-0.0.2" = { name = "chownr"; packageName = "chownr"; @@ -14773,15 +14701,6 @@ let sha1 = "b8d19188b3243e390f302410bd0cb1622db82649"; }; }; - "clone-0.1.19" = { - name = "clone"; - packageName = "clone"; - version = "0.1.19"; - src = fetchurl { - url = "https://registry.npmjs.org/clone/-/clone-0.1.19.tgz"; - sha1 = "613fb68639b26a494ac53253e15b1a6bd88ada85"; - }; - }; "clone-0.1.5" = { name = "clone"; packageName = "clone"; @@ -15070,13 +14989,13 @@ let sha512 = "3WQV/Fpa77nvzjUlc+0u53uIroJyyMB2Qwl++aXpAiDIsrsiAQq4uCURwdRBRX+eLkOTIAmT0L4qna3T7+2pUg=="; }; }; - "codemaker-1.16.0" = { + "codemaker-1.17.1" = { name = "codemaker"; packageName = "codemaker"; - version = "1.16.0"; + version = "1.17.1"; src = fetchurl { - url = "https://registry.npmjs.org/codemaker/-/codemaker-1.16.0.tgz"; - sha512 = "kC53r6ACRGYcSAKeOcbcUhWZYWynIuBIQ50oLOYUygShjrqF0NO303eSvOzT0Qxaz2TQWI2deUwJBMm3s8HoZg=="; + url = "https://registry.npmjs.org/codemaker/-/codemaker-1.17.1.tgz"; + sha512 = "V0oeZjQ0nZgpFErZPn66sVCHwrDvivS+M0xR1gesBNGDpE4ROja6IJXbPVVg/N3S4kYHAXcYuWHdfiEQE2PfwA=="; }; }; "codepage-1.4.0" = { @@ -15592,6 +15511,15 @@ let sha512 = "U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA=="; }; }; + "commander-7.0.0" = { + name = "commander"; + packageName = "commander"; + version = "7.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/commander/-/commander-7.0.0.tgz"; + sha512 = "ovx/7NkTrnPuIV8sqk/GjUIIM1+iUQeqA3ye2VNpq9sVoiZsooObWlQy+OPWGI17GDaEoybuAGJm6U8yC077BA=="; + }; + }; "commandpost-1.4.0" = { name = "commandpost"; packageName = "commandpost"; @@ -16096,13 +16024,13 @@ let sha1 = "c20b96d8c617748aaf1c16021760cd27fcb8cb75"; }; }; - "constructs-3.2.94" = { + "constructs-3.2.117" = { name = "constructs"; packageName = "constructs"; - version = "3.2.94"; + version = "3.2.117"; src = fetchurl { - url = "https://registry.npmjs.org/constructs/-/constructs-3.2.94.tgz"; - sha512 = "yK4FKT+hONiC0ebCM0Ln3xuLPF4WPyZSQ8Sl/ZOTTFUI+/csBBxGy7TkY2ZVTbOi7MCHUatZgW2ANsYRaaxoOQ=="; + url = "https://registry.npmjs.org/constructs/-/constructs-3.2.117.tgz"; + sha512 = "zYDlALAHWdopUzMGr3aZPlPR8f+OEYr1+QZCkLqi/eyUjbOmlPQ6xwrlDoOaJNgpMf727T9Yo+hokCjIRsZweQ=="; }; }; "consume-http-header-1.0.0" = { @@ -16583,22 +16511,22 @@ let sha512 = "vZVEEwZoIsI+vPEuoF9Iqf5H7/M3eeQqWlQnYa8FSKKePuYTf5MWnxb5SDAzCa60b3JBRS5g9b+Dq7b1y/RCrA=="; }; }; - "core-js-3.8.2" = { + "core-js-3.8.3" = { name = "core-js"; packageName = "core-js"; - version = "3.8.2"; + version = "3.8.3"; src = fetchurl { - url = "https://registry.npmjs.org/core-js/-/core-js-3.8.2.tgz"; - sha512 = "FfApuSRgrR6G5s58casCBd9M2k+4ikuu4wbW6pJyYU7bd9zvFc9qf7vr5xmrZOhT9nn+8uwlH1oRR9jTnFoA3A=="; + url = "https://registry.npmjs.org/core-js/-/core-js-3.8.3.tgz"; + sha512 = "KPYXeVZYemC2TkNEkX/01I+7yd+nX3KddKwZ1Ww7SKWdI2wQprSgLmrTddT8nw92AjEklTsPBoSdQBhbI1bQ6Q=="; }; }; - "core-js-compat-3.8.2" = { + "core-js-compat-3.8.3" = { name = "core-js-compat"; packageName = "core-js-compat"; - version = "3.8.2"; + version = "3.8.3"; src = fetchurl { - url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.8.2.tgz"; - sha512 = "LO8uL9lOIyRRrQmZxHZFl1RV+ZbcsAkFWTktn5SmH40WgLtSNYN4m4W2v9ONT147PxBY/XrRhrWq8TlvObyUjQ=="; + url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.8.3.tgz"; + sha512 = "1sCb0wBXnBIL16pfFG1Gkvei6UzvKyTNYpiC41yrdjEv0UoJoq9E/abTMzyYJ6JpTkAj15dLjbqifIzEBDVvog=="; }; }; "core-util-is-1.0.2" = { @@ -16817,13 +16745,13 @@ let sha512 = "MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg=="; }; }; - "create-torrent-4.4.2" = { + "create-torrent-4.4.3" = { name = "create-torrent"; packageName = "create-torrent"; - version = "4.4.2"; + version = "4.4.3"; src = fetchurl { - url = "https://registry.npmjs.org/create-torrent/-/create-torrent-4.4.2.tgz"; - sha512 = "FRxgYty6AF00xrYKMtpQ14ZJlst+i7mmUhcN4do7TTjktEntqAzfriaOIV6xk27t9GLTtraFnaTxsGgnyFA2eA=="; + url = "https://registry.npmjs.org/create-torrent/-/create-torrent-4.4.3.tgz"; + sha512 = "balXwhJEpD8F0rt1vNKJuxhYPWOHo82LVm50wRzUFVzZ8APciwtZntzIzDEX6dNnD4NoLL0AeYgosF7e+FVQBA=="; }; }; "cron-1.7.2" = { @@ -17546,13 +17474,13 @@ let sha512 = "KHW6M86R+FUPYGb3R5XiYjXPq7VzwxZ22buHhAEVG5ztoEcZZMLov530mmccaqA1GghZArjQV46fuc8kUqhhHw=="; }; }; - "d3-array-2.9.1" = { + "d3-array-2.11.0" = { name = "d3-array"; packageName = "d3-array"; - version = "2.9.1"; + version = "2.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/d3-array/-/d3-array-2.9.1.tgz"; - sha512 = "Ob7RdOtkqsjx1NWyQHMFLtCSk6/aKTxDdC4ZIolX+O+mDD2RzrsYgAyc0WGAlfYFVELLSilS7w8BtE3PKM8bHg=="; + url = "https://registry.npmjs.org/d3-array/-/d3-array-2.11.0.tgz"; + sha512 = "26clcwmHQEdsLv34oNKq5Ia9tQ26Y/4HqS3dQzF42QBUqymZJ+9PORcN1G52bt37NsL2ABoX4lvyYZc+A9Y0zw=="; }; }; "d3-axis-1.0.12" = { @@ -18275,13 +18203,13 @@ let sha512 = "jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q=="; }; }; - "dayjs-1.10.1" = { + "dayjs-1.10.4" = { name = "dayjs"; packageName = "dayjs"; - version = "1.10.1"; + version = "1.10.4"; src = fetchurl { - url = "https://registry.npmjs.org/dayjs/-/dayjs-1.10.1.tgz"; - sha512 = "2xg7JrHQeLBQFkvTumLoy62x1siyeocc98QwjtURgvRqOPYmAkMUdmSjrOA+MlmL6QMQn5MUhDf6rNZNuPc1LQ=="; + url = "https://registry.npmjs.org/dayjs/-/dayjs-1.10.4.tgz"; + sha512 = "RI/Hh4kqRc1UKLOAf/T5zdMMX5DQIlDxwUe3wSyMMnEbGunnpENCdbUgM+dW7kXidZqCttBrmw7BhN4TMddkCw=="; }; }; "dayjs-1.8.36" = { @@ -18896,15 +18824,6 @@ let sha512 = "8eluCl/Blx4YOGwMapBvXRKxHXhA8ejDXYzEaK8+/gtcm8hRMhSLmXSqDmNUKNc/C8HNSmuyyp/hflhqDAvK2A=="; }; }; - "deferred-leveldown-0.2.0" = { - name = "deferred-leveldown"; - packageName = "deferred-leveldown"; - version = "0.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/deferred-leveldown/-/deferred-leveldown-0.2.0.tgz"; - sha1 = "2cef1f111e1c57870d8bbb8af2650e587cd2f5b4"; - }; - }; "deferred-leveldown-5.3.0" = { name = "deferred-leveldown"; packageName = "deferred-leveldown"; @@ -19076,15 +18995,6 @@ let sha1 = "3a36287f5034e699e7577901052c2e6c94251631"; }; }; - "denque-1.4.1" = { - name = "denque"; - packageName = "denque"; - version = "1.4.1"; - src = fetchurl { - url = "https://registry.npmjs.org/denque/-/denque-1.4.1.tgz"; - sha512 = "OfzPuSZKGcgr96rf1oODnfjqBFmr1DVoc/TrItj3Ohe0Ah1C5WX5Baquw/9U9KovnQ88EqmJbD66rKYUQYN1tQ=="; - }; - }; "denque-1.5.0" = { name = "denque"; packageName = "denque"; @@ -19778,22 +19688,22 @@ let sha512 = "qKftHMVoMliYBaYLkgttm+NXhRISVNkIMfAL4ecmXjiWRElfdfY+xNgITiehG0LpUEDbFUa/UDCByYq/2UZIpQ=="; }; }; - "dockerfile-language-service-0.1.1" = { + "dockerfile-language-service-0.2.0" = { name = "dockerfile-language-service"; packageName = "dockerfile-language-service"; - version = "0.1.1"; + version = "0.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/dockerfile-language-service/-/dockerfile-language-service-0.1.1.tgz"; - sha512 = "Lw4QlxJoy9F1559wxX+0xe5iSNK95Fbzx/YhdmAzfwgbPvdPzvFouIuuMyMPj/Q5JyFH1QAr7VeagOe24w0cqg=="; + url = "https://registry.npmjs.org/dockerfile-language-service/-/dockerfile-language-service-0.2.0.tgz"; + sha512 = "Y1JYIDF8F78kNDwyoQoeAPzptJRubIaMJ5q4mATmeDViGVV+mY4m6BjHqw5XtlkHEftljgqMNDvbUORUDIzTHg=="; }; }; - "dockerfile-utils-0.1.1" = { + "dockerfile-utils-0.2.0" = { name = "dockerfile-utils"; packageName = "dockerfile-utils"; - version = "0.1.1"; + version = "0.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/dockerfile-utils/-/dockerfile-utils-0.1.1.tgz"; - sha512 = "ddAA8PCAcT4pBQ1AFRnPjetJ31/7BqNKLHQkZebNE0hBAiOr8SzrnIWvJUcBDHrVbASCVl1Ye37hbaTsUmYHsw=="; + url = "https://registry.npmjs.org/dockerfile-utils/-/dockerfile-utils-0.2.0.tgz"; + sha512 = "B8tEGwLd3w0dWALshXS0gkAwDYdqFKAKm9zIyp/nCFkx8+BOhbz5CiAFlVU+WRvv6kd6AP/YtYVOzSL54MJlmQ=="; }; }; "doctrine-2.1.0" = { @@ -20498,13 +20408,13 @@ let sha512 = "dldq3ZfFtgVTJMLjOe+/3sROTzALlL9E34V4/sDtUd/KlBSS0s6U1/+WPE1B4sj9CXHJpL1M6rhNJnc9Wbal9w=="; }; }; - "electron-to-chromium-1.3.634" = { + "electron-to-chromium-1.3.645" = { name = "electron-to-chromium"; packageName = "electron-to-chromium"; - version = "1.3.634"; + version = "1.3.645"; src = fetchurl { - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.634.tgz"; - sha512 = "QPrWNYeE/A0xRvl/QP3E0nkaEvYUvH3gM04ZWYtIa6QlSpEetRlRI1xvQ7hiMIySHHEV+mwDSX8Kj4YZY6ZQAw=="; + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.645.tgz"; + sha512 = "T7mYop3aDpRHIQaUYcmzmh6j9MAe560n6ukqjJMbVC6bVTau7dSpvB18bcsBPPtOSe10cKxhJFtlbEzLa0LL1g=="; }; }; "electrum-client-git://github.com/janoside/electrum-client" = { @@ -20842,6 +20752,15 @@ let sha512 = "rf7HAVZpcRrcKEKddgIzYUnwg0g5HE1RvJaTLwkcfJmce4g+po8aMuE6vxzp6JwlK8FEq/vi0KWN6tA585DjaA=="; }; }; + "engine.io-4.1.0" = { + name = "engine.io"; + packageName = "engine.io"; + version = "4.1.0"; + src = fetchurl { + url = "https://registry.npmjs.org/engine.io/-/engine.io-4.1.0.tgz"; + sha512 = "vW7EAtn0HDQ4MtT5QbmCHF17TaYLONv2/JwdYsq9USPRZVM4zG7WB3k0Nc321z8EuSOlhGokrYlYx4176QhD0A=="; + }; + }; "engine.io-client-1.3.1" = { name = "engine.io-client"; packageName = "engine.io-client"; @@ -20905,22 +20824,22 @@ let sha1 = "a115c32504b6302e85a76269d7a57ccdd962e359"; }; }; - "enhanced-resolve-4.3.0" = { + "enhanced-resolve-4.5.0" = { name = "enhanced-resolve"; packageName = "enhanced-resolve"; - version = "4.3.0"; + version = "4.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.3.0.tgz"; - sha512 = "3e87LvavsdxyoCfGusJnrZ5G8SLPOFeHSNpZI/ATL9a5leXo2k0w6MKnbqhdBad9qTobSfB20Ld7UmgoNbAZkQ=="; + url = "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz"; + sha512 = "Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg=="; }; }; - "enhanced-resolve-5.4.1" = { + "enhanced-resolve-5.7.0" = { name = "enhanced-resolve"; packageName = "enhanced-resolve"; - version = "5.4.1"; + version = "5.7.0"; src = fetchurl { - url = "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.4.1.tgz"; - sha512 = "4GbyIMzYktTFoRSmkbgZ1LU+RXwf4AQ8Z+rSuuh1dC8plp0PPeaWvx6+G4hh4KnUJ48VoxKbNyA1QQQIUpXjYA=="; + url = "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.7.0.tgz"; + sha512 = "6njwt/NsZFUKhM6j9U8hzVyD4E4r0x7NQzhTCbcWOJ0IQjNSAoalWmb0AE51Wn+fwan5qVESWi7t2ToBxs9vrw=="; }; }; "enquirer-2.3.6" = { @@ -20986,6 +20905,15 @@ let sha512 = "hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w=="; }; }; + "entities-2.2.0" = { + name = "entities"; + packageName = "entities"; + version = "2.2.0"; + src = fetchurl { + url = "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz"; + sha512 = "p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A=="; + }; + }; "entity-decode-2.0.2" = { name = "entity-decode"; packageName = "entity-decode"; @@ -21166,22 +21094,31 @@ let sha512 = "VBl/gnfcJ7OercKA9MVaegWsBHFjV492syMudcnQZvt/Dw8ezpcOHYZXa/J96O8vx+g4x65YKhxOwDUh63aS5g=="; }; }; - "es-abstract-1.18.0-next.1" = { + "es-abstract-1.18.0-next.2" = { name = "es-abstract"; packageName = "es-abstract"; - version = "1.18.0-next.1"; + version = "1.18.0-next.2"; src = fetchurl { - url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0-next.1.tgz"; - sha512 = "I4UGspA0wpZXWENrdA0uHbnhte683t3qT/1VFH9aX2dA5PPSf6QW5HHXf5HImaqPmjXaVeVk4RGWnaylmV7uAA=="; + url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0-next.2.tgz"; + sha512 = "Ih4ZMFHEtZupnUh6497zEL4y2+w8+1ljnCyaTa+adcoafI1GOvMwFlDjBLfWR7y9VLfrjRJe9ocuHY1PSR9jjw=="; }; }; - "es-get-iterator-1.1.1" = { + "es-get-iterator-1.1.2" = { name = "es-get-iterator"; packageName = "es-get-iterator"; - version = "1.1.1"; + version = "1.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.1.tgz"; - sha512 = "qorBw8Y7B15DVLaJWy6WdEV/ZkieBcu6QCq/xzWzGOKJqgG1j754vXRfZ3NY7HSShneqU43mPB4OkQBTkvHhFw=="; + url = "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.2.tgz"; + sha512 = "+DTO8GYwbMCwbywjimwZMHp8AuYXOS2JZFWoi2AlPOS3ebnII9w/NLpNZtA7A0YLaVDw+O7KFCeoIV7OPvM7hQ=="; + }; + }; + "es-module-lexer-0.3.26" = { + name = "es-module-lexer"; + packageName = "es-module-lexer"; + version = "0.3.26"; + src = fetchurl { + url = "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.3.26.tgz"; + sha512 = "Va0Q/xqtrss45hWzP8CZJwzGSZJjDM5/MJRE3IXXnUCcVLElR9BRaE9F62BopysASyc4nM3uwhSW7FFB9nlWAA=="; }; }; "es-to-primitive-1.2.1" = { @@ -21526,13 +21463,13 @@ let sha512 = "5YubdnPXrlrYAFCKybPuHIAH++PINe1pmKNc5wQRB9HSbqIK1ywAnntE3Wwua4giKu0bjligf1gLF6qxMGOYRA=="; }; }; - "eslint-7.17.0" = { + "eslint-7.18.0" = { name = "eslint"; packageName = "eslint"; - version = "7.17.0"; + version = "7.18.0"; src = fetchurl { - url = "https://registry.npmjs.org/eslint/-/eslint-7.17.0.tgz"; - sha512 = "zJk08MiBgwuGoxes5sSQhOtibZ75pz0J35XTRlZOk9xMffhpA9BTbQZxoXZzOl5zMbleShbGwtw+1kGferfFwQ=="; + url = "https://registry.npmjs.org/eslint/-/eslint-7.18.0.tgz"; + sha512 = "fbgTiE8BfUJZuBeq2Yi7J3RB3WGUQ9PNuNbmgi6jt9Iv8qrkxfy19Ds3OpL1Pm7zg3BtTVhvcUZbIRQ0wmSjAQ=="; }; }; "eslint-plugin-no-unsanitized-3.1.4" = { @@ -21562,13 +21499,13 @@ let sha512 = "Nhc+oVAHm0uz/PkJAWscwIT4ijTrK5fqNqz9QB1D35SbbuMG1uB6Yr5AJpvPSWg+WOw7nYNswerYh0kOk64gqQ=="; }; }; - "eslint-plugin-vue-7.4.1" = { + "eslint-plugin-vue-7.5.0" = { name = "eslint-plugin-vue"; packageName = "eslint-plugin-vue"; - version = "7.4.1"; + version = "7.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-7.4.1.tgz"; - sha512 = "W/xPNHYIkGJphLUM2UIYYGKbRw3BcDoMIPY9lu1TTa2YLiZoxurddfnmOP+UOVywxb5vi438ejzwvKdZqydtIw=="; + url = "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-7.5.0.tgz"; + sha512 = "QnMMTcyV8PLxBz7QQNAwISSEs6LYk2LJvGlxalXvpCtfKnqo7qcY0aZTIxPe8QOnHd7WCwiMZLOJzg6A03T0Gw=="; }; }; "eslint-scope-3.7.3" = { @@ -22399,13 +22336,13 @@ let sha1 = "a793d3ac0cad4c6ab571e9968fbbab6cb2532929"; }; }; - "expo-pwa-0.0.58" = { + "expo-pwa-0.0.62" = { name = "expo-pwa"; packageName = "expo-pwa"; - version = "0.0.58"; + version = "0.0.62"; src = fetchurl { - url = "https://registry.npmjs.org/expo-pwa/-/expo-pwa-0.0.58.tgz"; - sha512 = "dbPKRQyr5vtpa8/fmBoRzNs1SYkTWosXvcJJhIfGVGvb8ZMPduruydczM+lavBjZmufdlOL4e8CWNXcr4NRz9g=="; + url = "https://registry.npmjs.org/expo-pwa/-/expo-pwa-0.0.62.tgz"; + sha512 = "pEhMcGp1Z89R6P+Pio+ivoplqDTaL37k7QL2yW0GE0EaRHWNgNynX5CIxGREvW3nSn23nVsGo7IL+QW2LwAMAg=="; }; }; "express-2.5.11" = { @@ -22498,13 +22435,13 @@ let sha512 = "64YwTWpxgVGnwoLi4zvKaQ5RWIV0dkxVE4GGkBF7D89RI0/I6gTRUDL25Il4AK3cUqyLtxnX2X5BZ2YRvRx5uQ=="; }; }; - "express-openapi-7.2.0" = { + "express-openapi-7.2.3" = { name = "express-openapi"; packageName = "express-openapi"; - version = "7.2.0"; + version = "7.2.3"; src = fetchurl { - url = "https://registry.npmjs.org/express-openapi/-/express-openapi-7.2.0.tgz"; - sha512 = "Zlz1qA5DA5vRj8UrWFNH5cA1js5g0VB5yRIR1cuxPGAclsU8q7Y6Dvx/BhQ10/OGYd8qwFk4mFvDYahSEQe7gw=="; + url = "https://registry.npmjs.org/express-openapi/-/express-openapi-7.2.3.tgz"; + sha512 = "j79aEXtTKJ6yp5XM+YPGn14GOaODGovDbvuCJzrG0KbaIB2v0liq9ezpvufqsb5ixXZ3jsu+B2FuJJOvUUjW2Q=="; }; }; "express-session-1.17.1" = { @@ -22534,6 +22471,15 @@ let sha1 = "f5fc2f9fa9e9a8578634f10e86ba5a4346b96f4f"; }; }; + "express-ws-2.0.0" = { + name = "express-ws"; + packageName = "express-ws"; + version = "2.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/express-ws/-/express-ws-2.0.0.tgz"; + sha1 = "96d13fa41c8de8fa5dcbfa2dacace6f594272888"; + }; + }; "ext-1.4.0" = { name = "ext"; packageName = "ext"; @@ -22885,13 +22831,13 @@ let sha512 = "g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw=="; }; }; - "fast-glob-3.2.4" = { + "fast-glob-3.2.5" = { name = "fast-glob"; packageName = "fast-glob"; - version = "3.2.4"; + version = "3.2.5"; src = fetchurl { - url = "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.4.tgz"; - sha512 = "kr/Oo6PX51265qeuCYsyGypiO5uJFgBS0jksyG7FUeCyQzNwYnzrNIMR1NXfkZXsMYXYLRAHgISHBz8gQcxKHQ=="; + url = "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.5.tgz"; + sha512 = "2DtFcgT68wiTTiwZ2hNdJfcHNke9XOfnwmBRWXhmeKM8rF0TGwmC/Qto3S7RoZKp5cilZbxzO5iTNTQsJ+EeDg=="; }; }; "fast-json-parse-1.0.3" = { @@ -23786,13 +23732,13 @@ let sha512 = "r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA=="; }; }; - "flatted-3.1.0" = { + "flatted-3.1.1" = { name = "flatted"; packageName = "flatted"; - version = "3.1.0"; + version = "3.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/flatted/-/flatted-3.1.0.tgz"; - sha512 = "tW+UkmtNg/jv9CSofAKvgVcO7c2URjhTdW1ZTkcAritblu8tajiYy7YisnIflEwtKssCtOxpnBRoCB7iap0/TA=="; + url = "https://registry.npmjs.org/flatted/-/flatted-3.1.1.tgz"; + sha512 = "zAoAQiudy+r5SvnSw3KJy5os/oRJYHzrzja/tBDqrZtNhUw8bt6y8OBzMWcjWr+8liV8Eb6yOhw8WZ7VFZ5ZzA=="; }; }; "flatten-0.0.1" = { @@ -23822,13 +23768,13 @@ let sha512 = "jlbUu0XkbpXeXhan5xyTqVK1jmEKNxE8hpzznI3TThHTr76GiFwK0iRzhDo4KNy+S9h/KxHaqVhTP86vA6wHCg=="; }; }; - "flow-parser-0.141.0" = { + "flow-parser-0.143.1" = { name = "flow-parser"; packageName = "flow-parser"; - version = "0.141.0"; + version = "0.143.1"; src = fetchurl { - url = "https://registry.npmjs.org/flow-parser/-/flow-parser-0.141.0.tgz"; - sha512 = "WKdBiR9sDfkgEyPGhIgldUrVM08D57CgHLgd0FOXbhcVYXNfw+eHSApQ8SdcdQQoqrOvhlcVRB8lsn9bD5GQOw=="; + url = "https://registry.npmjs.org/flow-parser/-/flow-parser-0.143.1.tgz"; + sha512 = "DWmnt0P1tieuQErYeWmxCNIkzm5Fqd5sMH685v/jCtu8CAvdLEwKi45jqYhij178k+NAy+FNe2jDvQNs7WLBIA=="; }; }; "fluent-ffmpeg-2.1.2" = { @@ -23930,13 +23876,13 @@ let sha512 = "uPTT5I26ePMc6Xhjebu1aiaHAd7P3EqyE9SZB6B9ZIvXtMXhFYNk7iO1yzh1ZXp3aYzdYmrI9k8mSz9urZ9gNQ=="; }; }; - "flumeview-reduce-1.3.17" = { + "flumeview-reduce-1.4.0" = { name = "flumeview-reduce"; packageName = "flumeview-reduce"; - version = "1.3.17"; + version = "1.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/flumeview-reduce/-/flumeview-reduce-1.3.17.tgz"; - sha512 = "Li09TntlRpN51GtFKllIh5nDdBcyDazvi5a/yvbdUCS9xAFb8OA6H6uu32W9gG+4GyvfUi9AsOyN8RQ8OcREQA=="; + url = "https://registry.npmjs.org/flumeview-reduce/-/flumeview-reduce-1.4.0.tgz"; + sha512 = "ShCMtY5YZl3icnUAWTfwzRXSGN1AUo4Isj1wTRLpMMNgM9p1T0gc6N+r1ajampf1GO19SkqrgZHdPPOaEitvhg=="; }; }; "flush-write-stream-1.1.1" = { @@ -23993,13 +23939,13 @@ let sha512 = "VjAQdSLsl6AkpZNyrQJfO7BXLo4chnStqb055bumZMbRUPpVuPN3a4ktsnRCmrFZjtMlYLkyXiR5rAs4WOpC4Q=="; }; }; - "follow-redirects-1.13.1" = { + "follow-redirects-1.13.2" = { name = "follow-redirects"; packageName = "follow-redirects"; - version = "1.13.1"; + version = "1.13.2"; src = fetchurl { - url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.13.1.tgz"; - sha512 = "SSG5xmZh1mkPGyKzjZP8zLjltIfpW32Y5QpdNJyjcfGxK3qo3NDDkZOZSFiGn1A6SclQxY9GzEwAHQ3dmYRWpg=="; + url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.13.2.tgz"; + sha512 = "6mPTgLxYm3r6Bkkg0vNM0HTjfGrOEtsfbhagQvbxDEsEkpNhw582upBaoRZylzen6krEmxXJgt9Ju6HiI4O7BA=="; }; }; "follow-redirects-1.5.10" = { @@ -24506,6 +24452,15 @@ let sha512 = "h2iAoN838FqAFJY2/qVpzFXy+EBxfVE220PalAqQLDVsFOHLJrZvut5puAbCdNv6WJk+B8ihI+k0c7JK5erwqQ=="; }; }; + "fs-extra-9.1.0" = { + name = "fs-extra"; + packageName = "fs-extra"; + version = "9.1.0"; + src = fetchurl { + url = "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz"; + sha512 = "hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ=="; + }; + }; "fs-minipass-1.2.7" = { name = "fs-minipass"; packageName = "fs-minipass"; @@ -24713,13 +24668,13 @@ let sha1 = "1b0ab3bd553b2a0d6399d29c0e3ea0b252078327"; }; }; - "fuse.js-6.4.5" = { + "fuse.js-6.4.6" = { name = "fuse.js"; packageName = "fuse.js"; - version = "6.4.5"; + version = "6.4.6"; src = fetchurl { - url = "https://registry.npmjs.org/fuse.js/-/fuse.js-6.4.5.tgz"; - sha512 = "AIHjOhexWVqs/jWqun6jTUfdXB3Bm1uShoirHvTZImD2kHEQZ1zOmoDEqIPs8N1LnnwXJeG0T+r9ilEeJzlaoA=="; + url = "https://registry.npmjs.org/fuse.js/-/fuse.js-6.4.6.tgz"; + sha512 = "/gYxR/0VpXmWSfZOIPS3rWwU8SHgsRTwWuXhyb2O6s7aRuVtHtxCkR33bNYu3wyLyNx/Wpv0vU7FZy8Vj53VNw=="; }; }; "fuzzy-0.1.3" = { @@ -24749,15 +24704,6 @@ let sha1 = "979e22f9451b4b38f051f7937c919dbacc692958"; }; }; - "fwd-stream-1.0.4" = { - name = "fwd-stream"; - packageName = "fwd-stream"; - version = "1.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/fwd-stream/-/fwd-stream-1.0.4.tgz"; - sha1 = "ed281cabed46feecf921ee32dc4c50b372ac7cfa"; - }; - }; "fx-runner-1.0.13" = { name = "fx-runner"; packageName = "fx-runner"; @@ -24893,13 +24839,13 @@ let sha512 = "3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg=="; }; }; - "geoip-country-4.0.49" = { + "geoip-country-4.0.53" = { name = "geoip-country"; packageName = "geoip-country"; - version = "4.0.49"; + version = "4.0.53"; src = fetchurl { - url = "https://registry.npmjs.org/geoip-country/-/geoip-country-4.0.49.tgz"; - sha512 = "oeiRP6aiDBplorW2tl0Rm2k6iNlqrLI9Smn9lk4yBUSsMOqeUHqI7gXBKP59iMZqWq2emclX1IfJL665FX7btQ=="; + url = "https://registry.npmjs.org/geoip-country/-/geoip-country-4.0.53.tgz"; + sha512 = "nfSIkLmt432isig80keqzkWo0N87CE1Ezv+T0SIFx6z7DNSRenKQn+v4EHts3RguJ0x/hg9skTOjaTLeqGyrfw=="; }; }; "get-amd-module-type-3.0.0" = { @@ -24956,13 +24902,13 @@ let sha1 = "ead774abee72e20409433a066366023dd6887a41"; }; }; - "get-intrinsic-1.0.2" = { + "get-intrinsic-1.1.0" = { name = "get-intrinsic"; packageName = "get-intrinsic"; - version = "1.0.2"; + version = "1.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.0.2.tgz"; - sha512 = "aeX0vrFm21ILl3+JpFFRNe9aUvp6VFZb2/CTbgLb8j75kOhvoNYjt9d8KA/tJG4gSo8nzEDedRl0h7vDmBYRVg=="; + url = "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.0.tgz"; + sha512 = "M11rgtQp5GZMZzDL7jLTNxbDfurpzuau5uqRWDPvlHjfvg3TdScAZo96GLvhMjImrmR8uAt0FS2RLoMrfWGKlg=="; }; }; "get-own-enumerable-property-symbols-3.0.2" = { @@ -25343,15 +25289,6 @@ let sha512 = "kbuvus1dWQB2sSW4cbfTeGpCMd8ge9jx9RKnhXhuJ7tnvT+NIrTVfYZxjtflZddQYcmdOTlkAcjmx7bor+15AQ=="; }; }; - "git-url-parse-11.4.0" = { - name = "git-url-parse"; - packageName = "git-url-parse"; - version = "11.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/git-url-parse/-/git-url-parse-11.4.0.tgz"; - sha512 = "KlIa5jvMYLjXMQXkqpFzobsyD/V2K5DRHl5OAf+6oDFPlPLxrGDVQlIdI63c4/Kt6kai4kALENSALlzTGST3GQ=="; - }; - }; "git-url-parse-11.4.3" = { name = "git-url-parse"; packageName = "git-url-parse"; @@ -25361,6 +25298,15 @@ let sha512 = "LZTTk0nqJnKN48YRtOpR8H5SEfp1oM2tls90NuZmBxN95PnCvmuXGzqQ4QmVirBgKx2KPYfPGteX3/raWjKenQ=="; }; }; + "git-url-parse-11.4.4" = { + name = "git-url-parse"; + packageName = "git-url-parse"; + version = "11.4.4"; + src = fetchurl { + url = "https://registry.npmjs.org/git-url-parse/-/git-url-parse-11.4.4.tgz"; + sha512 = "Y4o9o7vQngQDIU9IjyCmRJBin5iYjI5u9ZITnddRZpD7dcCFQj2sL2XuMNbLRE4b4B/4ENPsp2Q8P44fjAZ0Pw=="; + }; + }; "gitconfiglocal-1.0.0" = { name = "gitconfiglocal"; packageName = "gitconfiglocal"; @@ -25776,6 +25722,15 @@ let sha512 = "iH9RmgwCmUJHi2z5o2l3eTtGBtXek1OYlHrbcxOYugyHLmAsZrPj43OtHThd62Buh/Vv6VyCBD2bdyWcGNQqoQ=="; }; }; + "globby-11.0.2" = { + name = "globby"; + packageName = "globby"; + version = "11.0.2"; + src = fetchurl { + url = "https://registry.npmjs.org/globby/-/globby-11.0.2.tgz"; + sha512 = "2ZThXDvvV8fYFRVIxnrMQBipZQDr7MxKAmQK1vujaj9/7eF0efG7BPUKJ7jP7G5SLF37xKDXvO4S/KKLj/Z0og=="; + }; + }; "globby-4.1.0" = { name = "globby"; packageName = "globby"; @@ -25884,13 +25839,13 @@ let sha1 = "d53b30cdf9313dffb7dc9a0d477096aa6d145c50"; }; }; - "google-auth-library-6.1.3" = { + "google-auth-library-6.1.6" = { name = "google-auth-library"; packageName = "google-auth-library"; - version = "6.1.3"; + version = "6.1.6"; src = fetchurl { - url = "https://registry.npmjs.org/google-auth-library/-/google-auth-library-6.1.3.tgz"; - sha512 = "m9mwvY3GWbr7ZYEbl61isWmk+fvTmOt0YNUfPOUY2VH8K5pZlAIWJjxEi0PqR3OjMretyiQLI6GURMrPSwHQ2g=="; + url = "https://registry.npmjs.org/google-auth-library/-/google-auth-library-6.1.6.tgz"; + sha512 = "Q+ZjUEvLQj/lrVHF/IQwRo6p3s8Nc44Zk/DALsN+ac3T4HY/g/3rrufkgtl+nZ1TW7DNAw5cTChdVp4apUXVgQ=="; }; }; "google-closure-compiler-js-20170910.0.1" = { @@ -25902,13 +25857,13 @@ let sha512 = "Vric7QFWxzHFxITZ10bmlG1H/5rhODb7hJuWyKWMD8GflpQzRmbMVqkFp3fKvN+U9tPwZItGVhkiOR+84PX3ew=="; }; }; - "google-gax-2.9.2" = { + "google-gax-2.10.0" = { name = "google-gax"; packageName = "google-gax"; - version = "2.9.2"; + version = "2.10.0"; src = fetchurl { - url = "https://registry.npmjs.org/google-gax/-/google-gax-2.9.2.tgz"; - sha512 = "Pve4osEzNKpBZqFXMfGKBbKCtgnHpUe5IQMh5Ou+Xtg8nLcba94L3gF0xgM5phMdGRRqJn0SMjcuEVmOYu7EBg=="; + url = "https://registry.npmjs.org/google-gax/-/google-gax-2.10.0.tgz"; + sha512 = "K+1JK5ofNl5k30LsI8UQb/DeLMEbhL/SWirCx0L9pnMcApSfAjRAO7yajXT5X1vicxDBnNSwKs+cu4elxpYraw=="; }; }; "google-p12-pem-3.0.3" = { @@ -25920,13 +25875,13 @@ let sha512 = "wS0ek4ZtFx/ACKYF3JhyGe5kzH7pgiQ7J5otlumqR9psmWMYc+U9cErKlCYVYHoUaidXHdZ2xbo34kB+S+24hA=="; }; }; - "goosig-0.9.0" = { + "goosig-0.10.0" = { name = "goosig"; packageName = "goosig"; - version = "0.9.0"; + version = "0.10.0"; src = fetchurl { - url = "https://registry.npmjs.org/goosig/-/goosig-0.9.0.tgz"; - sha512 = "RaCpYN0eStJQszrudhwf42hd8j/Nod6iRiUU81cnHjI0f3s4vhmVkvpPE7QktF/EUA9tkoG2hrYYr9NJXvgefg=="; + url = "https://registry.npmjs.org/goosig/-/goosig-0.10.0.tgz"; + sha512 = "+BVVLfxmawAmGVjjJpXzu5LNcFIOfgXgP7kWEyc3qu/xn9RMqbPbNfYDdHBZKfZkDMIO7Q4vD790iNYQAXhoFA=="; }; }; "gossip-query-2.0.2" = { @@ -26145,13 +26100,13 @@ let sha512 = "GTCJtzJmkFLWRfFJuoo9RWWa/FfamUHgiFosxi/X1Ani4AVWbeyBenZTNX6dM+7WSbbFfTo/25eh0LLkwHMw2w=="; }; }; - "graphql-15.4.0" = { + "graphql-15.5.0" = { name = "graphql"; packageName = "graphql"; - version = "15.4.0"; + version = "15.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/graphql/-/graphql-15.4.0.tgz"; - sha512 = "EB3zgGchcabbsU9cFe1j+yxdzKQKAbGUWRb13DsrsMN1yyfmmIq+2+L5MqVWcDCE4V89R5AyUOi7sMOGxdsYtA=="; + url = "https://registry.npmjs.org/graphql/-/graphql-15.5.0.tgz"; + sha512 = "OmaM7y0kaK31NKG31q4YbD2beNYa6jBBKtMFT6gLYJljHLJr42IqJ8KX08u3Li/0ifzTU5HjmoOOrwa5BRLeDA=="; }; }; "graphql-anywhere-4.2.7" = { @@ -26172,13 +26127,13 @@ let sha512 = "MBY0wEjvcgJtZUyoqpPvOE1e5qPI0hJaa1gKTqjonSFiCsNHX2lykNjpOPcodmAgH1V06ELxhGnm9kcVzqvi/g=="; }; }; - "graphql-extensions-0.12.7" = { + "graphql-extensions-0.12.8" = { name = "graphql-extensions"; packageName = "graphql-extensions"; - version = "0.12.7"; + version = "0.12.8"; src = fetchurl { - url = "https://registry.npmjs.org/graphql-extensions/-/graphql-extensions-0.12.7.tgz"; - sha512 = "yc9qOmEmWVZNkux9m0eCiHdtYSwNZRHkFhgfKfDn4u/gpsJolft1iyMUADnG/eytiRW0CGZFBpZjHkJhpginuQ=="; + url = "https://registry.npmjs.org/graphql-extensions/-/graphql-extensions-0.12.8.tgz"; + sha512 = "xjsSaB6yKt9jarFNNdivl2VOx52WySYhxPgf8Y16g6GKZyAzBoIFiwyGw5PJDlOSUa6cpmzn6o7z8fVMbSAbkg=="; }; }; "graphql-subscriptions-1.1.0" = { @@ -26244,13 +26199,13 @@ let sha512 = "U2OiDI5VxYmzRKw0Z2dmfk0zkqMRaecH9Smh1U277gVgVe9Qn+18xqf4skwr4YJszGIh7iQDZ57+5ygOK9sM/Q=="; }; }; - "graphql-ws-3.1.0" = { + "graphql-ws-4.1.0" = { name = "graphql-ws"; packageName = "graphql-ws"; - version = "3.1.0"; + version = "4.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/graphql-ws/-/graphql-ws-3.1.0.tgz"; - sha512 = "zbex3FSiFz0iRgfkzDNWpOY/sYWoX+iZ5XUhakaDwOh99HSuk8rPt5suuxdXUVzEg5TGQ9rwzNaz/+mTPtS0yg=="; + url = "https://registry.npmjs.org/graphql-ws/-/graphql-ws-4.1.0.tgz"; + sha512 = "DxJP1y2YzCqVLy7DrQN0iuR2l48vMOBWukX2d/J9aN2o5x9un5psIIq/2UFRh91UGARmfvPH86y1p4qbC1dITg=="; }; }; "gray-matter-2.1.1" = { @@ -26316,13 +26271,13 @@ let sha512 = "cHwsLqoighpu7TuYj5RonnEuxGVFnztcUqTqp5rXFGYL4OuPFofwC4Ycg7n9fYwvK6F5WbYgeVOwph9Crs2fsQ=="; }; }; - "gtoken-5.1.0" = { + "gtoken-5.2.1" = { name = "gtoken"; packageName = "gtoken"; - version = "5.1.0"; + version = "5.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/gtoken/-/gtoken-5.1.0.tgz"; - sha512 = "4d8N6Lk8TEAHl9vVoRVMh9BNOKWVgl2DdNtr3428O75r3QFrF/a5MMu851VmK0AA8+iSvbwRv69k5XnMLURGhg=="; + url = "https://registry.npmjs.org/gtoken/-/gtoken-5.2.1.tgz"; + sha512 = "OY0BfPKe3QnMsY9MzTHTSKn+Vl2l1CcLe6BwDEQj00mbbkl5nyQ/7EUREstg4fQNZ8iYE7br4JJ7TdKeDOPWmw=="; }; }; "gulp-4.0.2" = { @@ -28009,15 +27964,6 @@ let sha512 = "snvtAQRforYUI+C2+45L2LBJy/0/uQUffxv8/uwiS98fSUoXHVrFPClgzWZWxT0drwkLHJRm9inZcYzTR42GLA=="; }; }; - "idb-wrapper-1.7.2" = { - name = "idb-wrapper"; - packageName = "idb-wrapper"; - version = "1.7.2"; - src = fetchurl { - url = "https://registry.npmjs.org/idb-wrapper/-/idb-wrapper-1.7.2.tgz"; - sha512 = "zfNREywMuf0NzDo9mVsL0yegjsirJxHpKHvWcyRozIqQy89g0a3U+oBPOCN4cc0oCiOuYgZHimzaW/R46G1Mpg=="; - }; - }; "idx-2.4.0" = { name = "idx"; packageName = "idx"; @@ -28207,15 +28153,6 @@ let sha1 = "d81355c15612d386c61f9ddd3922d4304822a546"; }; }; - "import-fresh-3.2.1" = { - name = "import-fresh"; - packageName = "import-fresh"; - version = "3.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/import-fresh/-/import-fresh-3.2.1.tgz"; - sha512 = "6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ=="; - }; - }; "import-fresh-3.3.0" = { name = "import-fresh"; packageName = "import-fresh"; @@ -28450,15 +28387,6 @@ let sha1 = "4e808c2ce144c6c1788918e034d6797bc6cf6281"; }; }; - "ini-1.3.6" = { - name = "ini"; - packageName = "ini"; - version = "1.3.6"; - src = fetchurl { - url = "https://registry.npmjs.org/ini/-/ini-1.3.6.tgz"; - sha512 = "IZUoxEjNjubzrmvzZU4lKP7OnYmX72XRl3sqkfJhBKweKi5rnGi5+IUdlj/H1M+Ip5JQ1WzaDMOBRY90Ajc5jg=="; - }; - }; "ini-1.3.7" = { name = "ini"; packageName = "ini"; @@ -28819,13 +28747,22 @@ let sha512 = "S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg=="; }; }; - "internal-slot-1.0.2" = { + "internal-slot-1.0.3" = { name = "internal-slot"; packageName = "internal-slot"; - version = "1.0.2"; + version = "1.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.2.tgz"; - sha512 = "2cQNfwhAfJIkU4KZPkDI+Gj5yNNnbqi40W9Gge6dfnk4TocEVm00B3bdiL+JINrbGJil2TeHvM4rETGzk/f/0g=="; + url = "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz"; + sha512 = "O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA=="; + }; + }; + "internmap-1.0.0" = { + name = "internmap"; + packageName = "internmap"; + version = "1.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/internmap/-/internmap-1.0.0.tgz"; + sha512 = "SdoDWwNOTE2n4JWUsLn4KXZGuZPjPF9yyOGc8bnfWnBQh7BD/l80rzSznKc/r4Y0aQ7z3RTk9X+tV4tHBpu+dA=="; }; }; "interpret-1.1.0" = { @@ -28963,13 +28900,13 @@ let sha1 = "fa78bf5d2e6913c911ce9f819ee5146bb6d844e9"; }; }; - "ip-regex-4.2.0" = { + "ip-regex-4.3.0" = { name = "ip-regex"; packageName = "ip-regex"; - version = "4.2.0"; + version = "4.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/ip-regex/-/ip-regex-4.2.0.tgz"; - sha512 = "n5cDDeTWWRwK1EBoWwRti+8nP4NbytBBY0pldmnIkq6Z55KNFmWofh4rl9dPZpj+U/nVq7gweR3ylrvMt4YZ5A=="; + url = "https://registry.npmjs.org/ip-regex/-/ip-regex-4.3.0.tgz"; + sha512 = "B9ZWJxHHOHUhUjCPrMpLD4xEq35bUTClHM1S6CBU5ixQnkZmwipwgc96vAd7AAGM9TGHvJR+Uss+/Ak6UphK+Q=="; }; }; "ip-set-1.0.2" = { @@ -29053,15 +28990,6 @@ let sha1 = "2ca9b033651111855412f16be5d77c62a458a766"; }; }; - "is-0.2.7" = { - name = "is"; - packageName = "is"; - version = "0.2.7"; - src = fetchurl { - url = "https://registry.npmjs.org/is/-/is-0.2.7.tgz"; - sha1 = "3b34a2c48f359972f35042849193ae7264b63562"; - }; - }; "is-3.3.0" = { name = "is"; packageName = "is"; @@ -29827,15 +29755,6 @@ let sha512 = "drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w=="; }; }; - "is-object-0.1.2" = { - name = "is-object"; - packageName = "is-object"; - version = "0.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/is-object/-/is-object-0.1.2.tgz"; - sha1 = "00efbc08816c33cfc4ac8251d132e10dc65098d7"; - }; - }; "is-object-1.0.2" = { name = "is-object"; packageName = "is-object"; @@ -30493,15 +30412,6 @@ let sha512 = "ORrEy+SNVqUhrCaal4hA4fBzhggQQ+BaLntyPOdoEiwlKZW9BZiJXjg3RMiruE4tPEI3pyVPpySHQF/dKWperg=="; }; }; - "isbuffer-0.0.0" = { - name = "isbuffer"; - packageName = "isbuffer"; - version = "0.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/isbuffer/-/isbuffer-0.0.0.tgz"; - sha1 = "38c146d9df528b8bf9b0701c3d43cf12df3fc39b"; - }; - }; "isemail-3.2.0" = { name = "isemail"; packageName = "isemail"; @@ -30853,15 +30763,6 @@ let sha512 = "KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ=="; }; }; - "jetifier-1.6.6" = { - name = "jetifier"; - packageName = "jetifier"; - version = "1.6.6"; - src = fetchurl { - url = "https://registry.npmjs.org/jetifier/-/jetifier-1.6.6.tgz"; - sha512 = "JNAkmPeB/GS2tCRqUzRPsTOHpGDah7xP18vGJfIjZC+W2sxEHbxgJxetIjIqhjQ3yYbYNEELkM/spKLtwoOSUQ=="; - }; - }; "jetpack-id-1.0.0" = { name = "jetpack-id"; packageName = "jetpack-id"; @@ -30952,13 +30853,13 @@ let sha512 = "Apz3AqpJhToFlo70mwnlbVyqhJRagzhNKKp84ZMeTqe/Ay9oIno8unm7eFepdlR8m8wz/9JXJQxUjK/3Ku/cpg=="; }; }; - "jpeg-js-0.4.2" = { + "jpeg-js-0.4.3" = { name = "jpeg-js"; packageName = "jpeg-js"; - version = "0.4.2"; + version = "0.4.3"; src = fetchurl { - url = "https://registry.npmjs.org/jpeg-js/-/jpeg-js-0.4.2.tgz"; - sha512 = "+az2gi/hvex7eLTMTlbRLOhH6P6WFdk2ITI8HJsaH2VqYO0I594zXSYEP+tf4FW+8Cy68ScDXoAsQdyQanv3sw=="; + url = "https://registry.npmjs.org/jpeg-js/-/jpeg-js-0.4.3.tgz"; + sha512 = "ru1HWKek8octvUHFHvE5ZzQ1yAsJmIvRdGWvSoKV52XKyuyYA437QWDttXT8eZXDSbuMpHlLzPDZUPd6idIz+Q=="; }; }; "jpeg-turbo-0.4.0" = { @@ -30988,13 +30889,13 @@ let sha1 = "bcb4045c8dd0539c134bc1488cdd3e768a7a9e51"; }; }; - "jquery.terminal-2.20.1" = { + "jquery.terminal-2.20.2" = { name = "jquery.terminal"; packageName = "jquery.terminal"; - version = "2.20.1"; + version = "2.20.2"; src = fetchurl { - url = "https://registry.npmjs.org/jquery.terminal/-/jquery.terminal-2.20.1.tgz"; - sha512 = "XDXH/psm0BquAmQEwomn1g9lYBGS/P6laRgWC/gADi6eJjEBWeyuiP9F5nzoEVhEa2VDnEYbvfm/MBA5DcrvdA=="; + url = "https://registry.npmjs.org/jquery.terminal/-/jquery.terminal-2.20.2.tgz"; + sha512 = "f3heC+hG2NE9tuJmGI3g5fR/KoD1/G31rJlXjVYPU2oBqbPQXRiiYvW78mm4aK9+IClYhMoqXiKxdzWIxjAxxA=="; }; }; "js-base64-2.6.4" = { @@ -31006,13 +30907,13 @@ let sha512 = "pZe//GGmwJndub7ZghVHz7vjb2LgC1m8B07Au3eYqeqv9emhESByMXxaEgkUkEqJe87oBbSniGYoQNIBklc7IQ=="; }; }; - "js-beautify-1.13.0" = { + "js-beautify-1.13.5" = { name = "js-beautify"; packageName = "js-beautify"; - version = "1.13.0"; + version = "1.13.5"; src = fetchurl { - url = "https://registry.npmjs.org/js-beautify/-/js-beautify-1.13.0.tgz"; - sha512 = "/Tbp1OVzZjbwzwJQFIlYLm9eWQ+3aYbBXLSaqb1mEJzhcQAfrqMMQYtjb6io+U6KpD0ID4F+Id3/xcjH3l/sqA=="; + url = "https://registry.npmjs.org/js-beautify/-/js-beautify-1.13.5.tgz"; + sha512 = "MsXlH6Z/BiRYSkSRW3clNDqDjSpiSNOiG8xYVUBXt4k0LnGvDhlTGOlHX1VFtAdoLmtwjxMG5qiWKy/g+Ipv5w=="; }; }; "js-message-1.0.7" = { @@ -31249,49 +31150,49 @@ let sha512 = "OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA=="; }; }; - "jsii-1.16.0" = { + "jsii-1.17.1" = { name = "jsii"; packageName = "jsii"; - version = "1.16.0"; + version = "1.17.1"; src = fetchurl { - url = "https://registry.npmjs.org/jsii/-/jsii-1.16.0.tgz"; - sha512 = "8cgroyD6LOlFUlXUMAmjtUhzgyF3oQpVVpIdDzqcn2dNgs7iDnZN/Wo27MfZj8usbIBLLK3DYv7DSf+0/H0yWA=="; + url = "https://registry.npmjs.org/jsii/-/jsii-1.17.1.tgz"; + sha512 = "Hx2oJjD7mXWD73A8yRkNzE9QDkfn+oDNUAwQgeMV5xteBvrzKFwiToucMTrPPVL/KO2mEXvWP2Or7MY03DFu7w=="; }; }; - "jsii-pacmak-1.16.0" = { + "jsii-pacmak-1.17.1" = { name = "jsii-pacmak"; packageName = "jsii-pacmak"; - version = "1.16.0"; + version = "1.17.1"; src = fetchurl { - url = "https://registry.npmjs.org/jsii-pacmak/-/jsii-pacmak-1.16.0.tgz"; - sha512 = "fjNiW8CliOO/GTzbhdA3kJGBvG1PDh2suQKfsUdh2sD0HSRmQPSpVydSmK0pfav7PD6OOfXsWvWI6WlKzNY0pg=="; + url = "https://registry.npmjs.org/jsii-pacmak/-/jsii-pacmak-1.17.1.tgz"; + sha512 = "9vxNObAkAqzRaU5qcFzJmi6gYQ6fllOqgGjqaEWdWlcMFx2XzgSOtALrksi/YRLwuZtPCZrUnSEV5SeralSkUg=="; }; }; - "jsii-reflect-1.16.0" = { + "jsii-reflect-1.17.1" = { name = "jsii-reflect"; packageName = "jsii-reflect"; - version = "1.16.0"; + version = "1.17.1"; src = fetchurl { - url = "https://registry.npmjs.org/jsii-reflect/-/jsii-reflect-1.16.0.tgz"; - sha512 = "1zxZwni5S9WUQrNJJA+fVVkd1s54u6fdxjuiHpkZUvxkcPUnsuurL8KWImMEvbdz5ykGHEmnjMOOiyRh/XEc2Q=="; + url = "https://registry.npmjs.org/jsii-reflect/-/jsii-reflect-1.17.1.tgz"; + sha512 = "u3Pn/iCZriV6fD77Ettc975XIcGTIz0fjGeStwGIVyb9pcoQiF+WXdg8H9iRr17Rx+m6DTvbRukrszPDX6nMSA=="; }; }; - "jsii-rosetta-1.16.0" = { + "jsii-rosetta-1.17.1" = { name = "jsii-rosetta"; packageName = "jsii-rosetta"; - version = "1.16.0"; + version = "1.17.1"; src = fetchurl { - url = "https://registry.npmjs.org/jsii-rosetta/-/jsii-rosetta-1.16.0.tgz"; - sha512 = "1FFGV+JmwyljCNjc9bkW40MIQXvPgNxq+V3zx8/0+FM51S/0O5EvTa/413LX8fzB8sWH0G42NqFa+8k3k9s2hw=="; + url = "https://registry.npmjs.org/jsii-rosetta/-/jsii-rosetta-1.17.1.tgz"; + sha512 = "Nws1f4FE0qNTJLWoP6Q/jwWYcR2uHB0pQ5AsyR5oVwrJiXjZ06vUD9oJu7GuXb9BxKVf5gJVc6Hh478SwOwF6A=="; }; }; - "jsii-srcmak-0.1.180" = { + "jsii-srcmak-0.1.210" = { name = "jsii-srcmak"; packageName = "jsii-srcmak"; - version = "0.1.180"; + version = "0.1.210"; src = fetchurl { - url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.180.tgz"; - sha512 = "U9CmoEM6A7ZhIT66N8r9flPKUsNnkCu5iWkzH9k6sdNwbiEC5KT4MdJUfJ42L1AbX1BXwhmQtFyj7QvKdGI44g=="; + url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.210.tgz"; + sha512 = "p9G4DcJIjJXo1LSLFe/lISXB9ijwfSMd/CUWtTWsUo2muVEsaKl8IE7YAiTDiKiP3OTswvzHmqa5DZ1pobLkzg=="; }; }; "json-bigint-0.2.3" = { @@ -31573,13 +31474,13 @@ let sha512 = "W9Lq347r8tA1DfMvAGn9QNcgYm4Wm7Yc+k8e6vezpMnRT+NHbtlxgNBXRVjXe9YM6eTn6+p/MKOlV/aABJcSnQ=="; }; }; - "json2jsii-0.1.172" = { + "json2jsii-0.1.188" = { name = "json2jsii"; packageName = "json2jsii"; - version = "0.1.172"; + version = "0.1.188"; src = fetchurl { - url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.1.172.tgz"; - sha512 = "X78nchCnnN0M3x6byBMhR9X5fz5BETDxFmAE149WUpMn0Dh6Dg3c7H9FbQkRV1MVaqC0sLJHGIeO++hfgYpa7w=="; + url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.1.188.tgz"; + sha512 = "XeUcBQl0rngTFmiSIx0XNW+g0QgAJcqwsUYzvGcDPPSvPngIGmJ/X6d0UH/nDmSVyEilYyKnVP7iYh3y9by9fA=="; }; }; "json3-3.2.6" = { @@ -32204,13 +32105,13 @@ let sha512 = "zdGa2TOpSZPq5mU6iowDARnMBZgtCqJ11dJROFi6tg6kTn4nuUdU09lFyLFSaHrWqpIJ+EBq4E8/Dc0Vx5vLdA=="; }; }; - "khroma-1.1.1" = { + "khroma-1.2.0" = { name = "khroma"; packageName = "khroma"; - version = "1.1.1"; + version = "1.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/khroma/-/khroma-1.1.1.tgz"; - sha512 = "p7SYAiFisFFmLHHCqYBNwmfTrVIlWjUq+Pw81lDvnpaXOj2sR/xszTG4873AeaEO1kYQ50Z1c9CIrtQa6bdNdA=="; + url = "https://registry.npmjs.org/khroma/-/khroma-1.2.0.tgz"; + sha512 = "DlKk5y243dujy8fOH02aRnnewLfiHJV0s8aXaVrCohgBf3s7fEAn6gc6LLQ21agODlFZS8ufrn+juu70uCA9Tw=="; }; }; "killable-1.0.1" = { @@ -32627,15 +32528,6 @@ let sha512 = "psRSqJZCsC/irNhfHzrVZbmPYXDcEYhA5TVNwr+V92jF44rbf86hqGp8fiT702FyiArScYIlPSBTDUASCVNSpw=="; }; }; - "level-blobs-0.1.7" = { - name = "level-blobs"; - packageName = "level-blobs"; - version = "0.1.7"; - src = fetchurl { - url = "https://registry.npmjs.org/level-blobs/-/level-blobs-0.1.7.tgz"; - sha1 = "9ab9b97bb99f1edbf9f78a3433e21ed56386bdaf"; - }; - }; "level-codec-6.2.0" = { name = "level-codec"; packageName = "level-codec"; @@ -32672,42 +32564,6 @@ let sha512 = "UVprBJXite4gPS+3VznfgDSU8PTRuVX0NXwoWW50KLxd2yw4Y1t2JUR5In1itQnudZqRMT9DlAM3Q//9NCjCFw=="; }; }; - "level-filesystem-1.2.0" = { - name = "level-filesystem"; - packageName = "level-filesystem"; - version = "1.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/level-filesystem/-/level-filesystem-1.2.0.tgz"; - sha1 = "a00aca9919c4a4dfafdca6a8108d225aadff63b3"; - }; - }; - "level-fix-range-1.0.2" = { - name = "level-fix-range"; - packageName = "level-fix-range"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/level-fix-range/-/level-fix-range-1.0.2.tgz"; - sha1 = "bf15b915ae36d8470c821e883ddf79cd16420828"; - }; - }; - "level-fix-range-2.0.0" = { - name = "level-fix-range"; - packageName = "level-fix-range"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/level-fix-range/-/level-fix-range-2.0.0.tgz"; - sha1 = "c417d62159442151a19d9a2367868f1724c2d548"; - }; - }; - "level-hooks-4.5.0" = { - name = "level-hooks"; - packageName = "level-hooks"; - version = "4.5.0"; - src = fetchurl { - url = "https://registry.npmjs.org/level-hooks/-/level-hooks-4.5.0.tgz"; - sha1 = "1b9ae61922930f3305d1a61fc4d83c8102c0dd93"; - }; - }; "level-iterator-stream-4.0.2" = { name = "level-iterator-stream"; packageName = "level-iterator-stream"; @@ -32717,15 +32573,6 @@ let sha512 = "ZSthfEqzGSOMWoUGhTXdX9jv26d32XJuHz/5YnuHZzH6wldfWMOVwI9TBtKcya4BKTyTt3XVA0A3cF3q5CY30Q=="; }; }; - "level-js-2.2.4" = { - name = "level-js"; - packageName = "level-js"; - version = "2.2.4"; - src = fetchurl { - url = "https://registry.npmjs.org/level-js/-/level-js-2.2.4.tgz"; - sha1 = "bc055f4180635d4489b561c9486fa370e8c11697"; - }; - }; "level-js-4.0.2" = { name = "level-js"; packageName = "level-js"; @@ -32753,15 +32600,6 @@ let sha512 = "HMwMaQPlTC1IlcwT3+swhqf/NUO+ZhXVz6TY1zZIIZlIR0YSn8GtAAWmIvKjNY16ZkEg/JcpAuQskxsXqC0yOQ=="; }; }; - "level-peek-1.0.6" = { - name = "level-peek"; - packageName = "level-peek"; - version = "1.0.6"; - src = fetchurl { - url = "https://registry.npmjs.org/level-peek/-/level-peek-1.0.6.tgz"; - sha1 = "bec51c72a82ee464d336434c7c876c3fcbcce77f"; - }; - }; "level-post-1.0.7" = { name = "level-post"; packageName = "level-post"; @@ -32771,15 +32609,6 @@ let sha512 = "PWYqG4Q00asOrLhX7BejSajByB4EmG2GaKHfj3h5UmmZ2duciXLPGYWIjBzLECFWUGOZWlm5B20h/n3Gs3HKew=="; }; }; - "level-sublevel-5.2.3" = { - name = "level-sublevel"; - packageName = "level-sublevel"; - version = "5.2.3"; - src = fetchurl { - url = "https://registry.npmjs.org/level-sublevel/-/level-sublevel-5.2.3.tgz"; - sha1 = "744c12c72d2e72be78dde3b9b5cd84d62191413a"; - }; - }; "level-supports-1.0.1" = { name = "level-supports"; packageName = "level-supports"; @@ -32798,15 +32627,6 @@ let sha512 = "iB8O/7Db9lPaITU1aA2txU/cBEXAt4vWwKQRrrWuS6XDgbP4QZGj9BL2aNbwb002atoQ/lIotJkfyzz+ygQnUQ=="; }; }; - "levelup-0.18.6" = { - name = "levelup"; - packageName = "levelup"; - version = "0.18.6"; - src = fetchurl { - url = "https://registry.npmjs.org/levelup/-/levelup-0.18.6.tgz"; - sha1 = "e6a01cb089616c8ecc0291c2a9bd3f0c44e3e5eb"; - }; - }; "levelup-4.4.0" = { name = "levelup"; packageName = "levelup"; @@ -33140,13 +32960,13 @@ let sha512 = "Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw=="; }; }; - "loader-runner-4.1.0" = { + "loader-runner-4.2.0" = { name = "loader-runner"; packageName = "loader-runner"; - version = "4.1.0"; + version = "4.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/loader-runner/-/loader-runner-4.1.0.tgz"; - sha512 = "oR4lB4WvwFoC70ocraKhn5nkKSs23t57h9udUgw8o0iH8hMXeEoRuUgfcvgUwAJ1ZpRqBvcou4N2SMvM1DwMrA=="; + url = "https://registry.npmjs.org/loader-runner/-/loader-runner-4.2.0.tgz"; + sha512 = "92+huvxMvYlMzMt0iIOukcwYBFpkYJdpl2xsZ7LrlayO7E8SOv+JJUEK17B/dJIHAOLMfh2dZZ/Y18WgmGtYNw=="; }; }; "loader-utils-1.4.0" = { @@ -33221,15 +33041,6 @@ let sha512 = "iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw=="; }; }; - "lock-0.1.4" = { - name = "lock"; - packageName = "lock"; - version = "0.1.4"; - src = fetchurl { - url = "https://registry.npmjs.org/lock/-/lock-0.1.4.tgz"; - sha1 = "fec7deaef17e7c3a0a55e1da042803e25d91745d"; - }; - }; "locks-0.2.2" = { name = "locks"; packageName = "locks"; @@ -33284,15 +33095,6 @@ let sha1 = "d22c9ac660288f3843e16ba7d2b5d06cca27d777"; }; }; - "lodash-4.17.15" = { - name = "lodash"; - packageName = "lodash"; - version = "4.17.15"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz"; - sha512 = "8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A=="; - }; - }; "lodash-4.17.20" = { name = "lodash"; packageName = "lodash"; @@ -34598,15 +34400,6 @@ let sha512 = "Mc8jNuSFImQUIateBFwdOQcmC6Q5maU0VVvdC2R6XMb66/VnT+7WS4D/0EeNMZu1YODmJe5NIn2XftCzEocUgw=="; }; }; - "logfmt-1.3.2" = { - name = "logfmt"; - packageName = "logfmt"; - version = "1.3.2"; - src = fetchurl { - url = "https://registry.npmjs.org/logfmt/-/logfmt-1.3.2.tgz"; - sha512 = "U0lelcaGWEfEITZQXs8y5HrJp2xa0BJ+KDfkkLJRmuKbQIEVGNv145FbaNekY4ZYHJSBBx8NLJitaPtRqLEkxQ=="; - }; - }; "logform-2.2.0" = { name = "logform"; packageName = "logform"; @@ -34616,15 +34409,6 @@ let sha512 = "N0qPlqfypFx7UHNn4B3lzS/b0uLqt2hmuoa+PpuXNYgozdJYAyauF5Ky0BWVjrxDlMWiT3qN4zPq3vVAfZy7Yg=="; }; }; - "logkitty-0.7.1" = { - name = "logkitty"; - packageName = "logkitty"; - version = "0.7.1"; - src = fetchurl { - url = "https://registry.npmjs.org/logkitty/-/logkitty-0.7.1.tgz"; - sha512 = "/3ER20CTTbahrCrpYfPn7Xavv9diBROZpoXGVZDWMw4b/X4uuUwAC0ki85tgsdMRONURyIJbcOvS94QsUBYPbQ=="; - }; - }; "loglevel-1.7.1" = { name = "loglevel"; packageName = "loglevel"; @@ -35147,13 +34931,13 @@ let sha512 = "07JHC0r1ykIoruKO8ifMXu+xEU8qOXDFETylktdug6vJDACnP+HKevOu3PXyNPzFyTSlz8vrBYlBO1JZRe8Cag=="; }; }; - "make-fetch-happen-8.0.12" = { + "make-fetch-happen-8.0.13" = { name = "make-fetch-happen"; packageName = "make-fetch-happen"; - version = "8.0.12"; + version = "8.0.13"; src = fetchurl { - url = "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-8.0.12.tgz"; - sha512 = "cBD7yM72ltWEV+xlLlbimnh5qHwr+thAb/cZLiaZhicVVPVN63BikBvL5OR68+8+z2fvBOgck628vGJ2ulgF6g=="; + url = "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-8.0.13.tgz"; + sha512 = "rQ5NijwwdU8tIaBrpTtSVrNCcAJfyDRcKBC76vOQlyJX588/88+TE+UpjWl4BgG7gCkp29wER7xcRqkeg+x64Q=="; }; }; "make-iterator-1.0.1" = { @@ -35543,13 +35327,13 @@ let sha512 = "EGwzEeCcLniFX51DhTpmTom+dSA/MG/OBUDjnWtHbEnjAH180VzUeAw+oE4+Zv+CoYBWyRlYOTR0N8SO9R1PVw=="; }; }; - "marked-1.2.7" = { + "marked-1.2.8" = { name = "marked"; packageName = "marked"; - version = "1.2.7"; + version = "1.2.8"; src = fetchurl { - url = "https://registry.npmjs.org/marked/-/marked-1.2.7.tgz"; - sha512 = "No11hFYcXr/zkBvL6qFmAp1z6BKY3zqLMHny/JN/ey+al7qwCM2+CMBL9BOgqMxZU36fz4cCWfn2poWIf7QRXA=="; + url = "https://registry.npmjs.org/marked/-/marked-1.2.8.tgz"; + sha512 = "lzmFjGnzWHkmbk85q/ILZjFoHHJIQGF+SxGEfIdGk/XhiTPhqGs37gbru6Kkd48diJnEyYwnG67nru0Z2gQtuQ=="; }; }; "marked-terminal-3.3.0" = { @@ -35957,6 +35741,15 @@ let sha512 = "Ci6bIfq/UgcxPTYa8dQQ5FY3BzKkT894bwXWXxC/zqs0XgMO2cT20CGkOqda7gZNkmK5VP4x89IGZ6K7hfbn3Q=="; }; }; + "mem-8.0.0" = { + name = "mem"; + packageName = "mem"; + version = "8.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/mem/-/mem-8.0.0.tgz"; + sha512 = "qrcJOe6uD+EW8Wrci1Vdiua/15Xw3n/QnaNXE7varnB6InxSk7nu3/i5jfy3S6kWxr8WYJ6R1o0afMUtvorTsA=="; + }; + }; "mem-fs-1.2.0" = { name = "mem-fs"; packageName = "mem-fs"; @@ -36011,13 +35804,13 @@ let sha1 = "9d7028a6f266deb733510bb7dbba5f51878c561e"; }; }; - "memoizee-0.4.14" = { + "memoizee-0.4.15" = { name = "memoizee"; packageName = "memoizee"; - version = "0.4.14"; + version = "0.4.15"; src = fetchurl { - url = "https://registry.npmjs.org/memoizee/-/memoizee-0.4.14.tgz"; - sha512 = "/SWFvWegAIYAO4NQMpcX+gcra0yEZu4OntmUdrBaWrJncxOqAziGFlHxc7yjKVK2uu3lpPW27P27wkR82wA8mg=="; + url = "https://registry.npmjs.org/memoizee/-/memoizee-0.4.15.tgz"; + sha512 = "UBWmJpLZd5STPm7PMUlOw/TSy972M+z8gcyQ5veOnSDRREz/0bmpyTfKt3/51DhEBqCZQn1udM/5flcSPYhkdQ=="; }; }; "memory-cache-0.2.0" = { @@ -36155,13 +35948,22 @@ let sha512 = "GWHvA5QOcS412WCo8vwKDlTelGLsCGBVevQB5Kva961rmNfun0PCbv5+xta2kUMFJyR8/oWnn7ddeKdosbAPbA=="; }; }; - "meow-8.1.0" = { + "meow-8.1.2" = { name = "meow"; packageName = "meow"; - version = "8.1.0"; + version = "8.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/meow/-/meow-8.1.0.tgz"; - sha512 = "fNWkgM1UVMey2kf24yLiccxLihc5W+6zVus3/N0b+VfnJgxV99E9u04X6NAiKdg6ED7DAQBX5sy36NM0QJZkWA=="; + url = "https://registry.npmjs.org/meow/-/meow-8.1.2.tgz"; + sha512 = "r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q=="; + }; + }; + "meow-9.0.0" = { + name = "meow"; + packageName = "meow"; + version = "9.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/meow/-/meow-9.0.0.tgz"; + sha512 = "+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ=="; }; }; "merge-1.2.1" = { @@ -36236,13 +36038,13 @@ let sha1 = "f8a064760d37e7978ad5f9f6d3c119a494f57081"; }; }; - "mermaid-8.8.4" = { + "mermaid-8.9.0" = { name = "mermaid"; packageName = "mermaid"; - version = "8.8.4"; + version = "8.9.0"; src = fetchurl { - url = "https://registry.npmjs.org/mermaid/-/mermaid-8.8.4.tgz"; - sha512 = "YPn35uEAIrOcsDPjCiKNXXBdO1Aoazsv2zTZjG4+oXa7+tTVUb5sI81NqaTYa47RnoH9Vl4waLlEEJfB8KM9VA=="; + url = "https://registry.npmjs.org/mermaid/-/mermaid-8.9.0.tgz"; + sha512 = "J582tyE1vkdNu4BGgfwXnFo4Mu6jpuc4uK96mIenavaak9kr4T5gaMmYCo/7edwq/vTBkx/soZ5LcJo5WXZ1BQ=="; }; }; "mersenne-0.0.4" = { @@ -36515,15 +36317,6 @@ let sha512 = "x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg=="; }; }; - "mime-2.4.6" = { - name = "mime"; - packageName = "mime"; - version = "2.4.6"; - src = fetchurl { - url = "https://registry.npmjs.org/mime/-/mime-2.4.6.tgz"; - sha512 = "RZKhC3EmpBchfTGBVb8fb+RL2cWyw/32lshnsETttkBAyAUXSGHxbEJWWRXc751DrIxG1q04b8QwMbAwkRPpUA=="; - }; - }; "mime-2.4.7" = { name = "mime"; packageName = "mime"; @@ -36533,6 +36326,15 @@ let sha512 = "dhNd1uA2u397uQk3Nv5LM4lm93WYDUXFn3Fu291FJerns4jyTudqhIWe4W04YLy7Uk1tm1Ore04NpjRvQp/NPA=="; }; }; + "mime-2.5.0" = { + name = "mime"; + packageName = "mime"; + version = "2.5.0"; + src = fetchurl { + url = "https://registry.npmjs.org/mime/-/mime-2.5.0.tgz"; + sha512 = "ft3WayFSFUVBuJj7BMLKAQcSlItKtfjsKDDsii3rqFDAZ7t11zRe8ASw/GlmivGwVUYtwkQrxiGGpL6gFvB0ag=="; + }; + }; "mime-db-1.33.0" = { name = "mime-db"; packageName = "mime-db"; @@ -36839,13 +36641,13 @@ let sha512 = "6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA=="; }; }; - "minipass-fetch-1.3.2" = { + "minipass-fetch-1.3.3" = { name = "minipass-fetch"; packageName = "minipass-fetch"; - version = "1.3.2"; + version = "1.3.3"; src = fetchurl { - url = "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-1.3.2.tgz"; - sha512 = "/i4fX1ss+Dtwyk++OsAI6SEV+eE1dvI6W+0hORdjfruQ7VD5uYTetJIHcEMjWiEiszWjn2aAtP1CB/Q4KfeoYA=="; + url = "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-1.3.3.tgz"; + sha512 = "akCrLDWfbdAWkMLBxJEeWTdNsjML+dt5YgOI4gJ53vuO0vrmYQkUPxa6j6V65s9CcePIr2SSWqjT2EcrNseryQ=="; }; }; "minipass-flush-1.0.5" = { @@ -37046,31 +36848,31 @@ let sha1 = "ebb3a977e7af1c683ae6fda12b545a6ba6c5853d"; }; }; - "mobx-6.0.4" = { + "mobx-6.0.5" = { name = "mobx"; packageName = "mobx"; - version = "6.0.4"; + version = "6.0.5"; src = fetchurl { - url = "https://registry.npmjs.org/mobx/-/mobx-6.0.4.tgz"; - sha512 = "wT2QJT9tW19VSHo9x7RPKU3z/I2Ps6wUS8Kb1OO+kzmg7UY3n4AkcaYG6jq95Lp1R9ohjC/NGYuT2PtuvBjhFg=="; + url = "https://registry.npmjs.org/mobx/-/mobx-6.0.5.tgz"; + sha512 = "Q3/GiSj/QyazDn1n44PjdiMlokCE6gVs85BnFR0xCJmkF2d34k/ZnWAEG7wGbnJYEi+0f5CdvzDquBiKeo56bA=="; }; }; - "mobx-react-7.0.5" = { + "mobx-react-7.0.6" = { name = "mobx-react"; packageName = "mobx-react"; - version = "7.0.5"; + version = "7.0.6"; src = fetchurl { - url = "https://registry.npmjs.org/mobx-react/-/mobx-react-7.0.5.tgz"; - sha512 = "WmHl3Ni30ujVcOOnllmGmyccsbfFCKtAwpkIwncwxhgLcvXcE0Wa9lGJIhoqQdTJzGr0AJqGzMVAdwNc3Fj2DQ=="; + url = "https://registry.npmjs.org/mobx-react/-/mobx-react-7.0.6.tgz"; + sha512 = "EBNfDXnXNd0KmxtykioybOrJVX0Rc446aPZ69gDxguJnHPl/pPE032PhZ83EGWSZO3KiYsC251Ax3JlPqUwWBw=="; }; }; - "mobx-react-lite-3.1.6" = { + "mobx-react-lite-3.1.7" = { name = "mobx-react-lite"; packageName = "mobx-react-lite"; - version = "3.1.6"; + version = "3.1.7"; src = fetchurl { - url = "https://registry.npmjs.org/mobx-react-lite/-/mobx-react-lite-3.1.6.tgz"; - sha512 = "MM3x9BLt5nC7iE/ILA5n2+hfrplEKYbFjqROEuGkzBdZP/KD+Z44+2gseczRrTG0xFuiPWfEzgT68+6/zqOiEw=="; + url = "https://registry.npmjs.org/mobx-react-lite/-/mobx-react-lite-3.1.7.tgz"; + sha512 = "G6kgur98RrEpoi563ERzxlSwn606xY6Ay4BOtfYXl/QaHZYXbhbCe3YJGROPU2ao4f2bfhnt8iZW3YnBW2BqXQ=="; }; }; "mocha-2.5.3" = { @@ -37613,15 +37415,6 @@ let sha512 = "KpMNwdQsYz3O/SBS1qJ/o3sqUJ5wSb8gb0pul8CO0S56b9Y2ALm8zCfsjPXsqGFfoNBkDwZuZIAjhsZI03gYVQ=="; }; }; - "mustache-4.0.1" = { - name = "mustache"; - packageName = "mustache"; - version = "4.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/mustache/-/mustache-4.0.1.tgz"; - sha512 = "yL5VE97+OXn4+Er3THSmTdCFCtx5hHWzrolvH+JObZnUYwuaG7XV+Ch4fR2cIrcYI0tFHxS7iyFYl14bW8y2sA=="; - }; - }; "mustache-4.1.0" = { name = "mustache"; packageName = "mustache"; @@ -37964,15 +37757,6 @@ let sha1 = "20a318c30cb45f71fe7adfbf7b21c99c1472ef11"; }; }; - "native-request-1.0.8" = { - name = "native-request"; - packageName = "native-request"; - version = "1.0.8"; - src = fetchurl { - url = "https://registry.npmjs.org/native-request/-/native-request-1.0.8.tgz"; - sha512 = "vU2JojJVelUGp6jRcLwToPoWGxSx23z/0iX+I77J3Ht17rf2INGjrhOoQnjVo60nQd8wVsgzKkPfRXBiVdD2ag=="; - }; - }; "native-url-0.2.6" = { name = "native-url"; packageName = "native-url"; @@ -38189,13 +37973,13 @@ let sha512 = "o/qITSDR0JCyCKEQ1/1bnUXMmznxabbwi/Y4WwJElf+evwJNFNwIDMCCt5IigFVxgeGBJESLohGtIS9gEzo1fA=="; }; }; - "needle-2.5.2" = { + "needle-2.6.0" = { name = "needle"; packageName = "needle"; - version = "2.5.2"; + version = "2.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/needle/-/needle-2.5.2.tgz"; - sha512 = "LbRIwS9BfkPvNwNHlsA41Q29kL2L/6VaOJ0qisM5lLWsTV3nP15abO5ITL6L81zqFhzjRKDAYjpcBcwM0AVvLQ=="; + url = "https://registry.npmjs.org/needle/-/needle-2.6.0.tgz"; + sha512 = "KKYdza4heMsEfSWD7VPUIz3zX2XDwOyX2d+geb4vrERZMT5RMU6ujjaD+I5Yr54uZxQ2w6XRTAhHBbSCyovZBg=="; }; }; "negotiator-0.3.0" = { @@ -38262,6 +38046,15 @@ let sha1 = "19f619591519f096769a5ba9a86e6eeec823c3cf"; }; }; + "nested-error-stacks-2.0.1" = { + name = "nested-error-stacks"; + packageName = "nested-error-stacks"; + version = "2.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/nested-error-stacks/-/nested-error-stacks-2.0.1.tgz"; + sha512 = "SrQrok4CATudVzBS7coSz26QRSmlK9TzzoFbeKfcPBUFPjcQM9Rqvr/DlJkOrwI/0KcgvMub1n1g5Jt9EgRn4A=="; + }; + }; "nested-error-stacks-2.1.0" = { name = "nested-error-stacks"; packageName = "nested-error-stacks"; @@ -38271,22 +38064,13 @@ let sha512 = "AO81vsIO1k1sM4Zrd6Hu7regmJN1NSiAja10gc4bX3F0wd+9rQmcuHQaHVQCYIEC8iFXnE+mavh23GOt7wBgug=="; }; }; - "netlify-4.9.0" = { + "netlify-6.1.3" = { name = "netlify"; packageName = "netlify"; - version = "4.9.0"; + version = "6.1.3"; src = fetchurl { - url = "https://registry.npmjs.org/netlify/-/netlify-4.9.0.tgz"; - sha512 = "x+VqJ+yop05OUpeaT4fhz/NAvJQFjtNhW1s+/i6oP/EZS6/+B0u+qCANF8uP9u3UJcmWvlJmrRoDhj62Xvtwug=="; - }; - }; - "netlify-6.0.9" = { - name = "netlify"; - packageName = "netlify"; - version = "6.0.9"; - src = fetchurl { - url = "https://registry.npmjs.org/netlify/-/netlify-6.0.9.tgz"; - sha512 = "izoELW+kE5ClHX85f5EExRo42H3hXESwSr69EJdCuDQlTP3JR09xQgZcWL5t7FNdkfBj7Kdhf62tk02TN4+YzA=="; + url = "https://registry.npmjs.org/netlify/-/netlify-6.1.3.tgz"; + sha512 = "VltyAYcfdmDymAZ5+N2y7HZzTrNpBpmRJ5NctFWbKuV+kW/Zogf3Cm2cRhzFl9xeJ6UYN7vTfw0dYddNt3QMIA=="; }; }; "netlify-plugin-deploy-preview-commenting-0.0.1-alpha.16" = { @@ -38298,13 +38082,13 @@ let sha512 = "5Rvi17CKgPpZTazEV2wkSj4IbS2zJpoKuytaYCyvemV/CMVeZUUPRwNPWm7+NjxObqJHgzUyi2FmWql8HfWhGA=="; }; }; - "netlify-redirect-parser-2.5.0" = { + "netlify-redirect-parser-3.0.2" = { name = "netlify-redirect-parser"; packageName = "netlify-redirect-parser"; - version = "2.5.0"; + version = "3.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/netlify-redirect-parser/-/netlify-redirect-parser-2.5.0.tgz"; - sha512 = "pF8BiOr3Pa4kQLLiOu53I0d30EIUDM0DYqYvCQmKD96cMX2qLh/QsxT0Zh18IrL5a0IWQ236/o76lTe0yEEw6w=="; + url = "https://registry.npmjs.org/netlify-redirect-parser/-/netlify-redirect-parser-3.0.2.tgz"; + sha512 = "ZpYwJh/aTBAYuS9dLTVTfDu1rf/+qJ3hsjiawW7A2NmIErN9qb9k08s5I6AUwPQlG4U50MtUnUwpHyMobcbkzA=="; }; }; "netlify-redirector-0.2.1" = { @@ -38812,24 +38596,6 @@ let sha1 = "8d9dbe28964a4ac5712e9131642107c71e90ec40"; }; }; - "node-notifier-6.0.0" = { - name = "node-notifier"; - packageName = "node-notifier"; - version = "6.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/node-notifier/-/node-notifier-6.0.0.tgz"; - sha512 = "SVfQ/wMw+DesunOm5cKqr6yDcvUTDl/yc97ybGHMrteNEY6oekXpNpS3lZwgLlwz0FLgHoiW28ZpmBHUDg37cw=="; - }; - }; - "node-notifier-8.0.0" = { - name = "node-notifier"; - packageName = "node-notifier"; - version = "8.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/node-notifier/-/node-notifier-8.0.0.tgz"; - sha512 = "46z7DUmcjoYdaWyXouuFNNfUo6eFa94t23c53c+lG/9Cvauk4a98rAUp9672X5dxGdQmLpPzTxzu8f/OeEPaFA=="; - }; - }; "node-notifier-8.0.1" = { name = "node-notifier"; packageName = "node-notifier"; @@ -38839,6 +38605,15 @@ let sha512 = "BvEXF+UmsnAfYfoapKM9nGxnP+Wn7P91YfXmrKnfcYCx6VBeoN5Ez5Ogck6I8Bi5k4RlpqRYaw75pAwzX9OphA=="; }; }; + "node-notifier-9.0.0" = { + name = "node-notifier"; + packageName = "node-notifier"; + version = "9.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/node-notifier/-/node-notifier-9.0.0.tgz"; + sha512 = "SkwNwGnMMlSPrcoeH4CSo9XyWe72acAHEJGDdPdB+CyBVHsIYaTQ4U/1wk3URsyzC75xZLg2vzU2YaALlqDF1Q=="; + }; + }; "node-persist-2.1.0" = { name = "node-persist"; packageName = "node-persist"; @@ -38911,13 +38686,13 @@ let sha1 = "dbbd4af12134e2e635c245ef93ffcf6f60673a5d"; }; }; - "node-red-admin-0.2.6" = { + "node-red-admin-0.2.7" = { name = "node-red-admin"; packageName = "node-red-admin"; - version = "0.2.6"; + version = "0.2.7"; src = fetchurl { - url = "https://registry.npmjs.org/node-red-admin/-/node-red-admin-0.2.6.tgz"; - sha512 = "s3TlPwl9VbhsCTg9w2nUCdyBwqyRGqnaohy9iPJPmHPnvT+YudVt9VCoJVol5lPlWbDC9QlBQMyHQDdXIxoLkw=="; + url = "https://registry.npmjs.org/node-red-admin/-/node-red-admin-0.2.7.tgz"; + sha512 = "bsFbC7KFfGY37+SuYfmM9Er00cM92anqp6xCj8x7Y+4qZHOXnLi9XDFoWtvvsC1uQyaMqas1ALCfqcOxLlWngw=="; }; }; "node-red-node-rbe-0.2.9" = { @@ -38938,13 +38713,13 @@ let sha512 = "j1g/VtSCI2tBrBnCD+u8iSo9tH0nvn70k1O1SxkHk3+qx7tHUyOKQc7wNc4rUs9J1PkGngUC3qEDd5cL7Z/klg=="; }; }; - "node-releases-1.1.69" = { + "node-releases-1.1.70" = { name = "node-releases"; packageName = "node-releases"; - version = "1.1.69"; + version = "1.1.70"; src = fetchurl { - url = "https://registry.npmjs.org/node-releases/-/node-releases-1.1.69.tgz"; - sha512 = "DGIjo79VDEyAnRlfSqYTsy+yoHd2IOjJiKUozD2MV2D85Vso6Bug56mb9tT/fY5Urt0iqk01H7x+llAruDR2zA=="; + url = "https://registry.npmjs.org/node-releases/-/node-releases-1.1.70.tgz"; + sha512 = "Slf2s69+2/uAD79pVVQo8uSiC34+g8GWY8UH2Qtqv34ZfhYrxpYpfzs9Js9d6O0mbDmALuxaTlplnBTnSELcrw=="; }; }; "node-source-walk-4.2.0" = { @@ -39253,13 +39028,13 @@ let sha1 = "df7c3ed5a277c3f9d4b5d819b05311d10a200ae6"; }; }; - "npm-api-1.0.0" = { + "npm-api-1.0.1" = { name = "npm-api"; packageName = "npm-api"; - version = "1.0.0"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/npm-api/-/npm-api-1.0.0.tgz"; - sha512 = "gtJhIhGq07g9H5sIAB9TZzTySW8MYtcYqg+e+J+5q1GmDsDLLVfyvVBL1VklzjtRsElph11GUtLBS191RDOJxQ=="; + url = "https://registry.npmjs.org/npm-api/-/npm-api-1.0.1.tgz"; + sha512 = "4sITrrzEbPcr0aNV28QyOmgn6C9yKiF8k92jn4buYAK8wmA5xo1qL3II5/gT1r7wxbXBflSduZ2K3FbtOrtGkA=="; }; }; "npm-bundled-1.1.1" = { @@ -39424,15 +39199,6 @@ let sha512 = "Qs6P6nnopig+Y8gbzpeN/dkt+n7IyVd8f45NTMotGk6Qo7GfBmzwYx6jRLoOOgKiMnaQfYxsuyQlD8Mc3guBhg=="; }; }; - "npm-registry-fetch-4.0.7" = { - name = "npm-registry-fetch"; - packageName = "npm-registry-fetch"; - version = "4.0.7"; - src = fetchurl { - url = "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-4.0.7.tgz"; - sha512 = "cny9v0+Mq6Tjz+e0erFAB+RYJ/AVGzkjnISiobqP8OWj9c9FLoZZu8/SPSKJWE17F1tk4018wfjV+ZbIbqC7fQ=="; - }; - }; "npm-registry-fetch-8.1.5" = { name = "npm-registry-fetch"; packageName = "npm-registry-fetch"; @@ -39631,13 +39397,13 @@ let sha512 = "e5G6bbq3Nrfxm+SDPR5AiZ6n2smVUmhLA1OgI2/Bl8e2ywfWsKw/yuqrwiXXiNHb1wdM/GyPMX6QjCGJODlaaA=="; }; }; - "oas-resolver-2.5.3" = { + "oas-resolver-2.5.4" = { name = "oas-resolver"; packageName = "oas-resolver"; - version = "2.5.3"; + version = "2.5.4"; src = fetchurl { - url = "https://registry.npmjs.org/oas-resolver/-/oas-resolver-2.5.3.tgz"; - sha512 = "y4gP5tabqP3YcNVHNAEJAlcqZ40Y9lxemzmXvt54evbrvuGiK5dEhuE33Rf+191TOwzlxMoIgbwMYeuOM7BwjA=="; + url = "https://registry.npmjs.org/oas-resolver/-/oas-resolver-2.5.4.tgz"; + sha512 = "1vIj5Wkjmi+kZj5sFamt95LkuXoalmoKUohtaUQoCQZjLfPFaY8uZ7nw6IZaWuE6eLON2b6xrXhxD4hiTdYl0g=="; }; }; "oas-schema-walker-1.1.5" = { @@ -39658,13 +39424,13 @@ let sha512 = "bIt8erTyclF7bkaySTtQ9sppqyVc+mAlPi7vPzCLVHJsL9nrivQjc/jHLX/o+eGbxHd6a6YBwuY/Vxa6wGsiuw=="; }; }; - "oas-validator-5.0.4" = { + "oas-validator-5.0.5" = { name = "oas-validator"; packageName = "oas-validator"; - version = "5.0.4"; + version = "5.0.5"; src = fetchurl { - url = "https://registry.npmjs.org/oas-validator/-/oas-validator-5.0.4.tgz"; - sha512 = "/v+5BbPXl7JuKf1bYhEGIfbJZR7zBf5QJNM2RAe1e0bsABsp35nAfeptZq0hb+9RMecGSFxmzhuvlOT0/KioiQ=="; + url = "https://registry.npmjs.org/oas-validator/-/oas-validator-5.0.5.tgz"; + sha512 = "d10yy6xlhRTh6np44k2U0gm5M66pioYTllH8J1ZTj+WSY3cpTvU+Dt51iWOT85HJqyGHo0RZKXF3u/NGQWDFgg=="; }; }; "oauth-0.9.15" = { @@ -39830,15 +39596,6 @@ let sha512 = "1ZvAZ4wlF7IyPVOcE1Omikt7UpaFlOQq0HlSti+ZvDH3UiD2brwGMwDbyV43jao2bKJ+4+WdPJHSd7kgzKYVqg=="; }; }; - "object-keys-0.2.0" = { - name = "object-keys"; - packageName = "object-keys"; - version = "0.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/object-keys/-/object-keys-0.2.0.tgz"; - sha1 = "cddec02998b091be42bf1035ae32e49f1cb6ea67"; - }; - }; "object-keys-0.4.0" = { name = "object-keys"; packageName = "object-keys"; @@ -40037,22 +39794,13 @@ let sha1 = "cb236106341536f0dac4815e06708221cad7fb5e"; }; }; - "obz-1.0.2" = { + "obz-1.0.3" = { name = "obz"; packageName = "obz"; - version = "1.0.2"; + version = "1.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/obz/-/obz-1.0.2.tgz"; - sha512 = "c+EtVwT2IpXz5we2mR40aPLJ1s0eNOsxYeaYbaHhmsY6kWKo3IRkpwpBU5ck0aHfqfKUUEiKabC6rzsrG/hSHw=="; - }; - }; - "octal-1.0.0" = { - name = "octal"; - packageName = "octal"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/octal/-/octal-1.0.0.tgz"; - sha1 = "63e7162a68efbeb9e213588d58e989d1e5c4530b"; + url = "https://registry.npmjs.org/obz/-/obz-1.0.3.tgz"; + sha512 = "rH3U4eLHsV+OgkOS29ULiC9JLspwMCyCIH/+BglLPXDxQs13IK8AGD+nVmkGXqGN5JefZu85YhfIi05CsOKWPw=="; }; }; "octokit-pagination-methods-1.1.0" = { @@ -40064,13 +39812,13 @@ let sha512 = "fZ4qZdQ2nxJvtcasX7Ghl+WlWS/d9IgnBIwFZXVNNZUmzpno91SX5bc5vuxiuKoCtK78XxGGNuSCrDC7xYB3OQ=="; }; }; - "office-ui-fabric-react-7.155.3" = { + "office-ui-fabric-react-7.157.0" = { name = "office-ui-fabric-react"; packageName = "office-ui-fabric-react"; - version = "7.155.3"; + version = "7.157.0"; src = fetchurl { - url = "https://registry.npmjs.org/office-ui-fabric-react/-/office-ui-fabric-react-7.155.3.tgz"; - sha512 = "MOGOEviHa5P580rANl9+vS4QTDt6SeyVlfhGLqZpSgA7VZ4JDCIU/mFyNbl5KG39wfg5JiKic+Lz8rXUrExQfw=="; + url = "https://registry.npmjs.org/office-ui-fabric-react/-/office-ui-fabric-react-7.157.0.tgz"; + sha512 = "nS0RfhQKho2S2hiUxHcgM47AZUK1EzbjkdWkofNHQk8q0PwJkQPTUjTbSuxhQNLzXHiaQJz930ZYUvRCZvlL1w=="; }; }; "omggif-1.0.10" = { @@ -40244,13 +39992,13 @@ let sha512 = "jQ31cORBFE6td25deYeD80wxKBMj+zBmHTrVxnc6CKhx8gho6ipmWM5zj/oeoqioZ99yqBls9Z/9Nss7J26G2g=="; }; }; - "oo-ascii-tree-1.16.0" = { + "oo-ascii-tree-1.17.1" = { name = "oo-ascii-tree"; packageName = "oo-ascii-tree"; - version = "1.16.0"; + version = "1.17.1"; src = fetchurl { - url = "https://registry.npmjs.org/oo-ascii-tree/-/oo-ascii-tree-1.16.0.tgz"; - sha512 = "xIuc4hP3NKOhPaPJN1zkTXiGNpNe4vOaS0CUwyCuVv1kBzBhliZ71siaGXpHIL45CBmX6qGAjEiHt7ZS1nQWaA=="; + url = "https://registry.npmjs.org/oo-ascii-tree/-/oo-ascii-tree-1.17.1.tgz"; + sha512 = "+59dySSbsBOpRmrdBV6w4lkoxELA6reGNEsD/+HfRw8F+pQhGv5cROX0Y6jAXd1yWbUXY+AbbKVTq1ws/rfv+A=="; }; }; "opal-runtime-1.0.11" = { @@ -40307,6 +40055,15 @@ let sha512 = "mgLwQIx2F/ye9SmbrUkurZCnkoXyXyu9EbHtJZrICjVAJfyMArdHp3KkixGdZx1ZHFPNIwl0DDM1dFFqXbTLZw=="; }; }; + "open-7.3.1" = { + name = "open"; + packageName = "open"; + version = "7.3.1"; + src = fetchurl { + url = "https://registry.npmjs.org/open/-/open-7.3.1.tgz"; + sha512 = "f2wt9DCBKKjlFbjzGb8MOAW8LH8F0mrs1zc7KTjAJ9PZNQbfenzWbNP1VZJvw6ICMG9r14Ah6yfwPn7T7i646A=="; + }; + }; "openapi-default-setter-2.1.0" = { name = "openapi-default-setter"; packageName = "openapi-default-setter"; @@ -40316,13 +40073,13 @@ let sha512 = "2ZNlX1B/J9Q/bsM/vZKh8alC0Pn04KtDGbMN30qLRu3GkaOJH3dDMKxqJzCpYj8BOAa8G3BEsQq6kqWzkEsM7A=="; }; }; - "openapi-default-setter-7.0.1" = { + "openapi-default-setter-7.2.3" = { name = "openapi-default-setter"; packageName = "openapi-default-setter"; - version = "7.0.1"; + version = "7.2.3"; src = fetchurl { - url = "https://registry.npmjs.org/openapi-default-setter/-/openapi-default-setter-7.0.1.tgz"; - sha512 = "O9jhaZPEEJzI1HSG3Yw5rOIC0EpZ9PjRJgtksXKuSMyEoxUDnl7zQ27LuFRR1ykSMVhMt8vHMrQBQIwLW8S0yQ=="; + url = "https://registry.npmjs.org/openapi-default-setter/-/openapi-default-setter-7.2.3.tgz"; + sha512 = "wRqgsLfZB3LXx8l3RfKo8icdDPDucnrRD2EkygTMiUv5W1/OdZJmo1ChgD6FjQUZH/7U67IxEjnXPEWfnu+dRw=="; }; }; "openapi-framework-0.26.0" = { @@ -40334,13 +40091,13 @@ let sha512 = "TbgwwOnlatb+xSYh/XALQjrVO3dirVNXuONR6CLQHVI/i1e+nq/ubW8I5i6rlGpnFLZNZKXZ0gF7RMvjLBk8ow=="; }; }; - "openapi-framework-7.2.0" = { + "openapi-framework-7.2.3" = { name = "openapi-framework"; packageName = "openapi-framework"; - version = "7.2.0"; + version = "7.2.3"; src = fetchurl { - url = "https://registry.npmjs.org/openapi-framework/-/openapi-framework-7.2.0.tgz"; - sha512 = "rC4U+SIBVxoTujSIrk84PMquBwkNJfhYC7KTTDUUc7yfIyMVKRat5TOuMDyc49Ovsv+7bdkx1stf7d0N9LbtLg=="; + url = "https://registry.npmjs.org/openapi-framework/-/openapi-framework-7.2.3.tgz"; + sha512 = "3UwZFIxcJzMpYQAiwynaWGGWW/OcIdYz+gr5bO0TDOxnZjaZNo5ejru/6T9Gb7zrv15THihc3EdASvB36L0rXg=="; }; }; "openapi-jsonschema-parameters-1.2.0" = { @@ -40352,13 +40109,13 @@ let sha512 = "i2vBBFiRbOwYSvt5OG9hayJ7WUe/nl9Y151Ki1QtHb8M0zdYs2wkDhywVJnapq4/gPlrD1vmSVsYDrAjcBRJTQ=="; }; }; - "openapi-jsonschema-parameters-7.0.2" = { + "openapi-jsonschema-parameters-7.2.3" = { name = "openapi-jsonschema-parameters"; packageName = "openapi-jsonschema-parameters"; - version = "7.0.2"; + version = "7.2.3"; src = fetchurl { - url = "https://registry.npmjs.org/openapi-jsonschema-parameters/-/openapi-jsonschema-parameters-7.0.2.tgz"; - sha512 = "hCC8wsWu9qU/pWCUClAYmUyXRhAeXSZUCRV7NVlj/8+3fWrtTBwk8GKI2dRa5Up0yZ3pstGi3Ewzzuixbmh8sw=="; + url = "https://registry.npmjs.org/openapi-jsonschema-parameters/-/openapi-jsonschema-parameters-7.2.3.tgz"; + sha512 = "hnhuSbyB0gwA2KrDmMve0A+XC3rqhiQwlvOpZ+kGDz9nWqgLgFJA582LpA4V1W+nI3WruS0nEkAvfG8EHKD+qQ=="; }; }; "openapi-request-coercer-2.4.0" = { @@ -40370,13 +40127,13 @@ let sha512 = "UFRzW7C7Q31FUOFHEMYNeSuEmETH7KGlsMgMJanv0RxXkACyzKpKANPfM3oiMubQENPya3Ie9ZIq5HLvZEy/eQ=="; }; }; - "openapi-request-coercer-7.1.0" = { + "openapi-request-coercer-7.2.3" = { name = "openapi-request-coercer"; packageName = "openapi-request-coercer"; - version = "7.1.0"; + version = "7.2.3"; src = fetchurl { - url = "https://registry.npmjs.org/openapi-request-coercer/-/openapi-request-coercer-7.1.0.tgz"; - sha512 = "6nvSgvOvLYMkUBu3NbHQU6Lcol1WxDr0DsOe3oYHb2tZhokrNEuOF20QYPV+CGZYyEzc0f+Hdas774n5B0euLg=="; + url = "https://registry.npmjs.org/openapi-request-coercer/-/openapi-request-coercer-7.2.3.tgz"; + sha512 = "w+CcKjQ/UWgtA5lgrCh7t/D2FGaKyQRXgMk8aWuT/y2a/pvdZbXdmdABWdafXB6iVlBr9CKXYHJUDlBcoKH2yQ=="; }; }; "openapi-request-validator-4.2.0" = { @@ -40388,13 +40145,13 @@ let sha512 = "ukdX4T8heEI2GudiqDkk8hwfZhZP7zAz8zwngTyHtI0ZRUuU76+Zix8LVfrvSTZ2RpsPClKmYU2kDU4YZqdRHg=="; }; }; - "openapi-request-validator-7.2.0" = { + "openapi-request-validator-7.2.3" = { name = "openapi-request-validator"; packageName = "openapi-request-validator"; - version = "7.2.0"; + version = "7.2.3"; src = fetchurl { - url = "https://registry.npmjs.org/openapi-request-validator/-/openapi-request-validator-7.2.0.tgz"; - sha512 = "LgXvKco6XR5SKr8QBaM6v0++QXY5MP2yvvKv0Ckutef3css9MAyIcokDsBj6DYYzNnjmFxPx4ntuY7CZTC2ZFA=="; + url = "https://registry.npmjs.org/openapi-request-validator/-/openapi-request-validator-7.2.3.tgz"; + sha512 = "bZWIOIc7eDnPzgk159Wzur1U9hLoFTgok3coWA8J/XlNnTgnWGH+dxc8eCAdPlOLJh2AsiSu/fEGKzWJRxzCAw=="; }; }; "openapi-response-validator-4.0.0" = { @@ -40406,13 +40163,13 @@ let sha512 = "bIG8bpHT/vE+Dtz4aVyfQnweXtUdvxvJf5/D6Uu98UGf3T42Ez940ctwnlmDCQxTPqdu0yLFbMoiNf/A3jYCIg=="; }; }; - "openapi-response-validator-7.0.1" = { + "openapi-response-validator-7.2.3" = { name = "openapi-response-validator"; packageName = "openapi-response-validator"; - version = "7.0.1"; + version = "7.2.3"; src = fetchurl { - url = "https://registry.npmjs.org/openapi-response-validator/-/openapi-response-validator-7.0.1.tgz"; - sha512 = "Fxr9YdQ6s7/SIvvM888iWnc1GUn/fFxTaMFqHkUv0/eNCYoBfOwAKj9aptaRfL+BJXlsVdXWCJd3GWkwn8sIJA=="; + url = "https://registry.npmjs.org/openapi-response-validator/-/openapi-response-validator-7.2.3.tgz"; + sha512 = "j9OvLWO/6sWiR4fwdbzPbZuuj02abk+kt8Zd2aXS4mS8K7/sl7QiJGI/VmQpvq9CTlNG67eEKyqgmBzI1ovu/g=="; }; }; "openapi-sampler-1.0.0-beta.18" = { @@ -40433,13 +40190,13 @@ let sha512 = "KKpeNEvAmpy6B2JCfyrM4yWjL6vggDCVbBoR8Yfkj0Jltc6PCW+dBbcg+1yrTCuDv80qBQJ6w0ejA71DlOFegA=="; }; }; - "openapi-schema-validator-7.0.1" = { + "openapi-schema-validator-7.2.3" = { name = "openapi-schema-validator"; packageName = "openapi-schema-validator"; - version = "7.0.1"; + version = "7.2.3"; src = fetchurl { - url = "https://registry.npmjs.org/openapi-schema-validator/-/openapi-schema-validator-7.0.1.tgz"; - sha512 = "P/dmF14xWbyaFVcoS1Fs2tUP4AhJO+eEnZV+jbApeo3569/Z2fiki6Mb6Rs7cfi0ewNnV4L4HiYH+HPZaKWnjQ=="; + url = "https://registry.npmjs.org/openapi-schema-validator/-/openapi-schema-validator-7.2.3.tgz"; + sha512 = "XT8NM5e/zBBa/cydTS1IeYkCPzJp9oixvt9Y1lEx+2gsCTOooNxw9x/KEivtWMSokne7X1aR+VtsYHQtNNOSyA=="; }; }; "openapi-security-handler-2.0.4" = { @@ -40451,13 +40208,13 @@ let sha512 = "blz/UftEqYQLAByuEVITePUI9hV5Rd91CEK8yrsKDUaf3zk6cmIMafJ2qvagHqjXRRtL7fOqvsSKIeFrai+HfQ=="; }; }; - "openapi-security-handler-7.0.1" = { + "openapi-security-handler-7.2.3" = { name = "openapi-security-handler"; packageName = "openapi-security-handler"; - version = "7.0.1"; + version = "7.2.3"; src = fetchurl { - url = "https://registry.npmjs.org/openapi-security-handler/-/openapi-security-handler-7.0.1.tgz"; - sha512 = "fiRJE2Z5F0tY9QBssBX9g8Txtr0oj1BOU0nOZ6QHHXQdCYxebszGgcXD63uy0UJQwzwVOMs/AlCnKNVS/yMSEg=="; + url = "https://registry.npmjs.org/openapi-security-handler/-/openapi-security-handler-7.2.3.tgz"; + sha512 = "6wC2MXUv/FOy6uK6kkvPx1Pmh4WI3rpj7fsA1jwKCIPMwVcaJQA7/4Cfw3VWMNF0mVz7Nlxt9/aiziXHSOfiLg=="; }; }; "openapi-to-graphql-2.2.5" = { @@ -40496,6 +40253,15 @@ let sha512 = "6pi4/Fw+JIW1HHda2Ij7LRJ5QJ8f6YzaXnsRA6m44BJz8nLq/j5gVFzPBKJo+uOFhAeHqZC/3uzhTpYPga3Q/A=="; }; }; + "openapi-types-7.2.3" = { + name = "openapi-types"; + packageName = "openapi-types"; + version = "7.2.3"; + src = fetchurl { + url = "https://registry.npmjs.org/openapi-types/-/openapi-types-7.2.3.tgz"; + sha512 = "olbaNxz12R27+mTyJ/ZAFEfUruauHH27AkeQHDHRq5AF0LdNkK1SSV7EourXQDK+4aX7dv2HtyirAGK06WMAsA=="; + }; + }; "openapi3-ts-1.4.0" = { name = "openapi3-ts"; packageName = "openapi3-ts"; @@ -40766,6 +40532,15 @@ let sha512 = "+wG2v8TUU8EgzPHun1k/n45pXquQ9fHnbXVetl9rRgO6kjZszGGbraF3XPTIdgeA+s1lbRjSEftAnyT0w8ZMvQ=="; }; }; + "ora-5.3.0" = { + name = "ora"; + packageName = "ora"; + version = "5.3.0"; + src = fetchurl { + url = "https://registry.npmjs.org/ora/-/ora-5.3.0.tgz"; + sha512 = "zAKMgGXUim0Jyd6CXK9lraBnD3H5yPGBPPOkC23a2BG6hsm4Zu6OQSjQuEtV0BHDf4aKHcUFvJiGRrFuW3MG8g=="; + }; + }; "ordered-read-streams-1.0.1" = { name = "ordered-read-streams"; packageName = "ordered-read-streams"; @@ -41468,22 +41243,22 @@ let sha512 = "JcMmHiK6h6rcncj2HLayiyJZg28iJXJafXcmEGw2NjKH3WE8ZgSwyMZs7+f+aliPD57PDhB31IEgUtLXp0YZxA=="; }; }; - "pacote-11.1.13" = { + "pacote-11.1.14" = { name = "pacote"; packageName = "pacote"; - version = "11.1.13"; + version = "11.1.14"; src = fetchurl { - url = "https://registry.npmjs.org/pacote/-/pacote-11.1.13.tgz"; - sha512 = "oJ7Bg7p3izrIMhZPHCCHmMHQl+xb+pKBXL5ZYeM2oCZrw6sBRSx7f8l7F+95V2qA0BP3c1cNaaBmUNkbo6Hn9w=="; + url = "https://registry.npmjs.org/pacote/-/pacote-11.1.14.tgz"; + sha512 = "6c5OhQelaJFDfiw/Zd8MfGCvvFHurSdeGzufZMPvRFImdbNOYFciOINf3DtUNUaU3h98eCb749UyHDsgvL19+A=="; }; }; - "pacote-9.5.12" = { + "pacote-11.2.3" = { name = "pacote"; packageName = "pacote"; - version = "9.5.12"; + version = "11.2.3"; src = fetchurl { - url = "https://registry.npmjs.org/pacote/-/pacote-9.5.12.tgz"; - sha512 = "BUIj/4kKbwWg4RtnBncXPJd15piFSVNpTzY0rysSr3VnMowTYgkGKcaHrbReepAkjTr8lH2CVWRi58Spg2CicQ=="; + url = "https://registry.npmjs.org/pacote/-/pacote-11.2.3.tgz"; + sha512 = "Jphxyk1EjGyLzNwa+MkbcQUQeTIqlKcIoPq0t9ekR9ZxsTGjzhRjz/cOoL9PTVkqAW1FH7qBoVbYL4FqQGNNJg=="; }; }; "pad-0.0.5" = { @@ -41504,13 +41279,13 @@ let sha1 = "ad1f22ce1bf0fdc0d6ddd908af17f351a404b8ac"; }; }; - "paged-request-2.0.1" = { + "paged-request-2.0.2" = { name = "paged-request"; packageName = "paged-request"; - version = "2.0.1"; + version = "2.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/paged-request/-/paged-request-2.0.1.tgz"; - sha512 = "C0bB/PFk9rQskD1YEiz7uuchzqKDQGgdsEHN1ahify0UUWzgmMK4NDG9fhlQg2waogmNFwEvEeHfMRvJySpdVw=="; + url = "https://registry.npmjs.org/paged-request/-/paged-request-2.0.2.tgz"; + sha512 = "NWrGqneZImDdcMU/7vMcAOo1bIi5h/pmpJqe7/jdsy85BA/s5MSaU/KlpxwW/IVPmIwBcq2uKPrBWWhEWhtxag=="; }; }; "pako-0.2.9" = { @@ -41765,13 +41540,13 @@ let sha512 = "ztoZ4/DYeXQq4E21v169sC8qWINGpcosGv9XhTDvg9/hWvx/zrFkc9BiWxR58OJLHGk28j5BL0SDLeV2WmFZlQ=="; }; }; - "parse-json-5.1.0" = { + "parse-json-5.2.0" = { name = "parse-json"; packageName = "parse-json"; - version = "5.1.0"; + version = "5.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/parse-json/-/parse-json-5.1.0.tgz"; - sha512 = "+mi/lmVVNKFNVyLXV31ERiy2CY5E1/F6QtJFEzoChPRwwngMNXRDQ9GJ5WdE2Z2P4AujsOi0/+2qHID68KwfIQ=="; + url = "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz"; + sha512 = "ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg=="; }; }; "parse-latin-4.3.0" = { @@ -41819,13 +41594,13 @@ let sha1 = "6d5b934a456993b23d37f40a382d6f1666a8e5c6"; }; }; - "parse-path-4.0.2" = { + "parse-path-4.0.3" = { name = "parse-path"; packageName = "parse-path"; - version = "4.0.2"; + version = "4.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/parse-path/-/parse-path-4.0.2.tgz"; - sha512 = "HSqVz6iuXSiL8C1ku5Gl1Z5cwDd9Wo0q8CoffdAghP6bz8pJa1tcMC+m4N+z6VAS8QdksnIGq1TB6EgR4vPR6w=="; + url = "https://registry.npmjs.org/parse-path/-/parse-path-4.0.3.tgz"; + sha512 = "9Cepbp2asKnWTJ9x2kpw6Fe8y9JDbqwahGCTvklzd/cEq5C5JC59x2Xb0Kx+x0QZ8bvNquGO8/BWP0cwBHzSAA=="; }; }; "parse-png-2.1.0" = { @@ -41882,13 +41657,13 @@ let sha512 = "to8zT7+o6bVTyP35r2QgG1svuFGMFO1mE6ri1oWHgL9tlgnOtfjmfHmA3mOuP9HTIU/8OiZw0NG5zbyqVLxhvA=="; }; }; - "parse-torrent-9.1.0" = { + "parse-torrent-9.1.1" = { name = "parse-torrent"; packageName = "parse-torrent"; - version = "9.1.0"; + version = "9.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/parse-torrent/-/parse-torrent-9.1.0.tgz"; - sha512 = "TVht2kv44bTHEd55KgmfEHyDh5djIBZMhaD6uFWnxLhJWUXy8lrIOsjPSs4Tfzs9PTGIgGM0k+UG6CFphHgOZQ=="; + url = "https://registry.npmjs.org/parse-torrent/-/parse-torrent-9.1.1.tgz"; + sha512 = "QQePPIN0cX6bEjwAT6x2o5fUgOsz2SwXlZqzz2uvt12+uiCrgU4WYAsy3wEthQWLZQpn1utMbSbHCRDvjAnhMA=="; }; }; "parse-torrent-file-2.1.4" = { @@ -42413,13 +42188,13 @@ let sha512 = "gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw=="; }; }; - "pathval-1.1.0" = { + "pathval-1.1.1" = { name = "pathval"; packageName = "pathval"; - version = "1.1.0"; + version = "1.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/pathval/-/pathval-1.1.0.tgz"; - sha1 = "b942e6d4bde653005ef6b71361def8727d0645e0"; + url = "https://registry.npmjs.org/pathval/-/pathval-1.1.1.tgz"; + sha512 = "Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ=="; }; }; "patrisika-0.22.2" = { @@ -42467,13 +42242,13 @@ let sha512 = "4Ejy1OPxi9f2tt1rRV7Go7zmfDQ+ZectEQz3VGUQhgq62HtIRPDyG/JtnwIxs6x3uNMwo2V7q1fMvKjb+Tnpqg=="; }; }; - "peek-readable-3.1.1" = { + "peek-readable-3.1.3" = { name = "peek-readable"; packageName = "peek-readable"; - version = "3.1.1"; + version = "3.1.3"; src = fetchurl { - url = "https://registry.npmjs.org/peek-readable/-/peek-readable-3.1.1.tgz"; - sha512 = "QHJag0oYYPVkx6rVPEgCLEUMo6VRYbV3GUrqy00lxXJBEIw9LhPCP5MQI6mEfahJO9KYUP8W8qD8kC0V9RyZFQ=="; + url = "https://registry.npmjs.org/peek-readable/-/peek-readable-3.1.3.tgz"; + sha512 = "mpAcysyRJxmICBcBa5IXH7SZPvWkcghm6Fk8RekoS3v+BpbSzlZzuWbMx+GXrlUwESi9qHar4nVEZNMKylIHvg=="; }; }; "peek-stream-1.1.3" = { @@ -44583,13 +44358,13 @@ let sha512 = "WudaR0eTsDx33O3EJE16PjBRZWcX8GqCEeERw1W3hZJgH/F2a46g7jty6UGty6NeJ4CKQy8ds2CJPMiyeqaTvw=="; }; }; - "proxy-agent-4.0.0" = { + "proxy-agent-4.0.1" = { name = "proxy-agent"; packageName = "proxy-agent"; - version = "4.0.0"; + version = "4.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/proxy-agent/-/proxy-agent-4.0.0.tgz"; - sha512 = "8P0Y2SkwvKjiGU1IkEfYuTteioMIDFxPL4/j49zzt5Mz3pG1KO+mIrDG1qH0PQUHTTczjwGcYl+EzfXiFj5vUQ=="; + url = "https://registry.npmjs.org/proxy-agent/-/proxy-agent-4.0.1.tgz"; + sha512 = "ODnQnW2jc/FUVwHHuaZEfN5otg/fMbvMxz9nMSUQfJ9JU7q2SZvSULSsjLloVgJOiv9yhc8GlNMKc4GkFmcVEA=="; }; }; "proxy-from-env-1.1.0" = { @@ -44610,15 +44385,6 @@ let sha1 = "a3fdf1befb730f951965872ac2f6074c61477a56"; }; }; - "prr-0.0.0" = { - name = "prr"; - packageName = "prr"; - version = "0.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/prr/-/prr-0.0.0.tgz"; - sha1 = "1a84b85908325501411853d0081ee3fa86e2926a"; - }; - }; "prr-1.0.1" = { name = "prr"; packageName = "prr"; @@ -45609,13 +45375,13 @@ let sha512 = "VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ=="; }; }; - "qs-6.9.4" = { + "qs-6.9.6" = { name = "qs"; packageName = "qs"; - version = "6.9.4"; + version = "6.9.6"; src = fetchurl { - url = "https://registry.npmjs.org/qs/-/qs-6.9.4.tgz"; - sha512 = "A1kFqHekCTM7cz0udomYUoYNWjBebHm/5wzU/XqrBRBNWectVH0QIiN+NEcZ0Dte5hvzHwbr8+XQmguPhJ6WdQ=="; + url = "https://registry.npmjs.org/qs/-/qs-6.9.6.tgz"; + sha512 = "TIRk4aqYLNoJUbd+g2lEdz5kLWIuTMRagAXxl78Q0RiVjAOugHmeKNGdd3cwo/ktpf9aL9epCfFqWDEKysUlLQ=="; }; }; "query-string-1.0.1" = { @@ -45834,13 +45600,13 @@ let sha512 = "WAcBP5iLhg1pbjZA40WyMenjK7c5gJUY6Pi5HJ3fLJCeVFNSZv3juf20yFMKxBdvcX5GKbX/HZSfFzlLBdGTdQ=="; }; }; - "random-access-memory-3.1.1" = { + "random-access-memory-3.1.2" = { name = "random-access-memory"; packageName = "random-access-memory"; - version = "3.1.1"; + version = "3.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/random-access-memory/-/random-access-memory-3.1.1.tgz"; - sha512 = "Qy1MliJDozZ1A6Hx3UbEnm8PPCfkiG/8CArbnhrxXMx1YRJPWipgPTB9qyhn4Z7WlLvCEqPb6Bd98OayyVuwrA=="; + url = "https://registry.npmjs.org/random-access-memory/-/random-access-memory-3.1.2.tgz"; + sha512 = "wIfh4OZ9T+FRNf6rbXLvEb4FfSxyZpvGnC5kC7Xi39SyPkRYfeJyR9Xwa13iLbNyoNKNIkTFUE4g9lXFb1ZflA=="; }; }; "random-access-storage-1.4.1" = { @@ -46032,6 +45798,15 @@ let sha512 = "bwfUSB37TWkHfP+PPjb/x8BUjChFmmBK44JMfVnU7paisWqZl/o5k7ttCH+EQLnrbn2Aq8Fo1LAsyUiz+WF4CQ=="; }; }; + "rc-config-loader-4.0.0" = { + name = "rc-config-loader"; + packageName = "rc-config-loader"; + version = "4.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/rc-config-loader/-/rc-config-loader-4.0.0.tgz"; + sha512 = "//LRTblJEcqbmmro1GCmZ39qZXD+JqzuD8Y5/IZU3Dhp3A1Yr0Xn68ks8MQ6qKfKvYCWDveUmRDKDA40c+sCXw=="; + }; + }; "re-emitter-1.1.4" = { name = "re-emitter"; packageName = "re-emitter"; @@ -46689,13 +46464,13 @@ let sha512 = "pNqnf9q1hI5HHZRBkj3bAngGZW/JMCmexDlOxw4XagXY2o1327nHH54LoTjiPJ0gizoqPDRqWyX/00g0hD6w+A=="; }; }; - "reftools-1.1.7" = { + "reftools-1.1.8" = { name = "reftools"; packageName = "reftools"; - version = "1.1.7"; + version = "1.1.8"; src = fetchurl { - url = "https://registry.npmjs.org/reftools/-/reftools-1.1.7.tgz"; - sha512 = "I+KZFkQvZjMZqVWxRezTC/kQ2kLhGRZ7C+4ARbgmb5WJbvFUlbrZ/6qlz6mb+cGcPNYib+xqL8kZlxCsSZ7Hew=="; + url = "https://registry.npmjs.org/reftools/-/reftools-1.1.8.tgz"; + sha512 = "Yvz9NH8uFHzD/AXX82Li1GdAP6FzDBxEZw+njerNBBQv/XHihqsWAjNfXtaq4QD2l4TEZVnp4UbktdYSegAM3g=="; }; }; "regenerate-1.4.2" = { @@ -46770,13 +46545,13 @@ let sha512 = "J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A=="; }; }; - "regexp.prototype.flags-1.3.0" = { + "regexp.prototype.flags-1.3.1" = { name = "regexp.prototype.flags"; packageName = "regexp.prototype.flags"; - version = "1.3.0"; + version = "1.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.3.0.tgz"; - sha512 = "2+Q0C5g951OlYlJz6yu5/M33IcsESLlLfsyIaLJaG4FA2r4yP8MvVMJUUP/fVBkSpbbbZlS5gynbEWLipiiXiQ=="; + url = "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.3.1.tgz"; + sha512 = "JiBdRBq91WlY7uRJ0ds7R+dU02i6LKi8r3BuQhNXn+kmeLN+EfHhfjqMRis1zJxnlu88hq/4dx0P2OP3APRTOA=="; }; }; "regexpp-1.1.0" = { @@ -46869,13 +46644,13 @@ let sha512 = "OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A=="; }; }; - "regjsparser-0.6.4" = { + "regjsparser-0.6.6" = { name = "regjsparser"; packageName = "regjsparser"; - version = "0.6.4"; + version = "0.6.6"; src = fetchurl { - url = "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.4.tgz"; - sha512 = "64O87/dPDgfk8/RQqC4gkZoGyyWFIEUTTh80CU6CWuK5vkCGyekIx+oKcEIYtP/RAxSQltCZHCNu/mdd7fqlJw=="; + url = "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.6.tgz"; + sha512 = "jjyuCp+IEMIm3N1H1LLTJW1EISEJV9+5oHdEyrt43Pg9cDSb6rrLZei2cVWpl0xTjmmlpec/lEQGYgM7xfpGCQ=="; }; }; "rehype-parse-7.0.1" = { @@ -47454,6 +47229,15 @@ let sha1 = "4e0d56d6c9662fd31e43011c4b95aa49955421d3"; }; }; + "requireg-0.2.2" = { + name = "requireg"; + packageName = "requireg"; + version = "0.2.2"; + src = fetchurl { + url = "https://registry.npmjs.org/requireg/-/requireg-0.2.2.tgz"; + sha512 = "nYzyjnFcPNGR3lx9lwPPPnuQxv6JWEZd2Ci0u9opN7N5zUEPIhY/GbL3vMGOr2UXwEg9WwSyV9X9Y/kLFgPsOg=="; + }; + }; "requirejs-2.3.6" = { name = "requirejs"; packageName = "requirejs"; @@ -47499,15 +47283,6 @@ let sha512 = "ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w=="; }; }; - "resolve-1.18.1" = { - name = "resolve"; - packageName = "resolve"; - version = "1.18.1"; - src = fetchurl { - url = "https://registry.npmjs.org/resolve/-/resolve-1.18.1.tgz"; - sha512 = "lDfCPaMKfOJXjy0dPayzPdF1phampNWr3qFCjAu+rw/qbQmr5jWH5xN2hwh9QKfw9E5v4hwV7A+jrCmL8yjjqA=="; - }; - }; "resolve-1.19.0" = { name = "resolve"; packageName = "resolve"; @@ -47517,6 +47292,15 @@ let sha512 = "rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg=="; }; }; + "resolve-1.7.1" = { + name = "resolve"; + packageName = "resolve"; + version = "1.7.1"; + src = fetchurl { + url = "https://registry.npmjs.org/resolve/-/resolve-1.7.1.tgz"; + sha512 = "c7rwLofp8g1U+h1KNyHL/jicrKg1Ek4q+Lr33AL65uZTinUZHe30D5HlyN5V9NW0JX1D5dXQ4jqW5l7Sy/kGfw=="; + }; + }; "resolve-2.0.0-next.2" = { name = "resolve"; packageName = "resolve"; @@ -47859,13 +47643,13 @@ let sha1 = "eeeb88342fadbe8027c0f36ada921a13e6f96206"; }; }; - "rfdc-1.1.4" = { + "rfdc-1.2.0" = { name = "rfdc"; packageName = "rfdc"; - version = "1.1.4"; + version = "1.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/rfdc/-/rfdc-1.1.4.tgz"; - sha512 = "5C9HXdzK8EAqN7JDif30jqsBzavB7wLpaubisuQIGHWf2gUXSpzy6ArX/+Da8RjFpagWsCn+pIgxTMAmKw9Zug=="; + url = "https://registry.npmjs.org/rfdc/-/rfdc-1.2.0.tgz"; + sha512 = "ijLyszTMmUrXvjSooucVQwimGUk84eRcmCuLV8Xghe3UO85mjUtRAHRyoMM6XtyqbECaXuBWx18La3523sXINA=="; }; }; "rgb-regex-1.0.1" = { @@ -48012,13 +47796,13 @@ let sha512 = "/2HA0Ec70TvQnXdzynFffkjA6XN+1e2pEv/uKS5Ulca40g2L7KuOE3riasHoNVHOsFD5KKZgDsMk1CP3Tw9s+A=="; }; }; - "rollup-2.36.0" = { + "rollup-2.38.0" = { name = "rollup"; packageName = "rollup"; - version = "2.36.0"; + version = "2.38.0"; src = fetchurl { - url = "https://registry.npmjs.org/rollup/-/rollup-2.36.0.tgz"; - sha512 = "L38QyQK77bkJy9nPyeydnHFK6xMofqumh4scTV2d4RG4EFq6pGdxnn67dVHFUDJ9J0PSEQx8zn1FiVS5TydsKg=="; + url = "https://registry.npmjs.org/rollup/-/rollup-2.38.0.tgz"; + sha512 = "ay9zDiNitZK/LNE/EM2+v5CZ7drkB2xyDljvb1fQJCGnq43ZWRkhxN145oV8GmoW1YNi4sA/1Jdkr2LfawJoXw=="; }; }; "rollup-plugin-babel-4.4.0" = { @@ -48048,13 +47832,22 @@ let sha512 = "jlXbjZSQg8EIeAAvepNwhJj++qJWNJw1Cl0YnOqKtP5Djx+fFGkp3WRh+W0ASCaFG5w1jhmzDxgu3SJuVxPF4Q=="; }; }; - "rollup-plugin-node-builtins-2.1.2" = { - name = "rollup-plugin-node-builtins"; - packageName = "rollup-plugin-node-builtins"; - version = "2.1.2"; + "rollup-plugin-inject-3.0.2" = { + name = "rollup-plugin-inject"; + packageName = "rollup-plugin-inject"; + version = "3.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/rollup-plugin-node-builtins/-/rollup-plugin-node-builtins-2.1.2.tgz"; - sha1 = "24a1fed4a43257b6b64371d8abc6ce1ab14597e9"; + url = "https://registry.npmjs.org/rollup-plugin-inject/-/rollup-plugin-inject-3.0.2.tgz"; + sha512 = "ptg9PQwzs3orn4jkgXJ74bfs5vYz1NCZlSQMBUA0wKcGp5i5pA1AO3fOUEte8enhGUC+iapTCzEWw2jEFFUO/w=="; + }; + }; + "rollup-plugin-node-polyfills-0.2.1" = { + name = "rollup-plugin-node-polyfills"; + packageName = "rollup-plugin-node-polyfills"; + version = "0.2.1"; + src = fetchurl { + url = "https://registry.npmjs.org/rollup-plugin-node-polyfills/-/rollup-plugin-node-polyfills-0.2.1.tgz"; + sha512 = "4kCrKPTJ6sK4/gLL/U5QzVT8cxJcofO0OU74tnB19F40cmuAKSzH5/siithxlofFEjwvw1YAhPmbvGNA6jEroA=="; }; }; "rollup-plugin-node-resolve-5.2.0" = { @@ -48480,13 +48273,13 @@ let sha512 = "y/52Mcy7aw3gRm7IrcGDFx/bCk4AhRh2eI9luHOQM86nZsqwiRkkq2GekHXBBD+SmPidc8i2PqtYZl+pWJ8Oeg=="; }; }; - "sass-1.32.0" = { + "sass-1.32.5" = { name = "sass"; packageName = "sass"; - version = "1.32.0"; + version = "1.32.5"; src = fetchurl { - url = "https://registry.npmjs.org/sass/-/sass-1.32.0.tgz"; - sha512 = "fhyqEbMIycQA4blrz/C0pYhv2o4x2y6FYYAH0CshBw3DXh5D5wyERgxw0ptdau1orc/GhNrhF7DFN2etyOCEng=="; + url = "https://registry.npmjs.org/sass/-/sass-1.32.5.tgz"; + sha512 = "kU1yJ5zUAmPxr7f3q0YXTAd1oZjSR1g3tYyv+xu0HZSl5JiNOaE987eiz7wCUvbm4I9fGWGU2TgApTtcP4GMNQ=="; }; }; "sax-0.5.8" = { @@ -48813,15 +48606,6 @@ let sha512 = "sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ=="; }; }; - "semver-6.1.1" = { - name = "semver"; - packageName = "semver"; - version = "6.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/semver/-/semver-6.1.1.tgz"; - sha512 = "rWYq2e5iYW+fFe/oPPtYJxYgjBm8sC4rmoGdUOgBB7VnwKt6HrL793l2voH1UlsyYZpJ4g0wfjnTEO1s1NP2eQ=="; - }; - }; "semver-6.3.0" = { name = "semver"; packageName = "semver"; @@ -48840,15 +48624,6 @@ let sha512 = "+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A=="; }; }; - "semver-7.1.3" = { - name = "semver"; - packageName = "semver"; - version = "7.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/semver/-/semver-7.1.3.tgz"; - sha512 = "ekM0zfiA9SCBlsKa2X1hxyxiI4L3B6EbVJkkdgQXnSEEaHlGdvyodMruTiulSRWMMB4NeIuYNMC9rTKTz97GxA=="; - }; - }; "semver-7.2.3" = { name = "semver"; packageName = "semver"; @@ -50046,13 +49821,13 @@ let sha512 = "7REUy5U6h2wCPIg9060V5bh24gichRHfuqWC22xrp/n+dVolQXvG5RN/PqdJiPsCj7Y9voyWLbYai+Tmk3o82Q=="; }; }; - "snyk-gradle-plugin-3.11.0" = { + "snyk-gradle-plugin-3.12.0" = { name = "snyk-gradle-plugin"; packageName = "snyk-gradle-plugin"; - version = "3.11.0"; + version = "3.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/snyk-gradle-plugin/-/snyk-gradle-plugin-3.11.0.tgz"; - sha512 = "OXf1A+kcif+vslm/nsel3bDYWsGwum2PsZLETM28nG4JOgqBLYLWvCHPgH9r2aa0MKTq0nBpimvFkzDm/+2qQQ=="; + url = "https://registry.npmjs.org/snyk-gradle-plugin/-/snyk-gradle-plugin-3.12.0.tgz"; + sha512 = "WAmViagNolXsqPO/xmArlnpmisw6j/4xN6FLJ/gl9cDSSrgTh013sZlynkZj0G1v4enkelIMuqfVKXzinthm/Q=="; }; }; "snyk-module-1.9.1" = { @@ -50082,13 +49857,13 @@ let sha512 = "HHuOYEAACpUpkFgU8HT57mmxmonaJ4O3YADoSkVhnhkmJ+AowqZyJOau703dYHNrq2DvQ7qYw81H7yyxS1Nfjw=="; }; }; - "snyk-mvn-plugin-2.25.0" = { + "snyk-mvn-plugin-2.25.1" = { name = "snyk-mvn-plugin"; packageName = "snyk-mvn-plugin"; - version = "2.25.0"; + version = "2.25.1"; src = fetchurl { - url = "https://registry.npmjs.org/snyk-mvn-plugin/-/snyk-mvn-plugin-2.25.0.tgz"; - sha512 = "2NDWrMWi9K32i9CdWUy2Pce8D9myR0dxPDJJpamVt/DD3fDxH4ia701i2HdDgOjMq8PI6yIgI+vRaAW3X2GrbA=="; + url = "https://registry.npmjs.org/snyk-mvn-plugin/-/snyk-mvn-plugin-2.25.1.tgz"; + sha512 = "buhFh7iDxIxTiQy1D+bLm2aYlqHqMoQxaeLTtMw939rU4TqIrvFiTDYZo0kq8PfvCWU5yvxLHlbR5V4goObv7w=="; }; }; "snyk-nodejs-lockfile-parser-1.30.1" = { @@ -50127,13 +49902,13 @@ let sha512 = "IQcdsQBqqXVRY5DatlI7ASy4flbhtU2V7cr4P2rK9rkFnVHO6LHcitwKXVZa9ocdOmpZDzk7U6iwHJkVFcR6OA=="; }; }; - "snyk-poetry-lockfile-parser-1.1.1" = { + "snyk-poetry-lockfile-parser-1.1.2" = { name = "snyk-poetry-lockfile-parser"; packageName = "snyk-poetry-lockfile-parser"; - version = "1.1.1"; + version = "1.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/snyk-poetry-lockfile-parser/-/snyk-poetry-lockfile-parser-1.1.1.tgz"; - sha512 = "G3LX27V2KUsKObwVN4vDDjrYr5BERad9pXHAf+SST5+vZsdPUUZjd1ZUIrHgCv7IQhwq+7mZrtqedY5x7+LIGA=="; + url = "https://registry.npmjs.org/snyk-poetry-lockfile-parser/-/snyk-poetry-lockfile-parser-1.1.2.tgz"; + sha512 = "qaLNhVw/og6LXRmSuPiXcwre07ybJWh8RASF3aumk5R0cmxCU3YLmJ7pfi/N+PMpwiHCfSZFOMIGIL9jXcX9zQ=="; }; }; "snyk-policy-1.14.1" = { @@ -50145,13 +49920,13 @@ let sha512 = "C5vSkoBYxPnaqb218sm4m6N5s1BhIXlldpIX5xRNnZ0QkDwVj3dy/PfgwxRgVQh7QFGa1ajbvKmsGmm4RRsN8g=="; }; }; - "snyk-python-plugin-1.19.1" = { + "snyk-python-plugin-1.19.2" = { name = "snyk-python-plugin"; packageName = "snyk-python-plugin"; - version = "1.19.1"; + version = "1.19.2"; src = fetchurl { - url = "https://registry.npmjs.org/snyk-python-plugin/-/snyk-python-plugin-1.19.1.tgz"; - sha512 = "JoOUHnA76L3pekCblSuE9jQ9CuA5jt+GqXpsLQbEIZ0FQQTBa+0F7vfolg3Q7+s1it4ZdtgSbSWrlxCngIJt8g=="; + url = "https://registry.npmjs.org/snyk-python-plugin/-/snyk-python-plugin-1.19.2.tgz"; + sha512 = "n5Z7WiMTNtrBaDE9blnYVoX5fyXeMVhDNrQ/q21lHRAvDKDCY9tNNfduUjOVG6HbIH89mW8lLUdBNAMu/hpl+Q=="; }; }; "snyk-resolve-1.0.1" = { @@ -50217,13 +49992,13 @@ let sha512 = "2A892lrj0GcgR/9Qk81EaY2gYhCBxurV0PfmmESO6p27QPrUK1J3zdns+5QPqvUYK2q657nSj0guoIil9+7eFg=="; }; }; - "socket.io-2.4.0" = { + "socket.io-2.4.1" = { name = "socket.io"; packageName = "socket.io"; - version = "2.4.0"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/socket.io/-/socket.io-2.4.0.tgz"; - sha512 = "9UPJ1UTvKayuQfVv2IQ3k7tCQC/fboDyIK62i99dAQIyHKaBsNdTpwHLgKJ6guRWxRtC9H+138UwpaGuQO9uWQ=="; + url = "https://registry.npmjs.org/socket.io/-/socket.io-2.4.1.tgz"; + sha512 = "Si18v0mMXGAqLqCVpTxBa8MGqriHGQh8ccEOhmsmNS3thNCGBwO8WGrwMibANsWtQQ5NStdZwHqZR3naJVFc3w=="; }; }; "socket.io-3.0.5" = { @@ -50235,6 +50010,15 @@ let sha512 = "5yWQ43P/4IttmPCGKDQ3CVocBiJWGpibyhYJxgUhf69EHMzmK8XW0DkmHIoYdLmZaVZJyiEkUqpeC7rSCIqekw=="; }; }; + "socket.io-3.1.0" = { + name = "socket.io"; + packageName = "socket.io"; + version = "3.1.0"; + src = fetchurl { + url = "https://registry.npmjs.org/socket.io/-/socket.io-3.1.0.tgz"; + sha512 = "Aqg2dlRh6xSJvRYK31ksG65q4kmBOqU4g+1ukhPcoT6wNGYoIwSYPlCPuRwOO9pgLUajojGFztl6+V2opmKcww=="; + }; + }; "socket.io-adapter-0.2.0" = { name = "socket.io-adapter"; packageName = "socket.io-adapter"; @@ -50262,6 +50046,15 @@ let sha512 = "2wo4EXgxOGSFueqvHAdnmi5JLZzWqMArjuP4nqC26AtLh5PoCPsaRbRdah2xhcwTAMooZfjYiNVNkkmmSMaxOQ=="; }; }; + "socket.io-adapter-2.1.0" = { + name = "socket.io-adapter"; + packageName = "socket.io-adapter"; + version = "2.1.0"; + src = fetchurl { + url = "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.1.0.tgz"; + sha512 = "+vDov/aTsLjViYTwS9fPy5pEtTkrbEKsw2M+oVSoFGw6OD1IpvlV1VPhUzNbofCQ8oyMbdYJqDtGdmHQK6TdPg=="; + }; + }; "socket.io-client-1.0.6" = { name = "socket.io-client"; packageName = "socket.io-client"; @@ -50307,13 +50100,13 @@ let sha1 = "2609601f59e6a7fab436a53be3d333fbbfcbd30a"; }; }; - "socket.io-parser-3.3.1" = { + "socket.io-parser-3.3.2" = { name = "socket.io-parser"; packageName = "socket.io-parser"; - version = "3.3.1"; + version = "3.3.2"; src = fetchurl { - url = "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-3.3.1.tgz"; - sha512 = "1QLvVAe8dTz+mKmZ07Swxt+LAo4Y1ff50rlyoEx00TQmDFVQYPfcqGvIDJLGaBdhdNCecXtyKpD+EgKGcmmbuQ=="; + url = "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-3.3.2.tgz"; + sha512 = "FJvDBuOALxdCI9qwRrO/Rfp9yfndRtc1jSgVgV8FDraihmSP/MLGD5PEuJrNfjALvcQ+vMDM/33AWOYP/JSjDg=="; }; }; "socket.io-parser-3.4.1" = { @@ -50325,13 +50118,13 @@ let sha512 = "11hMgzL+WCLWf1uFtHSNvliI++tcRUWdoeYuwIl+Axvwy9z2gQM+7nJyN3STj1tLj5JyIUH8/gpDGxzAlDdi0A=="; }; }; - "socket.io-parser-4.0.3" = { + "socket.io-parser-4.0.4" = { name = "socket.io-parser"; packageName = "socket.io-parser"; - version = "4.0.3"; + version = "4.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-4.0.3.tgz"; - sha512 = "m4ybFiP4UYVORRt7jcdqf8UWx+ywVdAqqsJyruXxAdD3Sv6MDemijWij34mOWdMJ55bEdIb9jACBhxUgNK6sxw=="; + url = "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-4.0.4.tgz"; + sha512 = "t+b0SS+IxG7Rxzda2EVvyBZbvFPBCjJoyHuE0P//7OAsN23GItzDRdWa6ALxZI/8R5ygK7jAR6t028/z+7295g=="; }; }; "sockjs-0.3.20" = { @@ -50820,13 +50613,13 @@ let sha512 = "U+MTEOO0AiDzxwFvoa4JVnMV6mZlJKk2sBLt90s7G0Gd0Mlknc7kxEn3nuDPNZRta7O2uy8oLcZLVT+4sqNZHQ=="; }; }; - "spdx-license-list-6.3.0" = { + "spdx-license-list-6.4.0" = { name = "spdx-license-list"; packageName = "spdx-license-list"; - version = "6.3.0"; + version = "6.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/spdx-license-list/-/spdx-license-list-6.3.0.tgz"; - sha512 = "Qz8ru5VVK5T4cFOBrshIzggzrQ15fVBcpjpZLCVz2j9KNnpslGbw8w1r06v2vi6YP6bnUSY5CXsFCfUypLZ2GA=="; + url = "https://registry.npmjs.org/spdx-license-list/-/spdx-license-list-6.4.0.tgz"; + sha512 = "4BxgJ1IZxTJuX1YxMGu2cRYK46Bk9zJNTK2/R0wNZR0cm+6SVl26/uG7FQmQtxoJQX1uZ0EpTi2L7zvMLboaBA=="; }; }; "spdy-1.32.5" = { @@ -51081,6 +50874,15 @@ let sha512 = "rjvqHFUaSGnzxDy2AHCwhHy6Zp6MNJzCPGYju4kD8yi6bze4d1/zMTg6C7JI49b7/EM7jKMTvyfN/4ylBKdwfw=="; }; }; + "sqlite3-5.0.1" = { + name = "sqlite3"; + packageName = "sqlite3"; + version = "5.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/sqlite3/-/sqlite3-5.0.1.tgz"; + sha512 = "kh2lTIcYNfmVcvhVJihsYuPj9U0xzBbh6bmqILO2hkryWSC9RRhzYmkIDtJkJ+d8Kg4wZRJ0T1reyHUEspICfg=="; + }; + }; "sqlstring-2.3.1" = { name = "sqlstring"; packageName = "sqlstring"; @@ -51828,6 +51630,15 @@ let sha1 = "91d5f5130d1cef96dcfa7f726945188741d09ee4"; }; }; + "stream-buffers-3.0.2" = { + name = "stream-buffers"; + packageName = "stream-buffers"; + version = "3.0.2"; + src = fetchurl { + url = "https://registry.npmjs.org/stream-buffers/-/stream-buffers-3.0.2.tgz"; + sha512 = "DQi1h8VEBA/lURbSwFtEHnSTb9s2/pwLEaFuNhXwy1Dx3Sa0lOuYT2yNUr4/j2fs8oCAMANtrZ5OrPZtyVs3MQ=="; + }; + }; "stream-chain-2.2.4" = { name = "stream-chain"; packageName = "stream-chain"; @@ -52125,13 +51936,13 @@ let sha1 = "e8aafc0ac1855b4666929ed7dd1275df5d6c811b"; }; }; - "string-kit-0.11.8" = { + "string-kit-0.11.10" = { name = "string-kit"; packageName = "string-kit"; - version = "0.11.8"; + version = "0.11.10"; src = fetchurl { - url = "https://registry.npmjs.org/string-kit/-/string-kit-0.11.8.tgz"; - sha512 = "lJyXXoptFpgOXL9cWZXtf45jxdbP5qYtaGZsmtFm4CZy9q6wwzvRzQcJiFeLx8I/0RpzBao9WCOGpbyfW2CMWA=="; + url = "https://registry.npmjs.org/string-kit/-/string-kit-0.11.10.tgz"; + sha512 = "ATVmIpMrqxPFNiNQTnmEeXzt3743O6DubJWh2MiAQV1ifKd4PcCjBcybCdb0ENnPO1T6asORK9nOpygn1BATag=="; }; }; "string-length-1.0.1" = { @@ -52170,15 +51981,6 @@ let sha1 = "3aaad855b3e9735c5e412dfe72198ccf99c7f48e"; }; }; - "string-range-1.2.2" = { - name = "string-range"; - packageName = "string-range"; - version = "1.2.2"; - src = fetchurl { - url = "https://registry.npmjs.org/string-range/-/string-range-1.2.2.tgz"; - sha1 = "a893ed347e72299bc83befbbf2a692a8d239d5dd"; - }; - }; "string-similarity-2.0.0" = { name = "string-similarity"; packageName = "string-similarity"; @@ -52683,13 +52485,13 @@ let sha1 = "0fdedc68e91addcfcb2e6be9c262581a6e8c28aa"; }; }; - "strtok3-6.0.6" = { + "strtok3-6.0.8" = { name = "strtok3"; packageName = "strtok3"; - version = "6.0.6"; + version = "6.0.8"; src = fetchurl { - url = "https://registry.npmjs.org/strtok3/-/strtok3-6.0.6.tgz"; - sha512 = "fVxvAEKDwHFfbQO1yKxKBPfkWZyBr0Zf20UQ/mblbkAQe5h0Xdd2jDb3Mh7yRZd7LSItJ9JWgQWelpEmVoBe2g=="; + url = "https://registry.npmjs.org/strtok3/-/strtok3-6.0.8.tgz"; + sha512 = "QLgv+oiXwXgCgp2PdPPa+Jpp4D9imK9e/0BsyfeFMr6QL6wMVqoVn9+OXQ9I7MZbmUzN6lmitTJ09uwS2OmGcw=="; }; }; "structured-source-3.0.2" = { @@ -52737,13 +52539,13 @@ let sha512 = "7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g=="; }; }; - "stylelint-13.8.0" = { + "stylelint-13.9.0" = { name = "stylelint"; packageName = "stylelint"; - version = "13.8.0"; + version = "13.9.0"; src = fetchurl { - url = "https://registry.npmjs.org/stylelint/-/stylelint-13.8.0.tgz"; - sha512 = "iHH3dv3UI23SLDrH4zMQDjLT9/dDIz/IpoFeuNxZmEx86KtfpjDOscxLTFioQyv+2vQjPlRZnK0UoJtfxLICXQ=="; + url = "https://registry.npmjs.org/stylelint/-/stylelint-13.9.0.tgz"; + sha512 = "VVWH2oixOAxpWL1vH+V42ReCzBjW2AeqskSAbi8+3OjV1Xg3VZkmTcAqBZfRRvJeF4BvYuDLXebW3tIHxgZDEg=="; }; }; "stylelint-8.4.0" = { @@ -53142,13 +52944,13 @@ let sha512 = "xk5CMbwoQVI53rTq9o/iMojAqXP5NT4/+TMeTP4uXWDIH18pB9AXgO5Olqt0RXuf3jH032DA4DS4qzem6XdXAw=="; }; }; - "swagger-ui-dist-3.38.0" = { + "swagger-ui-dist-3.40.0" = { name = "swagger-ui-dist"; packageName = "swagger-ui-dist"; - version = "3.38.0"; + version = "3.40.0"; src = fetchurl { - url = "https://registry.npmjs.org/swagger-ui-dist/-/swagger-ui-dist-3.38.0.tgz"; - sha512 = "sselV8VY6f1BBauY9Sdmwz0jVaWTnGuHQWei7BaTpiUrLcoEUdmmK5bKefLXiwq+dx//es2S8mOvUS+tcXDsKg=="; + url = "https://registry.npmjs.org/swagger-ui-dist/-/swagger-ui-dist-3.40.0.tgz"; + sha512 = "R0eaS61/cOE6wiFOY7AtmoTBV5lZqmyosuE14G9nAudp5MNsNfCTdI9MWJLs8iF28HXdtH8EACiFFtUbQomHog=="; }; }; "swagger2openapi-6.2.3" = { @@ -53160,13 +52962,13 @@ let sha512 = "cUUktzLpK69UwpMbcTzjMw2ns9RZChfxh56AHv6+hTx3StPOX2foZjPgds3HlJcINbxosYYBn/D3cG8nwcCWwQ=="; }; }; - "swagger2openapi-7.0.4" = { + "swagger2openapi-7.0.5" = { name = "swagger2openapi"; packageName = "swagger2openapi"; - version = "7.0.4"; + version = "7.0.5"; src = fetchurl { - url = "https://registry.npmjs.org/swagger2openapi/-/swagger2openapi-7.0.4.tgz"; - sha512 = "MGzJU44XSXHKxvtx/NbBnP3z5s1KzN5xhqIBERoZEKfRiZ56lNUo5TGOv0dJ8n7JGeheCeU0CydfvbSOh+DaXg=="; + url = "https://registry.npmjs.org/swagger2openapi/-/swagger2openapi-7.0.5.tgz"; + sha512 = "Hzxse+VTX0u8xBgYJ665EjO6BfvW2PN9Yv+yIjBDm6ga9jl83+4CEdCCpznH+ILr5MS8bIIXB+XcQUM3u25w4g=="; }; }; "sway-1.0.0" = { @@ -53268,13 +53070,13 @@ let sha512 = "YPPlu67mdnHGTup2A8ff7BC2Pjq0e0Yp/IyTFN03zWO0RcK07uLcbi7C2KpGR2FvWbaB0+bfE27a+sBKebSo7w=="; }; }; - "systeminformation-4.34.2" = { + "systeminformation-4.34.9" = { name = "systeminformation"; packageName = "systeminformation"; - version = "4.34.2"; + version = "4.34.9"; src = fetchurl { - url = "https://registry.npmjs.org/systeminformation/-/systeminformation-4.34.2.tgz"; - sha512 = "1LynQMla38gIjzyupKBnBLIo4B0TQf3vdhs2bjKPtN02EymuSWpoAM1KX/6+gtFLVmn91MfllE3wSVGQcVTHDw=="; + url = "https://registry.npmjs.org/systeminformation/-/systeminformation-4.34.9.tgz"; + sha512 = "jvc4DlJeXazsen2riPDR97GSaHNCmoL+mgfB8IXxmpNpNd7kv5MfkuihXEmF1/prBFtqzUA2lxnt1qp4maOMQA=="; }; }; "table-3.8.3" = { @@ -53377,13 +53179,13 @@ let sha1 = "7cbcb64b5a141b6a2efc2c5d2c67b4e150b2a268"; }; }; - "tail-2.1.1" = { + "tail-2.2.0" = { name = "tail"; packageName = "tail"; - version = "2.1.1"; + version = "2.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/tail/-/tail-2.1.1.tgz"; - sha512 = "TBGFzKYD5Af/ts7DBypAQNmPQlt5Uq0bqcf4eRwnfvQcLnSTqruA8h3ps7CKIEPcwX7z9YnP3B6bBHLWYN7+ag=="; + url = "https://registry.npmjs.org/tail/-/tail-2.2.0.tgz"; + sha512 = "QqUMtWlnzArTvGyjVnAE5fAiXEm2Psvk/BlE7vWx2/dIEWMsAhcNPz7iW6WTiSM8h1fjtCkRMsaWBS1j6rpGBg=="; }; }; "taketalk-1.0.0" = { @@ -53485,6 +53287,15 @@ let sha512 = "0b4HOimQHj9nXNEAA7zWwMM91Zhhba3pspja6sQbgTpynOJf+bkjBnfybNYzbpLbnwXnbyB4LOREvlyXLkCHSg=="; }; }; + "tar-6.1.0" = { + name = "tar"; + packageName = "tar"; + version = "6.1.0"; + src = fetchurl { + url = "https://registry.npmjs.org/tar/-/tar-6.1.0.tgz"; + sha512 = "DUCttfhsnLCjwoDoFcI+B2iJgYa93vBnDUATYEeRx6sntCTdN01VnqsIuTlALXla/LWooNg0yEGeB+Y8WdFxGA=="; + }; + }; "tar-fs-1.16.3" = { name = "tar-fs"; packageName = "tar-fs"; @@ -53728,13 +53539,13 @@ let sha512 = "wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg=="; }; }; - "terminal-kit-1.44.3" = { + "terminal-kit-1.45.9" = { name = "terminal-kit"; packageName = "terminal-kit"; - version = "1.44.3"; + version = "1.45.9"; src = fetchurl { - url = "https://registry.npmjs.org/terminal-kit/-/terminal-kit-1.44.3.tgz"; - sha512 = "G7V7l2pqJqa5llfn/ORDgKlUMGG27n1nxuxwWmZ4/1hCURz+yldKrknirIeu/kyK5M3UdtgPJ0wGAAXw+0aVfw=="; + url = "https://registry.npmjs.org/terminal-kit/-/terminal-kit-1.45.9.tgz"; + sha512 = "uf648u2bfWz3lX9iBVgdTebIMVc78OE0cgEGuuNQWWKU8soaf+R09fYQWTpMRiz59nKxn78s8wZptGmt/hAyfQ=="; }; }; "terminal-link-2.1.1" = { @@ -53800,13 +53611,13 @@ let sha512 = "3qAQpykRTD5DReLu5/cwpsg7EZFzP3Q0Hp2XUWJUw2mpq2jfgOKTZr8IZKKnNieRVVo1UauROTdhbQJZveGKtQ=="; }; }; - "terser-webpack-plugin-5.0.3" = { + "terser-webpack-plugin-5.1.1" = { name = "terser-webpack-plugin"; packageName = "terser-webpack-plugin"; - version = "5.0.3"; + version = "5.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.0.3.tgz"; - sha512 = "zFdGk8Lh9ZJGPxxPE6jwysOlATWB8GMW8HcfGULWA/nPal+3VdATflQvSBSLQJRCmYZnfFJl6vkRTiwJGNgPiQ=="; + url = "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.1.1.tgz"; + sha512 = "5XNNXZiR8YO6X6KhSGXfY0QrGrCRlSwAEjIIrlRQR4W8nP69TaJUlh3bkuac6zzgspiGPfKEHcY295MMVExl5Q=="; }; }; "test-exclude-6.0.0" = { @@ -54592,13 +54403,13 @@ let sha1 = "ceeefc717a76c4316f126d0b9dbaa55d7e7df01a"; }; }; - "token-types-2.0.0" = { + "token-types-2.1.1" = { name = "token-types"; packageName = "token-types"; - version = "2.0.0"; + version = "2.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/token-types/-/token-types-2.0.0.tgz"; - sha512 = "WWvu8sGK8/ZmGusekZJJ5NM6rRVTTDO7/bahz4NGiSDb/XsmdYBn6a1N/bymUHuWYTWeuLUg98wUzvE4jPdCZw=="; + url = "https://registry.npmjs.org/token-types/-/token-types-2.1.1.tgz"; + sha512 = "wnQcqlreS6VjthyHO3Y/kpK/emflxDBNhlNUPfh7wE39KnuDdOituXomIbyI79vBtF0Ninpkh72mcuRHo+RG3Q=="; }; }; "toml-2.3.6" = { @@ -55150,6 +54961,15 @@ let sha512 = "uZtkfKblCEQtZKBF6EBXVZeQNl82yqtDQdv+eck8u7tdPxjLu2/lp5/uPW+um2tpuxINHWy3GhiccY7QgEaVHQ=="; }; }; + "tslib-2.1.0" = { + name = "tslib"; + packageName = "tslib"; + version = "2.1.0"; + src = fetchurl { + url = "https://registry.npmjs.org/tslib/-/tslib-2.1.0.tgz"; + sha512 = "hcVC3wYEziELGGmEEXue7D75zbwIIVUMWAVbHItGPx0ziyXxrOMQx4rQEVEV45Ut/1IotuEvwqPopzIOkDMf0A=="; + }; + }; "tslint-5.20.1" = { name = "tslint"; packageName = "tslint"; @@ -55186,13 +55006,13 @@ let sha512 = "g5JVHCIJwzfISaXpXE1qvNalca5Jwob6FjI4AoPlqMusJ6ftFE7IkkFoMhVLRgK+4Kx3gkzb8UZK5t5yTTvEmA=="; }; }; - "tsutils-3.18.0" = { + "tsutils-3.20.0" = { name = "tsutils"; packageName = "tsutils"; - version = "3.18.0"; + version = "3.20.0"; src = fetchurl { - url = "https://registry.npmjs.org/tsutils/-/tsutils-3.18.0.tgz"; - sha512 = "D9Tu8nE3E7D1Bsf/V29oMHceMf+gnVO+pDguk/A5YRo1cLpkiQ48ZnbbS57pvvHeY+OIeNQx1vf4ASPlEtRpcA=="; + url = "https://registry.npmjs.org/tsutils/-/tsutils-3.20.0.tgz"; + sha512 = "RYbuQuvkhuqVeXweWT3tJLKOEJ/UUw9GjNEZGWdrLLlM+611o1gwLHBpxoFJKKl25fLprp2eVthtKs5JOrNeXg=="; }; }; "ttf2woff-2.0.2" = { @@ -55303,6 +55123,15 @@ let sha512 = "pqZ6WrHFGnxXC9q2xJ3Qa7EoLAwrojgFRajWZjxTKwbz9vnNnyi8lLjiD5h86UTPOcMlEyHjm6NMhjEDdlc25A=="; }; }; + "turndown-7.0.0" = { + name = "turndown"; + packageName = "turndown"; + version = "7.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/turndown/-/turndown-7.0.0.tgz"; + sha512 = "G1FfxfR0mUNMeGjszLYl3kxtopC4O9DRRiMlMDDVHvU1jaBkGFg4qxIyjIk2aiKLHyDyZvZyu4qBO2guuYBy3Q=="; + }; + }; "tv4-1.3.0" = { name = "tv4"; packageName = "tv4"; @@ -55564,15 +55393,6 @@ let sha1 = "867ac74e3864187b1d3d47d996a78ec5c8830777"; }; }; - "typedarray-to-buffer-1.0.4" = { - name = "typedarray-to-buffer"; - packageName = "typedarray-to-buffer"; - version = "1.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-1.0.4.tgz"; - sha1 = "9bb8ba0e841fb3f4cf1fe7c245e9f3fa8a5fe99c"; - }; - }; "typedarray-to-buffer-3.1.5" = { name = "typedarray-to-buffer"; packageName = "typedarray-to-buffer"; @@ -55699,13 +55519,13 @@ let sha1 = "5c080e5d661cbbe38259d2e70a3c7253e873881d"; }; }; - "typo-geom-0.11.0" = { + "typo-geom-0.11.1" = { name = "typo-geom"; packageName = "typo-geom"; - version = "0.11.0"; + version = "0.11.1"; src = fetchurl { - url = "https://registry.npmjs.org/typo-geom/-/typo-geom-0.11.0.tgz"; - sha512 = "0f7MjfJdUOYCLfUpVegTIukkWd1nkvN6CX6oXF8hcx9Hu04qhQfTC+gOffH8bhSjsSiLhIy7aRuzgIAj4UdyyQ=="; + url = "https://registry.npmjs.org/typo-geom/-/typo-geom-0.11.1.tgz"; + sha512 = "DqAx/eGYLJprgRHEV2cMQBzRJo2N9UdBJ2eN54OeZ9chHbq+9U059lLY2DUxeGMff5rtTyG966CuL9aO4csxbQ=="; }; }; "ua-parser-js-0.7.21" = { @@ -55717,13 +55537,13 @@ let sha512 = "+O8/qh/Qj8CgC6eYBVBykMrNtp5Gebn4dlGD/kKXVkJNDwyrAwSIqwz8CDf+tsAIWVycKcku6gIXJ0qwx/ZXaQ=="; }; }; - "ua-parser-js-0.7.22" = { + "ua-parser-js-0.7.23" = { name = "ua-parser-js"; packageName = "ua-parser-js"; - version = "0.7.22"; + version = "0.7.23"; src = fetchurl { - url = "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.22.tgz"; - sha512 = "YUxzMjJ5T71w6a8WWVcMGM6YWOTX27rCoIQgLXiWaxqXSx9D7DNjiGWn1aJIRSQ5qr0xuhra77bSIh6voR/46Q=="; + url = "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.23.tgz"; + sha512 = "m4hvMLxgGHXG3O3fQVAyyAQpZzDOvwnhOTjYz5Xmr7r/+LpkNy3vJXdVRWgd1TkAb7NGROZuSy96CrlNVjA7KA=="; }; }; "uc.micro-1.0.6" = { @@ -55744,15 +55564,6 @@ let sha1 = "29c5733148057bb4e1f75df35b7a9cb72e6a59dd"; }; }; - "uglify-js-3.11.6" = { - name = "uglify-js"; - packageName = "uglify-js"; - version = "3.11.6"; - src = fetchurl { - url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.11.6.tgz"; - sha512 = "oASI1FOJ7BBFkSCNDZ446EgkSuHkOZBuqRFrwXIKWCoXw8ZXQETooTQjkAcBS03Acab7ubCKsXnwuV2svy061g=="; - }; - }; "uglify-js-3.12.4" = { name = "uglify-js"; packageName = "uglify-js"; @@ -55762,6 +55573,15 @@ let sha512 = "L5i5jg/SHkEqzN18gQMTWsZk3KelRsfD1wUVNqtq0kzqWQqcJjyL8yc1o8hJgRrWqrAl2mUFbhfznEIoi7zi2A=="; }; }; + "uglify-js-3.12.5" = { + name = "uglify-js"; + packageName = "uglify-js"; + version = "3.12.5"; + src = fetchurl { + url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.12.5.tgz"; + sha512 = "SgpgScL4T7Hj/w/GexjnBHi3Ien9WS1Rpfg5y91WXMj9SY997ZCQU76mH4TpLwwfmMvoOU8wiaRkIf6NaH3mtg=="; + }; + }; "uglify-js-3.4.10" = { name = "uglify-js"; packageName = "uglify-js"; @@ -56842,13 +56662,13 @@ let sha1 = "f90b858507f81dea4dcfbb3c4c3dbfa2b557faaa"; }; }; - "uri-js-4.4.0" = { + "uri-js-4.4.1" = { name = "uri-js"; packageName = "uri-js"; - version = "4.4.0"; + version = "4.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/uri-js/-/uri-js-4.4.0.tgz"; - sha512 = "B0yRTzYdUCCn9n+F4+Gh4yIDtMQcaJsmYBDsTSG8g/OejKBodLQ2IHfN3bM7jUsRXndopT7OIXWdYqc1fjmV6g=="; + url = "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz"; + sha512 = "7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg=="; }; }; "urijs-1.19.5" = { @@ -56869,13 +56689,13 @@ let sha1 = "da937f7a62e21fec1fd18d49b35c2935067a6c72"; }; }; - "urkel-0.6.3" = { + "urkel-0.7.0" = { name = "urkel"; packageName = "urkel"; - version = "0.6.3"; + version = "0.7.0"; src = fetchurl { - url = "https://registry.npmjs.org/urkel/-/urkel-0.6.3.tgz"; - sha512 = "aY/u3cpCRRwa3XjUGG8DcLcQJSNmQ0+qXDeT0igDytKhrK+yiusZ7mYdPRzmtbQ2CPozHhwsmVxCVBkPBp9jDQ=="; + url = "https://registry.npmjs.org/urkel/-/urkel-0.7.0.tgz"; + sha512 = "7Z3Gor4DkKKi0Ehp6H9xehWXqyL12+PA4JM41dcVc1LWks4zI4PGWv6DWgxaLCC+otpEuGdq3Vh5ayD/Mvzfbg=="; }; }; "url-0.10.3" = { @@ -57212,6 +57032,15 @@ let sha512 = "g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA=="; }; }; + "util.promisify-1.1.1" = { + name = "util.promisify"; + packageName = "util.promisify"; + version = "1.1.1"; + src = fetchurl { + url = "https://registry.npmjs.org/util.promisify/-/util.promisify-1.1.1.tgz"; + sha512 = "/s3UsZUrIfa6xDhr7zZhnE9SLQ5RIXyYfiVnMMyMDzOc8WhWN4Nbh36H842OyurKbCDAesZOJaVyvmSl6fhGQw=="; + }; + }; "utila-0.4.0" = { name = "utila"; packageName = "utila"; @@ -57329,15 +57158,6 @@ let sha512 = "fX6Z5o4m6XsXBdli9g7DtWgAx+osMsRRZFKma1mIUsLCz6vRvv+pz5VNbyu9UEDzpMWulZfvpgb/cmDXVulYFQ=="; }; }; - "uuid-8.3.1" = { - name = "uuid"; - packageName = "uuid"; - version = "8.3.1"; - src = fetchurl { - url = "https://registry.npmjs.org/uuid/-/uuid-8.3.1.tgz"; - sha512 = "FOmRr+FmWEIG8uhZv6C2bTgEVXsHk08kE7mPlrBbEe+c3r9pjceVPgupIfNIhc4yx55H69OXANrUaSuu9eInKg=="; - }; - }; "uuid-8.3.2" = { name = "uuid"; packageName = "uuid"; @@ -57599,13 +57419,13 @@ let sha1 = "cfde751860a15822db3b132bc59b116a4adaf01b"; }; }; - "vega-5.17.3" = { + "vega-5.19.1" = { name = "vega"; packageName = "vega"; - version = "5.17.3"; + version = "5.19.1"; src = fetchurl { - url = "https://registry.npmjs.org/vega/-/vega-5.17.3.tgz"; - sha512 = "c8N2pNg9MMmC6shNpoxVw3aVp2XPFOgmWNX5BEOAdCaGHRnSgzNy44+gYdGRaIe6+ljTzZg99Mf+OLO50IP42A=="; + url = "https://registry.npmjs.org/vega/-/vega-5.19.1.tgz"; + sha512 = "UE6/c9q9kzuz4HULFuU9HscBASoZa+zcXqGKdbQP545Nwmhd078QpcH+wZsq9lYfiTxmFtzLK/a0OH0zhkghvA=="; }; }; "vega-canvas-1.2.6" = { @@ -57689,13 +57509,13 @@ let sha512 = "oTAeub3KWm6nKhXoYCx1q9G3K43R6/pDMXvqDlTSUtjoY7b/Gixm8iLcir5S9bPjvH40n4AcbZsPmNfL/Up77A=="; }; }; - "vega-functions-5.10.0" = { + "vega-functions-5.12.0" = { name = "vega-functions"; packageName = "vega-functions"; - version = "5.10.0"; + version = "5.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/vega-functions/-/vega-functions-5.10.0.tgz"; - sha512 = "1l28OxUwOj8FEvRU62Oz2hiTuDECrvx1DPU1qLebBKhlgaKbcCk3XyHrn1kUzhMKpXq+SFv5VPxchZP47ASSvQ=="; + url = "https://registry.npmjs.org/vega-functions/-/vega-functions-5.12.0.tgz"; + sha512 = "3hljmGs+gR7TbO/yYuvAP9P5laKISf1GKk4yRHLNdM61fWgKm8pI3f6LY2Hvq9cHQFTiJ3/5/Bx2p1SX5R4quQ=="; }; }; "vega-geo-4.3.8" = { @@ -57734,13 +57554,13 @@ let sha512 = "e5enQECdau7rJob0NFB5pGumh3RaaSWWm90+boxMy3ay2b4Ki/3XIvo+C4F1Lx04qSxvQF7tO2LJcklRm6nqRA=="; }; }; - "vega-parser-6.1.2" = { + "vega-parser-6.1.3" = { name = "vega-parser"; packageName = "vega-parser"; - version = "6.1.2"; + version = "6.1.3"; src = fetchurl { - url = "https://registry.npmjs.org/vega-parser/-/vega-parser-6.1.2.tgz"; - sha512 = "aGyZrNzPrBruEb/WhemKDuDjQsIkMDGIgnSJci0b+9ZVxjyAzMl7UfGbiYorPiJlnIercjUJbMoFD6fCIf4gqQ=="; + url = "https://registry.npmjs.org/vega-parser/-/vega-parser-6.1.3.tgz"; + sha512 = "8oiVhhW26GQ4GZBvolId8FVFvhn3s1KGgPlD7Z+4P2wkV+xe5Nqu0TEJ20F/cn3b88fd0Vj48X3BH3dlSeKNFg=="; }; }; "vega-projection-1.4.5" = { @@ -57779,22 +57599,22 @@ let sha512 = "yE0to0prA9E5PBJ/XP77TO0BMkzyUVyt7TH5PAwj+CZT7PMsMO6ozihelRhoIiVcP0Ae/ByCEQBUQkzN5zJ0ZA=="; }; }; - "vega-scenegraph-4.9.2" = { + "vega-scenegraph-4.9.3" = { name = "vega-scenegraph"; packageName = "vega-scenegraph"; - version = "4.9.2"; + version = "4.9.3"; src = fetchurl { - url = "https://registry.npmjs.org/vega-scenegraph/-/vega-scenegraph-4.9.2.tgz"; - sha512 = "epm1CxcB8AucXQlSDeFnmzy0FCj+HV2k9R6ch2lfLRln5lPLEfgJWgFcFhVf5jyheY0FSeHH52Q5zQn1vYI1Ow=="; + url = "https://registry.npmjs.org/vega-scenegraph/-/vega-scenegraph-4.9.3.tgz"; + sha512 = "lBvqLbXqrqRCTGJmSgzZC/tLR/o+TXfakbdhDzNdpgTavTaQ65S/67Gpj5hPpi77DvsfZUIY9lCEeO37aJhy0Q=="; }; }; - "vega-selections-5.1.5" = { + "vega-selections-5.3.0" = { name = "vega-selections"; packageName = "vega-selections"; - version = "5.1.5"; + version = "5.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/vega-selections/-/vega-selections-5.1.5.tgz"; - sha512 = "oRSsfkqYqA5xfEJqDpgnSDd+w0k6p6SGYisMD6rGXMxuPl0x0Uy6RvDr4nbEtB+dpWdoWEvgrsZVS6axyDNWvQ=="; + url = "https://registry.npmjs.org/vega-selections/-/vega-selections-5.3.0.tgz"; + sha512 = "vC4NPsuN+IffruFXfH0L3i2A51RgG4PqpLv85TvrEAIYnSkyKDE4bf+wVraR3aPdnLLkc3+tYuMi6le5FmThIA=="; }; }; "vega-statistics-1.7.9" = { @@ -58229,13 +58049,13 @@ let sha1 = "c066afb582bb1cb4128d60ea92392e94d5e9dbec"; }; }; - "vsce-1.83.0" = { + "vsce-1.84.0" = { name = "vsce"; packageName = "vsce"; - version = "1.83.0"; + version = "1.84.0"; src = fetchurl { - url = "https://registry.npmjs.org/vsce/-/vsce-1.83.0.tgz"; - sha512 = "gyF/xtCOFcKO+EvC0FQu5jPECHz2XKMWcw62gqwJJ22lVvlj58t49sWe1IGl9S5NpxCek+QMm6V9i/cDwGWs/Q=="; + url = "https://registry.npmjs.org/vsce/-/vsce-1.84.0.tgz"; + sha512 = "mRJDTMC/1GO7byz6dleY28CZo97cM1p0nU3EEMT5bGMpi5Yga3dKdgTvmwgSQF5BYWozNSNSqN1zih5SYzMZjA=="; }; }; "vscode-css-languageservice-3.0.13" = { @@ -58634,13 +58454,13 @@ let sha512 = "u0Lw+IYlgbEJFF6/qAqG2d1jQmJl0eyAGJHoAJqr2HT4M2BNuQYSEiSE75f52pXHSJm8AlTjnLLbBFPrdz2hpA=="; }; }; - "vscode-test-1.4.1" = { + "vscode-test-1.5.0" = { name = "vscode-test"; packageName = "vscode-test"; - version = "1.4.1"; + version = "1.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/vscode-test/-/vscode-test-1.4.1.tgz"; - sha512 = "Ls7+JyC06cUCuomlTYk4aNJI00Rri09hgtkNl3zfQ1bj6meXglpSPpuzJ/RPNetlUHFMm4eGs0Xr/H5pFPVwfQ=="; + url = "https://registry.npmjs.org/vscode-test/-/vscode-test-1.5.0.tgz"; + sha512 = "svwE/mhBBqrB77C1U7pkUKfUmxnkzg0dLGi1vEmitsleu88oNsqZEhG3ANZrL/Ia4m0CW0oYEKRw2EojpFxLlQ=="; }; }; "vscode-textbuffer-1.0.0" = { @@ -58769,13 +58589,13 @@ let sha512 = "8FdXi0gieEwh1IprIBafpiJWcApwrU+l2FEj8c1HtHFdNXMd0+2jUSjBVmcQYohf/E72irwAXEXLga6TQcB3FA=="; }; }; - "vue-eslint-parser-7.3.0" = { + "vue-eslint-parser-7.4.1" = { name = "vue-eslint-parser"; packageName = "vue-eslint-parser"; - version = "7.3.0"; + version = "7.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-7.3.0.tgz"; - sha512 = "n5PJKZbyspD0+8LnaZgpEvNCrjQx1DyDHw8JdWwoxhhC+yRip4TAvSDpXGf9SWX6b0umeB5aR61gwUo6NVvFxw=="; + url = "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-7.4.1.tgz"; + sha512 = "AFvhdxpFvliYq1xt/biNBslTHE/zbEvSnr1qfHA/KxRIpErmEDrQZlQnvEexednRHmLfDNOMuDYwZL5xkLzIXQ=="; }; }; "vue-onsenui-helper-json-1.0.2" = { @@ -58868,15 +58688,6 @@ let sha1 = "340a717bde765726fa0aa07d721e0147a551df0c"; }; }; - "watchpack-1.7.4" = { - name = "watchpack"; - packageName = "watchpack"; - version = "1.7.4"; - src = fetchurl { - url = "https://registry.npmjs.org/watchpack/-/watchpack-1.7.4.tgz"; - sha512 = "aWAgTW4MoSJzZPAicljkO1hsi1oKj/RRq/OJQh2PKI2UKL04c2Bs+MBOB+BBABHTXJpf9mCwHN7ANCvYsvY2sg=="; - }; - }; "watchpack-1.7.5" = { name = "watchpack"; packageName = "watchpack"; @@ -58967,13 +58778,13 @@ let sha512 = "n1CfuJcJ+dynIx/fmavB6haPx37N3GZvY5HIGIselymDiSwNRC+8pAxOzoB4eVwUBJnbP3+aA8vWttrAZbgs7A=="; }; }; - "webassemblyjs-1.9.1" = { + "webassemblyjs-1.11.0" = { name = "webassemblyjs"; packageName = "webassemblyjs"; - version = "1.9.1"; + version = "1.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/webassemblyjs/-/webassemblyjs-1.9.1.tgz"; - sha512 = "x0YxqLnuk8PjeZf5NOkmdQ4FwIRa7NlX3WIRhbpzSaGCih6la55TaATY4BpS81lMyjZvpdfKAQlLVzvd5G57fg=="; + url = "https://registry.npmjs.org/webassemblyjs/-/webassemblyjs-1.11.0.tgz"; + sha512 = "zAwCqHShTm/OBhYzqXlumetrI5yAkMFbFjnv8qba4WtP+KZIchkAml6zPDZWnxQQH2rs9TTbcbXrMVQplleJQA=="; }; }; "webidl-conversions-2.0.1" = { @@ -59030,6 +58841,15 @@ let sha512 = "6KJVGlCxYdISyurpQ0IPTklv+DULv05rs2hseIXer6D7KrUicRDLFb4IUM1S6LUAKypPM/nSiVSuv8jHu1m3/Q=="; }; }; + "webpack-4.46.0" = { + name = "webpack"; + packageName = "webpack"; + version = "4.46.0"; + src = fetchurl { + url = "https://registry.npmjs.org/webpack/-/webpack-4.46.0.tgz"; + sha512 = "6jJuJjg8znb/xRItk7bkT0+Q7AHCYjjFnvKIWQPkNIOyRqoCGvkOs0ipeQzrqz4l5FtN5ZI/ukEHroeX/o1/5Q=="; + }; + }; "webpack-5.9.0" = { name = "webpack"; packageName = "webpack"; @@ -59102,13 +58922,13 @@ let sha512 = "9S6YyKKKh/Oz/eryM1RyLVDVmy3NSPV0JXMRhZ18fJsq+AwGxUY34X54VNwkzYcEmEkDwNxuEOboCZEebJXBAQ=="; }; }; - "webpack-merge-4.2.2" = { + "webpack-merge-5.7.3" = { name = "webpack-merge"; packageName = "webpack-merge"; - version = "4.2.2"; + version = "5.7.3"; src = fetchurl { - url = "https://registry.npmjs.org/webpack-merge/-/webpack-merge-4.2.2.tgz"; - sha512 = "TUE1UGoTX2Cd42j3krGYqObZbOD+xF7u28WB7tfUordytSjbWTIjK/8V0amkBfTYN4/pB/GIDlJZZ657BGG19g=="; + url = "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.7.3.tgz"; + sha512 = "6/JUQv0ELQ1igjGDzHkXbVDRxkfA57Zw7PfiupdLFJYrgFqY5ZP8xxbpp2lU3EPwYx89ht5Z/aDkD40hFCm5AA=="; }; }; "webpack-node-externals-2.5.2" = { @@ -59183,13 +59003,13 @@ let sha512 = "OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg=="; }; }; - "webtorrent-0.112.0" = { + "webtorrent-0.112.2" = { name = "webtorrent"; packageName = "webtorrent"; - version = "0.112.0"; + version = "0.112.2"; src = fetchurl { - url = "https://registry.npmjs.org/webtorrent/-/webtorrent-0.112.0.tgz"; - sha512 = "3Fe4tzeXhZKI0KXGGkr9gyzlx7eKjfU9Se2VJhdE1AcpHppxApuechaWu/KS24amUv4j+xPXE7f3Lc4wF+7QSQ=="; + url = "https://registry.npmjs.org/webtorrent/-/webtorrent-0.112.2.tgz"; + sha512 = "yaSBGIoDNKHTEpNbV+VZHqvlbDA3StD2ww9QgQ142bg9fFRT+w0TnvEKXlB4FLAir0vk4MfEhgRe+lG9wq/CRg=="; }; }; "well-known-symbols-2.0.0" = { @@ -59426,13 +59246,22 @@ let sha512 = "nSiLDIIMAmnulDIRcophSU4oOLW1AGnQKNim+SI5MtzE5gwlD+VJNTkBbSYq8Nov8WjD9jWobaKxo+5yeiC1vA=="; }; }; - "wikipeg-2.0.3" = { + "wikipeg-2.0.5" = { name = "wikipeg"; packageName = "wikipeg"; - version = "2.0.3"; + version = "2.0.5"; src = fetchurl { - url = "https://registry.npmjs.org/wikipeg/-/wikipeg-2.0.3.tgz"; - sha512 = "VMVqiZRIFqb5rQYhRqvzPy5yFwJyCkjEdNAsSnq6ZxYH+7EN7/U+R3LrIx1Lf16pq+DZuWY3wrkq6YFhU8c0lg=="; + url = "https://registry.npmjs.org/wikipeg/-/wikipeg-2.0.5.tgz"; + sha512 = "FMNznSW4Qjexmgqz23YLtXoS6+GKPnbkEsI14xdRxsWv8jQWJ94ffQZ4PpUSsZm7/XAjqrjFiUnbvOOxBhJY4g=="; + }; + }; + "wildcard-2.0.0" = { + name = "wildcard"; + packageName = "wildcard"; + version = "2.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/wildcard/-/wildcard-2.0.0.tgz"; + sha512 = "JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw=="; }; }; "win-detect-browsers-1.0.2" = { @@ -60056,24 +59885,6 @@ let sha512 = "C34cIU4+DB2vMyAbmEKossWq2ZQDr6QEyuuCzWrM9zfw1sGc0mYiJ0UnG9zzNykt49C2Fi34hvr2vssFQRS6EA=="; }; }; - "ws-7.3.1" = { - name = "ws"; - packageName = "ws"; - version = "7.3.1"; - src = fetchurl { - url = "https://registry.npmjs.org/ws/-/ws-7.3.1.tgz"; - sha512 = "D3RuNkynyHmEJIpD2qrgVkc9DQ23OrN/moAwZX4L8DfvszsJxpjQuUq3LMx6HoYji9fbIOBY18XWBsAux1ZZUA=="; - }; - }; - "ws-7.4.1" = { - name = "ws"; - packageName = "ws"; - version = "7.4.1"; - src = fetchurl { - url = "https://registry.npmjs.org/ws/-/ws-7.4.1.tgz"; - sha512 = "pTsP8UAfhy3sk1lSk/O/s4tjD0CRwvMnzvwr4OKGX7ZvqZtUyx4KIJB5JWbkykPoc55tixMGgTNoh3k4FkNGFQ=="; - }; - }; "ws-7.4.2" = { name = "ws"; packageName = "ws"; @@ -60389,15 +60200,6 @@ let sha512 = "HgS+X6zAztGa9zIK3Y3LXuJes33Lz9x+YyTxgrkIdabu2vqcGOWwdfCpf1hWLRrd553wd4QCDf6BBO6FfdsRiQ=="; }; }; - "xmldoc-1.1.2" = { - name = "xmldoc"; - packageName = "xmldoc"; - version = "1.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/xmldoc/-/xmldoc-1.1.2.tgz"; - sha512 = "ruPC/fyPNck2BD1dpz0AZZyrEwMOrWTO5lDdIXS91rs3wtm4j+T8Rp2o+zoOYkkAxJTZRPOSnOGei1egoRmKMQ=="; - }; - }; "xmldom-0.1.19" = { name = "xmldom"; packageName = "xmldom"; @@ -60552,15 +60354,6 @@ let sha512 = "1bLb+kKKtKPbgTK6i/BaoAn03g47PpFstlbe1BA+y3pNS/LfvcaghS5BFf9+EE1J+KwSQsEpfJvFN5GqFtiNmw=="; }; }; - "xtend-2.0.6" = { - name = "xtend"; - packageName = "xtend"; - version = "2.0.6"; - src = fetchurl { - url = "https://registry.npmjs.org/xtend/-/xtend-2.0.6.tgz"; - sha1 = "5ea657a6dba447069c2e59c58a1138cb0c5e6cee"; - }; - }; "xtend-2.1.2" = { name = "xtend"; packageName = "xtend"; @@ -60570,24 +60363,6 @@ let sha1 = "6efecc2a4dad8e6962c4901b337ce7ba87b5d28b"; }; }; - "xtend-2.2.0" = { - name = "xtend"; - packageName = "xtend"; - version = "2.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/xtend/-/xtend-2.2.0.tgz"; - sha1 = "eef6b1f198c1c8deafad8b1765a04dad4a01c5a9"; - }; - }; - "xtend-3.0.0" = { - name = "xtend"; - packageName = "xtend"; - version = "3.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/xtend/-/xtend-3.0.0.tgz"; - sha1 = "5cce7407baf642cba7becda568111c493f59665a"; - }; - }; "xtend-4.0.2" = { name = "xtend"; packageName = "xtend"; @@ -60696,13 +60471,13 @@ let sha512 = "26QP9JhfcrroDTeMv2OsY4eoI+NKb6tZwy1Uz0MBWi1uGmOw0/6aR9Oa3guOsC96U27GAqT6glRFMjCGqLro7A=="; }; }; - "yaml-language-server-parser-0.1.1" = { + "yaml-language-server-parser-0.1.2" = { name = "yaml-language-server-parser"; packageName = "yaml-language-server-parser"; - version = "0.1.1"; + version = "0.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/yaml-language-server-parser/-/yaml-language-server-parser-0.1.1.tgz"; - sha512 = "2PememGb1SrPqXAxXTpBD39rwYZap6CJVSvkfULNv9uwV3VHp1TfkgpsylBb+mpuuivH0JZ52lChXPvNa6yVxw=="; + url = "https://registry.npmjs.org/yaml-language-server-parser/-/yaml-language-server-parser-0.1.2.tgz"; + sha512 = "GQ2eRE5GcKBK8XVKBIcMyOfC8WMZmEs6gogtVc6knLKE6pG+e5L/lOMfBxZzAt2lqye5itMggQ9+6stXAVhMsw=="; }; }; "yaml-language-server-parser-0.1.3-fa8245c.0" = { @@ -60858,6 +60633,16 @@ let sha512 = "huO4Fr1f9PmiJJdll5kwoS2e4GqzGSsMT3PPMpOwoVkOK8ckqAewMTZyA6LXVQWflleb/Z8oPBEvNsMft0XE+g=="; }; }; + "yargs-git://github.com/gardenappl/yargs" = { + name = "yargs"; + packageName = "yargs"; + version = "17.0.0-candidate.0"; + src = fetchgit { + url = "git://github.com/gardenappl/yargs"; + rev = "544529c59269e8d1e494f4a081d6f3cfc6a99035"; + sha256 = "22c042f035f98c840f0dc1390fe22947dda8aadf6c40f154529947d21b2b2bf3"; + }; + }; "yargs-parser-10.1.0" = { name = "yargs-parser"; packageName = "yargs-parser"; @@ -61215,70 +61000,85 @@ in "@angular/cli" = nodeEnv.buildNodePackage { name = "_at_angular_slash_cli"; packageName = "@angular/cli"; - version = "11.0.5"; + version = "11.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/@angular/cli/-/cli-11.0.5.tgz"; - sha512 = "k4j/2z7qkuigJ1shH0McW1wW63clhrbrg98FK4/KWhU/sce5AgVjuHDQFycAclTwHesf7Vs6Gzt7zGlqUmeKIg=="; + url = "https://registry.npmjs.org/@angular/cli/-/cli-11.1.1.tgz"; + sha512 = "2nRx9KYzLVCtJA4pgDmxubHOp54O/74BYt3WGHAA7QcnSATEL7jF5a9SMoEAJ2sUtKUVVS+2dKbmYKwW6oL3Bw=="; }; dependencies = [ - sources."@angular-devkit/architect-0.1100.5" - sources."@angular-devkit/core-11.0.5" - sources."@angular-devkit/schematics-11.0.5" - sources."@schematics/angular-11.0.5" - sources."@schematics/update-0.1100.5" + sources."@angular-devkit/architect-0.1101.1" + sources."@angular-devkit/core-11.1.1" + sources."@angular-devkit/schematics-11.1.1" + sources."@npmcli/ci-detect-1.3.0" + sources."@npmcli/git-2.0.4" + sources."@npmcli/installed-package-contents-1.0.5" + (sources."@npmcli/move-file-1.1.0" // { + dependencies = [ + sources."rimraf-2.7.1" + ]; + }) + sources."@npmcli/node-gyp-1.0.1" + sources."@npmcli/promise-spawn-1.3.2" + sources."@npmcli/run-script-1.8.1" + sources."@schematics/angular-11.1.1" + sources."@schematics/update-0.1101.1" + sources."@tootallnate/once-1.1.2" sources."@yarnpkg/lockfile-1.1.0" - sources."JSONStream-1.3.5" - sources."agent-base-4.3.0" - sources."agentkeepalive-3.5.2" + sources."abbrev-1.1.1" + sources."agent-base-6.0.2" + sources."agentkeepalive-4.1.3" + sources."aggregate-error-3.1.0" sources."ajv-6.12.6" sources."ansi-colors-4.1.1" sources."ansi-escapes-4.3.1" sources."ansi-regex-5.0.0" sources."ansi-styles-4.3.0" sources."aproba-1.2.0" + (sources."are-we-there-yet-1.1.5" // { + dependencies = [ + sources."readable-stream-2.3.7" + sources."safe-buffer-5.1.2" + sources."string_decoder-1.1.1" + ]; + }) + sources."asap-2.0.6" sources."asn1-0.2.4" sources."assert-plus-1.0.0" sources."asynckit-0.4.0" sources."aws-sign2-0.7.0" sources."aws4-1.11.0" sources."balanced-match-1.0.0" + sources."base64-js-1.5.1" sources."bcrypt-pbkdf-1.0.2" - sources."bluebird-3.7.2" + sources."bl-4.0.3" sources."brace-expansion-1.1.11" - sources."buffer-from-1.1.1" + sources."buffer-5.7.1" sources."builtins-1.0.3" - (sources."cacache-12.0.4" // { - dependencies = [ - sources."lru-cache-5.1.1" - sources."rimraf-2.7.1" - sources."yallist-3.1.1" - ]; - }) + sources."cacache-15.0.5" sources."caseless-0.12.0" sources."chalk-4.1.0" sources."chardet-0.7.0" - sources."chownr-1.1.4" + sources."chownr-2.0.0" + sources."clean-stack-2.2.0" sources."cli-cursor-3.1.0" sources."cli-spinners-2.5.0" sources."cli-width-3.0.0" sources."clone-1.0.4" + sources."code-point-at-1.1.0" sources."color-convert-2.0.1" sources."color-name-1.1.4" sources."combined-stream-1.0.8" sources."concat-map-0.0.1" - sources."concat-stream-1.6.2" - (sources."copy-concurrently-1.0.5" // { - dependencies = [ - sources."rimraf-2.7.1" - ]; - }) + sources."console-control-strings-1.1.0" sources."core-util-is-1.0.2" - sources."cyclist-1.0.1" sources."dashdash-1.14.1" - sources."debug-4.2.0" + sources."debug-4.3.1" + sources."debuglog-1.0.1" sources."defaults-1.0.3" sources."delayed-stream-1.0.0" - sources."duplexify-3.7.1" + sources."delegates-1.0.0" + sources."depd-1.1.2" + sources."dezalgo-1.0.3" sources."ecc-jsbn-0.1.2" sources."emoji-regex-8.0.0" (sources."encoding-0.1.13" // { @@ -61286,28 +61086,28 @@ in sources."iconv-lite-0.6.2" ]; }) - sources."end-of-stream-1.4.4" + sources."env-paths-2.2.0" sources."err-code-1.1.2" - sources."es6-promise-4.2.8" - sources."es6-promisify-5.0.0" sources."escape-string-regexp-1.0.5" sources."extend-3.0.2" sources."external-editor-3.1.0" sources."extsprintf-1.3.0" sources."fast-deep-equal-3.1.3" sources."fast-json-stable-stringify-2.1.0" - sources."figgy-pudding-3.5.2" sources."figures-3.2.0" - sources."flush-write-stream-1.1.1" sources."forever-agent-0.6.1" sources."form-data-2.3.3" - sources."from2-2.3.0" - sources."fs-minipass-1.2.7" - sources."fs-write-stream-atomic-1.0.10" + sources."fs-minipass-2.1.0" sources."fs.realpath-1.0.0" sources."function-bind-1.1.1" - sources."genfun-5.0.0" - sources."get-stream-4.1.0" + (sources."gauge-2.7.4" // { + dependencies = [ + sources."ansi-regex-2.1.1" + sources."is-fullwidth-code-point-1.0.0" + sources."string-width-1.0.2" + sources."strip-ansi-3.0.1" + ]; + }) sources."getpass-0.1.7" sources."glob-7.1.6" sources."graceful-fs-4.2.4" @@ -61315,202 +61115,136 @@ in sources."har-validator-5.1.5" sources."has-1.0.3" sources."has-flag-4.0.0" + sources."has-unicode-2.0.1" sources."hosted-git-info-3.0.7" - sources."http-cache-semantics-3.8.1" - (sources."http-proxy-agent-2.1.0" // { - dependencies = [ - sources."debug-3.1.0" - sources."ms-2.0.0" - ]; - }) + sources."http-cache-semantics-4.1.0" + sources."http-proxy-agent-4.0.1" sources."http-signature-1.2.0" - (sources."https-proxy-agent-2.2.4" // { - dependencies = [ - sources."debug-3.2.7" - ]; - }) + sources."https-proxy-agent-5.0.0" sources."humanize-ms-1.2.1" sources."iconv-lite-0.4.24" - sources."iferr-0.1.5" + sources."ieee754-1.2.1" sources."ignore-walk-3.0.3" sources."imurmurhash-0.1.4" + sources."indent-string-4.0.0" sources."infer-owner-1.0.4" sources."inflight-1.0.6" sources."inherits-2.0.4" - sources."ini-1.3.6" + sources."ini-2.0.0" sources."inquirer-7.3.3" sources."ip-1.1.5" sources."is-core-module-2.2.0" sources."is-docker-2.1.1" sources."is-fullwidth-code-point-3.0.0" sources."is-interactive-1.0.0" + sources."is-lambda-1.0.1" sources."is-typedarray-1.0.0" sources."is-wsl-2.2.0" sources."isarray-1.0.0" sources."isexe-2.0.0" sources."isstream-0.1.2" sources."jsbn-0.1.1" - sources."json-parse-better-errors-1.0.2" + sources."json-parse-even-better-errors-2.3.1" sources."json-schema-0.2.3" sources."json-schema-traverse-0.4.1" sources."json-stringify-safe-5.0.1" - sources."jsonc-parser-2.3.1" + sources."jsonc-parser-3.0.0" sources."jsonparse-1.3.1" sources."jsprim-1.4.1" sources."lodash-4.17.20" sources."log-symbols-4.0.0" sources."lru-cache-6.0.0" sources."magic-string-0.25.7" - (sources."make-fetch-happen-5.0.2" // { - dependencies = [ - sources."lru-cache-5.1.1" - sources."yallist-3.1.1" - ]; - }) + sources."make-fetch-happen-8.0.13" sources."mime-db-1.45.0" sources."mime-types-2.1.28" sources."mimic-fn-2.1.0" sources."minimatch-3.0.4" - sources."minimist-1.2.5" - (sources."minipass-2.9.0" // { - dependencies = [ - sources."yallist-3.1.1" - ]; - }) - sources."minizlib-1.3.3" - sources."mississippi-3.0.0" - sources."mkdirp-0.5.5" - (sources."move-concurrently-1.0.1" // { - dependencies = [ - sources."rimraf-2.7.1" - ]; - }) + sources."minipass-3.1.3" + sources."minipass-collect-1.0.2" + sources."minipass-fetch-1.3.3" + sources."minipass-flush-1.0.5" + sources."minipass-json-stream-1.0.1" + sources."minipass-pipeline-1.2.4" + sources."minipass-sized-1.0.3" + sources."minizlib-2.1.2" + sources."mkdirp-1.0.4" sources."ms-2.1.2" sources."mute-stream-0.0.8" - sources."node-fetch-npm-2.0.4" - (sources."normalize-package-data-2.5.0" // { - dependencies = [ - sources."hosted-git-info-2.8.8" - sources."semver-5.7.1" - ]; - }) + sources."node-gyp-7.1.2" + sources."nopt-5.0.0" sources."npm-bundled-1.1.1" sources."npm-install-checks-4.0.0" sources."npm-normalize-package-bin-1.0.1" sources."npm-package-arg-8.1.0" - sources."npm-packlist-1.4.8" + sources."npm-packlist-2.1.4" sources."npm-pick-manifest-6.1.0" - (sources."npm-registry-fetch-4.0.7" // { - dependencies = [ - sources."hosted-git-info-2.8.8" - sources."lru-cache-5.1.1" - sources."npm-package-arg-6.1.1" - sources."semver-5.7.1" - sources."yallist-3.1.1" - ]; - }) + sources."npm-registry-fetch-9.0.0" + sources."npmlog-4.1.2" + sources."number-is-nan-1.0.1" sources."oauth-sign-0.9.0" + sources."object-assign-4.1.1" sources."once-1.4.0" sources."onetime-5.1.2" - sources."open-7.3.0" - sources."ora-5.1.0" - sources."os-homedir-1.0.2" + sources."open-7.3.1" + sources."ora-5.2.0" sources."os-tmpdir-1.0.2" - sources."osenv-0.1.5" - (sources."pacote-9.5.12" // { - dependencies = [ - sources."hosted-git-info-2.8.8" - sources."lru-cache-5.1.1" - sources."npm-package-arg-6.1.1" - sources."npm-pick-manifest-3.0.2" - sources."rimraf-2.7.1" - sources."semver-5.7.1" - sources."yallist-3.1.1" - ]; - }) - sources."parallel-transform-1.2.0" + sources."p-map-4.0.0" + sources."pacote-11.1.14" sources."path-is-absolute-1.0.1" sources."path-parse-1.0.6" sources."performance-now-2.1.0" sources."process-nextick-args-2.0.1" sources."promise-inflight-1.0.1" sources."promise-retry-1.1.1" - sources."protoduck-5.0.1" sources."psl-1.8.0" - sources."pump-3.0.0" - (sources."pumpify-1.5.1" // { - dependencies = [ - sources."pump-2.0.1" - ]; - }) + sources."puka-1.0.1" sources."punycode-2.1.1" sources."qs-6.5.2" - (sources."readable-stream-2.3.7" // { - dependencies = [ - sources."safe-buffer-5.1.2" - ]; - }) + sources."read-package-json-fast-1.2.1" + sources."readable-stream-3.6.0" + sources."readdir-scoped-modules-1.1.0" (sources."request-2.88.2" // { dependencies = [ sources."uuid-3.4.0" ]; }) - sources."resolve-1.18.1" + sources."resolve-1.19.0" sources."restore-cursor-3.1.0" sources."retry-0.10.1" sources."rimraf-3.0.2" sources."run-async-2.4.1" - sources."run-queue-1.0.3" sources."rxjs-6.6.3" sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" - sources."semver-7.3.2" + sources."semver-7.3.4" (sources."semver-intersect-1.4.0" // { dependencies = [ sources."semver-5.7.1" ]; }) + sources."set-blocking-2.0.0" sources."signal-exit-3.0.3" sources."smart-buffer-4.1.0" - sources."socks-2.3.3" - (sources."socks-proxy-agent-4.0.2" // { - dependencies = [ - sources."agent-base-4.2.1" - ]; - }) + sources."socks-2.5.1" + sources."socks-proxy-agent-5.0.0" sources."source-map-0.7.3" sources."sourcemap-codec-1.4.8" - sources."spdx-correct-3.1.1" - sources."spdx-exceptions-2.3.0" - sources."spdx-expression-parse-3.0.1" - sources."spdx-license-ids-3.0.7" sources."sshpk-1.16.1" - sources."ssri-6.0.1" - sources."stream-each-1.2.3" - sources."stream-shift-1.0.1" + sources."ssri-8.0.0" sources."string-width-4.2.0" - (sources."string_decoder-1.1.1" // { - dependencies = [ - sources."safe-buffer-5.1.2" - ]; - }) + sources."string_decoder-1.3.0" sources."strip-ansi-6.0.0" sources."supports-color-7.2.0" - sources."symbol-observable-2.0.3" - (sources."tar-4.4.13" // { - dependencies = [ - sources."yallist-3.1.1" - ]; - }) + sources."symbol-observable-3.0.0" + sources."tar-6.1.0" sources."through-2.3.8" - sources."through2-2.0.5" sources."tmp-0.0.33" sources."tough-cookie-2.5.0" sources."tslib-1.14.1" sources."tunnel-agent-0.6.0" sources."tweetnacl-0.14.5" sources."type-fest-0.11.0" - sources."typedarray-0.0.6" sources."unique-filename-1.1.1" sources."unique-slug-2.0.2" (sources."universal-analytics-0.4.23" // { @@ -61518,17 +61252,22 @@ in sources."uuid-3.4.0" ]; }) - sources."uri-js-4.4.0" + sources."uri-js-4.4.1" sources."util-deprecate-1.0.2" - sources."uuid-8.3.1" - sources."validate-npm-package-license-3.0.4" + sources."uuid-8.3.2" sources."validate-npm-package-name-3.0.0" sources."verror-1.10.0" sources."wcwidth-1.0.1" - sources."which-1.3.1" + sources."which-2.0.2" + (sources."wide-align-1.1.3" // { + dependencies = [ + sources."ansi-regex-3.0.0" + sources."is-fullwidth-code-point-2.0.0" + sources."string-width-2.1.1" + sources."strip-ansi-4.0.0" + ]; + }) sources."wrappy-1.0.2" - sources."xtend-4.0.2" - sources."y18n-4.0.1" sources."yallist-4.0.0" ]; buildInputs = globalBuildInputs; @@ -61627,7 +61366,7 @@ in sources."pump-3.0.0" ]; }) - sources."call-bind-1.0.0" + sources."call-bind-1.0.2" sources."camelcase-5.3.1" sources."camelcase-keys-6.2.2" sources."clean-git-ref-2.0.1" @@ -61693,7 +61432,7 @@ in }) sources."fs.realpath-1.0.0" sources."function-bind-1.1.1" - sources."get-intrinsic-1.0.2" + sources."get-intrinsic-1.1.0" (sources."get-stream-4.1.0" // { dependencies = [ sources."pump-3.0.0" @@ -61857,7 +61596,7 @@ in ]; }) sources."to-utf8-0.0.1" - sources."uglify-js-3.12.4" + sources."uglify-js-3.12.5" sources."unc-path-regex-0.1.2" sources."unique-stream-2.3.1" sources."universalify-0.1.2" @@ -62035,7 +61774,7 @@ in sources."tunnel-agent-0.6.0" sources."tweetnacl-0.14.5" sources."type-check-0.3.2" - sources."uri-js-4.4.0" + sources."uri-js-4.4.1" sources."uuid-3.4.0" sources."verror-1.10.0" sources."w3c-hr-time-1.0.2" @@ -62084,10 +61823,12 @@ in sources."supports-color-5.5.0" ]; }) - (sources."@nestjs/schematics-7.2.6" // { + (sources."@nestjs/schematics-7.2.7" // { dependencies = [ - sources."@angular-devkit/core-11.0.5" - sources."@angular-devkit/schematics-11.0.5" + sources."@angular-devkit/core-11.1.0" + sources."@angular-devkit/schematics-11.1.0" + sources."chalk-4.1.0" + sources."ora-5.2.0" ]; }) sources."@schematics/schematics-0.1100.3" @@ -62095,9 +61836,9 @@ in sources."@types/eslint-7.2.6" sources."@types/eslint-scope-3.7.0" sources."@types/estree-0.0.45" - sources."@types/json-schema-7.0.6" + sources."@types/json-schema-7.0.7" sources."@types/json5-0.0.29" - sources."@types/node-14.14.20" + sources."@types/node-14.14.22" sources."@types/parse-json-4.0.0" sources."@types/source-list-map-0.1.2" sources."@types/tapable-1.0.6" @@ -62132,23 +61873,26 @@ in sources."@webassemblyjs/wast-printer-1.9.0" sources."@xtuc/ieee754-1.2.0" sources."@xtuc/long-4.2.2" - sources."acorn-8.0.4" + sources."acorn-8.0.5" sources."ajv-6.12.6" sources."ajv-keywords-3.5.2" sources."ansi-colors-4.1.1" sources."ansi-escapes-4.3.1" - sources."ansi-regex-3.0.0" + sources."ansi-regex-5.0.0" sources."ansi-styles-4.3.0" sources."anymatch-3.1.1" sources."at-least-node-1.0.0" sources."balanced-match-1.0.0" - sources."binary-extensions-2.1.0" + sources."base64-js-1.5.1" + sources."binary-extensions-2.2.0" + sources."bl-4.0.3" sources."brace-expansion-1.1.11" sources."braces-3.0.2" - sources."browserslist-4.16.0" + sources."browserslist-4.16.1" + sources."buffer-5.7.1" sources."buffer-from-1.1.1" sources."callsites-3.1.0" - sources."caniuse-lite-1.0.30001173" + sources."caniuse-lite-1.0.30001180" sources."chalk-3.0.0" sources."chardet-0.7.0" sources."chokidar-3.4.3" @@ -62169,10 +61913,10 @@ in sources."cross-spawn-7.0.3" sources."deepmerge-4.2.2" sources."defaults-1.0.3" - sources."electron-to-chromium-1.3.634" + sources."electron-to-chromium-1.3.645" sources."emoji-regex-8.0.0" sources."end-of-stream-1.4.4" - sources."enhanced-resolve-4.3.0" + sources."enhanced-resolve-4.5.0" sources."errno-0.1.8" sources."error-ex-1.3.2" sources."escalade-3.1.1" @@ -62197,7 +61941,7 @@ in sources."chalk-4.1.0" ]; }) - sources."fs-extra-9.0.1" + sources."fs-extra-9.1.0" sources."fs-monkey-1.0.1" sources."fs.realpath-1.0.0" sources."fsevents-2.1.3" @@ -62211,16 +61955,15 @@ in sources."has-flag-4.0.0" sources."human-signals-1.1.1" sources."iconv-lite-0.4.24" + sources."ieee754-1.2.1" sources."import-fresh-3.3.0" sources."inflight-1.0.6" sources."inherits-2.0.4" (sources."inquirer-7.3.3" // { dependencies = [ - sources."ansi-regex-5.0.0" sources."chalk-4.1.0" sources."is-fullwidth-code-point-3.0.0" sources."string-width-4.2.0" - sources."strip-ansi-6.0.0" ]; }) sources."interpret-1.4.0" @@ -62241,13 +61984,9 @@ in sources."json-parse-even-better-errors-2.3.1" sources."json-schema-traverse-0.4.1" sources."json5-1.0.1" - (sources."jsonfile-6.1.0" // { - dependencies = [ - sources."universalify-2.0.0" - ]; - }) + sources."jsonfile-6.1.0" sources."lines-and-columns-1.1.6" - sources."loader-runner-4.1.0" + sources."loader-runner-4.2.0" sources."locate-path-5.0.0" sources."lodash-4.17.20" sources."lodash.toarray-4.4.0" @@ -62260,7 +61999,13 @@ in sources."macos-release-2.4.1" sources."magic-string-0.25.7" sources."memfs-3.2.0" - sources."memory-fs-0.5.0" + (sources."memory-fs-0.5.0" // { + dependencies = [ + sources."readable-stream-2.3.7" + sources."safe-buffer-5.1.2" + sources."string_decoder-1.1.1" + ]; + }) sources."merge-stream-2.0.0" sources."mime-db-1.45.0" sources."mime-types-2.1.28" @@ -62270,7 +62015,7 @@ in sources."mute-stream-0.0.8" sources."neo-async-2.6.2" sources."node-emoji-1.10.0" - sources."node-releases-1.1.69" + sources."node-releases-1.1.70" sources."normalize-path-3.0.0" sources."npm-run-path-4.0.1" sources."object-assign-4.1.1" @@ -62278,9 +62023,7 @@ in sources."onetime-5.1.2" (sources."ora-5.1.0" // { dependencies = [ - sources."ansi-regex-5.0.0" sources."chalk-4.1.0" - sources."strip-ansi-6.0.0" ]; }) sources."os-name-4.0.0" @@ -62289,7 +62032,7 @@ in sources."p-locate-4.1.0" sources."p-try-2.2.0" sources."parent-module-1.0.1" - sources."parse-json-5.1.0" + sources."parse-json-5.2.0" sources."path-exists-4.0.0" sources."path-is-absolute-1.0.1" sources."path-key-3.1.1" @@ -62303,7 +62046,7 @@ in sources."pump-3.0.0" sources."punycode-2.1.1" sources."randombytes-2.1.0" - sources."readable-stream-2.3.7" + sources."readable-stream-3.6.0" sources."readdirp-3.5.0" sources."rechoir-0.6.2" sources."resolve-1.19.0" @@ -62312,7 +62055,7 @@ in sources."rimraf-3.0.2" sources."run-async-2.4.1" sources."rxjs-6.6.3" - sources."safe-buffer-5.1.2" + sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" sources."schema-utils-2.7.0" sources."semver-7.3.4" @@ -62329,9 +62072,14 @@ in ]; }) sources."sourcemap-codec-1.4.8" - sources."string-width-2.1.1" - sources."string_decoder-1.1.1" - sources."strip-ansi-4.0.0" + (sources."string-width-2.1.1" // { + dependencies = [ + sources."ansi-regex-3.0.0" + sources."strip-ansi-4.0.0" + ]; + }) + sources."string_decoder-1.3.0" + sources."strip-ansi-6.0.0" sources."strip-bom-3.0.0" sources."strip-final-newline-2.0.0" sources."supports-color-7.2.0" @@ -62342,7 +62090,7 @@ in sources."commander-2.20.3" ]; }) - (sources."terser-webpack-plugin-5.0.3" // { + (sources."terser-webpack-plugin-5.1.1" // { dependencies = [ sources."p-limit-3.1.0" sources."schema-utils-3.0.0" @@ -62367,14 +62115,14 @@ in sources."tslib-1.14.1" sources."type-fest-0.11.0" sources."typescript-4.0.5" - sources."universalify-1.0.0" - sources."uri-js-4.4.0" + sources."universalify-2.0.0" + sources."uri-js-4.4.1" sources."util-deprecate-1.0.2" sources."watchpack-2.1.0" sources."wcwidth-1.0.1" (sources."webpack-5.9.0" // { dependencies = [ - sources."enhanced-resolve-5.4.1" + sources."enhanced-resolve-5.7.0" sources."schema-utils-3.0.0" sources."tapable-2.2.0" ]; @@ -62405,17 +62153,21 @@ in "@vue/cli" = nodeEnv.buildNodePackage { name = "_at_vue_slash_cli"; packageName = "@vue/cli"; - version = "4.5.9"; + version = "4.5.11"; src = fetchurl { - url = "https://registry.npmjs.org/@vue/cli/-/cli-4.5.9.tgz"; - sha512 = "R6fRau8+fqKI+94LrruKtJDaMQGVsJCNzrdefTJ+bn+ljtCS6j9H+XuU8zLa9+X0HBkX4VoBT7XjfwUAo1IIPA=="; + url = "https://registry.npmjs.org/@vue/cli/-/cli-4.5.11.tgz"; + sha512 = "w6B1+Fb0AHwAd8eE1q4/KrJph/kXo/cqQ0Lf5MnXCYt7SXdDPBGTdyFAumMaSPQESXgmdWgEo8EhnVEBNpXDIw=="; }; dependencies = [ sources."@akryum/winattr-3.0.0" - sources."@apollo/federation-0.20.7" + (sources."@apollo/federation-0.20.7" // { + dependencies = [ + sources."apollo-server-env-2.4.5" + ]; + }) (sources."@apollo/protobufjs-1.0.5" // { dependencies = [ - sources."@types/node-10.17.50" + sources."@types/node-10.17.51" ]; }) sources."@apollographql/apollo-tools-0.4.8" @@ -62432,7 +62184,7 @@ in sources."semver-5.7.1" ]; }) - (sources."@babel/generator-7.12.10" // { + (sources."@babel/generator-7.12.11" // { dependencies = [ sources."@babel/types-7.12.12" ]; @@ -62612,7 +62364,6 @@ in }) (sources."@babel/traverse-7.12.12" // { dependencies = [ - sources."@babel/generator-7.12.11" sources."@babel/types-7.12.12" ]; }) @@ -62646,14 +62397,13 @@ in sources."@oclif/plugin-help-3.2.1" sources."lru-cache-6.0.0" sources."semver-7.3.4" - sources."yallist-4.0.0" ]; }) (sources."@oclif/config-1.17.0" // { dependencies = [ - sources."globby-11.0.1" + sources."globby-11.0.2" sources."is-wsl-2.2.0" - sources."tslib-2.0.3" + sources."tslib-2.1.0" ]; }) (sources."@oclif/errors-1.3.4" // { @@ -62669,15 +62419,17 @@ in }) sources."@oclif/linewrap-1.0.0" sources."@oclif/parser-3.8.5" - (sources."@oclif/plugin-autocomplete-0.2.1" // { + (sources."@oclif/plugin-autocomplete-0.3.0" // { dependencies = [ - sources."fs-extra-9.0.1" - (sources."jsonfile-6.1.0" // { - dependencies = [ - sources."universalify-2.0.0" - ]; - }) - sources."universalify-1.0.0" + sources."ansi-styles-4.3.0" + sources."chalk-4.1.0" + sources."color-convert-2.0.1" + sources."color-name-1.1.4" + sources."fs-extra-9.1.0" + sources."has-flag-4.0.0" + sources."jsonfile-6.1.0" + sources."supports-color-7.2.0" + sources."universalify-2.0.0" ]; }) (sources."@oclif/plugin-help-2.2.3" // { @@ -62703,15 +62455,22 @@ in sources."strip-ansi-5.2.0" ]; }) - (sources."@oclif/plugin-plugins-1.9.4" // { + (sources."@oclif/plugin-plugins-1.9.5" // { dependencies = [ - sources."fs-extra-8.1.0" + sources."ansi-styles-4.3.0" + sources."chalk-4.1.0" + sources."color-convert-2.0.1" + sources."color-name-1.1.4" + sources."fs-extra-9.1.0" + sources."has-flag-4.0.0" + sources."jsonfile-6.1.0" sources."lru-cache-6.0.0" sources."npm-run-path-4.0.1" sources."path-key-3.1.1" sources."semver-7.3.4" - sources."tslib-2.0.3" - sources."yallist-4.0.0" + sources."supports-color-7.2.0" + sources."tslib-2.1.0" + sources."universalify-2.0.0" ]; }) (sources."@oclif/plugin-warn-if-update-available-1.7.0" // { @@ -62745,7 +62504,7 @@ in sources."@types/glob-7.1.3" (sources."@types/graphql-upload-8.0.4" // { dependencies = [ - sources."graphql-15.4.0" + sources."graphql-15.5.0" ]; }) sources."@types/http-assert-1.5.1" @@ -62762,9 +62521,9 @@ in sources."@types/koa-2.11.6" sources."@types/koa-compose-3.2.5" sources."@types/long-4.0.1" - sources."@types/mime-2.0.3" + sources."@types/mime-1.3.2" sources."@types/minimatch-3.0.3" - sources."@types/node-14.14.20" + sources."@types/node-14.14.22" (sources."@types/node-fetch-2.5.7" // { dependencies = [ sources."form-data-3.0.0" @@ -62773,18 +62532,18 @@ in sources."@types/normalize-package-data-2.4.0" sources."@types/qs-6.9.5" sources."@types/range-parser-1.2.3" - sources."@types/serve-static-1.13.8" + sources."@types/serve-static-1.13.9" sources."@types/through-0.0.30" sources."@types/ws-7.4.0" sources."@types/zen-observable-0.8.2" - sources."@vue/cli-shared-utils-4.5.9" - (sources."@vue/cli-ui-4.5.9" // { + sources."@vue/cli-shared-utils-4.5.11" + (sources."@vue/cli-ui-4.5.11" // { dependencies = [ sources."clone-2.1.2" ]; }) - sources."@vue/cli-ui-addon-webpack-4.5.9" - sources."@vue/cli-ui-addon-widgets-4.5.9" + sources."@vue/cli-ui-addon-webpack-4.5.11" + sources."@vue/cli-ui-addon-widgets-4.5.11" (sources."@vue/compiler-core-3.0.5" // { dependencies = [ sources."@babel/types-7.12.12" @@ -62846,28 +62605,28 @@ in sources."to-regex-range-2.1.1" ]; }) - (sources."apollo-2.32.0" // { + (sources."apollo-2.32.1" // { dependencies = [ sources."mkdirp-1.0.4" sources."strip-ansi-5.2.0" ]; }) sources."apollo-cache-1.3.5" - sources."apollo-cache-control-0.11.5" + sources."apollo-cache-control-0.11.6" sources."apollo-cache-inmemory-1.6.6" sources."apollo-client-2.6.10" - (sources."apollo-codegen-core-0.39.0" // { + (sources."apollo-codegen-core-0.39.1" // { dependencies = [ sources."recast-0.20.4" sources."source-map-0.6.1" - sources."tslib-2.0.3" + sources."tslib-2.1.0" ]; }) - sources."apollo-codegen-flow-0.37.0" - sources."apollo-codegen-scala-0.38.0" - sources."apollo-codegen-swift-0.39.0" - sources."apollo-codegen-typescript-0.39.0" - sources."apollo-datasource-0.7.2" + sources."apollo-codegen-flow-0.37.1" + sources."apollo-codegen-scala-0.38.1" + sources."apollo-codegen-swift-0.39.1" + sources."apollo-codegen-typescript-0.39.1" + sources."apollo-datasource-0.7.3" sources."apollo-env-0.6.5" sources."apollo-graphql-0.6.0" sources."apollo-language-server-1.25.0" @@ -62880,18 +62639,23 @@ in sources."apollo-link-state-0.4.2" sources."apollo-link-ws-1.0.20" sources."apollo-reporting-protobuf-0.6.2" - sources."apollo-server-caching-0.5.2" - (sources."apollo-server-core-2.19.1" // { + (sources."apollo-server-caching-0.5.3" // { dependencies = [ + sources."lru-cache-6.0.0" + ]; + }) + (sources."apollo-server-core-2.19.2" // { + dependencies = [ + sources."lru-cache-6.0.0" sources."uuid-8.3.2" ]; }) - sources."apollo-server-env-2.4.5" + sources."apollo-server-env-3.0.0" sources."apollo-server-errors-2.4.2" - sources."apollo-server-express-2.19.1" - sources."apollo-server-plugin-base-0.10.3" - sources."apollo-server-types-0.6.2" - sources."apollo-tracing-0.12.1" + sources."apollo-server-express-2.19.2" + sources."apollo-server-plugin-base-0.10.4" + sources."apollo-server-types-0.6.3" + sources."apollo-tracing-0.12.2" sources."apollo-upload-client-11.0.0" sources."apollo-utilities-1.3.4" (sources."archive-type-4.0.0" // { @@ -62918,7 +62682,7 @@ in sources."assign-symbols-1.0.0" (sources."ast-types-0.14.2" // { dependencies = [ - sources."tslib-2.0.3" + sources."tslib-2.1.0" ]; }) sources."astral-regex-1.0.0" @@ -62982,7 +62746,7 @@ in }) sources."brace-expansion-1.1.11" sources."braces-3.0.2" - sources."browserslist-4.16.0" + sources."browserslist-4.16.1" sources."buffer-5.7.1" sources."buffer-alloc-1.2.0" sources."buffer-alloc-unsafe-1.1.0" @@ -63000,24 +62764,26 @@ in sources."lowercase-keys-1.0.0" sources."normalize-url-2.0.1" sources."prepend-http-2.0.0" + sources."query-string-5.1.1" sources."sort-keys-2.0.0" + sources."strict-uri-encode-1.1.0" ]; }) - sources."call-bind-1.0.0" + sources."call-bind-1.0.2" sources."call-me-maybe-1.0.1" sources."caller-callsite-2.0.0" sources."caller-path-2.0.0" sources."callsites-2.0.0" (sources."camel-case-4.1.2" // { dependencies = [ - sources."tslib-2.0.3" + sources."tslib-2.1.0" ]; }) sources."camelcase-4.1.0" - sources."caniuse-lite-1.0.30001173" + sources."caniuse-lite-1.0.30001180" (sources."capital-case-1.0.4" // { dependencies = [ - sources."tslib-2.0.3" + sources."tslib-2.1.0" ]; }) sources."capture-stack-trace-1.0.1" @@ -63027,7 +62793,7 @@ in sources."chalk-2.4.2" (sources."change-case-4.1.2" // { dependencies = [ - sources."tslib-2.0.3" + sources."tslib-2.1.0" ]; }) sources."chardet-0.7.0" @@ -63093,9 +62859,8 @@ in sources."semver-7.3.4" sources."supports-color-7.2.0" sources."supports-hyperlinks-2.1.0" - sources."tslib-2.0.3" + sources."tslib-2.1.0" sources."type-fest-0.11.0" - sources."yallist-4.0.0" ]; }) sources."cli-width-3.0.0" @@ -63128,7 +62893,7 @@ in sources."consolidate-0.16.0" (sources."constant-case-3.0.4" // { dependencies = [ - sources."tslib-2.0.3" + sources."tslib-2.1.0" ]; }) (sources."content-disposition-0.5.3" // { @@ -63145,8 +62910,8 @@ in sources."cookie-0.4.0" sources."cookie-signature-1.0.6" sources."copy-descriptor-0.1.1" - sources."core-js-3.8.2" - (sources."core-js-compat-3.8.2" // { + sources."core-js-3.8.3" + (sources."core-js-compat-3.8.3" // { dependencies = [ sources."semver-7.0.0" ]; @@ -63222,7 +62987,7 @@ in sources."dir-glob-3.0.1" (sources."dot-case-3.0.4" // { dependencies = [ - sources."tslib-2.0.3" + sources."tslib-2.1.0" ]; }) sources."dot-prop-4.2.1" @@ -63242,17 +63007,17 @@ in sources."ecc-jsbn-0.1.2" sources."ee-first-1.1.1" sources."ejs-2.7.4" - sources."electron-to-chromium-1.3.634" + sources."electron-to-chromium-1.3.645" sources."elegant-spinner-1.0.1" sources."emoji-regex-8.0.0" sources."emojis-list-3.0.0" sources."encodeurl-1.0.2" sources."end-of-stream-1.4.4" - sources."entities-2.1.0" + sources."entities-2.2.0" sources."env-ci-3.2.2" sources."envinfo-7.7.3" sources."error-ex-1.3.2" - sources."es-abstract-1.17.7" + sources."es-abstract-1.18.0-next.2" sources."es-to-primitive-1.2.1" sources."es6-error-4.1.1" sources."escalade-3.1.1" @@ -63309,7 +63074,7 @@ in sources."extract-stack-1.0.0" sources."extsprintf-1.3.0" sources."fast-deep-equal-3.1.3" - sources."fast-glob-3.2.4" + sources."fast-glob-3.2.5" sources."fast-json-stable-stringify-2.1.0" sources."fast-levenshtein-2.0.6" sources."fastq-1.10.0" @@ -63334,7 +63099,8 @@ in }) sources."find-up-3.0.0" sources."fkill-6.2.0" - sources."flow-parser-0.141.0" + sources."flow-parser-0.143.1" + sources."for-each-0.3.3" sources."for-in-1.0.2" sources."forever-agent-0.6.1" sources."form-data-2.3.3" @@ -63356,21 +63122,26 @@ in sources."generic-names-2.0.1" sources."gensync-1.0.0-beta.2" sources."get-caller-file-2.0.5" - sources."get-intrinsic-1.0.2" + sources."get-intrinsic-1.1.0" sources."get-proxy-2.1.0" sources."get-stream-4.1.0" sources."get-value-2.0.6" sources."getpass-0.1.7" sources."git-clone-0.1.0" sources."git-config-path-1.0.1" - sources."git-parse-1.0.4" + (sources."git-parse-1.0.4" // { + dependencies = [ + sources."es-abstract-1.17.7" + sources."util.promisify-1.0.1" + ]; + }) (sources."git-rev-sync-2.1.0" // { dependencies = [ sources."graceful-fs-4.1.15" ]; }) sources."git-up-4.0.2" - sources."git-url-parse-11.4.0" + sources."git-url-parse-11.4.3" sources."glob-7.1.5" sources."glob-parent-5.1.1" sources."glob-to-regexp-0.3.0" @@ -63378,7 +63149,6 @@ in dependencies = [ sources."lru-cache-6.0.0" sources."semver-7.3.4" - sources."yallist-4.0.0" ]; }) sources."global-dirs-0.1.1" @@ -63432,7 +63202,7 @@ in sources."ts-invariant-0.3.3" ]; }) - sources."graphql-extensions-0.12.7" + sources."graphql-extensions-0.12.8" sources."graphql-subscriptions-1.1.0" sources."graphql-tag-2.11.0" sources."graphql-tools-4.0.8" @@ -63466,7 +63236,7 @@ in sources."hash.js-1.1.7" (sources."header-case-2.0.4" // { dependencies = [ - sources."tslib-2.0.3" + sources."tslib-2.1.0" ]; }) sources."homedir-polyfill-1.0.3" @@ -63665,7 +63435,7 @@ in sources."lowdb-1.0.0" (sources."lower-case-2.0.2" // { dependencies = [ - sources."tslib-2.0.3" + sources."tslib-2.1.0" ]; }) sources."lowercase-keys-1.0.1" @@ -63733,19 +63503,23 @@ in sources."nice-try-1.0.5" (sources."no-case-3.0.4" // { dependencies = [ - sources."tslib-2.0.3" + sources."tslib-2.1.0" ]; }) sources."node-dir-0.1.17" sources."node-fetch-2.6.1" sources."node-ipc-9.1.3" sources."node-modules-regexp-1.0.0" - (sources."node-notifier-6.0.0" // { + (sources."node-notifier-9.0.0" // { dependencies = [ sources."is-wsl-2.2.0" + sources."lru-cache-6.0.0" + sources."semver-7.3.4" + sources."uuid-8.3.2" + sources."which-2.0.2" ]; }) - sources."node-releases-1.1.69" + sources."node-releases-1.1.70" (sources."nodemon-1.19.4" // { dependencies = [ sources."debug-3.2.7" @@ -63785,11 +63559,7 @@ in sources."object-treeify-1.1.31" sources."object-visit-1.0.1" sources."object.assign-4.1.2" - (sources."object.getownpropertydescriptors-2.1.1" // { - dependencies = [ - sources."es-abstract-1.18.0-next.1" - ]; - }) + sources."object.getownpropertydescriptors-2.1.1" sources."object.pick-1.3.0" sources."on-finished-2.3.0" sources."once-1.4.0" @@ -63818,25 +63588,29 @@ in }) (sources."param-case-3.0.4" // { dependencies = [ - sources."tslib-2.0.3" + sources."tslib-2.1.0" ]; }) sources."parse-git-config-2.0.3" - sources."parse-json-5.1.0" + sources."parse-json-5.2.0" sources."parse-passwd-1.0.0" - sources."parse-path-4.0.2" + (sources."parse-path-4.0.3" // { + dependencies = [ + sources."qs-6.9.6" + ]; + }) sources."parse-url-5.0.2" sources."parseurl-1.3.3" (sources."pascal-case-3.1.2" // { dependencies = [ - sources."tslib-2.0.3" + sources."tslib-2.1.0" ]; }) sources."pascalcase-0.1.1" sources."password-prompt-1.1.2" (sources."path-case-3.0.4" // { dependencies = [ - sources."tslib-2.0.3" + sources."tslib-2.1.0" ]; }) sources."path-dirname-1.0.2" @@ -63856,6 +63630,7 @@ in sources."execa-0.9.0" sources."get-stream-3.0.0" sources."lru-cache-4.1.5" + sources."yallist-2.1.2" ]; }) sources."pify-3.0.0" @@ -63898,7 +63673,7 @@ in sources."pump-3.0.0" sources."punycode-2.1.1" sources."qs-6.5.2" - sources."query-string-5.1.1" + sources."query-string-6.13.8" sources."range-parser-1.2.1" (sources."raw-body-2.4.0" // { dependencies = [ @@ -63956,7 +63731,7 @@ in sources."registry-auth-token-3.4.0" sources."registry-url-3.1.0" sources."regjsgen-0.5.2" - (sources."regjsparser-0.6.4" // { + (sources."regjsparser-0.6.6" // { dependencies = [ sources."jsesc-0.5.0" ]; @@ -64009,7 +63784,7 @@ in }) (sources."sentence-case-3.0.4" // { dependencies = [ - sources."tslib-2.0.3" + sources."tslib-2.1.0" ]; }) (sources."serialize-error-7.0.1" // { @@ -64033,7 +63808,7 @@ in sources."slice-ansi-0.0.4" (sources."snake-case-3.0.4" // { dependencies = [ - sources."tslib-2.0.3" + sources."tslib-2.1.0" ]; }) (sources."snapdragon-0.8.2" // { @@ -64079,6 +63854,7 @@ in sources."spdx-exceptions-2.3.0" sources."spdx-expression-parse-3.0.1" sources."spdx-license-ids-3.0.7" + sources."split-on-first-1.1.0" (sources."split-string-3.1.0" // { dependencies = [ sources."extend-shallow-3.0.2" @@ -64108,7 +63884,7 @@ in sources."statuses-1.5.0" sources."steno-0.4.4" sources."streamsearch-0.1.2" - sources."strict-uri-encode-1.1.0" + sources."strict-uri-encode-2.0.0" sources."string-hash-1.1.3" sources."string-width-4.2.0" sources."string.prototype.trimend-1.0.3" @@ -64183,6 +63959,7 @@ in sources."execa-0.7.0" sources."get-stream-3.0.0" sources."lru-cache-4.1.5" + sources."yallist-2.1.2" ]; }) sources."through-2.3.8" @@ -64257,21 +64034,21 @@ in }) (sources."upper-case-2.0.2" // { dependencies = [ - sources."tslib-2.0.3" + sources."tslib-2.1.0" ]; }) (sources."upper-case-first-2.0.2" // { dependencies = [ - sources."tslib-2.0.3" + sources."tslib-2.1.0" ]; }) - sources."uri-js-4.4.0" + sources."uri-js-4.4.1" sources."urix-0.1.0" sources."url-parse-lax-1.0.0" sources."url-to-options-1.0.1" sources."use-3.1.1" sources."util-deprecate-1.0.2" - sources."util.promisify-1.0.1" + sources."util.promisify-1.1.1" sources."utils-merge-1.0.1" sources."uuid-3.4.0" sources."validate-npm-package-license-3.0.4" @@ -64329,7 +64106,7 @@ in sources."xss-1.0.8" sources."xtend-4.0.2" sources."y18n-4.0.1" - sources."yallist-2.1.2" + sources."yallist-4.0.0" (sources."yaml-front-matter-3.4.1" // { dependencies = [ sources."commander-1.0.0" @@ -64367,31 +64144,31 @@ in "@webassemblyjs/cli" = nodeEnv.buildNodePackage { name = "_at_webassemblyjs_slash_cli"; packageName = "@webassemblyjs/cli"; - version = "1.9.1"; + version = "1.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/@webassemblyjs/cli/-/cli-1.9.1.tgz"; - sha512 = "OMu4uSrLdv1bJRrV+zbl6DszJiYaSUwfeigoGMkZvVHzh686pmzka9Bbz85es9Az/dnantDDIokEPSx1FQYm4A=="; + url = "https://registry.npmjs.org/@webassemblyjs/cli/-/cli-1.11.0.tgz"; + sha512 = "mQjMqOSOCu1lsA7cVvCKkK/IBED+qUtjrSuFhLBSEusHu5IqhzWFWnappMRpA424lNDMScsxry5jhbM+c9wyEg=="; }; dependencies = [ - sources."@webassemblyjs/ast-1.9.1" - sources."@webassemblyjs/floating-point-hex-parser-1.9.1" - sources."@webassemblyjs/helper-api-error-1.9.1" - sources."@webassemblyjs/helper-code-frame-1.9.1" - sources."@webassemblyjs/helper-compiler-1.9.1" - sources."@webassemblyjs/helper-flatten-ast-1.9.1" - sources."@webassemblyjs/helper-fsm-1.9.1" - sources."@webassemblyjs/helper-module-context-1.9.1" - sources."@webassemblyjs/helper-wasm-bytecode-1.9.1" - sources."@webassemblyjs/ieee754-1.9.1" - sources."@webassemblyjs/leb128-1.9.1" - sources."@webassemblyjs/utf8-1.9.1" - sources."@webassemblyjs/validation-1.9.1" - sources."@webassemblyjs/wasm-parser-1.9.1" - sources."@webassemblyjs/wast-parser-1.9.1" - sources."@webassemblyjs/wast-printer-1.9.1" + sources."@webassemblyjs/ast-1.11.0" + sources."@webassemblyjs/floating-point-hex-parser-1.11.0" + sources."@webassemblyjs/helper-api-error-1.11.0" + sources."@webassemblyjs/helper-code-frame-1.11.0" + sources."@webassemblyjs/helper-compiler-1.11.0" + sources."@webassemblyjs/helper-flatten-ast-1.11.0" + sources."@webassemblyjs/helper-fsm-1.11.0" + sources."@webassemblyjs/helper-numbers-1.11.0" + sources."@webassemblyjs/helper-wasm-bytecode-1.11.0" + sources."@webassemblyjs/ieee754-1.11.0" + sources."@webassemblyjs/leb128-1.11.0" + sources."@webassemblyjs/utf8-1.11.0" + sources."@webassemblyjs/validation-1.11.0" + sources."@webassemblyjs/wasm-parser-1.11.0" + sources."@webassemblyjs/wast-parser-1.11.0" + sources."@webassemblyjs/wast-printer-1.11.0" sources."@xtuc/ieee754-1.2.0" sources."@xtuc/long-4.2.2" - sources."webassemblyjs-1.9.1" + sources."webassemblyjs-1.11.0" ]; buildInputs = globalBuildInputs; meta = { @@ -64406,31 +64183,31 @@ in "@webassemblyjs/repl" = nodeEnv.buildNodePackage { name = "_at_webassemblyjs_slash_repl"; packageName = "@webassemblyjs/repl"; - version = "1.9.1"; + version = "1.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/@webassemblyjs/repl/-/repl-1.9.1.tgz"; - sha512 = "190S+kS/qWfwt/c/QSpRmZpZV57WEL4Cbz2KZu+z5HAg+e53LXxC4XfpxHdsw+1Lo8Z4QB7nI+5xIr2mH+2ZjQ=="; + url = "https://registry.npmjs.org/@webassemblyjs/repl/-/repl-1.11.0.tgz"; + sha512 = "U+f6IHDVPOdj1C22AMb8+xEq5OpEhXKcTl+YyMEqRtUdAt6CVkoeHdaPVv4iDfBaxR15nds8DRq+gHjCncrA3Q=="; }; dependencies = [ - sources."@webassemblyjs/ast-1.9.1" - sources."@webassemblyjs/floating-point-hex-parser-1.9.1" - sources."@webassemblyjs/helper-api-error-1.9.1" - sources."@webassemblyjs/helper-code-frame-1.9.1" - sources."@webassemblyjs/helper-compiler-1.9.1" - sources."@webassemblyjs/helper-flatten-ast-1.9.1" - sources."@webassemblyjs/helper-fsm-1.9.1" - sources."@webassemblyjs/helper-module-context-1.9.1" - sources."@webassemblyjs/helper-wasm-bytecode-1.9.1" - sources."@webassemblyjs/ieee754-1.9.1" - sources."@webassemblyjs/leb128-1.9.1" - sources."@webassemblyjs/utf8-1.9.1" - sources."@webassemblyjs/validation-1.9.1" - sources."@webassemblyjs/wasm-parser-1.9.1" - sources."@webassemblyjs/wast-parser-1.9.1" - sources."@webassemblyjs/wast-printer-1.9.1" + sources."@webassemblyjs/ast-1.11.0" + sources."@webassemblyjs/floating-point-hex-parser-1.11.0" + sources."@webassemblyjs/helper-api-error-1.11.0" + sources."@webassemblyjs/helper-code-frame-1.11.0" + sources."@webassemblyjs/helper-compiler-1.11.0" + sources."@webassemblyjs/helper-flatten-ast-1.11.0" + sources."@webassemblyjs/helper-fsm-1.11.0" + sources."@webassemblyjs/helper-numbers-1.11.0" + sources."@webassemblyjs/helper-wasm-bytecode-1.11.0" + sources."@webassemblyjs/ieee754-1.11.0" + sources."@webassemblyjs/leb128-1.11.0" + sources."@webassemblyjs/utf8-1.11.0" + sources."@webassemblyjs/validation-1.11.0" + sources."@webassemblyjs/wasm-parser-1.11.0" + sources."@webassemblyjs/wast-parser-1.11.0" + sources."@webassemblyjs/wast-printer-1.11.0" sources."@xtuc/ieee754-1.2.0" sources."@xtuc/long-4.2.2" - sources."webassemblyjs-1.9.1" + sources."webassemblyjs-1.11.0" ]; buildInputs = globalBuildInputs; meta = { @@ -64482,10 +64259,10 @@ in "@webassemblyjs/wasm-text-gen" = nodeEnv.buildNodePackage { name = "_at_webassemblyjs_slash_wasm-text-gen"; packageName = "@webassemblyjs/wasm-text-gen"; - version = "1.9.1"; + version = "1.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/@webassemblyjs/wasm-text-gen/-/wasm-text-gen-1.9.1.tgz"; - sha512 = "RzgRzhCQJ/DBak+Yoy2bo4W6dUdqiswX8PN7qXsIZpNLYMcOOkcaq2o5gkiT/Y2HM3Rt08GxnBBlanXTrryTKQ=="; + url = "https://registry.npmjs.org/@webassemblyjs/wasm-text-gen/-/wasm-text-gen-1.11.0.tgz"; + sha512 = "Q1OfB3hpa4TtM6x5a2gJmZncpQYx0hFt4ohdgv4Ms67kcAVwL29QQ2NDbNqfKr15IzlNAhLGueCzxG6dMjdnbQ=="; }; dependencies = [ sources."@babel/code-frame-7.12.11" @@ -64495,19 +64272,15 @@ in sources."@babel/parser-7.12.11" sources."@babel/template-7.12.7" sources."@babel/types-7.12.12" - sources."@webassemblyjs/ast-1.9.1" - sources."@webassemblyjs/floating-point-hex-parser-1.9.1" - sources."@webassemblyjs/helper-api-error-1.9.1" - sources."@webassemblyjs/helper-code-frame-1.9.1" - sources."@webassemblyjs/helper-fsm-1.9.1" - sources."@webassemblyjs/helper-module-context-1.9.1" - sources."@webassemblyjs/helper-wasm-bytecode-1.9.1" - sources."@webassemblyjs/ieee754-1.9.1" - sources."@webassemblyjs/leb128-1.9.1" - sources."@webassemblyjs/utf8-1.9.1" - sources."@webassemblyjs/wasm-parser-1.9.1" - sources."@webassemblyjs/wast-parser-1.9.1" - sources."@webassemblyjs/wast-printer-1.9.1" + sources."@webassemblyjs/ast-1.11.0" + sources."@webassemblyjs/floating-point-hex-parser-1.11.0" + sources."@webassemblyjs/helper-api-error-1.11.0" + sources."@webassemblyjs/helper-numbers-1.11.0" + sources."@webassemblyjs/helper-wasm-bytecode-1.11.0" + sources."@webassemblyjs/ieee754-1.11.0" + sources."@webassemblyjs/leb128-1.11.0" + sources."@webassemblyjs/utf8-1.11.0" + sources."@webassemblyjs/wasm-parser-1.11.0" sources."@xtuc/ieee754-1.2.0" sources."@xtuc/long-4.2.2" sources."ansi-styles-3.2.1" @@ -64537,21 +64310,21 @@ in "@webassemblyjs/wast-refmt" = nodeEnv.buildNodePackage { name = "_at_webassemblyjs_slash_wast-refmt"; packageName = "@webassemblyjs/wast-refmt"; - version = "1.9.1"; + version = "1.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/@webassemblyjs/wast-refmt/-/wast-refmt-1.9.1.tgz"; - sha512 = "+JfTZZV25LhdJspgw5xznFr/2QiFnHrKvb8CXmEV/s3PNFRpNDUlRPw0ZUZk2cwooZdiWNpC+WKfRPQb8tMx8w=="; + url = "https://registry.npmjs.org/@webassemblyjs/wast-refmt/-/wast-refmt-1.11.0.tgz"; + sha512 = "UVjojl3i1wzn2odausLskcFh7VaZqbp5HJ5od9pdsLvUZ06cSUo35yJ9Yetoc+yNj/IfdfisJtOcTQmILQ+RqQ=="; }; dependencies = [ - sources."@webassemblyjs/ast-1.9.1" - sources."@webassemblyjs/floating-point-hex-parser-1.9.1" - sources."@webassemblyjs/helper-api-error-1.9.1" - sources."@webassemblyjs/helper-code-frame-1.9.1" - sources."@webassemblyjs/helper-fsm-1.9.1" - sources."@webassemblyjs/helper-module-context-1.9.1" - sources."@webassemblyjs/helper-wasm-bytecode-1.9.1" - sources."@webassemblyjs/wast-parser-1.9.1" - sources."@webassemblyjs/wast-printer-1.9.1" + sources."@webassemblyjs/ast-1.11.0" + sources."@webassemblyjs/floating-point-hex-parser-1.11.0" + sources."@webassemblyjs/helper-api-error-1.11.0" + sources."@webassemblyjs/helper-code-frame-1.11.0" + sources."@webassemblyjs/helper-fsm-1.11.0" + sources."@webassemblyjs/helper-numbers-1.11.0" + sources."@webassemblyjs/helper-wasm-bytecode-1.11.0" + sources."@webassemblyjs/wast-parser-1.11.0" + sources."@webassemblyjs/wast-printer-1.11.0" sources."@xtuc/long-4.2.2" ]; buildInputs = globalBuildInputs; @@ -64706,7 +64479,7 @@ in dependencies = [ sources."@types/glob-7.1.3" sources."@types/minimatch-3.0.3" - sources."@types/node-14.14.20" + sources."@types/node-14.14.22" sources."balanced-match-1.0.0" sources."brace-expansion-1.1.11" sources."chromium-pickle-js-0.2.0" @@ -64841,7 +64614,7 @@ in sources."turndown-4.0.2" sources."tweetnacl-0.14.5" sources."type-check-0.3.2" - sources."uri-js-4.4.0" + sources."uri-js-4.4.1" sources."urijs-1.19.5" sources."uuid-3.4.0" sources."verror-1.10.0" @@ -64874,10 +64647,10 @@ in bower = nodeEnv.buildNodePackage { name = "bower"; packageName = "bower"; - version = "1.8.8"; + version = "1.8.12"; src = fetchurl { - url = "https://registry.npmjs.org/bower/-/bower-1.8.8.tgz"; - sha512 = "1SrJnXnkP9soITHptSO+ahx3QKp3cVzn8poI6ujqc5SeOkg5iqM1pK9H+DSc2OQ8SnO0jC/NG4Ur/UIwy7574A=="; + url = "https://registry.npmjs.org/bower/-/bower-1.8.12.tgz"; + sha512 = "u1xy9SrwwoPlgjuHNjhV+YUPVdqyBj2ALBxuzeIUKXaPI2i2xypGgxqXkuHcITGdi5yBj5JuXgyMvgiWiS1S3Q=="; }; buildInputs = globalBuildInputs; meta = { @@ -64901,7 +64674,7 @@ in sources."argparse-1.0.4" sources."array-find-index-1.0.2" sources."balanced-match-1.0.0" - sources."bower-1.8.8" + sources."bower-1.8.12" sources."bower-endpoint-parser-0.2.1" sources."bower-json-0.6.0" sources."bower-logger-0.2.1" @@ -65070,7 +64843,7 @@ in sources."buffer-xor-1.0.3" sources."builtin-status-codes-3.0.0" sources."cached-path-relative-1.0.2" - sources."call-bind-1.0.0" + sources."call-bind-1.0.2" sources."cipher-base-1.0.4" sources."combine-source-map-0.8.0" sources."concat-map-0.0.1" @@ -65105,7 +64878,7 @@ in sources."bn.js-4.11.9" ]; }) - sources."es-abstract-1.18.0-next.1" + sources."es-abstract-1.18.0-next.2" sources."es-to-primitive-1.2.1" sources."events-3.2.0" sources."evp_bytestokey-1.0.3" @@ -65114,7 +64887,7 @@ in sources."fs.realpath-1.0.0" sources."function-bind-1.1.1" sources."get-assigned-identifiers-1.2.0" - sources."get-intrinsic-1.0.2" + sources."get-intrinsic-1.1.0" sources."glob-7.1.6" sources."has-1.0.3" sources."has-symbols-1.0.1" @@ -65249,10 +65022,10 @@ in btc-rpc-explorer = nodeEnv.buildNodePackage { name = "btc-rpc-explorer"; packageName = "btc-rpc-explorer"; - version = "2.1.0"; + version = "2.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/btc-rpc-explorer/-/btc-rpc-explorer-2.1.0.tgz"; - sha512 = "dB+CI/FcZWmQPD5P1uMGnnCi6a/skTTFHWnPRYq5lfYPc9k6Cjz/nTIrZXhIHBcdxiwEiY10QX3UqYLQgF58dA=="; + url = "https://registry.npmjs.org/btc-rpc-explorer/-/btc-rpc-explorer-2.2.0.tgz"; + sha512 = "xaexMnw1gI6WYyEDMlIg2epSPuh0CcKfAqdHf8J7VATDYgQNcLaXCzM4TKTmkBjiA5f0rXypX5rVw0d8p+p1Vw=="; }; dependencies = [ sources."@types/babel-types-7.0.9" @@ -65318,7 +65091,7 @@ in sources."buffer-alloc-unsafe-1.1.0" sources."buffer-fill-1.0.0" sources."buffer-from-1.1.1" - sources."bunyan-1.8.14" + sources."bunyan-1.8.15" sources."bytes-3.1.0" sources."camelcase-4.1.0" sources."camelcase-keys-4.2.0" @@ -65670,7 +65443,7 @@ in sources."uglify-to-browserify-1.0.2" sources."uid-safe-2.1.5" sources."unpipe-1.0.0" - sources."uri-js-4.4.0" + sources."uri-js-4.4.1" sources."util-deprecate-1.0.2" sources."utils-merge-1.0.1" sources."uuid-3.4.0" @@ -65725,7 +65498,7 @@ in sources."@protobufjs/pool-1.1.0" sources."@protobufjs/utf8-1.1.0" sources."@types/long-4.0.1" - sources."@types/node-13.13.39" + sources."@types/node-13.13.40" sources."addr-to-ip-port-1.5.1" sources."airplay-js-0.2.16" sources."ajv-6.12.6" @@ -65787,7 +65560,7 @@ in sources."co-3.1.0" sources."codepage-1.4.0" sources."combined-stream-1.0.8" - sources."commander-6.2.1" + sources."commander-7.0.0" sources."compact2string-1.4.1" sources."concat-map-0.0.1" (sources."concat-stream-2.0.0" // { @@ -66089,7 +65862,7 @@ in sources."ultron-1.1.1" sources."underscore-1.6.0" sources."uniq-1.0.1" - sources."uri-js-4.4.0" + sources."uri-js-4.4.1" sources."utfx-1.0.1" sources."util-deprecate-1.0.2" sources."utp-0.0.7" @@ -66130,35 +65903,35 @@ in cdk8s-cli = nodeEnv.buildNodePackage { name = "cdk8s-cli"; packageName = "cdk8s-cli"; - version = "1.0.0-beta.5"; + version = "1.0.0-beta.6"; src = fetchurl { - url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-1.0.0-beta.5.tgz"; - sha512 = "5jVubGjmRXlrXPDJIl2g2oWApFmN7V2EzonMWDd67TlaOwwS8Ypy4ej3VvwviXyZ7IO9zET4pDNFSInBQE+aJw=="; + url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-1.0.0-beta.6.tgz"; + sha512 = "x6sJTGaSPoyQbcKbxkKxmgdGXLpyO+qbgt6GgN9guIk28dgkoqZG9CcfmwjAs+OXoY4ZiyNKvNO4w9ljW/+XOQ=="; }; dependencies = [ - sources."@jsii/spec-1.16.0" - sources."@types/node-10.17.50" + sources."@jsii/spec-1.17.1" + sources."@types/node-10.17.51" sources."ansi-regex-5.0.0" sources."ansi-styles-4.3.0" sources."array-filter-1.0.0" sources."at-least-node-1.0.0" sources."available-typed-arrays-1.0.2" - sources."call-bind-1.0.0" + sources."call-bind-1.0.2" sources."camelcase-6.2.0" sources."case-1.6.3" - sources."cdk8s-1.0.0-beta.5" + sources."cdk8s-1.0.0-beta.6" sources."cliui-7.0.4" sources."clone-2.1.2" - (sources."codemaker-1.16.0" // { + (sources."codemaker-1.17.1" // { dependencies = [ - sources."fs-extra-9.0.1" + sources."fs-extra-9.1.0" ]; }) sources."color-convert-2.0.1" sources."color-name-1.1.4" sources."colors-1.4.0" sources."commonmark-0.29.3" - sources."constructs-3.2.94" + sources."constructs-3.2.117" sources."date-format-3.0.0" sources."debug-4.3.2" sources."decamelize-4.0.0" @@ -66169,8 +65942,8 @@ in sources."dot-case-3.0.4" sources."emoji-regex-8.0.0" sources."entities-2.0.3" - sources."es-abstract-1.17.7" - sources."es-get-iterator-1.1.1" + sources."es-abstract-1.18.0-next.2" + sources."es-get-iterator-1.1.2" sources."es-to-primitive-1.2.1" sources."escalade-3.1.1" sources."escape-string-regexp-4.0.0" @@ -66185,7 +65958,7 @@ in }) sources."function-bind-1.1.1" sources."get-caller-file-2.0.5" - sources."get-intrinsic-1.0.2" + sources."get-intrinsic-1.1.0" sources."graceful-fs-4.2.4" sources."has-1.0.3" sources."has-symbols-1.0.1" @@ -66202,50 +65975,42 @@ in sources."is-set-2.0.2" sources."is-string-1.0.5" sources."is-symbol-1.0.3" - (sources."is-typed-array-1.1.4" // { - dependencies = [ - sources."es-abstract-1.18.0-next.1" - ]; - }) + sources."is-typed-array-1.1.4" sources."is-weakmap-2.0.1" sources."is-weakset-2.0.1" sources."isarray-2.0.5" - (sources."jsii-1.16.0" // { + (sources."jsii-1.17.1" // { dependencies = [ - sources."fs-extra-9.0.1" + sources."fs-extra-9.1.0" sources."yargs-16.2.0" ]; }) - (sources."jsii-pacmak-1.16.0" // { + (sources."jsii-pacmak-1.17.1" // { dependencies = [ - sources."fs-extra-9.0.1" + sources."fs-extra-9.1.0" sources."yargs-16.2.0" ]; }) - (sources."jsii-reflect-1.16.0" // { + (sources."jsii-reflect-1.17.1" // { dependencies = [ - sources."fs-extra-9.0.1" + sources."fs-extra-9.1.0" sources."yargs-16.2.0" ]; }) - (sources."jsii-rosetta-1.16.0" // { + (sources."jsii-rosetta-1.17.1" // { dependencies = [ - sources."fs-extra-9.0.1" + sources."fs-extra-9.1.0" sources."yargs-16.2.0" ]; }) - (sources."jsii-srcmak-0.1.180" // { + (sources."jsii-srcmak-0.1.210" // { dependencies = [ - sources."fs-extra-9.0.1" + sources."fs-extra-9.1.0" ]; }) sources."json-schema-0.2.5" - sources."json2jsii-0.1.172" - (sources."jsonfile-6.1.0" // { - dependencies = [ - sources."universalify-2.0.0" - ]; - }) + sources."json2jsii-0.1.188" + sources."jsonfile-6.1.0" sources."jsonschema-1.4.0" sources."locate-path-5.0.0" sources."log4js-6.3.0" @@ -66260,15 +66025,15 @@ in sources."object-is-1.1.4" sources."object-keys-1.1.1" sources."object.assign-4.1.2" - sources."oo-ascii-tree-1.16.0" + sources."oo-ascii-tree-1.17.1" sources."p-limit-2.3.0" sources."p-locate-4.1.0" sources."p-try-2.2.0" sources."path-exists-4.0.0" - sources."regexp.prototype.flags-1.3.0" + sources."regexp.prototype.flags-1.3.1" sources."require-directory-2.1.1" sources."require-main-filename-2.0.0" - sources."rfdc-1.1.4" + sources."rfdc-1.2.0" sources."semver-7.3.4" (sources."semver-intersect-1.4.0" // { dependencies = [ @@ -66279,7 +66044,7 @@ in sources."side-channel-1.0.4" sources."snake-case-3.0.4" sources."sort-json-2.0.0" - sources."spdx-license-list-6.3.0" + sources."spdx-license-list-6.4.0" sources."sscaff-1.2.0" (sources."streamroller-2.2.4" // { dependencies = [ @@ -66291,17 +66056,13 @@ in sources."string.prototype.trimend-1.0.3" sources."string.prototype.trimstart-1.0.3" sources."strip-ansi-6.0.0" - sources."tslib-2.0.3" + sources."tslib-2.1.0" sources."typescript-3.9.7" - sources."universalify-1.0.0" + sources."universalify-2.0.0" sources."which-boxed-primitive-1.0.2" sources."which-collection-1.0.1" sources."which-module-2.0.0" - (sources."which-typed-array-1.1.4" // { - dependencies = [ - sources."es-abstract-1.18.0-next.1" - ]; - }) + sources."which-typed-array-1.1.4" sources."wrap-ansi-7.0.0" sources."xmlbuilder-15.1.1" sources."xmldom-0.4.0" @@ -66333,32 +66094,52 @@ in cdktf-cli = nodeEnv.buildNodePackage { name = "cdktf-cli"; packageName = "cdktf-cli"; - version = "0.0.19"; + version = "0.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/cdktf-cli/-/cdktf-cli-0.0.19.tgz"; - sha512 = "JH2DyIQyhpI8lwO4HANha/HiVV2MXVG63iK+PZbEZKJDEr3fVB0WSKvzrp66CarceLiuNy7Z5cIR+81Q6eMx+w=="; + url = "https://registry.npmjs.org/cdktf-cli/-/cdktf-cli-0.1.0.tgz"; + sha512 = "tlkYo1SbitrwfqcTK0S5ZsGasRaJtN5tRP3VxgIszJZggav7mpRGABjTkqY23GzG8UXIaUTvH4uBGshx+iqcOA=="; }; dependencies = [ - sources."@jsii/spec-1.16.0" - sources."@types/node-14.14.20" + sources."@jsii/spec-1.17.1" + sources."@skorfmann/terraform-cloud-1.7.1" + sources."@types/archiver-5.1.0" + sources."@types/glob-7.1.3" + sources."@types/minimatch-3.0.3" + sources."@types/node-14.14.22" sources."@types/readline-sync-1.4.3" + sources."@types/stream-buffers-3.0.3" sources."@types/uuid-8.3.0" sources."@types/yoga-layout-1.9.2" sources."ansi-escapes-4.3.1" sources."ansi-regex-5.0.0" sources."ansi-styles-4.3.0" + sources."archiver-5.2.0" + (sources."archiver-utils-2.1.0" // { + dependencies = [ + sources."readable-stream-2.3.7" + ]; + }) sources."array-filter-1.0.0" sources."array-includes-3.1.2" sources."array.prototype.flatmap-1.2.4" sources."arrify-2.0.1" sources."astral-regex-2.0.0" + sources."async-3.2.0" sources."at-least-node-1.0.0" sources."auto-bind-4.0.0" sources."available-typed-arrays-1.0.2" - sources."call-bind-1.0.0" + sources."axios-0.21.1" + sources."balanced-match-1.0.0" + sources."base64-js-1.5.1" + sources."bl-4.0.3" + sources."brace-expansion-1.1.11" + sources."buffer-5.7.1" + sources."buffer-crc32-0.2.13" + sources."call-bind-1.0.2" sources."camelcase-5.3.1" + sources."camelcase-keys-6.2.2" sources."case-1.6.3" - sources."cdktf-0.0.19" + sources."cdktf-0.1.0" sources."chalk-4.1.0" sources."ci-info-2.0.0" sources."cli-cursor-3.1.0" @@ -66375,35 +66156,57 @@ in sources."color-name-1.1.4" sources."colors-1.4.0" sources."commonmark-0.29.3" - sources."constructs-3.2.94" + sources."compress-commons-4.0.2" + sources."concat-map-0.0.1" + sources."constructs-3.2.117" + sources."core-util-is-1.0.2" + sources."crc-32-1.2.0" + sources."crc32-stream-4.0.1" sources."date-format-3.0.0" sources."debug-4.3.2" sources."decamelize-1.2.0" - sources."deep-equal-2.0.5" + (sources."deep-equal-2.0.5" // { + dependencies = [ + sources."isarray-2.0.5" + ]; + }) sources."define-properties-1.1.3" sources."detect-indent-5.0.0" sources."detect-newline-2.1.0" sources."doctrine-2.1.0" sources."emoji-regex-8.0.0" + sources."end-of-stream-1.4.4" sources."entities-2.0.3" - sources."es-abstract-1.18.0-next.1" - sources."es-get-iterator-1.1.1" + sources."es-abstract-1.18.0-next.2" + (sources."es-get-iterator-1.1.2" // { + dependencies = [ + sources."isarray-2.0.5" + ]; + }) sources."es-to-primitive-1.2.1" sources."escalade-3.1.1" sources."escape-string-regexp-4.0.0" sources."eslint-plugin-react-7.22.0" sources."esutils-2.0.3" + sources."exit-on-epipe-1.0.1" sources."find-up-4.1.0" sources."flatted-2.0.2" + sources."follow-redirects-1.13.2" sources."foreach-2.0.5" + sources."fs-constants-1.0.0" sources."fs-extra-8.1.0" + sources."fs.realpath-1.0.0" sources."function-bind-1.1.1" sources."get-caller-file-2.0.5" - sources."get-intrinsic-1.0.2" + sources."get-intrinsic-1.1.0" + sources."glob-7.1.6" sources."graceful-fs-4.2.4" sources."has-1.0.3" sources."has-flag-4.0.0" sources."has-symbols-1.0.1" + sources."ieee754-1.2.1" + sources."inflight-1.0.6" + sources."inherits-2.0.4" (sources."ink-2.7.1" // { dependencies = [ sources."chalk-3.0.0" @@ -66416,11 +66219,7 @@ in sources."chalk-3.0.0" ]; }) - (sources."internal-slot-1.0.2" // { - dependencies = [ - sources."es-abstract-1.17.7" - ]; - }) + sources."internal-slot-1.0.3" sources."is-arguments-1.1.0" sources."is-bigint-1.0.1" sources."is-boolean-object-1.1.0" @@ -66441,75 +66240,65 @@ in sources."is-weakmap-2.0.1" sources."is-weakset-2.0.1" sources."is-wsl-2.2.0" - sources."isarray-2.0.5" + sources."isarray-1.0.0" sources."js-tokens-4.0.0" - (sources."jsii-1.16.0" // { + (sources."jsii-1.17.1" // { dependencies = [ - sources."fs-extra-9.0.1" - (sources."jsonfile-6.1.0" // { - dependencies = [ - sources."universalify-2.0.0" - ]; - }) - sources."universalify-1.0.0" + sources."fs-extra-9.1.0" + sources."jsonfile-6.1.0" + sources."universalify-2.0.0" sources."yargs-16.2.0" ]; }) - (sources."jsii-pacmak-1.16.0" // { + (sources."jsii-pacmak-1.17.1" // { dependencies = [ sources."camelcase-6.2.0" - sources."codemaker-1.16.0" + sources."codemaker-1.17.1" sources."decamelize-4.0.0" - sources."fs-extra-9.0.1" - (sources."jsonfile-6.1.0" // { - dependencies = [ - sources."universalify-2.0.0" - ]; - }) - sources."universalify-1.0.0" + sources."fs-extra-9.1.0" + sources."jsonfile-6.1.0" + sources."universalify-2.0.0" sources."yargs-16.2.0" ]; }) - (sources."jsii-reflect-1.16.0" // { + (sources."jsii-reflect-1.17.1" // { dependencies = [ - sources."fs-extra-9.0.1" - (sources."jsonfile-6.1.0" // { - dependencies = [ - sources."universalify-2.0.0" - ]; - }) - sources."universalify-1.0.0" + sources."fs-extra-9.1.0" + sources."jsonfile-6.1.0" + sources."universalify-2.0.0" sources."yargs-16.2.0" ]; }) - (sources."jsii-rosetta-1.16.0" // { + (sources."jsii-rosetta-1.17.1" // { dependencies = [ - sources."fs-extra-9.0.1" - (sources."jsonfile-6.1.0" // { - dependencies = [ - sources."universalify-2.0.0" - ]; - }) - sources."universalify-1.0.0" + sources."fs-extra-9.1.0" + sources."jsonfile-6.1.0" + sources."universalify-2.0.0" sources."yargs-16.2.0" ]; }) - (sources."jsii-srcmak-0.1.180" // { + (sources."jsii-srcmak-0.1.210" // { dependencies = [ - sources."fs-extra-9.0.1" - (sources."jsonfile-6.1.0" // { - dependencies = [ - sources."universalify-2.0.0" - ]; - }) - sources."universalify-1.0.0" + sources."fs-extra-9.1.0" + sources."jsonfile-6.1.0" + sources."universalify-2.0.0" ]; }) sources."jsonfile-4.0.0" sources."jsonschema-1.4.0" sources."jsx-ast-utils-3.2.0" + (sources."lazystream-1.0.0" // { + dependencies = [ + sources."readable-stream-2.3.7" + ]; + }) sources."locate-path-5.0.0" + sources."lodash.defaults-4.2.0" + sources."lodash.difference-4.5.0" + sources."lodash.flatten-4.4.0" + sources."lodash.isplainobject-4.0.6" sources."lodash.throttle-4.1.1" + sources."lodash.union-4.6.0" (sources."log-update-3.4.0" // { dependencies = [ sources."ansi-escapes-3.2.0" @@ -66531,11 +66320,14 @@ in sources."log4js-6.3.0" sources."loose-envify-1.4.0" sources."lru-cache-6.0.0" + sources."map-obj-4.1.0" sources."mdurl-1.0.1" sources."mimic-fn-2.1.0" + sources."minimatch-3.0.4" sources."minimist-1.2.5" sources."ms-2.1.2" sources."ncp-2.0.0" + sources."normalize-path-3.0.0" sources."object-assign-4.1.1" sources."object-inspect-1.9.0" sources."object-is-1.1.4" @@ -66544,29 +66336,33 @@ in sources."object.entries-1.1.3" sources."object.fromentries-2.0.3" sources."object.values-1.1.2" + sources."once-1.4.0" sources."onetime-5.1.2" - sources."oo-ascii-tree-1.16.0" - sources."open-7.3.0" + sources."oo-ascii-tree-1.17.1" + sources."open-7.3.1" sources."p-limit-2.3.0" sources."p-locate-4.1.0" sources."p-try-2.2.0" sources."path-exists-4.0.0" + sources."path-is-absolute-1.0.1" sources."path-parse-1.0.6" + sources."printj-1.1.2" + sources."process-nextick-args-2.0.1" sources."prop-types-15.7.2" + sources."quick-lru-4.0.1" sources."react-16.14.0" sources."react-is-16.13.1" sources."react-reconciler-0.24.0" + sources."readable-stream-3.6.0" + sources."readdir-glob-1.1.1" sources."readline-sync-1.4.10" - (sources."regexp.prototype.flags-1.3.0" // { - dependencies = [ - sources."es-abstract-1.17.7" - ]; - }) + sources."regexp.prototype.flags-1.3.1" sources."require-directory-2.1.1" sources."require-main-filename-2.0.0" sources."resolve-1.19.0" sources."restore-cursor-3.1.0" - sources."rfdc-1.1.4" + sources."rfdc-1.2.0" + sources."safe-buffer-5.1.2" sources."scheduler-0.18.0" sources."semver-7.3.4" (sources."semver-intersect-1.4.0" // { @@ -66579,8 +66375,9 @@ in sources."signal-exit-3.0.3" sources."slice-ansi-3.0.0" sources."sort-json-2.0.0" - sources."spdx-license-list-6.3.0" + sources."spdx-license-list-6.4.0" sources."sscaff-1.2.0" + sources."stream-buffers-3.0.2" (sources."streamroller-2.2.4" // { dependencies = [ sources."date-format-2.1.0" @@ -66598,11 +66395,14 @@ in sources."string.prototype.repeat-0.2.0" sources."string.prototype.trimend-1.0.3" sources."string.prototype.trimstart-1.0.3" + sources."string_decoder-1.1.1" sources."strip-ansi-6.0.0" sources."supports-color-7.2.0" + sources."tar-stream-2.2.0" sources."type-fest-0.11.0" sources."typescript-3.9.7" sources."universalify-0.1.2" + sources."util-deprecate-1.0.2" sources."uuid-8.3.2" sources."which-boxed-primitive-1.0.2" sources."which-collection-1.0.1" @@ -66610,6 +66410,7 @@ in sources."which-typed-array-1.1.4" sources."widest-line-3.1.0" sources."wrap-ansi-6.2.0" + sources."wrappy-1.0.2" sources."xmlbuilder-15.1.1" sources."xmldom-0.4.0" sources."y18n-5.0.5" @@ -66624,6 +66425,7 @@ in sources."yargs-parser-20.2.4" sources."yn-3.1.1" sources."yoga-layout-prebuilt-1.10.0" + sources."zip-stream-4.0.4" ]; buildInputs = globalBuildInputs; meta = { @@ -66773,10 +66575,10 @@ in coc-diagnostic = nodeEnv.buildNodePackage { name = "coc-diagnostic"; packageName = "coc-diagnostic"; - version = "0.14.0"; + version = "0.18.0"; src = fetchurl { - url = "https://registry.npmjs.org/coc-diagnostic/-/coc-diagnostic-0.14.0.tgz"; - sha512 = "ccxtSRTqVIuIQrtS5SI0uevO2WC7cSA9dNtiZ/PveDKyxhqyQlfRs9n0bdOJdXteYt6BKUIiqFV8Q48Z71y89A=="; + url = "https://registry.npmjs.org/coc-diagnostic/-/coc-diagnostic-0.18.0.tgz"; + sha512 = "6ghwTYVdJ/XMcoLb690DPcxVM3t2bCDKTFPqMfkamBhKRJNFJDSjxQiP3Njn5f7g4rYvIuBQdZ8wteB4dr/4HA=="; }; buildInputs = globalBuildInputs; meta = { @@ -66814,10 +66616,10 @@ in coc-eslint = nodeEnv.buildNodePackage { name = "coc-eslint"; packageName = "coc-eslint"; - version = "1.4.1"; + version = "1.4.5"; src = fetchurl { - url = "https://registry.npmjs.org/coc-eslint/-/coc-eslint-1.4.1.tgz"; - sha512 = "dqzn4vqmEqIlzwpFxG6AnhXUwDSTMLsg2d4RDwHDhh1yioukSFR+turQxsq9fssuWeV208y54kb/AzmOIji9jA=="; + url = "https://registry.npmjs.org/coc-eslint/-/coc-eslint-1.4.5.tgz"; + sha512 = "+xt0bn1nG348Q2tERiL44a/20a+NeDJLtwh7Gnn5VjOQ64OYUGrbAbQphskdVZyLE5qRDTvyiLArN+IxDsmpQQ=="; }; buildInputs = globalBuildInputs; meta = { @@ -66832,10 +66634,10 @@ in coc-git = nodeEnv.buildNodePackage { name = "coc-git"; packageName = "coc-git"; - version = "2.0.5"; + version = "2.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/coc-git/-/coc-git-2.0.5.tgz"; - sha512 = "MwoSWGr8mco+/Bth/4zr0kNRuG9rXYgyAEI1mGOuRsMqy2G9LEr4azSP68V2EuIPzYVcYx6ZZk2o5e8b/ux0/w=="; + url = "https://registry.npmjs.org/coc-git/-/coc-git-2.2.0.tgz"; + sha512 = "afm5SjyvQl21+4oGotX8mxjiwEBw8veRJun+sZQ5S4ZXMH6tQBZexE0Nyydcaoa5U0P1TBlI7Ywt+e/IZZxleA=="; }; buildInputs = globalBuildInputs; meta = { @@ -66850,15 +66652,15 @@ in coc-go = nodeEnv.buildNodePackage { name = "coc-go"; packageName = "coc-go"; - version = "0.13.2"; + version = "0.13.3"; src = fetchurl { - url = "https://registry.npmjs.org/coc-go/-/coc-go-0.13.2.tgz"; - sha512 = "E//SHaQlzmh4nBUJsA6oSZWBVFkEWJ/kjL19jIBbIrY8KWCjxfCm6H8+WDNMUULHS2HQNlUEQzVHS/ftE10iGg=="; + url = "https://registry.npmjs.org/coc-go/-/coc-go-0.13.3.tgz"; + sha512 = "JxAJD3z10ziO8CxgTUlguZp8uy1r6fo0pP+L4GeXKv+q12BHIxWXoAZdd158vAP/YCh0Yw4zBrij57Fg4wtVdg=="; }; dependencies = [ sources."isexe-2.0.0" sources."node-fetch-2.6.1" - sources."tslib-2.0.3" + sources."tslib-2.1.0" sources."vscode-languageserver-textdocument-1.0.1" sources."vscode-uri-3.0.2" sources."which-2.0.2" @@ -66892,10 +66694,10 @@ in coc-html = nodeEnv.buildNodePackage { name = "coc-html"; packageName = "coc-html"; - version = "1.3.2"; + version = "1.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/coc-html/-/coc-html-1.3.2.tgz"; - sha512 = "8upyERwR/7zZNDkATpKy1aIyflzwfsgercRsHm1OG/ECRG2FpUWYkHywHBDbWAdHsipbd2WoO0nr3Ct22JV4oA=="; + url = "https://registry.npmjs.org/coc-html/-/coc-html-1.4.1.tgz"; + sha512 = "7SHQYzpRKPrpaLcTm1UUk1zu9VvFEJKFqxwDIuqv/CL0cBTtEvlsfpVh9DOaMHlZPu8U8Lgyf04bHV/sFS1zJw=="; }; dependencies = [ sources."typescript-4.1.3" @@ -66966,10 +66768,10 @@ in coc-json = nodeEnv.buildNodePackage { name = "coc-json"; packageName = "coc-json"; - version = "1.3.2"; + version = "1.3.3"; src = fetchurl { - url = "https://registry.npmjs.org/coc-json/-/coc-json-1.3.2.tgz"; - sha512 = "4wSADhO6oE2lxyYJw1cZqz6eYTrJWI4wHLETSTwhkkpZrPCNJA7mSmuB6oowxt7kJRmDVAIZP2mFyLTXU0jU6w=="; + url = "https://registry.npmjs.org/coc-json/-/coc-json-1.3.3.tgz"; + sha512 = "yMayIIMn/+JaSxHbAG2384sr1/1jvhDCuvRWXeWI+yLLVNCQ7pizGW8EeLC2bSkd01PORRWT4LBn7mNMs6dPRw=="; }; buildInputs = globalBuildInputs; meta = { @@ -66983,10 +66785,10 @@ in coc-lists = nodeEnv.buildNodePackage { name = "coc-lists"; packageName = "coc-lists"; - version = "1.3.16"; + version = "1.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/coc-lists/-/coc-lists-1.3.16.tgz"; - sha512 = "6m/LCFHcnFdbJoFnrkzj8OhBvcFl491eYG0247Gti/u2iQCVj2X8RRxdxcGbDh4tR5OEPZdQPcd6YMDbtphPSg=="; + url = "https://registry.npmjs.org/coc-lists/-/coc-lists-1.4.0.tgz"; + sha512 = "AKmM8/+BjncinB4MrS/e8hJ7MzvXL5GtAvusGZb3zsAj4tNO77oWiVzE8V09QEWAsorgHVgNv/OXr4EPJMZvpg=="; }; buildInputs = globalBuildInputs; meta = { @@ -67001,10 +66803,10 @@ in coc-markdownlint = nodeEnv.buildNodePackage { name = "coc-markdownlint"; packageName = "coc-markdownlint"; - version = "1.9.0"; + version = "1.10.1"; src = fetchurl { - url = "https://registry.npmjs.org/coc-markdownlint/-/coc-markdownlint-1.9.0.tgz"; - sha512 = "cTIR4IXs6CC06iDwylxzS0Sq4HhiWofTBqgedtbAckkaoJYOZdM+uMKKdkSO2nt93bHtE4MsEoQ91sxHgKqNfg=="; + url = "https://registry.npmjs.org/coc-markdownlint/-/coc-markdownlint-1.10.1.tgz"; + sha512 = "nYuGmxppC3+16kN7128HxrzDWAPGrC5KdP4XQQHoKeOAApLTphF9rH/gfWjUale+Roq8YDe0rEJBLc3DUdIebg=="; }; buildInputs = globalBuildInputs; meta = { @@ -67019,10 +66821,10 @@ in coc-metals = nodeEnv.buildNodePackage { name = "coc-metals"; packageName = "coc-metals"; - version = "0.9.9"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/coc-metals/-/coc-metals-0.9.9.tgz"; - sha512 = "VCjIm+ytVrgqzAXMpweh3D8SfQg9oF0BVXSFeUIgsm3xU9BuZd1jU+CxtNNAIihxcJ1LUX1JGn1Sydu541hwzA=="; + url = "https://registry.npmjs.org/coc-metals/-/coc-metals-1.0.1.tgz"; + sha512 = "1chc5qluoxF39fNKSoLNrPWrWsBQc+zHkXmleOka2HLYDQHmqgYqWZiPgJ03IqOoR3uJcS8sgdrCLyVdqWBwrg=="; }; dependencies = [ sources."@chemzqm/neovim-5.2.13" @@ -67040,7 +66842,7 @@ in sources."buffer-indexof-polyfill-1.0.2" sources."buffers-0.1.1" sources."bytes-3.1.0" - sources."call-bind-1.0.0" + sources."call-bind-1.0.2" sources."chainsaw-0.1.0" sources."chownr-2.0.0" sources."clipboardy-2.3.0" @@ -67068,7 +66870,7 @@ in sources."fast-diff-1.2.0" sources."fb-watchman-2.0.1" sources."flatted-2.0.2" - sources."follow-redirects-1.13.1" + sources."follow-redirects-1.13.2" sources."fp-ts-2.9.3" sources."fs-extra-8.1.0" sources."fs-minipass-2.1.0" @@ -67080,7 +66882,7 @@ in ]; }) sources."function-bind-1.1.1" - sources."get-intrinsic-1.0.2" + sources."get-intrinsic-1.1.0" sources."get-stream-4.1.0" sources."glob-7.1.6" sources."graceful-fs-4.2.4" @@ -67148,7 +66950,7 @@ in sources."rc-1.2.8" sources."readable-stream-2.3.7" sources."rfc-3986-1.0.1" - sources."rfdc-1.1.4" + sources."rfdc-1.2.0" sources."rimraf-3.0.2" sources."safe-buffer-5.1.2" sources."semver-7.3.4" @@ -67167,9 +66969,9 @@ in sources."string_decoder-1.1.1" sources."strip-eof-1.0.0" sources."strip-json-comments-2.0.1" - sources."tar-6.0.5" + sources."tar-6.1.0" sources."traverse-0.3.9" - sources."tslib-2.0.3" + sources."tslib-2.1.0" sources."universalify-0.1.2" sources."unzipper-0.10.11" sources."util-deprecate-1.0.2" @@ -67199,10 +67001,10 @@ in coc-pairs = nodeEnv.buildNodePackage { name = "coc-pairs"; packageName = "coc-pairs"; - version = "1.2.21"; + version = "1.2.22"; src = fetchurl { - url = "https://registry.npmjs.org/coc-pairs/-/coc-pairs-1.2.21.tgz"; - sha512 = "QTrzPCgk+zNVSnDjCbm3cvzb6c6rIwYMowrGhVb4XGnc8ooMXDBSfMoPYUtVgEJ+Qcu3++93OWr+m2VOHwHxag=="; + url = "https://registry.npmjs.org/coc-pairs/-/coc-pairs-1.2.22.tgz"; + sha512 = "AskNxINhyImxvFhlt0tvFJUS/Z4sUehgKPdy1jxVa+vu4CU903cNR6Dot4phrRRfgSCH3NT8SrYBhg4YvsxlkA=="; }; buildInputs = globalBuildInputs; meta = { @@ -67229,7 +67031,7 @@ in sources."@mrmlnc/readdir-enhanced-2.2.1" sources."@nodelib/fs.stat-1.1.3" sources."@types/eslint-visitor-keys-1.0.0" - sources."@types/json-schema-7.0.6" + sources."@types/json-schema-7.0.7" sources."@typescript-eslint/experimental-utils-3.10.1" sources."@typescript-eslint/parser-3.10.1" sources."@typescript-eslint/types-3.10.1" @@ -67297,7 +67099,7 @@ in sources."callsites-3.1.0" sources."camelcase-2.1.1" sources."camelcase-keys-2.1.0" - sources."caniuse-lite-1.0.30001173" + sources."caniuse-lite-1.0.30001180" sources."capture-stack-trace-1.0.1" sources."ccount-1.1.0" sources."chalk-2.4.2" @@ -67354,7 +67156,7 @@ in ]; }) sources."copy-descriptor-0.1.1" - sources."core-js-3.8.2" + sources."core-js-3.8.3" sources."cosmiconfig-3.1.0" sources."create-error-class-3.0.2" (sources."cross-spawn-6.0.5" // { @@ -67386,7 +67188,7 @@ in (sources."dom-serializer-0.2.2" // { dependencies = [ sources."domelementtype-2.1.0" - sources."entities-2.1.0" + sources."entities-2.2.0" ]; }) sources."domelementtype-1.3.1" @@ -67394,7 +67196,7 @@ in sources."domutils-1.7.0" sources."dot-prop-5.3.0" sources."duplexer3-0.1.4" - sources."electron-to-chromium-1.3.634" + sources."electron-to-chromium-1.3.645" sources."emoji-regex-8.0.0" sources."end-of-stream-1.4.4" sources."entities-1.1.2" @@ -68083,7 +67885,7 @@ in sources."tsutils-2.29.0" ]; }) - sources."tsutils-3.18.0" + sources."tsutils-3.20.0" sources."type-check-0.3.2" sources."type-fest-0.8.1" sources."typescript-3.9.7" @@ -68111,7 +67913,7 @@ in }) sources."unzip-response-2.0.1" sources."update-notifier-2.5.0" - sources."uri-js-4.4.0" + sources."uri-js-4.4.1" sources."urix-0.1.0" sources."url-parse-lax-1.0.0" sources."use-3.1.1" @@ -68235,10 +68037,10 @@ in coc-rust-analyzer = nodeEnv.buildNodePackage { name = "coc-rust-analyzer"; packageName = "coc-rust-analyzer"; - version = "0.26.0"; + version = "0.30.0"; src = fetchurl { - url = "https://registry.npmjs.org/coc-rust-analyzer/-/coc-rust-analyzer-0.26.0.tgz"; - sha512 = "Wn0m/IImB9BryAUhH5WTSqrkWh2tamuMVyMzxUmH1EW71TJKOavfV2DAmSNYSkGCD/H9icUbMIiSwyMI9JVYOw=="; + url = "https://registry.npmjs.org/coc-rust-analyzer/-/coc-rust-analyzer-0.30.0.tgz"; + sha512 = "oK/xqvv/dAkUwWm1m5zRz+VGFqdufK2PHnesT9mro41kJmw2wqKdUK+wxVJpVuxUx4MAjtiNVc9F98CG8DtpAw=="; }; buildInputs = globalBuildInputs; meta = { @@ -68271,10 +68073,10 @@ in coc-snippets = nodeEnv.buildNodePackage { name = "coc-snippets"; packageName = "coc-snippets"; - version = "2.3.1"; + version = "2.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/coc-snippets/-/coc-snippets-2.3.1.tgz"; - sha512 = "n11bVCYeDA0s1wYNAYsQdAHVv4C/k8QkvadSkzRWrNCP29fivGALp+wEYl8rtsqs0aeKY3FtPsI812581g6NPg=="; + url = "https://registry.npmjs.org/coc-snippets/-/coc-snippets-2.4.0.tgz"; + sha512 = "XjL23iRnKCxeh/qG6FN1SJQQRHLunlxs6UlJua35A42tjztC6ZZYwuE4W9W8oU53iqGrSYrIrkT1+WFznBr/0g=="; }; buildInputs = globalBuildInputs; meta = { @@ -68288,10 +68090,10 @@ in coc-solargraph = nodeEnv.buildNodePackage { name = "coc-solargraph"; packageName = "coc-solargraph"; - version = "1.1.8"; + version = "1.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/coc-solargraph/-/coc-solargraph-1.1.8.tgz"; - sha512 = "j0/S9ycyP4cdFhTu3FGaY4t0ZSn1K5EFWi6A90nppQYPwrzSGo3tn5XDO44vaWsYhEUlQfQrXVwtFScKCdc1vg=="; + url = "https://registry.npmjs.org/coc-solargraph/-/coc-solargraph-1.2.0.tgz"; + sha512 = "0bvily8jnfmBx/WjNgZ/1TNVSV2BBSsaAflc4bhwtw1mN7XLAiXLpeK3Eps6qwOYMtTRngJFKxNXKoAM2bCY/A=="; }; buildInputs = globalBuildInputs; meta = { @@ -68355,11 +68157,11 @@ in sources."balanced-match-1.0.0" sources."brace-expansion-1.1.11" sources."braces-3.0.2" - sources."browserslist-4.16.0" + sources."browserslist-4.16.1" sources."callsites-3.1.0" sources."camelcase-5.3.1" sources."camelcase-keys-6.2.2" - sources."caniuse-lite-1.0.30001173" + sources."caniuse-lite-1.0.30001180" (sources."chalk-4.1.0" // { dependencies = [ sources."ansi-styles-4.3.0" @@ -68391,13 +68193,13 @@ in (sources."dom-serializer-0.2.2" // { dependencies = [ sources."domelementtype-2.1.0" - sources."entities-2.1.0" + sources."entities-2.2.0" ]; }) sources."domelementtype-1.3.1" sources."domhandler-2.4.2" sources."domutils-1.7.0" - sources."electron-to-chromium-1.3.634" + sources."electron-to-chromium-1.3.645" sources."emoji-regex-8.0.0" sources."entities-1.1.2" sources."error-ex-1.3.2" @@ -68407,14 +68209,14 @@ in sources."extend-3.0.2" sources."fast-deep-equal-3.1.3" sources."fast-diff-1.2.0" - sources."fast-glob-3.2.4" + sources."fast-glob-3.2.5" sources."fastest-levenshtein-1.0.12" sources."fastq-1.10.0" sources."file-entry-cache-6.0.0" sources."fill-range-7.0.1" sources."find-up-4.1.0" sources."flat-cache-3.0.4" - sources."flatted-3.1.0" + sources."flatted-3.1.1" sources."fs.realpath-1.0.0" sources."function-bind-1.1.1" sources."gensync-1.0.0-beta.2" @@ -68424,7 +68226,7 @@ in sources."global-modules-2.0.0" sources."global-prefix-3.0.0" sources."globals-11.12.0" - sources."globby-11.0.1" + sources."globby-11.0.2" sources."globjoin-0.1.4" sources."gonzales-pe-4.3.0" sources."hard-rejection-2.1.0" @@ -68479,7 +68281,7 @@ in sources."mdast-util-from-markdown-0.8.4" sources."mdast-util-to-markdown-0.6.2" sources."mdast-util-to-string-2.0.0" - sources."meow-8.1.0" + sources."meow-9.0.0" sources."merge2-1.4.1" sources."micromark-2.11.2" sources."micromatch-4.0.2" @@ -68492,7 +68294,7 @@ in ]; }) sources."ms-2.1.2" - sources."node-releases-1.1.69" + sources."node-releases-1.1.70" (sources."normalize-package-data-3.0.0" // { dependencies = [ sources."semver-7.3.4" @@ -68507,7 +68309,7 @@ in sources."p-try-2.2.0" sources."parent-module-1.0.1" sources."parse-entities-2.0.0" - sources."parse-json-5.1.0" + sources."parse-json-5.2.0" sources."path-exists-4.0.0" sources."path-is-absolute-1.0.1" sources."path-is-inside-1.0.2" @@ -68587,7 +68389,7 @@ in sources."strip-ansi-6.0.0" sources."strip-indent-3.0.0" sources."style-search-0.1.0" - sources."stylelint-13.8.0" + sources."stylelint-13.9.0" sources."sugarss-2.0.0" sources."supports-color-5.5.0" sources."svg-tags-1.0.0" @@ -68603,7 +68405,7 @@ in sources."unist-util-find-all-after-3.0.2" sources."unist-util-is-4.0.4" sources."unist-util-stringify-position-2.0.3" - sources."uri-js-4.4.0" + sources."uri-js-4.4.1" sources."util-deprecate-1.0.2" sources."v8-compile-cache-2.2.0" sources."validate-npm-package-license-3.0.4" @@ -68639,10 +68441,10 @@ in coc-tabnine = nodeEnv.buildNodePackage { name = "coc-tabnine"; packageName = "coc-tabnine"; - version = "1.2.3"; + version = "1.3.3"; src = fetchurl { - url = "https://registry.npmjs.org/coc-tabnine/-/coc-tabnine-1.2.3.tgz"; - sha512 = "1FVW4hj7eK8PAUS0fzeme/23iBBP9Q3nfoMVzpBGchJiziL2qOhXaFrU0QgliIhiRSMmLnagTx/lWuI8BuO96g=="; + url = "https://registry.npmjs.org/coc-tabnine/-/coc-tabnine-1.3.3.tgz"; + sha512 = "6CYtXKaEduGHLjiBdYRcWvl7gzvW92iGTxW7M3KVfn/tRFO+VF+3FuSX7Fg53ol4/USyNOTgXz3uyBjfsZOBXA=="; }; buildInputs = globalBuildInputs; meta = { @@ -68750,10 +68552,10 @@ in coc-tsserver = nodeEnv.buildNodePackage { name = "coc-tsserver"; packageName = "coc-tsserver"; - version = "1.6.6"; + version = "1.6.7"; src = fetchurl { - url = "https://registry.npmjs.org/coc-tsserver/-/coc-tsserver-1.6.6.tgz"; - sha512 = "Rij5moc30YSnhYkiSwilLYorbRkmYPn9uN5b4EMXrNo0wWGReFYRRCxq72BoDEIwbTE3MsuVb67irdMukJ95eA=="; + url = "https://registry.npmjs.org/coc-tsserver/-/coc-tsserver-1.6.7.tgz"; + sha512 = "NVBl6AEbEax6GQdBlBy/SelJ5TXCkrnLN/dDqgDWwhIPX6UBFhFTFCLcqcHbfMjLM/MDvP/t85w+OYBGe2gXxg=="; }; dependencies = [ sources."typescript-4.1.3" @@ -68784,7 +68586,7 @@ in sources."chalk-2.4.2" ]; }) - sources."@eslint/eslintrc-0.2.2" + sources."@eslint/eslintrc-0.3.0" sources."acorn-7.4.1" sources."acorn-jsx-5.3.1" sources."ajv-6.12.6" @@ -68818,8 +68620,8 @@ in sources."emoji-regex-8.0.0" sources."enquirer-2.3.6" sources."escape-string-regexp-1.0.5" - sources."eslint-7.17.0" - sources."eslint-plugin-vue-7.4.1" + sources."eslint-7.18.0" + sources."eslint-plugin-vue-7.5.0" sources."eslint-scope-5.1.1" (sources."eslint-utils-2.1.0" // { dependencies = [ @@ -68850,7 +68652,7 @@ in sources."fast-levenshtein-2.0.6" sources."file-entry-cache-6.0.0" sources."flat-cache-3.0.4" - sources."flatted-3.1.0" + sources."flatted-3.1.1" sources."fs.realpath-1.0.0" sources."function-bind-1.1.1" sources."functional-red-black-tree-1.0.1" @@ -68929,10 +68731,10 @@ in sources."type-check-0.4.0" sources."type-fest-0.8.1" sources."typescript-4.1.3" - sources."uri-js-4.4.0" + sources."uri-js-4.4.1" sources."v8-compile-cache-2.2.0" sources."vls-0.5.10" - (sources."vue-eslint-parser-7.3.0" // { + (sources."vue-eslint-parser-7.4.1" // { dependencies = [ sources."eslint-visitor-keys-1.3.0" sources."espree-6.2.1" @@ -69173,7 +68975,7 @@ in sources."fast-safe-stringify-2.0.7" sources."fecha-4.2.0" sources."fn.name-1.1.0" - sources."follow-redirects-1.13.1" + sources."follow-redirects-1.13.2" sources."http-proxy-1.18.1" sources."inherits-2.0.4" sources."is-arrayish-0.3.2" @@ -69371,7 +69173,7 @@ in }) sources."extsprintf-1.4.0" sources."fast-deep-equal-3.1.3" - sources."fast-glob-3.2.4" + sources."fast-glob-3.2.5" sources."fast-json-parse-1.0.3" sources."fast-json-stable-stringify-2.1.0" sources."fastq-1.10.0" @@ -69383,7 +69185,7 @@ in sources."form-data-2.3.3" sources."forwarded-0.1.2" sources."fresh-0.5.2" - sources."fs-extra-9.0.1" + sources."fs-extra-9.1.0" sources."fs.realpath-1.0.0" sources."function-bind-1.1.1" sources."get-stream-5.2.0" @@ -69391,7 +69193,7 @@ in sources."glob-7.1.6" sources."glob-parent-5.1.1" sources."global-dirs-2.1.0" - sources."globby-11.0.1" + sources."globby-11.0.2" (sources."got-9.6.0" // { dependencies = [ sources."get-stream-4.1.0" @@ -69474,11 +69276,7 @@ in sources."json-schema-0.2.3" sources."json-schema-traverse-0.4.1" sources."json-stringify-safe-5.0.1" - (sources."jsonfile-6.1.0" // { - dependencies = [ - sources."universalify-2.0.0" - ]; - }) + sources."jsonfile-6.1.0" (sources."jsprim-1.4.1" // { dependencies = [ sources."extsprintf-1.3.0" @@ -69533,7 +69331,7 @@ in sources."on-headers-1.0.2" sources."once-1.4.0" sources."onetime-5.1.2" - sources."open-7.3.0" + sources."open-7.3.1" sources."os-homedir-1.0.2" sources."os-name-3.1.0" sources."os-tmpdir-1.0.2" @@ -69649,7 +69447,7 @@ in sources."strip-final-newline-2.0.0" sources."strip-json-comments-2.0.1" sources."supports-color-7.2.0" - sources."systeminformation-4.34.2" + sources."systeminformation-4.34.9" sources."term-size-2.2.1" sources."through-2.3.8" sources."tmp-0.2.1" @@ -69665,10 +69463,10 @@ in sources."typedarray-to-buffer-3.1.5" sources."underscore-1.12.0" sources."unique-string-2.0.0" - sources."universalify-1.0.0" + sources."universalify-2.0.0" sources."unpipe-1.0.0" sources."update-notifier-4.1.3" - sources."uri-js-4.4.0" + sources."uri-js-4.4.1" sources."url-parse-lax-3.0.0" sources."utils-merge-1.0.1" sources."uuid-3.4.0" @@ -69736,7 +69534,7 @@ in sources."@types/glob-7.1.3" sources."@types/minimatch-3.0.3" sources."@types/minimist-1.2.1" - sources."@types/node-14.14.20" + sources."@types/node-14.14.22" sources."@types/normalize-package-data-2.4.0" sources."aggregate-error-3.1.0" sources."ansi-styles-3.2.1" @@ -69958,7 +69756,7 @@ in sources."p-map-3.0.0" sources."p-timeout-3.2.0" sources."p-try-2.2.0" - sources."parse-json-5.1.0" + sources."parse-json-5.2.0" sources."pascalcase-0.1.1" sources."path-dirname-1.0.2" sources."path-exists-4.0.0" @@ -70107,7 +69905,7 @@ in sources."@cycle/run-3.4.0" sources."@cycle/time-0.10.1" sources."@types/cookiejar-2.1.2" - sources."@types/node-14.14.20" + sources."@types/node-14.14.22" sources."@types/superagent-3.8.2" sources."ansi-escapes-3.2.0" sources."ansi-regex-2.1.1" @@ -70197,7 +69995,7 @@ in sources."performance-now-2.1.0" sources."process-nextick-args-2.0.1" sources."pseudomap-1.0.2" - sources."qs-6.9.4" + sources."qs-6.9.6" sources."quicktask-1.1.0" sources."raf-3.3.2" sources."readable-stream-2.3.7" @@ -70734,7 +70532,7 @@ in sources."menu-string-1.3.0" sources."merkle-tree-stream-3.0.3" sources."micromatch-3.1.10" - sources."mime-2.4.7" + sources."mime-2.5.0" sources."mime-db-1.45.0" sources."mime-types-2.1.28" sources."mimic-response-2.1.0" @@ -70819,7 +70617,7 @@ in sources."punycode-2.1.1" sources."qs-6.5.2" sources."random-access-file-2.1.4" - sources."random-access-memory-3.1.1" + sources."random-access-memory-3.1.2" sources."random-access-storage-1.4.1" sources."randombytes-2.1.0" sources."range-parser-1.2.1" @@ -71001,7 +70799,7 @@ in sources."untildify-3.0.3" sources."unzip-response-2.0.1" sources."update-notifier-2.5.0" - sources."uri-js-4.4.0" + sources."uri-js-4.4.1" sources."urix-0.1.0" sources."url-parse-lax-1.0.0" sources."use-3.1.1" @@ -71067,10 +70865,10 @@ in diagnostic-languageserver = nodeEnv.buildNodePackage { name = "diagnostic-languageserver"; packageName = "diagnostic-languageserver"; - version = "1.8.0"; + version = "1.8.1"; src = fetchurl { - url = "https://registry.npmjs.org/diagnostic-languageserver/-/diagnostic-languageserver-1.8.0.tgz"; - sha512 = "UnQGWIszi+uXkZ/pYUDLKuftSOSIvc/ZBSp/W6OF/Qyr2SsEaSD6TuaIo7TiH1MGQX1b2EW9P1WlE+16Ft4MiA=="; + url = "https://registry.npmjs.org/diagnostic-languageserver/-/diagnostic-languageserver-1.8.1.tgz"; + sha512 = "W8lFslQXZ6HEjy9Ba7jLYDzqJZFkWVINWZjNDUZslozm2ZLMH7QWNIa74DKZXLA972ZgY8iJ0WIMxn0Y4+1POw=="; }; dependencies = [ sources."@nodelib/fs.scandir-2.1.4" @@ -71087,14 +70885,14 @@ in sources."crypto-random-string-2.0.0" sources."del-6.0.0" sources."dir-glob-3.0.1" - sources."fast-glob-3.2.4" + sources."fast-glob-3.2.5" sources."fastq-1.10.0" sources."fill-range-7.0.1" sources."find-up-4.1.0" sources."fs.realpath-1.0.0" sources."glob-7.1.6" sources."glob-parent-5.1.1" - sources."globby-11.0.1" + sources."globby-11.0.2" sources."graceful-fs-4.2.4" sources."ignore-5.1.8" sources."indent-string-4.0.0" @@ -71152,15 +70950,15 @@ in dockerfile-language-server-nodejs = nodeEnv.buildNodePackage { name = "dockerfile-language-server-nodejs"; packageName = "dockerfile-language-server-nodejs"; - version = "0.2.0"; + version = "0.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/dockerfile-language-server-nodejs/-/dockerfile-language-server-nodejs-0.2.0.tgz"; - sha512 = "D6qT5w2y73pF02c+caAPYn/IG7T/231u8WD/qfyt3MBtnRe8x7ZIQK9+VAxFYvCtqbGuN7MiPVoRctkth/jcuA=="; + url = "https://registry.npmjs.org/dockerfile-language-server-nodejs/-/dockerfile-language-server-nodejs-0.3.0.tgz"; + sha512 = "nW0l6S6YZlSGrGu6PBHoLmhwqwxgNTSis1hvjaxpnS3Ohalf/e87HC/pkjg3c+AixytqlXPR7nixzVPDJTkNZQ=="; }; dependencies = [ sources."dockerfile-ast-0.1.0" - sources."dockerfile-language-service-0.1.1" - sources."dockerfile-utils-0.1.1" + sources."dockerfile-language-service-0.2.0" + sources."dockerfile-utils-0.2.0" sources."vscode-jsonrpc-6.0.0" sources."vscode-languageserver-7.0.0" sources."vscode-languageserver-protocol-3.16.0" @@ -71179,15 +70977,15 @@ in elasticdump = nodeEnv.buildNodePackage { name = "elasticdump"; packageName = "elasticdump"; - version = "6.62.1"; + version = "6.65.3"; src = fetchurl { - url = "https://registry.npmjs.org/elasticdump/-/elasticdump-6.62.1.tgz"; - sha512 = "LM6NwMLF0W/ZCcSEqXUufGiDzGpXpF7uPQjLo5zx0PS/tLQkrkA2sNeNcE6p7dVcX1u9hYRuJisl9PP7hQvsAg=="; + url = "https://registry.npmjs.org/elasticdump/-/elasticdump-6.65.3.tgz"; + sha512 = "GNai5B3ipW7ekXxj0WeFN7IsqY8+hXogeL5WWDn4F5z7DlB8idXmX/0RWv/2tS5Hnh4R9BzW1cJ5s2n85bhsSw=="; }; dependencies = [ sources."@fast-csv/format-4.3.5" sources."@fast-csv/parse-4.3.6" - sources."@types/node-14.14.20" + sources."@types/node-14.14.22" sources."JSONStream-1.3.5" sources."ajv-6.12.6" sources."asn1-0.2.4" @@ -71299,7 +71097,7 @@ in }) sources."tunnel-agent-0.6.0" sources."tweetnacl-0.14.5" - (sources."uri-js-4.4.0" // { + (sources."uri-js-4.4.1" // { dependencies = [ sources."punycode-2.1.1" ]; @@ -71382,7 +71180,7 @@ in sources."@types/http-cache-semantics-4.0.0" sources."@types/keyv-3.1.1" sources."@types/minimist-1.2.1" - sources."@types/node-14.14.20" + sources."@types/node-14.14.22" sources."@types/normalize-package-data-2.4.0" sources."@types/responselike-1.0.0" sources."@types/yoga-layout-1.9.2" @@ -71562,7 +71360,7 @@ in sources."p-limit-2.3.0" sources."p-locate-3.0.0" sources."p-try-2.2.0" - sources."parse-json-5.1.0" + sources."parse-json-5.2.0" sources."patch-console-1.0.0" sources."path-exists-3.0.0" sources."path-is-absolute-1.0.1" @@ -71647,7 +71445,7 @@ in sources."trim-newlines-3.0.0" sources."type-fest-0.12.0" sources."unicode-emoji-modifier-base-1.0.0" - sources."uri-js-4.4.0" + sources."uri-js-4.4.1" sources."validate-npm-package-license-3.0.4" sources."which-1.3.1" sources."widest-line-3.1.0" @@ -71709,10 +71507,10 @@ in sources."@fluentui/date-time-utilities-7.9.0" sources."@fluentui/dom-utilities-1.1.1" sources."@fluentui/keyboard-key-0.2.12" - sources."@fluentui/react-7.155.3" - sources."@fluentui/react-focus-7.17.0" + sources."@fluentui/react-7.157.0" + sources."@fluentui/react-focus-7.17.1" sources."@fluentui/react-window-provider-1.0.1" - sources."@fluentui/theme-1.7.0" + sources."@fluentui/theme-1.7.1" (sources."@gulp-sourcemaps/identity-map-1.0.2" // { dependencies = [ sources."normalize-path-2.1.1" @@ -71723,11 +71521,11 @@ in sources."normalize-path-2.1.1" ]; }) - sources."@microsoft/load-themed-styles-1.10.141" + sources."@microsoft/load-themed-styles-1.10.146" sources."@nodelib/fs.scandir-2.1.4" sources."@nodelib/fs.stat-2.0.4" sources."@nodelib/fs.walk-1.2.6" - sources."@npmcli/move-file-1.0.1" + sources."@npmcli/move-file-1.1.0" sources."@sindresorhus/is-0.14.0" sources."@szmarczak/http-timer-1.1.2" sources."@types/basic-auth-1.1.3" @@ -71735,17 +71533,17 @@ in sources."@types/caseless-0.12.2" sources."@types/chart.js-2.9.24" sources."@types/connect-3.4.34" - sources."@types/engine.io-3.1.4" + sources."@types/engine.io-3.1.5" sources."@types/express-4.17.8" - sources."@types/express-serve-static-core-4.17.17" + sources."@types/express-serve-static-core-4.17.18" sources."@types/fancy-log-1.3.0" sources."@types/glob-7.1.3" sources."@types/hls.js-0.13.1" sources."@types/js-yaml-3.12.5" - sources."@types/json-schema-7.0.6" + sources."@types/json-schema-7.0.7" sources."@types/lodash-4.14.161" sources."@types/material-design-lite-1.1.16" - sources."@types/mime-2.0.3" + sources."@types/mime-1.3.2" sources."@types/minimatch-3.0.3" sources."@types/minimist-1.2.0" sources."@types/mithril-2.0.3" @@ -71754,7 +71552,7 @@ in sources."@types/mysql-2.15.15" sources."@types/node-14.11.1" sources."@types/pg-7.14.5" - sources."@types/pg-types-1.11.5" + sources."@types/pg-types-2.2.0" sources."@types/qs-6.9.5" sources."@types/range-parser-1.2.3" (sources."@types/request-2.48.5" // { @@ -71762,18 +71560,18 @@ in sources."form-data-2.5.1" ]; }) - sources."@types/serve-static-1.13.8" + sources."@types/serve-static-1.13.9" sources."@types/socket.io-2.1.11" sources."@types/socket.io-client-1.4.33" sources."@types/sqlite3-3.1.6" sources."@types/tough-cookie-4.0.0" sources."@types/url-join-4.0.0" - sources."@uifabric/foundation-7.9.20" - sources."@uifabric/icons-7.5.17" + sources."@uifabric/foundation-7.9.21" + sources."@uifabric/icons-7.5.18" sources."@uifabric/merge-styles-7.19.1" sources."@uifabric/react-hooks-7.13.9" sources."@uifabric/set-version-7.0.23" - sources."@uifabric/styling-7.16.18" + sources."@uifabric/styling-7.16.19" sources."@uifabric/utilities-7.33.2" sources."@webassemblyjs/ast-1.9.0" sources."@webassemblyjs/floating-point-hex-parser-1.9.0" @@ -71961,7 +71759,7 @@ in sources."minizlib-2.1.2" sources."p-map-4.0.0" sources."rimraf-3.0.2" - sources."tar-6.0.5" + sources."tar-6.1.0" ]; }) sources."cache-base-1.0.1" @@ -71971,7 +71769,7 @@ in sources."lowercase-keys-2.0.0" ]; }) - sources."call-bind-1.0.0" + sources."call-bind-1.0.2" sources."callsite-1.0.0" sources."camelcase-3.0.0" sources."caseless-0.12.0" @@ -72181,7 +71979,7 @@ in ]; }) sources."engine.io-parser-2.2.1" - sources."enhanced-resolve-4.3.0" + sources."enhanced-resolve-4.5.0" sources."errno-0.1.8" sources."error-ex-1.3.2" sources."es5-ext-0.10.53" @@ -72247,7 +72045,7 @@ in sources."extsprintf-1.3.0" sources."fancy-log-1.3.3" sources."fast-deep-equal-3.1.3" - sources."fast-glob-3.2.4" + sources."fast-glob-3.2.5" sources."fast-json-stable-stringify-2.1.0" sources."fast-levenshtein-1.1.4" sources."fastq-1.10.0" @@ -72319,7 +72117,7 @@ in ]; }) sources."get-caller-file-1.0.3" - sources."get-intrinsic-1.0.2" + sources."get-intrinsic-1.1.0" sources."get-stream-4.1.0" sources."get-value-2.0.6" sources."getpass-0.1.7" @@ -72552,7 +72350,11 @@ in sources."material-design-lite-1.3.0" sources."md5.js-1.3.5" sources."media-typer-0.3.0" - sources."memoizee-0.4.14" + (sources."memoizee-0.4.15" // { + dependencies = [ + sources."next-tick-1.1.0" + ]; + }) (sources."memory-fs-0.5.0" // { dependencies = [ sources."isarray-1.0.0" @@ -72662,7 +72464,7 @@ in }) sources."nan-2.14.2" sources."nanomatch-1.2.13" - (sources."needle-2.5.2" // { + (sources."needle-2.6.0" // { dependencies = [ sources."debug-3.2.7" sources."ms-2.1.3" @@ -72737,19 +72539,51 @@ in sources."object.map-1.0.1" sources."object.pick-1.3.0" sources."object.reduce-1.0.1" - sources."office-ui-fabric-react-7.155.3" + sources."office-ui-fabric-react-7.157.0" sources."on-finished-2.3.0" sources."on-headers-1.0.2" sources."once-1.4.0" sources."onetime-2.0.1" - sources."openapi-default-setter-7.0.1" - sources."openapi-framework-7.2.0" - sources."openapi-jsonschema-parameters-7.0.2" - sources."openapi-request-coercer-7.1.0" - sources."openapi-request-validator-7.2.0" - sources."openapi-response-validator-7.0.1" - sources."openapi-schema-validator-7.0.1" - sources."openapi-security-handler-7.0.1" + (sources."openapi-default-setter-7.2.3" // { + dependencies = [ + sources."openapi-types-7.2.3" + ]; + }) + (sources."openapi-framework-7.2.3" // { + dependencies = [ + sources."openapi-types-7.2.3" + ]; + }) + (sources."openapi-jsonschema-parameters-7.2.3" // { + dependencies = [ + sources."openapi-types-7.2.3" + ]; + }) + (sources."openapi-request-coercer-7.2.3" // { + dependencies = [ + sources."openapi-types-7.2.3" + ]; + }) + (sources."openapi-request-validator-7.2.3" // { + dependencies = [ + sources."openapi-types-7.2.3" + ]; + }) + (sources."openapi-response-validator-7.2.3" // { + dependencies = [ + sources."openapi-types-7.2.3" + ]; + }) + (sources."openapi-schema-validator-7.2.3" // { + dependencies = [ + sources."openapi-types-7.2.3" + ]; + }) + (sources."openapi-security-handler-7.2.3" // { + dependencies = [ + sources."openapi-types-7.2.3" + ]; + }) sources."openapi-types-7.0.1" (sources."opencollective-1.0.3" // { dependencies = [ @@ -72921,7 +72755,7 @@ in sources."restore-cursor-2.0.0" sources."ret-0.1.15" sources."reusify-1.0.4" - sources."rfdc-1.1.4" + sources."rfdc-1.2.0" sources."rimraf-2.7.1" sources."ripemd160-2.0.2" sources."run-async-2.4.1" @@ -72931,7 +72765,7 @@ in sources."safe-buffer-5.1.2" sources."safe-regex-1.1.0" sources."safer-buffer-2.1.2" - sources."sass-1.32.0" + sources."sass-1.32.5" sources."sax-1.2.4" sources."scheduler-0.19.1" sources."schema-utils-2.7.1" @@ -72998,7 +72832,7 @@ in sources."debug-4.1.1" sources."isarray-2.0.1" sources."ms-2.1.3" - (sources."socket.io-parser-3.3.1" // { + (sources."socket.io-parser-3.3.2" // { dependencies = [ sources."component-emitter-1.3.0" sources."debug-3.1.0" @@ -73099,7 +72933,7 @@ in sources."sver-compat-1.5.0" sources."swagger-schema-official-2.0.0-bab6bed" sources."swagger-ui-dist-3.34.0" - sources."tail-2.1.1" + sources."tail-2.2.0" sources."tapable-1.1.3" (sources."tar-4.4.13" // { dependencies = [ @@ -73188,7 +73022,7 @@ in ]; }) sources."upath-1.2.0" - sources."uri-js-4.4.0" + sources."uri-js-4.4.1" sources."urix-0.1.0" (sources."url-0.11.0" // { dependencies = [ @@ -73230,9 +73064,9 @@ in (sources."watchpack-1.7.5" // { dependencies = [ sources."anymatch-3.1.1" - sources."binary-extensions-2.1.0" - sources."chokidar-3.4.3" - sources."fsevents-2.1.3" + sources."binary-extensions-2.2.0" + sources."chokidar-3.5.1" + sources."fsevents-2.3.1" sources."is-binary-path-2.1.0" sources."readdirp-3.5.0" ]; @@ -73338,10 +73172,10 @@ in eslint = nodeEnv.buildNodePackage { name = "eslint"; packageName = "eslint"; - version = "7.17.0"; + version = "7.18.0"; src = fetchurl { - url = "https://registry.npmjs.org/eslint/-/eslint-7.17.0.tgz"; - sha512 = "zJk08MiBgwuGoxes5sSQhOtibZ75pz0J35XTRlZOk9xMffhpA9BTbQZxoXZzOl5zMbleShbGwtw+1kGferfFwQ=="; + url = "https://registry.npmjs.org/eslint/-/eslint-7.18.0.tgz"; + sha512 = "fbgTiE8BfUJZuBeq2Yi7J3RB3WGUQ9PNuNbmgi6jt9Iv8qrkxfy19Ds3OpL1Pm7zg3BtTVhvcUZbIRQ0wmSjAQ=="; }; dependencies = [ sources."@babel/code-frame-7.12.11" @@ -73351,7 +73185,7 @@ in sources."chalk-2.4.2" ]; }) - sources."@eslint/eslintrc-0.2.2" + sources."@eslint/eslintrc-0.3.0" sources."acorn-7.4.1" sources."acorn-jsx-5.3.1" sources."ajv-6.12.6" @@ -73412,7 +73246,7 @@ in sources."fast-levenshtein-2.0.6" sources."file-entry-cache-6.0.0" sources."flat-cache-3.0.4" - sources."flatted-3.1.0" + sources."flatted-3.1.1" sources."fs.realpath-1.0.0" sources."functional-red-black-tree-1.0.1" sources."glob-7.1.6" @@ -73474,7 +73308,7 @@ in sources."text-table-0.2.0" sources."type-check-0.4.0" sources."type-fest-0.8.1" - sources."uri-js-4.4.0" + sources."uri-js-4.4.1" sources."v8-compile-cache-2.2.0" sources."which-2.0.2" sources."word-wrap-1.2.3" @@ -73507,7 +73341,7 @@ in sources."chalk-2.4.2" ]; }) - sources."@eslint/eslintrc-0.2.2" + sources."@eslint/eslintrc-0.3.0" sources."acorn-7.4.1" sources."acorn-jsx-5.3.1" sources."ajv-6.12.6" @@ -73539,7 +73373,7 @@ in sources."emoji-regex-8.0.0" sources."enquirer-2.3.6" sources."escape-string-regexp-1.0.5" - sources."eslint-7.17.0" + sources."eslint-7.18.0" sources."eslint-scope-5.1.1" (sources."eslint-utils-2.1.0" // { dependencies = [ @@ -73570,7 +73404,7 @@ in sources."fast-levenshtein-2.0.6" sources."file-entry-cache-6.0.0" sources."flat-cache-3.0.4" - sources."flatted-3.1.0" + sources."flatted-3.1.1" sources."fs.realpath-1.0.0" sources."functional-red-black-tree-1.0.1" sources."glob-7.1.6" @@ -73633,7 +73467,7 @@ in sources."text-table-0.2.0" sources."type-check-0.4.0" sources."type-fest-0.8.1" - sources."uri-js-4.4.0" + sources."uri-js-4.4.1" sources."v8-compile-cache-2.2.0" sources."which-2.0.2" sources."word-wrap-1.2.3" @@ -73673,37 +73507,37 @@ in expo-cli = nodeEnv.buildNodePackage { name = "expo-cli"; packageName = "expo-cli"; - version = "4.0.17"; + version = "4.1.3"; src = fetchurl { - url = "https://registry.npmjs.org/expo-cli/-/expo-cli-4.0.17.tgz"; - sha512 = "JF8HBs5dUd14zh9cI+u/OEKyRJqJZ2wOPvHlsX2Ohgxw80Wk/BGtTtZzlWY8/PQ+Lm56RWx7RMFPYestsBmpBg=="; + url = "https://registry.npmjs.org/expo-cli/-/expo-cli-4.1.3.tgz"; + sha512 = "aONXPUydisTU++pMXn8HkF3hJVz1RvrGXp/J4U45GPlZ3AXQddoBjNrG/GfA4ViVgVPPc6S8N64YHnawucbS8w=="; }; dependencies = [ sources."@babel/code-frame-7.12.11" sources."@babel/compat-data-7.12.7" - sources."@babel/core-7.9.0" + (sources."@babel/core-7.9.0" // { + dependencies = [ + sources."semver-5.7.1" + ]; + }) sources."@babel/generator-7.12.11" sources."@babel/helper-annotate-as-pure-7.12.10" sources."@babel/helper-builder-binary-assignment-operator-visitor-7.10.4" - sources."@babel/helper-compilation-targets-7.12.5" - sources."@babel/helper-create-class-features-plugin-7.12.1" - sources."@babel/helper-create-regexp-features-plugin-7.12.7" - (sources."@babel/helper-define-map-7.10.5" // { + (sources."@babel/helper-compilation-targets-7.12.5" // { dependencies = [ - sources."lodash-4.17.20" + sources."semver-5.7.1" ]; }) + sources."@babel/helper-create-class-features-plugin-7.12.1" + sources."@babel/helper-create-regexp-features-plugin-7.12.7" + sources."@babel/helper-define-map-7.10.5" sources."@babel/helper-explode-assignable-expression-7.12.1" sources."@babel/helper-function-name-7.12.11" sources."@babel/helper-get-function-arity-7.12.10" sources."@babel/helper-hoist-variables-7.10.4" sources."@babel/helper-member-expression-to-functions-7.12.7" sources."@babel/helper-module-imports-7.12.5" - (sources."@babel/helper-module-transforms-7.12.1" // { - dependencies = [ - sources."lodash-4.17.20" - ]; - }) + sources."@babel/helper-module-transforms-7.12.1" sources."@babel/helper-optimise-call-expression-7.12.10" sources."@babel/helper-plugin-utils-7.10.4" sources."@babel/helper-remap-async-to-generator-7.12.1" @@ -73794,29 +73628,22 @@ in sources."@babel/plugin-transform-typescript-7.12.1" sources."@babel/plugin-transform-unicode-escapes-7.12.1" sources."@babel/plugin-transform-unicode-regex-7.12.1" - sources."@babel/preset-env-7.12.11" + (sources."@babel/preset-env-7.12.11" // { + dependencies = [ + sources."semver-5.7.1" + ]; + }) sources."@babel/preset-modules-0.1.4" sources."@babel/preset-typescript-7.12.7" sources."@babel/runtime-7.12.5" sources."@babel/template-7.12.7" - (sources."@babel/traverse-7.12.12" // { - dependencies = [ - sources."lodash-4.17.20" - ]; - }) - (sources."@babel/types-7.12.12" // { - dependencies = [ - sources."lodash-4.17.20" - ]; - }) + sources."@babel/traverse-7.12.12" + sources."@babel/types-7.12.12" + sources."@expo/apple-utils-0.0.0-alpha.17" sources."@expo/babel-preset-cli-0.2.18" sources."@expo/bunyan-4.0.0" - (sources."@expo/config-3.3.22" // { - dependencies = [ - sources."semver-7.3.4" - ]; - }) - (sources."@expo/config-plugins-1.0.13" // { + sources."@expo/config-3.3.26" + (sources."@expo/config-plugins-1.0.17" // { dependencies = [ sources."slash-3.0.0" sources."uuid-3.4.0" @@ -73824,13 +73651,13 @@ in ]; }) sources."@expo/config-types-40.0.0-beta.2" - (sources."@expo/configure-splash-screen-0.3.2" // { + (sources."@expo/configure-splash-screen-0.3.3" // { dependencies = [ sources."commander-5.1.0" sources."pngjs-5.0.0" ]; }) - (sources."@expo/dev-server-0.1.48" // { + (sources."@expo/dev-server-0.1.52" // { dependencies = [ sources."body-parser-1.19.0" sources."bytes-3.1.0" @@ -73847,42 +73674,22 @@ in sources."type-fest-0.12.0" ]; }) - sources."@expo/dev-tools-0.13.74" - sources."@expo/eas-build-job-0.1.2" - (sources."@expo/image-utils-0.3.9" // { + sources."@expo/dev-tools-0.13.79" + (sources."@expo/image-utils-0.3.10" // { dependencies = [ - sources."semver-6.1.1" sources."tempy-0.3.0" ]; }) - (sources."@expo/json-file-8.2.25" // { + (sources."@expo/json-file-8.2.26" // { dependencies = [ sources."@babel/code-frame-7.10.4" sources."json5-1.0.1" ]; }) - sources."@expo/metro-config-0.1.48" - (sources."@expo/ngrok-2.4.3" // { - dependencies = [ - sources."uuid-3.4.0" - ]; - }) - sources."@expo/ngrok-bin-2.2.8-beta.3" - sources."@expo/ngrok-bin-darwin-ia32-2.2.8" - sources."@expo/ngrok-bin-darwin-x64-2.2.8" - sources."@expo/ngrok-bin-freebsd-ia32-2.2.8" - sources."@expo/ngrok-bin-freebsd-x64-2.2.8" - sources."@expo/ngrok-bin-linux-arm-2.2.8" - sources."@expo/ngrok-bin-linux-arm64-2.2.8" - sources."@expo/ngrok-bin-linux-ia32-2.2.8" - sources."@expo/ngrok-bin-linux-x64-2.2.8" - sources."@expo/ngrok-bin-sunos-x64-2.2.8" - sources."@expo/ngrok-bin-win32-ia32-2.2.8-beta.1" - sources."@expo/ngrok-bin-win32-x64-2.2.8-beta.1" + sources."@expo/metro-config-0.1.52" sources."@expo/osascript-2.0.24" - (sources."@expo/package-manager-0.0.34" // { + (sources."@expo/package-manager-0.0.36" // { dependencies = [ - sources."ansi-regex-5.0.0" sources."npm-package-arg-7.0.0" sources."rimraf-3.0.2" sources."semver-5.7.1" @@ -73894,28 +73701,22 @@ in ]; }) sources."@expo/results-1.0.0" - (sources."@expo/schemer-1.3.23" // { + (sources."@expo/schemer-1.3.24" // { dependencies = [ - sources."ajv-5.5.2" - sources."fast-deep-equal-1.1.0" - sources."get-stream-3.0.0" sources."got-6.7.1" - sources."json-schema-traverse-0.3.1" sources."probe-image-size-3.2.0" ]; }) sources."@expo/simple-spinner-1.0.2" sources."@expo/spawn-async-1.5.0" - sources."@expo/traveling-fastlane-darwin-1.15.1" - sources."@expo/traveling-fastlane-linux-1.15.1" - (sources."@expo/webpack-config-0.12.52" // { + (sources."@expo/webpack-config-0.12.56" // { dependencies = [ sources."@babel/runtime-7.9.0" sources."is-wsl-2.2.0" sources."react-refresh-0.8.3" ]; }) - (sources."@expo/xdl-59.0.14" // { + (sources."@expo/xdl-59.0.19" // { dependencies = [ sources."chownr-1.1.4" (sources."fs-minipass-1.2.7" // { @@ -73931,22 +73732,11 @@ in ]; }) sources."mkdirp-1.0.4" - (sources."npm-package-arg-8.1.0" // { - dependencies = [ - sources."lru-cache-6.0.0" - sources."semver-7.3.4" - sources."yallist-4.0.0" - ]; - }) + sources."npm-package-arg-8.1.0" (sources."pacote-11.1.0" // { dependencies = [ sources."minipass-3.1.3" - (sources."semver-7.3.4" // { - dependencies = [ - sources."lru-cache-6.0.0" - ]; - }) - (sources."tar-6.0.5" // { + (sources."tar-6.1.0" // { dependencies = [ sources."chownr-2.0.0" ]; @@ -74021,14 +73811,14 @@ in (sources."@npmcli/git-2.0.4" // { dependencies = [ sources."mkdirp-1.0.4" - sources."semver-7.3.4" sources."which-2.0.2" ]; }) sources."@npmcli/installed-package-contents-1.0.5" - (sources."@npmcli/move-file-1.0.1" // { + (sources."@npmcli/move-file-1.1.0" // { dependencies = [ sources."mkdirp-1.0.4" + sources."rimraf-2.7.1" ]; }) sources."@npmcli/node-gyp-1.0.1" @@ -74036,18 +73826,6 @@ in sources."@npmcli/run-script-1.8.1" sources."@pmmmwh/react-refresh-webpack-plugin-0.3.3" sources."@react-native-community/cli-debugger-ui-4.13.1" - (sources."@react-native-community/cli-platform-android-4.13.0" // { - dependencies = [ - sources."ansi-styles-4.3.0" - sources."chalk-3.0.0" - sources."color-convert-2.0.1" - sources."color-name-1.1.4" - sources."fs-extra-8.1.0" - sources."has-flag-4.0.0" - sources."slash-3.0.0" - sources."supports-color-7.2.0" - ]; - }) (sources."@react-native-community/cli-platform-ios-4.13.0" // { dependencies = [ sources."ansi-styles-4.3.0" @@ -74092,9 +73870,9 @@ in sources."@types/istanbul-lib-coverage-2.0.3" sources."@types/istanbul-lib-report-3.0.0" sources."@types/istanbul-reports-1.1.2" - sources."@types/json-schema-7.0.6" + sources."@types/json-schema-7.0.7" sources."@types/keyv-3.1.1" - sources."@types/lodash-4.14.167" + sources."@types/lodash-4.14.168" sources."@types/minimatch-3.0.3" sources."@types/mkdirp-0.5.2" sources."@types/node-9.6.61" @@ -74111,7 +73889,7 @@ in sources."source-map-0.6.1" ]; }) - (sources."@types/webpack-4.41.25" // { + (sources."@types/webpack-4.41.26" // { dependencies = [ sources."source-map-0.6.1" ]; @@ -74151,7 +73929,7 @@ in sources."agent-base-6.0.2" sources."agentkeepalive-4.1.3" sources."aggregate-error-3.1.0" - sources."ajv-6.12.6" + sources."ajv-5.5.2" sources."ajv-errors-1.0.1" sources."ajv-keywords-3.5.2" sources."alphanum-sort-1.0.2" @@ -74163,7 +73941,9 @@ in }) (sources."ansi-align-3.0.0" // { dependencies = [ + sources."ansi-regex-4.1.0" sources."emoji-regex-7.0.3" + sources."is-fullwidth-code-point-2.0.0" sources."string-width-3.1.0" sources."strip-ansi-5.2.0" ]; @@ -74174,13 +73954,8 @@ in sources."type-fest-0.11.0" ]; }) - (sources."ansi-fragments-0.2.1" // { - dependencies = [ - sources."strip-ansi-5.2.0" - ]; - }) sources."ansi-html-0.0.7" - sources."ansi-regex-4.1.0" + sources."ansi-regex-5.0.0" sources."ansi-styles-3.2.1" sources."any-base-1.1.0" sources."any-promise-1.3.0" @@ -74217,8 +73992,7 @@ in }) sources."assert-plus-1.0.0" sources."assign-symbols-1.0.0" - sources."astral-regex-1.0.0" - sources."async-0.9.2" + sources."async-1.5.2" sources."async-each-1.0.3" sources."async-limiter-1.0.1" sources."asynckit-0.4.0" @@ -74268,7 +74042,7 @@ in sources."bcrypt-pbkdf-1.0.2" sources."big-integer-1.6.48" sources."big.js-5.2.2" - sources."binary-extensions-2.1.0" + sources."binary-extensions-2.2.0" sources."bindings-1.5.0" sources."bluebird-3.7.2" sources."bmp-js-0.1.0" @@ -74308,7 +74082,7 @@ in ]; }) sources."browserify-zlib-0.2.0" - sources."browserslist-4.16.0" + sources."browserslist-4.16.1" sources."buffer-5.7.1" sources."buffer-equal-0.0.1" sources."buffer-from-1.1.1" @@ -74334,7 +74108,7 @@ in sources."normalize-url-4.5.0" ]; }) - sources."call-bind-1.0.0" + sources."call-bind-1.0.2" sources."caller-callsite-2.0.0" sources."caller-path-2.0.0" sources."callsite-1.0.0" @@ -74342,12 +74116,12 @@ in (sources."camel-case-4.1.2" // { dependencies = [ sources."pascal-case-3.1.2" - sources."tslib-2.0.3" + sources."tslib-2.1.0" ]; }) sources."camelcase-5.3.1" sources."caniuse-api-3.0.0" - sources."caniuse-lite-1.0.30001173" + sources."caniuse-lite-1.0.30001180" sources."capture-stack-trace-1.0.1" sources."caseless-0.12.0" (sources."chalk-4.1.0" // { @@ -74360,7 +74134,7 @@ in ]; }) sources."charenc-0.0.2" - sources."chokidar-3.4.3" + sources."chokidar-3.5.1" sources."chownr-2.0.0" sources."chrome-trace-event-1.0.2" sources."ci-info-1.6.0" @@ -74393,12 +74167,14 @@ in sources."cli-cursor-2.1.0" sources."cli-spinners-2.5.0" sources."cli-table3-0.6.0" - (sources."cliui-6.0.0" // { + (sources."cliui-5.0.0" // { dependencies = [ - sources."ansi-styles-4.3.0" - sources."color-convert-2.0.1" - sources."color-name-1.1.4" - sources."wrap-ansi-6.2.0" + sources."ansi-regex-4.1.0" + sources."emoji-regex-7.0.3" + sources."is-fullwidth-code-point-2.0.0" + sources."string-width-3.1.0" + sources."strip-ansi-5.2.0" + sources."wrap-ansi-5.1.0" ]; }) sources."clone-2.1.2" @@ -74417,7 +74193,7 @@ in sources."color-string-1.5.4" sources."colorette-1.2.1" sources."colors-1.4.0" - sources."combined-stream-1.0.8" + sources."combined-stream-1.0.6" sources."command-exists-1.2.9" sources."commander-2.17.1" sources."common-tags-1.8.0" @@ -74462,7 +74238,7 @@ in sources."array-union-2.1.0" sources."find-cache-dir-3.3.1" sources."find-up-4.1.0" - sources."globby-11.0.1" + sources."globby-11.0.2" sources."loader-utils-2.0.0" sources."locate-path-5.0.0" sources."make-dir-3.1.0" @@ -74476,8 +74252,8 @@ in sources."slash-3.0.0" ]; }) - sources."core-js-3.8.2" - (sources."core-js-compat-3.8.2" // { + sources."core-js-3.8.3" + (sources."core-js-compat-3.8.3" // { dependencies = [ sources."semver-7.0.0" ]; @@ -74492,7 +74268,11 @@ in sources."create-error-class-3.0.2" sources."create-hash-1.2.0" sources."create-hmac-1.1.7" - sources."cross-spawn-6.0.5" + (sources."cross-spawn-6.0.5" // { + dependencies = [ + sources."semver-5.7.1" + ]; + }) sources."crypt-0.0.2" sources."crypto-browserify-3.12.0" sources."crypto-random-string-1.0.0" @@ -74539,7 +74319,6 @@ in sources."dag-map-1.0.2" sources."dashdash-1.14.1" sources."dateformat-3.0.3" - sources."dayjs-1.10.1" sources."debug-4.3.2" sources."debuglog-1.0.1" sources."decache-4.4.0" @@ -74608,6 +74387,7 @@ in sources."domain-browser-1.2.0" sources."domelementtype-2.1.0" sources."domhandler-3.3.0" + sources."domino-2.1.6" (sources."domutils-2.4.4" // { dependencies = [ sources."domhandler-4.0.0" @@ -74615,7 +74395,7 @@ in }) (sources."dot-case-3.0.4" // { dependencies = [ - sources."tslib-2.0.3" + sources."tslib-2.1.0" ]; }) sources."dot-prop-5.3.0" @@ -74624,7 +74404,7 @@ in sources."duplexify-3.7.1" sources."ecc-jsbn-0.1.2" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.3.634" + sources."electron-to-chromium-1.3.645" (sources."elliptic-6.5.3" // { dependencies = [ sources."bn.js-4.11.9" @@ -74639,12 +74419,12 @@ in ]; }) sources."end-of-stream-1.4.4" - (sources."enhanced-resolve-4.3.0" // { + (sources."enhanced-resolve-4.5.0" // { dependencies = [ sources."memory-fs-0.5.0" ]; }) - sources."entities-2.1.0" + sources."entities-2.2.0" sources."env-editor-0.4.1" sources."env-paths-2.2.0" sources."envinfo-7.5.0" @@ -74658,8 +74438,8 @@ in }) sources."error-stack-parser-2.0.6" sources."errorhandler-1.5.1" - sources."es-abstract-1.17.7" - sources."es-get-iterator-1.1.1" + sources."es-abstract-1.18.0-next.2" + sources."es-get-iterator-1.1.2" sources."es-to-primitive-1.2.1" sources."escalade-3.1.1" sources."escape-html-1.0.3" @@ -74679,7 +74459,11 @@ in sources."eventsource-1.0.7" sources."evp_bytestokey-1.0.3" sources."exec-async-2.2.0" - sources."execa-1.0.0" + (sources."execa-1.0.0" // { + dependencies = [ + sources."get-stream-4.1.0" + ]; + }) sources."exif-parser-0.1.12" (sources."expand-brackets-2.1.4" // { dependencies = [ @@ -74701,7 +74485,7 @@ in sources."ms-2.0.0" ]; }) - (sources."expo-pwa-0.0.58" // { + (sources."expo-pwa-0.0.62" // { dependencies = [ sources."commander-2.20.0" ]; @@ -74725,8 +74509,8 @@ in ]; }) sources."extsprintf-1.3.0" - sources."fast-deep-equal-3.1.3" - sources."fast-glob-3.2.4" + sources."fast-deep-equal-1.1.0" + sources."fast-glob-3.2.5" sources."fast-json-stable-stringify-2.1.0" sources."fastq-1.10.0" sources."faye-websocket-0.10.0" @@ -74751,7 +74535,7 @@ in sources."find-up-5.0.0" sources."find-yarn-workspace-root-2.0.0" sources."flush-write-stream-1.1.1" - sources."follow-redirects-1.13.1" + sources."follow-redirects-1.13.2" sources."for-in-1.0.2" sources."foreach-2.0.5" sources."forever-agent-0.6.1" @@ -74768,11 +74552,7 @@ in sources."to-regex-range-2.1.1" ]; }) - (sources."form-data-2.3.2" // { - dependencies = [ - sources."combined-stream-1.0.6" - ]; - }) + sources."form-data-2.3.2" sources."forwarded-0.1.2" sources."fragment-cache-0.2.1" sources."freeport-async-2.0.0" @@ -74795,7 +74575,7 @@ in }) sources."fs-write-stream-atomic-1.0.10" sources."fs.realpath-1.0.0" - sources."fsevents-2.1.3" + sources."fsevents-2.3.1" sources."function-bind-1.1.1" (sources."gauge-2.7.4" // { dependencies = [ @@ -74807,10 +74587,10 @@ in }) sources."gensync-1.0.0-beta.2" sources."get-caller-file-2.0.5" - sources."get-intrinsic-1.0.2" + sources."get-intrinsic-1.1.0" sources."get-own-enumerable-property-symbols-3.0.2" sources."get-port-3.2.0" - sources."get-stream-4.1.0" + sources."get-stream-3.0.0" sources."get-value-2.0.6" sources."getenv-0.7.0" sources."getpass-0.1.7" @@ -74852,7 +74632,13 @@ in sources."gzip-size-5.1.1" sources."handle-thing-2.0.1" sources."har-schema-2.0.0" - sources."har-validator-5.1.5" + (sources."har-validator-5.1.5" // { + dependencies = [ + sources."ajv-6.12.6" + sources."fast-deep-equal-3.1.3" + sources."json-schema-traverse-0.4.1" + ]; + }) sources."has-1.0.3" sources."has-flag-3.0.0" sources."has-symbols-1.0.1" @@ -74868,11 +74654,7 @@ in sources."kind-of-4.0.0" ]; }) - (sources."hasbin-1.2.3" // { - dependencies = [ - sources."async-1.5.2" - ]; - }) + sources."hasbin-1.2.3" (sources."hash-base-3.1.0" // { dependencies = [ sources."readable-stream-3.6.0" @@ -74976,7 +74758,7 @@ in sources."is-docker-2.1.1" sources."is-extendable-0.1.1" sources."is-extglob-2.1.1" - sources."is-fullwidth-code-point-2.0.0" + sources."is-fullwidth-code-point-3.0.0" sources."is-function-1.0.2" sources."is-glob-4.0.1" (sources."is-invalid-path-0.1.0" // { @@ -74998,6 +74780,7 @@ in sources."is-port-reachable-2.0.1" (sources."is-reachable-4.0.0" // { dependencies = [ + sources."get-stream-4.1.0" sources."got-9.6.0" sources."p-timeout-3.2.0" sources."prepend-http-3.0.1" @@ -75019,11 +74802,7 @@ in sources."is-string-1.0.5" sources."is-svg-3.0.0" sources."is-symbol-1.0.3" - (sources."is-typed-array-1.1.4" // { - dependencies = [ - sources."es-abstract-1.18.0-next.1" - ]; - }) + sources."is-typed-array-1.1.4" sources."is-typedarray-1.0.0" sources."is-valid-path-0.1.1" sources."is-weakmap-2.0.1" @@ -75042,11 +74821,10 @@ in sources."supports-color-7.2.0" ]; }) - sources."jetifier-1.6.6" sources."jimp-0.12.1" sources."joi-11.4.0" sources."join-component-1.1.0" - sources."jpeg-js-0.4.2" + sources."jpeg-js-0.4.3" sources."js-tokens-4.0.0" sources."js-yaml-3.14.1" sources."jsbn-0.1.1" @@ -75060,7 +74838,7 @@ in sources."md5-2.2.1" ]; }) - sources."json-schema-traverse-0.4.1" + sources."json-schema-traverse-0.3.1" sources."json-stable-stringify-1.0.1" sources."json-stringify-safe-5.0.1" sources."json3-3.3.3" @@ -75089,8 +74867,7 @@ in ]; }) sources."locate-path-6.0.0" - sources."lock-0.1.4" - sources."lodash-4.17.15" + sources."lodash-4.17.20" sources."lodash._reinterpolate-3.0.0" sources."lodash.assign-4.2.0" sources."lodash.debounce-4.0.8" @@ -75105,17 +74882,11 @@ in sources."chalk-2.4.2" ]; }) - (sources."logfmt-1.3.2" // { - dependencies = [ - sources."split-0.2.10" - ]; - }) - sources."logkitty-0.7.1" sources."loglevel-1.7.1" sources."loose-envify-1.4.0" (sources."lower-case-2.0.2" // { dependencies = [ - sources."tslib-2.0.3" + sources."tslib-2.1.0" ]; }) sources."lowercase-keys-1.0.1" @@ -75125,7 +74896,7 @@ in sources."semver-5.7.1" ]; }) - (sources."make-fetch-happen-8.0.12" // { + (sources."make-fetch-happen-8.0.13" // { dependencies = [ sources."minipass-3.1.3" ]; @@ -75156,7 +74927,7 @@ in sources."bn.js-4.11.9" ]; }) - sources."mime-2.4.7" + sources."mime-2.5.0" sources."mime-db-1.45.0" sources."mime-types-2.1.28" sources."mimic-fn-1.2.0" @@ -75164,6 +74935,9 @@ in sources."min-document-2.19.0" (sources."mini-css-extract-plugin-0.5.0" // { dependencies = [ + sources."ajv-6.12.6" + sources."fast-deep-equal-3.1.3" + sources."json-schema-traverse-0.4.1" sources."schema-utils-1.0.0" ]; }) @@ -75181,7 +74955,7 @@ in sources."minipass-3.1.3" ]; }) - (sources."minipass-fetch-1.3.2" // { + (sources."minipass-fetch-1.3.3" // { dependencies = [ sources."minipass-3.1.3" ]; @@ -75234,11 +75008,12 @@ in sources."ncp-2.0.0" sources."negotiator-0.6.2" sources."neo-async-2.6.2" + sources."nested-error-stacks-2.0.1" sources."next-tick-1.1.0" sources."nice-try-1.0.5" (sources."no-case-3.0.4" // { dependencies = [ - sources."tslib-2.0.3" + sources."tslib-2.1.0" ]; }) sources."node-fetch-2.6.1" @@ -75246,7 +75021,6 @@ in (sources."node-gyp-7.1.2" // { dependencies = [ sources."rimraf-3.0.2" - sources."semver-7.3.4" sources."which-2.0.2" ]; }) @@ -75258,34 +75032,29 @@ in sources."punycode-1.4.1" ]; }) - sources."node-releases-1.1.69" + sources."node-releases-1.1.70" sources."nopt-5.0.0" sources."normalize-path-3.0.0" sources."normalize-url-3.3.0" sources."npm-bundled-1.1.1" - (sources."npm-install-checks-4.0.0" // { - dependencies = [ - sources."semver-7.3.4" - ]; - }) + sources."npm-install-checks-4.0.0" sources."npm-normalize-package-bin-1.0.1" (sources."npm-package-arg-6.1.0" // { dependencies = [ sources."hosted-git-info-2.8.8" + sources."semver-5.7.1" ]; }) sources."npm-packlist-2.1.4" (sources."npm-pick-manifest-6.1.0" // { dependencies = [ sources."npm-package-arg-8.1.0" - sources."semver-7.3.4" ]; }) (sources."npm-registry-fetch-8.1.5" // { dependencies = [ sources."minipass-3.1.3" sources."npm-package-arg-8.1.0" - sources."semver-7.3.4" ]; }) sources."npm-run-path-2.0.2" @@ -75313,22 +75082,10 @@ in sources."object-keys-1.1.1" sources."object-visit-1.0.1" sources."object.assign-4.1.2" - (sources."object.entries-1.1.3" // { - dependencies = [ - sources."es-abstract-1.18.0-next.1" - ]; - }) - (sources."object.getownpropertydescriptors-2.1.1" // { - dependencies = [ - sources."es-abstract-1.18.0-next.1" - ]; - }) + sources."object.entries-1.1.3" + sources."object.getownpropertydescriptors-2.1.1" sources."object.pick-1.3.0" - (sources."object.values-1.1.2" // { - dependencies = [ - sources."es-abstract-1.18.0-next.1" - ]; - }) + sources."object.values-1.1.2" sources."obuf-1.1.2" sources."omggif-1.0.10" sources."on-finished-2.3.0" @@ -75341,6 +75098,7 @@ in sources."options-0.0.6" (sources."ora-3.4.0" // { dependencies = [ + sources."ansi-regex-4.1.0" sources."chalk-2.4.2" sources."strip-ansi-5.2.0" ]; @@ -75370,6 +75128,7 @@ in sources."p-try-2.2.0" (sources."package-json-6.4.0" // { dependencies = [ + sources."get-stream-4.1.0" sources."got-9.6.0" sources."prepend-http-2.0.0" sources."registry-auth-token-3.4.0" @@ -75378,21 +75137,20 @@ in sources."url-parse-lax-3.0.0" ]; }) - (sources."pacote-11.1.13" // { + (sources."pacote-11.2.3" // { dependencies = [ sources."minipass-3.1.3" sources."mkdirp-1.0.4" sources."npm-package-arg-8.1.0" sources."npm-registry-fetch-9.0.0" sources."rimraf-3.0.2" - sources."semver-7.3.4" ]; }) sources."pako-1.0.11" sources."parallel-transform-1.2.0" (sources."param-case-3.0.4" // { dependencies = [ - sources."tslib-2.0.3" + sources."tslib-2.1.0" ]; }) sources."parse-asn1-5.1.6" @@ -75585,14 +75343,9 @@ in sources."postcss-value-parser-4.1.0" sources."prepend-http-1.0.4" sources."pretty-bytes-5.5.0" - (sources."pretty-error-2.1.2" // { - dependencies = [ - sources."lodash-4.17.20" - ]; - }) + sources."pretty-error-2.1.2" (sources."pretty-format-25.5.0" // { dependencies = [ - sources."ansi-regex-5.0.0" sources."ansi-styles-4.3.0" sources."color-convert-2.0.1" sources."color-name-1.1.4" @@ -75664,7 +75417,7 @@ in sources."is-wsl-2.2.0" sources."loader-utils-2.0.0" sources."locate-path-5.0.0" - sources."open-7.3.0" + sources."open-7.3.1" sources."p-limit-2.3.0" sources."p-locate-4.1.0" sources."path-key-3.1.1" @@ -75694,12 +75447,12 @@ in sources."regenerator-runtime-0.13.7" sources."regenerator-transform-0.14.5" sources."regex-not-1.0.2" - sources."regexp.prototype.flags-1.3.0" + sources."regexp.prototype.flags-1.3.1" sources."regexpu-core-4.7.1" sources."registry-auth-token-3.3.2" sources."registry-url-3.1.0" sources."regjsgen-0.5.2" - (sources."regjsparser-0.6.4" // { + (sources."regjsparser-0.6.6" // { dependencies = [ sources."jsesc-0.5.0" ]; @@ -75713,7 +75466,7 @@ in (sources."dom-serializer-0.2.2" // { dependencies = [ sources."domelementtype-2.1.0" - sources."entities-2.1.0" + sources."entities-2.2.0" ]; }) sources."domelementtype-1.3.1" @@ -75721,7 +75474,6 @@ in sources."domutils-1.7.0" sources."entities-1.1.2" sources."htmlparser2-3.10.1" - sources."lodash-4.17.20" sources."readable-stream-3.6.0" sources."strip-ansi-3.0.1" ]; @@ -75737,6 +75489,11 @@ in sources."require-directory-2.1.1" sources."require-from-string-2.0.2" sources."require-main-filename-2.0.0" + (sources."requireg-0.2.2" // { + dependencies = [ + sources."resolve-1.7.1" + ]; + }) sources."requires-port-1.0.0" sources."resolve-1.19.0" sources."resolve-alpn-1.0.0" @@ -75768,14 +75525,20 @@ in sources."safe-regex-1.1.0" sources."safer-buffer-2.1.2" sources."sax-1.2.4" - sources."schema-utils-2.7.1" + (sources."schema-utils-2.7.1" // { + dependencies = [ + sources."ajv-6.12.6" + sources."fast-deep-equal-3.1.3" + sources."json-schema-traverse-0.4.1" + ]; + }) sources."select-hose-2.0.0" (sources."selfsigned-1.10.8" // { dependencies = [ sources."node-forge-0.10.0" ]; }) - sources."semver-5.5.0" + sources."semver-7.3.2" (sources."send-0.16.2" // { dependencies = [ sources."debug-2.6.9" @@ -75814,7 +75577,6 @@ in sources."simple-swizzle-0.2.2" sources."sisteransi-1.0.5" sources."slash-1.0.0" - sources."slice-ansi-2.1.0" (sources."slugid-1.1.0" // { dependencies = [ sources."uuid-2.0.3" @@ -75918,11 +75680,7 @@ in ]; }) sources."stream-shift-1.0.1" - (sources."string-width-4.2.0" // { - dependencies = [ - sources."is-fullwidth-code-point-3.0.0" - ]; - }) + sources."string-width-4.2.0" sources."string.prototype.trimend-1.0.3" sources."string.prototype.trimstart-1.0.3" sources."string_decoder-1.1.1" @@ -75931,11 +75689,7 @@ in sources."is-obj-1.0.1" ]; }) - (sources."strip-ansi-6.0.0" // { - dependencies = [ - sources."ansi-regex-5.0.0" - ]; - }) + sources."strip-ansi-6.0.0" sources."strip-comments-1.0.2" sources."strip-eof-1.0.0" sources."strip-json-comments-2.0.1" @@ -75965,7 +75719,7 @@ in }) sources."symbol-observable-1.2.0" sources."tapable-1.1.3" - (sources."tar-6.0.5" // { + (sources."tar-6.1.0" // { dependencies = [ sources."minipass-3.1.3" sources."mkdirp-1.0.4" @@ -75977,7 +75731,7 @@ in sources."array-union-2.1.0" sources."crypto-random-string-2.0.0" sources."del-6.0.0" - sources."globby-11.0.1" + sources."globby-11.0.2" sources."is-path-inside-3.0.2" sources."is-stream-2.0.0" sources."p-map-4.0.0" @@ -76045,6 +75799,7 @@ in sources."tslib-1.14.1" sources."tty-browserify-0.0.0" sources."tunnel-agent-0.6.0" + sources."turndown-7.0.0" sources."tweetnacl-0.14.5" sources."type-fest-0.3.1" sources."type-is-1.6.18" @@ -76080,7 +75835,7 @@ in sources."update-check-1.5.3" sources."upper-case-1.1.3" sources."upper-case-first-1.1.2" - sources."uri-js-4.4.0" + sources."uri-js-4.4.1" sources."urix-0.1.0" (sources."url-0.11.0" // { dependencies = [ @@ -76090,6 +75845,9 @@ in sources."url-join-4.0.0" (sources."url-loader-4.1.1" // { dependencies = [ + sources."ajv-6.12.6" + sources."fast-deep-equal-3.1.3" + sources."json-schema-traverse-0.4.1" sources."loader-utils-2.0.0" sources."schema-utils-3.0.0" ]; @@ -76141,6 +75899,7 @@ in sources."wcwidth-1.0.1" (sources."webpack-4.43.0" // { dependencies = [ + sources."ajv-6.12.6" (sources."braces-2.3.2" // { dependencies = [ sources."extend-shallow-2.0.1" @@ -76148,6 +75907,7 @@ in }) sources."cacache-12.0.4" sources."chownr-1.1.4" + sources."fast-deep-equal-3.1.3" (sources."fill-range-4.0.0" // { dependencies = [ sources."extend-shallow-2.0.1" @@ -76158,6 +75918,7 @@ in sources."kind-of-3.2.2" ]; }) + sources."json-schema-traverse-0.4.1" sources."lru-cache-5.1.1" sources."micromatch-3.1.10" sources."rimraf-2.7.1" @@ -76173,6 +75934,7 @@ in sources."webpack-dev-middleware-3.7.3" (sources."webpack-dev-server-3.11.0" // { dependencies = [ + sources."ajv-6.12.6" sources."ansi-regex-2.1.1" sources."anymatch-2.0.0" sources."binary-extensions-1.13.1" @@ -76184,28 +75946,21 @@ in sources."braces-2.3.2" sources."bytes-3.1.0" sources."chokidar-2.1.8" - (sources."cliui-5.0.0" // { - dependencies = [ - sources."ansi-regex-4.1.0" - sources."strip-ansi-5.2.0" - ]; - }) sources."content-disposition-0.5.3" sources."cookie-0.4.0" - sources."emoji-regex-7.0.3" (sources."express-4.17.1" // { dependencies = [ sources."debug-2.6.9" ]; }) sources."extend-shallow-2.0.1" + sources."fast-deep-equal-3.1.3" sources."fill-range-4.0.0" (sources."finalhandler-1.1.2" // { dependencies = [ sources."debug-2.6.9" ]; }) - sources."find-up-3.0.0" sources."fsevents-1.2.13" sources."glob-parent-3.1.0" sources."http-errors-1.7.2" @@ -76215,16 +75970,13 @@ in sources."is-binary-path-1.0.1" sources."is-glob-3.1.0" sources."is-number-3.0.0" + sources."json-schema-traverse-0.4.1" sources."kind-of-3.2.2" - sources."locate-path-3.0.0" sources."micromatch-3.1.10" sources."mime-1.6.0" sources."ms-2.0.0" sources."normalize-path-2.1.1" - sources."p-limit-2.3.0" - sources."p-locate-3.0.0" sources."p-retry-3.0.1" - sources."path-exists-3.0.0" sources."qs-6.7.0" sources."raw-body-2.4.0" sources."readdirp-2.2.1" @@ -76243,24 +75995,10 @@ in sources."serve-static-1.14.1" sources."setprototypeof-1.1.1" sources."statuses-1.5.0" - (sources."string-width-3.1.0" // { - dependencies = [ - sources."ansi-regex-4.1.0" - sources."strip-ansi-5.2.0" - ]; - }) sources."strip-ansi-3.0.1" sources."supports-color-6.1.0" sources."to-regex-range-2.1.1" - (sources."wrap-ansi-5.1.0" // { - dependencies = [ - sources."ansi-regex-4.1.0" - sources."strip-ansi-5.2.0" - ]; - }) sources."ws-6.2.1" - sources."yargs-13.3.2" - sources."yargs-parser-13.1.2" ]; }) (sources."webpack-log-2.0.0" // { @@ -76293,14 +76031,11 @@ in sources."which-boxed-primitive-1.0.2" sources."which-collection-1.0.1" sources."which-module-2.0.0" - (sources."which-typed-array-1.1.4" // { - dependencies = [ - sources."es-abstract-1.18.0-next.1" - ]; - }) + sources."which-typed-array-1.1.4" (sources."wide-align-1.1.3" // { dependencies = [ sources."ansi-regex-3.0.0" + sources."is-fullwidth-code-point-2.0.0" sources."string-width-2.1.1" sources."strip-ansi-4.0.0" ]; @@ -76331,6 +76066,9 @@ in sources."worker-farm-1.7.0" (sources."worker-loader-2.0.0" // { dependencies = [ + sources."ajv-6.12.6" + sources."fast-deep-equal-3.1.3" + sources."json-schema-traverse-0.4.1" sources."schema-utils-0.4.7" ]; }) @@ -76359,20 +76097,25 @@ in ]; }) sources."xmlbuilder-9.0.7" - sources."xmldoc-1.1.2" sources."xmldom-0.1.31" sources."xtend-4.0.2" sources."y18n-4.0.1" sources."yallist-4.0.0" - (sources."yargs-15.4.1" // { + (sources."yargs-13.3.2" // { dependencies = [ - sources."find-up-4.1.0" - sources."locate-path-5.0.0" + sources."ansi-regex-4.1.0" + sources."emoji-regex-7.0.3" + sources."find-up-3.0.0" + sources."is-fullwidth-code-point-2.0.0" + sources."locate-path-3.0.0" sources."p-limit-2.3.0" - sources."p-locate-4.1.0" + sources."p-locate-3.0.0" + sources."path-exists-3.0.0" + sources."string-width-3.1.0" + sources."strip-ansi-5.2.0" ]; }) - sources."yargs-parser-18.1.3" + sources."yargs-parser-13.1.2" sources."yocto-queue-0.1.0" sources."zen-observable-0.8.15" sources."zen-observable-ts-0.8.21" @@ -76553,7 +76296,7 @@ in sources."tunnel-agent-0.6.0" sources."tweetnacl-0.14.5" sources."typedarray-0.0.6" - sources."uri-js-4.4.0" + sources."uri-js-4.4.1" sources."util-deprecate-1.0.2" sources."uuid-3.4.0" sources."validate-npm-package-license-3.0.4" @@ -76609,8 +76352,8 @@ in }) (sources."@oclif/config-1.17.0" // { dependencies = [ - sources."globby-11.0.1" - sources."tslib-2.0.3" + sources."globby-11.0.2" + sources."tslib-2.1.0" ]; }) sources."@oclif/errors-1.3.4" @@ -76787,7 +76530,7 @@ in sources."extract-stack-1.0.0" sources."extsprintf-1.3.0" sources."fast-deep-equal-3.1.3" - sources."fast-glob-3.2.4" + sources."fast-glob-3.2.5" sources."fast-json-stable-stringify-2.1.0" sources."fast-levenshtein-2.0.6" sources."fastq-1.10.0" @@ -77107,7 +76850,7 @@ in sources."has-values-0.1.4" ]; }) - sources."uri-js-4.4.0" + sources."uri-js-4.4.1" sources."urix-0.1.0" sources."url-parse-1.4.7" sources."url-parse-lax-3.0.0" @@ -77136,38 +76879,37 @@ in firebase-tools = nodeEnv.buildNodePackage { name = "firebase-tools"; packageName = "firebase-tools"; - version = "9.1.0"; + version = "9.2.2"; src = fetchurl { - url = "https://registry.npmjs.org/firebase-tools/-/firebase-tools-9.1.0.tgz"; - sha512 = "hTfxL2meJSl5WuwAS6bEJ5nay7tu3MNYb4ZL2KmPL7yLM3IeT+Qd2z1evHhW1VvbDXKR6RTwlBxzdWPs4l75kA=="; + url = "https://registry.npmjs.org/firebase-tools/-/firebase-tools-9.2.2.tgz"; + sha512 = "AFjf7S9NjEM+u8ZByJEKASxRG1g+LLg/A0CrzA3V91P92MN+8cyrCigEs7mCdtFknLaShrCgzROyo/OEwd4xdA=="; }; dependencies = [ - sources."@apidevtools/json-schema-ref-parser-9.0.6" + sources."@apidevtools/json-schema-ref-parser-9.0.7" sources."@dabh/diagnostics-2.0.2" sources."@google-cloud/paginator-3.0.5" sources."@google-cloud/precise-date-2.0.3" sources."@google-cloud/projectify-2.0.1" sources."@google-cloud/promisify-2.0.3" - sources."@google-cloud/pubsub-2.7.0" - (sources."@grpc/grpc-js-1.1.8" // { + sources."@google-cloud/pubsub-2.8.0" + (sources."@grpc/grpc-js-1.2.5" // { dependencies = [ - sources."@grpc/proto-loader-0.6.0-pre9" - sources."@types/node-12.19.12" + sources."@types/node-12.19.15" sources."semver-6.3.0" ]; }) - sources."@grpc/proto-loader-0.5.5" + sources."@grpc/proto-loader-0.5.6" sources."@jsdevtools/ono-7.1.3" - sources."@opentelemetry/api-0.11.0" - sources."@opentelemetry/context-base-0.11.0" - (sources."@opentelemetry/core-0.11.0" // { + sources."@opentelemetry/api-0.12.0" + sources."@opentelemetry/context-base-0.12.0" + (sources."@opentelemetry/core-0.12.0" // { dependencies = [ sources."semver-7.3.4" ]; }) - sources."@opentelemetry/resources-0.11.0" - sources."@opentelemetry/semantic-conventions-0.11.0" - sources."@opentelemetry/tracing-0.11.0" + sources."@opentelemetry/resources-0.12.0" + sources."@opentelemetry/semantic-conventions-0.12.0" + sources."@opentelemetry/tracing-0.12.0" sources."@protobufjs/aspromise-1.1.2" sources."@protobufjs/base64-1.1.2" sources."@protobufjs/codegen-2.0.4" @@ -77180,9 +76922,10 @@ in sources."@protobufjs/utf8-1.1.0" sources."@sindresorhus/is-0.14.0" sources."@szmarczak/http-timer-1.1.2" + sources."@tootallnate/once-1.1.2" sources."@types/duplexify-3.6.0" sources."@types/long-4.0.1" - sources."@types/node-14.14.20" + sources."@types/node-14.14.22" sources."JSONStream-1.3.5" sources."abbrev-1.1.1" sources."abort-controller-3.0.0" @@ -77199,8 +76942,8 @@ in ]; }) sources."ansi-escapes-3.2.0" - sources."ansi-regex-5.0.0" - sources."ansi-styles-4.3.0" + sources."ansi-regex-2.1.1" + sources."ansi-styles-3.2.1" sources."ansicolors-0.3.2" sources."anymatch-3.1.1" sources."aproba-1.2.0" @@ -77225,6 +76968,7 @@ in sources."as-array-2.0.0" sources."asn1-0.2.4" sources."assert-plus-1.0.0" + sources."ast-types-0.13.4" sources."async-2.6.3" sources."asynckit-0.4.0" sources."aws-sign2-0.7.0" @@ -77241,7 +76985,7 @@ in sources."big-integer-1.6.48" sources."bignumber.js-9.0.1" sources."binary-0.3.0" - sources."binary-extensions-2.1.0" + sources."binary-extensions-2.2.0" sources."bl-4.0.3" sources."blakejs-1.1.0" sources."bluebird-3.4.7" @@ -77253,7 +76997,10 @@ in }) (sources."boxen-4.2.0" // { dependencies = [ + sources."ansi-styles-4.3.0" sources."chalk-3.0.0" + sources."color-convert-2.0.1" + sources."color-name-1.1.4" sources."has-flag-4.0.0" sources."supports-color-7.2.0" ]; @@ -77277,40 +77024,24 @@ in sources."cardinal-2.1.1" sources."caseless-0.12.0" sources."chainsaw-0.1.0" - (sources."chalk-2.4.2" // { - dependencies = [ - sources."ansi-styles-3.2.1" - sources."color-convert-1.9.3" - sources."color-name-1.1.3" - ]; - }) + sources."chalk-2.4.2" sources."chardet-0.7.0" - sources."chokidar-3.4.3" + sources."chokidar-3.5.1" sources."chownr-2.0.0" sources."ci-info-2.0.0" sources."cjson-0.3.3" sources."cli-boxes-2.2.1" - (sources."cli-color-1.4.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) + sources."cli-color-1.4.0" sources."cli-cursor-2.1.0" sources."cli-spinners-2.5.0" sources."cli-table-0.3.4" sources."cli-width-2.2.1" - sources."cliui-6.0.0" sources."clone-1.0.4" sources."clone-response-1.0.2" sources."code-point-at-1.1.0" - (sources."color-3.0.0" // { - dependencies = [ - sources."color-convert-1.9.3" - sources."color-name-1.1.3" - ]; - }) - sources."color-convert-2.0.1" - sources."color-name-1.1.4" + sources."color-3.0.0" + sources."color-convert-1.9.3" + sources."color-name-1.1.3" sources."color-string-1.5.4" sources."colors-1.4.0" sources."colorspace-1.1.2" @@ -77370,14 +77101,15 @@ in sources."csv-streamify-3.0.4" sources."d-1.0.1" sources."dashdash-1.14.1" + sources."data-uri-to-buffer-3.0.1" sources."debug-4.3.2" - sources."decamelize-1.2.0" sources."decompress-response-3.3.0" sources."deep-extend-0.6.0" sources."deep-freeze-0.0.1" sources."deep-is-0.1.3" sources."defaults-1.0.3" sources."defer-to-connect-1.1.3" + sources."degenerator-2.2.0" sources."delayed-stream-1.0.0" sources."delegates-1.0.0" sources."depd-1.1.2" @@ -77408,7 +77140,10 @@ in sources."escape-goat-2.1.1" sources."escape-html-1.0.3" sources."escape-string-regexp-1.0.5" + sources."escodegen-1.14.3" sources."esprima-4.0.1" + sources."estraverse-4.3.0" + sources."esutils-2.0.3" sources."etag-1.8.1" sources."event-emitter-0.3.5" sources."event-target-shim-5.0.1" @@ -77437,6 +77172,7 @@ in sources."extsprintf-1.3.0" sources."fast-deep-equal-3.1.3" sources."fast-json-stable-stringify-2.1.0" + sources."fast-levenshtein-2.0.6" sources."fast-safe-stringify-2.0.7" sources."fast-text-encoding-1.0.3" (sources."fast-url-parser-1.1.3" // { @@ -77446,6 +77182,7 @@ in }) sources."fecha-4.2.0" sources."figures-2.0.0" + sources."file-uri-to-path-2.0.0" sources."filesize-3.6.1" sources."fill-range-7.0.1" (sources."finalhandler-1.1.2" // { @@ -77454,7 +77191,6 @@ in sources."ms-2.0.0" ]; }) - sources."find-up-4.1.0" (sources."flat-arguments-1.0.2" // { dependencies = [ (sources."as-array-1.0.0" // { @@ -77479,15 +77215,21 @@ in }) sources."fs-minipass-2.1.0" sources."fs.realpath-1.0.0" - sources."fsevents-2.1.3" + sources."fsevents-2.3.1" (sources."fstream-1.0.12" // { dependencies = [ sources."rimraf-2.7.1" ]; }) + (sources."ftp-0.3.10" // { + dependencies = [ + sources."isarray-0.0.1" + sources."readable-stream-1.1.14" + sources."string_decoder-0.10.31" + ]; + }) (sources."gauge-2.7.4" // { dependencies = [ - sources."ansi-regex-2.1.1" sources."is-fullwidth-code-point-1.0.0" sources."string-width-1.0.2" sources."strip-ansi-3.0.1" @@ -77495,31 +77237,28 @@ in }) sources."gaxios-4.1.0" sources."gcp-metadata-4.2.1" - sources."get-caller-file-2.0.5" sources."get-stream-4.1.0" + (sources."get-uri-3.0.2" // { + dependencies = [ + sources."fs-extra-8.1.0" + sources."jsonfile-4.0.0" + ]; + }) sources."getpass-0.1.7" sources."glob-7.1.6" sources."glob-parent-5.1.1" sources."glob-slash-1.0.0" sources."glob-slasher-1.0.1" sources."global-dirs-2.1.0" - sources."google-auth-library-6.1.3" - sources."google-gax-2.9.2" + sources."google-auth-library-6.1.6" + sources."google-gax-2.10.0" sources."google-p12-pem-3.0.3" sources."got-9.6.0" sources."graceful-fs-4.2.4" - (sources."gtoken-5.1.0" // { - dependencies = [ - sources."mime-2.4.7" - ]; - }) + sources."gtoken-5.2.1" sources."har-schema-2.0.0" sources."har-validator-5.1.5" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) + sources."has-ansi-2.0.0" sources."has-flag-3.0.0" sources."has-unicode-2.0.1" sources."has-yarn-2.1.0" @@ -77530,6 +77269,7 @@ in sources."inherits-2.0.3" ]; }) + sources."http-proxy-agent-4.0.1" sources."http-signature-1.2.0" sources."https-proxy-agent-5.0.0" sources."iconv-lite-0.4.24" @@ -77556,7 +77296,8 @@ in ]; }) sources."install-artifact-from-github-1.2.0" - sources."ip-regex-4.2.0" + sources."ip-1.1.5" + sources."ip-regex-4.3.0" sources."ipaddr.js-1.9.1" sources."is-arrayish-0.3.2" sources."is-binary-path-2.1.0" @@ -77614,8 +77355,8 @@ in ]; }) sources."leven-3.1.0" + sources."levn-0.3.0" sources."listenercount-1.0.1" - sources."locate-path-5.0.0" sources."lodash-4.17.20" sources."lodash._isnative-2.4.1" sources."lodash._objecttypes-2.4.1" @@ -77652,7 +77393,11 @@ in sources."marked-0.7.0" sources."marked-terminal-3.3.0" sources."media-typer-0.3.0" - sources."memoizee-0.4.14" + (sources."memoizee-0.4.15" // { + dependencies = [ + sources."next-tick-1.1.0" + ]; + }) sources."merge-descriptors-1.0.1" sources."methods-1.1.2" sources."mime-1.6.0" @@ -77681,6 +77426,7 @@ in ]; }) sources."negotiator-0.6.2" + sources."netmask-1.0.6" sources."next-tick-1.0.0" sources."nice-try-1.0.5" sources."node-emoji-1.10.0" @@ -77690,7 +77436,7 @@ in dependencies = [ sources."mkdirp-1.0.4" sources."semver-7.3.4" - sources."tar-6.0.5" + sources."tar-6.1.0" sources."which-2.0.2" ]; }) @@ -77708,6 +77454,7 @@ in sources."onetime-2.0.1" sources."open-6.4.0" sources."openapi3-ts-1.4.0" + sources."optionator-0.8.3" (sources."ora-3.4.0" // { dependencies = [ sources."ansi-regex-4.1.0" @@ -77717,16 +77464,14 @@ in sources."os-tmpdir-1.0.2" sources."p-cancelable-1.1.0" sources."p-defer-3.0.0" - sources."p-limit-2.3.0" - sources."p-locate-4.1.0" - sources."p-try-2.2.0" + sources."pac-proxy-agent-4.1.0" + sources."pac-resolver-4.1.0" (sources."package-json-6.5.0" // { dependencies = [ sources."semver-6.3.0" ]; }) sources."parseurl-1.3.3" - sources."path-exists-4.0.0" sources."path-is-absolute-1.0.1" sources."path-key-2.0.1" sources."path-to-regexp-0.1.7" @@ -77738,16 +77483,24 @@ in sources."debug-3.2.7" ]; }) + sources."prelude-ls-1.1.2" sources."prepend-http-2.0.0" sources."process-nextick-args-2.0.1" sources."progress-2.0.3" sources."promise-breaker-5.0.0" (sources."protobufjs-6.10.2" // { dependencies = [ - sources."@types/node-13.13.39" + sources."@types/node-13.13.40" ]; }) sources."proxy-addr-2.0.6" + (sources."proxy-agent-4.0.1" // { + dependencies = [ + sources."lru-cache-5.1.1" + sources."yallist-3.1.1" + ]; + }) + sources."proxy-from-env-1.1.0" sources."psl-1.8.0" sources."pump-3.0.0" sources."punycode-2.1.1" @@ -77767,8 +77520,6 @@ in sources."qs-6.5.2" ]; }) - sources."require-directory-2.1.1" - sources."require-main-filename-2.0.0" sources."responselike-1.0.2" sources."restore-cursor-2.0.0" sources."retry-request-4.1.3" @@ -77814,6 +77565,10 @@ in sources."shebang-regex-1.0.0" sources."signal-exit-3.0.3" sources."simple-swizzle-0.2.2" + sources."smart-buffer-4.1.0" + sources."socks-2.5.1" + sources."socks-proxy-agent-5.0.0" + sources."source-map-0.6.1" sources."sprintf-js-1.0.3" sources."sshpk-1.16.1" sources."stack-trace-0.0.10" @@ -77821,17 +77576,19 @@ in sources."stream-shift-1.0.1" (sources."string-length-1.0.1" // { dependencies = [ - sources."ansi-regex-2.1.1" sources."strip-ansi-3.0.1" ]; }) sources."string-width-4.2.0" sources."string_decoder-1.3.0" - sources."strip-ansi-6.0.0" + (sources."strip-ansi-6.0.0" // { + dependencies = [ + sources."ansi-regex-5.0.0" + ]; + }) sources."strip-json-comments-2.0.1" (sources."superstatic-7.1.0" // { dependencies = [ - sources."ansi-regex-2.1.1" sources."ansi-styles-2.2.1" sources."chalk-1.1.3" sources."fs-extra-8.1.0" @@ -77882,7 +77639,7 @@ in sources."toxic-1.0.1" sources."traverse-0.3.9" sources."triple-beam-1.3.0" - sources."tslib-2.0.3" + sources."tslib-2.1.0" sources."tunnel-agent-0.6.0" sources."tweetnacl-0.14.5" (sources."tweetsodium-0.0.5" // { @@ -77891,6 +77648,7 @@ in ]; }) sources."type-1.2.0" + sources."type-check-0.3.2" sources."type-fest-0.8.1" sources."type-is-1.6.18" sources."typedarray-to-buffer-3.1.5" @@ -77907,12 +77665,15 @@ in }) (sources."update-notifier-4.1.3" // { dependencies = [ + sources."ansi-styles-4.3.0" sources."chalk-3.0.0" + sources."color-convert-2.0.1" + sources."color-name-1.1.4" sources."has-flag-4.0.0" sources."supports-color-7.2.0" ]; }) - sources."uri-js-4.4.0" + sources."uri-js-4.4.1" sources."url-join-0.0.1" sources."url-parse-lax-3.0.0" sources."util-deprecate-1.0.2" @@ -77923,7 +77684,6 @@ in sources."verror-1.10.0" sources."wcwidth-1.0.1" sources."which-1.3.1" - sources."which-module-2.0.0" (sources."wide-align-1.1.3" // { dependencies = [ sources."ansi-regex-3.0.0" @@ -77945,18 +77705,16 @@ in sources."string_decoder-1.1.1" ]; }) - sources."wrap-ansi-6.2.0" + sources."word-wrap-1.2.3" sources."wrappy-1.0.2" sources."write-file-atomic-3.0.3" sources."ws-7.4.2" sources."xdg-basedir-4.0.0" sources."xmlbuilder-9.0.7" sources."xmldom-0.1.31" + sources."xregexp-2.0.0" sources."xtend-4.0.2" - sources."y18n-4.0.1" sources."yallist-4.0.0" - sources."yargs-15.4.1" - sources."yargs-parser-18.1.3" sources."zip-stream-2.1.3" ]; buildInputs = globalBuildInputs; @@ -78099,7 +77857,7 @@ in sources."lodash-4.17.20" sources."lru-cache-6.0.0" sources."map-obj-4.1.0" - (sources."meow-8.1.0" // { + (sources."meow-8.1.2" // { dependencies = [ sources."type-fest-0.18.1" ]; @@ -78123,7 +77881,7 @@ in sources."p-limit-2.3.0" sources."p-locate-4.1.0" sources."p-try-2.2.0" - sources."parse-json-5.1.0" + sources."parse-json-5.2.0" sources."path-exists-4.0.0" sources."path-key-3.1.1" sources."path-parse-1.0.6" @@ -78214,7 +77972,7 @@ in sources."concat-map-0.0.1" sources."fd-slicer-1.1.0" sources."fs.realpath-1.0.0" - sources."geoip-country-4.0.49" + sources."geoip-country-4.0.53" sources."glob-7.1.6" sources."iconv-lite-0.5.2" sources."inflight-1.0.6" @@ -78296,7 +78054,7 @@ in ]; }) sources."cache-base-1.0.1" - sources."call-bind-1.0.0" + sources."call-bind-1.0.2" sources."caller-0.0.1" sources."camelcase-2.1.1" sources."chokidar-2.1.8" @@ -78341,8 +78099,6 @@ in sources."defined-0.0.0" sources."director-1.2.7" sources."duplexer-0.1.2" - sources."es-abstract-1.17.7" - sources."es-to-primitive-1.2.1" sources."event-stream-3.3.4" sources."eventemitter2-6.4.3" (sources."expand-brackets-2.1.4" // { @@ -78388,7 +78144,7 @@ in sources."fs.realpath-1.0.0" sources."fsevents-1.2.13" sources."function-bind-1.1.1" - sources."get-intrinsic-1.0.2" + sources."get-intrinsic-1.1.0" sources."get-value-2.0.6" sources."glob-7.1.6" (sources."glob-parent-3.1.0" // { @@ -78414,7 +78170,6 @@ in sources."is-arguments-1.1.0" sources."is-binary-path-1.0.1" sources."is-buffer-1.1.6" - sources."is-callable-1.2.2" sources."is-data-descriptor-1.0.0" sources."is-date-object-1.0.2" sources."is-descriptor-1.0.2" @@ -78429,7 +78184,6 @@ in }) sources."is-plain-object-2.0.4" sources."is-regex-1.1.1" - sources."is-symbol-1.0.3" sources."is-windows-1.0.2" sources."isarray-1.0.0" sources."isobject-3.0.1" @@ -78477,11 +78231,9 @@ in sources."kind-of-3.2.2" ]; }) - sources."object-inspect-1.9.0" sources."object-is-1.1.4" sources."object-keys-1.1.1" sources."object-visit-1.0.1" - sources."object.assign-4.1.2" sources."object.pick-1.3.0" sources."once-1.4.0" sources."optimist-0.6.0" @@ -78505,7 +78257,7 @@ in sources."readable-stream-2.3.7" sources."readdirp-2.2.1" sources."regex-not-1.0.2" - sources."regexp.prototype.flags-1.3.0" + sources."regexp.prototype.flags-1.3.1" sources."remove-trailing-separator-1.1.0" sources."repeat-element-1.1.3" sources."repeat-string-1.6.1" @@ -78578,8 +78330,6 @@ in }) sources."stream-combiner-0.0.4" sources."string-width-1.0.2" - sources."string.prototype.trimend-1.0.3" - sources."string.prototype.trimstart-1.0.3" sources."string_decoder-1.1.1" sources."strip-ansi-3.0.1" sources."strip-json-comments-0.1.3" @@ -79036,7 +78786,7 @@ in sources."figures-3.2.0" sources."find-up-3.0.0" sources."function-bind-1.1.1" - sources."fuse.js-6.4.5" + sources."fuse.js-6.4.6" sources."get-stream-6.0.0" sources."global-dirs-2.1.0" (sources."got-9.6.0" // { @@ -79099,7 +78849,7 @@ in ]; }) sources."map-obj-4.1.0" - (sources."meow-8.1.0" // { + (sources."meow-8.1.2" // { dependencies = [ sources."type-fest-0.18.1" ]; @@ -79121,7 +78871,7 @@ in sources."mimic-fn-2.1.0" ]; }) - sources."ora-5.2.0" + sources."ora-5.3.0" sources."os-tmpdir-1.0.2" sources."p-cancelable-1.1.0" sources."p-limit-2.3.0" @@ -79132,7 +78882,7 @@ in sources."semver-6.3.0" ]; }) - sources."parse-json-5.1.0" + sources."parse-json-5.2.0" sources."path-exists-4.0.0" sources."path-key-3.1.1" sources."path-parse-1.0.6" @@ -79200,7 +78950,7 @@ in sources."typedarray-to-buffer-3.1.5" sources."unique-string-2.0.0" sources."update-notifier-5.0.1" - sources."uri-js-4.4.0" + sources."uri-js-4.4.1" sources."url-parse-lax-3.0.0" sources."util-deprecate-1.0.2" sources."validate-npm-package-license-3.0.4" @@ -79250,39 +79000,59 @@ in sources."@graphql-cli/init-4.1.0" (sources."@graphql-tools/batch-execute-7.0.0" // { dependencies = [ - sources."@graphql-tools/utils-7.2.3" + (sources."@graphql-tools/utils-7.2.4" // { + dependencies = [ + sources."tslib-2.1.0" + ]; + }) ]; }) - (sources."@graphql-tools/delegate-7.0.8" // { + (sources."@graphql-tools/delegate-7.0.9" // { dependencies = [ - sources."@graphql-tools/utils-7.2.3" + sources."@graphql-tools/utils-7.2.4" + sources."tslib-2.1.0" ]; }) - (sources."@graphql-tools/graphql-file-loader-6.2.6" // { + (sources."@graphql-tools/graphql-file-loader-6.2.7" // { dependencies = [ - sources."@graphql-tools/utils-7.2.3" + sources."@graphql-tools/utils-7.2.4" + sources."tslib-2.1.0" + ]; + }) + (sources."@graphql-tools/import-6.2.6" // { + dependencies = [ + sources."tslib-2.1.0" ]; }) - sources."@graphql-tools/import-6.2.5" (sources."@graphql-tools/json-file-loader-6.2.6" // { dependencies = [ - sources."@graphql-tools/utils-7.2.3" + (sources."@graphql-tools/utils-7.2.4" // { + dependencies = [ + sources."tslib-2.1.0" + ]; + }) ]; }) sources."@graphql-tools/load-6.2.4" - (sources."@graphql-tools/merge-6.2.6" // { + (sources."@graphql-tools/merge-6.2.7" // { dependencies = [ - sources."@graphql-tools/utils-7.2.3" + sources."@graphql-tools/utils-7.2.4" + sources."tslib-2.1.0" ]; }) (sources."@graphql-tools/schema-7.1.2" // { dependencies = [ - sources."@graphql-tools/utils-7.2.3" + (sources."@graphql-tools/utils-7.2.4" // { + dependencies = [ + sources."tslib-2.1.0" + ]; + }) ]; }) - (sources."@graphql-tools/url-loader-6.7.1" // { + (sources."@graphql-tools/url-loader-6.8.0" // { dependencies = [ - sources."@graphql-tools/utils-7.2.3" + sources."@graphql-tools/utils-7.2.4" + sources."tslib-2.1.0" ]; }) (sources."@graphql-tools/utils-6.2.4" // { @@ -79296,7 +79066,11 @@ in }) (sources."@graphql-tools/wrap-7.0.5" // { dependencies = [ - sources."@graphql-tools/utils-7.2.3" + (sources."@graphql-tools/utils-7.2.4" // { + dependencies = [ + sources."tslib-2.1.0" + ]; + }) ]; }) sources."@kwsites/file-exists-1.1.1" @@ -79306,7 +79080,7 @@ in sources."@nodelib/fs.walk-1.2.6" sources."@sindresorhus/is-0.14.0" sources."@szmarczak/http-timer-1.1.2" - sources."@types/node-14.14.20" + sources."@types/node-14.14.22" sources."@types/parse-json-4.0.0" sources."@types/websocket-1.0.1" sources."aggregate-error-3.1.0" @@ -79341,12 +79115,12 @@ in sources."lowercase-keys-2.0.0" ]; }) - sources."call-bind-1.0.0" + sources."call-bind-1.0.2" sources."call-me-maybe-1.0.1" sources."callsites-3.1.0" (sources."camel-case-4.1.2" // { dependencies = [ - sources."tslib-2.0.3" + sources."tslib-2.1.0" ]; }) sources."caseless-0.12.0" @@ -79402,8 +79176,8 @@ in sources."emoji-regex-8.0.0" sources."end-of-stream-1.4.4" sources."error-ex-1.3.2" - sources."es-abstract-1.17.7" - sources."es-get-iterator-1.1.1" + sources."es-abstract-1.18.0-next.2" + sources."es-get-iterator-1.1.2" sources."es-to-primitive-1.2.1" sources."es6-promise-3.3.1" sources."escalade-3.1.1" @@ -79420,7 +79194,7 @@ in sources."extract-files-9.0.0" sources."extsprintf-1.3.0" sources."fast-deep-equal-3.1.3" - sources."fast-glob-3.2.4" + sources."fast-glob-3.2.5" sources."fast-json-stable-stringify-2.1.0" sources."fast-safe-stringify-2.0.7" sources."fastq-1.10.0" @@ -79439,7 +79213,7 @@ in sources."fullname-4.0.1" sources."function-bind-1.1.1" sources."get-caller-file-2.0.5" - sources."get-intrinsic-1.0.2" + sources."get-intrinsic-1.1.0" sources."get-stream-4.1.0" sources."getpass-0.1.7" sources."glob-7.1.6" @@ -79460,7 +79234,7 @@ in sources."graphql-subscriptions-1.1.0" sources."graphql-type-json-0.3.2" sources."graphql-upload-11.0.0" - sources."graphql-ws-3.1.0" + sources."graphql-ws-4.1.0" sources."har-schema-2.0.0" sources."har-validator-5.1.5" sources."has-1.0.3" @@ -79514,11 +79288,7 @@ in sources."is-stream-1.1.0" sources."is-string-1.0.5" sources."is-symbol-1.0.3" - (sources."is-typed-array-1.1.4" // { - dependencies = [ - sources."es-abstract-1.18.0-next.1" - ]; - }) + sources."is-typed-array-1.1.4" sources."is-typedarray-1.0.0" sources."is-weakmap-2.0.1" sources."is-weakset-2.0.1" @@ -79563,7 +79333,7 @@ in }) (sources."lower-case-2.0.2" // { dependencies = [ - sources."tslib-2.0.3" + sources."tslib-2.1.0" ]; }) sources."lowercase-keys-1.0.1" @@ -79589,7 +79359,7 @@ in sources."nice-try-1.0.5" (sources."no-case-3.0.4" // { dependencies = [ - sources."tslib-2.0.3" + sources."tslib-2.1.0" ]; }) sources."node-emoji-1.10.0" @@ -79601,13 +79371,13 @@ in sources."npm-run-path-2.0.2" sources."oas-kit-common-1.0.8" sources."oas-linter-3.2.1" - (sources."oas-resolver-2.5.3" // { + (sources."oas-resolver-2.5.4" // { dependencies = [ sources."yargs-16.2.0" ]; }) sources."oas-schema-walker-1.1.5" - sources."oas-validator-5.0.4" + sources."oas-validator-5.0.5" sources."oauth-sign-0.9.0" sources."object-inspect-1.9.0" sources."object-is-1.1.4" @@ -79646,10 +79416,10 @@ in }) sources."parent-module-1.0.1" sources."parse-github-url-1.0.2" - sources."parse-json-5.1.0" + sources."parse-json-5.2.0" (sources."pascal-case-3.1.2" // { dependencies = [ - sources."tslib-2.0.3" + sources."tslib-2.1.0" ]; }) sources."passwd-user-3.0.0" @@ -79666,8 +79436,8 @@ in sources."qs-6.5.2" sources."querystringify-2.2.0" sources."rc-1.2.8" - sources."reftools-1.1.7" - sources."regexp.prototype.flags-1.3.0" + sources."reftools-1.1.8" + sources."regexp.prototype.flags-1.3.1" sources."registry-auth-token-4.2.1" sources."registry-url-5.1.0" sources."remove-trailing-separator-1.1.0" @@ -79720,7 +79490,7 @@ in sources."strip-eof-1.0.0" sources."strip-json-comments-2.0.1" sources."supports-color-7.2.0" - (sources."swagger2openapi-7.0.4" // { + (sources."swagger2openapi-7.0.5" // { dependencies = [ sources."yargs-16.2.0" ]; @@ -79739,7 +79509,7 @@ in sources."type-fest-0.3.1" sources."universalify-1.0.0" sources."unixify-1.0.0" - sources."uri-js-4.4.0" + sources."uri-js-4.4.1" sources."url-parse-1.4.7" sources."url-parse-lax-3.0.0" sources."uuid-3.4.0" @@ -79749,11 +79519,7 @@ in sources."which-1.3.1" sources."which-boxed-primitive-1.0.2" sources."which-collection-1.0.1" - (sources."which-typed-array-1.1.4" // { - dependencies = [ - sources."es-abstract-1.18.0-next.1" - ]; - }) + sources."which-typed-array-1.1.4" (sources."wrap-ansi-7.0.0" // { dependencies = [ sources."ansi-regex-5.0.0" @@ -79761,7 +79527,7 @@ in ]; }) sources."wrappy-1.0.2" - sources."ws-7.4.1" + sources."ws-7.4.2" sources."y18n-5.0.5" sources."yallist-4.0.0" sources."yaml-1.10.0" @@ -80050,10 +79816,10 @@ in makam = nodeEnv.buildNodePackage { name = "makam"; packageName = "makam"; - version = "0.7.37"; + version = "0.7.38"; src = fetchurl { - url = "https://registry.npmjs.org/makam/-/makam-0.7.37.tgz"; - sha512 = "6DGx7FnmgAf+dYXrptwmgC6WDR0+emgM1jMscY/3yitXP3IYq0BvFE2UKq66P16nkHcQHmENK6xTt8M3Z+rdBw=="; + url = "https://registry.npmjs.org/makam/-/makam-0.7.38.tgz"; + sha512 = "xRlCK3zKbEvQqDUH8C6dW6O+LdV6QDoxzbe2LSghO+ZrZq+iRbnXJvvNFvFRkGFW7fqciGvGq1P1dX5Rkul12w=="; }; buildInputs = globalBuildInputs; meta = { @@ -80065,6 +79831,84 @@ in bypassCache = true; reconstructLock = true; }; + meshcommander = nodeEnv.buildNodePackage { + name = "meshcommander"; + packageName = "meshcommander"; + version = "0.9.0-d"; + src = fetchurl { + url = "https://registry.npmjs.org/meshcommander/-/meshcommander-0.9.0-d.tgz"; + sha512 = "sA4XtYUB8PZXozUr5G+OLnGyWOXm60nIH7EQUMYQAPHJQuhi52nMHKi6XYOQtByGR+hpeLK0vmi/dKQCj/7oFg=="; + }; + dependencies = [ + sources."accepts-1.3.7" + sources."array-flatten-1.1.1" + sources."body-parser-1.19.0" + sources."bytes-3.1.0" + sources."content-disposition-0.5.3" + sources."content-type-1.0.4" + sources."cookie-0.4.0" + sources."cookie-signature-1.0.6" + sources."debug-2.6.9" + sources."depd-1.1.2" + sources."destroy-1.0.4" + sources."ee-first-1.1.1" + sources."encodeurl-1.0.2" + sources."escape-html-1.0.3" + sources."etag-1.8.1" + sources."express-4.17.1" + sources."express-ws-2.0.0" + sources."finalhandler-1.1.2" + sources."forwarded-0.1.2" + sources."fresh-0.5.2" + sources."http-errors-1.7.2" + sources."iconv-lite-0.4.24" + sources."inherits-2.0.3" + sources."ipaddr.js-1.9.1" + sources."media-typer-0.3.0" + sources."merge-descriptors-1.0.1" + sources."methods-1.1.2" + sources."mime-1.6.0" + sources."mime-db-1.45.0" + sources."mime-types-2.1.28" + sources."minimist-1.2.5" + sources."ms-2.0.0" + sources."negotiator-0.6.2" + sources."on-finished-2.3.0" + sources."options-0.0.6" + sources."parseurl-1.3.3" + sources."path-to-regexp-0.1.7" + sources."proxy-addr-2.0.6" + sources."qs-6.7.0" + sources."range-parser-1.2.1" + sources."raw-body-2.4.0" + sources."safe-buffer-5.1.2" + sources."safer-buffer-2.1.2" + (sources."send-0.17.1" // { + dependencies = [ + sources."ms-2.1.1" + ]; + }) + sources."serve-static-1.14.1" + sources."setprototypeof-1.1.1" + sources."statuses-1.5.0" + sources."toidentifier-1.0.0" + sources."type-is-1.6.18" + sources."ultron-1.0.2" + sources."unpipe-1.0.0" + sources."utils-merge-1.0.1" + sources."vary-1.1.2" + sources."ws-1.1.5" + ]; + buildInputs = globalBuildInputs; + meta = { + description = "MeshCommander web server"; + homepage = http://meshcommander.com/; + license = "Apache-2.0"; + }; + production = true; + bypassCache = true; + reconstructLock = true; + }; gqlint = nodeEnv.buildNodePackage { name = "gqlint"; packageName = "gqlint"; @@ -80125,7 +79969,7 @@ in sources."ansi-term-0.0.2" sources."ansicolors-0.3.2" sources."blessed-0.1.81" - sources."blessed-contrib-4.8.20" + sources."blessed-contrib-4.8.21" sources."bresenham-0.0.3" sources."buffers-0.1.1" sources."cardinal-2.1.1" @@ -80197,7 +80041,7 @@ in sources."supports-color-7.2.0" ]; }) - sources."systeminformation-4.34.2" + sources."systeminformation-4.34.9" sources."term-canvas-0.0.5" sources."type-fest-0.11.0" sources."wordwrap-0.0.3" @@ -80281,7 +80125,7 @@ in sources."buffer-equal-1.0.0" sources."buffer-from-1.1.1" sources."cache-base-1.0.1" - sources."call-bind-1.0.0" + sources."call-bind-1.0.2" sources."camelcase-3.0.0" sources."chokidar-2.1.8" (sources."class-utils-0.3.6" // { @@ -80395,7 +80239,7 @@ in sources."fsevents-1.2.13" sources."function-bind-1.1.1" sources."get-caller-file-1.0.3" - sources."get-intrinsic-1.0.2" + sources."get-intrinsic-1.1.0" sources."get-value-2.0.6" sources."glob-7.1.6" (sources."glob-parent-3.1.0" // { @@ -80719,7 +80563,7 @@ in }) sources."buffer-from-1.1.1" sources."cache-base-1.0.1" - sources."call-bind-1.0.0" + sources."call-bind-1.0.2" sources."camelcase-3.0.0" (sources."class-utils-0.3.6" // { dependencies = [ @@ -80795,7 +80639,7 @@ in sources."fragment-cache-0.2.1" sources."function-bind-1.1.1" sources."get-caller-file-1.0.3" - sources."get-intrinsic-1.0.2" + sources."get-intrinsic-1.1.0" sources."get-value-2.0.6" sources."global-modules-1.0.0" sources."global-prefix-1.0.2" @@ -81074,7 +80918,7 @@ in sources."param-case-2.1.1" sources."relateurl-0.2.7" sources."source-map-0.6.1" - sources."uglify-js-3.12.4" + sources."uglify-js-3.12.5" sources."upper-case-1.1.3" ]; buildInputs = globalBuildInputs; @@ -81165,7 +81009,7 @@ in sources."tough-cookie-2.5.0" sources."tunnel-agent-0.6.0" sources."tweetnacl-0.14.5" - sources."uri-js-4.4.0" + sources."uri-js-4.4.1" sources."uuid-3.4.0" sources."verror-1.10.0" sources."wrappy-1.0.2" @@ -81197,7 +81041,7 @@ in sources."debug-3.2.7" sources."ecstatic-3.3.2" sources."eventemitter3-4.0.7" - sources."follow-redirects-1.13.1" + sources."follow-redirects-1.13.2" sources."he-1.2.0" sources."http-proxy-1.18.1" sources."lodash-4.17.20" @@ -81207,7 +81051,7 @@ in sources."ms-2.1.3" sources."opener-1.5.2" sources."portfinder-1.0.28" - sources."qs-6.9.4" + sources."qs-6.9.6" sources."requires-port-1.0.0" sources."secure-compare-3.0.1" sources."union-0.5.0" @@ -81226,14 +81070,14 @@ in hsd = nodeEnv.buildNodePackage { name = "hsd"; packageName = "hsd"; - version = "2.2.0"; + version = "2.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/hsd/-/hsd-2.2.0.tgz"; - sha512 = "9U6ylEa3WPEb5AHb/TuwYDOJaXmR6mfKky8uJml3Y0xUAvO/yg/b4GfBXnMQ2wPQME5fG5Vkx0OLK7MyidtmAw=="; + url = "https://registry.npmjs.org/hsd/-/hsd-2.3.0.tgz"; + sha512 = "tgGO2ortI4HjQrMqmzrp+W3RSadfPdgZWWubNemxnugdiu4gGHCIv2FF3zHZbVd02UVBW+HRKDwqwltvGG+tbQ=="; }; dependencies = [ sources."bcfg-0.1.6" - sources."bcrypto-5.3.0" + sources."bcrypto-5.4.0" sources."bcurl-0.1.9" sources."bdb-1.3.0" sources."bdns-0.1.5" @@ -81246,7 +81090,7 @@ in sources."blru-0.1.6" sources."blst-0.1.5" sources."bmutex-0.1.6" - sources."bns-0.13.0" + sources."bns-0.14.0" sources."brq-0.1.8" sources."bs32-0.1.6" sources."bsert-0.0.10" @@ -81259,13 +81103,13 @@ in sources."bupnp-0.2.6" sources."bval-0.1.6" sources."bweb-0.1.10" - sources."goosig-0.9.0" + sources."goosig-0.10.0" sources."hs-client-0.0.9" sources."loady-0.0.5" sources."mrmr-0.1.10" sources."n64-0.2.10" sources."unbound-0.4.3" - sources."urkel-0.6.3" + sources."urkel-0.7.0" ]; buildInputs = globalBuildInputs; meta = { @@ -81280,18 +81124,18 @@ in hs-airdrop = nodeEnv.buildNodePackage { name = "hs-airdrop"; packageName = "hs-airdrop"; - version = "0.9.0"; + version = "0.10.0"; src = fetchurl { - url = "https://registry.npmjs.org/hs-airdrop/-/hs-airdrop-0.9.0.tgz"; - sha512 = "eqN7mbITsdiBFdRlFHd91Vgudu5rajvIfPhZ8juWLFBZhxhuXzu1POMy4uHK+02jxNjX+upMMRyDxo4xS/ZudQ=="; + url = "https://registry.npmjs.org/hs-airdrop/-/hs-airdrop-0.10.0.tgz"; + sha512 = "z3H9va3XyqvEG7K6ldUhX47n3TNMtzB9oA/z04SCVwJFk9s6WPbI6Tqkuv4U9obkXtMlwTjVWd5pDO+HZYpzWA=="; }; dependencies = [ - sources."bcrypto-5.3.0" + sources."bcrypto-5.4.0" sources."bfile-0.2.2" sources."brq-0.1.8" sources."bsert-0.0.10" sources."bufio-1.0.7" - sources."goosig-0.9.0" + sources."goosig-0.10.0" sources."loady-0.0.5" ]; buildInputs = globalBuildInputs; @@ -81670,7 +81514,7 @@ in sources."uglify-js-2.8.29" sources."uglify-to-browserify-1.0.2" sources."update-notifier-0.5.0" - sources."uri-js-4.4.0" + sources."uri-js-4.4.1" sources."util-deprecate-1.0.2" sources."uuid-3.4.0" sources."verror-1.10.0" @@ -81704,7 +81548,7 @@ in sources."async-0.2.10" sources."balanced-match-1.0.0" sources."brace-expansion-1.1.11" - sources."bunyan-1.8.14" + sources."bunyan-1.8.15" sources."colors-0.6.2" sources."concat-map-0.0.1" sources."core-util-is-1.0.2" @@ -81820,7 +81664,7 @@ in sources."is-wsl-2.2.0" sources."isexe-2.0.0" sources."jquery-3.5.1" - sources."jquery.terminal-2.20.1" + sources."jquery.terminal-2.20.2" sources."jsonfile-2.4.0" sources."keyboardevent-key-polyfill-1.1.0" sources."line-reader-0.4.0" @@ -81884,7 +81728,7 @@ in sources."ansi-styles-3.2.1" (sources."ast-types-0.13.4" // { dependencies = [ - sources."tslib-2.0.3" + sources."tslib-2.1.0" ]; }) sources."astral-regex-2.0.0" @@ -82022,7 +81866,7 @@ in sources."lru-cache-5.1.1" sources."macos-release-2.4.1" sources."methods-1.1.2" - sources."mime-2.4.7" + sources."mime-2.5.0" sources."mime-db-1.45.0" sources."mime-types-2.1.28" sources."mimic-fn-1.2.0" @@ -82042,7 +81886,7 @@ in }) sources."once-1.4.0" sources."onetime-2.0.1" - sources."open-7.3.0" + sources."open-7.3.1" sources."optionator-0.8.3" sources."os-name-3.1.0" sources."os-tmpdir-1.0.2" @@ -82053,10 +81897,10 @@ in sources."path-key-3.1.1" sources."prelude-ls-1.1.2" sources."process-nextick-args-2.0.1" - sources."proxy-agent-4.0.0" + sources."proxy-agent-4.0.1" sources."proxy-from-env-1.1.0" sources."pump-3.0.0" - sources."qs-6.9.4" + sources."qs-6.9.6" sources."raw-body-2.4.1" sources."readable-stream-3.6.0" sources."restore-cursor-2.0.0" @@ -82316,7 +82160,7 @@ in sources."find-up-1.1.2" sources."forever-agent-0.6.1" sources."form-data-2.3.3" - sources."fs-extra-9.0.1" + sources."fs-extra-9.1.0" sources."fs-minipass-1.2.7" sources."fs.realpath-1.0.0" sources."function-bind-1.1.1" @@ -82350,11 +82194,7 @@ in sources."json-schema-0.2.3" sources."json-schema-traverse-0.4.1" sources."json-stringify-safe-5.0.1" - (sources."jsonfile-6.1.0" // { - dependencies = [ - sources."universalify-2.0.0" - ]; - }) + sources."jsonfile-6.1.0" sources."jsprim-1.4.1" sources."lcid-1.0.0" sources."levn-0.3.0" @@ -82496,16 +82336,16 @@ in sources."tough-cookie-2.5.0" sources."traverse-0.3.9" sources."ts-process-promises-1.0.2" - sources."tslib-2.0.3" + sources."tslib-2.1.0" sources."ttf2woff-2.0.2" sources."ttf2woff2-3.0.0" sources."tunnel-agent-0.6.0" sources."tweetnacl-0.14.5" sources."type-check-0.3.2" - sources."typo-geom-0.11.0" + sources."typo-geom-0.11.1" sources."unicoderegexp-0.4.1" - sources."universalify-1.0.0" - sources."uri-js-4.4.0" + sources."universalify-2.0.0" + sources."uri-js-4.4.1" sources."urix-0.1.0" sources."util-deprecate-1.0.2" sources."uuid-3.4.0" @@ -82639,7 +82479,7 @@ in sources."once-1.4.0" sources."opentracing-0.14.5" sources."path-is-absolute-1.0.1" - sources."pathval-1.1.0" + sources."pathval-1.1.1" sources."process-0.10.1" sources."rxjs-5.5.12" sources."semaphore-async-await-1.5.1" @@ -82679,26 +82519,26 @@ in joplin = nodeEnv.buildNodePackage { name = "joplin"; packageName = "joplin"; - version = "1.5.1"; + version = "1.6.4"; src = fetchurl { - url = "https://registry.npmjs.org/joplin/-/joplin-1.5.1.tgz"; - sha512 = "V90a+QTDf5SSW8Il0BcWtdqdtDZYd/YFltqRzXGBRwO2nFggeUAuXcQxs5ZxEhQF3Jzvx3yGfrYioZR7B30D2A=="; + url = "https://registry.npmjs.org/joplin/-/joplin-1.6.4.tgz"; + sha512 = "jfiqk9aqN3mAZ+TIGqubTKGTBB5Q8KRmeXS2qr/2N80KFJHCqdCFhsyI/E2hfdd3CA4Gu5Ls9WTxXA3MW/XjwA=="; }; dependencies = [ sources."@braintree/sanitize-url-3.1.0" sources."@cronvel/get-pixels-3.4.0" - sources."@joplin/fork-htmlparser2-4.1.14" - sources."@joplin/fork-sax-1.2.18" - sources."@joplin/lib-1.0.15" - (sources."@joplin/renderer-1.0.23" // { + sources."@joplin/fork-htmlparser2-4.1.21" + sources."@joplin/fork-sax-1.2.25" + sources."@joplin/lib-1.0.18" + (sources."@joplin/renderer-1.0.26" // { dependencies = [ sources."fs-extra-8.1.0" sources."jsonfile-4.0.0" sources."uslug-git+https://github.com/laurent22/uslug.git#emoji-support" ]; }) - sources."@joplin/turndown-4.0.36" - sources."@joplin/turndown-plugin-gfm-1.0.18" + sources."@joplin/turndown-4.0.43" + sources."@joplin/turndown-plugin-gfm-1.0.25" sources."abab-2.0.5" sources."abbrev-1.1.1" sources."acorn-7.4.1" @@ -82738,7 +82578,7 @@ in sources."async-mutex-0.1.4" sources."asynckit-0.4.0" sources."atob-2.1.2" - (sources."aws-sdk-2.821.0" // { + (sources."aws-sdk-2.831.0" // { dependencies = [ sources."sax-1.2.1" sources."uuid-3.3.2" @@ -82753,7 +82593,7 @@ in sources."base64-js-1.5.1" sources."base64-stream-1.0.0" sources."bcrypt-pbkdf-1.0.2" - sources."binary-extensions-2.1.0" + sources."binary-extensions-2.2.0" (sources."bl-4.0.3" // { dependencies = [ sources."buffer-5.7.1" @@ -82772,7 +82612,7 @@ in sources."caseless-0.12.0" sources."chalk-4.1.0" sources."charenc-0.0.2" - sources."chokidar-3.4.3" + sources."chokidar-3.5.1" sources."chownr-1.1.4" sources."chroma-js-2.1.0" sources."clean-css-4.2.3" @@ -82879,7 +82719,7 @@ in ]; }) sources."end-of-stream-1.4.4" - sources."entities-2.1.0" + sources."entities-2.2.0" sources."entity-decode-2.0.2" sources."es6-promise-pool-2.5.0" sources."escape-string-regexp-1.0.5" @@ -82899,7 +82739,7 @@ in sources."file-uri-to-path-1.0.0" sources."fill-range-7.0.1" sources."find-up-2.1.0" - sources."follow-redirects-1.13.1" + sources."follow-redirects-1.13.2" sources."font-awesome-filetypes-2.1.0" sources."for-each-property-0.0.4" sources."for-each-property-deep-0.0.3" @@ -82914,7 +82754,7 @@ in }) sources."fs-minipass-1.2.7" sources."fs.realpath-1.0.0" - sources."fsevents-2.1.3" + sources."fsevents-2.3.1" sources."fstream-1.0.12" (sources."gauge-2.7.4" // { dependencies = [ @@ -82945,7 +82785,7 @@ in (sources."dom-serializer-0.2.2" // { dependencies = [ sources."domelementtype-2.1.0" - sources."entities-2.1.0" + sources."entities-2.2.0" ]; }) sources."domelementtype-1.3.1" @@ -83023,7 +82863,7 @@ in sources."isobject-2.1.0" sources."isstream-0.1.2" sources."jmespath-0.15.0" - sources."jpeg-js-0.4.2" + sources."jpeg-js-0.4.3" sources."js-tokens-4.0.0" sources."jsbn-0.1.1" sources."jsdom-15.2.1" @@ -83037,12 +82877,8 @@ in sources."commander-2.20.3" ]; }) - (sources."keytar-7.3.0" // { - dependencies = [ - sources."node-addon-api-3.1.0" - ]; - }) - sources."khroma-1.1.1" + sources."keytar-7.3.0" + sources."khroma-1.2.0" sources."klaw-1.3.1" sources."lazyness-1.2.0" sources."levenshtein-1.0.5" @@ -83090,7 +82926,7 @@ in sources."md5-2.3.0" sources."md5-file-4.0.0" sources."mdurl-1.0.1" - sources."mermaid-8.8.4" + sources."mermaid-8.9.0" sources."mime-db-1.45.0" sources."mime-types-2.1.28" sources."mimic-response-2.1.0" @@ -83100,7 +82936,7 @@ in sources."debug-4.3.2" sources."html-minifier-4.0.0" sources."ms-2.1.2" - sources."uglify-js-3.12.4" + sources."uglify-js-3.12.5" ]; }) sources."minimatch-3.0.4" @@ -83122,7 +82958,7 @@ in sources."napi-build-utils-1.0.2" sources."ndarray-1.0.19" sources."ndarray-pack-1.2.1" - sources."needle-2.5.2" + sources."needle-2.6.0" sources."nextgen-events-1.3.4" sources."no-case-2.3.2" (sources."node-abi-2.19.3" // { @@ -83130,7 +82966,7 @@ in sources."semver-5.7.1" ]; }) - sources."node-addon-api-2.0.0" + sources."node-addon-api-3.1.0" sources."node-bitmap-0.0.1" sources."node-emoji-1.10.0" sources."node-fetch-1.7.3" @@ -83172,7 +83008,7 @@ in }) sources."omggif-1.0.10" sources."once-1.4.0" - sources."open-7.3.0" + sources."open-7.3.1" sources."optionator-0.8.3" sources."os-homedir-1.0.2" sources."os-tmpdir-1.0.2" @@ -83251,7 +83087,6 @@ in sources."color-3.1.3" sources."decompress-response-6.0.0" sources."mimic-response-3.1.0" - sources."node-addon-api-3.1.0" sources."simple-get-4.0.0" ]; }) @@ -83273,12 +83108,12 @@ in sources."source-map-url-0.4.0" sources."split-skip-0.0.2" sources."sprintf-js-1.1.2" - sources."sqlite3-5.0.0" + sources."sqlite3-5.0.1" sources."sshpk-1.16.1" sources."statuses-1.5.0" sources."stealthy-require-1.1.1" sources."strict-uri-encode-1.1.0" - sources."string-kit-0.11.8" + sources."string-kit-0.11.10" sources."string-padding-1.0.2" sources."string-to-stream-1.1.1" (sources."string-width-1.0.2" // { @@ -83324,7 +83159,7 @@ in sources."q-0.9.7" ]; }) - sources."terminal-kit-1.44.3" + sources."terminal-kit-1.45.9" (sources."terser-4.8.0" // { dependencies = [ sources."commander-2.20.3" @@ -83366,7 +83201,7 @@ in sources."unorm-1.6.0" sources."unpack-string-0.0.2" sources."upper-case-1.1.3" - sources."uri-js-4.4.0" + sources."uri-js-4.4.1" sources."urix-0.1.0" (sources."url-0.10.3" // { dependencies = [ @@ -83418,10 +83253,10 @@ in js-beautify = nodeEnv.buildNodePackage { name = "js-beautify"; packageName = "js-beautify"; - version = "1.13.0"; + version = "1.13.5"; src = fetchurl { - url = "https://registry.npmjs.org/js-beautify/-/js-beautify-1.13.0.tgz"; - sha512 = "/Tbp1OVzZjbwzwJQFIlYLm9eWQ+3aYbBXLSaqb1mEJzhcQAfrqMMQYtjb6io+U6KpD0ID4F+Id3/xcjH3l/sqA=="; + url = "https://registry.npmjs.org/js-beautify/-/js-beautify-1.13.5.tgz"; + sha512 = "MsXlH6Z/BiRYSkSRW3clNDqDjSpiSNOiG8xYVUBXt4k0LnGvDhlTGOlHX1VFtAdoLmtwjxMG5qiWKy/g+Ipv5w=="; }; dependencies = [ sources."abbrev-1.1.1" @@ -83542,7 +83377,7 @@ in (sources."dom-serializer-0.2.2" // { dependencies = [ sources."domelementtype-2.1.0" - sources."entities-2.1.0" + sources."entities-2.2.0" ]; }) sources."domelementtype-1.3.1" @@ -83654,14 +83489,14 @@ in sources."path-loader-1.0.10" sources."process-nextick-args-2.0.1" sources."punycode-2.1.1" - sources."qs-6.9.4" + sources."qs-6.9.6" sources."readable-stream-2.3.7" sources."safe-buffer-5.1.2" sources."slash-3.0.0" sources."sprintf-js-1.0.3" sources."string_decoder-1.1.1" sources."superagent-3.8.3" - sources."uri-js-4.4.0" + sources."uri-js-4.4.1" sources."util-deprecate-1.0.2" ]; buildInputs = globalBuildInputs; @@ -83947,85 +83782,74 @@ in karma = nodeEnv.buildNodePackage { name = "karma"; packageName = "karma"; - version = "5.2.3"; + version = "6.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/karma/-/karma-5.2.3.tgz"; - sha512 = "tHdyFADhVVPBorIKCX8A37iLHxc6RBRphkSoQ+MLKdAtFn1k97tD8WUGi1KlEtDZKL3hui0qhsY9HXUfSNDYPQ=="; + url = "https://registry.npmjs.org/karma/-/karma-6.0.2.tgz"; + sha512 = "GBm8vPkQvjJL1ye//iH6yk9ROHOW+1TaFzRvbc6TbbCOFszbEG66dyDMoFjMMTAHy0ERNqRrMHap/LEHWeijNA=="; }; dependencies = [ + sources."@types/component-emitter-1.2.10" + sources."@types/cookie-0.4.0" + sources."@types/cors-2.8.9" + sources."@types/node-14.14.22" sources."accepts-1.3.7" - sources."after-0.8.2" sources."ansi-regex-5.0.0" sources."ansi-styles-4.3.0" sources."anymatch-3.1.1" - sources."arraybuffer.slice-0.0.7" - sources."backo2-1.0.2" sources."balanced-match-1.0.0" sources."base64-arraybuffer-0.1.4" sources."base64id-2.0.0" - sources."binary-extensions-2.1.0" - sources."blob-0.0.5" + sources."binary-extensions-2.2.0" sources."body-parser-1.19.0" sources."brace-expansion-1.1.11" sources."braces-3.0.2" sources."bytes-3.1.0" - sources."camelcase-5.3.1" - sources."chokidar-3.4.3" - sources."cliui-6.0.0" + sources."chokidar-3.5.1" + sources."cliui-7.0.4" sources."color-convert-2.0.1" sources."color-name-1.1.4" sources."colors-1.4.0" - sources."component-bind-1.0.0" sources."component-emitter-1.3.0" - sources."component-inherit-0.0.3" sources."concat-map-0.0.1" sources."connect-3.7.0" sources."content-type-1.0.4" sources."cookie-0.4.1" + sources."cors-2.8.5" sources."custom-event-1.0.1" sources."date-format-3.0.0" sources."debug-2.6.9" - sources."decamelize-1.2.0" sources."depd-1.1.2" sources."di-0.0.1" sources."dom-serialize-2.2.1" sources."ee-first-1.1.1" sources."emoji-regex-8.0.0" sources."encodeurl-1.0.2" - (sources."engine.io-3.5.0" // { + (sources."engine.io-4.1.0" // { dependencies = [ - sources."debug-4.1.1" - sources."ms-2.1.3" + sources."debug-4.3.2" + sources."ms-2.1.2" ]; }) - (sources."engine.io-client-3.5.0" // { - dependencies = [ - sources."debug-3.1.0" - ]; - }) - sources."engine.io-parser-2.2.1" + sources."engine.io-parser-4.0.2" sources."ent-2.2.0" + sources."escalade-3.1.1" sources."escape-html-1.0.3" sources."eventemitter3-4.0.7" sources."extend-3.0.2" sources."fill-range-7.0.1" sources."finalhandler-1.1.2" - sources."find-up-4.1.0" sources."flatted-2.0.2" - sources."follow-redirects-1.13.1" + sources."follow-redirects-1.13.2" sources."fs-extra-8.1.0" sources."fs.realpath-1.0.0" - sources."fsevents-2.1.3" + sources."fsevents-2.3.1" sources."get-caller-file-2.0.5" sources."glob-7.1.6" sources."glob-parent-5.1.1" sources."graceful-fs-4.2.4" - sources."has-binary2-1.0.3" - sources."has-cors-1.1.0" sources."http-errors-1.7.2" sources."http-proxy-1.18.1" sources."iconv-lite-0.4.24" - sources."indexof-0.0.1" sources."inflight-1.0.6" sources."inherits-2.0.3" sources."is-binary-path-2.1.0" @@ -84033,10 +83857,8 @@ in sources."is-fullwidth-code-point-3.0.0" sources."is-glob-4.0.1" sources."is-number-7.0.0" - sources."isarray-2.0.1" sources."isbinaryfile-4.0.6" sources."jsonfile-4.0.0" - sources."locate-path-5.0.0" sources."lodash-4.17.20" (sources."log4js-6.3.0" // { dependencies = [ @@ -84045,22 +83867,17 @@ in ]; }) sources."media-typer-0.3.0" - sources."mime-2.4.7" + sources."mime-2.5.0" sources."mime-db-1.45.0" sources."mime-types-2.1.28" sources."minimatch-3.0.4" sources."ms-2.0.0" sources."negotiator-0.6.2" sources."normalize-path-3.0.0" + sources."object-assign-4.1.1" sources."on-finished-2.3.0" sources."once-1.4.0" - sources."p-limit-2.3.0" - sources."p-locate-4.1.0" - sources."p-try-2.2.0" - sources."parseqs-0.0.6" - sources."parseuri-0.0.6" sources."parseurl-1.3.3" - sources."path-exists-4.0.0" sources."path-is-absolute-1.0.1" sources."picomatch-2.2.2" sources."qjobs-1.2.0" @@ -84069,31 +83886,22 @@ in sources."raw-body-2.4.0" sources."readdirp-3.5.0" sources."require-directory-2.1.1" - sources."require-main-filename-2.0.0" sources."requires-port-1.0.0" - sources."rfdc-1.1.4" + sources."rfdc-1.2.0" sources."rimraf-3.0.2" sources."safer-buffer-2.1.2" - sources."set-blocking-2.0.0" sources."setprototypeof-1.1.1" - (sources."socket.io-2.4.0" // { + (sources."socket.io-3.1.0" // { dependencies = [ - sources."debug-4.1.1" - sources."ms-2.1.3" + sources."debug-4.3.2" + sources."ms-2.1.2" ]; }) - sources."socket.io-adapter-1.1.2" - (sources."socket.io-client-2.4.0" // { + sources."socket.io-adapter-2.1.0" + (sources."socket.io-parser-4.0.4" // { dependencies = [ - sources."debug-3.1.0" - sources."socket.io-parser-3.3.1" - ]; - }) - (sources."socket.io-parser-3.4.1" // { - dependencies = [ - sources."component-emitter-1.2.1" - sources."debug-4.1.1" - sources."ms-2.1.3" + sources."debug-4.3.2" + sources."ms-2.1.2" ]; }) sources."source-map-0.6.1" @@ -84108,24 +83916,21 @@ in sources."string-width-4.2.0" sources."strip-ansi-6.0.0" sources."tmp-0.2.1" - sources."to-array-0.1.4" sources."to-regex-range-5.0.1" sources."toidentifier-1.0.0" sources."type-is-1.6.18" - sources."ua-parser-js-0.7.22" + sources."ua-parser-js-0.7.23" sources."universalify-0.1.2" sources."unpipe-1.0.0" sources."utils-merge-1.0.1" + sources."vary-1.1.2" sources."void-elements-2.0.1" - sources."which-module-2.0.0" - sources."wrap-ansi-6.2.0" + sources."wrap-ansi-7.0.0" sources."wrappy-1.0.2" sources."ws-7.4.2" - sources."xmlhttprequest-ssl-1.5.5" - sources."y18n-4.0.1" - sources."yargs-15.4.1" - sources."yargs-parser-18.1.3" - sources."yeast-0.1.2" + sources."y18n-5.0.5" + sources."yargs-16.2.0" + sources."yargs-parser-20.2.4" ]; buildInputs = globalBuildInputs; meta = { @@ -84150,7 +83955,7 @@ in sources."balanced-match-1.0.0" sources."brace-expansion-1.1.11" sources."buffer-equal-1.0.0" - sources."call-bind-1.0.0" + sources."call-bind-1.0.2" sources."clone-2.1.2" sources."clone-buffer-1.0.0" sources."clone-stats-1.0.0" @@ -84166,7 +83971,7 @@ in sources."fs-mkdirp-stream-1.0.0" sources."fs.realpath-1.0.0" sources."function-bind-1.1.1" - sources."get-intrinsic-1.0.2" + sources."get-intrinsic-1.1.0" sources."glob-7.1.6" sources."glob-parent-3.1.0" sources."glob-stream-6.1.0" @@ -84436,7 +84241,7 @@ in sources."tweetnacl-0.14.5" sources."type-check-0.3.2" sources."underscore-1.9.1" - sources."uri-js-4.4.0" + sources."uri-js-4.4.1" (sources."utile-0.3.0" // { dependencies = [ sources."async-0.9.2" @@ -84597,29 +84402,29 @@ in sources."@lerna/write-log-file-3.13.0" sources."@mrmlnc/readdir-enhanced-2.2.1" sources."@nodelib/fs.stat-1.1.3" - sources."@octokit/auth-token-2.4.4" - (sources."@octokit/endpoint-6.0.10" // { + sources."@octokit/auth-token-2.4.5" + (sources."@octokit/endpoint-6.0.11" // { dependencies = [ sources."is-plain-object-5.0.0" sources."universal-user-agent-6.0.0" ]; }) - sources."@octokit/openapi-types-2.0.1" + sources."@octokit/openapi-types-3.3.0" sources."@octokit/plugin-enterprise-rest-6.0.1" (sources."@octokit/plugin-paginate-rest-1.1.2" // { dependencies = [ sources."@octokit/types-2.16.2" ]; }) - sources."@octokit/plugin-request-log-1.0.2" + sources."@octokit/plugin-request-log-1.0.3" (sources."@octokit/plugin-rest-endpoint-methods-2.4.0" // { dependencies = [ sources."@octokit/types-2.16.2" ]; }) - (sources."@octokit/request-5.4.12" // { + (sources."@octokit/request-5.4.13" // { dependencies = [ - sources."@octokit/request-error-2.0.4" + sources."@octokit/request-error-2.0.5" sources."is-plain-object-5.0.0" sources."universal-user-agent-6.0.0" ]; @@ -84630,11 +84435,11 @@ in ]; }) sources."@octokit/rest-16.43.2" - sources."@octokit/types-6.1.2" + sources."@octokit/types-6.6.0" sources."@types/glob-7.1.3" sources."@types/minimatch-3.0.3" sources."@types/minimist-1.2.1" - sources."@types/node-14.14.20" + sources."@types/node-14.14.22" sources."@types/normalize-package-data-2.4.0" sources."@zkochan/cmd-shim-3.1.0" sources."JSONStream-1.3.5" @@ -84690,7 +84495,7 @@ in sources."byte-size-5.0.1" sources."cacache-12.0.4" sources."cache-base-1.0.1" - sources."call-bind-1.0.0" + sources."call-bind-1.0.2" sources."call-me-maybe-1.0.1" sources."caller-callsite-2.0.0" sources."caller-path-2.0.0" @@ -84831,7 +84636,7 @@ in sources."envinfo-7.7.3" sources."err-code-1.1.2" sources."error-ex-1.3.2" - sources."es-abstract-1.18.0-next.1" + sources."es-abstract-1.18.0-next.2" sources."es-to-primitive-1.2.1" sources."es6-promise-4.2.8" sources."es6-promisify-5.0.0" @@ -84915,7 +84720,7 @@ in }) sources."genfun-5.0.0" sources."get-caller-file-2.0.5" - sources."get-intrinsic-1.0.2" + sources."get-intrinsic-1.1.0" (sources."get-pkg-repo-1.4.0" // { dependencies = [ sources."camelcase-2.1.1" @@ -84976,7 +84781,7 @@ in ]; }) sources."git-up-4.0.2" - sources."git-url-parse-11.4.3" + sources."git-url-parse-11.4.4" sources."gitconfiglocal-1.0.0" sources."glob-7.1.6" sources."glob-parent-5.1.1" @@ -85112,7 +84917,7 @@ in sources."map-cache-0.2.2" sources."map-obj-4.1.0" sources."map-visit-1.0.0" - (sources."meow-8.1.0" // { + (sources."meow-8.1.2" // { dependencies = [ sources."find-up-4.1.0" sources."hosted-git-info-3.0.7" @@ -85120,7 +84925,7 @@ in sources."lru-cache-6.0.0" sources."normalize-package-data-3.0.0" sources."p-locate-4.1.0" - sources."parse-json-5.1.0" + sources."parse-json-5.2.0" sources."path-exists-4.0.0" (sources."read-pkg-5.2.0" // { dependencies = [ @@ -85241,7 +85046,11 @@ in sources."parallel-transform-1.2.0" sources."parse-github-repo-url-1.4.1" sources."parse-json-4.0.0" - sources."parse-path-4.0.2" + (sources."parse-path-4.0.3" // { + dependencies = [ + sources."qs-6.9.6" + ]; + }) sources."parse-url-5.0.2" sources."pascalcase-0.1.1" sources."path-dirname-1.0.2" @@ -85273,6 +85082,7 @@ in sources."punycode-2.1.1" sources."q-1.5.1" sources."qs-6.5.2" + sources."query-string-6.13.8" sources."quick-lru-4.0.1" sources."read-1.0.7" sources."read-cmd-shim-1.0.5" @@ -85383,6 +85193,7 @@ in sources."spdx-expression-parse-3.0.1" sources."spdx-license-ids-3.0.7" sources."split-1.0.1" + sources."split-on-first-1.1.0" sources."split-string-3.1.0" sources."split2-2.2.0" sources."sprintf-js-1.0.3" @@ -85407,6 +85218,7 @@ in }) sources."stream-each-1.2.3" sources."stream-shift-1.0.1" + sources."strict-uri-encode-2.0.0" (sources."string-width-2.1.1" // { dependencies = [ sources."ansi-regex-3.0.0" @@ -85451,7 +85263,7 @@ in sources."tweetnacl-0.14.5" sources."type-fest-0.3.1" sources."typedarray-0.0.6" - sources."uglify-js-3.12.4" + sources."uglify-js-3.12.5" sources."uid-number-0.0.6" sources."umask-1.1.0" sources."union-value-1.0.1" @@ -85470,7 +85282,7 @@ in ]; }) sources."upath-1.2.0" - sources."uri-js-4.4.0" + sources."uri-js-4.4.1" sources."urix-0.1.0" sources."use-3.1.1" sources."util-deprecate-1.0.2" @@ -85533,23 +85345,28 @@ in less = nodeEnv.buildNodePackage { name = "less"; packageName = "less"; - version = "4.0.0"; + version = "4.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/less/-/less-4.0.0.tgz"; - sha512 = "av1eEa2D0xZfF7fjLJS/Dld7zAYSLU7EOEJvuOELeaNI3i6L/81AdjbK5/pytaRkBwi7ZEa0433IDvMLskKCOw=="; + url = "https://registry.npmjs.org/less/-/less-4.1.0.tgz"; + sha512 = "w1Ag/f34g7LwtQ/sMVSGWIyZx+gG9ZOAEtyxeX1fG75is6BMyC2lD5kG+1RueX7PkAvlQBm2Lf2aN2j0JbVr2A=="; }; dependencies = [ sources."copy-anything-2.0.1" + sources."debug-3.2.7" sources."errno-0.1.8" sources."graceful-fs-4.2.4" + sources."iconv-lite-0.4.24" sources."image-size-0.5.5" sources."is-what-3.12.0" sources."make-dir-2.1.0" sources."mime-1.6.0" - sources."native-request-1.0.8" + sources."ms-2.1.3" + sources."needle-2.6.0" sources."parse-node-version-1.0.1" sources."pify-4.0.1" sources."prr-1.0.1" + sources."safer-buffer-2.1.2" + sources."sax-1.2.4" sources."semver-5.7.1" sources."source-map-0.6.1" sources."tslib-1.14.1" @@ -86320,7 +86137,7 @@ in ]; }) sources."snapdragon-util-3.0.1" - (sources."socket.io-2.4.0" // { + (sources."socket.io-2.4.1" // { dependencies = [ sources."debug-4.1.1" sources."ms-2.1.3" @@ -86331,7 +86148,7 @@ in dependencies = [ sources."debug-3.1.0" sources."isarray-2.0.1" - sources."socket.io-parser-3.3.1" + sources."socket.io-parser-3.3.2" ]; }) (sources."socket.io-parser-3.4.1" // { @@ -86394,7 +86211,7 @@ in sources."isobject-3.0.1" ]; }) - sources."uri-js-4.4.0" + sources."uri-js-4.4.1" sources."urix-0.1.0" sources."use-3.1.1" sources."util-deprecate-1.0.2" @@ -86538,13 +86355,13 @@ in sources."@types/babel__generator-7.6.2" sources."@types/babel__template-7.4.0" sources."@types/babel__traverse-7.11.0" - sources."@types/estree-0.0.45" + sources."@types/estree-0.0.46" sources."@types/graceful-fs-4.1.4" sources."@types/istanbul-lib-coverage-2.0.3" sources."@types/istanbul-lib-report-3.0.0" sources."@types/istanbul-reports-1.1.2" - sources."@types/json-schema-7.0.6" - sources."@types/node-14.14.20" + sources."@types/json-schema-7.0.7" + sources."@types/node-14.14.22" sources."@types/normalize-package-data-2.4.0" sources."@types/resolve-0.0.8" sources."@types/yargs-15.0.12" @@ -86663,7 +86480,7 @@ in sources."base64-js-1.5.1" sources."bcrypt-pbkdf-1.0.2" sources."big.js-5.2.2" - sources."binary-extensions-2.1.0" + sources."binary-extensions-2.2.0" sources."bindings-1.5.0" (sources."bl-4.0.3" // { dependencies = [ @@ -86698,7 +86515,7 @@ in ]; }) sources."browserify-zlib-0.2.0" - sources."browserslist-4.16.0" + sources."browserslist-4.16.1" sources."bser-2.1.1" sources."buffer-5.2.1" sources."buffer-from-1.1.1" @@ -86712,9 +86529,9 @@ in }) sources."cache-base-1.0.1" sources."cached-path-relative-1.0.2" - sources."call-bind-1.0.0" + sources."call-bind-1.0.2" sources."camelcase-5.3.1" - sources."caniuse-lite-1.0.30001173" + sources."caniuse-lite-1.0.30001180" sources."capture-exit-2.0.0" sources."caseless-0.12.0" (sources."chalk-3.0.0" // { @@ -86726,11 +86543,10 @@ in sources."supports-color-7.2.0" ]; }) - (sources."chokidar-3.4.3" // { + (sources."chokidar-3.5.1" // { dependencies = [ sources."braces-3.0.2" sources."fill-range-7.0.1" - sources."fsevents-2.1.3" sources."is-number-7.0.0" sources."to-regex-range-5.0.1" ]; @@ -86787,7 +86603,7 @@ in }) sources."copy-descriptor-0.1.1" sources."core-js-2.6.12" - (sources."core-js-compat-3.8.2" // { + (sources."core-js-compat-3.8.3" // { dependencies = [ sources."semver-7.0.0" ]; @@ -86838,7 +86654,7 @@ in sources."duplexer2-0.1.4" sources."duplexify-3.7.1" sources."ecc-jsbn-0.1.2" - sources."electron-to-chromium-1.3.634" + sources."electron-to-chromium-1.3.645" (sources."elliptic-6.5.3" // { dependencies = [ sources."bn.js-4.11.9" @@ -86847,7 +86663,7 @@ in sources."emoji-regex-7.0.3" sources."emojis-list-3.0.0" sources."end-of-stream-1.4.4" - (sources."enhanced-resolve-4.3.0" // { + (sources."enhanced-resolve-4.5.0" // { dependencies = [ sources."memory-fs-0.5.0" ]; @@ -86938,7 +86754,7 @@ in sources."gensync-1.0.0-beta.2" sources."get-assigned-identifiers-1.2.0" sources."get-caller-file-2.0.5" - sources."get-intrinsic-1.0.2" + sources."get-intrinsic-1.1.0" sources."get-package-type-0.1.0" sources."get-stream-4.1.0" sources."get-value-2.0.6" @@ -87148,7 +86964,7 @@ in ]; }) sources."node-modules-regexp-1.0.0" - sources."node-releases-1.1.69" + sources."node-releases-1.1.70" sources."normalize-package-data-2.5.0" sources."normalize-path-3.0.0" sources."npm-run-path-2.0.2" @@ -87182,7 +86998,7 @@ in sources."paredit.js-0.3.6" sources."parents-1.0.1" sources."parse-asn1-5.1.6" - sources."parse-json-5.1.0" + sources."parse-json-5.2.0" sources."parse-passwd-1.0.0" sources."pascalcase-0.1.1" sources."path-browserify-0.0.1" @@ -87243,7 +87059,7 @@ in sources."regex-not-1.0.2" sources."regexpu-core-4.7.1" sources."regjsgen-0.5.2" - (sources."regjsparser-0.6.4" // { + (sources."regjsparser-0.6.6" // { dependencies = [ sources."jsesc-0.5.0" ]; @@ -87462,7 +87278,7 @@ in ]; }) sources."upath-1.2.0" - sources."uri-js-4.4.0" + sources."uri-js-4.4.1" sources."urix-0.1.0" (sources."url-0.11.0" // { dependencies = [ @@ -87498,7 +87314,7 @@ in sources."readdirp-2.2.1" ]; }) - (sources."webpack-4.44.2" // { + (sources."webpack-4.46.0" // { dependencies = [ sources."acorn-6.4.2" sources."micromatch-3.1.10" @@ -87596,10 +87412,10 @@ in markdown-link-check = nodeEnv.buildNodePackage { name = "markdown-link-check"; packageName = "markdown-link-check"; - version = "3.8.5"; + version = "3.8.6"; src = fetchurl { - url = "https://registry.npmjs.org/markdown-link-check/-/markdown-link-check-3.8.5.tgz"; - sha512 = "raCr1YMrIqCUFrBTp90UHDsar/79TPgzlVHA7gSi1DnhM2/BC1lm49V+PGzBd1ZpIYwkmzQ6TYm0AfK7A82/Dw=="; + url = "https://registry.npmjs.org/markdown-link-check/-/markdown-link-check-3.8.6.tgz"; + sha512 = "GWzd54hNol2Zwf6fFEhUYqi9wbib1BMdcphvGCZqhinaAKhiILDaQkX7sn2u9GMoItmZ1jQK0f8wULOK/M+M4w=="; }; dependencies = [ sources."ajv-6.12.6" @@ -87645,7 +87461,7 @@ in sources."link-check-4.5.4" sources."lodash-4.17.20" sources."markdown-link-extractor-1.2.6" - sources."marked-1.2.7" + sources."marked-1.2.8" sources."mime-db-1.45.0" sources."mime-types-2.1.28" sources."ms-2.1.3" @@ -87663,7 +87479,7 @@ in sources."tough-cookie-2.5.0" sources."tunnel-agent-0.6.0" sources."tweetnacl-0.14.5" - sources."uri-js-4.4.0" + sources."uri-js-4.4.1" sources."uuid-3.4.0" sources."verror-1.10.0" ]; @@ -87949,7 +87765,7 @@ in sources."type-1.2.0" sources."type-check-0.3.2" sources."typedarray-0.0.6" - sources."uri-js-4.4.0" + sources."uri-js-4.4.1" sources."user-home-2.0.0" sources."util-deprecate-1.0.2" sources."uuid-3.4.0" @@ -88030,14 +87846,14 @@ in "@mermaid-js/mermaid-cli" = nodeEnv.buildNodePackage { name = "_at_mermaid-js_slash_mermaid-cli"; packageName = "@mermaid-js/mermaid-cli"; - version = "8.8.4-1"; + version = "8.9.0"; src = fetchurl { - url = "https://registry.npmjs.org/@mermaid-js/mermaid-cli/-/mermaid-cli-8.8.4-1.tgz"; - sha512 = "4rg3vEBnNMx7cVM4y/pRa6WAbKSoFvPZc4GGUkar4it/pH3PpktOq/wr99mOOu8L/uQEJHpRxed+eRpK75Rn/w=="; + url = "https://registry.npmjs.org/@mermaid-js/mermaid-cli/-/mermaid-cli-8.9.0.tgz"; + sha512 = "DF3nwcCi2ihM3OXIcCn4cNKUxSSU9UeyVuH9bNpgtymjpwAFU45jJXCK9RHtNhLtdjuXz+tcE/sYop3tnBGSuw=="; }; dependencies = [ sources."@braintree/sanitize-url-3.1.0" - sources."@types/node-14.14.20" + sources."@types/node-14.14.22" sources."@types/yauzl-2.9.1" sources."agent-base-5.1.1" sources."ansi-styles-4.3.0" @@ -88119,11 +87935,11 @@ in sources."ieee754-1.2.1" sources."inflight-1.0.6" sources."inherits-2.0.4" - sources."khroma-1.1.1" + sources."khroma-1.2.0" sources."locate-path-5.0.0" sources."lodash-4.17.20" sources."lower-case-1.1.4" - sources."mermaid-8.8.4" + sources."mermaid-8.9.0" sources."minify-4.1.3" sources."minimatch-3.0.4" sources."mkdirp-classic-0.5.3" @@ -88165,7 +87981,7 @@ in sources."through-2.3.8" sources."try-catch-2.0.1" sources."try-to-catch-1.1.1" - sources."uglify-js-3.12.4" + sources."uglify-js-3.12.5" sources."unbzip2-stream-1.4.3" sources."upper-case-1.1.3" sources."util-deprecate-1.0.2" @@ -88186,28 +88002,28 @@ in mirakurun = nodeEnv.buildNodePackage { name = "mirakurun"; packageName = "mirakurun"; - version = "3.4.1"; + version = "3.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/mirakurun/-/mirakurun-3.4.1.tgz"; - sha512 = "ymTdhda+4t6njz8xY8ySZS4nDEDEb+zXhmn1JzzxlribUqELcKZ6FwC8JF8HhHg3tcKeFAwVLzL6kHcaqL+okQ=="; + url = "https://registry.npmjs.org/mirakurun/-/mirakurun-3.5.0.tgz"; + sha512 = "j2ukrvANZQUreLl2grOQxPl0pbRSoJthYLqujdphZdwJyDwYjPqGOs+KrWwY26QbfqG2Toy06qFnYTaGx9txIg=="; }; dependencies = [ sources."@fluentui/date-time-utilities-7.9.0" sources."@fluentui/dom-utilities-1.1.1" sources."@fluentui/keyboard-key-0.2.12" - sources."@fluentui/react-7.155.3" - sources."@fluentui/react-focus-7.17.0" + sources."@fluentui/react-7.157.0" + sources."@fluentui/react-focus-7.17.1" sources."@fluentui/react-window-provider-1.0.1" - sources."@fluentui/theme-1.7.0" - sources."@microsoft/load-themed-styles-1.10.141" + sources."@fluentui/theme-1.7.1" + sources."@microsoft/load-themed-styles-1.10.146" sources."@sindresorhus/is-0.14.0" sources."@szmarczak/http-timer-1.1.2" - sources."@uifabric/foundation-7.9.20" - sources."@uifabric/icons-7.5.17" + sources."@uifabric/foundation-7.9.21" + sources."@uifabric/icons-7.5.18" sources."@uifabric/merge-styles-7.19.1" sources."@uifabric/react-hooks-7.13.9" sources."@uifabric/set-version-7.0.23" - sources."@uifabric/styling-7.16.18" + sources."@uifabric/styling-7.16.19" sources."@uifabric/utilities-7.33.2" sources."accepts-1.3.7" sources."ajv-6.12.6" @@ -88275,7 +88091,7 @@ in sources."eventemitter3-4.0.7" sources."express-4.17.1" sources."express-normalize-query-params-middleware-0.5.1" - sources."express-openapi-7.2.0" + sources."express-openapi-7.2.3" sources."external-editor-2.2.0" sources."fast-deep-equal-3.1.3" sources."fast-json-stable-stringify-2.1.0" @@ -88335,20 +88151,20 @@ in sources."node-fetch-1.6.3" sources."normalize-url-4.5.0" sources."object-assign-4.1.1" - sources."office-ui-fabric-react-7.155.3" + sources."office-ui-fabric-react-7.157.0" sources."on-finished-2.3.0" sources."on-headers-1.0.2" sources."once-1.4.0" sources."onetime-2.0.1" - sources."openapi-default-setter-7.0.1" - sources."openapi-framework-7.2.0" - sources."openapi-jsonschema-parameters-7.0.2" - sources."openapi-request-coercer-7.1.0" - sources."openapi-request-validator-7.2.0" - sources."openapi-response-validator-7.0.1" - sources."openapi-schema-validator-7.0.1" - sources."openapi-security-handler-7.0.1" - sources."openapi-types-7.0.1" + sources."openapi-default-setter-7.2.3" + sources."openapi-framework-7.2.3" + sources."openapi-jsonschema-parameters-7.2.3" + sources."openapi-request-coercer-7.2.3" + sources."openapi-request-validator-7.2.3" + sources."openapi-response-validator-7.2.3" + sources."openapi-schema-validator-7.2.3" + sources."openapi-security-handler-7.2.3" + sources."openapi-types-7.2.3" (sources."opencollective-1.0.3" // { dependencies = [ sources."minimist-1.2.0" @@ -88426,8 +88242,8 @@ in sources."strip-json-comments-2.0.1" sources."supports-color-2.0.0" sources."swagger-schema-official-2.0.0-bab6bed" - sources."swagger-ui-dist-3.38.0" - sources."tail-2.1.1" + sources."swagger-ui-dist-3.40.0" + sources."tail-2.2.0" sources."through-2.3.8" sources."tmp-0.0.33" sources."to-readable-stream-1.0.0" @@ -88436,7 +88252,7 @@ in sources."tslib-1.14.1" sources."type-is-1.6.18" sources."unpipe-1.0.0" - sources."uri-js-4.4.0" + sources."uri-js-4.4.1" sources."url-parse-lax-3.0.0" sources."util-deprecate-1.0.2" sources."utils-merge-1.0.1" @@ -88471,7 +88287,7 @@ in sources."anymatch-3.1.1" sources."argparse-1.0.10" sources."balanced-match-1.0.0" - sources."binary-extensions-2.1.0" + sources."binary-extensions-2.2.0" sources."brace-expansion-1.1.11" sources."braces-3.0.2" sources."browser-stdout-1.3.1" @@ -88629,14 +88445,14 @@ in sources."path-loader-1.0.10" sources."process-nextick-args-2.0.1" sources."punycode-2.1.1" - sources."qs-6.9.4" + sources."qs-6.9.6" sources."readable-stream-2.3.7" sources."safe-buffer-5.1.2" sources."slash-3.0.0" sources."sprintf-js-1.0.3" sources."string_decoder-1.1.1" sources."superagent-3.8.3" - sources."uri-js-4.4.0" + sources."uri-js-4.4.1" sources."util-deprecate-1.0.2" ]; buildInputs = globalBuildInputs; @@ -88717,10 +88533,10 @@ in netlify-cli = nodeEnv.buildNodePackage { name = "netlify-cli"; packageName = "netlify-cli"; - version = "2.70.0"; + version = "3.4.3"; src = fetchurl { - url = "https://registry.npmjs.org/netlify-cli/-/netlify-cli-2.70.0.tgz"; - sha512 = "VET5LUeZP2TX+xBXYQdiKkVyQfeW+HkeL7pRE2fGOi14fLE3BYSjjdmnCHDX83hgYniHIxKJBH/52zkyQ+m+2Q=="; + url = "https://registry.npmjs.org/netlify-cli/-/netlify-cli-3.4.3.tgz"; + sha512 = "UYeJwlANY5L4mV+SQy4bpFTvwCfiptMTqg4Udf1Ua5LgsV5jTl4IMxK1dVZ9iSMoj2lcKRhPuoNFaI+hTlKVJw=="; }; dependencies = [ sources."@babel/code-frame-7.12.11" @@ -88828,55 +88644,85 @@ in sources."@babel/template-7.12.7" sources."@babel/traverse-7.12.12" sources."@babel/types-7.12.12" - sources."@bugsnag/browser-7.5.4" - sources."@bugsnag/core-7.5.4" + sources."@bugsnag/browser-7.6.0" + sources."@bugsnag/core-7.6.0" sources."@bugsnag/cuid-3.0.0" - sources."@bugsnag/js-7.5.4" - sources."@bugsnag/node-7.5.4" + sources."@bugsnag/js-7.6.0" + sources."@bugsnag/node-7.6.0" sources."@bugsnag/safe-json-stringify-6.0.0" sources."@dabh/diagnostics-2.0.2" sources."@jest/types-24.9.0" sources."@mrmlnc/readdir-enhanced-2.2.1" - (sources."@netlify/build-8.0.1" // { - dependencies = [ - sources."@netlify/zip-it-and-ship-it-2.0.0" - sources."ansi-styles-4.3.0" - sources."chalk-3.0.0" - sources."resolve-2.0.0-next.2" - ]; - }) - sources."@netlify/cache-utils-1.0.6" - (sources."@netlify/config-2.4.3" // { + (sources."@netlify/build-8.3.1" // { dependencies = [ sources."ansi-styles-4.3.0" sources."chalk-3.0.0" - ]; - }) - (sources."@netlify/functions-utils-1.3.4" // { - dependencies = [ - sources."@netlify/zip-it-and-ship-it-2.0.0" + sources."execa-3.4.0" + sources."locate-path-5.0.0" sources."resolve-2.0.0-next.2" ]; }) + (sources."@netlify/cache-utils-1.0.6" // { + dependencies = [ + sources."locate-path-5.0.0" + ]; + }) + (sources."@netlify/config-3.0.4" // { + dependencies = [ + sources."ansi-styles-4.3.0" + sources."chalk-3.0.0" + sources."execa-3.4.0" + ]; + }) + (sources."@netlify/framework-info-2.1.1" // { + dependencies = [ + sources."locate-path-5.0.0" + ]; + }) + sources."@netlify/functions-utils-1.3.7" (sources."@netlify/git-utils-1.0.6" // { dependencies = [ sources."braces-3.0.2" + sources."execa-3.4.0" sources."fill-range-7.0.1" sources."is-number-7.0.0" sources."micromatch-4.0.2" sources."to-regex-range-5.0.1" ]; }) - sources."@netlify/open-api-1.0.0" - sources."@netlify/plugin-edge-handlers-1.10.0" - sources."@netlify/plugins-list-2.2.0" - sources."@netlify/run-utils-1.0.5" - sources."@netlify/traffic-mesh-agent-0.27.0" - sources."@netlify/traffic-mesh-agent-darwin-x64-0.27.0" - sources."@netlify/traffic-mesh-agent-linux-x64-0.27.0" - sources."@netlify/traffic-mesh-agent-win32-x64-0.27.0" - (sources."@netlify/zip-it-and-ship-it-1.7.0" // { + sources."@netlify/open-api-1.3.0" + (sources."@netlify/plugin-edge-handlers-1.11.2" // { dependencies = [ + sources."@nodelib/fs.stat-2.0.4" + sources."array-union-2.1.0" + sources."braces-3.0.2" + sources."del-6.0.0" + sources."dir-glob-3.0.1" + sources."fast-glob-3.2.5" + sources."fill-range-7.0.1" + sources."glob-parent-5.1.1" + sources."globby-11.0.2" + sources."ignore-5.1.8" + sources."is-number-7.0.0" + sources."micromatch-4.0.2" + sources."p-map-4.0.0" + sources."slash-3.0.0" + sources."to-regex-range-5.0.1" + ]; + }) + sources."@netlify/plugins-list-2.2.0" + (sources."@netlify/run-utils-1.0.5" // { + dependencies = [ + sources."execa-3.4.0" + ]; + }) + sources."@netlify/traffic-mesh-agent-0.27.10" + sources."@netlify/traffic-mesh-agent-darwin-x64-0.27.10" + sources."@netlify/traffic-mesh-agent-linux-x64-0.27.10" + sources."@netlify/traffic-mesh-agent-win32-x64-0.27.10" + (sources."@netlify/zip-it-and-ship-it-2.1.1" // { + dependencies = [ + sources."locate-path-5.0.0" sources."resolve-2.0.0-next.2" ]; }) @@ -88900,13 +88746,9 @@ in }) sources."color-convert-1.9.3" sources."color-name-1.1.3" - sources."has-flag-4.0.0" + sources."has-flag-3.0.0" sources."strip-ansi-5.2.0" - (sources."supports-color-5.5.0" // { - dependencies = [ - sources."has-flag-3.0.0" - ]; - }) + sources."supports-color-5.5.0" ]; }) (sources."@oclif/command-1.8.0" // { @@ -88928,22 +88770,23 @@ in sources."array-union-2.1.0" sources."braces-3.0.2" sources."dir-glob-3.0.1" - sources."fast-glob-3.2.4" + sources."fast-glob-3.2.5" sources."fill-range-7.0.1" sources."glob-parent-5.1.1" - sources."globby-11.0.1" + sources."globby-11.0.2" sources."ignore-5.1.8" sources."is-number-7.0.0" sources."micromatch-4.0.2" sources."slash-3.0.0" sources."to-regex-range-5.0.1" - sources."tslib-2.0.3" + sources."tslib-2.1.0" ]; }) (sources."@oclif/errors-1.3.4" // { dependencies = [ sources."ansi-styles-4.3.0" sources."clean-stack-3.0.1" + sources."escape-string-regexp-4.0.0" sources."wrap-ansi-7.0.0" ]; }) @@ -88980,6 +88823,7 @@ in sources."color-convert-1.9.3" sources."color-name-1.1.3" sources."fs-extra-7.0.1" + sources."has-flag-3.0.0" sources."indent-string-3.2.0" sources."is-wsl-1.1.0" sources."semver-5.7.1" @@ -88991,41 +88835,35 @@ in dependencies = [ sources."ansi-styles-4.3.0" sources."chalk-4.1.0" - sources."fs-extra-9.0.1" - (sources."jsonfile-6.1.0" // { - dependencies = [ - sources."universalify-2.0.0" - ]; - }) - sources."npm-run-path-4.0.1" - sources."path-key-3.1.1" - sources."tslib-2.0.3" - sources."universalify-1.0.0" + sources."fs-extra-9.1.0" + sources."jsonfile-6.1.0" + sources."tslib-2.1.0" + sources."universalify-2.0.0" ]; }) sources."@oclif/screen-1.0.4" - sources."@octokit/auth-token-2.4.4" - (sources."@octokit/endpoint-6.0.10" // { + sources."@octokit/auth-token-2.4.5" + (sources."@octokit/endpoint-6.0.11" // { dependencies = [ sources."is-plain-object-5.0.0" sources."universal-user-agent-6.0.0" ]; }) - sources."@octokit/openapi-types-2.0.1" + sources."@octokit/openapi-types-3.3.0" (sources."@octokit/plugin-paginate-rest-1.1.2" // { dependencies = [ sources."@octokit/types-2.16.2" ]; }) - sources."@octokit/plugin-request-log-1.0.2" + sources."@octokit/plugin-request-log-1.0.3" (sources."@octokit/plugin-rest-endpoint-methods-2.4.0" // { dependencies = [ sources."@octokit/types-2.16.2" ]; }) - (sources."@octokit/request-5.4.12" // { + (sources."@octokit/request-5.4.13" // { dependencies = [ - sources."@octokit/request-error-2.0.4" + sources."@octokit/request-error-2.0.5" sources."is-plain-object-5.0.0" sources."universal-user-agent-6.0.0" ]; @@ -89036,19 +88874,23 @@ in ]; }) sources."@octokit/rest-16.43.2" - sources."@octokit/types-6.1.2" + sources."@octokit/types-6.6.0" sources."@rollup/plugin-babel-5.2.2" - (sources."@rollup/plugin-commonjs-15.1.0" // { + (sources."@rollup/plugin-commonjs-17.0.0" // { dependencies = [ sources."estree-walker-2.0.2" ]; }) sources."@rollup/plugin-inject-4.0.2" sources."@rollup/plugin-json-4.1.0" - sources."@rollup/plugin-node-resolve-9.0.0" + sources."@rollup/plugin-node-resolve-11.1.0" sources."@rollup/pluginutils-3.1.0" sources."@sindresorhus/is-0.14.0" - sources."@sindresorhus/slugify-1.1.0" + (sources."@sindresorhus/slugify-1.1.0" // { + dependencies = [ + sources."escape-string-regexp-4.0.0" + ]; + }) (sources."@sindresorhus/transliterate-0.1.1" // { dependencies = [ sources."escape-string-regexp-2.0.0" @@ -89061,14 +88903,14 @@ in sources."@types/glob-7.1.3" sources."@types/got-8.3.5" sources."@types/hast-2.3.1" - sources."@types/http-proxy-1.17.4" + sources."@types/http-proxy-1.17.5" sources."@types/istanbul-lib-coverage-2.0.3" sources."@types/istanbul-lib-report-3.0.0" sources."@types/istanbul-reports-1.1.2" sources."@types/minimatch-3.0.3" sources."@types/mkdirp-0.5.2" - sources."@types/node-14.14.20" - sources."@types/node-fetch-2.5.7" + sources."@types/node-14.14.22" + sources."@types/node-fetch-2.5.8" sources."@types/normalize-package-data-2.4.0" sources."@types/parse5-5.0.3" sources."@types/resolve-1.17.1" @@ -89078,14 +88920,10 @@ in sources."@types/yargs-parser-20.2.0" sources."@typescript-eslint/typescript-estree-2.34.0" sources."@ungap/from-entries-0.2.1" - (sources."abstract-leveldown-0.12.4" // { - dependencies = [ - sources."xtend-3.0.0" - ]; - }) sources."accepts-1.3.7" sources."agent-base-6.0.2" sources."aggregate-error-3.1.0" + sources."ajv-7.0.3" (sources."ansi-align-3.0.0" // { dependencies = [ sources."emoji-regex-7.0.3" @@ -89096,7 +88934,7 @@ in }) sources."ansi-escapes-3.2.0" sources."ansi-regex-4.1.0" - sources."ansi-styles-5.0.0" + sources."ansi-styles-5.1.0" sources."ansicolors-0.3.2" sources."anymatch-3.1.1" (sources."archive-type-4.0.0" // { @@ -89122,11 +88960,6 @@ in sources."array-unique-0.3.2" sources."arrify-2.0.1" sources."ascii-table-0.0.9" - (sources."asn1.js-5.4.1" // { - dependencies = [ - sources."bn.js-4.11.9" - ]; - }) sources."assign-symbols-1.0.0" sources."ast-module-types-2.7.1" sources."async-3.2.0" @@ -89134,7 +88967,7 @@ in sources."at-least-node-1.0.0" sources."atob-2.1.2" sources."atob-lite-2.0.0" - (sources."aws-sdk-2.821.0" // { + (sources."aws-sdk-2.831.0" // { dependencies = [ sources."buffer-4.9.2" sources."ieee754-1.1.13" @@ -89152,9 +88985,8 @@ in }) sources."base64-js-1.5.1" sources."before-after-hook-2.1.0" - sources."binary-extensions-2.1.0" + sources."binary-extensions-2.2.0" sources."bl-4.0.3" - sources."bn.js-5.1.3" (sources."body-parser-1.19.0" // { dependencies = [ sources."debug-2.6.9" @@ -89173,14 +89005,7 @@ in sources."extend-shallow-2.0.1" ]; }) - sources."brorand-1.1.0" - sources."browserify-aes-1.2.0" - sources."browserify-cipher-1.0.1" - sources."browserify-des-1.0.2" - sources."browserify-fs-1.0.0" - sources."browserify-rsa-4.1.0" - sources."browserify-sign-4.2.1" - sources."browserslist-4.16.0" + sources."browserslist-4.16.1" sources."btoa-lite-1.0.0" sources."buffer-5.7.1" sources."buffer-alloc-1.2.0" @@ -89189,7 +89014,6 @@ in sources."buffer-es6-4.9.3" sources."buffer-fill-1.0.0" sources."buffer-from-1.1.1" - sources."buffer-xor-1.0.3" sources."builtin-modules-3.2.0" sources."builtins-1.0.3" sources."byline-5.0.0" @@ -89201,10 +89025,10 @@ in ]; }) sources."cachedir-2.3.0" - sources."call-bind-1.0.0" + sources."call-bind-1.0.2" sources."call-me-maybe-1.0.1" sources."camelcase-5.3.1" - sources."caniuse-lite-1.0.30001173" + sources."caniuse-lite-1.0.30001180" sources."cardinal-2.1.1" sources."caw-2.0.1" sources."ccount-1.1.0" @@ -89213,24 +89037,24 @@ in sources."ansi-styles-3.2.1" sources."color-convert-1.9.3" sources."color-name-1.1.3" - sources."escape-string-regexp-1.0.5" + sources."has-flag-3.0.0" sources."supports-color-5.5.0" ]; }) sources."character-entities-html4-1.1.4" sources."character-entities-legacy-1.1.4" sources."chardet-0.7.0" - (sources."chokidar-3.4.3" // { + (sources."chokidar-3.5.1" // { dependencies = [ sources."braces-3.0.2" sources."fill-range-7.0.1" + sources."fsevents-2.3.1" sources."glob-parent-5.1.1" sources."is-number-7.0.0" sources."to-regex-range-5.0.1" ]; }) sources."ci-info-2.0.0" - sources."cipher-base-1.0.4" (sources."class-utils-0.3.6" // { dependencies = [ sources."define-property-0.2.5" @@ -89261,17 +89085,17 @@ in sources."argparse-1.0.10" sources."chalk-4.1.0" sources."clean-stack-3.0.1" + sources."escape-string-regexp-4.0.0" sources."extract-stack-2.0.0" - sources."has-flag-4.0.0" sources."js-yaml-3.14.1" sources."supports-hyperlinks-2.1.0" - sources."tslib-2.0.3" + sources."tslib-2.1.0" sources."type-fest-0.11.0" ]; }) sources."cli-width-2.2.1" sources."cliui-6.0.0" - sources."clone-0.1.19" + sources."clone-1.0.4" sources."clone-response-1.0.2" sources."collection-visit-1.0.0" (sources."color-3.0.0" // { @@ -89299,12 +89123,6 @@ in ]; }) sources."concat-map-0.0.1" - (sources."concat-stream-1.6.2" // { - dependencies = [ - sources."readable-stream-2.3.7" - sources."safe-buffer-5.1.2" - ]; - }) (sources."concordance-4.0.0" // { dependencies = [ sources."semver-5.7.1" @@ -89334,7 +89152,7 @@ in sources."safe-buffer-5.1.2" ]; }) - (sources."core-js-compat-3.8.2" // { + (sources."core-js-compat-3.8.3" // { dependencies = [ sources."semver-7.0.0" ]; @@ -89348,20 +89166,7 @@ in }) sources."crc-3.8.0" sources."crc32-stream-3.0.1" - (sources."create-ecdh-4.0.4" // { - dependencies = [ - sources."bn.js-4.11.9" - ]; - }) - sources."create-hash-1.2.0" - sources."create-hmac-1.1.7" - (sources."cross-spawn-6.0.5" // { - dependencies = [ - sources."semver-5.7.1" - sources."which-1.3.1" - ]; - }) - sources."crypto-browserify-3.12.0" + sources."cross-spawn-7.0.3" sources."crypto-random-string-2.0.0" sources."cyclist-1.0.1" sources."date-time-2.1.0" @@ -89387,6 +89192,7 @@ in dependencies = [ sources."bl-1.2.3" sources."file-type-5.2.0" + sources."is-stream-1.1.0" sources."readable-stream-2.3.7" sources."safe-buffer-5.1.2" sources."tar-stream-1.6.2" @@ -89395,11 +89201,13 @@ in (sources."decompress-tarbz2-4.1.1" // { dependencies = [ sources."file-type-6.2.0" + sources."is-stream-1.1.0" ]; }) (sources."decompress-targz-4.1.1" // { dependencies = [ sources."file-type-5.2.0" + sources."is-stream-1.1.0" ]; }) (sources."decompress-unzip-4.0.1" // { @@ -89412,13 +89220,8 @@ in sources."deep-extend-0.6.0" sources."deep-is-0.1.3" sources."deepmerge-4.2.2" - (sources."defaults-1.0.3" // { - dependencies = [ - sources."clone-1.0.4" - ]; - }) + sources."defaults-1.0.3" sources."defer-to-connect-1.1.3" - sources."deferred-leveldown-0.2.0" sources."define-properties-1.1.3" sources."define-property-2.0.2" (sources."del-5.1.0" // { @@ -89429,7 +89232,6 @@ in sources."delayed-stream-1.0.0" sources."depd-1.1.2" sources."deprecation-2.3.1" - sources."des.js-1.0.1" sources."destroy-1.0.4" sources."detective-amd-3.0.1" sources."detective-cjs-3.1.1" @@ -89440,11 +89242,6 @@ in sources."detective-scss-2.0.1" sources."detective-stylus-1.0.0" sources."detective-typescript-5.8.0" - (sources."diffie-hellman-5.0.3" // { - dependencies = [ - sources."bn.js-4.11.9" - ]; - }) (sources."dir-glob-2.2.2" // { dependencies = [ sources."path-type-3.0.0" @@ -89467,6 +89264,7 @@ in sources."normalize-url-2.0.1" sources."p-cancelable-0.4.1" sources."p-event-2.3.1" + sources."p-finally-1.0.0" sources."p-timeout-2.0.1" sources."pify-3.0.0" sources."sort-keys-2.0.0" @@ -89474,25 +89272,20 @@ in }) sources."duplexer3-0.1.4" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.3.634" + sources."electron-to-chromium-1.3.645" sources."elf-cam-0.1.1" - (sources."elliptic-6.5.3" // { - dependencies = [ - sources."bn.js-4.11.9" - ]; - }) sources."emoji-regex-8.0.0" sources."enabled-2.0.0" sources."encodeurl-1.0.2" sources."end-of-stream-1.4.4" + sources."env-paths-2.2.0" sources."envinfo-7.7.3" - sources."errno-0.1.8" sources."error-ex-1.3.2" sources."error-stack-parser-2.0.6" sources."escalade-3.1.1" sources."escape-goat-2.1.1" sources."escape-html-1.0.3" - sources."escape-string-regexp-4.0.0" + sources."escape-string-regexp-1.0.5" (sources."escodegen-1.14.3" // { dependencies = [ sources."source-map-0.6.1" @@ -89506,16 +89299,10 @@ in sources."etag-1.8.1" sources."eventemitter3-4.0.7" sources."events-1.1.1" - sources."evp_bytestokey-1.0.3" - (sources."execa-3.4.0" // { + (sources."execa-5.0.0" // { dependencies = [ - sources."cross-spawn-7.0.3" - sources."is-stream-2.0.0" - sources."npm-run-path-4.0.1" - sources."p-finally-2.0.1" - sources."path-key-3.1.1" - sources."shebang-command-2.0.0" - sources."shebang-regex-3.0.0" + sources."get-stream-6.0.0" + sources."human-signals-2.1.0" ]; }) (sources."expand-brackets-2.1.4" // { @@ -89565,6 +89352,7 @@ in ]; }) sources."extract-stack-1.0.0" + sources."fast-deep-equal-3.1.3" sources."fast-diff-1.2.0" sources."fast-equals-1.6.3" sources."fast-glob-2.2.7" @@ -89574,11 +89362,7 @@ in sources."fastq-1.10.0" sources."fd-slicer-1.1.0" sources."fecha-4.2.0" - (sources."figures-3.2.0" // { - dependencies = [ - sources."escape-string-regexp-1.0.5" - ]; - }) + sources."figures-3.2.0" sources."file-size-0.0.5" sources."file-type-8.1.0" sources."filename-reserved-regex-2.0.0" @@ -89594,14 +89378,17 @@ in sources."debug-2.6.9" ]; }) - sources."find-up-4.1.0" + (sources."find-up-4.1.0" // { + dependencies = [ + sources."locate-path-5.0.0" + ]; + }) sources."flatten-1.0.3" sources."flush-write-stream-2.0.0" sources."fn.name-1.1.0" sources."folder-walker-3.2.0" - sources."follow-redirects-1.13.1" + sources."follow-redirects-1.13.2" sources."for-in-1.0.2" - sources."foreach-2.0.5" sources."form-data-3.0.0" sources."forwarded-0.1.2" sources."fragment-cache-0.2.1" @@ -89619,17 +89406,10 @@ in sources."fsevents-2.1.3" sources."function-bind-1.1.1" sources."fuzzy-0.1.3" - (sources."fwd-stream-1.0.4" // { - dependencies = [ - sources."isarray-0.0.1" - sources."readable-stream-1.0.34" - sources."string_decoder-0.10.31" - ]; - }) sources."gensync-1.0.0-beta.2" sources."get-amd-module-type-3.0.0" sources."get-caller-file-2.0.5" - sources."get-intrinsic-1.0.2" + sources."get-intrinsic-1.1.0" sources."get-port-5.1.1" sources."get-proxy-2.1.0" sources."get-stream-5.2.0" @@ -89661,7 +89441,7 @@ in sources."array-union-2.1.0" sources."braces-3.0.2" sources."dir-glob-3.0.1" - sources."fast-glob-3.2.4" + sources."fast-glob-3.2.5" sources."fill-range-7.0.1" sources."glob-parent-5.1.1" sources."ignore-5.1.8" @@ -89685,7 +89465,7 @@ in sources."ansi-regex-0.2.1" ]; }) - sources."has-flag-3.0.0" + sources."has-flag-4.0.0" (sources."has-glob-1.0.0" // { dependencies = [ sources."is-glob-3.1.0" @@ -89701,26 +89481,18 @@ in ]; }) sources."has-yarn-2.1.0" - sources."hash-base-3.1.0" - sources."hash.js-1.1.7" - (sources."hasha-5.2.2" // { - dependencies = [ - sources."is-stream-2.0.0" - ]; - }) + sources."hasha-5.2.2" sources."hast-util-from-parse5-6.0.1" sources."hast-util-is-element-1.1.0" sources."hast-util-parse-selector-2.2.5" sources."hast-util-to-html-7.1.2" sources."hast-util-whitespace-1.0.4" sources."hastscript-6.0.0" - sources."hmac-drbg-1.0.1" sources."hosted-git-info-2.8.8" sources."html-void-elements-1.0.5" sources."http-cache-semantics-4.1.0" (sources."http-call-5.3.0" // { dependencies = [ - sources."is-stream-2.0.0" sources."parse-json-4.0.0" ]; }) @@ -89743,21 +89515,18 @@ in sources."human-signals-1.1.1" sources."hyperlinker-1.0.0" sources."iconv-lite-0.4.24" - sources."idb-wrapper-1.7.2" sources."ieee754-1.2.1" sources."ignore-4.0.6" sources."import-lazy-2.1.0" sources."imurmurhash-0.1.4" sources."indent-string-4.0.0" sources."indexes-of-1.0.1" - sources."indexof-0.0.1" sources."inflight-1.0.6" sources."inherits-2.0.4" sources."ini-1.3.8" (sources."inquirer-6.5.2" // { dependencies = [ sources."ansi-regex-3.0.0" - sources."escape-string-regexp-1.0.5" sources."figures-2.0.0" sources."is-fullwidth-code-point-2.0.0" (sources."string-width-2.1.1" // { @@ -89782,7 +89551,6 @@ in }) sources."into-stream-3.1.0" sources."ipaddr.js-1.9.1" - sources."is-0.2.7" sources."is-accessor-descriptor-1.0.0" sources."is-arrayish-0.2.1" sources."is-binary-path-2.1.0" @@ -89807,29 +89575,24 @@ in ]; }) sources."is-obj-2.0.0" - sources."is-object-0.1.2" + sources."is-object-1.0.2" sources."is-path-cwd-2.2.0" sources."is-path-inside-3.0.2" sources."is-plain-obj-2.1.0" sources."is-plain-object-2.0.4" sources."is-reference-1.2.1" sources."is-retry-allowed-1.2.0" - sources."is-stream-1.1.0" + sources."is-stream-2.0.0" sources."is-typedarray-1.0.0" sources."is-url-1.2.4" sources."is-windows-1.0.2" sources."is-wsl-2.2.0" sources."is-yarn-global-0.3.0" sources."isarray-1.0.0" - sources."isbuffer-0.0.0" sources."iserror-0.0.2" sources."isexe-2.0.0" sources."isobject-3.0.1" - (sources."isurl-1.0.0" // { - dependencies = [ - sources."is-object-1.0.2" - ]; - }) + sources."isurl-1.0.0" sources."jest-get-type-24.9.0" sources."jest-validate-24.9.0" sources."jest-worker-26.6.2" @@ -89841,11 +89604,16 @@ in sources."json-buffer-3.0.0" sources."json-parse-better-errors-1.0.2" sources."json-parse-even-better-errors-2.3.1" + sources."json-schema-traverse-1.0.0" sources."json5-2.1.3" sources."jsonfile-4.0.0" sources."junk-3.1.0" sources."jwt-decode-3.1.2" - sources."keep-func-props-3.0.1" + (sources."keep-func-props-3.0.1" // { + dependencies = [ + sources."mimic-fn-3.1.0" + ]; + }) sources."keyv-3.1.0" sources."kind-of-6.0.3" sources."kuler-2.0.0" @@ -89861,48 +89629,6 @@ in sources."safe-buffer-5.1.2" ]; }) - (sources."level-blobs-0.1.7" // { - dependencies = [ - sources."isarray-0.0.1" - sources."readable-stream-1.1.14" - sources."string_decoder-0.10.31" - ]; - }) - (sources."level-filesystem-1.2.0" // { - dependencies = [ - sources."xtend-2.2.0" - ]; - }) - sources."level-fix-range-2.0.0" - sources."level-hooks-4.5.0" - (sources."level-js-2.2.4" // { - dependencies = [ - sources."object-keys-0.4.0" - sources."xtend-2.1.2" - ]; - }) - (sources."level-peek-1.0.6" // { - dependencies = [ - sources."level-fix-range-1.0.2" - ]; - }) - (sources."level-sublevel-5.2.3" // { - dependencies = [ - sources."object-keys-0.2.0" - sources."xtend-2.0.6" - ]; - }) - (sources."levelup-0.18.6" // { - dependencies = [ - sources."bl-0.8.2" - sources."isarray-0.0.1" - sources."prr-0.0.0" - sources."readable-stream-1.0.34" - sources."semver-2.3.2" - sources."string_decoder-0.10.31" - sources."xtend-3.0.0" - ]; - }) sources."leven-3.1.0" sources."levn-0.3.0" sources."lines-and-columns-1.1.6" @@ -89912,7 +89638,12 @@ in sources."type-fest-0.3.1" ]; }) - sources."locate-path-5.0.0" + (sources."locate-path-6.0.0" // { + dependencies = [ + sources."p-limit-3.1.0" + sources."p-locate-5.0.0" + ]; + }) sources."lodash-4.17.20" sources."lodash._reinterpolate-3.0.0" sources."lodash.camelcase-4.3.0" @@ -89947,7 +89678,6 @@ in }) sources."lowercase-keys-1.0.1" sources."lru-cache-6.0.0" - sources."ltgt-2.2.1" sources."macos-release-2.4.1" sources."magic-string-0.25.7" (sources."make-dir-3.1.0" // { @@ -89966,7 +89696,6 @@ in }) sources."md5-hex-2.0.0" sources."md5-o-matic-0.1.1" - sources."md5.js-1.3.5" sources."media-typer-0.3.0" sources."memoize-one-5.1.1" sources."merge-descriptors-1.0.1" @@ -89976,18 +89705,11 @@ in sources."micro-api-client-3.3.0" sources."micro-memoize-2.1.2" sources."micromatch-3.1.10" - (sources."miller-rabin-4.0.1" // { - dependencies = [ - sources."bn.js-4.11.9" - ]; - }) sources."mime-1.6.0" sources."mime-db-1.45.0" sources."mime-types-2.1.28" - sources."mimic-fn-3.1.0" + sources."mimic-fn-2.1.0" sources."mimic-response-1.0.1" - sources."minimalistic-assert-1.0.1" - sources."minimalistic-crypto-utils-1.0.1" sources."minimatch-3.0.4" sources."minimist-1.2.5" (sources."mixin-deep-1.3.2" // { @@ -90021,30 +89743,17 @@ in sources."natural-orderby-2.0.3" sources."negotiator-0.6.2" sources."nested-error-stacks-2.1.0" - (sources."netlify-6.0.9" // { + (sources."netlify-6.1.3" // { dependencies = [ - sources."@netlify/zip-it-and-ship-it-2.0.0" - sources."qs-6.9.4" - sources."resolve-2.0.0-next.2" + sources."qs-6.9.6" ]; }) sources."netlify-plugin-deploy-preview-commenting-0.0.1-alpha.16" - (sources."netlify-redirect-parser-2.5.0" // { - dependencies = [ - sources."@netlify/config-0.11.11" - sources."@netlify/open-api-0.18.1" - sources."ansi-styles-4.3.0" - sources."argparse-1.0.10" - sources."chalk-3.0.0" - sources."js-yaml-3.14.1" - sources."netlify-4.9.0" - sources."qs-6.9.4" - ]; - }) + sources."netlify-redirect-parser-3.0.2" sources."netlify-redirector-0.2.1" sources."nice-try-1.0.5" sources."node-fetch-2.6.1" - sources."node-releases-1.1.69" + sources."node-releases-1.1.70" sources."node-source-walk-4.2.0" sources."noop2-2.0.0" (sources."normalize-package-data-2.5.0" // { @@ -90059,7 +89768,7 @@ in sources."pify-3.0.0" ]; }) - sources."npm-run-path-2.0.2" + sources."npm-run-path-4.0.1" sources."object-assign-4.1.1" (sources."object-copy-0.1.0" // { dependencies = [ @@ -90079,19 +89788,14 @@ in sources."object-visit-1.0.1" sources."object.assign-4.1.2" sources."object.pick-1.3.0" - sources."octal-1.0.0" sources."octokit-pagination-methods-1.1.0" sources."omit.js-2.0.2" sources."on-finished-2.3.0" sources."on-headers-1.0.2" sources."once-1.4.0" sources."one-time-1.0.0" - (sources."onetime-5.1.2" // { - dependencies = [ - sources."mimic-fn-2.1.0" - ]; - }) - sources."open-7.3.0" + sources."onetime-5.1.2" + sources."open-7.3.1" (sources."opn-5.5.0" // { dependencies = [ sources."is-wsl-1.1.0" @@ -90121,13 +89825,17 @@ in sources."p-map-2.1.0" ]; }) - sources."p-finally-1.0.0" + sources."p-finally-2.0.1" sources."p-is-promise-1.1.0" sources."p-limit-2.3.0" sources."p-locate-4.1.0" sources."p-map-3.0.0" sources."p-reduce-2.1.0" - sources."p-timeout-3.2.0" + (sources."p-timeout-3.2.0" // { + dependencies = [ + sources."p-finally-1.0.0" + ]; + }) sources."p-try-2.2.0" sources."p-wait-for-3.2.0" (sources."package-json-6.5.0" // { @@ -90141,24 +89849,31 @@ in sources."safe-buffer-5.1.2" ]; }) - sources."parse-asn1-5.1.6" sources."parse-github-repo-url-1.4.1" sources."parse-github-url-1.0.2" sources."parse-gitignore-1.0.1" - sources."parse-json-5.1.0" + sources."parse-json-5.2.0" sources."parse-ms-2.1.0" sources."parse5-6.0.1" sources."parseurl-1.3.3" sources."pascalcase-0.1.1" - sources."password-prompt-1.1.2" + (sources."password-prompt-1.1.2" // { + dependencies = [ + sources."cross-spawn-6.0.5" + sources."path-key-2.0.1" + sources."semver-5.7.1" + sources."shebang-command-1.2.0" + sources."shebang-regex-1.0.0" + sources."which-1.3.1" + ]; + }) sources."path-dirname-1.0.2" sources."path-exists-4.0.0" sources."path-is-absolute-1.0.1" - sources."path-key-2.0.1" + sources."path-key-3.1.1" sources."path-parse-1.0.6" sources."path-to-regexp-0.1.7" sources."path-type-4.0.0" - sources."pbkdf2-3.1.1" sources."pend-1.2.0" sources."picomatch-2.2.2" sources."pify-4.0.1" @@ -90168,6 +89883,7 @@ in sources."posix-character-classes-0.1.1" (sources."postcss-7.0.35" // { dependencies = [ + sources."has-flag-3.0.0" sources."source-map-0.6.1" sources."supports-color-6.1.0" ]; @@ -90191,14 +89907,8 @@ in sources."property-information-5.6.0" sources."proto-list-1.2.4" sources."proxy-addr-2.0.6" - sources."prr-1.0.1" - (sources."public-encrypt-4.0.3" // { - dependencies = [ - sources."bn.js-4.11.9" - ]; - }) sources."pump-3.0.0" - sources."punycode-1.3.2" + sources."punycode-2.1.1" sources."pupa-2.1.1" sources."qs-6.7.0" sources."query-string-5.1.1" @@ -90206,7 +89916,6 @@ in sources."random-bytes-1.0.0" sources."random-item-3.1.0" sources."randombytes-2.1.0" - sources."randomfill-1.0.4" sources."range-parser-1.2.1" (sources."raw-body-2.4.1" // { dependencies = [ @@ -90233,7 +89942,7 @@ in sources."registry-auth-token-4.2.1" sources."registry-url-5.1.0" sources."regjsgen-0.5.2" - (sources."regjsparser-0.6.4" // { + (sources."regjsparser-0.6.6" // { dependencies = [ sources."jsesc-0.5.0" ]; @@ -90244,6 +89953,7 @@ in sources."repeat-element-1.1.3" sources."repeat-string-1.6.1" sources."require-directory-2.1.1" + sources."require-from-string-2.0.2" sources."require-main-filename-2.0.0" sources."require-package-name-2.0.1" sources."requires-port-1.0.0" @@ -90259,10 +89969,19 @@ in sources."ret-0.1.15" sources."reusify-1.0.4" sources."rimraf-3.0.2" - sources."ripemd160-2.0.2" - sources."rollup-2.36.0" - sources."rollup-plugin-node-builtins-2.1.2" + sources."rollup-2.38.0" + (sources."rollup-plugin-inject-3.0.2" // { + dependencies = [ + sources."estree-walker-0.6.1" + ]; + }) + sources."rollup-plugin-node-polyfills-0.2.1" sources."rollup-plugin-terser-7.0.2" + (sources."rollup-pluginutils-2.8.2" // { + dependencies = [ + sources."estree-walker-0.6.1" + ]; + }) sources."run-async-2.4.1" sources."run-parallel-1.1.10" sources."rxjs-6.6.3" @@ -90298,9 +90017,8 @@ in ]; }) sources."setprototypeof-1.1.1" - sources."sha.js-2.4.11" - sources."shebang-command-1.2.0" - sources."shebang-regex-1.0.0" + sources."shebang-command-2.0.0" + sources."shebang-regex-3.0.0" sources."signal-exit-3.0.3" (sources."simple-swizzle-0.2.2" // { dependencies = [ @@ -90385,7 +90103,6 @@ in sources."ansi-regex-0.2.1" sources."ansi-styles-1.1.0" sources."chalk-0.5.1" - sources."escape-string-regexp-1.0.5" sources."strip-ansi-0.3.0" sources."supports-color-0.2.0" ]; @@ -90393,7 +90110,6 @@ in sources."statsd-client-0.4.5" sources."statuses-1.5.0" sources."strict-uri-encode-1.1.0" - sources."string-range-1.2.2" sources."string-width-4.2.0" (sources."string_decoder-1.1.1" // { dependencies = [ @@ -90412,16 +90128,8 @@ in sources."strip-eof-1.0.0" sources."strip-final-newline-2.0.0" sources."strip-json-comments-2.0.1" - (sources."strip-outer-1.0.1" // { - dependencies = [ - sources."escape-string-regexp-1.0.5" - ]; - }) - (sources."supports-color-7.2.0" // { - dependencies = [ - sources."has-flag-4.0.0" - ]; - }) + sources."strip-outer-1.0.1" + sources."supports-color-7.2.0" (sources."supports-hyperlinks-1.0.1" // { dependencies = [ sources."has-flag-2.0.0" @@ -90475,21 +90183,16 @@ in sources."toml-3.0.0" sources."tomlify-j0.4-3.0.0" sources."treeify-1.1.0" - (sources."trim-repeated-1.0.0" // { - dependencies = [ - sources."escape-string-regexp-1.0.5" - ]; - }) + sources."trim-repeated-1.0.0" sources."triple-beam-1.3.0" sources."trough-1.0.5" sources."tslib-1.14.1" - sources."tsutils-3.18.0" + sources."tsutils-3.20.0" sources."tunnel-agent-0.6.0" sources."type-check-0.3.2" sources."type-fest-0.8.1" sources."type-is-1.6.18" - sources."typedarray-0.0.6" - sources."typedarray-to-buffer-1.0.4" + sources."typedarray-to-buffer-3.1.5" sources."typescript-3.9.7" sources."uid-safe-2.1.5" sources."unbzip2-stream-1.4.3" @@ -90533,8 +90236,13 @@ in sources."chalk-3.0.0" ]; }) + sources."uri-js-4.4.1" sources."urix-0.1.0" - sources."url-0.10.3" + (sources."url-0.10.3" // { + dependencies = [ + sources."punycode-1.3.2" + ]; + }) sources."url-parse-lax-3.0.0" sources."url-to-options-1.0.1" sources."use-3.1.1" @@ -90564,15 +90272,20 @@ in sources."widest-line-3.1.0" (sources."windows-release-3.3.3" // { dependencies = [ + sources."cross-spawn-6.0.5" sources."execa-1.0.0" sources."get-stream-4.1.0" + sources."is-stream-1.1.0" + sources."npm-run-path-2.0.2" + sources."p-finally-1.0.0" + sources."path-key-2.0.1" + sources."semver-5.7.1" + sources."shebang-command-1.2.0" + sources."shebang-regex-1.0.0" + sources."which-1.3.1" ]; }) - (sources."winston-3.3.3" // { - dependencies = [ - sources."is-stream-2.0.0" - ]; - }) + sources."winston-3.3.3" (sources."winston-transport-4.4.0" // { dependencies = [ sources."readable-stream-2.3.7" @@ -90586,11 +90299,7 @@ in ]; }) sources."wrappy-1.0.2" - (sources."write-file-atomic-3.0.3" // { - dependencies = [ - sources."typedarray-to-buffer-3.1.5" - ]; - }) + sources."write-file-atomic-3.0.3" sources."xdg-basedir-4.0.0" sources."xml2js-0.4.19" sources."xmlbuilder-9.0.7" @@ -90601,6 +90310,7 @@ in sources."yargs-parser-18.1.3" sources."yarn-1.22.10" sources."yauzl-2.10.0" + sources."yocto-queue-0.1.0" sources."zip-stream-3.0.1" ]; buildInputs = globalBuildInputs; @@ -90728,11 +90438,11 @@ in sources."string-width-1.0.2" sources."string_decoder-1.1.1" sources."strip-ansi-3.0.1" - sources."tar-6.0.5" + sources."tar-6.1.0" sources."tough-cookie-2.5.0" sources."tunnel-agent-0.6.0" sources."tweetnacl-0.14.5" - sources."uri-js-4.4.0" + sources."uri-js-4.4.1" sources."util-deprecate-1.0.2" sources."uuid-3.4.0" sources."verror-1.10.0" @@ -91109,7 +90819,7 @@ in sources."minizlib-1.3.3" sources."mkdirp-0.5.5" sources."ms-2.1.3" - sources."needle-2.5.2" + sources."needle-2.6.0" sources."nopt-4.0.3" sources."npm-bundled-1.1.1" sources."npm-normalize-package-bin-1.0.1" @@ -91155,16 +90865,16 @@ in node-red = nodeEnv.buildNodePackage { name = "node-red"; packageName = "node-red"; - version = "1.2.6"; + version = "1.2.7"; src = fetchurl { - url = "https://registry.npmjs.org/node-red/-/node-red-1.2.6.tgz"; - sha512 = "Sy6ZNRFxN4KwT/eGFBt9L6aMXK0XGRwBNlhoFMPObSujLJVMUKHxirHAMst5CvUYigijFXM6ILRC6p/XqYHZRg=="; + url = "https://registry.npmjs.org/node-red/-/node-red-1.2.7.tgz"; + sha512 = "4ZE+Kh60pXQD/o7prg5Rdl6mlubP1wDZnKdV6TumKBdiqmDwkav5T125ZHYcs/zWMoXe/AUqHS4JDkIsg0OEIA=="; }; dependencies = [ sources."@babel/runtime-7.12.5" - sources."@node-red/editor-api-1.2.6" - sources."@node-red/editor-client-1.2.6" - (sources."@node-red/nodes-1.2.6" // { + sources."@node-red/editor-api-1.2.7" + sources."@node-red/editor-client-1.2.7" + (sources."@node-red/nodes-1.2.7" // { dependencies = [ sources."cookie-0.4.1" sources."http-errors-1.7.3" @@ -91178,9 +90888,9 @@ in }) ]; }) - sources."@node-red/registry-1.2.6" - sources."@node-red/runtime-1.2.6" - sources."@node-red/util-1.2.6" + sources."@node-red/registry-1.2.7" + sources."@node-red/runtime-1.2.7" + sources."@node-red/util-1.2.7" sources."abbrev-1.1.1" sources."accepts-1.3.7" (sources."agent-base-6.0.2" // { @@ -91208,11 +90918,11 @@ in sources."assert-plus-1.0.0" sources."async-0.1.22" sources."async-limiter-1.0.1" - sources."async-mutex-0.2.4" + sources."async-mutex-0.2.6" sources."asynckit-0.4.0" sources."aws-sign2-0.7.0" sources."aws4-1.11.0" - sources."axios-0.19.2" + sources."axios-0.21.1" sources."balanced-match-1.0.0" sources."base64-js-1.5.1" (sources."basic-auth-2.0.1" // { @@ -91291,7 +91001,7 @@ in sources."deep-extend-0.6.0" sources."delayed-stream-1.0.0" sources."delegates-1.0.0" - sources."denque-1.4.1" + sources."denque-1.5.0" sources."depd-1.1.2" sources."destroy-1.0.4" sources."detect-libc-1.0.3" @@ -91333,11 +91043,7 @@ in sources."fast-deep-equal-3.1.3" sources."fast-json-stable-stringify-2.1.0" sources."finalhandler-1.1.2" - (sources."follow-redirects-1.5.10" // { - dependencies = [ - sources."debug-3.1.0" - ]; - }) + sources."follow-redirects-1.13.2" sources."forever-agent-0.6.1" sources."form-data-2.3.3" sources."forwarded-0.1.2" @@ -91439,7 +91145,7 @@ in }) sources."merge-descriptors-1.0.1" sources."methods-1.1.2" - sources."mime-2.4.6" + sources."mime-2.4.7" sources."mime-db-1.45.0" sources."mime-types-2.1.28" sources."minimatch-3.0.4" @@ -91475,10 +91181,10 @@ in }) sources."ms-2.0.0" sources."multer-1.4.2" - sources."mustache-4.0.1" + sources."mustache-4.1.0" sources."mute-stream-0.0.8" sources."nan-2.14.0" - (sources."needle-2.5.2" // { + (sources."needle-2.6.0" // { dependencies = [ sources."debug-3.2.7" sources."ms-2.1.3" @@ -91497,7 +91203,7 @@ in sources."yallist-3.1.1" ]; }) - (sources."node-red-admin-0.2.6" // { + (sources."node-red-admin-0.2.7" // { dependencies = [ sources."bcrypt-3.0.8" ]; @@ -91596,7 +91302,7 @@ in sources."strip-ansi-6.0.0" sources."strip-json-comments-2.0.1" sources."supports-color-5.5.0" - sources."tail-2.1.1" + sources."tail-2.2.0" (sources."tar-6.0.5" // { dependencies = [ sources."mkdirp-1.0.4" @@ -91619,19 +91325,19 @@ in sources."punycode-1.4.1" ]; }) - sources."tslib-2.0.3" + sources."tslib-2.1.0" sources."tunnel-agent-0.6.0" sources."tweetnacl-0.14.5" sources."type-is-1.6.18" sources."typedarray-0.0.6" - sources."uglify-js-3.11.6" + sources."uglify-js-3.12.4" sources."uid-safe-2.1.5" sources."uid2-0.0.3" sources."unc-path-regex-0.1.2" sources."unique-stream-2.3.1" sources."universalify-0.1.2" sources."unpipe-1.0.0" - sources."uri-js-4.4.0" + sources."uri-js-4.4.1" sources."util-deprecate-1.0.2" sources."utils-merge-1.0.1" sources."uuid-3.4.0" @@ -91666,10 +91372,10 @@ in node2nix = nodeEnv.buildNodePackage { name = "node2nix"; packageName = "node2nix"; - version = "1.8.0"; + version = "1.9.0"; src = fetchurl { - url = "https://registry.npmjs.org/node2nix/-/node2nix-1.8.0.tgz"; - sha512 = "v5QBcH6KxWVVRftbXdpGPIo3s0nPRcTJ56vLLbnmk0f1+32efqpI5t+fYekRys5yJPKFlXDRJCo6o8qnw581gQ=="; + url = "https://registry.npmjs.org/node2nix/-/node2nix-1.9.0.tgz"; + sha512 = "CZLF+Pu2g/eYhrIAznhKIg0i3McCXQuwd1meNb+ruiRTrNE2p5oc0RNQUKD3ZAId+JQdHKhFc+19G+wmS8g46w=="; }; dependencies = [ sources."abbrev-1.1.1" @@ -91683,7 +91389,7 @@ in sources."aws-sign2-0.7.0" sources."aws4-1.11.0" sources."balanced-match-1.0.0" - sources."base64-js-1.3.1" + sources."base64-js-1.5.1" sources."bcrypt-pbkdf-1.0.2" sources."brace-expansion-1.1.11" sources."buffer-from-1.1.1" @@ -91747,6 +91453,7 @@ in sources."json-stringify-safe-5.0.1" sources."jsonfile-1.0.1" sources."jsprim-1.4.1" + sources."lru-cache-6.0.0" sources."mime-db-1.45.0" sources."mime-types-2.1.28" sources."minimatch-3.0.4" @@ -91806,7 +91513,7 @@ in sources."rimraf-2.6.3" sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" - sources."semver-7.1.3" + sources."semver-7.3.4" sources."set-blocking-2.0.0" sources."signal-exit-3.0.3" sources."slasp-0.0.4" @@ -91824,7 +91531,7 @@ in ]; }) sources."strip-ansi-3.0.1" - (sources."tar-6.0.5" // { + (sources."tar-6.1.0" // { dependencies = [ sources."mkdirp-1.0.4" ]; @@ -91835,7 +91542,7 @@ in sources."tweetnacl-0.14.5" sources."typedarray-0.0.6" sources."uid-number-0.0.5" - sources."uri-js-4.4.0" + sources."uri-js-4.4.1" sources."util-deprecate-1.0.2" sources."uuid-3.4.0" sources."validate-npm-package-license-3.0.4" @@ -91859,10 +91566,10 @@ in nodemon = nodeEnv.buildNodePackage { name = "nodemon"; packageName = "nodemon"; - version = "2.0.6"; + version = "2.0.7"; src = fetchurl { - url = "https://registry.npmjs.org/nodemon/-/nodemon-2.0.6.tgz"; - sha512 = "4I3YDSKXg6ltYpcnZeHompqac4E6JeAMpGm8tJnB9Y3T0ehasLa4139dJOcCrB93HHrUMsCrKtoAlXTqT5n4AQ=="; + url = "https://registry.npmjs.org/nodemon/-/nodemon-2.0.7.tgz"; + sha512 = "XHzK69Awgnec9UzHr1kc8EomQh4sjTQ8oRf8TsGrSmHDx9/UmiGG9E/mM3BuTfNeFwdNBvrqQq/RHL0xIeyFOA=="; }; dependencies = [ sources."@sindresorhus/is-0.14.0" @@ -91877,7 +91584,7 @@ in sources."ansi-styles-4.3.0" sources."anymatch-3.1.1" sources."balanced-match-1.0.0" - sources."binary-extensions-2.1.0" + sources."binary-extensions-2.2.0" sources."boxen-4.2.0" sources."brace-expansion-1.1.11" sources."braces-3.0.2" @@ -91894,7 +91601,7 @@ in sources."supports-color-7.2.0" ]; }) - sources."chokidar-3.4.3" + sources."chokidar-3.5.1" sources."ci-info-2.0.0" sources."cli-boxes-2.2.1" sources."clone-response-1.0.2" @@ -91913,7 +91620,7 @@ in sources."end-of-stream-1.4.4" sources."escape-goat-2.1.1" sources."fill-range-7.0.1" - sources."fsevents-2.1.3" + sources."fsevents-2.3.1" sources."get-stream-4.1.0" sources."glob-parent-5.1.1" sources."global-dirs-2.1.0" @@ -92012,7 +91719,7 @@ in buildInputs = globalBuildInputs; meta = { description = "Simple monitor script for use during development of a node.js app."; - homepage = http://nodemon.io/; + homepage = https://nodemon.io/; license = "MIT"; }; production = true; @@ -92055,7 +91762,7 @@ in sources."@types/http-cache-semantics-4.0.0" sources."@types/keyv-3.1.1" sources."@types/minimist-1.2.1" - sources."@types/node-14.14.20" + sources."@types/node-14.14.22" sources."@types/normalize-package-data-2.4.0" sources."@types/parse-json-4.0.0" sources."@types/responselike-1.0.0" @@ -92149,7 +91856,7 @@ in sources."escape-string-regexp-4.0.0" sources."execa-5.0.0" sources."external-editor-3.1.0" - sources."fast-glob-3.2.4" + sources."fast-glob-3.2.5" sources."fastq-1.10.0" (sources."figures-3.2.0" // { dependencies = [ @@ -92165,7 +91872,7 @@ in sources."glob-7.1.6" sources."glob-parent-5.1.1" sources."global-dirs-2.1.0" - sources."globby-11.0.1" + sources."globby-11.0.2" (sources."got-10.7.0" // { dependencies = [ sources."get-stream-5.2.0" @@ -92331,7 +92038,7 @@ in sources."mimic-fn-3.1.0" ]; }) - (sources."meow-8.1.0" // { + (sources."meow-8.1.2" // { dependencies = [ sources."type-fest-0.18.1" ]; @@ -92367,7 +92074,7 @@ in sources."mimic-fn-2.1.0" ]; }) - sources."open-7.3.0" + sources."open-7.3.1" sources."org-regex-1.0.0" sources."os-tmpdir-1.0.2" (sources."ow-0.21.0" // { @@ -92419,7 +92126,7 @@ in ]; }) sources."parent-module-1.0.1" - sources."parse-json-5.1.0" + sources."parse-json-5.2.0" sources."path-exists-4.0.0" sources."path-is-absolute-1.0.1" sources."path-key-3.1.1" @@ -92546,10 +92253,10 @@ in npm = nodeEnv.buildNodePackage { name = "npm"; packageName = "npm"; - version = "6.14.10"; + version = "6.14.11"; src = fetchurl { - url = "https://registry.npmjs.org/npm/-/npm-6.14.10.tgz"; - sha512 = "FT23Qy/JMA+qxEYReMOr1MY7642fKn8Onn+72LASPi872Owvmw0svm+/DXTHOC3yO9CheEO+EslyXEpdBdRtIA=="; + url = "https://registry.npmjs.org/npm/-/npm-6.14.11.tgz"; + sha512 = "1Zh7LjuIoEhIyjkBflSSGzfjuPQwDlghNloppjruOH5bmj9midT9qcNT0tRUZRR04shU9ekrxNy9+UTBrqeBpQ=="; }; buildInputs = globalBuildInputs; meta = { @@ -92564,16 +92271,23 @@ in npm-check-updates = nodeEnv.buildNodePackage { name = "npm-check-updates"; packageName = "npm-check-updates"; - version = "10.2.5"; + version = "11.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-10.2.5.tgz"; - sha512 = "R0BN+MqE6T12k0iGivF0WKfn3tuaeQuCai0haVvmsr7GcoPXU+yrlHxl9aFlO2XZ6z4m+pCd107YnbJDcRAf8Q=="; + url = "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-11.1.1.tgz"; + sha512 = "0K2csepXxqXd3sh05qxU9BcW/pvFBatlM6E4UKKVFe6XlGjQXo4TfI5vRT4uZLG0v2Zj/bWUouQiZvEg5iAFHA=="; }; dependencies = [ + sources."@nodelib/fs.scandir-2.1.4" + sources."@nodelib/fs.stat-2.0.4" + sources."@nodelib/fs.walk-1.2.6" sources."@npmcli/ci-detect-1.3.0" sources."@npmcli/git-2.0.4" sources."@npmcli/installed-package-contents-1.0.5" - sources."@npmcli/move-file-1.0.1" + (sources."@npmcli/move-file-1.1.0" // { + dependencies = [ + sources."rimraf-2.7.1" + ]; + }) sources."@npmcli/node-gyp-1.0.1" sources."@npmcli/promise-spawn-1.3.2" sources."@npmcli/run-script-1.8.1" @@ -92598,7 +92312,8 @@ in sources."ansi-styles-4.3.0" sources."aproba-1.2.0" sources."are-we-there-yet-1.1.5" - sources."argparse-1.0.10" + sources."argparse-2.0.1" + sources."array-union-2.1.0" sources."asap-2.0.6" sources."asn1-0.2.4" sources."assert-plus-1.0.0" @@ -92613,6 +92328,7 @@ in ]; }) sources."brace-expansion-1.1.11" + sources."braces-3.0.2" sources."builtins-1.0.3" sources."cacache-15.0.5" (sources."cacheable-request-6.1.0" // { @@ -92660,6 +92376,7 @@ in sources."delegates-1.0.0" sources."depd-1.1.2" sources."dezalgo-1.0.3" + sources."dir-glob-3.0.1" sources."dot-prop-5.3.0" sources."duplexer3-0.1.4" sources."ecc-jsbn-0.1.2" @@ -92670,12 +92387,14 @@ in sources."err-code-1.1.2" sources."escape-goat-2.1.1" sources."escape-string-regexp-1.0.5" - sources."esprima-4.0.1" sources."extend-3.0.2" sources."extsprintf-1.3.0" sources."fast-deep-equal-3.1.3" + sources."fast-glob-3.2.5" sources."fast-json-stable-stringify-2.1.0" + sources."fastq-1.10.0" sources."figgy-pudding-3.5.2" + sources."fill-range-7.0.1" sources."find-up-5.0.0" sources."forever-agent-0.6.1" sources."form-data-2.3.3" @@ -92694,11 +92413,13 @@ in sources."get-stream-4.1.0" sources."getpass-0.1.7" sources."glob-7.1.6" + sources."glob-parent-5.1.1" (sources."global-dirs-2.1.0" // { dependencies = [ sources."ini-1.3.7" ]; }) + sources."globby-11.0.2" sources."got-9.6.0" sources."graceful-fs-4.2.4" sources."har-schema-2.0.0" @@ -92713,6 +92434,7 @@ in sources."https-proxy-agent-5.0.0" sources."humanize-ms-1.2.1" sources."iconv-lite-0.6.2" + sources."ignore-5.1.8" sources."ignore-walk-3.0.3" sources."import-lazy-2.1.0" sources."imurmurhash-0.1.4" @@ -92723,10 +92445,13 @@ in sources."ini-1.3.8" sources."ip-1.1.5" sources."is-ci-2.0.0" + sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" + sources."is-glob-4.0.1" sources."is-installed-globally-0.3.2" sources."is-lambda-1.0.1" sources."is-npm-5.0.0" + sources."is-number-7.0.0" sources."is-obj-2.0.0" sources."is-path-inside-3.0.2" sources."is-typedarray-1.0.0" @@ -92735,7 +92460,7 @@ in sources."isexe-2.0.0" sources."isstream-0.1.2" sources."jju-1.4.0" - sources."js-yaml-3.14.1" + sources."js-yaml-4.0.0" sources."jsbn-0.1.1" sources."json-buffer-3.0.0" sources."json-parse-even-better-errors-2.3.1" @@ -92768,15 +92493,20 @@ in sources."semver-6.3.0" ]; }) - sources."make-fetch-happen-8.0.12" + sources."make-fetch-happen-8.0.13" + sources."map-age-cleaner-0.1.3" + sources."mem-8.0.0" + sources."merge2-1.4.1" + sources."micromatch-4.0.2" sources."mime-db-1.45.0" sources."mime-types-2.1.28" + sources."mimic-fn-3.1.0" sources."mimic-response-1.0.1" sources."minimatch-3.0.4" sources."minimist-1.2.5" sources."minipass-3.1.3" sources."minipass-collect-1.0.2" - sources."minipass-fetch-1.3.2" + sources."minipass-fetch-1.3.3" sources."minipass-flush-1.0.5" sources."minipass-json-stream-1.0.1" sources."minipass-pipeline-1.2.4" @@ -92800,6 +92530,7 @@ in sources."object-assign-4.1.1" sources."once-1.4.0" sources."p-cancelable-1.1.0" + sources."p-defer-1.0.0" sources."p-limit-3.1.0" sources."p-locate-5.0.0" sources."p-map-4.0.0" @@ -92809,11 +92540,13 @@ in sources."semver-6.3.0" ]; }) - sources."pacote-11.1.13" + sources."pacote-11.2.3" sources."parse-github-url-1.0.2" sources."path-exists-4.0.0" sources."path-is-absolute-1.0.1" + sources."path-type-4.0.0" sources."performance-now-2.1.0" + sources."picomatch-2.2.2" sources."prepend-http-2.0.0" sources."process-nextick-args-2.0.1" sources."progress-2.0.3" @@ -92827,7 +92560,7 @@ in sources."pupa-2.1.1" sources."qs-6.5.2" sources."rc-1.2.8" - sources."rc-config-loader-3.0.0" + sources."rc-config-loader-4.0.0" sources."read-package-json-fast-1.2.1" sources."readable-stream-2.3.7" sources."readdir-scoped-modules-1.1.0" @@ -92838,7 +92571,9 @@ in sources."require-from-string-2.0.2" sources."responselike-1.0.2" sources."retry-0.10.1" + sources."reusify-1.0.4" sources."rimraf-3.0.2" + sources."run-parallel-1.1.10" sources."safe-buffer-5.1.2" sources."safer-buffer-2.1.2" sources."semver-7.3.4" @@ -92851,11 +92586,11 @@ in sources."set-blocking-2.0.0" sources."signal-exit-3.0.3" sources."sisteransi-1.0.5" + sources."slash-3.0.0" sources."smart-buffer-4.1.0" sources."socks-2.5.1" sources."socks-proxy-agent-5.0.0" sources."spawn-please-1.0.0" - sources."sprintf-js-1.0.3" sources."sshpk-1.16.1" sources."ssri-8.0.0" sources."string-width-4.2.0" @@ -92863,9 +92598,10 @@ in sources."strip-ansi-6.0.0" sources."strip-json-comments-2.0.1" sources."supports-color-7.2.0" - sources."tar-6.0.5" + sources."tar-6.1.0" sources."term-size-2.2.1" sources."to-readable-stream-1.0.0" + sources."to-regex-range-5.0.1" sources."tough-cookie-2.5.0" sources."tunnel-agent-0.6.0" sources."tweetnacl-0.14.5" @@ -92875,7 +92611,7 @@ in sources."unique-slug-2.0.2" sources."unique-string-2.0.0" sources."update-notifier-5.0.1" - sources."uri-js-4.4.0" + sources."uri-js-4.4.1" sources."url-parse-lax-3.0.0" sources."util-deprecate-1.0.2" sources."uuid-3.4.0" @@ -93063,7 +92799,7 @@ in sources."tweetnacl-0.14.5" sources."underscore-1.4.4" sources."underscore.string-2.3.3" - sources."uri-js-4.4.0" + sources."uri-js-4.4.1" sources."util-deprecate-1.0.2" sources."uuid-3.4.0" sources."verror-1.10.0" @@ -93334,7 +93070,7 @@ in sources."pako-1.0.11" ]; }) - sources."browserslist-4.16.0" + sources."browserslist-4.16.1" (sources."buffer-4.9.2" // { dependencies = [ sources."isarray-1.0.0" @@ -93345,13 +93081,13 @@ in sources."buffer-xor-1.0.3" sources."builtin-status-codes-3.0.0" sources."cache-base-1.0.1" - sources."call-bind-1.0.0" + sources."call-bind-1.0.2" sources."call-me-maybe-1.0.1" sources."caller-callsite-2.0.0" sources."caller-path-2.0.0" sources."callsites-2.0.0" sources."caniuse-api-3.0.0" - sources."caniuse-lite-1.0.30001173" + sources."caniuse-lite-1.0.30001180" sources."caseless-0.12.0" sources."chalk-2.4.2" sources."chokidar-2.1.8" @@ -93378,7 +93114,7 @@ in sources."convert-source-map-1.7.0" sources."copy-descriptor-0.1.1" sources."core-js-2.6.12" - (sources."core-js-compat-3.8.2" // { + (sources."core-js-compat-3.8.3" // { dependencies = [ sources."semver-7.0.0" ]; @@ -93472,7 +93208,7 @@ in (sources."dom-serializer-0.2.2" // { dependencies = [ sources."domelementtype-2.1.0" - sources."entities-2.1.0" + sources."entities-2.2.0" ]; }) sources."domain-browser-1.2.0" @@ -93486,7 +93222,7 @@ in sources."duplexer2-0.1.4" sources."ecc-jsbn-0.1.2" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.3.634" + sources."electron-to-chromium-1.3.645" (sources."elliptic-6.5.3" // { dependencies = [ sources."bn.js-4.11.9" @@ -93496,7 +93232,7 @@ in sources."entities-1.1.2" sources."envinfo-7.7.3" sources."error-ex-1.3.2" - (sources."es-abstract-1.18.0-next.1" // { + (sources."es-abstract-1.18.0-next.2" // { dependencies = [ sources."object-inspect-1.9.0" ]; @@ -93545,7 +93281,7 @@ in sources."fsevents-1.2.13" sources."function-bind-1.1.1" sources."gensync-1.0.0-beta.2" - sources."get-intrinsic-1.0.2" + sources."get-intrinsic-1.1.0" sources."get-port-3.2.0" sources."get-value-2.0.6" sources."getpass-0.1.7" @@ -93741,7 +93477,7 @@ in sources."punycode-1.4.1" ]; }) - sources."node-releases-1.1.69" + sources."node-releases-1.1.70" sources."normalize-path-3.0.0" sources."normalize-url-3.3.0" sources."nth-check-1.0.2" @@ -93891,7 +93627,7 @@ in }) sources."regexpu-core-4.7.1" sources."regjsgen-0.5.2" - (sources."regjsparser-0.6.4" // { + (sources."regjsparser-0.6.6" // { dependencies = [ sources."jsesc-0.5.0" ]; @@ -94045,7 +93781,7 @@ in ]; }) sources."upath-1.2.0" - sources."uri-js-4.4.0" + sources."uri-js-4.4.1" sources."urix-0.1.0" (sources."url-0.11.0" // { dependencies = [ @@ -94136,11 +93872,11 @@ in ]; }) sources."brace-expansion-1.1.11" - sources."bunyan-1.8.14" + sources."bunyan-1.8.15" sources."bunyan-syslog-udp-0.2.0" sources."busboy-0.3.1" sources."bytes-3.0.0" - sources."call-bind-1.0.0" + sources."call-bind-1.0.2" sources."camelcase-5.3.1" sources."caseless-0.12.0" sources."clarinet-0.11.0" @@ -94203,7 +93939,7 @@ in sources."gelf-stream-1.1.1" sources."gelfling-0.3.1" sources."get-caller-file-2.0.5" - sources."get-intrinsic-1.0.2" + sources."get-intrinsic-1.1.0" sources."getpass-0.1.7" sources."glob-7.1.6" sources."graceful-fs-4.2.4" @@ -94347,10 +94083,10 @@ in sources."tunnel-agent-0.6.0" sources."tweetnacl-0.14.5" sources."type-is-1.6.18" - sources."uglify-js-3.12.4" + sources."uglify-js-3.12.5" sources."unix-dgram-2.0.4" sources."unpipe-1.0.0" - sources."uri-js-4.4.0" + sources."uri-js-4.4.1" sources."util-deprecate-1.0.2" sources."utils-merge-1.0.1" sources."uuid-3.4.0" @@ -94358,7 +94094,7 @@ in sources."verror-1.10.0" sources."which-module-2.0.0" sources."wikimedia-langconv-0.1.0" - sources."wikipeg-2.0.3" + sources."wikipeg-2.0.5" sources."wordwrap-1.0.0" sources."worker-farm-1.7.0" sources."wrap-ansi-5.1.0" @@ -94702,7 +94438,7 @@ in sources."buffer-fill-1.0.0" sources."buffer-from-1.1.1" sources."buffer-indexof-1.1.1" - sources."call-bind-1.0.0" + sources."call-bind-1.0.2" sources."camelcase-2.1.1" sources."camelcase-keys-2.1.0" sources."chalk-1.1.3" @@ -94735,8 +94471,6 @@ in sources."dns-txt-2.0.2" sources."end-of-stream-1.4.4" sources."error-ex-1.3.2" - sources."es-abstract-1.17.7" - sources."es-to-primitive-1.2.1" sources."escape-string-regexp-1.0.5" sources."external-editor-2.2.0" sources."fifo-0.1.4" @@ -94751,7 +94485,7 @@ in sources."fs.realpath-1.0.0" sources."function-bind-1.1.1" sources."get-browser-rtc-1.1.0" - sources."get-intrinsic-1.0.2" + sources."get-intrinsic-1.1.0" sources."get-stdin-4.0.1" sources."glob-7.1.6" sources."graceful-fs-4.2.4" @@ -94786,13 +94520,11 @@ in sources."ipaddr.js-2.0.0" sources."is-arguments-1.1.0" sources."is-arrayish-0.2.1" - sources."is-callable-1.2.2" sources."is-core-module-2.2.0" sources."is-date-object-1.0.2" sources."is-finite-1.1.0" sources."is-fullwidth-code-point-1.0.0" sources."is-regex-1.1.1" - sources."is-symbol-1.0.3" sources."is-utf8-0.2.1" sources."isarray-1.0.0" sources."k-bucket-0.6.0" @@ -94810,7 +94542,7 @@ in sources."magnet-uri-5.4.0" sources."map-obj-1.0.1" sources."meow-3.7.0" - sources."mime-2.4.7" + sources."mime-2.5.0" sources."mimic-fn-1.2.0" sources."mimic-response-1.0.1" sources."minimatch-3.0.4" @@ -94827,10 +94559,8 @@ in sources."number-is-nan-1.0.1" sources."numeral-2.0.6" sources."object-assign-4.1.1" - sources."object-inspect-1.9.0" sources."object-is-1.1.4" sources."object-keys-1.1.1" - sources."object.assign-4.1.2" sources."once-1.4.0" sources."onetime-2.0.1" sources."open-0.0.5" @@ -94882,7 +94612,7 @@ in sources."read-pkg-up-1.0.1" sources."readable-stream-2.3.7" sources."redent-1.0.0" - sources."regexp.prototype.flags-1.3.0" + sources."regexp.prototype.flags-1.3.1" sources."repeating-2.0.1" sources."resolve-1.19.0" sources."restore-cursor-2.0.0" @@ -94916,8 +94646,6 @@ in sources."speedometer-0.1.4" sources."stream-buffers-2.2.0" sources."string-width-1.0.2" - sources."string.prototype.trimend-1.0.3" - sources."string.prototype.trimstart-1.0.3" (sources."string2compact-1.3.0" // { dependencies = [ sources."ipaddr.js-1.9.1" @@ -95264,7 +94992,7 @@ in sources."ws-2.3.1" ]; }) - (sources."socket.io-2.4.0" // { + (sources."socket.io-2.4.1" // { dependencies = [ sources."debug-4.1.1" sources."ms-2.1.3" @@ -95275,7 +95003,7 @@ in dependencies = [ sources."debug-3.1.0" sources."isarray-2.0.1" - sources."socket.io-parser-3.3.1" + sources."socket.io-parser-3.3.2" ]; }) (sources."socket.io-parser-3.4.1" // { @@ -95313,7 +95041,7 @@ in sources."ultron-1.1.1" sources."uniq-1.0.1" sources."unpipe-1.0.0" - sources."uri-js-4.4.0" + sources."uri-js-4.4.1" sources."util-deprecate-1.0.2" sources."utils-merge-1.0.1" sources."utp-0.0.7" @@ -95389,10 +95117,9 @@ in sources."tslib-1.9.3" ]; }) - (sources."@pm2/js-api-0.6.1" // { + (sources."@pm2/js-api-0.6.7" // { dependencies = [ sources."async-2.6.3" - sources."debug-3.2.7" sources."eventemitter2-6.4.3" ]; }) @@ -95416,9 +95143,9 @@ in sources."semver-5.7.1" ]; }) - sources."axios-0.19.2" + sources."axios-0.21.1" sources."balanced-match-1.0.0" - sources."binary-extensions-2.1.0" + sources."binary-extensions-2.2.0" sources."blessed-0.1.81" sources."brace-expansion-1.1.11" sources."braces-3.0.2" @@ -95426,7 +95153,7 @@ in sources."bytes-3.1.0" sources."chalk-3.0.0" sources."charm-0.1.2" - sources."chokidar-3.4.3" + sources."chokidar-3.5.1" sources."cli-tableau-2.0.1" sources."co-4.6.0" sources."color-convert-2.0.1" @@ -95466,14 +95193,9 @@ in sources."fclone-1.0.11" sources."file-uri-to-path-1.0.0" sources."fill-range-7.0.1" - (sources."follow-redirects-1.5.10" // { - dependencies = [ - sources."debug-3.1.0" - sources."ms-2.0.0" - ]; - }) + sources."follow-redirects-1.13.2" sources."fs.realpath-1.0.0" - sources."fsevents-2.1.3" + sources."fsevents-2.3.1" (sources."ftp-0.3.10" // { dependencies = [ sources."readable-stream-1.1.14" @@ -95599,11 +95321,11 @@ in sources."statuses-1.5.0" sources."string_decoder-0.10.31" sources."supports-color-7.2.0" - sources."systeminformation-4.34.2" + sources."systeminformation-4.34.9" sources."thunkify-2.1.2" sources."to-regex-range-5.0.1" sources."toidentifier-1.0.0" - sources."tslib-2.0.3" + sources."tslib-2.1.0" sources."tv4-1.3.0" sources."type-check-0.3.2" sources."unpipe-1.0.0" @@ -95634,10 +95356,10 @@ in pnpm = nodeEnv.buildNodePackage { name = "pnpm"; packageName = "pnpm"; - version = "5.14.3"; + version = "5.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/pnpm/-/pnpm-5.14.3.tgz"; - sha512 = "PFjHFWCsHgaNCpOwOAgN6H71PA8td8PnwSE1ArXz//OyfdfIwws1s23XLmokhHcnE3JsBSiIR3NOW8JZ5QcxlQ=="; + url = "https://registry.npmjs.org/pnpm/-/pnpm-5.16.0.tgz"; + sha512 = "f7bNVvYGK24eiZ5gYX4wKOSohg6kIybEhrprHqUtFsP3TfttGSLqid1OTzLvVzwVp58QBj9ifOVwRQ+RiSmE0A=="; }; buildInputs = globalBuildInputs; meta = { @@ -95707,11 +95429,11 @@ in sources."anymatch-3.1.1" sources."array-union-2.1.0" sources."at-least-node-1.0.0" - sources."binary-extensions-2.1.0" + sources."binary-extensions-2.2.0" sources."braces-3.0.2" sources."callsites-3.1.0" sources."chalk-4.1.0" - sources."chokidar-3.4.3" + sources."chokidar-3.5.1" sources."cliui-7.0.4" sources."color-convert-2.0.1" sources."color-name-1.1.4" @@ -95723,15 +95445,15 @@ in sources."error-ex-1.3.2" sources."escalade-3.1.1" sources."escape-string-regexp-1.0.5" - sources."fast-glob-3.2.4" + sources."fast-glob-3.2.5" sources."fastq-1.10.0" sources."fill-range-7.0.1" - sources."fs-extra-9.0.1" - sources."fsevents-2.1.3" + sources."fs-extra-9.1.0" + sources."fsevents-2.3.1" sources."get-caller-file-2.0.5" sources."get-stdin-8.0.0" sources."glob-parent-5.1.1" - sources."globby-11.0.1" + sources."globby-11.0.2" sources."graceful-fs-4.2.4" sources."has-flag-4.0.0" sources."ignore-5.1.8" @@ -95750,11 +95472,7 @@ in sources."is-number-7.0.0" sources."js-tokens-4.0.0" sources."json-parse-even-better-errors-2.3.1" - (sources."jsonfile-6.1.0" // { - dependencies = [ - sources."universalify-2.0.0" - ]; - }) + sources."jsonfile-6.1.0" sources."lines-and-columns-1.1.6" sources."lodash.difference-4.5.0" sources."lodash.forown-4.4.0" @@ -95765,7 +95483,7 @@ in sources."micromatch-4.0.2" sources."normalize-path-3.0.0" sources."parent-module-1.0.1" - sources."parse-json-5.1.0" + sources."parse-json-5.2.0" sources."path-type-4.0.0" sources."picomatch-2.2.2" sources."pify-2.3.0" @@ -95783,7 +95501,7 @@ in sources."strip-ansi-6.0.0" sources."supports-color-7.2.0" sources."to-regex-range-5.0.1" - sources."universalify-1.0.0" + sources."universalify-2.0.0" sources."wrap-ansi-7.0.0" sources."y18n-5.0.5" sources."yaml-1.10.0" @@ -96153,10 +95871,10 @@ in purescript-psa = nodeEnv.buildNodePackage { name = "purescript-psa"; packageName = "purescript-psa"; - version = "0.8.0"; + version = "0.8.2"; src = fetchurl { - url = "https://registry.npmjs.org/purescript-psa/-/purescript-psa-0.8.0.tgz"; - sha512 = "N76JjHcBbJMf4/rs8dnCniFi7TL9iBbV0BycXuwEtSYnmiaogng0tFmnliqubQyZ5FpDU9ET8Bq1NjH3Hmx5PA=="; + url = "https://registry.npmjs.org/purescript-psa/-/purescript-psa-0.8.2.tgz"; + sha512 = "4Olf0aQQrNCfcDLXQI3gJgINEQ+3U+4QPLmQ2LHX2L/YOXSwM7fOGIUs/wMm/FQnwERUyQmHKQTJKB4LIjE2fg=="; }; buildInputs = globalBuildInputs; meta = { @@ -96189,10 +95907,10 @@ in pyright = nodeEnv.buildNodePackage { name = "pyright"; packageName = "pyright"; - version = "1.1.99"; + version = "1.1.105"; src = fetchurl { - url = "https://registry.npmjs.org/pyright/-/pyright-1.1.99.tgz"; - sha512 = "DAfK8uVLGF1nuBeFvEXhvApCecuHEpe8ncjnFW/WsBBIQ5JOsjjpwlUDvTutNjkoH9QCTqvg72g6ip9PdWFL/w=="; + url = "https://registry.npmjs.org/pyright/-/pyright-1.1.105.tgz"; + sha512 = "X0V7v/Ub3X0sP76kjfLlQI5e/yLNcx4eh70+p+WSXz/ahChNWQEr3flb3ReRmuUVOt9FCYcrt8Fpw5oICGoIug=="; }; buildInputs = globalBuildInputs; meta = { @@ -96441,22 +96159,22 @@ in sources."available-typed-arrays-1.0.2" sources."balanced-match-1.0.0" sources."brace-expansion-1.1.11" - sources."call-bind-1.0.0" + sources."call-bind-1.0.2" sources."chalk-1.1.3" sources."colors-0.6.2" sources."concat-map-0.0.1" sources."cycle-1.0.3" sources."deep-equal-2.0.5" sources."define-properties-1.1.3" - sources."es-abstract-1.17.7" - sources."es-get-iterator-1.1.1" + sources."es-abstract-1.18.0-next.2" + sources."es-get-iterator-1.1.2" sources."es-to-primitive-1.2.1" sources."escape-string-regexp-1.0.5" sources."eyes-0.1.8" sources."foreach-2.0.5" sources."fs.realpath-1.0.0" sources."function-bind-1.1.1" - sources."get-intrinsic-1.0.2" + sources."get-intrinsic-1.1.0" sources."glob-7.1.6" sources."has-1.0.3" sources."has-ansi-2.0.0" @@ -96476,11 +96194,7 @@ in sources."is-set-2.0.2" sources."is-string-1.0.5" sources."is-symbol-1.0.3" - (sources."is-typed-array-1.1.4" // { - dependencies = [ - sources."es-abstract-1.18.0-next.1" - ]; - }) + sources."is-typed-array-1.1.4" sources."is-weakmap-2.0.1" sources."is-weakset-2.0.1" sources."isarray-2.0.5" @@ -96499,7 +96213,7 @@ in sources."pkginfo-0.4.1" sources."prompt-0.2.14" sources."read-1.0.7" - sources."regexp.prototype.flags-1.3.0" + sources."regexp.prototype.flags-1.3.1" sources."revalidator-0.1.8" sources."rimraf-2.7.1" sources."semver-5.7.1" @@ -96512,11 +96226,7 @@ in sources."utile-0.2.1" sources."which-boxed-primitive-1.0.2" sources."which-collection-1.0.1" - (sources."which-typed-array-1.1.4" // { - dependencies = [ - sources."es-abstract-1.18.0-next.1" - ]; - }) + sources."which-typed-array-1.1.4" (sources."winston-0.8.3" // { dependencies = [ sources."pkginfo-0.3.1" @@ -96591,18 +96301,20 @@ in readability-cli = nodeEnv.buildNodePackage { name = "readability-cli"; packageName = "readability-cli"; - version = "1.2.1"; + version = "2.0.0-pre.3"; src = fetchurl { - url = "https://registry.npmjs.org/readability-cli/-/readability-cli-1.2.1.tgz"; - sha512 = "oS0m68Y02lcMnrCYh3loRj3o8pGjhBAk8petnaJuvvE6eif3bjj60mTByFhZTlYRWNLuQaq/Yqe8Wk0yFI2wdQ=="; + url = "https://registry.npmjs.org/readability-cli/-/readability-cli-2.0.0-pre.3.tgz"; + sha512 = "5mM386/n+egp7fs8L+xrC+pz0XJSCgF1I3McfzmTiIL7V/m+eJIIfStvqko4JzGD1x3StgPZoNJ8xIyXQFyWDA=="; }; dependencies = [ - sources."@mozilla/readability-0.3.0" + sources."@mozilla/readability-0.4.1" sources."abab-2.0.5" sources."acorn-7.4.1" sources."acorn-globals-6.0.0" sources."acorn-walk-7.2.0" sources."ajv-6.12.6" + sources."ansi-regex-5.0.0" + sources."ansi-styles-4.3.0" sources."asn1-0.2.4" sources."assert-plus-1.0.0" sources."asynckit-0.4.0" @@ -96611,6 +96323,9 @@ in sources."bcrypt-pbkdf-1.0.2" sources."browser-process-hrtime-1.0.0" sources."caseless-0.12.0" + sources."cliui-7.0.4" + sources."color-convert-2.0.1" + sources."color-name-1.1.4" sources."combined-stream-1.0.8" sources."core-util-is-1.0.2" sources."cssom-0.4.4" @@ -96629,7 +96344,10 @@ in sources."webidl-conversions-5.0.0" ]; }) + sources."dompurify-2.2.6" sources."ecc-jsbn-0.1.2" + sources."emoji-regex-8.0.0" + sources."escalade-3.1.1" sources."escodegen-1.14.3" sources."esprima-4.0.1" sources."estraverse-4.3.0" @@ -96641,6 +96359,7 @@ in sources."fast-levenshtein-2.0.6" sources."forever-agent-0.6.1" sources."form-data-2.3.3" + sources."get-caller-file-2.0.5" sources."getpass-0.1.7" sources."har-schema-2.0.0" sources."har-validator-5.1.5" @@ -96648,6 +96367,7 @@ in sources."http-signature-1.2.0" sources."iconv-lite-0.4.24" sources."ip-regex-2.1.0" + sources."is-fullwidth-code-point-3.0.0" sources."is-potential-custom-element-name-1.0.0" sources."is-typedarray-1.0.0" sources."isstream-0.1.2" @@ -96662,7 +96382,6 @@ in sources."lodash.sortby-4.7.0" sources."mime-db-1.45.0" sources."mime-types-2.1.28" - sources."minimist-1.2.5" sources."nwsapi-2.2.0" sources."oauth-sign-0.9.0" sources."optionator-0.8.3" @@ -96683,19 +96402,22 @@ in sources."tough-cookie-2.5.0" ]; }) + sources."require-directory-2.1.1" sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" sources."saxes-5.0.1" sources."source-map-0.6.1" sources."sshpk-1.16.1" sources."stealthy-require-1.1.1" + sources."string-width-4.2.0" + sources."strip-ansi-6.0.0" sources."symbol-tree-3.2.4" sources."tough-cookie-3.0.1" sources."tr46-2.0.2" sources."tunnel-agent-0.6.0" sources."tweetnacl-0.14.5" sources."type-check-0.3.2" - sources."uri-js-4.4.0" + sources."uri-js-4.4.1" sources."uuid-3.4.0" sources."verror-1.10.0" sources."w3c-hr-time-1.0.2" @@ -96705,9 +96427,13 @@ in sources."whatwg-mimetype-2.3.0" sources."whatwg-url-8.4.0" sources."word-wrap-1.2.3" + sources."wrap-ansi-7.0.0" sources."ws-7.4.2" sources."xml-name-validator-3.0.0" sources."xmlchars-2.2.0" + sources."y18n-5.0.5" + sources."yargs-git://github.com/gardenappl/yargs" + sources."yargs-parser-20.2.4" ]; buildInputs = globalBuildInputs; meta = { @@ -96752,7 +96478,7 @@ in sources."@emotion/unitless-0.7.5" sources."@exodus/schemasafe-1.0.0-rc.3" sources."@redocly/react-dropdown-aria-2.0.11" - sources."@types/node-13.13.39" + sources."@types/node-13.13.40" sources."ajv-5.5.2" sources."ansi-regex-5.0.0" sources."ansi-styles-3.2.1" @@ -96772,7 +96498,7 @@ in sources."babel-plugin-syntax-jsx-6.18.0" sources."base64-js-1.5.1" sources."better-ajv-errors-0.6.7" - sources."binary-extensions-2.1.0" + sources."binary-extensions-2.2.0" sources."bn.js-5.1.3" sources."braces-3.0.2" sources."brorand-1.1.0" @@ -96798,7 +96524,7 @@ in sources."camelcase-5.3.1" sources."camelize-1.0.0" sources."chalk-2.4.2" - sources."chokidar-3.4.3" + sources."chokidar-3.5.1" sources."cipher-base-1.0.4" sources."classnames-2.2.6" sources."clipboard-2.0.6" @@ -96810,7 +96536,7 @@ in sources."color-name-1.1.3" sources."console-browserify-1.2.0" sources."constants-browserify-1.0.0" - sources."core-js-3.8.2" + sources."core-js-3.8.3" sources."core-util-is-1.0.2" (sources."create-ecdh-4.0.4" // { dependencies = [ @@ -96854,7 +96580,7 @@ in sources."find-up-4.1.0" sources."foreach-2.0.5" sources."format-util-1.0.5" - sources."fsevents-2.1.3" + sources."fsevents-2.3.1" sources."get-caller-file-2.0.5" sources."glob-parent-5.1.1" sources."globals-11.12.0" @@ -96911,9 +96637,9 @@ in sources."minimalistic-crypto-utils-1.0.1" sources."minimist-1.2.5" sources."mkdirp-1.0.4" - sources."mobx-6.0.4" - sources."mobx-react-7.0.5" - sources."mobx-react-lite-3.1.6" + sources."mobx-6.0.5" + sources."mobx-react-7.0.6" + sources."mobx-react-lite-3.1.7" sources."ms-2.1.2" sources."neo-async-2.6.2" sources."node-fetch-h2-2.3.0" @@ -96922,7 +96648,7 @@ in sources."normalize-path-3.0.0" sources."oas-kit-common-1.0.8" sources."oas-linter-3.2.1" - (sources."oas-resolver-2.5.3" // { + (sources."oas-resolver-2.5.4" // { dependencies = [ sources."yargs-16.2.0" ]; @@ -96973,7 +96699,7 @@ in }) sources."readdirp-3.5.0" sources."redoc-2.0.0-rc.48" - sources."reftools-1.1.7" + sources."reftools-1.1.8" sources."regenerator-runtime-0.13.7" sources."require-directory-2.1.1" sources."require-main-filename-2.0.0" @@ -97009,9 +96735,9 @@ in sources."to-arraybuffer-1.0.1" sources."to-fast-properties-2.0.0" sources."to-regex-range-5.0.1" - sources."tslib-2.0.3" + sources."tslib-2.1.0" sources."tty-browserify-0.0.0" - sources."uglify-js-3.12.4" + sources."uglify-js-3.12.5" (sources."url-0.11.0" // { dependencies = [ sources."punycode-1.3.2" @@ -97081,10 +96807,10 @@ in rollup = nodeEnv.buildNodePackage { name = "rollup"; packageName = "rollup"; - version = "2.36.0"; + version = "2.38.0"; src = fetchurl { - url = "https://registry.npmjs.org/rollup/-/rollup-2.36.0.tgz"; - sha512 = "L38QyQK77bkJy9nPyeydnHFK6xMofqumh4scTV2d4RG4EFq6pGdxnn67dVHFUDJ9J0PSEQx8zn1FiVS5TydsKg=="; + url = "https://registry.npmjs.org/rollup/-/rollup-2.38.0.tgz"; + sha512 = "ay9zDiNitZK/LNE/EM2+v5CZ7drkB2xyDljvb1fQJCGnq43ZWRkhxN145oV8GmoW1YNi4sA/1Jdkr2LfawJoXw=="; }; dependencies = [ sources."fsevents-2.1.3" @@ -97112,7 +96838,7 @@ in sources."chalk-2.4.2" ]; }) - (sources."@eslint/eslintrc-0.2.2" // { + (sources."@eslint/eslintrc-0.3.0" // { dependencies = [ sources."ignore-4.0.6" ]; @@ -97121,32 +96847,33 @@ in sources."@nodelib/fs.stat-2.0.4" sources."@nodelib/fs.walk-1.2.6" sources."@rollup/plugin-commonjs-17.0.0" - sources."@rollup/plugin-node-resolve-11.0.1" + sources."@rollup/plugin-node-resolve-11.1.0" (sources."@rollup/pluginutils-3.1.0" // { dependencies = [ sources."estree-walker-1.0.1" ]; }) + sources."@tootallnate/once-1.1.2" sources."@types/estree-0.0.39" sources."@types/glob-7.1.3" - sources."@types/json-schema-7.0.6" + sources."@types/json-schema-7.0.7" sources."@types/minimatch-3.0.3" sources."@types/mocha-8.2.0" sources."@types/node-12.12.70" - sources."@types/node-fetch-2.5.7" + sources."@types/node-fetch-2.5.8" sources."@types/resolve-1.17.1" sources."@types/vscode-1.52.0" - sources."@typescript-eslint/eslint-plugin-4.12.0" - sources."@typescript-eslint/experimental-utils-4.12.0" - sources."@typescript-eslint/parser-4.12.0" - sources."@typescript-eslint/scope-manager-4.12.0" - sources."@typescript-eslint/types-4.12.0" - sources."@typescript-eslint/typescript-estree-4.12.0" - sources."@typescript-eslint/visitor-keys-4.12.0" + sources."@typescript-eslint/eslint-plugin-4.14.1" + sources."@typescript-eslint/experimental-utils-4.14.1" + sources."@typescript-eslint/parser-4.14.1" + sources."@typescript-eslint/scope-manager-4.14.1" + sources."@typescript-eslint/types-4.14.1" + sources."@typescript-eslint/typescript-estree-4.14.1" + sources."@typescript-eslint/visitor-keys-4.14.1" sources."@ungap/promise-all-settled-1.1.2" sources."acorn-7.4.1" sources."acorn-jsx-5.3.1" - sources."agent-base-4.3.0" + sources."agent-base-6.0.2" sources."ajv-6.12.6" sources."ansi-colors-4.1.1" sources."ansi-regex-5.0.0" @@ -97158,15 +96885,21 @@ in sources."asynckit-0.4.0" sources."azure-devops-node-api-7.2.0" sources."balanced-match-1.0.0" - sources."binary-extensions-2.1.0" + sources."big-integer-1.6.48" + sources."binary-0.3.0" + sources."binary-extensions-2.2.0" + sources."bluebird-3.4.7" sources."boolbase-1.0.0" sources."brace-expansion-1.1.11" sources."braces-3.0.2" sources."browser-stdout-1.3.1" sources."buffer-crc32-0.2.13" + sources."buffer-indexof-polyfill-1.0.2" + sources."buffers-0.1.1" sources."builtin-modules-3.2.0" sources."callsites-3.1.0" sources."camelcase-5.3.1" + sources."chainsaw-0.1.0" (sources."chalk-4.1.0" // { dependencies = [ sources."ansi-styles-4.3.0" @@ -97195,6 +96928,7 @@ in sources."commandpost-1.4.0" sources."commondir-1.0.1" sources."concat-map-0.0.1" + sources."core-util-is-1.0.2" sources."cross-spawn-7.0.3" sources."css-select-3.1.2" sources."css-what-4.0.0" @@ -97211,6 +96945,7 @@ in sources."domelementtype-2.1.0" sources."domhandler-4.0.0" sources."domutils-2.4.4" + sources."duplexer2-0.1.4" (sources."editorconfig-0.15.3" // { dependencies = [ sources."lru-cache-4.1.5" @@ -97221,10 +96956,8 @@ in sources."emoji-regex-8.0.0" sources."enquirer-2.3.6" sources."entities-2.1.0" - sources."es6-promise-4.2.8" - sources."es6-promisify-5.0.0" sources."escape-string-regexp-1.0.5" - (sources."eslint-7.17.0" // { + (sources."eslint-7.18.0" // { dependencies = [ sources."ignore-4.0.6" ]; @@ -97256,7 +96989,7 @@ in sources."estree-walker-2.0.2" sources."esutils-2.0.3" sources."fast-deep-equal-3.1.3" - sources."fast-glob-3.2.4" + sources."fast-glob-3.2.5" sources."fast-json-stable-stringify-2.1.0" sources."fast-levenshtein-2.0.6" sources."fastq-1.10.0" @@ -97266,33 +96999,30 @@ in sources."find-up-5.0.0" sources."flat-5.0.2" sources."flat-cache-3.0.4" - sources."flatted-3.1.0" + sources."flatted-3.1.1" sources."form-data-3.0.0" sources."fs.realpath-1.0.0" sources."fsevents-2.1.3" + (sources."fstream-1.0.12" // { + dependencies = [ + sources."rimraf-2.7.1" + ]; + }) sources."function-bind-1.1.1" sources."functional-red-black-tree-1.0.1" sources."get-caller-file-2.0.5" sources."glob-7.1.6" sources."glob-parent-5.1.1" sources."globals-12.4.0" - sources."globby-11.0.1" + sources."globby-11.0.2" + sources."graceful-fs-4.2.4" sources."growl-1.10.5" sources."has-1.0.3" sources."has-flag-3.0.0" sources."he-1.2.0" sources."htmlparser2-6.0.0" - (sources."http-proxy-agent-2.1.0" // { - dependencies = [ - sources."debug-3.1.0" - sources."ms-2.0.0" - ]; - }) - (sources."https-proxy-agent-2.2.4" // { - dependencies = [ - sources."debug-3.2.7" - ]; - }) + sources."http-proxy-agent-4.0.1" + sources."https-proxy-agent-5.0.0" sources."ignore-5.1.8" sources."import-fresh-3.3.0" sources."imurmurhash-0.1.4" @@ -97307,6 +97037,7 @@ in sources."is-number-7.0.0" sources."is-plain-obj-2.1.0" sources."is-reference-1.2.1" + sources."isarray-1.0.0" sources."isexe-2.0.0" sources."js-tokens-4.0.0" sources."js-yaml-3.14.1" @@ -97315,6 +97046,7 @@ in sources."leven-3.1.0" sources."levn-0.4.1" sources."linkify-it-2.2.0" + sources."listenercount-1.0.1" sources."locate-path-6.0.0" sources."lodash-4.17.20" sources."log-symbols-4.0.0" @@ -97332,6 +97064,8 @@ in sources."mime-db-1.45.0" sources."mime-types-2.1.28" sources."minimatch-3.0.4" + sources."minimist-1.2.5" + sources."mkdirp-0.5.5" (sources."mocha-8.2.1" // { dependencies = [ sources."debug-4.2.0" @@ -97373,11 +97107,17 @@ in sources."pend-1.2.0" sources."picomatch-2.2.2" sources."prelude-ls-1.2.1" + sources."process-nextick-args-2.0.1" sources."progress-2.0.3" sources."pseudomap-1.0.2" sources."punycode-2.1.1" sources."randombytes-2.1.0" sources."read-1.0.7" + (sources."readable-stream-2.3.7" // { + dependencies = [ + sources."safe-buffer-5.1.2" + ]; + }) sources."readdirp-3.5.0" sources."regexpp-3.1.0" sources."require-directory-2.1.1" @@ -97387,12 +97127,13 @@ in sources."resolve-from-4.0.0" sources."reusify-1.0.4" sources."rimraf-3.0.2" - sources."rollup-2.36.0" + sources."rollup-2.38.0" sources."run-parallel-1.1.10" sources."safe-buffer-5.2.1" sources."semver-7.3.4" sources."serialize-javascript-5.0.1" sources."set-blocking-2.0.0" + sources."setimmediate-1.0.5" sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" sources."sigmund-1.0.1" @@ -97407,6 +97148,11 @@ in sources."sourcemap-codec-1.4.8" sources."sprintf-js-1.0.3" sources."string-width-4.2.0" + (sources."string_decoder-1.1.1" // { + dependencies = [ + sources."safe-buffer-5.1.2" + ]; + }) sources."strip-ansi-6.0.0" sources."strip-json-comments-3.1.1" sources."supports-color-5.5.0" @@ -97419,8 +97165,9 @@ in sources."text-table-0.2.0" sources."tmp-0.0.29" sources."to-regex-range-5.0.1" - sources."tslib-2.0.3" - (sources."tsutils-3.18.0" // { + sources."traverse-0.3.9" + sources."tslib-2.1.0" + (sources."tsutils-3.20.0" // { dependencies = [ sources."tslib-1.14.1" ]; @@ -97433,10 +97180,12 @@ in sources."typescript-formatter-7.2.2" sources."uc.micro-1.0.6" sources."underscore-1.8.3" - sources."uri-js-4.4.0" + sources."unzipper-0.10.11" + sources."uri-js-4.4.1" sources."url-join-1.1.0" + sources."util-deprecate-1.0.2" sources."v8-compile-cache-2.2.0" - (sources."vsce-1.83.0" // { + (sources."vsce-1.84.0" // { dependencies = [ sources."chalk-2.4.2" sources."commander-6.2.1" @@ -97447,11 +97196,7 @@ in sources."vscode-languageclient-7.0.0" sources."vscode-languageserver-protocol-3.16.0" sources."vscode-languageserver-types-3.16.0" - (sources."vscode-test-1.4.1" // { - dependencies = [ - sources."rimraf-2.7.1" - ]; - }) + sources."vscode-test-1.5.0" sources."which-2.0.2" sources."which-module-2.0.0" (sources."wide-align-1.1.3" // { @@ -97626,7 +97371,7 @@ in sources."tunnel-agent-0.6.0" sources."tweetnacl-0.14.5" sources."uid2-0.0.3" - sources."uri-js-4.4.0" + sources."uri-js-4.4.1" sources."util-0.4.9" sources."uuid-3.4.0" sources."verror-1.10.0" @@ -97643,18 +97388,18 @@ in sass = nodeEnv.buildNodePackage { name = "sass"; packageName = "sass"; - version = "1.32.0"; + version = "1.32.5"; src = fetchurl { - url = "https://registry.npmjs.org/sass/-/sass-1.32.0.tgz"; - sha512 = "fhyqEbMIycQA4blrz/C0pYhv2o4x2y6FYYAH0CshBw3DXh5D5wyERgxw0ptdau1orc/GhNrhF7DFN2etyOCEng=="; + url = "https://registry.npmjs.org/sass/-/sass-1.32.5.tgz"; + sha512 = "kU1yJ5zUAmPxr7f3q0YXTAd1oZjSR1g3tYyv+xu0HZSl5JiNOaE987eiz7wCUvbm4I9fGWGU2TgApTtcP4GMNQ=="; }; dependencies = [ sources."anymatch-3.1.1" - sources."binary-extensions-2.1.0" + sources."binary-extensions-2.2.0" sources."braces-3.0.2" - sources."chokidar-3.4.3" + sources."chokidar-3.5.1" sources."fill-range-7.0.1" - sources."fsevents-2.1.3" + sources."fsevents-2.3.1" sources."glob-parent-5.1.1" sources."is-binary-path-2.1.0" sources."is-extglob-2.1.1" @@ -97787,7 +97532,7 @@ in sources."supports-color-5.5.0" sources."term-size-1.2.0" sources."update-check-1.5.2" - sources."uri-js-4.4.0" + sources."uri-js-4.4.1" sources."vary-1.1.2" sources."which-1.3.1" sources."widest-line-2.0.1" @@ -97806,10 +97551,10 @@ in serverless = nodeEnv.buildNodePackage { name = "serverless"; packageName = "serverless"; - version = "2.17.0"; + version = "2.21.1"; src = fetchurl { - url = "https://registry.npmjs.org/serverless/-/serverless-2.17.0.tgz"; - sha512 = "OVlrvBESW0aQB3G/SrZQ3WFmALhHRU9qUJ/LLoyFlpddAY4hr0APOixWehiHvf4aI7Vuo04lP9zffttjhviOPA=="; + url = "https://registry.npmjs.org/serverless/-/serverless-2.21.1.tgz"; + sha512 = "nL1iWlOoa91eWfcN8nO7PyIfZC5gibSxtB4V+ipVxIywxlVK19hNetkWus5vI7+399FN3fcCEZEbH89/+GiY6w=="; }; dependencies = [ sources."2-thenable-1.0.0" @@ -97841,23 +97586,49 @@ in ]; }) sources."@serverless/component-metrics-1.0.8" - (sources."@serverless/components-3.4.3" // { + (sources."@serverless/components-3.5.1" // { dependencies = [ + (sources."@serverless/utils-2.2.0" // { + dependencies = [ + sources."js-yaml-4.0.0" + ]; + }) sources."ansi-regex-5.0.0" + sources."argparse-2.0.1" + (sources."js-yaml-3.14.1" // { + dependencies = [ + sources."argparse-1.0.10" + ]; + }) sources."ramda-0.27.1" sources."strip-ansi-6.0.0" + sources."write-file-atomic-3.0.3" ]; }) (sources."@serverless/core-1.1.2" // { dependencies = [ sources."fs-extra-7.0.1" + sources."js-yaml-3.14.1" sources."semver-6.3.0" ]; }) - sources."@serverless/enterprise-plugin-4.4.1" + (sources."@serverless/enterprise-plugin-4.4.2" // { + dependencies = [ + sources."js-yaml-3.14.1" + ]; + }) sources."@serverless/event-mocks-1.1.1" - sources."@serverless/platform-client-3.1.4" - sources."@serverless/platform-client-china-2.0.9" + (sources."@serverless/platform-client-3.9.1" // { + dependencies = [ + sources."js-yaml-3.14.1" + ]; + }) + (sources."@serverless/platform-client-china-2.1.3" // { + dependencies = [ + sources."adm-zip-0.5.2" + sources."js-yaml-3.14.1" + ]; + }) (sources."@serverless/platform-sdk-2.3.2" // { dependencies = [ sources."chalk-2.4.2" @@ -97871,14 +97642,12 @@ in ]; }) sources."@serverless/template-1.1.4" - (sources."@serverless/utils-2.2.0" // { + (sources."@serverless/utils-3.0.0" // { dependencies = [ - sources."argparse-2.0.1" - sources."js-yaml-4.0.0" sources."write-file-atomic-3.0.3" ]; }) - sources."@serverless/utils-china-1.0.12" + sources."@serverless/utils-china-1.0.14" sources."@sindresorhus/is-0.14.0" sources."@szmarczak/http-timer-1.1.2" sources."@tencent-sdk/capi-1.1.8" @@ -97886,9 +97655,9 @@ in sources."@types/caseless-0.12.2" sources."@types/http-cache-semantics-4.0.0" sources."@types/keyv-3.1.1" - sources."@types/lodash-4.14.167" + sources."@types/lodash-4.14.168" sources."@types/long-4.0.1" - sources."@types/node-14.14.20" + sources."@types/node-14.14.22" sources."@types/request-2.48.5" sources."@types/request-promise-native-1.0.17" sources."@types/responselike-1.0.0" @@ -97915,7 +97684,7 @@ in sources."file-type-4.4.0" ]; }) - (sources."archiver-5.1.0" // { + (sources."archiver-5.2.0" // { dependencies = [ sources."async-3.2.0" sources."bl-4.0.3" @@ -97945,7 +97714,7 @@ in sources."async-limiter-1.0.1" sources."asynckit-0.4.0" sources."at-least-node-1.0.0" - (sources."aws-sdk-2.821.0" // { + (sources."aws-sdk-2.831.0" // { dependencies = [ sources."buffer-4.9.2" sources."ieee754-1.1.13" @@ -97954,14 +97723,14 @@ in }) sources."aws-sign2-0.7.0" sources."aws4-1.11.0" - sources."axios-0.19.2" + sources."axios-0.21.1" sources."backo2-1.0.2" sources."balanced-match-1.0.0" sources."base64-arraybuffer-0.1.4" sources."base64-js-1.5.1" sources."bcrypt-pbkdf-1.0.2" sources."binary-0.3.0" - sources."binary-extensions-2.1.0" + sources."binary-extensions-2.2.0" sources."bindings-1.5.0" (sources."bl-2.2.1" // { dependencies = [ @@ -97979,19 +97748,13 @@ in }) sources."blob-0.0.5" sources."bluebird-3.7.2" - (sources."boxen-4.2.0" // { + (sources."boxen-5.0.0" // { dependencies = [ sources."ansi-regex-5.0.0" - sources."ansi-styles-4.3.0" - sources."chalk-3.0.0" - sources."color-convert-2.0.1" - sources."color-name-1.1.4" - sources."has-flag-4.0.0" sources."is-fullwidth-code-point-3.0.0" sources."string-width-4.2.0" sources."strip-ansi-6.0.0" - sources."supports-color-7.2.0" - sources."type-fest-0.8.1" + sources."type-fest-0.20.2" ]; }) sources."brace-expansion-1.1.11" @@ -98013,7 +97776,7 @@ in ]; }) sources."cachedir-2.3.0" - sources."camelcase-5.3.1" + sources."camelcase-6.2.0" sources."caseless-0.12.0" (sources."chainsaw-0.1.0" // { dependencies = [ @@ -98031,7 +97794,7 @@ in }) sources."chardet-0.7.0" sources."child-process-ext-2.1.1" - sources."chokidar-3.4.3" + sources."chokidar-3.5.1" sources."chownr-1.1.4" sources."cli-boxes-2.2.1" (sources."cli-color-2.0.0" // { @@ -98078,8 +97841,8 @@ in ]; }) sources."dashdash-1.14.1" - sources."dayjs-1.10.1" - sources."debug-3.1.0" + sources."dayjs-1.10.4" + sources."debug-2.6.9" sources."decode-uri-component-0.2.0" sources."decompress-4.2.1" sources."decompress-response-3.3.0" @@ -98141,7 +97904,11 @@ in sources."emoji-regex-8.0.0" sources."enabled-1.0.2" sources."end-of-stream-1.4.4" - sources."engine.io-client-3.5.0" + (sources."engine.io-client-3.5.0" // { + dependencies = [ + sources."debug-3.1.0" + ]; + }) sources."engine.io-parser-2.2.1" sources."env-variable-0.0.6" sources."es5-ext-0.10.53" @@ -98169,7 +97936,7 @@ in sources."external-editor-3.1.0" sources."extsprintf-1.3.0" sources."fast-deep-equal-3.1.3" - sources."fast-glob-3.2.4" + sources."fast-glob-3.2.5" sources."fast-json-stable-stringify-2.1.0" sources."fast-safe-stringify-2.0.7" sources."fastest-levenshtein-1.0.12" @@ -98185,7 +97952,7 @@ in sources."fill-range-7.0.1" sources."find-requires-1.0.0" sources."flat-5.0.2" - sources."follow-redirects-1.5.10" + sources."follow-redirects-1.13.2" sources."forever-agent-0.6.1" sources."form-data-2.5.1" sources."formidable-1.2.2" @@ -98197,20 +97964,16 @@ in ]; }) sources."fs-constants-1.0.0" - (sources."fs-extra-9.0.1" // { + (sources."fs-extra-9.1.0" // { dependencies = [ - (sources."jsonfile-6.1.0" // { - dependencies = [ - sources."universalify-2.0.0" - ]; - }) - sources."universalify-1.0.0" + sources."jsonfile-6.1.0" + sources."universalify-2.0.0" ]; }) sources."fs-minipass-2.1.0" sources."fs.realpath-1.0.0" sources."fs2-0.3.9" - sources."fsevents-2.1.3" + sources."fsevents-2.3.1" (sources."gauge-2.7.4" // { dependencies = [ sources."ansi-regex-2.1.1" @@ -98223,7 +97986,7 @@ in sources."github-from-package-0.0.0" sources."glob-7.1.6" sources."glob-parent-5.1.1" - sources."globby-11.0.1" + sources."globby-11.0.2" (sources."got-11.8.1" // { dependencies = [ sources."@sindresorhus/is-4.0.0" @@ -98304,13 +98067,18 @@ in sources."isstream-0.1.2" sources."isurl-1.0.0" sources."jmespath-0.15.0" - sources."js-yaml-3.14.1" + (sources."js-yaml-4.0.0" // { + dependencies = [ + sources."argparse-2.0.1" + ]; + }) sources."jsbn-0.1.1" sources."json-buffer-3.0.0" sources."json-cycle-1.3.0" (sources."json-refs-3.0.15" // { dependencies = [ sources."commander-4.1.1" + sources."js-yaml-3.14.1" ]; }) sources."json-schema-0.2.3" @@ -98328,7 +98096,6 @@ in sources."jwt-decode-2.2.0" (sources."kafka-node-5.0.0" // { dependencies = [ - sources."debug-2.6.9" sources."uuid-3.4.0" ]; }) @@ -98367,7 +98134,11 @@ in sources."pify-3.0.0" ]; }) - sources."memoizee-0.4.14" + (sources."memoizee-0.4.15" // { + dependencies = [ + sources."next-tick-1.1.0" + ]; + }) sources."merge2-1.4.1" sources."methods-1.1.2" sources."micromatch-4.0.2" @@ -98410,7 +98181,7 @@ in sources."once-1.4.0" sources."one-time-0.0.4" sources."onetime-5.1.2" - sources."open-7.3.0" + sources."open-7.3.1" (sources."opn-5.5.0" // { dependencies = [ sources."is-wsl-1.1.0" @@ -98456,7 +98227,7 @@ in sources."promise-queue-2.2.5" (sources."protobufjs-6.10.2" // { dependencies = [ - sources."@types/node-13.13.39" + sources."@types/node-13.13.40" sources."long-4.0.0" ]; }) @@ -98492,6 +98263,7 @@ in sources."reusify-1.0.4" sources."run-async-2.4.1" sources."run-parallel-1.1.10" + sources."run-parallel-limit-1.0.6" sources."rxjs-6.6.3" sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" @@ -98515,9 +98287,14 @@ in sources."simple-swizzle-0.2.2" sources."slash-3.0.0" sources."snappy-6.3.5" - sources."socket.io-client-2.4.0" - (sources."socket.io-parser-3.3.1" // { + (sources."socket.io-client-2.4.0" // { dependencies = [ + sources."debug-3.1.0" + ]; + }) + (sources."socket.io-parser-3.3.2" // { + dependencies = [ + sources."debug-3.1.0" sources."isarray-2.0.1" ]; }) @@ -98547,6 +98324,8 @@ in sources."strip-outer-1.0.1" (sources."superagent-3.8.3" // { dependencies = [ + sources."debug-3.2.7" + sources."ms-2.1.3" sources."readable-stream-2.3.7" sources."safe-buffer-5.1.2" sources."string_decoder-1.1.1" @@ -98574,7 +98353,7 @@ in sources."untildify-3.0.3" ]; }) - (sources."tar-6.0.5" // { + (sources."tar-6.1.0" // { dependencies = [ sources."chownr-2.0.0" sources."mkdirp-1.0.4" @@ -98593,7 +98372,6 @@ in sources."string_decoder-1.1.1" ]; }) - sources."term-size-2.2.1" sources."text-hex-1.0.0" sources."throat-5.0.0" sources."through-2.3.8" @@ -98617,7 +98395,7 @@ in sources."unbzip2-stream-1.4.3" sources."universalify-0.1.2" sources."untildify-4.0.0" - sources."uri-js-4.4.0" + sources."uri-js-4.4.1" (sources."url-0.10.3" // { dependencies = [ sources."punycode-1.3.2" @@ -98648,6 +98426,17 @@ in sources."string_decoder-1.1.1" ]; }) + (sources."wrap-ansi-7.0.0" // { + dependencies = [ + sources."ansi-regex-5.0.0" + sources."ansi-styles-4.3.0" + sources."color-convert-2.0.1" + sources."color-name-1.1.4" + sources."is-fullwidth-code-point-3.0.0" + sources."string-width-4.2.0" + sources."strip-ansi-6.0.0" + ]; + }) sources."wrappy-1.0.2" sources."write-file-atomic-2.4.3" sources."ws-7.4.2" @@ -98883,7 +98672,7 @@ in sources."tweetnacl-0.14.5" sources."type-is-1.6.18" sources."unpipe-1.0.0" - sources."uri-js-4.4.0" + sources."uri-js-4.4.1" sources."utf8-2.0.0" sources."utils-merge-1.0.1" sources."uuid-3.4.0" @@ -99312,10 +99101,10 @@ in snyk = nodeEnv.buildNodePackage { name = "snyk"; packageName = "snyk"; - version = "1.437.3"; + version = "1.439.1"; src = fetchurl { - url = "https://registry.npmjs.org/snyk/-/snyk-1.437.3.tgz"; - sha512 = "DFcYz8Q8LT/XNCNxaeEoGahazvkEhWS//JWJTfr6W1d5jMnORQauPxxj4RR3WGjKewSDl2eElwK1jhi5RNOP9g=="; + url = "https://registry.npmjs.org/snyk/-/snyk-1.439.1.tgz"; + sha512 = "aWZixzm6HDaK/e/nDvyAX+IeBeQ6IFjQx559ExU+mKWQuGgmBHJryuODTFq1ymQCI7TzQvzM5GCrrEL48JIWkw=="; }; dependencies = [ sources."@sindresorhus/is-2.1.1" @@ -99329,7 +99118,7 @@ in sources."@snyk/dep-graph-1.21.0" sources."@snyk/docker-registry-v2-client-1.13.9" sources."@snyk/gemfile-1.2.0" - (sources."@snyk/java-call-graph-builder-1.18.0" // { + (sources."@snyk/java-call-graph-builder-1.19.0" // { dependencies = [ sources."rimraf-3.0.2" sources."tmp-0.2.1" @@ -99338,7 +99127,7 @@ in sources."@snyk/rpm-parser-2.2.1" (sources."@snyk/snyk-cocoapods-plugin-2.5.1" // { dependencies = [ - sources."tslib-2.0.3" + sources."tslib-2.1.0" ]; }) (sources."@snyk/snyk-docker-pull-3.2.3" // { @@ -99352,9 +99141,9 @@ in sources."@types/graphlib-2.1.7" sources."@types/hosted-git-info-2.7.0" sources."@types/http-cache-semantics-4.0.0" - sources."@types/js-yaml-3.12.5" + sources."@types/js-yaml-3.12.6" sources."@types/keyv-3.1.1" - sources."@types/node-14.14.20" + sources."@types/node-14.14.22" sources."@types/responselike-1.0.0" sources."@types/semver-5.5.0" sources."@yarnpkg/lockfile-1.1.0" @@ -99377,7 +99166,7 @@ in sources."asn1-0.2.4" (sources."ast-types-0.14.2" // { dependencies = [ - sources."tslib-2.0.3" + sources."tslib-2.1.0" ]; }) sources."async-3.2.0" @@ -99616,7 +99405,7 @@ in sources."object-hash-2.1.1" sources."once-1.4.0" sources."onetime-5.1.2" - sources."open-7.3.0" + sources."open-7.3.1" sources."optionator-0.8.3" sources."os-name-3.1.0" sources."os-tmpdir-1.0.2" @@ -99656,6 +99445,7 @@ in sources."process-nextick-args-2.0.1" sources."progress-2.0.3" sources."promise-7.3.1" + sources."promise-queue-2.2.5" sources."proxy-agent-3.1.1" sources."proxy-from-env-1.1.0" sources."pseudomap-1.0.2" @@ -99703,7 +99493,7 @@ in sources."color-name-1.1.4" sources."has-flag-4.0.0" sources."supports-color-7.2.0" - sources."tslib-2.0.3" + sources."tslib-2.1.0" ]; }) (sources."snyk-docker-plugin-4.13.1" // { @@ -99720,7 +99510,7 @@ in sources."tmp-0.2.1" ]; }) - (sources."snyk-gradle-plugin-3.11.0" // { + (sources."snyk-gradle-plugin-3.12.0" // { dependencies = [ (sources."@snyk/cli-interface-2.9.1" // { dependencies = [ @@ -99736,11 +99526,11 @@ in sources."rimraf-3.0.2" sources."supports-color-7.2.0" sources."tmp-0.2.1" - sources."tslib-2.0.3" + sources."tslib-2.1.0" ]; }) sources."snyk-module-3.1.0" - (sources."snyk-mvn-plugin-2.25.0" // { + (sources."snyk-mvn-plugin-2.25.1" // { dependencies = [ sources."@snyk/cli-interface-2.9.1" (sources."@snyk/dep-graph-1.19.4" // { @@ -99779,9 +99569,14 @@ in sources."tslib-1.11.1" ]; }) - (sources."snyk-poetry-lockfile-parser-1.1.1" // { + (sources."snyk-poetry-lockfile-parser-1.1.2" // { dependencies = [ - sources."tslib-2.0.3" + (sources."@snyk/dep-graph-1.23.0" // { + dependencies = [ + sources."tslib-1.14.1" + ]; + }) + sources."tslib-2.1.0" ]; }) (sources."snyk-policy-1.14.1" // { @@ -99795,7 +99590,7 @@ in }) ]; }) - sources."snyk-python-plugin-1.19.1" + sources."snyk-python-plugin-1.19.2" (sources."snyk-resolve-1.0.1" // { dependencies = [ sources."debug-3.2.7" @@ -99934,16 +99729,16 @@ in "socket.io" = nodeEnv.buildNodePackage { name = "socket.io"; packageName = "socket.io"; - version = "3.0.5"; + version = "3.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/socket.io/-/socket.io-3.0.5.tgz"; - sha512 = "5yWQ43P/4IttmPCGKDQ3CVocBiJWGpibyhYJxgUhf69EHMzmK8XW0DkmHIoYdLmZaVZJyiEkUqpeC7rSCIqekw=="; + url = "https://registry.npmjs.org/socket.io/-/socket.io-3.1.0.tgz"; + sha512 = "Aqg2dlRh6xSJvRYK31ksG65q4kmBOqU4g+1ukhPcoT6wNGYoIwSYPlCPuRwOO9pgLUajojGFztl6+V2opmKcww=="; }; dependencies = [ sources."@types/component-emitter-1.2.10" sources."@types/cookie-0.4.0" sources."@types/cors-2.8.9" - sources."@types/node-14.14.20" + sources."@types/node-14.14.22" sources."accepts-1.3.7" sources."base64-arraybuffer-0.1.4" sources."base64id-2.0.0" @@ -99951,15 +99746,15 @@ in sources."cookie-0.4.1" sources."cors-2.8.5" sources."debug-4.3.2" - sources."engine.io-4.0.6" + sources."engine.io-4.1.0" sources."engine.io-parser-4.0.2" sources."mime-db-1.45.0" sources."mime-types-2.1.28" sources."ms-2.1.2" sources."negotiator-0.6.2" sources."object-assign-4.1.1" - sources."socket.io-adapter-2.0.3" - sources."socket.io-parser-4.0.3" + sources."socket.io-adapter-2.1.0" + sources."socket.io-parser-4.0.4" sources."vary-1.1.2" sources."ws-7.4.2" ]; @@ -100205,7 +100000,7 @@ in sources."isobject-3.0.1" ]; }) - sources."call-bind-1.0.0" + sources."call-bind-1.0.2" sources."camelcase-2.1.1" sources."ccount-1.1.0" sources."chalk-1.1.3" @@ -100293,8 +100088,12 @@ in }) sources."epidemic-broadcast-trees-7.0.0" sources."errno-0.1.8" - sources."es-abstract-1.17.7" - (sources."es-get-iterator-1.1.1" // { + (sources."es-abstract-1.18.0-next.2" // { + dependencies = [ + sources."object-inspect-1.9.0" + ]; + }) + (sources."es-get-iterator-1.1.2" // { dependencies = [ sources."isarray-2.0.5" ]; @@ -100342,7 +100141,7 @@ in sources."mkdirp-1.0.4" ]; }) - (sources."flumeview-reduce-1.3.17" // { + (sources."flumeview-reduce-1.4.0" // { dependencies = [ (sources."atomic-file-2.1.1" // { dependencies = [ @@ -100360,7 +100159,7 @@ in sources."fs.realpath-1.0.0" sources."fsevents-1.2.13" sources."function-bind-1.1.1" - sources."get-intrinsic-1.0.2" + sources."get-intrinsic-1.1.0" sources."get-value-2.0.6" sources."glob-6.0.4" sources."glob-base-0.3.0" @@ -100449,11 +100248,7 @@ in sources."is-set-2.0.2" sources."is-string-1.0.5" sources."is-symbol-1.0.3" - (sources."is-typed-array-1.1.4" // { - dependencies = [ - sources."es-abstract-1.18.0-next.1" - ]; - }) + sources."is-typed-array-1.1.4" sources."is-typedarray-1.0.0" sources."is-valid-domain-0.0.17" sources."is-weakmap-2.0.1" @@ -100561,7 +100356,7 @@ in }) ]; }) - sources."object-inspect-1.9.0" + sources."object-inspect-1.7.0" sources."object-is-1.1.4" sources."object-keys-1.1.1" (sources."object-visit-1.0.1" // { @@ -100579,7 +100374,7 @@ in sources."observ-0.2.0" sources."observ-debounce-1.1.1" sources."obv-0.0.1" - sources."obz-1.0.2" + sources."obz-1.0.3" sources."on-change-network-0.0.2" sources."on-wakeup-1.0.1" sources."once-1.4.0" @@ -100728,7 +100523,7 @@ in }) sources."regex-cache-0.4.4" sources."regex-not-1.0.2" - sources."regexp.prototype.flags-1.3.0" + sources."regexp.prototype.flags-1.3.1" sources."relative-url-1.0.2" (sources."remark-3.2.3" // { dependencies = [ @@ -100768,7 +100563,11 @@ in sources."shebang-command-1.2.0" sources."shebang-regex-1.0.0" sources."shellsubstitute-1.2.0" - sources."side-channel-1.0.4" + (sources."side-channel-1.0.4" // { + dependencies = [ + sources."object-inspect-1.9.0" + ]; + }) sources."smart-buffer-4.1.0" (sources."snapdragon-0.8.2" // { dependencies = [ @@ -100873,11 +100672,7 @@ in ]; }) sources."string-width-1.0.2" - (sources."string.prototype.trim-1.2.3" // { - dependencies = [ - sources."es-abstract-1.18.0-next.1" - ]; - }) + sources."string.prototype.trim-1.2.3" sources."string.prototype.trimend-1.0.3" sources."string.prototype.trimstart-1.0.3" sources."string_decoder-1.1.1" @@ -100889,7 +100684,6 @@ in dependencies = [ sources."glob-7.1.6" sources."is-regex-1.0.5" - sources."object-inspect-1.7.0" ]; }) sources."text-table-0.2.0" @@ -100946,11 +100740,7 @@ in sources."which-1.3.1" sources."which-boxed-primitive-1.0.2" sources."which-collection-1.0.1" - (sources."which-typed-array-1.1.4" // { - dependencies = [ - sources."es-abstract-1.18.0-next.1" - ]; - }) + sources."which-typed-array-1.1.4" sources."word-wrap-1.2.3" sources."wrap-fn-0.1.5" sources."wrappy-1.0.2" @@ -101054,7 +100844,7 @@ in sources."async-1.5.2" sources."async-limiter-1.0.1" sources."asynckit-0.4.0" - (sources."aws-sdk-2.821.0" // { + (sources."aws-sdk-2.831.0" // { dependencies = [ sources."uuid-3.3.2" ]; @@ -101094,7 +100884,7 @@ in sources."buffer-from-1.1.1" sources."bufferutil-1.3.0" sources."bufferview-1.0.1" - sources."bunyan-1.8.14" + sources."bunyan-1.8.15" sources."busboy-0.2.14" sources."bytebuffer-3.5.5" sources."bytes-3.1.0" @@ -101237,7 +101027,7 @@ in sources."fd-slicer-1.1.0" sources."finalhandler-1.1.2" sources."find-up-3.0.0" - sources."follow-redirects-1.13.1" + sources."follow-redirects-1.13.2" sources."forever-agent-0.6.1" sources."form-data-2.1.4" sources."formidable-1.2.2" @@ -101580,7 +101370,7 @@ in sources."signal-exit-3.0.3" sources."slash-1.0.0" sources."sntp-1.0.9" - (sources."socket.io-2.4.0" // { + (sources."socket.io-2.4.1" // { dependencies = [ sources."debug-4.1.1" ]; @@ -101591,7 +101381,7 @@ in sources."debug-3.1.0" sources."isarray-2.0.1" sources."ms-2.0.0" - sources."socket.io-parser-3.3.1" + sources."socket.io-parser-3.3.2" ]; }) (sources."socket.io-parser-3.4.1" // { @@ -101642,7 +101432,7 @@ in dependencies = [ sources."debug-3.2.7" sources."form-data-2.5.1" - sources."qs-6.9.4" + sources."qs-6.9.6" sources."readable-stream-2.3.7" sources."string_decoder-1.1.1" ]; @@ -101655,7 +101445,7 @@ in sources."esprima-4.0.1" sources."js-yaml-3.14.1" sources."lodash-3.10.1" - sources."qs-6.9.4" + sources."qs-6.9.6" ]; }) sources."swagger-schema-official-2.0.0-bab6bed" @@ -101705,7 +101495,7 @@ in sources."uid2-0.0.3" sources."ultron-1.0.2" sources."unpipe-1.0.0" - (sources."uri-js-4.4.0" // { + (sources."uri-js-4.4.1" // { dependencies = [ sources."punycode-2.1.1" ]; @@ -101820,10 +101610,10 @@ in stylelint = nodeEnv.buildNodePackage { name = "stylelint"; packageName = "stylelint"; - version = "13.8.0"; + version = "13.9.0"; src = fetchurl { - url = "https://registry.npmjs.org/stylelint/-/stylelint-13.8.0.tgz"; - sha512 = "iHH3dv3UI23SLDrH4zMQDjLT9/dDIz/IpoFeuNxZmEx86KtfpjDOscxLTFioQyv+2vQjPlRZnK0UoJtfxLICXQ=="; + url = "https://registry.npmjs.org/stylelint/-/stylelint-13.9.0.tgz"; + sha512 = "VVWH2oixOAxpWL1vH+V42ReCzBjW2AeqskSAbi8+3OjV1Xg3VZkmTcAqBZfRRvJeF4BvYuDLXebW3tIHxgZDEg=="; }; dependencies = [ sources."@babel/code-frame-7.12.11" @@ -101870,11 +101660,11 @@ in sources."balanced-match-1.0.0" sources."brace-expansion-1.1.11" sources."braces-3.0.2" - sources."browserslist-4.16.0" + sources."browserslist-4.16.1" sources."callsites-3.1.0" sources."camelcase-5.3.1" sources."camelcase-keys-6.2.2" - sources."caniuse-lite-1.0.30001173" + sources."caniuse-lite-1.0.30001180" (sources."chalk-4.1.0" // { dependencies = [ sources."ansi-styles-4.3.0" @@ -101906,13 +101696,13 @@ in (sources."dom-serializer-0.2.2" // { dependencies = [ sources."domelementtype-2.1.0" - sources."entities-2.1.0" + sources."entities-2.2.0" ]; }) sources."domelementtype-1.3.1" sources."domhandler-2.4.2" sources."domutils-1.7.0" - sources."electron-to-chromium-1.3.634" + sources."electron-to-chromium-1.3.645" sources."emoji-regex-8.0.0" sources."entities-1.1.2" sources."error-ex-1.3.2" @@ -101921,14 +101711,14 @@ in sources."execall-2.0.0" sources."extend-3.0.2" sources."fast-deep-equal-3.1.3" - sources."fast-glob-3.2.4" + sources."fast-glob-3.2.5" sources."fastest-levenshtein-1.0.12" sources."fastq-1.10.0" sources."file-entry-cache-6.0.0" sources."fill-range-7.0.1" sources."find-up-4.1.0" sources."flat-cache-3.0.4" - sources."flatted-3.1.0" + sources."flatted-3.1.1" sources."fs.realpath-1.0.0" sources."function-bind-1.1.1" sources."gensync-1.0.0-beta.2" @@ -101938,7 +101728,7 @@ in sources."global-modules-2.0.0" sources."global-prefix-3.0.0" sources."globals-11.12.0" - sources."globby-11.0.1" + sources."globby-11.0.2" sources."globjoin-0.1.4" sources."gonzales-pe-4.3.0" sources."hard-rejection-2.1.0" @@ -101993,7 +101783,7 @@ in sources."mdast-util-from-markdown-0.8.4" sources."mdast-util-to-markdown-0.6.2" sources."mdast-util-to-string-2.0.0" - sources."meow-8.1.0" + sources."meow-9.0.0" sources."merge2-1.4.1" sources."micromark-2.11.2" sources."micromatch-4.0.2" @@ -102006,7 +101796,7 @@ in ]; }) sources."ms-2.1.2" - sources."node-releases-1.1.69" + sources."node-releases-1.1.70" (sources."normalize-package-data-3.0.0" // { dependencies = [ sources."semver-7.3.4" @@ -102021,7 +101811,7 @@ in sources."p-try-2.2.0" sources."parent-module-1.0.1" sources."parse-entities-2.0.0" - sources."parse-json-5.1.0" + sources."parse-json-5.2.0" sources."path-exists-4.0.0" sources."path-is-absolute-1.0.1" sources."path-parse-1.0.6" @@ -102115,7 +101905,7 @@ in sources."unist-util-find-all-after-3.0.2" sources."unist-util-is-4.0.4" sources."unist-util-stringify-position-2.0.3" - sources."uri-js-4.4.0" + sources."uri-js-4.4.1" sources."util-deprecate-1.0.2" sources."v8-compile-cache-2.2.0" sources."validate-npm-package-license-3.0.4" @@ -102152,7 +101942,7 @@ in sources."ansi-styles-3.2.1" sources."argparse-1.0.10" sources."boolbase-1.0.0" - sources."call-bind-1.0.0" + sources."call-bind-1.0.2" sources."chalk-2.4.2" sources."coa-2.0.2" sources."color-convert-1.9.3" @@ -102175,13 +101965,13 @@ in }) sources."domelementtype-1.3.1" sources."domutils-1.7.0" - sources."entities-2.1.0" - sources."es-abstract-1.18.0-next.1" + sources."entities-2.2.0" + sources."es-abstract-1.18.0-next.2" sources."es-to-primitive-1.2.1" sources."escape-string-regexp-1.0.5" sources."esprima-4.0.1" sources."function-bind-1.1.1" - sources."get-intrinsic-1.0.2" + sources."get-intrinsic-1.1.0" sources."has-1.0.3" sources."has-flag-3.0.0" sources."has-symbols-1.0.1" @@ -102620,7 +102410,7 @@ in dependencies = [ sources."debug-3.2.7" sources."ms-2.1.3" - sources."qs-6.9.4" + sources."qs-6.9.6" sources."superagent-3.8.3" ]; }) @@ -102797,7 +102587,7 @@ in sources."truncate-utf8-bytes-1.0.2" sources."type-is-1.6.18" sources."typedarray-0.0.6" - sources."uglify-js-3.12.4" + sources."uglify-js-3.12.5" sources."undefsafe-2.0.3" (sources."union-value-1.0.1" // { dependencies = [ @@ -102917,7 +102707,7 @@ in sources."jsprim-1.4.1" sources."locate-path-3.0.0" sources."long-4.0.0" - sources."mime-2.4.7" + sources."mime-2.5.0" sources."mime-db-1.45.0" sources."mime-types-2.1.28" sources."minimist-1.2.5" @@ -102958,7 +102748,7 @@ in sources."tough-cookie-2.5.0" sources."tunnel-agent-0.6.0" sources."tweetnacl-1.0.3" - sources."uri-js-4.4.0" + sources."uri-js-4.4.1" sources."uuid-3.4.0" sources."verror-1.10.0" sources."which-module-2.0.0" @@ -103029,28 +102819,29 @@ in textlint = nodeEnv.buildNodePackage { name = "textlint"; packageName = "textlint"; - version = "11.7.7"; + version = "11.8.1"; src = fetchurl { - url = "https://registry.npmjs.org/textlint/-/textlint-11.7.7.tgz"; - sha512 = "YSF2xLyvX5odEb142kqU2x0oUmL6yj4+mDolKb+ul5y7/HKEUgjq2G4GwkEtIOij1B52mbvS+MApI4Fx5VhhMA=="; + url = "https://registry.npmjs.org/textlint/-/textlint-11.8.1.tgz"; + sha512 = "FlXzJrR008O/H/ynCTVQnsaW2kX2I1zb/rIxkn0HIAoNxU/A4au+P4QJkeDg7FRE6h8qdlZjrXHx79MfSTWzDw=="; }; dependencies = [ sources."@azu/format-text-1.0.1" sources."@azu/style-format-1.0.0" - sources."@textlint/ast-node-types-4.3.5" - sources."@textlint/ast-tester-2.2.5" - sources."@textlint/ast-traverse-2.2.6" - sources."@textlint/feature-flag-3.2.5" - sources."@textlint/fixer-formatter-3.2.6" - sources."@textlint/kernel-3.3.7" - sources."@textlint/linter-formatter-3.2.6" - sources."@textlint/markdown-to-ast-6.2.6" - sources."@textlint/module-interop-1.1.5" - sources."@textlint/text-to-ast-3.2.5" - sources."@textlint/textlint-plugin-markdown-5.2.7" - sources."@textlint/textlint-plugin-text-4.2.7" - sources."@textlint/types-1.4.6" - sources."@textlint/utils-1.1.5" + sources."@textlint/ast-node-types-4.4.1" + sources."@textlint/ast-tester-2.3.1" + sources."@textlint/ast-traverse-2.3.1" + sources."@textlint/feature-flag-3.3.1" + sources."@textlint/fixer-formatter-3.3.1" + sources."@textlint/kernel-3.4.1" + sources."@textlint/linter-formatter-3.3.1" + sources."@textlint/markdown-to-ast-6.3.1" + sources."@textlint/module-interop-1.2.1" + sources."@textlint/source-code-fixer-3.4.1" + sources."@textlint/text-to-ast-3.3.1" + sources."@textlint/textlint-plugin-markdown-5.3.1" + sources."@textlint/textlint-plugin-text-4.3.1" + sources."@textlint/types-1.5.1" + sources."@textlint/utils-1.2.1" sources."ajv-4.11.8" sources."ajv-keywords-1.5.1" sources."ansi-regex-2.1.1" @@ -103061,7 +102852,7 @@ in sources."boundary-1.0.1" sources."brace-expansion-1.1.11" sources."buffer-from-1.1.1" - sources."call-bind-1.0.0" + sources."call-bind-1.0.2" (sources."chalk-1.1.3" // { dependencies = [ sources."strip-ansi-3.0.1" @@ -103084,8 +102875,6 @@ in sources."define-properties-1.1.3" sources."diff-4.0.2" sources."error-ex-1.3.2" - sources."es-abstract-1.17.7" - sources."es-to-primitive-1.2.1" sources."escape-string-regexp-1.0.5" sources."esprima-4.0.1" sources."extend-3.0.2" @@ -103098,7 +102887,7 @@ in sources."format-0.2.2" sources."fs.realpath-1.0.0" sources."function-bind-1.1.1" - sources."get-intrinsic-1.0.2" + sources."get-intrinsic-1.1.0" sources."get-stdin-5.0.1" sources."glob-7.1.6" sources."graceful-fs-4.2.4" @@ -103113,7 +102902,6 @@ in sources."is-arguments-1.1.0" sources."is-arrayish-0.2.1" sources."is-buffer-1.1.6" - sources."is-callable-1.2.2" sources."is-core-module-2.2.0" sources."is-date-object-1.0.2" sources."is-decimal-1.0.4" @@ -103122,7 +102910,6 @@ in sources."is-hexadecimal-1.0.4" sources."is-plain-obj-1.1.0" sources."is-regex-1.1.1" - sources."is-symbol-1.0.3" sources."is-utf8-0.2.1" sources."is-whitespace-character-1.0.4" sources."is-word-character-1.0.4" @@ -103146,10 +102933,8 @@ in sources."ms-2.1.2" sources."normalize-package-data-2.5.0" sources."number-is-nan-1.0.1" - sources."object-inspect-1.9.0" sources."object-is-1.1.4" sources."object-keys-1.1.1" - sources."object.assign-4.1.2" sources."once-1.4.0" sources."optionator-0.9.1" sources."p-limit-1.3.0" @@ -103181,7 +102966,7 @@ in ]; }) sources."readable-stream-2.3.7" - sources."regexp.prototype.flags-1.3.0" + sources."regexp.prototype.flags-1.3.1" sources."remark-frontmatter-1.3.3" sources."remark-parse-5.0.0" sources."repeat-string-1.6.1" @@ -103203,8 +102988,6 @@ in sources."strip-ansi-3.0.1" ]; }) - sources."string.prototype.trimend-1.0.3" - sources."string.prototype.trimstart-1.0.3" sources."string_decoder-1.1.1" (sources."strip-ansi-6.0.0" // { dependencies = [ @@ -103269,7 +103052,7 @@ in sha1 = "9139c65b8da891c983b368a50a286338cd76777a"; }; dependencies = [ - sources."@textlint/ast-node-types-4.3.5" + sources."@textlint/ast-node-types-4.4.1" sources."txt-to-ast-3.0.3" ]; buildInputs = globalBuildInputs; @@ -103291,25 +103074,15 @@ in sha1 = "8d49dd02b3a7a88d7e6b32817f9e202c5c6596b9"; }; dependencies = [ - sources."call-bind-1.0.0" + sources."call-bind-1.0.2" sources."define-properties-1.1.3" - sources."es-abstract-1.17.7" - sources."es-to-primitive-1.2.1" sources."function-bind-1.1.1" - sources."get-intrinsic-1.0.2" + sources."get-intrinsic-1.1.0" sources."has-1.0.3" sources."has-symbols-1.0.1" - sources."is-callable-1.2.2" - sources."is-date-object-1.0.2" - sources."is-regex-1.1.1" - sources."is-symbol-1.0.3" sources."match-index-1.0.3" - sources."object-inspect-1.9.0" sources."object-keys-1.1.1" - sources."object.assign-4.1.2" - sources."regexp.prototype.flags-1.3.0" - sources."string.prototype.trimend-1.0.3" - sources."string.prototype.trimstart-1.0.3" + sources."regexp.prototype.flags-1.3.1" ]; buildInputs = globalBuildInputs; meta = { @@ -103335,8 +103108,8 @@ in sources."@babel/highlight-7.10.4" sources."@sindresorhus/is-0.14.0" sources."@szmarczak/http-timer-1.1.2" - sources."@textlint/ast-node-types-4.3.5" - sources."@textlint/types-1.4.6" + sources."@textlint/ast-node-types-4.4.1" + sources."@textlint/types-1.5.1" sources."@types/hast-2.3.1" sources."@types/minimist-1.2.1" sources."@types/normalize-package-data-2.4.0" @@ -103553,7 +103326,7 @@ in }) sources."parse-english-4.2.0" sources."parse-entities-2.0.0" - sources."parse-json-5.1.0" + sources."parse-json-5.2.0" sources."parse-latin-4.3.0" sources."parse5-6.0.1" sources."path-exists-4.0.0" @@ -103866,17 +103639,17 @@ in sha512 = "HydBbkWjnMn4KrnlpnusY1BGjIG+64UySxRCvRphUAIiuJL2nbkdrIIiOjwfQhllKUa7Sf33bs6RAcbEWjZVfg=="; }; dependencies = [ - sources."@textlint/ast-node-types-4.3.5" - sources."@textlint/types-1.4.6" + sources."@textlint/ast-node-types-4.4.1" + sources."@textlint/types-1.5.1" sources."boundary-1.0.1" sources."buffer-from-1.1.1" - sources."call-bind-1.0.0" + sources."call-bind-1.0.2" sources."concat-stream-2.0.0" sources."define-properties-1.1.3" - sources."es-abstract-1.18.0-next.1" + sources."es-abstract-1.18.0-next.2" sources."es-to-primitive-1.2.1" sources."function-bind-1.1.1" - sources."get-intrinsic-1.0.2" + sources."get-intrinsic-1.1.0" sources."has-1.0.3" sources."has-symbols-1.0.1" sources."inherits-2.0.4" @@ -103924,7 +103697,7 @@ in }; dependencies = [ sources."array.prototype.find-2.1.1" - sources."call-bind-1.0.0" + sources."call-bind-1.0.2" sources."check-ends-with-period-1.0.1" sources."define-properties-1.1.3" sources."emoji-regex-6.5.1" @@ -103932,7 +103705,7 @@ in sources."es-abstract-1.17.7" sources."es-to-primitive-1.2.1" sources."function-bind-1.1.1" - sources."get-intrinsic-1.0.2" + sources."get-intrinsic-1.1.0" sources."has-1.0.3" sources."has-symbols-1.0.1" sources."is-callable-1.2.2" @@ -103958,14 +103731,14 @@ in textlint-rule-stop-words = nodeEnv.buildNodePackage { name = "textlint-rule-stop-words"; packageName = "textlint-rule-stop-words"; - version = "2.0.8"; + version = "2.0.9"; src = fetchurl { - url = "https://registry.npmjs.org/textlint-rule-stop-words/-/textlint-rule-stop-words-2.0.8.tgz"; - sha512 = "D945uyFkeMo6KJhMJaFTEHudP+Jkl00rLOQKRibV1zl933muR6NXqz+uXAvitPAEWH20kwQA40E0Cd1t8nJQ1w=="; + url = "https://registry.npmjs.org/textlint-rule-stop-words/-/textlint-rule-stop-words-2.0.9.tgz"; + sha512 = "UW7nWrqBUHfz/sRLTFo40BNjwXOiXSHg00TJuYY4GVDQtsWRLyAsOnXSBqClP4i6wl7ejMBeYmB5mfllYAYMgA=="; }; dependencies = [ - sources."@textlint/ast-node-types-4.3.5" - sources."@textlint/types-1.4.6" + sources."@textlint/ast-node-types-4.4.1" + sources."@textlint/types-1.5.1" sources."boundary-1.0.1" sources."lodash-4.17.20" sources."split-lines-2.0.0" @@ -103988,14 +103761,14 @@ in textlint-rule-terminology = nodeEnv.buildNodePackage { name = "textlint-rule-terminology"; packageName = "textlint-rule-terminology"; - version = "2.1.4"; + version = "2.1.5"; src = fetchurl { - url = "https://registry.npmjs.org/textlint-rule-terminology/-/textlint-rule-terminology-2.1.4.tgz"; - sha512 = "kLw4qL8RwY2lCNqgKveHc5sjCDlS5Tdw2TXWOrHvSvQxqaVOwsv3+51oMIQLGfJzQrhFSMlSlw5MvfaOerBvPQ=="; + url = "https://registry.npmjs.org/textlint-rule-terminology/-/textlint-rule-terminology-2.1.5.tgz"; + sha512 = "VW+ea4ByLPddSUqoFkVVJF8zWnO8kqKwvC681wGFAjI4CYz9WhjEQH1ikhoEHXnd5AFXNArcjyoa8hoihrXy0w=="; }; dependencies = [ - sources."@textlint/ast-node-types-4.3.5" - sources."@textlint/types-1.4.6" + sources."@textlint/ast-node-types-4.4.1" + sources."@textlint/types-1.5.1" sources."boundary-1.0.1" sources."lodash-4.17.20" sources."strip-json-comments-3.1.1" @@ -104025,12 +103798,12 @@ in }; dependencies = [ sources."array-includes-3.1.2" - sources."call-bind-1.0.0" + sources."call-bind-1.0.2" sources."define-properties-1.1.3" - sources."es-abstract-1.18.0-next.1" + sources."es-abstract-1.18.0-next.2" sources."es-to-primitive-1.2.1" sources."function-bind-1.1.1" - sources."get-intrinsic-1.0.2" + sources."get-intrinsic-1.1.0" sources."has-1.0.3" sources."has-symbols-1.0.1" sources."is-callable-1.2.2" @@ -104065,15 +103838,15 @@ in sha1 = "3c79b04091319d4e8be5fb442c596bf500e8493e"; }; dependencies = [ - sources."@textlint/ast-node-types-4.3.5" - sources."@textlint/types-1.4.6" + sources."@textlint/ast-node-types-4.4.1" + sources."@textlint/types-1.5.1" sources."adverb-where-0.0.9" sources."boundary-1.0.1" - sources."call-bind-1.0.0" + sources."call-bind-1.0.2" sources."define-properties-1.1.3" sources."e-prime-0.10.4" sources."function-bind-1.1.1" - sources."get-intrinsic-1.0.2" + sources."get-intrinsic-1.1.0" sources."has-1.0.3" sources."has-symbols-1.0.1" sources."no-cliches-0.1.1" @@ -104115,7 +103888,7 @@ in sources."@types/debug-4.1.5" sources."@types/http-cache-semantics-4.0.0" sources."@types/keyv-3.1.1" - sources."@types/node-14.14.20" + sources."@types/node-14.14.22" sources."@types/responselike-1.0.0" sources."abbrev-1.1.1" sources."abstract-logging-2.0.1" @@ -104191,7 +103964,7 @@ in sources."content-type-1.0.4" sources."cookie-0.4.0" sources."cookie-signature-1.0.6" - sources."core-js-3.8.2" + sources."core-js-3.8.3" sources."core-util-is-1.0.2" sources."css-select-1.2.0" sources."css-what-2.1.3" @@ -104346,7 +104119,7 @@ in sources."mkdirp-0.5.5" sources."ms-2.0.0" sources."mute-stream-0.0.8" - (sources."needle-2.5.2" // { + (sources."needle-2.6.0" // { dependencies = [ sources."debug-3.2.7" sources."ms-2.1.3" @@ -104414,7 +104187,7 @@ in sources."parseurl-1.3.3" sources."path-is-absolute-1.0.1" sources."path-to-regexp-0.1.7" - sources."peek-readable-3.1.1" + sources."peek-readable-3.1.3" sources."performance-now-2.1.0" sources."pify-4.0.1" sources."precond-0.2.3" @@ -104470,7 +104243,7 @@ in sources."base64-arraybuffer-0.1.5" sources."debug-4.1.1" sources."ms-2.1.3" - (sources."socket.io-parser-3.3.1" // { + (sources."socket.io-parser-3.3.2" // { dependencies = [ sources."component-emitter-1.3.0" sources."debug-3.1.0" @@ -104499,14 +104272,14 @@ in sources."strip-ansi-3.0.1" sources."strip-json-comments-2.0.1" sources."strip-outer-1.0.1" - sources."strtok3-6.0.6" + sources."strtok3-6.0.8" sources."supports-color-7.2.0" sources."tar-4.4.13" sources."tlds-1.208.0" sources."to-array-0.1.4" sources."to-readable-stream-1.0.0" sources."toidentifier-1.0.0" - sources."token-types-2.0.0" + sources."token-types-2.1.1" sources."tough-cookie-2.5.0" sources."trim-repeated-1.0.0" sources."tunnel-agent-0.6.0" @@ -104516,7 +104289,7 @@ in sources."ua-parser-js-0.7.21" sources."uc.micro-1.0.6" sources."unpipe-1.0.0" - sources."uri-js-4.4.0" + sources."uri-js-4.4.1" sources."url-parse-lax-3.0.0" sources."urlsafe-base64-1.0.0" sources."util-deprecate-1.0.2" @@ -104684,7 +104457,7 @@ in sources."tunnel-agent-0.6.0" sources."tweetnacl-0.14.5" sources."universalify-1.0.0" - sources."uri-js-4.4.0" + sources."uri-js-4.4.1" sources."uuid-8.3.2" sources."verror-1.10.0" (sources."winston-2.4.5" // { @@ -104711,10 +104484,10 @@ in triton = nodeEnv.buildNodePackage { name = "triton"; packageName = "triton"; - version = "7.12.0"; + version = "7.12.2"; src = fetchurl { - url = "https://registry.npmjs.org/triton/-/triton-7.12.0.tgz"; - sha512 = "ArYQDI90SwshcxQBE8ogpY1UHMwm5aiZ4GtqzGZG+wn9F5jHUbkDwNXfbVIGQZrFcg/vDtzhscUzI7UIphjJMA=="; + url = "https://registry.npmjs.org/triton/-/triton-7.12.2.tgz"; + sha512 = "xzGDHq2Jt6THs+/Kz1XiTEaco67KmeBzUFqCROPIaMS4BL8UNXoY0cU2ZyH1/4Brrzn70muAOgl7PYDokNb4Pw=="; }; dependencies = [ sources."asn1-0.2.4" @@ -104999,10 +104772,10 @@ in typescript-language-server = nodeEnv.buildNodePackage { name = "typescript-language-server"; packageName = "typescript-language-server"; - version = "0.4.0"; + version = "0.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/typescript-language-server/-/typescript-language-server-0.4.0.tgz"; - sha512 = "K8jNOmDFn+QfrCh8ujby2pGDs5rpjYZQn+zvQnf42rxG4IHbfw5CHoMvbGkWPK/J5Gw8/l5K3i03kVZC2IBElg=="; + url = "https://registry.npmjs.org/typescript-language-server/-/typescript-language-server-0.5.1.tgz"; + sha512 = "60Kguhwk/R1BB4pEIb6B9C7Ix7JzLzYnsODlmorYMPjMeEV0rCBqTR6FGAj4wVw/eHrHcpwLENmmURKUd8aybA=="; }; dependencies = [ sources."command-exists-1.2.6" @@ -105026,6 +104799,7 @@ in buildInputs = globalBuildInputs; meta = { description = "Language Server Protocol (LSP) implementation for TypeScript using tsserver"; + homepage = "https://github.com/theia-ide/typescript-language-server#readme"; license = "Apache-2.0"; }; production = true; @@ -105035,10 +104809,10 @@ in uglify-js = nodeEnv.buildNodePackage { name = "uglify-js"; packageName = "uglify-js"; - version = "3.12.4"; + version = "3.12.5"; src = fetchurl { - url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.12.4.tgz"; - sha512 = "L5i5jg/SHkEqzN18gQMTWsZk3KelRsfD1wUVNqtq0kzqWQqcJjyL8yc1o8hJgRrWqrAl2mUFbhfznEIoi7zi2A=="; + url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.12.5.tgz"; + sha512 = "SgpgScL4T7Hj/w/GexjnBHi3Ien9WS1Rpfg5y91WXMj9SY997ZCQU76mH4TpLwwfmMvoOU8wiaRkIf6NaH3mtg=="; }; buildInputs = globalBuildInputs; meta = { @@ -105084,7 +104858,7 @@ in sources."@types/component-emitter-1.2.10" sources."@types/cookie-0.4.0" sources."@types/cors-2.8.9" - sources."@types/node-14.14.20" + sources."@types/node-14.14.22" sources."abbrev-1.1.1" sources."accepts-1.3.7" sources."ansi-regex-5.0.0" @@ -105240,7 +105014,7 @@ in sources."on-headers-1.0.2" sources."once-1.4.0" sources."one-time-1.0.0" - sources."open-7.3.0" + sources."open-7.3.1" sources."p-cancelable-1.1.0" (sources."package-json-6.5.0" // { dependencies = [ @@ -105296,7 +105070,7 @@ in ]; }) sources."socket.io-adapter-2.0.3" - (sources."socket.io-parser-4.0.3" // { + (sources."socket.io-parser-4.0.4" // { dependencies = [ sources."debug-4.3.2" sources."ms-2.1.2" @@ -105357,10 +105131,10 @@ in vega-cli = nodeEnv.buildNodePackage { name = "vega-cli"; packageName = "vega-cli"; - version = "5.17.3"; + version = "5.19.1"; src = fetchurl { - url = "https://registry.npmjs.org/vega-cli/-/vega-cli-5.17.3.tgz"; - sha512 = "gxLAxIxFmq+36eB0ETCo4F29+/gWFfGftLxpCs8/fVKW9ILfJnEBd3M+7qdQKRHhVbImqsPetaKzwtIYH7/EPw=="; + url = "https://registry.npmjs.org/vega-cli/-/vega-cli-5.19.1.tgz"; + sha512 = "zUyyUYl2GgpAqdaQ3f/riNdaued3030hiJAjreX7/3XBiJ64vmF1l42x3KD8rq24ff9xLFwe0qyfnQOk4nK+fg=="; }; dependencies = [ sources."abbrev-1.1.1" @@ -105387,7 +105161,7 @@ in sources."concat-map-0.0.1" sources."console-control-strings-1.1.0" sources."core-util-is-1.0.2" - sources."d3-array-2.9.1" + sources."d3-array-2.11.0" sources."d3-color-2.0.0" sources."d3-delaunay-5.3.0" sources."d3-dispatch-2.0.0" @@ -105426,6 +105200,7 @@ in sources."inflight-1.0.6" sources."inherits-2.0.4" sources."ini-1.3.8" + sources."internmap-1.0.0" sources."is-core-module-2.2.0" sources."is-fullwidth-code-point-1.0.0" sources."isarray-1.0.0" @@ -105437,7 +105212,7 @@ in sources."mkdirp-0.5.5" sources."ms-2.1.3" sources."nan-2.14.2" - sources."needle-2.5.2" + sources."needle-2.6.0" sources."node-fetch-2.6.1" sources."node-pre-gyp-0.11.0" sources."nopt-4.0.3" @@ -105475,7 +105250,7 @@ in sources."tar-4.4.13" sources."topojson-client-3.1.0" sources."util-deprecate-1.0.2" - sources."vega-5.17.3" + sources."vega-5.19.1" sources."vega-canvas-1.2.6" sources."vega-crossfilter-4.0.5" sources."vega-dataflow-5.7.3" @@ -105484,18 +105259,18 @@ in sources."vega-expression-4.0.1" sources."vega-force-4.0.7" sources."vega-format-1.0.4" - sources."vega-functions-5.10.0" + sources."vega-functions-5.12.0" sources."vega-geo-4.3.8" sources."vega-hierarchy-4.0.9" sources."vega-label-1.0.0" sources."vega-loader-4.4.0" - sources."vega-parser-6.1.2" + sources."vega-parser-6.1.3" sources."vega-projection-1.4.5" sources."vega-regression-1.0.9" sources."vega-runtime-6.1.3" sources."vega-scale-7.1.1" - sources."vega-scenegraph-4.9.2" - sources."vega-selections-5.1.5" + sources."vega-scenegraph-4.9.3" + sources."vega-selections-5.3.0" sources."vega-statistics-1.7.9" sources."vega-time-2.0.4" sources."vega-transforms-4.9.3" @@ -105828,7 +105603,7 @@ in }) sources."base64-js-1.5.1" sources."big.js-5.2.2" - sources."binary-extensions-2.1.0" + sources."binary-extensions-2.2.0" sources."bindings-1.5.0" sources."bluebird-3.7.2" sources."bn.js-5.1.3" @@ -105864,7 +105639,7 @@ in ]; }) sources."cache-base-1.0.1" - sources."call-bind-1.0.0" + sources."call-bind-1.0.2" sources."camelcase-5.3.1" (sources."chalk-2.4.2" // { dependencies = [ @@ -105967,10 +105742,10 @@ in sources."emoji-regex-7.0.3" sources."emojis-list-3.0.0" sources."end-of-stream-1.4.4" - sources."enhanced-resolve-4.3.0" + sources."enhanced-resolve-4.5.0" sources."entities-2.1.0" sources."errno-0.1.8" - (sources."es-abstract-1.18.0-next.1" // { + (sources."es-abstract-1.18.0-next.2" // { dependencies = [ sources."object.assign-4.1.2" ]; @@ -106062,7 +105837,7 @@ in sources."fsevents-2.1.3" sources."function-bind-1.1.1" sources."get-caller-file-2.0.5" - sources."get-intrinsic-1.0.2" + sources."get-intrinsic-1.1.0" sources."get-value-2.0.6" sources."glob-7.1.3" sources."glob-parent-5.1.1" @@ -106457,7 +106232,7 @@ in ]; }) sources."upath-1.2.0" - sources."uri-js-4.4.0" + sources."uri-js-4.4.1" sources."urix-0.1.0" (sources."url-0.11.0" // { dependencies = [ @@ -106474,12 +106249,13 @@ in sources."util-deprecate-1.0.2" sources."v8-compile-cache-2.2.0" sources."vm-browserify-1.1.2" - sources."vsce-1.83.0" + sources."vsce-1.84.0" sources."vscode-debugadapter-testsupport-1.43.0" sources."vscode-debugprotocol-1.43.0" (sources."watchpack-1.7.5" // { dependencies = [ - sources."chokidar-3.4.3" + sources."chokidar-3.5.1" + sources."fsevents-2.3.1" sources."readdirp-3.5.0" ]; }) @@ -106507,7 +106283,7 @@ in sources."to-regex-range-2.1.1" ]; }) - (sources."webpack-4.44.2" // { + (sources."webpack-4.46.0" // { dependencies = [ (sources."braces-2.3.2" // { dependencies = [ @@ -106826,12 +106602,12 @@ in sources."tslib-1.14.1" sources."tunnel-agent-0.6.0" sources."tweetnacl-0.14.5" - sources."uglify-js-3.12.4" + sources."uglify-js-3.12.5" sources."uid-0.0.2" sources."unbzip2-stream-1.4.3" sources."unyield-0.0.1" sources."unzip-response-2.0.1" - sources."uri-js-4.4.0" + sources."uri-js-4.4.1" sources."url-parse-lax-1.0.0" sources."url-to-options-1.0.1" sources."user-home-2.0.0" @@ -106885,7 +106661,7 @@ in sources."@starptech/rehype-webparser-0.10.0" sources."@starptech/webparser-0.10.0" sources."@szmarczak/http-timer-1.1.2" - sources."@types/node-14.14.20" + sources."@types/node-14.14.22" sources."@types/unist-2.0.3" sources."@types/vfile-3.0.2" sources."@types/vfile-message-2.0.0" @@ -106937,7 +106713,7 @@ in sources."define-property-1.0.0" ]; }) - sources."binary-extensions-2.1.0" + sources."binary-extensions-2.2.0" sources."bootstrap-vue-helper-json-1.1.1" (sources."boxen-3.2.0" // { dependencies = [ @@ -107085,7 +106861,7 @@ in sources."eslint-scope-5.1.1" sources."espree-6.2.1" sources."ms-2.1.2" - sources."vue-eslint-parser-7.3.0" + sources."vue-eslint-parser-7.4.1" ]; }) sources."eslint-scope-4.0.3" @@ -107268,7 +107044,7 @@ in sources."isarray-1.0.0" sources."isexe-2.0.0" sources."isobject-3.0.1" - (sources."js-beautify-1.13.0" // { + (sources."js-beautify-1.13.5" // { dependencies = [ sources."mkdirp-1.0.4" ]; @@ -107710,7 +107486,7 @@ in }) sources."untildify-2.1.0" sources."update-notifier-3.0.1" - sources."uri-js-4.4.0" + sources."uri-js-4.4.1" sources."urix-0.1.0" sources."url-parse-lax-3.0.0" sources."use-3.1.1" @@ -107796,10 +107572,10 @@ in web-ext = nodeEnv.buildNodePackage { name = "web-ext"; packageName = "web-ext"; - version = "5.4.1"; + version = "5.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/web-ext/-/web-ext-5.4.1.tgz"; - sha512 = "AnTjSFtvidZfmVYzvceM/XixsigiWU3l66UzcxgXxXhOoEQU5ZHlXFGVJdHEYfkI5SnEyDG+WlhsdTUHNLOXJw=="; + url = "https://registry.npmjs.org/web-ext/-/web-ext-5.5.0.tgz"; + sha512 = "f+NHiYwbTS0X6eSLkBDWoCYkkIJweVazGf4MD8S+kRX/5z40WsYsnRdVWG+p34Z6rCyNvlHHrnO2S1W8WWg7Tw=="; }; dependencies = [ sources."@babel/code-frame-7.12.11" @@ -107831,7 +107607,7 @@ in sources."@sindresorhus/is-0.14.0" sources."@szmarczak/http-timer-1.1.2" sources."@types/minimatch-3.0.3" - sources."@types/node-14.14.20" + sources."@types/node-14.14.22" sources."@types/yauzl-2.9.1" sources."JSONSelect-0.2.1" sources."acorn-7.4.1" @@ -107902,7 +107678,7 @@ in }) sources."base64-js-1.5.1" sources."bcrypt-pbkdf-1.0.2" - sources."binary-extensions-2.1.0" + sources."binary-extensions-2.2.0" sources."bindings-1.5.0" sources."bl-4.0.3" sources."bluebird-2.9.34" @@ -107926,15 +107702,15 @@ in sources."lowercase-keys-2.0.0" ]; }) - sources."call-bind-1.0.0" + sources."call-bind-1.0.2" sources."callsites-3.1.0" sources."camelcase-6.0.0" sources."caseless-0.12.0" sources."chalk-4.1.0" sources."cheerio-1.0.0-rc.3" - (sources."chokidar-3.4.3" // { + (sources."chokidar-3.5.1" // { dependencies = [ - sources."fsevents-2.1.3" + sources."fsevents-2.3.1" ]; }) (sources."chrome-launcher-0.13.4" // { @@ -108036,8 +107812,6 @@ in sources."enquirer-2.3.6" sources."entities-1.1.2" sources."error-ex-1.3.2" - sources."es-abstract-1.17.7" - sources."es-to-primitive-1.2.1" sources."es6-error-4.1.1" sources."es6-promise-2.3.0" sources."es6-promisify-6.1.1" @@ -108165,7 +107939,7 @@ in ]; }) sources."get-caller-file-2.0.5" - sources."get-intrinsic-1.0.2" + sources."get-intrinsic-1.1.0" sources."get-stream-5.2.0" sources."get-value-2.0.6" sources."getpass-0.1.7" @@ -108208,7 +107982,7 @@ in sources."human-signals-1.1.1" sources."ieee754-1.2.1" sources."ignore-4.0.6" - sources."import-fresh-3.2.1" + sources."import-fresh-3.3.0" sources."import-lazy-2.1.0" sources."imurmurhash-0.1.4" sources."inflight-1.0.6" @@ -108221,7 +107995,6 @@ in sources."is-arrayish-0.2.1" sources."is-binary-path-2.1.0" sources."is-buffer-1.1.6" - sources."is-callable-1.2.2" sources."is-ci-2.0.0" sources."is-data-descriptor-1.0.0" sources."is-date-object-1.0.2" @@ -108241,7 +108014,6 @@ in sources."is-regex-1.1.1" sources."is-relative-0.1.3" sources."is-stream-2.0.0" - sources."is-symbol-1.0.3" sources."is-typedarray-1.0.0" sources."is-utf8-0.2.1" sources."is-windows-1.0.2" @@ -108368,7 +108140,7 @@ in sources."neo-async-2.6.2" sources."next-tick-1.1.0" sources."node-forge-0.10.0" - (sources."node-notifier-8.0.0" // { + (sources."node-notifier-8.0.1" // { dependencies = [ sources."uuid-8.3.2" ]; @@ -108392,11 +108164,9 @@ in sources."kind-of-3.2.2" ]; }) - sources."object-inspect-1.9.0" sources."object-is-1.1.4" sources."object-keys-1.1.1" sources."object-visit-1.0.1" - sources."object.assign-4.1.2" sources."object.pick-1.3.0" sources."once-1.4.0" sources."onetime-5.1.2" @@ -108453,7 +108223,7 @@ in sources."readdirp-3.5.0" sources."regenerator-runtime-0.13.7" sources."regex-not-1.0.2" - sources."regexp.prototype.flags-1.3.0" + sources."regexp.prototype.flags-1.3.1" sources."regexpp-3.1.0" sources."registry-auth-token-4.2.1" sources."registry-url-5.1.0" @@ -108579,8 +108349,6 @@ in sources."strip-ansi-6.0.0" ]; }) - sources."string.prototype.trimend-1.0.3" - sources."string.prototype.trimstart-1.0.3" sources."string_decoder-1.3.0" sources."strip-ansi-3.0.1" sources."strip-bom-4.0.0" @@ -108643,7 +108411,7 @@ in }) sources."upath-2.0.1" sources."update-notifier-5.0.0" - sources."uri-js-4.4.0" + sources."uri-js-4.4.1" sources."urix-0.1.0" sources."url-parse-lax-3.0.0" sources."use-3.1.1" @@ -108652,7 +108420,7 @@ in sources."v8-compile-cache-2.2.0" sources."verror-1.10.0" sources."vfile-location-3.2.0" - sources."watchpack-1.7.4" + sources."watchpack-1.7.5" (sources."watchpack-chokidar2-2.0.1" // { dependencies = [ sources."anymatch-2.0.0" @@ -108698,7 +108466,7 @@ in ]; }) sources."write-file-atomic-3.0.3" - sources."ws-7.3.1" + sources."ws-7.4.2" sources."xdg-basedir-4.0.0" sources."xml2js-0.4.23" sources."xmlbuilder-11.0.1" @@ -108737,48 +108505,46 @@ in webpack = nodeEnv.buildNodePackage { name = "webpack"; packageName = "webpack"; - version = "5.11.1"; + version = "5.18.0"; src = fetchurl { - url = "https://registry.npmjs.org/webpack/-/webpack-5.11.1.tgz"; - sha512 = "tNUIdAmYJv+nupRs/U/gqmADm6fgrf5xE+rSlSsf2PgsGO7j2WG7ccU6AWNlOJlHFl+HnmXlBmHIkiLf+XA9mQ=="; + url = "https://registry.npmjs.org/webpack/-/webpack-5.18.0.tgz"; + sha512 = "RmiP/iy6ROvVe/S+u0TrvL/oOmvP+2+Bs8MWjvBwwY/j82Q51XJyDJ75m0QAGntL1Wx6B//Xc0+4VPP/hlNHmw=="; }; dependencies = [ sources."@types/eslint-7.2.6" sources."@types/eslint-scope-3.7.0" - sources."@types/estree-0.0.45" - sources."@types/json-schema-7.0.6" - sources."@types/node-14.14.20" - sources."@webassemblyjs/ast-1.9.1" - sources."@webassemblyjs/floating-point-hex-parser-1.9.1" - sources."@webassemblyjs/helper-api-error-1.9.1" - sources."@webassemblyjs/helper-buffer-1.9.1" - sources."@webassemblyjs/helper-code-frame-1.9.1" - sources."@webassemblyjs/helper-fsm-1.9.1" - sources."@webassemblyjs/helper-module-context-1.9.1" - sources."@webassemblyjs/helper-wasm-bytecode-1.9.1" - sources."@webassemblyjs/helper-wasm-section-1.9.1" - sources."@webassemblyjs/ieee754-1.9.1" - sources."@webassemblyjs/leb128-1.9.1" - sources."@webassemblyjs/utf8-1.9.1" - sources."@webassemblyjs/wasm-edit-1.9.1" - sources."@webassemblyjs/wasm-gen-1.9.1" - sources."@webassemblyjs/wasm-opt-1.9.1" - sources."@webassemblyjs/wasm-parser-1.9.1" - sources."@webassemblyjs/wast-parser-1.9.1" - sources."@webassemblyjs/wast-printer-1.9.1" + sources."@types/estree-0.0.46" + sources."@types/json-schema-7.0.7" + sources."@types/node-14.14.22" + sources."@webassemblyjs/ast-1.11.0" + sources."@webassemblyjs/floating-point-hex-parser-1.11.0" + sources."@webassemblyjs/helper-api-error-1.11.0" + sources."@webassemblyjs/helper-buffer-1.11.0" + sources."@webassemblyjs/helper-numbers-1.11.0" + sources."@webassemblyjs/helper-wasm-bytecode-1.11.0" + sources."@webassemblyjs/helper-wasm-section-1.11.0" + sources."@webassemblyjs/ieee754-1.11.0" + sources."@webassemblyjs/leb128-1.11.0" + sources."@webassemblyjs/utf8-1.11.0" + sources."@webassemblyjs/wasm-edit-1.11.0" + sources."@webassemblyjs/wasm-gen-1.11.0" + sources."@webassemblyjs/wasm-opt-1.11.0" + sources."@webassemblyjs/wasm-parser-1.11.0" + sources."@webassemblyjs/wast-printer-1.11.0" sources."@xtuc/ieee754-1.2.0" sources."@xtuc/long-4.2.2" - sources."acorn-8.0.4" + sources."acorn-8.0.5" sources."ajv-6.12.6" sources."ajv-keywords-3.5.2" - sources."browserslist-4.16.0" + sources."browserslist-4.16.1" sources."buffer-from-1.1.1" - sources."caniuse-lite-1.0.30001173" + sources."caniuse-lite-1.0.30001180" sources."chrome-trace-event-1.0.2" sources."colorette-1.2.1" sources."commander-2.20.3" - sources."electron-to-chromium-1.3.634" - sources."enhanced-resolve-5.4.1" + sources."electron-to-chromium-1.3.645" + sources."enhanced-resolve-5.7.0" + sources."es-module-lexer-0.3.26" sources."escalade-3.1.1" sources."eslint-scope-5.1.1" (sources."esrecurse-4.3.0" // { @@ -108797,13 +108563,13 @@ in sources."jest-worker-26.6.2" sources."json-parse-better-errors-1.0.2" sources."json-schema-traverse-0.4.1" - sources."loader-runner-4.1.0" + sources."loader-runner-4.2.0" sources."locate-path-6.0.0" sources."merge-stream-2.0.0" sources."mime-db-1.45.0" sources."mime-types-2.1.28" sources."neo-async-2.6.2" - sources."node-releases-1.1.69" + sources."node-releases-1.1.70" sources."p-limit-3.1.0" sources."p-locate-5.0.0" sources."path-exists-4.0.0" @@ -108823,9 +108589,9 @@ in sources."source-map-0.7.3" ]; }) - sources."terser-webpack-plugin-5.0.3" + sources."terser-webpack-plugin-5.1.1" sources."tslib-1.14.1" - sources."uri-js-4.4.0" + sources."uri-js-4.4.1" sources."watchpack-2.1.0" sources."webpack-sources-2.2.0" sources."yocto-queue-0.1.0" @@ -108843,16 +108609,18 @@ in webpack-cli = nodeEnv.buildNodePackage { name = "webpack-cli"; packageName = "webpack-cli"; - version = "4.3.1"; + version = "4.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/webpack-cli/-/webpack-cli-4.3.1.tgz"; - sha512 = "/F4+9QNZM/qKzzL9/06Am8NXIkGV+/NqQ62Dx7DSqudxxpAgBqYn6V7+zp+0Y7JuWksKUbczRY3wMTd+7Uj6OA=="; + url = "https://registry.npmjs.org/webpack-cli/-/webpack-cli-4.4.0.tgz"; + sha512 = "/Qh07CXfXEkMu5S8wEpjuaw2Zj/CC0hf/qbTDp6N8N7JjdGuaOjZ7kttz+zhuJO/J5m7alQEhNk9lsc4rC6xgQ=="; }; dependencies = [ sources."@discoveryjs/json-ext-0.5.2" + sources."@webpack-cli/configtest-1.0.0" sources."@webpack-cli/info-1.2.1" - sources."@webpack-cli/serve-1.2.1" + sources."@webpack-cli/serve-1.2.2" sources."ansi-colors-4.1.1" + sources."clone-deep-4.0.1" sources."colorette-1.2.1" sources."commander-6.2.1" sources."cross-spawn-7.0.3" @@ -108868,10 +108636,12 @@ in sources."import-local-3.0.2" sources."interpret-2.2.0" sources."is-core-module-2.2.0" + sources."is-plain-object-2.0.4" sources."is-stream-2.0.0" sources."isexe-2.0.0" + sources."isobject-3.0.1" + sources."kind-of-6.0.3" sources."locate-path-5.0.0" - sources."lodash-4.17.20" sources."merge-stream-2.0.0" sources."mimic-fn-2.1.0" sources."npm-run-path-4.0.1" @@ -108887,13 +108657,15 @@ in sources."resolve-1.19.0" sources."resolve-cwd-3.0.0" sources."resolve-from-5.0.0" + sources."shallow-clone-3.0.1" sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" sources."signal-exit-3.0.3" sources."strip-final-newline-2.0.0" sources."v8-compile-cache-2.2.0" - sources."webpack-merge-4.2.2" + sources."webpack-merge-5.7.3" sources."which-2.0.2" + sources."wildcard-2.0.0" ]; buildInputs = globalBuildInputs; meta = { @@ -108908,15 +108680,15 @@ in webpack-dev-server = nodeEnv.buildNodePackage { name = "webpack-dev-server"; packageName = "webpack-dev-server"; - version = "3.11.1"; + version = "3.11.2"; src = fetchurl { - url = "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-3.11.1.tgz"; - sha512 = "u4R3mRzZkbxQVa+MBWi2uVpB5W59H3ekZAJsQlKUTdl7Elcah2EhygTPLmeFXybQkf9i2+L0kn7ik9SnXa6ihQ=="; + url = "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-3.11.2.tgz"; + sha512 = "A80BkuHRQfCiNtGBS1EMf2ChTUs0x+B3wGDFmOeT4rmJOHhHTCH2naNxIHhmkr0/UillP4U3yeIyv1pNp+QDLQ=="; }; dependencies = [ sources."@types/glob-7.1.3" sources."@types/minimatch-3.0.3" - sources."@types/node-14.14.20" + sources."@types/node-14.14.22" sources."accepts-1.3.7" sources."ajv-6.12.6" sources."ajv-errors-1.0.1" @@ -108968,7 +108740,7 @@ in sources."buffer-indexof-1.1.1" sources."bytes-3.0.0" sources."cache-base-1.0.1" - sources."call-bind-1.0.0" + sources."call-bind-1.0.2" sources."camelcase-5.3.1" sources."chokidar-2.1.8" (sources."class-utils-0.3.6" // { @@ -109045,8 +108817,6 @@ in sources."encodeurl-1.0.2" sources."end-of-stream-1.4.4" sources."errno-0.1.8" - sources."es-abstract-1.17.7" - sources."es-to-primitive-1.2.1" sources."escape-html-1.0.3" sources."etag-1.8.1" sources."eventemitter3-4.0.7" @@ -109103,7 +108873,7 @@ in ]; }) sources."find-up-3.0.0" - sources."follow-redirects-1.13.1" + sources."follow-redirects-1.13.2" sources."for-in-1.0.2" sources."forwarded-0.1.2" sources."fragment-cache-0.2.1" @@ -109112,7 +108882,7 @@ in sources."fsevents-1.2.13" sources."function-bind-1.1.1" sources."get-caller-file-2.0.5" - sources."get-intrinsic-1.0.2" + sources."get-intrinsic-1.1.0" sources."get-stream-4.1.0" sources."get-value-2.0.6" sources."glob-7.1.6" @@ -109161,7 +108931,6 @@ in sources."is-arguments-1.1.0" sources."is-binary-path-1.0.1" sources."is-buffer-1.1.6" - sources."is-callable-1.2.2" sources."is-data-descriptor-1.0.0" sources."is-date-object-1.0.2" sources."is-descriptor-1.0.2" @@ -109180,7 +108949,6 @@ in sources."is-plain-object-2.0.4" sources."is-regex-1.1.1" sources."is-stream-1.1.0" - sources."is-symbol-1.0.3" sources."is-windows-1.0.2" sources."is-wsl-1.1.0" sources."isarray-1.0.0" @@ -109232,11 +109000,9 @@ in sources."kind-of-3.2.2" ]; }) - sources."object-inspect-1.9.0" sources."object-is-1.1.4" sources."object-keys-1.1.1" sources."object-visit-1.0.1" - sources."object.assign-4.1.2" sources."object.pick-1.3.0" sources."obuf-1.1.2" sources."on-finished-2.3.0" @@ -109290,7 +109056,7 @@ in }) sources."readdirp-2.2.1" sources."regex-not-1.0.2" - sources."regexp.prototype.flags-1.3.0" + sources."regexp.prototype.flags-1.3.1" sources."remove-trailing-separator-1.1.0" sources."repeat-element-1.1.3" sources."repeat-string-1.6.1" @@ -109411,8 +109177,6 @@ in sources."strip-ansi-5.2.0" ]; }) - sources."string.prototype.trimend-1.0.3" - sources."string.prototype.trimstart-1.0.3" (sources."string_decoder-1.1.1" // { dependencies = [ sources."safe-buffer-5.1.2" @@ -109448,7 +109212,7 @@ in ]; }) sources."upath-1.2.0" - sources."uri-js-4.4.0" + sources."uri-js-4.4.1" sources."urix-0.1.0" (sources."url-0.11.0" // { dependencies = [ @@ -109464,7 +109228,7 @@ in sources."wbuf-1.7.3" (sources."webpack-dev-middleware-3.7.3" // { dependencies = [ - sources."mime-2.4.7" + sources."mime-2.5.0" ]; }) sources."webpack-log-2.0.0" @@ -109506,7 +109270,7 @@ in sources."@nodelib/fs.scandir-2.1.4" sources."@nodelib/fs.stat-2.0.4" sources."@nodelib/fs.walk-1.2.6" - sources."@types/json-schema-7.0.6" + sources."@types/json-schema-7.0.7" sources."ajv-6.12.6" sources."ajv-keywords-3.5.2" sources."array-union-2.1.0" @@ -109515,12 +109279,12 @@ in sources."dir-glob-3.0.1" sources."emojis-list-3.0.0" sources."fast-deep-equal-3.1.3" - sources."fast-glob-3.2.4" + sources."fast-glob-3.2.5" sources."fast-json-stable-stringify-2.1.0" sources."fastq-1.10.0" sources."fill-range-7.0.1" sources."glob-parent-5.1.1" - sources."globby-11.0.1" + sources."globby-11.0.2" sources."ignore-5.1.8" sources."is-extglob-2.1.1" sources."is-glob-4.0.1" @@ -109544,7 +109308,7 @@ in sources."serialize-javascript-5.0.1" sources."slash-3.0.0" sources."to-regex-range-5.0.1" - sources."uri-js-4.4.0" + sources."uri-js-4.4.1" sources."yocto-queue-0.1.0" ]; buildInputs = globalBuildInputs; @@ -109577,7 +109341,7 @@ in sources."@protobufjs/pool-1.1.0" sources."@protobufjs/utf8-1.1.0" sources."@types/long-4.0.1" - sources."@types/node-13.13.39" + sources."@types/node-13.13.40" sources."addr-to-ip-port-1.5.1" sources."airplay-js-0.3.0" sources."balanced-match-1.0.0" @@ -109655,7 +109419,7 @@ in ]; }) sources."core-util-is-1.0.2" - sources."create-torrent-4.4.2" + sources."create-torrent-4.4.3" sources."debug-2.6.9" sources."decompress-response-3.3.0" (sources."dlnacasts-0.1.0" // { @@ -109718,7 +109482,7 @@ in sources."mdns-js-packet-0.2.0" sources."mediasource-2.4.0" sources."memory-chunk-store-1.3.0" - sources."mime-2.4.7" + sources."mime-2.5.0" sources."mimic-response-1.0.1" sources."minimatch-3.0.4" sources."minimist-1.2.5" @@ -109742,7 +109506,7 @@ in sources."nodebmc-0.0.7" sources."on-finished-2.3.0" sources."once-1.4.0" - sources."open-7.3.0" + sources."open-7.3.1" sources."package-json-versionify-1.0.4" (sources."parse-torrent-7.1.3" // { dependencies = [ @@ -109845,7 +109609,7 @@ in sources."utp-native-2.2.2" sources."videostream-3.2.2" sources."vlc-command-1.2.0" - (sources."webtorrent-0.112.0" // { + (sources."webtorrent-0.112.2" // { dependencies = [ sources."debug-4.3.2" sources."decompress-response-6.0.0" @@ -109853,7 +109617,7 @@ in sources."magnet-uri-6.1.0" sources."mimic-response-3.1.0" sources."ms-2.1.2" - sources."parse-torrent-9.1.0" + sources."parse-torrent-9.1.1" sources."simple-get-4.0.0" ]; }) @@ -109922,10 +109686,10 @@ in yaml-language-server = nodeEnv.buildNodePackage { name = "yaml-language-server"; packageName = "yaml-language-server"; - version = "0.13.0"; + version = "0.14.0"; src = fetchurl { - url = "https://registry.npmjs.org/yaml-language-server/-/yaml-language-server-0.13.0.tgz"; - sha512 = "5FHW7dUAyIjEM3mRzIplE0pZut2K30cA+K7coaOxFxi82LTk/oiVLS4/AQFnOtGicSyoi4YOiRqpMZ04vgtuew=="; + url = "https://registry.npmjs.org/yaml-language-server/-/yaml-language-server-0.14.0.tgz"; + sha512 = "aMNzS7YoMrgG0QdCMonlrFS/fPiag4zVs9cJ7RB0ZzwiALB2446UFXwy6SaTmKfJq353rjGJ+d7j1HHKSX/IqA=="; }; dependencies = [ sources."agent-base-4.3.0" @@ -109963,7 +109727,7 @@ in sources."vscode-languageserver-types-3.16.0" sources."vscode-nls-4.1.2" sources."vscode-uri-2.1.2" - sources."yaml-language-server-parser-0.1.1" + sources."yaml-language-server-parser-0.1.2" ]; buildInputs = globalBuildInputs; meta = { @@ -110010,7 +109774,7 @@ in sources."@sindresorhus/is-0.7.0" sources."@types/glob-7.1.3" sources."@types/minimatch-3.0.3" - sources."@types/node-14.14.20" + sources."@types/node-14.14.22" sources."@types/normalize-package-data-2.4.0" sources."JSONStream-1.3.5" sources."aggregate-error-3.1.0" @@ -110039,11 +109803,7 @@ in sources."atob-2.1.2" sources."aws-sign2-0.7.0" sources."aws4-1.11.0" - (sources."axios-0.18.1" // { - dependencies = [ - sources."is-buffer-2.0.5" - ]; - }) + sources."axios-0.21.1" sources."balanced-match-1.0.0" (sources."base-0.11.2" // { dependencies = [ @@ -110136,7 +109896,7 @@ in sources."config-chain-1.1.12" sources."configstore-3.1.5" sources."copy-descriptor-0.1.1" - sources."core-js-3.8.2" + sources."core-js-3.8.3" sources."core-util-is-1.0.2" sources."create-error-class-3.0.2" sources."cross-spawn-6.0.5" @@ -110238,11 +109998,7 @@ in sources."find-up-2.1.0" sources."find-versions-2.0.0" sources."first-chunk-stream-2.0.0" - (sources."follow-redirects-1.5.10" // { - dependencies = [ - sources."debug-3.1.0" - ]; - }) + sources."follow-redirects-1.13.2" sources."for-in-1.0.2" sources."foreachasync-3.0.0" sources."forever-agent-0.6.1" @@ -110477,9 +110233,10 @@ in sources."mute-stream-0.0.7" sources."nanomatch-1.2.13" sources."nice-try-1.0.5" + sources."node-fetch-2.6.1" sources."normalize-package-data-2.5.0" sources."normalize-url-2.0.1" - sources."npm-api-1.0.0" + sources."npm-api-1.0.1" sources."npm-conf-1.1.3" (sources."npm-keyword-5.0.0" // { dependencies = [ @@ -110535,7 +110292,7 @@ in sources."p-try-1.0.0" sources."package-json-5.0.0" sources."pad-component-0.0.1" - sources."paged-request-2.0.1" + sources."paged-request-2.0.2" sources."parse-help-1.0.0" sources."parse-json-2.2.0" sources."pascalcase-0.1.1" @@ -110815,7 +110572,7 @@ in sources."untildify-3.0.3" sources."unzip-response-2.0.1" sources."update-notifier-2.5.0" - sources."uri-js-4.4.0" + sources."uri-js-4.4.1" sources."urix-0.1.0" sources."url-parse-lax-3.0.0" sources."url-to-options-1.0.1" @@ -110932,7 +110689,7 @@ in sources."p-limit-2.3.0" sources."p-locate-3.0.0" sources."p-try-2.2.0" - sources."parse-json-5.1.0" + sources."parse-json-5.2.0" (sources."path-type-3.0.0" // { dependencies = [ sources."pify-3.0.0" From c9c0ef0e35809c1438696fcf3fad29d93e536d37 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Sat, 23 Jan 2021 14:26:08 +0100 Subject: [PATCH 25/39] ejabberd: 20.03 -> 20.12 --- pkgs/servers/xmpp/ejabberd/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/servers/xmpp/ejabberd/default.nix b/pkgs/servers/xmpp/ejabberd/default.nix index 2fa1c913e27..1aca12aec48 100644 --- a/pkgs/servers/xmpp/ejabberd/default.nix +++ b/pkgs/servers/xmpp/ejabberd/default.nix @@ -24,12 +24,12 @@ let ctlpath = lib.makeBinPath [ bash gnused gnugrep coreutils util-linux procps ]; in stdenv.mkDerivation rec { - version = "20.03"; + version = "20.12"; pname = "ejabberd"; src = fetchurl { url = "https://www.process-one.net/downloads/downloads-action.php?file=/${version}/${pname}-${version}.tgz"; - sha256 = "0i013l9cygmgainfid298n6llhs3mblfklry3jw2a6irvhffym0s"; + sha256 = "sha256-nZxdYXRyv4UejPLHNT/p6CrvW22Koo7rZSi96KRjqFQ="; }; nativeBuildInputs = [ fakegit ]; @@ -76,7 +76,7 @@ in stdenv.mkDerivation rec { outputHashMode = "recursive"; outputHashAlgo = "sha256"; - outputHash = "0xwgi9hy6y0m8mwznl6px98kdmkcxg98k62zgqbaqd4paks5zwqa"; + outputHash = "sha256-0/hBgA+9rsDOBcvbROSpc5Xnw4JkYpuLCl2V+lJnieY="; }; configureFlags = From ffcf5e0f0fdefd044f530c1982eb3898c01727aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Thu, 17 Dec 2020 21:51:10 +0100 Subject: [PATCH 26/39] texlive: use python3 by default There is one python helper script still written for: Utility for writing Bengali in Rapid Roman Format. But this one does not seem super relevant --- pkgs/tools/typesetting/tex/texlive/bin.nix | 6 +++--- pkgs/tools/typesetting/tex/texlive/combine.nix | 2 +- pkgs/tools/typesetting/tex/texlive/default.nix | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/tools/typesetting/tex/texlive/bin.nix b/pkgs/tools/typesetting/tex/texlive/bin.nix index f66469f5ba4..fd1815efa94 100644 --- a/pkgs/tools/typesetting/tex/texlive/bin.nix +++ b/pkgs/tools/typesetting/tex/texlive/bin.nix @@ -2,7 +2,7 @@ , texlive , zlib, libiconv, libpng, libX11 , freetype, gd, libXaw, icu, ghostscript, libXpm, libXmu, libXext -, perl, perlPackages, python2Packages, pkg-config +, perl, perlPackages, python3Packages, pkg-config , poppler, libpaper, graphite2, zziplib, harfbuzz, potrace, gmp, mpfr , brotli, cairo, pixman, xorg, clisp, biber, woff2, xxHash , makeWrapper, shortenPerlShebang @@ -321,13 +321,13 @@ latexindent = perlPackages.buildPerlPackage rec { }; -pygmentex = python2Packages.buildPythonApplication rec { +pygmentex = python3Packages.buildPythonApplication rec { pname = "pygmentex"; inherit (src) version; src = lib.head (builtins.filter (p: p.tlType == "run") texlive.pygmentex.pkgs); - propagatedBuildInputs = with python2Packages; [ pygments chardet ]; + propagatedBuildInputs = with python3Packages; [ pygments chardet ]; dontBuild = true; diff --git a/pkgs/tools/typesetting/tex/texlive/combine.nix b/pkgs/tools/typesetting/tex/texlive/combine.nix index bf7b7952f51..9993263c1f6 100644 --- a/pkgs/tools/typesetting/tex/texlive/combine.nix +++ b/pkgs/tools/typesetting/tex/texlive/combine.nix @@ -29,7 +29,7 @@ let [ "de-macro" "pythontex" "dviasm" "texliveonfly" ]; pkgNeedsRuby = pkg: pkg.tlType == "run" && pkg.pname == "match-parens"; extraInputs = - lib.optional (lib.any pkgNeedsPython splitBin.wrong) python + lib.optional (lib.any pkgNeedsPython splitBin.wrong) python3 ++ lib.optional (lib.any pkgNeedsRuby splitBin.wrong) ruby; }; diff --git a/pkgs/tools/typesetting/tex/texlive/default.nix b/pkgs/tools/typesetting/tex/texlive/default.nix index cc30024ca0f..72b54f5ebef 100644 --- a/pkgs/tools/typesetting/tex/texlive/default.nix +++ b/pkgs/tools/typesetting/tex/texlive/default.nix @@ -4,7 +4,7 @@ */ { stdenv, lib, fetchurl, runCommand, writeText, buildEnv , callPackage, ghostscriptX, harfbuzz, poppler_min -, makeWrapper, python, ruby, perl +, makeWrapper, python3, ruby, perl , useFixedHashes ? true , recurseIntoAttrs }: @@ -25,7 +25,7 @@ let # function for creating a working environment from a set of TL packages combine = import ./combine.nix { inherit bin combinePkgs buildEnv lib makeWrapper writeText - stdenv python ruby perl; + stdenv python3 ruby perl; ghostscript = ghostscriptX; # could be without X, probably, but we use X above }; From a3f4db8679002e20cc33576b5ba80996cc7a3398 Mon Sep 17 00:00:00 2001 From: Scriptkiddi Date: Mon, 25 Jan 2021 15:54:44 +0100 Subject: [PATCH 27/39] nixos/dysnomia nixos/disnix: Drop modules --- nixos/modules/misc/ids.nix | 4 +- nixos/modules/module-list.nix | 2 - nixos/modules/services/misc/disnix.nix | 98 ------- nixos/modules/services/misc/dysnomia.nix | 257 ------------------ .../disnix/DisnixWebService/default.nix | 28 -- .../package-management/disnix/default.nix | 20 -- .../disnix/disnixos/default.nix | 20 -- .../disnix/dydisnix/default.nix | 27 -- .../disnix/dysnomia/default.nix | 71 ----- pkgs/top-level/aliases.nix | 5 + pkgs/top-level/all-packages.nix | 12 - 11 files changed, 7 insertions(+), 537 deletions(-) delete mode 100644 nixos/modules/services/misc/disnix.nix delete mode 100644 nixos/modules/services/misc/dysnomia.nix delete mode 100644 pkgs/tools/package-management/disnix/DisnixWebService/default.nix delete mode 100644 pkgs/tools/package-management/disnix/default.nix delete mode 100644 pkgs/tools/package-management/disnix/disnixos/default.nix delete mode 100644 pkgs/tools/package-management/disnix/dydisnix/default.nix delete mode 100644 pkgs/tools/package-management/disnix/dysnomia/default.nix diff --git a/nixos/modules/misc/ids.nix b/nixos/modules/misc/ids.nix index feb9c68301d..a0f5ce72f33 100644 --- a/nixos/modules/misc/ids.nix +++ b/nixos/modules/misc/ids.nix @@ -71,7 +71,7 @@ in #utmp = 29; # unused # ddclient = 30; # converted to DynamicUser = true davfs2 = 31; - #disnix = 33; # unused + #disnix = 33; # module removed osgi = 34; tor = 35; cups = 36; @@ -387,7 +387,7 @@ in utmp = 29; # ddclient = 30; # converted to DynamicUser = true davfs2 = 31; - disnix = 33; + #disnix = 33; # module removed osgi = 34; tor = 35; #cups = 36; # unused diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index 0f8a7ba7904..cc8ebd531ab 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -449,8 +449,6 @@ ./services/misc/devmon.nix ./services/misc/dictd.nix ./services/misc/dwm-status.nix - ./services/misc/dysnomia.nix - ./services/misc/disnix.nix ./services/misc/docker-registry.nix ./services/misc/domoticz.nix ./services/misc/errbot.nix diff --git a/nixos/modules/services/misc/disnix.nix b/nixos/modules/services/misc/disnix.nix deleted file mode 100644 index 41483d80a2d..00000000000 --- a/nixos/modules/services/misc/disnix.nix +++ /dev/null @@ -1,98 +0,0 @@ -# Disnix server -{ config, lib, pkgs, ... }: - -with lib; - -let - - cfg = config.services.disnix; - -in - -{ - - ###### interface - - options = { - - services.disnix = { - - enable = mkEnableOption "Disnix"; - - enableMultiUser = mkOption { - type = types.bool; - default = true; - description = "Whether to support multi-user mode by enabling the Disnix D-Bus service"; - }; - - useWebServiceInterface = mkEnableOption "the DisnixWebService interface running on Apache Tomcat"; - - package = mkOption { - type = types.path; - description = "The Disnix package"; - default = pkgs.disnix; - defaultText = "pkgs.disnix"; - }; - - enableProfilePath = mkEnableOption "exposing the Disnix profiles in the system's PATH"; - - profiles = mkOption { - type = types.listOf types.string; - default = [ "default" ]; - example = [ "default" ]; - description = "Names of the Disnix profiles to expose in the system's PATH"; - }; - }; - - }; - - ###### implementation - - config = mkIf cfg.enable { - dysnomia.enable = true; - - environment.systemPackages = [ pkgs.disnix ] ++ optional cfg.useWebServiceInterface pkgs.DisnixWebService; - environment.variables.PATH = lib.optionals cfg.enableProfilePath (map (profileName: "/nix/var/nix/profiles/disnix/${profileName}/bin" ) cfg.profiles); - - services.dbus.enable = true; - services.dbus.packages = [ pkgs.disnix ]; - - services.tomcat.enable = cfg.useWebServiceInterface; - services.tomcat.extraGroups = [ "disnix" ]; - services.tomcat.javaOpts = "${optionalString cfg.useWebServiceInterface "-Djava.library.path=${pkgs.libmatthew_java}/lib/jni"} "; - services.tomcat.sharedLibs = optional cfg.useWebServiceInterface "${pkgs.DisnixWebService}/share/java/DisnixConnection.jar" - ++ optional cfg.useWebServiceInterface "${pkgs.dbus_java}/share/java/dbus.jar"; - services.tomcat.webapps = optional cfg.useWebServiceInterface pkgs.DisnixWebService; - - users.groups.disnix.gid = config.ids.gids.disnix; - - systemd.services = { - disnix = mkIf cfg.enableMultiUser { - description = "Disnix server"; - wants = [ "dysnomia.target" ]; - wantedBy = [ "multi-user.target" ]; - after = [ "dbus.service" ] - ++ optional config.services.httpd.enable "httpd.service" - ++ optional config.services.mysql.enable "mysql.service" - ++ optional config.services.postgresql.enable "postgresql.service" - ++ optional config.services.tomcat.enable "tomcat.service" - ++ optional config.services.svnserve.enable "svnserve.service" - ++ optional config.services.mongodb.enable "mongodb.service" - ++ optional config.services.influxdb.enable "influxdb.service"; - - restartIfChanged = false; - - path = [ config.nix.package cfg.package config.dysnomia.package "/run/current-system/sw" ]; - - environment = { - HOME = "/root"; - } - // (if config.environment.variables ? DYSNOMIA_CONTAINERS_PATH then { inherit (config.environment.variables) DYSNOMIA_CONTAINERS_PATH; } else {}) - // (if config.environment.variables ? DYSNOMIA_MODULES_PATH then { inherit (config.environment.variables) DYSNOMIA_MODULES_PATH; } else {}); - - serviceConfig.ExecStart = "${cfg.package}/bin/disnix-service"; - }; - - }; - }; -} diff --git a/nixos/modules/services/misc/dysnomia.nix b/nixos/modules/services/misc/dysnomia.nix deleted file mode 100644 index eb94791fbbf..00000000000 --- a/nixos/modules/services/misc/dysnomia.nix +++ /dev/null @@ -1,257 +0,0 @@ -{pkgs, lib, config, ...}: - -with lib; - -let - cfg = config.dysnomia; - - printProperties = properties: - concatMapStrings (propertyName: - let - property = properties.${propertyName}; - in - if isList property then "${propertyName}=(${lib.concatMapStrings (elem: "\"${toString elem}\" ") (properties.${propertyName})})\n" - else "${propertyName}=\"${toString property}\"\n" - ) (builtins.attrNames properties); - - properties = pkgs.stdenv.mkDerivation { - name = "dysnomia-properties"; - buildCommand = '' - cat > $out << "EOF" - ${printProperties cfg.properties} - EOF - ''; - }; - - containersDir = pkgs.stdenv.mkDerivation { - name = "dysnomia-containers"; - buildCommand = '' - mkdir -p $out - cd $out - - ${concatMapStrings (containerName: - let - containerProperties = cfg.containers.${containerName}; - in - '' - cat > ${containerName} < /etc/systemd-mutable/system/dysnomia.target - fi - ''; - }; -} diff --git a/pkgs/tools/package-management/disnix/DisnixWebService/default.nix b/pkgs/tools/package-management/disnix/DisnixWebService/default.nix deleted file mode 100644 index ba3c51822e9..00000000000 --- a/pkgs/tools/package-management/disnix/DisnixWebService/default.nix +++ /dev/null @@ -1,28 +0,0 @@ -{lib, stdenv, fetchurl, apacheAnt, jdk, axis2, dbus_java }: - -stdenv.mkDerivation { - name = "DisnixWebService-0.10"; - src = fetchurl { - url = "https://github.com/svanderburg/DisnixWebService/releases/download/DisnixWebService-0.10/DisnixWebService-0.10.tar.gz"; - sha256 = "0m451msd127ay09yb8rbflg68szm8s4hh65j99f7s3mz375vc114"; - }; - buildInputs = [ apacheAnt jdk ]; - PREFIX = "\${env.out}"; - AXIS2_LIB = "${axis2}/lib"; - AXIS2_WEBAPP = "${axis2}/webapps/axis2"; - DBUS_JAVA_LIB = "${dbus_java}/share/java"; - prePatch = '' - sed -i -e "s|#JAVA_HOME=|JAVA_HOME=${jdk}|" \ - -e "s|#AXIS2_LIB=|AXIS2_LIB=${axis2}/lib|" \ - scripts/disnix-soap-client - ''; - buildPhase = "ant"; - installPhase = "ant install"; - - meta = { - description = "A SOAP interface and client for Disnix"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.sander ]; - platforms = lib.platforms.linux; - }; -} diff --git a/pkgs/tools/package-management/disnix/default.nix b/pkgs/tools/package-management/disnix/default.nix deleted file mode 100644 index 14be0924f27..00000000000 --- a/pkgs/tools/package-management/disnix/default.nix +++ /dev/null @@ -1,20 +0,0 @@ -{ lib, stdenv, fetchurl, pkg-config, glib, libxml2, libxslt, getopt, gettext, nixUnstable, dysnomia, libintl, libiconv, help2man, doclifter, docbook5, dblatex, doxygen, libnixxml, autoreconfHook }: - -stdenv.mkDerivation { - name = "disnix-0.10"; - - src = fetchurl { - url = "https://github.com/svanderburg/disnix/releases/download/disnix-0.10/disnix-0.10.tar.gz"; - sha256 = "0mciqbc2h60nc0i6pd36w0m2yr96v97ybrzrqzh5f67ac1f0gqwg"; - }; - - nativeBuildInputs = [ pkg-config ]; - buildInputs = [ glib libxml2 libxslt getopt nixUnstable libintl libiconv dysnomia ]; - - meta = { - description = "A Nix-based distributed service deployment tool"; - license = lib.licenses.lgpl21Plus; - maintainers = with lib.maintainers; [ sander tomberek ]; - platforms = lib.platforms.unix; - }; -} diff --git a/pkgs/tools/package-management/disnix/disnixos/default.nix b/pkgs/tools/package-management/disnix/disnixos/default.nix deleted file mode 100644 index 1b9d2eaefcd..00000000000 --- a/pkgs/tools/package-management/disnix/disnixos/default.nix +++ /dev/null @@ -1,20 +0,0 @@ -{ lib, stdenv, fetchurl, dysnomia, disnix, socat, pkg-config, getopt }: - -stdenv.mkDerivation { - name = "disnixos-0.9"; - - src = fetchurl { - url = "https://github.com/svanderburg/disnixos/releases/download/disnixos-0.9/disnixos-0.9.tar.gz"; - sha256 = "0vllm5a8d9dvz5cjiq1mmkc4r4vnljabq42ng0ml85sjn0w7xvm7"; - }; - - nativeBuildInputs = [ pkg-config ]; - buildInputs = [ socat dysnomia disnix getopt ]; - - meta = { - description = "Provides complementary NixOS infrastructure deployment to Disnix"; - license = lib.licenses.lgpl21Plus; - maintainers = [ lib.maintainers.sander ]; - platforms = lib.platforms.linux; - }; -} diff --git a/pkgs/tools/package-management/disnix/dydisnix/default.nix b/pkgs/tools/package-management/disnix/dydisnix/default.nix deleted file mode 100644 index b4c3851a50f..00000000000 --- a/pkgs/tools/package-management/disnix/dydisnix/default.nix +++ /dev/null @@ -1,27 +0,0 @@ -{ lib, stdenv, fetchFromGitHub, autoconf, automake, libtool , pkg-config, glib, libxml2, libxslt, getopt, libiconv, gettext, nix, disnix, libnixxml }: - -stdenv.mkDerivation rec { - version="2020-07-04"; - name = "dydisnix-${version}"; - - src = fetchFromGitHub { - owner = "svanderburg"; - repo = "dydisnix"; - rev = "e99091f1c2329d562097e35faedee80622d387f0"; - sha256 = "sha256-XKab2hNGtWDkIEMxE1vMvqQBTP9BvHTabBVfzpH57h0="; - }; - - nativeBuildInputs = [ pkg-config autoconf automake libtool ]; - buildInputs = [ glib libxml2 libxslt getopt nix disnix libiconv gettext libnixxml ]; - preConfigure = '' - ./bootstrap - ''; - - meta = { - description = "A toolset enabling self-adaptive redeployment on top of Disnix"; - longDescription = "Dynamic Disnix is a (very experimental!) prototype extension framework for Disnix supporting dynamic (re)deployment of service-oriented systems."; - license = lib.licenses.lgpl21Plus; - maintainers = [ lib.maintainers.tomberek ]; - platforms = lib.platforms.unix; - }; -} diff --git a/pkgs/tools/package-management/disnix/dysnomia/default.nix b/pkgs/tools/package-management/disnix/dysnomia/default.nix deleted file mode 100644 index 56ba16afb47..00000000000 --- a/pkgs/tools/package-management/disnix/dysnomia/default.nix +++ /dev/null @@ -1,71 +0,0 @@ -{ lib, stdenv, fetchurl, netcat -, systemd ? null, ejabberd ? null, mysql ? null, postgresql ? null, subversion ? null, mongodb ? null, mongodb-tools ? null, influxdb ? null, supervisor ? null, docker ? null -, enableApacheWebApplication ? false -, enableAxis2WebService ? false -, enableEjabberdDump ? false -, enableMySQLDatabase ? false -, enablePostgreSQLDatabase ? false -, enableSubversionRepository ? false -, enableTomcatWebApplication ? false -, enableMongoDatabase ? false -, enableInfluxDatabase ? false -, enableSupervisordProgram ? false -, enableDockerContainer ? true -, enableLegacy ? false -, catalinaBaseDir ? "/var/tomcat" -, jobTemplate ? "systemd" -, getopt -}: - -assert enableMySQLDatabase -> mysql != null; -assert enablePostgreSQLDatabase -> postgresql != null; -assert enableSubversionRepository -> subversion != null; -assert enableEjabberdDump -> ejabberd != null; -assert enableMongoDatabase -> (mongodb != null && mongodb-tools != null); -assert enableInfluxDatabase -> influxdb != null; -assert enableSupervisordProgram -> supervisor != null; -assert enableDockerContainer -> docker != null; - -stdenv.mkDerivation { - name = "dysnomia-0.10"; - src = fetchurl { - url = "https://github.com/svanderburg/dysnomia/releases/download/dysnomia-0.10/dysnomia-0.10.tar.gz"; - sha256 = "19zg4nhn0f9v4i7c9hhan1i4xv3ljfpl2d0s84ph8byiscvhyrna"; - }; - - preConfigure = if enableEjabberdDump then "export PATH=$PATH:${ejabberd}/sbin" else ""; - - configureFlags = [ - (if enableApacheWebApplication then "--with-apache" else "--without-apache") - (if enableAxis2WebService then "--with-axis2" else "--without-axis2") - (if enableEjabberdDump then "--with-ejabberd" else "--without-ejabberd") - (if enableMySQLDatabase then "--with-mysql" else "--without-mysql") - (if enablePostgreSQLDatabase then "--with-postgresql" else "--without-postgresql") - (if enableSubversionRepository then "--with-subversion" else "--without-subversion") - (if enableTomcatWebApplication then "--with-tomcat=${catalinaBaseDir}" else "--without-tomcat") - (if enableMongoDatabase then "--with-mongodb" else "--without-mongodb") - (if enableInfluxDatabase then "--with-influxdb" else "--without-influxdb") - (if enableSupervisordProgram then "--with-supervisord" else "--without-supervisord") - (if enableDockerContainer then "--with-docker" else "--without-docker") - "--with-job-template=${jobTemplate}" - ] ++ lib.optional enableLegacy "--enable-legacy"; - - buildInputs = [ getopt netcat ] - ++ lib.optional stdenv.isLinux systemd - ++ lib.optional enableEjabberdDump ejabberd - ++ lib.optional enableMySQLDatabase mysql.out - ++ lib.optional enablePostgreSQLDatabase postgresql - ++ lib.optional enableSubversionRepository subversion - ++ lib.optional enableMongoDatabase mongodb - ++ lib.optional enableMongoDatabase mongodb-tools - ++ lib.optional enableInfluxDatabase influxdb - ++ lib.optional enableSupervisordProgram supervisor - ++ lib.optional enableDockerContainer docker; - - meta = { - description = "Automated deployment of mutable components and services for Disnix"; - license = lib.licenses.mit; - maintainers = [ lib.maintainers.sander ]; - platforms = lib.platforms.unix; - }; -} diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index 2ce4245ba30..21ef7acf4b0 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -123,6 +123,9 @@ mapAliases ({ dbus_glib = dbus-glib; # added 2018-02-25 dbus_libs = dbus; # added 2018-04-25 diffuse = throw "diffuse has been removed from nixpkgs, as it's unmaintained"; # added 2019-12-10 + disnix = throw "disnix has been removed."; # added 2021-01-27 + disnixos = throw "disnixos has been removed."; # added 2021-01-27 + DisnixWebService = throw "DisnixWebService has been removed."; # added 2021-01-27 dbus_tools = dbus.out; # added 2018-04-25 deadbeef-mpris2-plugin = deadbeefPlugins.mpris2; # added 2018-02-23 deadpixi-sam = deadpixi-sam-unstable; @@ -139,6 +142,8 @@ mapAliases ({ docker_compose = docker-compose; # 2018-11-10 draftsight = throw "draftsight has been removed, no longer available as freeware"; # added 2020-08-14 dvb_apps = throw "dvb_apps has been removed."; # added 2020-11-03 + dydisnix = throw "dydisnix has been removed."; # added 2021-01-27 + dysnomia = throw "dysnomia has been removed."; # added 2021-01-27 dwarf_fortress = dwarf-fortress; # added 2016-01-23 elasticmq = throw "elasticmq has been removed in favour of elasticmq-server-bin"; # added 2021-01-17 emacsPackagesGen = emacsPackagesFor; # added 2018-08-18 diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index bb16dd7c9ef..cf9f66c3dae 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -28874,18 +28874,6 @@ in solfege = python3Packages.callPackage ../misc/solfege { }; - disnix = callPackage ../tools/package-management/disnix { }; - - dysnomia = callPackage ../tools/package-management/disnix/dysnomia (config.disnix or { - inherit (pythonPackages) supervisor; - }); - - dydisnix = callPackage ../tools/package-management/disnix/dydisnix { }; - - disnixos = callPackage ../tools/package-management/disnix/disnixos { }; - - DisnixWebService = callPackage ../tools/package-management/disnix/DisnixWebService { }; - lkproof = callPackage ../tools/typesetting/tex/lkproof { }; lice = callPackage ../tools/misc/lice {}; From 63bc85029a46c2b17d45a389c0e41830742850ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Wed, 27 Jan 2021 11:41:06 +0100 Subject: [PATCH 28/39] abcmidi: 2021.01.21 -> 2021.01.25 --- pkgs/tools/audio/abcmidi/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/audio/abcmidi/default.nix b/pkgs/tools/audio/abcmidi/default.nix index cb856ab72d0..1478aa8c1e3 100644 --- a/pkgs/tools/audio/abcmidi/default.nix +++ b/pkgs/tools/audio/abcmidi/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { pname = "abcMIDI"; - version = "2021.01.21"; + version = "2021.01.25"; src = fetchzip { url = "https://ifdo.ca/~seymour/runabc/${pname}-${version}.zip"; - sha256 = "184d59pc60dax60j3nzcsr5kflaygbjpbrwg6r4bky0q0sg17z5i"; + sha256 = "1c2jx03ssm9yyv6rgr5wfv88ivfgdgq3889yaghjyvllm3nv9380"; }; # There is also a file called "makefile" which seems to be preferred by the standard build phase From 8e8ef2acf0d530057c501e57c3744b1bb9605747 Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Wed, 27 Jan 2021 06:29:00 -0500 Subject: [PATCH 29/39] jetbrains-mono: 2.221 -> 2.225 https://github.com/JetBrains/JetBrainsMono/releases/tag/v2.225 --- pkgs/data/fonts/jetbrains-mono/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/data/fonts/jetbrains-mono/default.nix b/pkgs/data/fonts/jetbrains-mono/default.nix index 42012e43d4b..0ba7fd835c3 100644 --- a/pkgs/data/fonts/jetbrains-mono/default.nix +++ b/pkgs/data/fonts/jetbrains-mono/default.nix @@ -1,14 +1,14 @@ { lib, fetchzip }: let - version = "2.221"; + version = "2.225"; in fetchzip { name = "JetBrainsMono-${version}"; url = "https://github.com/JetBrains/JetBrainsMono/releases/download/v${version}/JetBrainsMono-${version}.zip"; - sha256 = "1in3znnj0i0yfwj93ncxi3s1cp9lhgwnv2r14br47rr7vik4zjr6"; + sha256 = "1k8xmjaingz50626hd73hqbp196kg3zndiy0aqb88z5cw9nd0fva"; postFetch = '' mkdir -p $out/share/fonts From 75d987a4f4e7928d516be1aa3bb70f3bb0867682 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 27 Jan 2021 13:54:45 +0100 Subject: [PATCH 30/39] tfsec: 0.36.10 -> 0.37.1 --- pkgs/development/tools/analysis/tfsec/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/analysis/tfsec/default.nix b/pkgs/development/tools/analysis/tfsec/default.nix index 7d66264564b..c4d22ecd89b 100644 --- a/pkgs/development/tools/analysis/tfsec/default.nix +++ b/pkgs/development/tools/analysis/tfsec/default.nix @@ -2,13 +2,13 @@ buildGoPackage rec { pname = "tfsec"; - version = "0.36.10"; + version = "0.37.1"; src = fetchFromGitHub { owner = "tfsec"; repo = pname; rev = "v${version}"; - sha256 = "11kv13d4cw515r79azfha1ksmvsha1rvg0jak9nvz9ggivyn0s7a"; + sha256 = "sha256-ZYJqnyIFwyPODFqXAZp1ep0Ofl/JH2F07gqPx4WZ7mo="; }; goPackagePath = "github.com/tfsec/tfsec"; From 82454e9df8d54c5afaa23055b4fbc656e347c71e Mon Sep 17 00:00:00 2001 From: Ben Siraphob Date: Wed, 27 Jan 2021 17:21:31 +0700 Subject: [PATCH 31/39] treewide: remove implicit use of stdenv.lib --- pkgs/applications/networking/irc/wraith/default.nix | 9 +++------ pkgs/applications/science/logic/coq/default.nix | 2 +- .../version-management/cvs-fast-export/default.nix | 2 +- .../version-management/reposurgeon/default.nix | 2 +- pkgs/build-support/coq/default.nix | 2 +- pkgs/build-support/coq/meta-fetch/default.nix | 5 +++-- pkgs/development/compilers/dmd/binary.nix | 7 ++++--- pkgs/development/compilers/ldc/binary.nix | 9 +++++---- pkgs/development/compilers/nextpnr/default.nix | 4 ++-- pkgs/development/libraries/libftdi/default.nix | 6 +++--- pkgs/development/ocaml-modules/elpi/default.nix | 2 +- pkgs/misc/emulators/mame/default.nix | 4 +--- pkgs/tools/filesystems/ceph/default.nix | 9 ++++----- pkgs/tools/filesystems/irods/common.nix | 6 ++---- pkgs/tools/filesystems/irods/default.nix | 8 +++----- 15 files changed, 35 insertions(+), 42 deletions(-) diff --git a/pkgs/applications/networking/irc/wraith/default.nix b/pkgs/applications/networking/irc/wraith/default.nix index a4802c31ed2..3b1fa79aa26 100644 --- a/pkgs/applications/networking/irc/wraith/default.nix +++ b/pkgs/applications/networking/irc/wraith/default.nix @@ -1,9 +1,6 @@ -{ stdenv, fetchurl, openssl }: +{ lib, stdenv, fetchurl, openssl }: -with stdenv; -with lib; - -mkDerivation rec { +stdenv.mkDerivation rec { pname = "wraith"; version = "1.4.7"; src = fetchurl { @@ -25,7 +22,7 @@ mkDerivation rec { ln -s wraith $out/bin/hub ''; - meta = { + meta = with lib; { description = "An IRC channel management bot written purely in C/C++"; longDescription = '' Wraith is an IRC channel management bot written purely in C/C++. It has diff --git a/pkgs/applications/science/logic/coq/default.nix b/pkgs/applications/science/logic/coq/default.nix index 66abfaebeef..7a5c1e4da14 100644 --- a/pkgs/applications/science/logic/coq/default.nix +++ b/pkgs/applications/science/logic/coq/default.nix @@ -45,7 +45,7 @@ let }; releaseRev = v: "V${v}"; fetched = import ../../../../build-support/coq/meta-fetch/default.nix - { inherit stdenv fetchzip; } + { inherit lib stdenv fetchzip; } { inherit release releaseRev; location = { owner = "coq"; repo = "coq";}; } args.version; version = fetched.version; diff --git a/pkgs/applications/version-management/cvs-fast-export/default.nix b/pkgs/applications/version-management/cvs-fast-export/default.nix index cbd630094f0..f4957a82d44 100644 --- a/pkgs/applications/version-management/cvs-fast-export/default.nix +++ b/pkgs/applications/version-management/cvs-fast-export/default.nix @@ -1,4 +1,4 @@ -{stdenv, fetchurl, makeWrapper, flex, bison, +{lib, stdenv, fetchurl, makeWrapper, flex, bison, asciidoc, docbook_xml_dtd_45, docbook_xsl, libxml2, libxslt, python3, rcs, cvs, git, diff --git a/pkgs/applications/version-management/reposurgeon/default.nix b/pkgs/applications/version-management/reposurgeon/default.nix index f52fd30d839..3e526d5ac7c 100644 --- a/pkgs/applications/version-management/reposurgeon/default.nix +++ b/pkgs/applications/version-management/reposurgeon/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, makeWrapper, python27Packages, git +{ lib, stdenv, fetchurl, makeWrapper, python27Packages, git , docbook_xml_dtd_412, docbook_xsl, asciidoc, xmlto, pypy , breezy ? null, cvs ? null, darcs ? null, fossil ? null , mercurial ? null, monotone ? null, rcs ? null diff --git a/pkgs/build-support/coq/default.nix b/pkgs/build-support/coq/default.nix index 7e925e2473e..8d86602bf38 100644 --- a/pkgs/build-support/coq/default.nix +++ b/pkgs/build-support/coq/default.nix @@ -35,7 +35,7 @@ let "extraInstallFlags" "setCOQBIN" "mlPlugin" "dropAttrs" "dropDerivationAttrs" "keepAttrs" ] ++ dropAttrs) keepAttrs; fetch = import ../coq/meta-fetch/default.nix - { inherit stdenv fetchzip; } ({ + { inherit lib stdenv fetchzip; } ({ inherit release releaseRev; location = { inherit domain owner repo; }; } // optionalAttrs (args?fetcher) {inherit fetcher;}); diff --git a/pkgs/build-support/coq/meta-fetch/default.nix b/pkgs/build-support/coq/meta-fetch/default.nix index 580d58395ef..b01ae72a208 100644 --- a/pkgs/build-support/coq/meta-fetch/default.nix +++ b/pkgs/build-support/coq/meta-fetch/default.nix @@ -1,5 +1,6 @@ -{ stdenv, fetchzip }@args: -let lib = import ../extra-lib.nix {inherit (args.stdenv) lib;}; in +{ lib, stdenv, fetchzip }@args: +let lib' = lib; in +let lib = import ../extra-lib.nix {lib = lib';}; in with builtins; with lib; let default-fetcher = {domain ? "github.com", owner ? "", repo, rev, name ? "source", sha256 ? null, ...}@args: diff --git a/pkgs/development/compilers/dmd/binary.nix b/pkgs/development/compilers/dmd/binary.nix index 2ff2b35060b..de0964155fc 100644 --- a/pkgs/development/compilers/dmd/binary.nix +++ b/pkgs/development/compilers/dmd/binary.nix @@ -1,10 +1,11 @@ -{ stdenv, fetchurl, curl, tzdata, autoPatchelfHook, fixDarwinDylibNames, glibc +{ lib, stdenv, fetchurl, curl, tzdata, autoPatchelfHook, fixDarwinDylibNames, glibc , version, hashes }: -with stdenv; + let + inherit (stdenv) hostPlatform; OS = if hostPlatform.isDarwin then "osx" else hostPlatform.parsed.kernel.name; MODEL = toString hostPlatform.parsed.cpu.bits; -in mkDerivation { +in stdenv.mkDerivation { pname = "dmd-bootstrap"; inherit version; diff --git a/pkgs/development/compilers/ldc/binary.nix b/pkgs/development/compilers/ldc/binary.nix index cbdb56efb17..3a07009296a 100644 --- a/pkgs/development/compilers/ldc/binary.nix +++ b/pkgs/development/compilers/ldc/binary.nix @@ -1,10 +1,11 @@ -{ stdenv, fetchurl, curl, tzdata, autoPatchelfHook, fixDarwinDylibNames, libxml2 +{ lib, stdenv, fetchurl, curl, tzdata, autoPatchelfHook, fixDarwinDylibNames, libxml2 , version, hashes }: -with stdenv; + let - OS = if hostPlatform.isDarwin then "osx" else hostPlatform.parsed.kernel.name; + inherit (stdenv) hostPlatform; + OS = if stdenv.hostPlatform.isDarwin then "osx" else hostPlatform.parsed.kernel.name; ARCH = toString hostPlatform.parsed.cpu.name; -in mkDerivation { +in stdenv.mkDerivation { pname = "ldc-bootstrap"; inherit version; diff --git a/pkgs/development/compilers/nextpnr/default.nix b/pkgs/development/compilers/nextpnr/default.nix index ebb6db31d5d..efb29985452 100644 --- a/pkgs/development/compilers/nextpnr/default.nix +++ b/pkgs/development/compilers/nextpnr/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, cmake +{ lib, stdenv, fetchFromGitHub, cmake , boost, python3, eigen , icestorm, trellis , llvmPackages @@ -12,7 +12,7 @@ let boostPython = boost.override { python = python3; enablePython = true; }; in -with stdenv; mkDerivation rec { +stdenv.mkDerivation rec { pname = "nextpnr"; version = "2021.01.02"; diff --git a/pkgs/development/libraries/libftdi/default.nix b/pkgs/development/libraries/libftdi/default.nix index 88c848397de..0326b9c4f64 100644 --- a/pkgs/development/libraries/libftdi/default.nix +++ b/pkgs/development/libraries/libftdi/default.nix @@ -1,6 +1,6 @@ -{stdenv, fetchurl, libusb-compat-0_1}: +{lib, stdenv, fetchurl, libusb-compat-0_1}: -with stdenv; mkDerivation rec { +stdenv.mkDerivation rec { name = "libftdi-0.20"; src = fetchurl { @@ -14,7 +14,7 @@ with stdenv; mkDerivation rec { # Hack to avoid TMPDIR in RPATHs. preFixup = ''rm -rf "$(pwd)" ''; - configureFlags = lib.optional (!isDarwin) "--with-async-mode"; + configureFlags = lib.optional (!stdenv.isDarwin) "--with-async-mode"; # allow async mode. from ubuntu. see: # https://bazaar.launchpad.net/~ubuntu-branches/ubuntu/trusty/libftdi/trusty/view/head:/debian/patches/04_async_mode.diff diff --git a/pkgs/development/ocaml-modules/elpi/default.nix b/pkgs/development/ocaml-modules/elpi/default.nix index 6f0d355fed5..264df776e46 100644 --- a/pkgs/development/ocaml-modules/elpi/default.nix +++ b/pkgs/development/ocaml-modules/elpi/default.nix @@ -4,7 +4,7 @@ }: with lib; let fetched = import ../../../build-support/coq/meta-fetch/default.nix - {inherit stdenv fetchzip; } ({ + {inherit lib stdenv fetchzip; } ({ release."1.12.0".sha256 = "1agisdnaq9wrw3r73xz14yrq3wx742i6j8i5icjagqk0ypmly2is"; release."1.11.4".sha256 = "1m0jk9swcs3jcrw5yyw5343v8mgax238cjb03s8gc4wipw1fn9f5"; releaseRev = v: "v${v}"; diff --git a/pkgs/misc/emulators/mame/default.nix b/pkgs/misc/emulators/mame/default.nix index c7ac7a65ccd..b50181a4d98 100644 --- a/pkgs/misc/emulators/mame/default.nix +++ b/pkgs/misc/emulators/mame/default.nix @@ -1,10 +1,8 @@ -{ stdenv, mkDerivation, fetchFromGitHub, makeDesktopItem, makeWrapper +{ lib, stdenv, mkDerivation, fetchFromGitHub, makeDesktopItem, makeWrapper , python, pkg-config, SDL2, SDL2_ttf, alsaLib, which, qtbase, libXinerama , libpcap, CoreAudioKit, ForceFeedback , installShellFiles }: -with stdenv; - let majorVersion = "0"; minorVersion = "226"; diff --git a/pkgs/tools/filesystems/ceph/default.nix b/pkgs/tools/filesystems/ceph/default.nix index c11828e24ca..61cc4573693 100644 --- a/pkgs/tools/filesystems/ceph/default.nix +++ b/pkgs/tools/filesystems/ceph/default.nix @@ -1,4 +1,4 @@ -{ stdenv, runCommand, fetchurl +{ lib, stdenv, runCommand, fetchurl , fetchpatch , ensureNewerSourcesHook , cmake, pkg-config @@ -36,7 +36,6 @@ # We must have one crypto library assert cryptopp != null || (nss != null && nspr != null); -with stdenv; with lib; let shouldUsePkg = pkg: if pkg != null && pkg.meta.available then pkg else null; @@ -76,7 +75,7 @@ let none = [ ]; }; - getMeta = description: { + getMeta = description: with lib; { homepage = "https://ceph.com/"; inherit description; license = with licenses; [ lgpl21 gpl2 bsd3 mit publicDomain ]; @@ -148,11 +147,11 @@ in rec { boost ceph-python-env libxml2 optYasm optLibatomic_ops optLibs3 malloc zlib openldap lttng-ust babeltrace gperf gtest cunit snappy rocksdb lz4 oathToolkit leveldb libnl libcap_ng rdkafka - ] ++ optionals stdenv.isLinux [ + ] ++ lib.optionals stdenv.isLinux [ linuxHeaders util-linux libuuid udev keyutils optLibaio optLibxfs optZfs # ceph 14 rdma-core rabbitmq-c - ] ++ optionals hasRadosgw [ + ] ++ lib.optionals hasRadosgw [ optFcgi optExpat optCurl optFuse optLibedit ]; diff --git a/pkgs/tools/filesystems/irods/common.nix b/pkgs/tools/filesystems/irods/common.nix index 24697aaf821..7b7eb7ba05a 100644 --- a/pkgs/tools/filesystems/irods/common.nix +++ b/pkgs/tools/filesystems/irods/common.nix @@ -1,9 +1,7 @@ -{ stdenv, bzip2, zlib, autoconf, automake, cmake, gnumake, help2man , texinfo, libtool , cppzmq , libarchive, avro-cpp, boost, jansson, zeromq, openssl, pam, libiodbc, kerberos, gcc, libcxx, which, catch2 }: +{ lib, stdenv, bzip2, zlib, autoconf, automake, cmake, gnumake, help2man , texinfo, libtool , cppzmq , libarchive, avro-cpp, boost, jansson, zeromq, openssl, pam, libiodbc, kerberos, gcc, libcxx, which, catch2 }: # Common attributes of irods packages -with stdenv; - { nativeBuildInputs = [ autoconf automake cmake gnumake help2man texinfo which gcc ]; buildInputs = [ bzip2 zlib libtool cppzmq libarchive avro-cpp jansson zeromq openssl pam libiodbc kerberos boost libcxx catch2 ]; @@ -35,7 +33,7 @@ with stdenv; " ''; - meta = { + meta = with lib; { description = "Integrated Rule-Oriented Data System (iRODS)"; longDescription = '' The Integrated Rule-Oriented Data System (iRODS) is open source data management diff --git a/pkgs/tools/filesystems/irods/default.nix b/pkgs/tools/filesystems/irods/default.nix index 0dce22b8bbb..fe7a0d73f67 100644 --- a/pkgs/tools/filesystems/irods/default.nix +++ b/pkgs/tools/filesystems/irods/default.nix @@ -1,13 +1,11 @@ -{ stdenv, fetchFromGitHub, bzip2, zlib, autoconf, automake, cmake, gnumake, help2man , texinfo, libtool , cppzmq , libarchive, avro-cpp_llvm, boost, jansson, zeromq, openssl , pam, libiodbc, kerberos, gcc, libcxx, which, catch2 }: - -with stdenv; +{ lib, stdenv, fetchFromGitHub, bzip2, zlib, autoconf, automake, cmake, gnumake, help2man , texinfo, libtool , cppzmq , libarchive, avro-cpp_llvm, boost, jansson, zeromq, openssl , pam, libiodbc, kerberos, gcc, libcxx, which, catch2 }: let avro-cpp=avro-cpp_llvm; in let common = import ./common.nix { - inherit stdenv bzip2 zlib autoconf automake cmake gnumake + inherit lib stdenv bzip2 zlib autoconf automake cmake gnumake help2man texinfo libtool cppzmq libarchive jansson zeromq openssl pam libiodbc kerberos gcc libcxx boost avro-cpp which catch2; @@ -83,7 +81,7 @@ in rec { ''; cmakeFlags = common.cmakeFlags ++ [ - "-DCMAKE_INSTALL_PREFIX=${out}" + "-DCMAKE_INSTALL_PREFIX=${stdenv.out}" "-DIRODS_DIR=${irods}/lib/irods/cmake" "-DCMAKE_EXE_LINKER_FLAGS=-Wl,-rpath,${irods}/lib" "-DCMAKE_MODULE_LINKER_FLAGS=-Wl,-rpath,${irods}/lib" From cdd111b5259b041832d6798a1e87cba2d78ca34b Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Wed, 27 Jan 2021 08:10:11 -0500 Subject: [PATCH 32/39] gotop: 4.0.1 -> 4.1.0 https://github.com/xxxserxxx/gotop/releases/tag/v4.1.0 --- pkgs/tools/system/gotop/default.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/system/gotop/default.nix b/pkgs/tools/system/gotop/default.nix index 3acace9eaae..0c27e9e4e71 100644 --- a/pkgs/tools/system/gotop/default.nix +++ b/pkgs/tools/system/gotop/default.nix @@ -2,17 +2,17 @@ buildGoModule rec { pname = "gotop"; - version = "4.0.1"; + version = "4.1.0"; src = fetchFromGitHub { owner = "xxxserxxx"; repo = pname; rev = "v${version}"; - sha256 = "10qfzmq1wdgpvv319khzicalix1x4fqava0wry3bzz84k5c9dabs"; + sha256 = "09cs97fjjxcjxzsl2kh8j607cs5zy2hnrh1pb21pggzhg7dzsz0w"; }; runVend = true; - vendorSha256 = "09vdhdgj74ifdhl6rmxddkvk7ls26jn8gswzcxf9389zkjzi7822"; + vendorSha256 = "1mbjl7b49naaqkr2j658j17z9ryf5g3x6q34gvmrm7n9y082ggnz"; preCheck = '' export HOME=$(mktemp -d) @@ -21,7 +21,8 @@ buildGoModule rec { meta = with lib; { description = "A terminal based graphical activity monitor inspired by gtop and vtop"; homepage = "https://github.com/xxxserxxx/gotop"; - license = licenses.agpl3; + changelog = "https://github.com/xxxserxxx/gotop/blob/v${version}/CHANGELOG.md"; + license = licenses.mit; maintainers = [ maintainers.magnetophon ]; platforms = platforms.unix; }; From 83522ef4d4dec9a71b88a5555ce65b71efe7fd36 Mon Sep 17 00:00:00 2001 From: Thiago Kenji Okada Date: Wed, 27 Jan 2021 10:37:50 -0300 Subject: [PATCH 33/39] clojure-lsp: 2021.01.20-01.39.32 -> 2021.01.26-22.35.27 --- pkgs/development/tools/misc/clojure-lsp/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/misc/clojure-lsp/default.nix b/pkgs/development/tools/misc/clojure-lsp/default.nix index af435d417ce..1ff21d9610c 100644 --- a/pkgs/development/tools/misc/clojure-lsp/default.nix +++ b/pkgs/development/tools/misc/clojure-lsp/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { pname = "clojure-lsp"; - version = "2021.01.20-01.39.32"; + version = "2021.01.26-22.35.27"; src = fetchurl { url = "https://github.com/clojure-lsp/clojure-lsp/releases/download/${version}/${pname}.jar"; - sha256 = "sha256-DqvAIM5YHtcUNZHoH+fcZym6EaPX5a/vgphTFfTO6bU="; + sha256 = "sha256-kYxOrallox/LnAdZ4wTWZDlzt5GR0/s6nlG6CO0/pRw="; }; dontUnpack = true; From ee71a72267c36f616e2a2095c82994b2bef9eea5 Mon Sep 17 00:00:00 2001 From: Michiel Leenaars Date: Wed, 27 Jan 2021 14:46:51 +0100 Subject: [PATCH 34/39] Sylk: 2.9.4 -> 3.0.0 --- pkgs/applications/networking/Sylk/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/Sylk/default.nix b/pkgs/applications/networking/Sylk/default.nix index 7391ad4c688..3759a09e700 100644 --- a/pkgs/applications/networking/Sylk/default.nix +++ b/pkgs/applications/networking/Sylk/default.nix @@ -2,7 +2,7 @@ let pname = "Sylk"; - version = "2.9.4"; + version = "3.0.0"; in appimageTools.wrapType2 rec { @@ -10,7 +10,7 @@ appimageTools.wrapType2 rec { src = fetchurl { url = "http://download.ag-projects.com/Sylk/Sylk-${version}-x86_64.AppImage"; - hash = "sha256-LnJ8Pd+AHIrHrYpIx+rxnFKZ1uh2viDHC5TaU1BL62s="; + hash = "sha256-A+SFkGDg+I1lPJ56XPaRfBUktyjSttcsZSqgXvw9sDs="; }; profile = '' From 057a240b0b2ffa773e9485b1883e1da0e406b26e Mon Sep 17 00:00:00 2001 From: Sascha Grunert Date: Wed, 27 Jan 2021 13:55:59 +0100 Subject: [PATCH 35/39] linuxPackages.oci-seccomp-bpf-hook: 1.2.0 -> 1.2.1 Signed-off-by: Sascha Grunert --- pkgs/os-specific/linux/oci-seccomp-bpf-hook/default.nix | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/pkgs/os-specific/linux/oci-seccomp-bpf-hook/default.nix b/pkgs/os-specific/linux/oci-seccomp-bpf-hook/default.nix index f15a5b63779..cb5719c31a2 100644 --- a/pkgs/os-specific/linux/oci-seccomp-bpf-hook/default.nix +++ b/pkgs/os-specific/linux/oci-seccomp-bpf-hook/default.nix @@ -10,15 +10,14 @@ buildGoModule rec { pname = "oci-seccomp-bpf-hook"; - version = "1.2.0"; + version = "1.2.1"; src = fetchFromGitHub { owner = "containers"; repo = "oci-seccomp-bpf-hook"; rev = "v${version}"; - sha256 = "143x4daixzhhhpli1l14r7dr7dn3q42w8dddr16jzhhwighsirqw"; + sha256 = "0zbrpv6j4gd4l36zl2dljazdm85qlqwchf0xvmnaywcj8c8b49xw"; }; vendorSha256 = null; - doCheck = false; outputs = [ "out" "man" ]; nativeBuildInputs = [ @@ -31,6 +30,10 @@ buildGoModule rec { libseccomp ]; + checkPhase = '' + go test -v ./... + ''; + buildPhase = '' make ''; From e5845deabb3bb7c6a5255b03f37e369d5579ee1f Mon Sep 17 00:00:00 2001 From: Matt Wittmann Date: Mon, 25 Jan 2021 08:09:25 -0800 Subject: [PATCH 36/39] vscode-extensions.elmtooling.elm-ls-vscode: init at 2.0.1 --- pkgs/misc/vscode-extensions/default.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/pkgs/misc/vscode-extensions/default.nix b/pkgs/misc/vscode-extensions/default.nix index f561755fc4b..e82324b9414 100644 --- a/pkgs/misc/vscode-extensions/default.nix +++ b/pkgs/misc/vscode-extensions/default.nix @@ -189,6 +189,23 @@ let }; }; + elmtooling.elm-ls-vscode = buildVscodeMarketplaceExtension { + mktplcRef = { + name = "elm-ls-vscode"; + publisher = "Elmtooling"; + version = "2.0.1"; + sha256 = "06x5ld2r1hzns2s052mvhmfiaawjzcn0jf5lkfprhmrkxnmfdd43"; + }; + meta = with lib; { + changelog = "https://marketplace.visualstudio.com/items/Elmtooling.elm-ls-vscode/changelog"; + description = "Elm language server"; + downloadPage = "https://marketplace.visualstudio.com/items?itemName=Elmtooling.elm-ls-vscode"; + homepage = "https://github.com/elm-tooling/elm-language-client-vscode"; + license = licenses.mit; + maintainers = with maintainers; [ mcwitt ]; + }; + }; + esbenp.prettier-vscode = buildVscodeMarketplaceExtension { meta = with lib; { changelog = "https://marketplace.visualstudio.com/items/esbenp.prettier-vscode/changelog"; From 2fcf614ea383bc4f0737b8f7304a10596935b23e Mon Sep 17 00:00:00 2001 From: ajs124 Date: Wed, 27 Jan 2021 17:10:34 +0100 Subject: [PATCH 37/39] ejabberd: remove myself as maintainer --- pkgs/servers/xmpp/ejabberd/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/servers/xmpp/ejabberd/default.nix b/pkgs/servers/xmpp/ejabberd/default.nix index 1aca12aec48..5336df42cbe 100644 --- a/pkgs/servers/xmpp/ejabberd/default.nix +++ b/pkgs/servers/xmpp/ejabberd/default.nix @@ -115,7 +115,7 @@ in stdenv.mkDerivation rec { license = licenses.gpl2; homepage = "https://www.ejabberd.im"; platforms = platforms.linux; - maintainers = with maintainers; [ sander abbradar ajs124 ]; + maintainers = with maintainers; [ sander abbradar ]; broken = withElixir; }; } From cbad557fe274b8eeeb0f950df1184cc3c2d43d3c Mon Sep 17 00:00:00 2001 From: Roland Coeurjoly Date: Wed, 27 Jan 2021 17:52:41 +0100 Subject: [PATCH 38/39] saw-tools: update license (#110920) --- pkgs/applications/science/logic/saw-tools/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/science/logic/saw-tools/default.nix b/pkgs/applications/science/logic/saw-tools/default.nix index 1dd6dc1cfc8..3eabc9422e3 100644 --- a/pkgs/applications/science/logic/saw-tools/default.nix +++ b/pkgs/applications/science/logic/saw-tools/default.nix @@ -53,7 +53,7 @@ stdenv.mkDerivation { meta = { description = "Tools for software verification and analysis"; homepage = "https://saw.galois.com"; - license = lib.licenses.unfreeRedistributable; + license = lib.licenses.bsd3; platforms = lib.platforms.linux; maintainers = [ lib.maintainers.thoughtpolice ]; }; From 0b5fd3b7847445f3683ff60c8b896a7f2adc3b0e Mon Sep 17 00:00:00 2001 From: Erik Arvstedt Date: Wed, 6 Jan 2021 03:44:26 +0100 Subject: [PATCH 39/39] qemu-guest: remove security.rngd setting Since release 20.09 `rngd.enable` defaults to false, so this setting is redundant. Also fix the `qemu-quest` section of the manual that incorrectly claimed that `rngd` was enabled. --- nixos/doc/manual/configuration/profiles/qemu-guest.xml | 5 ++--- nixos/modules/profiles/qemu-guest.nix | 4 +--- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/nixos/doc/manual/configuration/profiles/qemu-guest.xml b/nixos/doc/manual/configuration/profiles/qemu-guest.xml index 5d055c45d2d..3ed97b94b51 100644 --- a/nixos/doc/manual/configuration/profiles/qemu-guest.xml +++ b/nixos/doc/manual/configuration/profiles/qemu-guest.xml @@ -11,8 +11,7 @@ - It makes virtio modules available on the initrd, sets the system time from - the hardware clock to work around a bug in qemu-kvm, and - enables rngd. + It makes virtio modules available on the initrd and sets the system time from + the hardware clock to work around a bug in qemu-kvm.
diff --git a/nixos/modules/profiles/qemu-guest.nix b/nixos/modules/profiles/qemu-guest.nix index 0ea70107f71..d4335edfcf2 100644 --- a/nixos/modules/profiles/qemu-guest.nix +++ b/nixos/modules/profiles/qemu-guest.nix @@ -1,7 +1,7 @@ # Common configuration for virtual machines running under QEMU (using # virtio). -{ lib, ... }: +{ ... }: { boot.initrd.availableKernelModules = [ "virtio_net" "virtio_pci" "virtio_mmio" "virtio_blk" "virtio_scsi" "9p" "9pnet_virtio" ]; @@ -14,6 +14,4 @@ # to the *boot time* of the host). hwclock -s ''; - - security.rngd.enable = lib.mkDefault false; }