diff --git a/doc/contributing/coding-conventions.chapter.md b/doc/contributing/coding-conventions.chapter.md
index 6076460b893b..6516172adde9 100644
--- a/doc/contributing/coding-conventions.chapter.md
+++ b/doc/contributing/coding-conventions.chapter.md
@@ -526,6 +526,16 @@ If you do need to do create this sort of patch file, one way to do so is with gi
$ git diff > nixpkgs/pkgs/the/package/0001-changes.patch
```
+If a patch is available online but does not cleanly apply, it can be modified in some fixed ways by using additional optional arguments for `fetchpatch`:
+
+- `stripLen`: Remove the first `stripLen` components of pathnames in the patch.
+- `extraPrefix`: Prefix pathnames by this string.
+- `excludes`: Exclude files matching this pattern.
+- `includes`: Include only files matching this pattern.
+- `revert`: Revert the patch.
+
+Note that because the checksum is computed after applying these effects, using or modifying these arguments will have no effect unless the `sha256` argument is changed as well.
+
## Package tests {#sec-package-tests}
Tests are important to ensure quality and make reviews and automatic updates easy.
diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix
index ef05a2af6099..bef1948cb65c 100644
--- a/maintainers/maintainer-list.nix
+++ b/maintainers/maintainer-list.nix
@@ -7191,6 +7191,12 @@
githubId = 10180857;
name = "Anmol Sethi";
};
+ nichtsfrei = {
+ email = "philipp.eder@posteo.net";
+ github = "nichtsfrei";
+ githubId = 1665818;
+ name = "Philipp Eder";
+ };
nickhu = {
email = "me@nickhu.co.uk";
github = "nickhu";
@@ -7479,6 +7485,12 @@
githubId = 20923;
name = "Erik Timan";
};
+ olebedev = {
+ email = "ole6edev@gmail.com";
+ github = "olebedev";
+ githubId = 848535;
+ name = "Oleg Lebedev";
+ };
olejorgenb = {
email = "olejorgenb@yahoo.no";
github = "olejorgenb";
diff --git a/nixos/doc/manual/release-notes/rl-2105.xml b/nixos/doc/manual/release-notes/rl-2105.xml
index fa100290460e..12a9ae2f44ea 100644
--- a/nixos/doc/manual/release-notes/rl-2105.xml
+++ b/nixos/doc/manual/release-notes/rl-2105.xml
@@ -25,6 +25,7 @@
The default Linux kernel was updated to the 5.10 LTS series, coming from the 5.4 LTS series.
+ The linux_latest kernel was updated to the 5.12 series. It currently is not officially supported for use with the zfs filesystem. If you use zfs, you should use a different kernel version (either the LTS kernel, or track a specific one).
GNOME desktop environment was upgraded to 40, see the release notes for 40.0 and 3.38. The gnome3
attribute set has been renamed to gnome
and so have been the NixOS options.
diff --git a/nixos/modules/services/networking/wireguard.nix b/nixos/modules/services/networking/wireguard.nix
index 471f4bf8b33f..2b51770a5aa1 100644
--- a/nixos/modules/services/networking/wireguard.nix
+++ b/nixos/modules/services/networking/wireguard.nix
@@ -244,17 +244,6 @@ let
};
- generatePathUnit = name: values:
- assert (values.privateKey == null);
- assert (values.privateKeyFile != null);
- nameValuePair "wireguard-${name}"
- {
- description = "WireGuard Tunnel - ${name} - Private Key";
- requiredBy = [ "wireguard-${name}.service" ];
- before = [ "wireguard-${name}.service" ];
- pathConfig.PathExists = values.privateKeyFile;
- };
-
generateKeyServiceUnit = name: values:
assert values.generatePrivateKeyFile;
nameValuePair "wireguard-${name}-key"
@@ -509,9 +498,6 @@ in
// (mapAttrs' generateKeyServiceUnit
(filterAttrs (name: value: value.generatePrivateKeyFile) cfg.interfaces));
- systemd.paths = mapAttrs' generatePathUnit
- (filterAttrs (name: value: value.privateKeyFile != null) cfg.interfaces);
-
});
}
diff --git a/nixos/modules/services/web-apps/discourse.nix b/nixos/modules/services/web-apps/discourse.nix
index 0e2e182ffe93..49958fc6190c 100644
--- a/nixos/modules/services/web-apps/discourse.nix
+++ b/nixos/modules/services/web-apps/discourse.nix
@@ -5,11 +5,16 @@ let
cfg = config.services.discourse;
+ # Keep in sync with https://github.com/discourse/discourse_docker/blob/master/image/base/Dockerfile#L5
+ upstreamPostgresqlVersion = lib.getVersion pkgs.postgresql_13;
+
postgresqlPackage = if config.services.postgresql.enable then
config.services.postgresql.package
else
pkgs.postgresql;
+ postgresqlVersion = lib.getVersion postgresqlPackage;
+
# We only want to create a database if we're actually going to connect to it.
databaseActuallyCreateLocally = cfg.database.createLocally && cfg.database.host == null;
@@ -263,6 +268,17 @@ in
Discourse database user.
'';
};
+
+ ignorePostgresqlVersion = lib.mkOption {
+ type = lib.types.bool;
+ default = false;
+ description = ''
+ Whether to allow other versions of PostgreSQL than the
+ recommended one. Only effective when
+
+ is enabled.
+ '';
+ };
};
redis = {
@@ -398,6 +414,14 @@ in
How OpenSSL checks the certificate, see http://api.rubyonrails.org/classes/ActionMailer/Base.html
'';
};
+
+ forceTLS = lib.mkOption {
+ type = lib.types.bool;
+ default = false;
+ description = ''
+ Force implicit TLS as per RFC 8314 3.3.
+ '';
+ };
};
incoming = {
@@ -497,6 +521,12 @@ in
assertion = cfg.hostname != "";
message = "Could not automatically determine hostname, set service.discourse.hostname manually.";
}
+ {
+ assertion = cfg.database.ignorePostgresqlVersion || (databaseActuallyCreateLocally -> upstreamPostgresqlVersion == postgresqlVersion);
+ message = "The PostgreSQL version recommended for use with Discourse is ${upstreamPostgresqlVersion}, you're using ${postgresqlVersion}. "
+ + "Either update your PostgreSQL package to the correct version or set services.discourse.database.ignorePostgresqlVersion. "
+ + "See https://nixos.org/manual/nixos/stable/index.html#module-postgresql for details on how to upgrade PostgreSQL.";
+ }
];
@@ -530,6 +560,7 @@ in
smtp_authentication = cfg.mail.outgoing.authentication;
smtp_enable_start_tls = cfg.mail.outgoing.enableStartTLSAuto;
smtp_openssl_verify_mode = cfg.mail.outgoing.opensslVerifyMode;
+ smtp_force_tls = cfg.mail.outgoing.forceTLS;
load_mini_profiler = true;
mini_profiler_snapshots_period = 0;
@@ -542,8 +573,8 @@ in
redis_host = cfg.redis.host;
redis_port = 6379;
- redis_slave_host = null;
- redis_slave_port = 6379;
+ redis_replica_host = null;
+ redis_replica_port = 6379;
redis_db = cfg.redis.dbNumber;
redis_password = cfg.redis.passwordFile;
redis_skip_client_commands = false;
@@ -552,8 +583,8 @@ in
message_bus_redis_enabled = false;
message_bus_redis_host = "localhost";
message_bus_redis_port = 6379;
- message_bus_redis_slave_host = null;
- message_bus_redis_slave_port = 6379;
+ message_bus_redis_replica_host = null;
+ message_bus_redis_replica_port = 6379;
message_bus_redis_db = 0;
message_bus_redis_password = null;
message_bus_redis_skip_client_commands = false;
@@ -606,6 +637,7 @@ in
allowed_theme_repos = null;
enable_email_sync_demon = false;
max_digests_enqueued_per_30_mins_per_site = 10000;
+ cluster_name = null;
};
services.redis.enable = lib.mkDefault (cfg.redis.host == "localhost");
@@ -667,6 +699,7 @@ in
environment = cfg.package.runtimeEnv // {
UNICORN_TIMEOUT = builtins.toString cfg.unicornTimeout;
UNICORN_SIDEKIQS = builtins.toString cfg.sidekiqProcesses;
+ MALLOC_ARENA_MAX = "2";
};
preStart =
diff --git a/nixos/tests/discourse.nix b/nixos/tests/discourse.nix
index 3c965550fe0a..2ed6fb957c20 100644
--- a/nixos/tests/discourse.nix
+++ b/nixos/tests/discourse.nix
@@ -51,6 +51,8 @@ import ./make-test-python.nix (
environment.systemPackages = [ pkgs.jq ];
+ services.postgresql.package = pkgs.postgresql_13;
+
services.discourse = {
enable = true;
inherit admin;
diff --git a/pkgs/applications/audio/bjumblr/default.nix b/pkgs/applications/audio/bjumblr/default.nix
index 104c795c11e7..608839fc16ac 100644
--- a/pkgs/applications/audio/bjumblr/default.nix
+++ b/pkgs/applications/audio/bjumblr/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "BJumblr";
- version = "1.4.2";
+ version = "1.6.6";
src = fetchFromGitHub {
owner = "sjaehn";
repo = pname;
rev = version;
- sha256 = "0kl6hrxmqrdf0195bfnzsa2h1073fgiqrfhg2276fm1954sm994v";
+ sha256 = "1nbxi54023vck3qgmr385cjzinmdnvz62ywb6bcksmc3shl080mg";
};
nativeBuildInputs = [ pkg-config ];
diff --git a/pkgs/applications/audio/helio-workstation/default.nix b/pkgs/applications/audio/helio-workstation/default.nix
index 4bcda6c4d327..6378a97f31d7 100644
--- a/pkgs/applications/audio/helio-workstation/default.nix
+++ b/pkgs/applications/audio/helio-workstation/default.nix
@@ -5,14 +5,14 @@
stdenv.mkDerivation rec {
pname = "helio-workstation";
- version = "3.4";
+ version = "3.6";
src = fetchFromGitHub {
owner = "helio-fm";
repo = pname;
rev = version;
fetchSubmodules = true;
- sha256 = "sha256-zXsDu/xi7OV6VtnZK9ZJ8uwPeA5uTgNpAQsqe90iwG4=";
+ sha256 = "sha256-qW39g6rQ5VPQ3Hx9NmwLbpZiITnzFZDZlcLkE+pJKPc=";
};
buildInputs = [
diff --git a/pkgs/applications/audio/quadrafuzz/default.nix b/pkgs/applications/audio/quadrafuzz/default.nix
new file mode 100644
index 000000000000..1432c0b81011
--- /dev/null
+++ b/pkgs/applications/audio/quadrafuzz/default.nix
@@ -0,0 +1,43 @@
+{ stdenv, lib, fetchFromGitHub, boost, cairo, lv2, pkg-config }:
+
+stdenv.mkDerivation rec {
+ pname = "quadrafuzz";
+ version = "0.1.1";
+
+ src = fetchFromGitHub {
+ owner = "jpcima";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "1kjsf7il9krihwlrq08gk2xvil4b4q5zd87nnm103hby2w7ws7z1";
+ fetchSubmodules = true;
+ };
+
+ postPatch = ''
+ patchShebangs ./dpf/utils/generate-ttl.sh
+ '';
+
+ nativeBuildInputs = [ pkg-config ];
+
+ buildInputs = [
+ boost cairo lv2
+ ];
+
+ makeFlags = [
+ "PREFIX=$(out)"
+ ];
+
+ installPhase = ''
+ runHook preInstall
+ mkdir -p $out/lib/lv2
+ cp -r bin/quadrafuzz.lv2/ $out/lib/lv2
+ runHook postInstall
+ '';
+
+ meta = with lib; {
+ homepage = "https://github.com/jpcima/quadrafuzz";
+ description = "Multi-band fuzz distortion plugin";
+ maintainers = [ maintainers.magnetophon ];
+ platforms = platforms.linux;
+ license = licenses.gpl3Plus;
+ };
+}
diff --git a/pkgs/applications/misc/dockbarx/default.nix b/pkgs/applications/misc/dockbarx/default.nix
index 5bc8de522dec..cac6c363c323 100644
--- a/pkgs/applications/misc/dockbarx/default.nix
+++ b/pkgs/applications/misc/dockbarx/default.nix
@@ -1,41 +1,84 @@
-{ lib, fetchFromGitHub, python2Packages, gnome2, keybinder }:
+{ lib
+, fetchFromGitHub
+, glib
+, gobject-introspection
+, gtk3
+, keybinder3
+, libwnck3
+, python3Packages
+, wrapGAppsHook
+}:
-python2Packages.buildPythonApplication rec {
- ver = "0.93";
- name = "dockbarx-${ver}";
+python3Packages.buildPythonApplication rec {
+ pname = "dockbarx";
+ version = "${ver}-${rev}";
+ ver = "1.0-beta";
+ rev = "d98020ec49f3e3a5692ab2adbb145bbe5a1e80fe";
src = fetchFromGitHub {
- owner = "M7S";
+ owner = "xuzhen";
repo = "dockbarx";
- rev = ver;
- sha256 = "1h1g2vag5vnx87sa1f0qi8rq7wlr2ymvkrdr08kk7cma4wk0x6hg";
+ rev = rev;
+ sha256 = "0xwqxh5mr2bi0sk54b848705awp0lfpd91am551811j2bdkbs04m";
};
- postPatch = ''
- substituteInPlace setup.py --replace /usr/ ""
- substituteInPlace setup.py --replace '"/", "usr", "share",' '"share",'
- substituteInPlace dockbarx/applets.py --replace /usr/share/ $out/share/
- substituteInPlace dockbarx/dockbar.py --replace /usr/share/ $out/share/
- substituteInPlace dockbarx/iconfactory.py --replace /usr/share/ $out/share/
- substituteInPlace dockbarx/theme.py --replace /usr/share/ $out/share/
- substituteInPlace dockx_applets/battery_status.py --replace /usr/share/ $out/share/
- substituteInPlace dockx_applets/namebar.py --replace /usr/share/ $out/share/
- substituteInPlace dockx_applets/namebar_window_buttons.py --replace /usr/share/ $out/share/
- substituteInPlace dockx_applets/volume-control.py --replace /usr/share/ $out/share/
- '';
+ nativeBuildInputs = [
+ glib.dev
+ python3Packages.polib
+ wrapGAppsHook
+ ];
- propagatedBuildInputs = (with python2Packages; [ pygtk pyxdg dbus-python pillow xlib ])
- ++ (with gnome2; [ gnome_python gnome_python_desktop ])
- ++ [ keybinder ];
+ buildInputs = [
+ gobject-introspection
+ gtk3
+ libwnck3
+ keybinder3
+ ];
+
+ propagatedBuildInputs = with python3Packages; [
+ dbus-python
+ pillow
+ pygobject3
+ pyxdg
+ xlib
+ ];
# no tests
doCheck = false;
+ dontWrapGApps = true;
+
+ postPatch = ''
+ substituteInPlace setup.py \
+ --replace /usr/ "" \
+ --replace '"/", "usr", "share",' '"share",'
+
+ for f in \
+ dbx_preference \
+ dockbarx/applets.py \
+ dockbarx/dockbar.py \
+ dockbarx/iconfactory.py \
+ dockbarx/theme.py \
+ mate_panel_applet/dockbarx_mate_applet
+ do
+ substituteInPlace $f --replace /usr/share/ $out/share/
+ done
+ '';
+
+ postInstall = ''
+ glib-compile-schemas $out/share/glib-2.0/schemas
+ '';
+
+ # Arguments to be passed to `makeWrapper`, only used by buildPython*
+ preFixup = ''
+ makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
+ '';
+
meta = with lib; {
- homepage = "https://launchpad.net/dockbar/";
- description = "Lightweight taskbar / panel replacement for Linux which works as a stand-alone dock";
- license = licenses.gpl3;
+ homepage = "https://github.com/xuzhen/dockbarx";
+ description = "Lightweight taskbar/panel replacement which works as a stand-alone dock";
+ license = licenses.gpl3Only;
platforms = platforms.linux;
- maintainers = [ maintainers.volth ];
+ maintainers = [ maintainers.romildo ];
};
}
diff --git a/pkgs/applications/misc/scli/default.nix b/pkgs/applications/misc/scli/default.nix
new file mode 100644
index 000000000000..93fd5d41942b
--- /dev/null
+++ b/pkgs/applications/misc/scli/default.nix
@@ -0,0 +1,38 @@
+{ lib, buildPythonApplication, fetchFromGitHub, signal-cli, urwid
+, urwid-readline, dbus }:
+
+buildPythonApplication rec {
+ pname = "scli";
+ version = "0.6.1";
+
+ src = fetchFromGitHub {
+ owner = "isamert";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "sha256-hWzpqj/sxPq/doxdmytnj5rh2qKQE71WMB0ugomWhHg";
+ };
+
+ propagatedBuildInputs = [ signal-cli urwid urwid-readline dbus ];
+ dontBuild = true;
+
+ checkPhase = ''
+ # scli attempts to write to these directories, make sure they're writeable
+ export XDG_DATA_HOME=$(mktemp -d)
+ export XDG_CONFIG_HOME=$(mktemp -d)
+ ./scli --help > /dev/null # don't spam nix-build log
+ test $? == 0
+ '';
+
+ installPhase = ''
+ mkdir -p $out/bin
+ patchShebangs scli
+ install -m755 -D scli $out/bin/scli
+ '';
+
+ meta = with lib; {
+ description = "Simple terminal user interface for Signal";
+ homepage = "https://github.com/isamert/scli";
+ license = licenses.gpl3Only;
+ maintainers = with maintainers; [ alex-eyre ];
+ };
+}
diff --git a/pkgs/applications/misc/tellico/default.nix b/pkgs/applications/misc/tellico/default.nix
index 65cd003253dc..10d8dc026141 100644
--- a/pkgs/applications/misc/tellico/default.nix
+++ b/pkgs/applications/misc/tellico/default.nix
@@ -24,15 +24,15 @@
mkDerivation rec {
pname = "tellico";
- version = "3.4";
+ version = "3.4.1";
src = fetchurl {
- # version 3.3.0 just uses 3.3 in its name
+ # version 3.3.0 just uses 3.3 in its file name
urls = [
"https://tellico-project.org/files/tellico-${version}.tar.xz"
"https://tellico-project.org/files/tellico-${lib.versions.majorMinor version}.tar.xz"
];
- sha256 = "sha256-YXMJrAkfehe3ox4WZ19igyFbXwtjO5wxN3bmgP01jPs=";
+ sha256 = "sha256-+FFN6sO0mvlage8JazyrqNZk4onejz1XJPiOK3gnhWE=";
};
nativeBuildInputs = [
@@ -63,7 +63,7 @@ mkDerivation rec {
meta = with lib; {
description = "Collection management software, free and simple";
homepage = "https://tellico-project.org/";
- license = with licenses; [ gpl2 gpl3 ];
+ license = with licenses; [ gpl2Only gpl3Only lgpl2Only ];
maintainers = with maintainers; [ numkem ];
platforms = platforms.linux;
};
diff --git a/pkgs/applications/office/libreoffice/src-still/download.nix b/pkgs/applications/office/libreoffice/src-still/download.nix
index d956a3b08a61..19dee4e1f136 100644
--- a/pkgs/applications/office/libreoffice/src-still/download.nix
+++ b/pkgs/applications/office/libreoffice/src-still/download.nix
@@ -721,25 +721,25 @@
md5name = "505e70834d35383537b6491e7ae8641f1a4bed1876dbfe361201fc80868d88ca-libpng-1.6.37.tar.xz";
}
{
- name = "poppler-0.82.0.tar.xz";
- url = "https://dev-www.libreoffice.org/src/poppler-0.82.0.tar.xz";
- sha256 = "234f8e573ea57fb6a008e7c1e56bfae1af5d1adf0e65f47555e1ae103874e4df";
+ name = "poppler-21.01.0.tar.xz";
+ url = "https://dev-www.libreoffice.org/src/poppler-21.01.0.tar.xz";
+ sha256 = "016dde34e5f868ea98a32ca99b643325a9682281500942b7113f4ec88d20e2f3";
md5 = "";
- md5name = "234f8e573ea57fb6a008e7c1e56bfae1af5d1adf0e65f47555e1ae103874e4df-poppler-0.82.0.tar.xz";
+ md5name = "016dde34e5f868ea98a32ca99b643325a9682281500942b7113f4ec88d20e2f3-poppler-21.01.0.tar.xz";
}
{
- name = "postgresql-9.2.24.tar.bz2";
- url = "https://dev-www.libreoffice.org/src/postgresql-9.2.24.tar.bz2";
- sha256 = "a754c02f7051c2f21e52f8669a421b50485afcde9a581674d6106326b189d126";
+ name = "postgresql-13.1.tar.bz2";
+ url = "https://dev-www.libreoffice.org/src/postgresql-13.1.tar.bz2";
+ sha256 = "12345c83b89aa29808568977f5200d6da00f88a035517f925293355432ffe61f";
md5 = "";
- md5name = "a754c02f7051c2f21e52f8669a421b50485afcde9a581674d6106326b189d126-postgresql-9.2.24.tar.bz2";
+ md5name = "12345c83b89aa29808568977f5200d6da00f88a035517f925293355432ffe61f-postgresql-13.1.tar.bz2";
}
{
- name = "Python-3.7.7.tar.xz";
- url = "https://dev-www.libreoffice.org/src/Python-3.7.7.tar.xz";
- sha256 = "06a0a9f1bf0d8cd1e4121194d666c4e28ddae4dd54346de6c343206599f02136";
+ name = "Python-3.7.10.tar.xz";
+ url = "https://dev-www.libreoffice.org/src/Python-3.7.10.tar.xz";
+ sha256 = "f8d82e7572c86ec9d55c8627aae5040124fd2203af400c383c821b980306ee6b";
md5 = "";
- md5name = "06a0a9f1bf0d8cd1e4121194d666c4e28ddae4dd54346de6c343206599f02136-Python-3.7.7.tar.xz";
+ md5name = "f8d82e7572c86ec9d55c8627aae5040124fd2203af400c383c821b980306ee6b-Python-3.7.10.tar.xz";
}
{
name = "QR-Code-generator-1.4.0.tar.gz";
diff --git a/pkgs/applications/office/libreoffice/src-still/primary.nix b/pkgs/applications/office/libreoffice/src-still/primary.nix
index c9b182647114..d42f31bff3f9 100644
--- a/pkgs/applications/office/libreoffice/src-still/primary.nix
+++ b/pkgs/applications/office/libreoffice/src-still/primary.nix
@@ -8,7 +8,7 @@ rec {
major = "7";
minor = "0";
- patch = "4";
+ patch = "6";
tweak = "2";
subdir = "${major}.${minor}.${patch}";
@@ -17,13 +17,13 @@ rec {
src = fetchurl {
url = "https://download.documentfoundation.org/libreoffice/src/${subdir}/libreoffice-${version}.tar.xz";
- sha256 = "1g9akxvm7fh6lnprnc3g184qdy8gbinhb4rb60gjpw82ip6d5acz";
+ sha256 = "0bk1dc6g8z5akrprfxxy3dm0vdmihaaxnsprxpqbqmqrqzkzg8cn";
};
# FIXME rename
translations = fetchSrc {
name = "translations";
- sha256 = "1v3kpk56fm783d5wihx41jqidpclizkfxrg4n0pq95d79hdiljsl";
+ sha256 = "04f76r311hppil656ajab52x0xwqszazlgssyi5w97wak2zkmqgj";
};
# the "dictionaries" archive is not used for LO build because we already build hunspellDicts packages from
@@ -31,6 +31,6 @@ rec {
help = fetchSrc {
name = "help";
- sha256 = "1np9f799ww12kggl5az6piv5fi9rf737il5a5r47r4wl2li56qqb";
+ sha256 = "1xmvlj9nrmg8448k4zfaxn5qqxa4amnvvhs1l1smi2bz3xh4xn2d";
};
}
diff --git a/pkgs/applications/office/softmaker/softmaker_office.nix b/pkgs/applications/office/softmaker/softmaker_office.nix
index 9228037e8bf8..68f92c74a87c 100644
--- a/pkgs/applications/office/softmaker/softmaker_office.nix
+++ b/pkgs/applications/office/softmaker/softmaker_office.nix
@@ -6,9 +6,9 @@
# Softmaker Office or when the upstream archive was replaced and
# nixpkgs is not in sync yet.
, officeVersion ? {
- version = "1030";
+ version = "1032";
edition = "2021";
- hash = "sha256-bpnyPyZnJc9RFVrFM2o3M7Gc4PSKFGpaM1Yo8ZKGHrE=";
+ hash = "sha256-LchSqLVBdkmWJQ8hCEvtwRPgIUSDE0URKPzCkEexGbc=";
}
, ... } @ args:
diff --git a/pkgs/applications/version-management/git-and-tools/delta/default.nix b/pkgs/applications/version-management/git-and-tools/delta/default.nix
index c6a92413949b..f642a7d9afb3 100644
--- a/pkgs/applications/version-management/git-and-tools/delta/default.nix
+++ b/pkgs/applications/version-management/git-and-tools/delta/default.nix
@@ -9,16 +9,16 @@
rustPlatform.buildRustPackage rec {
pname = "delta";
- version = "0.7.1";
+ version = "0.8.0";
src = fetchFromGitHub {
owner = "dandavison";
repo = pname;
rev = version;
- sha256 = "02gm3fxqq91gn1hffy9kc6dkc0y7p09sl6f8njfpsaficij4bs7a";
+ sha256 = "01s73ld3npdmrjbay1lmd13bn9lg2pbmj14gklxi3j9aj0y2q8w8";
};
- cargoSha256 = "1w1w98vhjd561mkiwv89zb8k0nf1p5fc67jb5dddwg9nj6mqjrhp";
+ cargoSha256 = "1pi4sm07nm1irigrfgysfw99vw96zzz07a1qw5m7bmj6aqp0r3fr";
nativeBuildInputs = [ installShellFiles ];
diff --git a/pkgs/applications/virtualization/virt-manager/default.nix b/pkgs/applications/virtualization/virt-manager/default.nix
index 4d74b5d66102..1d5044cd213d 100644
--- a/pkgs/applications/virtualization/virt-manager/default.nix
+++ b/pkgs/applications/virtualization/virt-manager/default.nix
@@ -32,10 +32,9 @@ python3Packages.buildPythonApplication rec {
gobject-introspection # Temporary fix, see https://github.com/NixOS/nixpkgs/issues/56943
] ++ optional spiceSupport spice-gtk;
- propagatedBuildInputs = with python3Packages;
- [
- pygobject3 ipaddress libvirt libxml2 requests
- ];
+ propagatedBuildInputs = with python3Packages; [
+ pygobject3 ipaddress libvirt libxml2 requests cdrtools
+ ];
patchPhase = ''
sed -i 's|/usr/share/libvirt/cpu_map.xml|${system-libvirt}/share/libvirt/cpu_map.xml|g' virtinst/capabilities.py
diff --git a/pkgs/data/fonts/cascadia-code/default.nix b/pkgs/data/fonts/cascadia-code/default.nix
index e09ad70f1468..a78bf6b4a785 100644
--- a/pkgs/data/fonts/cascadia-code/default.nix
+++ b/pkgs/data/fonts/cascadia-code/default.nix
@@ -1,13 +1,13 @@
{ lib, fetchzip }:
let
- version = "2102.25";
+ version = "2105.24";
in
fetchzip {
name = "cascadia-code-${version}";
url = "https://github.com/microsoft/cascadia-code/releases/download/v${version}/CascadiaCode-${version}.zip";
- sha256 = "14qhawcf1jmv68zdfbi2zfqdw4cf8fpk7plxzphmkqsp7hlw9pzx";
+ sha256 = "sha256-j3IPzrch8oueOmCDa2gpD8uYFs8cKWjkxcmicZcfqQ8=";
postFetch = ''
mkdir -p $out/share/fonts/
diff --git a/pkgs/data/themes/nordic-polar/default.nix b/pkgs/data/themes/nordic-polar/default.nix
deleted file mode 100644
index 8af17dd98afe..000000000000
--- a/pkgs/data/themes/nordic-polar/default.nix
+++ /dev/null
@@ -1,35 +0,0 @@
-{ lib, stdenv, fetchurl, gtk-engine-murrine }:
-
-stdenv.mkDerivation rec {
- pname = "nordic-polar";
- version = "1.9.0";
-
- srcs = [
- (fetchurl {
- url = "https://github.com/EliverLara/Nordic-Polar/releases/download/v${version}/Nordic-Polar.tar.xz";
- sha256 = "1583mx8frkl5w26myczbyrggrp07lmpsfj00h1bzicw6lz8jbxf1";
- })
- (fetchurl {
- url = "https://github.com/EliverLara/Nordic-Polar/releases/download/v${version}/Nordic-Polar-standard-buttons.tar.xz";
- sha256 = "1n2qys0xcg1k28bwfrrr44cqz7q2rnfj6ry6qgd67ivgh63kmcq6";
- })
- ];
-
- sourceRoot = ".";
-
- propagatedUserEnvPkgs = [ gtk-engine-murrine ];
-
- installPhase = ''
- mkdir -p $out/share/themes
- cp -a Nordic-Polar* $out/share/themes
- rm $out/share/themes/*/{LICENSE,README.md}
- '';
-
- meta = with lib; {
- description = "Gtk theme created using the awesome Nord color pallete";
- homepage = "https://github.com/EliverLara/Nordic-Polar";
- license = licenses.gpl3;
- platforms = platforms.all;
- maintainers = [ maintainers.romildo ];
- };
-}
diff --git a/pkgs/data/themes/nordic/default.nix b/pkgs/data/themes/nordic/default.nix
index dcda14977a7f..c12f9e2ba78b 100644
--- a/pkgs/data/themes/nordic/default.nix
+++ b/pkgs/data/themes/nordic/default.nix
@@ -52,6 +52,22 @@ stdenv.mkDerivation rec {
sha256 = "09s9y7waygrx3p6c0c4py0ywg2ihpdmx73xhw5f92rr5nhsvish7";
name = "Nordic-bluish-accent-standard-buttons";
})
+
+ (fetchFromGitHub {
+ owner = "EliverLara";
+ repo = "${pname}-polar";
+ rev = "69652db56e1721ac183cd57d21a801a09655a811";
+ sha256 = "0zjd4np11mjwmc1kh2n1ig77g4wq88s2yrmnga0gvw1lf44n3qn2";
+ name = "Nordic-Polar";
+ })
+
+ (fetchFromGitHub {
+ owner = "EliverLara";
+ repo = "${pname}-polar";
+ rev = "3a67c1a2308ba3e9ec5d82f4a3416f85b6085b08";
+ sha256 = "0gpg2izh4ay78j79vjp4svmi3qy9qaw0n6ai8zwm7p25dwm56fjy";
+ name = "Nordic-Polar-standard-buttons";
+ })
];
sourceRoot = ".";
@@ -78,7 +94,7 @@ stdenv.mkDerivation rec {
'';
meta = with lib; {
- description = "Dark Gtk theme using the Nord color pallete";
+ description = "Gtk themes using the Nord color pallete";
homepage = "https://github.com/EliverLara/Nordic";
license = licenses.gpl3Only;
platforms = platforms.all;
diff --git a/pkgs/desktops/xfce/panel-plugins/xfce4-dockbarx-plugin/default.nix b/pkgs/desktops/xfce/panel-plugins/xfce4-dockbarx-plugin/default.nix
index 2c83abe6575e..9224a22e53ba 100644
--- a/pkgs/desktops/xfce/panel-plugins/xfce4-dockbarx-plugin/default.nix
+++ b/pkgs/desktops/xfce/panel-plugins/xfce4-dockbarx-plugin/default.nix
@@ -1,11 +1,23 @@
-{ lib, stdenv, pkg-config, fetchFromGitHub, python3, bash, vala_0_48
-, dockbarx, gtk2, xfce, pythonPackages, wafHook }:
+{ lib
+, stdenv
+, fetchFromGitHub
+, bash
+, dockbarx
+, gobject-introspection
+, keybinder3
+, pkg-config
+, python3Packages
+, vala_0_48
+, wafHook
+, wrapGAppsHook
+, xfce
+}:
stdenv.mkDerivation rec {
pname = "xfce4-dockbarx-plugin";
version = "${ver}-${rev}";
ver = "0.6";
- rev = "5213876";
+ rev = "5213876151f1836f044e9902a22d1e682144c1e0";
src = fetchFromGitHub {
owner = "xuzhen";
@@ -14,12 +26,27 @@ stdenv.mkDerivation rec {
sha256 = "0s8bljn4ga2hj480j0jwkc0npp8szbmirmcsys791gk32iq4dasn";
};
- pythonPath = [ dockbarx ];
+ pythonPath = [
+ dockbarx
+ python3Packages.pygobject3
+ ];
- nativeBuildInputs = [ pkg-config wafHook ];
- buildInputs = [ python3 vala_0_48 gtk2 pythonPackages.wrapPython ]
- ++ (with xfce; [ libxfce4util xfce4-panel xfconf xfce4-dev-tools ])
- ++ pythonPath;
+ nativeBuildInputs = [
+ gobject-introspection
+ pkg-config
+ python3Packages.wrapPython
+ vala_0_48
+ wafHook
+ wrapGAppsHook
+ ];
+
+ buildInputs = [
+ keybinder3
+ python3Packages.python
+ xfce.xfce4-panel
+ xfce.xfconf
+ ]
+ ++ pythonPath;
postPatch = ''
substituteInPlace wscript --replace /usr/share/ "\''${PREFIX}/share/"
@@ -28,14 +55,15 @@ stdenv.mkDerivation rec {
'';
postFixup = ''
+ makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
wrapPythonProgramsIn "$out/share/xfce4/panel/plugins" "$out $pythonPath"
'';
meta = with lib; {
homepage = "https://github.com/xuzhen/xfce4-dockbarx-plugin";
- description = "A plugins to embed DockbarX into xfce4-panel";
+ description = "Plugins to embed DockbarX into xfce4-panel";
license = licenses.mit;
platforms = platforms.linux;
- maintainers = [ maintainers.volth ];
+ maintainers = [ maintainers.romildo ];
};
}
diff --git a/pkgs/development/interpreters/erlang/R24.nix b/pkgs/development/interpreters/erlang/R24.nix
index 6808d0a849d3..84575e92cded 100644
--- a/pkgs/development/interpreters/erlang/R24.nix
+++ b/pkgs/development/interpreters/erlang/R24.nix
@@ -3,6 +3,6 @@
# How to obtain `sha256`:
# nix-prefetch-url --unpack https://github.com/erlang/otp/archive/OTP-${version}.tar.gz
mkDerivation {
- version = "24.0";
- sha256 = "0p4p920ncsvls9q3czdc7wz2p7m15bi3nr4306hqddnxz1kxcm4w";
+ version = "24.0.1";
+ sha256 = "z01gaKNkKsIPKdPKhX6IUUY9uBSuyA33E4aVM0MdXsg=";
}
diff --git a/pkgs/development/libraries/cgreen/default.nix b/pkgs/development/libraries/cgreen/default.nix
new file mode 100644
index 000000000000..5a1dd2d26400
--- /dev/null
+++ b/pkgs/development/libraries/cgreen/default.nix
@@ -0,0 +1,23 @@
+{ stdenv, lib, fetchFromGitHub, cmake }:
+
+stdenv.mkDerivation rec {
+ pname = "cgreen";
+ version = "1.4.0";
+
+ src = fetchFromGitHub {
+ owner = "cgreen-devs";
+ repo = "cgreen";
+ rev = version;
+ sha256 = "JEpvkM0EZiiQUZRngICNxHbNqS/qjqkEdMPckGbdWac=";
+ };
+
+ nativeBuildInputs = [ cmake ];
+
+ meta = with lib; {
+ homepage = "https://github.com/cgreen-devs/cgreen";
+ description = "The Modern Unit Test and Mocking Framework for C and C++";
+ license = licenses.isc;
+ maintainers = [ maintainers.nichtsfrei ];
+ platforms = platforms.unix;
+ };
+}
diff --git a/pkgs/development/libraries/nv-codec-headers/10_x.nix b/pkgs/development/libraries/nv-codec-headers/10_x.nix
new file mode 100644
index 000000000000..b1fe1611301f
--- /dev/null
+++ b/pkgs/development/libraries/nv-codec-headers/10_x.nix
@@ -0,0 +1,22 @@
+{ lib, stdenv, fetchgit }:
+
+stdenv.mkDerivation rec {
+ pname = "nv-codec-headers";
+ version = "10.0.26.2";
+
+ src = fetchgit {
+ url = "https://git.videolan.org/git/ffmpeg/nv-codec-headers.git";
+ rev = "n${version}";
+ sha256 = "0n5jlwjfv5irx1if1g0n52m279bw7ab6bd3jz2v4vwg9cdzbxx85";
+ };
+
+ makeFlags = [ "PREFIX=$(out)" ];
+
+ meta = {
+ description = "FFmpeg version of headers for NVENC";
+ homepage = "https://ffmpeg.org/";
+ license = lib.licenses.mit;
+ maintainers = [ lib.maintainers.MP2E ];
+ platforms = lib.platforms.all;
+ };
+}
diff --git a/pkgs/development/node-packages/default.nix b/pkgs/development/node-packages/default.nix
index 6f5223ad61c9..71eb3727c6a4 100644
--- a/pkgs/development/node-packages/default.nix
+++ b/pkgs/development/node-packages/default.nix
@@ -119,6 +119,10 @@ let
'';
};
+ markdownlint-cli = super.markdownlint-cli.override {
+ meta.mainProgram = "markdownlint";
+ };
+
mirakurun = super.mirakurun.override rec {
nativeBuildInputs = with pkgs; [ makeWrapper ];
postInstall = let
diff --git a/pkgs/development/node-packages/node-packages.json b/pkgs/development/node-packages/node-packages.json
index ab616609c1a5..268ca2409ed2 100644
--- a/pkgs/development/node-packages/node-packages.json
+++ b/pkgs/development/node-packages/node-packages.json
@@ -152,6 +152,7 @@
, "livedown"
, {"lumo-build-deps": "../interpreters/clojurescript/lumo" }
, "madoko"
+, "markdownlint-cli"
, "markdown-link-check"
, "mastodon-bot"
, "mathjax"
diff --git a/pkgs/development/node-packages/node-packages.nix b/pkgs/development/node-packages/node-packages.nix
index 3b2e68016823..be075bfdb04a 100644
--- a/pkgs/development/node-packages/node-packages.nix
+++ b/pkgs/development/node-packages/node-packages.nix
@@ -49,22 +49,13 @@ let
sha512 = "o/xdK8b4P0t/xpCARgWXAeaiWeh9jeua6bP1jrcbfN39+Z4zC4x2jg4NysHNhz6spRG8dJFH3kJIUoIbs0Ckww==";
};
};
- "@angular-devkit/architect-0.1102.10" = {
+ "@angular-devkit/architect-0.1200.2" = {
name = "_at_angular-devkit_slash_architect";
packageName = "@angular-devkit/architect";
- version = "0.1102.10";
+ version = "0.1200.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1102.10.tgz";
- sha512 = "jb/Df6l7XHU7b2hu5gG1WItMo9cDjrqY0i6UzntUQ/QsSMqbnU6yWoRT6orLgN9tGdA4AjIyv+9mfMXHwM2maw==";
- };
- };
- "@angular-devkit/core-11.2.10" = {
- name = "_at_angular-devkit_slash_core";
- packageName = "@angular-devkit/core";
- version = "11.2.10";
- src = fetchurl {
- url = "https://registry.npmjs.org/@angular-devkit/core/-/core-11.2.10.tgz";
- sha512 = "3QBluhsnXsntbl0ybHuXtuH/HBChqibXKmzrENj2n+SKlHFOYhE9PJCSfE6q1kwKN+zg6avOETVziI2pP5xtJQ==";
+ url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1200.2.tgz";
+ sha512 = "Vy/dE1iwEiV63cxcU+SC+Lf5SUnY64vg9J3YA3jxFlJnELbxxN+T7xDfjMEMPoLzTY02K9XNb8ZGLStZxVmZLg==";
};
};
"@angular-devkit/core-11.2.4" = {
@@ -85,13 +76,13 @@ let
sha512 = "3dA0Z6sIIxCDjZS/DucgmIKti7EZ/LgHoHgCO72Q50H5ZXbUSNBz5wGl5hVq2+gzrnFgU/0u40MIs6eptk30ZA==";
};
};
- "@angular-devkit/schematics-11.2.10" = {
- name = "_at_angular-devkit_slash_schematics";
- packageName = "@angular-devkit/schematics";
- version = "11.2.10";
+ "@angular-devkit/core-12.0.2" = {
+ name = "_at_angular-devkit_slash_core";
+ packageName = "@angular-devkit/core";
+ version = "12.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-11.2.10.tgz";
- sha512 = "T1V6mCwc2GYKAWMtCy2HaCxLw1kydu36tGV+dKjKHEwE+8cDgRRT5FhQ+XZzehVDeK9GvDu8Znur1F6i/WmKgw==";
+ url = "https://registry.npmjs.org/@angular-devkit/core/-/core-12.0.2.tgz";
+ sha512 = "n7BmZAW0nx4pEigdAsibvtIm4Vjk1IwY3Bbc8fqD+AQpdYCo+Ake1Eu6fL2XoW8Yco7U4JYYdn/uodWEgBdroQ==";
};
};
"@angular-devkit/schematics-11.2.4" = {
@@ -112,6 +103,15 @@ let
sha512 = "bhi2+5xtVAjtr3bsXKT8pnoBamQrArd/Y20ueA4Od7cd38YT97nzTA1wyHBFG0vWd0HMyg42ZS0aycNBuOebaA==";
};
};
+ "@angular-devkit/schematics-12.0.2" = {
+ name = "_at_angular-devkit_slash_schematics";
+ packageName = "@angular-devkit/schematics";
+ version = "12.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-12.0.2.tgz";
+ sha512 = "PS+SrRhAc/lyRfuBsi6Rt2yV7IA34B7T6J0K8/Av0GABZ83x+0vLiZC39eSPS1X8qcM/U09pCfDT8Q6ZQPCICA==";
+ };
+ };
"@angular-devkit/schematics-cli-0.1102.6" = {
name = "_at_angular-devkit_slash_schematics-cli";
packageName = "@angular-devkit/schematics-cli";
@@ -238,22 +238,22 @@ let
sha512 = "QdwOGF1+eeyFh+17v2Tz626WX0nucd1iKOm6JUTUvCZdbolblCOOQCxGrQPY0f7jEhn36PiAWqZnsC2r5vmUWg==";
};
};
- "@apollo/protobufjs-1.2.0" = {
+ "@apollo/protobufjs-1.2.2" = {
name = "_at_apollo_slash_protobufjs";
packageName = "@apollo/protobufjs";
- version = "1.2.0";
+ version = "1.2.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@apollo/protobufjs/-/protobufjs-1.2.0.tgz";
- sha512 = "TBgsADig/K4Hx71uQO6KPLxgoE/ORhPGh/HgouHru+cum8RLDfAfEY5Dde+cNala+luGI2X4Rs42pLWRud7/WA==";
+ url = "https://registry.npmjs.org/@apollo/protobufjs/-/protobufjs-1.2.2.tgz";
+ sha512 = "vF+zxhPiLtkwxONs6YanSt1EpwpGilThpneExUN5K3tCymuxNnVq2yojTvnpRjv2QfsEIt/n7ozPIIzBLwGIDQ==";
};
};
- "@apollographql/apollo-tools-0.4.12" = {
+ "@apollographql/apollo-tools-0.5.1" = {
name = "_at_apollographql_slash_apollo-tools";
packageName = "@apollographql/apollo-tools";
- version = "0.4.12";
+ version = "0.5.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@apollographql/apollo-tools/-/apollo-tools-0.4.12.tgz";
- sha512 = "JdC7aBzMUO6SaGH5g6MvIG8TWd+7cU/G9cyjKS/woYVtqyICLamyG21R8SmjiBnd5c1UgPWOxjSIxYBL2ln8Mg==";
+ url = "https://registry.npmjs.org/@apollographql/apollo-tools/-/apollo-tools-0.5.1.tgz";
+ sha512 = "ZII+/xUFfb9ezDU2gad114+zScxVFMVlZ91f8fGApMzlS1kkqoyLnC4AJaQ1Ya/X+b63I20B4Gd+eCL8QuB4sA==";
};
};
"@apollographql/graphql-playground-html-1.6.27" = {
@@ -310,13 +310,13 @@ let
sha1 = "e70187f8a862e191b1bce6c0268f13acd3a56b20";
};
};
- "@babel/cli-7.13.16" = {
+ "@babel/cli-7.14.3" = {
name = "_at_babel_slash_cli";
packageName = "@babel/cli";
- version = "7.13.16";
+ version = "7.14.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/cli/-/cli-7.13.16.tgz";
- sha512 = "cL9tllhqvsQ6r1+d9Invf7nNXg/3BlfL1vvvL/AdH9fZ2l5j0CeBcoq6UjsqHpvyN1v5nXSZgqJZoGeK+ZOAbw==";
+ url = "https://registry.npmjs.org/@babel/cli/-/cli-7.14.3.tgz";
+ sha512 = "zU4JLvwk32ay1lhhyGfqiRUSPoltVDjhYkA3aQq8+Yby9z30s/EsFw1EPOHxWG9YZo2pAGfgdRNeHZQAYU5m9A==";
};
};
"@babel/code-frame-7.10.4" = {
@@ -346,13 +346,13 @@ let
sha512 = "HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4vUGBS5v6g==";
};
};
- "@babel/compat-data-7.13.15" = {
+ "@babel/compat-data-7.14.4" = {
name = "_at_babel_slash_compat-data";
packageName = "@babel/compat-data";
- version = "7.13.15";
+ version = "7.14.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.13.15.tgz";
- sha512 = "ltnibHKR1VnrU4ymHyQ/CXtNXI6yZC0oJThyW78Hft8XndANwi+9H+UIklBDraIjFEJzw8wmcM427oDd9KS5wA==";
+ url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.14.4.tgz";
+ sha512 = "i2wXrWQNkH6JplJQGn3Rd2I4Pij8GdHkXwHMxm+zV5YG/Jci+bCNrWZEWC4o+umiDkRrRs4dVzH3X4GP7vyjQQ==";
};
};
"@babel/core-7.10.5" = {
@@ -364,13 +364,13 @@ let
sha512 = "O34LQooYVDXPl7QWCdW9p4NR+QlzOr7xShPPJz8GsuCU3/8ua/wqTr7gmnxXv+WBESiGU/G5s16i6tUvHkNb+w==";
};
};
- "@babel/core-7.13.16" = {
+ "@babel/core-7.14.3" = {
name = "_at_babel_slash_core";
packageName = "@babel/core";
- version = "7.13.16";
+ version = "7.14.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/core/-/core-7.13.16.tgz";
- sha512 = "sXHpixBiWWFti0AV2Zq7avpTasr6sIAu7Y396c608541qAU2ui4a193m0KSQmfPSKFZLnQ3cvlKDOm3XkuXm3Q==";
+ url = "https://registry.npmjs.org/@babel/core/-/core-7.14.3.tgz";
+ sha512 = "jB5AmTKOCSJIZ72sd78ECEhuPiDMKlQdDI/4QRI6lzYATx5SSogS1oQA2AoPecRCknm30gHi2l+QVvNUu3wZAg==";
};
};
"@babel/core-7.9.0" = {
@@ -382,13 +382,13 @@ let
sha512 = "kWc7L0fw1xwvI0zi8OKVBuxRVefwGOrKSQMvrQ3dW+bIIavBY3/NpXmpjMy7bQnLgwgzWQZ8TlM57YHpHNHz4w==";
};
};
- "@babel/generator-7.13.16" = {
+ "@babel/generator-7.14.3" = {
name = "_at_babel_slash_generator";
packageName = "@babel/generator";
- version = "7.13.16";
+ version = "7.14.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/generator/-/generator-7.13.16.tgz";
- sha512 = "grBBR75UnKOcUWMp8WoDxNsWCFl//XCK6HWTrBQKTr5SV9f5g0pNOjdyzi/DTBv12S9GnYPInIXQBTky7OXEMg==";
+ url = "https://registry.npmjs.org/@babel/generator/-/generator-7.14.3.tgz";
+ sha512 = "bn0S6flG/j0xtQdz3hsjJ624h3W0r3llttBMfyHX3YrZ/KtLYr15bjA0FXkgW7FpvrDuTuElXeVjiKlYRpnOFA==";
};
};
"@babel/helper-annotate-as-pure-7.12.13" = {
@@ -409,40 +409,40 @@ let
sha512 = "CZOv9tGphhDRlVjVkAgm8Nhklm9RzSmWpX2my+t7Ua/KT616pEzXsQCjinzvkRvHWJ9itO4f296efroX23XCMA==";
};
};
- "@babel/helper-compilation-targets-7.13.16" = {
+ "@babel/helper-compilation-targets-7.14.4" = {
name = "_at_babel_slash_helper-compilation-targets";
packageName = "@babel/helper-compilation-targets";
- version = "7.13.16";
+ version = "7.14.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.13.16.tgz";
- sha512 = "3gmkYIrpqsLlieFwjkGgLaSHmhnvlAYzZLlYVjlW+QwI+1zE17kGxuJGmIqDQdYp56XdmGeD+Bswx0UTyG18xA==";
+ url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.14.4.tgz";
+ sha512 = "JgdzOYZ/qGaKTVkn5qEDV/SXAh8KcyUVkCoSWGN8T3bwrgd6m+/dJa2kVGi6RJYJgEYPBdZ84BZp9dUjNWkBaA==";
};
};
- "@babel/helper-create-class-features-plugin-7.13.11" = {
+ "@babel/helper-create-class-features-plugin-7.14.4" = {
name = "_at_babel_slash_helper-create-class-features-plugin";
packageName = "@babel/helper-create-class-features-plugin";
- version = "7.13.11";
+ version = "7.14.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.13.11.tgz";
- sha512 = "ays0I7XYq9xbjCSvT+EvysLgfc3tOkwCULHjrnscGT3A9qD4sk3wXnJ3of0MAWsWGjdinFvajHU2smYuqXKMrw==";
+ url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.14.4.tgz";
+ sha512 = "idr3pthFlDCpV+p/rMgGLGYIVtazeatrSOQk8YzO2pAepIjQhCN3myeihVg58ax2bbbGK9PUE1reFi7axOYIOw==";
};
};
- "@babel/helper-create-regexp-features-plugin-7.12.17" = {
+ "@babel/helper-create-regexp-features-plugin-7.14.3" = {
name = "_at_babel_slash_helper-create-regexp-features-plugin";
packageName = "@babel/helper-create-regexp-features-plugin";
- version = "7.12.17";
+ version = "7.14.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.12.17.tgz";
- sha512 = "p2VGmBu9oefLZ2nQpgnEnG0ZlRPvL8gAGvPUMQwUdaE8k49rOMuZpOwdQoy5qJf6K8jL3bcAMhVUlHAjIgJHUg==";
+ url = "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.14.3.tgz";
+ sha512 = "JIB2+XJrb7v3zceV2XzDhGIB902CmKGSpSl4q2C6agU9SNLG/2V1RtFRGPG1Ajh9STj3+q6zJMOC+N/pp2P9DA==";
};
};
- "@babel/helper-define-polyfill-provider-0.2.0" = {
+ "@babel/helper-define-polyfill-provider-0.2.3" = {
name = "_at_babel_slash_helper-define-polyfill-provider";
packageName = "@babel/helper-define-polyfill-provider";
- version = "0.2.0";
+ version = "0.2.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.2.0.tgz";
- sha512 = "JT8tHuFjKBo8NnaUbblz7mIu1nnvUDiHVjXXkulZULyidvo/7P6TY7+YqpV37IfF+KUFxmlK04elKtGKXaiVgw==";
+ url = "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.2.3.tgz";
+ sha512 = "RH3QDAfRMzj7+0Nqu5oqgO5q9mFtQEVvCRsi8qCEfzLR9p2BHfn5FzhSB2oj1fF7I2+DcTORkYaQ6aTR9Cofew==";
};
};
"@babel/helper-explode-assignable-expression-7.13.0" = {
@@ -454,13 +454,13 @@ let
sha512 = "qS0peLTDP8kOisG1blKbaoBg/o9OSa1qoumMjTK5pM+KDTtpxpsiubnCGP34vK8BXGcb2M9eigwgvoJryrzwWA==";
};
};
- "@babel/helper-function-name-7.12.13" = {
+ "@babel/helper-function-name-7.14.2" = {
name = "_at_babel_slash_helper-function-name";
packageName = "@babel/helper-function-name";
- version = "7.12.13";
+ version = "7.14.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.12.13.tgz";
- sha512 = "TZvmPn0UOqmvi5G4vvw0qZTpVptGkB1GL61R6lKvrSdIxGm5Pky7Q3fpKiIkQCAtRCBUwB0PaThlx9vebCDSwA==";
+ url = "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.14.2.tgz";
+ sha512 = "NYZlkZRydxw+YT56IlhIcS8PAhb+FEUiOzuhFTfqDyPmzAhRge6ua0dQYT/Uh0t/EDHq05/i+e5M2d4XvjgarQ==";
};
};
"@babel/helper-get-function-arity-7.12.13" = {
@@ -499,13 +499,13 @@ let
sha512 = "4cVvR2/1B693IuOvSI20xqqa/+bl7lqAMR59R4iu39R9aOX8/JoYY1sFaNvUMyMBGnHdwvJgUrzNLoUZxXypxA==";
};
};
- "@babel/helper-module-transforms-7.13.14" = {
+ "@babel/helper-module-transforms-7.14.2" = {
name = "_at_babel_slash_helper-module-transforms";
packageName = "@babel/helper-module-transforms";
- version = "7.13.14";
+ version = "7.14.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.13.14.tgz";
- sha512 = "QuU/OJ0iAOSIatyVZmfqB0lbkVP0kDRiKj34xy+QNsnVZi/PA6BoSoreeqnxxa9EHFAIL0R9XOaAR/G9WlIy5g==";
+ url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.14.2.tgz";
+ sha512 = "OznJUda/soKXv0XhpvzGWDnml4Qnwp16GN+D/kZIdLsWoHj05kyu8Rm5kXmMef+rVJZ0+4pSGLkeixdqNUATDA==";
};
};
"@babel/helper-optimise-call-expression-7.12.13" = {
@@ -544,13 +544,13 @@ let
sha512 = "pUQpFBE9JvC9lrQbpX0TmeNIy5s7GnZjna2lhhcHC7DzgBs6fWn722Y5cfwgrtrqc7NAJwMvOa0mKhq6XaE4jg==";
};
};
- "@babel/helper-replace-supers-7.13.12" = {
+ "@babel/helper-replace-supers-7.14.4" = {
name = "_at_babel_slash_helper-replace-supers";
packageName = "@babel/helper-replace-supers";
- version = "7.13.12";
+ version = "7.14.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.13.12.tgz";
- sha512 = "Gz1eiX+4yDO8mT+heB94aLVNCL+rbuT2xy4YfyNqu8F+OI6vMvJK891qGBTqL9Uc8wxEvRW92Id6G7sDen3fFw==";
+ url = "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.14.4.tgz";
+ sha512 = "zZ7uHCWlxfEAAOVDYQpEf/uyi1dmeC7fX4nCf2iz9drnCwi1zvwXL3HwWWNXUQEJ1k23yVn3VbddiI9iJEXaTQ==";
};
};
"@babel/helper-simple-access-7.13.12" = {
@@ -580,13 +580,13 @@ let
sha512 = "tCJDltF83htUtXx5NLcaDqRmknv652ZWCHyoTETf1CXYJdPC7nohZohjUgieXhv0hTJdRf2FjDueFehdNucpzg==";
};
};
- "@babel/helper-validator-identifier-7.12.11" = {
+ "@babel/helper-validator-identifier-7.14.0" = {
name = "_at_babel_slash_helper-validator-identifier";
packageName = "@babel/helper-validator-identifier";
- version = "7.12.11";
+ version = "7.14.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz";
- sha512 = "np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==";
+ url = "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.0.tgz";
+ sha512 = "V3ts7zMSu5lfiwWDVWzRDGIN+lnCEUdaXgtVHJgLb1rGaA6jMrtB9EmE7L18foXJIE8Un/A/h6NJfGQp/e1J4A==";
};
};
"@babel/helper-validator-option-7.12.17" = {
@@ -607,31 +607,31 @@ let
sha512 = "1UX9F7K3BS42fI6qd2A4BjKzgGjToscyZTdp1DjknHLCIvpgne6918io+aL5LXFcER/8QWiwpoY902pVEqgTXA==";
};
};
- "@babel/helpers-7.13.17" = {
+ "@babel/helpers-7.14.0" = {
name = "_at_babel_slash_helpers";
packageName = "@babel/helpers";
- version = "7.13.17";
+ version = "7.14.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.13.17.tgz";
- sha512 = "Eal4Gce4kGijo1/TGJdqp3WuhllaMLSrW6XcL0ulyUAQOuxHcCafZE8KHg9857gcTehsm/v7RcOx2+jp0Ryjsg==";
+ url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.14.0.tgz";
+ sha512 = "+ufuXprtQ1D1iZTO/K9+EBRn+qPWMJjZSw/S0KlFrxCw4tkrzv9grgpDHkY9MeQTjTY8i2sp7Jep8DfU6tN9Mg==";
};
};
- "@babel/highlight-7.13.10" = {
+ "@babel/highlight-7.14.0" = {
name = "_at_babel_slash_highlight";
packageName = "@babel/highlight";
- version = "7.13.10";
+ version = "7.14.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/highlight/-/highlight-7.13.10.tgz";
- sha512 = "5aPpe5XQPzflQrFwL1/QoeHkP2MsA4JCntcXHRhEsdsfPVkvPi2w7Qix4iV7t5S/oC9OodGrggd8aco1g3SZFg==";
+ url = "https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.0.tgz";
+ sha512 = "YSCOwxvTYEIMSGaBQb5kDDsCopDdiUGsqpatp3fOlI4+2HQSkTmEVWnVuySdAC5EWCqSWWTv0ib63RjR7dTBdg==";
};
};
- "@babel/parser-7.13.16" = {
+ "@babel/parser-7.14.4" = {
name = "_at_babel_slash_parser";
packageName = "@babel/parser";
- version = "7.13.16";
+ version = "7.14.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/parser/-/parser-7.13.16.tgz";
- sha512 = "6bAg36mCwuqLO0hbR+z7PHuqWiCeP7Dzg73OpQwsAB1Eb8HnGEz5xYBzCfbu+YjoaJsJs+qheDxVAuqbt3ILEw==";
+ url = "https://registry.npmjs.org/@babel/parser/-/parser-7.14.4.tgz";
+ sha512 = "ArliyUsWDUqEGfWcmzpGUzNfLxTdTp6WU4IuP6QFSp9gGfWS6boxFCkJSJ/L4+RG8z/FnIU3WxCk6hPL9SSWeA==";
};
};
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.13.12" = {
@@ -652,13 +652,13 @@ let
sha512 = "mx0WXDDiIl5DwzMtzWGRSPugXi9BxROS05GQrhLNbEamhBiicgn994ibwkyiBH+6png7bm/yA7AUsvHyCXi4Vw==";
};
};
- "@babel/plugin-proposal-async-generator-functions-7.13.15" = {
+ "@babel/plugin-proposal-async-generator-functions-7.14.2" = {
name = "_at_babel_slash_plugin-proposal-async-generator-functions";
packageName = "@babel/plugin-proposal-async-generator-functions";
- version = "7.13.15";
+ version = "7.14.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.13.15.tgz";
- sha512 = "VapibkWzFeoa6ubXy/NgV5U2U4MVnUlvnx6wo1XhlsaTrLYWE0UFpDQsVrmn22q5CzeloqJ8gEMHSKxuee6ZdA==";
+ url = "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.14.2.tgz";
+ sha512 = "b1AM4F6fwck4N8ItZ/AtC4FP/cqZqmKRQ4FaTDutwSYyjuhtvsGEMLK4N/ztV/ImP40BjIDyMgBQAeAMsQYVFQ==";
};
};
"@babel/plugin-proposal-class-properties-7.12.13" = {
@@ -679,13 +679,22 @@ let
sha512 = "KnTDjFNC1g+45ka0myZNvSBFLhNCLN+GeGYLDEA8Oq7MZ6yMgfLoIRh86GRT0FjtJhZw8JyUskP9uvj5pHM9Zg==";
};
};
- "@babel/plugin-proposal-dynamic-import-7.13.8" = {
+ "@babel/plugin-proposal-class-static-block-7.14.3" = {
+ name = "_at_babel_slash_plugin-proposal-class-static-block";
+ packageName = "@babel/plugin-proposal-class-static-block";
+ version = "7.14.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.14.3.tgz";
+ sha512 = "HEjzp5q+lWSjAgJtSluFDrGGosmwTgKwCXdDQZvhKsRlwv3YdkUEqxNrrjesJd+B9E9zvr1PVPVBvhYZ9msjvQ==";
+ };
+ };
+ "@babel/plugin-proposal-dynamic-import-7.14.2" = {
name = "_at_babel_slash_plugin-proposal-dynamic-import";
packageName = "@babel/plugin-proposal-dynamic-import";
- version = "7.13.8";
+ version = "7.14.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.13.8.tgz";
- sha512 = "ONWKj0H6+wIRCkZi9zSbZtE/r73uOhMVHh256ys0UzfM7I3d4n+spZNWjOnJv2gzopumP2Wxi186vI8N0Y2JyQ==";
+ url = "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.14.2.tgz";
+ sha512 = "oxVQZIWFh91vuNEMKltqNsKLFWkOIyJc95k2Gv9lWVyDfPUQGSSlbDEgWuJUU1afGE9WwlzpucMZ3yDRHIItkA==";
};
};
"@babel/plugin-proposal-export-default-from-7.12.13" = {
@@ -697,49 +706,49 @@ let
sha512 = "idIsBT+DGXdOHL82U+8bwX4goHm/z10g8sGGrQroh+HCRcm7mDv/luaGdWJQMTuCX2FsdXS7X0Nyyzp4znAPJA==";
};
};
- "@babel/plugin-proposal-export-namespace-from-7.12.13" = {
+ "@babel/plugin-proposal-export-namespace-from-7.14.2" = {
name = "_at_babel_slash_plugin-proposal-export-namespace-from";
packageName = "@babel/plugin-proposal-export-namespace-from";
- version = "7.12.13";
+ version = "7.14.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.12.13.tgz";
- sha512 = "INAgtFo4OnLN3Y/j0VwAgw3HDXcDtX+C/erMvWzuV9v71r7urb6iyMXu7eM9IgLr1ElLlOkaHjJ0SbCmdOQ3Iw==";
+ url = "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.14.2.tgz";
+ sha512 = "sRxW3z3Zp3pFfLAgVEvzTFutTXax837oOatUIvSG9o5gRj9mKwm3br1Se5f4QalTQs9x4AzlA/HrCWbQIHASUQ==";
};
};
- "@babel/plugin-proposal-json-strings-7.13.8" = {
+ "@babel/plugin-proposal-json-strings-7.14.2" = {
name = "_at_babel_slash_plugin-proposal-json-strings";
packageName = "@babel/plugin-proposal-json-strings";
- version = "7.13.8";
+ version = "7.14.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.13.8.tgz";
- sha512 = "w4zOPKUFPX1mgvTmL/fcEqy34hrQ1CRcGxdphBc6snDnnqJ47EZDIyop6IwXzAC8G916hsIuXB2ZMBCExC5k7Q==";
+ url = "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.14.2.tgz";
+ sha512 = "w2DtsfXBBJddJacXMBhElGEYqCZQqN99Se1qeYn8DVLB33owlrlLftIbMzn5nz1OITfDVknXF433tBrLEAOEjA==";
};
};
- "@babel/plugin-proposal-logical-assignment-operators-7.13.8" = {
+ "@babel/plugin-proposal-logical-assignment-operators-7.14.2" = {
name = "_at_babel_slash_plugin-proposal-logical-assignment-operators";
packageName = "@babel/plugin-proposal-logical-assignment-operators";
- version = "7.13.8";
+ version = "7.14.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.13.8.tgz";
- sha512 = "aul6znYB4N4HGweImqKn59Su9RS8lbUIqxtXTOcAGtNIDczoEFv+l1EhmX8rUBp3G1jMjKJm8m0jXVp63ZpS4A==";
+ url = "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.14.2.tgz";
+ sha512 = "1JAZtUrqYyGsS7IDmFeaem+/LJqujfLZ2weLR9ugB0ufUPjzf8cguyVT1g5im7f7RXxuLq1xUxEzvm68uYRtGg==";
};
};
- "@babel/plugin-proposal-nullish-coalescing-operator-7.13.8" = {
+ "@babel/plugin-proposal-nullish-coalescing-operator-7.14.2" = {
name = "_at_babel_slash_plugin-proposal-nullish-coalescing-operator";
packageName = "@babel/plugin-proposal-nullish-coalescing-operator";
- version = "7.13.8";
+ version = "7.14.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.13.8.tgz";
- sha512 = "iePlDPBn//UhxExyS9KyeYU7RM9WScAG+D3Hhno0PLJebAEpDZMocbDe64eqynhNAnwz/vZoL/q/QB2T1OH39A==";
+ url = "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.14.2.tgz";
+ sha512 = "ebR0zU9OvI2N4qiAC38KIAK75KItpIPTpAtd2r4OZmMFeKbKJpUFLYP2EuDut82+BmYi8sz42B+TfTptJ9iG5Q==";
};
};
- "@babel/plugin-proposal-numeric-separator-7.12.13" = {
+ "@babel/plugin-proposal-numeric-separator-7.14.2" = {
name = "_at_babel_slash_plugin-proposal-numeric-separator";
packageName = "@babel/plugin-proposal-numeric-separator";
- version = "7.12.13";
+ version = "7.14.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.13.tgz";
- sha512 = "O1jFia9R8BUCl3ZGB7eitaAPu62TXJRHn7rh+ojNERCFyqRwJMTmhz+tJ+k0CwI6CLjX/ee4qW74FSqlq9I35w==";
+ url = "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.14.2.tgz";
+ sha512 = "DcTQY9syxu9BpU3Uo94fjCB3LN9/hgPS8oUL7KrSW3bA2ePrKZZPJcc5y0hoJAM9dft3pGfErtEUvxXQcfLxUg==";
};
};
"@babel/plugin-proposal-object-rest-spread-7.10.4" = {
@@ -751,31 +760,31 @@ let
sha512 = "6vh4SqRuLLarjgeOf4EaROJAHjvu9Gl+/346PbDH9yWbJyfnJ/ah3jmYKYtswEyCoWZiidvVHjHshd4WgjB9BA==";
};
};
- "@babel/plugin-proposal-object-rest-spread-7.13.8" = {
+ "@babel/plugin-proposal-object-rest-spread-7.14.4" = {
name = "_at_babel_slash_plugin-proposal-object-rest-spread";
packageName = "@babel/plugin-proposal-object-rest-spread";
- version = "7.13.8";
+ version = "7.14.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.13.8.tgz";
- sha512 = "DhB2EuB1Ih7S3/IRX5AFVgZ16k3EzfRbq97CxAVI1KSYcW+lexV8VZb7G7L8zuPVSdQMRn0kiBpf/Yzu9ZKH0g==";
+ url = "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.14.4.tgz";
+ sha512 = "AYosOWBlyyXEagrPRfLJ1enStufsr7D1+ddpj8OLi9k7B6+NdZ0t/9V7Fh+wJ4g2Jol8z2JkgczYqtWrZd4vbA==";
};
};
- "@babel/plugin-proposal-optional-catch-binding-7.13.8" = {
+ "@babel/plugin-proposal-optional-catch-binding-7.14.2" = {
name = "_at_babel_slash_plugin-proposal-optional-catch-binding";
packageName = "@babel/plugin-proposal-optional-catch-binding";
- version = "7.13.8";
+ version = "7.14.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.13.8.tgz";
- sha512 = "0wS/4DUF1CuTmGo+NiaHfHcVSeSLj5S3e6RivPTg/2k3wOv3jO35tZ6/ZWsQhQMvdgI7CwphjQa/ccarLymHVA==";
+ url = "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.14.2.tgz";
+ sha512 = "XtkJsmJtBaUbOxZsNk0Fvrv8eiqgneug0A6aqLFZ4TSkar2L5dSXWcnUKHgmjJt49pyB/6ZHvkr3dPgl9MOWRQ==";
};
};
- "@babel/plugin-proposal-optional-chaining-7.13.12" = {
+ "@babel/plugin-proposal-optional-chaining-7.14.2" = {
name = "_at_babel_slash_plugin-proposal-optional-chaining";
packageName = "@babel/plugin-proposal-optional-chaining";
- version = "7.13.12";
+ version = "7.14.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.13.12.tgz";
- sha512 = "fcEdKOkIB7Tf4IxrgEVeFC4zeJSTr78no9wTdBuZZbqF64kzllU0ybo2zrzm7gUQfxGhBgq4E39oRs8Zx/RMYQ==";
+ url = "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.14.2.tgz";
+ sha512 = "qQByMRPwMZJainfig10BoaDldx/+VDtNcrA7qdNaEOAj6VXud+gfrkA8j4CRAU5HjnWREXqIpSpH30qZX1xivA==";
};
};
"@babel/plugin-proposal-private-methods-7.13.0" = {
@@ -787,6 +796,15 @@ let
sha512 = "MXyyKQd9inhx1kDYPkFRVOBXQ20ES8Pto3T7UZ92xj2mY0EVD8oAVzeyYuVfy/mxAdTSIayOvg+aVzcHV2bn6Q==";
};
};
+ "@babel/plugin-proposal-private-property-in-object-7.14.0" = {
+ name = "_at_babel_slash_plugin-proposal-private-property-in-object";
+ packageName = "@babel/plugin-proposal-private-property-in-object";
+ version = "7.14.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.14.0.tgz";
+ sha512 = "59ANdmEwwRUkLjB7CRtwJxxwtjESw+X2IePItA+RGQh+oy5RmpCh/EvVVvh5XQc3yxsm5gtv0+i9oBZhaDNVTg==";
+ };
+ };
"@babel/plugin-proposal-unicode-property-regex-7.12.13" = {
name = "_at_babel_slash_plugin-proposal-unicode-property-regex";
packageName = "@babel/plugin-proposal-unicode-property-regex";
@@ -823,6 +841,15 @@ let
sha512 = "fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==";
};
};
+ "@babel/plugin-syntax-class-static-block-7.12.13" = {
+ name = "_at_babel_slash_plugin-syntax-class-static-block";
+ packageName = "@babel/plugin-syntax-class-static-block";
+ version = "7.12.13";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.12.13.tgz";
+ sha512 = "ZmKQ0ZXR0nYpHZIIuj9zE7oIqCx2hw9TKi+lIo73NNrMPAZGHfS92/VRV0ZmPj6H2ffBgyFHXvJ5NYsNeEaP2A==";
+ };
+ };
"@babel/plugin-syntax-dynamic-import-7.8.3" = {
name = "_at_babel_slash_plugin-syntax-dynamic-import";
packageName = "@babel/plugin-syntax-dynamic-import";
@@ -949,6 +976,15 @@ let
sha512 = "KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==";
};
};
+ "@babel/plugin-syntax-private-property-in-object-7.14.0" = {
+ name = "_at_babel_slash_plugin-syntax-private-property-in-object";
+ packageName = "@babel/plugin-syntax-private-property-in-object";
+ version = "7.14.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.0.tgz";
+ sha512 = "bda3xF8wGl5/5btF794utNOL0Jw+9jE5C1sLZcoK7c4uonE/y3iQiyG+KbkF3WBV/paX58VCpjhxLPkdj5Fe4w==";
+ };
+ };
"@babel/plugin-syntax-top-level-await-7.12.13" = {
name = "_at_babel_slash_plugin-syntax-top-level-await";
packageName = "@babel/plugin-syntax-top-level-await";
@@ -994,22 +1030,22 @@ let
sha512 = "zNyFqbc3kI/fVpqwfqkg6RvBgFpC4J18aKKMmv7KdQ/1GgREapSJAykLMVNwfRGO3BtHj3YQZl8kxCXPcVMVeg==";
};
};
- "@babel/plugin-transform-block-scoping-7.13.16" = {
+ "@babel/plugin-transform-block-scoping-7.14.4" = {
name = "_at_babel_slash_plugin-transform-block-scoping";
packageName = "@babel/plugin-transform-block-scoping";
- version = "7.13.16";
+ version = "7.14.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.13.16.tgz";
- sha512 = "ad3PHUxGnfWF4Efd3qFuznEtZKoBp0spS+DgqzVzRPV7urEBvPLue3y2j80w4Jf2YLzZHj8TOv/Lmvdmh3b2xg==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.14.4.tgz";
+ sha512 = "5KdpkGxsZlTk+fPleDtGKsA+pon28+ptYmMO8GBSa5fHERCJWAzj50uAfCKBqq42HO+Zot6JF1x37CRprwmN4g==";
};
};
- "@babel/plugin-transform-classes-7.13.0" = {
+ "@babel/plugin-transform-classes-7.14.4" = {
name = "_at_babel_slash_plugin-transform-classes";
packageName = "@babel/plugin-transform-classes";
- version = "7.13.0";
+ version = "7.14.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.13.0.tgz";
- sha512 = "9BtHCPUARyVH1oXGcSJD3YpsqRLROJx5ZNP6tN5vnk17N0SVf9WCtf8Nuh1CFmgByKKAIMstitKduoCmsaDK5g==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.14.4.tgz";
+ sha512 = "p73t31SIj6y94RDVX57rafVjttNr8MvKEgs5YFatNB/xC68zM3pyosuOEcQmYsYlyQaGY9R7rAULVRcat5FKJQ==";
};
};
"@babel/plugin-transform-computed-properties-7.13.0" = {
@@ -1021,13 +1057,13 @@ let
sha512 = "RRqTYTeZkZAz8WbieLTvKUEUxZlUTdmL5KGMyZj7FnMfLNKV4+r5549aORG/mgojRmFlQMJDUupwAMiF2Q7OUg==";
};
};
- "@babel/plugin-transform-destructuring-7.13.17" = {
+ "@babel/plugin-transform-destructuring-7.14.4" = {
name = "_at_babel_slash_plugin-transform-destructuring";
packageName = "@babel/plugin-transform-destructuring";
- version = "7.13.17";
+ version = "7.14.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.13.17.tgz";
- sha512 = "UAUqiLv+uRLO+xuBKKMEpC+t7YRNVRqBsWWq1yKXbBZBje/t3IXCiSinZhjn/DC3qzBfICeYd2EFGEbHsh5RLA==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.14.4.tgz";
+ sha512 = "JyywKreTCGTUsL1OKu1A3ms/R1sTP0WxbpXlALeGzF53eB3bxtNkYdMj9SDgK7g6ImPy76J5oYYKoTtQImlhQA==";
};
};
"@babel/plugin-transform-dotall-regex-7.12.13" = {
@@ -1102,22 +1138,22 @@ let
sha512 = "kxLkOsg8yir4YeEPHLuO2tXP9R/gTjpuTOjshqSpELUN3ZAg2jfDnKUvzzJxObun38sw3wm4Uu69sX/zA7iRvg==";
};
};
- "@babel/plugin-transform-modules-amd-7.13.0" = {
+ "@babel/plugin-transform-modules-amd-7.14.2" = {
name = "_at_babel_slash_plugin-transform-modules-amd";
packageName = "@babel/plugin-transform-modules-amd";
- version = "7.13.0";
+ version = "7.14.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.13.0.tgz";
- sha512 = "EKy/E2NHhY/6Vw5d1k3rgoobftcNUmp9fGjb9XZwQLtTctsRBOTRO7RHHxfIky1ogMN5BxN7p9uMA3SzPfotMQ==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.14.2.tgz";
+ sha512 = "hPC6XBswt8P3G2D1tSV2HzdKvkqOpmbyoy+g73JG0qlF/qx2y3KaMmXb1fLrpmWGLZYA0ojCvaHdzFWjlmV+Pw==";
};
};
- "@babel/plugin-transform-modules-commonjs-7.13.8" = {
+ "@babel/plugin-transform-modules-commonjs-7.14.0" = {
name = "_at_babel_slash_plugin-transform-modules-commonjs";
packageName = "@babel/plugin-transform-modules-commonjs";
- version = "7.13.8";
+ version = "7.14.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.13.8.tgz";
- sha512 = "9QiOx4MEGglfYZ4XOnU79OHr6vIWUakIj9b4mioN8eQIoEh+pf5p/zEB36JpDFWA12nNMiRf7bfoRvl9Rn79Bw==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.14.0.tgz";
+ sha512 = "EX4QePlsTaRZQmw9BsoPeyh5OCtRGIhwfLquhxGp5e32w+dyL8htOcDwamlitmNFK6xBZYlygjdye9dbd9rUlQ==";
};
};
"@babel/plugin-transform-modules-systemjs-7.13.8" = {
@@ -1129,13 +1165,13 @@ let
sha512 = "hwqctPYjhM6cWvVIlOIe27jCIBgHCsdH2xCJVAYQm7V5yTMoilbVMi9f6wKg0rpQAOn6ZG4AOyvCqFF/hUh6+A==";
};
};
- "@babel/plugin-transform-modules-umd-7.13.0" = {
+ "@babel/plugin-transform-modules-umd-7.14.0" = {
name = "_at_babel_slash_plugin-transform-modules-umd";
packageName = "@babel/plugin-transform-modules-umd";
- version = "7.13.0";
+ version = "7.14.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.13.0.tgz";
- sha512 = "D/ILzAh6uyvkWjKKyFE/W0FzWwasv6vPTSqPcjxFqn6QpX3u8DjRVliq4F2BamO2Wee/om06Vyy+vPkNrd4wxw==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.14.0.tgz";
+ sha512 = "nPZdnWtXXeY7I87UZr9VlsWme3Y0cfFFE41Wbxz4bbaexAjNMInXPFUpRRUJ8NoMm0Cw+zxbqjdPmLhcjfazMw==";
};
};
"@babel/plugin-transform-named-capturing-groups-regex-7.12.13" = {
@@ -1174,13 +1210,13 @@ let
sha512 = "JzYIcj3XtYspZDV8j9ulnoMPZZnF/Cj0LUxPOjR89BdBVx+zYJI9MdMIlUZjbXDX+6YVeS6I3e8op+qQ3BYBoQ==";
};
};
- "@babel/plugin-transform-parameters-7.13.0" = {
+ "@babel/plugin-transform-parameters-7.14.2" = {
name = "_at_babel_slash_plugin-transform-parameters";
packageName = "@babel/plugin-transform-parameters";
- version = "7.13.0";
+ version = "7.14.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.13.0.tgz";
- sha512 = "Jt8k/h/mIwE2JFEOb3lURoY5C85ETcYPnbuAJ96zRBzh1XHtQZfs62ChZ6EP22QlC8c7Xqr9q+e1SU5qttwwjw==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.14.2.tgz";
+ sha512 = "NxoVmA3APNCC1JdMXkdYXuQS+EMdqy0vIwyDHeKHiJKRxmp1qGSdb0JLEIoPRhkx6H/8Qi3RJ3uqOCYw8giy9A==";
};
};
"@babel/plugin-transform-property-literals-7.12.13" = {
@@ -1192,22 +1228,22 @@ let
sha512 = "nqVigwVan+lR+g8Fj8Exl0UQX2kymtjcWfMOYM1vTYEKujeyv2SkMgazf2qNcK7l4SDiKyTA/nHCPqL4e2zo1A==";
};
};
- "@babel/plugin-transform-react-display-name-7.12.13" = {
+ "@babel/plugin-transform-react-display-name-7.14.2" = {
name = "_at_babel_slash_plugin-transform-react-display-name";
packageName = "@babel/plugin-transform-react-display-name";
- version = "7.12.13";
+ version = "7.14.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.12.13.tgz";
- sha512 = "MprESJzI9O5VnJZrL7gg1MpdqmiFcUv41Jc7SahxYsNP2kDkFqClxxTZq+1Qv4AFCamm+GXMRDQINNn+qrxmiA==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.14.2.tgz";
+ sha512 = "zCubvP+jjahpnFJvPaHPiGVfuVUjXHhFvJKQdNnsmSsiU9kR/rCZ41jHc++tERD2zV+p7Hr6is+t5b6iWTCqSw==";
};
};
- "@babel/plugin-transform-react-jsx-7.13.12" = {
+ "@babel/plugin-transform-react-jsx-7.14.3" = {
name = "_at_babel_slash_plugin-transform-react-jsx";
packageName = "@babel/plugin-transform-react-jsx";
- version = "7.13.12";
+ version = "7.14.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.13.12.tgz";
- sha512 = "jcEI2UqIcpCqB5U5DRxIl0tQEProI2gcu+g8VTIqxLO5Iidojb4d77q+fwGseCvd8af/lJ9masp4QWzBXFE2xA==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.14.3.tgz";
+ sha512 = "uuxuoUNVhdgYzERiHHFkE4dWoJx+UFVyuAl0aqN8P2/AKFHwqgUC5w2+4/PjpKXJsFgBlYAFXlUmDQ3k3DUkXw==";
};
};
"@babel/plugin-transform-react-jsx-development-7.12.17" = {
@@ -1228,13 +1264,13 @@ let
sha512 = "FXYw98TTJ125GVCCkFLZXlZ1qGcsYqNQhVBQcZjyrwf8FEUtVfKIoidnO8S0q+KBQpDYNTmiGo1gn67Vti04lQ==";
};
};
- "@babel/plugin-transform-react-jsx-source-7.12.13" = {
+ "@babel/plugin-transform-react-jsx-source-7.14.2" = {
name = "_at_babel_slash_plugin-transform-react-jsx-source";
packageName = "@babel/plugin-transform-react-jsx-source";
- version = "7.12.13";
+ version = "7.14.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.12.13.tgz";
- sha512 = "O5JJi6fyfih0WfDgIJXksSPhGP/G0fQpfxYy87sDc+1sFmsCS6wr3aAn+whbzkhbjtq4VMqLRaSzR6IsshIC0Q==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.14.2.tgz";
+ sha512 = "OMorspVyjxghAjzgeAWc6O7W7vHbJhV69NeTGdl9Mxgz6PaweAuo7ffB9T5A1OQ9dGcw0As4SYMUhyNC4u7mVg==";
};
};
"@babel/plugin-transform-react-pure-annotations-7.12.1" = {
@@ -1264,13 +1300,13 @@ let
sha512 = "xhUPzDXxZN1QfiOy/I5tyye+TRz6lA7z6xaT4CLOjPRMVg1ldRf0LHw0TDBpYL4vG78556WuHdyO9oi5UmzZBg==";
};
};
- "@babel/plugin-transform-runtime-7.13.15" = {
+ "@babel/plugin-transform-runtime-7.14.3" = {
name = "_at_babel_slash_plugin-transform-runtime";
packageName = "@babel/plugin-transform-runtime";
- version = "7.13.15";
+ version = "7.14.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.13.15.tgz";
- sha512 = "d+ezl76gx6Jal08XngJUkXM4lFXK/5Ikl9Mh4HKDxSfGJXmZ9xG64XT2oivBzfxb/eQ62VfvoMkaCZUKJMVrBA==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.14.3.tgz";
+ sha512 = "t960xbi8wpTFE623ef7sd+UpEC5T6EEguQlTBJDEO05+XwnIWVfuqLw/vdLWY6IdFmtZE+65CZAfByT39zRpkg==";
};
};
"@babel/plugin-transform-shorthand-properties-7.12.13" = {
@@ -1318,13 +1354,13 @@ let
sha512 = "eKv/LmUJpMnu4npgfvs3LiHhJua5fo/CysENxa45YCQXZwKnGCQKAg87bvoqSW1fFT+HA32l03Qxsm8ouTY3ZQ==";
};
};
- "@babel/plugin-transform-typescript-7.13.0" = {
+ "@babel/plugin-transform-typescript-7.14.4" = {
name = "_at_babel_slash_plugin-transform-typescript";
packageName = "@babel/plugin-transform-typescript";
- version = "7.13.0";
+ version = "7.14.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.13.0.tgz";
- sha512 = "elQEwluzaU8R8dbVuW2Q2Y8Nznf7hnjM7+DSCd14Lo5fF63C9qNLbwZYbmZrtV9/ySpSUpkRpQXvJb6xyu4hCQ==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.14.4.tgz";
+ sha512 = "WYdcGNEO7mCCZ2XzRlxwGj3PgeAr50ifkofOUC/+IN/GzKLB+biDPVBUAQN2C/dVZTvEXCp80kfQ1FFZPrwykQ==";
};
};
"@babel/plugin-transform-unicode-escapes-7.12.13" = {
@@ -1354,13 +1390,13 @@ let
sha512 = "9PMijx8zFbCwTHrd2P4PJR5nWGH3zWebx2OcpTjqQrHhCiL2ssSR2Sc9ko2BsI2VmVBfoaQmPrlMTCui4LmXQg==";
};
};
- "@babel/preset-env-7.13.15" = {
+ "@babel/preset-env-7.14.4" = {
name = "_at_babel_slash_preset-env";
packageName = "@babel/preset-env";
- version = "7.13.15";
+ version = "7.14.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.13.15.tgz";
- sha512 = "D4JAPMXcxk69PKe81jRJ21/fP/uYdcTZ3hJDF5QX2HSI9bBxxYw/dumdR6dGumhjxlprHPE4XWoPaqzZUVy2MA==";
+ url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.14.4.tgz";
+ sha512 = "GwMMsuAnDtULyOtuxHhzzuSRxFeP0aR/LNzrHRzP8y6AgDNgqnrfCCBm/1cRdTU75tRs28Eh76poHLcg9VF0LA==";
};
};
"@babel/preset-flow-7.13.13" = {
@@ -1435,15 +1471,6 @@ let
sha512 = "dh2t11ysujTwByQjXNgJ48QZ2zcXKQVdV8s0TbeMI0flmtGWCdTwK9tJiACHXPLmncm5+ktNn/diojA45JE4jg==";
};
};
- "@babel/runtime-7.13.17" = {
- name = "_at_babel_slash_runtime";
- packageName = "@babel/runtime";
- version = "7.13.17";
- src = fetchurl {
- url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.13.17.tgz";
- sha512 = "NCdgJEelPTSh+FEFylhnP1ylq848l1z9t9N0j1Lfbcw0+KXGjsTvUmkxy+voLLXB5SOKMbLLx4jxYliGrYQseA==";
- };
- };
"@babel/runtime-7.13.9" = {
name = "_at_babel_slash_runtime";
packageName = "@babel/runtime";
@@ -1453,6 +1480,15 @@ let
sha512 = "aY2kU+xgJ3dJ1eU6FMB9EH8dIe8dmusF1xEku52joLvw6eAFN0AI+WxCLDnpev2LEejWBAy2sBvBOBAjI3zmvA==";
};
};
+ "@babel/runtime-7.14.0" = {
+ name = "_at_babel_slash_runtime";
+ packageName = "@babel/runtime";
+ version = "7.14.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.14.0.tgz";
+ sha512 = "JELkvo/DlpNdJ7dlyw/eY7E0suy5i5GQH+Vlxaq1nsNJ+H7f4Vtv3jMeCEgRhZZQFXTjldYfQgv2qmM6M1v5wA==";
+ };
+ };
"@babel/runtime-7.9.0" = {
name = "_at_babel_slash_runtime";
packageName = "@babel/runtime";
@@ -1462,22 +1498,13 @@ let
sha512 = "cTIudHnzuWLS56ik4DnRnqqNf8MkdUzV4iFFI1h7Jo9xvrpQROYaAnaSd2mHLQAzzZAPfATynX5ord6YlNYNMA==";
};
};
- "@babel/runtime-corejs3-7.13.17" = {
- name = "_at_babel_slash_runtime-corejs3";
- packageName = "@babel/runtime-corejs3";
- version = "7.13.17";
- src = fetchurl {
- url = "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.13.17.tgz";
- sha512 = "RGXINY1YvduBlGrP+vHjJqd/nK7JVpfM4rmZLGMx77WoL3sMrhheA0qxii9VNn1VHnxJLEyxmvCB+Wqc+x/FMw==";
- };
- };
- "@babel/standalone-7.13.17" = {
+ "@babel/standalone-7.14.4" = {
name = "_at_babel_slash_standalone";
packageName = "@babel/standalone";
- version = "7.13.17";
+ version = "7.14.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/standalone/-/standalone-7.13.17.tgz";
- sha512 = "Y9P198T45MIIu+AvGOCcjsdKl79+BCL2nA+6ODA5p/DhGzymvzaTgtzvNcjZDcJmbPszcmohjLLgvma3tmvVtg==";
+ url = "https://registry.npmjs.org/@babel/standalone/-/standalone-7.14.4.tgz";
+ sha512 = "oBvBtSdACtNeH2YAg2kyZhfbqfKQK7lgudfHo8IC03JiBrfuvvMlfkBaSrqxrpf9DmUCZJnDZH3uLNVN5QoXog==";
};
};
"@babel/template-7.12.13" = {
@@ -1489,22 +1516,22 @@ let
sha512 = "/7xxiGA57xMo/P2GVvdEumr8ONhFOhfgq2ihK3h1e6THqzTAkHbkXgB0xI9yeTfIUoH3+oAeHhqm/I43OTbbjA==";
};
};
- "@babel/traverse-7.13.17" = {
+ "@babel/traverse-7.14.2" = {
name = "_at_babel_slash_traverse";
packageName = "@babel/traverse";
- version = "7.13.17";
+ version = "7.14.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.13.17.tgz";
- sha512 = "BMnZn0R+X6ayqm3C3To7o1j7Q020gWdqdyP50KEoVqaCO2c/Im7sYZSmVgvefp8TTMQ+9CtwuBp0Z1CZ8V3Pvg==";
+ url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.14.2.tgz";
+ sha512 = "TsdRgvBFHMyHOOzcP9S6QU0QQtjxlRpEYOy3mcCO5RgmC305ki42aSAmfZEMSSYBla2oZ9BMqYlncBaKmD/7iA==";
};
};
- "@babel/types-7.13.17" = {
+ "@babel/types-7.14.4" = {
name = "_at_babel_slash_types";
packageName = "@babel/types";
- version = "7.13.17";
+ version = "7.14.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/types/-/types-7.13.17.tgz";
- sha512 = "RawydLgxbOPDlTLJNtoIypwdmAy//uQIzlKt2+iBiJaRlVuI6QLUxVAyWGNfOzp8Yu4L4lLIacoCyTNtpb4wiA==";
+ url = "https://registry.npmjs.org/@babel/types/-/types-7.14.4.tgz";
+ sha512 = "lCj4aIs0xUefJFQnwwQv2Bxg7Omd6bgquZ6LGC+gGMh6/s5qDVfjuCMlDmYQ15SLsWHd9n+X3E75lKIhl5Lkiw==";
};
};
"@braintree/sanitize-url-3.1.0" = {
@@ -1516,22 +1543,22 @@ let
sha512 = "GcIY79elgB+azP74j8vqkiXz8xLFfIzbQJdlwOPisgbKT00tviJQuEghOXSMVxJ00HoYJbGswr4kcllUc4xCcg==";
};
};
- "@bugsnag/browser-7.9.2" = {
+ "@bugsnag/browser-7.10.1" = {
name = "_at_bugsnag_slash_browser";
packageName = "@bugsnag/browser";
- version = "7.9.2";
+ version = "7.10.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@bugsnag/browser/-/browser-7.9.2.tgz";
- sha512 = "vD0UEpInqoOWxqSdXhDN7wbt8hUnaqmHF/nyQK6pVYlPmBOaseexwjGBWQ1BCa4QWwK1CDDBy6sS9onUvWKsnw==";
+ url = "https://registry.npmjs.org/@bugsnag/browser/-/browser-7.10.1.tgz";
+ sha512 = "Yxm/DheT/NHX2PhadBDuafuHBhP547Iav6Y9jf+skBBSi1n0ZYkGhtVxh8ZWLgqz5W8MsJ0HFiLBqcg/mulSvQ==";
};
};
- "@bugsnag/core-7.9.2" = {
+ "@bugsnag/core-7.10.0" = {
name = "_at_bugsnag_slash_core";
packageName = "@bugsnag/core";
- version = "7.9.2";
+ version = "7.10.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@bugsnag/core/-/core-7.9.2.tgz";
- sha512 = "iz18qkEhrF0Bra0lpEP4VC0EJa48R+3QDDiTtfHW9fiZGKw+ADrUhwW7pHJn+LDqWfq4kMqJNuQC+8s4dV3MYg==";
+ url = "https://registry.npmjs.org/@bugsnag/core/-/core-7.10.0.tgz";
+ sha512 = "sDa2nDxwsxHQx2/2/tsBWjYqH0TewCR8N/r5at6B+irwVkI0uts7Qc2JyqDTfiEiBXKVEXFK+fHTz1x9b8tsiA==";
};
};
"@bugsnag/cuid-3.0.0" = {
@@ -1543,22 +1570,22 @@ let
sha512 = "LOt8aaBI+KvOQGneBtpuCz3YqzyEAehd1f3nC5yr9TIYW1+IzYKa2xWS4EiMz5pPOnRPHkyyS5t/wmSmN51Gjg==";
};
};
- "@bugsnag/js-7.9.2" = {
+ "@bugsnag/js-7.10.1" = {
name = "_at_bugsnag_slash_js";
packageName = "@bugsnag/js";
- version = "7.9.2";
+ version = "7.10.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@bugsnag/js/-/js-7.9.2.tgz";
- sha512 = "RkajX7cnlYKm4uWclf4oQKZL69A9Vo5jNyQiE7u8uFXhotHoDyHi5QLkdHOSIOZHkBGkgoRV9tkbPAJKcnJSuQ==";
+ url = "https://registry.npmjs.org/@bugsnag/js/-/js-7.10.1.tgz";
+ sha512 = "1/MK/Bw2ViFx1hMG2TOX8MOq/LzT2VRd0VswknF4LYsZSgzohkRzz/hi6P2TSlLeapRs+bkDC6u2RCq4zYvyiA==";
};
};
- "@bugsnag/node-7.9.2" = {
+ "@bugsnag/node-7.10.1" = {
name = "_at_bugsnag_slash_node";
packageName = "@bugsnag/node";
- version = "7.9.2";
+ version = "7.10.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@bugsnag/node/-/node-7.9.2.tgz";
- sha512 = "e+tEyUBQ6e5z4WJlPAi962rnbR0f+0wxPjSoUHV5uVFg5Dkjg3ioXDdzKVbxfOEv3nVpXlMD8DrQqYe5g0O6sA==";
+ url = "https://registry.npmjs.org/@bugsnag/node/-/node-7.10.1.tgz";
+ sha512 = "kpasrz/im5ljptt2JOqrjbOu4b0i5sAZOYU4L0psWXlD31/wXytk7im11QlNALdI8gZZBxIFsVo8ks6dR6mHzg==";
};
};
"@bugsnag/safe-json-stringify-6.0.0" = {
@@ -1570,13 +1597,13 @@ let
sha512 = "htzFO1Zc57S8kgdRK9mLcPVTW1BY2ijfH7Dk2CeZmspTWKdKqSo1iwmqrq2WtRjFlo8aRZYgLX0wFrDXF/9DLA==";
};
};
- "@cdktf/hcl2json-0.3.0" = {
+ "@cdktf/hcl2json-0.4.0" = {
name = "_at_cdktf_slash_hcl2json";
packageName = "@cdktf/hcl2json";
- version = "0.3.0";
+ version = "0.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@cdktf/hcl2json/-/hcl2json-0.3.0.tgz";
- sha512 = "iZ5eKhlZSpoWM0+ULUEkxY+qzBGhr3EVkXoYdUbNf/nPx8bd2Qqgk87x4uvqFK8+uNMuINR0HCbCdHFgkfho4A==";
+ url = "https://registry.npmjs.org/@cdktf/hcl2json/-/hcl2json-0.4.0.tgz";
+ sha512 = "etFW1+DoAwQ7ENtdvpuKxmosJDDJ2rnQUDkJPZnNIqLUAXcGG3MdU6PWTnLQX/xwDMQq7xfCZlDK/hrV7g2rhA==";
};
};
"@chemzqm/neovim-5.2.13" = {
@@ -1723,175 +1750,175 @@ let
sha512 = "HilPrVrCosYWqSyjfpDtaaN1kJwdlBpS+IAflP3z+e7nsEgk3JGJf1Vg0NgHJooTf5HDfXSyZqMVg+5jvXCK0g==";
};
};
- "@discoveryjs/json-ext-0.5.2" = {
+ "@discoveryjs/json-ext-0.5.3" = {
name = "_at_discoveryjs_slash_json-ext";
packageName = "@discoveryjs/json-ext";
- version = "0.5.2";
+ version = "0.5.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.2.tgz";
- sha512 = "HyYEUDeIj5rRQU2Hk5HTB2uHsbRQpF70nvMhVzi+VJR0X+xNEhjPui4/kBf3VeH/wqD28PT4sVOm8qqLjBrSZg==";
+ url = "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.3.tgz";
+ sha512 = "Fxt+AfXgjMoin2maPIYzFZnQjAXjAL0PHscM5pRTtatFqB+vZxAM9tLp2Optnuw3QOQC40jTNeGYFOMvyf7v9g==";
};
};
- "@electron-forge/async-ora-6.0.0-beta.54" = {
+ "@electron-forge/async-ora-6.0.0-beta.57" = {
name = "_at_electron-forge_slash_async-ora";
packageName = "@electron-forge/async-ora";
- version = "6.0.0-beta.54";
+ version = "6.0.0-beta.57";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/async-ora/-/async-ora-6.0.0-beta.54.tgz";
- sha512 = "OCoHds0BIXaB54HgKw6pjlHC1cnaTcfJfVVkPSJl1GLC3VShZ5bETJfsitwbiP2kbfKLUQFayW27sqbwnwQR2w==";
+ url = "https://registry.npmjs.org/@electron-forge/async-ora/-/async-ora-6.0.0-beta.57.tgz";
+ sha512 = "pinf6bB5etIKNwFgMx2V+kwsFlkjU4mApALv0Jn/lmcH5dlAB4zPwuKTccC44xVO4pp/bV1HWb1XJ4lHVxYaJg==";
};
};
- "@electron-forge/core-6.0.0-beta.54" = {
+ "@electron-forge/core-6.0.0-beta.57" = {
name = "_at_electron-forge_slash_core";
packageName = "@electron-forge/core";
- version = "6.0.0-beta.54";
+ version = "6.0.0-beta.57";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/core/-/core-6.0.0-beta.54.tgz";
- sha512 = "yggZeiwRLnIsQYCT5jKhx2L7I02CwUCjnIzA+CqUZXD0AU1c2o0BA/26dNOGvY/+pr5yWjOXcrGy1hvj3dnLmQ==";
+ url = "https://registry.npmjs.org/@electron-forge/core/-/core-6.0.0-beta.57.tgz";
+ sha512 = "pLYG0QefjAEjxRazgEjryb4TrxVeebGTqXqZsKOpABAlDaKU4EmBq06SeSu8H9IAzMPwzpDIa6PaXdkMclqhnA==";
};
};
- "@electron-forge/installer-base-6.0.0-beta.54" = {
+ "@electron-forge/installer-base-6.0.0-beta.57" = {
name = "_at_electron-forge_slash_installer-base";
packageName = "@electron-forge/installer-base";
- version = "6.0.0-beta.54";
+ version = "6.0.0-beta.57";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/installer-base/-/installer-base-6.0.0-beta.54.tgz";
- sha512 = "q6Z5kBAE6StKqn+3Z5tXVHu7WGCb9OMeIomw9H9Q41UUIehF7V0J3tCWTkJdhZ8D6/tkXcis3GKptaj0wfMpyg==";
+ url = "https://registry.npmjs.org/@electron-forge/installer-base/-/installer-base-6.0.0-beta.57.tgz";
+ sha512 = "qeQMUos0WADEddSGhViCUeMswsFz1IL+elIy5h06AxgjoRtOU75VVy9RgVfDAMIN0iKvEWNKLQz1CBUtVAt0fA==";
};
};
- "@electron-forge/installer-darwin-6.0.0-beta.54" = {
+ "@electron-forge/installer-darwin-6.0.0-beta.57" = {
name = "_at_electron-forge_slash_installer-darwin";
packageName = "@electron-forge/installer-darwin";
- version = "6.0.0-beta.54";
+ version = "6.0.0-beta.57";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/installer-darwin/-/installer-darwin-6.0.0-beta.54.tgz";
- sha512 = "kRbH24+QBhbcIugnIvevnf43JGzLFLoyFsoY3YeyZeeDL3vfyg0vtSyUx0hfq1GpHG+zObDf3o18c3WbxdXlXA==";
+ url = "https://registry.npmjs.org/@electron-forge/installer-darwin/-/installer-darwin-6.0.0-beta.57.tgz";
+ sha512 = "3dsa948r3gCkD+ooKeGwWSUyh5GEJ7ngi9t1dRD+f1jUnkU1e3SqcGXH68dr5NYn3OcsFDWreK3xvx/1qdEQAg==";
};
};
- "@electron-forge/installer-deb-6.0.0-beta.54" = {
+ "@electron-forge/installer-deb-6.0.0-beta.57" = {
name = "_at_electron-forge_slash_installer-deb";
packageName = "@electron-forge/installer-deb";
- version = "6.0.0-beta.54";
+ version = "6.0.0-beta.57";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/installer-deb/-/installer-deb-6.0.0-beta.54.tgz";
- sha512 = "UbJR2Md0SBqex5AIv9YZ56hY2Iz5gZ6f1iAx0q4PlYpCY19W9nRXdudLNhx1w5go26DsT53+h6EzX2NGpBLq3Q==";
+ url = "https://registry.npmjs.org/@electron-forge/installer-deb/-/installer-deb-6.0.0-beta.57.tgz";
+ sha512 = "Dnm68RUwR0UEe1hq1OPWso0LwdkZTa7Rpv0m9bHl+IvXTmrU//S5fdHEtjHAmto8f8PD5VadsLQcxsc3bQVNGQ==";
};
};
- "@electron-forge/installer-dmg-6.0.0-beta.54" = {
+ "@electron-forge/installer-dmg-6.0.0-beta.57" = {
name = "_at_electron-forge_slash_installer-dmg";
packageName = "@electron-forge/installer-dmg";
- version = "6.0.0-beta.54";
+ version = "6.0.0-beta.57";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/installer-dmg/-/installer-dmg-6.0.0-beta.54.tgz";
- sha512 = "F9jwhUTzdFNlbLus7RQ8paoGPryr79JFYDLi42f0dyuFwlOjwlrA1wN5xWqrvcMeqFlc3DfjjeRWZ+10RQyorA==";
+ url = "https://registry.npmjs.org/@electron-forge/installer-dmg/-/installer-dmg-6.0.0-beta.57.tgz";
+ sha512 = "kmAYga2yY5JcrRI3Dtpau5Ldsebzs4pGkCCBJqq5asqgDGdCpw+8Cky6ouJDaZMl853C0CEnqxeoGYDTAlVBKA==";
};
};
- "@electron-forge/installer-exe-6.0.0-beta.54" = {
+ "@electron-forge/installer-exe-6.0.0-beta.57" = {
name = "_at_electron-forge_slash_installer-exe";
packageName = "@electron-forge/installer-exe";
- version = "6.0.0-beta.54";
+ version = "6.0.0-beta.57";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/installer-exe/-/installer-exe-6.0.0-beta.54.tgz";
- sha512 = "PE7RBPerSenNcSkKXJWpervKNl7AVT+JeMzx61OHUQSw3h63NHRvXWh31llxk32mmJcaKRgGle2GsWob87Lv/w==";
+ url = "https://registry.npmjs.org/@electron-forge/installer-exe/-/installer-exe-6.0.0-beta.57.tgz";
+ sha512 = "hVh4vh2q7BxJ8npsVCSxSdoUMwQwcs0LidbanXK8CqHmTgnb9MNDSHomCxOnX+kMQX85mCj9Nc5ROviXnLN4Xg==";
};
};
- "@electron-forge/installer-linux-6.0.0-beta.54" = {
+ "@electron-forge/installer-linux-6.0.0-beta.57" = {
name = "_at_electron-forge_slash_installer-linux";
packageName = "@electron-forge/installer-linux";
- version = "6.0.0-beta.54";
+ version = "6.0.0-beta.57";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/installer-linux/-/installer-linux-6.0.0-beta.54.tgz";
- sha512 = "WQVV5fitsfTyktjb18m9Bx+Dho6rCFvVILqFNZAu1RfXIsjLl/h0WdkozdGDccfeDMqlRYmaNs3e5THn5swnAg==";
+ url = "https://registry.npmjs.org/@electron-forge/installer-linux/-/installer-linux-6.0.0-beta.57.tgz";
+ sha512 = "MTK4wLCWxYctzo/htghNhZ5ptIf46AE3UdeQItjiEhL4+KjJjQN8JAVkl40WeM+rUDA53WRQ35HeykNBmspb6A==";
};
};
- "@electron-forge/installer-rpm-6.0.0-beta.54" = {
+ "@electron-forge/installer-rpm-6.0.0-beta.57" = {
name = "_at_electron-forge_slash_installer-rpm";
packageName = "@electron-forge/installer-rpm";
- version = "6.0.0-beta.54";
+ version = "6.0.0-beta.57";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/installer-rpm/-/installer-rpm-6.0.0-beta.54.tgz";
- sha512 = "8gaJA2m8+Y/ZhV4xEeijXz8UksrliMEzyUAdwM5ZdAsmfmGlnhchGr0L6rI23D66dQP9DeyvUIuUwXrsTlj1nQ==";
+ url = "https://registry.npmjs.org/@electron-forge/installer-rpm/-/installer-rpm-6.0.0-beta.57.tgz";
+ sha512 = "cTzL6mwkhKEkl4v7NE2ATaEsptf5OhTbtwb/tRVIuEOblYKTxw3x9nnH8iGJ73xPW/54awGiU1kHJTKA6UhcUA==";
};
};
- "@electron-forge/installer-zip-6.0.0-beta.54" = {
+ "@electron-forge/installer-zip-6.0.0-beta.57" = {
name = "_at_electron-forge_slash_installer-zip";
packageName = "@electron-forge/installer-zip";
- version = "6.0.0-beta.54";
+ version = "6.0.0-beta.57";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/installer-zip/-/installer-zip-6.0.0-beta.54.tgz";
- sha512 = "KCY5zreA79wjZODhLmtrbFweTWdlh9JgmW9WruIrmHm3sK19rRhCdaZ+Dg5ZWUhMx2A79d5a2C7r78lWGcHl7A==";
+ url = "https://registry.npmjs.org/@electron-forge/installer-zip/-/installer-zip-6.0.0-beta.57.tgz";
+ sha512 = "ip/mlC32/mdUzFsM/39cZWshLN1B1f6atYHd2OpXlyAz6IZWrRHdsrJGtYsGdpgeoV/wMm09MTyuKXku3ehPaQ==";
};
};
- "@electron-forge/maker-base-6.0.0-beta.54" = {
+ "@electron-forge/maker-base-6.0.0-beta.57" = {
name = "_at_electron-forge_slash_maker-base";
packageName = "@electron-forge/maker-base";
- version = "6.0.0-beta.54";
+ version = "6.0.0-beta.57";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/maker-base/-/maker-base-6.0.0-beta.54.tgz";
- sha512 = "4y0y15ieb1EOR5mibtFM9tZzaShbAO0RZu6ARLCpD5BgKuJBzXRPfWvEmY6WeDNzoWTJ+mQdYikLAeOL2E9mew==";
+ url = "https://registry.npmjs.org/@electron-forge/maker-base/-/maker-base-6.0.0-beta.57.tgz";
+ sha512 = "VnoSCeyCHBv9q0Bz9JRgKC1b4k3z/Qb2T9DrpMqEVW6ClZVkOAZVmjyEtb+Xn8DnRPc4UtSjpAquycC/AZJ4MQ==";
};
};
- "@electron-forge/plugin-base-6.0.0-beta.54" = {
+ "@electron-forge/plugin-base-6.0.0-beta.57" = {
name = "_at_electron-forge_slash_plugin-base";
packageName = "@electron-forge/plugin-base";
- version = "6.0.0-beta.54";
+ version = "6.0.0-beta.57";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/plugin-base/-/plugin-base-6.0.0-beta.54.tgz";
- sha512 = "8HwGzgNCHo2PgUfNnTch3Gvj7l6fqOgjnARK1y056UfsxFy+hwvHaAO+7LLfr7ktNwU/bH3hGhOpE+ZmBSwSqQ==";
+ url = "https://registry.npmjs.org/@electron-forge/plugin-base/-/plugin-base-6.0.0-beta.57.tgz";
+ sha512 = "lErdgdSGd+HcIzXsZC1Pf6VuLYsDVHTwFUzuZqUPdl28AOWKfwW+XpIZoPMDt2/Mdd5K0mCcYSylikcSa8RHYA==";
};
};
- "@electron-forge/publisher-base-6.0.0-beta.54" = {
+ "@electron-forge/publisher-base-6.0.0-beta.57" = {
name = "_at_electron-forge_slash_publisher-base";
packageName = "@electron-forge/publisher-base";
- version = "6.0.0-beta.54";
+ version = "6.0.0-beta.57";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/publisher-base/-/publisher-base-6.0.0-beta.54.tgz";
- sha512 = "Dny0jW0N8QcNYKHTtzQFZD4pBWJ7tclJWf3ZCX031vUKG7RhThdA06IPNzV6JtWJswrvAE9TPndzZONMza2V7g==";
+ url = "https://registry.npmjs.org/@electron-forge/publisher-base/-/publisher-base-6.0.0-beta.57.tgz";
+ sha512 = "eJFVt4JI/zCw86PMu/LERMAMVcPchyFfZ9upFec4YuOOMLaJH1NvbO3gGgYj7vavH1hQWZA6Yn7u8b+E8y8Byw==";
};
};
- "@electron-forge/shared-types-6.0.0-beta.54" = {
+ "@electron-forge/shared-types-6.0.0-beta.57" = {
name = "_at_electron-forge_slash_shared-types";
packageName = "@electron-forge/shared-types";
- version = "6.0.0-beta.54";
+ version = "6.0.0-beta.57";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/shared-types/-/shared-types-6.0.0-beta.54.tgz";
- sha512 = "6CzWKFR17rxxeIqm1w5ZyT9uTAHSVAjhqL8c+TmizF2703GyCEusUkjP2UXt/tZNY4MJlukZoJM66Bct6oZJ+w==";
+ url = "https://registry.npmjs.org/@electron-forge/shared-types/-/shared-types-6.0.0-beta.57.tgz";
+ sha512 = "8jRAf7HsfQC5BA8MTOwh8cXmqJ8JJqzO7WzDW9A50tHOKbpBxPW9YM8036SZzZ4GNZYBSWmJt3d3vW+KFLeYXg==";
};
};
- "@electron-forge/template-base-6.0.0-beta.54" = {
+ "@electron-forge/template-base-6.0.0-beta.57" = {
name = "_at_electron-forge_slash_template-base";
packageName = "@electron-forge/template-base";
- version = "6.0.0-beta.54";
+ version = "6.0.0-beta.57";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/template-base/-/template-base-6.0.0-beta.54.tgz";
- sha512 = "LuSpeOiM6AzUbamz5U/NqRkn4y7dzof1JK1ISAb+6tORf7JU014aKqDcLdwgP8Lxaz6P1bdlMmNJTvg5+SBrEw==";
+ url = "https://registry.npmjs.org/@electron-forge/template-base/-/template-base-6.0.0-beta.57.tgz";
+ sha512 = "3Nc7ik99VHQK8eTUrO/lA2tMRM5a0fLX+GgjR32yzkaAv081qd6t/XWS7MfU3k5Ld5cYMturUywJnEP/QdxOvA==";
};
};
- "@electron-forge/template-typescript-6.0.0-beta.54" = {
+ "@electron-forge/template-typescript-6.0.0-beta.57" = {
name = "_at_electron-forge_slash_template-typescript";
packageName = "@electron-forge/template-typescript";
- version = "6.0.0-beta.54";
+ version = "6.0.0-beta.57";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/template-typescript/-/template-typescript-6.0.0-beta.54.tgz";
- sha512 = "7V87LWH+vJ1YibM9MsTttbz7upfwLrmXgchQ399EfLxK306g7q/ouyGkeTerhLr2gCUAvm/Oqx+sXQ7402ol9w==";
+ url = "https://registry.npmjs.org/@electron-forge/template-typescript/-/template-typescript-6.0.0-beta.57.tgz";
+ sha512 = "NhcyTaLjbBGtdCTkAJgazKR4B9+yNFNH8QiXm3u6bg0cv2MhPWydmPuiEjFRLqG+Vz6jS4sW6jSIyCjFRK42ow==";
};
};
- "@electron-forge/template-typescript-webpack-6.0.0-beta.54" = {
+ "@electron-forge/template-typescript-webpack-6.0.0-beta.57" = {
name = "_at_electron-forge_slash_template-typescript-webpack";
packageName = "@electron-forge/template-typescript-webpack";
- version = "6.0.0-beta.54";
+ version = "6.0.0-beta.57";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/template-typescript-webpack/-/template-typescript-webpack-6.0.0-beta.54.tgz";
- sha512 = "1MIw1eGlMZg7KLG4oAEE0rB28WDOtz01OSoW2a2NqkmUzmu4BxJdSvQ97Tp7xCU0naW0H1uU39B9QOjJQgLGCQ==";
+ url = "https://registry.npmjs.org/@electron-forge/template-typescript-webpack/-/template-typescript-webpack-6.0.0-beta.57.tgz";
+ sha512 = "S9AzVLB02AvOwEOtQvtSJlv7BPZPSX3gdqwhoxPcTP6Pi/hOvVeEweptkwwRzGsZmSI7/ifi1bq7avhnzjasZw==";
};
};
- "@electron-forge/template-webpack-6.0.0-beta.54" = {
+ "@electron-forge/template-webpack-6.0.0-beta.57" = {
name = "_at_electron-forge_slash_template-webpack";
packageName = "@electron-forge/template-webpack";
- version = "6.0.0-beta.54";
+ version = "6.0.0-beta.57";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/template-webpack/-/template-webpack-6.0.0-beta.54.tgz";
- sha512 = "4/zUOZ8MCZqs8PcUCeeG6ofpy6HT53tQiLknM23OPaFP6ckuE6kOunC6N/teijUrJuLpKl3P8d39SWPVacxEzg==";
+ url = "https://registry.npmjs.org/@electron-forge/template-webpack/-/template-webpack-6.0.0-beta.57.tgz";
+ sha512 = "df4/jHKcZ6+8qIE+h2U9Ej5P36uGQZjI8+CcIPDE/46avHT+BwCmlMA/ZTGUQ787U9WkoMiI7122jdd7GNyuCQ==";
};
};
"@electron/get-1.12.4" = {
@@ -1975,13 +2002,13 @@ let
sha512 = "OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==";
};
};
- "@eslint/eslintrc-0.4.0" = {
+ "@eslint/eslintrc-0.4.1" = {
name = "_at_eslint_slash_eslintrc";
packageName = "@eslint/eslintrc";
- version = "0.4.0";
+ version = "0.4.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.0.tgz";
- sha512 = "2ZPCc+uNbjV5ERJr+aKSPRwZgKd2z11x0EgLvb1PURmUrn9QNRXFqje0Ldq454PfAVyaJYyrDvvIKSFP4NnBog==";
+ url = "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.1.tgz";
+ sha512 = "5v7TDE9plVhvxQeWLXDTvFvJBdH6pEsdnl2g/dAptmuFEPedQ4Erq5rsDsX+mvAM610IhNaO2W5V1dOOnDKxkQ==";
};
};
"@exodus/schemasafe-1.0.0-rc.3" = {
@@ -1993,13 +2020,13 @@ let
sha512 = "GoXw0U2Qaa33m3eUcxuHnHpNvHjNlLo0gtV091XBpaRINaB4X6FGCG5XKxSFNFiPpugUDqNruHzaqpTdDm4AOg==";
};
};
- "@expo/apple-utils-0.0.0-alpha.17" = {
+ "@expo/apple-utils-0.0.0-alpha.20" = {
name = "_at_expo_slash_apple-utils";
packageName = "@expo/apple-utils";
- version = "0.0.0-alpha.17";
+ version = "0.0.0-alpha.20";
src = fetchurl {
- url = "https://registry.npmjs.org/@expo/apple-utils/-/apple-utils-0.0.0-alpha.17.tgz";
- sha512 = "ecpC6e3xTtMVVKWpp231L8vptoSPqwtKSmfJ8sXfMlQRtWbq8Bu1pCHR/pdAx9X4IYzygjrTa9IDAPpbGuSaMg==";
+ url = "https://registry.npmjs.org/@expo/apple-utils/-/apple-utils-0.0.0-alpha.20.tgz";
+ sha512 = "L/M9NPNlT1e38whA3M4QdnIDCClj6Y2GPXFOxBxuwzlmh847RHwZ/ojJpVP8sLVC+is54DS1hU9vtDkiPHGPRw==";
};
};
"@expo/bunyan-4.0.0" = {
@@ -2011,22 +2038,22 @@ let
sha512 = "Ydf4LidRB/EBI+YrB+cVLqIseiRfjUI/AeHBgjGMtq3GroraDu81OV7zqophRgupngoL3iS3JUMDMnxO7g39qA==";
};
};
- "@expo/config-3.3.38" = {
+ "@expo/config-4.0.0" = {
name = "_at_expo_slash_config";
packageName = "@expo/config";
- version = "3.3.38";
+ version = "4.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@expo/config/-/config-3.3.38.tgz";
- sha512 = "0SsvF7yTy+kdJaAc2W75yhwnaXIRasnA1Vygna83tlPhCx6ynIBzTbJAvdkddSk5euUTJpXc5nePaflGvNboXw==";
+ url = "https://registry.npmjs.org/@expo/config/-/config-4.0.0.tgz";
+ sha512 = "Hy2/49BMMzziDhJFf+N0gG5znLuhoorS9/+OFO7wqDbRV4LRraNx4UuGdyY06yLI7F0BgEJBGy109pZ4LZoKrA==";
};
};
- "@expo/config-plugins-1.0.28" = {
+ "@expo/config-plugins-2.0.0" = {
name = "_at_expo_slash_config-plugins";
packageName = "@expo/config-plugins";
- version = "1.0.28";
+ version = "2.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@expo/config-plugins/-/config-plugins-1.0.28.tgz";
- sha512 = "i5SpC6U3LjRQlwi1xM4SRj8dR2Qm+0dykPo0GeesByB7IvT36AT1ZjI7VjecuoZ6yKbLpaa5tWvU3JGObxIPSw==";
+ url = "https://registry.npmjs.org/@expo/config-plugins/-/config-plugins-2.0.0.tgz";
+ sha512 = "MyD9cdoVuXEw/xzpHiFNzRvMFi1DWTU2oShTTviA8xt1U1gyuBTa9aBwFSyvZmpMoCEscOsC8ED0sZl7LM5wNw==";
};
};
"@expo/config-types-40.0.0-beta.2" = {
@@ -2038,31 +2065,31 @@ let
sha512 = "t9pHCQMXOP4nwd7LGXuHkLlFy0JdfknRSCAeVF4Kw2/y+5OBbR9hW9ZVnetpBf0kORrekgiI7K/qDaa3hh5+Qg==";
};
};
- "@expo/configure-splash-screen-0.3.4" = {
+ "@expo/configure-splash-screen-0.4.0" = {
name = "_at_expo_slash_configure-splash-screen";
packageName = "@expo/configure-splash-screen";
- version = "0.3.4";
+ version = "0.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@expo/configure-splash-screen/-/configure-splash-screen-0.3.4.tgz";
- sha512 = "HsukM03X5/EXSucVsLN/oLqyFq/1jAjpADkgU1HLaezFpkr+TOquI6yDwdDp1450kcm891PE/SYJ+mCdPxzDLw==";
+ url = "https://registry.npmjs.org/@expo/configure-splash-screen/-/configure-splash-screen-0.4.0.tgz";
+ sha512 = "IDPnr2/DW1tYpDHqedFYNCDzRTf9HYinWFQ7fOelNZLuOCMoErLbSStA5zfkv46o69AgcCpteqgKHSoxsIBz5g==";
};
};
- "@expo/dev-server-0.1.64" = {
+ "@expo/dev-server-0.1.70" = {
name = "_at_expo_slash_dev-server";
packageName = "@expo/dev-server";
- version = "0.1.64";
+ version = "0.1.70";
src = fetchurl {
- url = "https://registry.npmjs.org/@expo/dev-server/-/dev-server-0.1.64.tgz";
- sha512 = "6yRkV0qVyz0bZsfPkpPsDRmMIHQQ9Lw3Nn5BAgCNvo7SzjINeNfcpWJXvwcxrU76kKUS+r5NaXNCRlDUkqGTHg==";
+ url = "https://registry.npmjs.org/@expo/dev-server/-/dev-server-0.1.70.tgz";
+ sha512 = "6OytCPP8krQwjhJeluzDZd1dBb9oIptpkskSsrZHQTHyCGK9m3CLILu/hSiUffN73vINscnUXwCusfbKU+g3yQ==";
};
};
- "@expo/dev-tools-0.13.94" = {
+ "@expo/dev-tools-0.13.100" = {
name = "_at_expo_slash_dev-tools";
packageName = "@expo/dev-tools";
- version = "0.13.94";
+ version = "0.13.100";
src = fetchurl {
- url = "https://registry.npmjs.org/@expo/dev-tools/-/dev-tools-0.13.94.tgz";
- sha512 = "T3jIIGB1yLk+1JVcOG3VJI5CTFcOoWEOT4e0/3hONp6CnDQG0L2qpuzd4ypWO411iZ5q3aCyYKNN10AIEZLqzA==";
+ url = "https://registry.npmjs.org/@expo/dev-tools/-/dev-tools-0.13.100.tgz";
+ sha512 = "S/kI8boX8cc8pSkLApARxeW3ukdOMXFDBS02bQYx7+oZsY6hqfefUX2gvAnWatzCSOUBnRRdmrDAcFuZRnRP3w==";
};
};
"@expo/devcert-1.0.0" = {
@@ -2074,58 +2101,67 @@ let
sha512 = "cahGyQCmpZmHpn2U04NR9KwsOIZy7Rhsw8Fg4q+A6563lIJxbkrgPnxq/O3NQAh3ohEvOXOOnoFx0b4yycCkpQ==";
};
};
- "@expo/image-utils-0.3.13" = {
+ "@expo/image-utils-0.3.14" = {
name = "_at_expo_slash_image-utils";
packageName = "@expo/image-utils";
- version = "0.3.13";
+ version = "0.3.14";
src = fetchurl {
- url = "https://registry.npmjs.org/@expo/image-utils/-/image-utils-0.3.13.tgz";
- sha512 = "BpKoFVJBjG9H5AU040Skrm3R2uDGpWXBU/4TivB5H10cyJphoJKp3GNJVPHYLOVc70OtAxjWDIhLMW6xsWfrgw==";
+ url = "https://registry.npmjs.org/@expo/image-utils/-/image-utils-0.3.14.tgz";
+ sha512 = "n+JkLZ71CWuNKLVVsPTzMGRwmbeKiVQw/2b99Ro7znCKzJy3tyE5T2C6WBvYh/5h/hjg8TqEODjXXWucRIzMXA==";
};
};
- "@expo/json-file-8.2.29" = {
+ "@expo/json-file-8.2.30" = {
name = "_at_expo_slash_json-file";
packageName = "@expo/json-file";
- version = "8.2.29";
+ version = "8.2.30";
src = fetchurl {
- url = "https://registry.npmjs.org/@expo/json-file/-/json-file-8.2.29.tgz";
- sha512 = "9C8XwpJiJN9fyClnnNDSTh034zJU9hon6MCUqbBa4dZYQN7OZ00KFZEpbtjy+FndE7YD+KagDxRD6O1HS5vU0g==";
+ url = "https://registry.npmjs.org/@expo/json-file/-/json-file-8.2.30.tgz";
+ sha512 = "vrgGyPEXBoFI5NY70IegusCSoSVIFV3T3ry4tjJg1MFQKTUlR7E0r+8g8XR6qC705rc2PawaZQjqXMAVtV6s2A==";
};
};
- "@expo/metro-config-0.1.64" = {
+ "@expo/metro-config-0.1.70" = {
name = "_at_expo_slash_metro-config";
packageName = "@expo/metro-config";
- version = "0.1.64";
+ version = "0.1.70";
src = fetchurl {
- url = "https://registry.npmjs.org/@expo/metro-config/-/metro-config-0.1.64.tgz";
- sha512 = "ooD+XOVGnKPIIZbyfVTvMeQ3p9HpRt4aNCehSM6H1ueQm8+IpVwrhw8sJjL5xr+FVxFqj0+Ga9DI8d0AXS8U4g==";
+ url = "https://registry.npmjs.org/@expo/metro-config/-/metro-config-0.1.70.tgz";
+ sha512 = "zegpHSI0EedKSXkBg0wtU99YYA6OY8qCgm0urdKszDJ9c8Oea26b2+x2j0PBqspUiTC4kY+t/pzZkKWDEFAquQ==";
};
};
- "@expo/osascript-2.0.26" = {
+ "@expo/osascript-2.0.28" = {
name = "_at_expo_slash_osascript";
packageName = "@expo/osascript";
- version = "2.0.26";
+ version = "2.0.28";
src = fetchurl {
- url = "https://registry.npmjs.org/@expo/osascript/-/osascript-2.0.26.tgz";
- sha512 = "DJXmVZsAbScxQ3sfSFQrLERwsmJ4x/Tk8yXmtJZKqO4hplcGa2xLwjKUEh8nSRV5RX/v40yWr9J7aK5cHxTy0A==";
+ url = "https://registry.npmjs.org/@expo/osascript/-/osascript-2.0.28.tgz";
+ sha512 = "+0R/+DK/kTjFmkFShPlwowO3Ro0X0nQ3F7uRaOsXomZVjvrjSaOQOlFYRDr0Ci3pbEWS8MGUhlC7GXlba4VsTw==";
};
};
- "@expo/package-manager-0.0.41" = {
+ "@expo/package-manager-0.0.43" = {
name = "_at_expo_slash_package-manager";
packageName = "@expo/package-manager";
- version = "0.0.41";
+ version = "0.0.43";
src = fetchurl {
- url = "https://registry.npmjs.org/@expo/package-manager/-/package-manager-0.0.41.tgz";
- sha512 = "QkKH2AIwbw3wdmkZpw9DwFBQn1E3w/oDKfwPxFXtrwi+7OWonJXzkmYnj26KnVkh4Ajzu7Cwj/zTQ5aBrhwDfw==";
+ url = "https://registry.npmjs.org/@expo/package-manager/-/package-manager-0.0.43.tgz";
+ sha512 = "Keguxd7fH1JbFd/4fU3PuN3h4usZ3NyRFXgi7ZjAYul8uKt+/XB2HBvliukdThGJKhypMeVWcNYWuLCUm74B1Q==";
};
};
- "@expo/plist-0.0.12" = {
+ "@expo/plist-0.0.13" = {
name = "_at_expo_slash_plist";
packageName = "@expo/plist";
- version = "0.0.12";
+ version = "0.0.13";
src = fetchurl {
- url = "https://registry.npmjs.org/@expo/plist/-/plist-0.0.12.tgz";
- sha512 = "anGvLk58fxfeHY2PbtH79VxhrLDPGd+173pHYYXNg9HlfbrEVLI2Vo0ZBOrr/cYr7cgU5A/WNcMphRoO/KfYZQ==";
+ url = "https://registry.npmjs.org/@expo/plist/-/plist-0.0.13.tgz";
+ sha512 = "zGPSq9OrCn7lWvwLLHLpHUUq2E40KptUFXn53xyZXPViI0k9lbApcR9KlonQZ95C+ELsf0BQ3gRficwK92Ivcw==";
+ };
+ };
+ "@expo/prebuild-config-1.0.1" = {
+ name = "_at_expo_slash_prebuild-config";
+ packageName = "@expo/prebuild-config";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@expo/prebuild-config/-/prebuild-config-1.0.1.tgz";
+ sha512 = "A0MBD5NceJWwRO8dKe+yMjV5LMJX0CXGRX5q57XuV/UJ4RkdX0ZuRdiVpAPpkHXWU5lJAHwtebV0swuDMkWKMQ==";
};
};
"@expo/results-1.0.0" = {
@@ -2137,13 +2173,13 @@ let
sha512 = "qECzzXX5oJot3m2Gu9pfRDz50USdBieQVwYAzeAtQRUTD3PVeTK1tlRUoDcrK8PSruDLuVYdKkLebX4w/o55VA==";
};
};
- "@expo/schemer-1.3.28" = {
+ "@expo/schemer-1.3.29" = {
name = "_at_expo_slash_schemer";
packageName = "@expo/schemer";
- version = "1.3.28";
+ version = "1.3.29";
src = fetchurl {
- url = "https://registry.npmjs.org/@expo/schemer/-/schemer-1.3.28.tgz";
- sha512 = "9wmnhlD1X1ro8FTFzM/J3nSxaFpI9X+bcaimP3hKkc3flIR8cGjQcLmE+MOEgE2LET0ScxRBtM3hteernFI6Ww==";
+ url = "https://registry.npmjs.org/@expo/schemer/-/schemer-1.3.29.tgz";
+ sha512 = "7Ch3c39xZunAo/yv8lj62pc9m5jmKKeyCrz7wKe4p3dETvcvLpqaaxl8ylWm//Nok27D290y1q/pE5i12KA+Pg==";
};
};
"@expo/simple-spinner-1.0.2" = {
@@ -2164,22 +2200,22 @@ let
sha512 = "LB7jWkqrHo+5fJHNrLAFdimuSXQ2MQ4lA7SQW5bf/HbsXuV2VrT/jN/M8f/KoWt0uJMGN4k/j7Opx4AvOOxSew==";
};
};
- "@expo/webpack-config-0.12.68" = {
+ "@expo/webpack-config-0.12.74" = {
name = "_at_expo_slash_webpack-config";
packageName = "@expo/webpack-config";
- version = "0.12.68";
+ version = "0.12.74";
src = fetchurl {
- url = "https://registry.npmjs.org/@expo/webpack-config/-/webpack-config-0.12.68.tgz";
- sha512 = "GS15Vd/VkaITWnQYe4qROGHi95R6HF8x8vDZ1msxfYEVSjdXMU9eo8BPiyTtLTIAaCyNUQEOX5N+91mKHXJPeQ==";
+ url = "https://registry.npmjs.org/@expo/webpack-config/-/webpack-config-0.12.74.tgz";
+ sha512 = "xYyiin5uvRwRC3ehqRxb+MSzv9ArJSb3spOgl4yNZPkojXUbNjgyC3xfliVAH7ZuRMlEgL1Is7miixVe69ftYw==";
};
};
- "@expo/xcpretty-2.0.0" = {
+ "@expo/xcpretty-2.0.1" = {
name = "_at_expo_slash_xcpretty";
packageName = "@expo/xcpretty";
- version = "2.0.0";
+ version = "2.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@expo/xcpretty/-/xcpretty-2.0.0.tgz";
- sha512 = "bukgcPcsiZq7dYxpSVPQ/qvSDrwpUVSkgEf8NQJS9UcClPakgpM+e5XIzYWe2WXLmHtskVJUPruoEX6zWUm8LA==";
+ url = "https://registry.npmjs.org/@expo/xcpretty/-/xcpretty-2.0.1.tgz";
+ sha512 = "fyQbzvZpLiKpx68QDzeLlL1AtFhhEW35dqxIqb4QQ6e3iofu57NdWBQTmIAQzDOPcNNXUR9SFncu3M4iyWwQ7Q==";
};
};
"@fast-csv/format-4.3.5" = {
@@ -2227,13 +2263,13 @@ let
sha512 = "iT1bU56rKrKEOfODoW6fScY11qj3iaYrZ+z11T6fo5+TDm84UGkkXjLXJTE57ZJzg0/gbccHQWYv+chY7bJN8Q==";
};
};
- "@fluentui/react-7.168.0" = {
+ "@fluentui/react-7.170.1" = {
name = "_at_fluentui_slash_react";
packageName = "@fluentui/react";
- version = "7.168.0";
+ version = "7.170.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@fluentui/react/-/react-7.168.0.tgz";
- sha512 = "eM+vt4RDRnI/IGZtenxYp7cTssMOkXVY3GqFLJkiK/gHTRI3goMWPpLA9tux0lbuiB3zvnvgLrJ2k0ihWa3FCw==";
+ url = "https://registry.npmjs.org/@fluentui/react/-/react-7.170.1.tgz";
+ sha512 = "v43+TQ+zcjzW3vPOebIIUQpj4j1p4McDVwrVGplUmIVgxXPg9wBvXGB0CcBvpaFRZq6tKG95uUdanRsEStBMxQ==";
};
};
"@fluentui/react-focus-7.17.6" = {
@@ -2299,13 +2335,13 @@ let
sha512 = "d4VSA86eL/AFTe5xtyZX+ePUjE8dIFu2T8zmdeNBSa5/kNgXPCx/o/wbFNHAGLJdGnk1vddRuMESD9HbOC8irw==";
};
};
- "@google-cloud/pubsub-2.11.0" = {
+ "@google-cloud/pubsub-2.12.0" = {
name = "_at_google-cloud_slash_pubsub";
packageName = "@google-cloud/pubsub";
- version = "2.11.0";
+ version = "2.12.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@google-cloud/pubsub/-/pubsub-2.11.0.tgz";
- sha512 = "j9sIjVLFqSEVrAZdrGbmu4GVVuCW70Sg6/EBKSMjNKhN/ctQsgcP6kUVLVnnrrTWVF0+FfdlfuCHtdYxGy7mfw==";
+ url = "https://registry.npmjs.org/@google-cloud/pubsub/-/pubsub-2.12.0.tgz";
+ sha512 = "SF+y7sKX9Jo2ZoVqzwEuSReUyb6O4mwxzxP1B+dP3j0ArUk0XXSC/tFLQhYM7lC2ViLxGWoIbEZbRIw8SrIQnw==";
};
};
"@graphql-cli/common-4.1.0" = {
@@ -2326,22 +2362,22 @@ let
sha512 = "RNhQk0jMz6fZB4Ilu37PZj6YUQgSEZJrppXlaHpw/xYyDelcjYKZg/z9eMvYo6rxQPR2mGXjoj6by+zew1WgOw==";
};
};
- "@graphql-tools/batch-execute-7.1.0" = {
+ "@graphql-tools/batch-execute-7.1.2" = {
name = "_at_graphql-tools_slash_batch-execute";
packageName = "@graphql-tools/batch-execute";
- version = "7.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@graphql-tools/batch-execute/-/batch-execute-7.1.0.tgz";
- sha512 = "Yb4QRpHZqDk24+T4K3ARk/KFU26Dyl30XcbYeVvIrgIKcmeON/p3DfSeiB0+MaxYlsv+liQKvlxNbeC2hD31pA==";
- };
- };
- "@graphql-tools/delegate-7.1.2" = {
- name = "_at_graphql-tools_slash_delegate";
- packageName = "@graphql-tools/delegate";
version = "7.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-7.1.2.tgz";
- sha512 = "XvmIod9ZYKMLk2vV5ulbUyo1Va4SCvvp/VNq4RTae2SEvYwNewc1xs1Klmz8khV+c2V30xKSccNWGA6BWyTTog==";
+ url = "https://registry.npmjs.org/@graphql-tools/batch-execute/-/batch-execute-7.1.2.tgz";
+ sha512 = "IuR2SB2MnC2ztA/XeTMTfWcA0Wy7ZH5u+nDkDNLAdX+AaSyDnsQS35sCmHqG0VOGTl7rzoyBWLCKGwSJplgtwg==";
+ };
+ };
+ "@graphql-tools/delegate-7.1.5" = {
+ name = "_at_graphql-tools_slash_delegate";
+ packageName = "@graphql-tools/delegate";
+ version = "7.1.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-7.1.5.tgz";
+ sha512 = "bQu+hDd37e+FZ0CQGEEczmRSfQRnnXeUxI/0miDV+NV/zCbEdIJj5tYFNrKT03W6wgdqx8U06d8L23LxvGri/g==";
};
};
"@graphql-tools/graphql-file-loader-6.2.7" = {
@@ -2353,13 +2389,13 @@ let
sha512 = "5k2SNz0W87tDcymhEMZMkd6/vs6QawDyjQXWtqkuLTBF3vxjxPD1I4dwHoxgWPIjjANhXybvulD7E+St/7s9TQ==";
};
};
- "@graphql-tools/import-6.3.0" = {
+ "@graphql-tools/import-6.3.1" = {
name = "_at_graphql-tools_slash_import";
packageName = "@graphql-tools/import";
- version = "6.3.0";
+ version = "6.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@graphql-tools/import/-/import-6.3.0.tgz";
- sha512 = "zmaVhJ3UPjzJSb005Pjn2iWvH+9AYRXI4IUiTi14uPupiXppJP3s7S25Si3+DbHpFwurDF2nWRxBLiFPWudCqw==";
+ url = "https://registry.npmjs.org/@graphql-tools/import/-/import-6.3.1.tgz";
+ sha512 = "1szR19JI6WPibjYurMLdadHKZoG9C//8I/FZ0Dt4vJSbrMdVNp8WFxg4QnZrDeMG4MzZc90etsyF5ofKjcC+jw==";
};
};
"@graphql-tools/json-file-loader-6.2.6" = {
@@ -2380,31 +2416,31 @@ let
sha512 = "FlQC50VELwRxoWUbJMMMs5gG0Dl8BaQYMrXUHTsxwqR7UmksUYnysC21rdousvs6jVZ7pf4unZfZFtBjz+8Edg==";
};
};
- "@graphql-tools/merge-6.2.13" = {
+ "@graphql-tools/merge-6.2.14" = {
name = "_at_graphql-tools_slash_merge";
packageName = "@graphql-tools/merge";
- version = "6.2.13";
+ version = "6.2.14";
src = fetchurl {
- url = "https://registry.npmjs.org/@graphql-tools/merge/-/merge-6.2.13.tgz";
- sha512 = "Qjlki0fp+bBQPinhdv7rv24eurvThZ5oIFvGMpLxMZplbw/ovJ2c6llwXr5PCuWAk9HGZsyM9NxxDgtTRfq3dQ==";
+ url = "https://registry.npmjs.org/@graphql-tools/merge/-/merge-6.2.14.tgz";
+ sha512 = "RWT4Td0ROJai2eR66NHejgf8UwnXJqZxXgDWDI+7hua5vNA2OW8Mf9K1Wav1ZkjWnuRp4ztNtkZGie5ISw55ow==";
};
};
- "@graphql-tools/schema-7.1.3" = {
+ "@graphql-tools/schema-7.1.5" = {
name = "_at_graphql-tools_slash_schema";
packageName = "@graphql-tools/schema";
- version = "7.1.3";
+ version = "7.1.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@graphql-tools/schema/-/schema-7.1.3.tgz";
- sha512 = "ZY76hmcJlF1iyg3Im0sQ3ASRkiShjgv102vLTVcH22lEGJeCaCyyS/GF1eUHom418S60bS8Th6+autRUxfBiBg==";
+ url = "https://registry.npmjs.org/@graphql-tools/schema/-/schema-7.1.5.tgz";
+ sha512 = "uyn3HSNSckf4mvQSq0Q07CPaVZMNFCYEVxroApOaw802m9DcZPgf9XVPy/gda5GWj9AhbijfRYVTZQgHnJ4CXA==";
};
};
- "@graphql-tools/url-loader-6.8.3" = {
+ "@graphql-tools/url-loader-6.10.1" = {
name = "_at_graphql-tools_slash_url-loader";
packageName = "@graphql-tools/url-loader";
- version = "6.8.3";
+ version = "6.10.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-6.8.3.tgz";
- sha512 = "X1IxyURTbynqBPBJJeSW3hvvc+Pgw/P5IpT/yyTkA7utjRRiNCaGdLbBQO5MaXvD1HpVzBiMgdKG8v7Um3ft7w==";
+ url = "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-6.10.1.tgz";
+ sha512 = "DSDrbhQIv7fheQ60pfDpGD256ixUQIR6Hhf9Z5bRjVkXOCvO5XrkwoWLiU7iHL81GB1r0Ba31bf+sl+D4nyyfw==";
};
};
"@graphql-tools/utils-6.2.4" = {
@@ -2416,22 +2452,22 @@ let
sha512 = "ybgZ9EIJE3JMOtTrTd2VcIpTXtDrn2q6eiYkeYMKRVh3K41+LZa6YnR2zKERTXqTWqhobROwLt4BZbw2O3Aeeg==";
};
};
- "@graphql-tools/utils-7.7.3" = {
+ "@graphql-tools/utils-7.10.0" = {
name = "_at_graphql-tools_slash_utils";
packageName = "@graphql-tools/utils";
- version = "7.7.3";
+ version = "7.10.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@graphql-tools/utils/-/utils-7.7.3.tgz";
- sha512 = "zF8Ll1v7DOFfCsZVYGkJqvi3Zpwfga8NutOZkToXrumMlTPaMhEDFkiuwoIK4lV2PMVUke5ZCmpn9pc5pqy4Tw==";
+ url = "https://registry.npmjs.org/@graphql-tools/utils/-/utils-7.10.0.tgz";
+ sha512 = "d334r6bo9mxdSqZW6zWboEnnOOFRrAPVQJ7LkU8/6grglrbcu6WhwCLzHb90E94JI3TD3ricC3YGbUqIi9Xg0w==";
};
};
- "@graphql-tools/wrap-7.0.5" = {
+ "@graphql-tools/wrap-7.0.8" = {
name = "_at_graphql-tools_slash_wrap";
packageName = "@graphql-tools/wrap";
- version = "7.0.5";
+ version = "7.0.8";
src = fetchurl {
- url = "https://registry.npmjs.org/@graphql-tools/wrap/-/wrap-7.0.5.tgz";
- sha512 = "KCWBXsDfvG46GNUawRltJL4j9BMGoOG7oo3WEyCQP+SByWXiTe5cBF45SLDVQgdjljGNZhZ4Lq/7avIkF7/zDQ==";
+ url = "https://registry.npmjs.org/@graphql-tools/wrap/-/wrap-7.0.8.tgz";
+ sha512 = "1NDUymworsOlb53Qfh7fonDi2STvqCtbeE68ntKY9K/Ju/be2ZNxrFSbrBHwnxWcN9PjISNnLcAyJ1L5tCUyhg==";
};
};
"@grpc/grpc-js-1.2.11" = {
@@ -2452,6 +2488,24 @@ let
sha512 = "+gPCklP1eqIgrNPyzddYQdt9+GvZqPlLpIjIo+TveE+gbtp74VV1A2ju8ExeO8ma8f7MbpaGZx/KJPYVWL9eDw==";
};
};
+ "@grpc/grpc-js-1.3.1" = {
+ name = "_at_grpc_slash_grpc-js";
+ packageName = "@grpc/grpc-js";
+ version = "1.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.3.1.tgz";
+ sha512 = "zyFq9eW0U4vGyhJS/oeW3mIeKTzB13we9rBclcisfRHxGQbC9FCOKQ5BBA2129yZwRVMt4hQia1igGzECeuY9g==";
+ };
+ };
+ "@grpc/grpc-js-1.3.2" = {
+ name = "_at_grpc_slash_grpc-js";
+ packageName = "@grpc/grpc-js";
+ version = "1.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.3.2.tgz";
+ sha512 = "UXepkOKCATJrhHGsxt+CGfpZy9zUn1q9mop5kfcXq1fBkTePxVNPOdnISlCbJFlCtld+pSLGyZCzr9/zVprFKA==";
+ };
+ };
"@grpc/proto-loader-0.5.6" = {
name = "_at_grpc_slash_proto-loader";
packageName = "@grpc/proto-loader";
@@ -2470,6 +2524,24 @@ let
sha512 = "JwWZwGuN1nQuPdeL1d94hNGtnRtiOuy+SkdVUU8IwwQzksvdWvgKHyGDCesvAD0tndQTm1YUZHJw+JDTIDALyQ==";
};
};
+ "@grpc/proto-loader-0.6.1" = {
+ name = "_at_grpc_slash_proto-loader";
+ packageName = "@grpc/proto-loader";
+ version = "0.6.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@grpc/proto-loader/-/proto-loader-0.6.1.tgz";
+ sha512 = "4DIvEOZhw5nGj3RQngIoiMXRsre3InEH136krZTcirs/G2em3WMXdtx4Lqlnb4E2ertbWGs5gPeVDKU5BHffXw==";
+ };
+ };
+ "@grpc/proto-loader-0.6.2" = {
+ name = "_at_grpc_slash_proto-loader";
+ packageName = "@grpc/proto-loader";
+ version = "0.6.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@grpc/proto-loader/-/proto-loader-0.6.2.tgz";
+ sha512 = "q2Qle60Ht2OQBCp9S5hv1JbI4uBBq6/mqSevFNK3ZEgRDBCAkWqZPUhD/K9gXOHrHKluliHiVq2L9sw1mVyAIg==";
+ };
+ };
"@gulp-sourcemaps/identity-map-1.0.2" = {
name = "_at_gulp-sourcemaps_slash_identity-map";
packageName = "@gulp-sourcemaps/identity-map";
@@ -3037,67 +3109,67 @@ let
sha512 = "EjPkDQOzV/oZfbolEUgFT6SE++PtCccVBvjuACkttyCfl0P2jnpR49SwstyVLc2u8AwBAZEHHAw9lPYaMjtbXQ==";
};
};
- "@joplin/fork-htmlparser2-4.1.23" = {
+ "@joplin/fork-htmlparser2-4.1.24" = {
name = "_at_joplin_slash_fork-htmlparser2";
packageName = "@joplin/fork-htmlparser2";
- version = "4.1.23";
+ version = "4.1.24";
src = fetchurl {
- url = "https://registry.npmjs.org/@joplin/fork-htmlparser2/-/fork-htmlparser2-4.1.23.tgz";
- sha512 = "nTbOVZJbF02d32AhvwhWME2uQbbCZsFYulMgqRZ/I4realfJgqkaUfXclLxYcyOPAjzngXd+Wb1/M/Pz6luXGw==";
+ url = "https://registry.npmjs.org/@joplin/fork-htmlparser2/-/fork-htmlparser2-4.1.24.tgz";
+ sha512 = "lggBrPT0Lg/WcD7oe166HbpAS+ajQwSNAzUl8pYBhNChJzjbngJxm5hs94xYJ3qDzyxHRMU+x4iTZAn0/SNFDQ==";
};
};
- "@joplin/fork-sax-1.2.27" = {
+ "@joplin/fork-sax-1.2.28" = {
name = "_at_joplin_slash_fork-sax";
packageName = "@joplin/fork-sax";
- version = "1.2.27";
+ version = "1.2.28";
src = fetchurl {
- url = "https://registry.npmjs.org/@joplin/fork-sax/-/fork-sax-1.2.27.tgz";
- sha512 = "ON/8pg90WCRHKj8HttziC7Rtef+DKSSDZD9J3zjHYUvrXB0pu+7eZvRP8vF3Y2MSZnlshtFGQqiIRbwk3GVA+Q==";
+ url = "https://registry.npmjs.org/@joplin/fork-sax/-/fork-sax-1.2.28.tgz";
+ sha512 = "oWUpaBZlfUC+dGJqmb8hwwgjk3dSHcKL7e8n1LpmkUBqqdh1lxLrrFoGqYpKiSBgDY0KTIdyB8S8INBMlY+l7A==";
};
};
- "@joplin/lib-1.0.18" = {
+ "@joplin/lib-1.8.2" = {
name = "_at_joplin_slash_lib";
packageName = "@joplin/lib";
- version = "1.0.18";
+ version = "1.8.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@joplin/lib/-/lib-1.0.18.tgz";
- sha512 = "r0Z+bolszlPUsanaQIUk/tog3jHw0rGtUxXTHDMtycFWkWYVpjlT3bvxiYrV5MwLjyn/xnfUCIdHeUi/Lz3LPQ==";
+ url = "https://registry.npmjs.org/@joplin/lib/-/lib-1.8.2.tgz";
+ sha512 = "e/uEdz3PbxQQ8XUT6y1HNSM3LdpMjTEJbY+61E7LwC1PguyvAuQgr3tLS0/5OS/PJ1FP4Jm7gU61OJ28g4i4wA==";
};
};
- "@joplin/renderer-1.0.26" = {
+ "@joplin/renderer-1.8.2" = {
name = "_at_joplin_slash_renderer";
packageName = "@joplin/renderer";
- version = "1.0.26";
+ version = "1.8.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@joplin/renderer/-/renderer-1.0.26.tgz";
- sha512 = "RDRYjuPCn1ltematEZQhgvZbIGBQ+2F3jgAdXpqByg71pmxrMZyOLLbNVYJyKK4w2Ecvmbpwuo0h9RbMb/56Ow==";
+ url = "https://registry.npmjs.org/@joplin/renderer/-/renderer-1.8.2.tgz";
+ sha512 = "Khl2DoM1aFEy15RX9JaMaYinjoNEYQHOgQqzMHq4wuWr+QuAQaX8/SofTe1FU2rS4SJrkObPA+XPavhVSAxpOQ==";
};
};
- "@joplin/turndown-4.0.45" = {
+ "@joplin/turndown-4.0.46" = {
name = "_at_joplin_slash_turndown";
packageName = "@joplin/turndown";
- version = "4.0.45";
+ version = "4.0.46";
src = fetchurl {
- url = "https://registry.npmjs.org/@joplin/turndown/-/turndown-4.0.45.tgz";
- sha512 = "u4J/ka4szy34ioQ5UVaCdLlfzfOxEQH/lDReHauYoNhH+H+EWt1qOwMh9A8fuTfoK2vnUUiPKHsWhOYCe+LRiw==";
+ url = "https://registry.npmjs.org/@joplin/turndown/-/turndown-4.0.46.tgz";
+ sha512 = "OqI9DFEKdEOxfQUkbfRiWpNfDXf+/E4u9c9hXVRK66xFrVkZww7FBmoGqIMHzOrKeQBIPZQuHCav31cFl7oMCQ==";
};
};
- "@joplin/turndown-plugin-gfm-1.0.27" = {
+ "@joplin/turndown-plugin-gfm-1.0.28" = {
name = "_at_joplin_slash_turndown-plugin-gfm";
packageName = "@joplin/turndown-plugin-gfm";
- version = "1.0.27";
+ version = "1.0.28";
src = fetchurl {
- url = "https://registry.npmjs.org/@joplin/turndown-plugin-gfm/-/turndown-plugin-gfm-1.0.27.tgz";
- sha512 = "4BPgTSkhvxPI3tbjG4BPiBq0VuNZji1Y77DRWHb09GnzsrgwBI+gpo3EI6obkyIeRuN/03wzf98W5u1iau2vpQ==";
+ url = "https://registry.npmjs.org/@joplin/turndown-plugin-gfm/-/turndown-plugin-gfm-1.0.28.tgz";
+ sha512 = "CAmcFWK2bgAgQq3h+xEKjjk8/7v8ZaY2ixHDoiSCRiSqv868EuAQLCks6Ox4rq35R2yX8FK/pHeciRpZo5wNcg==";
};
};
- "@josephg/resolvable-1.0.0" = {
+ "@josephg/resolvable-1.0.1" = {
name = "_at_josephg_slash_resolvable";
packageName = "@josephg/resolvable";
- version = "1.0.0";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@josephg/resolvable/-/resolvable-1.0.0.tgz";
- sha512 = "OfTtjoqB2doov5aTJxkyAMK8dXoo7CjCUQSYUEtiY34jbWduOGV7+168tmCT8COMsUEd5DMSFg/0iAOPCBTNAQ==";
+ url = "https://registry.npmjs.org/@josephg/resolvable/-/resolvable-1.0.1.tgz";
+ sha512 = "CtzORUwWTTOTqfVtHaKRJ0I1kNQd1bpn3sUh8I3nJDVY+5/M/Oe1DnEWzPQvqq/xPIIkzzzIP7mfCoAjFRvDhg==";
};
};
"@jsdevtools/ono-7.1.3" = {
@@ -3109,13 +3181,13 @@ let
sha512 = "4JQNk+3mVzK3xh2rqd6RB4J46qUR19azEHBneZyTZM+c456qOrbbM/5xcR8huNCCcbVt7+UmizG6GuUvPvKUYg==";
};
};
- "@jsii/spec-1.29.0" = {
+ "@jsii/spec-1.30.0" = {
name = "_at_jsii_slash_spec";
packageName = "@jsii/spec";
- version = "1.29.0";
+ version = "1.30.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@jsii/spec/-/spec-1.29.0.tgz";
- sha512 = "Y0ouCaYVPy7KjQ8di6Hu4xizKYp4klqqDf08BaEgqd38TzqBuO0abgcd9OJFUQyoDnCCWTdGBfqTo2xfvW9Pbw==";
+ url = "https://registry.npmjs.org/@jsii/spec/-/spec-1.30.0.tgz";
+ sha512 = "oXIwvZyHHc/TrwA/3pzQ3gkqBe916EWBvaexNI3rnKZujlHZT4vVVHMCjQ/kUJhcR0GEaahvwlNhiPTu6roC2g==";
};
};
"@kwsites/file-exists-1.1.1" = {
@@ -3676,6 +3748,15 @@ let
sha512 = "RTBGWL5FWQcg9orDOCcp4LvItNzUPcyEU9bwaeJX0rJ1IQxzucC48Y0/sQLp/g6t99IQgAlGIaesJS+gTn7tVQ==";
};
};
+ "@mapbox/node-pre-gyp-1.0.5" = {
+ name = "_at_mapbox_slash_node-pre-gyp";
+ packageName = "@mapbox/node-pre-gyp";
+ version = "1.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.5.tgz";
+ sha512 = "4srsKPXWlIxp5Vbqz5uLfBN+du2fJChBoYn/f2h991WLdk7jUvcSk/McVLSv/X+xQIPI8eGD5GjrnygdyHnhPA==";
+ };
+ };
"@mark.probst/typescript-json-schema-0.32.0" = {
name = "_at_mark.probst_slash_typescript-json-schema";
packageName = "@mark.probst/typescript-json-schema";
@@ -3721,13 +3802,22 @@ let
sha512 = "/NdX1Ql8hKNM0vHFJnEr/bcw6BG0ULHD3HhInpniZw5ixpl+n/QIRfMEEmLCn7acedbM1zGdZvU5ZMbn9kcF5Q==";
};
};
- "@microsoft/load-themed-styles-1.10.165" = {
+ "@microsoft/fetch-event-source-2.0.1" = {
+ name = "_at_microsoft_slash_fetch-event-source";
+ packageName = "@microsoft/fetch-event-source";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@microsoft/fetch-event-source/-/fetch-event-source-2.0.1.tgz";
+ sha512 = "W6CLUJ2eBMw3Rec70qrsEW0jOm/3twwJv21mrmj2yORiaVmVYGS4sSS5yUwvQc1ZlDLYGPnClVWmUUMagKNsfA==";
+ };
+ };
+ "@microsoft/load-themed-styles-1.10.173" = {
name = "_at_microsoft_slash_load-themed-styles";
packageName = "@microsoft/load-themed-styles";
- version = "1.10.165";
+ version = "1.10.173";
src = fetchurl {
- url = "https://registry.npmjs.org/@microsoft/load-themed-styles/-/load-themed-styles-1.10.165.tgz";
- sha512 = "3xMvFn1q27wctE701ZmdKDKgkj4b4DMHaJ8hnKk+c/E3Zvoo/5lviPZ0IGkD+zyfe7GMSp2kONalvX7Ez7HaKA==";
+ url = "https://registry.npmjs.org/@microsoft/load-themed-styles/-/load-themed-styles-1.10.173.tgz";
+ sha512 = "Bi4U2IQr5uWl1RVhCZduWO04em4CbYcH6cvmgvkN2K09kFW9VSQ4qAQYnnZ6w8HOCOsa3BJaHtGq+TTOP4eYkg==";
};
};
"@mitmaro/errors-1.0.0" = {
@@ -3793,13 +3883,13 @@ let
sha512 = "b+MGNyP9/LXkapreJzNUzcvuzZslj/RGgdVVJ16P2wSlYatfLycPObImqVJSmNAdyeShvNeM/pl3sVZsObFueg==";
};
};
- "@netlify/build-11.2.5" = {
+ "@netlify/build-11.29.0" = {
name = "_at_netlify_slash_build";
packageName = "@netlify/build";
- version = "11.2.5";
+ version = "11.29.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@netlify/build/-/build-11.2.5.tgz";
- sha512 = "VjBtlEnCTjrYN9tTrgJdRjkauqN1gQ+fdtoVsZ0Lyz1Ja1LUnIPkCUHhsOmupMlvW/Yyl/QHTSPojg/wpMf1Zw==";
+ url = "https://registry.npmjs.org/@netlify/build/-/build-11.29.0.tgz";
+ sha512 = "e5tmKxHORmJABpgSdlylXBnhibwHZGdSTZWJa3eVIHSMwRC5xK37TLi+HmSL+AeCEqaHozFhHedsdgkKB9figw==";
};
};
"@netlify/cache-utils-1.0.7" = {
@@ -3811,67 +3901,67 @@ let
sha512 = "yrdrnQkzg/qMovoFYwQ24UVt/OyHtP+t0KpQFd7eBl6gnuuGGgxFocaFFv6eKpMVwzHTsOwx/y9B/FcC3/6cfA==";
};
};
- "@netlify/config-6.2.0" = {
+ "@netlify/config-6.7.1" = {
name = "_at_netlify_slash_config";
packageName = "@netlify/config";
- version = "6.2.0";
+ version = "6.7.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@netlify/config/-/config-6.2.0.tgz";
- sha512 = "CK8GpGf8v10GlY/gLhb27PEc9cWQaVpLi9/KQZhsEiLCmwVV+oLkfev2wOuIuPakTaCWJbwDbNGtCF+o3f3Crg==";
+ url = "https://registry.npmjs.org/@netlify/config/-/config-6.7.1.tgz";
+ sha512 = "4DyiSauSFaorJ46l4tBu+nbvPKY9i1gOQvw9L4yql7gd7qqJsHJi2zivdJ50+MPedQn0cgcs5lk303UBEfFsBQ==";
};
};
- "@netlify/framework-info-3.3.0" = {
+ "@netlify/framework-info-5.0.0" = {
name = "_at_netlify_slash_framework-info";
packageName = "@netlify/framework-info";
- version = "3.3.0";
+ version = "5.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@netlify/framework-info/-/framework-info-3.3.0.tgz";
- sha512 = "oWlP+sWfnr0tXSqd3nfma9Abq1NvZc4lFbHPMvxU6UhAcrBOpizsMaVT9sUK0UcMwzR8xwESdskZajtFoHA28g==";
+ url = "https://registry.npmjs.org/@netlify/framework-info/-/framework-info-5.0.0.tgz";
+ sha512 = "EVyCVfSi9SKI7siVqAggQ4gsgkjzIxpUgUwh6ChNw7wQ8UykZ4gqYJjtw81VrxNqGV37yyI3Upy1u3MeusLLig==";
};
};
- "@netlify/functions-utils-1.3.28" = {
+ "@netlify/functions-utils-1.3.35" = {
name = "_at_netlify_slash_functions-utils";
packageName = "@netlify/functions-utils";
- version = "1.3.28";
+ version = "1.3.35";
src = fetchurl {
- url = "https://registry.npmjs.org/@netlify/functions-utils/-/functions-utils-1.3.28.tgz";
- sha512 = "8swtLIVmzsokQfgr/2qZGf8C6GmrhP/okPzFZjmoDbfaHKqkkXthg0G/iY83CwRiofAuwMUkLtsrf1g3+aDiuA==";
+ url = "https://registry.npmjs.org/@netlify/functions-utils/-/functions-utils-1.3.35.tgz";
+ sha512 = "b607BKWwh81DDDLEW+430v0MJka71Rr5aIeEUtkWqPe6Io+ei6DjqIJJrHsBnNh0vWXeo0Stf3f1kMAA2P+fUA==";
};
};
- "@netlify/git-utils-1.0.9" = {
+ "@netlify/git-utils-1.0.11" = {
name = "_at_netlify_slash_git-utils";
packageName = "@netlify/git-utils";
- version = "1.0.9";
+ version = "1.0.11";
src = fetchurl {
- url = "https://registry.npmjs.org/@netlify/git-utils/-/git-utils-1.0.9.tgz";
- sha512 = "qdkbEK3jRhfCbCqHAJGyQmBXxa66Kx1zwkm4dXBS8Wimv0zFGuyWWkMQomo6t2VGGoJyC+Ocy+E4ubTC13MUqA==";
+ url = "https://registry.npmjs.org/@netlify/git-utils/-/git-utils-1.0.11.tgz";
+ sha512 = "bvlvFAB9VU3wTYYEEUinsOeRFxZ/MmetffzHehSMEyP00kXakvrySq4XbC6G8u3wCDln34eOjKDt8uPYoqfuNQ==";
};
};
- "@netlify/open-api-1.3.0" = {
+ "@netlify/open-api-2.4.0" = {
name = "_at_netlify_slash_open-api";
packageName = "@netlify/open-api";
- version = "1.3.0";
+ version = "2.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@netlify/open-api/-/open-api-1.3.0.tgz";
- sha512 = "GcCPXIWI8VDBsLN4nPvb6sKS9tbi4lrHLhex90hT27nwTDeu4HgGE93YilcsgZ1LLODJNxC5LdfTNLtvEHMKVg==";
+ url = "https://registry.npmjs.org/@netlify/open-api/-/open-api-2.4.0.tgz";
+ sha512 = "ffNpGiJulY4is1pWkrs1dn3/ytNoqJxyAD/N70cnkIVNpOWMnPGSPKGBk/TBpaZhispgSBBQ+JZXEMJAGMDZ6Q==";
};
};
- "@netlify/plugin-edge-handlers-1.11.6" = {
+ "@netlify/plugin-edge-handlers-1.11.12" = {
name = "_at_netlify_slash_plugin-edge-handlers";
packageName = "@netlify/plugin-edge-handlers";
- version = "1.11.6";
+ version = "1.11.12";
src = fetchurl {
- url = "https://registry.npmjs.org/@netlify/plugin-edge-handlers/-/plugin-edge-handlers-1.11.6.tgz";
- sha512 = "7L5pkXlwPfyUrmm9cu2+nOQYW1FMx6waMbl2Uj5SmxjLz5Dvt2zkUYbNU2ImNmJ10mxziv3LABSFn2k2qy2nLw==";
+ url = "https://registry.npmjs.org/@netlify/plugin-edge-handlers/-/plugin-edge-handlers-1.11.12.tgz";
+ sha512 = "zbQkQHho/SkTTTOsRBvVvx74IEMsLHL/FxJYhkfgMXwXTQSsq35/pRRYq6TfQyRBSlUkllDRmTOB+f2DQCvQrw==";
};
};
- "@netlify/plugins-list-2.8.0" = {
+ "@netlify/plugins-list-2.14.2" = {
name = "_at_netlify_slash_plugins-list";
packageName = "@netlify/plugins-list";
- version = "2.8.0";
+ version = "2.14.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@netlify/plugins-list/-/plugins-list-2.8.0.tgz";
- sha512 = "bjmObzm6qrZigS6ht85zgyHGTsk8dk3OspvQ3BED4VWFMDhl323WwswSJIQg2j7EdxEEOvGsM+gbh0FFWl6pqg==";
+ url = "https://registry.npmjs.org/@netlify/plugins-list/-/plugins-list-2.14.2.tgz";
+ sha512 = "WbLQ0X1cnryXzWeV03dA3BHw0CEPDTrj3IvjbeOB45A5/dxvTgQVjAeFbmqgRj6A8GPHgSLoNN0kteoXBojHhw==";
};
};
"@netlify/run-utils-1.0.7" = {
@@ -3919,67 +4009,67 @@ let
sha512 = "ea6S9ik5X0TlA2e+jXk5D7lfvArPZjyQoIBEo7G1Tjw/vUU5Fx6KLfXv1iy7eJy+ENTLoyidscAjJ2wXlHI47g==";
};
};
- "@netlify/zip-it-and-ship-it-3.7.0" = {
+ "@netlify/zip-it-and-ship-it-4.2.1" = {
name = "_at_netlify_slash_zip-it-and-ship-it";
packageName = "@netlify/zip-it-and-ship-it";
- version = "3.7.0";
+ version = "4.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@netlify/zip-it-and-ship-it/-/zip-it-and-ship-it-3.7.0.tgz";
- sha512 = "WPdJ8UulZxv+Niobjp49v8TO2+7V7Kks+1me4Zl4zuv09z8ZTE2/6b8bOCnB+tysTINrmTfi8ZMweB44gyLFLg==";
+ url = "https://registry.npmjs.org/@netlify/zip-it-and-ship-it/-/zip-it-and-ship-it-4.2.1.tgz";
+ sha512 = "IWh/VhLOH1412Mm1eBBKktV1SeSJHAiBehhdFMTrKJfFdK7vh+TylNImc/wuGCAdci85FXOWQ+YpnMOibhGvng==";
};
};
- "@node-red/editor-api-1.3.3" = {
+ "@node-red/editor-api-1.3.5" = {
name = "_at_node-red_slash_editor-api";
packageName = "@node-red/editor-api";
- version = "1.3.3";
+ version = "1.3.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@node-red/editor-api/-/editor-api-1.3.3.tgz";
- sha512 = "PafnnsKUYDQy+bQfk7THSCTy0zncDMvbn4HXGkavqN4nEuvm0bdvA6ZhBNa5G/WaKPt0srptl2KKCsavd3O8jA==";
+ url = "https://registry.npmjs.org/@node-red/editor-api/-/editor-api-1.3.5.tgz";
+ sha512 = "IJyfyVhEvkf2YNRPoR+1SPSi76evVV/boAKhOeVoIMBBeuYd1wM1ihMM3rnNWDYXjN/7CbTKz2DVmdMQ5aCIeQ==";
};
};
- "@node-red/editor-client-1.3.3" = {
+ "@node-red/editor-client-1.3.5" = {
name = "_at_node-red_slash_editor-client";
packageName = "@node-red/editor-client";
- version = "1.3.3";
+ version = "1.3.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@node-red/editor-client/-/editor-client-1.3.3.tgz";
- sha512 = "08vlp1s5yrUSidgjUg6/3sQIZ/c7r08oUNYZaN9kEgKVhYBRizet0fHBev8OWEO7nrMJAs8nQmYQGTRg4P/2uA==";
+ url = "https://registry.npmjs.org/@node-red/editor-client/-/editor-client-1.3.5.tgz";
+ sha512 = "B/JB7KuSeTHkiwzrQtCgmkUfHN5nP2htUoE4wkTt118IA/1xUWXEtl+WnT5aDLiFUyFI21q9Fl4BnDOa7JqLEw==";
};
};
- "@node-red/nodes-1.3.3" = {
+ "@node-red/nodes-1.3.5" = {
name = "_at_node-red_slash_nodes";
packageName = "@node-red/nodes";
- version = "1.3.3";
+ version = "1.3.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@node-red/nodes/-/nodes-1.3.3.tgz";
- sha512 = "ztCxN5ZWlUf8YkMD9NZd+izrnFVkIgv1ayzZzwCx8gsqLyGIQkzESgfKnqqU4ID8ih/r5Xs2SNl+XP9+OJEO6w==";
+ url = "https://registry.npmjs.org/@node-red/nodes/-/nodes-1.3.5.tgz";
+ sha512 = "kLZOn8YDiDemJ/ufx0eagpmPPbUzLifgvoF1fHq9Jzf+K/xWtzDLHqNyLM6VSzo6QlCAnS939dU9kDb5G3fs3Q==";
};
};
- "@node-red/registry-1.3.3" = {
+ "@node-red/registry-1.3.5" = {
name = "_at_node-red_slash_registry";
packageName = "@node-red/registry";
- version = "1.3.3";
+ version = "1.3.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@node-red/registry/-/registry-1.3.3.tgz";
- sha512 = "JaHsvXxz9/DJ02NwlBLeUTYPGZEpRvOFR99D34YHF753bw8ocROnYAJemNTmNbua/jW4RRL0tCXuJlrOQZNSGA==";
+ url = "https://registry.npmjs.org/@node-red/registry/-/registry-1.3.5.tgz";
+ sha512 = "wy74xMnD87v/oB5P/HnUiJ6kTgdcCTgIJadeRBh0DSwcMjG3MhSxe8QCk3U9BxLH1fxw0IwxWbNgGwzuM8EOdw==";
};
};
- "@node-red/runtime-1.3.3" = {
+ "@node-red/runtime-1.3.5" = {
name = "_at_node-red_slash_runtime";
packageName = "@node-red/runtime";
- version = "1.3.3";
+ version = "1.3.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@node-red/runtime/-/runtime-1.3.3.tgz";
- sha512 = "+tjva7c1lI+87ho1XTS5Lj0t+OapuA+/W3hRb1zXUTNfflUrkVcMMSujMw5v+V2Z5/cMNJBRgEYj38svj9pG3w==";
+ url = "https://registry.npmjs.org/@node-red/runtime/-/runtime-1.3.5.tgz";
+ sha512 = "4Cz83wX9trvhhPxFkF5HfYzqYQEcVOYf4f1lSDHP2xYowE22+x4BTCs8gZA4hCI4kbon3eyaU5NrzlrKd+nZbQ==";
};
};
- "@node-red/util-1.3.3" = {
+ "@node-red/util-1.3.5" = {
name = "_at_node-red_slash_util";
packageName = "@node-red/util";
- version = "1.3.3";
+ version = "1.3.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@node-red/util/-/util-1.3.3.tgz";
- sha512 = "xB76cff/HlXJcbZlOe1duqBiCoqJTHM4KKFElcSJGNVjQSeOhZgxMsuECFHCCCh8Y9TVkL96VFwWybq2fKonew==";
+ url = "https://registry.npmjs.org/@node-red/util/-/util-1.3.5.tgz";
+ sha512 = "1TTvTwvGMSe9SQMEKN5zGdyGMv8Kth49eiUcdPnUWigtafk1BE9iP7gVSyLVYgijzCwh40GUkSYey0TUaSbRBw==";
};
};
"@nodelib/fs.scandir-2.1.4" = {
@@ -4018,13 +4108,13 @@ let
sha512 = "8Broas6vTtW4GIXTAHDoE32hnN2M5ykgCpWGbuXHQ15vEMqr23pB76e/GZcYsZCHALv50ktd24qhEyKr6wBtow==";
};
};
- "@npmcli/arborist-2.4.0" = {
+ "@npmcli/arborist-2.6.1" = {
name = "_at_npmcli_slash_arborist";
packageName = "@npmcli/arborist";
- version = "2.4.0";
+ version = "2.6.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@npmcli/arborist/-/arborist-2.4.0.tgz";
- sha512 = "rCoRrUSmXdBDBBgL/O0oehIR53ey99Pds8dId7gztARZmx6/NBoeiUOu9RnvXSe15XZLc3JSz9sHPcbQ9NQ53Q==";
+ url = "https://registry.npmjs.org/@npmcli/arborist/-/arborist-2.6.1.tgz";
+ sha512 = "OOlntFIOAo7RplEQaYXlA5U5NXE+EwZtnTCsit4Wtme5+llGiea6GBytuV8dOzdPMPlNx3fQQjBUE9E8k76yjQ==";
};
};
"@npmcli/ci-detect-1.3.0" = {
@@ -4036,13 +4126,13 @@ let
sha512 = "oN3y7FAROHhrAt7Rr7PnTSwrHrZVRTS2ZbyxeQwSSYD0ifwM3YNgQqbaRmjcWoPyq77MjchusjJDspbzMmip1Q==";
};
};
- "@npmcli/git-2.0.8" = {
+ "@npmcli/git-2.0.9" = {
name = "_at_npmcli_slash_git";
packageName = "@npmcli/git";
- version = "2.0.8";
+ version = "2.0.9";
src = fetchurl {
- url = "https://registry.npmjs.org/@npmcli/git/-/git-2.0.8.tgz";
- sha512 = "LPnzyBZ+1p7+JzHVwwKycMF8M3lr1ze3wxGRnxn/QxJtk++Y3prSJQrdBDGCxJyRpFsup6J3lrRBVYBhJVrM8Q==";
+ url = "https://registry.npmjs.org/@npmcli/git/-/git-2.0.9.tgz";
+ sha512 = "hTMbMryvOqGLwnmMBKs5usbPsJtyEsMsgXwJbmNrsEuQQh1LAIMDU77IoOrwkCg+NgQWl+ySlarJASwM3SutCA==";
};
};
"@npmcli/installed-package-contents-1.0.7" = {
@@ -4189,15 +4279,6 @@ let
sha512 = "tuzhvxxRtfLnWa96klngXBi5IwHt9S/twedCbQhl9dYIKTFMHI1BcOQcPra6ylct+M+b9jhEF5sjWLv78tB6tw==";
};
};
- "@oclif/plugin-help-2.2.3" = {
- name = "_at_oclif_slash_plugin-help";
- packageName = "@oclif/plugin-help";
- version = "2.2.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/@oclif/plugin-help/-/plugin-help-2.2.3.tgz";
- sha512 = "bGHUdo5e7DjPJ0vTeRBMIrfqTRDBfyR5w0MP41u0n3r7YG5p14lvMmiCXxi6WDaP2Hw5nqx3PnkAIntCKZZN7g==";
- };
- };
"@oclif/plugin-help-3.2.2" = {
name = "_at_oclif_slash_plugin-help";
packageName = "@oclif/plugin-help";
@@ -4270,22 +4351,22 @@ let
sha512 = "fUIPpx+pZyoLW4GCs3yMnlj2LfoXTWDUVPTC4V3MUEKZm48W+XYpeWSZCv+vYF1ZABUm2CqnDVf1sFtIYrj7KQ==";
};
};
- "@octokit/graphql-4.6.1" = {
+ "@octokit/graphql-4.6.2" = {
name = "_at_octokit_slash_graphql";
packageName = "@octokit/graphql";
- version = "4.6.1";
+ version = "4.6.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@octokit/graphql/-/graphql-4.6.1.tgz";
- sha512 = "2lYlvf4YTDgZCTXTW4+OX+9WTLFtEUc6hGm4qM1nlZjzxj+arizM4aHWzBVBCxY9glh7GIs0WEuiSgbVzv8cmA==";
+ url = "https://registry.npmjs.org/@octokit/graphql/-/graphql-4.6.2.tgz";
+ sha512 = "WmsIR1OzOr/3IqfG9JIczI8gMJUMzzyx5j0XXQ4YihHtKlQc+u35VpVoOXhlKAlaBntvry1WpAzPl/a+s3n89Q==";
};
};
- "@octokit/openapi-types-6.1.1" = {
+ "@octokit/openapi-types-7.2.3" = {
name = "_at_octokit_slash_openapi-types";
packageName = "@octokit/openapi-types";
- version = "6.1.1";
+ version = "7.2.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-6.1.1.tgz";
- sha512 = "ICBhnEb+ahi/TTdNuYb/kTyKVBgAM0VD4k6JPzlhJyzt3Z+Tq/bynwCD+gpkJP7AEcNnzC8YO5R39trmzEo2UA==";
+ url = "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-7.2.3.tgz";
+ sha512 = "V1ycxkR19jqbIl3evf2RQiMRBvTNRi+Iy9h20G5OP5dPfEF6GJ1DPlUeiZRxo2HJxRr+UA4i0H1nn4btBDPFrw==";
};
};
"@octokit/plugin-enterprise-rest-6.0.1" = {
@@ -4297,15 +4378,6 @@ let
sha512 = "93uGjlhUD+iNg1iWhUENAtJata6w5nE+V4urXOAlIXdco6xNZtUSfYY8dzp3Udy74aqO/B5UZL80x/YMa5PKRw==";
};
};
- "@octokit/plugin-paginate-rest-1.1.2" = {
- name = "_at_octokit_slash_plugin-paginate-rest";
- packageName = "@octokit/plugin-paginate-rest";
- version = "1.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-1.1.2.tgz";
- sha512 = "jbsSoi5Q1pj63sC16XIUboklNw+8tL9VOnJsWycWYR78TKss5PVpIPb1TUUcMQ+bBh7cY579cVAWmf5qG+dw+Q==";
- };
- };
"@octokit/plugin-paginate-rest-2.13.3" = {
name = "_at_octokit_slash_plugin-paginate-rest";
packageName = "@octokit/plugin-paginate-rest";
@@ -4324,22 +4396,13 @@ let
sha512 = "4RFU4li238jMJAzLgAwkBAw+4Loile5haQMQr+uhFq27BmyJXcXSKvoQKqh0agsZEiUlW6iSv3FAgvmGkur7OQ==";
};
};
- "@octokit/plugin-rest-endpoint-methods-2.4.0" = {
+ "@octokit/plugin-rest-endpoint-methods-5.3.1" = {
name = "_at_octokit_slash_plugin-rest-endpoint-methods";
packageName = "@octokit/plugin-rest-endpoint-methods";
- version = "2.4.0";
+ version = "5.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-2.4.0.tgz";
- sha512 = "EZi/AWhtkdfAYi01obpX0DF7U6b1VRr30QNQ5xSFPITMdLSfhcBqjamE3F+sKcxPbD7eZuMHu3Qkk2V+JGxBDQ==";
- };
- };
- "@octokit/plugin-rest-endpoint-methods-5.0.1" = {
- name = "_at_octokit_slash_plugin-rest-endpoint-methods";
- packageName = "@octokit/plugin-rest-endpoint-methods";
- version = "5.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-5.0.1.tgz";
- sha512 = "vvWbPtPqLyIzJ7A4IPdTl+8IeuKAwMJ4LjvmqWOOdfSuqWQYZXq2CEd0hsnkidff2YfKlguzujHs/reBdAx8Sg==";
+ url = "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-5.3.1.tgz";
+ sha512 = "3B2iguGmkh6bQQaVOtCsS0gixrz8Lg0v4JuXPqBcFqLKuJtxAUf3K88RxMEf/naDOI73spD+goJ/o7Ie7Cvdjg==";
};
};
"@octokit/request-5.4.15" = {
@@ -4351,15 +4414,6 @@ let
sha512 = "6UnZfZzLwNhdLRreOtTkT9n57ZwulCve8q3IT/Z477vThu6snfdkBuhxnChpOKNGxcQ71ow561Qoa6uqLdPtag==";
};
};
- "@octokit/request-error-1.2.1" = {
- name = "_at_octokit_slash_request-error";
- packageName = "@octokit/request-error";
- version = "1.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@octokit/request-error/-/request-error-1.2.1.tgz";
- sha512 = "+6yDyk1EES6WK+l3viRDElw96MvwfJxCt45GvmjDUKWjYIb3PJZQkq3i46TwGwoPD4h8NmTrENmtyA1FwbmhRA==";
- };
- };
"@octokit/request-error-2.0.5" = {
name = "_at_octokit_slash_request-error";
packageName = "@octokit/request-error";
@@ -4369,40 +4423,22 @@ let
sha512 = "T/2wcCFyM7SkXzNoyVNWjyVlUwBvW3igM3Btr/eKYiPmucXTtkxt2RBsf6gn3LTzaLSLTQtNmvg+dGsOxQrjZg==";
};
};
- "@octokit/rest-16.43.2" = {
+ "@octokit/rest-18.5.5" = {
name = "_at_octokit_slash_rest";
packageName = "@octokit/rest";
- version = "16.43.2";
+ version = "18.5.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@octokit/rest/-/rest-16.43.2.tgz";
- sha512 = "ngDBevLbBTFfrHZeiS7SAMAZ6ssuVmXuya+F/7RaVvlysgGa1JKJkKWY+jV6TCJYcW0OALfJ7nTIGXcBXzycfQ==";
+ url = "https://registry.npmjs.org/@octokit/rest/-/rest-18.5.5.tgz";
+ sha512 = "Py9sWvxBGeAwNY8UnhxP6jnq7aflvQ0uQ6gmZObyJLR9hmd5NEz9piu/A77cxV6+0l9UNACJVXX6FOnl5LIcPw==";
};
};
- "@octokit/rest-18.5.3" = {
- name = "_at_octokit_slash_rest";
- packageName = "@octokit/rest";
- version = "18.5.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/@octokit/rest/-/rest-18.5.3.tgz";
- sha512 = "KPAsUCr1DOdLVbZJgGNuE/QVLWEaVBpFQwDAz/2Cnya6uW2wJ/P5RVGk0itx7yyN1aGa8uXm2pri4umEqG1JBA==";
- };
- };
- "@octokit/types-2.16.2" = {
+ "@octokit/types-6.16.2" = {
name = "_at_octokit_slash_types";
packageName = "@octokit/types";
- version = "2.16.2";
+ version = "6.16.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@octokit/types/-/types-2.16.2.tgz";
- sha512 = "O75k56TYvJ8WpAakWwYRN8Bgu60KrmX0z1KqFp1kNiFNkgW+JW+9EBKZ+S33PU6SLvbihqd+3drvPxKK68Ee8Q==";
- };
- };
- "@octokit/types-6.13.2" = {
- name = "_at_octokit_slash_types";
- packageName = "@octokit/types";
- version = "6.13.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/@octokit/types/-/types-6.13.2.tgz";
- sha512 = "jN5LImYHvv7W6SZargq1UMJ3EiaqIz5qkpfsv4GAb4b16SGqctxtOU2TQAZxvsKHkOw2A4zxdsi5wR9en1/ezQ==";
+ url = "https://registry.npmjs.org/@octokit/types/-/types-6.16.2.tgz";
+ sha512 = "wWPSynU4oLy3i4KGyk+J1BLwRKyoeW2TwRHgwbDz17WtVFzSK2GOErGliruIx8c+MaYtHSYTx36DSmLNoNbtgA==";
};
};
"@open-policy-agent/opa-wasm-1.2.0" = {
@@ -4459,310 +4495,310 @@ let
sha512 = "+0P+PrP9qSFVaayNdek4P1OAGE+PEl2SsufuHDRmUpOY25Wzjo7Atyar56Trjc32jkNy4lID6ZFT6BahsR9P9A==";
};
};
- "@ot-builder/bin-composite-types-1.0.4" = {
+ "@ot-builder/bin-composite-types-1.0.7" = {
name = "_at_ot-builder_slash_bin-composite-types";
packageName = "@ot-builder/bin-composite-types";
- version = "1.0.4";
+ version = "1.0.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/bin-composite-types/-/bin-composite-types-1.0.4.tgz";
- sha512 = "mza6bLi18CosKPWDxbK+4BZqfzWRSVoiXmW9Z+UN/YvqRmUJD+Dc5C+t1M9KgtLAwKjsNSLPSqbPeOJwcBxQnw==";
+ url = "https://registry.npmjs.org/@ot-builder/bin-composite-types/-/bin-composite-types-1.0.7.tgz";
+ sha512 = "JGXpefpLj/FDhhTldcVbw4tXW5OBBbHalfOCiR7Af6SOdHD2Fy3gXSrkuULFS/4t8lw0byREhjCHZ3mKbOdCjw==";
};
};
- "@ot-builder/bin-util-1.0.4" = {
+ "@ot-builder/bin-util-1.0.7" = {
name = "_at_ot-builder_slash_bin-util";
packageName = "@ot-builder/bin-util";
- version = "1.0.4";
+ version = "1.0.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/bin-util/-/bin-util-1.0.4.tgz";
- sha512 = "MKlDHSyKNV8WKWLa9pL8pw1OIJ3lWO8zOjnYM/Had3RgqJMDtk98j1eYuB8VrX8Hbq3ur9NQ7Ycq+xDaGGjiyA==";
+ url = "https://registry.npmjs.org/@ot-builder/bin-util/-/bin-util-1.0.7.tgz";
+ sha512 = "diiALKLHQwiyQJ1hDrLdPNfZXs0GXtOm5QDYn1U/gJWewCfgWr1LVwX8+QzwgVEI/QuZi+A3G0I6qqvegPrEGg==";
};
};
- "@ot-builder/cli-help-shower-1.0.4" = {
+ "@ot-builder/cli-help-shower-1.0.7" = {
name = "_at_ot-builder_slash_cli-help-shower";
packageName = "@ot-builder/cli-help-shower";
- version = "1.0.4";
+ version = "1.0.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/cli-help-shower/-/cli-help-shower-1.0.4.tgz";
- sha512 = "Yz27agTVcxA4jblNqaiy6ULcx49c2CxIhOZdbL90d95d0ehDDiODeUuH2FlGcHE//KTUIOYGmM4KkOIE4iRVzQ==";
+ url = "https://registry.npmjs.org/@ot-builder/cli-help-shower/-/cli-help-shower-1.0.7.tgz";
+ sha512 = "SsipXPTXTAWlxXVFvWd+TY01gWC/3VSp8l4Cs1p1PguzourRyWtLD6y8prQV+zvuARDJ+XLjn3Fy1RoL3PMjiA==";
};
};
- "@ot-builder/cli-proc-1.0.4" = {
+ "@ot-builder/cli-proc-1.0.7" = {
name = "_at_ot-builder_slash_cli-proc";
packageName = "@ot-builder/cli-proc";
- version = "1.0.4";
+ version = "1.0.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/cli-proc/-/cli-proc-1.0.4.tgz";
- sha512 = "6J2QTTHd4CkJqmwyooYZpAc6czWo4O+Fp+7SRGcFPrR2PdvprafxPv+vFkonnLLuRtiZguEt6LjCgkYK3oReoA==";
+ url = "https://registry.npmjs.org/@ot-builder/cli-proc/-/cli-proc-1.0.7.tgz";
+ sha512 = "cDCfKjsnu0iGrEoAR2XCoZfIjo9WXu8Xdhc3VTyBfV9tmrUpyh9t/9YCRyq6haFU69l9BzoDC3Vsl32vh27eSQ==";
};
};
- "@ot-builder/cli-shared-1.0.4" = {
+ "@ot-builder/cli-shared-1.0.7" = {
name = "_at_ot-builder_slash_cli-shared";
packageName = "@ot-builder/cli-shared";
- version = "1.0.4";
+ version = "1.0.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/cli-shared/-/cli-shared-1.0.4.tgz";
- sha512 = "tmngc7PhETp+cwMWl7Jwxg90X9ArMdFNvAt2CMg/TPnz0wGV91PQaYdOLa8Z2spRAqg6CBsKv2P85UopeypImA==";
+ url = "https://registry.npmjs.org/@ot-builder/cli-shared/-/cli-shared-1.0.7.tgz";
+ sha512 = "BPBEpZQ04KFHFMlR/xDGLYjGihwI6b22UfgQolckpySKduk328Li4dE7kUBKPpoLsWAF6Z+SMImHifrcNkOwOQ==";
};
};
- "@ot-builder/common-impl-1.0.4" = {
+ "@ot-builder/common-impl-1.0.7" = {
name = "_at_ot-builder_slash_common-impl";
packageName = "@ot-builder/common-impl";
- version = "1.0.4";
+ version = "1.0.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/common-impl/-/common-impl-1.0.4.tgz";
- sha512 = "0yxLwOblp3AsyCtov7UQhAY+brguEVy8ilfpETOlkAmLSjruhsvjqjF8u7BkaBRQ4Uf13J2/15jQcAghMXLR3g==";
+ url = "https://registry.npmjs.org/@ot-builder/common-impl/-/common-impl-1.0.7.tgz";
+ sha512 = "alYW8r3tH33cK87Dnmz4TaPxOR6ViA249OZYhkdbMVKz4Dj1LBceXdpJp7NgcQbLDSIqzB+yI4/zEQEYFIg4cQ==";
};
};
- "@ot-builder/errors-1.0.4" = {
+ "@ot-builder/errors-1.0.7" = {
name = "_at_ot-builder_slash_errors";
packageName = "@ot-builder/errors";
- version = "1.0.4";
+ version = "1.0.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/errors/-/errors-1.0.4.tgz";
- sha512 = "xS7D4uP5Ri0lzcRbsfh6s3+g33zXHd/7NrQ5lg4paPksoEUmwGRooJTP+plSTLSaKQxd58d8V5SkYCXd3wf2AA==";
+ url = "https://registry.npmjs.org/@ot-builder/errors/-/errors-1.0.7.tgz";
+ sha512 = "iHBTQuIzgoojViqQlduL8LJhX+hUpvQZb34oV0foTBMLBUL444q9WgBoOq1YfE34eizxuEXi2tUf2wHI1Lsw0g==";
};
};
- "@ot-builder/io-bin-cff-1.0.4" = {
+ "@ot-builder/io-bin-cff-1.0.7" = {
name = "_at_ot-builder_slash_io-bin-cff";
packageName = "@ot-builder/io-bin-cff";
- version = "1.0.4";
+ version = "1.0.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/io-bin-cff/-/io-bin-cff-1.0.4.tgz";
- sha512 = "bUurjiAADRPRfzqb9eQK+AqpIfGCDFhJ+E+i+Ok29lfrkeE5RjnTu4Tsmvl7rcSJlawWLGG6ZWI4NT//TMDlEw==";
+ url = "https://registry.npmjs.org/@ot-builder/io-bin-cff/-/io-bin-cff-1.0.7.tgz";
+ sha512 = "bnI4ZTTzZkx70KjVBlMv4LrarFKV8mDGcYOY2ZreWGDg0netY9lMUNmCXvEOOx1g4SX619wf1UWx599vepsZcQ==";
};
};
- "@ot-builder/io-bin-encoding-1.0.4" = {
+ "@ot-builder/io-bin-encoding-1.0.7" = {
name = "_at_ot-builder_slash_io-bin-encoding";
packageName = "@ot-builder/io-bin-encoding";
- version = "1.0.4";
+ version = "1.0.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/io-bin-encoding/-/io-bin-encoding-1.0.4.tgz";
- sha512 = "QxrM/J3UTqHG5AtbR6VpbFeKo89Wj8jaGUUaZu0ifht81om9dfcuf/TVQ0D78eqeN7VqUXoP6uSYj4ECSo1uAg==";
+ url = "https://registry.npmjs.org/@ot-builder/io-bin-encoding/-/io-bin-encoding-1.0.7.tgz";
+ sha512 = "HWybHlIZfD/lsC9XjCmkq4EHNV8jv7/TBKZBC61DZuqe2P1IldKVSTg73si133/IHGP49qMyVplmF3ihq29hUQ==";
};
};
- "@ot-builder/io-bin-ext-private-1.0.4" = {
+ "@ot-builder/io-bin-ext-private-1.0.7" = {
name = "_at_ot-builder_slash_io-bin-ext-private";
packageName = "@ot-builder/io-bin-ext-private";
- version = "1.0.4";
+ version = "1.0.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/io-bin-ext-private/-/io-bin-ext-private-1.0.4.tgz";
- sha512 = "c46Oa8LKEu8ULgCSYRCoToDA1LXuvb137TT6UugXJIl6JM53vMzbAQqFrMMlr5FY0RrItYumiS2YWQL8Vr9viw==";
+ url = "https://registry.npmjs.org/@ot-builder/io-bin-ext-private/-/io-bin-ext-private-1.0.7.tgz";
+ sha512 = "McugROG+MkmqDqJGIh6zHNO2s7k/gido1T4Ow/dmNQBRYUSikRLOm+eusUP7X2dV1H148fIGbIJYXjldTVwyKw==";
};
};
- "@ot-builder/io-bin-font-1.0.4" = {
+ "@ot-builder/io-bin-font-1.0.7" = {
name = "_at_ot-builder_slash_io-bin-font";
packageName = "@ot-builder/io-bin-font";
- version = "1.0.4";
+ version = "1.0.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/io-bin-font/-/io-bin-font-1.0.4.tgz";
- sha512 = "6gS5lEyAlz/DQi83roUap5buRDiublVwIqUJlvQ5qWF2hp9xQel6HoVHsdL4hfOhMBBqHBTgiM64cqeK+MV5KA==";
+ url = "https://registry.npmjs.org/@ot-builder/io-bin-font/-/io-bin-font-1.0.7.tgz";
+ sha512 = "gN6QQ90Kg29GQS5DW9HSk7z/BHccdZTFIPA7z2xbhb94b+r7gvkt+MGFFTpPdh+7JEFUGhKkHcv05fRh1kDOGw==";
};
};
- "@ot-builder/io-bin-glyph-store-1.0.4" = {
+ "@ot-builder/io-bin-glyph-store-1.0.7" = {
name = "_at_ot-builder_slash_io-bin-glyph-store";
packageName = "@ot-builder/io-bin-glyph-store";
- version = "1.0.4";
+ version = "1.0.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/io-bin-glyph-store/-/io-bin-glyph-store-1.0.4.tgz";
- sha512 = "gAYsXuTzV9Xt87AI35tD0ZxLgF/20qgmITZXBW2fe8yR6lSzZX+zsU38w+2/6zW2UoYRyitck9Hikkw3TJ7VAw==";
+ url = "https://registry.npmjs.org/@ot-builder/io-bin-glyph-store/-/io-bin-glyph-store-1.0.7.tgz";
+ sha512 = "AI0/pOqaWxhvuKIk5Rm1aRVCuVDJj/F34L9t6F5fvUhkOha6+FOwkZdXaVzUF82396CdVYY7X4D6m+YOjDCQXA==";
};
};
- "@ot-builder/io-bin-layout-1.0.4" = {
+ "@ot-builder/io-bin-layout-1.0.7" = {
name = "_at_ot-builder_slash_io-bin-layout";
packageName = "@ot-builder/io-bin-layout";
- version = "1.0.4";
+ version = "1.0.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/io-bin-layout/-/io-bin-layout-1.0.4.tgz";
- sha512 = "Iscx7nHRLeQHxVdlbb7nj+xTq3gZf6dftKT3EtjCBz9KtYYSqAkEi4Wq2UEBrkrlajz+z/ivvrwmv42hqOQTYw==";
+ url = "https://registry.npmjs.org/@ot-builder/io-bin-layout/-/io-bin-layout-1.0.7.tgz";
+ sha512 = "Y0UOiIkNPlbzUcJ4yccTrgS8lwLGHlleJkntTKnMIcYbXhMYTARhiJOZYJ7RjSzZ5n01bpejzGeXYCt4YpfwNw==";
};
};
- "@ot-builder/io-bin-metadata-1.0.4" = {
+ "@ot-builder/io-bin-metadata-1.0.7" = {
name = "_at_ot-builder_slash_io-bin-metadata";
packageName = "@ot-builder/io-bin-metadata";
- version = "1.0.4";
+ version = "1.0.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/io-bin-metadata/-/io-bin-metadata-1.0.4.tgz";
- sha512 = "Hvd39Yut521rd09pI4zYQMeXTeOagiTEjDCE+3dzON6Prakb+tyA8E4M7itRY9dp+13kkLGDHF1CYZRLyAkb0g==";
+ url = "https://registry.npmjs.org/@ot-builder/io-bin-metadata/-/io-bin-metadata-1.0.7.tgz";
+ sha512 = "Ze5D2ngX6bSM1Rjm9/0OWUKWVEJRE69ck/aIt1b3cAkreu8p1ldsPMFSL02LcmUpUhGTUCgUzqfhyq3eDC/46Q==";
};
};
- "@ot-builder/io-bin-metric-1.0.4" = {
+ "@ot-builder/io-bin-metric-1.0.7" = {
name = "_at_ot-builder_slash_io-bin-metric";
packageName = "@ot-builder/io-bin-metric";
- version = "1.0.4";
+ version = "1.0.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/io-bin-metric/-/io-bin-metric-1.0.4.tgz";
- sha512 = "wF6EtrR1g2uJz8f/bdAWTpcaaDFpPi52QcdW7gruw5mPx53H0wWZTaDT3S4MaJGtx0hxkQjELeJt2zN9VPjiwg==";
+ url = "https://registry.npmjs.org/@ot-builder/io-bin-metric/-/io-bin-metric-1.0.7.tgz";
+ sha512 = "DILo1KPj6ZP8VOZIeXCLGXRwgzSmxwGlqjv5b36j+Z+YoOs3pUqrpGz1KK1hWR/URQvDjEXMIWI3bFsiVFgxXw==";
};
};
- "@ot-builder/io-bin-name-1.0.4" = {
+ "@ot-builder/io-bin-name-1.0.7" = {
name = "_at_ot-builder_slash_io-bin-name";
packageName = "@ot-builder/io-bin-name";
- version = "1.0.4";
+ version = "1.0.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/io-bin-name/-/io-bin-name-1.0.4.tgz";
- sha512 = "3mjxpyTVcffSiKLQqHdMwMNe9dyE/mCYexKi7LZkxLyXk/ZsYBOapZKld9jXmpF5KVXJO37FopoheTZGW44RHw==";
+ url = "https://registry.npmjs.org/@ot-builder/io-bin-name/-/io-bin-name-1.0.7.tgz";
+ sha512 = "NmIXTMXGJ4kP8eIKx99u620b9XSSUinZT47KKxjqtYLLuZcsmaToh/eUN7Z4XSMDKO33PeNwWlXNcDAkC82K6g==";
};
};
- "@ot-builder/io-bin-sfnt-1.0.4" = {
+ "@ot-builder/io-bin-sfnt-1.0.7" = {
name = "_at_ot-builder_slash_io-bin-sfnt";
packageName = "@ot-builder/io-bin-sfnt";
- version = "1.0.4";
+ version = "1.0.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/io-bin-sfnt/-/io-bin-sfnt-1.0.4.tgz";
- sha512 = "/24bZ7oXS3G4nOOxxapGmvq2bQF9E5k3zybsO9ettu2632ZYkLP2s4imwzTVfHk6dpikEgzhxwXCumdbTOnZjw==";
+ url = "https://registry.npmjs.org/@ot-builder/io-bin-sfnt/-/io-bin-sfnt-1.0.7.tgz";
+ sha512 = "CtjuqqR+QjEXwo630PPtvW7RYxqfekFGqIZkYHbHI8SnBXGv70jB62itEszuJcipAqfcHBO7ndCCQU9dY/7N3g==";
};
};
- "@ot-builder/io-bin-ttf-1.0.4" = {
+ "@ot-builder/io-bin-ttf-1.0.7" = {
name = "_at_ot-builder_slash_io-bin-ttf";
packageName = "@ot-builder/io-bin-ttf";
- version = "1.0.4";
+ version = "1.0.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/io-bin-ttf/-/io-bin-ttf-1.0.4.tgz";
- sha512 = "ZtEDJYgS/Q/ag7Zw3/HbLJJtQJhgxtewmpUCXaPlIATxiZkwnmGJu4pTfzxr+ji2H/je2hBRZRPKLL9eKzyokg==";
+ url = "https://registry.npmjs.org/@ot-builder/io-bin-ttf/-/io-bin-ttf-1.0.7.tgz";
+ sha512 = "47ZXRatZFx4E7WeFPMOhndkWxeW5uIgUCMu6bVZTxUnw8qRIHXfl+Vgcw9SPxBEod1/9RL0koFcbWIQj5RoE6Q==";
};
};
- "@ot-builder/ot-1.0.4" = {
+ "@ot-builder/ot-1.0.7" = {
name = "_at_ot-builder_slash_ot";
packageName = "@ot-builder/ot";
- version = "1.0.4";
+ version = "1.0.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/ot/-/ot-1.0.4.tgz";
- sha512 = "xwZJ0MEv9vsx4f/88a5ZwX5bsgEg6h5WLXxoCxAZwzTnzbIS0m2WYJ8OqBhJcBK5VZ56C13exFkvIS8l5lgVkg==";
+ url = "https://registry.npmjs.org/@ot-builder/ot/-/ot-1.0.7.tgz";
+ sha512 = "kHdj0NcWHx+UetLZL+aVfMMTs+tQ/jEp3p+aaWGUI77lJF7ChRWpHdZx7TxnNaoz5/C4WkthHL9pcL0dr0DuPA==";
};
};
- "@ot-builder/ot-encoding-1.0.4" = {
+ "@ot-builder/ot-encoding-1.0.7" = {
name = "_at_ot-builder_slash_ot-encoding";
packageName = "@ot-builder/ot-encoding";
- version = "1.0.4";
+ version = "1.0.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/ot-encoding/-/ot-encoding-1.0.4.tgz";
- sha512 = "7TPdtXtRaZ49j2Ho2+L54/eR728Pwvu+fvSqva8Ly7KzH1epyGm2NixgvaSqs/tRpwydnvvqp2odtCwTSzOAbA==";
+ url = "https://registry.npmjs.org/@ot-builder/ot-encoding/-/ot-encoding-1.0.7.tgz";
+ sha512 = "rM8bYLy+fAAqtO4lKNkpE6UdXlenJiKG7buGD/GwIcTyCLdmIh8V1iJkMm6g2EJ/CkSR9+6b+YnR38TeU2CFwA==";
};
};
- "@ot-builder/ot-ext-private-1.0.4" = {
+ "@ot-builder/ot-ext-private-1.0.7" = {
name = "_at_ot-builder_slash_ot-ext-private";
packageName = "@ot-builder/ot-ext-private";
- version = "1.0.4";
+ version = "1.0.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/ot-ext-private/-/ot-ext-private-1.0.4.tgz";
- sha512 = "eAu9kMaAGwgMxWYtl7XMpzEFlO5PLeuCxdIhR2QSG/JVSD6HpHMqxMUHM5qgP2o58PjkTUPiuEiTMvi5tMRWDg==";
+ url = "https://registry.npmjs.org/@ot-builder/ot-ext-private/-/ot-ext-private-1.0.7.tgz";
+ sha512 = "P/+ZsjPRyR2tyKrUOXdXOfY1KrmeNo0zQ78jE5LVuOzv5DfC8+rIMnZlmlCwPmUS9mk6up5AapxFaJ+6REjhPw==";
};
};
- "@ot-builder/ot-glyphs-1.0.4" = {
+ "@ot-builder/ot-glyphs-1.0.7" = {
name = "_at_ot-builder_slash_ot-glyphs";
packageName = "@ot-builder/ot-glyphs";
- version = "1.0.4";
+ version = "1.0.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/ot-glyphs/-/ot-glyphs-1.0.4.tgz";
- sha512 = "MWa871aCDPaA+2+tThDq7JdNLEeYQvO7yJOYmsKoA4pBxbGSE4PpI8FJL/NtRizShNxsjRmbYbnprm72NBiTOw==";
+ url = "https://registry.npmjs.org/@ot-builder/ot-glyphs/-/ot-glyphs-1.0.7.tgz";
+ sha512 = "JRg/9XwgyrTZOHSeA9oe11FUKC4ho4o9PZq6QtfQ2kyoRtsvHGeQNuBdJ50GOFz1AypMCowfSo6qPHly15IKnQ==";
};
};
- "@ot-builder/ot-layout-1.0.4" = {
+ "@ot-builder/ot-layout-1.0.7" = {
name = "_at_ot-builder_slash_ot-layout";
packageName = "@ot-builder/ot-layout";
- version = "1.0.4";
+ version = "1.0.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/ot-layout/-/ot-layout-1.0.4.tgz";
- sha512 = "Qxy7F/fX1fD4ZyCdPb7gFBhpeOA3d2G94HK32mlVlQPXcXOkXJOT4z0fvMraWch14a/eVr29IEDeOK/uhyYmug==";
+ url = "https://registry.npmjs.org/@ot-builder/ot-layout/-/ot-layout-1.0.7.tgz";
+ sha512 = "vg7AIL6HtsrdRfPi8HIP3UdikG3WB9nawSb1MOd9/wCjYvln/elikzxCDVxcMaV9ojrzqQYTa53PBZFTSGaR3g==";
};
};
- "@ot-builder/ot-metadata-1.0.4" = {
+ "@ot-builder/ot-metadata-1.0.7" = {
name = "_at_ot-builder_slash_ot-metadata";
packageName = "@ot-builder/ot-metadata";
- version = "1.0.4";
+ version = "1.0.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/ot-metadata/-/ot-metadata-1.0.4.tgz";
- sha512 = "OZbrRtmSQte/OuL3pjUaIhD3Ono+W42hC7iQziLO0eP34uNeSEQNbNUNI6W3h8HuMSttbtJaLpJpDdmCPFi8sw==";
+ url = "https://registry.npmjs.org/@ot-builder/ot-metadata/-/ot-metadata-1.0.7.tgz";
+ sha512 = "y7p6yZ5anIrK2SpU4zLrgFZUWzYTUJzN2kvOVl7hCGLnRWLoQKmyGZ3cMF93BsuHiTRuAv2LoASrDIzup2uL2A==";
};
};
- "@ot-builder/ot-name-1.0.4" = {
+ "@ot-builder/ot-name-1.0.7" = {
name = "_at_ot-builder_slash_ot-name";
packageName = "@ot-builder/ot-name";
- version = "1.0.4";
+ version = "1.0.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/ot-name/-/ot-name-1.0.4.tgz";
- sha512 = "I4RU5F5XCCvkWHNa8uJ+bx282QVQ0n0jadAGZLcl5YIUwWkJ6Ih6kZNlkMfTsw/YMVakv3CHrCfh7GfxWMbbJA==";
+ url = "https://registry.npmjs.org/@ot-builder/ot-name/-/ot-name-1.0.7.tgz";
+ sha512 = "0y6hkn3v2Z6DgJwy1jjt0mXg+O6DNXbq0sZxKVN3iGvEo2dW9MVCIdDvFT3uEIeaA8Etbr7p2gMmUXh+7SWomQ==";
};
};
- "@ot-builder/ot-sfnt-1.0.4" = {
+ "@ot-builder/ot-sfnt-1.0.7" = {
name = "_at_ot-builder_slash_ot-sfnt";
packageName = "@ot-builder/ot-sfnt";
- version = "1.0.4";
+ version = "1.0.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/ot-sfnt/-/ot-sfnt-1.0.4.tgz";
- sha512 = "m8ted+UhMW2tlccQ8+N0xzlN6lmKs/NBO93/BTaaxQt7CEjJcOYAncffa0TrFPQbCoAR4hyliNrogkLK81gUgg==";
+ url = "https://registry.npmjs.org/@ot-builder/ot-sfnt/-/ot-sfnt-1.0.7.tgz";
+ sha512 = "1DZQoSqirRPHOHpUcVBOo3M3s1DefEyLYVURwNQEH9HmJkcaNNAaZpBcqW2NtqGLQ/fUVeuM3cOI3Ek+4L+QGQ==";
};
};
- "@ot-builder/ot-standard-glyph-namer-1.0.4" = {
+ "@ot-builder/ot-standard-glyph-namer-1.0.7" = {
name = "_at_ot-builder_slash_ot-standard-glyph-namer";
packageName = "@ot-builder/ot-standard-glyph-namer";
- version = "1.0.4";
+ version = "1.0.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/ot-standard-glyph-namer/-/ot-standard-glyph-namer-1.0.4.tgz";
- sha512 = "cyMmKxbkFaGDoj6qTjykniMDAhihyHYJGjhrkCMyiYWbV259doWl476lGANI/AyPQsDbjS4bXF8QJOUpQBM6dA==";
+ url = "https://registry.npmjs.org/@ot-builder/ot-standard-glyph-namer/-/ot-standard-glyph-namer-1.0.7.tgz";
+ sha512 = "9Icp+Bb6g6Su+7Q9thSiLtmzbHDU5dOlhAUFnrKmHBu13UGYXJBHoe2F6GQ7kDooSrIBvO7b3v61beY+Pi2fwg==";
};
};
- "@ot-builder/prelude-1.0.4" = {
+ "@ot-builder/prelude-1.0.7" = {
name = "_at_ot-builder_slash_prelude";
packageName = "@ot-builder/prelude";
- version = "1.0.4";
+ version = "1.0.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/prelude/-/prelude-1.0.4.tgz";
- sha512 = "3SF8Y7WP5su2bCpzCbmKJv0zh6GRSbFQTGgk6KvZYt33ruZGpHyjJnlZUhSO9LsCyzR4B72/UnQK2UoZNcaI5g==";
+ url = "https://registry.npmjs.org/@ot-builder/prelude/-/prelude-1.0.7.tgz";
+ sha512 = "bh+7Tp847MvnwZYV7ghSJkekprxsEAPlCgGopTwBWhgk7So/8+RZK+a24VSK4qSNDCr8lNoYh9PSMO4mAR0j/Q==";
};
};
- "@ot-builder/primitive-1.0.4" = {
+ "@ot-builder/primitive-1.0.7" = {
name = "_at_ot-builder_slash_primitive";
packageName = "@ot-builder/primitive";
- version = "1.0.4";
+ version = "1.0.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/primitive/-/primitive-1.0.4.tgz";
- sha512 = "RO+s4TXioRd+BQadkyhEizu6/1sqDkbpvtwz4uLT6ncutB7QYYutCIC9N2BrArUHy6j30lWhv7mQuUjJsgzQOw==";
+ url = "https://registry.npmjs.org/@ot-builder/primitive/-/primitive-1.0.7.tgz";
+ sha512 = "rvIDdf+20reSTbZWro6RcBwmIoeLE0r8wprUWEWP/hBEzbIvfTw4cik188zBjRXKhZUsAnLUynjeqokhP51Txw==";
};
};
- "@ot-builder/rectify-1.0.4" = {
+ "@ot-builder/rectify-1.0.7" = {
name = "_at_ot-builder_slash_rectify";
packageName = "@ot-builder/rectify";
- version = "1.0.4";
+ version = "1.0.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/rectify/-/rectify-1.0.4.tgz";
- sha512 = "hHvlBACzKLDT/4bixeacWzdAXi7WbGzn/gJim0q5FhrJ6wuy6jMqcASUgfuxDu/tn4mLVL5BglKSr1xcS8C87g==";
+ url = "https://registry.npmjs.org/@ot-builder/rectify/-/rectify-1.0.7.tgz";
+ sha512 = "RNQxUMGkcqeoYirAjJjVfUIofZzR9ZPmwD1BnQPznabCgC1cuIXCgDdYzjANh72hJeOhhN9ewVA3WM013llZRA==";
};
};
- "@ot-builder/stat-glyphs-1.0.4" = {
+ "@ot-builder/stat-glyphs-1.0.7" = {
name = "_at_ot-builder_slash_stat-glyphs";
packageName = "@ot-builder/stat-glyphs";
- version = "1.0.4";
+ version = "1.0.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/stat-glyphs/-/stat-glyphs-1.0.4.tgz";
- sha512 = "Dn6BxqpJaLC0dz73OsxEYV99zjc2hkY0FPt1u9SYgN5zWpmZeDqDLo18UOH5WsWJCd0AI6pRagSAROHA9/c1jw==";
+ url = "https://registry.npmjs.org/@ot-builder/stat-glyphs/-/stat-glyphs-1.0.7.tgz";
+ sha512 = "KVW+RS5DJwWvrrbe2zO+p60kaYeDMlf+zN2D8JrpCr5pbVumOWtgBHMInD9HU4Qnng2DW5X1IPy4dEMyGLla6w==";
};
};
- "@ot-builder/trace-1.0.4" = {
+ "@ot-builder/trace-1.0.7" = {
name = "_at_ot-builder_slash_trace";
packageName = "@ot-builder/trace";
- version = "1.0.4";
+ version = "1.0.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/trace/-/trace-1.0.4.tgz";
- sha512 = "vQKQtK6WbaSTUbr6h18bWyOSRpynVgo6WPPmq3xv4HGWc/hv+61bOwFrNl0KHeoZCWmlATVRdiyWOr6et5zPMA==";
+ url = "https://registry.npmjs.org/@ot-builder/trace/-/trace-1.0.7.tgz";
+ sha512 = "jO5Op3OHs18erCA3jv2/fmfht9jyiXYqbGtfssWC5vZuwtC4h998nj07PRh+MT4L+tsIbJfgj6WuG2K9rwSy9Q==";
};
};
- "@ot-builder/var-store-1.0.4" = {
+ "@ot-builder/var-store-1.0.7" = {
name = "_at_ot-builder_slash_var-store";
packageName = "@ot-builder/var-store";
- version = "1.0.4";
+ version = "1.0.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/var-store/-/var-store-1.0.4.tgz";
- sha512 = "EiPpjeD1SownKU9e5T0+Fja/zuTuDPP5m+bSVMTPW77ROOFJMIbUseZmoG+Y4PqF3V43Kue9WRPLl9eipnHpcg==";
+ url = "https://registry.npmjs.org/@ot-builder/var-store/-/var-store-1.0.7.tgz";
+ sha512 = "z47s+cbzRtI4coWgdVgjSX+lktYUenL0k+z+pIwKU6nI+ASpnJtgfczB7FpqvDhLw3fYV9U4K5bSAUC+z8KYmw==";
};
};
- "@ot-builder/variance-1.0.4" = {
+ "@ot-builder/variance-1.0.7" = {
name = "_at_ot-builder_slash_variance";
packageName = "@ot-builder/variance";
- version = "1.0.4";
+ version = "1.0.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/variance/-/variance-1.0.4.tgz";
- sha512 = "X4a/zUGeDq6HlVD2jln1+Eb0uWs6Jhm4nRmX5/Ny9MYSa6kImQczika3gdU2qRg8+hnf182gqsDiXueiSukflw==";
+ url = "https://registry.npmjs.org/@ot-builder/variance/-/variance-1.0.7.tgz";
+ sha512 = "7yHCMLolNIlR4QsXYvNNoSAagSg8niSoXWo/43YSWlsdU6O1/osJhGOPBMA+LcDj1Gl2SLSaQfDr92e3Wk7dRQ==";
};
};
"@parcel/fs-1.11.0" = {
@@ -4855,13 +4891,13 @@ let
sha512 = "uc6FmPEegAZawSHjUMFQwU7EjaDn7zy1iD/KD/wBROL9F4378OES8MKMYHoRAKT61Fk7LxVKZSDR5VespMQiqw==";
};
};
- "@primer/octicons-12.1.0" = {
+ "@primer/octicons-14.1.0" = {
name = "_at_primer_slash_octicons";
packageName = "@primer/octicons";
- version = "12.1.0";
+ version = "14.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@primer/octicons/-/octicons-12.1.0.tgz";
- sha512 = "jayKLMTCx/0zh4fjYmkxdlEgQ8STwevn5S48fkvi/03asITmBkaYAMPrUgO8VNSQkSPHIEuc3oTLXgh+JwH0UQ==";
+ url = "https://registry.npmjs.org/@primer/octicons/-/octicons-14.1.0.tgz";
+ sha512 = "I/gRlM2meKPKXFN/1fxLoigPXvAUsivxRCih7vgeO7o4qrNNsl6Ah85l3UBbFi0t7ttjMde2+bS1A32a1Hu0BA==";
};
};
"@protobufjs/aspromise-1.1.2" = {
@@ -4954,13 +4990,13 @@ let
sha1 = "a777360b5b39a1a2e5106f8e858f2fd2d060c570";
};
};
- "@putdotio/api-client-8.15.3" = {
+ "@putdotio/api-client-8.16.0" = {
name = "_at_putdotio_slash_api-client";
packageName = "@putdotio/api-client";
- version = "8.15.3";
+ version = "8.16.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@putdotio/api-client/-/api-client-8.15.3.tgz";
- sha512 = "Z1MK912OTC+InURygDElVFAbnAdA8x9in+6GSHb/8rzWmp5iDA7PjU85OCOYH8hBfAwKlWINhR372tUUnUHImg==";
+ url = "https://registry.npmjs.org/@putdotio/api-client/-/api-client-8.16.0.tgz";
+ sha512 = "9a00sd5aArb5s1R8MBsHULP3gcRsD9ivokRUCtS3oBf8M53u9XUAx/D79sehhiWbMR20DYxwUFfSoEvM/daq3Q==";
};
};
"@reach/router-1.3.4" = {
@@ -5008,13 +5044,13 @@ let
sha512 = "RB6vWO78v6c+SW/3bZh+XZMr4nGdJKAiPGsBALuUZnLuCiQ7aXCT1AuFHqnfS2gyXbEUEj+kw8p4ux8KdAfs3A==";
};
};
- "@redocly/openapi-core-1.0.0-beta.44" = {
+ "@redocly/openapi-core-1.0.0-beta.48" = {
name = "_at_redocly_slash_openapi-core";
packageName = "@redocly/openapi-core";
- version = "1.0.0-beta.44";
+ version = "1.0.0-beta.48";
src = fetchurl {
- url = "https://registry.npmjs.org/@redocly/openapi-core/-/openapi-core-1.0.0-beta.44.tgz";
- sha512 = "9HNnh1MzvMsLK1liuidFBqWiAsZ2Yg3RY58fcEsy0QruSMdDbn7SoeI1qnXe6O+BkBS+vAP4oVzZDMHCMKGsOQ==";
+ url = "https://registry.npmjs.org/@redocly/openapi-core/-/openapi-core-1.0.0-beta.48.tgz";
+ sha512 = "rlus9qQC4Pkzz2Ljcv+jQjFdKOYSWnsYXWN6zNik9iiiQtMmGEdszsERCbSAYw/CZ5DRCAHMeKrh8f4LBCpx1A==";
};
};
"@redocly/react-dropdown-aria-2.0.11" = {
@@ -5044,6 +5080,15 @@ let
sha512 = "PoMdXCw0ZyvjpCMT5aV4nkL0QywxP29sODQsSGeDpr/oI49Qq9tRtAsb/LbYbDzFlOydVEqHmmZWFtXJEAX9ew==";
};
};
+ "@rollup/plugin-commonjs-18.1.0" = {
+ name = "_at_rollup_slash_plugin-commonjs";
+ packageName = "@rollup/plugin-commonjs";
+ version = "18.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@rollup/plugin-commonjs/-/plugin-commonjs-18.1.0.tgz";
+ sha512 = "h3e6T9rUxVMAQswpDIobfUHn/doMzM9sgkMrsMWCFLmB84PSoC8mV8tOloAJjSRwdqhXBqstlX2BwBpHJvbhxg==";
+ };
+ };
"@rollup/plugin-inject-4.0.2" = {
name = "_at_rollup_slash_plugin-inject";
packageName = "@rollup/plugin-inject";
@@ -5107,13 +5152,13 @@ let
sha512 = "c/qwwcHyafOQuVQJj0IlBjf5yYgBI7YPJ77k4fOJYesb41jio65eaJODRUmfYKhTOFBrIZ66kgvGPlNbjuoRdQ==";
};
};
- "@schematics/angular-11.2.10" = {
+ "@schematics/angular-12.0.2" = {
name = "_at_schematics_slash_angular";
packageName = "@schematics/angular";
- version = "11.2.10";
+ version = "12.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@schematics/angular/-/angular-11.2.10.tgz";
- sha512 = "WcqiUl2HcE5E6HbAFKhFOUeqQEqNL++o6UsKcgk8rQkx5RM7ZkT6uksxiwhfpKzSIqUjwx+xe66fP6pweNZ/yQ==";
+ url = "https://registry.npmjs.org/@schematics/angular/-/angular-12.0.2.tgz";
+ sha512 = "DMUfp7226QY2FkJeBm1xAUUKRX9umVCRhqEcku4Zaig6PylVd9LZFLjZvGKA4Vq2DkYRtClll3z5FIhAOSY3SQ==";
};
};
"@schematics/schematics-0.1102.6" = {
@@ -5125,15 +5170,6 @@ let
sha512 = "x77kbJL/HqR4gx0tbt35VCOGLyMvB7jD/x7eB1njhQRF8E/xynEOk3i+7A5VmK67QP5NJxU8BQKlPkJ55tBDmg==";
};
};
- "@schematics/update-0.1102.10" = {
- name = "_at_schematics_slash_update";
- packageName = "@schematics/update";
- version = "0.1102.10";
- src = fetchurl {
- url = "https://registry.npmjs.org/@schematics/update/-/update-0.1102.10.tgz";
- sha512 = "aU5fUT9ddw3n5ZOzx/x1W4Xo2fz+sDtDnrRdKI0Jip/9HE1PaoKxWT6gB5ouDnKETrvgDOArn68zIM8eOAVarg==";
- };
- };
"@segment/loosely-validate-event-2.0.0" = {
name = "_at_segment_slash_loosely-validate-event";
packageName = "@segment/loosely-validate-event";
@@ -5161,13 +5197,13 @@ let
sha512 = "lOUyRopNTKJYVEU9T6stp2irwlTDsYMmUKBOUjnMcwGveuUfIJqrCOtFLtIPPj3XJlbZy5F68l4KP9rZ8Ipang==";
};
};
- "@serverless/components-3.9.0" = {
+ "@serverless/components-3.10.1" = {
name = "_at_serverless_slash_components";
packageName = "@serverless/components";
- version = "3.9.0";
+ version = "3.10.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@serverless/components/-/components-3.9.0.tgz";
- sha512 = "70RIPd9eW/T6vZ7y4Rn7xVBCqPlN7cPq0NRAkxlT6sa7efgSkVDb+JCtKzST2EJpz7w2V/G+eWZjIbbYw6ueMw==";
+ url = "https://registry.npmjs.org/@serverless/components/-/components-3.10.1.tgz";
+ sha512 = "Kgs9sBcsgxW4l0j8H5Bh8ROV4MmeFEiEwcj8OjFI4MyGj/nNw8dQA5ArpF2COJCgVDLwYVqnRGOCR+tEF0TlnA==";
};
};
"@serverless/core-1.1.2" = {
@@ -5179,13 +5215,13 @@ let
sha512 = "PY7gH+7aQ+MltcUD7SRDuQODJ9Sav9HhFJsgOiyf8IVo7XVD6FxZIsSnpMI6paSkptOB7n+0Jz03gNlEkKetQQ==";
};
};
- "@serverless/enterprise-plugin-4.5.3" = {
- name = "_at_serverless_slash_enterprise-plugin";
- packageName = "@serverless/enterprise-plugin";
- version = "4.5.3";
+ "@serverless/dashboard-plugin-5.1.4" = {
+ name = "_at_serverless_slash_dashboard-plugin";
+ packageName = "@serverless/dashboard-plugin";
+ version = "5.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@serverless/enterprise-plugin/-/enterprise-plugin-4.5.3.tgz";
- sha512 = "/JwlHoBSmxP8bAaWD3dIGePkJU1sLRHhEgvMyXuDo9i9tN5D6kyZypM2GUVNx4MpUR/XPJtCUgCSp5xI4aSsxg==";
+ url = "https://registry.npmjs.org/@serverless/dashboard-plugin/-/dashboard-plugin-5.1.4.tgz";
+ sha512 = "f6uSdUSfZmUhVxLjqwYMNUYi3EShakPQwzipCpVEChcB0AKZG6mhu2NBfTFeSBASvR2l1Mq8tqVgHoTXp9yq4Q==";
};
};
"@serverless/event-mocks-1.1.1" = {
@@ -5206,13 +5242,13 @@ let
sha512 = "8jP72e0POFGEW7HKtDzK0qt1amYtvlB7bYSal8JUCXbeY2qk3xRJZuLWCZBBKRGz4ha4eBNjlz7iniACb9biLg==";
};
};
- "@serverless/platform-client-china-2.1.10" = {
+ "@serverless/platform-client-china-2.1.13" = {
name = "_at_serverless_slash_platform-client-china";
packageName = "@serverless/platform-client-china";
- version = "2.1.10";
+ version = "2.1.13";
src = fetchurl {
- url = "https://registry.npmjs.org/@serverless/platform-client-china/-/platform-client-china-2.1.10.tgz";
- sha512 = "+ckY3WfN+J4gCYKK25VnoZ20b0jVmnb/v9UKG48YTPoS6MWDud6nbAUUQuNbL5UK4dbDFKEVsnFK42XEsBjfkg==";
+ url = "https://registry.npmjs.org/@serverless/platform-client-china/-/platform-client-china-2.1.13.tgz";
+ sha512 = "kQuWjHiBeslZ1SkIFzXRoEi+CCunUEBOyJRU7Zeg5l4vV4U63G8Ax1waMXxoBILgYK5cDG0F/y+UoSAvEhJmZw==";
};
};
"@serverless/template-1.1.4" = {
@@ -5242,22 +5278,31 @@ let
sha512 = "cl5uPaGg72z0sCUpF0zsOhwYYUV72Gxc1FwFfxltO8hSvMeFDvwD7JrNE4kHcIcKRjwPGbSH0fdVPUpErZ8Mog==";
};
};
- "@serverless/utils-china-1.0.15" = {
- name = "_at_serverless_slash_utils-china";
- packageName = "@serverless/utils-china";
- version = "1.0.15";
+ "@serverless/utils-5.2.0" = {
+ name = "_at_serverless_slash_utils";
+ packageName = "@serverless/utils";
+ version = "5.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@serverless/utils-china/-/utils-china-1.0.15.tgz";
- sha512 = "+fSVqyhiITJZ/9wz7fNA6QsJ0XLq3k+UQi8iX7TQNmXdWEtjfslKv2cbnW3A19jbuG2rQ0jzwNShnuLeMuqnSw==";
+ url = "https://registry.npmjs.org/@serverless/utils/-/utils-5.2.0.tgz";
+ sha512 = "QXBZO0W2da0AtROpg8H1c4YWMSl56+nef0Kukd+40Q4jEaY3a0dtpVzvGps3aLFDXer3kWZ3LtlhS5HGXLficw==";
};
};
- "@sideway/address-4.1.1" = {
+ "@serverless/utils-china-1.1.0" = {
+ name = "_at_serverless_slash_utils-china";
+ packageName = "@serverless/utils-china";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@serverless/utils-china/-/utils-china-1.1.0.tgz";
+ sha512 = "4iul4BaS6wi8c4fhRahkxt8IDSGB9swVyK3SpVqP4LJNGJ5UtKvStxa6pMC4OMVWs0LDCaLGlfFqOgBUo3VxRQ==";
+ };
+ };
+ "@sideway/address-4.1.2" = {
name = "_at_sideway_slash_address";
packageName = "@sideway/address";
- version = "4.1.1";
+ version = "4.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@sideway/address/-/address-4.1.1.tgz";
- sha512 = "+I5aaQr3m0OAmMr7RQ3fR9zx55sejEYR2BFJaxL+zT3VM2611X0SHvPWIbAUBZVTn/YzYKbV8gJ2oT/QELknfQ==";
+ url = "https://registry.npmjs.org/@sideway/address/-/address-4.1.2.tgz";
+ sha512 = "idTz8ibqWFrPU8kMirL0CoPH/A29XOzzAzpyN3zQ4kAWnzmNfFmRaoMNN6VI8ske5M73HZyhIaW4OuSFIdM4oA==";
};
};
"@sideway/formula-3.0.0" = {
@@ -5368,13 +5413,13 @@ let
sha512 = "mPZe3gBAV4ZDeYZbEs6WpNZuHHj7Hse9p44z6lrKBcbAMWnvApVOC7zZUpeQsUuWPTOWQRu/QSYElDKNajQ2oA==";
};
};
- "@skorfmann/terraform-cloud-1.10.0" = {
+ "@skorfmann/terraform-cloud-1.10.1" = {
name = "_at_skorfmann_slash_terraform-cloud";
packageName = "@skorfmann/terraform-cloud";
- version = "1.10.0";
+ version = "1.10.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@skorfmann/terraform-cloud/-/terraform-cloud-1.10.0.tgz";
- sha512 = "Yd5WWmmUjFYBpQpsAnAntwQMerilNRpHILNPA7x0EkwHhf+5KTSKYZwzYL/bOY1QfGJX6DTnOSHXIRStHZDUgg==";
+ url = "https://registry.npmjs.org/@skorfmann/terraform-cloud/-/terraform-cloud-1.10.1.tgz";
+ sha512 = "yQpxfH1VbwIcsyRQ8eN8qLJ76pZ4CQ1Ck1SmFtiKE7J790KFwC8o2r1dlTU130M/bv1eb/8gdPY1T3DLj40D8w==";
};
};
"@slack/client-3.16.0" = {
@@ -5413,13 +5458,13 @@ let
sha512 = "ca2JKOnSRzYHJkhOB9gYmdRZHmd02b/uBd/S0D5W+L9nIMS7sUBV5jfhKwVgrYPIpVNIc0XCI9rxK4TfkQRpiA==";
};
};
- "@snyk/code-client-3.4.1" = {
+ "@snyk/code-client-3.7.0" = {
name = "_at_snyk_slash_code-client";
packageName = "@snyk/code-client";
- version = "3.4.1";
+ version = "3.7.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@snyk/code-client/-/code-client-3.4.1.tgz";
- sha512 = "XJ7tUdX1iQyzN/BmHac7p+Oyw1SyTcqSkCNExwBJxyQdlnUAKK6QKIWLXS81tTpZ79FgCdT+0fdS0AjsyS99eA==";
+ url = "https://registry.npmjs.org/@snyk/code-client/-/code-client-3.7.0.tgz";
+ sha512 = "a1uGkSpO4Pr9UucZUVfUR5PVcl1fEA4sXbdZPyzs1AABE7JhMY6FnBYKgQFz2qIkPAPy4M0m18bnGpHq5ZdWNg==";
};
};
"@snyk/composer-lockfile-parser-1.4.1" = {
@@ -5440,13 +5485,13 @@ let
sha512 = "Oup9nAvb558jdNvbZah/vaBtOtCcizkdeS+OBQeBIqIffyer4mc4juSn4b1SFjCpu7AG7piio8Lj8k1B9ps6Tg==";
};
};
- "@snyk/docker-registry-v2-client-1.13.9" = {
+ "@snyk/docker-registry-v2-client-2.1.3" = {
name = "_at_snyk_slash_docker-registry-v2-client";
packageName = "@snyk/docker-registry-v2-client";
- version = "1.13.9";
+ version = "2.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@snyk/docker-registry-v2-client/-/docker-registry-v2-client-1.13.9.tgz";
- sha512 = "DIFLEhr8m1GrAwsLGInJmpcQMacjuhf3jcbpQTR+LeMvZA9IuKq+B7kqw2O2FzMiHMZmUb5z+tV+BR7+IUHkFQ==";
+ url = "https://registry.npmjs.org/@snyk/docker-registry-v2-client/-/docker-registry-v2-client-2.1.3.tgz";
+ sha512 = "nbWgOhHFc2GXQsweDxhulhYtLptsBxoXMSI3Py7BOt8ITgXK0HUors2+mzGbwpbvnwMAYjwhv8PLOVVVsa8PXQ==";
};
};
"@snyk/fast-glob-3.2.6-patch" = {
@@ -5458,13 +5503,22 @@ let
sha512 = "E/Pfdze/WFfxwyuTFcfhQN1SwyUsc43yuCoW63RVBCaxTD6OzhVD2Pvc/Sy7BjiWUfmelzyKkIBpoow8zZX7Zg==";
};
};
- "@snyk/fix-1.554.0" = {
+ "@snyk/fix-1.601.0" = {
name = "_at_snyk_slash_fix";
packageName = "@snyk/fix";
- version = "1.554.0";
+ version = "1.601.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@snyk/fix/-/fix-1.554.0.tgz";
- sha512 = "q2eRVStgspPeI2wZ2EQGLpiWZMRg7o+4tsCk6m/kHZgQGDN4Bb7L3xslFW3OgF0+ZksYSaHl2cW2HmGiLRaYcA==";
+ url = "https://registry.npmjs.org/@snyk/fix/-/fix-1.601.0.tgz";
+ sha512 = "0Fz0nC547Qkg0FGpmvzDIPrrXvisQN6c07JM0RReM8Xb47p1o51O/MPsWdHIFJasIT5HkshyOaV5rjGQmfwHtQ==";
+ };
+ };
+ "@snyk/fix-pipenv-pipfile-0.3.5" = {
+ name = "_at_snyk_slash_fix-pipenv-pipfile";
+ packageName = "@snyk/fix-pipenv-pipfile";
+ version = "0.3.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@snyk/fix-pipenv-pipfile/-/fix-pipenv-pipfile-0.3.5.tgz";
+ sha512 = "Kqe9wqUrSSGB0+QFrJjCy5ub7bNg10F5I/avJK95RY/2g9cXpQnkdkTexRmVdOl+IF5z3JBXRjBnIQb6buvp6w==";
};
};
"@snyk/gemfile-1.2.0" = {
@@ -5503,22 +5557,22 @@ let
sha512 = "aWiQSOacH2lOpJ1ard9ErABcH4tdJogdr+mg1U67iZJOPO9n2gFgAwz1TQJDyPkv4/A5mh4hT2rg03Uq+KBn2Q==";
};
};
- "@snyk/java-call-graph-builder-1.19.1" = {
+ "@snyk/java-call-graph-builder-1.21.0" = {
name = "_at_snyk_slash_java-call-graph-builder";
packageName = "@snyk/java-call-graph-builder";
- version = "1.19.1";
+ version = "1.21.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@snyk/java-call-graph-builder/-/java-call-graph-builder-1.19.1.tgz";
- sha512 = "bxjHef5Qm3pNc+BrFlxMudmSSbOjA395ZqBddc+dvsFHoHeyNbiY56Y1JSGUlTgjRM+PKNPBiCuELTSMaROeZg==";
+ url = "https://registry.npmjs.org/@snyk/java-call-graph-builder/-/java-call-graph-builder-1.21.0.tgz";
+ sha512 = "i0c4N0+pYjpXEgqAkFniM3Q9YANvy+RtbbkQMPIvdEw41+XJISfEHzZ968ZmGWcoi480cgo5t9oxZEadFuHzyg==";
};
};
- "@snyk/java-call-graph-builder-1.20.0" = {
+ "@snyk/java-call-graph-builder-1.23.0" = {
name = "_at_snyk_slash_java-call-graph-builder";
packageName = "@snyk/java-call-graph-builder";
- version = "1.20.0";
+ version = "1.23.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@snyk/java-call-graph-builder/-/java-call-graph-builder-1.20.0.tgz";
- sha512 = "NX8bpIu7oG5cuSSm6WvtxqcCuJs2gRjtKhtuSeF1p5TYXyESs3FXQ0nHjfY90LiyTTc+PW/UBq6SKbBA6bCBww==";
+ url = "https://registry.npmjs.org/@snyk/java-call-graph-builder/-/java-call-graph-builder-1.23.0.tgz";
+ sha512 = "Go/UV33/R0SW10nvshrs/s8GjY2mnbJaRV4Xkj4zGrwpK80lL30th6LDpXDKEdXPZ66EbYGS1Q9gGlL7GzOdeA==";
};
};
"@snyk/mix-parser-1.3.2" = {
@@ -5548,13 +5602,13 @@ let
sha512 = "WHhnwyoGOhjFOjBXqUfszD84SErrtjHjium/4xFbqKpEE+yuwxs8OwV/S29BtxhYiGtjpD1azv5QtH30VUMl0A==";
};
};
- "@snyk/snyk-docker-pull-3.2.3" = {
+ "@snyk/snyk-docker-pull-3.2.5" = {
name = "_at_snyk_slash_snyk-docker-pull";
packageName = "@snyk/snyk-docker-pull";
- version = "3.2.3";
+ version = "3.2.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@snyk/snyk-docker-pull/-/snyk-docker-pull-3.2.3.tgz";
- sha512 = "hiFiSmWGLc2tOI7FfgIhVdFzO2f69im8O6p3OV4xEZ/Ss1l58vwtqudItoswsk7wj/azRlgfBW8wGu2MjoudQg==";
+ url = "https://registry.npmjs.org/@snyk/snyk-docker-pull/-/snyk-docker-pull-3.2.5.tgz";
+ sha512 = "vElzqQs894u8Tj6LluGrj97/v1jlvi0DToaU5YBlxEKGaY5IgwSUcuqEW8r4h87fPuY2h4S9/zWqKPShwipvjw==";
};
};
"@snyk/snyk-hex-plugin-1.1.4" = {
@@ -5710,139 +5764,184 @@ let
sha512 = "AmyMQndtxMsM59eDeA0gGiw8T2LzNvDhx/xl+ygFXXrsw+yb/mit73ndHkiHKcRA1EpNHTyD1PN9ATxghzplfg==";
};
};
- "@textlint/ast-node-types-4.4.2" = {
+ "@tencent-sdk/cls-0.2.1" = {
+ name = "_at_tencent-sdk_slash_cls";
+ packageName = "@tencent-sdk/cls";
+ version = "0.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@tencent-sdk/cls/-/cls-0.2.1.tgz";
+ sha512 = "nSEPLAQyXf694XqoXi/OnWjfaJNPoo+JaPt81Kpy1QogOSZdEqEebgGj/ROs8kPjRa3kf+6+0s8MSQRtJBOOyQ==";
+ };
+ };
+ "@tencent-sdk/common-0.1.0" = {
+ name = "_at_tencent-sdk_slash_common";
+ packageName = "@tencent-sdk/common";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@tencent-sdk/common/-/common-0.1.0.tgz";
+ sha512 = "WHVGulaFv/CLwSqYC5501FCMNclu7B7nH1OminksjV2HSonIvx3o3Pms4+2/2Lse/sB5RCmPiiitV7g09b4mWw==";
+ };
+ };
+ "@tencent-sdk/faas-0.1.5" = {
+ name = "_at_tencent-sdk_slash_faas";
+ packageName = "@tencent-sdk/faas";
+ version = "0.1.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@tencent-sdk/faas/-/faas-0.1.5.tgz";
+ sha512 = "6wEkJCm1rN9LOgH/BZHW6ajJpYZQuf1qwfW+tGTNkczW0RepWASznS6MCzWC9HX09oosVpg8sGCGtcgWQSP1Qg==";
+ };
+ };
+ "@textlint/ast-node-types-12.0.0" = {
name = "_at_textlint_slash_ast-node-types";
packageName = "@textlint/ast-node-types";
- version = "4.4.2";
+ version = "12.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@textlint/ast-node-types/-/ast-node-types-4.4.2.tgz";
- sha512 = "m5brKbI7UY/Q8sbIZ7z1KB8ls04nRILshz5fPQ4EZ04jL19qrrUHJR8A6nK3vJ/GelkDWl4I0VDYSAjLEFQV8g==";
+ url = "https://registry.npmjs.org/@textlint/ast-node-types/-/ast-node-types-12.0.0.tgz";
+ sha512 = "qUjmlpz1vR3AStBA9RPDCVT0/pGtePvBJ5Vb/0PzTrnr04iFktG6P6B1VOmgTh8J9Kl/FonQFo3A9M1Q3UH+JA==";
};
};
- "@textlint/ast-tester-2.3.4" = {
+ "@textlint/ast-node-types-4.4.3" = {
+ name = "_at_textlint_slash_ast-node-types";
+ packageName = "@textlint/ast-node-types";
+ version = "4.4.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@textlint/ast-node-types/-/ast-node-types-4.4.3.tgz";
+ sha512 = "qi2jjgO6Tn3KNPGnm6B7p6QTEPvY95NFsIAaJuwbulur8iJUEenp1OnoUfiDaC/g2WPPEFkcfXpmnu8XEMFo2A==";
+ };
+ };
+ "@textlint/ast-tester-12.0.0" = {
name = "_at_textlint_slash_ast-tester";
packageName = "@textlint/ast-tester";
- version = "2.3.4";
+ version = "12.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@textlint/ast-tester/-/ast-tester-2.3.4.tgz";
- sha512 = "2gIsnJ1Dmr5jjF+u/vusNRqk2bJi0WwwbjP9WV/op51DhDTi7BUNjVSiZtcP9NVxidvs51XNEg+EMTRoKP3Msg==";
+ url = "https://registry.npmjs.org/@textlint/ast-tester/-/ast-tester-12.0.0.tgz";
+ sha512 = "mcAqaOJnAhay8QtDC/na5S72XPxmqGCntOwcLwuSjEmPGAIuLC3GsumLQo4nWSQ2LGnWd6CwLDZT4eBlRWetNA==";
};
};
- "@textlint/ast-traverse-2.3.4" = {
+ "@textlint/ast-traverse-12.0.0" = {
name = "_at_textlint_slash_ast-traverse";
packageName = "@textlint/ast-traverse";
- version = "2.3.4";
+ version = "12.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@textlint/ast-traverse/-/ast-traverse-2.3.4.tgz";
- sha512 = "NcjPXCvP8r4D2/azeQhwjPvh2+099I9RRBUrg6IpMfTW4IUUJb4BwZOPgjW+XRIVc71Dhgm82VSIagDL90FYcg==";
+ url = "https://registry.npmjs.org/@textlint/ast-traverse/-/ast-traverse-12.0.0.tgz";
+ sha512 = "Mu0il8qWS9YkzVAqwmrTd+ga5S0LJVWOGjE6d9yADf5xObUDFk4g8ITlfEOiicpX5bTUxT4e1bORxPveCJ8iKQ==";
};
};
- "@textlint/feature-flag-3.3.4" = {
+ "@textlint/feature-flag-12.0.0" = {
name = "_at_textlint_slash_feature-flag";
packageName = "@textlint/feature-flag";
- version = "3.3.4";
+ version = "12.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@textlint/feature-flag/-/feature-flag-3.3.4.tgz";
- sha512 = "ULAqdD2y1sPAhbkaMjS2fltrZYCNQGsNDv/NQWFsCmDpQ1R8kxoUaTiXpebTM+nVuyvU5GfdkxhHyMarPIjmYw==";
+ url = "https://registry.npmjs.org/@textlint/feature-flag/-/feature-flag-12.0.0.tgz";
+ sha512 = "xgK6tsf1Gg6xn8/X0HN4LXzSkJYgmByAvzItUPlI0dzvA4HhhT4gkBeshDCuXsHLc970nYgzy1TYHpyscu7PTw==";
};
};
- "@textlint/fixer-formatter-3.3.4" = {
+ "@textlint/fixer-formatter-12.0.0" = {
name = "_at_textlint_slash_fixer-formatter";
packageName = "@textlint/fixer-formatter";
- version = "3.3.4";
+ version = "12.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@textlint/fixer-formatter/-/fixer-formatter-3.3.4.tgz";
- sha512 = "H4i+N+uN7EiI5vRnfRIccFc5yekNHnO8795fiOK2TZPb6SzY3iwLOGZ2rDKvgu7ZKdyGW945w3T0elUF3Fkr5A==";
+ url = "https://registry.npmjs.org/@textlint/fixer-formatter/-/fixer-formatter-12.0.0.tgz";
+ sha512 = "y2PWue8PANhSF9cXwksxmjDs/n9exOq4daNMhN7VvJk9yrXL+nSuAoyDXjyp09gX4Nfwa/xsOrQRTDVRbizgcw==";
};
};
- "@textlint/kernel-3.4.4" = {
+ "@textlint/kernel-12.0.0" = {
name = "_at_textlint_slash_kernel";
packageName = "@textlint/kernel";
- version = "3.4.4";
+ version = "12.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@textlint/kernel/-/kernel-3.4.4.tgz";
- sha512 = "ro9TPnE16C6gtKkY3aOjTs8ZfzAxdXLCV9JD4BuV5P+xBiiu9NdiE2Hwm3LyEGQjMxaKnXjbm/DTCAxA4gz0Dg==";
+ url = "https://registry.npmjs.org/@textlint/kernel/-/kernel-12.0.0.tgz";
+ sha512 = "8UXHKhSAgn1aexPjyQE1CRVivCfSz+aFuNrktT9+JOMM3XsSd4JFcMKDhPA1utiiRR+4yDVH5be38vuuJOG9cQ==";
};
};
- "@textlint/linter-formatter-3.3.4" = {
+ "@textlint/linter-formatter-12.0.0" = {
name = "_at_textlint_slash_linter-formatter";
packageName = "@textlint/linter-formatter";
- version = "3.3.4";
+ version = "12.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@textlint/linter-formatter/-/linter-formatter-3.3.4.tgz";
- sha512 = "k1lyvR+w7ctwr5dWhMVRTKk19GH99BAO2dLk8ZS0ZcYyKqKAKu6Iyb1cWEg/u3dT3KFbWwoegnAelfz5828SHQ==";
+ url = "https://registry.npmjs.org/@textlint/linter-formatter/-/linter-formatter-12.0.0.tgz";
+ sha512 = "jRRZluLCBXcP8VlA90N8DJOPy890j7rVOVSuyyFn0ypuUK88X2qH9XoEd9yYbo/HmH9ky2h+TeA8CJtOAIjU2g==";
};
};
- "@textlint/markdown-to-ast-6.3.4" = {
+ "@textlint/markdown-to-ast-12.0.0" = {
name = "_at_textlint_slash_markdown-to-ast";
packageName = "@textlint/markdown-to-ast";
- version = "6.3.4";
+ version = "12.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@textlint/markdown-to-ast/-/markdown-to-ast-6.3.4.tgz";
- sha512 = "LLScbDRXov1l4U4OCLJ5clu9eWNonBG+rhuArwYAHpf0hwIoNoETfAQvrNtXZG/NZ96fdWv4PLtaN6dA4ldRdQ==";
+ url = "https://registry.npmjs.org/@textlint/markdown-to-ast/-/markdown-to-ast-12.0.0.tgz";
+ sha512 = "XaiuePJVDGVIwdjIiITdbdRXZDFnAFY/so3Rb8qAId/Qq9fKPUvgefMkdIG73wUC7LzhrAzH6/CuEO+f77HR5g==";
};
};
- "@textlint/module-interop-1.2.4" = {
+ "@textlint/module-interop-12.0.0" = {
name = "_at_textlint_slash_module-interop";
packageName = "@textlint/module-interop";
- version = "1.2.4";
+ version = "12.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@textlint/module-interop/-/module-interop-1.2.4.tgz";
- sha512 = "/wUKvDbBEujrhpcuD7Et4Mcicm3SG2oAe/tyMruLxSJ86umGxd34dEcHRON8fJzou9qyt0gFoczcypd4k3hJow==";
+ url = "https://registry.npmjs.org/@textlint/module-interop/-/module-interop-12.0.0.tgz";
+ sha512 = "WSuwd3pd2xYDCYqpA6NE8FwMZS4WJ2gZmsSCXBpOh3qJ/pHbmrfEaiwOpGQJA4RfXVp8Fy5KfaAQJIr+wox98A==";
};
};
- "@textlint/source-code-fixer-3.4.4" = {
+ "@textlint/source-code-fixer-12.0.0" = {
name = "_at_textlint_slash_source-code-fixer";
packageName = "@textlint/source-code-fixer";
- version = "3.4.4";
+ version = "12.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@textlint/source-code-fixer/-/source-code-fixer-3.4.4.tgz";
- sha512 = "GDHVin2EJ9PGJ33VMGlqtPcvUlY+pkTbaWs4jWv8oBaEK8UUBzS5ZpEc4xi7Xp5vIXnVsCSLKNC6bgvR9X/AoQ==";
+ url = "https://registry.npmjs.org/@textlint/source-code-fixer/-/source-code-fixer-12.0.0.tgz";
+ sha512 = "+XMJ7unzezEqKh8euWIw1QUprvv7IJzOfV0UPVbkThX2d3ZOzBmK+AzlYbqzCwZ1jkV0QYaRqaptBE+iaaQjNg==";
};
};
- "@textlint/text-to-ast-3.3.4" = {
+ "@textlint/text-to-ast-12.0.0" = {
name = "_at_textlint_slash_text-to-ast";
packageName = "@textlint/text-to-ast";
- version = "3.3.4";
+ version = "12.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@textlint/text-to-ast/-/text-to-ast-3.3.4.tgz";
- sha512 = "oDwGNQCAo7ROnHqaksPEogf8fxXGU3Z61C6NEv0n9vEWEkUX9oUVX4c9kh5UieZL5nN/xIdzVc3TrXywkkOK3g==";
+ url = "https://registry.npmjs.org/@textlint/text-to-ast/-/text-to-ast-12.0.0.tgz";
+ sha512 = "j73hF6BiwdZurNdzHfOtP5j3v+nTWaTP7RtJf5wpfQBigT4RA+EqmKxUd/OpO+gt/Xy1NkpceLFNllZGRLEvkw==";
};
};
- "@textlint/textlint-plugin-markdown-5.3.4" = {
+ "@textlint/textlint-plugin-markdown-12.0.0" = {
name = "_at_textlint_slash_textlint-plugin-markdown";
packageName = "@textlint/textlint-plugin-markdown";
- version = "5.3.4";
+ version = "12.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-5.3.4.tgz";
- sha512 = "g8KKuwhzzlRjvKrpq3SbGc+JJMAJoy5Xp0Ibvq7QKgNVxwN/f5WtmrJc8CdgFG7++jgtkDPlofz0c9xG63xKwQ==";
+ url = "https://registry.npmjs.org/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-12.0.0.tgz";
+ sha512 = "eo9deECYMkytoiJUqDxEwzugL8sLcCFUbeCpzV5IuIRwQBh85Hds3lp/mtW1B3Q/BxcSa08im2HAa9uRdcoe4Q==";
};
};
- "@textlint/textlint-plugin-text-4.3.4" = {
+ "@textlint/textlint-plugin-text-12.0.0" = {
name = "_at_textlint_slash_textlint-plugin-text";
packageName = "@textlint/textlint-plugin-text";
- version = "4.3.4";
+ version = "12.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@textlint/textlint-plugin-text/-/textlint-plugin-text-4.3.4.tgz";
- sha512 = "ZtctKFR8V9mIZAMibS97xPWlt2lViizIRAy4oDaKCnxAwJ0uAjxm/OlHHdaFwNydGaEDtN60mcmarDqOOAZIiA==";
+ url = "https://registry.npmjs.org/@textlint/textlint-plugin-text/-/textlint-plugin-text-12.0.0.tgz";
+ sha512 = "brtexdqu7yvFLstYvVlotMZz5T7SwKfnFnV9Sm+uhg/d3Ddea9exzpiWWcXfRAhfOBd12mmEGM6gwAuSwzrhqg==";
};
};
- "@textlint/types-1.5.4" = {
+ "@textlint/types-1.5.5" = {
name = "_at_textlint_slash_types";
packageName = "@textlint/types";
- version = "1.5.4";
+ version = "1.5.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@textlint/types/-/types-1.5.4.tgz";
- sha512 = "bhSrOjW8AFSa/xf6lYZ2akE0j+4O/WEAA2S/R8RrjNMkA5Az2j57mxPNpqMhEeyHDkpzN/coIlqUwgYvcJHv1A==";
+ url = "https://registry.npmjs.org/@textlint/types/-/types-1.5.5.tgz";
+ sha512 = "80P6fcqgsG9bP6JgR6W/E/oIx+71pplaicYCvvB4vMIeGk0OnWls4Q21kCpDYmq/C/ABtZ/Gy/Ov/8ExQPeQ7A==";
};
};
- "@textlint/utils-1.2.4" = {
+ "@textlint/types-12.0.0" = {
+ name = "_at_textlint_slash_types";
+ packageName = "@textlint/types";
+ version = "12.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@textlint/types/-/types-12.0.0.tgz";
+ sha512 = "3sB22cGtN9nPViDrW7FJxWkDrpGtyJbvNsvZqzX83HJbAiOmzzeHDkRRLvz9tax76lcdjlNk+2rHY3iSnjhEag==";
+ };
+ };
+ "@textlint/utils-12.0.0" = {
name = "_at_textlint_slash_utils";
packageName = "@textlint/utils";
- version = "1.2.4";
+ version = "12.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@textlint/utils/-/utils-1.2.4.tgz";
- sha512 = "FREWc8n6bJFsKehtUlHPtbqnXULWhdnlazqWiHMjiBtcxUfD+1kY3P7PNGbChdzeZGmwBkgFQyGkok8bAGnZOw==";
+ url = "https://registry.npmjs.org/@textlint/utils/-/utils-12.0.0.tgz";
+ sha512 = "bnIr17iouc4MtVR+r7v8mBasNn3ZsQpfTLTi4RelrZJdICHMBUMOWRX70cVRV/xJck/nfY9igt325qI0y2ELoQ==";
};
};
"@tokenizer/token-0.1.1" = {
@@ -5899,15 +5998,6 @@ let
sha512 = "jOdnI/3qTpHABjM5cx1Hc0sKsPoYCp+DP/GJRGtDlPd7fiV9oXGGIcjW/ZOxLIvjGz8MA+uMZI9metHlgqbgwQ==";
};
};
- "@types/anymatch-1.3.1" = {
- name = "_at_types_slash_anymatch";
- packageName = "@types/anymatch";
- version = "1.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@types/anymatch/-/anymatch-1.3.1.tgz";
- sha512 = "/+CRPXpBDpo2RK9C68N3b2cOvO0Cf5B9aPijHsoDQTHivnGSObdOF2BRQOYjojWTDy6nQvMjmqRXIxH55VjxxA==";
- };
- };
"@types/archiver-5.1.0" = {
name = "_at_types_slash_archiver";
packageName = "@types/archiver";
@@ -5998,15 +6088,6 @@ let
sha512 = "W98JrE0j2K78swW4ukqMleo8R7h/pFETjM2DQ90MF6XK2i4LO4W3gQ71Lt4w3bfm2EvVSyWHplECvB5sK22yFQ==";
};
};
- "@types/braces-3.0.0" = {
- name = "_at_types_slash_braces";
- packageName = "@types/braces";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@types/braces/-/braces-3.0.0.tgz";
- sha512 = "TbH79tcyi9FHwbyboOKeRachRq63mSuWYXOflsNO9ZyE5ClQ/JaozNKl+aWUq87qPNsXasXxi2AbgfwIJ+8GQw==";
- };
- };
"@types/cacheable-request-6.0.1" = {
name = "_at_types_slash_cacheable-request";
packageName = "@types/cacheable-request";
@@ -6178,13 +6259,13 @@ let
sha512 = "DLVpLEGTEZGBXOYoYoagHSxXkDHONc0fZouF2ayw7Q18aRu1Afwci+1CFKvPpouCUOVWP+dmCaAWpQjswe7kpg==";
};
};
- "@types/eslint-7.2.10" = {
+ "@types/eslint-7.2.12" = {
name = "_at_types_slash_eslint";
packageName = "@types/eslint";
- version = "7.2.10";
+ version = "7.2.12";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/eslint/-/eslint-7.2.10.tgz";
- sha512 = "kUEPnMKrqbtpCq/KTaGFFKAcz6Ethm2EjCoKIDaCmfRBWLbFuTcOJfTlorwbnboXBzahqWLgUp1BQeKHiJzPUQ==";
+ url = "https://registry.npmjs.org/@types/eslint/-/eslint-7.2.12.tgz";
+ sha512 = "HjikV/jX6e0Pg4DcB+rtOBKSrG6w5IaxWpmi3efL/eLxMz5lZTK+W1DKERrX5a+mNzL78axfsDNXu7JHFP4uLg==";
};
};
"@types/eslint-scope-3.7.0" = {
@@ -6232,6 +6313,15 @@ let
sha512 = "c5ciR06jK8u9BstrmJyO97m+klJrrhCf9u3rLu3DEAJBirxRqSCvDQoYKmxuYwQI5SZChAWu+tq9oVlGRuzPAg==";
};
};
+ "@types/expect-1.20.4" = {
+ name = "_at_types_slash_expect";
+ packageName = "@types/expect";
+ version = "1.20.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/expect/-/expect-1.20.4.tgz";
+ sha512 = "Q5Vn3yjTDyCMV50TB6VRIbQNxSE4OmZR86VSbGaNpfUolm0iePBB4KdEEHmxoY5sT2+2DIvXW0rvMDP2nHZ4Mg==";
+ };
+ };
"@types/express-4.17.11" = {
name = "_at_types_slash_express";
packageName = "@types/express";
@@ -6259,6 +6349,15 @@ let
sha512 = "DJOSHzX7pCiSElWaGR8kCprwibCB/3yW6vcT8VG3P0SJjnv19gnWG/AZMfM60Xj/YJIp/YCaDHyvzsFVeniARA==";
};
};
+ "@types/express-serve-static-core-4.17.20" = {
+ name = "_at_types_slash_express-serve-static-core";
+ packageName = "@types/express-serve-static-core";
+ version = "4.17.20";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.20.tgz";
+ sha512 = "8qqFN4W53IEWa9bdmuVrUcVkFemQWnt5DKPQ/oa8xKDYgtjCr2OO6NX5TIK49NLFr3mPYU2cLh92DQquC3oWWQ==";
+ };
+ };
"@types/fancy-log-1.3.0" = {
name = "_at_types_slash_fancy-log";
packageName = "@types/fancy-log";
@@ -6268,13 +6367,13 @@ let
sha512 = "mQjDxyOM1Cpocd+vm1kZBP7smwKZ4TNokFeds9LV7OZibmPJFEzY3+xZMrKfUdNT71lv8GoCPD6upKwHxubClw==";
};
};
- "@types/fast-json-stable-stringify-2.0.0" = {
+ "@types/fast-json-stable-stringify-2.1.0" = {
name = "_at_types_slash_fast-json-stable-stringify";
packageName = "@types/fast-json-stable-stringify";
- version = "2.0.0";
+ version = "2.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz";
- sha512 = "mky/O83TXmGY39P1H9YbUpjV6l6voRYlufqfFCvel8l1phuy8HRjdWc1rrPuN53ITBJlbyMSV6z3niOySO5pgQ==";
+ url = "https://registry.npmjs.org/@types/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz";
+ sha512 = "IyNhGHu71jH1jCXTHmafuoAAdsbBON3kDh7u/UUhLmjYgN5TYB54e1R8ckTCiIevl2UuZaCsi9XRxineY5yUjw==";
};
};
"@types/flat-cache-2.0.0" = {
@@ -6385,13 +6484,13 @@ let
sha512 = "2aoSC4UUbHDj2uCsCxcG/vRMXey/m17bC7UwitVm5hn22nI8O8Y9iDpA76Orc+DWkQ4zZrOKEshCqR/jSuXAHA==";
};
};
- "@types/http-proxy-1.17.5" = {
+ "@types/http-proxy-1.17.6" = {
name = "_at_types_slash_http-proxy";
packageName = "@types/http-proxy";
- version = "1.17.5";
+ version = "1.17.6";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.5.tgz";
- sha512 = "GNkDE7bTv6Sf8JbV2GksknKOsk7OznNYHSdrtvPJXO0qJ9odZig6IZKUi5RFGi6d1bf6dgIAe4uXi3DBc7069Q==";
+ url = "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.6.tgz";
+ sha512 = "+qsjqR75S/ib0ig0R9WN+CDoZeOBU6F2XLewgC4KVgdXiNHiKKHFEMRHOrs5PbYE97D5vataw5wPj4KLYfUkuQ==";
};
};
"@types/inquirer-6.5.0" = {
@@ -6520,13 +6619,13 @@ let
sha512 = "MPtoySlAZQ37VoLaPcTHCu1RWJ4llDkULYZIzOYxlhxBqYPB0RsRlmMU0R6tahtFe27mIdkHV+551ZWV4PLmVw==";
};
};
- "@types/koa-2.13.1" = {
+ "@types/koa-2.13.2" = {
name = "_at_types_slash_koa";
packageName = "@types/koa";
- version = "2.13.1";
+ version = "2.13.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/koa/-/koa-2.13.1.tgz";
- sha512 = "Qbno7FWom9nNqu0yHZ6A0+RWt4mrYBhw3wpBAQ3+IuzGcLlfeYkzZrnMq5wsxulN2np8M4KKeUpTodsOsSad5Q==";
+ url = "https://registry.npmjs.org/@types/koa/-/koa-2.13.2.tgz";
+ sha512 = "MHKUNSaw940A8h4tRo+ccDR5SxCkT+OKq1QS5ZmvgB64hO2wsUhb5yvFa464uqTH+R/A/SzxneIfOjiQ6EpBGA==";
};
};
"@types/koa-compose-3.2.5" = {
@@ -6547,13 +6646,13 @@ let
sha512 = "EP6O3Jkr7bXvZZSZYlsgt5DIjiGr0dXP1/jVEwVLTFgg0d+3lWVQkRavYVQszV7dYUwvg0B8R0MBDpcmXg7XIA==";
};
};
- "@types/lodash-4.14.168" = {
+ "@types/lodash-4.14.170" = {
name = "_at_types_slash_lodash";
packageName = "@types/lodash";
- version = "4.14.168";
+ version = "4.14.170";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.168.tgz";
- sha512 = "oVfRvqHV/V6D1yifJbVRU3TMp8OT6o6BG+U9MkwuJ3U8/CsDHvalRpsxBqivn71ztOFZBTfJMvETbqHiaNSj7Q==";
+ url = "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.170.tgz";
+ sha512 = "bpcvu/MKHHeYX+qeEN8GE7DIravODWdACVA1ctevD8CN24RhPZIKMn9ntfAsrvLfSX3cR5RrBKAbYm9bGs0A+Q==";
};
};
"@types/lodash.chunk-4.2.6" = {
@@ -6610,15 +6709,6 @@ let
sha512 = "SXPBMnFVQg1s00dlMCc/jCdvPqdE4mXaMMCeRlxLDmTAEoegHT53xKtkDnzDTOcmMHUfcjyf36/YYZ6SxRdnsw==";
};
};
- "@types/micromatch-4.0.1" = {
- name = "_at_types_slash_micromatch";
- packageName = "@types/micromatch";
- version = "4.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@types/micromatch/-/micromatch-4.0.1.tgz";
- sha512 = "my6fLBvpY70KattTNzYOK6KU1oR1+UCz9ug/JbcF5UrEmeCt9P7DV2t7L8+t18mMPINqGQCE4O8PLOPbI84gxw==";
- };
- };
"@types/mime-1.3.2" = {
name = "_at_types_slash_mime";
packageName = "@types/mime";
@@ -6709,6 +6799,15 @@ let
sha512 = "wdfkiKBBEMTODNbuF3J+qDDSqJxt50yB9pgDiTcFew7f97Gcc7/sM4HR66ofGgpJPOALWOqKAch4gPyqEXSkeQ==";
};
};
+ "@types/multimatch-4.0.0" = {
+ name = "_at_types_slash_multimatch";
+ packageName = "@types/multimatch";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/multimatch/-/multimatch-4.0.0.tgz";
+ sha512 = "xS26gtqY5QASmfU/6jb5vj7F0D0SctgRGtwXsKSNng1knk/OewjISlkMwGonkMCbZCqSoW3s6nL0sAtTlzbL/g==";
+ };
+ };
"@types/mysql-2.15.15" = {
name = "_at_types_slash_mysql";
packageName = "@types/mysql";
@@ -6727,13 +6826,13 @@ let
sha512 = "fh+pAqt4xRzPfqA6eh3Z2y6fyZavRIumvjhaCL753+TVkGKGhpPeyrJG2JftD0T9q4GF00KjefsQ+PQNDdWQaQ==";
};
};
- "@types/node-10.17.58" = {
+ "@types/node-10.17.60" = {
name = "_at_types_slash_node";
packageName = "@types/node";
- version = "10.17.58";
+ version = "10.17.60";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-10.17.58.tgz";
- sha512 = "Dn5RBxLohjdHFj17dVVw3rtrZAeXeWg+LQfvxDIW/fdPkSiuQk7h3frKMYtsQhtIW42wkErDcy9UMVxhGW4O7w==";
+ url = "https://registry.npmjs.org/@types/node/-/node-10.17.60.tgz";
+ sha512 = "F0KIgDJfy2nA3zMLmWGKxcH2ZVEtCZXHHdOQs2gSaQ27+lNeEfGxzkIw90aXswATX7AZ33tahPbzy6KAfUreVw==";
};
};
"@types/node-12.12.70" = {
@@ -6745,13 +6844,13 @@ let
sha512 = "i5y7HTbvhonZQE+GnUM2rz1Bi8QkzxdQmEv1LKOv4nWyaQk/gdeiTApuQR3PDJHX7WomAbpx2wlWSEpxXGZ/UQ==";
};
};
- "@types/node-13.13.50" = {
+ "@types/node-13.13.52" = {
name = "_at_types_slash_node";
packageName = "@types/node";
- version = "13.13.50";
+ version = "13.13.52";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-13.13.50.tgz";
- sha512 = "y7kkh+hX/0jZNxMyBR/6asG0QMSaPSzgeVK63dhWHl4QAXCQB8lExXmzLL6SzmOgKHydtawpMnNhlDbv7DXPEA==";
+ url = "https://registry.npmjs.org/@types/node/-/node-13.13.52.tgz";
+ sha512 = "s3nugnZumCC//n4moGGe6tkNMyYEdaDBitVjwPxXmR5lnMG5dHePinH2EdxkG3Rh1ghFHHixAG4NJhpJW1rthQ==";
};
};
"@types/node-14.11.1" = {
@@ -6781,13 +6880,31 @@ let
sha512 = "XYmBiy+ohOR4Lh5jE379fV2IU+6Jn4g5qASinhitfyO71b/sCo6MKsMLF5tc7Zf2CE8hViVQyYSobJNke8OvUw==";
};
};
- "@types/node-14.14.41" = {
+ "@types/node-14.17.1" = {
name = "_at_types_slash_node";
packageName = "@types/node";
- version = "14.14.41";
+ version = "14.17.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-14.14.41.tgz";
- sha512 = "dueRKfaJL4RTtSa7bWeTK1M+VH+Gns73oCgzvYfHZywRCoPSd8EkXBL0mZ9unPTveBn+D9phZBaxuzpwjWkW0g==";
+ url = "https://registry.npmjs.org/@types/node/-/node-14.17.1.tgz";
+ sha512 = "/tpUyFD7meeooTRwl3sYlihx2BrJE7q9XF71EguPFIySj9B7qgnRtHsHTho+0AUm4m1SvWGm6uSncrR94q6Vtw==";
+ };
+ };
+ "@types/node-15.0.3" = {
+ name = "_at_types_slash_node";
+ packageName = "@types/node";
+ version = "15.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/node/-/node-15.0.3.tgz";
+ sha512 = "/WbxFeBU+0F79z9RdEOXH4CsDga+ibi5M8uEYr91u3CkT/pdWcV8MCook+4wDPnZBexRdwWS+PiVZ2xJviAzcQ==";
+ };
+ };
+ "@types/node-15.6.1" = {
+ name = "_at_types_slash_node";
+ packageName = "@types/node";
+ version = "15.6.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/node/-/node-15.6.1.tgz";
+ sha512 = "7EIraBEyRHEe7CH+Fm1XvgqU6uwZN8Q7jppJGcqjROMT29qhAuuOxYB1uEY5UMYQKEmA5D+5tBnhdaPXSsLONA==";
};
};
"@types/node-6.14.13" = {
@@ -6826,24 +6943,6 @@ let
sha512 = "IpkX0AasN44hgEad0gEF/V6EgR5n69VEqPEgnmoM8GsIGro3PowbWs4tR6IhxUTyPLpOn+fiGG6nrQhcmoCuIQ==";
};
};
- "@types/node-fetch-2.5.7" = {
- name = "_at_types_slash_node-fetch";
- packageName = "@types/node-fetch";
- version = "2.5.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.5.7.tgz";
- 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";
@@ -6925,13 +7024,13 @@ let
sha512 = "ewFXqrQHlFsgc09MK5jP5iR7vumV/BYayNC6PgJO2LPe8vrnNFyjQjSppfEngITi0qvfKtzFvgKymGheFM9UOA==";
};
};
- "@types/readable-stream-2.3.9" = {
+ "@types/readable-stream-2.3.10" = {
name = "_at_types_slash_readable-stream";
packageName = "@types/readable-stream";
- version = "2.3.9";
+ version = "2.3.10";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/readable-stream/-/readable-stream-2.3.9.tgz";
- sha512 = "sqsgQqFT7HmQz/V5jH1O0fvQQnXAJO46Gg9LRO/JPfjmVmGUlcx831TZZO3Y3HtWhIkzf3kTsNT0Z0kzIhIvZw==";
+ url = "https://registry.npmjs.org/@types/readable-stream/-/readable-stream-2.3.10.tgz";
+ sha512 = "xwSXvAv9x4B9Vj88AMZnFyEVLilz1EBxKvRUhGqIF4nJpRQBSTm7jS236X4Y9Y2qPsVvaMxwrGJlNhLHEahlFQ==";
};
};
"@types/request-2.48.5" = {
@@ -7015,13 +7114,13 @@ let
sha512 = "41qEJgBH/TWgo5NFSvBCJ1qkoi3Q6ONSF2avrHq1LVEZfYpdHmj0y9SuTK+u9ZhG1sYQKBL1AWXKyLWP4RaUoQ==";
};
};
- "@types/semver-7.3.4" = {
+ "@types/semver-7.3.6" = {
name = "_at_types_slash_semver";
packageName = "@types/semver";
- version = "7.3.4";
+ version = "7.3.6";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/semver/-/semver-7.3.4.tgz";
- sha512 = "+nVsLKlcUCeMzD2ufHEYuJ9a2ovstb6Dp52A5VsoKxDXgvE051XgHI/33I1EymwkRGQkwnA0LkhnUzituGs4EQ==";
+ url = "https://registry.npmjs.org/@types/semver/-/semver-7.3.6.tgz";
+ sha512 = "0caWDWmpCp0uifxFh+FaqK3CuZ2SkRR/ZRxAV5+zNdC3QVUi6wyOJnefhPvtNt8NQWXB5OA93BUvZsXpWat2Xw==";
};
};
"@types/serve-static-1.13.9" = {
@@ -7033,13 +7132,13 @@ let
sha512 = "ZFqF6qa48XsPdjXV5Gsz0Zqmux2PerNd3a/ktL45mHpa19cuMi/cL8tcxdAx497yRh+QtYPuofjT9oWw9P7nkA==";
};
};
- "@types/sizzle-2.3.2" = {
+ "@types/sizzle-2.3.3" = {
name = "_at_types_slash_sizzle";
packageName = "@types/sizzle";
- version = "2.3.2";
+ version = "2.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/sizzle/-/sizzle-2.3.2.tgz";
- sha512 = "7EJYyKTL7tFR8+gDbB6Wwz/arpGa0Mywk1TJbNzKzHtzbwVmY4HR9WqS5VV7dsBUKQmPNr192jHr/VpBluj/hg==";
+ url = "https://registry.npmjs.org/@types/sizzle/-/sizzle-2.3.3.tgz";
+ sha512 = "JYM8x9EGF163bEyhdJBpR2QX1R5naCJHC8ucJylJ3w9/CVBaskdQ8WqBf8MmQrd1kRvp/a4TS8HJ+bxzR7ZJYQ==";
};
};
"@types/socket.io-2.1.11" = {
@@ -7186,22 +7285,31 @@ let
sha512 = "GpTIuDpb9u4zIO165fUy9+fXcULdD8HFRNli04GehoMVbeNq7D6OBnqSmg3lxZnC+UvgUhEWKxdKiwYUkGltIw==";
};
};
- "@types/vscode-1.55.0" = {
- name = "_at_types_slash_vscode";
- packageName = "@types/vscode";
- version = "1.55.0";
+ "@types/vinyl-2.0.4" = {
+ name = "_at_types_slash_vinyl";
+ packageName = "@types/vinyl";
+ version = "2.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/vscode/-/vscode-1.55.0.tgz";
- sha512 = "49hysH7jneTQoSC8TWbAi7nKK9Lc5osQNjmDHVosrcU8o3jecD9GrK0Qyul8q4aGPSXRfNGqIp9CBdb13akETg==";
+ url = "https://registry.npmjs.org/@types/vinyl/-/vinyl-2.0.4.tgz";
+ sha512 = "2o6a2ixaVI2EbwBPg1QYLGQoHK56p/8X/sGfKbFC8N6sY9lfjsMf/GprtkQkSya0D4uRiutRZ2BWj7k3JvLsAQ==";
};
};
- "@types/webpack-4.41.27" = {
+ "@types/vscode-1.56.0" = {
+ name = "_at_types_slash_vscode";
+ packageName = "@types/vscode";
+ version = "1.56.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/vscode/-/vscode-1.56.0.tgz";
+ sha512 = "Q5VmQxOx+L1Y6lIJiGcJzwcyV3pQo/eiW8P+7sNLhFI16tJCwtua2DLjHRcpjbCLNVYpQM73kzfFo1Z0HyP9eQ==";
+ };
+ };
+ "@types/webpack-4.41.29" = {
name = "_at_types_slash_webpack";
packageName = "@types/webpack";
- version = "4.41.27";
+ version = "4.41.29";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/webpack/-/webpack-4.41.27.tgz";
- sha512 = "wK/oi5gcHi72VMTbOaQ70VcDxSQ1uX8S2tukBK9ARuGXrYM/+u4ou73roc7trXDNmCxCoerE8zruQqX/wuHszA==";
+ url = "https://registry.npmjs.org/@types/webpack/-/webpack-4.41.29.tgz";
+ sha512 = "6pLaORaVNZxiB3FSHbyBiWM7QdazAWda1zvAq4SbZObZqHSDbWLi62iFdblVea6SK9eyBIVp5yHhKt/yNQdR7Q==";
};
};
"@types/webpack-sources-2.1.0" = {
@@ -7240,6 +7348,15 @@ let
sha512 = "ISCK1iFnR+jYv7+jLNX0wDqesZ/5RAeY3wUx6QaphmocphU61h+b+PHjS18TF4WIPTu/MMzxIq2PHr32o2TS5Q==";
};
};
+ "@types/ws-7.4.4" = {
+ name = "_at_types_slash_ws";
+ packageName = "@types/ws";
+ version = "7.4.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/ws/-/ws-7.4.4.tgz";
+ sha512 = "d/7W23JAXPodQNbOZNXvl2K+bqAQrCMwlh/nuQsPSQk6Fq0opHoPrUw43aHsvSbIiQPr8Of2hkFbnz1XBFVyZQ==";
+ };
+ };
"@types/yargs-13.0.11" = {
name = "_at_types_slash_yargs";
packageName = "@types/yargs";
@@ -7285,13 +7402,13 @@ let
sha512 = "S9q47ByT2pPvD65IvrWp7qppVMpk9WGMbVq9wbWZOHg6tnXSD4vyhao6nOSBwwfDdV2p3Kx9evA9vI+XWTfDvw==";
};
};
- "@typescript-eslint/eslint-plugin-4.22.0" = {
+ "@typescript-eslint/eslint-plugin-4.25.0" = {
name = "_at_typescript-eslint_slash_eslint-plugin";
packageName = "@typescript-eslint/eslint-plugin";
- version = "4.22.0";
+ version = "4.25.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.22.0.tgz";
- sha512 = "U8SP9VOs275iDXaL08Ln1Fa/wLXfj5aTr/1c0t0j6CdbOnxh+TruXu1p4I0NAvdPBQgoPjHsgKn28mOi0FzfoA==";
+ url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.25.0.tgz";
+ sha512 = "Qfs3dWkTMKkKwt78xp2O/KZQB8MPS1UQ5D3YW2s6LQWBE1074BE+Rym+b1pXZIX3M3fSvPUDaCvZLKV2ylVYYQ==";
};
};
"@typescript-eslint/experimental-utils-3.10.1" = {
@@ -7303,13 +7420,13 @@ let
sha512 = "DewqIgscDzmAfd5nOGe4zm6Bl7PKtMG2Ad0KG8CUZAHlXfAKTF9Ol5PXhiMh39yRL2ChRH1cuuUGOcVyyrhQIw==";
};
};
- "@typescript-eslint/experimental-utils-4.22.0" = {
+ "@typescript-eslint/experimental-utils-4.25.0" = {
name = "_at_typescript-eslint_slash_experimental-utils";
packageName = "@typescript-eslint/experimental-utils";
- version = "4.22.0";
+ version = "4.25.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.22.0.tgz";
- sha512 = "xJXHHl6TuAxB5AWiVrGhvbGL8/hbiCQ8FiWwObO3r0fnvBdrbWEDy1hlvGQOAWc6qsCWuWMKdVWlLAEMpxnddg==";
+ url = "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.25.0.tgz";
+ sha512 = "f0doRE76vq7NEEU0tw+ajv6CrmPelw5wLoaghEHkA2dNLFb3T/zJQqGPQ0OYt5XlZaS13MtnN+GTPCuUVg338w==";
};
};
"@typescript-eslint/parser-3.10.1" = {
@@ -7321,22 +7438,22 @@ let
sha512 = "Ug1RcWcrJP02hmtaXVS3axPPTTPnZjupqhgj+NnZ6BCkwSImWk/283347+x9wN+lqOdK9Eo3vsyiyDHgsmiEJw==";
};
};
- "@typescript-eslint/parser-4.22.0" = {
+ "@typescript-eslint/parser-4.25.0" = {
name = "_at_typescript-eslint_slash_parser";
packageName = "@typescript-eslint/parser";
- version = "4.22.0";
+ version = "4.25.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.22.0.tgz";
- sha512 = "z/bGdBJJZJN76nvAY9DkJANYgK3nlRstRRi74WHm3jjgf2I8AglrSY+6l7ogxOmn55YJ6oKZCLLy+6PW70z15Q==";
+ url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.25.0.tgz";
+ sha512 = "OZFa1SKyEJpAhDx8FcbWyX+vLwh7OEtzoo2iQaeWwxucyfbi0mT4DijbOSsTgPKzGHr6GrF2V5p/CEpUH/VBxg==";
};
};
- "@typescript-eslint/scope-manager-4.22.0" = {
+ "@typescript-eslint/scope-manager-4.25.0" = {
name = "_at_typescript-eslint_slash_scope-manager";
packageName = "@typescript-eslint/scope-manager";
- version = "4.22.0";
+ version = "4.25.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.22.0.tgz";
- sha512 = "OcCO7LTdk6ukawUM40wo61WdeoA7NM/zaoq1/2cs13M7GyiF+T4rxuA4xM+6LeHWjWbss7hkGXjFDRcKD4O04Q==";
+ url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.25.0.tgz";
+ sha512 = "2NElKxMb/0rya+NJG1U71BuNnp1TBd1JgzYsldsdA83h/20Tvnf/HrwhiSlNmuq6Vqa0EzidsvkTArwoq+tH6w==";
};
};
"@typescript-eslint/types-3.10.1" = {
@@ -7348,13 +7465,13 @@ let
sha512 = "+3+FCUJIahE9q0lDi1WleYzjCwJs5hIsbugIgnbB+dSCYUxl8L6PwmsyOPFZde2hc1DlTo/xnkOgiTLSyAbHiQ==";
};
};
- "@typescript-eslint/types-4.22.0" = {
+ "@typescript-eslint/types-4.25.0" = {
name = "_at_typescript-eslint_slash_types";
packageName = "@typescript-eslint/types";
- version = "4.22.0";
+ version = "4.25.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.22.0.tgz";
- sha512 = "sW/BiXmmyMqDPO2kpOhSy2Py5w6KvRRsKZnV0c4+0nr4GIcedJwXAq+RHNK4lLVEZAJYFltnnk1tJSlbeS9lYA==";
+ url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.25.0.tgz";
+ sha512 = "+CNINNvl00OkW6wEsi32wU5MhHti2J25TJsJJqgQmJu3B3dYDBcmOxcE5w9cgoM13TrdE/5ND2HoEnBohasxRQ==";
};
};
"@typescript-eslint/typescript-estree-2.34.0" = {
@@ -7375,13 +7492,13 @@ let
sha512 = "QbcXOuq6WYvnB3XPsZpIwztBoquEYLXh2MtwVU+kO8jgYCiv4G5xrSP/1wg4tkvrEE+esZVquIPX/dxPlePk1w==";
};
};
- "@typescript-eslint/typescript-estree-4.22.0" = {
+ "@typescript-eslint/typescript-estree-4.25.0" = {
name = "_at_typescript-eslint_slash_typescript-estree";
packageName = "@typescript-eslint/typescript-estree";
- version = "4.22.0";
+ version = "4.25.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.22.0.tgz";
- sha512 = "TkIFeu5JEeSs5ze/4NID+PIcVjgoU3cUQUIZnH3Sb1cEn1lBo7StSV5bwPuJQuoxKXlzAObjYTilOEKRuhR5yg==";
+ url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.25.0.tgz";
+ sha512 = "1B8U07TGNAFMxZbSpF6jqiDs1cVGO0izVkf18Q/SPcUAc9LhHxzvSowXDTvkHMWUVuPpagupaW63gB6ahTXVlg==";
};
};
"@typescript-eslint/visitor-keys-3.10.1" = {
@@ -7393,13 +7510,13 @@ let
sha512 = "9JgC82AaQeglebjZMgYR5wgmfUdUc+EitGUUMW8u2nDckaeimzW+VsoLV6FoimPv2id3VQzfjwBxEMVz08ameQ==";
};
};
- "@typescript-eslint/visitor-keys-4.22.0" = {
+ "@typescript-eslint/visitor-keys-4.25.0" = {
name = "_at_typescript-eslint_slash_visitor-keys";
packageName = "@typescript-eslint/visitor-keys";
- version = "4.22.0";
+ version = "4.25.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.22.0.tgz";
- sha512 = "nnMu4F+s4o0sll6cBSsTeVsT4cwxB7zECK3dFxzEjPBii9xLpq4yqqsy/FU5zMfan6G60DKZSCXAa3sHJZrcYw==";
+ url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.25.0.tgz";
+ sha512 = "AmkqV9dDJVKP/TcZrbf6s6i1zYXt5Hl8qOLrRDTFfRNae4+LB8A4N3i+FLZPW85zIxRy39BgeWOfMS3HoH5ngg==";
};
};
"@uifabric/foundation-7.9.26" = {
@@ -7501,40 +7618,40 @@ let
sha1 = "c585c0bdb94210198945c6597e4fe23d6e63e084";
};
};
- "@vue/cli-shared-utils-4.5.12" = {
+ "@vue/cli-shared-utils-4.5.13" = {
name = "_at_vue_slash_cli-shared-utils";
packageName = "@vue/cli-shared-utils";
- version = "4.5.12";
+ version = "4.5.13";
src = fetchurl {
- url = "https://registry.npmjs.org/@vue/cli-shared-utils/-/cli-shared-utils-4.5.12.tgz";
- sha512 = "qnIQPJ4XckMoqYh9fJ0Y91QKMIb4Hiibrm9+k4E15QHpk5RaokuOpf10SsOr2NLPCXSWsHOLo3hduZSwHPGY/Q==";
+ url = "https://registry.npmjs.org/@vue/cli-shared-utils/-/cli-shared-utils-4.5.13.tgz";
+ sha512 = "HpnOrkLg42RFUsQGMJv26oTG3J3FmKtO2WSRhKIIL+1ok3w9OjGCtA3nMMXN27f9eX14TqO64M36DaiSZ1fSiw==";
};
};
- "@vue/cli-ui-4.5.12" = {
+ "@vue/cli-ui-4.5.13" = {
name = "_at_vue_slash_cli-ui";
packageName = "@vue/cli-ui";
- version = "4.5.12";
+ version = "4.5.13";
src = fetchurl {
- url = "https://registry.npmjs.org/@vue/cli-ui/-/cli-ui-4.5.12.tgz";
- sha512 = "TeP4ujkrUF3/l92R7fAIl6SbTyEw5CbrMpQggctgKrtOtMWorSGhWm17vGtP0C3PoZqzniOzDC7cdO83PL4n+g==";
+ url = "https://registry.npmjs.org/@vue/cli-ui/-/cli-ui-4.5.13.tgz";
+ sha512 = "kXsmK+KAX9A2ribCJ+JuFcJ9ICEKluWuFtJEwUMOvo85O/l5UNupA7XoCrXeHoItdVtw32hAOv+bEV+KmyPyuQ==";
};
};
- "@vue/cli-ui-addon-webpack-4.5.12" = {
+ "@vue/cli-ui-addon-webpack-4.5.13" = {
name = "_at_vue_slash_cli-ui-addon-webpack";
packageName = "@vue/cli-ui-addon-webpack";
- version = "4.5.12";
+ version = "4.5.13";
src = fetchurl {
- url = "https://registry.npmjs.org/@vue/cli-ui-addon-webpack/-/cli-ui-addon-webpack-4.5.12.tgz";
- sha512 = "sPAElJL00koP6BxUSGj5wntH96+IBuhLpu+0YPUYpIMeT/e/Hip/HnsjBzeiv88CvGQKomsjykPQRi26kR/Tjw==";
+ url = "https://registry.npmjs.org/@vue/cli-ui-addon-webpack/-/cli-ui-addon-webpack-4.5.13.tgz";
+ sha512 = "mtk174vPRza0aMqMvx80U/BBmprlOq8ngHr5v3+MYIC1tqzB7co5fCJvyGI/QJ4DjO6O0MaaTGBsxOp/YsqRaQ==";
};
};
- "@vue/cli-ui-addon-widgets-4.5.12" = {
+ "@vue/cli-ui-addon-widgets-4.5.13" = {
name = "_at_vue_slash_cli-ui-addon-widgets";
packageName = "@vue/cli-ui-addon-widgets";
- version = "4.5.12";
+ version = "4.5.13";
src = fetchurl {
- url = "https://registry.npmjs.org/@vue/cli-ui-addon-widgets/-/cli-ui-addon-widgets-4.5.12.tgz";
- sha512 = "GIh+ETKezlmEWmZ/MxKuuJqdfSgYk8DlnIsMnNpbUcdxhHZFbkV2mv/0UoQaH2y0BQhBXBOt9TBJ9j4OeN3DwA==";
+ url = "https://registry.npmjs.org/@vue/cli-ui-addon-widgets/-/cli-ui-addon-widgets-4.5.13.tgz";
+ sha512 = "B6PedV/H2kcGEAgnqncwjHe3E8fqUNXCLv1BsrNwkHHWQJXkDN7dFeuEB4oaucBOVbjhH7KGLJ6JAiXPE3S7xA==";
};
};
"@vue/compiler-core-3.0.11" = {
@@ -8059,31 +8176,31 @@ let
sha512 = "2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==";
};
};
- "@webpack-cli/configtest-1.0.2" = {
+ "@webpack-cli/configtest-1.0.3" = {
name = "_at_webpack-cli_slash_configtest";
packageName = "@webpack-cli/configtest";
- version = "1.0.2";
+ version = "1.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-1.0.2.tgz";
- sha512 = "3OBzV2fBGZ5TBfdW50cha1lHDVf9vlvRXnjpVbJBa20pSZQaSkMJZiwA8V2vD9ogyeXn8nU5s5A6mHyf5jhMzA==";
+ url = "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-1.0.3.tgz";
+ sha512 = "WQs0ep98FXX2XBAfQpRbY0Ma6ADw8JR6xoIkaIiJIzClGOMqVRvPCWqndTxf28DgFopWan0EKtHtg/5W1h0Zkw==";
};
};
- "@webpack-cli/info-1.2.3" = {
+ "@webpack-cli/info-1.2.4" = {
name = "_at_webpack-cli_slash_info";
packageName = "@webpack-cli/info";
- version = "1.2.3";
+ version = "1.2.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@webpack-cli/info/-/info-1.2.3.tgz";
- sha512 = "lLek3/T7u40lTqzCGpC6CAbY6+vXhdhmwFRxZLMnRm6/sIF/7qMpT8MocXCRQfz0JAh63wpbXLMnsQ5162WS7Q==";
+ url = "https://registry.npmjs.org/@webpack-cli/info/-/info-1.2.4.tgz";
+ sha512 = "ogE2T4+pLhTTPS/8MM3IjHn0IYplKM4HbVNMCWA9N4NrdPzunwenpCsqKEXyejMfRu6K8mhauIPYf8ZxWG5O6g==";
};
};
- "@webpack-cli/serve-1.3.1" = {
+ "@webpack-cli/serve-1.4.0" = {
name = "_at_webpack-cli_slash_serve";
packageName = "@webpack-cli/serve";
- version = "1.3.1";
+ version = "1.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@webpack-cli/serve/-/serve-1.3.1.tgz";
- sha512 = "0qXvpeYO6vaNoRBI52/UsbcaBydJCggoBBnIo/ovQQdn6fug0BgwsjorV1hVS7fMqGVTZGcVxv8334gjmbj5hw==";
+ url = "https://registry.npmjs.org/@webpack-cli/serve/-/serve-1.4.0.tgz";
+ sha512 = "xgT/HqJ+uLWGX+Mzufusl3cgjAcnqYYskaB7o0vRcwOEfuu6hMzSILQpnIzFMGsTaeaX4Nnekl+6fadLbl1/Vg==";
};
};
"@wry/equality-0.1.11" = {
@@ -8293,15 +8410,6 @@ let
sha512 = "h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==";
};
};
- "abortcontroller-polyfill-1.7.1" = {
- name = "abortcontroller-polyfill";
- packageName = "abortcontroller-polyfill";
- version = "1.7.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/abortcontroller-polyfill/-/abortcontroller-polyfill-1.7.1.tgz";
- sha512 = "yml9NiDEH4M4p0G4AcPkg8AAa4mF3nfYF28VQxaokpO67j9H7gWgmsVWJ/f1Rn+PzsnDYvzJzWIQzCqDKRvWlA==";
- };
- };
"absolute-0.0.1" = {
name = "absolute";
packageName = "absolute";
@@ -8428,13 +8536,13 @@ let
sha512 = "nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==";
};
};
- "acorn-8.2.1" = {
+ "acorn-8.2.4" = {
name = "acorn";
packageName = "acorn";
- version = "8.2.1";
+ version = "8.2.4";
src = fetchurl {
- url = "https://registry.npmjs.org/acorn/-/acorn-8.2.1.tgz";
- sha512 = "z716cpm5TX4uzOzILx8PavOE6C6DKshHDw1aQN52M/yNSqE9s5O8SMfyhCCfCJ3HmTL0NkVOi+8a/55T7YB3bg==";
+ url = "https://registry.npmjs.org/acorn/-/acorn-8.2.4.tgz";
+ sha512 = "Ibt84YwBDDA890eDiDCEqcbwvHlBvzzDkU2cGBBDDI1QWT12jTiXIOn2CIw5KK4i6N5Z2HUxwYjzriDyqaqqZg==";
};
};
"acorn-globals-1.0.9" = {
@@ -8635,13 +8743,13 @@ let
sha1 = "09c5cddd8d503b9fe5f76e0b8dc5c70a8f193e34";
};
};
- "adverb-where-0.2.2" = {
+ "adverb-where-0.2.5" = {
name = "adverb-where";
packageName = "adverb-where";
- version = "0.2.2";
+ version = "0.2.5";
src = fetchurl {
- url = "https://registry.npmjs.org/adverb-where/-/adverb-where-0.2.2.tgz";
- sha512 = "hZPUFSgljaJnzQQXqc4GCEVSxmyhBkLgf/DyeW7F068PdRE9PervS4LmftJWWSPfTpaEhpJebx3eP7D9slBjSw==";
+ url = "https://registry.npmjs.org/adverb-where/-/adverb-where-0.2.5.tgz";
+ sha512 = "JiQe2U1UR8l10jPrXv/PmlDhOLZpsxqjvTp+k6Dm5wYDUULdMZytDRmovkXU8X6V9o0sg0FBdetv3VXHAZZK5Q==";
};
};
"after-0.8.1" = {
@@ -8707,6 +8815,15 @@ let
sha512 = "4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==";
};
};
+ "aglfn-1.0.2" = {
+ name = "aglfn";
+ packageName = "aglfn";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/aglfn/-/aglfn-1.0.2.tgz";
+ sha512 = "HUvXd7sNFa1aHtYgJnln2jPwzq7UAAOXhYH/+AY6BMdfXxprMxG8IrczlZn6MjjIWpYhpKR5mHwDWTgehZKO4g==";
+ };
+ };
"airplay-js-0.2.16" = {
name = "airplay-js";
packageName = "airplay-js";
@@ -8779,22 +8896,22 @@ let
sha512 = "LqZ9wY+fx3UMiiPd741yB2pj3hhil+hQc8taf4o2QGRFpWgZ2V5C8HA165DY9sS3fJwsk7uT7ZlFEyC3Ig3lLg==";
};
};
- "ajv-7.2.4" = {
+ "ajv-8.2.0" = {
name = "ajv";
packageName = "ajv";
- version = "7.2.4";
+ version = "8.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/ajv/-/ajv-7.2.4.tgz";
- sha512 = "nBeQgg/ZZA3u3SYxyaDvpvDtgZ/EZPF547ARgZBrG9Bhu1vKDwAIjtIf+sDtJUKa2zOcEbmRLBRSyMraS/Oy1A==";
+ url = "https://registry.npmjs.org/ajv/-/ajv-8.2.0.tgz";
+ sha512 = "WSNGFuyWd//XO8n/m/EaOlNLtO0yL8EXT/74LqT4khdhpZjP7lkj/kT5uwRmGitKEVp/Oj7ZUHeGfPtgHhQ5CA==";
};
};
- "ajv-8.1.0" = {
+ "ajv-8.5.0" = {
name = "ajv";
packageName = "ajv";
- version = "8.1.0";
+ version = "8.5.0";
src = fetchurl {
- url = "https://registry.npmjs.org/ajv/-/ajv-8.1.0.tgz";
- sha512 = "B/Sk2Ix7A36fs/ZkuGLIR86EdjbgR6fsAcbx9lOP/QBSXujDNbVmIS/U4Itz5k8fPFDeVZl/zQ/gJW4Jrq6XjQ==";
+ url = "https://registry.npmjs.org/ajv/-/ajv-8.5.0.tgz";
+ sha512 = "Y2l399Tt1AguU3BPRP9Fn4eN+Or+StUGWCUpbnFyXSo8NZ9S4uj+AG2pjs5apK+ZMOwYOz1+a+VKvKH7CudXgQ==";
};
};
"ajv-errors-1.0.1" = {
@@ -8806,13 +8923,22 @@ let
sha512 = "DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==";
};
};
- "ajv-formats-1.6.1" = {
+ "ajv-formats-2.0.2" = {
name = "ajv-formats";
packageName = "ajv-formats";
- version = "1.6.1";
+ version = "2.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/ajv-formats/-/ajv-formats-1.6.1.tgz";
- sha512 = "4CjkH20If1lhR5CGtqkrVg3bbOtFEG80X9v6jDOIUhbzzbB+UzPBGy8GQhUNVZ0yvMHdMpawCOcy5ydGMsagGQ==";
+ url = "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.0.2.tgz";
+ sha512 = "Brah4Uo5/U8v76c6euTwtjVFFaVishwnJrQBYpev1JRh4vjA1F4HY3UzQez41YUCszUCXKagG8v6eVRBHV1gkw==";
+ };
+ };
+ "ajv-formats-2.1.0" = {
+ name = "ajv-formats";
+ packageName = "ajv-formats";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.0.tgz";
+ sha512 = "USH2jBb+C/hIpwD2iRjp0pe0k+MvzG0mlSn/FIdCgQhUb9ALPRjt2KIQdfZDS9r0ZIeUAg7gOu9KL0PFqGqr5Q==";
};
};
"ajv-keywords-1.5.1" = {
@@ -9211,13 +9337,13 @@ let
sha1 = "fd753efa4beada0eac99981bc52a3f6ff019deb7";
};
};
- "ansi-to-html-0.6.14" = {
+ "ansi-to-html-0.6.15" = {
name = "ansi-to-html";
packageName = "ansi-to-html";
- version = "0.6.14";
+ version = "0.6.15";
src = fetchurl {
- url = "https://registry.npmjs.org/ansi-to-html/-/ansi-to-html-0.6.14.tgz";
- sha512 = "7ZslfB1+EnFSDO5Ju+ue5Y6It19DRnZXWv8jrGHgIlPna5Mh4jz7BV5jCbQneXNFurQcKoolaaAjHtgSBfOIuA==";
+ url = "https://registry.npmjs.org/ansi-to-html/-/ansi-to-html-0.6.15.tgz";
+ sha512 = "28ijx2aHJGdzbs+O5SNQF65r6rrKYnkuwTYm8lZlChuoJ9P1vVzIpWO20sQTqTPDXYp6NFwk326vApTtLVFXpQ==";
};
};
"ansi-wrap-0.1.0" = {
@@ -9328,49 +9454,31 @@ let
sha512 = "sbLEIMQrkV7RkIruqTPXxeCMkAAycv4yzTkBzRgOR1BrR5UB7qZtupqxkersTJSf0HZ3sbaNRrNV80TnnM7cUw==";
};
};
- "apollo-cache-control-0.12.0" = {
+ "apollo-cache-control-0.14.0" = {
name = "apollo-cache-control";
packageName = "apollo-cache-control";
- version = "0.12.0";
+ version = "0.14.0";
src = fetchurl {
- url = "https://registry.npmjs.org/apollo-cache-control/-/apollo-cache-control-0.12.0.tgz";
- sha512 = "kClF5rfAm159Nboul1LxA+l58Tjz0M8L1GUknEMpZt0UHhILLAn3BfcG3ToX4TbNoR9M57kKMUcbPWLdy3Up7w==";
+ url = "https://registry.npmjs.org/apollo-cache-control/-/apollo-cache-control-0.14.0.tgz";
+ sha512 = "qN4BCq90egQrgNnTRMUHikLZZAprf3gbm8rC5Vwmc6ZdLolQ7bFsa769Hqi6Tq/lS31KLsXBLTOsRbfPHph12w==";
};
};
- "apollo-datasource-0.8.0" = {
+ "apollo-datasource-0.9.0" = {
name = "apollo-datasource";
packageName = "apollo-datasource";
- version = "0.8.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/apollo-datasource/-/apollo-datasource-0.8.0.tgz";
- sha512 = "gXgsGVLuejLc138z/2jUjPAzadDQxWbcLJyBgaQsg5BaXJNkv5uW/NjiSPk00cK51hyZrb0Xx8a+L+wPk2qIBA==";
- };
- };
- "apollo-env-0.6.6" = {
- name = "apollo-env";
- packageName = "apollo-env";
- version = "0.6.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/apollo-env/-/apollo-env-0.6.6.tgz";
- sha512 = "hXI9PjJtzmD34XviBU+4sPMOxnifYrHVmxpjykqI/dUD2G3yTiuRaiQqwRwB2RCdwC1Ug/jBfoQ/NHDTnnjndQ==";
- };
- };
- "apollo-env-0.9.0" = {
- name = "apollo-env";
- packageName = "apollo-env";
version = "0.9.0";
src = fetchurl {
- url = "https://registry.npmjs.org/apollo-env/-/apollo-env-0.9.0.tgz";
- sha512 = "oMSaFiCYEULXTv1sLhuPpAg0SykJNzEu5QWvCw0844yq14MyETXFERmAYD9b8nNjQLAdpjbbkBGKTWcw5wgd5Q==";
+ url = "https://registry.npmjs.org/apollo-datasource/-/apollo-datasource-0.9.0.tgz";
+ sha512 = "y8H99NExU1Sk4TvcaUxTdzfq2SZo6uSj5dyh75XSQvbpH6gdAXIW9MaBcvlNC7n0cVPsidHmOcHOWxJ/pTXGjA==";
};
};
- "apollo-graphql-0.6.1" = {
+ "apollo-graphql-0.9.3" = {
name = "apollo-graphql";
packageName = "apollo-graphql";
- version = "0.6.1";
+ version = "0.9.3";
src = fetchurl {
- url = "https://registry.npmjs.org/apollo-graphql/-/apollo-graphql-0.6.1.tgz";
- sha512 = "ZRXAV+k+hboCVS+FW86FW/QgnDR7gm/xMUwJPGXEbV53OLGuQQdIT0NCYK7AzzVkCfsbb7NJ3mmEclkZY9uuxQ==";
+ url = "https://registry.npmjs.org/apollo-graphql/-/apollo-graphql-0.9.3.tgz";
+ sha512 = "rcAl2E841Iko4kSzj4Pt3PRBitmyq1MvoEmpl04TQSpGnoVgl1E/ZXuLBYxMTSnEAm7umn2IsoY+c6Ll9U/10A==";
};
};
"apollo-link-1.2.1" = {
@@ -9391,40 +9499,40 @@ let
sha512 = "p67CMEFP7kOG1JZ0ZkYZwRDa369w5PIjtMjvrQd/HnIV8FRsHRqLqK+oAZQnFa1DDdZtOtHTi+aMIW6EatC2jg==";
};
};
- "apollo-reporting-protobuf-0.6.2" = {
+ "apollo-reporting-protobuf-0.8.0" = {
name = "apollo-reporting-protobuf";
packageName = "apollo-reporting-protobuf";
- version = "0.6.2";
+ version = "0.8.0";
src = fetchurl {
- url = "https://registry.npmjs.org/apollo-reporting-protobuf/-/apollo-reporting-protobuf-0.6.2.tgz";
- sha512 = "WJTJxLM+MRHNUxt1RTl4zD0HrLdH44F2mDzMweBj1yHL0kSt8I1WwoiF/wiGVSpnG48LZrBegCaOJeuVbJTbtw==";
+ url = "https://registry.npmjs.org/apollo-reporting-protobuf/-/apollo-reporting-protobuf-0.8.0.tgz";
+ sha512 = "B3XmnkH6Y458iV6OsA7AhfwvTgeZnFq9nPVjbxmLKnvfkEl8hYADtz724uPa0WeBiD7DSFcnLtqg9yGmCkBohg==";
};
};
- "apollo-server-caching-0.6.0" = {
+ "apollo-server-caching-0.7.0" = {
name = "apollo-server-caching";
packageName = "apollo-server-caching";
- version = "0.6.0";
+ version = "0.7.0";
src = fetchurl {
- url = "https://registry.npmjs.org/apollo-server-caching/-/apollo-server-caching-0.6.0.tgz";
- sha512 = "SfjKaccrhRzUQ8TAke9FrYppp4pZV3Rp8KCs+4Ox3kGtbco68acRPJkiYYtSVc4idR8XNAUOOVfAEZVNHdZQKQ==";
+ url = "https://registry.npmjs.org/apollo-server-caching/-/apollo-server-caching-0.7.0.tgz";
+ sha512 = "MsVCuf/2FxuTFVhGLK13B+TZH9tBd2qkyoXKKILIiGcZ5CDUEBO14vIV63aNkMkS1xxvK2U4wBcuuNj/VH2Mkw==";
};
};
- "apollo-server-core-2.23.0" = {
+ "apollo-server-core-2.25.0" = {
name = "apollo-server-core";
packageName = "apollo-server-core";
- version = "2.23.0";
+ version = "2.25.0";
src = fetchurl {
- url = "https://registry.npmjs.org/apollo-server-core/-/apollo-server-core-2.23.0.tgz";
- sha512 = "3/a4LPgRADc8CdT/nRh7W0CAqQv3Q4DJvakWQgKqGSqDEb/0u4IBynYjlQKuPBi4wwKdeK2Hb1wiQLl+zu4StQ==";
+ url = "https://registry.npmjs.org/apollo-server-core/-/apollo-server-core-2.25.0.tgz";
+ sha512 = "LqDmY+R5dcb6zj/RgM7P8NnURV2XdQFIF4rY7g80hD9mc2WSCKHF6eH+lHG0sFPW7f8iBr+lJ4LyETuWEVF0hg==";
};
};
- "apollo-server-env-3.0.0" = {
+ "apollo-server-env-3.1.0" = {
name = "apollo-server-env";
packageName = "apollo-server-env";
- version = "3.0.0";
+ version = "3.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/apollo-server-env/-/apollo-server-env-3.0.0.tgz";
- sha512 = "tPSN+VttnPsoQAl/SBVUpGbLA97MXG990XIwq6YUnJyAixrrsjW1xYG7RlaOqetxm80y5mBZKLrRDiiSsW/vog==";
+ url = "https://registry.npmjs.org/apollo-server-env/-/apollo-server-env-3.1.0.tgz";
+ sha512 = "iGdZgEOAuVop3vb0F2J3+kaBVi4caMoxefHosxmgzAbbSpvWehB8Y1QiSyyMeouYC38XNVk5wnZl+jdGSsWsIQ==";
};
};
"apollo-server-errors-2.5.0" = {
@@ -9436,40 +9544,40 @@ let
sha512 = "lO5oTjgiC3vlVg2RKr3RiXIIQ5pGXBFxYGGUkKDhTud3jMIhs+gel8L8zsEjKaKxkjHhCQAA/bcEfYiKkGQIvA==";
};
};
- "apollo-server-express-2.23.0" = {
+ "apollo-server-express-2.25.0" = {
name = "apollo-server-express";
packageName = "apollo-server-express";
- version = "2.23.0";
+ version = "2.25.0";
src = fetchurl {
- url = "https://registry.npmjs.org/apollo-server-express/-/apollo-server-express-2.23.0.tgz";
- sha512 = "tzil7c51ODH0rT1Bc5VMksdWzHrYGavdLtnDz4M0ePiTm18Gc81HD7X/4DPczorerEpfwwkf2YlADtPQfRSxlw==";
+ url = "https://registry.npmjs.org/apollo-server-express/-/apollo-server-express-2.25.0.tgz";
+ sha512 = "FCTisD+VB1LCcTjjhKvQZ/dkly83KVlioFMgcPjW1X/kzCznRT3aQoVn9bQHlzQr7NnpwFseb4Rhd2KKD4wKEA==";
};
};
- "apollo-server-plugin-base-0.11.0" = {
+ "apollo-server-plugin-base-0.13.0" = {
name = "apollo-server-plugin-base";
packageName = "apollo-server-plugin-base";
- version = "0.11.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/apollo-server-plugin-base/-/apollo-server-plugin-base-0.11.0.tgz";
- sha512 = "Du68x0XCyQ6EWlgoL9Z+1s8fJfXgY131QbKP7ao617StQPzwB0aGCwxBDfcMt1A75VXf4TkvV1rdUH5YeJFlhQ==";
- };
- };
- "apollo-server-types-0.7.0" = {
- name = "apollo-server-types";
- packageName = "apollo-server-types";
- version = "0.7.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/apollo-server-types/-/apollo-server-types-0.7.0.tgz";
- sha512 = "pJ6ri2N4xJ+e2PUUPHeCNpMDzHUagJyn0DDZGQmXDz6aoMlSd4B2KUvK81hHyHkw3wHk9clgcpfM9hKqbfZweA==";
- };
- };
- "apollo-tracing-0.13.0" = {
- name = "apollo-tracing";
- packageName = "apollo-tracing";
version = "0.13.0";
src = fetchurl {
- url = "https://registry.npmjs.org/apollo-tracing/-/apollo-tracing-0.13.0.tgz";
- sha512 = "28z4T+XfLQ6t696usU0nTFDxVN8BfF3o74d2p/zsT4eu1OuoyoDOEmVJqdInmVRpyTJK0tDEOjkIuDJJHZftog==";
+ url = "https://registry.npmjs.org/apollo-server-plugin-base/-/apollo-server-plugin-base-0.13.0.tgz";
+ sha512 = "L3TMmq2YE6BU6I4Tmgygmd0W55L+6XfD9137k+cWEBFu50vRY4Re+d+fL5WuPkk5xSPKd/PIaqzidu5V/zz8Kg==";
+ };
+ };
+ "apollo-server-types-0.9.0" = {
+ name = "apollo-server-types";
+ packageName = "apollo-server-types";
+ version = "0.9.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/apollo-server-types/-/apollo-server-types-0.9.0.tgz";
+ sha512 = "qk9tg4Imwpk732JJHBkhW0jzfG0nFsLqK2DY6UhvJf7jLnRePYsPxWfPiNkxni27pLE2tiNlCwoDFSeWqpZyBg==";
+ };
+ };
+ "apollo-tracing-0.15.0" = {
+ name = "apollo-tracing";
+ packageName = "apollo-tracing";
+ version = "0.15.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/apollo-tracing/-/apollo-tracing-0.15.0.tgz";
+ sha512 = "UP0fztFvaZPHDhIB/J+qGuy6hWO4If069MGC98qVs0I8FICIGu4/8ykpX3X3K6RtaQ56EDAWKykCxFv4ScxMeA==";
};
};
"apollo-utilities-1.3.4" = {
@@ -9589,15 +9697,6 @@ let
sha512 = "5Hxxcig7gw5Jod/8Gq0OneVgLYET+oNHcxgWItq4TbhOzRLKNAFUb9edAftiMKXvXfCB0vbGrJdZDNq0dWMsxg==";
};
};
- "archiver-4.0.2" = {
- name = "archiver";
- packageName = "archiver";
- version = "4.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/archiver/-/archiver-4.0.2.tgz";
- sha512 = "B9IZjlGwaxF33UN4oPbfBkyA4V1SxNLeIhR1qY8sRXSsbdUkEHrrOvwlYFPx+8uQeCe9M+FG6KgO+imDmQ79CQ==";
- };
- };
"archiver-5.3.0" = {
name = "archiver";
packageName = "archiver";
@@ -9679,15 +9778,6 @@ let
sha512 = "8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==";
};
};
- "aria-query-4.2.2" = {
- name = "aria-query";
- packageName = "aria-query";
- version = "4.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/aria-query/-/aria-query-4.2.2.tgz";
- sha512 = "o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==";
- };
- };
"aribts-1.3.5" = {
name = "aribts";
packageName = "aribts";
@@ -9850,15 +9940,6 @@ let
sha1 = "7da8cf2e26628ed732803581fd21f67cacd2eeec";
};
};
- "array-filter-1.0.0" = {
- name = "array-filter";
- packageName = "array-filter";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/array-filter/-/array-filter-1.0.0.tgz";
- sha1 = "baf79e62e6ef4c2a4c0b831232daffec251f9d83";
- };
- };
"array-find-0.1.1" = {
name = "array-find";
packageName = "array-find";
@@ -10102,24 +10183,6 @@ let
sha512 = "mi+MYNJYLTx2eNYy+Yh6raoQacCsNeeMUaspFPh9Y141lFSsWxxB8V9mM2ye+eqiRs917J6/pJ4M9ZPzenWckA==";
};
};
- "array.prototype.flat-1.2.4" = {
- name = "array.prototype.flat";
- packageName = "array.prototype.flat";
- version = "1.2.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.2.4.tgz";
- sha512 = "4470Xi3GAPAjZqFcljX2xzckv1qeKPizoNkiS0+O4IoPR2ZNpcjE0pkhdihlDouK+x6QOast26B4Q/O9DJnwSg==";
- };
- };
- "array.prototype.flatmap-1.2.4" = {
- name = "array.prototype.flatmap";
- packageName = "array.prototype.flatmap";
- version = "1.2.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.2.4.tgz";
- sha512 = "r9Z0zYoxqHz60vvQbWEdXIEtCwHF0yxaWfno9qzXeNHvfyl3BZqygmGzb84dsubyaXLH4husF+NFgMSdpZhk2Q==";
- };
- };
"arraybuffer.slice-0.0.6" = {
name = "arraybuffer.slice";
packageName = "arraybuffer.slice";
@@ -10390,15 +10453,6 @@ let
sha1 = "102c9e9e9005d3e7e3829bf0c4fa24ee862ee9b9";
};
};
- "ast-types-flow-0.0.7" = {
- name = "ast-types-flow";
- packageName = "ast-types-flow";
- version = "0.0.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz";
- sha1 = "f70b735c6bca1a5c9c22d982c3e39e7feba3bdad";
- };
- };
"astral-regex-1.0.0" = {
name = "astral-regex";
packageName = "astral-regex";
@@ -10561,13 +10615,13 @@ let
sha512 = "gpuo6xOyF4D5DE5WvyqZdPA3NGhiT6Qf07l7DCB0wwDEsLvDIbCr6j9S5aj5Ch96dLace5tXVzWBZkxU/c5ohw==";
};
};
- "async-lock-1.2.8" = {
+ "async-lock-1.3.0" = {
name = "async-lock";
packageName = "async-lock";
- version = "1.2.8";
+ version = "1.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/async-lock/-/async-lock-1.2.8.tgz";
- sha512 = "G+26B2jc0Gw0EG/WN2M6IczuGepBsfR1+DtqLnyFSH4p2C668qkOCtEkGNVEaaNAVlYwEMazy1+/jnLxltBkIQ==";
+ url = "https://registry.npmjs.org/async-lock/-/async-lock-1.3.0.tgz";
+ sha512 = "8A7SkiisnEgME2zEedtDYPxUPzdv3x//E7n5IFktPAtMYSEAV7eNJF0rMwrVyUFj6d/8rgajLantbjcNRQYXIg==";
};
};
"async-mutex-0.1.4" = {
@@ -10696,15 +10750,6 @@ let
sha512 = "Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==";
};
};
- "atob-lite-2.0.0" = {
- name = "atob-lite";
- packageName = "atob-lite";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/atob-lite/-/atob-lite-2.0.0.tgz";
- sha1 = "0fef5ad46f1bd7a8502c65727f0367d5ee43d696";
- };
- };
"atomic-batcher-1.0.2" = {
name = "atomic-batcher";
packageName = "atomic-batcher";
@@ -10732,13 +10777,13 @@ let
sha512 = "Eh6pW+fRC2/1RxPq3hO8+PkZKv+wujzKky2MP/n69eC8yMkbNFfuEb/riZHqf13M7gr6Hvglpk/kISgBSBb6bQ==";
};
};
- "atomic-file-rw-0.2.1" = {
+ "atomic-file-rw-0.2.2" = {
name = "atomic-file-rw";
packageName = "atomic-file-rw";
- version = "0.2.1";
+ version = "0.2.2";
src = fetchurl {
- url = "https://registry.npmjs.org/atomic-file-rw/-/atomic-file-rw-0.2.1.tgz";
- sha512 = "73oEZ7tkhd/7QjvsNts9saHY9BYJQWD4izzI/bKJmwVl/BGT7J6wBFUC5qxNlQZlFORguqfsTQwvJA1lm3RoFw==";
+ url = "https://registry.npmjs.org/atomic-file-rw/-/atomic-file-rw-0.2.2.tgz";
+ sha512 = "XZOcMIc32aIDxKFJGpYIPZ7H0p+Zmu3xAYyKDMmRgSQMNR97E8byl4tQa9vkYv4x8dNcYRQV8tw+KvtiKua0xQ==";
};
};
"atomic-sleep-1.0.0" = {
@@ -10813,13 +10858,13 @@ let
sha512 = "XrvP4VVHdRBCdX1S3WXVD8+RyG9qeb1D5Sn1DeLiG2xfSpzellk5k54xbUERJ3M5DggQxes39UGOTP8CFrEGbg==";
};
};
- "available-typed-arrays-1.0.2" = {
+ "available-typed-arrays-1.0.4" = {
name = "available-typed-arrays";
packageName = "available-typed-arrays";
- version = "1.0.2";
+ version = "1.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.2.tgz";
- sha512 = "XWX3OX8Onv97LMk/ftVyBibpGwY5a8SmuxZPzeOxqmuEqUCOM9ZE+uIaD1VNJ5QnvU2UQusvmKbuM1FR8QWGfQ==";
+ url = "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.4.tgz";
+ sha512 = "SA5mXJWrId1TaQjfxUYghbqQ/hYioKmLJvPJyDuYRtXXenFNMjj4hSSt1Cf1xsuXSXrtxrVC5Ot4eU6cOtBDdA==";
};
};
"await-semaphore-0.1.3" = {
@@ -10849,13 +10894,13 @@ let
sha512 = "+KBkqH7t/XE91Fqn8eyJeNIWsnhSWL8bSUqFD7TfE3FN07MTlC0nprGYp+2WfcYNz5i8Bus1vY2DHNVhtTImnw==";
};
};
- "aws-sdk-2.892.0" = {
+ "aws-sdk-2.918.0" = {
name = "aws-sdk";
packageName = "aws-sdk";
- version = "2.892.0";
+ version = "2.918.0";
src = fetchurl {
- url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.892.0.tgz";
- sha512 = "OOXJ15AnJJMHZYXJQVy22Wjnp5GrZCfvCxmoZuXdsLNs8M+BL4mfBqma82+UkM2NhJgLYuAhDfvFUBob6VGIWw==";
+ url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.918.0.tgz";
+ sha512 = "ZjWanOA1Zo664EyWLCnbUlkwCjoRPmSIMx529W4gk1418qo3oCEcvUy1HeibGGIClYnZZ7J4FMQvVDm2+JtHLQ==";
};
};
"aws-sign2-0.6.0" = {
@@ -10894,15 +10939,6 @@ let
sha512 = "wMHVg2EOHaMRxbzgFJ9gtjOOCrI80OHLG14rxi28XwOW8ux6IiEbRCGGGqCtdAIg4FQCbW20k9RsT4y3gJlFug==";
};
};
- "axe-core-4.1.4" = {
- name = "axe-core";
- packageName = "axe-core";
- version = "4.1.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/axe-core/-/axe-core-4.1.4.tgz";
- sha512 = "Pdgfv6iP0gNx9ejRGa3zE7Xgkj/iclXqLfe7BnatdZz0QnLZ3jrRHUVH8wNSdN68w05Sk3ShGTb3ydktMTooig==";
- };
- };
"axios-0.19.2" = {
name = "axios";
packageName = "axios";
@@ -10930,22 +10966,13 @@ let
sha512 = "NFCoNIHq8lYkJa6ku4m+V1837TP6lCa7n79Iuf8/AqATAHYB0ISaAS1eyIenDOfHOLtym34W65Sjke2xjg2fsA==";
};
};
- "axobject-query-2.2.0" = {
- name = "axobject-query";
- packageName = "axobject-query";
- version = "2.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/axobject-query/-/axobject-query-2.2.0.tgz";
- sha512 = "Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==";
- };
- };
- "azure-devops-node-api-7.2.0" = {
+ "azure-devops-node-api-10.2.2" = {
name = "azure-devops-node-api";
packageName = "azure-devops-node-api";
- version = "7.2.0";
+ version = "10.2.2";
src = fetchurl {
- url = "https://registry.npmjs.org/azure-devops-node-api/-/azure-devops-node-api-7.2.0.tgz";
- sha512 = "pMfGJ6gAQ7LRKTHgiRF+8iaUUeGAI0c8puLaqHLc7B8AR7W6GJLozK9RFeUHFjEGybC9/EB3r67WPd7e46zQ8w==";
+ url = "https://registry.npmjs.org/azure-devops-node-api/-/azure-devops-node-api-10.2.2.tgz";
+ sha512 = "4TVv2X7oNStT0vLaEfExmy3J4/CzfuXolEcQl/BRUmvGySqKStTG2O55/hUQ0kM7UJlZBLgniM0SBq4d/WkKow==";
};
};
"b24.js-1.0.3" = {
@@ -10984,6 +11011,15 @@ let
sha512 = "z3U7eMY6r/3f3/JB9mTsLjyxrv0Yb1zb8PCWCLpguxfCzBIZUwy23R1t/XKewP+8mEN2Ck8Dtr4q20z6ce6SoA==";
};
};
+ "babel-eslint-10.1.0" = {
+ name = "babel-eslint";
+ packageName = "babel-eslint";
+ version = "10.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/babel-eslint/-/babel-eslint-10.1.0.tgz";
+ sha512 = "ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg==";
+ };
+ };
"babel-extract-comments-1.0.0" = {
name = "babel-extract-comments";
packageName = "babel-extract-comments";
@@ -11218,31 +11254,31 @@ let
sha1 = "1bc6f15b87f7ab1085d42b330b717657a2156500";
};
};
- "babel-plugin-polyfill-corejs2-0.2.0" = {
+ "babel-plugin-polyfill-corejs2-0.2.2" = {
name = "babel-plugin-polyfill-corejs2";
packageName = "babel-plugin-polyfill-corejs2";
- version = "0.2.0";
+ version = "0.2.2";
src = fetchurl {
- url = "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.2.0.tgz";
- sha512 = "9bNwiR0dS881c5SHnzCmmGlMkJLl0OUZvxrxHo9w/iNoRuqaPjqlvBf4HrovXtQs/au5yKkpcdgfT1cC5PAZwg==";
+ url = "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.2.2.tgz";
+ sha512 = "kISrENsJ0z5dNPq5eRvcctITNHYXWOA4DUZRFYCz3jYCcvTb/A546LIddmoGNMVYg2U38OyFeNosQwI9ENTqIQ==";
};
};
- "babel-plugin-polyfill-corejs3-0.2.0" = {
+ "babel-plugin-polyfill-corejs3-0.2.2" = {
name = "babel-plugin-polyfill-corejs3";
packageName = "babel-plugin-polyfill-corejs3";
- version = "0.2.0";
+ version = "0.2.2";
src = fetchurl {
- url = "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.2.0.tgz";
- sha512 = "zZyi7p3BCUyzNxLx8KV61zTINkkV65zVkDAFNZmrTCRVhjo1jAS+YLvDJ9Jgd/w2tsAviCwFHReYfxO3Iql8Yg==";
+ url = "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.2.2.tgz";
+ sha512 = "l1Cf8PKk12eEk5QP/NQ6TH8A1pee6wWDJ96WjxrMXFLHLOBFzYM4moG80HFgduVhTqAFez4alnZKEhP/bYHg0A==";
};
};
- "babel-plugin-polyfill-regenerator-0.2.0" = {
+ "babel-plugin-polyfill-regenerator-0.2.2" = {
name = "babel-plugin-polyfill-regenerator";
packageName = "babel-plugin-polyfill-regenerator";
- version = "0.2.0";
+ version = "0.2.2";
src = fetchurl {
- url = "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.2.0.tgz";
- sha512 = "J7vKbCuD2Xi/eEHxquHN14bXAW9CXtecwuLrOIDJtcZzTaPzV1VdEfoUf9AzcRBMolKUQKM9/GVojeh0hFiqMg==";
+ url = "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.2.2.tgz";
+ sha512 = "Goy5ghsc21HgPDFtzRkSirpZVW35meGoTmTOb2bxqdl60ghub4xOidgNTHaZfQ2FaxQsKmwvXtOAkcIS4SMBWg==";
};
};
"babel-plugin-styled-components-1.12.0" = {
@@ -11443,13 +11479,13 @@ let
sha512 = "5/INNCYhUGqw7VbVjT/hb3ucjgkVHKXY7lX3ZjlN4gm565VyFmJUrJ/h+h16ECVB38R/9SF6aACydpKMLZ/c9w==";
};
};
- "babel-preset-fbjs-3.3.0" = {
+ "babel-preset-fbjs-3.4.0" = {
name = "babel-preset-fbjs";
packageName = "babel-preset-fbjs";
- version = "3.3.0";
+ version = "3.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/babel-preset-fbjs/-/babel-preset-fbjs-3.3.0.tgz";
- sha512 = "7QTLTCd2gwB2qGoi5epSULMHugSVgpcVt5YAeiFO9ABLrutDQzKfGwzxgZHLpugq8qMdg/DhRZDZ5CLKxBkEbw==";
+ url = "https://registry.npmjs.org/babel-preset-fbjs/-/babel-preset-fbjs-3.4.0.tgz";
+ sha512 = "9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==";
};
};
"babel-preset-jest-25.5.0" = {
@@ -12064,15 +12100,6 @@ let
sha1 = "159a49b9a9714c1fb102f2e0ed1906fab6a450f4";
};
};
- "big-integer-1.6.36" = {
- name = "big-integer";
- packageName = "big-integer";
- version = "1.6.36";
- src = fetchurl {
- url = "https://registry.npmjs.org/big-integer/-/big-integer-1.6.36.tgz";
- sha512 = "t70bfa7HYEA1D9idDbmuv7YbsbVkQ+Hp+8KFSul4aE5e/i1bjCNIRYJZlA8Q8p0r9T8cF/RVvwUgRA//FydEyg==";
- };
- };
"big-integer-1.6.48" = {
name = "big-integer";
packageName = "big-integer";
@@ -12856,13 +12883,13 @@ let
sha1 = "68dff5fbe60c51eb37725ea9e3ed310dcc1e776e";
};
};
- "boolean-3.0.3" = {
+ "boolean-3.0.4" = {
name = "boolean";
packageName = "boolean";
- version = "3.0.3";
+ version = "3.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/boolean/-/boolean-3.0.3.tgz";
- sha512 = "EqrTKXQX6Z3A2nRmMEIlAIfjQOgFnVO2nqZGpbcsPnYGWBwpFqzlrozU1dy+S2iqfYDLh26ef4KrgTxu9xQrxA==";
+ url = "https://registry.npmjs.org/boolean/-/boolean-3.0.4.tgz";
+ sha512 = "5pyOr+w2LNN72F2mAq6J0ckHUfJYSgRKma7e/wlcMMhgOLV9OI0ERhERYXxUqo+dPyVxcbXKy9n+wg13+LpNnA==";
};
};
"boom-2.10.1" = {
@@ -12910,6 +12937,15 @@ let
sha1 = "b4a0a5a839a406454af0fe05a8b91a7a766a54e2";
};
};
+ "bottleneck-2.19.5" = {
+ name = "bottleneck";
+ packageName = "bottleneck";
+ version = "2.19.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/bottleneck/-/bottleneck-2.19.5.tgz";
+ sha512 = "VHiNCbI1lKdl44tGrhNfU3lup0Tj/ZBMJB5/2ZbNXRCPuRCO7ed2mgcK4r17y+KB2EfuYuRaVlwNbAeaWGSpbw==";
+ };
+ };
"boundary-1.0.1" = {
name = "boundary";
packageName = "boundary";
@@ -13297,13 +13333,13 @@ let
sha512 = "HI4lPveGKUR0x2StIz+2FXfDk9SfVMrxn6PLh1JeGUwcuoDkdKZebWiyLRJ68iIPDpMI4JLVDf7S7XzslgWOhw==";
};
};
- "browserslist-4.16.5" = {
+ "browserslist-4.16.6" = {
name = "browserslist";
packageName = "browserslist";
- version = "4.16.5";
+ version = "4.16.6";
src = fetchurl {
- url = "https://registry.npmjs.org/browserslist/-/browserslist-4.16.5.tgz";
- sha512 = "C2HAjrM1AI/djrpAUU/tr4pml1DqLIzJKSLDBXBrNErl9ZCCTXdhwxdJjYc16953+mBWf7Lw+uUJgpgb8cN71A==";
+ url = "https://registry.npmjs.org/browserslist/-/browserslist-4.16.6.tgz";
+ sha512 = "Wspk/PqO+4W9qp5iUTJsa1B/QrYn1keNCcEP5OvP7WBwT4KaDly0uONYmC6Xa3Z5IqnUgS0KcgLYu1l74x0ZXQ==";
};
};
"brq-0.1.8" = {
@@ -13936,13 +13972,13 @@ let
sha512 = "a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==";
};
};
- "cacache-15.0.6" = {
+ "cacache-15.2.0" = {
name = "cacache";
packageName = "cacache";
- version = "15.0.6";
+ version = "15.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/cacache/-/cacache-15.0.6.tgz";
- sha512 = "g1WYDMct/jzW+JdWEyjaX2zoBkZ6ZT9VpOyp2I/VMtDsNLffNat3kqPFfi1eDRSK9/SuKGyORDHcQMcPF8sQ/w==";
+ url = "https://registry.npmjs.org/cacache/-/cacache-15.2.0.tgz";
+ sha512 = "uKoJSHmnrqXgthDFx/IU6ED/5xd+NNGe+Bb+kLZy7Ku4P+BaiWEUflAKPZ7eAzsYGcsAGASJZsybXp+quEcHTw==";
};
};
"cache-base-1.0.1" = {
@@ -14251,22 +14287,22 @@ let
sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==";
};
};
- "caniuse-lite-1.0.30001214" = {
+ "caniuse-lite-1.0.30001230" = {
name = "caniuse-lite";
packageName = "caniuse-lite";
- version = "1.0.30001214";
+ version = "1.0.30001230";
src = fetchurl {
- url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001214.tgz";
- sha512 = "O2/SCpuaU3eASWVaesQirZv1MSjUNOvmugaD8zNSJqw6Vv5SGwoOpA9LJs3pNPfM745nxqPvfZY3MQKY4AKHYg==";
+ url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001230.tgz";
+ sha512 = "5yBd5nWCBS+jWKTcHOzXwo5xzcj4ePE/yjtkZyUV1BTUmrBaA9MRGC+e7mxnqXSA90CmCA8L3eKLaSUkt099IQ==";
};
};
- "canvas-2.7.0" = {
+ "canvas-2.8.0" = {
name = "canvas";
packageName = "canvas";
- version = "2.7.0";
+ version = "2.8.0";
src = fetchurl {
- url = "https://registry.npmjs.org/canvas/-/canvas-2.7.0.tgz";
- sha512 = "pzCxtkHb+5su5MQjTtepMDlIOtaXo277x0C0u3nMOxtkhTyQ+h2yNKhlROAaDllWgRyePAUitC08sXw26Eb6aw==";
+ url = "https://registry.npmjs.org/canvas/-/canvas-2.8.0.tgz";
+ sha512 = "gLTi17X8WY9Cf5GZ2Yns8T5lfBOcGgFehDFb+JQwDqdOoBOcECS9ZWMEAqMSVcMYwXD659J8NyzjRY/2aE+C2Q==";
};
};
"caporal-1.4.0" = {
@@ -14359,13 +14395,13 @@ let
sha1 = "a9193b1a5448b8cb9a0415bd021c8811ed7b0544";
};
};
- "catharsis-0.8.11" = {
+ "catharsis-0.9.0" = {
name = "catharsis";
packageName = "catharsis";
- version = "0.8.11";
+ version = "0.9.0";
src = fetchurl {
- url = "https://registry.npmjs.org/catharsis/-/catharsis-0.8.11.tgz";
- sha512 = "a+xUyMV7hD1BrDQA/3iPV7oc+6W26BgVJO05PGEoatMyIuPScQKsde6i3YorWX1qs+AZjnJ18NqdKoCtKiNh1g==";
+ url = "https://registry.npmjs.org/catharsis/-/catharsis-0.9.0.tgz";
+ sha512 = "prMTQVpcns/tzFgFVkVp6ak6RykZyWb3gu8ckUpd6YkTlacOd3DXGJjIpD4Q6zJirizvaiAjSSHlOsA+6sNh2A==";
};
};
"caw-2.0.1" = {
@@ -14413,13 +14449,13 @@ let
sha512 = "G6SIJSg6mxeEzWEWNY8NAn/jqysTPegV79mOQ6eYj1uyKYggyzP5MzuWt8fKmYShM5BTDadnCRajwDnku9LZeQ==";
};
};
- "cdktf-0.3.0" = {
+ "cdktf-0.4.0" = {
name = "cdktf";
packageName = "cdktf";
- version = "0.3.0";
+ version = "0.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/cdktf/-/cdktf-0.3.0.tgz";
- sha512 = "+Nk6eKVMjcnIlu5KPZ02vo2VuD1B+wFydGS00BvvpwDjymhNnMTc5ADjPtGhwpi067i30j/HCFRHDKG04dgVbg==";
+ url = "https://registry.npmjs.org/cdktf/-/cdktf-0.4.0.tgz";
+ sha512 = "P6KRqGokkAVRZdT2+fXfEdQszpOXrJa/EuNZr0WPcIrfTVfjL6HNrHyuP1HWUvJRzlcbG5ZZ3+8Uk4oFS9IXvA==";
};
};
"center-align-0.1.3" = {
@@ -14782,6 +14818,15 @@ let
sha512 = "hjx1XE1M/D5pAtMgvWwE21QClmAEeGHOIDfycgmndisdNgI6PE1cGRQkMGBcsbUbmEQyWu5PJLUcAOjtQS8DWw==";
};
};
+ "cheerio-1.0.0-rc.9" = {
+ name = "cheerio";
+ packageName = "cheerio";
+ version = "1.0.0-rc.9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.9.tgz";
+ sha512 = "QF6XVdrLONO6DXRF5iaolY+odmhj2CLj+xzNod7INPWMi/x9X4SOylH0S/vaPpX+AUU6t04s34SQNh7DbkuCng==";
+ };
+ };
"cheerio-select-1.4.0" = {
name = "cheerio-select";
packageName = "cheerio-select";
@@ -14818,6 +14863,15 @@ let
sha512 = "0UQ55f51JBkOFa+fvR76ywRzxiPwQS3Xe8oe5bZRphpv+dIMeerW5Zn5e4cUy4COJwVtJyU0R79RMnw+aCqmGA==";
};
};
+ "child_process-1.0.2" = {
+ name = "child_process";
+ packageName = "child_process";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/child_process/-/child_process-1.0.2.tgz";
+ sha1 = "b1f7e7fc73d25e7fd1d455adc94e143830182b5a";
+ };
+ };
"chloride-2.4.1" = {
name = "chloride";
packageName = "chloride";
@@ -14908,13 +14962,13 @@ let
sha512 = "bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==";
};
};
- "chroma-js-2.1.1" = {
+ "chroma-js-2.1.2" = {
name = "chroma-js";
packageName = "chroma-js";
- version = "2.1.1";
+ version = "2.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/chroma-js/-/chroma-js-2.1.1.tgz";
- sha512 = "gYc5/Dooshun2OikK7oY/hYnoEiZ0dxqRpXosEdYRYm505vU5mRsHFqIW062C9nMtr32DVErP6mlxuepo2kNkw==";
+ url = "https://registry.npmjs.org/chroma-js/-/chroma-js-2.1.2.tgz";
+ sha512 = "ri/ouYDWuxfus3UcaMxC1Tfp3IE9K5iQzxc2hSxbBRVNQFut1UuGAsZmiAf2mOUubzGJwgMSv9lHg+XqLaz1QQ==";
};
};
"chrome-dgram-3.0.6" = {
@@ -15034,13 +15088,13 @@ let
sha512 = "5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==";
};
};
- "ci-info-3.1.1" = {
+ "ci-info-3.2.0" = {
name = "ci-info";
packageName = "ci-info";
- version = "3.1.1";
+ version = "3.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/ci-info/-/ci-info-3.1.1.tgz";
- sha512 = "kdRWLBIJwdsYJWYJFtAFFYxybguqeF91qpZaggjG5Nf8QKdizFG2hjqvaTXbxFIcYbSaD74KpAXv6BSm17DHEQ==";
+ url = "https://registry.npmjs.org/ci-info/-/ci-info-3.2.0.tgz";
+ sha512 = "dVqRX7fLUm8J6FgHJ418XuIgDLZDkYcDFTeL6TA2gt5WlIZUQrrH6EZrNClwT/H0FateUsZkGIOPRrLbP+PR9A==";
};
};
"cint-8.2.1" = {
@@ -15907,13 +15961,13 @@ let
sha512 = "3WQV/Fpa77nvzjUlc+0u53uIroJyyMB2Qwl++aXpAiDIsrsiAQq4uCURwdRBRX+eLkOTIAmT0L4qna3T7+2pUg==";
};
};
- "codemaker-1.29.0" = {
+ "codemaker-1.30.0" = {
name = "codemaker";
packageName = "codemaker";
- version = "1.29.0";
+ version = "1.30.0";
src = fetchurl {
- url = "https://registry.npmjs.org/codemaker/-/codemaker-1.29.0.tgz";
- sha512 = "dNUTiOhxNYB7MV75bLLCie1gr0SUh6wEOPc5OyZob4mLj51OETYIeRYILEiz39QVKLRx6YSbKoCY/S4PqQ0PNQ==";
+ url = "https://registry.npmjs.org/codemaker/-/codemaker-1.30.0.tgz";
+ sha512 = "yntR55JhhVlZTfR4CPV6IrCULovPDrk3z0yQR7/ygEtNxEOQrHhX17djJ0rVmIwCJUawv+ODTJ1ipJY9CbxJQw==";
};
};
"codepage-1.4.0" = {
@@ -16627,15 +16681,6 @@ let
sha512 = "eVw6n7CnEMFzc3duyFVrQEuY1BlHR3rYsSztyG32ibGMW722i3C6IizEGMFmfMU+A+fALvBIwxN3czffTcdA+Q==";
};
};
- "compress-commons-3.0.0" = {
- name = "compress-commons";
- packageName = "compress-commons";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/compress-commons/-/compress-commons-3.0.0.tgz";
- sha512 = "FyDqr8TKX5/X0qo+aVfaZ+PVmNJHJeckFBlq8jZGSJOgnynhfifoyl24qaqdUdDIBe0EVTHByN6NAkqYvE/2Xg==";
- };
- };
"compress-commons-4.1.0" = {
name = "compress-commons";
packageName = "compress-commons";
@@ -16708,13 +16753,13 @@ let
sha512 = "4gEjHJFT9e+2W/77h/DS5SGUgwDaOwprX8L/gl5+3ixnzkVJJsZWDSelmN3Oilw3LNDZjZV0yqH1hLG3k6nghg==";
};
};
- "concordance-4.0.0" = {
+ "concordance-5.0.4" = {
name = "concordance";
packageName = "concordance";
- version = "4.0.0";
+ version = "5.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/concordance/-/concordance-4.0.0.tgz";
- sha512 = "l0RFuB8RLfCS0Pt2Id39/oCPykE01pyxgAFypWTlaGRgvLkZrtczZ8atEHpTeEIW+zYWXTBuA9cCSeEOScxReQ==";
+ url = "https://registry.npmjs.org/concordance/-/concordance-5.0.4.tgz";
+ sha512 = "OAcsnTEYu1ARJqWVGwf4zh4JDfHZEaSNlNccFmt8YjB2l/n19/PF2viLINHc57vO4FKIAFl2FWASIGZZWZ2Kxw==";
};
};
"conf-1.4.0" = {
@@ -16726,6 +16771,15 @@ let
sha512 = "bzlVWS2THbMetHqXKB8ypsXN4DQ/1qopGwNJi1eYbpwesJcd86FBjFciCQX/YwAhp9bM7NVnPFqZ5LpV7gP0Dg==";
};
};
+ "conf-10.0.1" = {
+ name = "conf";
+ packageName = "conf";
+ version = "10.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/conf/-/conf-10.0.1.tgz";
+ sha512 = "QClEoNcruwBL84QgMEPHibL3ERxWIrRKhbjJKG1VsFBadm5QpS0jsu4QjY/maxUvhyAKXeyrs+ws+lC6PajnEg==";
+ };
+ };
"conf-6.2.4" = {
name = "conf";
packageName = "conf";
@@ -16744,15 +16798,6 @@ let
sha512 = "r8/HEoWPFn4CztjhMJaWNAe5n+gPUCSaJ0oufbqDLFKsA1V8JjAG7G+p0pgoDFAws9Bpk2VtVLLXqOBA7WxLeg==";
};
};
- "conf-9.0.2" = {
- name = "conf";
- packageName = "conf";
- version = "9.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/conf/-/conf-9.0.2.tgz";
- sha512 = "rLSiilO85qHgaTBIIHQpsv8z+NnVfZq3cKuYNCXN1AOqPzced0GWZEe/A517VldRLyQYXUMyV+vszavE2jSAqw==";
- };
- };
"config-1.31.0" = {
name = "config";
packageName = "config";
@@ -17005,15 +17050,6 @@ let
sha1 = "6874f1e935fca99d048caeaaad9a0aeb020bcce0";
};
};
- "contains-path-0.1.0" = {
- name = "contains-path";
- packageName = "contains-path";
- version = "0.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/contains-path/-/contains-path-0.1.0.tgz";
- sha1 = "fe8cf184ff6670b6baef01a9d4861a5cbec4120a";
- };
- };
"content-disposition-0.5.2" = {
name = "content-disposition";
packageName = "content-disposition";
@@ -17060,22 +17096,22 @@ let
sha1 = "0e790b3abfef90f6ecb77ae8585db9099caf7578";
};
};
- "contentful-management-7.17.1" = {
+ "contentful-management-7.22.4" = {
name = "contentful-management";
packageName = "contentful-management";
- version = "7.17.1";
+ version = "7.22.4";
src = fetchurl {
- url = "https://registry.npmjs.org/contentful-management/-/contentful-management-7.17.1.tgz";
- sha512 = "t2stBJNvvY347d84GuNoHxPvPMGKQHAIC/2CwEL0y47yas+30A4jkbTugqermgZS2l52gnasjo6xBTE27Rqb0w==";
+ url = "https://registry.npmjs.org/contentful-management/-/contentful-management-7.22.4.tgz";
+ sha512 = "nwFWfaaIQGveN9bAEZ6IpQjWeZlDgse1SXvgdR/D3mxTUYqDlyQv1sIqst+tcgd09zF4TuEKgF0e6Xmc0X1XhQ==";
};
};
- "contentful-sdk-core-6.7.0" = {
+ "contentful-sdk-core-6.8.0" = {
name = "contentful-sdk-core";
packageName = "contentful-sdk-core";
- version = "6.7.0";
+ version = "6.8.0";
src = fetchurl {
- url = "https://registry.npmjs.org/contentful-sdk-core/-/contentful-sdk-core-6.7.0.tgz";
- sha512 = "+b8UXVE249Z6WzMLXvsu3CIvN/s5xXRZ9o+zY7zDdPkIYBMW15xcs9N2ATI6ncmc+s1uj4XZij/2skflletHiw==";
+ url = "https://registry.npmjs.org/contentful-sdk-core/-/contentful-sdk-core-6.8.0.tgz";
+ sha512 = "X45uNrcbQ2qY2p4G/Wx2EFUdnLnoDXjw29i+d0JVTUXqCG58p3q4GHuAPzTX+uafJL4h0ZY2xPOn4nvJ83eRBQ==";
};
};
"continuable-1.1.8" = {
@@ -17483,13 +17519,13 @@ let
sha512 = "Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==";
};
};
- "core-js-3.11.0" = {
+ "core-js-3.13.0" = {
name = "core-js";
packageName = "core-js";
- version = "3.11.0";
+ version = "3.13.0";
src = fetchurl {
- url = "https://registry.npmjs.org/core-js/-/core-js-3.11.0.tgz";
- sha512 = "bd79DPpx+1Ilh9+30aT5O1sgpQd4Ttg8oqkqi51ZzhedMM1omD2e6IOF48Z/DzDCZ2svp49tN/3vneTK6ZBkXw==";
+ url = "https://registry.npmjs.org/core-js/-/core-js-3.13.0.tgz";
+ sha512 = "iWDbiyha1M5vFwPFmQnvRv+tJzGbFAm6XimJUT0NgHYW3xZEs1SkCAcasWSVFxpI2Xb/V1DDJckq3v90+bQnog==";
};
};
"core-js-3.8.3" = {
@@ -17501,22 +17537,22 @@ let
sha512 = "KPYXeVZYemC2TkNEkX/01I+7yd+nX3KddKwZ1Ww7SKWdI2wQprSgLmrTddT8nw92AjEklTsPBoSdQBhbI1bQ6Q==";
};
};
- "core-js-compat-3.11.0" = {
+ "core-js-compat-3.13.0" = {
name = "core-js-compat";
packageName = "core-js-compat";
- version = "3.11.0";
+ version = "3.13.0";
src = fetchurl {
- url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.11.0.tgz";
- sha512 = "3wsN9YZJohOSDCjVB0GequOyHax8zFiogSX3XWLE28M1Ew7dTU57tgHjIylSBKSIouwmLBp3g61sKMz/q3xEGA==";
+ url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.13.0.tgz";
+ sha512 = "jhbI2zpVskgfDC9mGRaDo1gagd0E0i/kYW0+WvibL/rafEHKAHO653hEXIxJHqRlRLITluXtRH3AGTL5qJmifQ==";
};
};
- "core-js-pure-3.11.0" = {
+ "core-js-pure-3.13.0" = {
name = "core-js-pure";
packageName = "core-js-pure";
- version = "3.11.0";
+ version = "3.13.0";
src = fetchurl {
- url = "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.11.0.tgz";
- sha512 = "PxEiQGjzC+5qbvE7ZIs5Zn6BynNeZO9zHhrrWmkRff2SZLq0CE/H5LuZOJHhmOQ8L38+eMzEHAmPYWrUtDfuDQ==";
+ url = "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.13.0.tgz";
+ sha512 = "7VTvXbsMxROvzPAVczLgfizR8CyYnvWPrb1eGrtlZAJfjQWEHLofVfCKljLHdpazTfpaziRORwUH/kfGDKvpdA==";
};
};
"core-util-is-1.0.2" = {
@@ -17528,13 +17564,13 @@ let
sha1 = "b5fd54220aa2bc5ab57aab7140c940754503c1a7";
};
};
- "core_d-3.0.0" = {
+ "core_d-3.2.0" = {
name = "core_d";
packageName = "core_d";
- version = "3.0.0";
+ version = "3.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/core_d/-/core_d-3.0.0.tgz";
- sha512 = "6DM/spZ6j+Yha93TMdK+uz/ws82eDcYefPv2dKZBlMT5mFoJNG+zNPaqSpb5xFvrZh90KFXdSuau1Z+Jql2Tsg==";
+ url = "https://registry.npmjs.org/core_d/-/core_d-3.2.0.tgz";
+ sha512 = "waKkgHU2P19huhuMjCqCDWTYjxCIHoB+nnYjI7pVMUOC1giWxMNDrXkPw9QjWY+PWCFm49bD3wA/J+c7BGZ+og==";
};
};
"cors-2.8.5" = {
@@ -17672,6 +17708,15 @@ let
sha1 = "f4486b9bf0a12df83c3fca14e31e030fdabd9454";
};
};
+ "crc-3.6.0" = {
+ name = "crc";
+ packageName = "crc";
+ version = "3.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/crc/-/crc-3.6.0.tgz";
+ sha512 = "K9CVP4+ugmpRvZidsumVVL1swX7t0cqYrLhT+5rAp7/S3TjiEtpovD8TISzy+3moanm6v6/cbXOzE6JbzB+siw==";
+ };
+ };
"crc-3.8.0" = {
name = "crc";
packageName = "crc";
@@ -17726,13 +17771,13 @@ let
sha1 = "06be7abef947a3f14a30fd610671d401bca8b7b6";
};
};
- "create-gatsby-1.3.0" = {
+ "create-gatsby-1.6.0" = {
name = "create-gatsby";
packageName = "create-gatsby";
- version = "1.3.0";
+ version = "1.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/create-gatsby/-/create-gatsby-1.3.0.tgz";
- sha512 = "c78VG3AIqUg/sJCvxzFL5tGwO8MsDICRvyQ/FXS81Kf/QTr0ON9VvDjodEiM9AmtcyU5vRnM/GspEt1YfHo38A==";
+ url = "https://registry.npmjs.org/create-gatsby/-/create-gatsby-1.6.0.tgz";
+ sha512 = "mNPBiTZ9aH24I2YInaiBoXDjPgibsystLsXXWpM5miIJpA6rZrJSRtHVGfXUxZXsKHLc/at2vNrFQbsVue3Nyg==";
};
};
"create-graphback-1.0.1" = {
@@ -17978,6 +18023,15 @@ let
sha512 = "oUnjmWpy0niI3x/mPL8dVEI1l7MnG3+HHyRPHf+YFSbK+svOhXpmSOcDURUh2aOCgl2grzrOPt1nHLuCVFULLw==";
};
};
+ "css-3.0.0" = {
+ name = "css";
+ packageName = "css";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/css/-/css-3.0.0.tgz";
+ sha512 = "DG9pFfwOrzc+hawpmqX/dHYHJG+Bsdb0klhyi1sDneOgGOXy9wQIC8hzyVp1e4NRYDBdxcylvywPkkXCHAzTyQ==";
+ };
+ };
"css-b64-images-0.2.5" = {
name = "css-b64-images";
packageName = "css-b64-images";
@@ -18194,13 +18248,13 @@ let
sha512 = "teijzG7kwYfNVsUh2H/YN62xW3KK9YhXEgSlbxMlcyjPNvdKJqFx5lrwlJgoFP1ZHlB89iGDlo/JyshKeRhv5A==";
};
};
- "css-what-5.0.0" = {
+ "css-what-5.0.1" = {
name = "css-what";
packageName = "css-what";
- version = "5.0.0";
+ version = "5.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/css-what/-/css-what-5.0.0.tgz";
- sha512 = "qxyKHQvgKwzwDWC/rGbT821eJalfupxYW2qbSJSAtdSTimsr/MlaGONoNLllaUPZWf8QnbcKM/kPVYUQuEKAFA==";
+ url = "https://registry.npmjs.org/css-what/-/css-what-5.0.1.tgz";
+ sha512 = "FYDTSHb/7KXsWICVsxdmiExPjCfRC4qRFBdVwv7Ax9hMnvMmEjP9RfxTEZ3qPZGmADDn2vAKSo9UcN1jKVYscg==";
};
};
"cssauron-1.4.0" = {
@@ -19004,15 +19058,6 @@ let
sha512 = "e/6jXeCP7/ptlAM48clmX4xTZc5Ek6T6kagS7Oz2HrYSdqcLZFLqpAfh7ldbZRFfxCZVyh61NEPR08UQRVxJzQ==";
};
};
- "damerau-levenshtein-1.0.6" = {
- name = "damerau-levenshtein";
- packageName = "damerau-levenshtein";
- version = "1.0.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.6.tgz";
- sha512 = "JVrozIeElnj3QzfUIt8tB8YMluBJom4Vw9qTPpjGYQ9fYlB3D/rb6OordUxf3xeFB35LKWs0xqcO5U6ySvBtug==";
- };
- };
"dargs-7.0.0" = {
name = "dargs";
packageName = "dargs";
@@ -19238,13 +19283,13 @@ let
sha1 = "eaf439fd4d4848ad74e5cc7dbef200672b9e345b";
};
};
- "date-time-2.1.0" = {
+ "date-time-3.1.0" = {
name = "date-time";
packageName = "date-time";
- version = "2.1.0";
+ version = "3.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/date-time/-/date-time-2.1.0.tgz";
- sha512 = "/9+C44X7lot0IeiyfgJmETtRMhBidBYM2QFFIkGa0U1k+hSyY87Nw7PY3eDqpvCBm7I3WCSfPeZskW/YYq6m4g==";
+ url = "https://registry.npmjs.org/date-time/-/date-time-3.1.0.tgz";
+ sha512 = "uqCUKXE5q1PNBXjPqvwhwJf9SwMoAHBgWJ6DcrnS5o+W2JOiIILl0JEdVD8SGujrNS02GGxgwAg2PN2zONgtjg==";
};
};
"dateformat-2.2.0" = {
@@ -19274,13 +19319,13 @@ let
sha512 = "OD0TZ+B7yP7ZgpJf5K2DIbj3FZvFvxgFUuaqA/V5zTjAtAAXZ1E8bktHxmAGs4x5b7PflqA9LeQ84Og7wYtF7Q==";
};
};
- "dayjs-1.10.4" = {
+ "dayjs-1.10.5" = {
name = "dayjs";
packageName = "dayjs";
- version = "1.10.4";
+ version = "1.10.5";
src = fetchurl {
- url = "https://registry.npmjs.org/dayjs/-/dayjs-1.10.4.tgz";
- sha512 = "RI/Hh4kqRc1UKLOAf/T5zdMMX5DQIlDxwUe3wSyMMnEbGunnpENCdbUgM+dW7kXidZqCttBrmw7BhN4TMddkCw==";
+ url = "https://registry.npmjs.org/dayjs/-/dayjs-1.10.5.tgz";
+ sha512 = "BUFis41ikLz+65iH6LHQCDm4YPMj5r1YFLdupPIyM4SGcXMmtiLQ7U37i+hGS8urIuqe7I/ou3IS1jVc4nbN4g==";
};
};
"dayjs-1.8.36" = {
@@ -20219,13 +20264,13 @@ let
sha1 = "3871cc0a6a002e8c3e5b3cf7f336264675f06b9d";
};
};
- "detect-indent-6.0.0" = {
+ "detect-indent-6.1.0" = {
name = "detect-indent";
packageName = "detect-indent";
- version = "6.0.0";
+ version = "6.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/detect-indent/-/detect-indent-6.0.0.tgz";
- sha512 = "oSyFlqaTHCItVRGK5RmrmjB+CmaMOW7IaNA/kdxqhoa6d17j/5ce9O9eWXmV/KEdRwqpQA+Vqe8a8Bsybu4YnA==";
+ url = "https://registry.npmjs.org/detect-indent/-/detect-indent-6.1.0.tgz";
+ sha512 = "reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==";
};
};
"detect-libc-1.0.3" = {
@@ -20264,13 +20309,13 @@ let
sha512 = "TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==";
};
};
- "detect-node-2.0.5" = {
+ "detect-node-2.1.0" = {
name = "detect-node";
packageName = "detect-node";
- version = "2.0.5";
+ version = "2.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/detect-node/-/detect-node-2.0.5.tgz";
- sha512 = "qi86tE6hRcFHy8jI1m2VG+LaPUR1LhqDa5G8tVjuUXmOrpuAgqsA1pN0+ldgr3aKUH+QLI9hCY/OcRYisERejw==";
+ url = "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz";
+ sha512 = "T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==";
};
};
"detect-port-1.3.0" = {
@@ -20399,6 +20444,15 @@ let
sha512 = "xd4D8kHQtB0KtWW0c9xBZD5LVtm9chkMOfs/3Yn01RhT/sFIsVtzTtypfKoFfWBaL+7xCYLxjOLkhwPXaX/Kcg==";
};
};
+ "devtools-protocol-0.0.869402" = {
+ name = "devtools-protocol";
+ packageName = "devtools-protocol";
+ version = "0.0.869402";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.869402.tgz";
+ sha512 = "VvlVYY+VDJe639yHs5PHISzdWTLL3Aw8rO4cvUtwvoxFd6FHbE4OpHHcde52M6096uYYazAmd4l0o5VuFRO2WA==";
+ };
+ };
"dezalgo-1.0.3" = {
name = "dezalgo";
packageName = "dezalgo";
@@ -20507,13 +20561,13 @@ let
sha512 = "Hq8o7+6GaZeoFjtpgvRBUknSXNeJiCx7V9Fr94ZMljNiCr9n9L8H8aJqgWOQiDDGdyn29fRNcDdRVJ5fdyihfg==";
};
};
- "diff2html-3.4.3" = {
+ "diff2html-3.4.4" = {
name = "diff2html";
packageName = "diff2html";
- version = "3.4.3";
+ version = "3.4.4";
src = fetchurl {
- url = "https://registry.npmjs.org/diff2html/-/diff2html-3.4.3.tgz";
- sha512 = "ISnQ+aIZWyRsD6F/VZUoeXC3n54rT5tftHPJBZhbYzCDrJfTuiZMvzSY34uoN3xJ/ookMDn0FDs3hc67DmwEyA==";
+ url = "https://registry.npmjs.org/diff2html/-/diff2html-3.4.4.tgz";
+ sha512 = "yAvhx2GbzzWCAWTepQJrdIPyrjL/29A5UepSAPwnHvwVB41N9oAMshonZmulrFFAFkDN8u9OHKKf/p3R06xuvQ==";
};
};
"diff3-0.0.3" = {
@@ -20561,13 +20615,13 @@ let
sha512 = "zBiL4ALDmviHdoLC0g0G6wVme5bwAow9WfhcZLLopXCAWgg3AEf7RYTs2xugszIGulRHzEVDF/SHl9oyQU07Pw==";
};
};
- "dijkstrajs-1.0.1" = {
+ "dijkstrajs-1.0.2" = {
name = "dijkstrajs";
packageName = "dijkstrajs";
- version = "1.0.1";
+ version = "1.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/dijkstrajs/-/dijkstrajs-1.0.1.tgz";
- sha1 = "d3cd81221e3ea40742cfcde556d4e99e98ddc71b";
+ url = "https://registry.npmjs.org/dijkstrajs/-/dijkstrajs-1.0.2.tgz";
+ sha512 = "QV6PMaHTCNmKSeP6QoXhVTw9snc9VD8MulTT0Bd99Pacp4SS1cjcrYPgBPmibqKVtMJJfqC6XvOXgPMEEPH/fg==";
};
};
"dir-glob-2.0.0" = {
@@ -20732,13 +20786,13 @@ let
sha1 = "5d66629b3c0e6a5eb0e14f0ae701d05f6ea46673";
};
};
- "dns-packet-1.3.1" = {
+ "dns-packet-1.3.4" = {
name = "dns-packet";
packageName = "dns-packet";
- version = "1.3.1";
+ version = "1.3.4";
src = fetchurl {
- url = "https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.1.tgz";
- sha512 = "0UxfQkMhYAUaZI+xrNZOz/as5KgDU0M/fQ9b6SpkyLbk3GEswDi6PADJVaYJradtRVsRIlF1zLyOodbcTCDzUg==";
+ url = "https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.4.tgz";
+ sha512 = "BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA==";
};
};
"dns-packet-4.2.0" = {
@@ -20750,6 +20804,15 @@ let
sha512 = "bn1AKpfkFbm0MIioOMHZ5qJzl2uypdBwI4nYNsqvhjsegBhcKJUlCrMPWLx6JEezRjxZmxhtIz/FkBEur2l8Cw==";
};
};
+ "dns-packet-5.2.4" = {
+ name = "dns-packet";
+ packageName = "dns-packet";
+ version = "5.2.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dns-packet/-/dns-packet-5.2.4.tgz";
+ sha512 = "vgu5Bx5IV8mXmh/9cn1lzn+J7okFlXe1vBRp+kCBJXg1nBED6Z/Q4e+QaDxQRSozMr14p/VQmdXwsf/I2wGjUA==";
+ };
+ };
"dns-socket-3.0.0" = {
name = "dns-socket";
packageName = "dns-socket";
@@ -20840,15 +20903,6 @@ let
sha512 = "WfJEuXWdVdiarhxJgRlZ9bkMO/9un6dZDz+u3z6AYEXfsH2XRwYqdIvyOqFzaDDP0Hc6pR5rb9FJRSKyo+NuxA==";
};
};
- "doctrine-1.5.0" = {
- name = "doctrine";
- packageName = "doctrine";
- version = "1.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/doctrine/-/doctrine-1.5.0.tgz";
- sha1 = "379dce730f6166f76cefa4e6707a159b02c5a6fa";
- };
- };
"doctrine-2.1.0" = {
name = "doctrine";
packageName = "doctrine";
@@ -20930,13 +20984,13 @@ let
sha512 = "n6kZFH/KlCrqs/1GHMOd5i2fd/beQHuehKdWvNNffbGHTr/almdhuVvTVFb3V7fglz+nC50fFusu3lY33h12pA==";
};
};
- "dom-serializer-1.3.1" = {
+ "dom-serializer-1.3.2" = {
name = "dom-serializer";
packageName = "dom-serializer";
- version = "1.3.1";
+ version = "1.3.2";
src = fetchurl {
- url = "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.3.1.tgz";
- sha512 = "Pv2ZluG5ife96udGgEDovOOOA5UELkltfJpnIExPrAk1LTvecolUGn6lIaoLh86d83GiB86CjzciMd9BuRB71Q==";
+ url = "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.3.2.tgz";
+ sha512 = "5c54Bk5Dw4qAxNOI1pFEizPSjVsx5+bpJKmL2kPn8JhBUq2q09tTCa3mjijun2NfK78NMouDYNMBkOrPZiS+ig==";
};
};
"dom-storage-2.1.0" = {
@@ -21065,13 +21119,13 @@ let
sha512 = "3VdM/SXBZX2omc9JF9nOPCtDaYQ67BGp5CoLpIQlO2KCAPETs8TcDHacF26jXadGbvUteZzRTeos2fhID5+ucQ==";
};
};
- "dompurify-2.2.7" = {
+ "dompurify-2.2.8" = {
name = "dompurify";
packageName = "dompurify";
- version = "2.2.7";
+ version = "2.2.8";
src = fetchurl {
- url = "https://registry.npmjs.org/dompurify/-/dompurify-2.2.7.tgz";
- sha512 = "jdtDffdGNY+C76jvodNTu9jt5yYj59vuTUyx+wXdzcSwAGTYZDAQkQ7Iwx9zcGrA4ixC1syU4H3RZROqRxokxg==";
+ url = "https://registry.npmjs.org/dompurify/-/dompurify-2.2.8.tgz";
+ sha512 = "9H0UL59EkDLgY3dUFjLV6IEUaHm5qp3mxSqWw7Yyx4Zhk2Jn2cmLe+CNPP3xy13zl8Bqg+0NehQzkdMoVhGRww==";
};
};
"domutils-1.4.3" = {
@@ -21155,6 +21209,15 @@ let
sha1 = "d36517fe24b7cda61fce7a5026a0024afaf5a439";
};
};
+ "dotenv-10.0.0" = {
+ name = "dotenv";
+ packageName = "dotenv";
+ version = "10.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dotenv/-/dotenv-10.0.0.tgz";
+ sha512 = "rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==";
+ };
+ };
"dotenv-5.0.1" = {
name = "dotenv";
packageName = "dotenv";
@@ -21173,13 +21236,22 @@ let
sha512 = "HygQCKUBSFl8wKQZBSemMywRWcEDNidvNbjGVyZu3nbZ8qq9ubiPoGLMdRDpfSrpkkm9BXYFkpKxxFX38o/76w==";
};
};
- "dotenv-8.2.0" = {
+ "dotenv-8.6.0" = {
name = "dotenv";
packageName = "dotenv";
- version = "8.2.0";
+ version = "8.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/dotenv/-/dotenv-8.2.0.tgz";
- sha512 = "8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw==";
+ url = "https://registry.npmjs.org/dotenv/-/dotenv-8.6.0.tgz";
+ sha512 = "IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g==";
+ };
+ };
+ "dotenv-9.0.2" = {
+ name = "dotenv";
+ packageName = "dotenv";
+ version = "9.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dotenv/-/dotenv-9.0.2.tgz";
+ sha512 = "I9OvvrHp4pIARv4+x9iuewrWycX6CcZtoAu1XrzPxc5UygMJXJZYmBsynku8IkrJwgypE5DGNjDPmPRhDCptUg==";
};
};
"dotenv-expand-5.1.0" = {
@@ -21236,15 +21308,6 @@ let
sha512 = "xqnBTVd/E+GxJVrX5/eUJiLYjCGPwMpdL+jGhGU57BvtcA7wwhtHVbXBeUk51kOpW3S7Jn3BQbN9Q1R1Km2qDQ==";
};
};
- "download-8.0.0" = {
- name = "download";
- packageName = "download";
- version = "8.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/download/-/download-8.0.0.tgz";
- sha512 = "ASRY5QhDk7FK+XrQtQyvhpDKanLluEEQtWl/J7Lxuf/b+i8RYh997QeXvL85xitrmRKVlx9c7eTrcRdq2GS4eA==";
- };
- };
"download-git-repo-1.1.0" = {
name = "download-git-repo";
packageName = "download-git-repo";
@@ -21479,15 +21542,6 @@ let
sha1 = "94a44248bb87da35db0eff7af0aa576168117f59";
};
};
- "editions-6.1.0" = {
- name = "editions";
- packageName = "editions";
- version = "6.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/editions/-/editions-6.1.0.tgz";
- sha512 = "h6nWEyIocfgho9J3sTSuhU/WoFOu1hTX75rPBebNrbF38Y9QFDjCDizYXdikHTySW7Y3mSxli8bpDz9RAtc7rA==";
- };
- };
"editor-1.0.0" = {
name = "editor";
packageName = "editor";
@@ -21587,13 +21641,13 @@ let
sha512 = "1sQ1DRtQGpglFhc3urD4olMJzt/wxlbnAAsf+WY2xHf5c50ZovivZvCXSpVgTOP9f4TzOMvelWyspyfhxQKHzQ==";
};
};
- "electron-to-chromium-1.3.720" = {
+ "electron-to-chromium-1.3.741" = {
name = "electron-to-chromium";
packageName = "electron-to-chromium";
- version = "1.3.720";
+ version = "1.3.741";
src = fetchurl {
- url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.720.tgz";
- sha512 = "B6zLTxxaOFP4WZm6DrvgRk8kLFYWNhQ5TrHMC0l5WtkMXhU5UbnvWoTfeEwqOruUSlNMhVLfYak7REX6oC5Yfw==";
+ url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.741.tgz";
+ sha512 = "4i3T0cwnHo1O4Mnp9JniEco8bZiXoqbm3PhW5hv7uu8YLg35iajYrRnNyKFaN8/8SSTskU2hYqVTeYVPceSpUA==";
};
};
"electrum-client-git://github.com/janoside/electrum-client" = {
@@ -21742,15 +21796,6 @@ let
sha512 = "MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==";
};
};
- "emoji-regex-9.2.2" = {
- name = "emoji-regex";
- packageName = "emoji-regex";
- version = "9.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz";
- sha512 = "L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==";
- };
- };
"emoji-server-1.0.0" = {
name = "emoji-server";
packageName = "emoji-server";
@@ -21958,13 +22003,13 @@ let
sha512 = "t2E9wLlssQjGw0nluF6aYyfX8LwYU8Jj0xct+pAhfWfv/YrBn6TSNtEYsgxHIfaMqfrLx07czcMg9bMN6di+3w==";
};
};
- "engine.io-5.0.0" = {
+ "engine.io-5.1.1" = {
name = "engine.io";
packageName = "engine.io";
- version = "5.0.0";
+ version = "5.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/engine.io/-/engine.io-5.0.0.tgz";
- sha512 = "BATIdDV3H1SrE9/u2BAotvsmjJg0t1P4+vGedImSs1lkFAtQdvk4Ev1y4LDiPF7BPWgXWEG+NDY+nLvW3UrMWw==";
+ url = "https://registry.npmjs.org/engine.io/-/engine.io-5.1.1.tgz";
+ sha512 = "aMWot7H5aC8L4/T8qMYbLdvKlZOdJTH54FxfdFunTGvhMx1BHkJOntWArsVfgAZVwAO9LC2sryPWRcEeUzCe5w==";
};
};
"engine.io-client-1.3.1" = {
@@ -21985,13 +22030,13 @@ let
sha512 = "iU4CRr38Fecj8HoZEnFtm2EiKGbYZcPn3cHxqNGl/tmdWRf60KhK+9vE0JeSjgnlS/0oynEfLgKbT9ALpim0sQ==";
};
};
- "engine.io-client-3.5.1" = {
+ "engine.io-client-3.5.2" = {
name = "engine.io-client";
packageName = "engine.io-client";
- version = "3.5.1";
+ version = "3.5.2";
src = fetchurl {
- url = "https://registry.npmjs.org/engine.io-client/-/engine.io-client-3.5.1.tgz";
- sha512 = "oVu9kBkGbcggulyVF0kz6BV3ganqUeqXvD79WOFKa+11oK692w1NyFkuEj4xrkFRpZhn92QOqTk4RQq5LiBXbQ==";
+ url = "https://registry.npmjs.org/engine.io-client/-/engine.io-client-3.5.2.tgz";
+ sha512 = "QEqIp+gJ/kMHeUun7f5Vv3bteRHppHH/FMBQX/esFj/fuYfjyUKWGMo3VCvIP/V8bE9KcjHmRZrhIz2Z9oNsDA==";
};
};
"engine.io-parser-1.0.6" = {
@@ -22039,13 +22084,13 @@ let
sha512 = "Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==";
};
};
- "enhanced-resolve-5.8.0" = {
+ "enhanced-resolve-5.8.2" = {
name = "enhanced-resolve";
packageName = "enhanced-resolve";
- version = "5.8.0";
+ version = "5.8.2";
src = fetchurl {
- url = "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.8.0.tgz";
- sha512 = "Sl3KRpJA8OpprrtaIswVki3cWPiPKxXuFxJXBp+zNb6s6VwNWwFRUdtmzd2ReUut8n+sCPx7QCtQ7w5wfJhSgQ==";
+ url = "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.8.2.tgz";
+ sha512 = "F27oB3WuHDzvR2DOGNTaYy0D5o0cnrv8TeI482VM4kYgQd/FT9lUQwuNsJ0oOHtBUq7eiW5ytqzp7nBFknL+GA==";
};
};
"enquirer-2.3.6" = {
@@ -22210,15 +22255,6 @@ let
sha512 = "nm1o1ncxcJvXtLJVoPl4AJFX7Bh0BhPsTC9XhCRWwdRJXp1Ud1DcGpi/6c3sUA/URmyoIc1WONNdub+/AE5vTQ==";
};
};
- "err-code-1.1.2" = {
- name = "err-code";
- packageName = "err-code";
- version = "1.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/err-code/-/err-code-1.1.2.tgz";
- sha1 = "06e0116d3028f6aef4806849eb0ea6a748ae6960";
- };
- };
"err-code-2.0.3" = {
name = "err-code";
packageName = "err-code";
@@ -22237,15 +22273,6 @@ let
sha512 = "GiaH0KJUewYok+eeY05IIgjtAe4Yltygk9Wqp1V5yVWLdhf0hYZchRjNIT9bb0mSwRcIusT3cx7PJUf3zEIfUA==";
};
};
- "errlop-4.1.0" = {
- name = "errlop";
- packageName = "errlop";
- version = "4.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/errlop/-/errlop-4.1.0.tgz";
- sha512 = "vul6gGBuVt0M2TPi1/WrcL86+Hb3Q2Tpu3TME3sbVhZrYf7J1ZMHCodI25RQKCVurh56qTfvgM0p3w5cT4reSQ==";
- };
- };
"errno-0.1.8" = {
name = "errno";
packageName = "errno";
@@ -22300,13 +22327,13 @@ let
sha512 = "rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A==";
};
};
- "es-abstract-1.18.0" = {
+ "es-abstract-1.18.3" = {
name = "es-abstract";
packageName = "es-abstract";
- version = "1.18.0";
+ version = "1.18.3";
src = fetchurl {
- url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0.tgz";
- sha512 = "LJzK7MrQa8TS0ja2w3YNLzUgJCGPdPOV1yVvezjNnS89D+VR08+Szt2mz3YB2Dck/+w5tfIq/RoUAFqJJGM2yw==";
+ url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.3.tgz";
+ sha512 = "nQIr12dxV7SSxE6r6f1l3DtAeEYdsGpps13dR0TwJg1S8gyp4ZPgy3FZcHBgbiQqnoqSTb+oC+kO4UQ0C/J8vw==";
};
};
"es-get-iterator-1.1.2" = {
@@ -22471,13 +22498,13 @@ let
sha512 = "p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==";
};
};
- "esbuild-0.11.14" = {
+ "esbuild-0.11.10" = {
name = "esbuild";
packageName = "esbuild";
- version = "0.11.14";
+ version = "0.11.10";
src = fetchurl {
- url = "https://registry.npmjs.org/esbuild/-/esbuild-0.11.14.tgz";
- sha512 = "ejheEPkqhq5y0LM9rG9e+3yDihPtqeeE4NZmG7VQiSGJ3CjO4HvPOHmhhttSksfSztjLAGo2+0/zSIvlqj4JOQ==";
+ url = "https://registry.npmjs.org/esbuild/-/esbuild-0.11.10.tgz";
+ sha512 = "XvGbf+UreVFA24Tlk6sNOqNcvF2z49XAZt4E7A4H80+yqn944QOLTTxaU0lkdYNtZKFiITNea+VxmtrfjvnLPA==";
};
};
"esc-exit-2.0.2" = {
@@ -22660,49 +22687,22 @@ let
sha512 = "k9gaHeHiFmGCDQ2rEfvULlSLruz6tgfA8DEn+rY9/oYPFFTlz55mM/Q/Rij1b2Y42jwZiK3lXvNTw6w6TXzcKQ==";
};
};
- "eslint-7.25.0" = {
+ "eslint-7.27.0" = {
name = "eslint";
packageName = "eslint";
- version = "7.25.0";
+ version = "7.27.0";
src = fetchurl {
- url = "https://registry.npmjs.org/eslint/-/eslint-7.25.0.tgz";
- sha512 = "TVpSovpvCNpLURIScDRB6g5CYu/ZFq9GfX2hLNIV4dSBKxIWojeDODvYl3t0k0VtMxYeR8OXPCFE5+oHMlGfhw==";
+ url = "https://registry.npmjs.org/eslint/-/eslint-7.27.0.tgz";
+ sha512 = "JZuR6La2ZF0UD384lcbnd0Cgg6QJjiCwhMD6eU4h/VGPcVGwawNNzKU41tgokGXnfjOOyI6QIffthhJTPzzuRA==";
};
};
- "eslint-import-resolver-node-0.3.4" = {
- name = "eslint-import-resolver-node";
- packageName = "eslint-import-resolver-node";
- version = "0.3.4";
+ "eslint-config-prettier-8.3.0" = {
+ name = "eslint-config-prettier";
+ packageName = "eslint-config-prettier";
+ version = "8.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.4.tgz";
- sha512 = "ogtf+5AB/O+nM6DIeBUNr2fuT7ot9Qg/1harBfBtaP13ekEWFQEEMP94BCB7zaNW3gyY+8SHYF00rnqYwXKWOA==";
- };
- };
- "eslint-module-utils-2.6.0" = {
- name = "eslint-module-utils";
- packageName = "eslint-module-utils";
- version = "2.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.6.0.tgz";
- sha512 = "6j9xxegbqe8/kZY8cYpcp0xhbK0EgJlg3g9mib3/miLaExuuwc3n5UEfSnU6hWMbT0FAYVvDbL9RrRgpUeQIvA==";
- };
- };
- "eslint-plugin-import-2.22.1" = {
- name = "eslint-plugin-import";
- packageName = "eslint-plugin-import";
- version = "2.22.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.22.1.tgz";
- sha512 = "8K7JjINHOpH64ozkAhpT3sd+FswIZTfMZTjdx052pnWrgRCVfp8op9tbjpAk3DdUeI/Ba4C8OjdC0r90erHEOw==";
- };
- };
- "eslint-plugin-jsx-a11y-6.4.1" = {
- name = "eslint-plugin-jsx-a11y";
- packageName = "eslint-plugin-jsx-a11y";
- version = "6.4.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.4.1.tgz";
- sha512 = "0rGPJBbwHoGNPU73/QCLP/vveMlM1b1Z9PponxO87jfr6tuH5ligXbDT6nHSSzBC8ovX2Z+BQu7Bk5D/Xgq9zg==";
+ url = "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.3.0.tgz";
+ sha512 = "BgZuLUSeKzvlL/VUjx/Yb787VQ26RU3gGjA3iiFvdsp/2bMfVIWUVP7tjxtjS0e+HP409cPlPvNkQloz8C91ew==";
};
};
"eslint-plugin-no-unsanitized-3.1.4" = {
@@ -22714,22 +22714,13 @@ let
sha512 = "WF1+eZo2Sh+bQNjZuVNwT0dA61zuJORsLh+1Sww7+O6GOPw+WPWIIRfTWNqrmaXaDMhM4SXAqYPcNlhRMiH13g==";
};
};
- "eslint-plugin-react-7.23.2" = {
- name = "eslint-plugin-react";
- packageName = "eslint-plugin-react";
- version = "7.23.2";
+ "eslint-plugin-prettier-3.4.0" = {
+ name = "eslint-plugin-prettier";
+ packageName = "eslint-plugin-prettier";
+ version = "3.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.23.2.tgz";
- sha512 = "AfjgFQB+nYszudkxRkTFu0UR1zEQig0ArVMPloKhxwlwkzaw/fBiH0QWcBBhZONlXqQC51+nfqFrkn4EzHcGBw==";
- };
- };
- "eslint-plugin-react-hooks-4.2.0" = {
- name = "eslint-plugin-react-hooks";
- packageName = "eslint-plugin-react-hooks";
- version = "4.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.2.0.tgz";
- sha512 = "623WEiZJqxR7VdxFCKLI6d6LLpwJkGPYKODnkH3D7WpOG5KM8yWueBd8TLsNAetEJNF5iJmolaAKO3F8yzyVBQ==";
+ url = "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-3.4.0.tgz";
+ sha512 = "UDK6rJT6INSfcOo545jiaOwB701uAIt2/dR7WnFQoGCVl1/EMqdANBmwUaqqQ45aXprsTGzSa39LI1PyuRBxxw==";
};
};
"eslint-plugin-vue-6.2.2" = {
@@ -22813,6 +22804,15 @@ let
sha512 = "QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ==";
};
};
+ "eslint-visitor-keys-2.1.0" = {
+ name = "eslint-visitor-keys";
+ packageName = "eslint-visitor-keys";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz";
+ sha512 = "0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==";
+ };
+ };
"esmangle-1.0.1" = {
name = "esmangle";
packageName = "esmangle";
@@ -23497,22 +23497,22 @@ let
sha512 = "8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==";
};
};
- "exegesis-2.5.6" = {
+ "exegesis-2.5.7" = {
name = "exegesis";
packageName = "exegesis";
- version = "2.5.6";
+ version = "2.5.7";
src = fetchurl {
- url = "https://registry.npmjs.org/exegesis/-/exegesis-2.5.6.tgz";
- sha512 = "e+YkH/zZTN2njiwrV8tY6tHGDsFu3LyR/YbrqdWvDZaAJ5YGWaBYyd3oX/Y26iGqQc+7jLEKLDTv2UPzjAYL8w==";
+ url = "https://registry.npmjs.org/exegesis/-/exegesis-2.5.7.tgz";
+ sha512 = "Y0gEY3hgoLa80aMUm8rhhlIW3/KWo4uqN5hKJqok2GLh3maZjRLRC+p0gj33Jw3upAOKOXeRgScT5rtRoMyxwQ==";
};
};
- "exegesis-express-2.0.0" = {
+ "exegesis-express-2.0.1" = {
name = "exegesis-express";
packageName = "exegesis-express";
- version = "2.0.0";
+ version = "2.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/exegesis-express/-/exegesis-express-2.0.0.tgz";
- sha512 = "NKvKBsBa2OvU+1BFpWbz3PzoRMhA9q7/wU2oMmQ9X8lPy/FRatADvhlkGO1zYOMgeo35k1ZLO9ZV0uIs9pPnXg==";
+ url = "https://registry.npmjs.org/exegesis-express/-/exegesis-express-2.0.1.tgz";
+ sha512 = "8ORl1YRygYGPdR+zcClMqzaU+JQuvdNIw/s0RNwYluxNecEHkDEcXFmO6A5T79p7e48KI8iXJYt6KIn4Z9z4bg==";
};
};
"exif-parser-0.1.12" = {
@@ -23614,13 +23614,13 @@ let
sha1 = "a793d3ac0cad4c6ab571e9968fbbab6cb2532929";
};
};
- "expo-pwa-0.0.74" = {
+ "expo-pwa-0.0.80" = {
name = "expo-pwa";
packageName = "expo-pwa";
- version = "0.0.74";
+ version = "0.0.80";
src = fetchurl {
- url = "https://registry.npmjs.org/expo-pwa/-/expo-pwa-0.0.74.tgz";
- sha512 = "Y3lzJl9Q+0KuYt6003eacwpfoEYzO+w2R3oBDtfwGU16KbQkm2O6zGAYluBGnlPoph+fCUmyi2mT2ucd5KSlDQ==";
+ url = "https://registry.npmjs.org/expo-pwa/-/expo-pwa-0.0.80.tgz";
+ sha512 = "AZefVqcB3OFS7yOhfOtkHANhFRTG34fAMrlDx69ERbxh0sEPI/Gv+wwYycUdmq/aYh7u8zuaoOlY9BUgMd6U6w==";
};
};
"express-2.5.11" = {
@@ -23749,6 +23749,15 @@ let
sha512 = "UbHwgqjxQZJiWRTMyhvWGvjBQduGCSBDhhZXYenziMFjxst5rMV+aJZ6hKPHZnPyHGsrqRICxtX8jtEbm/z36Q==";
};
};
+ "express-session-1.17.2" = {
+ name = "express-session";
+ packageName = "express-session";
+ version = "1.17.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/express-session/-/express-session-1.17.2.tgz";
+ sha512 = "mPcYcLA0lvh7D4Oqr5aNJFMtBMKPLl++OKKxkHzZ0U0oDq1rpKBnkR5f5vCHR26VeArlTOEF9td4x5IjICksRQ==";
+ };
+ };
"express-urlrewrite-1.4.0" = {
name = "express-urlrewrite";
packageName = "express-urlrewrite";
@@ -24127,13 +24136,13 @@ let
sha512 = "4WKW0AL5+WEqO0zWavAfYGY1qwLsBgE//DN4TTcVEN2UlINgkv9b3vm2iHicoenWKSX9mKWmGOsU/iI5IST7pQ==";
};
};
- "fast-equals-2.0.1" = {
+ "fast-equals-2.0.3" = {
name = "fast-equals";
packageName = "fast-equals";
- version = "2.0.1";
+ version = "2.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/fast-equals/-/fast-equals-2.0.1.tgz";
- sha512 = "jIHAbyu5Txdi299DitHXr4wuvw7ajz8S4xVgShJmQOUD6TovsKzvMoHoq9G8+dO6xeKWrwH3DURT+ZDKnwjSsA==";
+ url = "https://registry.npmjs.org/fast-equals/-/fast-equals-2.0.3.tgz";
+ sha512 = "0EMw4TTUxsMDpDkCg0rXor2gsg+npVrMIHbEhvD0HZyIhUX6AktC/yasm+qKwfyswd06Qy95ZKk8p2crTo0iPA==";
};
};
"fast-glob-2.2.7" = {
@@ -24208,13 +24217,13 @@ let
sha1 = "3d8a5c66883a16a30ca8643e851f19baa7797917";
};
};
- "fast-redact-3.0.0" = {
+ "fast-redact-3.0.1" = {
name = "fast-redact";
packageName = "fast-redact";
- version = "3.0.0";
+ version = "3.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/fast-redact/-/fast-redact-3.0.0.tgz";
- sha512 = "a/S/Hp6aoIjx7EmugtzLqXmcNsyFszqbt6qQ99BdG61QjBZF6shNis0BYR6TsZOQ1twYc0FN2Xdhwwbv6+KD0w==";
+ url = "https://registry.npmjs.org/fast-redact/-/fast-redact-3.0.1.tgz";
+ sha512 = "kYpn4Y/valC9MdrISg47tZOpYBNoTXKgT9GYXFpHN/jYFs+lFkPoisY+LcBODdKVMY96ATzvzsWv+ES/4Kmufw==";
};
};
"fast-safe-stringify-1.2.3" = {
@@ -24316,13 +24325,13 @@ let
sha512 = "CJ0HCB5tL5fYTEA7ToAq5+kTwd++Borf1/bifxd9iT70QcXr4MRrO3Llf8Ifs70q+SJcGHFtnIE/Nw6giCtECA==";
};
};
- "faunadb-4.0.3" = {
+ "faunadb-4.3.0" = {
name = "faunadb";
packageName = "faunadb";
- version = "4.0.3";
+ version = "4.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/faunadb/-/faunadb-4.0.3.tgz";
- sha512 = "pfXX3pwyQQfsx+wO4u8m16gQyDPJRbpjMGk5fCzq0tCT/3mPyCVlc5zTorSdBWWmLFuResP9idFrWdqo+q2IEA==";
+ url = "https://registry.npmjs.org/faunadb/-/faunadb-4.3.0.tgz";
+ sha512 = "H5ZnInUNLAvrjqDHYXmYX+S55HP8Ib85QbF/UK1fV/bz125unl7J7LbjqKvMGcREYqOvIrpQCaniK1LwAkXHTw==";
};
};
"faye-websocket-0.10.0" = {
@@ -24334,13 +24343,13 @@ let
sha1 = "4e492f8d04dfb6f89003507f6edbf2d501e7c6f4";
};
};
- "faye-websocket-0.11.3" = {
+ "faye-websocket-0.11.4" = {
name = "faye-websocket";
packageName = "faye-websocket";
- version = "0.11.3";
+ version = "0.11.4";
src = fetchurl {
- url = "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.3.tgz";
- sha512 = "D2y4bovYpzziGgbHYtGCMjlJM36vAl/y+xUyn1C+FVx8szd1E+86KwVw6XvYSzOP8iMpm1X0I4xJD+QtUb36OA==";
+ url = "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz";
+ sha512 = "CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==";
};
};
"fb-watchman-2.0.1" = {
@@ -24559,15 +24568,6 @@ let
sha512 = "uzk64HRpUZyTGZtVuvrjP0FYxzQrBf4rojot6J65YMEbwBLB0CWm0CLojVpwpmFmxcE/lkvYICgfcGozbBq6rw==";
};
};
- "file-type-11.1.0" = {
- name = "file-type";
- packageName = "file-type";
- version = "11.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/file-type/-/file-type-11.1.0.tgz";
- sha512 = "rM0UO7Qm9K7TWTtA6AShI/t7H5BPjDeGVDaNyg9BjHAj3PysKy7+8C8D137R88jnR3rFJZQB/tFgydl5sN5m7g==";
- };
- };
"file-type-14.7.1" = {
name = "file-type";
packageName = "file-type";
@@ -24577,13 +24577,13 @@ let
sha512 = "sXAMgFk67fQLcetXustxfKX+PZgHIUFn96Xld9uH8aXPdX3xOp0/jg9OdouVTvQrf7mrn+wAa4jN/y9fUOOiRA==";
};
};
- "file-type-16.3.0" = {
+ "file-type-16.5.0" = {
name = "file-type";
packageName = "file-type";
- version = "16.3.0";
+ version = "16.5.0";
src = fetchurl {
- url = "https://registry.npmjs.org/file-type/-/file-type-16.3.0.tgz";
- sha512 = "ZA0hV64611vJT42ltw0T9IDwHApQuxRdrmQZWTeDmeAUtZBBVSQW3nSQqhhW1cAgpXgqcJvm410BYHXJQ9AymA==";
+ url = "https://registry.npmjs.org/file-type/-/file-type-16.5.0.tgz";
+ sha512 = "OxgWA9tbL8N/WP00GD1z8O0MiwQKFyWRs1q+3FhjdvcGgKqwxcejyGWso3n4/IMU6DdwV+ARZ4A7TTnPkDcSiw==";
};
};
"file-type-3.9.0" = {
@@ -24694,15 +24694,6 @@ let
sha512 = "ICw7NTT6RsDp2rnYKVd8Fu4cr6ITzGy3+u4vUujPkabyaz+03F24NWEX7fs5fp+kBonlaqPH8fAO2NM+SXt/JA==";
};
};
- "filenamify-3.0.0" = {
- name = "filenamify";
- packageName = "filenamify";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/filenamify/-/filenamify-3.0.0.tgz";
- sha512 = "5EFZ//MsvJgXjBAFJ+Bh2YaCTRF/VP1YOmGrgt+KJ4SFRLjI87EIdwLLuT6wQX0I4F9W41xutobzczjsOKlI/g==";
- };
- };
"filenamify-4.1.0" = {
name = "filenamify";
packageName = "filenamify";
@@ -24712,13 +24703,13 @@ let
sha512 = "KQV/uJDI9VQgN7sHH1Zbk6+42cD6mnQ2HONzkXUfPJ+K2FC8GZ1dpewbbHw0Sz8Tf5k3EVdHVayM4DoAwWlmtg==";
};
};
- "filenamify-4.2.0" = {
+ "filenamify-4.3.0" = {
name = "filenamify";
packageName = "filenamify";
- version = "4.2.0";
+ version = "4.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/filenamify/-/filenamify-4.2.0.tgz";
- sha512 = "pkgE+4p7N1n7QieOopmn3TqJaefjdWXwEkj2XLZJLKfOgcQKkn11ahvGNgTD8mLggexLiDFQxeTs14xVU22XPA==";
+ url = "https://registry.npmjs.org/filenamify/-/filenamify-4.3.0.tgz";
+ sha512 = "hcFKyUG57yWGAzu1CMt/dPzYZuv+jAJUT85bL8mrXvNe6hWj6yEHEc4EdcgiA6Z3oi1/9wXJdZPXF2dZNgwgOg==";
};
};
"filesize-3.6.1" = {
@@ -25171,13 +25162,13 @@ let
sha512 = "jlbUu0XkbpXeXhan5xyTqVK1jmEKNxE8hpzznI3TThHTr76GiFwK0iRzhDo4KNy+S9h/KxHaqVhTP86vA6wHCg==";
};
};
- "flow-parser-0.149.0" = {
+ "flow-parser-0.152.0" = {
name = "flow-parser";
packageName = "flow-parser";
- version = "0.149.0";
+ version = "0.152.0";
src = fetchurl {
- url = "https://registry.npmjs.org/flow-parser/-/flow-parser-0.149.0.tgz";
- sha512 = "ruUVkZuM9oFQjhSsLO/OJYRYpGnuXJpTnIZmgzna6DyLFb3CLpeO27oJbWyeXaa830hmKf0JRzpcdFsFS8lmpg==";
+ url = "https://registry.npmjs.org/flow-parser/-/flow-parser-0.152.0.tgz";
+ sha512 = "qRXGE3ztuhyI2ovi4Ixwq7/GUYvKX9wmFdwBof2q5pWHteuveexFrlbwZxSonC0dWz2znA6sW+vce4RXgYLnnQ==";
};
};
"fluent-ffmpeg-2.1.2" = {
@@ -25342,13 +25333,13 @@ let
sha512 = "VjAQdSLsl6AkpZNyrQJfO7BXLo4chnStqb055bumZMbRUPpVuPN3a4ktsnRCmrFZjtMlYLkyXiR5rAs4WOpC4Q==";
};
};
- "follow-redirects-1.13.3" = {
+ "follow-redirects-1.14.1" = {
name = "follow-redirects";
packageName = "follow-redirects";
- version = "1.13.3";
+ version = "1.14.1";
src = fetchurl {
- url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.13.3.tgz";
- sha512 = "DUgl6+HDzB0iEptNQEXLx/KhTmDb8tZUHSeLqpnjpknR70H0nC2t9N73BK6fN4hOvJ84pKlIQVQ4k5FFlBedKA==";
+ url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.1.tgz";
+ sha512 = "HWqDgT7ZEkqRzBvc2s64vSZ/hfOceEol3ac/7tKwzuvEyWx3/4UegXh5oBOIotkGsObyk3xznnSRVADBgWSQVg==";
};
};
"follow-redirects-1.5.10" = {
@@ -25612,13 +25603,13 @@ let
sha512 = "wJaE62fLaB3jCYvY2ZHjZvmKK2iiLiiehX38rz5QZxtdN8fVPJDeZUiVvJrHStdTc+23LHlyZuSEKgFc0pxi2g==";
};
};
- "fp-ts-2.10.4" = {
+ "fp-ts-2.10.5" = {
name = "fp-ts";
packageName = "fp-ts";
- version = "2.10.4";
+ version = "2.10.5";
src = fetchurl {
- url = "https://registry.npmjs.org/fp-ts/-/fp-ts-2.10.4.tgz";
- sha512 = "vMTB5zNc9PnE20q145PNbkiL9P9WegwmKVOFloi/NfHnPdAlcob6I3AKqlH/9u3k3/M/GOftZhcJdBrb+NtnDA==";
+ url = "https://registry.npmjs.org/fp-ts/-/fp-ts-2.10.5.tgz";
+ sha512 = "X2KfTIV0cxIk3d7/2Pvp/pxL/xr2MV1WooyEzKtTWYSc1+52VF4YzjBTXqeOlSiZsPCxIBpDGfT9Dyo7WEY0DQ==";
};
};
"fragment-cache-0.2.1" = {
@@ -25711,15 +25702,6 @@ let
sha512 = "8S4f4WsCryNw2mJJchi46YgB6CR5Ze+4L1h8ewl9tEpL4SJ3ZO+c/bS4BWhB8bK+O3TMqhuZarTitd0S0eh2pA==";
};
};
- "fs-capacitor-6.2.0" = {
- name = "fs-capacitor";
- packageName = "fs-capacitor";
- version = "6.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/fs-capacitor/-/fs-capacitor-6.2.0.tgz";
- sha512 = "nKcE1UduoSKX27NSZlg879LdQc94OtbOsEmKMN2MBNudXREvijRKx2GEBsTMTfws+BrbkJoEuynbGSVRSpauvw==";
- };
- };
"fs-chunk-store-1.7.0" = {
name = "fs-chunk-store";
packageName = "fs-chunk-store";
@@ -25765,15 +25747,6 @@ let
sha1 = "982d6893af918e72d08dec9e8673ff2b5a8d6add";
};
};
- "fs-extra-0.23.1" = {
- name = "fs-extra";
- packageName = "fs-extra";
- version = "0.23.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/fs-extra/-/fs-extra-0.23.1.tgz";
- sha1 = "6611dba6adf2ab8dc9c69fab37cddf8818157e3d";
- };
- };
"fs-extra-0.24.0" = {
name = "fs-extra";
packageName = "fs-extra";
@@ -25810,6 +25783,15 @@ let
sha1 = "cd3ce5f7e7cb6145883fcae3191e9877f8587950";
};
};
+ "fs-extra-10.0.0" = {
+ name = "fs-extra";
+ packageName = "fs-extra";
+ version = "10.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fs-extra/-/fs-extra-10.0.0.tgz";
+ sha512 = "C5owb14u9eJwizKGdchcDUQeFtlSHHthBk8pbX9Vc1PFZrLombudjDnNns88aYslCyF6IY5SUw3Roz6xShcEIQ==";
+ };
+ };
"fs-extra-4.0.3" = {
name = "fs-extra";
packageName = "fs-extra";
@@ -26143,31 +26125,31 @@ let
sha1 = "cbed2d20a40c1f5679a35908e2b9415733e78db9";
};
};
- "gatsby-core-utils-2.3.0" = {
+ "gatsby-core-utils-2.6.0" = {
name = "gatsby-core-utils";
packageName = "gatsby-core-utils";
- version = "2.3.0";
+ version = "2.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-2.3.0.tgz";
- sha512 = "M7RlR6jL2dtkUu4AoKBoQaPTsbpByzWHc7HBgeYdwzuqbk4VuMe6K76pFDvFSNj0+LvVhWoRGHO7OEtpfb2bEA==";
+ url = "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-2.6.0.tgz";
+ sha512 = "d8a/iblc3wIrLEOWTUcoK5uYE2DrvlQmeulx6DK3NY49KD8jet8ozB6T5GA1CftsvowWeO6aaDnoWDbTxIxTRA==";
};
};
- "gatsby-recipes-0.14.0" = {
+ "gatsby-recipes-0.17.0" = {
name = "gatsby-recipes";
packageName = "gatsby-recipes";
- version = "0.14.0";
+ version = "0.17.0";
src = fetchurl {
- url = "https://registry.npmjs.org/gatsby-recipes/-/gatsby-recipes-0.14.0.tgz";
- sha512 = "f8vZtHA7mCWqLE/xxEs4gpKxfM53L4dPic6hkALMlNfg8040eu05D6YbNT3i3QLsyqpvX1vKH88SBHk7swwW8w==";
+ url = "https://registry.npmjs.org/gatsby-recipes/-/gatsby-recipes-0.17.0.tgz";
+ sha512 = "tC2xUa05zrUp77DTyQE11ILhFiqv9JYxBHhh47b7tJGiLAU1XhjxZH0uFZ109r9wEeZjxTYOYkyoiTu+0Ps4pw==";
};
};
- "gatsby-telemetry-2.3.0" = {
+ "gatsby-telemetry-2.6.0" = {
name = "gatsby-telemetry";
packageName = "gatsby-telemetry";
- version = "2.3.0";
+ version = "2.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-2.3.0.tgz";
- sha512 = "dr7pILAnEtoG9ZUyPRljSwB/fGBDM4OCoM0mGw3DYr6HFlvrsbIl7AVL4LVJIr4TrtVUrhTjC/crSw+bTzO42A==";
+ url = "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-2.6.0.tgz";
+ sha512 = "ENrhT4tkETj9Gq48d+ziiyNTX8Q8/5EyqqWvDUTCSefeHV5xpBclJ+CEnxZkmkEa/QSoBCpjws2VbxnTmRwjWA==";
};
};
"gauge-1.2.7" = {
@@ -26188,13 +26170,13 @@ let
sha1 = "2c03405c7538c39d7eb37b317022e325fb018bf7";
};
};
- "gaxios-4.2.0" = {
+ "gaxios-4.3.0" = {
name = "gaxios";
packageName = "gaxios";
- version = "4.2.0";
+ version = "4.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/gaxios/-/gaxios-4.2.0.tgz";
- sha512 = "Ms7fNifGv0XVU+6eIyL9LB7RVESeML9+cMvkwGS70xyD6w2Z80wl6RiqiJ9k1KFlJCUTQqFFc8tXmPQfSKUe8g==";
+ url = "https://registry.npmjs.org/gaxios/-/gaxios-4.3.0.tgz";
+ sha512 = "pHplNbslpwCLMyII/lHPWFQbJWOX0B3R1hwBEOvzYi1GmdKZruuEHK4N9V6f7tf1EaPYyF80mui1+344p6SmLg==";
};
};
"gaze-1.1.3" = {
@@ -26845,6 +26827,15 @@ let
sha512 = "LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==";
};
};
+ "glob-7.1.7" = {
+ name = "glob";
+ packageName = "glob";
+ version = "7.1.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz";
+ sha512 = "OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==";
+ };
+ };
"glob-base-0.3.0" = {
name = "glob-base";
packageName = "glob-base";
@@ -26881,6 +26872,15 @@ let
sha512 = "AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==";
};
};
+ "glob-parent-6.0.0" = {
+ name = "glob-parent";
+ packageName = "glob-parent";
+ version = "6.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.0.tgz";
+ sha512 = "Hdd4287VEJcZXUwv1l8a+vXC1GjOQqXe+VS30w/ypihpcnu9M1n3xeYeJu5CBpeEQj2nAab2xxz28GuA3vp4Ww==";
+ };
+ };
"glob-slash-1.0.0" = {
name = "glob-slash";
packageName = "glob-slash";
@@ -27098,13 +27098,13 @@ let
sha512 = "BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==";
};
};
- "globals-13.8.0" = {
+ "globals-13.9.0" = {
name = "globals";
packageName = "globals";
- version = "13.8.0";
+ version = "13.9.0";
src = fetchurl {
- url = "https://registry.npmjs.org/globals/-/globals-13.8.0.tgz";
- sha512 = "rHtdA6+PDBIjeEvA91rpqzEvk/k3/i7EeNQiryiWuJH0Hw9cpyJMAt2jtbAwUaRdhD+573X4vWw6IcjKPasi9Q==";
+ url = "https://registry.npmjs.org/globals/-/globals-13.9.0.tgz";
+ sha512 = "74/FduwI/JaIrr1H8e71UbDE+5x7pIPs1C2rrwC52SszOo043CsWOZEMW7o2Y58xwm9b+0RBKDxY5n2sUpEFxA==";
};
};
"globals-9.18.0" = {
@@ -27260,6 +27260,15 @@ let
sha512 = "zNvkjnJQWbFWtK7or4CtX0WMy2n5AfMVnob5ipf+AznwLxKX8KyqY9W4bzYpVh6Xjm9N21ZUbubsPheV3mA4qQ==";
};
};
+ "goldengate-10.0.4" = {
+ name = "goldengate";
+ packageName = "goldengate";
+ version = "10.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/goldengate/-/goldengate-10.0.4.tgz";
+ sha512 = "WuLSD4trXP8fN8jCpWlNMpobrf1DBYCEy/0+SVrzen6znQepM4rRCByuna1Iy1G/XsbbdFiwYBd9iSxJiwqjDQ==";
+ };
+ };
"gonzales-pe-4.3.0" = {
name = "gonzales-pe";
packageName = "gonzales-pe";
@@ -27287,13 +27296,13 @@ let
sha512 = "Q+ZjUEvLQj/lrVHF/IQwRo6p3s8Nc44Zk/DALsN+ac3T4HY/g/3rrufkgtl+nZ1TW7DNAw5cTChdVp4apUXVgQ==";
};
};
- "google-auth-library-7.0.4" = {
+ "google-auth-library-7.1.0" = {
name = "google-auth-library";
packageName = "google-auth-library";
- version = "7.0.4";
+ version = "7.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/google-auth-library/-/google-auth-library-7.0.4.tgz";
- sha512 = "o8irYyeijEiecTXeoEe8UKNEzV1X+uhR4b2oNdapDMZixypp0J+eHimGOyx5Joa3UAeokGngdtDLXtq9vDqG2Q==";
+ url = "https://registry.npmjs.org/google-auth-library/-/google-auth-library-7.1.0.tgz";
+ sha512 = "X+gbkGjnLN3HUZP2W3KBREuA603BXd80ITvL0PeS0QpyDNYz/u0pIZ7aRuGnrSuUc0grk/qxEgtVTFt1ogbP+A==";
};
};
"google-closure-compiler-js-20170910.0.1" = {
@@ -27305,13 +27314,13 @@ let
sha512 = "Vric7QFWxzHFxITZ10bmlG1H/5rhODb7hJuWyKWMD8GflpQzRmbMVqkFp3fKvN+U9tPwZItGVhkiOR+84PX3ew==";
};
};
- "google-gax-2.11.2" = {
+ "google-gax-2.14.1" = {
name = "google-gax";
packageName = "google-gax";
- version = "2.11.2";
+ version = "2.14.1";
src = fetchurl {
- url = "https://registry.npmjs.org/google-gax/-/google-gax-2.11.2.tgz";
- sha512 = "PNqXv7Oi5XBMgoMWVxLZHUidfMv7cPHrDSDXqLyEd6kY6pqFnVKC8jt2T1df4JPSc2+VLPdeo6L7X9mbdQG8Xw==";
+ url = "https://registry.npmjs.org/google-gax/-/google-gax-2.14.1.tgz";
+ sha512 = "I5RDEN7MEptrCxeHX3ht7nKFGfyjgYX4hQKI9eVMBohMzVbFSwWUndo0CcKXu8es7NhB4gt2XYLm1AHkXhtHpA==";
};
};
"google-p12-pem-3.0.3" = {
@@ -27359,15 +27368,6 @@ let
sha512 = "aWTDeNw9g+XqEZNcTjMMZSy7B7yE9toWOFYip7ofFTLleJhvZwUxxTxkTpKvF+p1SAA4VHmuEy7PiHTHyq8tJg==";
};
};
- "got-11.4.0" = {
- name = "got";
- packageName = "got";
- version = "11.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/got/-/got-11.4.0.tgz";
- sha512 = "XysJZuZNVpaQ37Oo2LV90MIkPeYITehyy1A0QzO1JwOXm8EWuEf9eeGk2XuHePvLEGnm9AVOI37bHwD6KYyBtg==";
- };
- };
"got-11.5.2" = {
name = "got";
packageName = "got";
@@ -27566,13 +27566,13 @@ let
sha512 = "MBY0wEjvcgJtZUyoqpPvOE1e5qPI0hJaa1gKTqjonSFiCsNHX2lykNjpOPcodmAgH1V06ELxhGnm9kcVzqvi/g==";
};
};
- "graphql-extensions-0.13.0" = {
+ "graphql-extensions-0.15.0" = {
name = "graphql-extensions";
packageName = "graphql-extensions";
- version = "0.13.0";
+ version = "0.15.0";
src = fetchurl {
- url = "https://registry.npmjs.org/graphql-extensions/-/graphql-extensions-0.13.0.tgz";
- sha512 = "Bb7E97nvfX4gtrIdZ/i5YFlqOd6MGzrw8ED+t4wQVraYje6NQ+8P8MHMOV2WZLfbW8zsNTx8NdnnlbsdH5siag==";
+ url = "https://registry.npmjs.org/graphql-extensions/-/graphql-extensions-0.15.0.tgz";
+ sha512 = "bVddVO8YFJPwuACn+3pgmrEg6I8iBuYLuwvxiE+lcQQ7POotVZxm2rgGw0PvVYmWWf3DT7nTVDZ5ROh/ALp8mA==";
};
};
"graphql-subscriptions-1.2.1" = {
@@ -27584,13 +27584,13 @@ let
sha512 = "95yD/tKi24q8xYa7Q9rhQN16AYj5wPbrb8tmHGM3WRc9EBmWrG/0kkMl+tQG8wcEuE9ibR4zyOM31p5Sdr2v4g==";
};
};
- "graphql-tag-2.12.3" = {
+ "graphql-tag-2.12.4" = {
name = "graphql-tag";
packageName = "graphql-tag";
- version = "2.12.3";
+ version = "2.12.4";
src = fetchurl {
- url = "https://registry.npmjs.org/graphql-tag/-/graphql-tag-2.12.3.tgz";
- sha512 = "5wJMjSvj30yzdciEuk9dPuUBUR56AqDi3xncoYQl1i42pGdSqOJrJsdb/rz5BDoy+qoGvQwABcBeF0xXY3TrKw==";
+ url = "https://registry.npmjs.org/graphql-tag/-/graphql-tag-2.12.4.tgz";
+ sha512 = "VV1U4O+9x99EkNpNmCUV5RZwq6MnK4+pGbRYWG+lA/m3uo7TSqJF81OkcOP148gFP6fzdl7JWYBrwWVTS9jXww==";
};
};
"graphql-tools-3.0.0" = {
@@ -27620,22 +27620,13 @@ let
sha512 = "J+vjof74oMlCWXSvt0DOf2APEdZOCdubEvGDUAlqH//VBYcOYsGgRW7Xzorr44LvkjiuvecWc8fChxuZZbChtg==";
};
};
- "graphql-upload-11.0.0" = {
- name = "graphql-upload";
- packageName = "graphql-upload";
- version = "11.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/graphql-upload/-/graphql-upload-11.0.0.tgz";
- sha512 = "zsrDtu5gCbQFDWsNa5bMB4nf1LpKX9KDgh+f8oL1288ijV4RxeckhVozAjqjXAfRpxOHD1xOESsh6zq8SjdgjA==";
- };
- };
- "graphql-ws-4.4.2" = {
+ "graphql-ws-4.5.2" = {
name = "graphql-ws";
packageName = "graphql-ws";
- version = "4.4.2";
+ version = "4.5.2";
src = fetchurl {
- url = "https://registry.npmjs.org/graphql-ws/-/graphql-ws-4.4.2.tgz";
- sha512 = "Cz+t1w+8+tiHIKzcz45tMwrxJpPSQ7KNjQrfN8ADAELECkkBB7aSvAgpShWz0Tne8teH/UxzJsULObLVq5eMvQ==";
+ url = "https://registry.npmjs.org/graphql-ws/-/graphql-ws-4.5.2.tgz";
+ sha512 = "kowYwIq2SEJGaHMoKlgR5fgIAyFJbEdVpwjlct22eg6uuDkJK9Irv/b1XHdrFWny8KFssTd/+dUkDpT2vX9Log==";
};
};
"gray-matter-2.1.1" = {
@@ -27692,13 +27683,13 @@ let
sha1 = "f10748cbe76af964b7c96c93c6bcc28af120c081";
};
};
- "grunt-known-options-1.1.1" = {
+ "grunt-known-options-2.0.0" = {
name = "grunt-known-options";
packageName = "grunt-known-options";
- version = "1.1.1";
+ version = "2.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/grunt-known-options/-/grunt-known-options-1.1.1.tgz";
- sha512 = "cHwsLqoighpu7TuYj5RonnEuxGVFnztcUqTqp5rXFGYL4OuPFofwC4Ycg7n9fYwvK6F5WbYgeVOwph9Crs2fsQ==";
+ url = "https://registry.npmjs.org/grunt-known-options/-/grunt-known-options-2.0.0.tgz";
+ sha512 = "GD7cTz0I4SAede1/+pAbmJRG44zFLPipVtdL9o3vqx9IEyb7b4/Y3s7r6ofI3CchR5GvYJ+8buCSioDv5dQLiA==";
};
};
"gtoken-5.2.1" = {
@@ -28205,15 +28196,6 @@ let
sha512 = "WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg==";
};
};
- "hash-wasm-4.6.0" = {
- name = "hash-wasm";
- packageName = "hash-wasm";
- version = "4.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/hash-wasm/-/hash-wasm-4.6.0.tgz";
- sha512 = "Wi96tJDftxUQciCUi2Vs/Nw8al3psRATe/FhyezrajJKCXKRHvpiFARTZuUgdlGB7825LiN+FluH7SFoGdiGRA==";
- };
- };
"hash.js-1.1.7" = {
name = "hash.js";
packageName = "hash.js";
@@ -28421,15 +28403,6 @@ let
sha1 = "078444bd7c1640b0fe540d2c9b73d59678e8e1c4";
};
};
- "hcl-to-json-0.1.1" = {
- name = "hcl-to-json";
- packageName = "hcl-to-json";
- version = "0.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/hcl-to-json/-/hcl-to-json-0.1.1.tgz";
- sha512 = "sj1RPsdgX/ilBGZGnyjbSHQbRe20hyA6VDXYBGJedHSCdwSWkr/7tr85N7FGeM7KvBjIQX7Gl897bo0Ug73Z/A==";
- };
- };
"he-0.5.0" = {
name = "he";
packageName = "he";
@@ -29124,13 +29097,13 @@ let
sha512 = "yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==";
};
};
- "http-proxy-middleware-1.2.1" = {
+ "http-proxy-middleware-1.3.1" = {
name = "http-proxy-middleware";
packageName = "http-proxy-middleware";
- version = "1.2.1";
+ version = "1.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-1.2.1.tgz";
- sha512 = "mxqwEC+IOneTLuYz1B7fmLUmXXkVWfcbiXe8LsCctIX12vxfJU1Uj9HJD/G9MwK4HvgEdgKI8NZySM3uheC2JQ==";
+ url = "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-1.3.1.tgz";
+ sha512 = "13eVVDYS4z79w7f1+NPllJtOQFx/FdUW4btIvVRMaRlUY9VGstAbo5MOhLEuUgZFRHn3x50ufn25zkj/boZnEg==";
};
};
"http-signature-0.11.0" = {
@@ -29439,6 +29412,15 @@ let
sha512 = "2y91h5OpQlolefMPmUlivelittSWy0rP+oYVpn6A7GwVHNE8AWzoYOBNmlwks3LobaJxgHCYZAnyNo2GgpNRNQ==";
};
};
+ "iconv-lite-0.6.3" = {
+ name = "iconv-lite";
+ packageName = "iconv-lite";
+ version = "0.6.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz";
+ sha512 = "4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==";
+ };
+ };
"icss-replace-symbols-1.1.0" = {
name = "icss-replace-symbols";
packageName = "icss-replace-symbols";
@@ -29529,13 +29511,13 @@ let
sha1 = "48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09";
};
};
- "ignore-walk-3.0.3" = {
+ "ignore-walk-3.0.4" = {
name = "ignore-walk";
packageName = "ignore-walk";
- version = "3.0.3";
+ version = "3.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/ignore-walk/-/ignore-walk-3.0.3.tgz";
- sha512 = "m7o6xuOaT1aqheYHKf8W6J5pYH85ZI9w077erOzLje3JsB1gkafkAhHHY19dqjulgIZHFm32Cp5uNZgcQqdJKw==";
+ url = "https://registry.npmjs.org/ignore-walk/-/ignore-walk-3.0.4.tgz";
+ sha512 = "PY6Ii8o1jMRA1z4F2hRkH/xN59ox43DavKvD3oDpfurRlOJyAHpifIwpbdv1n4jt4ov0jSpw3kQ4GhJnpBL6WQ==";
};
};
"image-data-uri-2.0.1" = {
@@ -29610,13 +29592,13 @@ let
sha1 = "0ecdad0c546332672d7b5b511b26bb18ce56e73f";
};
};
- "immediate-chunk-store-2.1.1" = {
+ "immediate-chunk-store-2.2.0" = {
name = "immediate-chunk-store";
packageName = "immediate-chunk-store";
- version = "2.1.1";
+ version = "2.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/immediate-chunk-store/-/immediate-chunk-store-2.1.1.tgz";
- sha512 = "y5AxkxqpPTj2dkaAEkDnrMuSX4JNicXHD6yTpLfFnflVejL6yJpzf27obrnlf2PSSQiWUf3735Y9tJEjxvqnoA==";
+ url = "https://registry.npmjs.org/immediate-chunk-store/-/immediate-chunk-store-2.2.0.tgz";
+ sha512 = "1bHBna0hCa6arRXicu91IiL9RvvkbNYLVq+mzWdaLGZC3hXvX4doh8e1dLhMKez5siu63CYgO5NrGJbRX5lbPA==";
};
};
"immer-7.0.15" = {
@@ -29961,13 +29943,13 @@ let
sha512 = "ubMFylXYaG4IkXQVhPautbhV/p6Lo0GlvAMI/jh8cGJQ39yeznJbaTTJP2CqZXezA4GOHzalpwCWqux/NEY38w==";
};
};
- "ink-spinner-4.0.1" = {
+ "ink-spinner-4.0.2" = {
name = "ink-spinner";
packageName = "ink-spinner";
- version = "4.0.1";
+ version = "4.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/ink-spinner/-/ink-spinner-4.0.1.tgz";
- sha512 = "2eYtzzUPb22Z0Cn2bGvE4BteYjcqDhgrHnCzGJM81EHXXlyNU7aYfucPgZs2CZPy0LWz/5hwoecFhd0mj1hrbw==";
+ url = "https://registry.npmjs.org/ink-spinner/-/ink-spinner-4.0.2.tgz";
+ sha512 = "vQGmhWUEh3IG1IxK1Hl2w6RfH6aaRIJWw9lrG8CvFFyrQ23UpJ8GClJs5/sFBxkNvsrrK9sKNEGlGnsqTYiUww==";
};
};
"ink-text-input-4.0.1" = {
@@ -30114,6 +30096,15 @@ let
sha512 = "ON8pEJPPCdyjxj+cxsYRe6XfCJepTxANdNnTebsTuQgXpRyZRRT9t4dJwjRubgmvn20CLSEnozRUayXyM9VTXA==";
};
};
+ "inquirer-8.1.0" = {
+ name = "inquirer";
+ packageName = "inquirer";
+ version = "8.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/inquirer/-/inquirer-8.1.0.tgz";
+ sha512 = "1nKYPoalt1vMBfCMtpomsUc32wmOoWXAoq3kM/5iTfxyQ2f/BxjixQpC+mbZ7BI0JUXHED4/XPXekDVtJNpXYw==";
+ };
+ };
"inquirer-autocomplete-prompt-1.3.0" = {
name = "inquirer-autocomplete-prompt";
packageName = "inquirer-autocomplete-prompt";
@@ -30267,15 +30258,6 @@ let
sha512 = "S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==";
};
};
- "internal-slot-1.0.3" = {
- name = "internal-slot";
- packageName = "internal-slot";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz";
- sha512 = "O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==";
- };
- };
"internmap-1.0.1" = {
name = "internmap";
packageName = "internmap";
@@ -30357,13 +30339,13 @@ let
sha512 = "phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==";
};
};
- "inversify-5.0.5" = {
+ "inversify-5.1.1" = {
name = "inversify";
packageName = "inversify";
- version = "5.0.5";
+ version = "5.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/inversify/-/inversify-5.0.5.tgz";
- sha512 = "60QsfPz8NAU/GZqXu8hJ+BhNf/C/c+Hp0eDc6XMIJTxBiP36AQyyQKpBkOVTLWBFDQWYVHpbbEuIsHu9dLuJDA==";
+ url = "https://registry.npmjs.org/inversify/-/inversify-5.1.1.tgz";
+ sha512 = "j8grHGDzv1v+8T1sAQ+3boTCntFPfvxLCkNcxB1J8qA0lUN+fAlSyYd+RXKvaPRL4AGyPxViutBEJHNXOyUdFQ==";
};
};
"invert-kv-1.0.0" = {
@@ -30681,13 +30663,13 @@ let
sha1 = "f02ad0259a0921cd199ff21ce1b09e0f6b4e3929";
};
};
- "is-bigint-1.0.1" = {
+ "is-bigint-1.0.2" = {
name = "is-bigint";
packageName = "is-bigint";
- version = "1.0.1";
+ version = "1.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.1.tgz";
- sha512 = "J0ELF4yHFxHy0cmSxZuheDOz2luOdVvqjwmEcj8H/L1JHeuEDSDbeRP+Dk9kFVk5RTFzbucJ2Kb9F7ixY2QaCg==";
+ url = "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.2.tgz";
+ sha512 = "0JV5+SOCQkIdzjBK9buARcV804Ddu7A0Qet6sHi3FimE9ne6m4BGQZfRn+NZiXbBk4F4XmHfDZIipLj9pX8dSA==";
};
};
"is-binary-path-1.0.1" = {
@@ -30708,13 +30690,13 @@ let
sha512 = "ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==";
};
};
- "is-boolean-object-1.1.0" = {
+ "is-boolean-object-1.1.1" = {
name = "is-boolean-object";
packageName = "is-boolean-object";
- version = "1.1.0";
+ version = "1.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.0.tgz";
- sha512 = "a7Uprx8UtD+HWdyYwnD1+ExtTgqQtD2k/1yJgtXP6wnMm8byhkoTZRl+95LLThpzNZJ5aEvi46cdH+ayMFRwmA==";
+ url = "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.1.tgz";
+ sha512 = "bXdQWkECBUIAcCkeH1unwJLIpZYaa5VvuygSyS/c2lf719mTKZDU5UdDRlpd01UjADgmW8RfqaP+mRaVPdr/Ng==";
};
};
"is-buffer-1.1.6" = {
@@ -30789,13 +30771,13 @@ let
sha1 = "cfff471aee4dd5c9e158598fbe12967b5cdad345";
};
};
- "is-core-module-2.3.0" = {
+ "is-core-module-2.4.0" = {
name = "is-core-module";
packageName = "is-core-module";
- version = "2.3.0";
+ version = "2.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/is-core-module/-/is-core-module-2.3.0.tgz";
- sha512 = "xSphU2KG9867tsYdLD4RWQ1VqdFl4HTO9Thf3I/3dLEfr0dbPTWKsuCKrgqMljg4nPE+Gq0VCnzT3gr0CyBmsw==";
+ url = "https://registry.npmjs.org/is-core-module/-/is-core-module-2.4.0.tgz";
+ sha512 = "6A2fkfq1rfeQZjxrZJGerpLCTHRNEBiSgnu0+obeJpEPZRUooHgsizvzv0ZjJwOz3iWIHdJtVWJ/tmPr3D21/A==";
};
};
"is-data-descriptor-0.1.4" = {
@@ -30816,13 +30798,13 @@ let
sha512 = "jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==";
};
};
- "is-date-object-1.0.2" = {
+ "is-date-object-1.0.4" = {
name = "is-date-object";
packageName = "is-date-object";
- version = "1.0.2";
+ version = "1.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.2.tgz";
- sha512 = "USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g==";
+ url = "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.4.tgz";
+ sha512 = "/b4ZVsG7Z5XVtIxs/h9W8nvfLgSAyKYdtGWQLbqy6jA1icmgjf8WCoTKgeS4wy5tYaPePouzFMANbnj94c2Z+A==";
};
};
"is-decimal-1.0.4" = {
@@ -31032,13 +31014,13 @@ let
sha512 = "lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ==";
};
};
- "is-generator-function-1.0.8" = {
+ "is-generator-function-1.0.9" = {
name = "is-generator-function";
packageName = "is-generator-function";
- version = "1.0.8";
+ version = "1.0.9";
src = fetchurl {
- url = "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.8.tgz";
- sha512 = "2Omr/twNtufVZFr1GhxjOMFPAj2sjc/dKaIqBhvo4qciXfJmITGH6ZGd8eZYNHza8t1y0e01AuqRhJwfWp26WQ==";
+ url = "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.9.tgz";
+ sha512 = "ZJ34p1uvIfptHCN7sFTjGibB9/oBg17sHqzDLfuwhvmN/qLVvIQXRQ8licZQ35WJ8KuEQt/etnnzQFI9C9Ue/A==";
};
};
"is-glob-2.0.1" = {
@@ -31311,13 +31293,13 @@ let
sha512 = "41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==";
};
};
- "is-number-object-1.0.4" = {
+ "is-number-object-1.0.5" = {
name = "is-number-object";
packageName = "is-number-object";
- version = "1.0.4";
+ version = "1.0.5";
src = fetchurl {
- url = "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.4.tgz";
- sha512 = "zohwelOAur+5uXtk8O3GPQ1eAcu4ZX3UwxQhUlfFFMNpUd83gXgjbhJh6HmB6LUNV/ieOLQuDwJO3dWJosUeMw==";
+ url = "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.5.tgz";
+ sha512 = "RU0lI/n95pMoUKu9v1BZP5MBcZuNSVJkMkAG2dJqC4z2GlkGUNeH68SuHuBKBD/XFe+LHZ+f9BKkLET60Niedw==";
};
};
"is-obj-1.0.1" = {
@@ -31554,13 +31536,13 @@ let
sha512 = "vlKW17SNq44owv5AQR3Cq0bQPEb8+kF3UKZ2fiZNOWtztYE5i0CzCZxFDwO58qAOWtxdBRVO/V5Qin1wjCqFYQ==";
};
};
- "is-regex-1.1.2" = {
+ "is-regex-1.1.3" = {
name = "is-regex";
packageName = "is-regex";
- version = "1.1.2";
+ version = "1.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/is-regex/-/is-regex-1.1.2.tgz";
- sha512 = "axvdhb5pdhEVThqJzYXwMlVuZwC+FF2DpcOhTS+y/8jVq4trxyPgfcwIxIKiyeuLlSQYKkmUaPQJ8ZE4yNKXDg==";
+ url = "https://registry.npmjs.org/is-regex/-/is-regex-1.1.3.tgz";
+ sha512 = "qSVXFz28HM7y+IWX6vLCsexdlvzT1PJNFSBuaQLQ5o0IEw8UDYW6/2+eCMVyIsbM8CNLX2a/QWmSpyxYEHY7CQ==";
};
};
"is-regexp-1.0.0" = {
@@ -31671,13 +31653,13 @@ let
sha512 = "+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==";
};
};
- "is-ssh-1.3.2" = {
+ "is-ssh-1.3.3" = {
name = "is-ssh";
packageName = "is-ssh";
- version = "1.3.2";
+ version = "1.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/is-ssh/-/is-ssh-1.3.2.tgz";
- sha512 = "elEw0/0c2UscLrNG+OAorbP539E3rhliKPg+hDMWN9VwrDXfYK+4PBEykDPfxlYYtQvl84TascnQyobfQLHEhQ==";
+ url = "https://registry.npmjs.org/is-ssh/-/is-ssh-1.3.3.tgz";
+ sha512 = "NKzJmQzJfEEma3w5cJNcUMxoXfDjz0Zj0eyCalHn2E6VOwlzjZo0yuO2fcBSf8zhFuVCL/82/r5gRcoi6aEPVQ==";
};
};
"is-stream-1.1.0" = {
@@ -31707,13 +31689,13 @@ let
sha512 = "xj0XPvmr7bQFTvirqnFr50o0hQIh6ZItDqloxt5aJrR4NQsYeSsyFQERYGCAzfindAcnKjINnwEEgLx4IqVzQw==";
};
};
- "is-string-1.0.5" = {
+ "is-string-1.0.6" = {
name = "is-string";
packageName = "is-string";
- version = "1.0.5";
+ version = "1.0.6";
src = fetchurl {
- url = "https://registry.npmjs.org/is-string/-/is-string-1.0.5.tgz";
- sha512 = "buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ==";
+ url = "https://registry.npmjs.org/is-string/-/is-string-1.0.6.tgz";
+ sha512 = "2gdzbKUuqtQ3lYNrUTQYoClPhm7oQu4UdpSZMp1/DGgkHBT8E2Z1l0yMdb6D4zNAxwDiMv8MdulKROJGNl0Q0w==";
};
};
"is-supported-regexp-flag-1.0.1" = {
@@ -31725,13 +31707,13 @@ let
sha512 = "3vcJecUUrpgCqc/ca0aWeNu64UGgxcvO60K/Fkr1N6RSvfGCTU60UKN68JDmKokgba0rFFJs12EnzOQa14ubKQ==";
};
};
- "is-symbol-1.0.3" = {
+ "is-symbol-1.0.4" = {
name = "is-symbol";
packageName = "is-symbol";
- version = "1.0.3";
+ version = "1.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz";
- sha512 = "OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==";
+ url = "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz";
+ sha512 = "C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==";
};
};
"is-text-path-1.0.1" = {
@@ -31941,13 +31923,13 @@ let
sha1 = "119556d1d1651a41ba105af803267c80b299f629";
};
};
- "is2-2.0.6" = {
+ "is2-2.0.7" = {
name = "is2";
packageName = "is2";
- version = "2.0.6";
+ version = "2.0.7";
src = fetchurl {
- url = "https://registry.npmjs.org/is2/-/is2-2.0.6.tgz";
- sha512 = "+Z62OHOjA6k2sUDOKXoZI3EXv7Fb1K52jpTBLbkfx62bcUeSsrTBLhEquCRDKTx0XE5XbHcG/S2vrtE3lnEDsQ==";
+ url = "https://registry.npmjs.org/is2/-/is2-2.0.7.tgz";
+ sha512 = "4vBQoURAXC6hnLFxD4VW7uc04XiwTTl/8ydYJxKvPwkWQrSjInkuM5VZVg6BGr1/natq69zDuvO9lGpLClJqvA==";
};
};
"isarray-0.0.1" = {
@@ -31995,13 +31977,13 @@ let
sha512 = "8cJBL5tTd2OS0dM4jz07wQd5g0dCCqIhUxPIGtZfa5L6hWlvV5MHTITy/DBAsF+Oe2LS1X3krBUhNwaGUWpWxw==";
};
};
- "isbinaryfile-4.0.6" = {
+ "isbinaryfile-4.0.8" = {
name = "isbinaryfile";
packageName = "isbinaryfile";
- version = "4.0.6";
+ version = "4.0.8";
src = fetchurl {
- url = "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-4.0.6.tgz";
- sha512 = "ORrEy+SNVqUhrCaal4hA4fBzhggQQ+BaLntyPOdoEiwlKZW9BZiJXjg3RMiruE4tPEI3pyVPpySHQF/dKWperg==";
+ url = "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-4.0.8.tgz";
+ sha512 = "53h6XFniq77YdW+spoRrebh0mnmTxRPTlcuIArO57lmMdq4uBKFKaeTjnb92oYWrSn/LVL+LT+Hap2tFQj8V+w==";
};
};
"isemail-3.2.0" = {
@@ -32148,15 +32130,6 @@ let
sha512 = "BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==";
};
};
- "istextorbinary-5.12.0" = {
- name = "istextorbinary";
- packageName = "istextorbinary";
- version = "5.12.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/istextorbinary/-/istextorbinary-5.12.0.tgz";
- sha512 = "wLDRWD7qpNTYubk04+q3en1+XZGS4vYWK0+SxNSXJLaITMMEK+J3o/TlOMyULeH1qozVZ9uUkKcyMA8odyxz8w==";
- };
- };
"isuri-2.0.3" = {
name = "isuri";
packageName = "isuri";
@@ -32382,13 +32355,13 @@ let
sha512 = "0soPJif+yjmzmOF+4cF2hyhxUWWpXpQntsm2joJXFFoRcQiPzsG4dbLKYqYPT3Fc6PjZ8MaLtCkDqqckVSfmRw==";
};
};
- "jitdb-3.1.3" = {
+ "jitdb-3.1.4" = {
name = "jitdb";
packageName = "jitdb";
- version = "3.1.3";
+ version = "3.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/jitdb/-/jitdb-3.1.3.tgz";
- sha512 = "g9RdoIzb2h9fkXKJVVQqQSU6U2XG4VrR6hsGjTGTha4rI+zNGBkIclhfrWAgTrW0ofjOIcMfgGWeIOLBTJLULw==";
+ url = "https://registry.npmjs.org/jitdb/-/jitdb-3.1.4.tgz";
+ sha512 = "UEzC68eqFIQJPQnmPm2/KGirX2pE+GebhA2EZss3b0UZZca7eGgxpvQ7+sIPcwLKAcZr5rmkFhQHGIQJyf20bg==";
};
};
"jju-1.4.0" = {
@@ -32508,13 +32481,13 @@ let
sha1 = "bcb4045c8dd0539c134bc1488cdd3e768a7a9e51";
};
};
- "jquery.terminal-2.23.2" = {
+ "jquery.terminal-2.24.0" = {
name = "jquery.terminal";
packageName = "jquery.terminal";
- version = "2.23.2";
+ version = "2.24.0";
src = fetchurl {
- url = "https://registry.npmjs.org/jquery.terminal/-/jquery.terminal-2.23.2.tgz";
- sha512 = "C92ZOquPhjGcB0PAEUHPlnkEycgtQoCoiCYZ3d7FyuK7z/JDSIXuNk5kosaVn3/NwFZ7jlFgy+s3kksHI0aFHg==";
+ url = "https://registry.npmjs.org/jquery.terminal/-/jquery.terminal-2.24.0.tgz";
+ sha512 = "rtjTBj7/FYoBiWawiNTYNXIRqVI4n39WF/x1h/bEKFb48Rzgr4/dpkKGd1dgZau714ewzczAi7CEBTKvhM6RjA==";
};
};
"js-base64-2.6.4" = {
@@ -32760,13 +32733,13 @@ let
sha512 = "fAl1W0/7T2G5vURSyxBzrJ1LSdQn6Tr5UX/xD4PXDx/PDgwygedfW6El/KIj3xJ7FU61TTYnc/l/B7P49Eqt6g==";
};
};
- "jsdom-16.5.3" = {
+ "jsdom-16.6.0" = {
name = "jsdom";
packageName = "jsdom";
- version = "16.5.3";
+ version = "16.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/jsdom/-/jsdom-16.5.3.tgz";
- sha512 = "Qj1H+PEvUsOtdPJ056ewXM4UJPCi4hhLA8wpiz9F2YvsRBhuFsXxtrIFAgGBDynQA9isAMGE91PfUYbdMPXuTA==";
+ url = "https://registry.npmjs.org/jsdom/-/jsdom-16.6.0.tgz";
+ sha512 = "Ty1vmF4NHJkolaEmdjtxTfSfkdb8Ywarwf63f+F8/mDD1uLSSWDxDuMiZxiPhwunLrn9LOSVItWj4bLYsLN3Dg==";
};
};
"jsdom-7.2.2" = {
@@ -32805,49 +32778,49 @@ let
sha512 = "xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==";
};
};
- "jsii-1.29.0" = {
+ "jsii-1.30.0" = {
name = "jsii";
packageName = "jsii";
- version = "1.29.0";
+ version = "1.30.0";
src = fetchurl {
- url = "https://registry.npmjs.org/jsii/-/jsii-1.29.0.tgz";
- sha512 = "7o1yE/si/nbGsNquSejwxaiPq0iDSTPfDENd7ZyO3xzGIROV8UZSs+VhGyys9t/VF4og8p9s2olkajEN60fzMw==";
+ url = "https://registry.npmjs.org/jsii/-/jsii-1.30.0.tgz";
+ sha512 = "TfVHhGjP0QiTEkyfnxrDIE8Da+itxnNUK2YoD69qIPAzmZ58goKVqK4sbXrXz2urHSToGLDmWI8+H69cLeVjJw==";
};
};
- "jsii-pacmak-1.29.0" = {
+ "jsii-pacmak-1.30.0" = {
name = "jsii-pacmak";
packageName = "jsii-pacmak";
- version = "1.29.0";
+ version = "1.30.0";
src = fetchurl {
- url = "https://registry.npmjs.org/jsii-pacmak/-/jsii-pacmak-1.29.0.tgz";
- sha512 = "wpVDrvh+hClB4Y68v/sYCcRnXlXoDwEUTC0X+uz9o5xUHs/WfuDglS5AAhq6g51INAQc0ed3anrkqmFcDK6QPw==";
+ url = "https://registry.npmjs.org/jsii-pacmak/-/jsii-pacmak-1.30.0.tgz";
+ sha512 = "hYvISYBXZ5WL/+LtG3HpVrimguqAoWa3D8jaqsnoiIGrdmaxKCZ0VnioJYxEX7wVamYuCwXu5NFx/b31BspU6A==";
};
};
- "jsii-reflect-1.29.0" = {
+ "jsii-reflect-1.30.0" = {
name = "jsii-reflect";
packageName = "jsii-reflect";
- version = "1.29.0";
+ version = "1.30.0";
src = fetchurl {
- url = "https://registry.npmjs.org/jsii-reflect/-/jsii-reflect-1.29.0.tgz";
- sha512 = "r1XpKsnaMTaI0B2XXJ4rF1rbufqFDThASrArE+SyuuGeWTJxWQ4UtIzvXNVFLbZba0A5hX4K0JxiMIfaRFCEEg==";
+ url = "https://registry.npmjs.org/jsii-reflect/-/jsii-reflect-1.30.0.tgz";
+ sha512 = "t/1Zr1gGqQSYt94Lfq860VLnCr8y8MLvlLorWYqmBeWKCaSPhtYSC1blGhZhDrAW+CBXiT0Oy64j4Q++AntRmw==";
};
};
- "jsii-rosetta-1.29.0" = {
+ "jsii-rosetta-1.30.0" = {
name = "jsii-rosetta";
packageName = "jsii-rosetta";
- version = "1.29.0";
+ version = "1.30.0";
src = fetchurl {
- url = "https://registry.npmjs.org/jsii-rosetta/-/jsii-rosetta-1.29.0.tgz";
- sha512 = "WhTlFFm/xp2ictShT7XreBoqNpFj/U4MK4VyHyzYV1jS58uvJJMkwifMz/MOqciqRtWIAvGM3Ria4EB3VqmTfA==";
+ url = "https://registry.npmjs.org/jsii-rosetta/-/jsii-rosetta-1.30.0.tgz";
+ sha512 = "ChFg5qhvxCaM2bspCqizs48yMtsm5YLHjBoNZLCkbXyc3yMM5l8pnn787B5ww5TI3+tKxKYWkbiKf356kQ1OgQ==";
};
};
- "jsii-srcmak-0.1.257" = {
+ "jsii-srcmak-0.1.273" = {
name = "jsii-srcmak";
packageName = "jsii-srcmak";
- version = "0.1.257";
+ version = "0.1.273";
src = fetchurl {
- url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.257.tgz";
- sha512 = "Nfym9T84GR8kMjx6Lcah/RhIW8c38BEt/nltagrf9wnBhXWPgQoIP9f6nSsKaGHy2srI6gNSNFFR7sSIS90TyA==";
+ url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.273.tgz";
+ sha512 = "koWwHIq+LdKPoclPjRvZp2cNwk8Tck/wW1iUqgRDpjIO6+Puq26ovr/XF7etf9sXZEpCRHOT7/qTOVMJo0F+vg==";
};
};
"json-bigint-0.2.3" = {
@@ -32967,6 +32940,15 @@ let
sha512 = "tFH40YQ+lG7mgYYM1kGZOhQngO4SbOEHZJlA4W+NtetWZ20EUU3BPU+30uWRKumuAJoSo5eqrsXD2h72ioS8ew==";
};
};
+ "json-ptr-2.2.0" = {
+ name = "json-ptr";
+ packageName = "json-ptr";
+ version = "2.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/json-ptr/-/json-ptr-2.2.0.tgz";
+ sha512 = "w9f6/zhz4kykltXMG7MLJWMajxiPj0q+uzQPR1cggNAE/sXoq/C5vjUb/7QNcC3rJsVIIKy37ALTXy1O+3c8QQ==";
+ };
+ };
"json-refs-2.1.7" = {
name = "json-refs";
packageName = "json-refs";
@@ -33003,13 +32985,13 @@ let
sha1 = "b480c892e59a2f05954ce727bd3f2a4e882f9e13";
};
};
- "json-schema-0.2.5" = {
+ "json-schema-0.3.0" = {
name = "json-schema";
packageName = "json-schema";
- version = "0.2.5";
+ version = "0.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/json-schema/-/json-schema-0.2.5.tgz";
- sha512 = "gWJOWYFrhQ8j7pVm0EM8Slr+EPVq1Phf6lvzvD/WCeqkrx/f2xBI0xOsRRS9xCn3I4vKtP519dvs3TP09r24wQ==";
+ url = "https://registry.npmjs.org/json-schema/-/json-schema-0.3.0.tgz";
+ sha512 = "TYfxx36xfl52Rf1LU9HyWSLGPdYLL+SQ8/E/0yVyKG8wCCDaSrhPap0vEdlsZWRaS6tnKKLPGiEJGiREVC8kxQ==";
};
};
"json-schema-deref-sync-0.13.0" = {
@@ -33102,13 +33084,13 @@ let
sha1 = "9db7b59496ad3f3cfef30a75142d2d930ad72651";
};
};
- "json-stringify-nice-1.1.3" = {
+ "json-stringify-nice-1.1.4" = {
name = "json-stringify-nice";
packageName = "json-stringify-nice";
- version = "1.1.3";
+ version = "1.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/json-stringify-nice/-/json-stringify-nice-1.1.3.tgz";
- sha512 = "w8+cZZFgcPtFkZTmkA1UpRH0GXXfpeuc/cClNkQjLt9JoQd8cBFSyB8J1WWjJrthIYViHobwnh3jA4z5X2LdGA==";
+ url = "https://registry.npmjs.org/json-stringify-nice/-/json-stringify-nice-1.1.4.tgz";
+ sha512 = "5Z5RFW63yxReJ7vANgW6eZFGWaQvnPE3WNmZoOJrSkGju2etKA2L5rrOa1sm877TVTFt57A80BH1bArcmlLfPw==";
};
};
"json-stringify-pretty-compact-3.0.0" = {
@@ -33147,13 +33129,13 @@ let
sha512 = "0/4Lv6IenJV0qj2oBdgPIAmFiKKnh8qh7bmLFJ+/ZZHLjSeiL3fKKGX3UryvKPbxFbhV+JcYo9KUC19GJ/Z/4A==";
};
};
- "json2jsii-0.1.219" = {
+ "json2jsii-0.1.236" = {
name = "json2jsii";
packageName = "json2jsii";
- version = "0.1.219";
+ version = "0.1.236";
src = fetchurl {
- url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.1.219.tgz";
- sha512 = "0KTPGNsHxvtKodkvymWSAg0HAMpcAUPcyk1wYEpWJJC3k3Zkeun/dGBeP4X7DjByZ4AcUMJMSPqlJy67f/3Cyg==";
+ url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.1.236.tgz";
+ sha512 = "f2UN6Fum7vNQmeonz3HvP7GJxlathMSFYNzYCHdLjFKDpX3KDD9+xi7Qrk0JOMqrGMG6Ev1ye4rXlnUBlWKLvA==";
};
};
"json3-3.2.6" = {
@@ -33444,15 +33426,6 @@ let
sha1 = "69ec30ce4518bed5997b38f027648e8c285e92f7";
};
};
- "jsx-ast-utils-3.2.0" = {
- name = "jsx-ast-utils";
- packageName = "jsx-ast-utils";
- version = "3.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.2.0.tgz";
- sha512 = "EIsmt3O3ljsU6sot/J4E1zDRxfBNrhjyf/OKjlydwgEimQuznlM4Wv7U+ueONJMyEn1WRE0K8dhi3dVAXYT24Q==";
- };
- };
"jszip-2.6.1" = {
name = "jszip";
packageName = "jszip";
@@ -33669,14 +33642,14 @@ let
sha1 = "02ea5aa5cf22225725579627ccfd6d266372289a";
};
};
- "kad-git+https://github.com/wikimedia/kad.git#master" = {
+ "kad-git://github.com/wikimedia/kad#master" = {
name = "kad";
packageName = "kad";
version = "1.3.6";
src = fetchgit {
- url = "https://github.com/wikimedia/kad.git";
- rev = "96f8f5c8e5a88f5dffed47abc20756e93e16387e";
- sha256 = "12e5b6430f57389c974e7a393f2c7ac9a26df06a58cfe1afbcb5a5f3f00249ea";
+ url = "git://github.com/wikimedia/kad";
+ rev = "634a3fc7f60898ec541406d60ccf0d48556070e2";
+ sha256 = "285413585c8cc029d7204b5babc30cde39715fea8c8a875b8ae3c0dff2643d68";
};
};
"kad-localstorage-0.0.7" = {
@@ -33706,13 +33679,13 @@ let
sha512 = "dD2ga5gLcQhsq1yNoQdy1MU4x4z7YnXM5bcG9SdQuiNr5KKuAmXixH1Mggwdah5o7EfholFbcNDPSVA6BIfaug==";
};
};
- "katex-0.12.0" = {
+ "katex-0.13.11" = {
name = "katex";
packageName = "katex";
- version = "0.12.0";
+ version = "0.13.11";
src = fetchurl {
- url = "https://registry.npmjs.org/katex/-/katex-0.12.0.tgz";
- sha512 = "y+8btoc/CK70XqcHqjxiGWBOeIL8upbS0peTPXTvgrh21n1RiWWcIpSWM+4uXq+IAgNh9YYQWdc7LVDPDAEEAg==";
+ url = "https://registry.npmjs.org/katex/-/katex-0.13.11.tgz";
+ sha512 = "yJBHVIgwlAaapzlbvTpVF/ZOs8UkTj/sd46Fl8+qAf2/UiituPYVeapVD8ADZtqyRg/qNWUKt7gJoyYVWLrcXw==";
};
};
"keep-alive-agent-0.0.1" = {
@@ -33787,13 +33760,13 @@ let
sha1 = "1e80454250018dbad4c3fe94497d6e67b6269c77";
};
};
- "keytar-7.6.0" = {
+ "keytar-7.7.0" = {
name = "keytar";
packageName = "keytar";
- version = "7.6.0";
+ version = "7.7.0";
src = fetchurl {
- url = "https://registry.npmjs.org/keytar/-/keytar-7.6.0.tgz";
- sha512 = "H3cvrTzWb11+iv0NOAnoNAPgEapVZnYLVHZQyxmh7jdmVfR/c0jNNFEZ6AI38W/4DeTGTaY66ZX4Z1SbfKPvCQ==";
+ url = "https://registry.npmjs.org/keytar/-/keytar-7.7.0.tgz";
+ sha512 = "YEY9HWqThQc5q5xbXbRwsZTh2PJ36OSYRjSv3NN2xf5s5dpLTjEZnC2YikR29OaVybf9nQ0dJ/80i40RS97t/A==";
};
};
"keyv-3.0.0" = {
@@ -34003,24 +33976,6 @@ let
sha512 = "uLrFPGj2//glOgJGLZn8hNTNlhU+eGx0WFRLZxIoC39nfjLRZ1fncHcPK2t5gA2GcvgtGUT2dnw60M8vJAOIkQ==";
};
};
- "language-subtag-registry-0.3.21" = {
- name = "language-subtag-registry";
- packageName = "language-subtag-registry";
- version = "0.3.21";
- src = fetchurl {
- url = "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.21.tgz";
- sha512 = "L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg==";
- };
- };
- "language-tags-1.0.5" = {
- name = "language-tags";
- packageName = "language-tags";
- version = "1.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz";
- sha1 = "d321dbc4da30ba8bf3024e040fa5c14661f9193a";
- };
- };
"last-call-webpack-plugin-3.0.0" = {
name = "last-call-webpack-plugin";
packageName = "last-call-webpack-plugin";
@@ -34534,6 +34489,15 @@ let
sha512 = "VpkNbaWlsmTgaWWJPGyYb2dm2v5b+wPQWmfZBJ7V5znL17Q+ef7Csj8PTTgnIccAWE429QL9/OyOzn/JVnZ/PA==";
};
};
+ "lightning-3.3.7" = {
+ name = "lightning";
+ packageName = "lightning";
+ version = "3.3.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lightning/-/lightning-3.3.7.tgz";
+ sha512 = "fjzFCwXafGUeCwUSiEKToS/A8GO4oxDiDG+XNuL984mgYyJdXLHoTEMdaYZD48yowtfjYCdLks0iypIdg6kn1Q==";
+ };
+ };
"limit-spawn-0.0.3" = {
name = "limit-spawn";
packageName = "limit-spawn";
@@ -34543,13 +34507,13 @@ let
sha1 = "cc09c24467a0f0a1ed10a5196dba597cad3f65dc";
};
};
- "limitation-0.2.1" = {
+ "limitation-0.2.2" = {
name = "limitation";
packageName = "limitation";
- version = "0.2.1";
+ version = "0.2.2";
src = fetchurl {
- url = "https://registry.npmjs.org/limitation/-/limitation-0.2.1.tgz";
- sha512 = "5lMmsPc9ZtMjBk8rJ8ADKIj6AOgYvRtAuNfboO2TVPZsmcn6gSRyijUsA8KG6DUcJ89/hyQ3cnVRyzO1hbDavw==";
+ url = "https://registry.npmjs.org/limitation/-/limitation-0.2.2.tgz";
+ sha512 = "kUfYO29baIJzY3S4/j7qaWl0GdjxT88SEaIcUN98YGdhYh+m7Zkt1N4jGubVF05A7dzjfjgtQD/NI5APKl38RQ==";
};
};
"line-reader-0.4.0" = {
@@ -34687,6 +34651,15 @@ let
sha512 = "n0Ib9fjVL8x3ymdOax6gjmR0Nq59vIhQ89en1XpgxIWbowWhiJUXPolTEgiA8vpeoG72CZN3nYaPXgil9uNVLg==";
};
};
+ "ln-service-51.8.1" = {
+ name = "ln-service";
+ packageName = "ln-service";
+ version = "51.8.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ln-service/-/ln-service-51.8.1.tgz";
+ sha512 = "YjRsNwAez1RfA63YDoLf5Ojg3Ma+aLmvfMqasqU3r+/pDR+mgGFyjVODsw6qujerIEM2FaxegddJeOz7R7/Ijw==";
+ };
+ };
"ln-sync-0.4.5" = {
name = "ln-sync";
packageName = "ln-sync";
@@ -34696,13 +34669,13 @@ let
sha512 = "ETaASkbv5v2gcrob/xonsjy0deKSxIHfKOTfOXQicxhZed02plQ2oAUx/K3yxIhRnm7YS45Z/gYQLxUqHkI4ow==";
};
};
- "ln-telegram-3.2.2" = {
+ "ln-telegram-3.2.3" = {
name = "ln-telegram";
packageName = "ln-telegram";
- version = "3.2.2";
+ version = "3.2.3";
src = fetchurl {
- url = "https://registry.npmjs.org/ln-telegram/-/ln-telegram-3.2.2.tgz";
- sha512 = "6gJmRkOpcsyARrCL0+O66xgVlZVRd1erLSw1/dsiGXgUsaSuZ4mFpxE40j6eXZZZxwcFcYNE06Q79BMtsIvoqA==";
+ url = "https://registry.npmjs.org/ln-telegram/-/ln-telegram-3.2.3.tgz";
+ sha512 = "pNYz/xz/VCn8EApERCR+2nB0hmBM25dAmKUs0FZnMlQGozNaSqb26ttN0XLA/Q/JVOeovacjlAOJ0tl6zqcS8w==";
};
};
"load-bmfont-1.4.1" = {
@@ -34921,13 +34894,13 @@ let
sha1 = "259933d1327cbaf0fd3662f8fffde36809d84ced";
};
};
- "locutus-2.0.14" = {
+ "locutus-2.0.15" = {
name = "locutus";
packageName = "locutus";
- version = "2.0.14";
+ version = "2.0.15";
src = fetchurl {
- url = "https://registry.npmjs.org/locutus/-/locutus-2.0.14.tgz";
- sha512 = "0H1o1iHNEp3kJ5rW57bT/CAP5g6Qm0Zd817Wcx2+rOMTYyIJoc482Ja1v9dB6IUjwvWKcBNdYi7x2lRXtlJ3bA==";
+ url = "https://registry.npmjs.org/locutus/-/locutus-2.0.15.tgz";
+ sha512 = "2xWC4RkoAoCVXEb/stzEgG1TNgd+mrkLBj6TuEDNyUoKeQ2XzDTyJUC23sMiqbL6zJmJSP3w59OZo+zc4IBOmA==";
};
};
"lodash-2.4.2" = {
@@ -35488,13 +35461,13 @@ let
sha1 = "9ccb4e505d486b91651345772885a2df27fd017c";
};
};
- "lodash.endswith-4.2.1" = {
- name = "lodash.endswith";
- packageName = "lodash.endswith";
- version = "4.2.1";
+ "lodash.differencewith-4.5.0" = {
+ name = "lodash.differencewith";
+ packageName = "lodash.differencewith";
+ version = "4.5.0";
src = fetchurl {
- url = "https://registry.npmjs.org/lodash.endswith/-/lodash.endswith-4.2.1.tgz";
- sha1 = "fed59ac1738ed3e236edd7064ec456448b37bc09";
+ url = "https://registry.npmjs.org/lodash.differencewith/-/lodash.differencewith-4.5.0.tgz";
+ sha1 = "bafafbc918b55154e179176a00bb0aefaac854b7";
};
};
"lodash.escape-3.2.0" = {
@@ -35776,15 +35749,6 @@ let
sha1 = "619c0af3d03f8b04c31f5882840b77b11cd68343";
};
};
- "lodash.islength-4.0.1" = {
- name = "lodash.islength";
- packageName = "lodash.islength";
- version = "4.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.islength/-/lodash.islength-4.0.1.tgz";
- sha1 = "4e9868d452575d750affd358c979543dc20ed577";
- };
- };
"lodash.ismatch-4.4.0" = {
name = "lodash.ismatch";
packageName = "lodash.ismatch";
@@ -36748,15 +36712,6 @@ let
sha512 = "oxMeX/Y35PNFuZoHp+jUj5OSEmLCaIH4KTFJh7a93cHBoFmpw2IoPs22VIz7vyO2YUnx2Tn9dzIwO2P/4quIRg==";
};
};
- "lynx-0.2.0" = {
- name = "lynx";
- packageName = "lynx";
- version = "0.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lynx/-/lynx-0.2.0.tgz";
- sha1 = "79e6674530da4183e87953bd686171e070da50b9";
- };
- };
"lzma-native-6.0.1" = {
name = "lzma-native";
packageName = "lzma-native";
@@ -36883,13 +36838,13 @@ let
sha512 = "ZpqciThlbvE6KkyT5oxAup/6CwjePw1hdtR8NU5+vq2hn9Sp5b7w3bRiJRvo9fMHUj2dWSuVCdkqt9p4ed1V9Q==";
};
};
- "magnet-uri-6.1.1" = {
+ "magnet-uri-6.2.0" = {
name = "magnet-uri";
packageName = "magnet-uri";
- version = "6.1.1";
+ version = "6.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/magnet-uri/-/magnet-uri-6.1.1.tgz";
- sha512 = "TUyzaLB36TqqIHzgvkMrlZUPN6mfoLX/+2do5YJH3gjBQL2auEtivT+99npIiA77YepJ6pYA/AzWhboXTAAm0w==";
+ url = "https://registry.npmjs.org/magnet-uri/-/magnet-uri-6.2.0.tgz";
+ sha512 = "O9AgdDwT771fnUj0giPYu/rACpz8173y8UXCSOdLITjOVfBenZ9H9q3FqQmveK+ORUMuD+BkKNSZP8C3+IMAKQ==";
};
};
"make-dir-1.3.0" = {
@@ -37099,6 +37054,15 @@ let
sha512 = "aU1TzmBKcWNNYvH9pjq6u92BML+Hz3h5S/QpfTFwiQF852pLT+9qHsrhM9JYipkOXZxGn+sGH8oyJE9FD9WezQ==";
};
};
+ "markdown-it-12.0.4" = {
+ name = "markdown-it";
+ packageName = "markdown-it";
+ version = "12.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/markdown-it/-/markdown-it-12.0.4.tgz";
+ sha512 = "34RwOXZT8kyuOJy25oJNJoulO8L0bTHYWXcdZBYZqFnjIy3NgjeoM3FmPXIOFQ26/lSHYMr8oc62B6adxXcb3Q==";
+ };
+ };
"markdown-it-12.0.6" = {
name = "markdown-it";
packageName = "markdown-it";
@@ -37162,13 +37126,13 @@ let
sha512 = "ODpk98FWkGIq2vkwm2NOLt4G6TRgy3M9eTa9SFm06pUyOd0zjjYAwkhsjiCDU42pzKuz0ChiwBO0utuOj3LNOA==";
};
};
- "markdown-it-footnote-3.0.2" = {
+ "markdown-it-footnote-3.0.3" = {
name = "markdown-it-footnote";
packageName = "markdown-it-footnote";
- version = "3.0.2";
+ version = "3.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/markdown-it-footnote/-/markdown-it-footnote-3.0.2.tgz";
- sha512 = "JVW6fCmZWjvMdDQSbOT3nnOQtd9iAXmw7hTSh26+v42BnvXeVyGMDBm5b/EZocMed2MbCAHiTX632vY0FyGB8A==";
+ url = "https://registry.npmjs.org/markdown-it-footnote/-/markdown-it-footnote-3.0.3.tgz";
+ sha512 = "YZMSuCGVZAjzKMn+xqIco9d1cLGxbELHZ9do/TSYVzraooV8ypsppKNmUJ0fVH5ljkCInQAtFpm8Rb3eXSrt5w==";
};
};
"markdown-it-github-headings-1.1.2" = {
@@ -37243,13 +37207,13 @@ let
sha512 = "UB/IbzjWazwTlNAX0pvWNlJS8NKsOQ4syrXZQ/C72j+jirrsjVRT627lCaylrKJFBQWfRsPmIVQie8x38DEhAQ==";
};
};
- "markdown-link-extractor-1.2.7" = {
+ "markdown-link-extractor-1.3.0" = {
name = "markdown-link-extractor";
packageName = "markdown-link-extractor";
- version = "1.2.7";
+ version = "1.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/markdown-link-extractor/-/markdown-link-extractor-1.2.7.tgz";
- sha512 = "gFwyqKEMPAwXiW2n7ZeM26bJL9WfkYnzP1O2lxFvqenefzPQE4A5XjidqbotOyDA5qUzjOHeqYoaGa2qb4B4Og==";
+ url = "https://registry.npmjs.org/markdown-link-extractor/-/markdown-link-extractor-1.3.0.tgz";
+ sha512 = "1qXoYqhsU5qgWtUF9HQlBF82jRrakENh+7nmPUxoMJw13kf92jzb72EchrSsw5vdqbDLJurkpNL50xLFRhjmbw==";
};
};
"markdown-serve-0.3.3" = {
@@ -37288,6 +37252,24 @@ let
sha512 = "Ezda85ToJUBhM6WGaG6veasyym+Tbs3cMAw/ZhOPqXiYsr0jgocBV3j3nx+4lk47plLlIqjwuTm/ywVI+zjJ/A==";
};
};
+ "markdownlint-0.23.1" = {
+ name = "markdownlint";
+ packageName = "markdownlint";
+ version = "0.23.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/markdownlint/-/markdownlint-0.23.1.tgz";
+ sha512 = "iOEwhDfNmq2IJlaA8mzEkHYUi/Hwoa6Ss+HO5jkwUR6wQ4quFr0WzSx+Z9rsWZKUaPbyirIdL1zGmJRkWawr4Q==";
+ };
+ };
+ "markdownlint-rule-helpers-0.14.0" = {
+ name = "markdownlint-rule-helpers";
+ packageName = "markdownlint-rule-helpers";
+ version = "0.14.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/markdownlint-rule-helpers/-/markdownlint-rule-helpers-0.14.0.tgz";
+ sha512 = "vRTPqSU4JK8vVXmjICHSBhwXUvbfh/VJo+j7hvxqe15tLJyomv3FLgFdFgb8kpj0Fe8SsJa/TZUAXv7/sN+N7A==";
+ };
+ };
"marked-0.3.19" = {
name = "marked";
packageName = "marked";
@@ -37306,22 +37288,13 @@ let
sha512 = "c+yYdCZJQrsRjTPhUx7VKkApw9bwDkNbHUKo1ovgcfDjb2kc8rLuRbIFyXL5WOEUwzSSKo3IXpph2K6DqB/KZg==";
};
};
- "marked-0.8.2" = {
+ "marked-2.0.6" = {
name = "marked";
packageName = "marked";
- version = "0.8.2";
+ version = "2.0.6";
src = fetchurl {
- url = "https://registry.npmjs.org/marked/-/marked-0.8.2.tgz";
- sha512 = "EGwzEeCcLniFX51DhTpmTom+dSA/MG/OBUDjnWtHbEnjAH180VzUeAw+oE4+Zv+CoYBWyRlYOTR0N8SO9R1PVw==";
- };
- };
- "marked-2.0.3" = {
- name = "marked";
- packageName = "marked";
- version = "2.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/marked/-/marked-2.0.3.tgz";
- sha512 = "5otztIIcJfPc2qGTN8cVtOJEjNJZ0jwa46INMagrYfk0EvqtRuEHLsEe0LrFS0/q+ZRKT0+kXK7P2T1AN5lWRA==";
+ url = "https://registry.npmjs.org/marked/-/marked-2.0.6.tgz";
+ sha512 = "S2mYj0FzTQa0dLddssqwRVW4EOJOVJ355Xm2Vcbm+LU7GQRGWvwbO5K87OaPSOux2AwTSgtPPaXmc8sDPrhn2A==";
};
};
"marked-terminal-3.3.0" = {
@@ -37342,13 +37315,13 @@ let
sha512 = "t7Mdf6T3PvOEyN01c3tYxDzhyKZ8xnkp8Rs6Fohno63L/0pFTJ5Qtwto2AQVuDtbQiWzD+4E5AAu1Z2iLc8miQ==";
};
};
- "marky-1.2.1" = {
+ "marky-1.2.2" = {
name = "marky";
packageName = "marky";
- version = "1.2.1";
+ version = "1.2.2";
src = fetchurl {
- url = "https://registry.npmjs.org/marky/-/marky-1.2.1.tgz";
- sha512 = "md9k+Gxa3qLH6sUKpeC2CNkJK/Ld+bEz5X96nYwloqphQE0CKCVEKco/6jxEZixinqNdz5RFi/KaCyfbMDMAXQ==";
+ url = "https://registry.npmjs.org/marky/-/marky-1.2.2.tgz";
+ sha512 = "k1dB2HNeaNyORco8ulVEhctyEGkKHb2YWAhDsxeFlW2nROIirsctBYzKwwS3Vza+sKTS1zO4Z+n9/+9WbGLIxQ==";
};
};
"mastodon-api-1.3.0" = {
@@ -37513,22 +37486,13 @@ let
sha512 = "xbEFXCYVWrSx/gEKS1VPlg84h/4L20znVIulKw6kMfmBUAZNAnF00eczz9ICMl+/hjQGo5KSXRxbL/47X3rmMw==";
};
};
- "md5-hex-2.0.0" = {
+ "md5-hex-3.0.1" = {
name = "md5-hex";
packageName = "md5-hex";
- version = "2.0.0";
+ version = "3.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/md5-hex/-/md5-hex-2.0.0.tgz";
- sha1 = "d0588e9f1c74954492ecd24ac0ac6ce997d92e33";
- };
- };
- "md5-o-matic-0.1.1" = {
- name = "md5-o-matic";
- packageName = "md5-o-matic";
- version = "0.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/md5-o-matic/-/md5-o-matic-0.1.1.tgz";
- sha1 = "822bccd65e117c514fab176b25945d54100a03c3";
+ url = "https://registry.npmjs.org/md5-hex/-/md5-hex-3.0.1.tgz";
+ sha512 = "BUiRtTtV39LIJwinWBjqVsU9xhdnz7/i889V859IBFpuqGAj6LuOvHv5XLbgZ2R7ptJoJaEcxkv88/h25T7Ciw==";
};
};
"md5.js-1.3.5" = {
@@ -37576,6 +37540,24 @@ let
sha512 = "7GlnT24gEwDrdAwEHrU4Vv5lLWrEer4KOkAiKT9nYstsTad7Oc1TwqT2zIMKRdZF7cTuaf+GA1E4Kv7jJh8mPA==";
};
};
+ "mdast-util-find-and-replace-1.1.1" = {
+ name = "mdast-util-find-and-replace";
+ packageName = "mdast-util-find-and-replace";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mdast-util-find-and-replace/-/mdast-util-find-and-replace-1.1.1.tgz";
+ sha512 = "9cKl33Y21lyckGzpSmEQnIDjEfeeWelN5s1kUW1LwdB0Fkuq2u+4GdqcGEygYxJE8GVqCl0741bYXHgamfWAZA==";
+ };
+ };
+ "mdast-util-footnote-0.1.7" = {
+ name = "mdast-util-footnote";
+ packageName = "mdast-util-footnote";
+ version = "0.1.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mdast-util-footnote/-/mdast-util-footnote-0.1.7.tgz";
+ sha512 = "QxNdO8qSxqbO2e3m09KwDKfWiLgqyCurdWTQ198NpbZ2hxntdc+VKS4fDJCmNWbAroUdYnSthu+XbZ8ovh8C3w==";
+ };
+ };
"mdast-util-from-markdown-0.8.5" = {
name = "mdast-util-from-markdown";
packageName = "mdast-util-from-markdown";
@@ -37585,6 +37567,60 @@ let
sha512 = "2hkTXtYYnr+NubD/g6KGBS/0mFmBcifAsI0yIWRiRo0PjVs6SSOSOdtzbp6kSGnShDN6G5aWZpKQ2lWRy27mWQ==";
};
};
+ "mdast-util-frontmatter-0.2.0" = {
+ name = "mdast-util-frontmatter";
+ packageName = "mdast-util-frontmatter";
+ version = "0.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mdast-util-frontmatter/-/mdast-util-frontmatter-0.2.0.tgz";
+ sha512 = "FHKL4w4S5fdt1KjJCwB0178WJ0evnyyQr5kXTM3wrOVpytD0hrkvd+AOOjU9Td8onOejCkmZ+HQRT3CZ3coHHQ==";
+ };
+ };
+ "mdast-util-gfm-0.1.2" = {
+ name = "mdast-util-gfm";
+ packageName = "mdast-util-gfm";
+ version = "0.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mdast-util-gfm/-/mdast-util-gfm-0.1.2.tgz";
+ sha512 = "NNkhDx/qYcuOWB7xHUGWZYVXvjPFFd6afg6/e2g+SV4r9q5XUcCbV4Wfa3DLYIiD+xAEZc6K4MGaE/m0KDcPwQ==";
+ };
+ };
+ "mdast-util-gfm-autolink-literal-0.1.3" = {
+ name = "mdast-util-gfm-autolink-literal";
+ packageName = "mdast-util-gfm-autolink-literal";
+ version = "0.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mdast-util-gfm-autolink-literal/-/mdast-util-gfm-autolink-literal-0.1.3.tgz";
+ sha512 = "GjmLjWrXg1wqMIO9+ZsRik/s7PLwTaeCHVB7vRxUwLntZc8mzmTsLVr6HW1yLokcnhfURsn5zmSVdi3/xWWu1A==";
+ };
+ };
+ "mdast-util-gfm-strikethrough-0.2.3" = {
+ name = "mdast-util-gfm-strikethrough";
+ packageName = "mdast-util-gfm-strikethrough";
+ version = "0.2.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mdast-util-gfm-strikethrough/-/mdast-util-gfm-strikethrough-0.2.3.tgz";
+ sha512 = "5OQLXpt6qdbttcDG/UxYY7Yjj3e8P7X16LzvpX8pIQPYJ/C2Z1qFGMmcw+1PZMUM3Z8wt8NRfYTvCni93mgsgA==";
+ };
+ };
+ "mdast-util-gfm-table-0.1.6" = {
+ name = "mdast-util-gfm-table";
+ packageName = "mdast-util-gfm-table";
+ version = "0.1.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mdast-util-gfm-table/-/mdast-util-gfm-table-0.1.6.tgz";
+ sha512 = "j4yDxQ66AJSBwGkbpFEp9uG/LS1tZV3P33fN1gkyRB2LoRL+RR3f76m0HPHaby6F4Z5xr9Fv1URmATlRRUIpRQ==";
+ };
+ };
+ "mdast-util-gfm-task-list-item-0.1.6" = {
+ name = "mdast-util-gfm-task-list-item";
+ packageName = "mdast-util-gfm-task-list-item";
+ version = "0.1.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mdast-util-gfm-task-list-item/-/mdast-util-gfm-task-list-item-0.1.6.tgz";
+ sha512 = "/d51FFIfPsSmCIRNp7E6pozM9z1GYPIkSy1urQ8s/o4TC22BZ7DqfHFWiqBD23bc7J3vV1Fc9O4QIHBlfuit8A==";
+ };
+ };
"mdast-util-mdx-0.1.1" = {
name = "mdast-util-mdx";
packageName = "mdast-util-mdx";
@@ -37792,22 +37828,22 @@ let
sha512 = "qFCFUDs7U3b8mBDPyz5EToEKoAkgCzqquIgi9nkkR9bixxOVOre+09lbuH7+9Kn2NFpm56M3GUWVbU2hQgdACA==";
};
};
- "mem-fs-1.2.0" = {
+ "mem-fs-2.2.1" = {
name = "mem-fs";
packageName = "mem-fs";
- version = "1.2.0";
+ version = "2.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/mem-fs/-/mem-fs-1.2.0.tgz";
- sha512 = "b8g0jWKdl8pM0LqAPdK9i8ERL7nYrzmJfRhxMiWH2uYdfYnb7uXnmwVb0ZGe7xyEl4lj+nLIU3yf4zPUT+XsVQ==";
+ url = "https://registry.npmjs.org/mem-fs/-/mem-fs-2.2.1.tgz";
+ sha512 = "yiAivd4xFOH/WXlUi6v/nKopBh1QLzwjFi36NK88cGt/PRXI8WeBASqY+YSjIVWvQTx3hR8zHKDBMV6hWmglNA==";
};
};
- "mem-fs-editor-8.1.2" = {
+ "mem-fs-editor-9.0.1" = {
name = "mem-fs-editor";
packageName = "mem-fs-editor";
- version = "8.1.2";
+ version = "9.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/mem-fs-editor/-/mem-fs-editor-8.1.2.tgz";
- sha512 = "owE6PKMRegrYb37Lsar3yLSwK9wLGvHkNIOzBO3ycFeoOwshdF8j593EqjU7ucFAf3ZvcFVwfpo8Q8LqgFQg0A==";
+ url = "https://registry.npmjs.org/mem-fs-editor/-/mem-fs-editor-9.0.1.tgz";
+ sha512 = "SqW+DkPbxZVzVldNHexoo5MiUR3YpIqiCVcZ/SZ6f7KToaSV7pMd4/URrkD5mnj35bd6NAK7SlftHSyW+Kgk4w==";
};
};
"memfs-3.2.2" = {
@@ -37864,13 +37900,13 @@ let
sha1 = "7890b01d52c00c8ebc9d533e1f8eb17e3034871a";
};
};
- "memory-chunk-store-1.3.2" = {
+ "memory-chunk-store-1.3.5" = {
name = "memory-chunk-store";
packageName = "memory-chunk-store";
- version = "1.3.2";
+ version = "1.3.5";
src = fetchurl {
- url = "https://registry.npmjs.org/memory-chunk-store/-/memory-chunk-store-1.3.2.tgz";
- sha512 = "EBcbwpdQlzT5aNV0FTT+RAfh1cGEssjiCcRGcTk57mKsnZlRMOtH4Cfk/AqQnkz8xP2dUF+/lgpmErSGwwE1FA==";
+ url = "https://registry.npmjs.org/memory-chunk-store/-/memory-chunk-store-1.3.5.tgz";
+ sha512 = "E1Xc1U4ifk/FkC2ZsWhCaW1xg9HbE/OBmQTLe2Tr9c27YPSLbW7kw1cnb3kQWD1rDtErFJHa7mB9EVrs7aTx9g==";
};
};
"memory-fs-0.3.0" = {
@@ -38080,22 +38116,22 @@ let
sha1 = "f8a064760d37e7978ad5f9f6d3c119a494f57081";
};
};
- "mermaid-8.9.2" = {
+ "mermaid-8.10.1" = {
name = "mermaid";
packageName = "mermaid";
- version = "8.9.2";
+ version = "8.10.1";
src = fetchurl {
- url = "https://registry.npmjs.org/mermaid/-/mermaid-8.9.2.tgz";
- sha512 = "XWEaraDRDlHZexdeHSSr/MH4VJAOksRSPudchi69ecZJ7IUjjlzHsg32n4ZwJUh6lFO+NMYLHwHNNYUyxIjGPg==";
+ url = "https://registry.npmjs.org/mermaid/-/mermaid-8.10.1.tgz";
+ sha512 = "KxwKEJDKy303TQdz5TQMFb/4u+gUL21CefUMGOfuigDh9powcYaNmuJ5BkHmO0jB3Y1z2zlsuKvHZ2CusWH5+A==";
};
};
- "mersenne-0.0.4" = {
- name = "mersenne";
- packageName = "mersenne";
- version = "0.0.4";
+ "meros-1.1.4" = {
+ name = "meros";
+ packageName = "meros";
+ version = "1.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/mersenne/-/mersenne-0.0.4.tgz";
- sha1 = "401fdec7ec21cdb9e03cd3d3021398da21b27085";
+ url = "https://registry.npmjs.org/meros/-/meros-1.1.4.tgz";
+ sha512 = "E9ZXfK9iQfG9s73ars9qvvvbSIkJZF5yOo9j4tcwM5tN8mUKfj/EKN5PzOr3ZH0y5wL7dLAHw3RVEfpQV9Q7VQ==";
};
};
"metals-languageclient-0.4.2" = {
@@ -38269,6 +38305,78 @@ let
sha512 = "+WoovN/ppKolQOFIAajxi7Lu9kInbPxFuTBVEavFcL8eAfVstoc5MocPmqBeAdBOJV00uaVjegzH4+MA0DN/uA==";
};
};
+ "micromark-extension-footnote-0.3.2" = {
+ name = "micromark-extension-footnote";
+ packageName = "micromark-extension-footnote";
+ version = "0.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/micromark-extension-footnote/-/micromark-extension-footnote-0.3.2.tgz";
+ sha512 = "gr/BeIxbIWQoUm02cIfK7mdMZ/fbroRpLsck4kvFtjbzP4yi+OPVbnukTc/zy0i7spC2xYE/dbX1Sur8BEDJsQ==";
+ };
+ };
+ "micromark-extension-frontmatter-0.2.2" = {
+ name = "micromark-extension-frontmatter";
+ packageName = "micromark-extension-frontmatter";
+ version = "0.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/micromark-extension-frontmatter/-/micromark-extension-frontmatter-0.2.2.tgz";
+ sha512 = "q6nPLFCMTLtfsctAuS0Xh4vaolxSFUWUWR6PZSrXXiRy+SANGllpcqdXFv2z07l0Xz/6Hl40hK0ffNCJPH2n1A==";
+ };
+ };
+ "micromark-extension-gfm-0.3.3" = {
+ name = "micromark-extension-gfm";
+ packageName = "micromark-extension-gfm";
+ version = "0.3.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/micromark-extension-gfm/-/micromark-extension-gfm-0.3.3.tgz";
+ sha512 = "oVN4zv5/tAIA+l3GbMi7lWeYpJ14oQyJ3uEim20ktYFAcfX1x3LNlFGGlmrZHt7u9YlKExmyJdDGaTt6cMSR/A==";
+ };
+ };
+ "micromark-extension-gfm-autolink-literal-0.5.7" = {
+ name = "micromark-extension-gfm-autolink-literal";
+ packageName = "micromark-extension-gfm-autolink-literal";
+ version = "0.5.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-0.5.7.tgz";
+ sha512 = "ePiDGH0/lhcngCe8FtH4ARFoxKTUelMp4L7Gg2pujYD5CSMb9PbblnyL+AAMud/SNMyusbS2XDSiPIRcQoNFAw==";
+ };
+ };
+ "micromark-extension-gfm-strikethrough-0.6.5" = {
+ name = "micromark-extension-gfm-strikethrough";
+ packageName = "micromark-extension-gfm-strikethrough";
+ version = "0.6.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/micromark-extension-gfm-strikethrough/-/micromark-extension-gfm-strikethrough-0.6.5.tgz";
+ sha512 = "PpOKlgokpQRwUesRwWEp+fHjGGkZEejj83k9gU5iXCbDG+XBA92BqnRKYJdfqfkrRcZRgGuPuXb7DaK/DmxOhw==";
+ };
+ };
+ "micromark-extension-gfm-table-0.4.3" = {
+ name = "micromark-extension-gfm-table";
+ packageName = "micromark-extension-gfm-table";
+ version = "0.4.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/micromark-extension-gfm-table/-/micromark-extension-gfm-table-0.4.3.tgz";
+ sha512 = "hVGvESPq0fk6ALWtomcwmgLvH8ZSVpcPjzi0AjPclB9FsVRgMtGZkUcpE0zgjOCFAznKepF4z3hX8z6e3HODdA==";
+ };
+ };
+ "micromark-extension-gfm-tagfilter-0.3.0" = {
+ name = "micromark-extension-gfm-tagfilter";
+ packageName = "micromark-extension-gfm-tagfilter";
+ version = "0.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/micromark-extension-gfm-tagfilter/-/micromark-extension-gfm-tagfilter-0.3.0.tgz";
+ sha512 = "9GU0xBatryXifL//FJH+tAZ6i240xQuFrSL7mYi8f4oZSbc+NvXjkrHemeYP0+L4ZUT+Ptz3b95zhUZnMtoi/Q==";
+ };
+ };
+ "micromark-extension-gfm-task-list-item-0.3.3" = {
+ name = "micromark-extension-gfm-task-list-item";
+ packageName = "micromark-extension-gfm-task-list-item";
+ version = "0.3.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/micromark-extension-gfm-task-list-item/-/micromark-extension-gfm-task-list-item-0.3.3.tgz";
+ sha512 = "0zvM5iSLKrc/NQl84pZSjGo66aTGd57C1idmlWmE87lkMcXrTxg1uXa/nXomxJytoje9trP0NDLvw4bZ/Z/XCQ==";
+ };
+ };
"micromark-extension-mdx-0.2.1" = {
name = "micromark-extension-mdx";
packageName = "micromark-extension-mdx";
@@ -38989,22 +39097,22 @@ let
sha1 = "ebb3a977e7af1c683ae6fda12b545a6ba6c5853d";
};
};
- "mobx-6.3.0" = {
+ "mobx-6.3.2" = {
name = "mobx";
packageName = "mobx";
- version = "6.3.0";
+ version = "6.3.2";
src = fetchurl {
- url = "https://registry.npmjs.org/mobx/-/mobx-6.3.0.tgz";
- sha512 = "Aa1+VXsg4WxqJMTQfWoYuJi5UD10VZhiobSmcs5kcmI3BIT0aVtn7DysvCeDADCzl7dnbX+0BTHUj/v7gLlZpQ==";
+ url = "https://registry.npmjs.org/mobx/-/mobx-6.3.2.tgz";
+ sha512 = "xGPM9dIE1qkK9Nrhevp0gzpsmELKU4MFUJRORW/jqxVFIHHWIoQrjDjL8vkwoJYY3C2CeVJqgvl38hgKTalTWg==";
};
};
- "mobx-react-7.1.0" = {
+ "mobx-react-7.2.0" = {
name = "mobx-react";
packageName = "mobx-react";
- version = "7.1.0";
+ version = "7.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/mobx-react/-/mobx-react-7.1.0.tgz";
- sha512 = "DxvA6VXmnZ+N9f/UTtolWtdRnAAQY2iHWTSPLktfpj8NKlXUe4dabBAjuXrBcZUM8GjLWnxD1ZEjssXq1M0RAw==";
+ url = "https://registry.npmjs.org/mobx-react/-/mobx-react-7.2.0.tgz";
+ sha512 = "KHUjZ3HBmZlNnPd1M82jcdVsQRDlfym38zJhZEs33VxyVQTvL77hODCArq6+C1P1k/6erEeo2R7rpE7ZeOL7dg==";
};
};
"mobx-react-lite-3.2.0" = {
@@ -39034,13 +39142,13 @@ let
sha512 = "O9CIypScywTVpNaRrCAgoUnJgozpIofjKUYmJhiCIJMiuYnLI6otcb1/kpW9/n/tJODHGZ7i8aLQoDVsMtOKQQ==";
};
};
- "mocha-8.3.2" = {
+ "mocha-8.4.0" = {
name = "mocha";
packageName = "mocha";
- version = "8.3.2";
+ version = "8.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/mocha/-/mocha-8.3.2.tgz";
- sha512 = "UdmISwr/5w+uXLPKspgoV7/RXZwKRTiTjJ2/AC5ZiEztIoOYdfKb19+9jNmEInzx5pBsCyJQzarAxqIGBNYJhg==";
+ url = "https://registry.npmjs.org/mocha/-/mocha-8.4.0.tgz";
+ sha512 = "hJaO0mwDXmZS4ghXsvPVriOhsxQ7ofcpQdm8dE+jISUOKopitvnXFQmpRR7jd2K6VBG6E26gU3IAbXXGIbu4sQ==";
};
};
"mock-require-3.0.3" = {
@@ -39106,13 +39214,13 @@ let
sha512 = "7PZH8QFJ51cIVtDv7wfUREBd3gL59JB0v/ARA3RI9zkSRa9LyGjS1Bdldii2J1/NQXRQ/3OOVOSdnZrCcVaZlw==";
};
};
- "moize-6.0.2" = {
+ "moize-6.0.3" = {
name = "moize";
packageName = "moize";
- version = "6.0.2";
+ version = "6.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/moize/-/moize-6.0.2.tgz";
- sha512 = "94jF5aP4ul90e24fFe+covFPp4u5bGzlcGUsn0u6fZgKcnQpJ9e1nX75vxqtlyOUr92ww3DPMF+ziE4OQOkkkA==";
+ url = "https://registry.npmjs.org/moize/-/moize-6.0.3.tgz";
+ sha512 = "7Jz9TSiqW9G2u8HwUWnaBQMFMPLblrWKEiWN4BA/GPOfQlsnfQqq0yRnTGHckGPlKApA9Eu1HPb/eTqvK9EtKg==";
};
};
"mold-source-map-0.4.0" = {
@@ -39286,13 +39394,13 @@ let
sha512 = "GpxVObyOzL0CGPBqo6B04GinN8JLk12NRYAIkYvARd9ZCoJKevvOyCaWK6bdK/kFSDj3LPDnCsJbezzNlsi87Q==";
};
};
- "mqtt-packet-6.9.1" = {
+ "mqtt-packet-6.10.0" = {
name = "mqtt-packet";
packageName = "mqtt-packet";
- version = "6.9.1";
+ version = "6.10.0";
src = fetchurl {
- url = "https://registry.npmjs.org/mqtt-packet/-/mqtt-packet-6.9.1.tgz";
- sha512 = "0+u0ZoRj6H6AuzNY5d8qzXzyXmFI19gkdPRA14kGfKvbqYcpOL+HWUGHjtCxHqjm8CscwsH+dX0+Rxx4se5HSA==";
+ url = "https://registry.npmjs.org/mqtt-packet/-/mqtt-packet-6.10.0.tgz";
+ sha512 = "ja8+mFKIHdB1Tpl6vac+sktqy3gA8t9Mduom1BA75cI+R9AHnZOiaBQwpGiWnaVJLDGRdNhQmFaAqd7tkKSMGA==";
};
};
"mri-1.1.6" = {
@@ -39448,13 +39556,13 @@ let
sha512 = "ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==";
};
};
- "multicast-dns-7.2.2" = {
+ "multicast-dns-7.2.3" = {
name = "multicast-dns";
packageName = "multicast-dns";
- version = "7.2.2";
+ version = "7.2.3";
src = fetchurl {
- url = "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.2.2.tgz";
- sha512 = "XqSMeO8EWV/nOXOpPV8ztIpNweVfE1dSpz6SQvDPp71HD74lMXjt4m/mWB1YBMG0kHtOodxRWc5WOb/UNN1A5g==";
+ url = "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.2.3.tgz";
+ sha512 = "TzxgGSLRLB7tqAlzjgd2x2ZE0cDsGFq4rs9W4yE5xp+7hlRXeUQGtXZsTGfGw2FwWB45rfe8DtXMYBpZGMLUng==";
};
};
"multicast-dns-service-types-1.1.0" = {
@@ -39529,13 +39637,13 @@ let
sha1 = "2a8f2ddf70eed564dff2d57f1e1a137d9f05078b";
};
};
- "multiserver-3.7.1" = {
+ "multiserver-3.7.2" = {
name = "multiserver";
packageName = "multiserver";
- version = "3.7.1";
+ version = "3.7.2";
src = fetchurl {
- url = "https://registry.npmjs.org/multiserver/-/multiserver-3.7.1.tgz";
- sha512 = "wc+s3NNXjYEFT6AmeW8fVVBTZWhfwwbFU0M0KurZH6jAbsnWYQnEsnN90iqFkSmHkAnPW2hvT4O+lAfWsf/lVQ==";
+ url = "https://registry.npmjs.org/multiserver/-/multiserver-3.7.2.tgz";
+ sha512 = "RaRSN/g1QOujNkFtmLU52PCjjqUdhad7FO/aZRRTzWkpJuclk0jfWtvew9jKp0mNqC6RhriEm0U1L1qYiymF8Q==";
};
};
"multiserver-address-1.0.1" = {
@@ -39682,13 +39790,13 @@ let
sha512 = "nU7mOEuaXiQIB/EgTIjYZJ7g8KqMm2D8l4qp+DqA4jxWOb/tnb1KEoqp+tlbdQIDIAiC1i7j7X/3yHDFXLxr9g==";
};
};
- "muxrpc-6.5.2" = {
+ "muxrpc-6.5.3" = {
name = "muxrpc";
packageName = "muxrpc";
- version = "6.5.2";
+ version = "6.5.3";
src = fetchurl {
- url = "https://registry.npmjs.org/muxrpc/-/muxrpc-6.5.2.tgz";
- sha512 = "fgYhBfzevyUbwsB8YBlrnmzZOGxWv6OiAUNKQYwPLqbophsZ+GT8STKrCVHCYNjUx6btxFA5+BJPUCFMecyaSA==";
+ url = "https://registry.npmjs.org/muxrpc/-/muxrpc-6.5.3.tgz";
+ sha512 = "Q8NfvPB27T6KlAtEsy0g5Sz+HlfrMZMLcrhlb5nTfY4FMMsQAIM63FZvgInKqV6ENkSWuTOdqH4aUZosUXJCLA==";
};
};
"muxrpc-usage-2.1.0" = {
@@ -39826,6 +39934,15 @@ let
sha1 = "4f3152e09540fde28c76f44b19bbcd1d5a42478d";
};
};
+ "nanoassert-2.0.0" = {
+ name = "nanoassert";
+ packageName = "nanoassert";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nanoassert/-/nanoassert-2.0.0.tgz";
+ sha512 = "7vO7n28+aYO4J+8w96AzhmU8G+Y/xpPDJz/se19ICsqj/momRbb9mh9ZUtkoJ5X3nTnPdhEJyc0qnM6yAsHBaA==";
+ };
+ };
"nanobus-4.5.0" = {
name = "nanobus";
packageName = "nanobus";
@@ -39862,13 +39979,13 @@ let
sha512 = "a1cQNyczgKbLX9jwbS/+d7W8fX/RfgYR7lVWwWOGIPNgK2m0MWvrGF6/m4kk6U3QcFMnZf3RIhL0v2Jgh/0Uxw==";
};
};
- "nanoid-3.1.22" = {
+ "nanoid-3.1.23" = {
name = "nanoid";
packageName = "nanoid";
- version = "3.1.22";
+ version = "3.1.23";
src = fetchurl {
- url = "https://registry.npmjs.org/nanoid/-/nanoid-3.1.22.tgz";
- sha512 = "/2ZUaJX2ANuLtTvqTlgqBQNJoQO398KyJgZloL0PZkC0dpysjncRUPsFe3DUPzz/y3h+u7C46np8RMuvF3jsSQ==";
+ url = "https://registry.npmjs.org/nanoid/-/nanoid-3.1.23.tgz";
+ sha512 = "FiB0kzdP0FFVGDKlRLEQ1BgDzU87dy5NnzjeW9YZNt+/c3+q82EQDUwniSAUxp/F0gFNI1ZhKU1FqYsMuqZVnw==";
};
};
"nanolru-1.0.0" = {
@@ -39988,13 +40105,13 @@ let
sha512 = "p7KTHxU0CUrcOXe62Zfrb5Z13nLvPhSWR/so3kFulUQU0sgUll2Z0LwpsLN351eOOD+hRGu/F1g+6xDfPeD++Q==";
};
};
- "ncjsm-4.1.0" = {
+ "ncjsm-4.2.0" = {
name = "ncjsm";
packageName = "ncjsm";
- version = "4.1.0";
+ version = "4.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/ncjsm/-/ncjsm-4.1.0.tgz";
- sha512 = "YElRGtbz5iIartetOI3we+XAkcGE29F0SdNC0qRy500/u4WceQd2z9Nhlx24OHmIDIKz9MHdJwf/fkSG0hdWcQ==";
+ url = "https://registry.npmjs.org/ncjsm/-/ncjsm-4.2.0.tgz";
+ sha512 = "L2Qij4PTy7Bs4TB24zs7FLIAYJTaR5JPvSig5hIcO059LnMCNgy6MfHHNyg8s/aekPKrTqKX90gBGt3NNGvhdw==";
};
};
"nconf-0.10.0" = {
@@ -40250,22 +40367,22 @@ let
sha512 = "AO81vsIO1k1sM4Zrd6Hu7regmJN1NSiAja10gc4bX3F0wd+9rQmcuHQaHVQCYIEC8iFXnE+mavh23GOt7wBgug==";
};
};
- "netlify-6.1.20" = {
+ "netlify-7.0.0" = {
name = "netlify";
packageName = "netlify";
- version = "6.1.20";
+ version = "7.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/netlify/-/netlify-6.1.20.tgz";
- sha512 = "a0WYQIcJIIEmK7MxUWD/4awyBeGTukolaTgl84SILrnT6WC/HQqK8bIEPVJ5IhmbZioJIcl4UZMaDyWuPin6Kw==";
+ url = "https://registry.npmjs.org/netlify/-/netlify-7.0.0.tgz";
+ sha512 = "s454O7JRqrIo90c6rX+um1Xp7B0dGZBAYaIXYtA3em8DXJ0uWoglDeQSul8qGT1goAAF/9oMPo0T9KTM/XrjqA==";
};
};
- "netlify-redirect-parser-3.0.17" = {
+ "netlify-redirect-parser-3.0.29" = {
name = "netlify-redirect-parser";
packageName = "netlify-redirect-parser";
- version = "3.0.17";
+ version = "3.0.29";
src = fetchurl {
- url = "https://registry.npmjs.org/netlify-redirect-parser/-/netlify-redirect-parser-3.0.17.tgz";
- sha512 = "tKAVgpZg2CmNi9QMmdeoN10FTvsXKX5m+dw+ytdN9hVXGy+CWeCN5d0jqIL7wPl6iCXu3MXIIQGC78Q6BB8WJw==";
+ url = "https://registry.npmjs.org/netlify-redirect-parser/-/netlify-redirect-parser-3.0.29.tgz";
+ sha512 = "+lP4IG30CEpjlUaJM7hs/AW84gxkP0svvE80WJOcgB20lilPDkS6K3qeLlybjH/YznzomHZ0EF5Ydr/9d5I99A==";
};
};
"netlify-redirector-0.2.1" = {
@@ -40376,13 +40493,13 @@ let
sha512 = "CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==";
};
};
- "nextgen-events-1.3.4" = {
+ "nextgen-events-1.4.0" = {
name = "nextgen-events";
packageName = "nextgen-events";
- version = "1.3.4";
+ version = "1.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/nextgen-events/-/nextgen-events-1.3.4.tgz";
- sha512 = "umMRD9VOvQ7+AeCvMETA7tekqrzG0xOX2HLrpyZRuW+4NlXR5baZwY/CP7Sq3x1BkKCIa1KnI1m2+Fs+fJpOiQ==";
+ url = "https://registry.npmjs.org/nextgen-events/-/nextgen-events-1.4.0.tgz";
+ sha512 = "bwSpShfuLg/lcRFokZvtUcrn5kumy6uRI6Jc+QWzH+bW6ZRdog7LfwAwhqeTzVfsprZgDGrctr6rO5aJhcdAfg==";
};
};
"nice-try-1.0.5" = {
@@ -40466,22 +40583,22 @@ let
sha512 = "mYihjs47X5+N71CN3P+QBrEIBuclIfMMpgWEpkmLqFPvrOXdzokvDlhbLfjdBNZOqYgniaeZC6J1ZCgxFdyvXw==";
};
};
- "no-cliches-0.3.2" = {
+ "no-cliches-0.3.4" = {
name = "no-cliches";
packageName = "no-cliches";
- version = "0.3.2";
+ version = "0.3.4";
src = fetchurl {
- url = "https://registry.npmjs.org/no-cliches/-/no-cliches-0.3.2.tgz";
- sha512 = "zPpIr24OdcdM6lbg9QbFUGaLx9RueAkg1I4ZueuuB5452ZrxYfdwaBkhLGFCgpy3AaQ1w8HaY/8k2HmeyD9FXw==";
+ url = "https://registry.npmjs.org/no-cliches/-/no-cliches-0.3.4.tgz";
+ sha512 = "oUqnng1vhKLaA4GR+OzVbLuZZ7OOguKCtMHxHMiyP8+9mXidKfoCyc030LbAyNI3xcgCHHyitK3Q8wP+w6DwVQ==";
};
};
- "node-abi-2.26.0" = {
+ "node-abi-2.30.0" = {
name = "node-abi";
packageName = "node-abi";
- version = "2.26.0";
+ version = "2.30.0";
src = fetchurl {
- url = "https://registry.npmjs.org/node-abi/-/node-abi-2.26.0.tgz";
- sha512 = "ag/Vos/mXXpWLLAYWsAoQdgS+gW7IwvgMLOgqopm/DbzAjazLltzgzpVMsFlgmo9TzG5hGXeaBZx2AI731RIsQ==";
+ url = "https://registry.npmjs.org/node-abi/-/node-abi-2.30.0.tgz";
+ sha512 = "g6bZh3YCKQRdwuO/tSZZYJAw622SjsRfJ2X0Iy4sSOHZ34/sPPdVBn8fev2tj7njzLwuqPw9uMtGsGkO5kIQvg==";
};
};
"node-addon-api-1.7.2" = {
@@ -40520,13 +40637,13 @@ let
sha512 = "+D4s2HCnxPd5PjjI0STKwncjXTUKKqm74MDMz9OPXavjsGmjkvwgLtA5yoxJUdmpj52+2u+RrXgPipahKczMKg==";
};
};
- "node-addon-api-3.1.0" = {
+ "node-addon-api-3.2.1" = {
name = "node-addon-api";
packageName = "node-addon-api";
- version = "3.1.0";
+ version = "3.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/node-addon-api/-/node-addon-api-3.1.0.tgz";
- sha512 = "flmrDNB06LIl5lywUz7YlNGZH/5p0M7W28k8hzd9Lshtdh1wshD2Y+U4h9LD6KObOy1f+fEVdgprPrEymjM5uw==";
+ url = "https://registry.npmjs.org/node-addon-api/-/node-addon-api-3.2.1.tgz";
+ sha512 = "mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==";
};
};
"node-appc-1.1.2" = {
@@ -40638,15 +40755,6 @@ let
sha512 = "NhZ4CsKx7cYm2vSrBAr2PvFOe6sWDf0UYLRqA6svUYg7+/TSfVAu49jYC4BvQ4Sms9SZgdqGBgroqfDhJdTyKQ==";
};
};
- "node-fetch-2.2.0" = {
- name = "node-fetch";
- packageName = "node-fetch";
- version = "2.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/node-fetch/-/node-fetch-2.2.0.tgz";
- sha512 = "OayFWziIxiHY8bCUyLX6sTpDH8Jsbp4FfYd1j1f7vZyfgkcOnAyM4oQR16f8a0s7Gl/viMGRey8eScYk4V4EZA==";
- };
- };
"node-fetch-2.6.1" = {
name = "node-fetch";
packageName = "node-fetch";
@@ -40728,6 +40836,15 @@ let
sha512 = "CbpcIo7C3eMu3dL1c3d0xw449fHIGALIJsRP4DDPHpyiW8vcriNY7ubh9TE4zEKfSxscY7PjeFnshE7h75ynjQ==";
};
};
+ "node-gyp-8.1.0" = {
+ name = "node-gyp";
+ packageName = "node-gyp";
+ version = "8.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-gyp/-/node-gyp-8.1.0.tgz";
+ sha512 = "o2elh1qt7YUp3lkMwY3/l4KF3j/A3fI/Qt4NH+CQQgPJdqGE9y7qnP84cjIWN27Q0jJkrSAhCVDg+wBVNBYdBg==";
+ };
+ };
"node-gyp-build-3.9.0" = {
name = "node-gyp-build";
packageName = "node-gyp-build";
@@ -40827,13 +40944,13 @@ let
sha512 = "fPNFIp2hF/Dq7qLDzSg4vZ0J4e9v60gJR+Qx7RbjbWqzPDdEqeVpEx5CFeDAELIl+A/woaaNn1fQ5nEVerMxJg==";
};
};
- "node-object-hash-2.3.1" = {
+ "node-object-hash-2.3.2" = {
name = "node-object-hash";
packageName = "node-object-hash";
- version = "2.3.1";
+ version = "2.3.2";
src = fetchurl {
- url = "https://registry.npmjs.org/node-object-hash/-/node-object-hash-2.3.1.tgz";
- sha512 = "ab7pm34jqISawXpJ+fHjj2E9CmzDtm2fTTdurgzbWXIrdTEk2q2cSZRzoeGrwa0cvq6Sqezq6S9bhOBYPHRzuQ==";
+ url = "https://registry.npmjs.org/node-object-hash/-/node-object-hash-2.3.2.tgz";
+ sha512 = "QsV+vb6Kegh1V9eKeLJf2swNGkhH1sBtGWQz1fmwknGylbsyUt60iDIJWyGq2DeBRtuywdb+xXJydKa9BFNxTA==";
};
};
"node-persist-2.1.0" = {
@@ -40890,15 +41007,6 @@ let
sha512 = "+CvDC7ZttU/sSt9rFjix/P05iS43qHCOOGzcr3Ry99bXG7VX953+vFyEuph/tfqoYu8dttBkE86JSKBO2OzcxA==";
};
};
- "node-pre-gyp-0.15.0" = {
- name = "node-pre-gyp";
- packageName = "node-pre-gyp";
- version = "0.15.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.15.0.tgz";
- sha512 = "7QcZa8/fpaU/BKenjcaeFF9hLz2+7S9AqyXFhlH/rilsQ/hPZKK32RtR5EQHJElgu+q5RfbJ34KriI79UWaorA==";
- };
- };
"node-pre-gyp-0.6.39" = {
name = "node-pre-gyp";
packageName = "node-pre-gyp";
@@ -40944,13 +41052,13 @@ let
sha512 = "d/CbPGJMSNekJHOQu4WMNwjXRFnZ4c2+D3nlSdRH6wdUVVc++4nat8TuhcXKUe9W9+nqMrmVhReGnf8UwKsfBw==";
};
};
- "node-releases-1.1.71" = {
+ "node-releases-1.1.72" = {
name = "node-releases";
packageName = "node-releases";
- version = "1.1.71";
+ version = "1.1.72";
src = fetchurl {
- url = "https://registry.npmjs.org/node-releases/-/node-releases-1.1.71.tgz";
- sha512 = "zR6HoT6LrLCRBwukmrVbHv0EpEQjksO6GmFcZQQuCAy139BEsoVKPYnf3jongYW83fAa1torLGYwxxky/p28sg==";
+ url = "https://registry.npmjs.org/node-releases/-/node-releases-1.1.72.tgz";
+ sha512 = "LLUo+PpH3dU6XizX3iVoubUNheF/owjXCZZ5yACDxNnPtgFuludV1ZL3ayK1kVep42Rmm0+R9/Y60NQbZ2bifw==";
};
};
"node-source-walk-4.2.0" = {
@@ -41268,13 +41376,13 @@ let
sha512 = "U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg==";
};
};
- "normalize-url-4.5.0" = {
+ "normalize-url-4.5.1" = {
name = "normalize-url";
packageName = "normalize-url";
- version = "4.5.0";
+ version = "4.5.1";
src = fetchurl {
- url = "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.0.tgz";
- sha512 = "2s47yzUxdexf1OhyRi4Em83iQk0aPvwTddtFz4hnSSw9dCEsLEGf6SwIO8ss/19S9iBb5sJaOuTvTGDeZI00BQ==";
+ url = "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.1.tgz";
+ sha512 = "9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==";
};
};
"now-and-later-2.0.1" = {
@@ -41385,15 +41493,6 @@ let
sha512 = "xXxr8y5U0kl8dVkz2oK7yZjPBvqM2fwaO5l3Yg13p03v8+E3qQcD0JNhHzjL1vyGgxcKkD0cco+NLR72iuPk3g==";
};
};
- "npm-package-arg-8.1.0" = {
- name = "npm-package-arg";
- packageName = "npm-package-arg";
- version = "8.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-8.1.0.tgz";
- sha512 = "/ep6QDxBkm9HvOhOg0heitSd7JHA1U7y1qhhlRlteYYAi9Pdb/ZV7FW5aHpkrpM8+P+4p/jjR8zCyKPBMBjSig==";
- };
- };
"npm-package-arg-8.1.2" = {
name = "npm-package-arg";
packageName = "npm-package-arg";
@@ -41412,22 +41511,13 @@ let
sha512 = "5+AZgwru5IevF5ZdnFglB5wNlHG1AOOuw28WhUq8/8emhBmLv6jX5by4WJCh7lW0uSYZYS6DXqIsyZVIXRZU9A==";
};
};
- "npm-packlist-2.1.5" = {
+ "npm-packlist-2.2.2" = {
name = "npm-packlist";
packageName = "npm-packlist";
- version = "2.1.5";
+ version = "2.2.2";
src = fetchurl {
- url = "https://registry.npmjs.org/npm-packlist/-/npm-packlist-2.1.5.tgz";
- sha512 = "KCfK3Vi2F+PH1klYauoQzg81GQ8/GGjQRKYY6tRnpQUPKTs/1gBZSRWtTEd7jGdSn1LZL7gpAmJT+BcS55k2XQ==";
- };
- };
- "npm-pick-manifest-6.1.0" = {
- name = "npm-pick-manifest";
- packageName = "npm-pick-manifest";
- version = "6.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/npm-pick-manifest/-/npm-pick-manifest-6.1.0.tgz";
- sha512 = "ygs4k6f54ZxJXrzT0x34NybRlLeZ4+6nECAIbr2i0foTnijtS1TJiyzpqtuUAJOps/hO0tNDr8fRV5g+BtRlTw==";
+ url = "https://registry.npmjs.org/npm-packlist/-/npm-packlist-2.2.2.tgz";
+ sha512 = "Jt01acDvJRhJGthnUJVF/w6gumWOZxO7IkpY/lsX9//zqQgnF7OJaxgQXcerd4uQOLu7W5bkb4mChL9mdfm+Zg==";
};
};
"npm-pick-manifest-6.1.1" = {
@@ -41466,13 +41556,13 @@ let
sha512 = "Qs6P6nnopig+Y8gbzpeN/dkt+n7IyVd8f45NTMotGk6Qo7GfBmzwYx6jRLoOOgKiMnaQfYxsuyQlD8Mc3guBhg==";
};
};
- "npm-registry-fetch-10.1.1" = {
+ "npm-registry-fetch-10.1.2" = {
name = "npm-registry-fetch";
packageName = "npm-registry-fetch";
- version = "10.1.1";
+ version = "10.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-10.1.1.tgz";
- sha512 = "F6a3l+ffCQ7hvvN16YG5bpm1rPZntCg66PLHDQ1apWJPOCUVHoKnL2w5fqEaTVhp42dmossTyXeR7hTGirfXrg==";
+ url = "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-10.1.2.tgz";
+ sha512 = "KsM/TdPmntqgBFlfsbkOLkkE9ovZo7VpVcd+/eTdYszCrgy5zFl5JzWm+OxavFaEWlbkirpkou+ZYI00RmOBFA==";
};
};
"npm-registry-fetch-9.0.0" = {
@@ -41592,6 +41682,15 @@ let
sha1 = "201095a487e1ad36081b3432fa3cada4f8d071b0";
};
};
+ "nullthrows-1.1.1" = {
+ name = "nullthrows";
+ packageName = "nullthrows";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nullthrows/-/nullthrows-1.1.1.tgz";
+ sha512 = "2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==";
+ };
+ };
"num-sort-2.1.0" = {
name = "num-sort";
packageName = "num-sort";
@@ -41845,22 +41944,22 @@ let
sha512 = "OSuu/pU4ENM9kmREg0BdNrUDIl1heYa4mBZacJc+vVWz4GtAwu7jO8s4AIt2aGRUTqxykpWzI3Oqnsm13tTMDA==";
};
};
- "object-hash-2.1.1" = {
+ "object-hash-2.2.0" = {
name = "object-hash";
packageName = "object-hash";
- version = "2.1.1";
+ version = "2.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/object-hash/-/object-hash-2.1.1.tgz";
- sha512 = "VOJmgmS+7wvXf8CjbQmimtCnEx3IAoLxI3fp2fbWehxrWBcAQFbk+vcwb6vzR0VZv/eNCJ/27j151ZTwqW/JeQ==";
+ url = "https://registry.npmjs.org/object-hash/-/object-hash-2.2.0.tgz";
+ sha512 = "gScRMn0bS5fH+IuwyIFgnh9zBdo4DV+6GhygmWM9HyNJSgS0hScp1f5vjtm7oIIOiT9trXrShAkLFSc2IqKNgw==";
};
};
- "object-inspect-1.10.2" = {
+ "object-inspect-1.10.3" = {
name = "object-inspect";
packageName = "object-inspect";
- version = "1.10.2";
+ version = "1.10.3";
src = fetchurl {
- url = "https://registry.npmjs.org/object-inspect/-/object-inspect-1.10.2.tgz";
- sha512 = "gz58rdPpadwztRrPjZE9DZLOABUpTGdcANUgOwBFO1C+HZZhePoP83M65WGDmbpwFYJSWqavbl4SgDn4k8RYTA==";
+ url = "https://registry.npmjs.org/object-inspect/-/object-inspect-1.10.3.tgz";
+ sha512 = "e5mCJlSH7poANfC8z8S9s9S2IN5/4Zb3aZ33f5s8YqoazCFzNLloLU8r5VCG+G7WoqLvAAZoVMcy3tp/3X0Plw==";
};
};
"object-inspect-1.4.1" = {
@@ -41971,22 +42070,13 @@ let
sha1 = "3a7f868334b407dea06da16d88d5cd29e435fecf";
};
};
- "object.entries-1.1.3" = {
+ "object.entries-1.1.4" = {
name = "object.entries";
packageName = "object.entries";
- version = "1.1.3";
+ version = "1.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/object.entries/-/object.entries-1.1.3.tgz";
- sha512 = "ym7h7OZebNS96hn5IJeyUmaWhaSM4SVtAPPfNLQEI2MYWCO2egsITb9nab2+i/Pwibx+R0mtn+ltKJXRSeTMGg==";
- };
- };
- "object.fromentries-2.0.4" = {
- name = "object.fromentries";
- packageName = "object.fromentries";
- version = "2.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.4.tgz";
- sha512 = "EsFBshs5RUUpQEY1D4q/m59kMfz4YJvxuNCJcv/jWwOJr34EaVnG11ZrZa0UHB3wnzV1wx8m58T4hQL8IuNXlQ==";
+ url = "https://registry.npmjs.org/object.entries/-/object.entries-1.1.4.tgz";
+ sha512 = "h4LWKWE+wKQGhtMjZEBud7uLGhqyLwj8fpHOarZhD2uY3C9cRtk57VQ89ke3moByLXMedqs3XCHzyb4AmA2DjA==";
};
};
"object.getownpropertydescriptors-2.1.2" = {
@@ -42034,13 +42124,13 @@ let
sha1 = "6fe348f2ac7fa0f95ca621226599096825bb03ad";
};
};
- "object.values-1.1.3" = {
+ "object.values-1.1.4" = {
name = "object.values";
packageName = "object.values";
- version = "1.1.3";
+ version = "1.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/object.values/-/object.values-1.1.3.tgz";
- sha512 = "nkF6PfDB9alkOUxpf1HNm/QlkeW3SReqL5WXeBLpEJJnlPSvRaDQpW3gQTksTN3fgJX4hL42RzKyOin6ff3tyw==";
+ url = "https://registry.npmjs.org/object.values/-/object.values-1.1.4.tgz";
+ sha512 = "TnGo7j4XSnKQoK3MfvkzqKCi0nVe/D9I9IjwTNYdb/fxYHpjrluHVOgw0AF6jrRFGMPHdfuidR09tIDiIvnaSg==";
};
};
"object_values-0.1.2" = {
@@ -42115,22 +42205,13 @@ let
sha512 = "0HGaSR/E/seIhSzFxLkh0QqckuNSre4iGqSElZRUv1hVHH2YgrZ7xtQL9McwL8o1fh6HqkzykjUx0Iy2haVIUg==";
};
};
- "octokit-pagination-methods-1.1.0" = {
- name = "octokit-pagination-methods";
- packageName = "octokit-pagination-methods";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/octokit-pagination-methods/-/octokit-pagination-methods-1.1.0.tgz";
- sha512 = "fZ4qZdQ2nxJvtcasX7Ghl+WlWS/d9IgnBIwFZXVNNZUmzpno91SX5bc5vuxiuKoCtK78XxGGNuSCrDC7xYB3OQ==";
- };
- };
- "office-ui-fabric-react-7.168.0" = {
+ "office-ui-fabric-react-7.170.1" = {
name = "office-ui-fabric-react";
packageName = "office-ui-fabric-react";
- version = "7.168.0";
+ version = "7.170.1";
src = fetchurl {
- url = "https://registry.npmjs.org/office-ui-fabric-react/-/office-ui-fabric-react-7.168.0.tgz";
- sha512 = "hxH6HuNEIPVwO1ahzkVTkrARbN1vGP0W0qgbNPNcQDjnux9moyLgGcp0BzWXG6mNlTKFti/6WceCwXFjLEyPkw==";
+ url = "https://registry.npmjs.org/office-ui-fabric-react/-/office-ui-fabric-react-7.170.1.tgz";
+ sha512 = "NZULXfe9I9W1THYUOFOPr7vLStRbdYNJi3+sJSRrNQHSeeGlUaFbAIOiT8g8h+3Seypk4Ybtm7vZXc6mUHx+Gw==";
};
};
"omggif-1.0.10" = {
@@ -42295,13 +42376,13 @@ let
sha512 = "kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==";
};
};
- "oo-ascii-tree-1.29.0" = {
+ "oo-ascii-tree-1.30.0" = {
name = "oo-ascii-tree";
packageName = "oo-ascii-tree";
- version = "1.29.0";
+ version = "1.30.0";
src = fetchurl {
- url = "https://registry.npmjs.org/oo-ascii-tree/-/oo-ascii-tree-1.29.0.tgz";
- sha512 = "DUwUL3Yc3lS2znWBlOi5eEU4pKoGGK2IaB/S7XygSBzmSS2jJE6+waAip17FNeNXfC4aXClr95HxZXamCLtYqQ==";
+ url = "https://registry.npmjs.org/oo-ascii-tree/-/oo-ascii-tree-1.30.0.tgz";
+ sha512 = "TzXuoCnha2QHFcAR+8+tBgD7Wnn6Uh+P3aZMoXKDJ3CVLXFnTnzHy4WMmmz01pTfv+f5haQMjhL9OIFJLEZ5kA==";
};
};
"opal-runtime-1.0.11" = {
@@ -42358,15 +42439,6 @@ let
sha512 = "mgLwQIx2F/ye9SmbrUkurZCnkoXyXyu9EbHtJZrICjVAJfyMArdHp3KkixGdZx1ZHFPNIwl0DDM1dFFqXbTLZw==";
};
};
- "open-7.4.0" = {
- name = "open";
- packageName = "open";
- version = "7.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/open/-/open-7.4.0.tgz";
- sha512 = "PGoBCX/lclIWlpS/R2PQuIR4NJoXh6X5AwVzE7WXnWRGvHg7+4TBCgsujUgiPpm0K1y4qvQeWnCWVTpTKZBtvA==";
- };
- };
"open-7.4.2" = {
name = "open";
packageName = "open";
@@ -42376,13 +42448,31 @@ let
sha512 = "MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==";
};
};
- "open-8.0.6" = {
+ "open-8.0.2" = {
name = "open";
packageName = "open";
- version = "8.0.6";
+ version = "8.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/open/-/open-8.0.6.tgz";
- sha512 = "vDOC0KwGabMPFtIpCO2QOnQeOz0N2rEkbuCuxICwLMUCrpv+A7NHrrzJ2dQReJmVluHhO4pYRh/Pn6s8t7Op6Q==";
+ url = "https://registry.npmjs.org/open/-/open-8.0.2.tgz";
+ sha512 = "NV5QmWJrTaNBLHABJyrb+nd5dXI5zfea/suWawBhkHzAbVhLLiJdrqMgxMypGK9Eznp2Ltoh7SAVkQ3XAucX7Q==";
+ };
+ };
+ "open-8.1.0" = {
+ name = "open";
+ packageName = "open";
+ version = "8.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/open/-/open-8.1.0.tgz";
+ sha512 = "jB5hAtsDOhCy/FNQJwQJOrGlxLUat482Yr14rbA5l2Zb1eOeoS+ccQPO036C1+z9VDBTmOZqzh1tBbI4myzIYw==";
+ };
+ };
+ "open-8.2.0" = {
+ name = "open";
+ packageName = "open";
+ version = "8.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/open/-/open-8.2.0.tgz";
+ sha512 = "O8uInONB4asyY3qUcEytpgwxQG3O0fJ/hlssoUHsBboOIRVZzT6Wq+Rwj5nffbeUhOdMjpXeISpDDzHCMRDuOQ==";
};
};
"openapi-default-setter-2.1.0" = {
@@ -42493,13 +42583,13 @@ let
sha512 = "Su8jA45PhegUgJnEAT15DYt2spPJgvjyTtXqg+Lw5AtGePfcQskV6ACEzsL0XPoAXIFf09Vx6sBor9pek+tl+Q==";
};
};
- "openapi-sampler-1.0.0-beta.18" = {
+ "openapi-sampler-1.0.0" = {
name = "openapi-sampler";
packageName = "openapi-sampler";
- version = "1.0.0-beta.18";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/openapi-sampler/-/openapi-sampler-1.0.0-beta.18.tgz";
- sha512 = "nG/0kvvSY5FbrU5A+Dbp1xTQN++7pKIh87/atryZlxrzDuok5Y6TCbpxO1jYqpUKLycE4ReKGHCywezngG6xtQ==";
+ url = "https://registry.npmjs.org/openapi-sampler/-/openapi-sampler-1.0.0.tgz";
+ sha512 = "HysKj4ZuLk0RpZkopao5SIupUX8LMOTsEDTw9dSzcRv6BBW6Ep1IdbKwYsCrYM9tnw4VZtebR/N5sJHY6qqRew==";
};
};
"openapi-schema-validator-3.0.3" = {
@@ -42583,13 +42673,13 @@ let
sha512 = "olbaNxz12R27+mTyJ/ZAFEfUruauHH27AkeQHDHRq5AF0LdNkK1SSV7EourXQDK+4aX7dv2HtyirAGK06WMAsA==";
};
};
- "openapi3-ts-1.4.0" = {
+ "openapi3-ts-2.0.1" = {
name = "openapi3-ts";
packageName = "openapi3-ts";
- version = "1.4.0";
+ version = "2.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/openapi3-ts/-/openapi3-ts-1.4.0.tgz";
- sha512 = "8DmE2oKayvSkIR3XSZ4+pRliBsx19bSNeIzkTPswY8r4wvjX86bMxsORdqwAwMxE8PefOcSAT2auvi/0TZe9yA==";
+ url = "https://registry.npmjs.org/openapi3-ts/-/openapi3-ts-2.0.1.tgz";
+ sha512 = "v6X3iwddhi276siej96jHGIqTx3wzVfMTmpGJEQDt7GPI7pI6sywItURLzpEci21SBRpPN/aOWSF5mVfFVNmcg==";
};
};
"opencollective-1.0.3" = {
@@ -42709,13 +42799,13 @@ let
sha1 = "da3ea74686fa21a19a111c326e90eb15a0196686";
};
};
- "optimize-css-assets-webpack-plugin-5.0.4" = {
+ "optimize-css-assets-webpack-plugin-5.0.6" = {
name = "optimize-css-assets-webpack-plugin";
packageName = "optimize-css-assets-webpack-plugin";
- version = "5.0.4";
+ version = "5.0.6";
src = fetchurl {
- url = "https://registry.npmjs.org/optimize-css-assets-webpack-plugin/-/optimize-css-assets-webpack-plugin-5.0.4.tgz";
- sha512 = "wqd6FdI2a5/FdoiCNNkEvLeA//lHHfG24Ln2Xm2qqdIk4aOlsR18jwpyOihqQ8849W3qu2DX8fOYxpvTMj+93A==";
+ url = "https://registry.npmjs.org/optimize-css-assets-webpack-plugin/-/optimize-css-assets-webpack-plugin-5.0.6.tgz";
+ sha512 = "JAYw7WrIAIuHWoKeSBB3lJ6ZG9PSDK3JJduv/FMpIY060wvbA8Lqn/TCtxNGICNlg0X5AGshLzIhpYrkltdq+A==";
};
};
"optional-0.1.4" = {
@@ -42817,15 +42907,6 @@ let
sha512 = "eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg==";
};
};
- "ora-4.1.1" = {
- name = "ora";
- packageName = "ora";
- version = "4.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/ora/-/ora-4.1.1.tgz";
- sha512 = "sjYP8QyVWBpBZWD6Vr1M/KwknSw6kJOz41tvGMlwWeClHBtYKTbHMki1PsLZnxKpXMPbTKv9b3pjQu3REib96A==";
- };
- };
"ora-5.1.0" = {
name = "ora";
packageName = "ora";
@@ -42880,15 +42961,6 @@ let
sha512 = "hyBVl6iqqUOJ8FqRe+l/gS8H+kKYjrEndd5Pm1MfBtsEKA038HkkdbAl/72EAXGyonD/PFsvmVG+EvcIpliMBg==";
};
};
- "os-0.1.1" = {
- name = "os";
- packageName = "os";
- version = "0.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/os/-/os-0.1.1.tgz";
- sha1 = "208845e89e193ad4d971474b93947736a56d13f3";
- };
- };
"os-browserify-0.3.0" = {
name = "os-browserify";
packageName = "os-browserify";
@@ -42988,22 +43060,22 @@ let
sha512 = "0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==";
};
};
- "ot-builder-1.0.4" = {
+ "ot-builder-1.0.7" = {
name = "ot-builder";
packageName = "ot-builder";
- version = "1.0.4";
+ version = "1.0.7";
src = fetchurl {
- url = "https://registry.npmjs.org/ot-builder/-/ot-builder-1.0.4.tgz";
- sha512 = "M8FhdQrpsHAQo+qYcAmnrl14HvXcew4M5tZCsQk4GZfeYVPr8TJZPwiHXScYbqH9+uNrU5U8tRjgHi44inVxxw==";
+ url = "https://registry.npmjs.org/ot-builder/-/ot-builder-1.0.7.tgz";
+ sha512 = "VhBztvKbf4PfsWIePHVzRhcstXWNv4StU7AqYpypzG/vxXbuRxamROSgHxklY2iDivLUbZWXIgxP5yeThQO4UQ==";
};
};
- "otb-ttc-bundle-1.0.4" = {
+ "otb-ttc-bundle-1.0.7" = {
name = "otb-ttc-bundle";
packageName = "otb-ttc-bundle";
- version = "1.0.4";
+ version = "1.0.7";
src = fetchurl {
- url = "https://registry.npmjs.org/otb-ttc-bundle/-/otb-ttc-bundle-1.0.4.tgz";
- sha512 = "EnGZoAtvzLKM+kO3VZSavt11FzVIDQQq5o3s66LMvJZ2LdHbZg1L9WdAvnZjY2+SXdtLEo6VNlL1gP4l9ovRjw==";
+ url = "https://registry.npmjs.org/otb-ttc-bundle/-/otb-ttc-bundle-1.0.7.tgz";
+ sha512 = "j6HyPSsOuDFLSupDEyXcg8XcaVTlO6L9RDyeq1pSDuMUhF0zqJIMLvNC0CyXmjYuzq43VALjMgT18y7A//O34g==";
};
};
"ow-0.21.0" = {
@@ -43060,13 +43132,13 @@ let
sha512 = "s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==";
};
};
- "p-cancelable-2.1.0" = {
+ "p-cancelable-2.1.1" = {
name = "p-cancelable";
packageName = "p-cancelable";
- version = "2.1.0";
+ version = "2.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/p-cancelable/-/p-cancelable-2.1.0.tgz";
- sha512 = "HAZyB3ZodPo+BDpb4/Iu7Jv4P6cSazBz9ZM0ChhEXp70scx834aWCEjQRwgt41UzzejUAPdbqqONfRWTPYrPAQ==";
+ url = "https://registry.npmjs.org/p-cancelable/-/p-cancelable-2.1.1.tgz";
+ sha512 = "BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==";
};
};
"p-debounce-1.0.0" = {
@@ -43519,13 +43591,13 @@ let
sha512 = "LUL4NK7sz01jdSUdCu3z1LyphCiFdQaFouaEDsAWmJpzS0lbeNfvZoX4bi1Tm1ilzheK5VAoD96QskDCZQr+jA==";
};
};
- "pacote-11.2.4" = {
+ "pacote-11.3.2" = {
name = "pacote";
packageName = "pacote";
- version = "11.2.4";
+ version = "11.3.2";
src = fetchurl {
- url = "https://registry.npmjs.org/pacote/-/pacote-11.2.4.tgz";
- sha512 = "GfTeVQGJ6WyBQbQD4t3ocHbyOmTQLmWjkCKSZPmKiGFKYKNUaM5U2gbLzUW8WG1XmS9yQFnsTFA0k3o1+q4klQ==";
+ url = "https://registry.npmjs.org/pacote/-/pacote-11.3.2.tgz";
+ sha512 = "lMO7V9aMhyE5gfaSFxKfW3OTdXuFBNQJfuNuet3NPzWWhOYIW90t85vHcHLDjdhgmfAdAHyh9q1HAap96ea0XA==";
};
};
"pacote-11.3.3" = {
@@ -43573,13 +43645,13 @@ let
sha512 = "4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==";
};
};
- "papaparse-4.6.0" = {
+ "papaparse-5.2.0" = {
name = "papaparse";
packageName = "papaparse";
- version = "4.6.0";
+ version = "5.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/papaparse/-/papaparse-4.6.0.tgz";
- sha512 = "ylm8pmgyz9rkS3Ng/ru5tHUF3JxWwKYP0aZZWZ8eCGdSxoqgYiDUXLNQei73mUJOjHw8QNu5ZNCsLoDpkMA6sg==";
+ url = "https://registry.npmjs.org/papaparse/-/papaparse-5.2.0.tgz";
+ sha512 = "ylq1wgUSnagU+MKQtNeVqrPhZuMYBvOSL00DHycFTCxownF95gpLAk1HiHdUW77N8yxRq1qHXLdlIPyBSG9NSA==";
};
};
"parallel-transform-1.2.0" = {
@@ -44347,13 +44419,13 @@ let
sha512 = "CMP0v6S6z8PHeJ6NFVyVJm6WyJjIwFvyz2b0n2/4bKdS/0uZa/9sKUlYZzubrn3zuDRU0zIuEDX9DZYQ2ZI8TA==";
};
};
- "path-parse-1.0.6" = {
+ "path-parse-1.0.7" = {
name = "path-parse";
packageName = "path-parse";
- version = "1.0.6";
+ version = "1.0.7";
src = fetchurl {
- url = "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz";
- sha512 = "GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==";
+ url = "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz";
+ sha512 = "LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==";
};
};
"path-platform-0.11.15" = {
@@ -44455,6 +44527,15 @@ let
sha512 = "gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==";
};
};
+ "path2-0.1.0" = {
+ name = "path2";
+ packageName = "path2";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/path2/-/path2-0.1.0.tgz";
+ sha1 = "639828942cdbda44a41a45b074ae8873483b4efa";
+ };
+ };
"pathval-1.1.1" = {
name = "pathval";
packageName = "pathval";
@@ -44572,13 +44653,13 @@ let
sha1 = "7a57eb550a6783f9115331fcf4663d5c8e007a50";
};
};
- "perfect-scrollbar-1.5.0" = {
+ "perfect-scrollbar-1.5.1" = {
name = "perfect-scrollbar";
packageName = "perfect-scrollbar";
- version = "1.5.0";
+ version = "1.5.1";
src = fetchurl {
- url = "https://registry.npmjs.org/perfect-scrollbar/-/perfect-scrollbar-1.5.0.tgz";
- sha512 = "NrNHJn5mUGupSiheBTy6x+6SXCFbLlm8fVZh9moIzw/LgqElN5q4ncR4pbCBCYuCJ8Kcl9mYM0NgDxvW+b4LxA==";
+ url = "https://registry.npmjs.org/perfect-scrollbar/-/perfect-scrollbar-1.5.1.tgz";
+ sha512 = "MrSImINnIh3Tm1hdPT6bji6fmIeRorVEegQvyUnhqko2hDGTHhmjPefHXfxG/Jb8xVbfCwgmUIlIajERGXjVXQ==";
};
};
"performance-now-0.2.0" = {
@@ -44698,6 +44779,15 @@ let
sha512 = "KpELjfwcCDUb9PeigTs2mBJzXUPzAuP2oPcA989He8Rte0+YUAjw1JVedDhuTKPkHjSYzMN3npC9luThGYEKdg==";
};
};
+ "picomatch-2.3.0" = {
+ name = "picomatch";
+ packageName = "picomatch";
+ version = "2.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz";
+ sha512 = "lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==";
+ };
+ };
"picture-tuber-1.0.2" = {
name = "picture-tuber";
packageName = "picture-tuber";
@@ -44842,15 +44932,6 @@ let
sha512 = "6Rtbp7criZRwedlvWbUYxqlqJoAlMvYHo2UcRWq79xZ54vZcaNHpVBOcWkX3ErT2aUA69tv+uiv4zKJbhD/Wgg==";
};
};
- "pipeline-pipe-0.1.5" = {
- name = "pipeline-pipe";
- packageName = "pipeline-pipe";
- version = "0.1.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/pipeline-pipe/-/pipeline-pipe-0.1.5.tgz";
- sha512 = "HFub9yAfxEWBZZmsA12dWiFpg9+er8Sp7bpVwKP41AsAeO6570PVhU2Ckkt8fMnHBwm1edLLg2wIfpNGCDvI0Q==";
- };
- };
"pipeworks-1.3.1" = {
name = "pipeworks";
packageName = "pipeworks";
@@ -45779,13 +45860,13 @@ let
sha512 = "36P2QR59jDTOAiIkqEprfJDsoNrvwFei3eCqKd1Y0tUsBimsq39BLp7RD+JWny3WgB1zGhJX8XVePwm9k4wdBg==";
};
};
- "postcss-selector-parser-6.0.5" = {
+ "postcss-selector-parser-6.0.6" = {
name = "postcss-selector-parser";
packageName = "postcss-selector-parser";
- version = "6.0.5";
+ version = "6.0.6";
src = fetchurl {
- url = "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.5.tgz";
- sha512 = "aFYPoYmXbZ1V6HZaSvat08M97A8HqO6Pjz+PiNpw/DhuRrC72XWAdp3hL6wusDCN31sSmcZyMGa2hZEuX+Xfhg==";
+ url = "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.6.tgz";
+ sha512 = "9LXrvaaX3+mcv5xkg5kFwqSzSH1JIObIx51PrndZwlmznwXRfxMddDvo9gve3gVR8ZTKgoFDdWkbRFmEhT4PMg==";
};
};
"postcss-svgo-4.0.3" = {
@@ -46049,13 +46130,13 @@ let
sha512 = "7PtVymN48hGcO4fGjybyBSIWDsLU4H4XlvOHfq91pz9kkGlonzwTfYkaIEwiRg/dAJF9YlbsduBAgtYLi+8cFg==";
};
};
- "prettier-2.2.1" = {
+ "prettier-2.3.0" = {
name = "prettier";
packageName = "prettier";
- version = "2.2.1";
+ version = "2.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/prettier/-/prettier-2.2.1.tgz";
- sha512 = "PqyhM2yCjg/oKkFPtTGUojv7gnZAoG80ttl45O6x2Ug/rMJw4wcc9k6aaf2hibP7BGVCCM33gZoGjyvt9mm16Q==";
+ url = "https://registry.npmjs.org/prettier/-/prettier-2.3.0.tgz";
+ sha512 = "kXtO4s0Lz/DW/IJ9QdWhAf7/NmPWQXkFr/r/WkR3vyI+0v8amTDxiaQSLzs8NBlytfLWX/7uQUMIW677yLKl4w==";
};
};
"prettier-bytes-1.0.4" = {
@@ -46085,13 +46166,22 @@ let
sha512 = "2UzApPuxi2yRoyMlXMazgR6UcH9DKJhNgCviIwY3ixZ9THWSSrUww5vkiZ3C48WvpFl1M1y/oU63deSy1puWEA==";
};
};
- "prettier-plugin-svelte-2.2.0" = {
+ "prettier-linter-helpers-1.0.0" = {
+ name = "prettier-linter-helpers";
+ packageName = "prettier-linter-helpers";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz";
+ sha512 = "GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==";
+ };
+ };
+ "prettier-plugin-svelte-2.3.0" = {
name = "prettier-plugin-svelte";
packageName = "prettier-plugin-svelte";
- version = "2.2.0";
+ version = "2.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/prettier-plugin-svelte/-/prettier-plugin-svelte-2.2.0.tgz";
- sha512 = "Xdmqgr71tAuMqqzNCK52/v94g/Yv7V7lz+nmbO9NEA+9ol15VV3uUHOfydMNOo3SWvFaVlBcp947ebEaMWqVfQ==";
+ url = "https://registry.npmjs.org/prettier-plugin-svelte/-/prettier-plugin-svelte-2.3.0.tgz";
+ sha512 = "HTzXvSq7lWFuLsSaxYOUkGkVNCl3RrSjDCOgQjkBX5FQGmWjL8o3IFACSGhjPMMfWKADpapAr0zdbBWkND9mqw==";
};
};
"prettier-stylelint-0.4.2" = {
@@ -46436,6 +46526,15 @@ let
sha512 = "iz22FmTbtkyL2vt0MdDFY+kWof+S9UB/NACxSn2aJcewtw+EERsen0urSkZ2WrHseNdydsvcxCTAnPcSMZZv4Q==";
};
};
+ "prom-client-13.1.0" = {
+ name = "prom-client";
+ packageName = "prom-client";
+ version = "13.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/prom-client/-/prom-client-13.1.0.tgz";
+ sha512 = "jT9VccZCWrJWXdyEtQddCDszYsiuWj5T0ekrPszi/WEegj3IZy6Mm09iOOVM86A4IKMWq8hZkT2dD9MaSe+sng==";
+ };
+ };
"promiscuous-0.6.0" = {
name = "promiscuous";
packageName = "promiscuous";
@@ -46535,15 +46634,6 @@ let
sha1 = "2f6f5f7c0f6d08109e967659c79b88a9ed5e93b4";
};
};
- "promise-retry-1.1.1" = {
- name = "promise-retry";
- packageName = "promise-retry";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/promise-retry/-/promise-retry-1.1.1.tgz";
- sha1 = "6739e968e3051da20ce6497fb2b50f6911df3d6d";
- };
- };
"promise-retry-2.0.1" = {
name = "promise-retry";
packageName = "promise-retry";
@@ -46724,13 +46814,13 @@ let
sha1 = "bc826e34c3af4697e8d0af7a669e4d612aedcd17";
};
};
- "protobufjs-6.10.2" = {
+ "protobufjs-6.11.2" = {
name = "protobufjs";
packageName = "protobufjs";
- version = "6.10.2";
+ version = "6.11.2";
src = fetchurl {
- url = "https://registry.npmjs.org/protobufjs/-/protobufjs-6.10.2.tgz";
- sha512 = "27yj+04uF6ya9l+qfpH187aqEzfCF4+Uit0I9ZBQVqK09hk/SQzKa2MUqUpXaVa7LOFRg1TSSr3lVxGOk6c0SQ==";
+ url = "https://registry.npmjs.org/protobufjs/-/protobufjs-6.11.2.tgz";
+ sha512 = "4BQJoPooKJl2G9j3XftkIXjoC9C0Av2NOrWmbLWT1vH32GcSUHjM0Arra6UfTsVyfMAuFzaLucXn1sadxJydAw==";
};
};
"protocol-buffers-encodings-1.1.1" = {
@@ -47624,6 +47714,15 @@ let
sha1 = "a7afa2384d1e6415a5d602054126cc8de3bcbce7";
};
};
+ "pull-websocket-3.4.2" = {
+ name = "pull-websocket";
+ packageName = "pull-websocket";
+ version = "3.4.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pull-websocket/-/pull-websocket-3.4.2.tgz";
+ sha512 = "hGFWC4/fzRdO2FEsyR9woVzgv/yG4PIk3RXPN4azBpomGzGQFRUORwKQDS3j7RAIy8tjvN2W+qjU8jNn2NWeNQ==";
+ };
+ };
"pull-window-2.1.4" = {
name = "pull-window";
packageName = "pull-window";
@@ -47651,15 +47750,6 @@ let
sha1 = "437344aeb2189f65e678ed1af37f0f760a5453ef";
};
};
- "pull-ws-3.3.2" = {
- name = "pull-ws";
- packageName = "pull-ws";
- version = "3.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/pull-ws/-/pull-ws-3.3.2.tgz";
- sha512 = "Bn4bcJsSzJGOQl4RBulDhG1FkcbDHSCXteI8Jg5k4X6X5TxVzZzKilWJ1WV2v4OnRXl2eYbtHFGsPl8Cr1xJzw==";
- };
- };
"pump-0.3.5" = {
name = "pump";
packageName = "pump";
@@ -47759,6 +47849,15 @@ let
sha512 = "D0RzSWlepeWkxPPdK3xhTcefj8rjah1791GE82Pdjsri49sy11ci/JQsAO8K2NRukqvwEtcI+ImP5F4ZiMvtIQ==";
};
};
+ "puppeteer-9.1.1" = {
+ name = "puppeteer";
+ packageName = "puppeteer";
+ version = "9.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/puppeteer/-/puppeteer-9.1.1.tgz";
+ sha512 = "W+nOulP2tYd/ZG99WuZC/I5ljjQQ7EUw/jQGcIb9eu8mDlZxNY2SgcJXTLG9h5gRvqA3uJOe4hZXYsd3EqioMw==";
+ };
+ };
"purgecss-2.3.0" = {
name = "purgecss";
packageName = "purgecss";
@@ -47777,22 +47876,22 @@ let
sha512 = "wCDN1KkAWOMXsiV0XxH/CggHqOYeXvyn00t9Zjp5RKsLZ2rzg/lLJIMAVxYLyh79T168W3fBYcG5TRRJAlQr6g==";
};
};
- "push-stream-11.0.0" = {
+ "push-stream-11.0.1" = {
name = "push-stream";
packageName = "push-stream";
- version = "11.0.0";
+ version = "11.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/push-stream/-/push-stream-11.0.0.tgz";
- sha512 = "rDVD2f3wOztI/59/fukGLwZkUOC55674hncsSwgKF/yLlkkL594AoWTlkF6SGF0x8O5o1j92ObXk8Cxc1llhYg==";
+ url = "https://registry.npmjs.org/push-stream/-/push-stream-11.0.1.tgz";
+ sha512 = "Cb5aOY6Z6JxjAKBmpmmzoJ+8I6pJlRjJ5WYoM2Vw3kSlClojmIXzA+FP0yglJ4ELokrqLX223frxJTnxUx0dpw==";
};
};
- "push-stream-to-pull-stream-1.0.3" = {
+ "push-stream-to-pull-stream-1.0.4" = {
name = "push-stream-to-pull-stream";
packageName = "push-stream-to-pull-stream";
- version = "1.0.3";
+ version = "1.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/push-stream-to-pull-stream/-/push-stream-to-pull-stream-1.0.3.tgz";
- sha512 = "pdE/OKi/jnp9DqGgNRzLY0oVHffn/8TXJmBPzv+ikdvpkeA0J//l5d7TZk1yWwZj9P0JcOIEVDOuHzhXaeBlmw==";
+ url = "https://registry.npmjs.org/push-stream-to-pull-stream/-/push-stream-to-pull-stream-1.0.4.tgz";
+ sha512 = "W1ysxl25uU6410OGipJM0/FvlNoXvuZqIgSLGELkZ6+MaXPAp/wr2EvAYKrs1o4blzhYssv/cFXiiRJkMnnhrA==";
};
};
"pushdata-bitcoin-1.0.1" = {
@@ -47804,13 +47903,13 @@ let
sha1 = "15931d3cd967ade52206f523aa7331aef7d43af7";
};
};
- "pyright-1.1.134" = {
+ "pyright-1.1.144" = {
name = "pyright";
packageName = "pyright";
- version = "1.1.134";
+ version = "1.1.144";
src = fetchurl {
- url = "https://registry.npmjs.org/pyright/-/pyright-1.1.134.tgz";
- sha512 = "wQSdU6X3olAwCZy3tSA0fn8nMQGEwm01rm1dHM+aN2crzXIcUQ9sLOf+wCn5PFlLGsm/CXH7ROYmeMs3jXQ8Rw==";
+ url = "https://registry.npmjs.org/pyright/-/pyright-1.1.144.tgz";
+ sha512 = "nzCTqxg7JPHy5FkyX4+meD4c7Zt/mgPBI+nFGS9HoN/3GVPHAlTcCKa1JPTEh7O/N5+8W/9WZUuUntBW2R3adg==";
};
};
"q-0.9.7" = {
@@ -48533,13 +48632,13 @@ let
sha512 = "wuygyq8TXUlSdVXv2kigXxQNOgdb9m7LbIjwfTNGSpaY1riLd5e+VeQjlQMyUtrk0oiyhi1AqIVynworl3qxHA==";
};
};
- "re2-1.15.9" = {
+ "re2-1.16.0" = {
name = "re2";
packageName = "re2";
- version = "1.15.9";
+ version = "1.16.0";
src = fetchurl {
- url = "https://registry.npmjs.org/re2/-/re2-1.15.9.tgz";
- sha512 = "AXWEhpMTBdC+3oqbjdU07dk0pBCvxh5vbOMLERL6Y8FYBSGn4vXlLe8cYszn64Yy7H8keVMrgPzoSvOd4mePpg==";
+ url = "https://registry.npmjs.org/re2/-/re2-1.16.0.tgz";
+ sha512 = "eizTZL2ZO0ZseLqfD4t3Qd0M3b3Nr0MBWpX81EbPMIud/1d/CSfUIx2GQK8fWiAeHoSekO5EOeFib2udTZLwYw==";
};
};
"react-16.14.0" = {
@@ -48560,13 +48659,13 @@ let
sha512 = "dx0LvIGHcOPtKbeiSUM4jqpBl3TcY7CDjZdfOIcKeznE7BWr9dg0iPG90G5yfVQ+p/rGNMXdbfStvzQZEVEi4A==";
};
};
- "react-devtools-core-4.12.4" = {
+ "react-devtools-core-4.13.5" = {
name = "react-devtools-core";
packageName = "react-devtools-core";
- version = "4.12.4";
+ version = "4.13.5";
src = fetchurl {
- url = "https://registry.npmjs.org/react-devtools-core/-/react-devtools-core-4.12.4.tgz";
- sha512 = "hVCT7wRtA5xWclgLb3oA51RNBAlbuTauEYkqFX+qRAkPLVJoX8qdJnO7r+47SSUckD5vkBm3kaAhg6597m7gDA==";
+ url = "https://registry.npmjs.org/react-devtools-core/-/react-devtools-core-4.13.5.tgz";
+ sha512 = "k+P5VSKM6P22Go9IQ8dJmjj9fbztvKt1iRDI/4wS5oTvd1EnytIJMYB59wZt+D3kgp64jklNX/MRmY42xAQ08g==";
};
};
"react-dom-16.14.0" = {
@@ -48776,15 +48875,6 @@ let
sha512 = "aLcPqxovhJTVJcsnROuuzQvv6oziQx4zd3JvG0vGCL5MjTONUc4uJ90zCBC6R7W7oUKBNoR/F8pkyfVwlbxqng==";
};
};
- "read-package-json-fast-1.2.2" = {
- name = "read-package-json-fast";
- packageName = "read-package-json-fast";
- version = "1.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/read-package-json-fast/-/read-package-json-fast-1.2.2.tgz";
- sha512 = "39DbPJjkltEzfXJXB6D8/Ir3GFOU2YbSKa2HaB/Y3nKrc/zY+0XrALpID6/13ezWyzqvOHrBbR4t4cjQuTdBVQ==";
- };
- };
"read-package-json-fast-2.0.2" = {
name = "read-package-json-fast";
packageName = "read-package-json-fast";
@@ -49136,13 +49226,13 @@ let
sha512 = "ADsDEH2bvbjltXEP+hTIAmeFekTFK0V2BTxMkok6qILyAJEXV0AFfoWcAq4yfll5VdIMd/RVXq0lR+wQi5ZU3Q==";
};
};
- "record-cache-1.1.0" = {
+ "record-cache-1.1.1" = {
name = "record-cache";
packageName = "record-cache";
- version = "1.1.0";
+ version = "1.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/record-cache/-/record-cache-1.1.0.tgz";
- sha512 = "u8rbtLEJV7HRacl/ZYwSBFD8NFyB3PfTTfGLP37IW3hftQCwu6z4Q2RLyxo1YJUNRTEzJfpLpGwVuEYdaIkG9Q==";
+ url = "https://registry.npmjs.org/record-cache/-/record-cache-1.1.1.tgz";
+ sha512 = "L5hZlgWc7CmGbztnemQoKE1bLu9rtI2skOB0ttE4C5+TVszLE8Rd0YLTROSgvXKLAqPumS/soyN5tJW5wJLmJQ==";
};
};
"recursive-readdir-2.2.2" = {
@@ -49586,13 +49676,13 @@ let
sha512 = "K0PTsaZvJlXTl9DN6qYlvjTkqSZBFELhROZMrblm2rB+085flN84nz4g/BscKRMqDvhzlK1oQ/xnWQumdeNZYw==";
};
};
- "remark-frontmatter-1.3.3" = {
- name = "remark-frontmatter";
- packageName = "remark-frontmatter";
- version = "1.3.3";
+ "remark-footnotes-3.0.0" = {
+ name = "remark-footnotes";
+ packageName = "remark-footnotes";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/remark-frontmatter/-/remark-frontmatter-1.3.3.tgz";
- sha512 = "fM5eZPBvu2pVNoq3ZPW22q+5Ativ1oLozq2qYt9I2oNyxiUd/tDl0iLLntEVAegpZIslPWg1brhcP1VsaSVUag==";
+ url = "https://registry.npmjs.org/remark-footnotes/-/remark-footnotes-3.0.0.tgz";
+ sha512 = "ZssAvH9FjGYlJ/PBVKdSmfyPc3Cz4rTWgZLI4iE/SX8Nt5l3o3oEjv3wwG5VD7xOjktzdwp5coac+kJV9l4jgg==";
};
};
"remark-frontmatter-2.0.0" = {
@@ -49604,6 +49694,24 @@ let
sha512 = "uNOQt4tO14qBFWXenF0MLC4cqo3dv8qiHPGyjCl1rwOT0LomSHpcElbjjVh5CwzElInB38HD8aSRVugKQjeyHA==";
};
};
+ "remark-frontmatter-3.0.0" = {
+ name = "remark-frontmatter";
+ packageName = "remark-frontmatter";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/remark-frontmatter/-/remark-frontmatter-3.0.0.tgz";
+ sha512 = "mSuDd3svCHs+2PyO29h7iijIZx4plX0fheacJcAoYAASfgzgVIcXGYSq9GFyYocFLftQs8IOmmkgtOovs6d4oA==";
+ };
+ };
+ "remark-gfm-1.0.0" = {
+ name = "remark-gfm";
+ packageName = "remark-gfm";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/remark-gfm/-/remark-gfm-1.0.0.tgz";
+ sha512 = "KfexHJCiqvrdBZVbQ6RopMZGwaXz6wFJEfByIuEwGf0arvITHjiKKZ1dpXujjH9KZdm1//XJQwgfnJ3lmXaDPA==";
+ };
+ };
"remark-html-2.0.2" = {
name = "remark-html";
packageName = "remark-html";
@@ -49649,15 +49757,6 @@ let
sha512 = "XZgICP2gJ1MHU7+vQaRM+VA9HEL3X253uwUM/BGgx3iv6TH2B3bF3B8q00DKcyP9YrJV+/7WOWEWBFF/u8cIsw==";
};
};
- "remark-parse-5.0.0" = {
- name = "remark-parse";
- packageName = "remark-parse";
- version = "5.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/remark-parse/-/remark-parse-5.0.0.tgz";
- sha512 = "b3iXszZLH1TLoyUzrATcTQUZrwNl1rE70rVdSruJFlDaJ9z5aMkhrG43Pp68OgfHndL/ADz6V69Zow8cTQu+JA==";
- };
- };
"remark-parse-6.0.3" = {
name = "remark-parse";
packageName = "remark-parse";
@@ -50117,15 +50216,6 @@ let
sha512 = "ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==";
};
};
- "resolve-1.19.0" = {
- name = "resolve";
- packageName = "resolve";
- version = "1.19.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/resolve/-/resolve-1.19.0.tgz";
- sha512 = "rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==";
- };
- };
"resolve-1.20.0" = {
name = "resolve";
packageName = "resolve";
@@ -50648,13 +50738,13 @@ let
sha512 = "/2HA0Ec70TvQnXdzynFffkjA6XN+1e2pEv/uKS5Ulca40g2L7KuOE3riasHoNVHOsFD5KKZgDsMk1CP3Tw9s+A==";
};
};
- "rollup-2.45.2" = {
+ "rollup-2.50.3" = {
name = "rollup";
packageName = "rollup";
- version = "2.45.2";
+ version = "2.50.3";
src = fetchurl {
- url = "https://registry.npmjs.org/rollup/-/rollup-2.45.2.tgz";
- sha512 = "kRRU7wXzFHUzBIv0GfoFFIN3m9oteY4uAsKllIpQDId5cfnkWF2J130l+27dzDju0E6MScKiV0ZM5Bw8m4blYQ==";
+ url = "https://registry.npmjs.org/rollup/-/rollup-2.50.3.tgz";
+ sha512 = "58KiHnaCzZn6F5yRMjHe7WTZuFj6r4iJVJz5UwvKD6f/xfTy2IdtbR2AVHN6cyfK1tBy//hJ66ebXy6Y1h7HlQ==";
};
};
"rollup-plugin-babel-4.4.0" = {
@@ -51143,13 +51233,13 @@ let
sha512 = "y/52Mcy7aw3gRm7IrcGDFx/bCk4AhRh2eI9luHOQM86nZsqwiRkkq2GekHXBBD+SmPidc8i2PqtYZl+pWJ8Oeg==";
};
};
- "sass-1.32.11" = {
+ "sass-1.34.0" = {
name = "sass";
packageName = "sass";
- version = "1.32.11";
+ version = "1.34.0";
src = fetchurl {
- url = "https://registry.npmjs.org/sass/-/sass-1.32.11.tgz";
- sha512 = "O9tRcob/fegUVSIV1ihLLZcftIOh0AF1VpKgusUfLqnb2jQ0GLDwI5ivv1FYWivGv8eZ/AwntTyTzjcHu0c/qw==";
+ url = "https://registry.npmjs.org/sass/-/sass-1.34.0.tgz";
+ sha512 = "rHEN0BscqjUYuomUEaqq3BMgsXqQfkcMVR7UhscsAVub0/spUrZGBMxQXFS2kfiDsPLZw5yuU9iJEFNC2x38Qw==";
};
};
"sax-0.5.8" = {
@@ -51359,13 +51449,13 @@ let
sha1 = "625d8658f865af43ec962bfc376a37359a4994ca";
};
};
- "selfsigned-1.10.8" = {
+ "selfsigned-1.10.11" = {
name = "selfsigned";
packageName = "selfsigned";
- version = "1.10.8";
+ version = "1.10.11";
src = fetchurl {
- url = "https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.8.tgz";
- sha512 = "2P4PtieJeEwVgTU9QEcwIRDQ/mXJLX8/+I3ur+Pg16nS8oNbrGxEso9NyYWy8NAmXiNl4dlAp5MwoNeCWzON4w==";
+ url = "https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.11.tgz";
+ sha512 = "aVmbPOfViZqOZPgRBT0+3u4yZFHpmnIghLMlAcb5/xhp5ZtB/RVnKhz5vl2M32CLXAqR4kha9zfhNg0Lf/sxKA==";
};
};
"semaphore-async-await-1.5.1" = {
@@ -51512,15 +51602,6 @@ let
sha512 = "OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==";
};
};
- "semver-7.3.4" = {
- name = "semver";
- packageName = "semver";
- version = "7.3.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz";
- sha512 = "tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==";
- };
- };
"semver-7.3.5" = {
name = "semver";
packageName = "semver";
@@ -51647,13 +51728,13 @@ let
sha512 = "QnpHNykm4nI4T6mT+NoVayh9Ixl5DohYCSVqMgPJsO2WejOcqaYTh4HQOkmzaDzXH3NO5pif4z/hpo2NGtgNlg==";
};
};
- "sentence-splitter-3.2.1" = {
+ "sentence-splitter-3.2.2" = {
name = "sentence-splitter";
packageName = "sentence-splitter";
- version = "3.2.1";
+ version = "3.2.2";
src = fetchurl {
- url = "https://registry.npmjs.org/sentence-splitter/-/sentence-splitter-3.2.1.tgz";
- sha512 = "aG+Tf8M1wVUd2uPSUtdMXdJlKZLcdh+oVE8iEn8KwfxYZ87qDpe7+o0nGZdr+96g2H76Qz/8TrG9dIxyp7c70w==";
+ url = "https://registry.npmjs.org/sentence-splitter/-/sentence-splitter-3.2.2.tgz";
+ sha512 = "hMvaodgK9Fay928uiQoTMEWjXpCERdKD2uKo7BbSyP+uWTo+wHiRjN+ZShyI99rW0VuoV4Cuw8FUmaRcnpN7Ug==";
};
};
"separator-escape-0.0.1" = {
@@ -51782,13 +51863,13 @@ let
sha1 = "f13bf928e42b9c3e79383e61cc3998b5d14e6cdd";
};
};
- "service-runner-2.8.2" = {
+ "service-runner-2.8.3" = {
name = "service-runner";
packageName = "service-runner";
- version = "2.8.2";
+ version = "2.8.3";
src = fetchurl {
- url = "https://registry.npmjs.org/service-runner/-/service-runner-2.8.2.tgz";
- sha512 = "SspUqYN+hp8fB5qhG9PbTzIPL3ze5wKXThdyUny2BIA6wdT5MljVkYUCUMQgo5xjM4e95+qU+XrsvfM2ytt6ng==";
+ url = "https://registry.npmjs.org/service-runner/-/service-runner-2.8.3.tgz";
+ sha512 = "oOP54jRgWE9IBeStnYI9lIdJ333HHe+8pjAvBpDmRyOXNcsvVMN22hbuX93YVlTUE87I8J80ORZ3u01DgNKMYg==";
};
};
"set-blocking-1.0.0" = {
@@ -52250,13 +52331,13 @@ let
sha512 = "rohCHmEjD/ESXFLxF4bVeqgdb4Awc65ZyyuCKl3f7BvgMbZOBa/Ye3HN/GFnvruiUOAWWNupxhz3Rz5/3vJLTg==";
};
};
- "simple-git-2.38.0" = {
+ "simple-git-2.39.0" = {
name = "simple-git";
packageName = "simple-git";
- version = "2.38.0";
+ version = "2.39.0";
src = fetchurl {
- url = "https://registry.npmjs.org/simple-git/-/simple-git-2.38.0.tgz";
- sha512 = "CORjrfirWMEGbJAxaXDH/PjZVOeATeG2bkafM9DsLVcFkbF9sXQGIIpEI6FeyXpvUsFK69T/pa4+4FKY9TUJMQ==";
+ url = "https://registry.npmjs.org/simple-git/-/simple-git-2.39.0.tgz";
+ sha512 = "VOsrmc3fpp1lGVIpo+1SKNqJzrdVJeSGZCeenPKnJPNo5UouAlSkWFc037pfm9wRYtfxBdwp2deVJGCG8J6C8A==";
};
};
"simple-markdown-0.4.4" = {
@@ -52376,13 +52457,13 @@ let
sha1 = "81f0ad2ad645181945c80952a5c1414992ee9664";
};
};
- "siphash24-1.1.1" = {
+ "siphash24-1.2.0" = {
name = "siphash24";
packageName = "siphash24";
- version = "1.1.1";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/siphash24/-/siphash24-1.1.1.tgz";
- sha512 = "dKKwjIoTOa587TARYLlBRXq2lkbu5Iz35XrEVWpelhBP1m8r2BGOy1QlaZe84GTFHG/BTucEUd2btnNc8QzIVA==";
+ url = "https://registry.npmjs.org/siphash24/-/siphash24-1.2.0.tgz";
+ sha512 = "51yTA4ZqBY0tHTsBVGy3KAmMI7ArtwSOSmfFwJnZHFL+K76RMzZLx4m59HY5HSByjGHF3q+Fmcl8e5bMF160iQ==";
};
};
"sisteransi-1.0.5" = {
@@ -52538,13 +52619,13 @@ let
sha1 = "e09f00899c09f5a7058edc36dd49f046fd50a82a";
};
};
- "slugify-1.5.0" = {
+ "slugify-1.5.3" = {
name = "slugify";
packageName = "slugify";
- version = "1.5.0";
+ version = "1.5.3";
src = fetchurl {
- url = "https://registry.npmjs.org/slugify/-/slugify-1.5.0.tgz";
- sha512 = "Q2UPZ2udzquy1ElHfOLILMBMqBEXkiD3wE75qtBvV+FsDdZZjUqPZ44vqLTejAVq+wLLHacOMcENnP8+ZbzmIA==";
+ url = "https://registry.npmjs.org/slugify/-/slugify-1.5.3.tgz";
+ sha512 = "/HkjRdwPY3yHJReXu38NiusZw2+LLE2SrhkWJtmlPDB1fqFSvioYj62NkPcrKiNCgRLeGcGK7QBvr1iQwybeXw==";
};
};
"smart-buffer-4.1.0" = {
@@ -52682,13 +52763,13 @@ let
sha512 = "NFwVLMCqKTocY66gcim0ukF6e31VRDJqDapg5sy3vCHqlD1OCNUXSK/aI4VQEEndDrsnFmQepsL5KpEU0dDRIQ==";
};
};
- "snyk-docker-plugin-4.19.3" = {
+ "snyk-docker-plugin-4.20.8" = {
name = "snyk-docker-plugin";
packageName = "snyk-docker-plugin";
- version = "4.19.3";
+ version = "4.20.8";
src = fetchurl {
- url = "https://registry.npmjs.org/snyk-docker-plugin/-/snyk-docker-plugin-4.19.3.tgz";
- sha512 = "5WkXyT7uY5NrTOvEqxeMqb6dDcskT3c/gbHUTOyPuvE6tMut+OOYK8RRXbwZFeLzpS8asq4e1R7U7syYG3VXwg==";
+ url = "https://registry.npmjs.org/snyk-docker-plugin/-/snyk-docker-plugin-4.20.8.tgz";
+ sha512 = "uZ0vp2D+AYzPWzoo0jAqdK6gbUwKNPBYPKzyn6A9hBVO8guL/Y3JCq5H+7hCs6FFd0FEuD70Tsy3SNAEJyu4Fg==";
};
};
"snyk-go-parser-1.4.1" = {
@@ -52709,13 +52790,13 @@ let
sha512 = "1jAYPRgMapO2BYL+HWsUq5gsAiDGmI0Pn7omc0lk24tcUOMhUB+1hb0u9WBMNzHvXBjevBkjOctjpnt2hMKN6Q==";
};
};
- "snyk-gradle-plugin-3.14.2" = {
+ "snyk-gradle-plugin-3.16.0" = {
name = "snyk-gradle-plugin";
packageName = "snyk-gradle-plugin";
- version = "3.14.2";
+ version = "3.16.0";
src = fetchurl {
- url = "https://registry.npmjs.org/snyk-gradle-plugin/-/snyk-gradle-plugin-3.14.2.tgz";
- sha512 = "l/nivKDZz7e2wymrwP6g2WQD8qgaYeE22SnbZrfIpwGolif81U28A9FsRedwkxKyB/shrM0vGEoD3c3zI8NLBw==";
+ url = "https://registry.npmjs.org/snyk-gradle-plugin/-/snyk-gradle-plugin-3.16.0.tgz";
+ sha512 = "PQegG8GOweJvUDSroysO1E0RK3MxphSUvNG5siRqGHJQ8s+dw9DddYN8kMn5+pTrfzo6zddgDPJxjqsfNR+NIw==";
};
};
"snyk-module-3.1.0" = {
@@ -52727,31 +52808,31 @@ let
sha512 = "HHuOYEAACpUpkFgU8HT57mmxmonaJ4O3YADoSkVhnhkmJ+AowqZyJOau703dYHNrq2DvQ7qYw81H7yyxS1Nfjw==";
};
};
- "snyk-mvn-plugin-2.25.3" = {
+ "snyk-mvn-plugin-2.26.0" = {
name = "snyk-mvn-plugin";
packageName = "snyk-mvn-plugin";
- version = "2.25.3";
+ version = "2.26.0";
src = fetchurl {
- url = "https://registry.npmjs.org/snyk-mvn-plugin/-/snyk-mvn-plugin-2.25.3.tgz";
- sha512 = "JAxOThX51JDbgMMjp3gQDVi07G9VgTYSF06QC7f5LNA0zoXNr743e2rm78RGw5bqE3JRjZxEghiLHPPuvS5DDg==";
+ url = "https://registry.npmjs.org/snyk-mvn-plugin/-/snyk-mvn-plugin-2.26.0.tgz";
+ sha512 = "LxYNWXPJxcwbkCK+vE7t437RttEDcbsS2KJJYzFtrr6u7g26c51u9aMHYPCDAEmwjI1A28zSrh7Wp45JW4YOqg==";
};
};
- "snyk-nodejs-lockfile-parser-1.30.2" = {
+ "snyk-nodejs-lockfile-parser-1.34.0" = {
name = "snyk-nodejs-lockfile-parser";
packageName = "snyk-nodejs-lockfile-parser";
- version = "1.30.2";
+ version = "1.34.0";
src = fetchurl {
- url = "https://registry.npmjs.org/snyk-nodejs-lockfile-parser/-/snyk-nodejs-lockfile-parser-1.30.2.tgz";
- sha512 = "wI3VXVYO/ok0uaQm5i+Koo4rKBNilYC/QRIQFlyGbZXf+WBdRcTBKVDfTy8uNfUhMRSGzd84lNclMnetU9Y+vw==";
+ url = "https://registry.npmjs.org/snyk-nodejs-lockfile-parser/-/snyk-nodejs-lockfile-parser-1.34.0.tgz";
+ sha512 = "F5QjIBBu6DWHwvTYlnETJxWabTQSoKGYxyoqzurPyL60lWNQmFVid0x67tQdq0sTQOOr0p6358JI+5w634vuew==";
};
};
- "snyk-nodejs-lockfile-parser-1.32.0" = {
+ "snyk-nodejs-lockfile-parser-1.35.0" = {
name = "snyk-nodejs-lockfile-parser";
packageName = "snyk-nodejs-lockfile-parser";
- version = "1.32.0";
+ version = "1.35.0";
src = fetchurl {
- url = "https://registry.npmjs.org/snyk-nodejs-lockfile-parser/-/snyk-nodejs-lockfile-parser-1.32.0.tgz";
- sha512 = "FdYa/7NibnJPqBfobyw5jgI1/rd0LpMZf2W4WYYLRc2Hz7LZjKAByPjIX6qoA+lB9SC7yk5HYwWj2n4Fbg/DDw==";
+ url = "https://registry.npmjs.org/snyk-nodejs-lockfile-parser/-/snyk-nodejs-lockfile-parser-1.35.0.tgz";
+ sha512 = "fSjer9Ic8cdA2HvInUmhwbAhoLFXIokAzGB1PeGKwr0zzyfo3dSX3ReTMEbkhrEg+h0eES13px/KiiJ0EKRKMg==";
};
};
"snyk-nuget-plugin-1.21.1" = {
@@ -52799,13 +52880,13 @@ let
sha512 = "XYjhOTRPFA7NfDUsH6uH1fbML2OgSFsqdUPbud7x01urNP9CHXgUgAD4NhKMi3dVQK+7IdYadWt0wrFWw4y+qg==";
};
};
- "snyk-python-plugin-1.19.8" = {
+ "snyk-python-plugin-1.19.9" = {
name = "snyk-python-plugin";
packageName = "snyk-python-plugin";
- version = "1.19.8";
+ version = "1.19.9";
src = fetchurl {
- url = "https://registry.npmjs.org/snyk-python-plugin/-/snyk-python-plugin-1.19.8.tgz";
- sha512 = "LMKVnv0J4X/qHMoKB17hMND0abWtm9wdgI4xVzrOcf2Vtzs3J87trRhwLxQA2lMoBW3gcjtTeBUvNKaxikSVeQ==";
+ url = "https://registry.npmjs.org/snyk-python-plugin/-/snyk-python-plugin-1.19.9.tgz";
+ sha512 = "vkqBJP+wOtrBKpqrFRP5EfAs5wZ/fGNI14Mb+EMnmu+ebP1ze9AnHxfiqMl/+ITzeYElZ2H5DX9sXXiqpJRhRg==";
};
};
"snyk-resolve-1.1.0" = {
@@ -52898,13 +52979,13 @@ let
sha512 = "JubKZnTQ4Z8G4IZWtaAZSiRP3I/inpy8c/Bsx2jrwGrTbKeVU5xd6qkKMHpChYeM3dWZSO0QACiGK+obhBNwYw==";
};
};
- "socket.io-4.0.1" = {
+ "socket.io-4.1.2" = {
name = "socket.io";
packageName = "socket.io";
- version = "4.0.1";
+ version = "4.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/socket.io/-/socket.io-4.0.1.tgz";
- sha512 = "g8eZB9lV0f4X4gndG0k7YZAywOg1VxYgCUspS4V+sDqsgI/duqd0AW84pKkbGj/wQwxrqrEq+VZrspRfTbHTAQ==";
+ url = "https://registry.npmjs.org/socket.io/-/socket.io-4.1.2.tgz";
+ sha512 = "xK0SD1C7hFrh9+bYoYCdVt+ncixkSLKtNLCax5aEy1o3r5PaO5yQhVb97exIe67cE7lAK+EpyMytXWTWmyZY8w==";
};
};
"socket.io-adapter-0.2.0" = {
@@ -52934,13 +53015,13 @@ let
sha512 = "+vDov/aTsLjViYTwS9fPy5pEtTkrbEKsw2M+oVSoFGw6OD1IpvlV1VPhUzNbofCQ8oyMbdYJqDtGdmHQK6TdPg==";
};
};
- "socket.io-adapter-2.2.0" = {
+ "socket.io-adapter-2.3.1" = {
name = "socket.io-adapter";
packageName = "socket.io-adapter";
- version = "2.2.0";
+ version = "2.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.2.0.tgz";
- sha512 = "rG49L+FwaVEwuAdeBRq49M97YI3ElVabJPzvHT9S6a2CWhDKnjSFasvwAwSYPRhQzfn4NtDIbCaGYgOCOU/rlg==";
+ url = "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.3.1.tgz";
+ sha512 = "8cVkRxI8Nt2wadkY6u60Y4rpW3ejA1rxgcK2JuyIhmF+RMNpTy1QRtkHIDUOf3B4HlQwakMsWbKftMv/71VMmw==";
};
};
"socket.io-client-1.0.6" = {
@@ -53348,6 +53429,15 @@ let
sha512 = "Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==";
};
};
+ "source-map-resolve-0.6.0" = {
+ name = "source-map-resolve";
+ packageName = "source-map-resolve";
+ version = "0.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.6.0.tgz";
+ sha512 = "KXBr9d/fO/bWo97NXsPIAW1bFSBOuCnjbNTBMO7N59hsv5i9yzRDfcYwwt0l04+VqnKC+EwzvJZIP/qkuMgR/w==";
+ };
+ };
"source-map-support-0.4.18" = {
name = "source-map-support";
packageName = "source-map-support";
@@ -53483,13 +53573,13 @@ let
sha512 = "cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==";
};
};
- "spdx-license-ids-3.0.7" = {
+ "spdx-license-ids-3.0.9" = {
name = "spdx-license-ids";
packageName = "spdx-license-ids";
- version = "3.0.7";
+ version = "3.0.9";
src = fetchurl {
- url = "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.7.tgz";
- sha512 = "U+MTEOO0AiDzxwFvoa4JVnMV6mZlJKk2sBLt90s7G0Gd0Mlknc7kxEn3nuDPNZRta7O2uy8oLcZLVT+4sqNZHQ==";
+ url = "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.9.tgz";
+ sha512 = "Ki212dKK4ogX+xDo4CtOZBVIwhsKBEfsEEcwmJfLQzirgc2jIWdzg40Unxz/HzEUqM1WFzVlQSMF9kZZ2HboLQ==";
};
};
"spdx-license-list-6.4.0" = {
@@ -53852,13 +53942,13 @@ let
sha512 = "pJAFizB6OcuJLX4RJJuU9HWyPwM2CqLi/vs08lhVIR3TGxacxpavvK5LzbxT+Y3iWkBchOTKS5hHCigA5aaung==";
};
};
- "ssb-db2-2.1.1" = {
+ "ssb-db2-2.1.2" = {
name = "ssb-db2";
packageName = "ssb-db2";
- version = "2.1.1";
+ version = "2.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/ssb-db2/-/ssb-db2-2.1.1.tgz";
- sha512 = "6A2vLmDpz454ttFV3iVEI0qCIPYgsOlBtM3PCKn0arRvBKQ86e3Grr1/gCcx68fz8yT4fTC1o9ikWiZ/uUGIdg==";
+ url = "https://registry.npmjs.org/ssb-db2/-/ssb-db2-2.1.2.tgz";
+ sha512 = "FrH++v1qyoCVq9ykuyjvzvsjNEX8mpqY8DRt0bOvIENOeWTWHCA6AXlP8d6LU39CGlwjw6ftlZr4ObizYH4zSQ==";
};
};
"ssb-ebt-5.6.7" = {
@@ -54086,13 +54176,13 @@ let
sha512 = "XhzVmezsUJLlKxTfWlicxhiPRTEYHfJLskYQNRSnw4USqgo9LVx53+MJAhdZOYpZTW2jINR0TeetWs9M27gcbA==";
};
};
- "ssb-replicate-1.3.2" = {
+ "ssb-replicate-1.3.3" = {
name = "ssb-replicate";
packageName = "ssb-replicate";
- version = "1.3.2";
+ version = "1.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/ssb-replicate/-/ssb-replicate-1.3.2.tgz";
- sha512 = "r/34OHn5wDkVUu0UNdKdPjmd3cPDmgknA5nK+gXBZj9ugSDwmdDsfEUavGtA7hlO+He1pC4EXtBa14dqgTqJCg==";
+ url = "https://registry.npmjs.org/ssb-replicate/-/ssb-replicate-1.3.3.tgz";
+ sha512 = "RcXRBLqQMwew+aKkaTZ2K0qq2kwe7he8ZUz8cX4bZ6Sr4+yszhRpxqnN6XeK1hA6TTvUltR0RNgOO/fqT3djRg==";
};
};
"ssb-sort-1.1.3" = {
@@ -54140,15 +54230,6 @@ let
sha512 = "Xyf2tWLnO0Z297FKag0e8IXFIpnYRWZ3FBn4dN2qlMRsOcpf0P54FPhvdcb1Es0Fm4hbhYYXa23jR+VPGPQhSg==";
};
};
- "sse-z-0.3.0" = {
- name = "sse-z";
- packageName = "sse-z";
- version = "0.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/sse-z/-/sse-z-0.3.0.tgz";
- sha512 = "jfcXynl9oAOS9YJ7iqS2JMUEHOlvrRAD+54CENiWnc4xsuVLQVSgmwf7cwOTcBd/uq3XkQKBGojgvEtVXcJ/8w==";
- };
- };
"ssh-config-1.1.6" = {
name = "ssh-config";
packageName = "ssh-config";
@@ -54392,22 +54473,13 @@ let
sha512 = "/Kz55rgUIv2KP2MKphwYT/NCuSfAlbbMRv2ZWw7wyXayu230zdtzhxxuXXcvsc6EmmhS8bSJl3uS1wmMHFumbA==";
};
};
- "statsd-client-0.4.5" = {
+ "statsd-client-0.4.6" = {
name = "statsd-client";
packageName = "statsd-client";
- version = "0.4.5";
+ version = "0.4.6";
src = fetchurl {
- url = "https://registry.npmjs.org/statsd-client/-/statsd-client-0.4.5.tgz";
- sha512 = "tmTpFMxpBcq92CTMq81d1W47GEazy76Hi+aNKvKJloMplQZe+L1jekSg95YG8ieq6j2Q9MboCaLIMdsF20+eGg==";
- };
- };
- "statsd-parser-0.0.4" = {
- name = "statsd-parser";
- packageName = "statsd-parser";
- version = "0.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/statsd-parser/-/statsd-parser-0.0.4.tgz";
- sha1 = "cbd243953cc42effd548b5d22388ed689ec639bd";
+ url = "https://registry.npmjs.org/statsd-client/-/statsd-client-0.4.6.tgz";
+ sha512 = "OL3PAf0LhlFP8ZpxFm3Ue7dL3cV5o7PAsWDsQnx/iKXGVr8huYF/ui+OZEORerEDVRps7BCPAq5bWppMj1oMoA==";
};
};
"statuses-1.4.0" = {
@@ -54950,15 +55022,6 @@ let
sha512 = "XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA==";
};
};
- "string.prototype.matchall-4.0.4" = {
- name = "string.prototype.matchall";
- packageName = "string.prototype.matchall";
- version = "4.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.4.tgz";
- sha512 = "pknFIWVachNcyqRfaQSeu/FUfpvJTe4uskUSZ9Wc1RijsPuzbZ8TyYT8WCNnntCjUEqQ3vUHMAfVj2+wLAisPQ==";
- };
- };
"string.prototype.repeat-0.2.0" = {
name = "string.prototype.repeat";
packageName = "string.prototype.repeat";
@@ -55454,13 +55517,13 @@ let
sha512 = "CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==";
};
};
- "styled-components-5.2.3" = {
+ "styled-components-5.3.0" = {
name = "styled-components";
packageName = "styled-components";
- version = "5.2.3";
+ version = "5.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/styled-components/-/styled-components-5.2.3.tgz";
- sha512 = "BlR+KrLW3NL1yhvEB+9Nu9Dt51CuOnHoxd+Hj+rYPdtyR8X11uIW9rvhpy3Dk4dXXBsiW1u5U78f00Lf/afGoA==";
+ url = "https://registry.npmjs.org/styled-components/-/styled-components-5.3.0.tgz";
+ sha512 = "bPJKwZCHjJPf/hwTJl6TbkSZg/3evha+XPEizrZUGb535jLImwDUdjTNxXqjjaASt2M4qO4AVfoHJNe3XB/tpQ==";
};
};
"stylehacks-4.0.3" = {
@@ -55472,13 +55535,13 @@ let
sha512 = "7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g==";
};
};
- "stylelint-13.13.0" = {
+ "stylelint-13.13.1" = {
name = "stylelint";
packageName = "stylelint";
- version = "13.13.0";
+ version = "13.13.1";
src = fetchurl {
- url = "https://registry.npmjs.org/stylelint/-/stylelint-13.13.0.tgz";
- sha512 = "jvkM1iuH88vAvjdKPwPm6abiMP2/D/1chbfb+4GVONddOOskHuCXc0loyrLdxO1AwwH6jdnjYskkTKHQD7cXwQ==";
+ url = "https://registry.npmjs.org/stylelint/-/stylelint-13.13.1.tgz";
+ sha512 = "Mv+BQr5XTUrKqAXmpqm6Ddli6Ief+AiPZkRsIrAoUKFuq/ElkUh9ZMYxXD0iQNZ5ADghZKLOWz1h7hTClB7zgQ==";
};
};
"stylelint-8.4.0" = {
@@ -55778,31 +55841,31 @@ let
sha512 = "6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ==";
};
};
- "svelte-3.35.0" = {
+ "svelte-3.38.2" = {
name = "svelte";
packageName = "svelte";
- version = "3.35.0";
+ version = "3.38.2";
src = fetchurl {
- url = "https://registry.npmjs.org/svelte/-/svelte-3.35.0.tgz";
- sha512 = "gknlZkR2sXheu/X+B7dDImwANVvK1R0QGQLd8CNIfxxGPeXBmePnxfzb6fWwTQRsYQG7lYkZXvpXJvxvpsoB7g==";
+ url = "https://registry.npmjs.org/svelte/-/svelte-3.38.2.tgz";
+ sha512 = "q5Dq0/QHh4BLJyEVWGe7Cej5NWs040LWjMbicBGZ+3qpFWJ1YObRmUDZKbbovddLC9WW7THTj3kYbTOFmU9fbg==";
};
};
- "svelte-preprocess-4.6.9" = {
+ "svelte-preprocess-4.7.3" = {
name = "svelte-preprocess";
packageName = "svelte-preprocess";
- version = "4.6.9";
+ version = "4.7.3";
src = fetchurl {
- url = "https://registry.npmjs.org/svelte-preprocess/-/svelte-preprocess-4.6.9.tgz";
- sha512 = "SROWH0rB0DJ+0Ii264cprmNu/NJyZacs5wFD71ya93Cg/oA2lKHgQm4F6j0EWA4ktFMzeuJJm/eX6fka39hEHA==";
+ url = "https://registry.npmjs.org/svelte-preprocess/-/svelte-preprocess-4.7.3.tgz";
+ sha512 = "Zx1/xLeGOIBlZMGPRCaXtlMe4ZA0faato5Dc3CosEqwu75MIEPuOstdkH6cy+RYTUYynoxzNaDxkPX4DbrPwRA==";
};
};
- "svelte2tsx-0.1.188" = {
+ "svelte2tsx-0.2.0" = {
name = "svelte2tsx";
packageName = "svelte2tsx";
- version = "0.1.188";
+ version = "0.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/svelte2tsx/-/svelte2tsx-0.1.188.tgz";
- sha512 = "+clvG/h9Z02fhx8sxDruKppheCcAXWhkKNjz9f3R4jdwVJgTHbr66qgewIjN1i2Id3D9tBKnKgaghm8H1W55sA==";
+ url = "https://registry.npmjs.org/svelte2tsx/-/svelte2tsx-0.2.0.tgz";
+ sha512 = "gag/5eqXOMfeHkPWbioEz2kk01KJpG2ZVxYMV35EWMGpxR4m6jzgNPkl7bYp5fEOuHQ99muyVQFIedu4wjgmZw==";
};
};
"sver-compat-1.5.0" = {
@@ -55931,13 +55994,13 @@ let
sha512 = "xk5CMbwoQVI53rTq9o/iMojAqXP5NT4/+TMeTP4uXWDIH18pB9AXgO5Olqt0RXuf3jH032DA4DS4qzem6XdXAw==";
};
};
- "swagger-ui-dist-3.47.1" = {
+ "swagger-ui-dist-3.49.0" = {
name = "swagger-ui-dist";
packageName = "swagger-ui-dist";
- version = "3.47.1";
+ version = "3.49.0";
src = fetchurl {
- url = "https://registry.npmjs.org/swagger-ui-dist/-/swagger-ui-dist-3.47.1.tgz";
- sha512 = "7b9iHDC/GGC9SJLd3HiV/3EnsJ3wu7xN8Q4MpOPfQO8UG7TQFG2TMTDkvvy0SNeqxQY0tGQY0ppZC9a95tW3kg==";
+ url = "https://registry.npmjs.org/swagger-ui-dist/-/swagger-ui-dist-3.49.0.tgz";
+ sha512 = "R1+eT16XNP1bBLfacISifZAkFJlpwvWsS2vVurF5pbIFZnmCasD/hj+9r/q7urYdQyb0B6v11mDnuYU7rUpfQg==";
};
};
"swagger2openapi-6.2.3" = {
@@ -56039,6 +56102,15 @@ let
sha512 = "6tDOXSHiVjuCaasQSWTmHUWn4PuG7qa3+1WT031yTc/swT7+rLiw3GOrFxaH1E3lLP09dH3bVuVDf2gK5rxG3Q==";
};
};
+ "symbol-observable-4.0.0" = {
+ name = "symbol-observable";
+ packageName = "symbol-observable";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/symbol-observable/-/symbol-observable-4.0.0.tgz";
+ sha512 = "b19dMThMV4HVFynSAM1++gBHAbk2Tc/osgLIBZMKsyqh34jb2e8Os7T6ZW/Bt3pJFdBTd2JwAnAAEQV7rSNvcQ==";
+ };
+ };
"symbol-tree-3.2.4" = {
name = "symbol-tree";
packageName = "symbol-tree";
@@ -56066,13 +56138,13 @@ let
sha512 = "YPPlu67mdnHGTup2A8ff7BC2Pjq0e0Yp/IyTFN03zWO0RcK07uLcbi7C2KpGR2FvWbaB0+bfE27a+sBKebSo7w==";
};
};
- "systeminformation-4.34.20" = {
+ "systeminformation-4.34.23" = {
name = "systeminformation";
packageName = "systeminformation";
- version = "4.34.20";
+ version = "4.34.23";
src = fetchurl {
- url = "https://registry.npmjs.org/systeminformation/-/systeminformation-4.34.20.tgz";
- sha512 = "KyT3TFxs14x9CvSbNukbBq2DIjhuLHXkBjZ6Pqllnzqt3ERxDdC6SwIBiKnXeMq6NAOfx1Dp9PjPtXtnIFuAow==";
+ url = "https://registry.npmjs.org/systeminformation/-/systeminformation-4.34.23.tgz";
+ sha512 = "33+lQwlLxXoxy0o9WLOgw8OjbXeS3Jv+pSl+nxKc2AOClBI28HsdRPpH0u9Xa9OVjHLT9vonnOMw1ug7YXI0dA==";
};
};
"table-3.8.3" = {
@@ -56111,31 +56183,22 @@ let
sha512 = "wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug==";
};
};
- "table-6.0.9" = {
+ "table-6.7.0" = {
name = "table";
packageName = "table";
- version = "6.0.9";
+ version = "6.7.0";
src = fetchurl {
- url = "https://registry.npmjs.org/table/-/table-6.0.9.tgz";
- sha512 = "F3cLs9a3hL1Z7N4+EkSscsel3z55XT950AvB05bwayrNg5T1/gykXtigioTAjbltvbMSJvvhFCbnf6mX+ntnJQ==";
+ url = "https://registry.npmjs.org/table/-/table-6.7.0.tgz";
+ sha512 = "SAM+5p6V99gYiiy2gT5ArdzgM1dLDed0nkrWmG6Fry/bUS/m9x83BwpJUOf1Qj/x2qJd+thL6IkIx7qPGRxqBw==";
};
};
- "table-6.4.0" = {
+ "table-6.7.1" = {
name = "table";
packageName = "table";
- version = "6.4.0";
+ version = "6.7.1";
src = fetchurl {
- url = "https://registry.npmjs.org/table/-/table-6.4.0.tgz";
- sha512 = "/Vfr23BDjJT2kfsCmYtnJqEPdD/8Dh/MDIQxfcbe+09lZUel6gluquwdMTrLERBw623Nv34DLGZ11krWn5AAqw==";
- };
- };
- "table-6.5.1" = {
- name = "table";
- packageName = "table";
- version = "6.5.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/table/-/table-6.5.1.tgz";
- sha512 = "xGDXWTBJxahkzPQCsn1S9ESHEenU7TbMD5Iv4FeopXv/XwJyWatFjfbor+6ipI10/MNPXBYUamYukOrbPZ9L/w==";
+ url = "https://registry.npmjs.org/table/-/table-6.7.1.tgz";
+ sha512 = "ZGum47Yi6KOOFDE8m223td53ath2enHcYLgOCjGr5ngu8bdIARQk6mN/wRMv4yMRcHnCSnHbCEha4sobQx5yWg==";
};
};
"table-layout-0.4.5" = {
@@ -56463,15 +56526,6 @@ let
sha512 = "s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg==";
};
};
- "temp-0.9.1" = {
- name = "temp";
- packageName = "temp";
- version = "0.9.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/temp/-/temp-0.9.1.tgz";
- sha512 = "WMuOgiua1xb5R56lE0eH6ivpVmg/lq2OHm4+LtT/xtEtPQ+sz6N3bBM6WZ5FvO1lO4IKIOb43qnhoc4qxP5OeA==";
- };
- };
"temp-0.9.4" = {
name = "temp";
packageName = "temp";
@@ -56553,6 +56607,24 @@ let
sha512 = "vXPxwOyaNVi9nyczO16mxmHGpl6ASC5/TVhRRHpqeYHvKQm58EaWNvZXxAhR0lYYnBOQFjXjhzeLsaXdjxLjRg==";
};
};
+ "tempy-1.0.1" = {
+ name = "tempy";
+ packageName = "tempy";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tempy/-/tempy-1.0.1.tgz";
+ sha512 = "biM9brNqxSc04Ee71hzFbryD11nX7VPhQQY32AdDmjFvodsRFz/3ufeoTZ6uYkRFfGo188tENcASNs3vTdsM0w==";
+ };
+ };
+ "tencent-serverless-http-1.3.2" = {
+ name = "tencent-serverless-http";
+ packageName = "tencent-serverless-http";
+ version = "1.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tencent-serverless-http/-/tencent-serverless-http-1.3.2.tgz";
+ sha512 = "HgIu9HuBdY0lx3jLKuicOSOrjmieklPh55x8ZmtuTnrZ5v1buAPUfLKBhTeBSz6e90ggyW+dPr5PWdz179kUkw==";
+ };
+ };
"term-canvas-0.0.5" = {
name = "term-canvas";
packageName = "term-canvas";
@@ -56616,13 +56688,13 @@ let
sha512 = "EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw==";
};
};
- "terser-5.6.1" = {
+ "terser-5.7.0" = {
name = "terser";
packageName = "terser";
- version = "5.6.1";
+ version = "5.7.0";
src = fetchurl {
- url = "https://registry.npmjs.org/terser/-/terser-5.6.1.tgz";
- sha512 = "yv9YLFQQ+3ZqgWCUk+pvNJwgUTdlIxUk1WTN+RnaFJe2L7ipG2csPT0ra2XRm7Cs8cxN7QXmK1rFzEwYEQkzXw==";
+ url = "https://registry.npmjs.org/terser/-/terser-5.7.0.tgz";
+ sha512 = "HP5/9hp2UaZt5fYkuhNBR8YyRcT8juw8+uFbAme53iN9hblvKnLUTKkmwJG6ocWpIKf8UK4DoeWG4ty0J6S6/g==";
};
};
"terser-webpack-plugin-1.4.5" = {
@@ -56652,13 +56724,13 @@ let
sha512 = "3qAQpykRTD5DReLu5/cwpsg7EZFzP3Q0Hp2XUWJUw2mpq2jfgOKTZr8IZKKnNieRVVo1UauROTdhbQJZveGKtQ==";
};
};
- "terser-webpack-plugin-5.1.1" = {
+ "terser-webpack-plugin-5.1.2" = {
name = "terser-webpack-plugin";
packageName = "terser-webpack-plugin";
- version = "5.1.1";
+ version = "5.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.1.1.tgz";
- sha512 = "5XNNXZiR8YO6X6KhSGXfY0QrGrCRlSwAEjIIrlRQR4W8nP69TaJUlh3bkuac6zzgspiGPfKEHcY295MMVExl5Q==";
+ url = "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.1.2.tgz";
+ sha512 = "6QhDaAiVHIQr5Ab3XUWZyDmrIPCHMiqJVljMF91YKyqwKkL5QHnYMkrMBy96v9Z7ev1hGhSEw1HQZc2p/s5Z8Q==";
};
};
"test-exclude-6.0.0" = {
@@ -56724,13 +56796,13 @@ let
sha1 = "be68d47a5146b16dd116278c9aeb7bd35631ccda";
};
};
- "textlint-rule-helper-2.1.1" = {
+ "textlint-rule-helper-2.2.0" = {
name = "textlint-rule-helper";
packageName = "textlint-rule-helper";
- version = "2.1.1";
+ version = "2.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/textlint-rule-helper/-/textlint-rule-helper-2.1.1.tgz";
- sha512 = "6fxgHzoJVkjl3LaC1b2Egi+5wbhG4i0pU0knJmQujVhxIJ3D3AcQQZPs457xKAi5xKz1WayYeTeJ5jrD/hnO7g==";
+ url = "https://registry.npmjs.org/textlint-rule-helper/-/textlint-rule-helper-2.2.0.tgz";
+ sha512 = "9S5CsgQuQwPjM2wvr4JGdpkLf+pR9gOjedSQFa/Dkrbh+D9MXt1LIR4Jvx1RujKtt2nq42prmEX2q3xOxyUcIQ==";
};
};
"textlint-util-to-string-2.1.1" = {
@@ -57534,13 +57606,13 @@ let
sha512 = "MV5F74YF9+UYsvwXGXTh+5YP3EqH/ivwWfyFE2/YHWQQxm9jDPmkIC23nkN133Ye4nO3HTXmiMcfGqJ5xRPfOA==";
};
};
- "too-wordy-0.3.1" = {
+ "too-wordy-0.3.4" = {
name = "too-wordy";
packageName = "too-wordy";
- version = "0.3.1";
+ version = "0.3.4";
src = fetchurl {
- url = "https://registry.npmjs.org/too-wordy/-/too-wordy-0.3.1.tgz";
- sha512 = "qfKDd/kxLEmbOqdtWnp/Gw1EEvW5ONZB3HehzkHNKFIx3bUrfda6qdOzxJ74vkaIaJbZyRFkBHkbY078fjAd5A==";
+ url = "https://registry.npmjs.org/too-wordy/-/too-wordy-0.3.4.tgz";
+ sha512 = "EU+UA4zHc06TkVQaravNNVdqX763/ENTIOKiKlqSJ6WKCPwLxHjvY3d0uEJYaq92iojyHPwD2iaYbZKjdw3icA==";
};
};
"topo-2.0.2" = {
@@ -57723,13 +57795,13 @@ let
sha1 = "a8b13fd6bfd2489519674ccde55ba3693b706d09";
};
};
- "tr46-2.0.2" = {
+ "tr46-2.1.0" = {
name = "tr46";
packageName = "tr46";
- version = "2.0.2";
+ version = "2.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/tr46/-/tr46-2.0.2.tgz";
- sha512 = "3n1qG+/5kg+jrbTzwAykB5yRYtQCTqOGKq5U5PE3b0a1/mzo6snDhjGS0zJVJunO0NrT3Dg1MLy5TjWP/UJppg==";
+ url = "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz";
+ sha512 = "15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==";
};
};
"transliteration-1.6.6" = {
@@ -57840,13 +57912,13 @@ let
sha1 = "b403d0b91be50c331dfc4b82eeceb22c3de16d20";
};
};
- "trim-newlines-3.0.0" = {
+ "trim-newlines-3.0.1" = {
name = "trim-newlines";
packageName = "trim-newlines";
- version = "3.0.0";
+ version = "3.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.0.tgz";
- sha512 = "C4+gOpvmxaSMKuEf9Qc134F1ZuOHVXKRbtEflf4NTtuuJDEIJ9p5PXsalL8SkeRw+qit1Mo+yuvMPAKwWg/1hA==";
+ url = "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.1.tgz";
+ sha512 = "c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==";
};
};
"trim-off-newlines-1.0.1" = {
@@ -58155,15 +58227,6 @@ let
sha1 = "ac9f4ba7bd04525d6bd8b087f85553c8ef19dc9e";
};
};
- "tunnel-0.0.4" = {
- name = "tunnel";
- packageName = "tunnel";
- version = "0.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/tunnel/-/tunnel-0.0.4.tgz";
- sha1 = "2d3785a158c174c9a16dc2c046ec5fc5f1742213";
- };
- };
"tunnel-0.0.6" = {
name = "tunnel";
packageName = "tunnel";
@@ -58452,6 +58515,15 @@ let
sha512 = "4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==";
};
};
+ "type-fest-1.1.3" = {
+ name = "type-fest";
+ packageName = "type-fest";
+ version = "1.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/type-fest/-/type-fest-1.1.3.tgz";
+ sha512 = "CsiQeFMR1jZEq8R+H59qe+bBevnjoV5N2WZTTdlyqxeoODQOOepN2+msQOywcieDq5sBjabKzTn3U+sfHZlMdw==";
+ };
+ };
"type-is-1.6.18" = {
name = "type-is";
packageName = "type-is";
@@ -58461,13 +58533,13 @@ let
sha512 = "TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==";
};
};
- "typed-rest-client-1.2.0" = {
+ "typed-rest-client-1.8.4" = {
name = "typed-rest-client";
packageName = "typed-rest-client";
- version = "1.2.0";
+ version = "1.8.4";
src = fetchurl {
- url = "https://registry.npmjs.org/typed-rest-client/-/typed-rest-client-1.2.0.tgz";
- sha512 = "FrUshzZ1yxH8YwGR29PWWnfksLEILbWJydU7zfIRkyH7kAEzB62uMAl2WY6EyolWpLpVHeJGgQm45/MaruaHpw==";
+ url = "https://registry.npmjs.org/typed-rest-client/-/typed-rest-client-1.8.4.tgz";
+ sha512 = "MyfKKYzk3I6/QQp6e1T50py4qg+c+9BzOEl2rBmQIpStwNUoqQ73An+Tkfy9YuV7O+o2mpVVJpe+fH//POZkbg==";
};
};
"typedarray-0.0.6" = {
@@ -58515,13 +58587,13 @@ let
sha512 = "7uc1O8h1M1g0rArakJdf0uLRSSgFcYexrVoKo+bzJd32gd4gDy2L/Z+8/FjPnU9ydY3pEnVPtr9FyscYY60K1g==";
};
};
- "typegram-3.2.4" = {
+ "typegram-3.3.1" = {
name = "typegram";
packageName = "typegram";
- version = "3.2.4";
+ version = "3.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/typegram/-/typegram-3.2.4.tgz";
- sha512 = "UkWgXIXZYwXK0q6zyZ4xtlETAmmgAt1Y4EFL5Ia87bIort1HHBw+RAMnO7eC1PYogCAKPSCeCSBAZVIoxQ/Dvw==";
+ url = "https://registry.npmjs.org/typegram/-/typegram-3.3.1.tgz";
+ sha512 = "Y1bR17IZ9Shj1Ih8wTLtrmOOMHJ20ve0Bd5SPymmw53uO4WLp/JjNM55s2b6PEziBvMISRdCQSZ+m6JiUKEobA==";
};
};
"typescript-2.9.2" = {
@@ -58587,13 +58659,13 @@ let
sha512 = "qOcYwxaByStAWrBf4x0fibwZvMRG+r4cQoTjbPtUlrWjBHbmCAww1i448U0GJ+3cNNEtebDteo/cHOR3xJ4wEw==";
};
};
- "typescript-4.2.4" = {
+ "typescript-4.3.2" = {
name = "typescript";
packageName = "typescript";
- version = "4.2.4";
+ version = "4.3.2";
src = fetchurl {
- url = "https://registry.npmjs.org/typescript/-/typescript-4.2.4.tgz";
- sha512 = "V+evlYHZnQkaz8TRBuxTA92yZBPotr5H+WhQ7bD3hZUndx5tGOa1fuCgeSjxAzM1RiN5IzvadIXTVefuuwZCRg==";
+ url = "https://registry.npmjs.org/typescript/-/typescript-4.3.2.tgz";
+ sha512 = "zZ4hShnmnoVnAHpVHWpTcxdv7dWP60S2FsydQLV8V5PbS3FifjWFFRiHSWpDJahly88PRyV5teTSLoq4eG7mKw==";
};
};
"typescript-eslint-parser-16.0.1" = {
@@ -58695,13 +58767,13 @@ let
sha512 = "otIc7O9LyxpUcQoXzj2hL4LPWKklO6LJWoJUzNa8A17Xgi4fOeDC8FBDOLHnC/Slo1CQgsZMcM6as0M76BZaig==";
};
};
- "uglify-js-3.13.4" = {
+ "uglify-js-3.13.8" = {
name = "uglify-js";
packageName = "uglify-js";
- version = "3.13.4";
+ version = "3.13.8";
src = fetchurl {
- url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.13.4.tgz";
- sha512 = "kv7fCkIXyQIilD5/yQy8O+uagsYIOt5cZvs890W40/e/rvjMSzJw81o9Bg0tkURxzZBROtDQhW2LFjOGoK3RZw==";
+ url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.13.8.tgz";
+ sha512 = "PvFLMFIQHfIjFFlvAch69U2IvIxK9TNzNWt1SxZGp9JZ/v70yvqIQuiJeVPPtUMOzoNt+aNRDk4wgxb34wvEqA==";
};
};
"uglify-js-3.4.10" = {
@@ -58893,13 +58965,13 @@ let
sha512 = "nrXZwwXrD/T/JXeygJqdCO6NZZ1L66HrxM/Z7mIq2oPanoN0F1nLx3lwJMu6AwJY69hdixaFQOuoYsMjE5/C2A==";
};
};
- "underscore-1.10.2" = {
+ "underscore-1.12.1" = {
name = "underscore";
packageName = "underscore";
- version = "1.10.2";
+ version = "1.12.1";
src = fetchurl {
- url = "https://registry.npmjs.org/underscore/-/underscore-1.10.2.tgz";
- sha512 = "N4P+Q/BuyuEKFJ43B9gYuOj4TQUHXX+j2FqguVOpjkssLUUrnJofCcBccJSCoeturDoZU6GorDTHSvUDlSQbTg==";
+ url = "https://registry.npmjs.org/underscore/-/underscore-1.12.1.tgz";
+ sha512 = "hEQt0+ZLDVUMhebKxL4x1BTtDY7bavVofhZ9KZ4aI26X9SRaE+Y3m83XUL1UP2jn8ynjndwCCpEHdUG+9pP1Tw==";
};
};
"underscore-1.13.1" = {
@@ -58938,15 +59010,6 @@ let
sha1 = "8b38b10cacdef63337b8b24e4ff86d45aea529a8";
};
};
- "underscore-1.8.3" = {
- name = "underscore";
- packageName = "underscore";
- version = "1.8.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/underscore/-/underscore-1.8.3.tgz";
- sha1 = "4f3fb53b106e6097fcf9cb4109f2a5e9bdfa5022";
- };
- };
"underscore-1.9.1" = {
name = "underscore";
packageName = "underscore";
@@ -59397,6 +59460,15 @@ let
sha512 = "3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==";
};
};
+ "unist-util-stringify-position-3.0.0" = {
+ name = "unist-util-stringify-position";
+ packageName = "unist-util-stringify-position";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-3.0.0.tgz";
+ sha512 = "SdfAl8fsDclywZpfMDTVDxA2V7LjtRDTOFd44wUJamgl6OlVngsqWjxvermMYf60elWHbxhuRCZml7AnuXCaSA==";
+ };
+ };
"unist-util-visit-1.4.1" = {
name = "unist-util-visit";
packageName = "unist-util-visit";
@@ -59460,15 +59532,6 @@ let
sha512 = "3DLtXdm/G1LQMCnPj+Aw7uDoleQttNHp2g5FnNQKR6cP6taNWS1b/Ehjjx4PVyvejKi3TJyu8iBraKM4q3JQPg==";
};
};
- "universal-user-agent-4.0.1" = {
- name = "universal-user-agent";
- packageName = "universal-user-agent";
- version = "4.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-4.0.1.tgz";
- sha512 = "LnST3ebHwVL2aNe4mejI9IQh2HfZ1RLo8Io2HugSif8ekzD1TlWpHpColOB/eh8JHMLkGH3Akqf040I+4ylNxg==";
- };
- };
"universal-user-agent-6.0.0" = {
name = "universal-user-agent";
packageName = "universal-user-agent";
@@ -59973,13 +60036,13 @@ let
sha1 = "23f89069a6c62f46cf3a1d3b00169cefb90be0c6";
};
};
- "usb-1.7.0" = {
+ "usb-1.7.1" = {
name = "usb";
packageName = "usb";
- version = "1.7.0";
+ version = "1.7.1";
src = fetchurl {
- url = "https://registry.npmjs.org/usb/-/usb-1.7.0.tgz";
- sha512 = "LHm9d389NCzZSMd0DnilxT5Lord4P2E3ETwP1LeuJcEBmI5uLJv8Sd18z/9bairUMbDnnNqX+Hi5Xkl93Kvdmw==";
+ url = "https://registry.npmjs.org/usb/-/usb-1.7.1.tgz";
+ sha512 = "HTCfx6NnNRhv5y98t04Y8j2+A8dmQnEGxCMY2/zN/0gkiioLYfTZ5w/PEKlWRVUY+3qLe9xwRv9pHLkjQYNw/g==";
};
};
"use-3.1.1" = {
@@ -60028,13 +60091,13 @@ let
sha512 = "3XZZuJSeoIUyMYSuDbTbVtP4KAVGHPfU8nmHFkr8LJc+THCaUXwnu/2AV+LCSLarET/hL9IlbNfYTGrt6fOVuQ==";
};
};
- "ut_pex-2.0.1" = {
+ "ut_pex-3.0.0" = {
name = "ut_pex";
packageName = "ut_pex";
- version = "2.0.1";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/ut_pex/-/ut_pex-2.0.1.tgz";
- sha512 = "kI1/y1IhbuTqjyVqekSZCd3afPQTpdIRCrON1WXc9jGdcIAaze3FAoZ1ssYJmGBuJbdg7LQO42daJGCaoRXl+A==";
+ url = "https://registry.npmjs.org/ut_pex/-/ut_pex-3.0.0.tgz";
+ sha512 = "huPZAVpXzqUmCSGdeALwnoH29V+bK0O9ISH4jNfvlGFhY8qMJF0I+RKfVMiiT0TlgeB6thiitz/0G9BORVRb6Q==";
};
};
"utf-8-validate-1.2.2" = {
@@ -60046,13 +60109,13 @@ let
sha1 = "8bb871a4741e085c70487ca7acdbd7d6d36029eb";
};
};
- "utf-8-validate-5.0.4" = {
+ "utf-8-validate-5.0.5" = {
name = "utf-8-validate";
packageName = "utf-8-validate";
- version = "5.0.4";
+ version = "5.0.5";
src = fetchurl {
- url = "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-5.0.4.tgz";
- sha512 = "MEF05cPSq3AwJ2C7B7sHAA6i53vONoZbMGX8My5auEVm6W+dJ2Jd/TZPyGJ5CH42V2XtbI5FD28HeHeqlPzZ3Q==";
+ url = "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-5.0.5.tgz";
+ sha512 = "+pnxRYsS/axEpkrrEpzYfNZGXp0IjC/9RIxwM5gntY4Koi8SHmUGSfxfWqxZdRxrtaoVstuOzUp/rbs3JSPELQ==";
};
};
"utf7-1.0.2" = {
@@ -60136,13 +60199,13 @@ let
sha512 = "HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==";
};
};
- "util-0.12.3" = {
+ "util-0.12.4" = {
name = "util";
packageName = "util";
- version = "0.12.3";
+ version = "0.12.4";
src = fetchurl {
- url = "https://registry.npmjs.org/util/-/util-0.12.3.tgz";
- sha512 = "I8XkoQwE+fPQEhy9v012V+TSdH2kp9ts29i20TaaDUXsg7x/onePbhFJUExBfv/2ay1ZOp/Vsm3nDlmnFGSAog==";
+ url = "https://registry.npmjs.org/util/-/util-0.12.4.tgz";
+ sha512 = "bxZ9qtSlGUWSOy9Qa9Xgk11kSslpuZwaxCg4sNIDj6FLucDab2JxnHwyNTCpHMtK1MjoQiWQ6DiUMZYbSrO+Sw==";
};
};
"util-0.4.9" = {
@@ -60253,13 +60316,13 @@ let
sha512 = "vRAKaS8WcYNgzbxyH2LdheqgL4sQLis8LXl7r/mN+O4mpWlUpoCsTtietxepLrft2q0TFA2gaIvSWN1iRkzW/w==";
};
};
- "utp-native-2.4.0" = {
+ "utp-native-2.5.0" = {
name = "utp-native";
packageName = "utp-native";
- version = "2.4.0";
+ version = "2.5.0";
src = fetchurl {
- url = "https://registry.npmjs.org/utp-native/-/utp-native-2.4.0.tgz";
- sha512 = "jKwpFiEaDUuNH5S4vVk/+waAX+yA6f3Lw4flqOROH1ZE/jcT4mh0/hjIGSuPP9j9RbQcsBG6Fu6LaFk4ojXFxw==";
+ url = "https://registry.npmjs.org/utp-native/-/utp-native-2.5.0.tgz";
+ sha512 = "HoHPE6gwLxC0xlpYJUl+Xw2sh809lhXx3TexHsb2/xY8vEd6NwuvAxOI/X27dBTc/TOT5diWUpCJWDaunkcVvA==";
};
};
"uuid-2.0.3" = {
@@ -60433,6 +60496,15 @@ let
sha1 = "1c243a50b595c1be54a754bfece8563b9ff8d813";
};
};
+ "value-or-promise-1.0.6" = {
+ name = "value-or-promise";
+ packageName = "value-or-promise";
+ version = "1.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/value-or-promise/-/value-or-promise-1.0.6.tgz";
+ sha512 = "9r0wQsWD8z/BxPOvnwbPf05ZvFngXyouE9EKB+5GbYix+BYnAwrIChCUyFIinfbf2FL/U71z+CPpbnmTdxrwBg==";
+ };
+ };
"variable-diff-1.1.0" = {
name = "variable-diff";
packageName = "variable-diff";
@@ -60883,24 +60955,6 @@ let
sha1 = "7d13b27b1facc2e2da90405eb5ea6e5bdd252ea5";
};
};
- "version-compare-1.1.0" = {
- name = "version-compare";
- packageName = "version-compare";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/version-compare/-/version-compare-1.1.0.tgz";
- sha512 = "zVKtPOJTC9x23lzS4+4D7J+drq80BXVYAmObnr5zqxxFVH7OffJ1lJlAS7LYsQNV56jx/wtbw0UV7XHLrvd6kQ==";
- };
- };
- "version-range-1.1.0" = {
- name = "version-range";
- packageName = "version-range";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/version-range/-/version-range-1.1.0.tgz";
- sha512 = "R1Ggfg2EXamrnrV3TkZ6yBNgITDbclB3viwSjbZ3+eK0VVNK4ajkYJTnDz5N0bIMYDtK9MUBvXJUnKO5RWWJ6w==";
- };
- };
"vfile-1.4.0" = {
name = "vfile";
packageName = "vfile";
@@ -61000,6 +61054,15 @@ let
sha512 = "DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==";
};
};
+ "vfile-message-3.0.1" = {
+ name = "vfile-message";
+ packageName = "vfile-message";
+ version = "3.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vfile-message/-/vfile-message-3.0.1.tgz";
+ sha512 = "gYmSHcZZUEtYpTmaWaFJwsuUD70/rTY4v09COp8TGtOkix6gGxb/a8iTQByIY9ciTk9GwAwIXd/J9OPfM4Bvaw==";
+ };
+ };
"vfile-reporter-1.5.0" = {
name = "vfile-reporter";
packageName = "vfile-reporter";
@@ -61198,13 +61261,13 @@ let
sha1 = "614f7fbf8d801f0bb5f0661f5b2f5785750e4f09";
};
};
- "vsce-1.87.1" = {
+ "vsce-1.88.0" = {
name = "vsce";
packageName = "vsce";
- version = "1.87.1";
+ version = "1.88.0";
src = fetchurl {
- url = "https://registry.npmjs.org/vsce/-/vsce-1.87.1.tgz";
- sha512 = "3tSUWZl9AmhZrqy/UVUpdPODSzBiCGjIr/AMSSgF2PuFLSdrh+6kiOr2Ath7bpQEXOxf55hNgz3qdO5MuEJmww==";
+ url = "https://registry.npmjs.org/vsce/-/vsce-1.88.0.tgz";
+ sha512 = "FS5ou3G+WRnPPr/tWVs8b/jVzeDacgZHy/y7/QQW7maSPFEAmRt2bFGUJtJVEUDLBqtDm/3VGMJ7D31cF2U1tw==";
};
};
"vscode-css-languageservice-3.0.13" = {
@@ -61297,13 +61360,13 @@ let
sha512 = "QxI+qV97uD7HHOCjh3MrM1TfbdwmTXrMckri5Tus1/FQiG3baDZb2C9Y0y8QThs7PwHYBIQXcAc59ZveCRZKPA==";
};
};
- "vscode-json-languageservice-4.1.0" = {
+ "vscode-json-languageservice-4.1.4" = {
name = "vscode-json-languageservice";
packageName = "vscode-json-languageservice";
- version = "4.1.0";
+ version = "4.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/vscode-json-languageservice/-/vscode-json-languageservice-4.1.0.tgz";
- sha512 = "QW2SFk4kln5lTPQajGNuXWtmr2z9hVA6Sfi4qPFEW2vjt2XaUAp38/1OrcUQYiJXOyXntbWN2jZJaGxg+hDUxw==";
+ url = "https://registry.npmjs.org/vscode-json-languageservice/-/vscode-json-languageservice-4.1.4.tgz";
+ sha512 = "/UqaE58BVFdePM9l971L6xPRLlCLNk01aovf1Pp9hB/8pytmd2s9ZNEnS1JqYyQEJ1k5/fEBsWOdhQlNo4H7VA==";
};
};
"vscode-jsonrpc-3.5.0" = {
@@ -61459,6 +61522,15 @@ let
sha512 = "60HTx5ID+fLRcgdHfmz0LDZAXYEV68fzwG0JWwEPBode9NuMYTIxuYXPg4ngO8i8+Ou0lM7y6GzaYWbiDL0drw==";
};
};
+ "vscode-languageserver-7.1.0-next.4" = {
+ name = "vscode-languageserver";
+ packageName = "vscode-languageserver";
+ version = "7.1.0-next.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-7.1.0-next.4.tgz";
+ sha512 = "/65lxR/CuLJoOdzTjOTYUPWS7k5qzaWese4PObnWc6jwLryUrSa7DslYfaRXigh5/xr1nlaUZCcJwkpgM0wFvw==";
+ };
+ };
"vscode-languageserver-protocol-3.14.1" = {
name = "vscode-languageserver-protocol";
packageName = "vscode-languageserver-protocol";
@@ -61882,6 +61954,15 @@ let
sha512 = "Oo7LXCmc1eE1AjyuSBmtC3+Wy4HcV8PxWh2kP6fOl8yTlNS7r0K9l1ao2lrrUza7V39Y3D/BbJgY8VeSlc5JKw==";
};
};
+ "watchpack-2.2.0" = {
+ name = "watchpack";
+ packageName = "watchpack";
+ version = "2.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/watchpack/-/watchpack-2.2.0.tgz";
+ sha512 = "up4YAn/XHgZHIxFBVCdlMiWDj6WaLKpwVeGQk2I5thdYxF/KmF0aaz6TfJZ/hfl1h/XlcDr7k1KH7ThDagpFaA==";
+ };
+ };
"watchpack-chokidar2-2.0.1" = {
name = "watchpack-chokidar2";
packageName = "watchpack-chokidar2";
@@ -61963,13 +62044,13 @@ let
sha512 = "n1CfuJcJ+dynIx/fmavB6haPx37N3GZvY5HIGIselymDiSwNRC+8pAxOzoB4eVwUBJnbP3+aA8vWttrAZbgs7A==";
};
};
- "web3-utils-1.3.5" = {
+ "web3-utils-1.3.6" = {
name = "web3-utils";
packageName = "web3-utils";
- version = "1.3.5";
+ version = "1.3.6";
src = fetchurl {
- url = "https://registry.npmjs.org/web3-utils/-/web3-utils-1.3.5.tgz";
- sha512 = "5apMRm8ElYjI/92GHqijmaLC+s+d5lgjpjHft+rJSs/dsnX8I8tQreqev0dmU+wzU+2EEe4Sx9a/OwGWHhQv3A==";
+ url = "https://registry.npmjs.org/web3-utils/-/web3-utils-1.3.6.tgz";
+ sha512 = "hHatFaQpkQgjGVER17gNx8u1qMyaXFZtM0y0XLGH1bzsjMPlkMPLRcYOrZ00rOPfTEuYFOdrpGOqZXVmGrMZRg==";
};
};
"webassemblyjs-1.11.0" = {
@@ -62179,13 +62260,13 @@ let
sha512 = "lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==";
};
};
- "webpack-sources-2.2.0" = {
+ "webpack-sources-2.3.0" = {
name = "webpack-sources";
packageName = "webpack-sources";
- version = "2.2.0";
+ version = "2.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/webpack-sources/-/webpack-sources-2.2.0.tgz";
- sha512 = "bQsA24JLwcnWGArOKUxYKhX3Mz/nK1Xf6hxullKERyktjNMC4x8koOeaDNTA2fEJ09BdWLbM/iTW0ithREUP0w==";
+ url = "https://registry.npmjs.org/webpack-sources/-/webpack-sources-2.3.0.tgz";
+ sha512 = "WyOdtwSvOML1kbgtXbTDnEW0jkJ7hZr/bDByIwszhWd/4XX1A3XMkrbFMsuH4+/MfLlZCUzlAdg4r7jaGKEIgQ==";
};
};
"webpack-stream-6.1.0" = {
@@ -62233,13 +62314,13 @@ let
sha512 = "OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==";
};
};
- "webtorrent-0.118.0" = {
+ "webtorrent-1.0.0" = {
name = "webtorrent";
packageName = "webtorrent";
- version = "0.118.0";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/webtorrent/-/webtorrent-0.118.0.tgz";
- sha512 = "xXwwM2P+vtDsMRx9eRPNQqHD+6E7Zz7OTZqWAr2XDXg3TWGCf9HmwpgV53+F9H0oqw+l4j7vR9DRjAjChPQpZA==";
+ url = "https://registry.npmjs.org/webtorrent/-/webtorrent-1.0.0.tgz";
+ sha512 = "htwcY5OBOWL/OMwaw3xi1Mp2gE9k5UmGTKeO3n1ixQDH9QgeqqRlBJz2ZLEyOL8yN1FdS/D9z+ijm06bZ3oW5w==";
};
};
"well-known-symbols-2.0.0" = {
@@ -63178,6 +63259,15 @@ let
sha512 = "xzyu3hFvomRfXKH8vOFMU3OguG6oOvhXMo3xsGy3xWExqaM2dxBbVxuD99O7m3ZUFMvvscsZDqxfgMaRr/Nr1g==";
};
};
+ "ws-7.4.6" = {
+ name = "ws";
+ packageName = "ws";
+ version = "7.4.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ws/-/ws-7.4.6.tgz";
+ sha512 = "YmhHDO4MzaDLB+M9ym/mDA5z0naX8j7SIlT8f8z+I0VtzsRbekxEutHSme7NPS2qE8StCYQNUnfWdXta/Yu85A==";
+ };
+ };
"x-default-browser-0.3.1" = {
name = "x-default-browser";
packageName = "x-default-browser";
@@ -63259,13 +63349,13 @@ let
sha512 = "N1XQngeqMBoj9wM4ZFadVV2MymImeiFfYD+fJrNlcVcOHsJFFQe7n3b+aBoTPwARuq2HQxukfzVpQmAk1gN4sQ==";
};
};
- "xdl-59.0.34" = {
+ "xdl-59.0.40" = {
name = "xdl";
packageName = "xdl";
- version = "59.0.34";
+ version = "59.0.40";
src = fetchurl {
- url = "https://registry.npmjs.org/xdl/-/xdl-59.0.34.tgz";
- sha512 = "gcnWDPydwr/0JAwTv0vbWU8PaYjiRWSSjwzsIcnqlh5aZZdMfEle+TwfXRhPwJm5jut4BgnzOfQqMV8CfXKbXQ==";
+ url = "https://registry.npmjs.org/xdl/-/xdl-59.0.40.tgz";
+ sha512 = "TRSCBA2bRGiMATsf0dpyKtTo80WHYRWL+Rbo6OOLh1ODR032dvdrh0v1eaUcmnEnjUxF2uXgUQaoi5qiVhxB3A==";
};
};
"xenvar-0.5.1" = {
@@ -63556,6 +63646,15 @@ let
sha512 = "Foaj5FXVzgn7xFzsKeNIde9g6aFBxTPi37iwsno8QvApmtg7KYrr+OPyRHcJF7dud2a5nGRBXK3n0dL62Gf7PA==";
};
};
+ "xmldom-0.6.0" = {
+ name = "xmldom";
+ packageName = "xmldom";
+ version = "0.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/xmldom/-/xmldom-0.6.0.tgz";
+ sha512 = "iAcin401y58LckRZ0TkI4k0VSM1Qg0KGSc3i8rU+xrxe19A/BN1zHyVSJY7uoutVlaTSzYyk/v5AmkewAP7jtg==";
+ };
+ };
"xmlhttprequest-1.8.0" = {
name = "xmlhttprequest";
packageName = "xmlhttprequest";
@@ -63584,6 +63683,15 @@ let
sha1 = "c2876b06168aadc40e57d97e81191ac8f4398b3e";
};
};
+ "xmlhttprequest-ssl-1.6.3" = {
+ name = "xmlhttprequest-ssl";
+ packageName = "xmlhttprequest-ssl";
+ version = "1.6.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.6.3.tgz";
+ sha512 = "3XfeQE/wNkvrIktn2Kf0869fC0BN6UpydVasGIeSm2B1Llihf7/0UfZM+eCkOw3P7bP4+qPgqhm7ZoxuJtFU0Q==";
+ };
+ };
"xorshift-0.2.1" = {
name = "xorshift";
packageName = "xorshift";
@@ -63647,22 +63755,22 @@ let
sha1 = "f164263325ae671f53836fb210c7ddbcfda46598";
};
};
- "xss-1.0.8" = {
+ "xss-1.0.9" = {
name = "xss";
packageName = "xss";
- version = "1.0.8";
+ version = "1.0.9";
src = fetchurl {
- url = "https://registry.npmjs.org/xss/-/xss-1.0.8.tgz";
- sha512 = "3MgPdaXV8rfQ/pNn16Eio6VXYPTkqwa0vc7GkiymmY/DqR1SE/7VPAAVZz1GJsJFrllMYO3RHfEaiUGjab6TNw==";
+ url = "https://registry.npmjs.org/xss/-/xss-1.0.9.tgz";
+ sha512 = "2t7FahYnGJys6DpHLhajusId7R0Pm2yTmuL0GV9+mV0ZlaLSnb2toBmppATfg5sWIhZQGlsTLoecSzya+l4EAQ==";
};
};
- "xstate-4.18.0" = {
+ "xstate-4.19.2" = {
name = "xstate";
packageName = "xstate";
- version = "4.18.0";
+ version = "4.19.2";
src = fetchurl {
- url = "https://registry.npmjs.org/xstate/-/xstate-4.18.0.tgz";
- sha512 = "cjj22XXxTWIkMrghyoUWjUlDFcd7MQGeKYy8bkdtcIeogZjF98mep9CHv8xLO3j4PZQF5qgcAGGT8FUn99mF1Q==";
+ url = "https://registry.npmjs.org/xstate/-/xstate-4.19.2.tgz";
+ sha512 = "eWI6kOHavcqhu1ACCmRowYGaQnH0KGvBoGg3lqmle9ZYyVWa2ZcVTgZlsK7o419/jw9gWX2LYmYGkm9w/VoXMA==";
};
};
"xstream-11.14.0" = {
@@ -63908,13 +64016,13 @@ let
sha512 = "D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==";
};
};
- "yargs-17.0.0-candidate.12" = {
+ "yargs-17.0.1" = {
name = "yargs";
packageName = "yargs";
- version = "17.0.0-candidate.12";
+ version = "17.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/yargs/-/yargs-17.0.0-candidate.12.tgz";
- sha512 = "K/Q98zCuqg1CTgqmURpqytY3Iz+P7HQ42/FglRRQWEEi2DNxzIJqA50J1LJjm58FPJDzBnqLQ1BHUFnabzj4CA==";
+ url = "https://registry.npmjs.org/yargs/-/yargs-17.0.1.tgz";
+ sha512 = "xBBulfCc8Y6gLFcrPvtqKz9hz8SO0l1Ni8GgDekvBX2ro0HRQImDGnikfc33cgzcYUSncapnNcZDjVFIH3f6KQ==";
};
};
"yargs-3.10.0" = {
@@ -64160,13 +64268,13 @@ let
sha512 = "CP0fwGk5Y+jel+A0AQbyqnIFZRRpkKOeYUibiTSmlgV9PcgNFFVwn86VcUIpDLOqVjF+9v+O9FWQMo+IUcV2mA==";
};
};
- "yeoman-environment-3.2.0" = {
+ "yeoman-environment-3.4.1" = {
name = "yeoman-environment";
packageName = "yeoman-environment";
- version = "3.2.0";
+ version = "3.4.1";
src = fetchurl {
- url = "https://registry.npmjs.org/yeoman-environment/-/yeoman-environment-3.2.0.tgz";
- sha512 = "Z2G4qgbjSLQ0BOiPQ4PCbqSYNhOP/HeWItu/hrlBv1gtBK6c3vkHSLioX8SduVYOKrn04X4H7cIG7hXpD3RsOQ==";
+ url = "https://registry.npmjs.org/yeoman-environment/-/yeoman-environment-3.4.1.tgz";
+ sha512 = "Bu3kN5sTOyAcbO/cKEQf6KOxsLta9oRF59saLOKnt3OQM+hXapnWaAHcrat3dygd6l34KjxwM5AMJp09TDa8yw==";
};
};
"yn-3.1.1" = {
@@ -64286,15 +64394,6 @@ let
sha512 = "EkXc2JGcKhO5N5aZ7TmuNo45budRaFGHOmz24wtJR7znbNqDPmdZtUauKX6et8KAVseAMBOyWJqEpXcHTBsh7Q==";
};
};
- "zip-stream-3.0.1" = {
- name = "zip-stream";
- packageName = "zip-stream";
- version = "3.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/zip-stream/-/zip-stream-3.0.1.tgz";
- sha512 = "r+JdDipt93ttDjsOVPU5zaq5bAyY+3H19bDrThkvuVxC0xMQzU1PJcS6D+KrP3u96gH9XLomcHPb+2skoDjulQ==";
- };
- };
"zip-stream-4.1.0" = {
name = "zip-stream";
packageName = "zip-stream";
@@ -64337,43 +64436,30 @@ in
"@angular/cli" = nodeEnv.buildNodePackage {
name = "_at_angular_slash_cli";
packageName = "@angular/cli";
- version = "11.2.10";
+ version = "12.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@angular/cli/-/cli-11.2.10.tgz";
- sha512 = "x7u36KmX1iiyDZhkeB6yXRrNj1no+mf6arnAvJYXH2JxqsZDqp19hP8b1QcGVMSl9CZUT/vA0KT3XuI4aJ6TfQ==";
+ url = "https://registry.npmjs.org/@angular/cli/-/cli-12.0.2.tgz";
+ sha512 = "hXxnOxPl6+v/O+OnkJxPPupCeQJNmI08EdtnER5z/UCSpmlJibbTAqLF9rFaOi/7dPLS0RCNWmCRA6grgTlP9g==";
};
dependencies = [
- sources."@angular-devkit/architect-0.1102.10"
- sources."@angular-devkit/core-11.2.10"
- sources."@angular-devkit/schematics-11.2.10"
- sources."@npmcli/ci-detect-1.3.0"
- (sources."@npmcli/git-2.0.8" // {
- dependencies = [
- sources."hosted-git-info-4.0.2"
- sources."npm-package-arg-8.1.2"
- sources."npm-pick-manifest-6.1.1"
- sources."promise-retry-2.0.1"
- sources."semver-7.3.5"
- ];
- })
+ sources."@angular-devkit/architect-0.1200.2"
+ sources."@angular-devkit/core-12.0.2"
+ sources."@angular-devkit/schematics-12.0.2"
+ sources."@npmcli/git-2.0.9"
sources."@npmcli/installed-package-contents-1.0.7"
sources."@npmcli/move-file-1.1.2"
sources."@npmcli/node-gyp-1.0.2"
sources."@npmcli/promise-spawn-1.3.2"
- (sources."@npmcli/run-script-1.8.5" // {
- dependencies = [
- sources."read-package-json-fast-2.0.2"
- ];
- })
- sources."@schematics/angular-11.2.10"
- sources."@schematics/update-0.1102.10"
+ sources."@npmcli/run-script-1.8.5"
+ sources."@schematics/angular-12.0.2"
sources."@tootallnate/once-1.1.2"
sources."@yarnpkg/lockfile-1.1.0"
sources."abbrev-1.1.1"
sources."agent-base-6.0.2"
sources."agentkeepalive-4.1.4"
sources."aggregate-error-3.1.0"
- sources."ajv-6.12.6"
+ sources."ajv-8.2.0"
+ sources."ajv-formats-2.0.2"
sources."ansi-colors-4.1.1"
sources."ansi-escapes-4.3.2"
sources."ansi-regex-5.0.0"
@@ -64398,7 +64484,7 @@ in
sources."brace-expansion-1.1.11"
sources."buffer-5.7.1"
sources."builtins-1.0.3"
- sources."cacache-15.0.6"
+ sources."cacache-15.2.0"
sources."caseless-0.12.0"
sources."chalk-4.1.1"
sources."chardet-0.7.0"
@@ -64418,6 +64504,7 @@ in
sources."dashdash-1.14.1"
sources."debug-4.3.1"
sources."defaults-1.0.3"
+ sources."define-lazy-prop-2.0.0"
sources."delayed-stream-1.0.0"
sources."delegates-1.0.0"
sources."depd-1.1.2"
@@ -64425,7 +64512,7 @@ in
sources."emoji-regex-8.0.0"
(sources."encoding-0.1.13" // {
dependencies = [
- sources."iconv-lite-0.6.2"
+ sources."iconv-lite-0.6.3"
];
})
sources."env-paths-2.2.1"
@@ -64451,14 +64538,19 @@ in
];
})
sources."getpass-0.1.7"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."graceful-fs-4.2.6"
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."json-schema-traverse-0.4.1"
+ ];
+ })
sources."has-1.0.3"
sources."has-flag-4.0.0"
sources."has-unicode-2.0.1"
- sources."hosted-git-info-3.0.8"
+ sources."hosted-git-info-4.0.2"
sources."http-cache-semantics-4.1.0"
sources."http-proxy-agent-4.0.1"
sources."http-signature-1.2.0"
@@ -64466,16 +64558,16 @@ in
sources."humanize-ms-1.2.1"
sources."iconv-lite-0.4.24"
sources."ieee754-1.2.1"
- sources."ignore-walk-3.0.3"
+ sources."ignore-walk-3.0.4"
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-2.0.0"
- sources."inquirer-7.3.3"
+ sources."inquirer-8.0.0"
sources."ip-1.1.5"
- sources."is-core-module-2.3.0"
+ sources."is-core-module-2.4.0"
sources."is-docker-2.2.1"
sources."is-fullwidth-code-point-3.0.0"
sources."is-interactive-1.0.0"
@@ -64489,7 +64581,7 @@ in
sources."jsbn-0.1.1"
sources."json-parse-even-better-errors-2.3.1"
sources."json-schema-0.2.3"
- sources."json-schema-traverse-0.4.1"
+ sources."json-schema-traverse-1.0.0"
sources."json-stringify-safe-5.0.1"
sources."jsonc-parser-3.0.0"
sources."jsonparse-1.3.1"
@@ -64498,11 +64590,7 @@ in
sources."log-symbols-4.1.0"
sources."lru-cache-6.0.0"
sources."magic-string-0.25.7"
- (sources."make-fetch-happen-8.0.14" // {
- dependencies = [
- sources."promise-retry-2.0.1"
- ];
- })
+ sources."make-fetch-happen-8.0.14"
sources."mime-db-1.47.0"
sources."mime-types-2.1.30"
sources."mimic-fn-2.1.0"
@@ -64523,56 +64611,47 @@ in
sources."npm-bundled-1.1.2"
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-2.1.5"
- sources."npm-pick-manifest-6.1.0"
- sources."npm-registry-fetch-9.0.0"
+ sources."npm-package-arg-8.1.2"
+ sources."npm-packlist-2.2.2"
+ sources."npm-pick-manifest-6.1.1"
+ sources."npm-registry-fetch-10.1.2"
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.4.0"
- sources."ora-5.3.0"
+ sources."open-8.0.2"
+ sources."ora-5.4.0"
sources."os-tmpdir-1.0.2"
sources."p-map-4.0.0"
- sources."pacote-11.2.4"
+ sources."pacote-11.3.2"
sources."path-is-absolute-1.0.1"
- sources."path-parse-1.0.6"
+ sources."path-parse-1.0.7"
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" // {
- dependencies = [
- sources."err-code-1.1.2"
- sources."retry-0.10.1"
- ];
- })
+ sources."promise-retry-2.0.1"
sources."psl-1.8.0"
sources."punycode-2.1.1"
sources."qs-6.5.2"
- sources."read-package-json-fast-1.2.2"
+ sources."read-package-json-fast-2.0.2"
sources."readable-stream-3.6.0"
(sources."request-2.88.2" // {
dependencies = [
sources."uuid-3.4.0"
];
})
- sources."resolve-1.19.0"
+ sources."require-from-string-2.0.2"
+ sources."resolve-1.20.0"
sources."restore-cursor-3.1.0"
sources."retry-0.12.0"
sources."rimraf-3.0.2"
sources."run-async-2.4.1"
- sources."rxjs-6.6.3"
+ sources."rxjs-6.6.7"
sources."safe-buffer-5.2.1"
sources."safer-buffer-2.1.2"
- sources."semver-7.3.4"
- (sources."semver-intersect-1.4.0" // {
- dependencies = [
- sources."semver-5.7.1"
- ];
- })
+ sources."semver-7.3.5"
sources."set-blocking-2.0.0"
sources."signal-exit-3.0.3"
sources."smart-buffer-4.1.0"
@@ -64586,7 +64665,7 @@ in
sources."string_decoder-1.3.0"
sources."strip-ansi-6.0.0"
sources."supports-color-7.2.0"
- sources."symbol-observable-3.0.0"
+ sources."symbol-observable-4.0.0"
sources."tar-6.1.0"
sources."through-2.3.8"
sources."tmp-0.0.33"
@@ -64597,11 +64676,6 @@ in
sources."type-fest-0.21.3"
sources."unique-filename-1.1.1"
sources."unique-slug-2.0.2"
- (sources."universal-analytics-0.4.23" // {
- dependencies = [
- sources."uuid-3.4.0"
- ];
- })
sources."uri-js-4.4.1"
sources."util-deprecate-1.0.2"
sources."uuid-8.3.2"
@@ -64694,7 +64768,7 @@ in
sources."append-buffer-1.0.2"
sources."argparse-1.0.10"
sources."asciidoctor.js-1.5.9"
- sources."async-lock-1.2.8"
+ sources."async-lock-1.3.0"
sources."balanced-match-1.0.2"
sources."base64-js-0.0.2"
sources."bl-4.0.4"
@@ -64793,7 +64867,7 @@ in
sources."glob-parent-3.1.0"
(sources."glob-stream-6.1.0" // {
dependencies = [
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."readable-stream-2.3.7"
sources."safe-buffer-5.1.2"
sources."string_decoder-1.1.1"
@@ -64854,7 +64928,7 @@ in
sources."lodash.clonedeep-4.5.0"
sources."lowercase-keys-1.0.1"
sources."map-obj-4.2.1"
- sources."marky-1.2.1"
+ sources."marky-1.2.2"
sources."matcher-2.1.0"
sources."mime-db-1.47.0"
sources."mime-types-2.1.30"
@@ -64866,7 +64940,7 @@ in
sources."multi-progress-2.0.0"
sources."neo-async-2.6.2"
sources."normalize-path-2.1.1"
- sources."normalize-url-4.5.0"
+ sources."normalize-url-4.5.1"
sources."now-and-later-2.0.1"
sources."object-keys-1.1.1"
sources."object.assign-4.1.2"
@@ -64946,7 +65020,7 @@ in
];
})
sources."to-utf8-0.0.1"
- sources."uglify-js-3.13.4"
+ sources."uglify-js-3.13.8"
sources."unc-path-regex-0.1.2"
sources."unique-stream-2.3.1"
sources."universalify-0.1.2"
@@ -64986,10 +65060,10 @@ in
"@bitwarden/cli" = nodeEnv.buildNodePackage {
name = "_at_bitwarden_slash_cli";
packageName = "@bitwarden/cli";
- version = "1.15.1";
+ version = "1.16.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@bitwarden/cli/-/cli-1.15.1.tgz";
- sha512 = "kD+EkbSqFRtkwV/PXbgaCvrSOqVRTRaFhfT4XNoYbggWhMVwB6ebvdHvHe5I7pRKE8/xgP7WiIM/b0HP81bbHg==";
+ url = "https://registry.npmjs.org/@bitwarden/cli/-/cli-1.16.0.tgz";
+ sha512 = "HWQnOa3TzRJcF/TVKGWqzFP9PVaG6IhCBzFVY2tZ5mITNAf1nb2aC+gzH2EMa1m41IV6knPuXpqnsVGJGqQuxg==";
};
dependencies = [
sources."abab-2.0.5"
@@ -65009,7 +65083,7 @@ in
sources."aws-sign2-0.7.0"
sources."aws4-1.11.0"
sources."bcrypt-pbkdf-1.0.2"
- sources."big-integer-1.6.36"
+ sources."big-integer-1.6.48"
sources."browser-hrtime-1.1.8"
sources."browser-process-hrtime-1.0.0"
sources."caseless-0.12.0"
@@ -65077,15 +65151,15 @@ in
sources."mimic-fn-1.2.0"
sources."ms-2.1.2"
sources."mute-stream-0.0.7"
- sources."node-fetch-2.2.0"
- sources."node-forge-0.7.6"
+ sources."node-fetch-2.6.1"
+ sources."node-forge-0.10.0"
sources."nwsapi-2.2.0"
sources."oauth-sign-0.9.0"
sources."onetime-2.0.1"
sources."open-7.1.0"
sources."optionator-0.8.3"
sources."os-tmpdir-1.0.2"
- sources."papaparse-4.6.0"
+ sources."papaparse-5.2.0"
sources."parse5-5.1.0"
sources."performance-now-2.1.0"
sources."pify-3.0.0"
@@ -65144,7 +65218,7 @@ in
meta = {
description = "A secure and free password manager for all of your devices.";
homepage = "https://bitwarden.com";
- license = "GPL-3.0";
+ license = "GPL-3.0-only";
};
production = true;
bypassCache = true;
@@ -65168,8 +65242,8 @@ in
})
sources."@angular-devkit/schematics-cli-0.1102.6"
sources."@babel/code-frame-7.12.13"
- sources."@babel/helper-validator-identifier-7.12.11"
- (sources."@babel/highlight-7.13.10" // {
+ sources."@babel/helper-validator-identifier-7.14.0"
+ (sources."@babel/highlight-7.14.0" // {
dependencies = [
sources."ansi-styles-3.2.1"
sources."chalk-2.4.2"
@@ -65188,12 +65262,12 @@ in
];
})
sources."@schematics/schematics-0.1102.6"
- sources."@types/eslint-7.2.10"
+ sources."@types/eslint-7.2.12"
sources."@types/eslint-scope-3.7.0"
sources."@types/estree-0.0.46"
sources."@types/json-schema-7.0.7"
sources."@types/json5-0.0.29"
- sources."@types/node-14.14.41"
+ sources."@types/node-15.6.1"
sources."@types/parse-json-4.0.0"
sources."@webassemblyjs/ast-1.11.0"
sources."@webassemblyjs/floating-point-hex-parser-1.11.0"
@@ -65212,7 +65286,7 @@ in
sources."@webassemblyjs/wast-printer-1.11.0"
sources."@xtuc/ieee754-1.2.0"
sources."@xtuc/long-4.2.2"
- sources."acorn-8.2.1"
+ sources."acorn-8.2.4"
sources."ajv-6.12.6"
sources."ajv-keywords-3.5.2"
sources."ansi-colors-4.1.1"
@@ -65227,11 +65301,11 @@ in
sources."bl-4.1.0"
sources."brace-expansion-1.1.11"
sources."braces-3.0.2"
- sources."browserslist-4.16.5"
+ sources."browserslist-4.16.6"
sources."buffer-5.7.1"
sources."buffer-from-1.1.1"
sources."callsites-3.1.0"
- sources."caniuse-lite-1.0.30001214"
+ sources."caniuse-lite-1.0.30001230"
sources."chalk-3.0.0"
sources."chardet-0.7.0"
sources."chokidar-3.5.1"
@@ -65251,10 +65325,10 @@ in
sources."cross-spawn-7.0.3"
sources."deepmerge-4.2.2"
sources."defaults-1.0.3"
- sources."electron-to-chromium-1.3.720"
+ sources."electron-to-chromium-1.3.741"
sources."emoji-regex-8.0.0"
sources."end-of-stream-1.4.4"
- (sources."enhanced-resolve-5.8.0" // {
+ (sources."enhanced-resolve-5.8.2" // {
dependencies = [
sources."tapable-2.2.0"
];
@@ -65288,7 +65362,7 @@ in
sources."fsevents-2.3.2"
sources."function-bind-1.1.1"
sources."get-stream-5.2.0"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."glob-parent-5.1.2"
sources."glob-to-regexp-0.4.1"
sources."graceful-fs-4.2.6"
@@ -65310,7 +65384,7 @@ in
sources."interpret-1.4.0"
sources."is-arrayish-0.2.1"
sources."is-binary-path-2.1.0"
- sources."is-core-module-2.3.0"
+ sources."is-core-module-2.4.0"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-2.0.0"
sources."is-glob-4.0.1"
@@ -65349,7 +65423,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.71"
+ sources."node-releases-1.1.72"
sources."normalize-path-3.0.0"
sources."npm-run-path-4.0.1"
sources."object-assign-4.1.1"
@@ -65367,9 +65441,9 @@ in
sources."parse-json-5.2.0"
sources."path-is-absolute-1.0.1"
sources."path-key-3.1.1"
- sources."path-parse-1.0.6"
+ sources."path-parse-1.0.7"
sources."path-type-4.0.0"
- sources."picomatch-2.2.3"
+ sources."picomatch-2.3.0"
sources."pluralize-8.0.0"
sources."pump-3.0.0"
sources."punycode-2.1.1"
@@ -65413,12 +65487,12 @@ in
sources."supports-color-7.2.0"
sources."symbol-observable-3.0.0"
sources."tapable-1.1.3"
- (sources."terser-5.6.1" // {
+ (sources."terser-5.7.0" // {
dependencies = [
sources."commander-2.20.3"
];
})
- (sources."terser-webpack-plugin-5.1.1" // {
+ (sources."terser-webpack-plugin-5.1.2" // {
dependencies = [
sources."schema-utils-3.0.0"
sources."source-map-0.6.1"
@@ -65440,7 +65514,7 @@ in
sources."universalify-2.0.0"
sources."uri-js-4.4.1"
sources."util-deprecate-1.0.2"
- sources."watchpack-2.1.1"
+ sources."watchpack-2.2.0"
sources."wcwidth-1.0.1"
(sources."webpack-5.28.0" // {
dependencies = [
@@ -65449,7 +65523,7 @@ in
];
})
sources."webpack-node-externals-2.5.2"
- (sources."webpack-sources-2.2.0" // {
+ (sources."webpack-sources-2.3.0" // {
dependencies = [
sources."source-map-0.6.1"
];
@@ -65474,67 +65548,70 @@ in
"@vue/cli" = nodeEnv.buildNodePackage {
name = "_at_vue_slash_cli";
packageName = "@vue/cli";
- version = "4.5.12";
+ version = "4.5.13";
src = fetchurl {
- url = "https://registry.npmjs.org/@vue/cli/-/cli-4.5.12.tgz";
- sha512 = "ZP0bxmM+VpmH8xT/5DbH8UD5nnlXLxJNYLiMcndx0pmuujabUORZdhIO3B9pq1w1Y204p2CJq3srrEUwhKKY5g==";
+ url = "https://registry.npmjs.org/@vue/cli/-/cli-4.5.13.tgz";
+ sha512 = "KAU300YbT0/7zG472KzJgHKdFex4nr5Xoo80gQJwT+y7pkepMhTxjrmxrJ/XR8QirUvPnBiX5n6BX5FrlMuUGQ==";
};
dependencies = [
sources."@akryum/winattr-3.0.0"
- (sources."@apollo/protobufjs-1.2.0" // {
+ (sources."@apollo/protobufjs-1.2.2" // {
dependencies = [
- sources."@types/node-10.17.58"
+ sources."@types/node-10.17.60"
];
})
- sources."@apollographql/apollo-tools-0.4.12"
+ sources."@apollographql/apollo-tools-0.5.1"
sources."@apollographql/graphql-playground-html-1.6.27"
sources."@apollographql/graphql-upload-8-fork-8.1.3"
sources."@babel/code-frame-7.12.13"
- sources."@babel/compat-data-7.13.15"
- sources."@babel/core-7.13.16"
- sources."@babel/generator-7.13.16"
+ sources."@babel/compat-data-7.14.4"
+ sources."@babel/core-7.14.3"
+ sources."@babel/generator-7.14.3"
sources."@babel/helper-annotate-as-pure-7.12.13"
sources."@babel/helper-builder-binary-assignment-operator-visitor-7.12.13"
- sources."@babel/helper-compilation-targets-7.13.16"
- sources."@babel/helper-create-class-features-plugin-7.13.11"
- sources."@babel/helper-create-regexp-features-plugin-7.12.17"
- sources."@babel/helper-define-polyfill-provider-0.2.0"
+ sources."@babel/helper-compilation-targets-7.14.4"
+ sources."@babel/helper-create-class-features-plugin-7.14.4"
+ sources."@babel/helper-create-regexp-features-plugin-7.14.3"
+ sources."@babel/helper-define-polyfill-provider-0.2.3"
sources."@babel/helper-explode-assignable-expression-7.13.0"
- sources."@babel/helper-function-name-7.12.13"
+ sources."@babel/helper-function-name-7.14.2"
sources."@babel/helper-get-function-arity-7.12.13"
sources."@babel/helper-hoist-variables-7.13.16"
sources."@babel/helper-member-expression-to-functions-7.13.12"
sources."@babel/helper-module-imports-7.13.12"
- sources."@babel/helper-module-transforms-7.13.14"
+ sources."@babel/helper-module-transforms-7.14.2"
sources."@babel/helper-optimise-call-expression-7.12.13"
sources."@babel/helper-plugin-utils-7.13.0"
sources."@babel/helper-remap-async-to-generator-7.13.0"
- sources."@babel/helper-replace-supers-7.13.12"
+ sources."@babel/helper-replace-supers-7.14.4"
sources."@babel/helper-simple-access-7.13.12"
sources."@babel/helper-skip-transparent-expression-wrappers-7.12.1"
sources."@babel/helper-split-export-declaration-7.12.13"
- sources."@babel/helper-validator-identifier-7.12.11"
+ sources."@babel/helper-validator-identifier-7.14.0"
sources."@babel/helper-validator-option-7.12.17"
sources."@babel/helper-wrap-function-7.13.0"
- sources."@babel/helpers-7.13.17"
- sources."@babel/highlight-7.13.10"
- sources."@babel/parser-7.13.16"
+ sources."@babel/helpers-7.14.0"
+ sources."@babel/highlight-7.14.0"
+ sources."@babel/parser-7.14.4"
sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.13.12"
- sources."@babel/plugin-proposal-async-generator-functions-7.13.15"
+ sources."@babel/plugin-proposal-async-generator-functions-7.14.2"
sources."@babel/plugin-proposal-class-properties-7.13.0"
- sources."@babel/plugin-proposal-dynamic-import-7.13.8"
- sources."@babel/plugin-proposal-export-namespace-from-7.12.13"
- sources."@babel/plugin-proposal-json-strings-7.13.8"
- sources."@babel/plugin-proposal-logical-assignment-operators-7.13.8"
- sources."@babel/plugin-proposal-nullish-coalescing-operator-7.13.8"
- sources."@babel/plugin-proposal-numeric-separator-7.12.13"
- sources."@babel/plugin-proposal-object-rest-spread-7.13.8"
- sources."@babel/plugin-proposal-optional-catch-binding-7.13.8"
- sources."@babel/plugin-proposal-optional-chaining-7.13.12"
+ sources."@babel/plugin-proposal-class-static-block-7.14.3"
+ sources."@babel/plugin-proposal-dynamic-import-7.14.2"
+ sources."@babel/plugin-proposal-export-namespace-from-7.14.2"
+ sources."@babel/plugin-proposal-json-strings-7.14.2"
+ sources."@babel/plugin-proposal-logical-assignment-operators-7.14.2"
+ sources."@babel/plugin-proposal-nullish-coalescing-operator-7.14.2"
+ sources."@babel/plugin-proposal-numeric-separator-7.14.2"
+ sources."@babel/plugin-proposal-object-rest-spread-7.14.4"
+ sources."@babel/plugin-proposal-optional-catch-binding-7.14.2"
+ sources."@babel/plugin-proposal-optional-chaining-7.14.2"
sources."@babel/plugin-proposal-private-methods-7.13.0"
+ sources."@babel/plugin-proposal-private-property-in-object-7.14.0"
sources."@babel/plugin-proposal-unicode-property-regex-7.12.13"
sources."@babel/plugin-syntax-async-generators-7.8.4"
sources."@babel/plugin-syntax-class-properties-7.12.13"
+ sources."@babel/plugin-syntax-class-static-block-7.12.13"
sources."@babel/plugin-syntax-dynamic-import-7.8.3"
sources."@babel/plugin-syntax-export-namespace-from-7.8.3"
sources."@babel/plugin-syntax-flow-7.12.13"
@@ -65545,15 +65622,16 @@ in
sources."@babel/plugin-syntax-object-rest-spread-7.8.3"
sources."@babel/plugin-syntax-optional-catch-binding-7.8.3"
sources."@babel/plugin-syntax-optional-chaining-7.8.3"
+ sources."@babel/plugin-syntax-private-property-in-object-7.14.0"
sources."@babel/plugin-syntax-top-level-await-7.12.13"
sources."@babel/plugin-syntax-typescript-7.12.13"
sources."@babel/plugin-transform-arrow-functions-7.13.0"
sources."@babel/plugin-transform-async-to-generator-7.13.0"
sources."@babel/plugin-transform-block-scoped-functions-7.12.13"
- sources."@babel/plugin-transform-block-scoping-7.13.16"
- sources."@babel/plugin-transform-classes-7.13.0"
+ sources."@babel/plugin-transform-block-scoping-7.14.4"
+ sources."@babel/plugin-transform-classes-7.14.4"
sources."@babel/plugin-transform-computed-properties-7.13.0"
- sources."@babel/plugin-transform-destructuring-7.13.17"
+ sources."@babel/plugin-transform-destructuring-7.14.4"
sources."@babel/plugin-transform-dotall-regex-7.12.13"
sources."@babel/plugin-transform-duplicate-keys-7.12.13"
sources."@babel/plugin-transform-exponentiation-operator-7.12.13"
@@ -65562,14 +65640,14 @@ in
sources."@babel/plugin-transform-function-name-7.12.13"
sources."@babel/plugin-transform-literals-7.12.13"
sources."@babel/plugin-transform-member-expression-literals-7.12.13"
- sources."@babel/plugin-transform-modules-amd-7.13.0"
- sources."@babel/plugin-transform-modules-commonjs-7.13.8"
+ sources."@babel/plugin-transform-modules-amd-7.14.2"
+ sources."@babel/plugin-transform-modules-commonjs-7.14.0"
sources."@babel/plugin-transform-modules-systemjs-7.13.8"
- sources."@babel/plugin-transform-modules-umd-7.13.0"
+ sources."@babel/plugin-transform-modules-umd-7.14.0"
sources."@babel/plugin-transform-named-capturing-groups-regex-7.12.13"
sources."@babel/plugin-transform-new-target-7.12.13"
sources."@babel/plugin-transform-object-super-7.12.13"
- sources."@babel/plugin-transform-parameters-7.13.0"
+ sources."@babel/plugin-transform-parameters-7.14.2"
sources."@babel/plugin-transform-property-literals-7.12.13"
sources."@babel/plugin-transform-regenerator-7.13.15"
sources."@babel/plugin-transform-reserved-words-7.12.13"
@@ -65578,10 +65656,10 @@ in
sources."@babel/plugin-transform-sticky-regex-7.12.13"
sources."@babel/plugin-transform-template-literals-7.13.0"
sources."@babel/plugin-transform-typeof-symbol-7.12.13"
- sources."@babel/plugin-transform-typescript-7.13.0"
+ sources."@babel/plugin-transform-typescript-7.14.4"
sources."@babel/plugin-transform-unicode-escapes-7.12.13"
sources."@babel/plugin-transform-unicode-regex-7.12.13"
- sources."@babel/preset-env-7.13.15"
+ sources."@babel/preset-env-7.14.4"
sources."@babel/preset-flow-7.13.13"
sources."@babel/preset-modules-0.1.4"
sources."@babel/preset-typescript-7.13.0"
@@ -65592,16 +65670,16 @@ in
sources."semver-5.7.1"
];
})
- sources."@babel/runtime-7.13.17"
+ sources."@babel/runtime-7.14.0"
sources."@babel/template-7.12.13"
- sources."@babel/traverse-7.13.17"
- sources."@babel/types-7.13.17"
+ sources."@babel/traverse-7.14.2"
+ sources."@babel/types-7.14.4"
sources."@hapi/address-2.1.4"
sources."@hapi/bourne-1.3.2"
sources."@hapi/hoek-8.5.1"
sources."@hapi/joi-15.1.1"
sources."@hapi/topo-3.1.6"
- sources."@josephg/resolvable-1.0.0"
+ sources."@josephg/resolvable-1.0.1"
sources."@mrmlnc/readdir-enhanced-2.2.1"
(sources."@nodelib/fs.scandir-2.1.4" // {
dependencies = [
@@ -65643,31 +65721,26 @@ in
];
})
sources."@types/keygrip-1.0.2"
- sources."@types/koa-2.13.1"
+ sources."@types/koa-2.13.2"
sources."@types/koa-compose-3.2.5"
sources."@types/long-4.0.1"
sources."@types/mime-1.3.2"
sources."@types/minimatch-3.0.4"
- sources."@types/node-14.14.41"
- (sources."@types/node-fetch-2.5.8" // {
- dependencies = [
- sources."form-data-3.0.1"
- ];
- })
+ sources."@types/node-15.6.1"
sources."@types/normalize-package-data-2.4.0"
sources."@types/qs-6.9.6"
sources."@types/range-parser-1.2.3"
sources."@types/serve-static-1.13.9"
sources."@types/through-0.0.30"
- sources."@types/ws-7.4.1"
- sources."@vue/cli-shared-utils-4.5.12"
- (sources."@vue/cli-ui-4.5.12" // {
+ sources."@types/ws-7.4.4"
+ sources."@vue/cli-shared-utils-4.5.13"
+ (sources."@vue/cli-ui-4.5.13" // {
dependencies = [
sources."clone-2.1.2"
];
})
- sources."@vue/cli-ui-addon-webpack-4.5.12"
- sources."@vue/cli-ui-addon-widgets-4.5.12"
+ sources."@vue/cli-ui-addon-webpack-4.5.13"
+ sources."@vue/cli-ui-addon-widgets-4.5.13"
(sources."@vue/compiler-core-3.0.11" // {
dependencies = [
sources."source-map-0.6.1"
@@ -65692,35 +65765,28 @@ in
})
sources."ansi-regex-4.1.0"
sources."ansi-styles-3.2.1"
- sources."apollo-cache-control-0.12.0"
- sources."apollo-datasource-0.8.0"
- sources."apollo-env-0.9.0"
- (sources."apollo-graphql-0.6.1" // {
- dependencies = [
- sources."@types/node-fetch-2.5.7"
- sources."apollo-env-0.6.6"
- sources."form-data-3.0.1"
- ];
- })
+ sources."apollo-cache-control-0.14.0"
+ sources."apollo-datasource-0.9.0"
+ sources."apollo-graphql-0.9.3"
sources."apollo-link-1.2.14"
- sources."apollo-reporting-protobuf-0.6.2"
- (sources."apollo-server-caching-0.6.0" // {
+ sources."apollo-reporting-protobuf-0.8.0"
+ (sources."apollo-server-caching-0.7.0" // {
dependencies = [
sources."lru-cache-6.0.0"
];
})
- (sources."apollo-server-core-2.23.0" // {
+ (sources."apollo-server-core-2.25.0" // {
dependencies = [
sources."lru-cache-6.0.0"
sources."uuid-8.3.2"
];
})
- sources."apollo-server-env-3.0.0"
+ sources."apollo-server-env-3.1.0"
sources."apollo-server-errors-2.5.0"
- sources."apollo-server-express-2.23.0"
- sources."apollo-server-plugin-base-0.11.0"
- sources."apollo-server-types-0.7.0"
- sources."apollo-tracing-0.13.0"
+ sources."apollo-server-express-2.25.0"
+ sources."apollo-server-plugin-base-0.13.0"
+ sources."apollo-server-types-0.9.0"
+ sources."apollo-tracing-0.15.0"
sources."apollo-utilities-1.3.4"
(sources."archive-type-4.0.0" // {
dependencies = [
@@ -65749,9 +65815,9 @@ in
sources."aws4-1.11.0"
sources."babel-core-7.0.0-bridge.0"
sources."babel-plugin-dynamic-import-node-2.3.3"
- sources."babel-plugin-polyfill-corejs2-0.2.0"
- sources."babel-plugin-polyfill-corejs3-0.2.0"
- sources."babel-plugin-polyfill-regenerator-0.2.0"
+ sources."babel-plugin-polyfill-corejs2-0.2.2"
+ sources."babel-plugin-polyfill-corejs3-0.2.2"
+ sources."babel-plugin-polyfill-regenerator-0.2.2"
sources."backo2-1.0.2"
sources."balanced-match-1.0.2"
(sources."base-0.11.2" // {
@@ -65784,7 +65850,7 @@ in
})
sources."brace-expansion-1.1.11"
sources."braces-2.3.2"
- sources."browserslist-4.16.5"
+ sources."browserslist-4.16.6"
sources."buffer-5.7.1"
sources."buffer-alloc-1.2.0"
sources."buffer-alloc-unsafe-1.1.0"
@@ -65804,7 +65870,7 @@ in
sources."call-bind-1.0.2"
sources."call-me-maybe-1.0.1"
sources."camelcase-5.3.1"
- sources."caniuse-lite-1.0.30001214"
+ sources."caniuse-lite-1.0.30001230"
sources."caseless-0.12.0"
sources."caw-2.0.1"
sources."chalk-2.4.2"
@@ -65862,12 +65928,12 @@ in
sources."cookie-0.4.0"
sources."cookie-signature-1.0.6"
sources."copy-descriptor-0.1.1"
- sources."core-js-3.11.0"
- (sources."core-js-compat-3.11.0" // {
+ (sources."core-js-compat-3.13.0" // {
dependencies = [
sources."semver-7.0.0"
];
})
+ sources."core-js-pure-3.13.0"
sources."core-util-is-1.0.2"
sources."cors-2.8.5"
(sources."cross-spawn-6.0.5" // {
@@ -65934,14 +66000,14 @@ in
sources."ecc-jsbn-0.1.2"
sources."ee-first-1.1.1"
sources."ejs-2.7.4"
- sources."electron-to-chromium-1.3.720"
+ sources."electron-to-chromium-1.3.741"
sources."emoji-regex-7.0.3"
sources."encodeurl-1.0.2"
sources."end-of-stream-1.4.4"
sources."entities-2.2.0"
sources."envinfo-7.8.1"
sources."error-ex-1.3.2"
- sources."es-abstract-1.18.0"
+ sources."es-abstract-1.18.3"
sources."es-to-primitive-1.2.1"
sources."escalade-3.1.1"
sources."escape-html-1.0.3"
@@ -66017,7 +66083,7 @@ in
})
sources."find-up-3.0.0"
sources."fkill-6.2.0"
- sources."flow-parser-0.149.0"
+ sources."flow-parser-0.152.0"
sources."for-each-0.3.3"
sources."for-in-1.0.2"
sources."forever-agent-0.6.1"
@@ -66044,7 +66110,7 @@ in
sources."getpass-0.1.7"
sources."git-clone-0.1.0"
sources."git-config-path-1.0.1"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
(sources."glob-parent-3.1.0" // {
dependencies = [
sources."is-glob-3.1.0"
@@ -66068,9 +66134,9 @@ in
})
sources."graceful-fs-4.2.6"
sources."graphql-14.7.0"
- sources."graphql-extensions-0.13.0"
+ sources."graphql-extensions-0.15.0"
sources."graphql-subscriptions-1.2.1"
- (sources."graphql-tag-2.12.3" // {
+ (sources."graphql-tag-2.12.4" // {
dependencies = [
sources."tslib-2.2.0"
];
@@ -66125,13 +66191,13 @@ in
sources."ipaddr.js-1.9.1"
sources."is-accessor-descriptor-1.0.0"
sources."is-arrayish-0.2.1"
- sources."is-bigint-1.0.1"
- sources."is-boolean-object-1.1.0"
+ sources."is-bigint-1.0.2"
+ sources."is-boolean-object-1.1.1"
sources."is-buffer-1.1.6"
sources."is-callable-1.2.3"
- sources."is-core-module-2.3.0"
+ sources."is-core-module-2.4.0"
sources."is-data-descriptor-1.0.0"
- sources."is-date-object-1.0.2"
+ sources."is-date-object-1.0.4"
sources."is-descriptor-1.0.2"
sources."is-docker-2.2.1"
sources."is-extendable-0.1.1"
@@ -66145,22 +66211,22 @@ in
sources."kind-of-3.2.2"
];
})
- sources."is-number-object-1.0.4"
+ sources."is-number-object-1.0.5"
sources."is-object-1.0.2"
sources."is-plain-obj-1.1.0"
sources."is-plain-object-2.0.4"
sources."is-promise-2.2.2"
sources."is-property-1.0.2"
- sources."is-regex-1.1.2"
+ sources."is-regex-1.1.3"
sources."is-retry-allowed-1.2.0"
sources."is-stream-1.1.0"
- sources."is-string-1.0.5"
- sources."is-symbol-1.0.3"
+ sources."is-string-1.0.6"
+ sources."is-symbol-1.0.4"
sources."is-typedarray-1.0.0"
sources."is-windows-1.0.2"
sources."is-wsl-1.1.0"
sources."isarray-1.0.0"
- sources."isbinaryfile-4.0.6"
+ sources."isbinaryfile-4.0.8"
sources."isexe-2.0.0"
sources."isobject-3.0.1"
sources."isstream-0.1.2"
@@ -66269,7 +66335,7 @@ in
sources."which-2.0.2"
];
})
- sources."node-releases-1.1.71"
+ sources."node-releases-1.1.72"
(sources."normalize-package-data-2.5.0" // {
dependencies = [
sources."semver-5.7.1"
@@ -66297,7 +66363,7 @@ in
sources."kind-of-3.2.2"
];
})
- sources."object-inspect-1.10.2"
+ sources."object-inspect-1.10.3"
sources."object-keys-1.1.1"
sources."object-path-0.11.5"
sources."object-visit-1.0.1"
@@ -66331,12 +66397,12 @@ in
sources."path-exists-3.0.0"
sources."path-is-absolute-1.0.1"
sources."path-key-2.0.1"
- sources."path-parse-1.0.6"
+ sources."path-parse-1.0.7"
sources."path-to-regexp-0.1.7"
sources."path-type-3.0.0"
sources."pend-1.2.0"
sources."performance-now-2.1.0"
- sources."picomatch-2.2.3"
+ sources."picomatch-2.3.0"
(sources."pid-from-port-1.1.3" // {
dependencies = [
sources."cross-spawn-5.1.0"
@@ -66498,7 +66564,7 @@ in
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."spdx-license-ids-3.0.9"
(sources."split-string-3.1.0" // {
dependencies = [
sources."extend-shallow-3.0.2"
@@ -66684,7 +66750,7 @@ in
sources."ws-6.2.1"
sources."xml2js-0.4.23"
sources."xmlbuilder-11.0.1"
- sources."xss-1.0.8"
+ sources."xss-1.0.9"
sources."xtend-4.0.2"
sources."y18n-5.0.8"
sources."yallist-4.0.0"
@@ -66834,12 +66900,12 @@ in
};
dependencies = [
sources."@babel/code-frame-7.12.13"
- sources."@babel/generator-7.13.16"
- sources."@babel/helper-validator-identifier-7.12.11"
- sources."@babel/highlight-7.13.10"
- sources."@babel/parser-7.13.16"
+ sources."@babel/generator-7.14.3"
+ sources."@babel/helper-validator-identifier-7.14.0"
+ sources."@babel/highlight-7.14.0"
+ sources."@babel/parser-7.14.4"
sources."@babel/template-7.12.13"
- sources."@babel/types-7.13.17"
+ sources."@babel/types-7.14.4"
sources."@webassemblyjs/ast-1.11.0"
sources."@webassemblyjs/floating-point-hex-parser-1.11.0"
sources."@webassemblyjs/helper-api-error-1.11.0"
@@ -66914,43 +66980,43 @@ in
};
dependencies = [
sources."@babel/code-frame-7.12.13"
- sources."@babel/compat-data-7.13.15"
- (sources."@babel/core-7.13.16" // {
+ sources."@babel/compat-data-7.14.4"
+ (sources."@babel/core-7.14.3" // {
dependencies = [
sources."source-map-0.5.7"
];
})
- (sources."@babel/generator-7.13.16" // {
+ (sources."@babel/generator-7.14.3" // {
dependencies = [
sources."source-map-0.5.7"
];
})
- sources."@babel/helper-compilation-targets-7.13.16"
- sources."@babel/helper-function-name-7.12.13"
+ sources."@babel/helper-compilation-targets-7.14.4"
+ sources."@babel/helper-function-name-7.14.2"
sources."@babel/helper-get-function-arity-7.12.13"
sources."@babel/helper-member-expression-to-functions-7.13.12"
sources."@babel/helper-module-imports-7.13.12"
- sources."@babel/helper-module-transforms-7.13.14"
+ sources."@babel/helper-module-transforms-7.14.2"
sources."@babel/helper-optimise-call-expression-7.12.13"
- sources."@babel/helper-replace-supers-7.13.12"
+ sources."@babel/helper-replace-supers-7.14.4"
sources."@babel/helper-simple-access-7.13.12"
sources."@babel/helper-split-export-declaration-7.12.13"
- sources."@babel/helper-validator-identifier-7.12.11"
+ sources."@babel/helper-validator-identifier-7.14.0"
sources."@babel/helper-validator-option-7.12.17"
- sources."@babel/helpers-7.13.17"
- sources."@babel/highlight-7.13.10"
- sources."@babel/parser-7.13.16"
+ sources."@babel/helpers-7.14.0"
+ sources."@babel/highlight-7.14.0"
+ sources."@babel/parser-7.14.4"
sources."@babel/template-7.12.13"
- sources."@babel/traverse-7.13.17"
- sources."@babel/types-7.13.17"
+ sources."@babel/traverse-7.14.2"
+ sources."@babel/types-7.14.4"
sources."JSV-4.0.2"
sources."ansi-styles-3.2.1"
sources."array-unique-0.3.2"
sources."async-3.2.0"
sources."balanced-match-1.0.2"
sources."brace-expansion-1.1.11"
- sources."browserslist-4.16.5"
- sources."caniuse-lite-1.0.30001214"
+ sources."browserslist-4.16.6"
+ sources."caniuse-lite-1.0.30001230"
sources."chalk-2.4.2"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
@@ -66961,7 +67027,7 @@ in
sources."convert-source-map-1.7.0"
sources."debug-4.3.2"
sources."ejs-3.1.6"
- sources."electron-to-chromium-1.3.720"
+ sources."electron-to-chromium-1.3.741"
sources."ensure-posix-path-1.1.1"
sources."escalade-3.1.1"
sources."escape-string-regexp-1.0.5"
@@ -66988,7 +67054,7 @@ in
sources."homedir-polyfill-1.0.3"
sources."ini-1.3.8"
sources."is-3.3.0"
- sources."is-core-module-2.3.0"
+ sources."is-core-module-2.4.0"
sources."is-windows-1.0.2"
sources."isexe-2.0.0"
(sources."jake-10.8.2" // {
@@ -67007,7 +67073,7 @@ in
sources."minimist-1.2.5"
sources."moment-2.29.1"
sources."ms-2.1.2"
- sources."node-releases-1.1.71"
+ sources."node-releases-1.1.72"
sources."node.extend-2.0.2"
(sources."nomnom-1.8.1" // {
dependencies = [
@@ -67016,7 +67082,7 @@ in
];
})
sources."parse-passwd-1.0.0"
- sources."path-parse-1.0.6"
+ sources."path-parse-1.0.7"
sources."pkginfo-0.4.1"
sources."resolve-1.20.0"
sources."safe-buffer-5.1.2"
@@ -67055,14 +67121,14 @@ in
dependencies = [
sources."@types/glob-7.1.3"
sources."@types/minimatch-3.0.4"
- sources."@types/node-14.14.41"
+ sources."@types/node-15.6.1"
sources."balanced-match-1.0.2"
sources."brace-expansion-1.1.11"
sources."chromium-pickle-js-0.2.0"
sources."commander-5.1.0"
sources."concat-map-0.0.1"
sources."fs.realpath-1.0.0"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."minimatch-3.0.4"
@@ -67090,7 +67156,7 @@ in
};
dependencies = [
sources."@tootallnate/once-1.1.2"
- sources."@types/node-14.14.41"
+ sources."@types/node-15.6.1"
sources."@types/yauzl-2.9.1"
sources."agent-base-6.0.2"
sources."ansi-escapes-4.3.2"
@@ -67101,7 +67167,7 @@ in
sources."tslib-2.2.0"
];
})
- (sources."aws-sdk-2.892.0" // {
+ (sources."aws-sdk-2.918.0" // {
dependencies = [
sources."uuid-3.3.2"
];
@@ -67167,7 +67233,7 @@ in
sources."ftp-0.3.10"
sources."get-stream-5.2.0"
sources."get-uri-3.0.2"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."graceful-fs-4.2.6"
sources."has-flag-4.0.0"
sources."htmlparser2-6.1.0"
@@ -67270,7 +67336,7 @@ in
sources."uuid-8.3.2"
sources."word-wrap-1.2.3"
sources."wrappy-1.0.2"
- sources."ws-7.4.5"
+ sources."ws-7.4.6"
sources."xml2js-0.4.19"
sources."xmlbuilder-9.0.7"
sources."xregexp-2.0.0"
@@ -67290,10 +67356,10 @@ in
balanceofsatoshis = nodeEnv.buildNodePackage {
name = "balanceofsatoshis";
packageName = "balanceofsatoshis";
- version = "8.0.8";
+ version = "8.0.14";
src = fetchurl {
- url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-8.0.8.tgz";
- sha512 = "v52KtlVv4Sdp0GaqH9vPYSwOCgIvTruMX0yv8ev+GguqY1kV+mCykCIFW3++ysu97pog00LhImvFbxndAU68rA==";
+ url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-8.0.14.tgz";
+ sha512 = "z9/oACcuCHyWSg2c5J1G/HNcTAknUc4YS2SIqsbjw27YmAL2x6T9Uo1OSSemWnOqGtlHfS6xf7X3DJNsfIYPfQ==";
};
dependencies = [
sources."@alexbosworth/html2unicode-1.1.5"
@@ -67306,10 +67372,10 @@ in
sources."@cto.af/textdecoder-0.0.0"
(sources."@grpc/grpc-js-1.2.12" // {
dependencies = [
- sources."@types/node-14.14.41"
+ sources."@types/node-15.6.1"
];
})
- sources."@grpc/proto-loader-0.5.6"
+ sources."@grpc/proto-loader-0.6.1"
sources."@handsontable/formulajs-2.0.2"
sources."@mitmaro/errors-1.0.0"
sources."@mitmaro/http-authorization-header-1.0.0"
@@ -67329,7 +67395,7 @@ in
sources."@types/caseless-0.12.2"
sources."@types/connect-3.4.34"
sources."@types/express-4.17.11"
- sources."@types/express-serve-static-core-4.17.19"
+ sources."@types/express-serve-static-core-4.17.20"
sources."@types/long-4.0.1"
sources."@types/mime-1.3.2"
sources."@types/node-10.12.18"
@@ -67342,7 +67408,7 @@ in
})
sources."@types/serve-static-1.13.9"
sources."@types/tough-cookie-4.0.0"
- sources."@types/ws-7.4.0"
+ sources."@types/ws-7.4.1"
sources."abort-controller-3.0.0"
sources."accepts-1.3.7"
(sources."agent-base-6.0.2" // {
@@ -67419,7 +67485,7 @@ in
sources."bn.js-5.2.0"
];
})
- sources."bolt09-0.1.3"
+ sources."bolt09-0.1.4"
(sources."boxen-5.0.1" // {
dependencies = [
sources."ansi-regex-5.0.0"
@@ -67447,7 +67513,6 @@ in
sources."lowercase-keys-2.0.0"
];
})
- sources."call-bind-1.0.2"
sources."camelcase-6.2.0"
sources."caporal-1.4.0"
sources."caseless-0.12.0"
@@ -67553,23 +67618,19 @@ in
sources."form-data-3.0.0"
sources."forwarded-0.1.2"
sources."fresh-0.5.2"
- sources."function-bind-1.1.1"
sources."gauge-1.2.7"
- sources."gaxios-4.2.0"
+ sources."gaxios-4.3.0"
sources."gcp-metadata-4.2.1"
sources."get-caller-file-2.0.5"
- sources."get-intrinsic-1.1.1"
sources."get-stream-4.1.0"
sources."getpass-0.1.7"
sources."global-dirs-3.0.0"
- (sources."goldengate-10.0.3" // {
+ (sources."goldengate-10.0.4" // {
dependencies = [
- sources."asyncjs-util-1.2.4"
sources."bech32-2.0.0"
sources."bn.js-5.2.0"
- sources."bolt07-1.7.1"
- sources."invoices-1.1.6"
- sources."ln-service-51.5.0"
+ sources."invoices-1.1.7"
+ sources."ln-service-51.7.0"
];
})
sources."google-auth-library-6.1.6"
@@ -67579,14 +67640,12 @@ in
sources."gtoken-5.2.1"
sources."har-schema-2.0.0"
sources."har-validator-5.1.3"
- sources."has-1.0.3"
(sources."has-ansi-2.0.0" // {
dependencies = [
sources."ansi-regex-2.1.1"
];
})
sources."has-flag-4.0.0"
- sources."has-symbols-1.0.2"
sources."has-unicode-2.0.1"
sources."has-yarn-2.1.0"
sources."hash-base-3.1.0"
@@ -67635,13 +67694,11 @@ in
dependencies = [
sources."bech32-2.0.0"
sources."bn.js-5.2.0"
- sources."bolt09-0.1.4"
];
})
sources."ip-regex-2.1.0"
sources."ipaddr.js-1.9.1"
sources."is-accessor-descriptor-1.0.0"
- sources."is-boolean-object-1.1.0"
sources."is-buffer-1.1.6"
sources."is-ci-2.0.0"
sources."is-data-descriptor-1.0.0"
@@ -67654,11 +67711,9 @@ in
sources."kind-of-3.2.2"
];
})
- sources."is-number-object-1.0.4"
sources."is-obj-2.0.0"
sources."is-path-inside-3.0.3"
sources."is-stream-2.0.0"
- sources."is-string-1.0.5"
sources."is-typedarray-1.0.0"
sources."is-yarn-global-0.3.0"
sources."isarray-1.0.0"
@@ -67679,74 +67734,92 @@ in
sources."keyv-3.1.0"
sources."kind-of-6.0.3"
sources."latest-version-5.1.0"
- (sources."lightning-3.3.1" // {
+ (sources."lightning-3.3.4" // {
dependencies = [
- sources."@grpc/grpc-js-1.2.11"
- sources."@types/node-14.14.35"
- sources."asyncjs-util-1.2.3"
+ sources."@grpc/proto-loader-0.6.0"
+ sources."@types/node-14.14.37"
sources."bech32-2.0.0"
sources."bn.js-5.2.0"
- sources."bolt07-1.7.1"
- sources."cbor-7.0.4"
- sources."invoices-1.1.6"
- sources."psbt-1.1.8"
+ sources."invoices-1.1.7"
];
})
(sources."ln-accounting-4.2.7" // {
dependencies = [
+ sources."@grpc/grpc-js-1.2.11"
+ sources."@grpc/proto-loader-0.5.6"
+ sources."@types/node-14.14.35"
+ sources."@types/ws-7.4.0"
sources."asyncjs-util-1.2.4"
sources."bech32-2.0.0"
sources."bn.js-5.2.0"
sources."bolt07-1.7.1"
+ sources."bolt09-0.1.3"
+ sources."cbor-7.0.4"
+ sources."goldengate-10.0.3"
sources."invoices-1.1.6"
+ (sources."lightning-3.3.1" // {
+ dependencies = [
+ sources."asyncjs-util-1.2.3"
+ ];
+ })
sources."ln-service-51.5.0"
+ sources."psbt-1.1.8"
];
})
- (sources."ln-service-51.7.0" // {
+ (sources."ln-service-51.8.1" // {
dependencies = [
- sources."@grpc/proto-loader-0.6.0"
- sources."@types/node-14.14.37"
- sources."@types/ws-7.4.1"
- sources."bech32-2.0.0"
+ sources."@grpc/grpc-js-1.3.1"
+ sources."@grpc/proto-loader-0.6.2"
+ sources."@types/node-15.0.3"
+ sources."@types/ws-7.4.4"
sources."bn.js-5.2.0"
- sources."bolt09-0.1.4"
- sources."invoices-1.1.7"
- sources."lightning-3.3.4"
+ sources."lightning-3.3.7"
+ sources."ws-7.4.5"
];
})
(sources."ln-sync-0.4.5" // {
dependencies = [
- sources."asyncjs-util-1.2.4"
- ];
- })
- (sources."ln-telegram-3.2.2" // {
- dependencies = [
- sources."ajv-8.1.0"
- sources."ansi-regex-5.0.0"
+ sources."@grpc/grpc-js-1.2.11"
+ sources."@grpc/proto-loader-0.5.6"
+ sources."@types/node-14.14.35"
+ sources."@types/ws-7.4.0"
sources."asyncjs-util-1.2.4"
sources."bech32-2.0.0"
sources."bn.js-5.2.0"
sources."bolt07-1.7.1"
- sources."bolt09-0.1.4"
- sources."invoices-1.1.7"
+ sources."bolt09-0.1.3"
+ sources."invoices-1.1.6"
+ (sources."lightning-3.3.1" // {
+ dependencies = [
+ sources."asyncjs-util-1.2.3"
+ sources."cbor-7.0.4"
+ ];
+ })
+ sources."psbt-1.1.8"
+ ];
+ })
+ (sources."ln-telegram-3.2.3" // {
+ dependencies = [
+ sources."ajv-8.5.0"
+ sources."ansi-regex-5.0.0"
+ sources."bech32-2.0.0"
+ sources."bn.js-5.2.0"
sources."is-fullwidth-code-point-3.0.0"
sources."json-schema-traverse-1.0.0"
- (sources."ln-service-51.5.0" // {
+ (sources."ln-service-51.7.0" // {
dependencies = [
- sources."bolt09-0.1.3"
- sources."invoices-1.1.6"
+ sources."invoices-1.1.7"
];
})
sources."string-width-4.2.2"
sources."strip-ansi-6.0.0"
- sources."table-6.0.9"
+ sources."table-6.7.0"
];
})
sources."lodash-4.17.21"
sources."lodash.camelcase-4.3.0"
sources."lodash.clonedeep-4.5.0"
sources."lodash.difference-4.5.0"
- sources."lodash.flatten-4.4.0"
sources."lodash.get-4.4.2"
sources."lodash.pad-4.5.1"
sources."lodash.padend-4.6.1"
@@ -67793,7 +67866,7 @@ in
sources."node-forge-0.10.0"
sources."node-gyp-build-4.2.3"
sources."nofilter-2.0.3"
- sources."normalize-url-4.5.0"
+ sources."normalize-url-4.5.1"
sources."npmlog-2.0.4"
sources."number-is-nan-1.0.1"
sources."oauth-sign-0.9.0"
@@ -67816,24 +67889,36 @@ in
sources."prettyjson-1.2.1"
(sources."probing-1.3.5" // {
dependencies = [
+ sources."@grpc/grpc-js-1.2.11"
+ sources."@grpc/proto-loader-0.5.6"
+ sources."@types/node-14.14.35"
+ sources."@types/ws-7.4.0"
sources."asyncjs-util-1.2.4"
sources."bech32-2.0.0"
sources."bn.js-5.2.0"
- sources."bolt09-0.1.4"
+ sources."bolt09-0.1.3"
+ sources."cbor-7.0.4"
sources."invoices-1.1.7"
- (sources."ln-service-51.5.0" // {
+ (sources."lightning-3.3.1" // {
dependencies = [
+ sources."asyncjs-util-1.2.3"
sources."bolt07-1.7.1"
- sources."bolt09-0.1.3"
sources."invoices-1.1.6"
];
})
+ (sources."ln-service-51.5.0" // {
+ dependencies = [
+ sources."bolt07-1.7.1"
+ sources."invoices-1.1.6"
+ ];
+ })
+ sources."psbt-1.1.8"
];
})
sources."process-nextick-args-2.0.1"
- (sources."protobufjs-6.10.2" // {
+ (sources."protobufjs-6.11.2" // {
dependencies = [
- sources."@types/node-13.13.50"
+ sources."@types/node-15.6.1"
];
})
sources."proxy-addr-2.0.6"
@@ -67902,9 +67987,9 @@ in
sources."strip-ansi-4.0.0"
sources."strip-json-comments-2.0.1"
sources."supports-color-2.0.0"
- (sources."table-6.4.0" // {
+ (sources."table-6.7.1" // {
dependencies = [
- sources."ajv-8.1.0"
+ sources."ajv-8.5.0"
sources."ansi-regex-5.0.0"
sources."is-fullwidth-code-point-3.0.0"
sources."json-schema-traverse-1.0.0"
@@ -67944,7 +68029,7 @@ in
sources."typedarray-0.0.6"
sources."typedarray-to-buffer-3.1.5"
sources."typeforce-1.18.0"
- sources."typegram-3.2.4"
+ sources."typegram-3.3.1"
sources."unique-string-2.0.0"
sources."unpipe-1.0.0"
(sources."update-notifier-5.1.0" // {
@@ -68075,7 +68160,7 @@ in
sources."fs.realpath-1.0.0"
sources."fuzzy-search-3.2.1"
sources."getpass-0.1.7"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."har-schema-2.0.0"
sources."har-validator-5.1.5"
sources."html-encoding-sniffer-1.0.2"
@@ -68220,7 +68305,7 @@ in
sources."inherits-2.0.4"
sources."intersect-1.0.1"
sources."is-arrayish-0.2.1"
- sources."is-core-module-2.3.0"
+ sources."is-core-module-2.4.0"
sources."is-finite-1.1.0"
sources."is-plain-obj-1.1.0"
sources."is-utf8-0.2.1"
@@ -68256,7 +68341,7 @@ in
sources."parse-json-2.2.0"
sources."path-exists-2.1.0"
sources."path-is-absolute-1.0.1"
- sources."path-parse-1.0.6"
+ sources."path-parse-1.0.7"
(sources."path-type-1.1.0" // {
dependencies = [
sources."graceful-fs-4.2.6"
@@ -68274,7 +68359,7 @@ in
sources."resolve-1.20.0"
(sources."rimraf-2.7.1" // {
dependencies = [
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
];
})
sources."semver-5.7.1"
@@ -68284,7 +68369,7 @@ in
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."spdx-license-ids-3.0.9"
sources."sprintf-js-1.0.3"
sources."strip-bom-2.0.0"
sources."strip-indent-1.0.1"
@@ -68320,7 +68405,6 @@ in
sources."acorn-7.4.1"
sources."acorn-node-1.8.2"
sources."acorn-walk-7.2.0"
- sources."array-filter-1.0.0"
(sources."asn1.js-5.4.1" // {
dependencies = [
sources."bn.js-4.12.0"
@@ -68332,7 +68416,7 @@ in
sources."util-0.10.3"
];
})
- sources."available-typed-arrays-1.0.2"
+ sources."available-typed-arrays-1.0.4"
sources."balanced-match-1.0.2"
sources."base64-js-1.5.1"
sources."bn.js-5.2.0"
@@ -68390,7 +68474,7 @@ in
sources."bn.js-4.12.0"
];
})
- sources."es-abstract-1.18.0"
+ sources."es-abstract-1.18.3"
sources."es-to-primitive-1.2.1"
sources."events-3.3.0"
sources."evp_bytestokey-1.0.3"
@@ -68400,7 +68484,7 @@ in
sources."function-bind-1.1.1"
sources."get-assigned-identifiers-1.2.0"
sources."get-intrinsic-1.1.1"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."has-1.0.3"
sources."has-bigints-1.0.1"
sources."has-symbols-1.0.2"
@@ -68419,18 +68503,18 @@ in
sources."inline-source-map-0.6.2"
sources."insert-module-globals-7.2.1"
sources."is-arguments-1.1.0"
- sources."is-bigint-1.0.1"
- sources."is-boolean-object-1.1.0"
+ sources."is-bigint-1.0.2"
+ sources."is-boolean-object-1.1.1"
sources."is-buffer-1.1.6"
sources."is-callable-1.2.3"
- sources."is-core-module-2.3.0"
- sources."is-date-object-1.0.2"
- sources."is-generator-function-1.0.8"
+ sources."is-core-module-2.4.0"
+ sources."is-date-object-1.0.4"
+ sources."is-generator-function-1.0.9"
sources."is-negative-zero-2.0.1"
- sources."is-number-object-1.0.4"
- sources."is-regex-1.1.2"
- sources."is-string-1.0.5"
- sources."is-symbol-1.0.3"
+ sources."is-number-object-1.0.5"
+ sources."is-regex-1.1.3"
+ sources."is-string-1.0.6"
+ sources."is-symbol-1.0.4"
sources."is-typed-array-1.1.5"
sources."isarray-1.0.0"
sources."jsonparse-1.3.1"
@@ -68449,7 +68533,7 @@ in
sources."mkdirp-classic-0.5.3"
sources."module-deps-6.2.3"
sources."object-assign-4.1.1"
- sources."object-inspect-1.10.2"
+ sources."object-inspect-1.10.3"
sources."object-keys-1.1.1"
sources."object.assign-4.1.2"
sources."once-1.4.0"
@@ -68459,7 +68543,7 @@ in
sources."parse-asn1-5.1.6"
sources."path-browserify-1.0.1"
sources."path-is-absolute-1.0.1"
- sources."path-parse-1.0.6"
+ sources."path-parse-1.0.7"
sources."path-platform-0.11.15"
sources."pbkdf2-3.1.2"
sources."process-0.11.10"
@@ -68520,7 +68604,7 @@ in
sources."punycode-1.3.2"
];
})
- sources."util-0.12.3"
+ sources."util-0.12.4"
sources."util-deprecate-1.0.2"
sources."vm-browserify-1.1.2"
sources."which-boxed-primitive-1.0.2"
@@ -68548,10 +68632,10 @@ in
};
dependencies = [
sources."@babel/code-frame-7.12.13"
- sources."@babel/helper-validator-identifier-7.12.11"
- sources."@babel/highlight-7.13.10"
- sources."@babel/parser-7.13.16"
- sources."@babel/types-7.13.17"
+ sources."@babel/helper-validator-identifier-7.14.0"
+ sources."@babel/highlight-7.14.0"
+ sources."@babel/parser-7.14.4"
+ sources."@babel/types-7.14.4"
sources."@kwsites/file-exists-1.1.1"
sources."@kwsites/promise-deferred-1.1.1"
sources."@types/minimist-1.2.1"
@@ -68672,9 +68756,9 @@ in
sources."denque-1.5.0"
sources."depd-1.1.2"
sources."destroy-1.0.4"
- sources."dijkstrajs-1.0.1"
+ sources."dijkstrajs-1.0.2"
sources."doctypes-1.1.0"
- sources."dotenv-8.2.0"
+ sources."dotenv-8.6.0"
sources."dtrace-provider-0.8.8"
sources."ecc-jsbn-0.1.2"
sources."ee-first-1.1.1"
@@ -68694,11 +68778,12 @@ in
];
})
sources."express-async-handler-1.1.4"
- (sources."express-session-1.17.1" // {
+ (sources."express-session-1.17.2" // {
dependencies = [
+ sources."cookie-0.4.1"
sources."debug-2.6.9"
sources."depd-2.0.0"
- sources."safe-buffer-5.2.0"
+ sources."safe-buffer-5.2.1"
];
})
sources."extend-3.0.2"
@@ -68712,7 +68797,7 @@ in
];
})
sources."find-up-4.1.0"
- sources."follow-redirects-1.13.3"
+ sources."follow-redirects-1.14.1"
sources."forever-agent-0.6.1"
sources."form-data-2.3.3"
sources."forwarded-0.1.2"
@@ -68750,12 +68835,12 @@ in
sources."ipaddr.js-1.9.1"
sources."is-arrayish-0.2.1"
sources."is-buffer-1.1.6"
- sources."is-core-module-2.3.0"
+ sources."is-core-module-2.4.0"
sources."is-expression-4.0.0"
sources."is-fullwidth-code-point-2.0.0"
sources."is-plain-obj-1.1.0"
sources."is-promise-2.2.2"
- sources."is-regex-1.1.2"
+ sources."is-regex-1.1.3"
sources."is-typedarray-1.0.0"
sources."isarray-2.0.5"
sources."isstream-0.1.2"
@@ -68832,7 +68917,7 @@ in
sources."parseurl-1.3.3"
sources."path-exists-4.0.0"
sources."path-is-absolute-1.0.1"
- sources."path-parse-1.0.6"
+ sources."path-parse-1.0.7"
sources."path-to-regexp-0.1.7"
sources."performance-now-2.1.0"
(sources."pidusage-2.0.21" // {
@@ -68919,11 +69004,11 @@ in
sources."set-blocking-2.0.0"
sources."setprototypeof-1.1.1"
sources."sha.js-2.4.11"
- sources."simple-git-2.38.0"
+ sources."simple-git-2.39.0"
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."spdx-license-ids-3.0.9"
sources."sprintf-js-1.0.3"
sources."sshpk-1.16.1"
sources."standard-error-1.1.0"
@@ -68942,7 +69027,7 @@ in
sources."toidentifier-1.0.0"
sources."token-stream-1.0.0"
sources."tough-cookie-2.5.0"
- sources."trim-newlines-3.0.0"
+ sources."trim-newlines-3.0.1"
sources."tsscmp-1.0.6"
sources."tunnel-agent-0.6.0"
sources."tweetnacl-0.14.5"
@@ -69009,7 +69094,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.50"
+ sources."@types/node-15.6.1"
sources."addr-to-ip-port-1.5.1"
sources."airplay-js-0.2.16"
sources."ajv-6.12.6"
@@ -69130,7 +69215,7 @@ in
sources."get-browser-rtc-1.1.0"
sources."get-stdin-4.0.1"
sources."getpass-0.1.7"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."got-1.2.2"
sources."graceful-fs-4.2.6"
sources."har-schema-2.0.0"
@@ -69151,7 +69236,7 @@ in
sources."ip-set-1.0.2"
sources."ipaddr.js-2.0.0"
sources."is-arrayish-0.2.1"
- sources."is-core-module-2.3.0"
+ sources."is-core-module-2.4.0"
sources."is-finite-1.1.0"
sources."is-typedarray-1.0.0"
sources."is-utf8-0.2.1"
@@ -69228,7 +69313,7 @@ in
})
sources."path-exists-2.1.0"
sources."path-is-absolute-1.0.1"
- sources."path-parse-1.0.6"
+ sources."path-parse-1.0.7"
sources."path-type-1.1.0"
(sources."peer-wire-protocol-0.7.1" // {
dependencies = [
@@ -69254,7 +69339,7 @@ in
sources."plist-3.0.2"
sources."process-nextick-args-2.0.1"
sources."promiscuous-0.6.0"
- sources."protobufjs-6.10.2"
+ sources."protobufjs-6.11.2"
sources."psl-1.8.0"
(sources."pump-0.3.5" // {
dependencies = [
@@ -69335,7 +69420,7 @@ in
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."spdx-license-ids-3.0.9"
sources."speedometer-0.1.4"
sources."srt2vtt-1.3.1"
sources."sshpk-1.16.1"
@@ -69421,20 +69506,19 @@ in
sha512 = "Oo/tO5aqmjsBORN93dSnidF7+2u77Q9zwUn9VbCQkZqCNfeZZcwIV9AG108hMYwtcXqtKQC7wevX6rmi9l8lng==";
};
dependencies = [
- sources."@jsii/spec-1.29.0"
- sources."@types/node-10.17.58"
+ sources."@jsii/spec-1.30.0"
+ sources."@types/node-10.17.60"
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."available-typed-arrays-1.0.4"
sources."call-bind-1.0.2"
sources."camelcase-6.2.0"
sources."case-1.6.3"
sources."cdk8s-1.0.0-beta.11"
sources."cliui-7.0.4"
sources."clone-2.1.2"
- (sources."codemaker-1.29.0" // {
+ (sources."codemaker-1.30.0" // {
dependencies = [
sources."fs-extra-9.1.0"
];
@@ -69454,7 +69538,7 @@ in
sources."dot-case-3.0.4"
sources."emoji-regex-8.0.0"
sources."entities-2.0.3"
- sources."es-abstract-1.18.0"
+ sources."es-abstract-1.18.3"
sources."es-get-iterator-1.1.2"
sources."es-to-primitive-1.2.1"
sources."escalade-3.1.1"
@@ -69476,53 +69560,53 @@ in
sources."has-bigints-1.0.1"
sources."has-symbols-1.0.2"
sources."is-arguments-1.1.0"
- sources."is-bigint-1.0.1"
- sources."is-boolean-object-1.1.0"
+ sources."is-bigint-1.0.2"
+ sources."is-boolean-object-1.1.1"
sources."is-callable-1.2.3"
- sources."is-date-object-1.0.2"
+ sources."is-date-object-1.0.4"
sources."is-fullwidth-code-point-3.0.0"
sources."is-map-2.0.2"
sources."is-negative-zero-2.0.1"
- sources."is-number-object-1.0.4"
- sources."is-regex-1.1.2"
+ sources."is-number-object-1.0.5"
+ sources."is-regex-1.1.3"
sources."is-set-2.0.2"
- sources."is-string-1.0.5"
- sources."is-symbol-1.0.3"
+ sources."is-string-1.0.6"
+ sources."is-symbol-1.0.4"
sources."is-typed-array-1.1.5"
sources."is-weakmap-2.0.1"
sources."is-weakset-2.0.1"
sources."isarray-2.0.5"
- (sources."jsii-1.29.0" // {
+ (sources."jsii-1.30.0" // {
dependencies = [
sources."fs-extra-9.1.0"
sources."yargs-16.2.0"
];
})
- (sources."jsii-pacmak-1.29.0" // {
+ (sources."jsii-pacmak-1.30.0" // {
dependencies = [
sources."fs-extra-9.1.0"
sources."yargs-16.2.0"
];
})
- (sources."jsii-reflect-1.29.0" // {
+ (sources."jsii-reflect-1.30.0" // {
dependencies = [
sources."fs-extra-9.1.0"
sources."yargs-16.2.0"
];
})
- (sources."jsii-rosetta-1.29.0" // {
+ (sources."jsii-rosetta-1.30.0" // {
dependencies = [
sources."fs-extra-9.1.0"
sources."yargs-16.2.0"
];
})
- (sources."jsii-srcmak-0.1.257" // {
+ (sources."jsii-srcmak-0.1.273" // {
dependencies = [
sources."fs-extra-9.1.0"
];
})
- sources."json-schema-0.2.5"
- sources."json2jsii-0.1.219"
+ sources."json-schema-0.3.0"
+ sources."json2jsii-0.1.236"
sources."jsonfile-6.1.0"
sources."jsonschema-1.4.0"
sources."locate-path-5.0.0"
@@ -69534,11 +69618,11 @@ in
sources."ms-2.1.2"
sources."ncp-2.0.0"
sources."no-case-3.0.4"
- sources."object-inspect-1.10.2"
+ sources."object-inspect-1.10.3"
sources."object-is-1.1.5"
sources."object-keys-1.1.1"
sources."object.assign-4.1.2"
- sources."oo-ascii-tree-1.29.0"
+ sources."oo-ascii-tree-1.30.0"
sources."p-limit-2.3.0"
sources."p-locate-4.1.0"
sources."p-try-2.2.0"
@@ -69579,7 +69663,7 @@ in
sources."which-typed-array-1.1.4"
sources."wrap-ansi-7.0.0"
sources."xmlbuilder-15.1.1"
- sources."xmldom-0.5.0"
+ sources."xmldom-0.6.0"
sources."y18n-5.0.8"
sources."yallist-4.0.0"
sources."yaml-1.10.2"
@@ -69608,17 +69692,17 @@ in
cdktf-cli = nodeEnv.buildNodePackage {
name = "cdktf-cli";
packageName = "cdktf-cli";
- version = "0.3.0";
+ version = "0.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/cdktf-cli/-/cdktf-cli-0.3.0.tgz";
- sha512 = "8ZICMcjBkKMBzzyVQfa3CGb/kkxBfvr7nxvOLpyEO1ecJt4E1gkrAwsKb8oVX/zfQ371UJqrqJxwBwb+OUT5Wg==";
+ url = "https://registry.npmjs.org/cdktf-cli/-/cdktf-cli-0.4.0.tgz";
+ sha512 = "2mJA2Kq8mCcTzfHbNnogPWj/OVtPFEtzgL00hxPyLIKaQz7gX0Sagej18qp7kPh0pVA5Qenm5jVST3GdkjoX6A==";
};
dependencies = [
- sources."@cdktf/hcl2json-0.3.0"
- sources."@jsii/spec-1.29.0"
+ sources."@cdktf/hcl2json-0.4.0"
+ sources."@jsii/spec-1.30.0"
sources."@skorfmann/ink-confirm-input-3.0.0"
- sources."@skorfmann/terraform-cloud-1.10.0"
- sources."@types/node-14.14.41"
+ sources."@skorfmann/terraform-cloud-1.10.1"
+ sources."@types/node-14.17.1"
sources."@types/node-fetch-2.5.10"
sources."@types/yauzl-2.9.1"
sources."@types/yoga-layout-1.9.2"
@@ -69635,13 +69719,12 @@ in
sources."readable-stream-2.3.7"
];
})
- sources."array-filter-1.0.0"
sources."astral-regex-2.0.0"
sources."async-3.2.0"
sources."asynckit-0.4.0"
sources."at-least-node-1.0.0"
sources."auto-bind-4.0.0"
- sources."available-typed-arrays-1.0.2"
+ sources."available-typed-arrays-1.0.4"
sources."axios-0.21.1"
sources."balanced-match-1.0.2"
sources."base64-js-1.5.1"
@@ -69653,7 +69736,7 @@ in
sources."camelcase-5.3.1"
sources."camelcase-keys-6.2.2"
sources."case-1.6.3"
- sources."cdktf-0.3.0"
+ sources."cdktf-0.4.0"
sources."chalk-4.1.1"
sources."ci-info-2.0.0"
sources."cli-boxes-2.2.1"
@@ -69696,7 +69779,7 @@ in
sources."emoji-regex-8.0.0"
sources."end-of-stream-1.4.4"
sources."entities-2.0.3"
- sources."es-abstract-1.18.0"
+ sources."es-abstract-1.18.3"
(sources."es-get-iterator-1.1.2" // {
dependencies = [
sources."isarray-2.0.5"
@@ -69710,7 +69793,7 @@ in
sources."fd-slicer-1.1.0"
sources."find-up-4.1.0"
sources."flatted-2.0.2"
- sources."follow-redirects-1.13.3"
+ sources."follow-redirects-1.14.1"
sources."foreach-2.0.5"
sources."form-data-3.0.1"
sources."fs-constants-1.0.0"
@@ -69720,7 +69803,7 @@ in
sources."get-caller-file-2.0.5"
sources."get-intrinsic-1.1.1"
sources."get-stream-5.2.0"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."graceful-fs-4.2.6"
sources."has-1.0.3"
sources."has-bigints-1.0.1"
@@ -69735,30 +69818,30 @@ in
sources."type-fest-0.12.0"
];
})
- sources."ink-spinner-4.0.1"
+ sources."ink-spinner-4.0.2"
sources."ink-text-input-4.0.1"
sources."is-arguments-1.1.0"
- sources."is-bigint-1.0.1"
- sources."is-boolean-object-1.1.0"
+ sources."is-bigint-1.0.2"
+ sources."is-boolean-object-1.1.1"
sources."is-callable-1.2.3"
sources."is-ci-2.0.0"
- sources."is-date-object-1.0.2"
+ sources."is-date-object-1.0.4"
sources."is-docker-2.2.1"
sources."is-fullwidth-code-point-3.0.0"
sources."is-map-2.0.2"
sources."is-negative-zero-2.0.1"
- sources."is-number-object-1.0.4"
- sources."is-regex-1.1.2"
+ sources."is-number-object-1.0.5"
+ sources."is-regex-1.1.3"
sources."is-set-2.0.2"
- sources."is-string-1.0.5"
- sources."is-symbol-1.0.3"
+ sources."is-string-1.0.6"
+ sources."is-symbol-1.0.4"
sources."is-typed-array-1.1.5"
sources."is-weakmap-2.0.1"
sources."is-weakset-2.0.1"
sources."is-wsl-2.2.0"
sources."isarray-1.0.0"
sources."js-tokens-4.0.0"
- (sources."jsii-1.29.0" // {
+ (sources."jsii-1.30.0" // {
dependencies = [
sources."fs-extra-9.1.0"
sources."jsonfile-6.1.0"
@@ -69766,10 +69849,10 @@ in
sources."yargs-16.2.0"
];
})
- (sources."jsii-pacmak-1.29.0" // {
+ (sources."jsii-pacmak-1.30.0" // {
dependencies = [
sources."camelcase-6.2.0"
- sources."codemaker-1.29.0"
+ sources."codemaker-1.30.0"
sources."decamelize-5.0.0"
sources."escape-string-regexp-4.0.0"
sources."fs-extra-9.1.0"
@@ -69778,7 +69861,7 @@ in
sources."yargs-16.2.0"
];
})
- (sources."jsii-reflect-1.29.0" // {
+ (sources."jsii-reflect-1.30.0" // {
dependencies = [
sources."fs-extra-9.1.0"
sources."jsonfile-6.1.0"
@@ -69786,7 +69869,7 @@ in
sources."yargs-16.2.0"
];
})
- (sources."jsii-rosetta-1.29.0" // {
+ (sources."jsii-rosetta-1.30.0" // {
dependencies = [
sources."fs-extra-9.1.0"
sources."jsonfile-6.1.0"
@@ -69794,7 +69877,7 @@ in
sources."yargs-16.2.0"
];
})
- (sources."jsii-srcmak-0.1.257" // {
+ (sources."jsii-srcmak-0.1.273" // {
dependencies = [
sources."fs-extra-9.1.0"
sources."jsonfile-6.1.0"
@@ -69830,13 +69913,13 @@ in
sources."node-fetch-2.6.1"
sources."normalize-path-3.0.0"
sources."object-assign-4.1.1"
- sources."object-inspect-1.10.2"
+ sources."object-inspect-1.10.3"
sources."object-is-1.1.5"
sources."object-keys-1.1.1"
sources."object.assign-4.1.2"
sources."once-1.4.0"
sources."onetime-5.1.2"
- sources."oo-ascii-tree-1.29.0"
+ sources."oo-ascii-tree-1.30.0"
sources."open-7.4.2"
sources."p-limit-2.3.0"
sources."p-locate-4.1.0"
@@ -69851,7 +69934,7 @@ in
sources."pump-3.0.0"
sources."quick-lru-4.0.1"
sources."react-16.14.0"
- sources."react-devtools-core-4.12.4"
+ sources."react-devtools-core-4.13.5"
sources."react-is-16.13.1"
sources."react-reconciler-0.24.0"
sources."readable-stream-3.6.0"
@@ -69916,9 +69999,9 @@ in
sources."widest-line-3.1.0"
sources."wrap-ansi-6.2.0"
sources."wrappy-1.0.2"
- sources."ws-7.4.5"
+ sources."ws-7.4.6"
sources."xmlbuilder-15.1.1"
- sources."xmldom-0.5.0"
+ sources."xmldom-0.6.0"
sources."y18n-5.0.8"
sources."yallist-4.0.0"
(sources."yargs-15.4.1" // {
@@ -69947,10 +70030,10 @@ in
clean-css-cli = nodeEnv.buildNodePackage {
name = "clean-css-cli";
packageName = "clean-css-cli";
- version = "5.2.2";
+ version = "5.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/clean-css-cli/-/clean-css-cli-5.2.2.tgz";
- sha512 = "XlgBVTpEAsU/aT7gxAZ/g5Q8P9glHZeg6yfNvE7hYuvoozMdw5Wd46b12QtzuDVs8/7UZ/GCulS0VR9TI5NWRg==";
+ url = "https://registry.npmjs.org/clean-css-cli/-/clean-css-cli-5.3.0.tgz";
+ sha512 = "Jri2KVAcan/Y1JuEDo1rUlm3vUoGvMKSOpIL2YEPgalksvoGur/yL2KbtMF2dPs2VlMVj1afzp76Vu0KjxKfvA==";
};
dependencies = [
sources."balanced-match-1.0.2"
@@ -69959,7 +70042,7 @@ in
sources."commander-7.2.0"
sources."concat-map-0.0.1"
sources."fs.realpath-1.0.0"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."minimatch-3.0.4"
@@ -70009,11 +70092,11 @@ in
sources."fetch-everywhere-1.0.5"
sources."filter-obj-1.1.0"
sources."fs.realpath-1.0.0"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."has-flag-3.0.0"
sources."hasurl-1.0.0"
sources."i-0.3.6"
- sources."iconv-lite-0.6.2"
+ sources."iconv-lite-0.6.3"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."is-stream-1.1.0"
@@ -70119,10 +70202,10 @@ in
coc-diagnostic = nodeEnv.buildNodePackage {
name = "coc-diagnostic";
packageName = "coc-diagnostic";
- version = "0.18.3";
+ version = "0.20.0";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-diagnostic/-/coc-diagnostic-0.18.3.tgz";
- sha512 = "VL6XhOU9roM9wKcDZrJ+MeabNDXI9vb2aUinDHOJx+7e19MIbACfFgMJfVxOkSWNRrTHyOlElnHCcYzS8gk2qQ==";
+ url = "https://registry.npmjs.org/coc-diagnostic/-/coc-diagnostic-0.20.0.tgz";
+ sha512 = "iKMyYYkebv31l1LB0EbZtwQ4DeVW0dUh9nXwE0tG3LDahcUNzNi1eXGWeNVxcy+YhWmaLEkLgKTu9DE4zxpACQ==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -70178,10 +70261,10 @@ in
coc-explorer = nodeEnv.buildNodePackage {
name = "coc-explorer";
packageName = "coc-explorer";
- version = "0.17.2";
+ version = "0.17.5";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-explorer/-/coc-explorer-0.17.2.tgz";
- sha512 = "XXMjJMweK5qAmOFd569HpdSgcFTziumnNWjPYO1Fze3aJ75KtemSWjrKKy6waFTzQH0sWHmq8g/cRs1pjhQckQ==";
+ url = "https://registry.npmjs.org/coc-explorer/-/coc-explorer-0.17.5.tgz";
+ sha512 = "a5GHhsPEFcby7CkhnpkWyLei/SCcon3Z/Li1Jvxr/h6bewDHFNXA5DZSDJWvhLnktGcwZNBOWGBBZhPWFGYAaA==";
};
dependencies = [
sources."@sindresorhus/df-3.1.1"
@@ -70200,7 +70283,7 @@ in
sources."execa-2.1.0"
sources."fs.realpath-1.0.0"
sources."get-stream-5.2.0"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."globby-7.1.1"
sources."ignore-3.3.10"
sources."indent-string-4.0.0"
@@ -70225,7 +70308,7 @@ in
sources."npm-run-path-3.1.0"
sources."once-1.4.0"
sources."onetime-5.1.2"
- sources."open-8.0.6"
+ sources."open-8.2.0"
sources."os-homedir-1.0.2"
sources."p-finally-2.0.1"
sources."p-map-4.0.0"
@@ -70264,11 +70347,16 @@ in
coc-git = nodeEnv.buildNodePackage {
name = "coc-git";
packageName = "coc-git";
- version = "2.3.1";
+ version = "2.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-git/-/coc-git-2.3.1.tgz";
- sha512 = "119J+uanlMO9xZA4yeyvjwbWKDckLUKUtJu6mreHuyQbd7x4Ea3qwjpWMlGl2+QLJQ78OPZjpbzzlc8FzDZY2A==";
+ url = "https://registry.npmjs.org/coc-git/-/coc-git-2.3.3.tgz";
+ sha512 = "xBdnbesjfMVHYjoCCpLReurLFVIVyvN/Xd+T0/oETLs0lotn1p5F3cZPRiZD0jxtCLMV72dqN/Kuro98HoNplg==";
};
+ dependencies = [
+ sources."lru-cache-6.0.0"
+ sources."semver-7.3.5"
+ sources."yallist-4.0.0"
+ ];
buildInputs = globalBuildInputs;
meta = {
description = "Git extension for coc.nvim";
@@ -70307,10 +70395,10 @@ in
coc-highlight = nodeEnv.buildNodePackage {
name = "coc-highlight";
packageName = "coc-highlight";
- version = "1.2.7";
+ version = "1.2.8";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-highlight/-/coc-highlight-1.2.7.tgz";
- sha512 = "crUMz4W5IGSoLX9Lif1Z9XT2e3Eq7oVnkaN1+F0ncGiAh8sI4vPW+hm641tVcXVC/u4wzdvvbj6ngj8Fykxn2g==";
+ url = "https://registry.npmjs.org/coc-highlight/-/coc-highlight-1.2.8.tgz";
+ sha512 = "buElMyk/0st73HVkgcic9UJECACHsoTbyCwHiOo20P1sCk8tgQ6+iEY9KW7L4xZorRt1RthfxLqZwayog1SALQ==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -70330,7 +70418,7 @@ in
sha512 = "7SHQYzpRKPrpaLcTm1UUk1zu9VvFEJKFqxwDIuqv/CL0cBTtEvlsfpVh9DOaMHlZPu8U8Lgyf04bHV/sFS1zJw==";
};
dependencies = [
- sources."typescript-4.2.4"
+ sources."typescript-4.3.2"
];
buildInputs = globalBuildInputs;
meta = {
@@ -70415,10 +70503,10 @@ in
coc-lists = nodeEnv.buildNodePackage {
name = "coc-lists";
packageName = "coc-lists";
- version = "1.4.0";
+ version = "1.4.1";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-lists/-/coc-lists-1.4.0.tgz";
- sha512 = "AKmM8/+BjncinB4MrS/e8hJ7MzvXL5GtAvusGZb3zsAj4tNO77oWiVzE8V09QEWAsorgHVgNv/OXr4EPJMZvpg==";
+ url = "https://registry.npmjs.org/coc-lists/-/coc-lists-1.4.1.tgz";
+ sha512 = "A87irHxQ97+VkgM8SgTLZDyOT/t7V0uMqg/Jk1hx+TQVsAZljBNZq88yaUZIo6SBfmeHroGUUzFs597GJf7N5Q==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -70451,10 +70539,10 @@ in
coc-metals = nodeEnv.buildNodePackage {
name = "coc-metals";
packageName = "coc-metals";
- version = "1.0.4";
+ version = "1.0.5";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-metals/-/coc-metals-1.0.4.tgz";
- sha512 = "nMarefi4Y2ReRiKa/GpyJRKMyF+J+cT3pc1mw6MvmuhpkhrQtf/feMYJ+7/h7l38NqAxjHkBvAiHZqDpWB675Q==";
+ url = "https://registry.npmjs.org/coc-metals/-/coc-metals-1.0.5.tgz";
+ sha512 = "YWnhsa/SDrxdJwcRrvFUiNOYuhDE8STBo5t1Nvokk/OaFoKfTS/OrxE2xTrDPWgJAxytyfnIjxBduokB1+LT3g==";
};
dependencies = [
sources."@chemzqm/neovim-5.2.13"
@@ -70493,15 +70581,15 @@ in
sources."define-properties-1.1.3"
sources."duplexer2-0.1.4"
sources."end-of-stream-1.4.4"
- sources."es-abstract-1.18.0"
+ sources."es-abstract-1.18.3"
sources."es-to-primitive-1.2.1"
sources."event-lite-0.1.2"
sources."execa-1.0.0"
sources."fast-diff-1.2.0"
sources."fb-watchman-2.0.1"
sources."flatted-2.0.2"
- sources."follow-redirects-1.13.3"
- sources."fp-ts-2.10.4"
+ sources."follow-redirects-1.14.1"
+ sources."fp-ts-2.10.5"
sources."fs-extra-8.1.0"
sources."fs-minipass-2.1.0"
sources."fs.realpath-1.0.0"
@@ -70514,7 +70602,7 @@ in
sources."function-bind-1.1.1"
sources."get-intrinsic-1.1.1"
sources."get-stream-4.1.0"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."graceful-fs-4.2.6"
sources."has-1.0.3"
sources."has-bigints-1.0.1"
@@ -70526,17 +70614,17 @@ in
sources."inherits-2.0.4"
sources."ini-1.3.8"
sources."int64-buffer-0.1.10"
- sources."is-bigint-1.0.1"
- sources."is-boolean-object-1.1.0"
+ sources."is-bigint-1.0.2"
+ sources."is-boolean-object-1.1.1"
sources."is-callable-1.2.3"
- sources."is-date-object-1.0.2"
+ sources."is-date-object-1.0.4"
sources."is-docker-2.2.1"
sources."is-negative-zero-2.0.1"
- sources."is-number-object-1.0.4"
- sources."is-regex-1.1.2"
+ sources."is-number-object-1.0.5"
+ sources."is-regex-1.1.3"
sources."is-stream-1.1.0"
- sources."is-string-1.0.5"
- sources."is-symbol-1.0.3"
+ sources."is-string-1.0.6"
+ sources."is-symbol-1.0.4"
sources."is-wsl-2.2.0"
sources."isarray-1.0.0"
sources."isexe-2.0.0"
@@ -70572,7 +70660,7 @@ in
sources."node-fetch-2.6.1"
sources."node-int64-0.4.0"
sources."npm-run-path-2.0.2"
- sources."object-inspect-1.10.2"
+ sources."object-inspect-1.10.3"
sources."object-keys-1.1.1"
sources."object.assign-4.1.2"
sources."once-1.4.0"
@@ -70664,13 +70752,14 @@ in
};
dependencies = [
sources."@babel/code-frame-7.12.11"
- sources."@babel/helper-validator-identifier-7.12.11"
- (sources."@babel/highlight-7.13.10" // {
+ sources."@babel/helper-validator-identifier-7.14.0"
+ (sources."@babel/highlight-7.14.0" // {
dependencies = [
sources."chalk-2.4.2"
+ sources."escape-string-regexp-1.0.5"
];
})
- (sources."@eslint/eslintrc-0.4.0" // {
+ (sources."@eslint/eslintrc-0.4.1" // {
dependencies = [
sources."globals-12.4.0"
];
@@ -70725,6 +70814,7 @@ in
sources."ansi-regex-3.0.0"
sources."camelcase-4.1.0"
sources."chalk-2.4.2"
+ sources."escape-string-regexp-1.0.5"
sources."is-fullwidth-code-point-2.0.0"
sources."string-width-2.1.1"
sources."strip-ansi-4.0.0"
@@ -70743,7 +70833,7 @@ in
sources."callsites-3.1.0"
sources."camelcase-2.1.1"
sources."camelcase-keys-2.1.0"
- sources."caniuse-lite-1.0.30001214"
+ sources."caniuse-lite-1.0.30001230"
sources."capture-stack-trace-1.0.1"
sources."ccount-1.1.0"
(sources."chalk-4.1.1" // {
@@ -70805,7 +70895,7 @@ in
];
})
sources."copy-descriptor-0.1.1"
- sources."core-js-3.11.0"
+ sources."core-js-3.13.0"
sources."cosmiconfig-3.1.0"
sources."create-error-class-3.0.2"
sources."cross-spawn-7.0.3"
@@ -70841,16 +70931,16 @@ in
sources."domutils-1.7.0"
sources."dot-prop-5.3.0"
sources."duplexer3-0.1.4"
- sources."electron-to-chromium-1.3.720"
+ sources."electron-to-chromium-1.3.741"
sources."emoji-regex-8.0.0"
sources."end-of-stream-1.4.4"
sources."enquirer-2.3.6"
sources."entities-1.1.2"
sources."error-ex-1.3.2"
- sources."escape-string-regexp-1.0.5"
- (sources."eslint-7.25.0" // {
+ sources."escape-string-regexp-4.0.0"
+ (sources."eslint-7.27.0" // {
dependencies = [
- sources."eslint-visitor-keys-2.0.0"
+ sources."eslint-visitor-keys-2.1.0"
];
})
sources."eslint-scope-5.1.1"
@@ -70971,7 +71061,7 @@ in
sources."get-stdin-5.0.1"
sources."get-stream-3.0.0"
sources."get-value-2.0.6"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
(sources."glob-base-0.3.0" // {
dependencies = [
sources."glob-parent-2.0.0"
@@ -70982,7 +71072,7 @@ in
sources."glob-parent-5.1.2"
sources."glob-to-regexp-0.3.0"
sources."global-dirs-0.1.1"
- (sources."globals-13.8.0" // {
+ (sources."globals-13.9.0" // {
dependencies = [
sources."type-fest-0.20.2"
];
@@ -71043,7 +71133,7 @@ in
sources."is-arrayish-0.2.1"
sources."is-buffer-1.1.6"
sources."is-ci-1.2.1"
- sources."is-core-module-2.3.0"
+ sources."is-core-module-2.4.0"
(sources."is-data-descriptor-1.0.0" // {
dependencies = [
sources."kind-of-6.0.3"
@@ -71109,12 +71199,12 @@ in
sources."locate-path-2.0.0"
sources."lodash-4.17.21"
sources."lodash.clonedeep-4.5.0"
- sources."lodash.flatten-4.4.0"
sources."lodash.merge-4.6.2"
sources."lodash.truncate-4.4.2"
(sources."log-symbols-2.2.0" // {
dependencies = [
sources."chalk-2.4.2"
+ sources."escape-string-regexp-1.0.5"
];
})
sources."loglevel-1.7.1"
@@ -71123,6 +71213,7 @@ in
sources."ansi-regex-2.1.1"
sources."ansi-styles-2.2.1"
sources."chalk-1.1.3"
+ sources."escape-string-regexp-1.0.5"
sources."strip-ansi-3.0.1"
sources."supports-color-2.0.0"
];
@@ -71249,7 +71340,7 @@ in
sources."path-is-absolute-1.0.1"
sources."path-is-inside-1.0.2"
sources."path-key-3.1.1"
- sources."path-parse-1.0.6"
+ sources."path-parse-1.0.7"
(sources."path-type-1.1.0" // {
dependencies = [
sources."pify-2.3.0"
@@ -71263,6 +71354,7 @@ in
(sources."postcss-6.0.23" // {
dependencies = [
sources."chalk-2.4.2"
+ sources."escape-string-regexp-1.0.5"
];
})
sources."postcss-html-0.12.0"
@@ -71275,6 +71367,7 @@ in
sources."supports-color-2.0.0"
];
})
+ sources."escape-string-regexp-1.0.5"
sources."has-flag-1.0.0"
sources."postcss-5.2.18"
sources."source-map-0.5.7"
@@ -71286,6 +71379,7 @@ in
(sources."postcss-reporter-5.0.0" // {
dependencies = [
sources."chalk-2.4.2"
+ sources."escape-string-regexp-1.0.5"
];
})
sources."postcss-resolve-nested-selector-0.1.1"
@@ -71297,7 +71391,7 @@ in
sources."prelude-ls-1.2.1"
sources."prepend-http-1.0.4"
sources."preserve-0.2.0"
- sources."prettier-2.2.1"
+ sources."prettier-2.3.0"
sources."prettier-eslint-12.0.0"
(sources."prettier-stylelint-0.4.2" // {
dependencies = [
@@ -71310,6 +71404,7 @@ in
dependencies = [
sources."chalk-2.4.2"
sources."dir-glob-2.0.0"
+ sources."escape-string-regexp-1.0.5"
sources."globby-8.0.2"
sources."ignore-3.3.10"
sources."path-type-3.0.0"
@@ -71435,7 +71530,7 @@ in
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."spdx-license-ids-3.0.9"
sources."specificity-0.3.2"
sources."split-string-3.1.0"
sources."sprintf-js-1.0.3"
@@ -71477,6 +71572,7 @@ in
sources."camelcase-keys-4.2.0"
sources."chalk-2.4.2"
sources."debug-3.2.7"
+ sources."escape-string-regexp-1.0.5"
sources."file-entry-cache-2.0.0"
sources."flat-cache-1.3.4"
sources."globby-7.1.1"
@@ -71504,9 +71600,9 @@ in
sources."sugarss-1.0.1"
sources."supports-color-5.5.0"
sources."svg-tags-1.0.0"
- (sources."table-6.5.1" // {
+ (sources."table-6.7.1" // {
dependencies = [
- sources."ajv-8.1.0"
+ sources."ajv-8.5.0"
sources."json-schema-traverse-1.0.0"
];
})
@@ -71531,6 +71627,7 @@ in
(sources."tslint-5.20.1" // {
dependencies = [
sources."chalk-2.4.2"
+ sources."escape-string-regexp-1.0.5"
sources."semver-5.7.1"
sources."tsutils-2.29.0"
];
@@ -71565,6 +71662,7 @@ in
(sources."update-notifier-2.5.0" // {
dependencies = [
sources."chalk-2.4.2"
+ sources."escape-string-regexp-1.0.5"
];
})
sources."uri-js-4.4.1"
@@ -71636,17 +71734,17 @@ in
coc-pyright = nodeEnv.buildNodePackage {
name = "coc-pyright";
packageName = "coc-pyright";
- version = "1.1.134";
+ version = "1.1.144";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-pyright/-/coc-pyright-1.1.134.tgz";
- sha512 = "UUtG3a+ATo6B/B3LbU6PvXzFE8XznGyoyeg9DAeCxT2PpZjdq0HAXjwnqnt7ekhr2q5oA1ERbLM0jQXoxj117g==";
+ url = "https://registry.npmjs.org/coc-pyright/-/coc-pyright-1.1.144.tgz";
+ sha512 = "bUb/GuY0QjlDAws60UNDL8ZiRzp6sLmSqRkMyAAUEb9arsSphvok80P3i/NEsJhG2lgx2LaEz1mKUCnR+UjTlA==";
};
dependencies = [
- sources."pyright-1.1.134"
+ sources."pyright-1.1.144"
];
buildInputs = globalBuildInputs;
meta = {
- description = "Pyright extension for coc.nvim";
+ description = "Pyright extension for coc.nvim, static type checker for Python";
homepage = "https://github.com/fannheyward/coc-pyright#readme";
license = "MIT";
};
@@ -71716,10 +71814,10 @@ in
coc-rust-analyzer = nodeEnv.buildNodePackage {
name = "coc-rust-analyzer";
packageName = "coc-rust-analyzer";
- version = "0.43.1";
+ version = "0.45.1";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-rust-analyzer/-/coc-rust-analyzer-0.43.1.tgz";
- sha512 = "NWuXDc9NrqVN1HO7NTUfH68Xr05yJA5bJXfQOSasOxxjsMyijL/aYwmlflSV93DO0zzWmsBPBTmBjBXxAms0cQ==";
+ url = "https://registry.npmjs.org/coc-rust-analyzer/-/coc-rust-analyzer-0.45.1.tgz";
+ sha512 = "2BFV6NJDi2s8Z41xf0Zk49fAWkYioZH+D7bKVQTb2LrhhKlmgfw4HGLe/9AZrvUPOcCDEuE9CS+lSnZjeJuUPg==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -71752,10 +71850,10 @@ in
coc-snippets = nodeEnv.buildNodePackage {
name = "coc-snippets";
packageName = "coc-snippets";
- version = "2.4.1";
+ version = "2.4.2";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-snippets/-/coc-snippets-2.4.1.tgz";
- sha512 = "+81jc8T250Ipl50MMypedTqHvAAGPu/COg9wEUsBzEOHmA0r4ouvRhzjAOWt7G6L2dHdB4KJl8AWfiVZhc5dRA==";
+ url = "https://registry.npmjs.org/coc-snippets/-/coc-snippets-2.4.2.tgz";
+ sha512 = "e+gsnzl//ilZNhfdVNkzI3lvJoMdB/aLVrMbaecimJG+gabVI/MvjmpsvrOLu9KFkBmECFjpM3T2Hxd6DuvY2Q==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -71793,31 +71891,31 @@ in
};
dependencies = [
sources."@babel/code-frame-7.12.13"
- sources."@babel/compat-data-7.13.15"
- sources."@babel/core-7.13.16"
- sources."@babel/generator-7.13.16"
- sources."@babel/helper-compilation-targets-7.13.16"
- sources."@babel/helper-function-name-7.12.13"
+ sources."@babel/compat-data-7.14.4"
+ sources."@babel/core-7.14.3"
+ sources."@babel/generator-7.14.3"
+ sources."@babel/helper-compilation-targets-7.14.4"
+ sources."@babel/helper-function-name-7.14.2"
sources."@babel/helper-get-function-arity-7.12.13"
sources."@babel/helper-member-expression-to-functions-7.13.12"
sources."@babel/helper-module-imports-7.13.12"
- sources."@babel/helper-module-transforms-7.13.14"
+ sources."@babel/helper-module-transforms-7.14.2"
sources."@babel/helper-optimise-call-expression-7.12.13"
- sources."@babel/helper-replace-supers-7.13.12"
+ sources."@babel/helper-replace-supers-7.14.4"
sources."@babel/helper-simple-access-7.13.12"
sources."@babel/helper-split-export-declaration-7.12.13"
- sources."@babel/helper-validator-identifier-7.12.11"
+ sources."@babel/helper-validator-identifier-7.14.0"
sources."@babel/helper-validator-option-7.12.17"
- sources."@babel/helpers-7.13.17"
- (sources."@babel/highlight-7.13.10" // {
+ sources."@babel/helpers-7.14.0"
+ (sources."@babel/highlight-7.14.0" // {
dependencies = [
sources."chalk-2.4.2"
];
})
- sources."@babel/parser-7.13.16"
+ sources."@babel/parser-7.14.4"
sources."@babel/template-7.12.13"
- sources."@babel/traverse-7.13.17"
- sources."@babel/types-7.13.17"
+ sources."@babel/traverse-7.14.2"
+ sources."@babel/types-7.14.4"
sources."@nodelib/fs.scandir-2.1.4"
sources."@nodelib/fs.stat-2.0.4"
sources."@nodelib/fs.walk-1.2.6"
@@ -71828,7 +71926,7 @@ in
sources."@types/normalize-package-data-2.4.0"
sources."@types/parse-json-4.0.0"
sources."@types/unist-2.0.3"
- sources."ajv-8.1.0"
+ sources."ajv-8.5.0"
sources."ansi-regex-5.0.0"
sources."ansi-styles-3.2.1"
sources."array-union-2.1.0"
@@ -71843,11 +71941,11 @@ in
];
})
sources."braces-3.0.2"
- sources."browserslist-4.16.5"
+ sources."browserslist-4.16.6"
sources."callsites-3.1.0"
sources."camelcase-5.3.1"
sources."camelcase-keys-6.2.2"
- sources."caniuse-lite-1.0.30001214"
+ sources."caniuse-lite-1.0.30001230"
(sources."chalk-4.1.1" // {
dependencies = [
sources."ansi-styles-4.3.0"
@@ -71885,7 +71983,7 @@ in
sources."domelementtype-1.3.1"
sources."domhandler-2.4.2"
sources."domutils-1.7.0"
- sources."electron-to-chromium-1.3.720"
+ sources."electron-to-chromium-1.3.741"
sources."emoji-regex-8.0.0"
sources."entities-1.1.2"
sources."error-ex-1.3.2"
@@ -71907,7 +72005,7 @@ in
sources."function-bind-1.1.1"
sources."gensync-1.0.0-beta.2"
sources."get-stdin-8.0.0"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."glob-parent-5.1.2"
sources."global-modules-2.0.0"
sources."global-prefix-3.0.0"
@@ -71937,7 +72035,7 @@ in
sources."is-alphanumerical-1.0.4"
sources."is-arrayish-0.2.1"
sources."is-buffer-2.0.5"
- sources."is-core-module-2.3.0"
+ sources."is-core-module-2.4.0"
sources."is-decimal-1.0.4"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-3.0.0"
@@ -71960,7 +72058,6 @@ in
sources."locate-path-5.0.0"
sources."lodash-4.17.21"
sources."lodash.clonedeep-4.5.0"
- sources."lodash.flatten-4.4.0"
sources."lodash.truncate-4.4.2"
sources."log-symbols-4.1.0"
sources."longest-streak-2.0.4"
@@ -71983,7 +72080,7 @@ in
];
})
sources."ms-2.1.2"
- sources."node-releases-1.1.71"
+ sources."node-releases-1.1.72"
(sources."normalize-package-data-3.0.2" // {
dependencies = [
sources."semver-7.3.5"
@@ -72002,9 +72099,9 @@ in
sources."path-exists-4.0.0"
sources."path-is-absolute-1.0.1"
sources."path-is-inside-1.0.2"
- sources."path-parse-1.0.6"
+ sources."path-parse-1.0.7"
sources."path-type-4.0.0"
- sources."picomatch-2.2.3"
+ sources."picomatch-2.3.0"
(sources."postcss-7.0.35" // {
dependencies = [
(sources."chalk-2.4.2" // {
@@ -72023,7 +72120,7 @@ in
sources."postcss-safe-parser-4.0.2"
sources."postcss-sass-0.4.4"
sources."postcss-scss-2.1.1"
- sources."postcss-selector-parser-6.0.5"
+ sources."postcss-selector-parser-6.0.6"
sources."postcss-syntax-0.36.2"
sources."postcss-value-parser-4.1.0"
sources."punycode-2.1.1"
@@ -72069,7 +72166,7 @@ in
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."spdx-license-ids-3.0.9"
sources."specificity-0.4.1"
sources."string-width-4.2.2"
(sources."string_decoder-1.3.0" // {
@@ -72080,14 +72177,14 @@ in
sources."strip-ansi-6.0.0"
sources."strip-indent-3.0.0"
sources."style-search-0.1.0"
- sources."stylelint-13.13.0"
+ sources."stylelint-13.13.1"
sources."sugarss-2.0.0"
sources."supports-color-5.5.0"
sources."svg-tags-1.0.0"
- sources."table-6.5.1"
+ sources."table-6.7.1"
sources."to-fast-properties-2.0.0"
sources."to-regex-range-5.0.1"
- sources."trim-newlines-3.0.0"
+ sources."trim-newlines-3.0.1"
sources."trough-1.0.5"
sources."type-fest-0.18.1"
sources."typedarray-to-buffer-3.1.5"
@@ -72131,10 +72228,10 @@ in
coc-tabnine = nodeEnv.buildNodePackage {
name = "coc-tabnine";
packageName = "coc-tabnine";
- version = "1.3.3";
+ version = "1.3.4";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-tabnine/-/coc-tabnine-1.3.3.tgz";
- sha512 = "6CYtXKaEduGHLjiBdYRcWvl7gzvW92iGTxW7M3KVfn/tRFO+VF+3FuSX7Fg53ol4/USyNOTgXz3uyBjfsZOBXA==";
+ url = "https://registry.npmjs.org/coc-tabnine/-/coc-tabnine-1.3.4.tgz";
+ sha512 = "ICnIh+XR8egHeJCfuVpiXQHvHfcRJcHWRHIxTHLAOYG000tK/qZGzyVF7gz55sxgwyFOpo3EBgimdrAn9e/gvg==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -72148,10 +72245,10 @@ in
coc-texlab = nodeEnv.buildNodePackage {
name = "coc-texlab";
packageName = "coc-texlab";
- version = "2.3.0";
+ version = "3.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-texlab/-/coc-texlab-2.3.0.tgz";
- sha512 = "1Nph3BgqAbANW1LWa49kscQdt8i55fB304YohKvA2y78DlvxIfG0J7UnbIz+R1HQX0TpvwWdD/wzFP6ll68l8w==";
+ url = "https://registry.npmjs.org/coc-texlab/-/coc-texlab-3.0.1.tgz";
+ sha512 = "0uom/t9g+4u1SgRDbfBIbnPRmlRS2odBCDcyP8+JQcEHYS2LXni0udDVZOG/4lbOFEZmMLbAcds0tTJpJ9SZhg==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -72173,8 +72270,8 @@ in
};
dependencies = [
sources."@babel/code-frame-7.12.13"
- sources."@babel/helper-validator-identifier-7.12.11"
- sources."@babel/highlight-7.13.10"
+ sources."@babel/helper-validator-identifier-7.14.0"
+ sources."@babel/highlight-7.14.0"
sources."ansi-styles-3.2.1"
sources."argparse-1.0.10"
sources."balanced-match-1.0.2"
@@ -72190,12 +72287,12 @@ in
sources."esprima-4.0.1"
sources."fs.realpath-1.0.0"
sources."function-bind-1.1.1"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."has-1.0.3"
sources."has-flag-3.0.0"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
- sources."is-core-module-2.3.0"
+ sources."is-core-module-2.4.0"
sources."js-tokens-4.0.0"
sources."js-yaml-3.14.1"
sources."minimatch-3.0.4"
@@ -72203,7 +72300,7 @@ in
sources."mkdirp-0.5.5"
sources."once-1.4.0"
sources."path-is-absolute-1.0.1"
- sources."path-parse-1.0.6"
+ sources."path-parse-1.0.7"
sources."resolve-1.20.0"
sources."semver-5.7.1"
sources."sprintf-js-1.0.3"
@@ -72266,7 +72363,7 @@ in
sha512 = "Kye0Bn4ifhNhKFcenXg0z8iNzkBGOCXCb552sY/L55+4+08WU02impRnuYkEwFo2QAjDrRQNYjUfUabRR4LC+A==";
};
dependencies = [
- sources."typescript-4.2.4"
+ sources."typescript-4.3.2"
];
buildInputs = globalBuildInputs;
meta = {
@@ -72288,13 +72385,14 @@ in
};
dependencies = [
sources."@babel/code-frame-7.12.11"
- sources."@babel/helper-validator-identifier-7.12.11"
- (sources."@babel/highlight-7.13.10" // {
+ sources."@babel/helper-validator-identifier-7.14.0"
+ (sources."@babel/highlight-7.14.0" // {
dependencies = [
sources."chalk-2.4.2"
+ sources."escape-string-regexp-1.0.5"
];
})
- (sources."@eslint/eslintrc-0.4.0" // {
+ (sources."@eslint/eslintrc-0.4.1" // {
dependencies = [
sources."globals-12.4.0"
];
@@ -72331,8 +72429,8 @@ in
sources."doctrine-3.0.0"
sources."emoji-regex-8.0.0"
sources."enquirer-2.3.6"
- sources."escape-string-regexp-1.0.5"
- sources."eslint-7.25.0"
+ sources."escape-string-regexp-4.0.0"
+ sources."eslint-7.27.0"
sources."eslint-plugin-vue-7.9.0"
sources."eslint-scope-5.1.1"
(sources."eslint-utils-2.1.0" // {
@@ -72340,7 +72438,7 @@ in
sources."eslint-visitor-keys-1.3.0"
];
})
- sources."eslint-visitor-keys-2.0.0"
+ sources."eslint-visitor-keys-2.1.0"
(sources."espree-7.3.1" // {
dependencies = [
sources."eslint-visitor-keys-1.3.0"
@@ -72368,9 +72466,9 @@ in
sources."fs.realpath-1.0.0"
sources."function-bind-1.1.1"
sources."functional-red-black-tree-1.0.1"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."glob-parent-5.1.2"
- (sources."globals-13.8.0" // {
+ (sources."globals-13.9.0" // {
dependencies = [
sources."type-fest-0.20.2"
];
@@ -72382,7 +72480,7 @@ in
sources."imurmurhash-0.1.4"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
- sources."is-core-module-2.3.0"
+ sources."is-core-module-2.4.0"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-3.0.0"
sources."is-glob-4.0.1"
@@ -72394,7 +72492,7 @@ in
sources."levn-0.4.1"
sources."lodash-4.17.21"
sources."lodash.clonedeep-4.5.0"
- sources."lodash.flatten-4.4.0"
+ sources."lodash.merge-4.6.2"
sources."lodash.truncate-4.4.2"
sources."lru-cache-6.0.0"
sources."minimatch-3.0.4"
@@ -72407,9 +72505,9 @@ in
sources."parent-module-1.0.1"
sources."path-is-absolute-1.0.1"
sources."path-key-3.1.1"
- sources."path-parse-1.0.6"
+ sources."path-parse-1.0.7"
sources."prelude-ls-1.2.1"
- sources."prettier-2.2.1"
+ sources."prettier-2.3.0"
sources."progress-2.0.3"
sources."punycode-2.1.1"
sources."regexpp-3.1.0"
@@ -72432,9 +72530,9 @@ in
sources."strip-ansi-6.0.0"
sources."strip-json-comments-3.1.1"
sources."supports-color-5.5.0"
- (sources."table-6.5.1" // {
+ (sources."table-6.7.1" // {
dependencies = [
- sources."ajv-8.1.0"
+ sources."ajv-8.5.0"
sources."json-schema-traverse-1.0.0"
];
})
@@ -72443,13 +72541,14 @@ in
(sources."tslint-6.1.3" // {
dependencies = [
sources."chalk-2.4.2"
+ sources."escape-string-regexp-1.0.5"
sources."semver-5.7.1"
];
})
sources."tsutils-2.29.0"
sources."type-check-0.4.0"
sources."type-fest-0.8.1"
- sources."typescript-4.2.4"
+ sources."typescript-4.3.2"
sources."uri-js-4.4.1"
sources."v8-compile-cache-2.3.0"
sources."vls-0.7.2"
@@ -72640,7 +72739,7 @@ in
sources."colors-1.4.0"
sources."commander-2.20.3"
sources."escape-string-regexp-1.0.5"
- sources."follow-redirects-1.13.3"
+ sources."follow-redirects-1.14.1"
sources."has-flag-3.0.0"
sources."is-fullwidth-code-point-2.0.0"
sources."log-symbols-2.2.0"
@@ -72667,14 +72766,15 @@ in
configurable-http-proxy = nodeEnv.buildNodePackage {
name = "configurable-http-proxy";
packageName = "configurable-http-proxy";
- version = "4.3.2";
+ version = "4.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/configurable-http-proxy/-/configurable-http-proxy-4.3.2.tgz";
- sha512 = "wVYydYWJyPAUj8pNQ4+4mNxwj6EY8JNETRAOA3UjpiLrGr+Np/2lfQW+W3Fjubs9nUDn0JTQ/aaPsjdEs1/6dA==";
+ url = "https://registry.npmjs.org/configurable-http-proxy/-/configurable-http-proxy-4.4.0.tgz";
+ sha512 = "8tSSnS8pjuw6Wtu/3Ufd2elV/3DnE3AUu3L+IYyukLoQNrRY9iS+Qfg3e1APokk7OzSghDkxW7yRZFiAoHF6FQ==";
};
dependencies = [
sources."@dabh/diagnostics-2.0.2"
sources."async-3.2.0"
+ sources."bintrees-1.0.1"
sources."color-3.0.0"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
@@ -72688,7 +72788,7 @@ in
sources."fast-safe-stringify-2.0.7"
sources."fecha-4.2.1"
sources."fn.name-1.1.0"
- sources."follow-redirects-1.13.3"
+ sources."follow-redirects-1.14.1"
sources."http-proxy-1.18.1"
sources."inherits-2.0.4"
sources."is-arrayish-0.3.2"
@@ -72696,19 +72796,18 @@ in
sources."isarray-1.0.0"
sources."kuler-2.0.0"
sources."logform-2.2.0"
- sources."lynx-0.2.0"
- sources."mersenne-0.0.4"
sources."ms-2.1.3"
sources."one-time-1.0.0"
sources."process-nextick-args-2.0.1"
+ sources."prom-client-13.1.0"
sources."readable-stream-3.6.0"
sources."requires-port-1.0.0"
sources."safe-buffer-5.2.1"
sources."simple-swizzle-0.2.2"
sources."stack-trace-0.0.10"
- sources."statsd-parser-0.0.4"
sources."strftime-0.10.0"
sources."string_decoder-1.3.0"
+ sources."tdigest-0.1.1"
sources."text-hex-1.0.0"
sources."triple-beam-1.3.0"
sources."util-deprecate-1.0.2"
@@ -72744,7 +72843,7 @@ in
sources."@nodelib/fs.scandir-2.1.4"
sources."@nodelib/fs.stat-2.0.4"
sources."@nodelib/fs.walk-1.2.6"
- sources."@npmcli/git-2.0.8"
+ sources."@npmcli/git-2.0.9"
sources."@npmcli/installed-package-contents-1.0.7"
sources."@npmcli/move-file-1.1.2"
sources."@npmcli/node-gyp-1.0.2"
@@ -72810,7 +72909,7 @@ in
sources."braces-3.0.2"
sources."builtins-1.0.3"
sources."bytes-3.0.0"
- sources."cacache-15.0.6"
+ sources."cacache-15.2.0"
(sources."cacheable-request-6.1.0" // {
dependencies = [
sources."lowercase-keys-2.0.0"
@@ -72889,7 +72988,7 @@ in
})
sources."depd-1.1.2"
sources."destroy-1.0.4"
- sources."detect-indent-6.0.0"
+ sources."detect-indent-6.1.0"
sources."detect-newline-3.1.0"
sources."dir-glob-3.0.1"
sources."dot-prop-5.3.0"
@@ -72950,7 +73049,7 @@ in
sources."gauge-2.7.4"
sources."get-stream-5.2.0"
sources."getpass-0.1.7"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."glob-parent-5.1.2"
sources."global-dirs-2.1.0"
sources."globby-11.0.3"
@@ -72978,9 +73077,9 @@ in
sources."https-proxy-agent-5.0.0"
sources."human-signals-1.1.1"
sources."humanize-ms-1.2.1"
- sources."iconv-lite-0.6.2"
+ sources."iconv-lite-0.6.3"
sources."ignore-5.1.8"
- sources."ignore-walk-3.0.3"
+ sources."ignore-walk-3.0.4"
sources."import-fresh-3.3.0"
sources."import-lazy-2.1.0"
sources."imurmurhash-0.1.4"
@@ -73034,7 +73133,7 @@ in
sources."ip-regex-2.1.0"
sources."ipaddr.js-1.9.1"
sources."is-ci-2.0.0"
- sources."is-core-module-2.3.0"
+ sources."is-core-module-2.4.0"
sources."is-docker-2.2.1"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-1.0.0"
@@ -73120,14 +73219,14 @@ in
sources."semver-5.7.1"
];
})
- sources."normalize-url-4.5.0"
+ sources."normalize-url-4.5.1"
sources."npm-bundled-1.1.2"
sources."npm-install-checks-4.0.0"
sources."npm-normalize-package-bin-1.0.1"
sources."npm-package-arg-8.1.2"
- sources."npm-packlist-2.1.5"
+ sources."npm-packlist-2.2.2"
sources."npm-pick-manifest-6.1.1"
- sources."npm-registry-fetch-10.1.1"
+ sources."npm-registry-fetch-10.1.2"
sources."npm-run-path-4.0.1"
sources."npmlog-4.1.2"
sources."number-is-nan-1.0.1"
@@ -73165,11 +73264,11 @@ in
sources."path-is-absolute-1.0.1"
sources."path-is-inside-1.0.2"
sources."path-key-3.1.1"
- sources."path-parse-1.0.6"
+ sources."path-parse-1.0.7"
sources."path-to-regexp-0.1.7"
sources."path-type-4.0.0"
sources."performance-now-2.1.0"
- sources."picomatch-2.2.3"
+ sources."picomatch-2.3.0"
sources."pify-4.0.1"
sources."pkg-up-2.0.0"
sources."plist-3.0.2"
@@ -73249,7 +73348,7 @@ in
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."spdx-license-ids-3.0.9"
sources."sshpk-1.16.1"
sources."ssri-8.0.1"
sources."statuses-1.5.0"
@@ -73262,7 +73361,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.20"
+ sources."systeminformation-4.34.23"
sources."tar-6.1.0"
sources."term-size-2.2.1"
sources."through-2.3.8"
@@ -73347,14 +73446,14 @@ in
};
dependencies = [
sources."@babel/code-frame-7.12.13"
- sources."@babel/helper-validator-identifier-7.12.11"
- sources."@babel/highlight-7.13.10"
+ sources."@babel/helper-validator-identifier-7.14.0"
+ sources."@babel/highlight-7.14.0"
sources."@mrmlnc/readdir-enhanced-2.2.1"
sources."@nodelib/fs.stat-1.1.3"
sources."@types/glob-7.1.3"
sources."@types/minimatch-3.0.4"
sources."@types/minimist-1.2.1"
- sources."@types/node-14.14.41"
+ sources."@types/node-15.6.1"
sources."@types/normalize-package-data-2.4.0"
sources."aggregate-error-3.1.0"
sources."ansi-styles-3.2.1"
@@ -73463,7 +73562,7 @@ in
sources."fs.realpath-1.0.0"
sources."function-bind-1.1.1"
sources."get-value-2.0.6"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
(sources."glob-parent-3.1.0" // {
dependencies = [
sources."is-glob-3.1.0"
@@ -73494,7 +73593,7 @@ in
sources."is-accessor-descriptor-1.0.0"
sources."is-arrayish-0.2.1"
sources."is-buffer-1.1.6"
- sources."is-core-module-2.3.0"
+ sources."is-core-module-2.4.0"
sources."is-data-descriptor-1.0.0"
sources."is-descriptor-1.0.2"
sources."is-extendable-0.1.1"
@@ -73581,7 +73680,7 @@ in
sources."path-dirname-1.0.2"
sources."path-exists-4.0.0"
sources."path-is-absolute-1.0.1"
- sources."path-parse-1.0.6"
+ sources."path-parse-1.0.7"
(sources."path-type-3.0.0" // {
dependencies = [
sources."pify-3.0.0"
@@ -73649,7 +73748,7 @@ in
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."spdx-license-ids-3.0.9"
sources."split-string-3.1.0"
(sources."static-extend-0.1.2" // {
dependencies = [
@@ -73677,7 +73776,7 @@ in
})
sources."to-regex-3.0.2"
sources."to-regex-range-2.1.1"
- sources."trim-newlines-3.0.0"
+ sources."trim-newlines-3.0.1"
sources."type-fest-0.13.1"
sources."union-value-1.0.1"
(sources."unset-value-1.0.0" // {
@@ -73725,7 +73824,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.41"
+ sources."@types/node-15.6.1"
sources."@types/superagent-3.8.2"
sources."ansi-escapes-3.2.0"
sources."ansi-regex-2.1.1"
@@ -73814,7 +73913,7 @@ in
sources."mute-stream-0.0.7"
sources."next-tick-1.0.0"
sources."object-assign-4.1.1"
- sources."object-inspect-1.10.2"
+ sources."object-inspect-1.10.3"
sources."object-keys-1.1.1"
sources."onetime-2.0.1"
sources."os-tmpdir-1.0.2"
@@ -73903,7 +74002,7 @@ in
sources."fs.realpath-1.0.0"
sources."fstream-1.0.12"
sources."fstream-ignore-1.0.5"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."graceful-fs-4.2.6"
sources."has-flag-4.0.0"
sources."hyperquest-2.1.3"
@@ -74254,7 +74353,7 @@ in
sources."get-stream-3.0.0"
sources."get-value-2.0.6"
sources."getpass-0.1.7"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."global-4.4.0"
sources."global-dirs-0.1.1"
sources."got-6.7.1"
@@ -74319,7 +74418,7 @@ in
sources."is-redirect-1.0.0"
sources."is-retry-allowed-1.2.0"
sources."is-stream-1.1.0"
- sources."is-string-1.0.5"
+ sources."is-string-1.0.6"
sources."is-typedarray-1.0.0"
sources."is-windows-1.0.2"
sources."isarray-1.0.0"
@@ -74376,7 +74475,11 @@ in
sources."mkdirp-classic-0.5.3"
sources."ms-2.1.3"
sources."multi-random-access-2.1.1"
- sources."multicast-dns-7.2.2"
+ (sources."multicast-dns-7.2.3" // {
+ dependencies = [
+ sources."dns-packet-5.2.4"
+ ];
+ })
sources."multistream-2.1.1"
sources."mute-stream-0.0.8"
sources."mutexify-1.3.1"
@@ -74491,7 +74594,11 @@ in
sources."simple-concat-1.0.1"
sources."simple-get-3.1.0"
sources."simple-sha1-2.1.2"
- sources."siphash24-1.1.1"
+ (sources."siphash24-1.2.0" // {
+ dependencies = [
+ sources."nanoassert-2.0.0"
+ ];
+ })
sources."slice-ansi-1.0.0"
(sources."snapdragon-0.8.2" // {
dependencies = [
@@ -74632,7 +74739,7 @@ in
sources."use-3.1.1"
sources."util-deprecate-1.0.2"
sources."utile-0.3.0"
- (sources."utp-native-2.4.0" // {
+ (sources."utp-native-2.5.0" // {
dependencies = [
sources."node-gyp-build-4.2.3"
sources."readable-stream-3.6.0"
@@ -74692,10 +74799,10 @@ in
diagnostic-languageserver = nodeEnv.buildNodePackage {
name = "diagnostic-languageserver";
packageName = "diagnostic-languageserver";
- version = "1.8.1";
+ version = "1.11.0";
src = fetchurl {
- url = "https://registry.npmjs.org/diagnostic-languageserver/-/diagnostic-languageserver-1.8.1.tgz";
- sha512 = "W8lFslQXZ6HEjy9Ba7jLYDzqJZFkWVINWZjNDUZslozm2ZLMH7QWNIa74DKZXLA972ZgY8iJ0WIMxn0Y4+1POw==";
+ url = "https://registry.npmjs.org/diagnostic-languageserver/-/diagnostic-languageserver-1.11.0.tgz";
+ sha512 = "4kjsgc/rV+qtH3dTqEnR/ug36yKNjyo5z674ySkD6k08DwlLs10fsP/I+d8BAsbtjpL36bqZxLa9iNgTDqioXQ==";
};
dependencies = [
sources."@nodelib/fs.scandir-2.1.4"
@@ -74717,7 +74824,7 @@ in
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-7.1.7"
sources."glob-parent-5.1.2"
sources."globby-11.0.3"
sources."graceful-fs-4.2.6"
@@ -74744,7 +74851,7 @@ in
sources."path-exists-4.0.0"
sources."path-is-absolute-1.0.1"
sources."path-type-4.0.0"
- sources."picomatch-2.2.3"
+ sources."picomatch-2.3.0"
sources."queue-microtask-1.2.3"
sources."reusify-1.0.4"
sources."rimraf-3.0.2"
@@ -74827,15 +74934,15 @@ in
elasticdump = nodeEnv.buildNodePackage {
name = "elasticdump";
packageName = "elasticdump";
- version = "6.69.2";
+ version = "6.71.0";
src = fetchurl {
- url = "https://registry.npmjs.org/elasticdump/-/elasticdump-6.69.2.tgz";
- sha512 = "HvwyYhkQ1Sw/eGCJkgNHEdPHy9W15WNeON35kzYeuQvY46df2W/p/L8Lik13iyWUMW7ky+v1qm9sGBhs40D/OQ==";
+ url = "https://registry.npmjs.org/elasticdump/-/elasticdump-6.71.0.tgz";
+ sha512 = "bx902tD9qzZFnM7YbL9KOqdcE8iW1KKEyxdvE5rEJVdzny7FMHpLRF/YpP+bjKdXvnCcZMNsePqNum+i2qp8Ng==";
};
dependencies = [
sources."@fast-csv/format-4.3.5"
sources."@fast-csv/parse-4.3.6"
- sources."@types/node-14.14.41"
+ sources."@types/node-14.17.1"
sources."JSONStream-1.3.5"
sources."ajv-6.12.6"
sources."asn1-0.2.4"
@@ -74973,30 +75080,30 @@ in
"@electron-forge/cli" = nodeEnv.buildNodePackage {
name = "_at_electron-forge_slash_cli";
packageName = "@electron-forge/cli";
- version = "6.0.0-beta.54";
+ version = "6.0.0-beta.57";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/cli/-/cli-6.0.0-beta.54.tgz";
- sha512 = "+Ui1BI8c5CnBawH2OEySa5QR8DzrFd/I9FHlClvrTsIDfsBAeMSv9NTbSNcmo9Af5kI+aNsLQa8tp1vD8DNrng==";
+ url = "https://registry.npmjs.org/@electron-forge/cli/-/cli-6.0.0-beta.57.tgz";
+ sha512 = "ouIL3FI6C0W3iLwwwQzKufjoP/OZagUDMCDjGLN/dqeg+lZ+cR40bdfaNTFha9ajz+zSe2SmhCOMVUVNNkJ5Sg==";
};
dependencies = [
- sources."@electron-forge/async-ora-6.0.0-beta.54"
- sources."@electron-forge/core-6.0.0-beta.54"
- sources."@electron-forge/installer-base-6.0.0-beta.54"
- sources."@electron-forge/installer-darwin-6.0.0-beta.54"
- sources."@electron-forge/installer-deb-6.0.0-beta.54"
- sources."@electron-forge/installer-dmg-6.0.0-beta.54"
- sources."@electron-forge/installer-exe-6.0.0-beta.54"
- sources."@electron-forge/installer-linux-6.0.0-beta.54"
- sources."@electron-forge/installer-rpm-6.0.0-beta.54"
- sources."@electron-forge/installer-zip-6.0.0-beta.54"
- sources."@electron-forge/maker-base-6.0.0-beta.54"
- sources."@electron-forge/plugin-base-6.0.0-beta.54"
- sources."@electron-forge/publisher-base-6.0.0-beta.54"
- sources."@electron-forge/shared-types-6.0.0-beta.54"
- sources."@electron-forge/template-base-6.0.0-beta.54"
- sources."@electron-forge/template-typescript-6.0.0-beta.54"
- sources."@electron-forge/template-typescript-webpack-6.0.0-beta.54"
- sources."@electron-forge/template-webpack-6.0.0-beta.54"
+ sources."@electron-forge/async-ora-6.0.0-beta.57"
+ sources."@electron-forge/core-6.0.0-beta.57"
+ sources."@electron-forge/installer-base-6.0.0-beta.57"
+ sources."@electron-forge/installer-darwin-6.0.0-beta.57"
+ sources."@electron-forge/installer-deb-6.0.0-beta.57"
+ sources."@electron-forge/installer-dmg-6.0.0-beta.57"
+ sources."@electron-forge/installer-exe-6.0.0-beta.57"
+ sources."@electron-forge/installer-linux-6.0.0-beta.57"
+ sources."@electron-forge/installer-rpm-6.0.0-beta.57"
+ sources."@electron-forge/installer-zip-6.0.0-beta.57"
+ sources."@electron-forge/maker-base-6.0.0-beta.57"
+ sources."@electron-forge/plugin-base-6.0.0-beta.57"
+ sources."@electron-forge/publisher-base-6.0.0-beta.57"
+ sources."@electron-forge/shared-types-6.0.0-beta.57"
+ sources."@electron-forge/template-base-6.0.0-beta.57"
+ sources."@electron-forge/template-typescript-6.0.0-beta.57"
+ sources."@electron-forge/template-typescript-webpack-6.0.0-beta.57"
+ sources."@electron-forge/template-webpack-6.0.0-beta.57"
(sources."@electron/get-1.12.4" // {
dependencies = [
sources."@sindresorhus/is-0.14.0"
@@ -75013,11 +75120,13 @@ in
sources."get-stream-4.1.0"
sources."got-9.6.0"
sources."json-buffer-3.0.0"
+ sources."jsonfile-4.0.0"
sources."keyv-3.1.0"
sources."lowercase-keys-1.0.1"
sources."p-cancelable-1.1.0"
sources."responselike-1.0.2"
sources."semver-6.3.0"
+ sources."universalify-0.1.2"
];
})
sources."@malept/cross-spawn-promise-1.1.1"
@@ -75028,7 +75137,7 @@ in
sources."@types/http-cache-semantics-4.0.0"
sources."@types/keyv-3.1.1"
sources."@types/minimatch-3.0.4"
- sources."@types/node-14.14.41"
+ sources."@types/node-15.6.1"
sources."@types/responselike-1.0.0"
sources."@types/yauzl-2.9.1"
sources."abbrev-1.1.1"
@@ -75066,7 +75175,7 @@ in
sources."bcrypt-pbkdf-1.0.2"
sources."bl-4.1.0"
sources."bluebird-3.7.2"
- sources."boolean-3.0.3"
+ sources."boolean-3.0.4"
sources."brace-expansion-1.1.11"
sources."buffer-5.7.1"
sources."buffer-alloc-1.2.0"
@@ -75104,7 +75213,7 @@ in
sources."concat-map-0.0.1"
sources."config-chain-1.1.12"
sources."console-control-strings-1.1.0"
- sources."core-js-3.11.0"
+ sources."core-js-3.13.0"
sources."core-util-is-1.0.2"
sources."cross-spawn-7.0.3"
sources."currently-unhandled-0.4.1"
@@ -75123,6 +75232,7 @@ in
sources."deep-extend-0.6.0"
sources."defaults-1.0.3"
sources."defer-to-connect-2.0.1"
+ sources."define-lazy-prop-2.0.0"
(sources."define-properties-1.1.3" // {
dependencies = [
sources."object-keys-1.1.1"
@@ -75131,17 +75241,29 @@ in
sources."delayed-stream-1.0.0"
sources."delegates-1.0.0"
sources."detect-libc-1.0.3"
- sources."detect-node-2.0.5"
+ sources."detect-node-2.1.0"
sources."duplexer3-0.1.4"
sources."ecc-jsbn-0.1.2"
- sources."electron-notarize-1.0.0"
+ (sources."electron-notarize-1.0.0" // {
+ dependencies = [
+ sources."fs-extra-9.1.0"
+ ];
+ })
(sources."electron-osx-sign-0.5.0" // {
dependencies = [
sources."debug-2.6.9"
];
})
- sources."electron-packager-15.2.0"
- sources."electron-rebuild-2.3.5"
+ (sources."electron-packager-15.2.0" // {
+ dependencies = [
+ sources."fs-extra-9.1.0"
+ ];
+ })
+ (sources."electron-rebuild-2.3.5" // {
+ dependencies = [
+ sources."fs-extra-9.1.0"
+ ];
+ })
sources."emoji-regex-8.0.0"
sources."encodeurl-1.0.2"
sources."end-of-stream-1.4.4"
@@ -75171,7 +75293,7 @@ in
sources."fd-slicer-1.1.0"
sources."figures-3.2.0"
sources."filename-reserved-regex-2.0.0"
- sources."filenamify-4.2.0"
+ sources."filenamify-4.3.0"
(sources."find-up-5.0.0" // {
dependencies = [
sources."locate-path-6.0.0"
@@ -75183,16 +75305,13 @@ in
(sources."flora-colossus-1.0.1" // {
dependencies = [
sources."fs-extra-7.0.1"
+ sources."jsonfile-4.0.0"
+ sources."universalify-0.1.2"
];
})
sources."forever-agent-0.6.1"
sources."form-data-2.3.3"
- (sources."fs-extra-9.1.0" // {
- dependencies = [
- sources."jsonfile-6.1.0"
- sources."universalify-2.0.0"
- ];
- })
+ sources."fs-extra-10.0.0"
sources."fs-minipass-1.2.7"
sources."fs.realpath-1.0.0"
sources."function-bind-1.1.1"
@@ -75200,7 +75319,9 @@ in
dependencies = [
sources."debug-3.2.7"
sources."fs-extra-4.0.3"
+ sources."jsonfile-4.0.0"
sources."ms-2.1.3"
+ sources."universalify-0.1.2"
];
})
(sources."gauge-2.7.4" // {
@@ -75219,7 +75340,7 @@ in
sources."get-stdin-4.0.1"
sources."get-stream-5.2.0"
sources."getpass-0.1.7"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."global-agent-2.2.0"
sources."global-modules-1.0.0"
(sources."global-prefix-1.0.2" // {
@@ -75243,19 +75364,19 @@ in
sources."http2-wrapper-1.0.3"
sources."iconv-lite-0.4.24"
sources."ieee754-1.2.1"
- sources."ignore-walk-3.0.3"
+ sources."ignore-walk-3.0.4"
sources."indent-string-2.1.0"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."ini-1.3.8"
- (sources."inquirer-7.3.3" // {
+ (sources."inquirer-8.1.0" // {
dependencies = [
sources."is-fullwidth-code-point-3.0.0"
sources."string-width-4.2.2"
];
})
sources."is-arrayish-0.2.1"
- sources."is-core-module-2.3.0"
+ sources."is-core-module-2.4.0"
sources."is-docker-2.2.1"
sources."is-finite-1.1.0"
sources."is-fullwidth-code-point-1.0.0"
@@ -75275,7 +75396,7 @@ in
sources."json-schema-0.2.3"
sources."json-schema-traverse-0.4.1"
sources."json-stringify-safe-5.0.1"
- sources."jsonfile-4.0.0"
+ sources."jsonfile-6.1.0"
sources."jsprim-1.4.1"
sources."junk-3.1.0"
sources."keyv-4.0.3"
@@ -75335,7 +75456,7 @@ in
];
})
sources."nice-try-1.0.5"
- (sources."node-abi-2.26.0" // {
+ (sources."node-abi-2.30.0" // {
dependencies = [
sources."semver-5.7.1"
];
@@ -75360,7 +75481,7 @@ in
sources."semver-5.7.1"
];
})
- sources."normalize-url-4.5.0"
+ sources."normalize-url-4.5.1"
sources."npm-bundled-1.1.2"
(sources."npm-conf-1.1.3" // {
dependencies = [
@@ -75386,12 +75507,12 @@ in
sources."object-keys-0.4.0"
sources."once-1.4.0"
sources."onetime-5.1.2"
- sources."open-7.4.2"
+ sources."open-8.2.0"
sources."ora-5.4.0"
sources."os-homedir-1.0.2"
sources."os-tmpdir-1.0.2"
sources."osenv-0.1.5"
- sources."p-cancelable-2.1.0"
+ sources."p-cancelable-2.1.1"
sources."p-defer-1.0.0"
sources."p-finally-1.0.0"
sources."p-is-promise-2.1.0"
@@ -75405,7 +75526,7 @@ in
sources."path-exists-3.0.0"
sources."path-is-absolute-1.0.1"
sources."path-key-3.1.1"
- sources."path-parse-1.0.6"
+ sources."path-parse-1.0.7"
sources."path-type-2.0.0"
sources."pend-1.2.0"
sources."performance-now-2.1.0"
@@ -75474,7 +75595,7 @@ in
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."spdx-license-ids-3.0.9"
sources."speedometer-0.1.4"
sources."sprintf-js-1.1.2"
sources."sshpk-1.16.1"
@@ -75523,7 +75644,7 @@ in
sources."tunnel-agent-0.6.0"
sources."tweetnacl-0.14.5"
sources."type-fest-0.13.1"
- sources."universalify-0.1.2"
+ sources."universalify-2.0.0"
sources."uri-js-4.4.1"
sources."url-parse-lax-3.0.0"
sources."username-5.1.0"
@@ -75604,50 +75725,50 @@ in
};
dependencies = [
sources."@babel/code-frame-7.12.13"
- sources."@babel/compat-data-7.13.15"
- (sources."@babel/core-7.13.16" // {
+ sources."@babel/compat-data-7.14.4"
+ (sources."@babel/core-7.14.3" // {
dependencies = [
sources."semver-6.3.0"
];
})
- sources."@babel/generator-7.13.16"
+ sources."@babel/generator-7.14.3"
sources."@babel/helper-annotate-as-pure-7.12.13"
- (sources."@babel/helper-compilation-targets-7.13.16" // {
+ (sources."@babel/helper-compilation-targets-7.14.4" // {
dependencies = [
sources."semver-6.3.0"
];
})
- sources."@babel/helper-function-name-7.12.13"
+ sources."@babel/helper-function-name-7.14.2"
sources."@babel/helper-get-function-arity-7.12.13"
sources."@babel/helper-member-expression-to-functions-7.13.12"
sources."@babel/helper-module-imports-7.13.12"
- sources."@babel/helper-module-transforms-7.13.14"
+ sources."@babel/helper-module-transforms-7.14.2"
sources."@babel/helper-optimise-call-expression-7.12.13"
sources."@babel/helper-plugin-utils-7.13.0"
- sources."@babel/helper-replace-supers-7.13.12"
+ sources."@babel/helper-replace-supers-7.14.4"
sources."@babel/helper-simple-access-7.13.12"
sources."@babel/helper-split-export-declaration-7.12.13"
- sources."@babel/helper-validator-identifier-7.12.11"
+ sources."@babel/helper-validator-identifier-7.14.0"
sources."@babel/helper-validator-option-7.12.17"
- sources."@babel/helpers-7.13.17"
- sources."@babel/highlight-7.13.10"
- sources."@babel/parser-7.13.16"
- sources."@babel/plugin-proposal-object-rest-spread-7.13.8"
+ sources."@babel/helpers-7.14.0"
+ sources."@babel/highlight-7.14.0"
+ sources."@babel/parser-7.14.4"
+ sources."@babel/plugin-proposal-object-rest-spread-7.14.4"
sources."@babel/plugin-syntax-jsx-7.12.13"
sources."@babel/plugin-syntax-object-rest-spread-7.8.3"
- sources."@babel/plugin-transform-destructuring-7.13.17"
- sources."@babel/plugin-transform-parameters-7.13.0"
- sources."@babel/plugin-transform-react-jsx-7.13.12"
+ sources."@babel/plugin-transform-destructuring-7.14.4"
+ sources."@babel/plugin-transform-parameters-7.14.2"
+ sources."@babel/plugin-transform-react-jsx-7.14.3"
sources."@babel/template-7.12.13"
- sources."@babel/traverse-7.13.17"
- sources."@babel/types-7.13.17"
+ sources."@babel/traverse-7.14.2"
+ sources."@babel/types-7.14.4"
sources."@sindresorhus/is-4.0.1"
sources."@szmarczak/http-timer-4.0.5"
sources."@types/cacheable-request-6.0.1"
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.41"
+ sources."@types/node-15.6.1"
sources."@types/normalize-package-data-2.4.0"
sources."@types/responselike-1.0.0"
sources."@types/yoga-layout-1.9.2"
@@ -75666,7 +75787,7 @@ in
sources."auto-bind-4.0.0"
sources."balanced-match-1.0.2"
sources."brace-expansion-1.1.11"
- sources."browserslist-4.16.5"
+ sources."browserslist-4.16.6"
sources."cacheable-lookup-5.0.4"
(sources."cacheable-request-7.0.1" // {
dependencies = [
@@ -75682,7 +75803,7 @@ in
sources."quick-lru-4.0.1"
];
})
- sources."caniuse-lite-1.0.30001214"
+ sources."caniuse-lite-1.0.30001230"
sources."chalk-2.4.2"
sources."ci-info-2.0.0"
sources."cli-boxes-2.2.1"
@@ -75719,7 +75840,7 @@ in
})
sources."defer-to-connect-2.0.1"
sources."dot-prop-5.3.0"
- sources."electron-to-chromium-1.3.720"
+ sources."electron-to-chromium-1.3.741"
sources."emoji-regex-8.0.0"
sources."emojilib-2.4.0"
sources."end-of-stream-1.4.4"
@@ -75736,7 +75857,7 @@ in
sources."function-bind-1.1.1"
sources."gensync-1.0.0-beta.2"
sources."get-stream-4.1.0"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."globals-11.12.0"
sources."got-11.8.2"
sources."hard-rejection-2.1.0"
@@ -75772,7 +75893,7 @@ in
})
sources."is-arrayish-0.2.1"
sources."is-ci-2.0.0"
- sources."is-core-module-2.3.0"
+ sources."is-core-module-2.4.0"
sources."is-docker-2.2.1"
sources."is-fullwidth-code-point-3.0.0"
sources."is-obj-2.0.0"
@@ -75816,9 +75937,9 @@ in
sources."minimist-options-4.1.0"
sources."ms-2.1.2"
sources."nice-try-1.0.5"
- sources."node-releases-1.1.71"
+ sources."node-releases-1.1.72"
sources."normalize-package-data-2.5.0"
- sources."normalize-url-4.5.0"
+ sources."normalize-url-4.5.1"
sources."npm-run-path-2.0.2"
sources."object-assign-4.1.1"
sources."once-1.4.0"
@@ -75827,7 +75948,7 @@ in
sources."mimic-fn-2.1.0"
];
})
- sources."p-cancelable-2.1.0"
+ sources."p-cancelable-2.1.1"
sources."p-defer-1.0.0"
sources."p-finally-1.0.0"
sources."p-limit-2.3.0"
@@ -75838,7 +75959,7 @@ in
sources."path-exists-3.0.0"
sources."path-is-absolute-1.0.1"
sources."path-key-2.0.1"
- sources."path-parse-1.0.6"
+ sources."path-parse-1.0.7"
(sources."pkg-dir-4.2.0" // {
dependencies = [
sources."find-up-4.1.0"
@@ -75853,7 +75974,7 @@ in
sources."punycode-2.1.1"
sources."quick-lru-5.1.1"
sources."react-16.14.0"
- sources."react-devtools-core-4.12.4"
+ sources."react-devtools-core-4.13.5"
sources."react-is-16.13.1"
sources."react-reconciler-0.24.0"
(sources."read-pkg-5.2.0" // {
@@ -75896,7 +76017,7 @@ in
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."spdx-license-ids-3.0.9"
(sources."stack-utils-2.0.3" // {
dependencies = [
sources."escape-string-regexp-2.0.0"
@@ -75915,7 +76036,7 @@ in
sources."strip-indent-3.0.0"
sources."supports-color-5.5.0"
sources."to-fast-properties-2.0.0"
- sources."trim-newlines-3.0.0"
+ sources."trim-newlines-3.0.1"
sources."type-fest-0.12.0"
sources."unicode-emoji-modifier-base-1.0.0"
sources."uri-js-4.4.1"
@@ -75930,7 +76051,7 @@ in
];
})
sources."wrappy-1.0.2"
- sources."ws-7.4.5"
+ sources."ws-7.4.6"
sources."yallist-4.0.0"
sources."yargs-parser-18.1.3"
sources."yoga-layout-prebuilt-1.10.0"
@@ -75969,8 +76090,8 @@ in
src = ../../applications/video/epgstation;
dependencies = [
sources."@babel/code-frame-7.12.13"
- sources."@babel/helper-validator-identifier-7.12.11"
- (sources."@babel/highlight-7.13.10" // {
+ sources."@babel/helper-validator-identifier-7.14.0"
+ (sources."@babel/highlight-7.14.0" // {
dependencies = [
sources."ansi-styles-3.2.1"
sources."chalk-2.4.2"
@@ -75980,7 +76101,7 @@ in
sources."@fluentui/date-time-utilities-7.9.1"
sources."@fluentui/dom-utilities-1.1.2"
sources."@fluentui/keyboard-key-0.2.17"
- sources."@fluentui/react-7.168.0"
+ sources."@fluentui/react-7.170.1"
sources."@fluentui/react-focus-7.17.6"
sources."@fluentui/react-window-provider-1.0.2"
sources."@fluentui/theme-1.7.4"
@@ -75994,7 +76115,7 @@ in
sources."normalize-path-2.1.1"
];
})
- sources."@microsoft/load-themed-styles-1.10.165"
+ sources."@microsoft/load-themed-styles-1.10.173"
sources."@nodelib/fs.scandir-2.1.4"
sources."@nodelib/fs.stat-2.0.4"
sources."@nodelib/fs.walk-1.2.6"
@@ -76012,7 +76133,7 @@ in
sources."@types/connect-3.4.34"
sources."@types/engine.io-3.1.5"
sources."@types/express-4.17.8"
- sources."@types/express-serve-static-core-4.17.19"
+ sources."@types/express-serve-static-core-4.17.20"
sources."@types/fancy-log-1.3.0"
sources."@types/glob-7.1.3"
sources."@types/hls.js-0.13.1"
@@ -76228,7 +76349,7 @@ in
];
})
sources."bytes-3.1.0"
- (sources."cacache-15.0.6" // {
+ (sources."cacache-15.2.0" // {
dependencies = [
sources."chownr-2.0.0"
sources."fs-minipass-2.1.0"
@@ -76418,7 +76539,7 @@ in
sources."dir-glob-3.0.1"
sources."diskusage-1.1.3"
sources."domain-browser-1.2.0"
- sources."dotenv-8.2.0"
+ sources."dotenv-8.6.0"
sources."duplexer3-0.1.4"
(sources."duplexify-3.7.1" // {
dependencies = [
@@ -76440,7 +76561,7 @@ in
sources."encodeurl-1.0.2"
(sources."encoding-0.1.13" // {
dependencies = [
- sources."iconv-lite-0.6.2"
+ sources."iconv-lite-0.6.3"
];
})
sources."end-of-stream-1.4.4"
@@ -76603,7 +76724,7 @@ in
sources."get-stream-4.1.0"
sources."get-value-2.0.6"
sources."getpass-0.1.7"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."glob-parent-5.1.2"
(sources."glob-stream-6.1.0" // {
dependencies = [
@@ -76706,7 +76827,7 @@ in
sources."ieee754-1.2.1"
sources."iferr-0.1.5"
sources."ignore-5.1.8"
- sources."ignore-walk-3.0.3"
+ sources."ignore-walk-3.0.4"
sources."imurmurhash-0.1.4"
sources."indent-string-4.0.0"
sources."indexof-0.0.1"
@@ -76724,7 +76845,7 @@ in
sources."is-arrayish-0.2.1"
sources."is-binary-path-1.0.1"
sources."is-buffer-1.1.6"
- sources."is-core-module-2.3.0"
+ sources."is-core-module-2.4.0"
sources."is-data-descriptor-1.0.0"
sources."is-descriptor-1.0.2"
sources."is-dir-1.0.0"
@@ -76991,7 +77112,7 @@ in
];
})
sources."normalize-path-3.0.0"
- sources."normalize-url-4.5.0"
+ sources."normalize-url-4.5.1"
sources."now-and-later-2.0.1"
sources."npm-bundled-1.1.2"
sources."npm-normalize-package-bin-1.0.1"
@@ -77021,7 +77142,7 @@ 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.168.0"
+ sources."office-ui-fabric-react-7.170.1"
sources."on-finished-2.3.0"
sources."on-headers-1.0.2"
sources."once-1.4.0"
@@ -77122,7 +77243,7 @@ in
sources."path-dirname-1.0.2"
sources."path-exists-2.1.0"
sources."path-is-absolute-1.0.1"
- sources."path-parse-1.0.6"
+ sources."path-parse-1.0.7"
sources."path-root-0.1.1"
sources."path-root-regex-0.1.2"
sources."path-to-regexp-0.1.7"
@@ -77140,7 +77261,7 @@ in
sources."pg-protocol-1.5.0"
sources."pg-types-2.2.0"
sources."pgpass-1.0.4"
- sources."picomatch-2.2.3"
+ sources."picomatch-2.3.0"
sources."pify-2.3.0"
sources."pinkie-2.0.4"
sources."pinkie-promise-2.0.1"
@@ -77248,7 +77369,7 @@ in
sources."safe-buffer-5.1.2"
sources."safe-regex-1.1.0"
sources."safer-buffer-2.1.2"
- (sources."sass-1.32.11" // {
+ (sources."sass-1.34.0" // {
dependencies = [
sources."anymatch-3.1.2"
sources."binary-extensions-2.2.0"
@@ -77349,7 +77470,7 @@ in
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."spdx-license-ids-3.0.9"
sources."split-string-3.1.0"
sources."split2-3.2.2"
sources."sprintf-js-1.0.3"
@@ -77433,7 +77554,7 @@ in
sources."yallist-3.1.1"
];
})
- (sources."terser-5.6.1" // {
+ (sources."terser-5.7.0" // {
dependencies = [
sources."source-map-0.7.3"
];
@@ -77618,7 +77739,7 @@ in
];
})
sources."wrappy-1.0.2"
- sources."ws-7.4.5"
+ sources."ws-7.4.6"
sources."xmlhttprequest-ssl-1.5.5"
sources."xtend-4.0.2"
sources."y18n-3.2.2"
@@ -77664,20 +77785,21 @@ in
eslint = nodeEnv.buildNodePackage {
name = "eslint";
packageName = "eslint";
- version = "7.25.0";
+ version = "7.27.0";
src = fetchurl {
- url = "https://registry.npmjs.org/eslint/-/eslint-7.25.0.tgz";
- sha512 = "TVpSovpvCNpLURIScDRB6g5CYu/ZFq9GfX2hLNIV4dSBKxIWojeDODvYl3t0k0VtMxYeR8OXPCFE5+oHMlGfhw==";
+ url = "https://registry.npmjs.org/eslint/-/eslint-7.27.0.tgz";
+ sha512 = "JZuR6La2ZF0UD384lcbnd0Cgg6QJjiCwhMD6eU4h/VGPcVGwawNNzKU41tgokGXnfjOOyI6QIffthhJTPzzuRA==";
};
dependencies = [
sources."@babel/code-frame-7.12.11"
- sources."@babel/helper-validator-identifier-7.12.11"
- (sources."@babel/highlight-7.13.10" // {
+ sources."@babel/helper-validator-identifier-7.14.0"
+ (sources."@babel/highlight-7.14.0" // {
dependencies = [
sources."chalk-2.4.2"
+ sources."escape-string-regexp-1.0.5"
];
})
- (sources."@eslint/eslintrc-0.4.0" // {
+ (sources."@eslint/eslintrc-0.4.1" // {
dependencies = [
sources."globals-12.4.0"
];
@@ -77711,14 +77833,14 @@ in
sources."doctrine-3.0.0"
sources."emoji-regex-8.0.0"
sources."enquirer-2.3.6"
- sources."escape-string-regexp-1.0.5"
+ sources."escape-string-regexp-4.0.0"
sources."eslint-scope-5.1.1"
(sources."eslint-utils-2.1.0" // {
dependencies = [
sources."eslint-visitor-keys-1.3.0"
];
})
- sources."eslint-visitor-keys-2.0.0"
+ sources."eslint-visitor-keys-2.1.0"
(sources."espree-7.3.1" // {
dependencies = [
sources."eslint-visitor-keys-1.3.0"
@@ -77745,9 +77867,9 @@ in
sources."flatted-3.1.1"
sources."fs.realpath-1.0.0"
sources."functional-red-black-tree-1.0.1"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."glob-parent-5.1.2"
- (sources."globals-13.8.0" // {
+ (sources."globals-13.9.0" // {
dependencies = [
sources."type-fest-0.20.2"
];
@@ -77767,9 +77889,8 @@ in
sources."json-schema-traverse-0.4.1"
sources."json-stable-stringify-without-jsonify-1.0.1"
sources."levn-0.4.1"
- sources."lodash-4.17.21"
sources."lodash.clonedeep-4.5.0"
- sources."lodash.flatten-4.4.0"
+ sources."lodash.merge-4.6.2"
sources."lodash.truncate-4.4.2"
sources."lru-cache-6.0.0"
sources."minimatch-3.0.4"
@@ -77802,9 +77923,9 @@ in
sources."strip-ansi-6.0.0"
sources."strip-json-comments-3.1.1"
sources."supports-color-5.5.0"
- (sources."table-6.5.1" // {
+ (sources."table-6.7.1" // {
dependencies = [
- sources."ajv-8.1.0"
+ sources."ajv-8.5.0"
sources."json-schema-traverse-1.0.0"
];
})
@@ -77831,22 +77952,23 @@ in
eslint_d = nodeEnv.buildNodePackage {
name = "eslint_d";
packageName = "eslint_d";
- version = "10.0.4";
+ version = "10.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/eslint_d/-/eslint_d-10.0.4.tgz";
- sha512 = "DEJaGxP6VDs3byYKQYw6Py8l2b1KH9S5vUo4IjvhWIEcdo5gjNkJjjzUCoExTIb0Bo7/GbKyNRI/dctUQ5f+7w==";
+ url = "https://registry.npmjs.org/eslint_d/-/eslint_d-10.1.3.tgz";
+ sha512 = "B8ESWH1KrLNgV0CR9r/Mc4lbgArnbWIuHnHrJlmuWx+02UriPXNnk4+nNFakzXHRh/sTHeCA4LiArkSfIqsfsw==";
};
dependencies = [
sources."@babel/code-frame-7.12.11"
- sources."@babel/helper-validator-identifier-7.12.11"
- (sources."@babel/highlight-7.13.10" // {
+ sources."@babel/helper-validator-identifier-7.14.0"
+ (sources."@babel/highlight-7.14.0" // {
dependencies = [
sources."chalk-2.4.2"
+ sources."escape-string-regexp-1.0.5"
sources."has-flag-3.0.0"
sources."supports-color-5.5.0"
];
})
- (sources."@eslint/eslintrc-0.4.0" // {
+ (sources."@eslint/eslintrc-0.4.1" // {
dependencies = [
sources."globals-12.4.0"
];
@@ -77873,22 +77995,22 @@ in
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
sources."concat-map-0.0.1"
- sources."core_d-3.0.0"
+ sources."core_d-3.2.0"
sources."cross-spawn-7.0.3"
sources."debug-4.3.2"
sources."deep-is-0.1.3"
sources."doctrine-3.0.0"
sources."emoji-regex-8.0.0"
sources."enquirer-2.3.6"
- sources."escape-string-regexp-1.0.5"
- sources."eslint-7.25.0"
+ sources."escape-string-regexp-4.0.0"
+ sources."eslint-7.27.0"
sources."eslint-scope-5.1.1"
(sources."eslint-utils-2.1.0" // {
dependencies = [
sources."eslint-visitor-keys-1.3.0"
];
})
- sources."eslint-visitor-keys-2.0.0"
+ sources."eslint-visitor-keys-2.1.0"
(sources."espree-7.3.1" // {
dependencies = [
sources."eslint-visitor-keys-1.3.0"
@@ -77915,9 +78037,9 @@ in
sources."flatted-3.1.1"
sources."fs.realpath-1.0.0"
sources."functional-red-black-tree-1.0.1"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."glob-parent-5.1.2"
- (sources."globals-13.8.0" // {
+ (sources."globals-13.9.0" // {
dependencies = [
sources."type-fest-0.20.2"
];
@@ -77937,9 +78059,8 @@ in
sources."json-schema-traverse-0.4.1"
sources."json-stable-stringify-without-jsonify-1.0.1"
sources."levn-0.4.1"
- sources."lodash-4.17.21"
sources."lodash.clonedeep-4.5.0"
- sources."lodash.flatten-4.4.0"
+ sources."lodash.merge-4.6.2"
sources."lodash.truncate-4.4.2"
sources."lru-cache-6.0.0"
sources."minimatch-3.0.4"
@@ -77973,9 +78094,9 @@ in
sources."strip-ansi-6.0.0"
sources."strip-json-comments-3.1.1"
sources."supports-color-8.1.1"
- (sources."table-6.5.1" // {
+ (sources."table-6.7.1" // {
dependencies = [
- sources."ajv-8.1.0"
+ sources."ajv-8.5.0"
sources."json-schema-traverse-1.0.0"
];
})
@@ -78019,70 +78140,70 @@ in
expo-cli = nodeEnv.buildNodePackage {
name = "expo-cli";
packageName = "expo-cli";
- version = "4.4.3";
+ version = "4.5.0";
src = fetchurl {
- url = "https://registry.npmjs.org/expo-cli/-/expo-cli-4.4.3.tgz";
- sha512 = "wSap0vOOFRgg+SUrB4QPNdJH7FeTZAXgEIdrQIayoliRe+e/466Buh1j9v5g0CE6INhRjX+Ak2u9z5pVJxa4MQ==";
+ url = "https://registry.npmjs.org/expo-cli/-/expo-cli-4.5.0.tgz";
+ sha512 = "SY+ff6RtgviIV5p776TbeiG3qfI8lRGKBwUbrGQNVWnlgFhrRIY8H8Dixc3jcZmNV669Id5Ha0v+UqBF1duQzw==";
};
dependencies = [
sources."@babel/code-frame-7.12.13"
- sources."@babel/compat-data-7.13.15"
+ sources."@babel/compat-data-7.14.4"
(sources."@babel/core-7.9.0" // {
dependencies = [
sources."semver-5.7.1"
];
})
- sources."@babel/generator-7.13.16"
+ sources."@babel/generator-7.14.3"
sources."@babel/helper-annotate-as-pure-7.12.13"
sources."@babel/helper-builder-binary-assignment-operator-visitor-7.12.13"
- (sources."@babel/helper-compilation-targets-7.13.16" // {
+ (sources."@babel/helper-compilation-targets-7.14.4" // {
dependencies = [
sources."semver-6.3.0"
];
})
- sources."@babel/helper-create-class-features-plugin-7.13.11"
- sources."@babel/helper-create-regexp-features-plugin-7.12.17"
- (sources."@babel/helper-define-polyfill-provider-0.2.0" // {
+ sources."@babel/helper-create-class-features-plugin-7.14.4"
+ sources."@babel/helper-create-regexp-features-plugin-7.14.3"
+ (sources."@babel/helper-define-polyfill-provider-0.2.3" // {
dependencies = [
sources."semver-6.3.0"
];
})
sources."@babel/helper-explode-assignable-expression-7.13.0"
- sources."@babel/helper-function-name-7.12.13"
+ sources."@babel/helper-function-name-7.14.2"
sources."@babel/helper-get-function-arity-7.12.13"
sources."@babel/helper-hoist-variables-7.13.16"
sources."@babel/helper-member-expression-to-functions-7.13.12"
sources."@babel/helper-module-imports-7.13.12"
- sources."@babel/helper-module-transforms-7.13.14"
+ sources."@babel/helper-module-transforms-7.14.2"
sources."@babel/helper-optimise-call-expression-7.12.13"
sources."@babel/helper-plugin-utils-7.13.0"
sources."@babel/helper-remap-async-to-generator-7.13.0"
- sources."@babel/helper-replace-supers-7.13.12"
+ sources."@babel/helper-replace-supers-7.14.4"
sources."@babel/helper-simple-access-7.13.12"
sources."@babel/helper-skip-transparent-expression-wrappers-7.12.1"
sources."@babel/helper-split-export-declaration-7.12.13"
- sources."@babel/helper-validator-identifier-7.12.11"
+ sources."@babel/helper-validator-identifier-7.14.0"
sources."@babel/helper-validator-option-7.12.17"
sources."@babel/helper-wrap-function-7.13.0"
- sources."@babel/helpers-7.13.17"
- (sources."@babel/highlight-7.13.10" // {
+ sources."@babel/helpers-7.14.0"
+ (sources."@babel/highlight-7.14.0" // {
dependencies = [
sources."chalk-2.4.2"
];
})
- sources."@babel/parser-7.13.16"
- sources."@babel/plugin-proposal-async-generator-functions-7.13.15"
+ sources."@babel/parser-7.14.4"
+ sources."@babel/plugin-proposal-async-generator-functions-7.14.2"
sources."@babel/plugin-proposal-class-properties-7.12.13"
- sources."@babel/plugin-proposal-dynamic-import-7.13.8"
+ sources."@babel/plugin-proposal-dynamic-import-7.14.2"
sources."@babel/plugin-proposal-export-default-from-7.12.13"
- sources."@babel/plugin-proposal-export-namespace-from-7.12.13"
- sources."@babel/plugin-proposal-json-strings-7.13.8"
- sources."@babel/plugin-proposal-logical-assignment-operators-7.13.8"
- sources."@babel/plugin-proposal-nullish-coalescing-operator-7.13.8"
- sources."@babel/plugin-proposal-numeric-separator-7.12.13"
- sources."@babel/plugin-proposal-object-rest-spread-7.13.8"
- sources."@babel/plugin-proposal-optional-catch-binding-7.13.8"
- sources."@babel/plugin-proposal-optional-chaining-7.13.12"
+ sources."@babel/plugin-proposal-export-namespace-from-7.14.2"
+ sources."@babel/plugin-proposal-json-strings-7.14.2"
+ sources."@babel/plugin-proposal-logical-assignment-operators-7.14.2"
+ sources."@babel/plugin-proposal-nullish-coalescing-operator-7.14.2"
+ sources."@babel/plugin-proposal-numeric-separator-7.14.2"
+ sources."@babel/plugin-proposal-object-rest-spread-7.14.4"
+ sources."@babel/plugin-proposal-optional-catch-binding-7.14.2"
+ sources."@babel/plugin-proposal-optional-chaining-7.14.2"
sources."@babel/plugin-proposal-private-methods-7.13.0"
sources."@babel/plugin-proposal-unicode-property-regex-7.12.13"
sources."@babel/plugin-syntax-async-generators-7.8.4"
@@ -78104,10 +78225,10 @@ in
sources."@babel/plugin-transform-arrow-functions-7.13.0"
sources."@babel/plugin-transform-async-to-generator-7.13.0"
sources."@babel/plugin-transform-block-scoped-functions-7.12.13"
- sources."@babel/plugin-transform-block-scoping-7.13.16"
- sources."@babel/plugin-transform-classes-7.13.0"
+ sources."@babel/plugin-transform-block-scoping-7.14.4"
+ sources."@babel/plugin-transform-classes-7.14.4"
sources."@babel/plugin-transform-computed-properties-7.13.0"
- sources."@babel/plugin-transform-destructuring-7.13.17"
+ sources."@babel/plugin-transform-destructuring-7.14.4"
sources."@babel/plugin-transform-dotall-regex-7.12.13"
sources."@babel/plugin-transform-duplicate-keys-7.12.13"
sources."@babel/plugin-transform-exponentiation-operator-7.12.13"
@@ -78116,23 +78237,23 @@ in
sources."@babel/plugin-transform-function-name-7.12.13"
sources."@babel/plugin-transform-literals-7.12.13"
sources."@babel/plugin-transform-member-expression-literals-7.12.13"
- sources."@babel/plugin-transform-modules-amd-7.13.0"
- sources."@babel/plugin-transform-modules-commonjs-7.13.8"
+ sources."@babel/plugin-transform-modules-amd-7.14.2"
+ sources."@babel/plugin-transform-modules-commonjs-7.14.0"
sources."@babel/plugin-transform-modules-systemjs-7.13.8"
- sources."@babel/plugin-transform-modules-umd-7.13.0"
+ sources."@babel/plugin-transform-modules-umd-7.14.0"
sources."@babel/plugin-transform-named-capturing-groups-regex-7.12.13"
sources."@babel/plugin-transform-new-target-7.12.13"
sources."@babel/plugin-transform-object-assign-7.12.13"
sources."@babel/plugin-transform-object-super-7.12.13"
- sources."@babel/plugin-transform-parameters-7.13.0"
+ sources."@babel/plugin-transform-parameters-7.14.2"
sources."@babel/plugin-transform-property-literals-7.12.13"
- sources."@babel/plugin-transform-react-display-name-7.12.13"
- sources."@babel/plugin-transform-react-jsx-7.13.12"
+ sources."@babel/plugin-transform-react-display-name-7.14.2"
+ sources."@babel/plugin-transform-react-jsx-7.14.3"
sources."@babel/plugin-transform-react-jsx-self-7.12.13"
- sources."@babel/plugin-transform-react-jsx-source-7.12.13"
+ sources."@babel/plugin-transform-react-jsx-source-7.14.2"
sources."@babel/plugin-transform-regenerator-7.13.15"
sources."@babel/plugin-transform-reserved-words-7.12.13"
- (sources."@babel/plugin-transform-runtime-7.13.15" // {
+ (sources."@babel/plugin-transform-runtime-7.14.3" // {
dependencies = [
sources."semver-6.3.0"
];
@@ -78142,7 +78263,7 @@ in
sources."@babel/plugin-transform-sticky-regex-7.12.13"
sources."@babel/plugin-transform-template-literals-7.13.0"
sources."@babel/plugin-transform-typeof-symbol-7.12.13"
- sources."@babel/plugin-transform-typescript-7.13.0"
+ sources."@babel/plugin-transform-typescript-7.14.4"
sources."@babel/plugin-transform-unicode-escapes-7.12.13"
sources."@babel/plugin-transform-unicode-regex-7.12.13"
(sources."@babel/preset-env-7.12.17" // {
@@ -78152,22 +78273,22 @@ in
})
sources."@babel/preset-modules-0.1.4"
sources."@babel/preset-typescript-7.12.17"
- sources."@babel/runtime-7.13.17"
+ sources."@babel/runtime-7.14.0"
sources."@babel/template-7.12.13"
- sources."@babel/traverse-7.13.17"
- sources."@babel/types-7.13.17"
- sources."@expo/apple-utils-0.0.0-alpha.17"
+ sources."@babel/traverse-7.14.2"
+ sources."@babel/types-7.14.4"
+ sources."@expo/apple-utils-0.0.0-alpha.20"
sources."@expo/bunyan-4.0.0"
- sources."@expo/config-3.3.38"
- sources."@expo/config-plugins-1.0.28"
+ sources."@expo/config-4.0.0"
+ sources."@expo/config-plugins-2.0.0"
sources."@expo/config-types-40.0.0-beta.2"
- (sources."@expo/configure-splash-screen-0.3.4" // {
+ (sources."@expo/configure-splash-screen-0.4.0" // {
dependencies = [
sources."commander-5.1.0"
sources."pngjs-5.0.0"
];
})
- (sources."@expo/dev-server-0.1.64" // {
+ (sources."@expo/dev-server-0.1.70" // {
dependencies = [
sources."body-parser-1.19.0"
sources."bytes-3.1.0"
@@ -78182,7 +78303,7 @@ in
sources."statuses-1.5.0"
];
})
- sources."@expo/dev-tools-0.13.94"
+ sources."@expo/dev-tools-0.13.100"
(sources."@expo/devcert-1.0.0" // {
dependencies = [
sources."debug-3.2.7"
@@ -78190,33 +78311,35 @@ in
sources."sudo-prompt-8.2.5"
];
})
- (sources."@expo/image-utils-0.3.13" // {
+ (sources."@expo/image-utils-0.3.14" // {
dependencies = [
+ sources."mime-2.5.2"
sources."tempy-0.3.0"
];
})
- (sources."@expo/json-file-8.2.29" // {
+ (sources."@expo/json-file-8.2.30" // {
dependencies = [
sources."@babel/code-frame-7.10.4"
sources."json5-1.0.1"
];
})
- sources."@expo/metro-config-0.1.64"
- sources."@expo/osascript-2.0.26"
- (sources."@expo/package-manager-0.0.41" // {
+ sources."@expo/metro-config-0.1.70"
+ sources."@expo/osascript-2.0.28"
+ (sources."@expo/package-manager-0.0.43" // {
dependencies = [
sources."npm-package-arg-7.0.0"
sources."rimraf-3.0.2"
sources."semver-5.7.1"
];
})
- (sources."@expo/plist-0.0.12" // {
+ (sources."@expo/plist-0.0.13" // {
dependencies = [
sources."xmlbuilder-14.0.0"
];
})
+ sources."@expo/prebuild-config-1.0.1"
sources."@expo/results-1.0.0"
- (sources."@expo/schemer-1.3.28" // {
+ (sources."@expo/schemer-1.3.29" // {
dependencies = [
sources."ajv-5.5.2"
sources."fast-deep-equal-1.1.0"
@@ -78225,13 +78348,13 @@ in
})
sources."@expo/simple-spinner-1.0.2"
sources."@expo/spawn-async-1.5.0"
- (sources."@expo/webpack-config-0.12.68" // {
+ (sources."@expo/webpack-config-0.12.74" // {
dependencies = [
sources."@babel/runtime-7.9.0"
sources."react-refresh-0.8.3"
];
})
- (sources."@expo/xcpretty-2.0.0" // {
+ (sources."@expo/xcpretty-2.0.1" // {
dependencies = [
sources."@babel/code-frame-7.10.4"
];
@@ -78286,7 +78409,7 @@ in
sources."@nodelib/fs.scandir-2.1.4"
sources."@nodelib/fs.stat-2.0.4"
sources."@nodelib/fs.walk-1.2.6"
- (sources."@npmcli/git-2.0.8" // {
+ (sources."@npmcli/git-2.0.9" // {
dependencies = [
sources."mkdirp-1.0.4"
sources."semver-7.3.5"
@@ -78314,12 +78437,12 @@ in
(sources."@react-native-community/cli-tools-4.13.0" // {
dependencies = [
sources."ansi-styles-4.3.0"
- sources."array-filter-0.0.1"
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-wsl-1.1.0"
+ sources."mime-2.5.2"
sources."open-6.4.0"
sources."shell-quote-1.6.1"
sources."supports-color-7.2.0"
@@ -78329,7 +78452,6 @@ in
sources."@sindresorhus/is-4.0.1"
sources."@szmarczak/http-timer-4.0.5"
sources."@tootallnate/once-1.1.2"
- sources."@types/anymatch-1.3.1"
sources."@types/cacheable-request-6.0.1"
sources."@types/glob-7.1.3"
sources."@types/html-minifier-terser-5.1.1"
@@ -78351,7 +78473,7 @@ in
sources."source-map-0.6.1"
];
})
- (sources."@types/webpack-4.41.27" // {
+ (sources."@types/webpack-4.41.29" // {
dependencies = [
sources."source-map-0.6.1"
];
@@ -78428,7 +78550,7 @@ in
sources."arr-diff-4.0.0"
sources."arr-flatten-1.1.0"
sources."arr-union-3.1.0"
- sources."array-filter-1.0.0"
+ sources."array-filter-0.0.1"
sources."array-flatten-1.1.1"
sources."array-map-0.0.0"
sources."array-reduce-0.0.0"
@@ -78456,7 +78578,6 @@ in
sources."asynckit-0.4.0"
sources."at-least-node-1.0.0"
sources."atob-2.1.2"
- sources."available-typed-arrays-1.0.2"
sources."aws-sign2-0.7.0"
sources."aws4-1.11.0"
sources."axios-0.21.1"
@@ -78469,20 +78590,19 @@ in
];
})
sources."babel-plugin-dynamic-import-node-2.3.3"
- (sources."babel-plugin-polyfill-corejs2-0.2.0" // {
+ (sources."babel-plugin-polyfill-corejs2-0.2.2" // {
dependencies = [
sources."semver-6.3.0"
];
})
- sources."babel-plugin-polyfill-corejs3-0.2.0"
- sources."babel-plugin-polyfill-regenerator-0.2.0"
+ sources."babel-plugin-polyfill-corejs3-0.2.2"
+ sources."babel-plugin-polyfill-regenerator-0.2.2"
sources."babel-plugin-syntax-object-rest-spread-6.13.0"
sources."babel-plugin-syntax-trailing-function-commas-7.0.0-beta.0"
sources."babel-plugin-transform-object-rest-spread-6.26.0"
- sources."babel-preset-fbjs-3.3.0"
+ sources."babel-preset-fbjs-3.4.0"
(sources."babel-runtime-6.26.0" // {
dependencies = [
- sources."core-js-2.6.12"
sources."regenerator-runtime-0.11.1"
];
})
@@ -78515,7 +78635,6 @@ in
(sources."bonjour-3.5.0" // {
dependencies = [
sources."array-flatten-2.1.2"
- sources."deep-equal-1.1.1"
];
})
sources."boolbase-1.0.0"
@@ -78541,7 +78660,7 @@ in
];
})
sources."browserify-zlib-0.2.0"
- sources."browserslist-4.16.5"
+ sources."browserslist-4.16.6"
sources."buffer-5.7.1"
sources."buffer-equal-0.0.1"
sources."buffer-from-1.1.1"
@@ -78550,7 +78669,7 @@ in
sources."builtin-status-codes-3.0.0"
sources."builtins-1.0.3"
sources."bytes-3.0.0"
- (sources."cacache-15.0.6" // {
+ (sources."cacache-15.2.0" // {
dependencies = [
sources."minipass-3.1.3"
sources."mkdirp-1.0.4"
@@ -78572,7 +78691,7 @@ in
})
sources."camelcase-5.3.1"
sources."caniuse-api-3.0.0"
- sources."caniuse-lite-1.0.30001214"
+ sources."caniuse-lite-1.0.30001230"
sources."caseless-0.12.0"
(sources."chalk-4.1.1" // {
dependencies = [
@@ -78587,7 +78706,7 @@ in
sources."chokidar-3.5.1"
sources."chownr-2.0.0"
sources."chrome-trace-event-1.0.3"
- sources."ci-info-3.1.1"
+ sources."ci-info-3.2.0"
sources."cipher-base-1.0.4"
(sources."class-utils-0.3.6" // {
dependencies = [
@@ -78705,8 +78824,8 @@ in
sources."semver-6.3.0"
];
})
- sources."core-js-3.11.0"
- (sources."core-js-compat-3.11.0" // {
+ sources."core-js-2.6.12"
+ (sources."core-js-compat-3.13.0" // {
dependencies = [
sources."semver-7.0.0"
];
@@ -78782,7 +78901,7 @@ in
sources."mimic-response-3.1.0"
];
})
- sources."deep-equal-2.0.5"
+ sources."deep-equal-1.1.1"
sources."deep-extend-0.6.0"
sources."deep-scope-analyser-1.7.0"
sources."deepmerge-4.2.2"
@@ -78802,7 +78921,7 @@ in
sources."deprecated-decorator-0.1.6"
sources."des.js-1.0.1"
sources."destroy-1.0.4"
- sources."detect-node-2.0.5"
+ sources."detect-node-2.1.0"
(sources."detect-port-alt-1.1.6" // {
dependencies = [
sources."debug-2.6.9"
@@ -78816,10 +78935,10 @@ in
})
sources."dir-glob-3.0.1"
sources."dns-equal-1.0.0"
- sources."dns-packet-1.3.1"
+ sources."dns-packet-1.3.4"
sources."dns-txt-2.0.2"
sources."dom-converter-0.2.0"
- (sources."dom-serializer-1.3.1" // {
+ (sources."dom-serializer-1.3.2" // {
dependencies = [
sources."domhandler-4.2.0"
];
@@ -78845,7 +78964,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.720"
+ sources."electron-to-chromium-1.3.741"
(sources."elliptic-6.5.4" // {
dependencies = [
sources."bn.js-4.12.0"
@@ -78856,7 +78975,7 @@ in
sources."encodeurl-1.0.2"
(sources."encoding-0.1.13" // {
dependencies = [
- sources."iconv-lite-0.6.2"
+ sources."iconv-lite-0.6.3"
];
})
sources."end-of-stream-1.4.4"
@@ -78879,8 +78998,7 @@ in
})
sources."error-stack-parser-2.0.6"
sources."errorhandler-1.5.1"
- sources."es-abstract-1.18.0"
- sources."es-get-iterator-1.1.2"
+ sources."es-abstract-1.18.3"
sources."es-to-primitive-1.2.1"
sources."escalade-3.1.1"
sources."escape-html-1.0.3"
@@ -78927,7 +79045,7 @@ in
sources."ms-2.0.0"
];
})
- (sources."expo-pwa-0.0.74" // {
+ (sources."expo-pwa-0.0.80" // {
dependencies = [
sources."commander-2.20.0"
];
@@ -78973,9 +79091,8 @@ 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.3"
+ sources."follow-redirects-1.14.1"
sources."for-in-1.0.2"
- sources."foreach-2.0.5"
sources."forever-agent-0.6.1"
(sources."fork-ts-checker-webpack-plugin-4.1.6" // {
dependencies = [
@@ -79133,7 +79250,7 @@ in
sources."ieee754-1.2.1"
sources."iferr-0.1.5"
sources."ignore-5.1.8"
- sources."ignore-walk-3.0.3"
+ sources."ignore-walk-3.0.4"
sources."immer-8.0.1"
(sources."import-fresh-2.0.0" // {
dependencies = [
@@ -79157,15 +79274,15 @@ in
sources."is-accessor-descriptor-1.0.0"
sources."is-arguments-1.1.0"
sources."is-arrayish-0.3.2"
- sources."is-bigint-1.0.1"
+ sources."is-bigint-1.0.2"
sources."is-binary-path-2.1.0"
- sources."is-boolean-object-1.1.0"
+ sources."is-boolean-object-1.1.1"
sources."is-buffer-1.1.6"
sources."is-callable-1.2.3"
sources."is-color-stop-1.1.0"
- sources."is-core-module-2.3.0"
+ sources."is-core-module-2.4.0"
sources."is-data-descriptor-1.0.0"
- sources."is-date-object-1.0.2"
+ sources."is-date-object-1.0.4"
sources."is-descriptor-1.0.2"
sources."is-directory-0.3.1"
sources."is-docker-2.2.1"
@@ -79181,10 +79298,9 @@ in
];
})
sources."is-lambda-1.0.1"
- sources."is-map-2.0.2"
sources."is-negative-zero-2.0.1"
sources."is-number-7.0.0"
- sources."is-number-object-1.0.4"
+ sources."is-number-object-1.0.5"
sources."is-obj-2.0.0"
sources."is-path-cwd-2.2.0"
(sources."is-path-in-cwd-2.1.0" // {
@@ -79217,23 +79333,19 @@ in
sources."responselike-1.0.2"
];
})
- sources."is-regex-1.1.2"
+ sources."is-regex-1.1.3"
sources."is-regexp-1.0.0"
sources."is-resolvable-1.1.0"
sources."is-retry-allowed-1.2.0"
sources."is-root-2.1.0"
- sources."is-set-2.0.2"
sources."is-stream-2.0.0"
- sources."is-string-1.0.5"
- sources."is-symbol-1.0.3"
- sources."is-typed-array-1.1.5"
+ sources."is-string-1.0.6"
+ sources."is-symbol-1.0.4"
sources."is-typedarray-1.0.0"
sources."is-valid-path-0.1.1"
- sources."is-weakmap-2.0.1"
- sources."is-weakset-2.0.1"
sources."is-windows-1.0.2"
sources."is-wsl-2.2.0"
- sources."isarray-2.0.5"
+ sources."isarray-1.0.0"
sources."isemail-3.2.0"
sources."isexe-2.0.0"
sources."isobject-3.0.1"
@@ -79284,11 +79396,7 @@ in
sources."last-call-webpack-plugin-3.0.0"
sources."latest-version-5.1.0"
sources."leven-3.1.0"
- (sources."load-bmfont-1.4.1" // {
- dependencies = [
- sources."mime-1.6.0"
- ];
- })
+ sources."load-bmfont-1.4.1"
sources."loader-runner-2.4.0"
sources."loader-utils-2.0.0"
sources."locate-path-6.0.0"
@@ -79352,7 +79460,7 @@ in
sources."bn.js-4.12.0"
];
})
- sources."mime-2.5.2"
+ sources."mime-1.4.1"
sources."mime-db-1.47.0"
sources."mime-types-2.1.30"
sources."mimic-fn-1.2.0"
@@ -79456,14 +79564,13 @@ in
(sources."node-libs-browser-2.2.1" // {
dependencies = [
sources."buffer-4.9.2"
- sources."isarray-1.0.0"
sources."punycode-1.4.1"
];
})
- sources."node-releases-1.1.71"
+ sources."node-releases-1.1.72"
sources."nopt-5.0.0"
sources."normalize-path-3.0.0"
- sources."normalize-url-4.5.0"
+ sources."normalize-url-4.5.1"
sources."npm-bundled-1.1.2"
sources."npm-install-checks-4.0.0"
sources."npm-normalize-package-bin-1.0.1"
@@ -79473,7 +79580,7 @@ in
sources."semver-5.7.1"
];
})
- sources."npm-packlist-2.1.5"
+ sources."npm-packlist-2.2.2"
(sources."npm-pick-manifest-6.1.1" // {
dependencies = [
sources."hosted-git-info-4.0.2"
@@ -79481,7 +79588,7 @@ in
sources."semver-7.3.5"
];
})
- (sources."npm-registry-fetch-10.1.1" // {
+ (sources."npm-registry-fetch-10.1.2" // {
dependencies = [
sources."hosted-git-info-4.0.2"
sources."minipass-3.1.3"
@@ -79492,6 +79599,7 @@ in
sources."npm-run-path-2.0.2"
sources."npmlog-4.1.2"
sources."nth-check-1.0.2"
+ sources."nullthrows-1.1.1"
sources."number-is-nan-1.0.1"
sources."oauth-sign-0.9.0"
sources."ob1-0.59.0"
@@ -79509,15 +79617,15 @@ in
sources."kind-of-3.2.2"
];
})
- sources."object-inspect-1.10.2"
+ sources."object-inspect-1.10.3"
sources."object-is-1.1.5"
sources."object-keys-1.1.1"
sources."object-visit-1.0.1"
sources."object.assign-4.1.2"
- sources."object.entries-1.1.3"
+ sources."object.entries-1.1.4"
sources."object.getownpropertydescriptors-2.1.2"
sources."object.pick-1.3.0"
- sources."object.values-1.1.3"
+ sources."object.values-1.1.4"
sources."obuf-1.1.2"
sources."omggif-1.0.10"
sources."on-finished-2.3.0"
@@ -79530,7 +79638,7 @@ in
sources."is-wsl-1.1.0"
];
})
- sources."optimize-css-assets-webpack-plugin-5.0.4"
+ sources."optimize-css-assets-webpack-plugin-5.0.6"
sources."options-0.0.6"
(sources."ora-3.4.0" // {
dependencies = [
@@ -79545,7 +79653,7 @@ in
sources."os-tmpdir-1.0.2"
sources."osenv-0.1.5"
sources."p-any-2.1.0"
- sources."p-cancelable-2.1.0"
+ sources."p-cancelable-2.1.1"
sources."p-finally-1.0.0"
sources."p-limit-3.1.0"
sources."p-locate-5.0.0"
@@ -79621,13 +79729,13 @@ in
sources."path-is-absolute-1.0.1"
sources."path-is-inside-1.0.2"
sources."path-key-2.0.1"
- sources."path-parse-1.0.6"
+ sources."path-parse-1.0.7"
sources."path-to-regexp-0.1.7"
sources."path-type-4.0.0"
sources."pbkdf2-3.1.2"
sources."performance-now-2.1.0"
sources."phin-2.9.3"
- sources."picomatch-2.2.3"
+ sources."picomatch-2.3.0"
sources."pify-4.0.1"
sources."pinkie-2.0.4"
sources."pinkie-promise-2.0.1"
@@ -79774,7 +79882,7 @@ in
];
})
sources."postcss-safe-parser-4.0.2"
- sources."postcss-selector-parser-6.0.5"
+ sources."postcss-selector-parser-6.0.6"
(sources."postcss-svgo-4.0.3" // {
dependencies = [
sources."postcss-value-parser-3.3.1"
@@ -79861,11 +79969,7 @@ in
sources."read-chunk-3.2.0"
sources."read-last-lines-1.6.0"
sources."read-package-json-fast-2.0.2"
- (sources."readable-stream-2.3.7" // {
- dependencies = [
- sources."isarray-1.0.0"
- ];
- })
+ sources."readable-stream-2.3.7"
sources."readdirp-3.5.0"
sources."recursive-readdir-2.2.2"
sources."regenerate-1.4.2"
@@ -79953,12 +80057,11 @@ in
sources."sax-1.2.4"
sources."schema-utils-2.7.1"
sources."select-hose-2.0.0"
- sources."selfsigned-1.10.8"
+ sources."selfsigned-1.10.11"
sources."semver-7.3.2"
(sources."send-0.16.2" // {
dependencies = [
sources."debug-2.6.9"
- sources."mime-1.4.1"
sources."ms-2.0.0"
];
})
@@ -79987,7 +80090,6 @@ in
sources."shebang-command-1.2.0"
sources."shebang-regex-1.0.0"
sources."shell-quote-1.7.2"
- sources."side-channel-1.0.4"
sources."signal-exit-3.0.3"
sources."simple-plist-1.1.1"
sources."simple-swizzle-0.2.2"
@@ -79998,7 +80100,7 @@ in
sources."uuid-2.0.3"
];
})
- sources."slugify-1.5.0"
+ sources."slugify-1.5.3"
sources."smart-buffer-4.1.0"
(sources."snapdragon-0.8.2" // {
dependencies = [
@@ -80038,7 +80140,7 @@ in
(sources."sockjs-client-1.4.0" // {
dependencies = [
sources."debug-3.2.7"
- sources."faye-websocket-0.11.3"
+ sources."faye-websocket-0.11.4"
];
})
sources."socks-2.6.1"
@@ -80236,7 +80338,6 @@ in
];
})
sources."has-values-0.1.4"
- sources."isarray-1.0.0"
];
})
sources."untildify-3.0.3"
@@ -80328,7 +80429,11 @@ in
];
})
sources."webpack-deep-scope-plugin-1.6.0"
- sources."webpack-dev-middleware-3.7.3"
+ (sources."webpack-dev-middleware-3.7.3" // {
+ dependencies = [
+ sources."mime-2.5.2"
+ ];
+ })
(sources."webpack-dev-server-3.11.0" // {
dependencies = [
sources."ansi-regex-2.1.1"
@@ -80431,9 +80536,7 @@ in
sources."websocket-extensions-0.1.4"
sources."which-1.3.1"
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"
(sources."wide-align-1.1.3" // {
dependencies = [
sources."ansi-regex-3.0.0"
@@ -80489,7 +80592,7 @@ in
sources."uuid-7.0.3"
];
})
- (sources."xdl-59.0.34" // {
+ (sources."xdl-59.0.40" // {
dependencies = [
sources."chownr-1.1.4"
sources."fs-minipass-1.2.7"
@@ -80610,7 +80713,7 @@ in
sources."indent-string-2.1.0"
sources."inherits-2.0.4"
sources."is-arrayish-0.2.1"
- sources."is-core-module-2.3.0"
+ sources."is-core-module-2.4.0"
sources."is-finite-1.1.0"
sources."is-stream-1.1.0"
sources."is-typedarray-1.0.0"
@@ -80663,7 +80766,7 @@ in
sources."os-tmpdir-1.0.2"
sources."parse-json-2.2.0"
sources."path-exists-2.1.0"
- sources."path-parse-1.0.6"
+ sources."path-parse-1.0.7"
sources."path-type-1.1.0"
sources."pend-1.2.0"
sources."performance-now-2.1.0"
@@ -80693,7 +80796,7 @@ in
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."spdx-license-ids-3.0.9"
sources."sshpk-1.16.1"
sources."string_decoder-1.1.1"
sources."strip-ansi-3.0.1"
@@ -80729,12 +80832,23 @@ in
fauna-shell = nodeEnv.buildNodePackage {
name = "fauna-shell";
packageName = "fauna-shell";
- version = "0.12.3";
+ version = "0.12.4";
src = fetchurl {
- url = "https://registry.npmjs.org/fauna-shell/-/fauna-shell-0.12.3.tgz";
- sha512 = "2K8kh4MAteqj7kOnUq8Goux4Zw0oIZEGN1xoW14cGxrOTDRXvBm3eBndI9gt24rSC8h7T8qdIeLY7O9hn6LSUg==";
+ url = "https://registry.npmjs.org/fauna-shell/-/fauna-shell-0.12.4.tgz";
+ sha512 = "KqaoGSmcIBLY6Vr1wWRMu0acuLUpxpKEtjekdwYs+JxMk74vRa8Mwxd96SmEoBat28cPCoLAPfvDyEtzUzkjEg==";
};
dependencies = [
+ sources."@babel/code-frame-7.12.13"
+ sources."@babel/generator-7.14.3"
+ sources."@babel/helper-function-name-7.14.2"
+ sources."@babel/helper-get-function-arity-7.12.13"
+ sources."@babel/helper-split-export-declaration-7.12.13"
+ sources."@babel/helper-validator-identifier-7.14.0"
+ sources."@babel/highlight-7.14.0"
+ sources."@babel/parser-7.14.4"
+ sources."@babel/template-7.12.13"
+ sources."@babel/traverse-7.14.2"
+ sources."@babel/types-7.14.4"
(sources."@heroku-cli/color-1.1.14" // {
dependencies = [
sources."ansi-regex-4.1.0"
@@ -80792,8 +80906,17 @@ in
})
sources."@oclif/screen-1.0.4"
sources."@sindresorhus/is-0.7.0"
- sources."abortcontroller-polyfill-1.7.1"
+ sources."abort-controller-3.0.0"
sources."ajv-6.12.6"
+ (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"
+ ];
+ })
sources."ansi-escapes-3.2.0"
sources."ansi-regex-5.0.0"
sources."ansi-styles-4.3.0"
@@ -80812,6 +80935,7 @@ in
sources."atob-2.1.2"
sources."aws-sign2-0.7.0"
sources."aws4-1.11.0"
+ sources."babel-eslint-10.1.0"
sources."balanced-match-1.0.2"
(sources."base-0.11.2" // {
dependencies = [
@@ -80821,6 +80945,13 @@ in
sources."base64-js-1.5.1"
sources."bcrypt-pbkdf-1.0.2"
sources."bluebird-3.7.2"
+ (sources."boxen-5.0.1" // {
+ dependencies = [
+ sources."chalk-4.1.1"
+ sources."has-flag-4.0.0"
+ sources."supports-color-7.2.0"
+ ];
+ })
sources."brace-expansion-1.1.11"
sources."braces-3.0.2"
sources."btoa-lite-1.0.0"
@@ -80831,6 +80962,7 @@ in
];
})
sources."call-me-maybe-1.0.1"
+ sources."camelcase-6.2.0"
sources."cardinal-2.1.1"
sources."caseless-0.12.0"
(sources."chalk-2.4.2" // {
@@ -80859,6 +80991,7 @@ in
];
})
sources."clean-stack-3.0.1"
+ sources."cli-boxes-2.2.1"
sources."cli-table-0.3.6"
(sources."cli-ux-4.9.3" // {
dependencies = [
@@ -80899,15 +81032,23 @@ in
sources."define-property-2.0.2"
sources."delayed-stream-1.0.0"
sources."dir-glob-3.0.1"
- sources."dotenv-8.2.0"
+ sources."dotenv-8.6.0"
sources."duplexer3-0.1.4"
sources."ecc-jsbn-0.1.2"
sources."emoji-regex-8.0.0"
sources."escape-string-regexp-4.0.0"
- sources."escodegen-1.14.3"
+ (sources."escodegen-1.14.3" // {
+ dependencies = [
+ sources."source-map-0.6.1"
+ ];
+ })
+ sources."eslint-config-prettier-8.3.0"
+ sources."eslint-plugin-prettier-3.4.0"
+ sources."eslint-visitor-keys-1.3.0"
sources."esprima-4.0.1"
sources."estraverse-4.3.0"
sources."esutils-2.0.3"
+ sources."event-target-shim-5.0.1"
sources."execa-0.10.0"
(sources."expand-brackets-2.1.4" // {
dependencies = [
@@ -80944,11 +81085,18 @@ in
sources."extract-stack-1.0.0"
sources."extsprintf-1.3.0"
sources."fast-deep-equal-3.1.3"
+ sources."fast-diff-1.2.0"
sources."fast-glob-3.2.5"
sources."fast-json-stable-stringify-2.1.0"
sources."fast-levenshtein-2.0.6"
sources."fastq-1.11.0"
- sources."faunadb-4.0.3"
+ (sources."faunadb-4.3.0" // {
+ dependencies = [
+ sources."chalk-4.1.1"
+ sources."has-flag-4.0.0"
+ sources."supports-color-7.2.0"
+ ];
+ })
sources."fill-range-7.0.1"
sources."fn-annotate-1.2.0"
sources."for-in-1.0.2"
@@ -80958,12 +81106,14 @@ in
sources."from2-2.3.0"
sources."fs-extra-8.1.0"
sources."fs.realpath-1.0.0"
+ sources."function-bind-1.1.1"
sources."get-stream-3.0.0"
sources."get-value-2.0.6"
sources."getpass-0.1.7"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."glob-parent-5.1.2"
sources."glob-to-regexp-0.3.0"
+ sources."globals-11.12.0"
(sources."globby-8.0.2" // {
dependencies = [
sources."@nodelib/fs.stat-1.1.3"
@@ -80998,6 +81148,7 @@ in
sources."graceful-fs-4.2.6"
sources."har-schema-2.0.0"
sources."har-validator-5.1.5"
+ sources."has-1.0.3"
sources."has-flag-3.0.0"
sources."has-symbol-support-x-1.4.2"
sources."has-to-string-tag-x-1.4.1"
@@ -81033,6 +81184,7 @@ in
sources."into-stream-3.1.0"
sources."is-accessor-descriptor-1.0.0"
sources."is-buffer-1.1.6"
+ sources."is-core-module-2.4.0"
sources."is-data-descriptor-1.0.0"
sources."is-descriptor-1.0.2"
sources."is-docker-2.2.1"
@@ -81054,7 +81206,9 @@ in
sources."isobject-3.0.1"
sources."isstream-0.1.2"
sources."isurl-1.0.0"
+ sources."js-tokens-4.0.0"
sources."jsbn-0.1.1"
+ sources."jsesc-2.5.2"
sources."json-buffer-3.0.0"
sources."json-schema-0.2.3"
sources."json-schema-traverse-0.4.1"
@@ -81124,13 +81278,16 @@ in
sources."path-dirname-1.0.2"
sources."path-is-absolute-1.0.1"
sources."path-key-2.0.1"
+ sources."path-parse-1.0.7"
sources."path-type-4.0.0"
sources."performance-now-2.1.0"
- sources."picomatch-2.2.3"
+ sources."picomatch-2.3.0"
sources."pify-3.0.0"
sources."posix-character-classes-0.1.1"
sources."prelude-ls-1.1.2"
sources."prepend-http-2.0.0"
+ sources."prettier-2.3.0"
+ sources."prettier-linter-helpers-1.0.0"
sources."process-nextick-args-2.0.1"
sources."psl-1.8.0"
sources."punycode-2.1.1"
@@ -81149,6 +81306,7 @@ in
sources."request-2.88.2"
sources."request-promise-4.2.6"
sources."request-promise-core-1.1.4"
+ sources."resolve-1.20.0"
sources."resolve-url-0.2.1"
sources."responselike-1.0.2"
sources."ret-0.1.15"
@@ -81185,7 +81343,6 @@ in
sources."is-descriptor-0.1.6"
sources."kind-of-5.1.0"
sources."ms-2.0.0"
- sources."source-map-0.5.7"
];
})
(sources."snapdragon-node-2.1.1" // {
@@ -81199,7 +81356,7 @@ in
];
})
sources."sort-keys-2.0.0"
- sources."source-map-0.6.1"
+ sources."source-map-0.5.7"
sources."source-map-resolve-0.5.3"
sources."source-map-url-0.4.1"
sources."split-string-3.1.0"
@@ -81238,6 +81395,7 @@ in
];
})
sources."timed-out-4.0.1"
+ sources."to-fast-properties-2.0.0"
(sources."to-object-path-0.3.0" // {
dependencies = [
sources."kind-of-3.2.2"
@@ -81251,6 +81409,7 @@ in
sources."tunnel-agent-0.6.0"
sources."tweetnacl-0.14.5"
sources."type-check-0.3.2"
+ sources."type-fest-0.20.2"
sources."union-value-1.0.1"
sources."universalify-0.1.2"
(sources."unset-value-1.0.0" // {
@@ -81291,10 +81450,10 @@ in
firebase-tools = nodeEnv.buildNodePackage {
name = "firebase-tools";
packageName = "firebase-tools";
- version = "9.10.0";
+ version = "9.12.0";
src = fetchurl {
- url = "https://registry.npmjs.org/firebase-tools/-/firebase-tools-9.10.0.tgz";
- sha512 = "0HoQEB6K5WiD/p/ca7KxzGZHCxtuVdck888N924TPkjkZ6YxYT8xJtuoKXCLRjJgw4yovJ/LnxZoU66w8JD1cQ==";
+ url = "https://registry.npmjs.org/firebase-tools/-/firebase-tools-9.12.0.tgz";
+ sha512 = "rPk4JyzPaSHyHQDGCh0/U63MW2nXgnZ4h0IRE2EjFHRz+KyNl/hakGX7EQKVej5HpMKFhWRjGOvDHn1PXooQgw==";
};
dependencies = [
sources."@apidevtools/json-schema-ref-parser-9.0.7"
@@ -81303,18 +81462,19 @@ in
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.11.0" // {
+ (sources."@google-cloud/pubsub-2.12.0" // {
dependencies = [
- sources."google-auth-library-7.0.4"
+ sources."google-auth-library-7.1.0"
];
})
- (sources."@grpc/grpc-js-1.2.12" // {
- dependencies = [
- sources."semver-6.3.0"
- ];
- })
- sources."@grpc/proto-loader-0.5.6"
+ sources."@grpc/grpc-js-1.3.2"
+ sources."@grpc/proto-loader-0.6.2"
sources."@jsdevtools/ono-7.1.3"
+ (sources."@npmcli/move-file-1.1.2" // {
+ dependencies = [
+ sources."mkdirp-1.0.4"
+ ];
+ })
sources."@opentelemetry/api-0.18.1"
sources."@opentelemetry/semantic-conventions-0.18.2"
sources."@protobufjs/aspromise-1.1.2"
@@ -81335,21 +81495,31 @@ in
sources."@types/glob-7.1.3"
sources."@types/long-4.0.1"
sources."@types/minimatch-3.0.4"
- sources."@types/node-14.14.41"
+ sources."@types/node-15.6.1"
sources."JSONStream-1.3.5"
sources."abbrev-1.1.1"
sources."abort-controller-3.0.0"
sources."accepts-1.3.7"
sources."agent-base-6.0.2"
- sources."ajv-6.12.6"
+ sources."agentkeepalive-4.1.4"
+ sources."aggregate-error-3.1.0"
+ (sources."ajv-6.12.6" // {
+ dependencies = [
+ sources."json-schema-traverse-0.4.1"
+ ];
+ })
(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"
];
})
sources."ansi-escapes-3.2.0"
- sources."ansi-regex-2.1.1"
- sources."ansi-styles-3.2.1"
+ sources."ansi-regex-5.0.0"
+ sources."ansi-styles-4.3.0"
sources."ansicolors-0.3.2"
sources."anymatch-3.1.2"
sources."aproba-1.2.0"
@@ -81403,16 +81573,8 @@ in
})
(sources."boxen-4.2.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."emoji-regex-8.0.0"
sources."has-flag-4.0.0"
- sources."is-fullwidth-code-point-3.0.0"
- sources."string-width-4.2.2"
- sources."strip-ansi-6.0.0"
sources."supports-color-7.2.0"
];
})
@@ -81424,6 +81586,12 @@ in
sources."buffer-indexof-polyfill-1.0.2"
sources."buffers-0.1.1"
sources."bytes-3.1.0"
+ (sources."cacache-15.2.0" // {
+ dependencies = [
+ sources."mkdirp-1.0.4"
+ sources."tar-6.1.0"
+ ];
+ })
(sources."cacheable-request-6.1.0" // {
dependencies = [
sources."get-stream-5.2.0"
@@ -81435,24 +81603,41 @@ in
sources."cardinal-2.1.1"
sources."caseless-0.12.0"
sources."chainsaw-0.1.0"
- sources."chalk-2.4.2"
+ (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."chardet-0.7.0"
sources."chokidar-3.5.1"
sources."chownr-2.0.0"
sources."ci-info-2.0.0"
sources."cjson-0.3.3"
+ sources."clean-stack-2.2.0"
sources."cli-boxes-2.2.1"
- sources."cli-color-1.4.0"
+ (sources."cli-color-1.4.0" // {
+ dependencies = [
+ sources."ansi-regex-2.1.1"
+ ];
+ })
sources."cli-cursor-2.1.0"
sources."cli-spinners-2.6.0"
sources."cli-table-0.3.6"
sources."cli-width-2.2.1"
+ sources."cliui-7.0.4"
sources."clone-1.0.4"
sources."clone-response-1.0.2"
sources."code-point-at-1.1.0"
- sources."color-3.0.0"
- sources."color-convert-1.9.3"
- sources."color-name-1.1.3"
+ (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-string-1.5.5"
sources."colors-1.0.3"
sources."colorspace-1.1.2"
@@ -81534,15 +81719,22 @@ in
sources."ecc-jsbn-0.1.2"
sources."ecdsa-sig-formatter-1.0.11"
sources."ee-first-1.1.1"
- sources."emoji-regex-7.0.3"
+ sources."emoji-regex-8.0.0"
sources."enabled-2.0.0"
sources."encodeurl-1.0.2"
+ (sources."encoding-0.1.13" // {
+ dependencies = [
+ sources."iconv-lite-0.6.3"
+ ];
+ })
sources."end-of-stream-1.4.4"
sources."env-paths-2.2.1"
+ sources."err-code-2.0.3"
sources."es5-ext-0.10.53"
sources."es6-iterator-2.0.3"
sources."es6-symbol-3.1.3"
sources."es6-weak-map-2.0.3"
+ sources."escalade-3.1.1"
sources."escape-goat-2.1.1"
sources."escape-html-1.0.3"
sources."escape-string-regexp-1.0.5"
@@ -81554,12 +81746,12 @@ in
sources."event-emitter-0.3.5"
sources."event-target-shim-5.0.1"
sources."events-listener-1.1.0"
- (sources."exegesis-2.5.6" // {
+ (sources."exegesis-2.5.7" // {
dependencies = [
sources."semver-7.3.5"
];
})
- sources."exegesis-express-2.0.0"
+ sources."exegesis-express-2.0.1"
sources."exit-code-1.0.2"
sources."exit-on-epipe-1.0.1"
(sources."express-4.17.1" // {
@@ -81615,11 +81807,7 @@ in
sources."forwarded-0.1.2"
sources."fresh-0.5.2"
sources."fs-constants-1.0.0"
- (sources."fs-extra-0.23.1" // {
- dependencies = [
- sources."rimraf-2.7.1"
- ];
- })
+ sources."fs-extra-5.0.0"
sources."fs-minipass-2.1.0"
sources."fs.realpath-1.0.0"
sources."fsevents-2.3.2"
@@ -81637,30 +81825,31 @@ in
})
(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."gaxios-4.2.0"
+ sources."gaxios-4.3.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-7.1.7"
sources."glob-parent-5.1.2"
sources."glob-slash-1.0.0"
sources."glob-slasher-1.0.1"
sources."global-dirs-2.1.0"
sources."google-auth-library-6.1.6"
- (sources."google-gax-2.11.2" // {
+ (sources."google-gax-2.14.1" // {
dependencies = [
- sources."google-auth-library-7.0.4"
+ sources."google-auth-library-7.1.0"
];
})
sources."google-p12-pem-3.0.3"
@@ -81669,7 +81858,11 @@ in
sources."gtoken-5.2.1"
sources."har-schema-2.0.0"
sources."har-validator-5.1.5"
- sources."has-ansi-2.0.0"
+ (sources."has-ansi-2.0.0" // {
+ dependencies = [
+ sources."ansi-regex-2.1.1"
+ ];
+ })
sources."has-flag-3.0.0"
sources."has-unicode-2.0.1"
sources."has-yarn-2.1.0"
@@ -81683,14 +81876,32 @@ in
sources."http-proxy-agent-4.0.1"
sources."http-signature-1.2.0"
sources."https-proxy-agent-5.0.0"
+ sources."humanize-ms-1.2.1"
sources."iconv-lite-0.4.24"
sources."ieee754-1.2.1"
sources."import-lazy-2.1.0"
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.7"
- sources."inquirer-6.3.1"
+ (sources."inquirer-6.3.1" // {
+ dependencies = [
+ sources."ansi-regex-3.0.0"
+ sources."is-fullwidth-code-point-2.0.0"
+ (sources."string-width-2.1.1" // {
+ dependencies = [
+ sources."strip-ansi-4.0.0"
+ ];
+ })
+ (sources."strip-ansi-5.2.0" // {
+ dependencies = [
+ sources."ansi-regex-4.1.0"
+ ];
+ })
+ ];
+ })
sources."install-artifact-from-github-1.2.0"
sources."ip-1.1.5"
sources."ip-regex-4.3.0"
@@ -81699,9 +81910,10 @@ in
sources."is-binary-path-2.1.0"
sources."is-ci-2.0.0"
sources."is-extglob-2.1.1"
- sources."is-fullwidth-code-point-2.0.0"
+ 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-4.0.0"
sources."is-number-7.0.0"
sources."is-obj-2.0.0"
@@ -81713,7 +81925,7 @@ in
sources."is-url-1.2.4"
sources."is-wsl-1.1.0"
sources."is-yarn-global-0.3.0"
- sources."is2-2.0.6"
+ sources."is2-2.0.7"
sources."isarray-1.0.0"
sources."isexe-2.0.0"
sources."isstream-0.1.2"
@@ -81724,11 +81936,11 @@ in
sources."json-bigint-1.0.0"
sources."json-buffer-3.0.0"
sources."json-parse-helpfulerror-1.0.3"
- sources."json-ptr-1.3.2"
+ sources."json-ptr-2.2.0"
sources."json-schema-0.2.3"
- sources."json-schema-traverse-0.4.1"
+ sources."json-schema-traverse-1.0.0"
sources."json-stringify-safe-5.0.1"
- sources."jsonfile-2.4.0"
+ sources."jsonfile-4.0.0"
sources."jsonparse-1.3.1"
(sources."jsonwebtoken-8.5.1" // {
dependencies = [
@@ -81789,6 +82001,7 @@ in
sources."semver-6.3.0"
];
})
+ sources."make-fetch-happen-8.0.14"
sources."marked-0.7.0"
sources."marked-terminal-3.3.0"
sources."media-typer-0.3.0"
@@ -81807,6 +82020,11 @@ in
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.3"
+ sources."minipass-flush-1.0.5"
+ sources."minipass-pipeline-1.2.4"
+ sources."minipass-sized-1.0.3"
sources."minizlib-2.1.2"
sources."mkdirp-0.5.5"
(sources."morgan-1.10.0" // {
@@ -81831,7 +82049,7 @@ in
sources."node-emoji-1.10.0"
sources."node-fetch-2.6.1"
sources."node-forge-0.10.0"
- (sources."node-gyp-7.1.2" // {
+ (sources."node-gyp-8.1.0" // {
dependencies = [
sources."mkdirp-1.0.4"
sources."semver-7.3.5"
@@ -81841,23 +82059,30 @@ in
})
sources."nopt-5.0.0"
sources."normalize-path-3.0.0"
- sources."normalize-url-4.5.0"
+ sources."normalize-url-4.5.1"
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."object-hash-2.2.0"
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-2.0.1"
sources."open-6.4.0"
- sources."openapi3-ts-1.4.0"
+ sources."openapi3-ts-2.0.1"
sources."optionator-0.8.3"
- sources."ora-3.4.0"
+ (sources."ora-3.4.0" // {
+ dependencies = [
+ sources."ansi-regex-4.1.0"
+ sources."strip-ansi-5.2.0"
+ ];
+ })
sources."os-tmpdir-1.0.2"
sources."p-cancelable-1.1.0"
sources."p-defer-3.0.0"
+ sources."p-map-4.0.0"
sources."pac-proxy-agent-4.1.0"
sources."pac-resolver-4.2.0"
(sources."package-json-6.5.0" // {
@@ -81870,7 +82095,7 @@ in
sources."path-key-2.0.1"
sources."path-to-regexp-0.1.7"
sources."performance-now-2.1.0"
- sources."picomatch-2.2.3"
+ sources."picomatch-2.3.0"
(sources."portfinder-1.0.28" // {
dependencies = [
sources."async-2.6.3"
@@ -81883,11 +82108,9 @@ in
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.50"
- ];
- })
+ sources."promise-inflight-1.0.1"
+ sources."promise-retry-2.0.1"
+ sources."protobufjs-6.11.2"
sources."proxy-addr-2.0.6"
(sources."proxy-agent-4.0.1" // {
dependencies = [
@@ -81904,7 +82127,7 @@ in
sources."range-parser-1.2.1"
sources."raw-body-2.4.0"
sources."rc-1.2.8"
- sources."re2-1.15.9"
+ sources."re2-1.16.0"
sources."readable-stream-3.6.0"
sources."readdir-glob-1.1.1"
sources."readdirp-3.5.0"
@@ -81916,8 +82139,10 @@ in
sources."qs-6.5.2"
];
})
+ sources."require-directory-2.1.1"
sources."responselike-1.0.2"
sources."restore-cursor-2.0.0"
+ sources."retry-0.12.0"
sources."retry-request-4.1.3"
sources."rimraf-3.0.2"
(sources."router-1.3.5" // {
@@ -81968,37 +82193,38 @@ in
sources."source-map-0.6.1"
sources."sprintf-js-1.0.3"
sources."sshpk-1.16.1"
+ sources."ssri-8.0.1"
sources."stack-trace-0.0.10"
sources."statuses-1.5.0"
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-2.1.1" // {
- dependencies = [
- sources."ansi-regex-3.0.0"
- sources."strip-ansi-4.0.0"
- ];
- })
+ sources."string-width-4.2.2"
sources."string_decoder-1.3.0"
- (sources."strip-ansi-5.2.0" // {
- dependencies = [
- sources."ansi-regex-4.1.0"
- ];
- })
+ sources."strip-ansi-6.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"
+ sources."has-flag-4.0.0"
sources."isarray-0.0.1"
- sources."jsonfile-4.0.0"
sources."path-to-regexp-1.8.0"
sources."strip-ansi-3.0.1"
sources."supports-color-2.0.0"
+ (sources."update-notifier-4.1.3" // {
+ dependencies = [
+ sources."ansi-styles-4.3.0"
+ sources."chalk-3.0.0"
+ sources."supports-color-7.2.0"
+ ];
+ })
];
})
sources."supports-color-5.5.0"
@@ -82054,6 +82280,8 @@ in
sources."type-fest-0.8.1"
sources."type-is-1.6.18"
sources."typedarray-to-buffer-3.1.5"
+ sources."unique-filename-1.1.1"
+ sources."unique-slug-2.0.2"
sources."unique-string-2.0.0"
sources."universal-analytics-0.4.23"
sources."universalify-0.1.2"
@@ -82065,14 +82293,19 @@ in
sources."string_decoder-1.1.1"
];
})
- (sources."update-notifier-4.1.3" // {
+ (sources."update-notifier-5.1.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."boxen-5.0.1"
+ sources."camelcase-6.2.0"
+ sources."chalk-4.1.1"
+ sources."global-dirs-3.0.0"
sources."has-flag-4.0.0"
+ sources."ini-2.0.0"
+ sources."is-installed-globally-0.4.0"
+ sources."is-npm-5.0.0"
+ sources."semver-7.3.5"
sources."supports-color-7.2.0"
+ sources."type-fest-0.20.2"
];
})
sources."uri-js-4.4.1"
@@ -82086,16 +82319,15 @@ in
sources."verror-1.10.0"
sources."wcwidth-1.0.1"
sources."which-1.3.1"
- sources."wide-align-1.1.3"
- (sources."widest-line-3.1.0" // {
+ (sources."wide-align-1.1.3" // {
dependencies = [
- sources."ansi-regex-5.0.0"
- sources."emoji-regex-8.0.0"
- sources."is-fullwidth-code-point-3.0.0"
- sources."string-width-4.2.2"
- sources."strip-ansi-6.0.0"
+ 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."widest-line-3.1.0"
sources."winston-3.3.3"
(sources."winston-transport-4.4.0" // {
dependencies = [
@@ -82105,13 +82337,18 @@ in
];
})
sources."word-wrap-1.2.3"
+ sources."wrap-ansi-7.0.0"
sources."wrappy-1.0.2"
sources."write-file-atomic-3.0.3"
- sources."ws-7.4.5"
+ sources."ws-7.4.6"
sources."xdg-basedir-4.0.0"
sources."xregexp-2.0.0"
sources."xtend-4.0.2"
+ sources."y18n-5.0.8"
sources."yallist-4.0.0"
+ sources."yaml-1.10.2"
+ sources."yargs-16.2.0"
+ sources."yargs-parser-20.2.7"
sources."zip-stream-4.1.0"
];
buildInputs = globalBuildInputs;
@@ -82141,12 +82378,12 @@ in
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
sources."concat-map-0.0.1"
- sources."detect-indent-6.0.0"
+ sources."detect-indent-6.1.0"
sources."emoji-regex-8.0.0"
sources."escalade-3.1.1"
sources."fs.realpath-1.0.0"
sources."get-caller-file-2.0.5"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."is-fullwidth-code-point-3.0.0"
@@ -82183,8 +82420,8 @@ in
};
dependencies = [
sources."@babel/code-frame-7.12.13"
- sources."@babel/helper-validator-identifier-7.12.11"
- (sources."@babel/highlight-7.13.10" // {
+ sources."@babel/helper-validator-identifier-7.14.0"
+ (sources."@babel/highlight-7.14.0" // {
dependencies = [
sources."ansi-styles-3.2.1"
sources."chalk-2.4.2"
@@ -82241,7 +82478,7 @@ in
sources."inquirer-7.3.3"
sources."inquirer-autocomplete-prompt-1.3.0"
sources."is-arrayish-0.2.1"
- sources."is-core-module-2.3.0"
+ sources."is-core-module-2.4.0"
sources."is-fullwidth-code-point-3.0.0"
sources."is-plain-obj-1.1.0"
sources."is-stream-2.0.0"
@@ -82281,7 +82518,7 @@ in
sources."parse-json-5.2.0"
sources."path-exists-4.0.0"
sources."path-key-3.1.1"
- sources."path-parse-1.0.6"
+ sources."path-parse-1.0.7"
sources."pid-port-0.1.1"
(sources."process-exists-4.0.0" // {
dependencies = [
@@ -82318,7 +82555,7 @@ in
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."spdx-license-ids-3.0.9"
sources."string-width-4.2.2"
sources."strip-ansi-6.0.0"
sources."strip-final-newline-2.0.0"
@@ -82333,7 +82570,7 @@ in
})
sources."through-2.3.8"
sources."tmp-0.0.33"
- sources."trim-newlines-3.0.0"
+ sources."trim-newlines-3.0.1"
sources."tslib-1.14.1"
sources."type-fest-0.21.3"
sources."validate-npm-package-license-3.0.4"
@@ -82363,7 +82600,7 @@ in
dependencies = [
sources."@types/atob-2.1.2"
sources."@types/inquirer-6.5.0"
- sources."@types/node-14.14.41"
+ sources."@types/node-15.6.1"
sources."@types/through-0.0.30"
sources."ajv-6.12.6"
sources."ansi-escapes-4.3.2"
@@ -82403,7 +82640,7 @@ in
sources."decompress-response-3.3.0"
sources."delayed-stream-1.0.0"
sources."dom-walk-0.1.2"
- sources."dotenv-8.2.0"
+ sources."dotenv-8.6.0"
sources."ecc-jsbn-0.1.2"
sources."elliptic-6.5.4"
sources."emoji-regex-8.0.0"
@@ -82440,7 +82677,7 @@ in
sources."immediate-3.0.6"
sources."inherits-2.0.4"
sources."inquirer-7.3.3"
- sources."inversify-5.0.5"
+ sources."inversify-5.1.1"
sources."is-docker-2.2.1"
sources."is-fullwidth-code-point-3.0.0"
sources."is-function-1.0.2"
@@ -82536,9 +82773,9 @@ in
sources."utf8-3.0.0"
sources."uuid-3.4.0"
sources."verror-1.10.0"
- (sources."web3-utils-1.3.5" // {
+ (sources."web3-utils-1.3.6" // {
dependencies = [
- sources."underscore-1.9.1"
+ sources."underscore-1.12.1"
];
})
sources."which-module-2.0.0"
@@ -82565,10 +82802,10 @@ in
flood = nodeEnv.buildNodePackage {
name = "flood";
packageName = "flood";
- version = "4.5.4";
+ version = "4.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/flood/-/flood-4.5.4.tgz";
- sha512 = "3fDbGf4fUWsF6Si60EezRNZEBK3gz6y/IofZ10pyq4yl88hATkWyrvG3xHVdP1cfyKZzV1D4uiLStkLzKbpOWQ==";
+ url = "https://registry.npmjs.org/flood/-/flood-4.6.0.tgz";
+ sha512 = "uio2KGAC9wNNM9wa6BrmIwRunE/AWJNDz9SnP06zHIpIHX9FC0UEHbj2kairn9CmhzhEwprBNYeFh79eyfqxvw==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -82720,7 +82957,7 @@ in
sources."function-bind-1.1.1"
sources."get-intrinsic-1.1.1"
sources."get-value-2.0.6"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
(sources."glob-parent-3.1.0" // {
dependencies = [
sources."is-glob-3.1.0"
@@ -82745,7 +82982,7 @@ in
sources."is-binary-path-1.0.1"
sources."is-buffer-1.1.6"
sources."is-data-descriptor-1.0.0"
- sources."is-date-object-1.0.2"
+ sources."is-date-object-1.0.4"
sources."is-descriptor-1.0.2"
sources."is-extendable-1.0.1"
sources."is-extglob-2.1.1"
@@ -82757,7 +82994,7 @@ in
];
})
sources."is-plain-object-2.0.4"
- sources."is-regex-1.1.2"
+ sources."is-regex-1.1.3"
sources."is-windows-1.0.2"
sources."isarray-1.0.0"
sources."isobject-3.0.1"
@@ -83021,10 +83258,10 @@ in
gatsby-cli = nodeEnv.buildNodePackage {
name = "gatsby-cli";
packageName = "gatsby-cli";
- version = "3.3.0";
+ version = "3.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-3.3.0.tgz";
- sha512 = "zqVRm6QzMNGFPv3iSjSiysNuSBYJmvPoWWR/BdXyFU8mWP3Fou3d7HdxxIQak25GVRYlMGU5ryuM9mfN/k/Jdg==";
+ url = "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-3.6.0.tgz";
+ sha512 = "GJ0BviJw3qnONdoNpCvqgRA8jxYk7rpqi+7MrvT0U+YMcT2HGhZbhY0RxlZqYRL8qOCJTtLB/N4Z7cCUwi8g1w==";
};
dependencies = [
(sources."@ardatan/aggregate-error-0.0.6" // {
@@ -83033,62 +83270,58 @@ in
];
})
sources."@babel/code-frame-7.12.13"
- sources."@babel/compat-data-7.13.15"
- (sources."@babel/core-7.13.16" // {
+ sources."@babel/compat-data-7.14.4"
+ (sources."@babel/core-7.14.3" // {
dependencies = [
sources."semver-6.3.0"
sources."source-map-0.5.7"
];
})
- (sources."@babel/generator-7.13.16" // {
+ (sources."@babel/generator-7.14.3" // {
dependencies = [
sources."source-map-0.5.7"
];
})
sources."@babel/helper-annotate-as-pure-7.12.13"
- (sources."@babel/helper-compilation-targets-7.13.16" // {
+ (sources."@babel/helper-compilation-targets-7.14.4" // {
dependencies = [
sources."semver-6.3.0"
];
})
- sources."@babel/helper-function-name-7.12.13"
+ sources."@babel/helper-function-name-7.14.2"
sources."@babel/helper-get-function-arity-7.12.13"
sources."@babel/helper-member-expression-to-functions-7.13.12"
sources."@babel/helper-module-imports-7.13.12"
- sources."@babel/helper-module-transforms-7.13.14"
+ sources."@babel/helper-module-transforms-7.14.2"
sources."@babel/helper-optimise-call-expression-7.12.13"
sources."@babel/helper-plugin-utils-7.13.0"
- sources."@babel/helper-replace-supers-7.13.12"
+ sources."@babel/helper-replace-supers-7.14.4"
sources."@babel/helper-simple-access-7.13.12"
sources."@babel/helper-skip-transparent-expression-wrappers-7.12.1"
sources."@babel/helper-split-export-declaration-7.12.13"
- sources."@babel/helper-validator-identifier-7.12.11"
+ sources."@babel/helper-validator-identifier-7.14.0"
sources."@babel/helper-validator-option-7.12.17"
- sources."@babel/helpers-7.13.17"
- (sources."@babel/highlight-7.13.10" // {
+ sources."@babel/helpers-7.14.0"
+ (sources."@babel/highlight-7.14.0" // {
dependencies = [
sources."chalk-2.4.2"
];
})
- sources."@babel/parser-7.13.16"
+ sources."@babel/parser-7.14.4"
sources."@babel/plugin-proposal-object-rest-spread-7.10.4"
- sources."@babel/plugin-proposal-optional-chaining-7.13.12"
+ sources."@babel/plugin-proposal-optional-chaining-7.14.2"
sources."@babel/plugin-syntax-jsx-7.12.13"
sources."@babel/plugin-syntax-object-rest-spread-7.8.3"
sources."@babel/plugin-syntax-optional-chaining-7.8.3"
- sources."@babel/plugin-transform-parameters-7.13.0"
- sources."@babel/plugin-transform-react-jsx-7.13.12"
- sources."@babel/runtime-7.13.17"
- sources."@babel/standalone-7.13.17"
+ sources."@babel/plugin-transform-parameters-7.14.2"
+ sources."@babel/plugin-transform-react-jsx-7.14.3"
+ sources."@babel/runtime-7.14.0"
+ sources."@babel/standalone-7.14.4"
sources."@babel/template-7.12.13"
- sources."@babel/traverse-7.13.17"
- sources."@babel/types-7.13.17"
- sources."@graphql-tools/schema-7.1.3"
- (sources."@graphql-tools/utils-7.7.3" // {
- dependencies = [
- sources."tslib-2.2.0"
- ];
- })
+ sources."@babel/traverse-7.14.2"
+ sources."@babel/types-7.14.4"
+ sources."@graphql-tools/schema-7.1.5"
+ sources."@graphql-tools/utils-7.10.0"
sources."@hapi/address-2.1.4"
sources."@hapi/bourne-1.3.2"
sources."@hapi/hoek-8.5.1"
@@ -83105,7 +83338,7 @@ in
];
})
sources."@mdx-js/util-2.0.0-next.8"
- (sources."@sideway/address-4.1.1" // {
+ (sources."@sideway/address-4.1.2" // {
dependencies = [
sources."@hapi/hoek-9.2.0"
];
@@ -83123,15 +83356,15 @@ in
sources."@types/istanbul-lib-report-3.0.0"
sources."@types/istanbul-reports-1.1.2"
sources."@types/json-patch-0.0.30"
- sources."@types/node-14.14.41"
+ sources."@types/node-15.6.1"
sources."@types/node-fetch-2.5.10"
- sources."@types/readable-stream-2.3.9"
+ sources."@types/readable-stream-2.3.10"
sources."@types/unist-2.0.3"
sources."@types/yargs-15.0.13"
sources."@types/yargs-parser-20.2.0"
sources."@types/yoga-layout-1.9.2"
sources."accepts-1.3.7"
- sources."acorn-8.2.1"
+ sources."acorn-8.2.4"
sources."acorn-jsx-5.3.1"
sources."address-1.1.2"
(sources."ansi-align-3.0.0" // {
@@ -83179,19 +83412,19 @@ in
})
sources."brace-expansion-1.1.11"
sources."braces-3.0.2"
- sources."browserslist-4.16.5"
+ sources."browserslist-4.16.6"
sources."bytes-3.1.0"
(sources."cacheable-request-6.1.0" // {
dependencies = [
sources."get-stream-5.2.0"
sources."lowercase-keys-2.0.0"
- sources."normalize-url-4.5.0"
+ sources."normalize-url-4.5.1"
];
})
sources."call-bind-1.0.2"
sources."camel-case-4.1.2"
sources."camelcase-5.3.1"
- sources."caniuse-lite-1.0.30001214"
+ sources."caniuse-lite-1.0.30001230"
sources."ccount-1.1.0"
(sources."chalk-4.1.1" // {
dependencies = [
@@ -83241,8 +83474,8 @@ in
];
})
sources."content-type-1.0.4"
- sources."contentful-management-7.17.1"
- sources."contentful-sdk-core-6.7.0"
+ sources."contentful-management-7.22.4"
+ sources."contentful-sdk-core-6.8.0"
sources."convert-hrtime-3.0.0"
(sources."convert-source-map-1.7.0" // {
dependencies = [
@@ -83252,7 +83485,7 @@ in
sources."cookie-0.4.0"
sources."cookie-signature-1.0.6"
sources."cors-2.8.5"
- sources."create-gatsby-1.3.0"
+ sources."create-gatsby-1.6.0"
(sources."cross-spawn-6.0.5" // {
dependencies = [
sources."semver-5.7.1"
@@ -83288,10 +83521,10 @@ in
sources."domhandler-2.4.2"
sources."domutils-1.7.0"
sources."dot-prop-5.3.0"
- sources."dotenv-8.2.0"
+ sources."dotenv-8.6.0"
sources."duplexer3-0.1.4"
sources."ee-first-1.1.1"
- sources."electron-to-chromium-1.3.720"
+ sources."electron-to-chromium-1.3.741"
sources."emoji-regex-7.0.3"
sources."encodeurl-1.0.2"
sources."end-of-stream-1.4.4"
@@ -83344,7 +83577,7 @@ in
})
sources."fast-copy-2.1.1"
sources."figures-3.2.0"
- sources."file-type-16.3.0"
+ sources."file-type-16.5.0"
sources."fill-range-7.0.1"
sources."filter-obj-1.1.0"
(sources."finalhandler-1.1.2" // {
@@ -83354,7 +83587,7 @@ in
];
})
sources."find-up-4.1.0"
- sources."follow-redirects-1.13.3"
+ sources."follow-redirects-1.14.1"
sources."form-data-3.0.1"
sources."forwarded-0.1.2"
sources."fresh-0.5.2"
@@ -83363,8 +83596,8 @@ in
sources."fs.realpath-1.0.0"
sources."fsevents-2.3.2"
sources."function-bind-1.1.1"
- sources."gatsby-core-utils-2.3.0"
- (sources."gatsby-recipes-0.14.0" // {
+ sources."gatsby-core-utils-2.6.0"
+ (sources."gatsby-recipes-0.17.0" // {
dependencies = [
sources."cross-spawn-7.0.3"
sources."execa-4.1.0"
@@ -83378,14 +83611,14 @@ in
sources."which-2.0.2"
];
})
- sources."gatsby-telemetry-2.3.0"
+ sources."gatsby-telemetry-2.6.0"
sources."gensync-1.0.0-beta.2"
sources."get-caller-file-2.0.5"
sources."get-intrinsic-1.1.1"
sources."get-stdin-4.0.1"
sources."get-stream-4.1.0"
sources."git-up-4.0.2"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."glob-parent-5.1.2"
sources."global-dirs-3.0.0"
sources."globals-11.12.0"
@@ -83434,7 +83667,7 @@ in
sources."is-binary-path-2.1.0"
sources."is-buffer-2.0.5"
sources."is-ci-2.0.0"
- sources."is-core-module-2.3.0"
+ sources."is-core-module-2.4.0"
sources."is-decimal-1.0.4"
sources."is-docker-2.2.1"
sources."is-extglob-2.1.1"
@@ -83453,7 +83686,7 @@ in
sources."is-obj-2.0.0"
sources."is-path-inside-3.0.3"
sources."is-plain-obj-2.1.0"
- sources."is-ssh-1.3.2"
+ sources."is-ssh-1.3.3"
sources."is-stream-1.1.0"
sources."is-typedarray-1.0.0"
sources."is-url-1.2.4"
@@ -83541,14 +83774,14 @@ in
sources."no-case-3.0.4"
sources."node-eta-0.9.0"
sources."node-fetch-2.6.1"
- sources."node-object-hash-2.3.1"
- sources."node-releases-1.1.71"
+ sources."node-object-hash-2.3.2"
+ sources."node-releases-1.1.72"
sources."normalize-path-3.0.0"
sources."normalize-url-3.3.0"
sources."npm-run-path-2.0.2"
sources."nth-check-1.0.2"
sources."object-assign-4.1.1"
- sources."object-inspect-1.10.2"
+ sources."object-inspect-1.10.3"
sources."object-path-0.11.5"
sources."on-finished-2.3.0"
sources."once-1.4.0"
@@ -83574,13 +83807,13 @@ in
sources."path-exists-4.0.0"
sources."path-is-absolute-1.0.1"
sources."path-key-2.0.1"
- sources."path-parse-1.0.6"
+ sources."path-parse-1.0.7"
sources."path-to-regexp-0.1.7"
sources."peek-readable-3.1.3"
- sources."picomatch-2.2.3"
+ sources."picomatch-2.3.0"
sources."pkg-dir-4.2.0"
sources."prepend-http-2.0.0"
- sources."prettier-2.2.1"
+ sources."prettier-2.3.0"
sources."pretty-error-2.1.2"
(sources."pretty-format-25.5.0" // {
dependencies = [
@@ -83720,7 +83953,7 @@ in
sources."trim-0.0.1"
sources."trim-trailing-lines-1.1.4"
sources."trough-1.0.5"
- sources."tslib-2.1.0"
+ sources."tslib-2.2.0"
sources."type-fest-0.20.2"
sources."type-is-1.6.18"
sources."typedarray-to-buffer-3.1.5"
@@ -83755,6 +83988,7 @@ in
sources."utila-0.4.0"
sources."utils-merge-1.0.1"
sources."uuid-3.4.0"
+ sources."value-or-promise-1.0.6"
sources."vary-1.1.2"
sources."vfile-4.2.1"
sources."vfile-location-2.0.6"
@@ -83772,9 +84006,9 @@ in
})
sources."wrappy-1.0.2"
sources."write-file-atomic-3.0.3"
- sources."ws-7.4.5"
+ sources."ws-7.4.6"
sources."xdg-basedir-4.0.0"
- sources."xstate-4.18.0"
+ sources."xstate-4.19.2"
sources."xtend-4.0.2"
sources."y18n-4.0.3"
sources."yallist-4.0.0"
@@ -83911,15 +84145,14 @@ in
sources."moo-0.5.1"
sources."ms-2.1.2"
sources."multicb-1.2.2"
- sources."multiserver-3.7.1"
+ sources."multiserver-3.7.2"
sources."multiserver-address-1.0.1"
sources."multiserver-scopes-1.0.0"
- sources."muxrpc-6.5.2"
+ sources."muxrpc-6.5.3"
sources."nearley-2.20.1"
sources."node-gyp-build-4.2.3"
sources."node-polyglot-1.0.0"
sources."non-private-ip-1.4.4"
- sources."options-0.0.6"
sources."os-homedir-1.0.2"
sources."packet-stream-2.0.6"
sources."packet-stream-codec-1.1.3"
@@ -83969,7 +84202,7 @@ in
sources."looper-3.0.0"
];
})
- sources."pull-ws-3.3.2"
+ sources."pull-websocket-3.4.2"
sources."punycode-1.4.1"
sources."railroad-diagrams-1.0.0"
sources."randexp-0.4.6"
@@ -84029,8 +84262,8 @@ in
sources."through-2.2.7"
sources."tweetnacl-0.14.5"
sources."tweetnacl-auth-0.3.1"
- sources."ultron-1.0.2"
- sources."ws-1.1.5"
+ sources."typedarray-to-buffer-4.0.0"
+ sources."ws-7.4.6"
sources."xtend-4.0.2"
];
buildInputs = globalBuildInputs;
@@ -84064,15 +84297,15 @@ in
gitmoji-cli = nodeEnv.buildNodePackage {
name = "gitmoji-cli";
packageName = "gitmoji-cli";
- version = "3.4.1";
+ version = "4.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/gitmoji-cli/-/gitmoji-cli-3.4.1.tgz";
- sha512 = "FbNXUYEfnLjtjGovvCT0gegtJRpp2bRjjnP9rI2WXN4j7Sn6L63jSnlCB47iLU28PuUjxCpSAwpFaR0ykdQZMQ==";
+ url = "https://registry.npmjs.org/gitmoji-cli/-/gitmoji-cli-4.1.0.tgz";
+ sha512 = "xf6lKP7Ptas6bIdn/KvOn7UqkPS9/BBKcGCDVrsak/e0dWYeDZIOCMNwWxLp/zEjwBMSiPZtJdOdsIdmWap3bQ==";
};
dependencies = [
sources."@babel/code-frame-7.12.13"
- sources."@babel/helper-validator-identifier-7.12.11"
- (sources."@babel/highlight-7.13.10" // {
+ sources."@babel/helper-validator-identifier-7.14.0"
+ (sources."@babel/highlight-7.14.0" // {
dependencies = [
sources."ansi-styles-3.2.1"
sources."chalk-2.4.2"
@@ -84084,10 +84317,12 @@ in
})
sources."@sindresorhus/is-0.14.0"
sources."@szmarczak/http-timer-1.1.2"
+ sources."@tootallnate/once-1.1.2"
sources."@types/minimist-1.2.1"
sources."@types/normalize-package-data-2.4.0"
- sources."ajv-7.2.4"
- sources."ajv-formats-1.6.1"
+ sources."agent-base-6.0.2"
+ sources."ajv-8.5.0"
+ sources."ajv-formats-2.1.0"
(sources."ansi-align-3.0.0" // {
dependencies = [
sources."ansi-regex-4.1.0"
@@ -84101,6 +84336,11 @@ in
sources."ansi-regex-5.0.0"
sources."ansi-styles-4.3.0"
sources."arrify-1.0.1"
+ (sources."ast-types-0.13.4" // {
+ dependencies = [
+ sources."tslib-2.2.0"
+ ];
+ })
sources."atomically-1.7.0"
sources."base64-js-1.5.1"
sources."bl-4.1.0"
@@ -84111,6 +84351,7 @@ in
];
})
sources."buffer-5.7.1"
+ sources."bytes-3.1.0"
(sources."cacheable-request-6.1.0" // {
dependencies = [
sources."get-stream-5.2.0"
@@ -84130,15 +84371,18 @@ in
sources."clone-response-1.0.2"
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
- sources."conf-9.0.2"
+ sources."conf-10.0.1"
(sources."configstore-5.0.1" // {
dependencies = [
sources."dot-prop-5.3.0"
];
})
+ sources."core-util-is-1.0.2"
sources."cross-spawn-7.0.3"
sources."crypto-random-string-2.0.0"
+ sources."data-uri-to-buffer-3.0.1"
sources."debounce-fn-4.0.0"
+ sources."debug-4.3.2"
sources."decamelize-1.2.0"
(sources."decamelize-keys-1.1.0" // {
dependencies = [
@@ -84147,8 +84391,11 @@ in
})
sources."decompress-response-3.3.0"
sources."deep-extend-0.6.0"
+ sources."deep-is-0.1.3"
sources."defaults-1.0.3"
sources."defer-to-connect-1.1.3"
+ sources."degenerator-2.2.0"
+ sources."depd-1.1.2"
sources."dot-prop-6.0.1"
sources."duplexer3-0.1.4"
sources."emoji-regex-8.0.0"
@@ -84157,14 +84404,28 @@ in
sources."error-ex-1.3.2"
sources."escape-goat-2.1.1"
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."execa-5.0.0"
sources."external-editor-3.1.0"
sources."fast-deep-equal-3.1.3"
+ sources."fast-levenshtein-2.0.6"
sources."figures-3.2.0"
+ sources."file-uri-to-path-2.0.0"
sources."find-up-3.0.0"
+ sources."fs-extra-8.1.0"
+ (sources."ftp-0.3.10" // {
+ dependencies = [
+ sources."readable-stream-1.1.14"
+ sources."string_decoder-0.10.31"
+ ];
+ })
sources."function-bind-1.1.1"
sources."fuse.js-6.4.6"
sources."get-stream-6.0.1"
+ sources."get-uri-3.0.2"
sources."global-dirs-3.0.0"
(sources."got-9.6.0" // {
dependencies = [
@@ -84178,6 +84439,9 @@ in
sources."has-yarn-2.1.0"
sources."hosted-git-info-4.0.2"
sources."http-cache-semantics-4.1.0"
+ sources."http-errors-1.7.3"
+ sources."http-proxy-agent-4.0.1"
+ sources."https-proxy-agent-5.0.0"
sources."human-signals-2.1.0"
sources."iconv-lite-0.4.24"
sources."ieee754-1.2.1"
@@ -84188,9 +84452,10 @@ in
sources."ini-2.0.0"
sources."inquirer-7.3.3"
sources."inquirer-autocomplete-prompt-1.3.0"
+ sources."ip-1.1.5"
sources."is-arrayish-0.2.1"
sources."is-ci-2.0.0"
- sources."is-core-module-2.3.0"
+ sources."is-core-module-2.4.0"
sources."is-fullwidth-code-point-3.0.0"
sources."is-installed-globally-0.4.0"
sources."is-interactive-1.0.0"
@@ -84202,15 +84467,18 @@ in
sources."is-typedarray-1.0.0"
sources."is-unicode-supported-0.1.0"
sources."is-yarn-global-0.3.0"
+ sources."isarray-0.0.1"
sources."isexe-2.0.0"
sources."js-tokens-4.0.0"
sources."json-buffer-3.0.0"
sources."json-parse-even-better-errors-2.3.1"
sources."json-schema-traverse-1.0.0"
sources."json-schema-typed-7.0.3"
+ sources."jsonfile-4.0.0"
sources."keyv-3.1.0"
sources."kind-of-6.0.3"
sources."latest-version-5.1.0"
+ sources."levn-0.3.0"
sources."lines-and-columns-1.1.6"
(sources."locate-path-3.0.0" // {
dependencies = [
@@ -84238,10 +84506,12 @@ in
sources."min-indent-1.0.1"
sources."minimist-1.2.5"
sources."minimist-options-4.1.0"
+ sources."ms-2.1.2"
sources."mute-stream-0.0.8"
+ sources."netmask-2.0.2"
sources."node-fetch-2.6.1"
sources."normalize-package-data-3.0.2"
- sources."normalize-url-4.5.0"
+ sources."normalize-url-4.5.1"
sources."npm-run-path-4.0.1"
sources."once-1.4.0"
(sources."onetime-5.1.2" // {
@@ -84249,12 +84519,15 @@ in
sources."mimic-fn-2.1.0"
];
})
+ sources."optionator-0.8.3"
sources."ora-5.4.0"
sources."os-tmpdir-1.0.2"
sources."p-cancelable-1.1.0"
sources."p-limit-2.3.0"
sources."p-locate-3.0.0"
sources."p-try-2.2.0"
+ sources."pac-proxy-agent-4.1.0"
+ sources."pac-resolver-4.2.0"
(sources."package-json-6.5.0" // {
dependencies = [
sources."semver-6.3.0"
@@ -84263,13 +84536,22 @@ in
sources."parse-json-5.2.0"
sources."path-exists-4.0.0"
sources."path-key-3.1.1"
- sources."path-parse-1.0.6"
+ sources."path-parse-1.0.7"
sources."pkg-up-3.1.0"
+ sources."prelude-ls-1.1.2"
sources."prepend-http-2.0.0"
+ (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."pump-3.0.0"
sources."punycode-2.1.1"
sources."pupa-2.1.1"
sources."quick-lru-4.0.1"
+ sources."raw-body-2.4.1"
(sources."rc-1.2.8" // {
dependencies = [
sources."ini-1.3.8"
@@ -84309,13 +84591,19 @@ in
sources."semver-6.3.0"
];
})
+ sources."setprototypeof-1.1.1"
sources."shebang-command-2.0.0"
sources."shebang-regex-3.0.0"
sources."signal-exit-3.0.3"
+ sources."smart-buffer-4.1.0"
+ sources."socks-2.6.1"
+ sources."socks-proxy-agent-5.0.0"
+ sources."source-map-0.6.1"
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."spdx-license-ids-3.0.9"
+ sources."statuses-1.5.0"
sources."string-width-4.2.2"
sources."string_decoder-1.3.0"
sources."strip-ansi-6.0.0"
@@ -84326,11 +84614,15 @@ in
sources."through-2.3.8"
sources."tmp-0.0.33"
sources."to-readable-stream-1.0.0"
- sources."trim-newlines-3.0.0"
+ sources."toidentifier-1.0.0"
+ sources."trim-newlines-3.0.1"
sources."tslib-1.14.1"
+ sources."type-check-0.3.2"
sources."type-fest-0.21.3"
sources."typedarray-to-buffer-3.1.5"
sources."unique-string-2.0.0"
+ sources."universalify-0.1.2"
+ sources."unpipe-1.0.0"
sources."update-notifier-5.1.0"
sources."uri-js-4.4.1"
sources."url-parse-lax-3.0.0"
@@ -84339,10 +84631,12 @@ in
sources."wcwidth-1.0.1"
sources."which-2.0.2"
sources."widest-line-3.1.0"
+ sources."word-wrap-1.2.3"
sources."wrap-ansi-7.0.0"
sources."wrappy-1.0.2"
sources."write-file-atomic-3.0.3"
sources."xdg-basedir-4.0.0"
+ sources."xregexp-2.0.0"
sources."yallist-4.0.0"
sources."yargs-parser-20.2.7"
];
@@ -84367,8 +84661,8 @@ in
dependencies = [
sources."@ardatan/aggregate-error-0.0.6"
sources."@babel/code-frame-7.12.13"
- sources."@babel/helper-validator-identifier-7.12.11"
- (sources."@babel/highlight-7.13.10" // {
+ sources."@babel/helper-validator-identifier-7.14.0"
+ (sources."@babel/highlight-7.14.0" // {
dependencies = [
sources."ansi-styles-3.2.1"
sources."chalk-2.4.2"
@@ -84381,25 +84675,21 @@ in
sources."@exodus/schemasafe-1.0.0-rc.3"
sources."@graphql-cli/common-4.1.0"
sources."@graphql-cli/init-4.1.0"
- (sources."@graphql-tools/batch-execute-7.1.0" // {
+ (sources."@graphql-tools/batch-execute-7.1.2" // {
dependencies = [
- (sources."@graphql-tools/utils-7.7.3" // {
- dependencies = [
- sources."tslib-2.2.0"
- ];
- })
- sources."tslib-2.1.0"
+ sources."@graphql-tools/utils-7.10.0"
+ sources."tslib-2.2.0"
];
})
- (sources."@graphql-tools/delegate-7.1.2" // {
+ (sources."@graphql-tools/delegate-7.1.5" // {
dependencies = [
- sources."@graphql-tools/utils-7.7.3"
+ sources."@graphql-tools/utils-7.10.0"
sources."tslib-2.2.0"
];
})
(sources."@graphql-tools/graphql-file-loader-6.2.7" // {
dependencies = [
- (sources."@graphql-tools/utils-7.7.3" // {
+ (sources."@graphql-tools/utils-7.10.0" // {
dependencies = [
sources."tslib-2.2.0"
];
@@ -84407,14 +84697,14 @@ in
sources."tslib-2.1.0"
];
})
- (sources."@graphql-tools/import-6.3.0" // {
+ (sources."@graphql-tools/import-6.3.1" // {
dependencies = [
- sources."tslib-2.1.0"
+ sources."tslib-2.2.0"
];
})
(sources."@graphql-tools/json-file-loader-6.2.6" // {
dependencies = [
- (sources."@graphql-tools/utils-7.7.3" // {
+ (sources."@graphql-tools/utils-7.10.0" // {
dependencies = [
sources."tslib-2.2.0"
];
@@ -84422,25 +84712,21 @@ in
];
})
sources."@graphql-tools/load-6.2.4"
- (sources."@graphql-tools/merge-6.2.13" // {
+ (sources."@graphql-tools/merge-6.2.14" // {
dependencies = [
- sources."@graphql-tools/utils-7.7.3"
+ sources."@graphql-tools/utils-7.10.0"
sources."tslib-2.2.0"
];
})
- (sources."@graphql-tools/schema-7.1.3" // {
+ (sources."@graphql-tools/schema-7.1.5" // {
dependencies = [
- (sources."@graphql-tools/utils-7.7.3" // {
- dependencies = [
- sources."tslib-2.2.0"
- ];
- })
- sources."tslib-2.1.0"
+ sources."@graphql-tools/utils-7.10.0"
+ sources."tslib-2.2.0"
];
})
- (sources."@graphql-tools/url-loader-6.8.3" // {
+ (sources."@graphql-tools/url-loader-6.10.1" // {
dependencies = [
- sources."@graphql-tools/utils-7.7.3"
+ sources."@graphql-tools/utils-7.10.0"
sources."cross-fetch-3.1.4"
sources."form-data-4.0.0"
sources."tslib-2.2.0"
@@ -84455,25 +84741,24 @@ in
})
];
})
- (sources."@graphql-tools/wrap-7.0.5" // {
+ (sources."@graphql-tools/wrap-7.0.8" // {
dependencies = [
- (sources."@graphql-tools/utils-7.7.3" // {
- dependencies = [
- sources."tslib-2.2.0"
- ];
- })
+ sources."@graphql-tools/utils-7.10.0"
+ sources."tslib-2.2.0"
];
})
sources."@kwsites/file-exists-1.1.1"
sources."@kwsites/promise-deferred-1.1.1"
+ sources."@microsoft/fetch-event-source-2.0.1"
sources."@nodelib/fs.scandir-2.1.4"
sources."@nodelib/fs.stat-2.0.4"
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.41"
+ sources."@types/node-15.6.1"
sources."@types/parse-json-4.0.0"
sources."@types/websocket-1.0.2"
+ sources."abort-controller-3.0.0"
sources."aggregate-error-3.1.0"
sources."ajv-6.12.6"
(sources."ansi-escapes-4.3.2" // {
@@ -84484,22 +84769,22 @@ in
sources."ansi-regex-4.1.0"
sources."ansi-styles-4.3.0"
sources."argparse-1.0.10"
- sources."array-filter-1.0.0"
sources."array-union-2.1.0"
sources."asn1-0.2.4"
sources."assert-plus-1.0.0"
+ sources."async-limiter-1.0.1"
sources."asynckit-0.4.0"
sources."at-least-node-1.0.0"
- sources."available-typed-arrays-1.0.2"
+ sources."available-typed-arrays-1.0.4"
sources."aws-sign2-0.7.0"
sources."aws4-1.11.0"
+ sources."backo2-1.0.2"
sources."balanced-match-1.0.2"
sources."base64-js-1.5.1"
sources."bcrypt-pbkdf-1.0.2"
sources."brace-expansion-1.1.11"
sources."braces-3.0.2"
sources."buffer-5.7.1"
- sources."busboy-0.3.1"
(sources."cacheable-request-6.1.0" // {
dependencies = [
sources."get-stream-5.2.0"
@@ -84559,22 +84844,21 @@ in
sources."defer-to-connect-1.1.3"
sources."define-properties-1.1.3"
sources."delayed-stream-1.0.0"
- sources."depd-1.1.2"
- sources."dicer-0.3.0"
sources."dir-glob-3.0.1"
sources."duplexer3-0.1.4"
sources."ecc-jsbn-0.1.2"
sources."emoji-regex-8.0.0"
sources."end-of-stream-1.4.4"
sources."error-ex-1.3.2"
- sources."es-abstract-1.18.0"
+ sources."es-abstract-1.18.3"
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"
sources."escape-string-regexp-1.0.5"
sources."esprima-4.0.1"
- sources."eventsource-1.1.0"
+ sources."event-target-shim-5.0.1"
+ sources."eventemitter3-3.1.2"
sources."execa-1.0.0"
sources."extend-3.0.2"
(sources."external-editor-3.1.0" // {
@@ -84597,7 +84881,6 @@ in
sources."forever-agent-0.6.1"
sources."form-data-2.3.3"
sources."form-urlencoded-4.5.1"
- sources."fs-capacitor-6.2.0"
sources."fs-extra-9.0.1"
sources."fs-minipass-2.1.0"
sources."fs.realpath-1.0.0"
@@ -84607,7 +84890,7 @@ in
sources."get-intrinsic-1.1.1"
sources."get-stream-4.1.0"
sources."getpass-0.1.7"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."glob-parent-5.1.2"
sources."globby-11.0.1"
(sources."got-9.6.0" // {
@@ -84624,8 +84907,7 @@ in
})
sources."graphql-subscriptions-1.2.1"
sources."graphql-type-json-0.3.2"
- sources."graphql-upload-11.0.0"
- sources."graphql-ws-4.4.2"
+ sources."graphql-ws-4.5.2"
sources."har-schema-2.0.0"
sources."har-validator-5.1.5"
sources."has-1.0.3"
@@ -84633,7 +84915,6 @@ in
sources."has-flag-4.0.0"
sources."has-symbols-1.0.2"
sources."http-cache-semantics-4.1.0"
- sources."http-errors-1.8.0"
sources."http-signature-1.2.0"
sources."http2-client-1.3.3"
sources."iconv-lite-0.4.24"
@@ -84661,10 +84942,10 @@ in
})
sources."is-arguments-1.1.0"
sources."is-arrayish-0.2.1"
- sources."is-bigint-1.0.1"
- sources."is-boolean-object-1.1.0"
+ sources."is-bigint-1.0.2"
+ sources."is-boolean-object-1.1.1"
sources."is-callable-1.2.3"
- sources."is-date-object-1.0.2"
+ sources."is-date-object-1.0.4"
sources."is-docker-2.2.1"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-3.0.0"
@@ -84673,13 +84954,13 @@ in
sources."is-map-2.0.2"
sources."is-negative-zero-2.0.1"
sources."is-number-7.0.0"
- sources."is-number-object-1.0.4"
+ sources."is-number-object-1.0.5"
sources."is-promise-4.0.0"
- sources."is-regex-1.1.2"
+ sources."is-regex-1.1.3"
sources."is-set-2.0.2"
sources."is-stream-1.1.0"
- sources."is-string-1.0.5"
- sources."is-symbol-1.0.3"
+ sources."is-string-1.0.6"
+ sources."is-symbol-1.0.4"
sources."is-typed-array-1.1.5"
sources."is-typedarray-1.0.0"
sources."is-unicode-supported-0.1.0"
@@ -84688,7 +84969,6 @@ in
sources."is-wsl-2.2.0"
sources."isarray-2.0.5"
sources."isexe-2.0.0"
- sources."isobject-4.0.0"
sources."isomorphic-ws-4.0.1"
sources."isstream-0.1.2"
sources."iterall-1.3.0"
@@ -84736,6 +85016,7 @@ in
];
})
sources."merge2-1.4.1"
+ sources."meros-1.1.4"
sources."micromatch-4.0.4"
sources."mime-db-1.47.0"
sources."mime-types-2.1.30"
@@ -84759,7 +85040,7 @@ in
sources."node-fetch-h2-2.3.0"
sources."node-readfiles-0.2.0"
sources."normalize-path-2.1.1"
- sources."normalize-url-4.5.0"
+ sources."normalize-url-4.5.1"
sources."npm-run-path-2.0.2"
sources."oas-kit-common-1.0.8"
sources."oas-linter-3.2.1"
@@ -84771,10 +85052,9 @@ in
sources."oas-schema-walker-1.1.5"
sources."oas-validator-5.0.5"
sources."oauth-sign-0.9.0"
- sources."object-inspect-1.10.2"
+ sources."object-inspect-1.10.3"
sources."object-is-1.1.5"
sources."object-keys-1.1.1"
- sources."object-path-0.11.5"
sources."object.assign-4.1.2"
sources."once-1.4.0"
sources."onetime-2.0.1"
@@ -84791,10 +85071,9 @@ in
sources."strip-ansi-6.0.0"
];
})
- sources."original-1.0.2"
sources."os-tmpdir-1.0.2"
sources."p-any-2.1.0"
- sources."p-cancelable-2.1.0"
+ sources."p-cancelable-2.1.1"
sources."p-defer-1.0.0"
sources."p-finally-1.0.0"
sources."p-is-promise-2.1.0"
@@ -84819,14 +85098,13 @@ in
sources."path-key-2.0.1"
sources."path-type-4.0.0"
sources."performance-now-2.1.0"
- sources."picomatch-2.2.3"
+ sources."picomatch-2.3.0"
sources."pluralize-8.0.0"
sources."prepend-http-2.0.0"
sources."psl-1.8.0"
sources."pump-3.0.0"
sources."punycode-2.1.1"
sources."qs-6.5.2"
- sources."querystringify-2.2.0"
sources."queue-microtask-1.2.3"
sources."rc-1.2.8"
sources."reftools-1.1.8"
@@ -84836,7 +85114,6 @@ in
sources."remove-trailing-separator-1.1.0"
sources."request-2.88.2"
sources."require-directory-2.1.1"
- sources."requires-port-1.0.0"
sources."resolve-from-5.0.0"
sources."responselike-1.0.2"
sources."restore-cursor-2.0.0"
@@ -84852,7 +85129,6 @@ in
sources."safe-buffer-5.2.1"
sources."safer-buffer-2.1.2"
sources."semver-5.7.1"
- sources."setprototypeof-1.2.0"
sources."shebang-command-1.2.0"
sources."shebang-regex-1.0.0"
sources."should-13.2.3"
@@ -84866,10 +85142,7 @@ in
sources."simple-git-2.21.0"
sources."slash-3.0.0"
sources."sprintf-js-1.0.3"
- sources."sse-z-0.3.0"
sources."sshpk-1.16.1"
- sources."statuses-1.5.0"
- sources."streamsearch-0.1.2"
sources."string-env-interpolation-1.0.1"
(sources."string-width-4.2.2" // {
dependencies = [
@@ -84882,19 +85155,24 @@ in
sources."strip-ansi-5.2.0"
sources."strip-eof-1.0.0"
sources."strip-json-comments-2.0.1"
+ (sources."subscriptions-transport-ws-0.9.18" // {
+ dependencies = [
+ sources."ws-5.2.2"
+ ];
+ })
sources."supports-color-7.2.0"
(sources."swagger2openapi-7.0.5" // {
dependencies = [
sources."yargs-16.2.0"
];
})
+ sources."symbol-observable-1.2.0"
sources."sync-fetch-0.3.0"
sources."tar-6.0.5"
sources."through-2.3.8"
sources."tmp-0.2.1"
sources."to-readable-stream-1.0.0"
sources."to-regex-range-5.0.1"
- sources."toidentifier-1.0.0"
sources."tough-cookie-2.5.0"
sources."tslib-2.0.2"
sources."tunnel-agent-0.6.0"
@@ -84904,10 +85182,10 @@ in
sources."universalify-1.0.0"
sources."unixify-1.0.0"
sources."uri-js-4.4.1"
- sources."url-parse-1.5.1"
sources."url-parse-lax-3.0.0"
sources."uuid-3.4.0"
sources."valid-url-1.0.9"
+ sources."value-or-promise-1.0.6"
sources."verror-1.10.0"
sources."wcwidth-1.0.1"
sources."which-1.3.1"
@@ -84941,10 +85219,10 @@ in
grunt-cli = nodeEnv.buildNodePackage {
name = "grunt-cli";
packageName = "grunt-cli";
- version = "1.4.2";
+ version = "1.4.3";
src = fetchurl {
- url = "https://registry.npmjs.org/grunt-cli/-/grunt-cli-1.4.2.tgz";
- sha512 = "wsu6BZh7KCnfeaSkDrKIAvOlqGKxNRTZjc8xfZlvxCByQIqUfZ31kh5uHpPnhQ4NdVgvaWaVxa1LUbVU80nACw==";
+ url = "https://registry.npmjs.org/grunt-cli/-/grunt-cli-1.4.3.tgz";
+ sha512 = "9Dtx/AhVeB4LYzsViCjUQkd0Kw0McN2gYpdmGYKtE2a5Yt7v1Q+HYZVWhqXc/kGnxlMtqKDxSwotiGeFmkrCoQ==";
};
dependencies = [
sources."abbrev-1.1.1"
@@ -84963,13 +85241,13 @@ in
sources."function-bind-1.1.1"
sources."global-modules-1.0.0"
sources."global-prefix-1.0.2"
- sources."grunt-known-options-1.1.1"
+ sources."grunt-known-options-2.0.0"
sources."has-1.0.3"
sources."homedir-polyfill-1.0.3"
sources."ini-1.3.8"
sources."interpret-1.1.0"
sources."is-absolute-1.0.0"
- sources."is-core-module-2.3.0"
+ sources."is-core-module-2.4.0"
sources."is-extglob-2.1.1"
sources."is-glob-4.0.1"
sources."is-number-7.0.0"
@@ -84993,10 +85271,10 @@ in
sources."osenv-0.1.5"
sources."parse-filepath-1.0.2"
sources."parse-passwd-1.0.0"
- sources."path-parse-1.0.6"
+ sources."path-parse-1.0.7"
sources."path-root-0.1.1"
sources."path-root-regex-0.1.2"
- sources."picomatch-2.2.3"
+ sources."picomatch-2.3.0"
sources."rechoir-0.7.0"
sources."resolve-1.20.0"
sources."resolve-dir-1.0.1"
@@ -85130,7 +85408,7 @@ in
sources."esutils-2.0.3"
sources."graphql-14.7.0"
sources."has-ansi-2.0.0"
- sources."iconv-lite-0.6.2"
+ sources."iconv-lite-0.6.3"
sources."is-stream-1.1.0"
sources."iterall-1.3.0"
sources."js-tokens-3.0.2"
@@ -85227,7 +85505,7 @@ in
sources."supports-color-7.2.0"
];
})
- sources."systeminformation-4.34.20"
+ sources."systeminformation-4.34.23"
sources."term-canvas-0.0.5"
sources."type-fest-0.21.3"
sources."wordwrap-0.0.3"
@@ -85431,7 +85709,7 @@ in
sources."get-caller-file-1.0.3"
sources."get-intrinsic-1.1.1"
sources."get-value-2.0.6"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
(sources."glob-parent-3.1.0" // {
dependencies = [
sources."is-glob-3.1.0"
@@ -85465,7 +85743,7 @@ in
sources."is-arrayish-0.2.1"
sources."is-binary-path-1.0.1"
sources."is-buffer-1.1.6"
- sources."is-core-module-2.3.0"
+ sources."is-core-module-2.4.0"
sources."is-data-descriptor-1.0.0"
sources."is-descriptor-1.0.2"
sources."is-extendable-0.1.1"
@@ -85552,7 +85830,7 @@ in
sources."path-dirname-1.0.2"
sources."path-exists-2.1.0"
sources."path-is-absolute-1.0.1"
- sources."path-parse-1.0.6"
+ sources."path-parse-1.0.7"
sources."path-root-0.1.1"
sources."path-root-regex-0.1.2"
sources."path-type-1.1.0"
@@ -85629,7 +85907,7 @@ in
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."spdx-license-ids-3.0.9"
sources."split-string-3.1.0"
sources."stack-trace-0.0.10"
(sources."static-extend-0.1.2" // {
@@ -85867,7 +86145,7 @@ in
})
sources."is-arrayish-0.2.1"
sources."is-buffer-1.1.6"
- sources."is-core-module-2.3.0"
+ sources."is-core-module-2.4.0"
(sources."is-data-descriptor-1.0.0" // {
dependencies = [
sources."kind-of-6.0.3"
@@ -85963,7 +86241,7 @@ in
sources."parse-passwd-1.0.0"
sources."pascalcase-0.1.1"
sources."path-exists-2.1.0"
- sources."path-parse-1.0.6"
+ sources."path-parse-1.0.7"
sources."path-root-0.1.1"
sources."path-root-regex-0.1.2"
sources."path-type-1.1.0"
@@ -86026,7 +86304,7 @@ in
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."spdx-license-ids-3.0.9"
sources."split-string-3.1.0"
sources."stack-trace-0.0.10"
(sources."static-extend-0.1.2" // {
@@ -86123,7 +86401,7 @@ in
sources."param-case-2.1.1"
sources."relateurl-0.2.7"
sources."source-map-0.6.1"
- sources."uglify-js-3.13.4"
+ sources."uglify-js-3.13.8"
sources."upper-case-1.1.3"
];
buildInputs = globalBuildInputs;
@@ -86247,7 +86525,7 @@ in
sources."debug-3.2.7"
sources."ecstatic-3.3.2"
sources."eventemitter3-4.0.7"
- sources."follow-redirects-1.13.3"
+ sources."follow-redirects-1.14.1"
sources."function-bind-1.1.1"
sources."get-intrinsic-1.1.1"
sources."has-1.0.3"
@@ -86259,7 +86537,7 @@ in
sources."minimist-1.2.5"
sources."mkdirp-0.5.5"
sources."ms-2.1.3"
- sources."object-inspect-1.10.2"
+ sources."object-inspect-1.10.3"
sources."opener-1.5.2"
sources."portfinder-1.0.28"
sources."qs-6.10.1"
@@ -86410,7 +86688,7 @@ in
sources."extsprintf-1.4.0"
sources."fs.realpath-1.0.0"
sources."fuzzyset.js-0.0.1"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."hue-sdk-0.1.0"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
@@ -86784,7 +87062,7 @@ in
};
dependencies = [
sources."@types/jquery-3.5.5"
- sources."@types/sizzle-2.3.2"
+ sources."@types/sizzle-2.3.3"
sources."arch-2.2.0"
sources."balanced-match-1.0.2"
sources."brace-expansion-1.1.11"
@@ -86801,7 +87079,7 @@ in
sources."fs-extra-0.24.0"
sources."fs.realpath-1.0.0"
sources."get-stream-4.1.0"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."good-listener-1.2.2"
sources."graceful-fs-4.2.6"
sources."historic-readline-1.0.8"
@@ -86812,7 +87090,7 @@ in
sources."is-wsl-2.2.0"
sources."isexe-2.0.0"
sources."jquery-3.6.0"
- sources."jquery.terminal-2.23.2"
+ sources."jquery.terminal-2.24.0"
sources."jsonfile-2.4.0"
sources."keyboardevent-key-polyfill-1.1.0"
sources."line-reader-0.4.0"
@@ -86956,7 +87234,7 @@ in
sources."get-intrinsic-1.1.1"
sources."get-stream-4.1.0"
sources."get-uri-3.0.2"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."graceful-fs-4.2.6"
sources."has-1.0.3"
sources."has-flag-4.0.0"
@@ -87037,7 +87315,7 @@ in
sources."path-key-2.0.1"
];
})
- sources."object-inspect-1.10.2"
+ sources."object-inspect-1.10.3"
sources."once-1.4.0"
sources."onetime-2.0.1"
sources."open-7.4.2"
@@ -87144,7 +87422,7 @@ in
})
sources."wrappy-1.0.2"
sources."write-file-atomic-3.0.3"
- sources."ws-7.4.5"
+ sources."ws-7.4.6"
sources."xregexp-2.0.0"
sources."yallist-3.1.1"
];
@@ -87169,9 +87447,9 @@ in
};
dependencies = [
sources."@iarna/toml-2.2.5"
- sources."@ot-builder/bin-composite-types-1.0.4"
- sources."@ot-builder/bin-util-1.0.4"
- (sources."@ot-builder/cli-help-shower-1.0.4" // {
+ sources."@ot-builder/bin-composite-types-1.0.7"
+ sources."@ot-builder/bin-util-1.0.7"
+ (sources."@ot-builder/cli-help-shower-1.0.7" // {
dependencies = [
sources."ansi-styles-4.3.0"
sources."chalk-4.1.1"
@@ -87181,7 +87459,7 @@ in
sources."supports-color-7.2.0"
];
})
- (sources."@ot-builder/cli-proc-1.0.4" // {
+ (sources."@ot-builder/cli-proc-1.0.7" // {
dependencies = [
sources."ansi-styles-4.3.0"
sources."chalk-4.1.1"
@@ -87191,7 +87469,7 @@ in
sources."supports-color-7.2.0"
];
})
- (sources."@ot-builder/cli-shared-1.0.4" // {
+ (sources."@ot-builder/cli-shared-1.0.7" // {
dependencies = [
sources."ansi-styles-4.3.0"
sources."chalk-4.1.1"
@@ -87201,36 +87479,37 @@ in
sources."supports-color-7.2.0"
];
})
- sources."@ot-builder/common-impl-1.0.4"
- sources."@ot-builder/errors-1.0.4"
- sources."@ot-builder/io-bin-cff-1.0.4"
- sources."@ot-builder/io-bin-encoding-1.0.4"
- sources."@ot-builder/io-bin-ext-private-1.0.4"
- sources."@ot-builder/io-bin-font-1.0.4"
- sources."@ot-builder/io-bin-glyph-store-1.0.4"
- sources."@ot-builder/io-bin-layout-1.0.4"
- sources."@ot-builder/io-bin-metadata-1.0.4"
- sources."@ot-builder/io-bin-metric-1.0.4"
- sources."@ot-builder/io-bin-name-1.0.4"
- sources."@ot-builder/io-bin-sfnt-1.0.4"
- sources."@ot-builder/io-bin-ttf-1.0.4"
- sources."@ot-builder/ot-1.0.4"
- sources."@ot-builder/ot-encoding-1.0.4"
- sources."@ot-builder/ot-ext-private-1.0.4"
- sources."@ot-builder/ot-glyphs-1.0.4"
- sources."@ot-builder/ot-layout-1.0.4"
- sources."@ot-builder/ot-metadata-1.0.4"
- sources."@ot-builder/ot-name-1.0.4"
- sources."@ot-builder/ot-sfnt-1.0.4"
- sources."@ot-builder/ot-standard-glyph-namer-1.0.4"
- sources."@ot-builder/prelude-1.0.4"
- sources."@ot-builder/primitive-1.0.4"
- sources."@ot-builder/rectify-1.0.4"
- sources."@ot-builder/stat-glyphs-1.0.4"
- sources."@ot-builder/trace-1.0.4"
- sources."@ot-builder/var-store-1.0.4"
- sources."@ot-builder/variance-1.0.4"
+ sources."@ot-builder/common-impl-1.0.7"
+ sources."@ot-builder/errors-1.0.7"
+ sources."@ot-builder/io-bin-cff-1.0.7"
+ sources."@ot-builder/io-bin-encoding-1.0.7"
+ sources."@ot-builder/io-bin-ext-private-1.0.7"
+ sources."@ot-builder/io-bin-font-1.0.7"
+ sources."@ot-builder/io-bin-glyph-store-1.0.7"
+ sources."@ot-builder/io-bin-layout-1.0.7"
+ sources."@ot-builder/io-bin-metadata-1.0.7"
+ sources."@ot-builder/io-bin-metric-1.0.7"
+ sources."@ot-builder/io-bin-name-1.0.7"
+ sources."@ot-builder/io-bin-sfnt-1.0.7"
+ sources."@ot-builder/io-bin-ttf-1.0.7"
+ sources."@ot-builder/ot-1.0.7"
+ sources."@ot-builder/ot-encoding-1.0.7"
+ sources."@ot-builder/ot-ext-private-1.0.7"
+ sources."@ot-builder/ot-glyphs-1.0.7"
+ sources."@ot-builder/ot-layout-1.0.7"
+ sources."@ot-builder/ot-metadata-1.0.7"
+ sources."@ot-builder/ot-name-1.0.7"
+ sources."@ot-builder/ot-sfnt-1.0.7"
+ sources."@ot-builder/ot-standard-glyph-namer-1.0.7"
+ sources."@ot-builder/prelude-1.0.7"
+ sources."@ot-builder/primitive-1.0.7"
+ sources."@ot-builder/rectify-1.0.7"
+ sources."@ot-builder/stat-glyphs-1.0.7"
+ sources."@ot-builder/trace-1.0.7"
+ sources."@ot-builder/var-store-1.0.7"
+ sources."@ot-builder/variance-1.0.7"
sources."@unicode/unicode-13.0.0-1.0.6"
+ sources."aglfn-1.0.2"
sources."amdefine-1.0.1"
sources."ansi-regex-5.0.0"
sources."ansi-styles-3.2.1"
@@ -87293,11 +87572,11 @@ in
sources."fs-extra-9.1.0"
sources."fs.realpath-1.0.0"
sources."get-caller-file-2.0.5"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."graceful-fs-4.2.6"
sources."has-flag-3.0.0"
sources."hashish-0.0.4"
- sources."iconv-lite-0.6.2"
+ sources."iconv-lite-0.6.3"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."is-fullwidth-code-point-3.0.0"
@@ -87315,8 +87594,8 @@ in
sources."once-1.4.0"
sources."onetime-5.1.2"
sources."optionator-0.8.3"
- sources."ot-builder-1.0.4"
- (sources."otb-ttc-bundle-1.0.4" // {
+ sources."ot-builder-1.0.7"
+ (sources."otb-ttc-bundle-1.0.7" // {
dependencies = [
sources."ansi-styles-4.3.0"
sources."chalk-4.1.1"
@@ -87486,7 +87765,7 @@ in
sources."fast-json-patch-2.2.1"
sources."fs.realpath-1.0.0"
sources."get-func-name-2.0.0"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."has-flag-3.0.0"
sources."hexer-1.5.0"
sources."inflight-1.0.6"
@@ -87544,26 +87823,30 @@ in
joplin = nodeEnv.buildNodePackage {
name = "joplin";
packageName = "joplin";
- version = "1.6.4";
+ version = "1.8.1";
src = fetchurl {
- url = "https://registry.npmjs.org/joplin/-/joplin-1.6.4.tgz";
- sha512 = "jfiqk9aqN3mAZ+TIGqubTKGTBB5Q8KRmeXS2qr/2N80KFJHCqdCFhsyI/E2hfdd3CA4Gu5Ls9WTxXA3MW/XjwA==";
+ url = "https://registry.npmjs.org/joplin/-/joplin-1.8.1.tgz";
+ sha512 = "ukyHTdD3LgHl5A9No350YkAlxMRoWVhP9FR8MVhyXS1I8p6kSW27FZF3r8FBLxfwHnGvRQM7gwBRHJDKprEG8A==";
};
dependencies = [
sources."@braintree/sanitize-url-3.1.0"
sources."@cronvel/get-pixels-3.4.0"
- sources."@joplin/fork-htmlparser2-4.1.23"
- sources."@joplin/fork-sax-1.2.27"
- sources."@joplin/lib-1.0.18"
- (sources."@joplin/renderer-1.0.26" // {
+ sources."@joplin/fork-htmlparser2-4.1.24"
+ sources."@joplin/fork-sax-1.2.28"
+ sources."@joplin/lib-1.8.2"
+ (sources."@joplin/renderer-1.8.2" // {
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.45"
- sources."@joplin/turndown-plugin-gfm-1.0.27"
+ (sources."@joplin/turndown-4.0.46" // {
+ dependencies = [
+ sources."css-2.2.4"
+ ];
+ })
+ sources."@joplin/turndown-plugin-gfm-1.0.28"
sources."abab-2.0.5"
sources."abbrev-1.1.1"
sources."acorn-7.4.1"
@@ -87603,7 +87886,7 @@ in
sources."async-mutex-0.1.4"
sources."asynckit-0.4.0"
sources."atob-2.1.2"
- (sources."aws-sdk-2.892.0" // {
+ (sources."aws-sdk-2.918.0" // {
dependencies = [
sources."sax-1.2.1"
sources."uuid-3.3.2"
@@ -87639,7 +87922,7 @@ in
sources."charenc-0.0.2"
sources."chokidar-3.5.1"
sources."chownr-1.1.4"
- sources."chroma-js-2.1.1"
+ sources."chroma-js-2.1.2"
sources."clean-css-4.2.3"
sources."clean-html-1.5.0"
sources."cliss-0.0.2"
@@ -87659,7 +87942,11 @@ in
sources."cross-env-6.0.3"
sources."cross-spawn-7.0.3"
sources."crypt-0.0.2"
- sources."css-2.2.4"
+ (sources."css-3.0.0" // {
+ dependencies = [
+ sources."source-map-resolve-0.6.0"
+ ];
+ })
sources."css-b64-images-0.2.5"
sources."cssom-0.4.4"
(sources."cssstyle-2.3.0" // {
@@ -87715,7 +88002,7 @@ in
sources."depd-1.1.2"
sources."detect-libc-1.0.3"
sources."diff-match-patch-1.0.5"
- (sources."dom-serializer-1.3.1" // {
+ (sources."dom-serializer-1.3.2" // {
dependencies = [
sources."domhandler-4.2.0"
];
@@ -87740,7 +88027,7 @@ in
})
(sources."encoding-0.1.13" // {
dependencies = [
- sources."iconv-lite-0.6.2"
+ sources."iconv-lite-0.6.3"
];
})
sources."end-of-stream-1.4.4"
@@ -87764,7 +88051,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.3"
+ sources."follow-redirects-1.14.1"
sources."font-awesome-filetypes-2.1.0"
sources."for-each-property-0.0.4"
sources."for-each-property-deep-0.0.3"
@@ -87790,7 +88077,7 @@ in
sources."get-stdin-5.0.1"
sources."getpass-0.1.7"
sources."github-from-package-0.0.0"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."glob-parent-5.1.2"
sources."graceful-fs-4.2.6"
sources."graphlib-2.1.8"
@@ -87824,7 +88111,7 @@ in
sources."http-signature-1.2.0"
sources."iconv-lite-0.4.24"
sources."ieee754-1.1.13"
- sources."ignore-walk-3.0.3"
+ sources."ignore-walk-3.0.4"
(sources."image-data-uri-2.0.1" // {
dependencies = [
sources."fs-extra-0.26.7"
@@ -87897,12 +88184,12 @@ in
sources."json-stringify-safe-5.0.1"
sources."jsonfile-2.4.0"
sources."jsprim-1.4.1"
- (sources."katex-0.12.0" // {
+ (sources."katex-0.13.11" // {
dependencies = [
- sources."commander-2.20.3"
+ sources."commander-6.2.1"
];
})
- sources."keytar-7.6.0"
+ sources."keytar-7.7.0"
sources."khroma-1.4.1"
sources."klaw-1.3.1"
sources."lazyness-1.2.0"
@@ -87935,7 +88222,7 @@ in
sources."markdown-it-deflist-2.1.0"
sources."markdown-it-emoji-1.4.0"
sources."markdown-it-expand-tabs-1.0.13"
- sources."markdown-it-footnote-3.0.2"
+ sources."markdown-it-footnote-3.0.3"
sources."markdown-it-ins-3.0.1"
sources."markdown-it-mark-3.0.1"
(sources."markdown-it-multimd-table-4.1.0" // {
@@ -87951,7 +88238,7 @@ in
sources."md5-2.3.0"
sources."md5-file-4.0.0"
sources."mdurl-1.0.1"
- sources."mermaid-8.9.2"
+ sources."mermaid-8.10.1"
sources."mime-db-1.47.0"
sources."mime-types-2.1.30"
sources."mimic-response-2.1.0"
@@ -87961,7 +88248,7 @@ in
sources."debug-4.3.2"
sources."html-minifier-4.0.0"
sources."ms-2.1.2"
- sources."uglify-js-3.13.4"
+ sources."uglify-js-3.13.8"
];
})
sources."minimatch-3.0.4"
@@ -87979,19 +88266,19 @@ in
sources."ms-2.1.3"
sources."multiparty-4.2.2"
sources."mustache-4.2.0"
- sources."nanoid-3.1.22"
+ sources."nanoid-3.1.23"
sources."napi-build-utils-1.0.2"
sources."ndarray-1.0.19"
sources."ndarray-pack-1.2.1"
sources."needle-2.6.0"
- sources."nextgen-events-1.3.4"
+ sources."nextgen-events-1.4.0"
sources."no-case-2.3.2"
- (sources."node-abi-2.26.0" // {
+ (sources."node-abi-2.30.0" // {
dependencies = [
sources."semver-5.7.1"
];
})
- sources."node-addon-api-3.1.0"
+ sources."node-addon-api-3.2.1"
sources."node-bitmap-0.0.1"
sources."node-emoji-1.10.0"
sources."node-fetch-1.7.3"
@@ -88047,7 +88334,7 @@ in
sources."path-is-absolute-1.0.1"
sources."path-key-3.1.1"
sources."performance-now-2.1.0"
- sources."picomatch-2.2.3"
+ sources."picomatch-2.3.0"
sources."pify-3.0.0"
sources."pipe-functions-1.3.0"
sources."pn-1.1.0"
@@ -88256,7 +88543,7 @@ in
];
})
sources."wrappy-1.0.2"
- sources."ws-7.4.5"
+ sources."ws-7.4.6"
sources."xml-name-validator-3.0.0"
sources."xml2js-0.4.23"
sources."xmlbuilder-11.0.1"
@@ -88291,7 +88578,7 @@ in
sources."config-chain-1.1.12"
sources."editorconfig-0.15.3"
sources."fs.realpath-1.0.0"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."ini-1.3.8"
@@ -88342,16 +88629,16 @@ in
jsdoc = nodeEnv.buildNodePackage {
name = "jsdoc";
packageName = "jsdoc";
- version = "3.6.6";
+ version = "3.6.7";
src = fetchurl {
- url = "https://registry.npmjs.org/jsdoc/-/jsdoc-3.6.6.tgz";
- sha512 = "znR99e1BHeyEkSvgDDpX0sTiTu+8aQyDl9DawrkOGZTTW8hv0deIFXx87114zJ7gRaDZKVQD/4tr1ifmJp9xhQ==";
+ url = "https://registry.npmjs.org/jsdoc/-/jsdoc-3.6.7.tgz";
+ sha512 = "sxKt7h0vzCd+3Y81Ey2qinupL6DpRSZJclS04ugHDNmRUXGzqicMJ6iwayhSA0S0DwwX30c5ozyUthr1QKF6uw==";
};
dependencies = [
- sources."@babel/parser-7.13.16"
+ sources."@babel/parser-7.14.4"
sources."argparse-1.0.10"
sources."bluebird-3.7.2"
- sources."catharsis-0.8.11"
+ sources."catharsis-0.9.0"
sources."entities-2.0.3"
sources."escape-string-regexp-2.0.0"
sources."graceful-fs-4.2.6"
@@ -88361,7 +88648,7 @@ in
sources."lodash-4.17.21"
sources."markdown-it-10.0.0"
sources."markdown-it-anchor-5.3.0"
- sources."marked-0.8.2"
+ sources."marked-2.0.6"
sources."mdurl-1.0.1"
sources."mkdirp-1.0.4"
sources."requizzle-0.2.3"
@@ -88369,7 +88656,7 @@ in
sources."strip-json-comments-3.1.1"
sources."taffydb-2.6.2"
sources."uc.micro-1.0.6"
- sources."underscore-1.10.2"
+ sources."underscore-1.13.1"
sources."xmlcreate-2.0.3"
];
buildInputs = globalBuildInputs;
@@ -88410,7 +88697,7 @@ in
sources."entities-1.0.0"
sources."exit-0.1.2"
sources."fs.realpath-1.0.0"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."htmlparser2-3.8.3"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
@@ -88438,10 +88725,10 @@ in
json = nodeEnv.buildNodePackage {
name = "json";
packageName = "json";
- version = "10.0.0";
+ version = "11.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/json/-/json-10.0.0.tgz";
- sha512 = "iK7tAZtpoghibjdB1ncCWykeBMmke3JThUe+rnkD4qkZaglOIQ70Pw7r5UJ4lyUT+7gnw7ehmmLUHDuhqzQD+g==";
+ url = "https://registry.npmjs.org/json/-/json-11.0.0.tgz";
+ sha512 = "N/ITv3Yw9Za8cGxuQqSqrq6RHnlaHWZkAFavcfpH/R52522c26EbihMxnY7A1chxfXJ4d+cEFIsyTgfi9GihrA==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -88515,7 +88802,7 @@ in
sources."mime-types-2.1.30"
sources."ms-2.1.3"
sources."native-promise-only-0.8.1"
- sources."object-inspect-1.10.2"
+ sources."object-inspect-1.10.3"
sources."path-loader-1.0.10"
sources."process-nextick-args-2.0.1"
sources."punycode-2.1.1"
@@ -88682,9 +88969,9 @@ in
];
})
sources."ms-2.0.0"
- sources."nanoid-3.1.22"
+ sources."nanoid-3.1.23"
sources."negotiator-0.6.2"
- sources."normalize-url-4.5.0"
+ sources."normalize-url-4.5.1"
sources."object-assign-4.1.1"
sources."on-finished-2.3.0"
sources."on-headers-1.0.2"
@@ -88854,7 +89141,7 @@ in
];
})
sources."@oclif/screen-1.0.4"
- sources."@putdotio/api-client-8.15.3"
+ sources."@putdotio/api-client-8.16.0"
sources."ajv-6.12.6"
sources."ansi-escapes-4.3.2"
sources."ansi-regex-5.0.0"
@@ -88909,7 +89196,7 @@ in
sources."delayed-stream-1.0.0"
sources."dir-glob-3.0.1"
sources."dot-prop-5.3.0"
- sources."dotenv-8.2.0"
+ sources."dotenv-8.6.0"
sources."emoji-regex-8.0.0"
sources."env-paths-2.2.1"
sources."es5-ext-0.10.53"
@@ -88991,7 +89278,7 @@ in
sources."next-tick-1.0.0"
sources."nice-try-1.0.5"
sources."node-downloader-helper-1.0.18"
- sources."object-inspect-1.10.2"
+ sources."object-inspect-1.10.3"
sources."object-treeify-1.1.33"
sources."onetime-5.1.2"
sources."os-tmpdir-1.0.2"
@@ -89006,7 +89293,7 @@ in
sources."path-exists-3.0.0"
sources."path-key-2.0.1"
sources."path-type-4.0.0"
- sources."picomatch-2.2.3"
+ sources."picomatch-2.3.0"
sources."pkg-up-3.1.0"
sources."punycode-2.1.1"
sources."qs-6.10.1"
@@ -89063,10 +89350,10 @@ in
katex = nodeEnv.buildNodePackage {
name = "katex";
packageName = "katex";
- version = "0.13.3";
+ version = "0.13.11";
src = fetchurl {
- url = "https://registry.npmjs.org/katex/-/katex-0.13.3.tgz";
- sha512 = "/w0eycuK1xh201T0uFXYOZWPDoeqDHqR+6SLLKsYvNtUCYtmRjq8F+M74sdpzs+dJZYWv2eUsSW0r1AJfhZOCw==";
+ url = "https://registry.npmjs.org/katex/-/katex-0.13.11.tgz";
+ sha512 = "yJBHVIgwlAaapzlbvTpVF/ZOs8UkTj/sd46Fl8+qAf2/UiituPYVeapVD8ADZtqyRg/qNWUKt7gJoyYVWLrcXw==";
};
dependencies = [
sources."commander-6.2.1"
@@ -89093,7 +89380,7 @@ in
sources."@types/component-emitter-1.2.10"
sources."@types/cookie-0.4.0"
sources."@types/cors-2.8.10"
- sources."@types/node-14.14.41"
+ sources."@types/node-15.6.1"
sources."accepts-1.3.7"
sources."ansi-regex-5.0.0"
sources."ansi-styles-4.3.0"
@@ -89141,12 +89428,12 @@ in
sources."fill-range-7.0.1"
sources."finalhandler-1.1.2"
sources."flatted-2.0.2"
- sources."follow-redirects-1.13.3"
+ sources."follow-redirects-1.14.1"
sources."fs-extra-8.1.0"
sources."fs.realpath-1.0.0"
sources."fsevents-2.3.2"
sources."get-caller-file-2.0.5"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."glob-parent-5.1.2"
sources."graceful-fs-4.2.6"
sources."http-errors-1.7.2"
@@ -89159,7 +89446,7 @@ in
sources."is-fullwidth-code-point-3.0.0"
sources."is-glob-4.0.1"
sources."is-number-7.0.0"
- sources."isbinaryfile-4.0.6"
+ sources."isbinaryfile-4.0.8"
sources."jsonfile-4.0.0"
sources."lodash-4.17.21"
(sources."log4js-6.3.0" // {
@@ -89181,7 +89468,7 @@ in
sources."once-1.4.0"
sources."parseurl-1.3.3"
sources."path-is-absolute-1.0.1"
- sources."picomatch-2.2.3"
+ sources."picomatch-2.3.0"
sources."qjobs-1.2.0"
sources."qs-6.7.0"
sources."range-parser-1.2.1"
@@ -89229,7 +89516,7 @@ in
sources."void-elements-2.0.1"
sources."wrap-ansi-7.0.0"
sources."wrappy-1.0.2"
- sources."ws-7.4.5"
+ sources."ws-7.4.6"
sources."y18n-5.0.8"
sources."yargs-16.2.0"
sources."yargs-parser-20.2.7"
@@ -89274,7 +89561,7 @@ in
sources."fs.realpath-1.0.0"
sources."function-bind-1.1.1"
sources."get-intrinsic-1.1.1"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."glob-parent-3.1.0"
sources."glob-stream-6.1.0"
sources."graceful-fs-4.2.6"
@@ -89419,7 +89706,7 @@ in
sources."get-caller-file-1.0.3"
sources."get-stream-4.1.0"
sources."getpass-0.1.7"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."har-schema-2.0.0"
sources."har-validator-5.1.5"
sources."has-flag-3.0.0"
@@ -89673,7 +89960,7 @@ in
sources."fs.realpath-1.0.0"
sources."get-caller-file-2.0.5"
sources."getpass-0.1.7"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."har-schema-2.0.0"
sources."har-validator-5.1.5"
sources."has-flag-3.0.0"
@@ -89845,8 +90132,8 @@ in
};
dependencies = [
sources."@babel/code-frame-7.12.13"
- sources."@babel/helper-validator-identifier-7.12.11"
- (sources."@babel/highlight-7.13.10" // {
+ sources."@babel/helper-validator-identifier-7.14.0"
+ (sources."@babel/highlight-7.14.0" // {
dependencies = [
sources."ansi-styles-3.2.1"
sources."chalk-2.4.2"
@@ -89950,7 +90237,7 @@ in
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.8"
+ sources."@npmcli/git-2.0.9"
sources."@npmcli/installed-package-contents-1.0.7"
sources."@npmcli/move-file-1.1.2"
sources."@npmcli/node-gyp-1.0.2"
@@ -89963,20 +90250,20 @@ in
sources."is-plain-object-5.0.0"
];
})
- sources."@octokit/graphql-4.6.1"
- sources."@octokit/openapi-types-6.1.1"
+ sources."@octokit/graphql-4.6.2"
+ sources."@octokit/openapi-types-7.2.3"
sources."@octokit/plugin-enterprise-rest-6.0.1"
sources."@octokit/plugin-paginate-rest-2.13.3"
sources."@octokit/plugin-request-log-1.0.3"
- sources."@octokit/plugin-rest-endpoint-methods-5.0.1"
+ sources."@octokit/plugin-rest-endpoint-methods-5.3.1"
(sources."@octokit/request-5.4.15" // {
dependencies = [
sources."is-plain-object-5.0.0"
];
})
sources."@octokit/request-error-2.0.5"
- sources."@octokit/rest-18.5.3"
- sources."@octokit/types-6.13.2"
+ sources."@octokit/rest-18.5.5"
+ sources."@octokit/types-6.16.2"
sources."@tootallnate/once-1.1.2"
sources."@types/minimatch-3.0.4"
sources."@types/minimist-1.2.1"
@@ -90025,7 +90312,7 @@ in
sources."builtins-1.0.3"
sources."byline-5.0.0"
sources."byte-size-7.0.1"
- sources."cacache-15.0.6"
+ sources."cacache-15.2.0"
sources."call-bind-1.0.2"
sources."callsites-3.1.0"
sources."camelcase-5.3.1"
@@ -90111,7 +90398,7 @@ in
sources."envinfo-7.8.1"
sources."err-code-2.0.3"
sources."error-ex-1.3.2"
- sources."es-abstract-1.18.0"
+ sources."es-abstract-1.18.3"
sources."es-to-primitive-1.2.1"
sources."escalade-3.1.1"
sources."escape-string-regexp-1.0.5"
@@ -90191,7 +90478,7 @@ in
sources."git-up-4.0.2"
sources."git-url-parse-11.4.4"
sources."gitconfiglocal-1.0.0"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."glob-parent-5.1.2"
sources."globby-11.0.3"
sources."graceful-fs-4.2.6"
@@ -90211,9 +90498,9 @@ in
sources."https-proxy-agent-5.0.0"
sources."human-signals-2.1.0"
sources."humanize-ms-1.2.1"
- sources."iconv-lite-0.6.2"
+ sources."iconv-lite-0.6.3"
sources."ignore-5.1.8"
- sources."ignore-walk-3.0.3"
+ sources."ignore-walk-3.0.4"
(sources."import-fresh-3.3.0" // {
dependencies = [
sources."resolve-from-4.0.0"
@@ -90241,12 +90528,12 @@ in
sources."interpret-1.4.0"
sources."ip-1.1.5"
sources."is-arrayish-0.2.1"
- sources."is-bigint-1.0.1"
- sources."is-boolean-object-1.1.0"
+ sources."is-bigint-1.0.2"
+ sources."is-boolean-object-1.1.1"
sources."is-callable-1.2.3"
sources."is-ci-2.0.0"
- sources."is-core-module-2.3.0"
- sources."is-date-object-1.0.2"
+ sources."is-core-module-2.4.0"
+ sources."is-date-object-1.0.4"
sources."is-extglob-2.1.1"
sources."is-finite-1.1.0"
sources."is-fullwidth-code-point-3.0.0"
@@ -90254,15 +90541,15 @@ in
sources."is-lambda-1.0.1"
sources."is-negative-zero-2.0.1"
sources."is-number-7.0.0"
- sources."is-number-object-1.0.4"
+ sources."is-number-object-1.0.5"
sources."is-obj-2.0.0"
sources."is-plain-obj-1.1.0"
sources."is-plain-object-2.0.4"
- sources."is-regex-1.1.2"
- sources."is-ssh-1.3.2"
+ sources."is-regex-1.1.3"
+ sources."is-ssh-1.3.3"
sources."is-stream-2.0.0"
- sources."is-string-1.0.5"
- sources."is-symbol-1.0.3"
+ sources."is-string-1.0.6"
+ sources."is-symbol-1.0.4"
sources."is-text-path-1.0.1"
sources."is-typedarray-1.0.0"
sources."is-utf8-0.2.1"
@@ -90387,15 +90674,15 @@ in
})
sources."npm-normalize-package-bin-1.0.1"
sources."npm-package-arg-8.1.2"
- sources."npm-packlist-2.1.5"
+ sources."npm-packlist-2.2.2"
sources."npm-pick-manifest-6.1.1"
- sources."npm-registry-fetch-10.1.1"
+ sources."npm-registry-fetch-10.1.2"
sources."npm-run-path-4.0.1"
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."object-inspect-1.10.2"
+ sources."object-inspect-1.10.3"
sources."object-keys-1.1.1"
sources."object.assign-4.1.2"
sources."object.getownpropertydescriptors-2.1.2"
@@ -90428,10 +90715,10 @@ in
sources."path-exists-4.0.0"
sources."path-is-absolute-1.0.1"
sources."path-key-3.1.1"
- sources."path-parse-1.0.6"
+ sources."path-parse-1.0.7"
sources."path-type-4.0.0"
sources."performance-now-2.1.0"
- sources."picomatch-2.2.3"
+ sources."picomatch-2.3.0"
sources."pify-4.0.1"
sources."pinkie-2.0.4"
sources."pinkie-promise-2.0.1"
@@ -90510,7 +90797,7 @@ in
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."spdx-license-ids-3.0.9"
sources."split-1.0.1"
sources."split-on-first-1.1.0"
sources."split2-3.2.2"
@@ -90546,8 +90833,8 @@ in
sources."tmp-0.0.33"
sources."to-regex-range-5.0.1"
sources."tough-cookie-2.5.0"
- sources."tr46-2.0.2"
- sources."trim-newlines-3.0.0"
+ sources."tr46-2.1.0"
+ sources."trim-newlines-3.0.1"
sources."trim-off-newlines-1.0.1"
sources."tslib-1.14.1"
sources."tunnel-agent-0.6.0"
@@ -90555,7 +90842,7 @@ in
sources."type-fest-0.4.1"
sources."typedarray-0.0.6"
sources."typedarray-to-buffer-3.1.5"
- sources."uglify-js-3.13.4"
+ sources."uglify-js-3.13.8"
sources."uid-number-0.0.6"
sources."umask-1.1.0"
sources."unbox-primitive-1.0.1"
@@ -90595,7 +90882,7 @@ in
sources."write-file-atomic-2.4.3"
(sources."write-json-file-4.3.0" // {
dependencies = [
- sources."detect-indent-6.0.0"
+ sources."detect-indent-6.1.0"
sources."is-plain-obj-2.1.0"
sources."make-dir-3.1.0"
sources."semver-6.3.0"
@@ -90792,7 +91079,7 @@ in
sources."is-extendable-0.1.1"
];
})
- sources."faye-websocket-0.11.3"
+ sources."faye-websocket-0.11.4"
sources."file-uri-to-path-1.0.0"
(sources."fill-range-4.0.0" // {
dependencies = [
@@ -91121,7 +91408,7 @@ in
sources."ms-2.1.3"
];
})
- (sources."engine.io-client-3.5.1" // {
+ (sources."engine.io-client-3.5.2" // {
dependencies = [
sources."debug-3.1.0"
];
@@ -91502,8 +91789,8 @@ in
sources."uuid-3.4.0"
sources."vary-1.1.2"
sources."verror-1.10.0"
- sources."ws-7.4.5"
- sources."xmlhttprequest-ssl-1.5.5"
+ sources."ws-7.4.6"
+ sources."xmlhttprequest-ssl-1.6.3"
sources."yeast-0.1.2"
];
buildInputs = globalBuildInputs;
@@ -91523,57 +91810,60 @@ in
src = ../interpreters/clojurescript/lumo;
dependencies = [
sources."@babel/code-frame-7.12.13"
- sources."@babel/compat-data-7.13.15"
- sources."@babel/core-7.13.16"
- sources."@babel/generator-7.13.16"
+ sources."@babel/compat-data-7.14.4"
+ sources."@babel/core-7.14.3"
+ sources."@babel/generator-7.14.3"
sources."@babel/helper-annotate-as-pure-7.12.13"
sources."@babel/helper-builder-binary-assignment-operator-visitor-7.12.13"
- sources."@babel/helper-compilation-targets-7.13.16"
- sources."@babel/helper-create-class-features-plugin-7.13.11"
- sources."@babel/helper-create-regexp-features-plugin-7.12.17"
- sources."@babel/helper-define-polyfill-provider-0.2.0"
+ sources."@babel/helper-compilation-targets-7.14.4"
+ sources."@babel/helper-create-class-features-plugin-7.14.4"
+ sources."@babel/helper-create-regexp-features-plugin-7.14.3"
+ sources."@babel/helper-define-polyfill-provider-0.2.3"
sources."@babel/helper-explode-assignable-expression-7.13.0"
- sources."@babel/helper-function-name-7.12.13"
+ sources."@babel/helper-function-name-7.14.2"
sources."@babel/helper-get-function-arity-7.12.13"
sources."@babel/helper-hoist-variables-7.13.16"
sources."@babel/helper-member-expression-to-functions-7.13.12"
sources."@babel/helper-module-imports-7.13.12"
- sources."@babel/helper-module-transforms-7.13.14"
+ sources."@babel/helper-module-transforms-7.14.2"
sources."@babel/helper-optimise-call-expression-7.12.13"
sources."@babel/helper-plugin-utils-7.13.0"
sources."@babel/helper-remap-async-to-generator-7.13.0"
- sources."@babel/helper-replace-supers-7.13.12"
+ sources."@babel/helper-replace-supers-7.14.4"
sources."@babel/helper-simple-access-7.13.12"
sources."@babel/helper-skip-transparent-expression-wrappers-7.12.1"
sources."@babel/helper-split-export-declaration-7.12.13"
- sources."@babel/helper-validator-identifier-7.12.11"
+ sources."@babel/helper-validator-identifier-7.14.0"
sources."@babel/helper-validator-option-7.12.17"
sources."@babel/helper-wrap-function-7.13.0"
- sources."@babel/helpers-7.13.17"
- (sources."@babel/highlight-7.13.10" // {
+ sources."@babel/helpers-7.14.0"
+ (sources."@babel/highlight-7.14.0" // {
dependencies = [
sources."chalk-2.4.2"
];
})
- sources."@babel/parser-7.13.16"
+ sources."@babel/parser-7.14.4"
sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.13.12"
sources."@babel/plugin-external-helpers-7.8.3"
- sources."@babel/plugin-proposal-async-generator-functions-7.13.15"
+ sources."@babel/plugin-proposal-async-generator-functions-7.14.2"
sources."@babel/plugin-proposal-class-properties-7.13.0"
- sources."@babel/plugin-proposal-dynamic-import-7.13.8"
- sources."@babel/plugin-proposal-export-namespace-from-7.12.13"
- sources."@babel/plugin-proposal-json-strings-7.13.8"
- sources."@babel/plugin-proposal-logical-assignment-operators-7.13.8"
- sources."@babel/plugin-proposal-nullish-coalescing-operator-7.13.8"
- sources."@babel/plugin-proposal-numeric-separator-7.12.13"
- sources."@babel/plugin-proposal-object-rest-spread-7.13.8"
- sources."@babel/plugin-proposal-optional-catch-binding-7.13.8"
- sources."@babel/plugin-proposal-optional-chaining-7.13.12"
+ sources."@babel/plugin-proposal-class-static-block-7.14.3"
+ sources."@babel/plugin-proposal-dynamic-import-7.14.2"
+ sources."@babel/plugin-proposal-export-namespace-from-7.14.2"
+ sources."@babel/plugin-proposal-json-strings-7.14.2"
+ sources."@babel/plugin-proposal-logical-assignment-operators-7.14.2"
+ sources."@babel/plugin-proposal-nullish-coalescing-operator-7.14.2"
+ sources."@babel/plugin-proposal-numeric-separator-7.14.2"
+ sources."@babel/plugin-proposal-object-rest-spread-7.14.4"
+ sources."@babel/plugin-proposal-optional-catch-binding-7.14.2"
+ sources."@babel/plugin-proposal-optional-chaining-7.14.2"
sources."@babel/plugin-proposal-private-methods-7.13.0"
+ sources."@babel/plugin-proposal-private-property-in-object-7.14.0"
sources."@babel/plugin-proposal-unicode-property-regex-7.12.13"
sources."@babel/plugin-syntax-async-generators-7.8.4"
sources."@babel/plugin-syntax-bigint-7.8.3"
sources."@babel/plugin-syntax-class-properties-7.12.13"
+ sources."@babel/plugin-syntax-class-static-block-7.12.13"
sources."@babel/plugin-syntax-dynamic-import-7.8.3"
sources."@babel/plugin-syntax-export-namespace-from-7.8.3"
sources."@babel/plugin-syntax-import-meta-7.10.4"
@@ -91584,14 +91874,15 @@ in
sources."@babel/plugin-syntax-object-rest-spread-7.8.3"
sources."@babel/plugin-syntax-optional-catch-binding-7.8.3"
sources."@babel/plugin-syntax-optional-chaining-7.8.3"
+ sources."@babel/plugin-syntax-private-property-in-object-7.14.0"
sources."@babel/plugin-syntax-top-level-await-7.12.13"
sources."@babel/plugin-transform-arrow-functions-7.13.0"
sources."@babel/plugin-transform-async-to-generator-7.13.0"
sources."@babel/plugin-transform-block-scoped-functions-7.12.13"
- sources."@babel/plugin-transform-block-scoping-7.13.16"
- sources."@babel/plugin-transform-classes-7.13.0"
+ sources."@babel/plugin-transform-block-scoping-7.14.4"
+ sources."@babel/plugin-transform-classes-7.14.4"
sources."@babel/plugin-transform-computed-properties-7.13.0"
- sources."@babel/plugin-transform-destructuring-7.13.17"
+ sources."@babel/plugin-transform-destructuring-7.14.4"
sources."@babel/plugin-transform-dotall-regex-7.12.13"
sources."@babel/plugin-transform-duplicate-keys-7.12.13"
sources."@babel/plugin-transform-exponentiation-operator-7.12.13"
@@ -91599,18 +91890,18 @@ in
sources."@babel/plugin-transform-function-name-7.12.13"
sources."@babel/plugin-transform-literals-7.12.13"
sources."@babel/plugin-transform-member-expression-literals-7.12.13"
- sources."@babel/plugin-transform-modules-amd-7.13.0"
- sources."@babel/plugin-transform-modules-commonjs-7.13.8"
+ sources."@babel/plugin-transform-modules-amd-7.14.2"
+ sources."@babel/plugin-transform-modules-commonjs-7.14.0"
sources."@babel/plugin-transform-modules-systemjs-7.13.8"
- sources."@babel/plugin-transform-modules-umd-7.13.0"
+ sources."@babel/plugin-transform-modules-umd-7.14.0"
sources."@babel/plugin-transform-named-capturing-groups-regex-7.12.13"
sources."@babel/plugin-transform-new-target-7.12.13"
sources."@babel/plugin-transform-object-super-7.12.13"
- sources."@babel/plugin-transform-parameters-7.13.0"
+ sources."@babel/plugin-transform-parameters-7.14.2"
sources."@babel/plugin-transform-property-literals-7.12.13"
sources."@babel/plugin-transform-regenerator-7.13.15"
sources."@babel/plugin-transform-reserved-words-7.12.13"
- sources."@babel/plugin-transform-runtime-7.13.15"
+ sources."@babel/plugin-transform-runtime-7.14.3"
sources."@babel/plugin-transform-shorthand-properties-7.12.13"
sources."@babel/plugin-transform-spread-7.13.0"
sources."@babel/plugin-transform-sticky-regex-7.12.13"
@@ -91618,13 +91909,13 @@ in
sources."@babel/plugin-transform-typeof-symbol-7.12.13"
sources."@babel/plugin-transform-unicode-escapes-7.12.13"
sources."@babel/plugin-transform-unicode-regex-7.12.13"
- sources."@babel/preset-env-7.13.15"
+ sources."@babel/preset-env-7.14.4"
sources."@babel/preset-modules-0.1.4"
sources."@babel/preset-stage-2-7.8.3"
- sources."@babel/runtime-7.13.17"
+ sources."@babel/runtime-7.14.0"
sources."@babel/template-7.12.13"
- sources."@babel/traverse-7.13.17"
- sources."@babel/types-7.13.17"
+ sources."@babel/traverse-7.14.2"
+ sources."@babel/types-7.14.4"
sources."@cnakazawa/watch-1.0.4"
sources."@comandeer/babel-plugin-banner-5.0.0"
sources."@istanbuljs/load-nyc-config-1.1.0"
@@ -91645,7 +91936,7 @@ in
sources."@types/istanbul-lib-report-3.0.0"
sources."@types/istanbul-reports-1.1.2"
sources."@types/json-schema-7.0.7"
- sources."@types/node-14.14.41"
+ sources."@types/node-15.6.1"
sources."@types/normalize-package-data-2.4.0"
sources."@types/resolve-0.0.8"
sources."@types/yargs-15.0.13"
@@ -91734,9 +92025,9 @@ in
sources."babel-plugin-minify-replace-0.5.0"
sources."babel-plugin-minify-simplify-0.5.1"
sources."babel-plugin-minify-type-constructors-0.4.3"
- sources."babel-plugin-polyfill-corejs2-0.2.0"
- sources."babel-plugin-polyfill-corejs3-0.2.0"
- sources."babel-plugin-polyfill-regenerator-0.2.0"
+ sources."babel-plugin-polyfill-corejs2-0.2.2"
+ sources."babel-plugin-polyfill-corejs3-0.2.2"
+ sources."babel-plugin-polyfill-regenerator-0.2.2"
sources."babel-plugin-syntax-flow-6.18.0"
sources."babel-plugin-transform-flow-strip-types-6.22.0"
sources."babel-plugin-transform-inline-consecutive-adds-0.4.3"
@@ -91802,7 +92093,7 @@ in
];
})
sources."browserify-zlib-0.2.0"
- sources."browserslist-4.16.5"
+ sources."browserslist-4.16.6"
sources."bser-2.1.1"
sources."buffer-5.2.1"
sources."buffer-from-1.1.1"
@@ -91818,7 +92109,7 @@ in
sources."cached-path-relative-1.0.2"
sources."call-bind-1.0.2"
sources."camelcase-5.3.1"
- sources."caniuse-lite-1.0.30001214"
+ sources."caniuse-lite-1.0.30001230"
sources."capture-exit-2.0.0"
sources."caseless-0.12.0"
(sources."chalk-3.0.0" // {
@@ -91890,7 +92181,7 @@ in
})
sources."copy-descriptor-0.1.1"
sources."core-js-2.6.12"
- (sources."core-js-compat-3.11.0" // {
+ (sources."core-js-compat-3.13.0" // {
dependencies = [
sources."semver-7.0.0"
];
@@ -91942,7 +92233,7 @@ in
sources."duplexer2-0.1.4"
sources."duplexify-3.7.1"
sources."ecc-jsbn-0.1.2"
- sources."electron-to-chromium-1.3.720"
+ sources."electron-to-chromium-1.3.741"
(sources."elliptic-6.5.4" // {
dependencies = [
sources."bn.js-4.12.0"
@@ -92047,7 +92338,7 @@ in
sources."get-stream-4.1.0"
sources."get-value-2.0.6"
sources."getpass-0.1.7"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."glob-parent-5.1.2"
(sources."global-modules-2.0.0" // {
dependencies = [
@@ -92117,7 +92408,7 @@ in
sources."is-binary-path-2.1.0"
sources."is-buffer-1.1.6"
sources."is-ci-2.0.0"
- sources."is-core-module-2.3.0"
+ sources."is-core-module-2.4.0"
sources."is-data-descriptor-1.0.0"
sources."is-deflate-1.0.0"
sources."is-descriptor-1.0.2"
@@ -92245,7 +92536,7 @@ in
];
})
sources."node-modules-regexp-1.0.0"
- sources."node-releases-1.1.71"
+ sources."node-releases-1.1.72"
(sources."normalize-package-data-2.5.0" // {
dependencies = [
sources."semver-5.7.1"
@@ -92291,12 +92582,12 @@ in
sources."path-exists-4.0.0"
sources."path-is-absolute-1.0.1"
sources."path-key-2.0.1"
- sources."path-parse-1.0.6"
+ sources."path-parse-1.0.7"
sources."path-platform-0.11.15"
sources."pbkdf2-3.1.2"
sources."peek-stream-1.1.3"
sources."performance-now-2.1.0"
- sources."picomatch-2.2.3"
+ sources."picomatch-2.3.0"
sources."pify-4.0.1"
sources."pinkie-1.0.0"
sources."pinkie-promise-1.0.0"
@@ -92454,7 +92745,7 @@ in
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."spdx-license-ids-3.0.9"
sources."split-string-3.1.0"
sources."sprintf-js-1.0.3"
sources."sshpk-1.16.1"
@@ -92674,7 +92965,7 @@ in
sources."brace-expansion-1.1.11"
sources."concat-map-0.0.1"
sources."fs.realpath-1.0.0"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."minimatch-3.0.4"
@@ -92694,6 +92985,57 @@ in
bypassCache = true;
reconstructLock = true;
};
+ markdownlint-cli = nodeEnv.buildNodePackage {
+ name = "markdownlint-cli";
+ packageName = "markdownlint-cli";
+ version = "0.27.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/markdownlint-cli/-/markdownlint-cli-0.27.1.tgz";
+ sha512 = "p1VV6aSbGrDlpUWzHizAnSNEQAweVR3qUI/AIUubxW7BGPXziSXkIED+uRtSohUlRS/jmqp3Wi4es5j6fIrdeQ==";
+ };
+ dependencies = [
+ sources."argparse-2.0.1"
+ sources."balanced-match-1.0.2"
+ sources."brace-expansion-1.1.11"
+ sources."commander-7.1.0"
+ sources."concat-map-0.0.1"
+ sources."deep-extend-0.6.0"
+ sources."entities-2.1.0"
+ sources."fs.realpath-1.0.0"
+ sources."get-stdin-8.0.0"
+ sources."glob-7.1.7"
+ sources."ignore-5.1.8"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.4"
+ sources."ini-1.3.8"
+ sources."js-yaml-4.1.0"
+ sources."jsonc-parser-3.0.0"
+ sources."linkify-it-3.0.2"
+ sources."lodash.differencewith-4.5.0"
+ sources."lodash.flatten-4.4.0"
+ sources."markdown-it-12.0.4"
+ sources."markdownlint-0.23.1"
+ sources."markdownlint-rule-helpers-0.14.0"
+ sources."mdurl-1.0.1"
+ sources."minimatch-3.0.4"
+ sources."minimist-1.2.5"
+ sources."once-1.4.0"
+ sources."path-is-absolute-1.0.1"
+ sources."rc-1.2.8"
+ sources."strip-json-comments-2.0.1"
+ sources."uc.micro-1.0.6"
+ sources."wrappy-1.0.2"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "MarkdownLint Command Line Interface";
+ homepage = "https://github.com/igorshubovych/markdownlint-cli#readme";
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ reconstructLock = true;
+ };
markdown-link-check = nodeEnv.buildNodePackage {
name = "markdown-link-check";
packageName = "markdown-link-check";
@@ -92745,8 +93087,8 @@ in
sources."jsprim-1.4.1"
sources."link-check-4.5.4"
sources."lodash-4.17.21"
- sources."markdown-link-extractor-1.2.7"
- sources."marked-2.0.3"
+ sources."markdown-link-extractor-1.3.0"
+ sources."marked-2.0.6"
sources."mime-db-1.47.0"
sources."mime-types-2.1.30"
sources."ms-2.1.3"
@@ -92901,7 +93243,7 @@ in
sources."generate-function-2.3.1"
sources."generate-object-property-1.2.0"
sources."getpass-0.1.7"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."globals-9.18.0"
sources."glogg-1.0.2"
sources."graceful-fs-4.2.6"
@@ -92928,7 +93270,7 @@ in
sources."inherits-2.0.4"
sources."inquirer-0.12.0"
sources."interpret-1.4.0"
- sources."is-core-module-2.3.0"
+ sources."is-core-module-2.4.0"
sources."is-fullwidth-code-point-1.0.0"
sources."is-my-ip-valid-1.0.0"
sources."is-my-json-valid-2.20.5"
@@ -92989,7 +93331,7 @@ in
sources."parse-node-version-1.0.1"
sources."path-is-absolute-1.0.1"
sources."path-is-inside-1.0.2"
- sources."path-parse-1.0.6"
+ sources."path-parse-1.0.7"
sources."performance-now-2.1.0"
sources."pluralize-1.2.1"
sources."prelude-ls-1.1.2"
@@ -93131,14 +93473,14 @@ in
"@mermaid-js/mermaid-cli" = nodeEnv.buildNodePackage {
name = "_at_mermaid-js_slash_mermaid-cli";
packageName = "@mermaid-js/mermaid-cli";
- version = "8.9.2";
+ version = "8.10.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@mermaid-js/mermaid-cli/-/mermaid-cli-8.9.2.tgz";
- sha512 = "Hw44+V/n4s6ViCnh5RR/uiza5QxaeUv/A4Q62ho+U1W1yoCLHle6kbx1ZXRSF3Jvl3BfQHuaoE3t+dyx2L4hnA==";
+ url = "https://registry.npmjs.org/@mermaid-js/mermaid-cli/-/mermaid-cli-8.10.1.tgz";
+ sha512 = "X2wIJwN22Hwh5zkpGteKg31K+wYCO8W5NUsQYlnSWyv8RpHoZfK7+kDVRzvHvVqnizTM3D+KgSnONvh+Z0EB6g==";
};
dependencies = [
sources."@braintree/sanitize-url-3.1.0"
- sources."@types/node-14.14.41"
+ sources."@types/node-15.6.1"
sources."@types/yauzl-2.9.1"
sources."agent-base-6.0.2"
sources."ansi-styles-4.3.0"
@@ -93197,7 +93539,7 @@ in
sources."dagre-0.8.5"
sources."dagre-d3-0.6.4"
sources."debug-4.3.2"
- sources."devtools-protocol-0.0.854822"
+ sources."devtools-protocol-0.0.869402"
sources."end-of-stream-1.4.4"
sources."entity-decode-2.0.2"
sources."extract-zip-2.0.1"
@@ -93206,7 +93548,7 @@ in
sources."fs-constants-1.0.0"
sources."fs.realpath-1.0.0"
sources."get-stream-5.2.0"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."graphlib-2.1.8"
sources."has-flag-4.0.0"
sources."he-1.2.0"
@@ -93224,7 +93566,7 @@ in
sources."locate-path-5.0.0"
sources."lodash-4.17.21"
sources."lower-case-1.1.4"
- sources."mermaid-8.9.2"
+ sources."mermaid-8.10.1"
sources."minify-4.1.3"
sources."minimatch-3.0.4"
sources."mkdirp-classic-0.5.3"
@@ -93244,7 +93586,7 @@ in
sources."progress-2.0.3"
sources."proxy-from-env-1.1.0"
sources."pump-3.0.0"
- sources."puppeteer-8.0.0"
+ sources."puppeteer-9.1.1"
sources."readable-stream-3.6.0"
sources."relateurl-0.2.7"
sources."rimraf-3.0.2"
@@ -93266,12 +93608,12 @@ in
sources."through-2.3.8"
sources."try-catch-2.0.1"
sources."try-to-catch-1.1.1"
- sources."uglify-js-3.13.4"
+ sources."uglify-js-3.13.8"
sources."unbzip2-stream-1.4.3"
sources."upper-case-1.1.3"
sources."util-deprecate-1.0.2"
sources."wrappy-1.0.2"
- sources."ws-7.4.5"
+ sources."ws-7.4.6"
sources."yauzl-2.10.0"
];
buildInputs = globalBuildInputs;
@@ -93296,11 +93638,11 @@ in
sources."@fluentui/date-time-utilities-7.9.1"
sources."@fluentui/dom-utilities-1.1.2"
sources."@fluentui/keyboard-key-0.2.17"
- sources."@fluentui/react-7.168.0"
+ sources."@fluentui/react-7.170.1"
sources."@fluentui/react-focus-7.17.6"
sources."@fluentui/react-window-provider-1.0.2"
sources."@fluentui/theme-1.7.4"
- sources."@microsoft/load-themed-styles-1.10.165"
+ sources."@microsoft/load-themed-styles-1.10.173"
sources."@sindresorhus/is-0.14.0"
sources."@szmarczak/http-timer-1.1.2"
sources."@uifabric/foundation-7.9.26"
@@ -93359,13 +93701,13 @@ in
sources."depd-1.1.2"
sources."destroy-1.0.4"
sources."difunc-0.0.4"
- sources."dotenv-8.2.0"
+ sources."dotenv-8.6.0"
sources."duplexer3-0.1.4"
sources."ee-first-1.1.1"
sources."encodeurl-1.0.2"
(sources."encoding-0.1.13" // {
dependencies = [
- sources."iconv-lite-0.6.2"
+ sources."iconv-lite-0.6.3"
];
})
sources."end-of-stream-1.4.4"
@@ -93387,7 +93729,7 @@ in
sources."fs-routes-7.0.1"
sources."fs.realpath-1.0.0"
sources."get-stream-4.1.0"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."got-9.6.0"
sources."has-ansi-2.0.0"
sources."http-cache-semantics-4.1.0"
@@ -93434,9 +93776,9 @@ in
sources."mute-stream-0.0.7"
sources."negotiator-0.6.2"
sources."node-fetch-1.6.3"
- sources."normalize-url-4.5.0"
+ sources."normalize-url-4.5.1"
sources."object-assign-4.1.1"
- sources."office-ui-fabric-react-7.168.0"
+ sources."office-ui-fabric-react-7.170.1"
sources."on-finished-2.3.0"
sources."on-headers-1.0.2"
sources."once-1.4.0"
@@ -93527,7 +93869,7 @@ 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.47.1"
+ sources."swagger-ui-dist-3.49.0"
sources."tail-2.2.2"
sources."through-2.3.8"
sources."tmp-0.0.33"
@@ -93559,10 +93901,10 @@ in
mocha = nodeEnv.buildNodePackage {
name = "mocha";
packageName = "mocha";
- version = "8.3.2";
+ version = "8.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/mocha/-/mocha-8.3.2.tgz";
- sha512 = "UdmISwr/5w+uXLPKspgoV7/RXZwKRTiTjJ2/AC5ZiEztIoOYdfKb19+9jNmEInzx5pBsCyJQzarAxqIGBNYJhg==";
+ url = "https://registry.npmjs.org/mocha/-/mocha-8.4.0.tgz";
+ sha512 = "hJaO0mwDXmZS4ghXsvPVriOhsxQ7ofcpQdm8dE+jISUOKopitvnXFQmpRR7jd2K6VBG6E26gU3IAbXXGIbu4sQ==";
};
dependencies = [
sources."@ungap/promise-all-settled-1.1.2"
@@ -93636,7 +93978,7 @@ in
sources."p-locate-5.0.0"
sources."path-exists-4.0.0"
sources."path-is-absolute-1.0.1"
- sources."picomatch-2.2.3"
+ sources."picomatch-2.3.0"
sources."randombytes-2.1.0"
sources."readdirp-3.5.0"
sources."require-directory-2.1.1"
@@ -93725,7 +94067,7 @@ in
sources."mime-types-2.1.30"
sources."ms-2.1.3"
sources."native-promise-only-0.8.1"
- sources."object-inspect-1.10.2"
+ sources."object-inspect-1.10.3"
sources."path-loader-1.0.10"
sources."process-nextick-args-2.0.1"
sources."punycode-2.1.1"
@@ -93812,70 +94154,81 @@ in
netlify-cli = nodeEnv.buildNodePackage {
name = "netlify-cli";
packageName = "netlify-cli";
- version = "3.21.9";
+ version = "3.31.16";
src = fetchurl {
- url = "https://registry.npmjs.org/netlify-cli/-/netlify-cli-3.21.9.tgz";
- sha512 = "GRdQHPz8gVmU1Gy6ZWv/B2t3MjQN2hLHBG4yRY6S7DbRQc8XaY9PLJPrmodycumFdzx6Da+SMmhZrzkKfZ/xSg==";
+ url = "https://registry.npmjs.org/netlify-cli/-/netlify-cli-3.31.16.tgz";
+ sha512 = "zUjRjBkXVRFO4M5pvffRXjYs+E+4guB927kRN1HbU1+pwQoqbyxj5qemCbnNBglpWlU4DPW2Quvch7IVevWzCg==";
};
dependencies = [
sources."@babel/code-frame-7.12.13"
- sources."@babel/compat-data-7.13.15"
- (sources."@babel/core-7.13.16" // {
+ sources."@babel/compat-data-7.14.4"
+ (sources."@babel/core-7.14.3" // {
dependencies = [
sources."semver-6.3.0"
];
})
- sources."@babel/generator-7.13.16"
+ sources."@babel/generator-7.14.3"
sources."@babel/helper-annotate-as-pure-7.12.13"
sources."@babel/helper-builder-binary-assignment-operator-visitor-7.12.13"
- (sources."@babel/helper-compilation-targets-7.13.16" // {
+ (sources."@babel/helper-compilation-targets-7.14.4" // {
dependencies = [
sources."semver-6.3.0"
];
})
- sources."@babel/helper-create-class-features-plugin-7.13.11"
- sources."@babel/helper-create-regexp-features-plugin-7.12.17"
- (sources."@babel/helper-define-polyfill-provider-0.2.0" // {
+ sources."@babel/helper-create-class-features-plugin-7.14.4"
+ sources."@babel/helper-create-regexp-features-plugin-7.14.3"
+ (sources."@babel/helper-define-polyfill-provider-0.2.3" // {
dependencies = [
sources."semver-6.3.0"
];
})
sources."@babel/helper-explode-assignable-expression-7.13.0"
- sources."@babel/helper-function-name-7.12.13"
+ sources."@babel/helper-function-name-7.14.2"
sources."@babel/helper-get-function-arity-7.12.13"
sources."@babel/helper-hoist-variables-7.13.16"
sources."@babel/helper-member-expression-to-functions-7.13.12"
sources."@babel/helper-module-imports-7.13.12"
- sources."@babel/helper-module-transforms-7.13.14"
+ sources."@babel/helper-module-transforms-7.14.2"
sources."@babel/helper-optimise-call-expression-7.12.13"
sources."@babel/helper-plugin-utils-7.13.0"
sources."@babel/helper-remap-async-to-generator-7.13.0"
- sources."@babel/helper-replace-supers-7.13.12"
+ sources."@babel/helper-replace-supers-7.14.4"
sources."@babel/helper-simple-access-7.13.12"
sources."@babel/helper-skip-transparent-expression-wrappers-7.12.1"
sources."@babel/helper-split-export-declaration-7.12.13"
- sources."@babel/helper-validator-identifier-7.12.11"
+ sources."@babel/helper-validator-identifier-7.14.0"
sources."@babel/helper-validator-option-7.12.17"
sources."@babel/helper-wrap-function-7.13.0"
- sources."@babel/helpers-7.13.17"
- sources."@babel/highlight-7.13.10"
- sources."@babel/parser-7.13.16"
+ sources."@babel/helpers-7.14.0"
+ (sources."@babel/highlight-7.14.0" // {
+ dependencies = [
+ sources."ansi-styles-3.2.1"
+ sources."chalk-2.4.2"
+ sources."color-convert-1.9.3"
+ sources."color-name-1.1.3"
+ sources."supports-color-5.5.0"
+ ];
+ })
+ sources."@babel/parser-7.14.4"
sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.13.12"
- sources."@babel/plugin-proposal-async-generator-functions-7.13.15"
+ sources."@babel/plugin-proposal-async-generator-functions-7.14.2"
sources."@babel/plugin-proposal-class-properties-7.13.0"
- sources."@babel/plugin-proposal-dynamic-import-7.13.8"
- sources."@babel/plugin-proposal-export-namespace-from-7.12.13"
- sources."@babel/plugin-proposal-json-strings-7.13.8"
- sources."@babel/plugin-proposal-logical-assignment-operators-7.13.8"
- sources."@babel/plugin-proposal-nullish-coalescing-operator-7.13.8"
- sources."@babel/plugin-proposal-numeric-separator-7.12.13"
- sources."@babel/plugin-proposal-object-rest-spread-7.13.8"
- sources."@babel/plugin-proposal-optional-catch-binding-7.13.8"
- sources."@babel/plugin-proposal-optional-chaining-7.13.12"
+ sources."@babel/plugin-proposal-class-static-block-7.14.3"
+ sources."@babel/plugin-proposal-dynamic-import-7.14.2"
+ sources."@babel/plugin-proposal-export-namespace-from-7.14.2"
+ sources."@babel/plugin-proposal-json-strings-7.14.2"
+ sources."@babel/plugin-proposal-logical-assignment-operators-7.14.2"
+ sources."@babel/plugin-proposal-nullish-coalescing-operator-7.14.2"
+ sources."@babel/plugin-proposal-numeric-separator-7.14.2"
+ sources."@babel/plugin-proposal-object-rest-spread-7.14.4"
+ sources."@babel/plugin-proposal-optional-catch-binding-7.14.2"
+ sources."@babel/plugin-proposal-optional-chaining-7.14.2"
sources."@babel/plugin-proposal-private-methods-7.13.0"
+ sources."@babel/plugin-proposal-private-property-in-object-7.14.0"
sources."@babel/plugin-proposal-unicode-property-regex-7.12.13"
sources."@babel/plugin-syntax-async-generators-7.8.4"
sources."@babel/plugin-syntax-class-properties-7.12.13"
+ sources."@babel/plugin-syntax-class-static-block-7.12.13"
sources."@babel/plugin-syntax-dynamic-import-7.8.3"
sources."@babel/plugin-syntax-export-namespace-from-7.8.3"
sources."@babel/plugin-syntax-json-strings-7.8.3"
@@ -93885,14 +94238,15 @@ in
sources."@babel/plugin-syntax-object-rest-spread-7.8.3"
sources."@babel/plugin-syntax-optional-catch-binding-7.8.3"
sources."@babel/plugin-syntax-optional-chaining-7.8.3"
+ sources."@babel/plugin-syntax-private-property-in-object-7.14.0"
sources."@babel/plugin-syntax-top-level-await-7.12.13"
sources."@babel/plugin-transform-arrow-functions-7.13.0"
sources."@babel/plugin-transform-async-to-generator-7.13.0"
sources."@babel/plugin-transform-block-scoped-functions-7.12.13"
- sources."@babel/plugin-transform-block-scoping-7.13.16"
- sources."@babel/plugin-transform-classes-7.13.0"
+ sources."@babel/plugin-transform-block-scoping-7.14.4"
+ sources."@babel/plugin-transform-classes-7.14.4"
sources."@babel/plugin-transform-computed-properties-7.13.0"
- sources."@babel/plugin-transform-destructuring-7.13.17"
+ sources."@babel/plugin-transform-destructuring-7.14.4"
sources."@babel/plugin-transform-dotall-regex-7.12.13"
sources."@babel/plugin-transform-duplicate-keys-7.12.13"
sources."@babel/plugin-transform-exponentiation-operator-7.12.13"
@@ -93900,14 +94254,14 @@ in
sources."@babel/plugin-transform-function-name-7.12.13"
sources."@babel/plugin-transform-literals-7.12.13"
sources."@babel/plugin-transform-member-expression-literals-7.12.13"
- sources."@babel/plugin-transform-modules-amd-7.13.0"
- sources."@babel/plugin-transform-modules-commonjs-7.13.8"
+ sources."@babel/plugin-transform-modules-amd-7.14.2"
+ sources."@babel/plugin-transform-modules-commonjs-7.14.0"
sources."@babel/plugin-transform-modules-systemjs-7.13.8"
- sources."@babel/plugin-transform-modules-umd-7.13.0"
+ sources."@babel/plugin-transform-modules-umd-7.14.0"
sources."@babel/plugin-transform-named-capturing-groups-regex-7.12.13"
sources."@babel/plugin-transform-new-target-7.12.13"
sources."@babel/plugin-transform-object-super-7.12.13"
- sources."@babel/plugin-transform-parameters-7.13.0"
+ sources."@babel/plugin-transform-parameters-7.14.2"
sources."@babel/plugin-transform-property-literals-7.12.13"
sources."@babel/plugin-transform-regenerator-7.13.15"
sources."@babel/plugin-transform-reserved-words-7.12.13"
@@ -93918,26 +94272,26 @@ in
sources."@babel/plugin-transform-typeof-symbol-7.12.13"
sources."@babel/plugin-transform-unicode-escapes-7.12.13"
sources."@babel/plugin-transform-unicode-regex-7.12.13"
- (sources."@babel/preset-env-7.13.15" // {
+ (sources."@babel/preset-env-7.14.4" // {
dependencies = [
sources."semver-6.3.0"
];
})
sources."@babel/preset-modules-0.1.4"
- sources."@babel/runtime-7.13.17"
+ sources."@babel/runtime-7.14.0"
sources."@babel/template-7.12.13"
- sources."@babel/traverse-7.13.17"
- sources."@babel/types-7.13.17"
- sources."@bugsnag/browser-7.9.2"
- sources."@bugsnag/core-7.9.2"
+ sources."@babel/traverse-7.14.2"
+ sources."@babel/types-7.14.4"
+ sources."@bugsnag/browser-7.10.1"
+ sources."@bugsnag/core-7.10.0"
sources."@bugsnag/cuid-3.0.0"
- sources."@bugsnag/js-7.9.2"
- sources."@bugsnag/node-7.9.2"
+ sources."@bugsnag/js-7.10.1"
+ sources."@bugsnag/node-7.10.1"
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-11.2.5" // {
+ (sources."@netlify/build-11.29.0" // {
dependencies = [
sources."ansi-styles-4.3.0"
sources."chalk-3.0.0"
@@ -93946,6 +94300,8 @@ in
sources."locate-path-5.0.0"
sources."resolve-2.0.0-next.3"
sources."semver-6.3.0"
+ sources."update-notifier-4.1.3"
+ sources."uuid-7.0.3"
];
})
(sources."@netlify/cache-utils-1.0.7" // {
@@ -93953,22 +94309,24 @@ in
sources."locate-path-5.0.0"
];
})
- (sources."@netlify/config-6.2.0" // {
+ (sources."@netlify/config-6.7.1" // {
dependencies = [
sources."ansi-styles-4.3.0"
sources."chalk-3.0.0"
sources."execa-3.4.0"
+ sources."find-up-4.1.0"
sources."is-plain-obj-2.1.0"
+ sources."locate-path-5.0.0"
];
})
- (sources."@netlify/framework-info-3.3.0" // {
+ (sources."@netlify/framework-info-5.0.0" // {
dependencies = [
sources."is-plain-obj-2.1.0"
sources."locate-path-5.0.0"
];
})
- sources."@netlify/functions-utils-1.3.28"
- (sources."@netlify/git-utils-1.0.9" // {
+ sources."@netlify/functions-utils-1.3.35"
+ (sources."@netlify/git-utils-1.0.11" // {
dependencies = [
sources."braces-3.0.2"
sources."execa-3.4.0"
@@ -93978,10 +94336,11 @@ in
sources."to-regex-range-5.0.1"
];
})
- sources."@netlify/open-api-1.3.0"
- (sources."@netlify/plugin-edge-handlers-1.11.6" // {
+ sources."@netlify/open-api-2.4.0"
+ (sources."@netlify/plugin-edge-handlers-1.11.12" // {
dependencies = [
sources."@nodelib/fs.stat-2.0.4"
+ sources."@types/node-14.17.1"
sources."array-union-2.1.0"
sources."braces-3.0.2"
sources."del-6.0.0"
@@ -93993,12 +94352,11 @@ in
sources."ignore-5.1.8"
sources."is-number-7.0.0"
sources."micromatch-4.0.4"
- sources."p-map-4.0.0"
sources."slash-3.0.0"
sources."to-regex-range-5.0.1"
];
})
- sources."@netlify/plugins-list-2.8.0"
+ sources."@netlify/plugins-list-2.14.2"
(sources."@netlify/run-utils-1.0.7" // {
dependencies = [
sources."execa-3.4.0"
@@ -94008,9 +94366,9 @@ in
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-3.7.0" // {
+ (sources."@netlify/zip-it-and-ship-it-4.2.1" // {
dependencies = [
- sources."locate-path-5.0.0"
+ sources."p-map-3.0.0"
sources."resolve-2.0.0-next.3"
sources."semver-6.3.0"
];
@@ -94035,29 +94393,16 @@ in
})
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
- sources."has-flag-3.0.0"
+ sources."has-flag-4.0.0"
sources."strip-ansi-5.2.0"
- sources."supports-color-5.5.0"
- ];
- })
- (sources."@oclif/command-1.8.0" // {
- dependencies = [
- sources."@oclif/plugin-help-3.2.2"
- sources."ansi-regex-3.0.0"
- sources."ansi-styles-4.3.0"
- sources."chalk-4.1.1"
- sources."color-convert-1.9.3"
- sources."color-name-1.1.3"
- sources."is-fullwidth-code-point-2.0.0"
- sources."string-width-2.1.1"
- sources."strip-ansi-4.0.0"
- (sources."wrap-ansi-4.0.0" // {
+ (sources."supports-color-5.5.0" // {
dependencies = [
- sources."ansi-styles-3.2.1"
+ sources."has-flag-3.0.0"
];
})
];
})
+ sources."@oclif/command-1.8.0"
(sources."@oclif/config-1.17.0" // {
dependencies = [
sources."@nodelib/fs.stat-2.0.4"
@@ -94083,23 +94428,22 @@ in
];
})
sources."@oclif/linewrap-1.0.0"
- sources."@oclif/parser-3.8.5"
- (sources."@oclif/plugin-help-2.2.3" // {
+ (sources."@oclif/parser-3.8.5" // {
+ dependencies = [
+ sources."ansi-styles-3.2.1"
+ sources."chalk-2.4.2"
+ sources."color-convert-1.9.3"
+ sources."color-name-1.1.3"
+ sources."supports-color-5.5.0"
+ ];
+ })
+ (sources."@oclif/plugin-help-3.2.2" // {
dependencies = [
sources."ansi-regex-3.0.0"
sources."ansi-styles-3.2.1"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
- 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."widest-line-2.0.1" // {
- dependencies = [
- sources."string-width-2.1.1"
- sources."strip-ansi-4.0.0"
- ];
- })
(sources."wrap-ansi-4.0.0" // {
dependencies = [
sources."string-width-2.1.1"
@@ -94112,11 +94456,11 @@ in
dependencies = [
sources."ansi-escapes-3.2.0"
sources."ansi-styles-3.2.1"
+ sources."chalk-2.4.2"
sources."cli-ux-4.9.3"
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"
@@ -94126,8 +94470,6 @@ in
})
(sources."@oclif/plugin-plugins-1.10.0" // {
dependencies = [
- sources."ansi-styles-4.3.0"
- sources."chalk-4.1.1"
sources."fs-extra-9.1.0"
sources."jsonfile-6.1.0"
sources."tslib-2.2.0"
@@ -94136,40 +94478,27 @@ in
})
sources."@oclif/screen-1.0.4"
sources."@octokit/auth-token-2.4.5"
+ sources."@octokit/core-3.4.0"
(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-6.1.1"
- (sources."@octokit/plugin-paginate-rest-1.1.2" // {
- dependencies = [
- sources."@octokit/types-2.16.2"
];
})
+ sources."@octokit/graphql-4.6.2"
+ sources."@octokit/openapi-types-7.2.3"
+ sources."@octokit/plugin-paginate-rest-2.13.3"
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/plugin-rest-endpoint-methods-5.3.1"
(sources."@octokit/request-5.4.15" // {
dependencies = [
- sources."@octokit/request-error-2.0.5"
sources."is-plain-object-5.0.0"
- sources."universal-user-agent-6.0.0"
];
})
- (sources."@octokit/request-error-1.2.1" // {
- dependencies = [
- sources."@octokit/types-2.16.2"
- ];
- })
- sources."@octokit/rest-16.43.2"
- sources."@octokit/types-6.13.2"
+ sources."@octokit/request-error-2.0.5"
+ sources."@octokit/rest-18.5.5"
+ sources."@octokit/types-6.16.2"
sources."@rollup/plugin-babel-5.3.0"
- (sources."@rollup/plugin-commonjs-17.1.0" // {
+ (sources."@rollup/plugin-commonjs-18.1.0" // {
dependencies = [
sources."estree-walker-2.0.2"
];
@@ -94198,14 +94527,14 @@ in
sources."@types/glob-7.1.3"
sources."@types/got-8.3.5"
sources."@types/http-cache-semantics-4.0.0"
- sources."@types/http-proxy-1.17.5"
+ sources."@types/http-proxy-1.17.6"
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/keyv-3.1.1"
sources."@types/minimatch-3.0.4"
sources."@types/mkdirp-0.5.2"
- sources."@types/node-14.14.41"
+ sources."@types/node-15.6.1"
sources."@types/node-fetch-2.5.10"
sources."@types/normalize-package-data-2.4.0"
sources."@types/resolve-1.17.1"
@@ -94218,7 +94547,7 @@ in
sources."accepts-1.3.7"
sources."agent-base-6.0.2"
sources."aggregate-error-3.1.0"
- sources."ajv-8.1.0"
+ sources."ajv-8.5.0"
(sources."all-node-versions-8.0.0" // {
dependencies = [
sources."@jest/types-25.5.0"
@@ -94251,7 +94580,7 @@ in
sources."file-type-4.4.0"
];
})
- sources."archiver-4.0.2"
+ sources."archiver-5.3.0"
(sources."archiver-utils-2.1.0" // {
dependencies = [
sources."readable-stream-2.3.7"
@@ -94275,8 +94604,7 @@ in
sources."asynckit-0.4.0"
sources."at-least-node-1.0.0"
sources."atob-2.1.2"
- sources."atob-lite-2.0.0"
- (sources."aws-sdk-2.892.0" // {
+ (sources."aws-sdk-2.918.0" // {
dependencies = [
sources."buffer-4.9.2"
sources."ieee754-1.1.13"
@@ -94284,13 +94612,13 @@ in
];
})
sources."babel-plugin-dynamic-import-node-2.3.3"
- (sources."babel-plugin-polyfill-corejs2-0.2.0" // {
+ (sources."babel-plugin-polyfill-corejs2-0.2.2" // {
dependencies = [
sources."semver-6.3.0"
];
})
- sources."babel-plugin-polyfill-corejs3-0.2.0"
- sources."babel-plugin-polyfill-regenerator-0.2.0"
+ sources."babel-plugin-polyfill-corejs3-0.2.2"
+ sources."babel-plugin-polyfill-regenerator-0.2.2"
sources."backoff-2.5.0"
sources."balanced-match-1.0.2"
(sources."base-0.11.2" // {
@@ -94303,6 +94631,7 @@ in
sources."better-opn-2.1.1"
sources."binary-extensions-2.2.0"
sources."bl-4.1.0"
+ sources."blueimp-md5-2.18.0"
(sources."body-parser-1.19.0" // {
dependencies = [
sources."debug-2.6.9"
@@ -94322,8 +94651,7 @@ in
sources."extend-shallow-2.0.1"
];
})
- sources."browserslist-4.16.5"
- sources."btoa-lite-1.0.0"
+ sources."browserslist-4.16.6"
sources."buffer-5.7.1"
sources."buffer-alloc-1.2.0"
sources."buffer-alloc-unsafe-1.1.0"
@@ -94351,16 +94679,12 @@ in
sources."call-bind-1.0.2"
sources."call-me-maybe-1.0.1"
sources."camelcase-5.3.1"
- sources."caniuse-lite-1.0.30001214"
+ sources."caniuse-lite-1.0.30001230"
sources."cardinal-2.1.1"
sources."caw-2.0.1"
- (sources."chalk-2.4.2" // {
+ (sources."chalk-4.1.1" // {
dependencies = [
- sources."ansi-styles-3.2.1"
- sources."color-convert-1.9.3"
- sources."color-name-1.1.3"
- sources."has-flag-3.0.0"
- sources."supports-color-5.5.0"
+ sources."ansi-styles-4.3.0"
];
})
sources."chardet-0.7.0"
@@ -94374,7 +94698,7 @@ in
sources."to-regex-range-5.0.1"
];
})
- sources."ci-info-3.1.1"
+ sources."ci-info-3.2.0"
(sources."class-utils-0.3.6" // {
dependencies = [
sources."define-property-0.2.5"
@@ -94410,10 +94734,10 @@ in
dependencies = [
sources."ansi-styles-4.3.0"
sources."argparse-1.0.10"
- sources."chalk-4.1.1"
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.2.0"
sources."tslib-2.2.0"
@@ -94447,18 +94771,9 @@ in
sources."common-path-prefix-2.0.0"
sources."commondir-1.0.1"
sources."component-emitter-1.3.0"
- (sources."compress-commons-3.0.0" // {
- dependencies = [
- sources."readable-stream-2.3.7"
- sources."safe-buffer-5.1.2"
- ];
- })
+ sources."compress-commons-4.1.0"
sources."concat-map-0.0.1"
- (sources."concordance-4.0.0" // {
- dependencies = [
- sources."semver-5.7.1"
- ];
- })
+ sources."concordance-5.0.4"
sources."config-chain-1.1.12"
sources."configstore-5.0.1"
(sources."content-disposition-0.5.3" // {
@@ -94483,7 +94798,7 @@ in
sources."safe-buffer-5.1.2"
];
})
- (sources."core-js-compat-3.11.0" // {
+ (sources."core-js-compat-3.13.0" // {
dependencies = [
sources."semver-7.0.0"
];
@@ -94493,15 +94808,16 @@ in
(sources."cpy-8.1.2" // {
dependencies = [
sources."globby-9.2.0"
+ sources."p-map-3.0.0"
];
})
- sources."crc-3.8.0"
- sources."crc32-stream-3.0.1"
+ sources."crc-32-1.2.0"
+ sources."crc32-stream-4.0.2"
sources."cross-spawn-7.0.3"
sources."crypto-random-string-2.0.0"
sources."cyclist-1.0.1"
sources."date-fns-1.30.1"
- sources."date-time-2.1.0"
+ sources."date-time-3.1.0"
(sources."debug-4.3.2" // {
dependencies = [
sources."ms-2.1.2"
@@ -94558,6 +94874,7 @@ in
sources."define-property-2.0.2"
(sources."del-5.1.0" // {
dependencies = [
+ sources."p-map-3.0.0"
sources."slash-3.0.0"
];
})
@@ -94585,7 +94902,7 @@ in
];
})
sources."dot-prop-5.3.0"
- sources."dotenv-8.2.0"
+ sources."dotenv-10.0.0"
(sources."download-7.1.0" // {
dependencies = [
sources."@sindresorhus/is-0.7.0"
@@ -94606,7 +94923,7 @@ in
})
sources."duplexer3-0.1.4"
sources."ee-first-1.1.1"
- sources."electron-to-chromium-1.3.720"
+ sources."electron-to-chromium-1.3.741"
sources."elegant-spinner-1.0.1"
sources."elf-cam-0.1.1"
sources."emoji-regex-8.0.0"
@@ -94617,7 +94934,7 @@ in
sources."envinfo-7.8.1"
sources."error-ex-1.3.2"
sources."error-stack-parser-2.0.6"
- sources."esbuild-0.11.14"
+ sources."esbuild-0.11.10"
sources."escalade-3.1.1"
sources."escape-goat-2.1.1"
sources."escape-html-1.0.3"
@@ -94641,6 +94958,7 @@ in
sources."human-signals-2.1.0"
];
})
+ sources."exit-on-epipe-1.0.1"
(sources."expand-brackets-2.1.4" // {
dependencies = [
sources."debug-2.6.9"
@@ -94689,7 +95007,7 @@ in
sources."extract-stack-1.0.0"
sources."fast-deep-equal-3.1.3"
sources."fast-diff-1.2.0"
- sources."fast-equals-2.0.1"
+ sources."fast-equals-2.0.3"
sources."fast-glob-2.2.7"
sources."fast-levenshtein-2.0.6"
sources."fast-safe-stringify-2.0.7"
@@ -94710,7 +95028,6 @@ in
sources."ansi-regex-5.0.0"
sources."ansi-styles-4.3.0"
sources."cacheable-request-7.0.1"
- sources."chalk-4.1.1"
sources."decompress-response-5.0.0"
sources."defer-to-connect-2.0.1"
sources."got-10.7.0"
@@ -94724,7 +95041,7 @@ in
sources."keyv-4.0.3"
sources."lowercase-keys-2.0.0"
sources."mimic-response-2.1.0"
- sources."p-cancelable-2.1.0"
+ sources."p-cancelable-2.1.1"
sources."pretty-format-25.5.0"
sources."responselike-2.0.0"
sources."type-fest-0.10.0"
@@ -94746,16 +95063,12 @@ in
sources."debug-2.6.9"
];
})
- (sources."find-up-4.1.0" // {
- dependencies = [
- sources."locate-path-5.0.0"
- ];
- })
+ sources."find-up-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.3"
+ sources."follow-redirects-1.14.1"
sources."for-in-1.0.2"
sources."form-data-3.0.1"
sources."forwarded-0.1.2"
@@ -94789,7 +95102,7 @@ in
})
sources."git-repo-info-2.1.1"
sources."gitconfiglocal-2.1.0"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
(sources."glob-parent-3.1.0" // {
dependencies = [
sources."is-glob-3.1.0"
@@ -94797,11 +95110,7 @@ in
})
sources."glob-to-regexp-0.3.0"
sources."global-cache-dir-1.0.1"
- (sources."global-dirs-2.1.0" // {
- dependencies = [
- sources."ini-1.3.7"
- ];
- })
+ sources."global-dirs-2.1.0"
sources."globals-11.12.0"
(sources."globby-10.0.2" // {
dependencies = [
@@ -94833,7 +95142,7 @@ in
sources."ansi-regex-2.1.1"
];
})
- sources."has-flag-4.0.0"
+ sources."has-flag-3.0.0"
(sources."has-glob-1.0.0" // {
dependencies = [
sources."is-glob-3.1.0"
@@ -94872,7 +95181,7 @@ in
];
})
sources."http-proxy-1.18.1"
- (sources."http-proxy-middleware-1.2.1" // {
+ (sources."http-proxy-middleware-1.3.1" // {
dependencies = [
sources."braces-3.0.2"
sources."fill-range-7.0.1"
@@ -94893,11 +95202,15 @@ in
sources."indexes-of-1.0.1"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
- sources."ini-1.3.8"
+ sources."ini-1.3.7"
(sources."inquirer-6.5.2" // {
dependencies = [
sources."ansi-escapes-3.2.0"
sources."ansi-regex-3.0.0"
+ sources."ansi-styles-3.2.1"
+ sources."chalk-2.4.2"
+ sources."color-convert-1.9.3"
+ sources."color-name-1.1.3"
sources."figures-2.0.0"
sources."is-fullwidth-code-point-2.0.0"
(sources."string-width-2.1.1" // {
@@ -94910,14 +95223,10 @@ in
sources."ansi-regex-4.1.0"
];
})
+ sources."supports-color-5.5.0"
];
})
- (sources."inquirer-autocomplete-prompt-1.3.0" // {
- dependencies = [
- sources."ansi-styles-4.3.0"
- sources."chalk-4.1.1"
- ];
- })
+ sources."inquirer-autocomplete-prompt-1.3.0"
sources."into-stream-3.1.0"
sources."ipaddr.js-1.9.1"
sources."is-accessor-descriptor-1.0.0"
@@ -94929,7 +95238,7 @@ in
sources."ci-info-2.0.0"
];
})
- sources."is-core-module-2.3.0"
+ sources."is-core-module-2.4.0"
sources."is-data-descriptor-1.0.0"
sources."is-descriptor-1.0.2"
sources."is-docker-2.2.1"
@@ -94970,7 +95279,15 @@ in
sources."isobject-3.0.1"
sources."isurl-1.0.0"
sources."jest-get-type-24.9.0"
- sources."jest-validate-24.9.0"
+ (sources."jest-validate-24.9.0" // {
+ dependencies = [
+ sources."ansi-styles-3.2.1"
+ sources."chalk-2.4.2"
+ sources."color-convert-1.9.3"
+ sources."color-name-1.1.3"
+ sources."supports-color-5.5.0"
+ ];
+ })
sources."jest-worker-26.6.2"
sources."jmespath-0.15.0"
sources."js-string-escape-1.0.1"
@@ -94996,6 +95313,7 @@ in
(sources."lambda-local-1.7.4" // {
dependencies = [
sources."commander-6.2.1"
+ sources."dotenv-8.6.0"
];
})
sources."latest-version-5.1.0"
@@ -95029,7 +95347,12 @@ in
})
(sources."listr-verbose-renderer-0.5.0" // {
dependencies = [
+ sources."ansi-styles-3.2.1"
+ sources."chalk-2.4.2"
+ sources."color-convert-1.9.3"
+ sources."color-name-1.1.3"
sources."figures-2.0.0"
+ sources."supports-color-5.5.0"
];
})
(sources."load-json-file-5.3.0" // {
@@ -95047,24 +95370,17 @@ in
sources."lodash-4.17.21"
sources."lodash._reinterpolate-3.0.0"
sources."lodash.camelcase-4.3.0"
- sources."lodash.clonedeep-4.5.0"
sources."lodash.debounce-4.0.8"
sources."lodash.deburr-4.1.0"
sources."lodash.defaults-4.2.0"
sources."lodash.difference-4.5.0"
sources."lodash.flatten-4.4.0"
- sources."lodash.flattendeep-4.4.0"
- sources."lodash.get-4.4.2"
sources."lodash.isempty-4.4.0"
- sources."lodash.islength-4.0.1"
sources."lodash.isplainobject-4.0.6"
- sources."lodash.merge-4.6.2"
- sources."lodash.set-4.3.2"
sources."lodash.template-4.5.0"
sources."lodash.templatesettings-4.2.0"
sources."lodash.transform-4.6.0"
sources."lodash.union-4.6.0"
- sources."lodash.uniq-4.5.0"
(sources."log-process-errors-5.1.2" // {
dependencies = [
sources."ansi-styles-4.3.0"
@@ -95074,12 +95390,7 @@ in
sources."moize-5.4.7"
];
})
- (sources."log-symbols-4.1.0" // {
- dependencies = [
- sources."ansi-styles-4.3.0"
- sources."chalk-4.1.1"
- ];
- })
+ sources."log-symbols-4.1.0"
(sources."log-update-2.3.0" // {
dependencies = [
sources."ansi-escapes-3.2.0"
@@ -95113,8 +95424,7 @@ in
sources."pump-1.0.3"
];
})
- sources."md5-hex-2.0.0"
- sources."md5-o-matic-0.1.1"
+ sources."md5-hex-3.0.1"
sources."media-typer-0.3.0"
sources."memoize-one-5.2.1"
sources."merge-descriptors-1.0.1"
@@ -95143,7 +95453,7 @@ in
})
sources."mkdirp-0.5.5"
sources."module-definition-3.3.1"
- sources."moize-6.0.2"
+ sources."moize-6.0.3"
(sources."move-file-1.2.0" // {
dependencies = [
(sources."cp-file-6.2.0" // {
@@ -95167,16 +95477,16 @@ in
sources."natural-orderby-2.0.3"
sources."negotiator-0.6.2"
sources."nested-error-stacks-2.1.0"
- (sources."netlify-6.1.20" // {
+ (sources."netlify-7.0.0" // {
dependencies = [
sources."qs-6.10.1"
];
})
- sources."netlify-redirect-parser-3.0.17"
+ sources."netlify-redirect-parser-3.0.29"
sources."netlify-redirector-0.2.1"
sources."nice-try-1.0.5"
sources."node-fetch-2.6.1"
- sources."node-releases-1.1.71"
+ sources."node-releases-1.1.72"
sources."node-source-walk-4.2.0"
(sources."node-version-alias-1.0.1" // {
dependencies = [
@@ -95209,7 +95519,7 @@ in
];
})
sources."normalize-path-3.0.0"
- sources."normalize-url-4.5.0"
+ sources."normalize-url-4.5.1"
(sources."npm-conf-1.1.3" // {
dependencies = [
sources."pify-3.0.0"
@@ -95232,7 +95542,7 @@ in
sources."kind-of-3.2.2"
];
})
- sources."object-inspect-1.10.2"
+ sources."object-inspect-1.10.3"
sources."object-keys-1.1.1"
sources."object-treeify-1.1.33"
sources."object-visit-1.0.1"
@@ -95243,7 +95553,6 @@ in
sources."tslib-2.2.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"
@@ -95257,23 +95566,10 @@ in
];
})
sources."optionator-0.8.3"
- (sources."ora-4.1.1" // {
+ (sources."ora-5.4.0" // {
dependencies = [
- sources."ansi-styles-4.3.0"
- sources."chalk-3.0.0"
sources."cli-cursor-3.1.0"
- sources."color-convert-1.9.3"
- sources."color-name-1.1.3"
- sources."has-flag-3.0.0"
- (sources."log-symbols-3.0.0" // {
- dependencies = [
- sources."ansi-styles-3.2.1"
- sources."chalk-2.4.2"
- ];
- })
- sources."mute-stream-0.0.8"
sources."restore-cursor-3.1.0"
- sources."supports-color-5.5.0"
];
})
sources."os-name-3.1.0"
@@ -95304,7 +95600,7 @@ in
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-map-4.0.0"
sources."p-reduce-2.1.0"
(sources."p-timeout-2.0.1" // {
dependencies = [
@@ -95350,19 +95646,31 @@ in
sources."path-exists-4.0.0"
sources."path-is-absolute-1.0.1"
sources."path-key-3.1.1"
- sources."path-parse-1.0.6"
+ sources."path-parse-1.0.7"
sources."path-to-regexp-0.1.7"
sources."path-type-4.0.0"
sources."pend-1.2.0"
- sources."picomatch-2.2.3"
+ sources."picomatch-2.3.0"
sources."pify-4.0.1"
sources."pinkie-2.0.4"
sources."pinkie-promise-2.0.1"
- sources."pkg-dir-4.2.0"
+ (sources."pkg-dir-4.2.0" // {
+ dependencies = [
+ sources."find-up-4.1.0"
+ sources."locate-path-5.0.0"
+ ];
+ })
sources."posix-character-classes-0.1.1"
(sources."postcss-7.0.35" // {
dependencies = [
- sources."has-flag-3.0.0"
+ sources."ansi-styles-3.2.1"
+ (sources."chalk-2.4.2" // {
+ dependencies = [
+ sources."supports-color-5.5.0"
+ ];
+ })
+ sources."color-convert-1.9.3"
+ sources."color-name-1.1.3"
sources."source-map-0.6.1"
sources."supports-color-6.1.0"
];
@@ -95381,6 +95689,7 @@ in
})
sources."pretty-ms-5.1.0"
sources."prettyjson-1.2.1"
+ sources."printj-1.1.2"
sources."process-es6-0.11.6"
sources."process-nextick-args-2.0.1"
sources."proto-list-1.2.4"
@@ -95412,10 +95721,13 @@ in
})
(sources."read-pkg-up-7.0.1" // {
dependencies = [
+ sources."find-up-4.1.0"
+ sources."locate-path-5.0.0"
sources."type-fest-0.8.1"
];
})
sources."readable-stream-3.6.0"
+ sources."readdir-glob-1.1.1"
sources."readdirp-3.6.0"
sources."redeyed-2.1.1"
sources."regenerate-1.4.2"
@@ -95452,7 +95764,7 @@ in
sources."ret-0.1.15"
sources."reusify-1.0.4"
sources."rimraf-3.0.2"
- sources."rollup-2.45.2"
+ sources."rollup-2.50.3"
(sources."rollup-plugin-inject-3.0.2" // {
dependencies = [
sources."estree-walker-0.6.1"
@@ -95558,7 +95870,7 @@ in
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."spdx-license-ids-3.0.9"
sources."split-string-3.1.0"
sources."split2-1.1.1"
sources."sprintf-js-1.0.3"
@@ -95592,7 +95904,7 @@ in
sources."supports-color-0.2.0"
];
})
- sources."statsd-client-0.4.5"
+ sources."statsd-client-0.4.6"
sources."statuses-1.5.0"
sources."strict-uri-encode-1.1.0"
sources."string-width-4.2.2"
@@ -95613,7 +95925,11 @@ in
sources."strip-final-newline-2.0.0"
sources."strip-json-comments-2.0.1"
sources."strip-outer-1.0.1"
- sources."supports-color-7.2.0"
+ (sources."supports-color-7.2.0" // {
+ dependencies = [
+ sources."has-flag-4.0.0"
+ ];
+ })
(sources."supports-hyperlinks-1.0.1" // {
dependencies = [
sources."has-flag-2.0.0"
@@ -95626,16 +95942,28 @@ in
})
sources."symbol-observable-1.2.0"
sources."tar-stream-2.2.0"
- sources."temp-dir-1.0.0"
- (sources."tempy-0.3.0" // {
+ sources."temp-dir-2.0.0"
+ (sources."tempy-1.0.1" // {
dependencies = [
- sources."crypto-random-string-1.0.0"
- sources."type-fest-0.3.1"
- sources."unique-string-1.0.0"
+ 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.2"
+ sources."globby-11.0.3"
+ sources."ignore-5.1.8"
+ sources."is-number-7.0.0"
+ sources."micromatch-4.0.4"
+ sources."slash-3.0.0"
+ sources."to-regex-range-5.0.1"
+ sources."type-fest-0.16.0"
];
})
sources."term-size-2.2.1"
- (sources."terser-5.6.1" // {
+ (sources."terser-5.7.0" // {
dependencies = [
sources."source-map-0.7.3"
];
@@ -95677,7 +96005,7 @@ in
sources."type-fest-0.21.3"
sources."type-is-1.6.18"
sources."typedarray-to-buffer-3.1.5"
- sources."typescript-4.2.4"
+ sources."typescript-4.3.2"
sources."uid-safe-2.1.5"
sources."unbzip2-stream-1.4.3"
sources."unicode-canonical-property-names-ecmascript-1.0.4"
@@ -95687,7 +96015,7 @@ in
sources."union-value-1.0.1"
sources."uniq-1.0.1"
sources."unique-string-2.0.0"
- sources."universal-user-agent-4.0.1"
+ sources."universal-user-agent-6.0.0"
sources."universalify-0.1.2"
(sources."unixify-1.0.0" // {
dependencies = [
@@ -95705,10 +96033,15 @@ in
sources."has-values-0.1.4"
];
})
- (sources."update-notifier-4.1.3" // {
+ (sources."update-notifier-5.1.0" // {
dependencies = [
- sources."ansi-styles-4.3.0"
- sources."chalk-3.0.0"
+ sources."boxen-5.0.1"
+ sources."camelcase-6.2.0"
+ sources."global-dirs-3.0.0"
+ sources."ini-2.0.0"
+ sources."is-installed-globally-0.4.0"
+ sources."is-npm-5.0.0"
+ sources."type-fest-0.20.2"
];
})
sources."uri-js-4.4.1"
@@ -95729,7 +96062,12 @@ in
sources."vary-1.1.2"
(sources."wait-port-0.2.9" // {
dependencies = [
+ sources."ansi-styles-3.2.1"
+ sources."chalk-2.4.2"
+ sources."color-convert-1.9.3"
+ sources."color-name-1.1.3"
sources."commander-3.0.2"
+ sources."supports-color-5.5.0"
];
})
sources."wcwidth-1.0.1"
@@ -95773,12 +96111,17 @@ in
sources."xtend-4.0.2"
sources."y18n-4.0.3"
sources."yallist-4.0.0"
- sources."yargs-15.4.1"
+ (sources."yargs-15.4.1" // {
+ dependencies = [
+ sources."find-up-4.1.0"
+ sources."locate-path-5.0.0"
+ ];
+ })
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"
+ sources."zip-stream-4.1.0"
];
buildInputs = globalBuildInputs;
meta = {
@@ -95815,10 +96158,10 @@ in
node-gyp = nodeEnv.buildNodePackage {
name = "node-gyp";
packageName = "node-gyp";
- version = "8.0.0";
+ version = "8.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/node-gyp/-/node-gyp-8.0.0.tgz";
- sha512 = "Jod6NxyWtcwrpAQe0O/aXOpC5QfncotgtG73dg65z6VW/C6g/G4jiajXQUBIJ8pk/VfM6mBYE9BN/HvudTunUQ==";
+ url = "https://registry.npmjs.org/node-gyp/-/node-gyp-8.1.0.tgz";
+ sha512 = "o2elh1qt7YUp3lkMwY3/l4KF3j/A3fI/Qt4NH+CQQgPJdqGE9y7qnP84cjIWN27Q0jJkrSAhCVDg+wBVNBYdBg==";
};
dependencies = [
sources."@npmcli/move-file-1.1.2"
@@ -95832,7 +96175,7 @@ in
sources."are-we-there-yet-1.1.5"
sources."balanced-match-1.0.2"
sources."brace-expansion-1.1.11"
- sources."cacache-15.0.6"
+ sources."cacache-15.2.0"
sources."chownr-2.0.0"
sources."clean-stack-2.2.0"
sources."code-point-at-1.1.0"
@@ -95848,14 +96191,14 @@ in
sources."fs-minipass-2.1.0"
sources."fs.realpath-1.0.0"
sources."gauge-2.7.4"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."graceful-fs-4.2.6"
sources."has-unicode-2.0.1"
sources."http-cache-semantics-4.1.0"
sources."http-proxy-agent-4.0.1"
sources."https-proxy-agent-5.0.0"
sources."humanize-ms-1.2.1"
- sources."iconv-lite-0.6.2"
+ sources."iconv-lite-0.6.3"
sources."imurmurhash-0.1.4"
sources."indent-string-4.0.0"
sources."infer-owner-1.0.4"
@@ -96052,7 +96395,7 @@ in
sources."invert-kv-1.0.0"
sources."ipaddr.js-1.9.1"
sources."is-arrayish-0.2.1"
- sources."is-core-module-2.3.0"
+ sources."is-core-module-2.4.0"
sources."is-finite-1.1.0"
sources."is-fullwidth-code-point-1.0.0"
sources."is-typedarray-1.0.0"
@@ -96090,7 +96433,7 @@ in
sources."negotiator-0.6.2"
(sources."node-pre-gyp-0.6.39" // {
dependencies = [
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."rimraf-2.7.1"
sources."semver-5.7.1"
];
@@ -96112,7 +96455,7 @@ in
sources."parseurl-1.3.3"
sources."path-exists-2.1.0"
sources."path-is-absolute-1.0.1"
- sources."path-parse-1.0.6"
+ sources."path-parse-1.0.7"
sources."path-to-regexp-0.1.7"
sources."path-type-1.1.0"
sources."performance-now-0.2.0"
@@ -96161,7 +96504,7 @@ in
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."spdx-license-ids-3.0.9"
(sources."sshpk-1.16.1" // {
dependencies = [
sources."assert-plus-1.0.0"
@@ -96179,7 +96522,7 @@ in
sources."tar-2.2.2"
(sources."tar-pack-3.4.1" // {
dependencies = [
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."rimraf-2.7.1"
];
})
@@ -96265,10 +96608,10 @@ in
sources."fs-minipass-1.2.7"
sources."fs.realpath-1.0.0"
sources."gauge-2.7.4"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."has-unicode-2.0.1"
sources."iconv-lite-0.4.24"
- sources."ignore-walk-3.0.3"
+ sources."ignore-walk-3.0.4"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."ini-1.3.8"
@@ -96326,16 +96669,16 @@ in
node-red = nodeEnv.buildNodePackage {
name = "node-red";
packageName = "node-red";
- version = "1.3.3";
+ version = "1.3.5";
src = fetchurl {
- url = "https://registry.npmjs.org/node-red/-/node-red-1.3.3.tgz";
- sha512 = "byKE+FxquGqaZ8HOCaZ6iz7CUwhJeBCfNqsuOCpUDxOa/Zqg2vh0OnZBv3W2DburZq/hEy2/LZxpXPg6iYSh4A==";
+ url = "https://registry.npmjs.org/node-red/-/node-red-1.3.5.tgz";
+ sha512 = "P/EmWwzuY/0mQFlrklSUrVANdv9xQsbrpKrpfA8tuhhxu1OEiSgzYdo87Zj13Hi38K4f1rNPQj4rw2vEBcYS/g==";
};
dependencies = [
- sources."@babel/runtime-7.13.17"
- sources."@node-red/editor-api-1.3.3"
- sources."@node-red/editor-client-1.3.3"
- (sources."@node-red/nodes-1.3.3" // {
+ sources."@babel/runtime-7.14.0"
+ sources."@node-red/editor-api-1.3.5"
+ sources."@node-red/editor-client-1.3.5"
+ (sources."@node-red/nodes-1.3.5" // {
dependencies = [
sources."cookie-0.4.1"
sources."http-errors-1.7.3"
@@ -96349,9 +96692,9 @@ in
})
];
})
- sources."@node-red/registry-1.3.3"
- sources."@node-red/runtime-1.3.3"
- sources."@node-red/util-1.3.3"
+ sources."@node-red/registry-1.3.5"
+ sources."@node-red/runtime-1.3.5"
+ sources."@node-red/util-1.3.5"
sources."abbrev-1.1.1"
sources."accepts-1.3.7"
(sources."agent-base-6.0.2" // {
@@ -96499,7 +96842,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.13.3"
+ sources."follow-redirects-1.14.1"
sources."forever-agent-0.6.1"
sources."form-data-2.3.3"
sources."forwarded-0.1.2"
@@ -96510,7 +96853,7 @@ in
sources."fs.realpath-1.0.0"
sources."gauge-2.7.4"
sources."getpass-0.1.7"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."glob-parent-3.1.0"
(sources."glob-stream-6.1.0" // {
dependencies = [
@@ -96543,7 +96886,7 @@ in
sources."i18next-15.1.2"
sources."iconv-lite-0.4.24"
sources."ieee754-1.2.1"
- sources."ignore-walk-3.0.3"
+ sources."ignore-walk-3.0.4"
sources."inflight-1.0.6"
sources."inherits-2.0.3"
sources."ini-1.3.8"
@@ -96618,10 +96961,10 @@ in
sources."ms-2.1.2"
sources."readable-stream-3.6.0"
sources."string_decoder-1.3.0"
- sources."ws-7.4.5"
+ sources."ws-7.4.6"
];
})
- (sources."mqtt-packet-6.9.1" // {
+ (sources."mqtt-packet-6.10.0" // {
dependencies = [
sources."debug-4.3.2"
sources."ms-2.1.2"
@@ -96870,7 +97213,7 @@ in
sources."function-bind-1.1.1"
sources."gauge-2.7.4"
sources."getpass-0.1.7"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."graceful-fs-4.2.6"
sources."har-schema-2.0.0"
sources."har-validator-5.1.5"
@@ -96881,7 +97224,7 @@ in
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."ini-1.3.8"
- sources."is-core-module-2.3.0"
+ sources."is-core-module-2.4.0"
sources."is-fullwidth-code-point-1.0.0"
sources."is-typedarray-1.0.0"
sources."isarray-1.0.0"
@@ -96934,7 +97277,7 @@ in
sources."os-tmpdir-1.0.2"
sources."osenv-0.1.5"
sources."path-is-absolute-1.0.1"
- sources."path-parse-1.0.6"
+ sources."path-parse-1.0.7"
sources."performance-now-2.1.0"
sources."process-nextick-args-2.0.1"
sources."proto-list-1.2.4"
@@ -96960,7 +97303,7 @@ in
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."spdx-license-ids-3.0.9"
sources."sshpk-1.16.1"
sources."ssri-5.3.0"
sources."string-width-1.0.2"
@@ -97099,7 +97442,7 @@ in
sources."ms-2.1.3"
sources."nopt-1.0.10"
sources."normalize-path-3.0.0"
- sources."normalize-url-4.5.0"
+ sources."normalize-url-4.5.1"
sources."once-1.4.0"
sources."p-cancelable-1.1.0"
(sources."package-json-6.5.0" // {
@@ -97107,7 +97450,7 @@ in
sources."semver-6.3.0"
];
})
- sources."picomatch-2.2.3"
+ sources."picomatch-2.3.0"
sources."prepend-http-2.0.0"
sources."pstree.remy-1.1.8"
sources."pump-3.0.0"
@@ -97175,8 +97518,8 @@ in
};
dependencies = [
sources."@babel/code-frame-7.12.13"
- sources."@babel/helper-validator-identifier-7.12.11"
- (sources."@babel/highlight-7.13.10" // {
+ sources."@babel/helper-validator-identifier-7.14.0"
+ (sources."@babel/highlight-7.14.0" // {
dependencies = [
sources."ansi-styles-3.2.1"
sources."chalk-2.4.2"
@@ -97201,7 +97544,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.41"
+ sources."@types/node-15.6.1"
sources."@types/normalize-package-data-2.4.0"
sources."@types/parse-json-4.0.0"
sources."@types/responselike-1.0.0"
@@ -97309,7 +97652,7 @@ in
sources."function-bind-1.1.1"
sources."get-stream-6.0.1"
sources."github-url-from-git-1.5.0"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."glob-parent-5.1.2"
sources."global-dirs-2.1.0"
sources."globby-11.0.3"
@@ -97334,7 +97677,7 @@ in
sources."human-signals-2.1.0"
sources."iconv-lite-0.4.24"
sources."ignore-5.1.8"
- sources."ignore-walk-3.0.3"
+ sources."ignore-walk-3.0.4"
sources."import-fresh-3.3.0"
sources."import-lazy-2.1.0"
(sources."import-local-3.0.2" // {
@@ -97381,7 +97724,7 @@ in
})
sources."is-arrayish-0.2.1"
sources."is-ci-2.0.0"
- sources."is-core-module-2.3.0"
+ sources."is-core-module-2.4.0"
sources."is-docker-2.2.1"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-3.0.0"
@@ -97504,7 +97847,7 @@ in
sources."hosted-git-info-4.0.2"
];
})
- sources."normalize-url-4.5.0"
+ sources."normalize-url-4.5.1"
(sources."npm-name-6.0.1" // {
dependencies = [
sources."p-map-3.0.0"
@@ -97528,7 +97871,7 @@ in
sources."type-fest-0.20.2"
];
})
- sources."p-cancelable-2.1.0"
+ sources."p-cancelable-2.1.1"
sources."p-defer-1.0.0"
(sources."p-event-4.2.0" // {
dependencies = [
@@ -97575,9 +97918,9 @@ in
sources."path-exists-4.0.0"
sources."path-is-absolute-1.0.1"
sources."path-key-3.1.1"
- sources."path-parse-1.0.6"
+ sources."path-parse-1.0.7"
sources."path-type-4.0.0"
- sources."picomatch-2.2.3"
+ sources."picomatch-2.3.0"
(sources."pkg-dir-5.0.0" // {
dependencies = [
sources."find-up-5.0.0"
@@ -97642,7 +97985,7 @@ in
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."spdx-license-ids-3.0.9"
sources."split-1.0.1"
sources."string-width-4.2.2"
sources."strip-ansi-6.0.0"
@@ -97657,7 +98000,7 @@ in
sources."tmp-0.0.33"
sources."to-readable-stream-2.1.0"
sources."to-regex-range-5.0.1"
- sources."trim-newlines-3.0.0"
+ sources."trim-newlines-3.0.1"
sources."tslib-1.14.1"
sources."type-fest-0.21.3"
sources."typedarray-to-buffer-3.1.5"
@@ -97704,10 +98047,10 @@ in
npm = nodeEnv.buildNodePackage {
name = "npm";
packageName = "npm";
- version = "7.11.1";
+ version = "7.15.0";
src = fetchurl {
- url = "https://registry.npmjs.org/npm/-/npm-7.11.1.tgz";
- sha512 = "F9dUPQQBm5me6t74m63CrrBSzUcLART9BmsxiJU3jZK8SBnxiqzxvsU70/uqY0cjYSoYP7AuZ2w8YfGUwhcf6A==";
+ url = "https://registry.npmjs.org/npm/-/npm-7.15.0.tgz";
+ sha512 = "GIXNqy3obii54oPF0gbcBNq4aYuB/Ovuu/uYp1eS4nij2PEDMnoOh6RoSv2MDvAaB4a+JbpX/tjDxLO7JAADgQ==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -97722,16 +98065,16 @@ in
npm-check-updates = nodeEnv.buildNodePackage {
name = "npm-check-updates";
packageName = "npm-check-updates";
- version = "11.5.1";
+ version = "11.5.13";
src = fetchurl {
- url = "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-11.5.1.tgz";
- sha512 = "4b12O2ioGKbS/4a3i/QfHNIMkNEEq7LtngUSFPatJ3FURIjGT13N/glKO/g2tPmuOtuaTXCnTJlyWBLnf+A//g==";
+ url = "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-11.5.13.tgz";
+ sha512 = "4R9MOr101RdTWYKZSbIbCFIXYegxt0Z7CYMNSYUzkLuusMcueMoH3E/dgfL3h4S9W/z4XboDNbP6jV9FJP/73A==";
};
dependencies = [
sources."@nodelib/fs.scandir-2.1.4"
sources."@nodelib/fs.stat-2.0.4"
sources."@nodelib/fs.walk-1.2.6"
- sources."@npmcli/git-2.0.8"
+ sources."@npmcli/git-2.0.9"
sources."@npmcli/installed-package-contents-1.0.7"
sources."@npmcli/move-file-1.1.2"
sources."@npmcli/node-gyp-1.0.2"
@@ -97778,7 +98121,7 @@ in
sources."brace-expansion-1.1.11"
sources."braces-3.0.2"
sources."builtins-1.0.3"
- sources."cacache-15.0.6"
+ sources."cacache-15.2.0"
(sources."cacheable-request-6.1.0" // {
dependencies = [
sources."get-stream-5.2.0"
@@ -97842,7 +98185,7 @@ in
sources."get-stdin-8.0.0"
sources."get-stream-4.1.0"
sources."getpass-0.1.7"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."glob-parent-5.1.2"
(sources."global-dirs-3.0.0" // {
dependencies = [
@@ -97863,9 +98206,9 @@ in
sources."http-signature-1.2.0"
sources."https-proxy-agent-5.0.0"
sources."humanize-ms-1.2.1"
- sources."iconv-lite-0.6.2"
+ sources."iconv-lite-0.6.3"
sources."ignore-5.1.8"
- sources."ignore-walk-3.0.3"
+ sources."ignore-walk-3.0.4"
sources."import-lazy-2.1.0"
sources."imurmurhash-0.1.4"
sources."indent-string-4.0.0"
@@ -97946,14 +98289,14 @@ in
sources."ms-2.1.2"
sources."node-gyp-7.1.2"
sources."nopt-5.0.0"
- sources."normalize-url-4.5.0"
+ sources."normalize-url-4.5.1"
sources."npm-bundled-1.1.2"
sources."npm-install-checks-4.0.0"
sources."npm-normalize-package-bin-1.0.1"
sources."npm-package-arg-8.1.2"
- sources."npm-packlist-2.1.5"
+ sources."npm-packlist-2.2.2"
sources."npm-pick-manifest-6.1.1"
- sources."npm-registry-fetch-10.1.1"
+ sources."npm-registry-fetch-10.1.2"
sources."npmlog-4.1.2"
sources."number-is-nan-1.0.1"
sources."oauth-sign-0.9.0"
@@ -97976,7 +98319,7 @@ in
sources."path-is-absolute-1.0.1"
sources."path-type-4.0.0"
sources."performance-now-2.1.0"
- sources."picomatch-2.2.3"
+ sources."picomatch-2.3.0"
sources."prepend-http-2.0.0"
sources."process-nextick-args-2.0.1"
sources."progress-2.0.3"
@@ -98147,7 +98490,7 @@ in
})
sources."gauge-2.7.4"
sources."getpass-0.1.7"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."graceful-fs-2.0.3"
sources."har-schema-2.0.0"
sources."har-validator-5.1.5"
@@ -98306,69 +98649,72 @@ in
};
dependencies = [
sources."@babel/code-frame-7.12.13"
- sources."@babel/compat-data-7.13.15"
- (sources."@babel/core-7.13.16" // {
+ sources."@babel/compat-data-7.14.4"
+ (sources."@babel/core-7.14.3" // {
dependencies = [
sources."json5-2.2.0"
sources."semver-6.3.0"
sources."source-map-0.5.7"
];
})
- (sources."@babel/generator-7.13.16" // {
+ (sources."@babel/generator-7.14.3" // {
dependencies = [
sources."source-map-0.5.7"
];
})
sources."@babel/helper-annotate-as-pure-7.12.13"
sources."@babel/helper-builder-binary-assignment-operator-visitor-7.12.13"
- (sources."@babel/helper-compilation-targets-7.13.16" // {
+ (sources."@babel/helper-compilation-targets-7.14.4" // {
dependencies = [
sources."semver-6.3.0"
];
})
- sources."@babel/helper-create-class-features-plugin-7.13.11"
- sources."@babel/helper-create-regexp-features-plugin-7.12.17"
- (sources."@babel/helper-define-polyfill-provider-0.2.0" // {
+ sources."@babel/helper-create-class-features-plugin-7.14.4"
+ sources."@babel/helper-create-regexp-features-plugin-7.14.3"
+ (sources."@babel/helper-define-polyfill-provider-0.2.3" // {
dependencies = [
sources."semver-6.3.0"
];
})
sources."@babel/helper-explode-assignable-expression-7.13.0"
- sources."@babel/helper-function-name-7.12.13"
+ sources."@babel/helper-function-name-7.14.2"
sources."@babel/helper-get-function-arity-7.12.13"
sources."@babel/helper-hoist-variables-7.13.16"
sources."@babel/helper-member-expression-to-functions-7.13.12"
sources."@babel/helper-module-imports-7.13.12"
- sources."@babel/helper-module-transforms-7.13.14"
+ sources."@babel/helper-module-transforms-7.14.2"
sources."@babel/helper-optimise-call-expression-7.12.13"
sources."@babel/helper-plugin-utils-7.13.0"
sources."@babel/helper-remap-async-to-generator-7.13.0"
- sources."@babel/helper-replace-supers-7.13.12"
+ sources."@babel/helper-replace-supers-7.14.4"
sources."@babel/helper-simple-access-7.13.12"
sources."@babel/helper-skip-transparent-expression-wrappers-7.12.1"
sources."@babel/helper-split-export-declaration-7.12.13"
- sources."@babel/helper-validator-identifier-7.12.11"
+ sources."@babel/helper-validator-identifier-7.14.0"
sources."@babel/helper-validator-option-7.12.17"
sources."@babel/helper-wrap-function-7.13.0"
- sources."@babel/helpers-7.13.17"
- sources."@babel/highlight-7.13.10"
- sources."@babel/parser-7.13.16"
+ sources."@babel/helpers-7.14.0"
+ sources."@babel/highlight-7.14.0"
+ sources."@babel/parser-7.14.4"
sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.13.12"
- sources."@babel/plugin-proposal-async-generator-functions-7.13.15"
+ sources."@babel/plugin-proposal-async-generator-functions-7.14.2"
sources."@babel/plugin-proposal-class-properties-7.13.0"
- sources."@babel/plugin-proposal-dynamic-import-7.13.8"
- sources."@babel/plugin-proposal-export-namespace-from-7.12.13"
- sources."@babel/plugin-proposal-json-strings-7.13.8"
- sources."@babel/plugin-proposal-logical-assignment-operators-7.13.8"
- sources."@babel/plugin-proposal-nullish-coalescing-operator-7.13.8"
- sources."@babel/plugin-proposal-numeric-separator-7.12.13"
- sources."@babel/plugin-proposal-object-rest-spread-7.13.8"
- sources."@babel/plugin-proposal-optional-catch-binding-7.13.8"
- sources."@babel/plugin-proposal-optional-chaining-7.13.12"
+ sources."@babel/plugin-proposal-class-static-block-7.14.3"
+ sources."@babel/plugin-proposal-dynamic-import-7.14.2"
+ sources."@babel/plugin-proposal-export-namespace-from-7.14.2"
+ sources."@babel/plugin-proposal-json-strings-7.14.2"
+ sources."@babel/plugin-proposal-logical-assignment-operators-7.14.2"
+ sources."@babel/plugin-proposal-nullish-coalescing-operator-7.14.2"
+ sources."@babel/plugin-proposal-numeric-separator-7.14.2"
+ sources."@babel/plugin-proposal-object-rest-spread-7.14.4"
+ sources."@babel/plugin-proposal-optional-catch-binding-7.14.2"
+ sources."@babel/plugin-proposal-optional-chaining-7.14.2"
sources."@babel/plugin-proposal-private-methods-7.13.0"
+ sources."@babel/plugin-proposal-private-property-in-object-7.14.0"
sources."@babel/plugin-proposal-unicode-property-regex-7.12.13"
sources."@babel/plugin-syntax-async-generators-7.8.4"
sources."@babel/plugin-syntax-class-properties-7.12.13"
+ sources."@babel/plugin-syntax-class-static-block-7.12.13"
sources."@babel/plugin-syntax-dynamic-import-7.8.3"
sources."@babel/plugin-syntax-export-namespace-from-7.8.3"
sources."@babel/plugin-syntax-flow-7.12.13"
@@ -98380,14 +98726,15 @@ in
sources."@babel/plugin-syntax-object-rest-spread-7.8.3"
sources."@babel/plugin-syntax-optional-catch-binding-7.8.3"
sources."@babel/plugin-syntax-optional-chaining-7.8.3"
+ sources."@babel/plugin-syntax-private-property-in-object-7.14.0"
sources."@babel/plugin-syntax-top-level-await-7.12.13"
sources."@babel/plugin-transform-arrow-functions-7.13.0"
sources."@babel/plugin-transform-async-to-generator-7.13.0"
sources."@babel/plugin-transform-block-scoped-functions-7.12.13"
- sources."@babel/plugin-transform-block-scoping-7.13.16"
- sources."@babel/plugin-transform-classes-7.13.0"
+ sources."@babel/plugin-transform-block-scoping-7.14.4"
+ sources."@babel/plugin-transform-classes-7.14.4"
sources."@babel/plugin-transform-computed-properties-7.13.0"
- sources."@babel/plugin-transform-destructuring-7.13.17"
+ sources."@babel/plugin-transform-destructuring-7.14.4"
sources."@babel/plugin-transform-dotall-regex-7.12.13"
sources."@babel/plugin-transform-duplicate-keys-7.12.13"
sources."@babel/plugin-transform-exponentiation-operator-7.12.13"
@@ -98396,16 +98743,16 @@ in
sources."@babel/plugin-transform-function-name-7.12.13"
sources."@babel/plugin-transform-literals-7.12.13"
sources."@babel/plugin-transform-member-expression-literals-7.12.13"
- sources."@babel/plugin-transform-modules-amd-7.13.0"
- sources."@babel/plugin-transform-modules-commonjs-7.13.8"
+ sources."@babel/plugin-transform-modules-amd-7.14.2"
+ sources."@babel/plugin-transform-modules-commonjs-7.14.0"
sources."@babel/plugin-transform-modules-systemjs-7.13.8"
- sources."@babel/plugin-transform-modules-umd-7.13.0"
+ sources."@babel/plugin-transform-modules-umd-7.14.0"
sources."@babel/plugin-transform-named-capturing-groups-regex-7.12.13"
sources."@babel/plugin-transform-new-target-7.12.13"
sources."@babel/plugin-transform-object-super-7.12.13"
- sources."@babel/plugin-transform-parameters-7.13.0"
+ sources."@babel/plugin-transform-parameters-7.14.2"
sources."@babel/plugin-transform-property-literals-7.12.13"
- sources."@babel/plugin-transform-react-jsx-7.13.12"
+ sources."@babel/plugin-transform-react-jsx-7.14.3"
sources."@babel/plugin-transform-regenerator-7.13.15"
sources."@babel/plugin-transform-reserved-words-7.12.13"
sources."@babel/plugin-transform-shorthand-properties-7.12.13"
@@ -98415,16 +98762,16 @@ in
sources."@babel/plugin-transform-typeof-symbol-7.12.13"
sources."@babel/plugin-transform-unicode-escapes-7.12.13"
sources."@babel/plugin-transform-unicode-regex-7.12.13"
- (sources."@babel/preset-env-7.13.15" // {
+ (sources."@babel/preset-env-7.14.4" // {
dependencies = [
sources."semver-6.3.0"
];
})
sources."@babel/preset-modules-0.1.4"
- sources."@babel/runtime-7.13.17"
+ sources."@babel/runtime-7.14.0"
sources."@babel/template-7.12.13"
- sources."@babel/traverse-7.13.17"
- sources."@babel/types-7.13.17"
+ sources."@babel/traverse-7.14.2"
+ sources."@babel/types-7.14.4"
sources."@iarna/toml-2.2.5"
sources."@mrmlnc/readdir-enhanced-2.2.1"
sources."@nodelib/fs.stat-1.1.3"
@@ -98446,7 +98793,7 @@ in
sources."alphanum-sort-1.0.2"
sources."ansi-regex-3.0.0"
sources."ansi-styles-3.2.1"
- sources."ansi-to-html-0.6.14"
+ sources."ansi-to-html-0.6.15"
(sources."anymatch-2.0.0" // {
dependencies = [
sources."normalize-path-2.1.1"
@@ -98479,13 +98826,13 @@ in
sources."aws-sign2-0.7.0"
sources."aws4-1.11.0"
sources."babel-plugin-dynamic-import-node-2.3.3"
- (sources."babel-plugin-polyfill-corejs2-0.2.0" // {
+ (sources."babel-plugin-polyfill-corejs2-0.2.2" // {
dependencies = [
sources."semver-6.3.0"
];
})
- sources."babel-plugin-polyfill-corejs3-0.2.0"
- sources."babel-plugin-polyfill-regenerator-0.2.0"
+ sources."babel-plugin-polyfill-corejs3-0.2.2"
+ sources."babel-plugin-polyfill-regenerator-0.2.2"
(sources."babel-runtime-6.26.0" // {
dependencies = [
sources."regenerator-runtime-0.11.1"
@@ -98529,7 +98876,7 @@ in
sources."pako-1.0.11"
];
})
- sources."browserslist-4.16.5"
+ sources."browserslist-4.16.6"
(sources."buffer-4.9.2" // {
dependencies = [
sources."isarray-1.0.0"
@@ -98546,7 +98893,7 @@ in
sources."caller-path-2.0.0"
sources."callsites-2.0.0"
sources."caniuse-api-3.0.0"
- sources."caniuse-lite-1.0.30001214"
+ sources."caniuse-lite-1.0.30001230"
sources."caseless-0.12.0"
sources."chalk-2.4.2"
sources."chokidar-2.1.8"
@@ -98573,7 +98920,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.11.0" // {
+ (sources."core-js-compat-3.13.0" // {
dependencies = [
sources."semver-7.0.0"
];
@@ -98667,7 +99014,6 @@ in
(sources."dom-serializer-0.2.2" // {
dependencies = [
sources."domelementtype-2.2.0"
- sources."entities-2.2.0"
];
})
sources."domain-browser-1.2.0"
@@ -98685,19 +99031,19 @@ in
sources."duplexer2-0.1.4"
sources."ecc-jsbn-0.1.2"
sources."ee-first-1.1.1"
- sources."electron-to-chromium-1.3.720"
+ sources."electron-to-chromium-1.3.741"
(sources."elliptic-6.5.4" // {
dependencies = [
sources."bn.js-4.12.0"
];
})
sources."encodeurl-1.0.2"
- sources."entities-1.1.2"
+ sources."entities-2.2.0"
sources."envinfo-7.8.1"
sources."error-ex-1.3.2"
- (sources."es-abstract-1.18.0" // {
+ (sources."es-abstract-1.18.3" // {
dependencies = [
- sources."object-inspect-1.10.2"
+ sources."object-inspect-1.10.3"
];
})
sources."es-to-primitive-1.2.1"
@@ -98748,7 +99094,7 @@ in
sources."get-port-3.2.0"
sources."get-value-2.0.6"
sources."getpass-0.1.7"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
(sources."glob-parent-3.1.0" // {
dependencies = [
sources."is-glob-3.1.0"
@@ -98793,15 +99139,14 @@ in
sources."posthtml-0.15.2"
sources."posthtml-parser-0.7.2"
sources."source-map-0.7.3"
- sources."terser-5.6.1"
+ sources."terser-5.7.0"
];
})
(sources."htmlparser2-6.1.0" // {
dependencies = [
- sources."dom-serializer-1.3.1"
+ sources."dom-serializer-1.3.2"
sources."domelementtype-2.2.0"
sources."domutils-2.6.0"
- sources."entities-2.2.0"
];
})
sources."http-errors-1.7.3"
@@ -98821,19 +99166,19 @@ in
];
})
sources."is-arrayish-0.2.1"
- sources."is-bigint-1.0.1"
+ sources."is-bigint-1.0.2"
sources."is-binary-path-1.0.1"
- sources."is-boolean-object-1.1.0"
+ sources."is-boolean-object-1.1.1"
sources."is-buffer-1.1.6"
sources."is-callable-1.2.3"
sources."is-color-stop-1.1.0"
- sources."is-core-module-2.3.0"
+ sources."is-core-module-2.4.0"
(sources."is-data-descriptor-1.0.0" // {
dependencies = [
sources."kind-of-6.0.3"
];
})
- sources."is-date-object-1.0.2"
+ sources."is-date-object-1.0.4"
(sources."is-descriptor-1.0.2" // {
dependencies = [
sources."kind-of-6.0.3"
@@ -98846,13 +99191,13 @@ in
sources."is-html-1.1.0"
sources."is-negative-zero-2.0.1"
sources."is-number-3.0.0"
- sources."is-number-object-1.0.4"
+ sources."is-number-object-1.0.5"
sources."is-obj-2.0.0"
sources."is-plain-object-2.0.4"
- sources."is-regex-1.1.2"
+ sources."is-regex-1.1.3"
sources."is-resolvable-1.1.0"
- sources."is-string-1.0.5"
- sources."is-symbol-1.0.3"
+ sources."is-string-1.0.6"
+ sources."is-symbol-1.0.4"
sources."is-typedarray-1.0.0"
sources."is-url-1.2.4"
sources."is-windows-1.0.2"
@@ -98948,7 +99293,7 @@ in
sources."punycode-1.4.1"
];
})
- sources."node-releases-1.1.71"
+ sources."node-releases-1.1.72"
sources."normalize-path-3.0.0"
sources."normalize-url-3.3.0"
sources."nth-check-1.0.2"
@@ -98962,7 +99307,7 @@ in
sources."object.assign-4.1.2"
sources."object.getownpropertydescriptors-2.1.2"
sources."object.pick-1.3.0"
- sources."object.values-1.1.3"
+ sources."object.values-1.1.4"
sources."on-finished-2.3.0"
sources."once-1.4.0"
sources."onetime-2.0.1"
@@ -98980,7 +99325,7 @@ in
sources."path-dirname-1.0.2"
sources."path-is-absolute-1.0.1"
sources."path-key-2.0.1"
- sources."path-parse-1.0.6"
+ sources."path-parse-1.0.7"
sources."pbkdf2-3.1.2"
sources."performance-now-2.1.0"
sources."physical-cpu-count-2.0.0"
@@ -99048,7 +99393,7 @@ in
sources."postcss-ordered-values-4.1.2"
sources."postcss-reduce-initial-4.0.3"
sources."postcss-reduce-transforms-4.0.2"
- sources."postcss-selector-parser-6.0.5"
+ sources."postcss-selector-parser-6.0.6"
sources."postcss-svgo-4.0.3"
sources."postcss-unique-selectors-4.0.1"
sources."postcss-value-parser-3.3.1"
@@ -99056,6 +99401,7 @@ in
(sources."posthtml-parser-0.4.2" // {
dependencies = [
sources."domhandler-2.4.2"
+ sources."entities-1.1.2"
sources."htmlparser2-3.10.1"
sources."readable-stream-3.6.0"
];
@@ -99415,7 +99761,7 @@ in
sources."get-caller-file-2.0.5"
sources."get-intrinsic-1.1.1"
sources."getpass-0.1.7"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."graceful-fs-4.2.6"
sources."handlebars-4.7.7"
sources."har-schema-2.0.0"
@@ -99442,7 +99788,7 @@ in
sources."json-schema-traverse-0.4.1"
sources."json-stringify-safe-5.0.1"
sources."jsprim-1.4.1"
- (sources."kad-git+https://github.com/wikimedia/kad.git#master" // {
+ (sources."kad-git://github.com/wikimedia/kad#master" // {
dependencies = [
sources."ms-0.7.3"
];
@@ -99450,7 +99796,7 @@ in
sources."kad-fs-0.0.4"
sources."kad-localstorage-0.0.7"
sources."kad-memstore-0.0.1"
- sources."limitation-0.2.1"
+ sources."limitation-0.2.2"
sources."locate-path-3.0.0"
sources."lodash-4.17.21"
sources."lodash.clone-4.5.0"
@@ -99458,7 +99804,6 @@ in
sources."lru-cache-6.0.0"
sources."media-typer-0.3.0"
sources."mediawiki-title-0.6.5"
- sources."merge-1.2.1"
sources."merge-descriptors-1.0.1"
sources."methods-1.1.2"
sources."mime-1.6.0"
@@ -99534,7 +99879,7 @@ in
];
})
sources."serve-static-1.14.1"
- (sources."service-runner-2.8.2" // {
+ (sources."service-runner-2.8.3" // {
dependencies = [
sources."semver-7.3.5"
sources."yargs-14.2.3"
@@ -99557,7 +99902,7 @@ in
sources."tunnel-agent-0.6.0"
sources."tweetnacl-0.14.5"
sources."type-is-1.6.18"
- sources."uglify-js-3.13.4"
+ sources."uglify-js-3.13.8"
sources."unix-dgram-2.0.4"
sources."unpipe-1.0.0"
sources."uri-js-4.4.1"
@@ -99617,7 +99962,7 @@ in
sources."find-yarn-workspace-root-2.0.0"
sources."fs-extra-7.0.1"
sources."fs.realpath-1.0.0"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."graceful-fs-4.2.6"
sources."has-flag-3.0.0"
sources."inflight-1.0.6"
@@ -99638,7 +99983,7 @@ in
sources."os-tmpdir-1.0.2"
sources."path-is-absolute-1.0.1"
sources."path-key-2.0.1"
- sources."picomatch-2.2.3"
+ sources."picomatch-2.3.0"
sources."rimraf-2.7.1"
sources."semver-5.7.1"
sources."shebang-command-1.2.0"
@@ -99741,7 +100086,7 @@ in
sources."deep-extend-0.6.0"
sources."define-properties-1.1.3"
sources."dns-equal-1.0.0"
- sources."dns-packet-1.3.1"
+ sources."dns-packet-1.3.4"
sources."dns-txt-2.0.2"
sources."end-of-stream-1.4.4"
sources."error-ex-1.3.2"
@@ -99761,7 +100106,7 @@ in
sources."get-browser-rtc-1.1.0"
sources."get-intrinsic-1.1.1"
sources."get-stdin-4.0.1"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."graceful-fs-4.2.6"
sources."has-1.0.3"
sources."has-ansi-2.0.0"
@@ -99794,11 +100139,11 @@ in
sources."ipaddr.js-2.0.0"
sources."is-arguments-1.1.0"
sources."is-arrayish-0.2.1"
- sources."is-core-module-2.3.0"
- sources."is-date-object-1.0.2"
+ sources."is-core-module-2.4.0"
+ sources."is-date-object-1.0.4"
sources."is-finite-1.1.0"
sources."is-fullwidth-code-point-1.0.0"
- sources."is-regex-1.1.2"
+ sources."is-regex-1.1.3"
sources."is-utf8-0.2.1"
sources."isarray-1.0.0"
sources."k-bucket-0.6.0"
@@ -99858,7 +100203,7 @@ in
})
sources."path-exists-2.1.0"
sources."path-is-absolute-1.0.1"
- sources."path-parse-1.0.6"
+ sources."path-parse-1.0.7"
sources."path-type-1.1.0"
(sources."peer-wire-protocol-0.7.1" // {
dependencies = [
@@ -99917,7 +100262,7 @@ in
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."spdx-license-ids-3.0.9"
sources."speedometer-0.1.4"
sources."stream-buffers-2.2.0"
sources."string-width-1.0.2"
@@ -100081,7 +100426,7 @@ in
sources."ms-2.1.3"
];
})
- (sources."engine.io-client-3.5.1" // {
+ (sources."engine.io-client-3.5.2" // {
dependencies = [
sources."debug-3.1.0"
];
@@ -100107,7 +100452,7 @@ in
sources."fs.realpath-1.0.0"
sources."get-browser-rtc-1.1.0"
sources."getpass-0.1.7"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."graceful-fs-4.2.6"
sources."har-schema-2.0.0"
sources."har-validator-5.1.5"
@@ -100326,8 +100671,8 @@ in
sources."verror-1.10.0"
sources."which-1.3.1"
sources."wrappy-1.0.2"
- sources."ws-7.4.5"
- sources."xmlhttprequest-ssl-1.5.5"
+ sources."ws-7.4.6"
+ sources."xmlhttprequest-ssl-1.6.3"
sources."xtend-4.0.2"
sources."yeast-0.1.2"
sources."zip-stream-2.1.3"
@@ -100440,7 +100785,7 @@ in
sources."fclone-1.0.11"
sources."file-uri-to-path-2.0.0"
sources."fill-range-7.0.1"
- sources."follow-redirects-1.13.3"
+ sources."follow-redirects-1.14.1"
sources."fs-extra-8.1.0"
sources."fs.realpath-1.0.0"
sources."fsevents-2.3.2"
@@ -100449,7 +100794,7 @@ in
sources."get-uri-3.0.2"
sources."git-node-fs-1.0.0"
sources."git-sha1-0.1.2"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."glob-parent-5.1.2"
sources."graceful-fs-4.2.6"
sources."has-1.0.3"
@@ -100463,7 +100808,7 @@ in
sources."ini-1.3.8"
sources."ip-1.1.5"
sources."is-binary-path-2.1.0"
- sources."is-core-module-2.3.0"
+ sources."is-core-module-2.4.0"
sources."is-extglob-2.1.1"
sources."is-glob-4.0.1"
sources."is-number-7.0.0"
@@ -100500,8 +100845,8 @@ in
sources."pac-resolver-4.2.0"
sources."pako-0.2.9"
sources."path-is-absolute-1.0.1"
- sources."path-parse-1.0.6"
- sources."picomatch-2.2.3"
+ sources."path-parse-1.0.7"
+ sources."picomatch-2.3.0"
sources."pidusage-2.0.21"
sources."pm2-axon-4.0.1"
sources."pm2-axon-rpc-0.7.1"
@@ -100573,10 +100918,10 @@ in
pnpm = nodeEnv.buildNodePackage {
name = "pnpm";
packageName = "pnpm";
- version = "6.2.1";
+ version = "6.6.1";
src = fetchurl {
- url = "https://registry.npmjs.org/pnpm/-/pnpm-6.2.1.tgz";
- sha512 = "aSrlGL3703pXhMaxFpFLAFakvpla0PaGN2/zOh5oG2qbvJ+jKuGkpHPhpLyAnhs/z+Je3wBaYA7vETu1f1xwqQ==";
+ url = "https://registry.npmjs.org/pnpm/-/pnpm-6.6.1.tgz";
+ sha512 = "viktTHmFzFckpvY/Gwtl8esjeOItpCgycIrVgLPh4qbxK4f+JqkEM+3LZF5dudyWzBZCOspZHePNuxeM0zn/Ew==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -100626,8 +100971,8 @@ in
};
dependencies = [
sources."@babel/code-frame-7.12.13"
- sources."@babel/helper-validator-identifier-7.12.11"
- (sources."@babel/highlight-7.13.10" // {
+ sources."@babel/helper-validator-identifier-7.14.0"
+ (sources."@babel/highlight-7.14.0" // {
dependencies = [
sources."ansi-styles-3.2.1"
sources."chalk-2.4.2"
@@ -100702,7 +101047,7 @@ in
sources."parent-module-1.0.1"
sources."parse-json-5.2.0"
sources."path-type-4.0.0"
- sources."picomatch-2.2.3"
+ sources."picomatch-2.3.0"
sources."pify-2.3.0"
sources."postcss-load-config-3.0.1"
sources."postcss-reporter-7.0.2"
@@ -100739,10 +101084,10 @@ in
prettier = nodeEnv.buildNodePackage {
name = "prettier";
packageName = "prettier";
- version = "2.2.1";
+ version = "2.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/prettier/-/prettier-2.2.1.tgz";
- sha512 = "PqyhM2yCjg/oKkFPtTGUojv7gnZAoG80ttl45O6x2Ug/rMJw4wcc9k6aaf2hibP7BGVCCM33gZoGjyvt9mm16Q==";
+ url = "https://registry.npmjs.org/prettier/-/prettier-2.3.0.tgz";
+ sha512 = "kXtO4s0Lz/DW/IJ9QdWhAf7/NmPWQXkFr/r/WkR3vyI+0v8amTDxiaQSLzs8NBlytfLWX/7uQUMIW677yLKl4w==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -100768,7 +101113,7 @@ in
sources."concat-map-0.0.1"
sources."fs.realpath-1.0.0"
sources."gaze-1.1.3"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."globule-1.3.2"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
@@ -100897,7 +101242,7 @@ in
sources."function-bind-1.1.1"
sources."gaze-1.1.3"
sources."get-assigned-identifiers-1.2.0"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."globule-1.3.2"
sources."graceful-fs-4.2.6"
sources."has-1.0.3"
@@ -100920,7 +101265,7 @@ in
];
})
sources."is-buffer-1.1.6"
- sources."is-core-module-2.3.0"
+ sources."is-core-module-2.4.0"
sources."isarray-1.0.0"
sources."isexe-2.0.0"
sources."json-stable-stringify-0.0.1"
@@ -100968,7 +101313,7 @@ in
sources."parse-asn1-5.1.6"
sources."path-browserify-0.0.1"
sources."path-is-absolute-1.0.1"
- sources."path-parse-1.0.6"
+ sources."path-parse-1.0.7"
sources."path-platform-0.11.15"
sources."pbkdf2-3.1.2"
sources."process-0.11.10"
@@ -101125,10 +101470,10 @@ in
pyright = nodeEnv.buildNodePackage {
name = "pyright";
packageName = "pyright";
- version = "1.1.134";
+ version = "1.1.144";
src = fetchurl {
- url = "https://registry.npmjs.org/pyright/-/pyright-1.1.134.tgz";
- sha512 = "wQSdU6X3olAwCZy3tSA0fn8nMQGEwm01rm1dHM+aN2crzXIcUQ9sLOf+wCn5PFlLGsm/CXH7ROYmeMs3jXQ8Rw==";
+ url = "https://registry.npmjs.org/pyright/-/pyright-1.1.144.tgz";
+ sha512 = "nzCTqxg7JPHy5FkyX4+meD4c7Zt/mgPBI+nFGS9HoN/3GVPHAlTcCKa1JPTEh7O/N5+8W/9WZUuUntBW2R3adg==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -101200,15 +101545,15 @@ in
sources."function-bind-1.1.1"
sources."get-caller-file-1.0.3"
sources."get-stream-4.1.0"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."graphql-0.11.7"
sources."has-1.0.3"
sources."has-flag-3.0.0"
- sources."iconv-lite-0.6.2"
+ sources."iconv-lite-0.6.3"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."invert-kv-2.0.0"
- sources."is-core-module-2.3.0"
+ sources."is-core-module-2.4.0"
sources."is-fullwidth-code-point-1.0.0"
sources."is-stream-1.1.0"
sources."is-url-1.2.4"
@@ -101259,7 +101604,7 @@ in
sources."path-exists-3.0.0"
sources."path-is-absolute-1.0.1"
sources."path-key-2.0.1"
- sources."path-parse-1.0.6"
+ sources."path-parse-1.0.7"
sources."pluralize-7.0.0"
sources."prelude-ls-1.1.2"
sources."process-nextick-args-2.0.1"
@@ -101376,9 +101721,8 @@ in
dependencies = [
sources."ansi-regex-2.1.1"
sources."ansi-styles-2.2.1"
- sources."array-filter-1.0.0"
sources."async-0.2.10"
- sources."available-typed-arrays-1.0.2"
+ sources."available-typed-arrays-1.0.4"
sources."balanced-match-1.0.2"
sources."brace-expansion-1.1.11"
sources."call-bind-1.0.2"
@@ -101388,7 +101732,7 @@ in
sources."cycle-1.0.3"
sources."deep-equal-2.0.5"
sources."define-properties-1.1.3"
- sources."es-abstract-1.18.0"
+ sources."es-abstract-1.18.3"
sources."es-get-iterator-1.1.2"
sources."es-to-primitive-1.2.1"
sources."escape-string-regexp-1.0.5"
@@ -101397,7 +101741,7 @@ in
sources."fs.realpath-1.0.0"
sources."function-bind-1.1.1"
sources."get-intrinsic-1.1.1"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."has-1.0.3"
sources."has-ansi-2.0.0"
sources."has-bigints-1.0.1"
@@ -101406,17 +101750,17 @@ in
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."is-arguments-1.1.0"
- sources."is-bigint-1.0.1"
- sources."is-boolean-object-1.1.0"
+ sources."is-bigint-1.0.2"
+ sources."is-boolean-object-1.1.1"
sources."is-callable-1.2.3"
- sources."is-date-object-1.0.2"
+ sources."is-date-object-1.0.4"
sources."is-map-2.0.2"
sources."is-negative-zero-2.0.1"
- sources."is-number-object-1.0.4"
- sources."is-regex-1.1.2"
+ sources."is-number-object-1.0.5"
+ sources."is-regex-1.1.3"
sources."is-set-2.0.2"
- sources."is-string-1.0.5"
- sources."is-symbol-1.0.3"
+ sources."is-string-1.0.6"
+ sources."is-symbol-1.0.4"
sources."is-typed-array-1.1.5"
sources."is-weakmap-2.0.1"
sources."is-weakset-2.0.1"
@@ -101427,7 +101771,7 @@ in
sources."mkdirp-0.5.5"
sources."mute-stream-0.0.8"
sources."ncp-0.4.2"
- sources."object-inspect-1.10.2"
+ sources."object-inspect-1.10.3"
sources."object-is-1.1.5"
sources."object-keys-1.1.1"
sources."object.assign-4.1.2"
@@ -101477,66 +101821,69 @@ in
sha512 = "coA9MuNPfN+8TyFj7aOycw2e5W9t+sSgFOUyK30oDrh2MWWWHLjY0I4V1puyCconC2arggfDE2GYXvqOTCGv9Q==";
};
dependencies = [
- sources."@babel/cli-7.13.16"
+ sources."@babel/cli-7.14.3"
sources."@babel/code-frame-7.12.13"
- sources."@babel/compat-data-7.13.15"
- (sources."@babel/core-7.13.16" // {
+ sources."@babel/compat-data-7.14.4"
+ (sources."@babel/core-7.14.3" // {
dependencies = [
sources."semver-6.3.0"
];
})
- sources."@babel/generator-7.13.16"
+ sources."@babel/generator-7.14.3"
sources."@babel/helper-annotate-as-pure-7.12.13"
sources."@babel/helper-builder-binary-assignment-operator-visitor-7.12.13"
- (sources."@babel/helper-compilation-targets-7.13.16" // {
+ (sources."@babel/helper-compilation-targets-7.14.4" // {
dependencies = [
sources."semver-6.3.0"
];
})
- sources."@babel/helper-create-class-features-plugin-7.13.11"
- sources."@babel/helper-create-regexp-features-plugin-7.12.17"
- (sources."@babel/helper-define-polyfill-provider-0.2.0" // {
+ sources."@babel/helper-create-class-features-plugin-7.14.4"
+ sources."@babel/helper-create-regexp-features-plugin-7.14.3"
+ (sources."@babel/helper-define-polyfill-provider-0.2.3" // {
dependencies = [
sources."semver-6.3.0"
];
})
sources."@babel/helper-explode-assignable-expression-7.13.0"
- sources."@babel/helper-function-name-7.12.13"
+ sources."@babel/helper-function-name-7.14.2"
sources."@babel/helper-get-function-arity-7.12.13"
sources."@babel/helper-hoist-variables-7.13.16"
sources."@babel/helper-member-expression-to-functions-7.13.12"
sources."@babel/helper-module-imports-7.13.12"
- sources."@babel/helper-module-transforms-7.13.14"
+ sources."@babel/helper-module-transforms-7.14.2"
sources."@babel/helper-optimise-call-expression-7.12.13"
sources."@babel/helper-plugin-utils-7.13.0"
sources."@babel/helper-remap-async-to-generator-7.13.0"
- sources."@babel/helper-replace-supers-7.13.12"
+ sources."@babel/helper-replace-supers-7.14.4"
sources."@babel/helper-simple-access-7.13.12"
sources."@babel/helper-skip-transparent-expression-wrappers-7.12.1"
sources."@babel/helper-split-export-declaration-7.12.13"
- sources."@babel/helper-validator-identifier-7.12.11"
+ sources."@babel/helper-validator-identifier-7.14.0"
sources."@babel/helper-validator-option-7.12.17"
sources."@babel/helper-wrap-function-7.13.0"
- sources."@babel/helpers-7.13.17"
- sources."@babel/highlight-7.13.10"
- sources."@babel/parser-7.13.16"
+ sources."@babel/helpers-7.14.0"
+ sources."@babel/highlight-7.14.0"
+ sources."@babel/parser-7.14.4"
sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.13.12"
- sources."@babel/plugin-proposal-async-generator-functions-7.13.15"
+ sources."@babel/plugin-proposal-async-generator-functions-7.14.2"
sources."@babel/plugin-proposal-class-properties-7.13.0"
- sources."@babel/plugin-proposal-dynamic-import-7.13.8"
+ sources."@babel/plugin-proposal-class-static-block-7.14.3"
+ sources."@babel/plugin-proposal-dynamic-import-7.14.2"
sources."@babel/plugin-proposal-export-default-from-7.12.13"
- sources."@babel/plugin-proposal-export-namespace-from-7.12.13"
- sources."@babel/plugin-proposal-json-strings-7.13.8"
- sources."@babel/plugin-proposal-logical-assignment-operators-7.13.8"
- sources."@babel/plugin-proposal-nullish-coalescing-operator-7.13.8"
- sources."@babel/plugin-proposal-numeric-separator-7.12.13"
- sources."@babel/plugin-proposal-object-rest-spread-7.13.8"
- sources."@babel/plugin-proposal-optional-catch-binding-7.13.8"
- sources."@babel/plugin-proposal-optional-chaining-7.13.12"
+ sources."@babel/plugin-proposal-export-namespace-from-7.14.2"
+ sources."@babel/plugin-proposal-json-strings-7.14.2"
+ sources."@babel/plugin-proposal-logical-assignment-operators-7.14.2"
+ sources."@babel/plugin-proposal-nullish-coalescing-operator-7.14.2"
+ sources."@babel/plugin-proposal-numeric-separator-7.14.2"
+ sources."@babel/plugin-proposal-object-rest-spread-7.14.4"
+ sources."@babel/plugin-proposal-optional-catch-binding-7.14.2"
+ sources."@babel/plugin-proposal-optional-chaining-7.14.2"
sources."@babel/plugin-proposal-private-methods-7.13.0"
+ sources."@babel/plugin-proposal-private-property-in-object-7.14.0"
sources."@babel/plugin-proposal-unicode-property-regex-7.12.13"
sources."@babel/plugin-syntax-async-generators-7.8.4"
sources."@babel/plugin-syntax-class-properties-7.12.13"
+ sources."@babel/plugin-syntax-class-static-block-7.12.13"
sources."@babel/plugin-syntax-dynamic-import-7.8.3"
sources."@babel/plugin-syntax-export-default-from-7.12.13"
sources."@babel/plugin-syntax-export-namespace-from-7.8.3"
@@ -101548,14 +101895,15 @@ in
sources."@babel/plugin-syntax-object-rest-spread-7.8.3"
sources."@babel/plugin-syntax-optional-catch-binding-7.8.3"
sources."@babel/plugin-syntax-optional-chaining-7.8.3"
+ sources."@babel/plugin-syntax-private-property-in-object-7.14.0"
sources."@babel/plugin-syntax-top-level-await-7.12.13"
sources."@babel/plugin-transform-arrow-functions-7.13.0"
sources."@babel/plugin-transform-async-to-generator-7.13.0"
sources."@babel/plugin-transform-block-scoped-functions-7.12.13"
- sources."@babel/plugin-transform-block-scoping-7.13.16"
- sources."@babel/plugin-transform-classes-7.13.0"
+ sources."@babel/plugin-transform-block-scoping-7.14.4"
+ sources."@babel/plugin-transform-classes-7.14.4"
sources."@babel/plugin-transform-computed-properties-7.13.0"
- sources."@babel/plugin-transform-destructuring-7.13.17"
+ sources."@babel/plugin-transform-destructuring-7.14.4"
sources."@babel/plugin-transform-dotall-regex-7.12.13"
sources."@babel/plugin-transform-duplicate-keys-7.12.13"
sources."@babel/plugin-transform-exponentiation-operator-7.12.13"
@@ -101563,22 +101911,22 @@ in
sources."@babel/plugin-transform-function-name-7.12.13"
sources."@babel/plugin-transform-literals-7.12.13"
sources."@babel/plugin-transform-member-expression-literals-7.12.13"
- sources."@babel/plugin-transform-modules-amd-7.13.0"
- sources."@babel/plugin-transform-modules-commonjs-7.13.8"
+ sources."@babel/plugin-transform-modules-amd-7.14.2"
+ sources."@babel/plugin-transform-modules-commonjs-7.14.0"
sources."@babel/plugin-transform-modules-systemjs-7.13.8"
- sources."@babel/plugin-transform-modules-umd-7.13.0"
+ sources."@babel/plugin-transform-modules-umd-7.14.0"
sources."@babel/plugin-transform-named-capturing-groups-regex-7.12.13"
sources."@babel/plugin-transform-new-target-7.12.13"
sources."@babel/plugin-transform-object-super-7.12.13"
- sources."@babel/plugin-transform-parameters-7.13.0"
+ sources."@babel/plugin-transform-parameters-7.14.2"
sources."@babel/plugin-transform-property-literals-7.12.13"
- sources."@babel/plugin-transform-react-display-name-7.12.13"
- sources."@babel/plugin-transform-react-jsx-7.13.12"
+ sources."@babel/plugin-transform-react-display-name-7.14.2"
+ sources."@babel/plugin-transform-react-jsx-7.14.3"
sources."@babel/plugin-transform-react-jsx-development-7.12.17"
sources."@babel/plugin-transform-react-pure-annotations-7.12.1"
sources."@babel/plugin-transform-regenerator-7.13.15"
sources."@babel/plugin-transform-reserved-words-7.12.13"
- (sources."@babel/plugin-transform-runtime-7.13.15" // {
+ (sources."@babel/plugin-transform-runtime-7.14.3" // {
dependencies = [
sources."semver-6.3.0"
];
@@ -101590,7 +101938,7 @@ in
sources."@babel/plugin-transform-typeof-symbol-7.12.13"
sources."@babel/plugin-transform-unicode-escapes-7.12.13"
sources."@babel/plugin-transform-unicode-regex-7.12.13"
- (sources."@babel/preset-env-7.13.15" // {
+ (sources."@babel/preset-env-7.14.4" // {
dependencies = [
sources."semver-6.3.0"
];
@@ -101599,16 +101947,16 @@ in
sources."@babel/preset-react-7.13.13"
sources."@babel/preset-stage-0-7.8.3"
sources."@babel/register-7.13.16"
- sources."@babel/runtime-7.13.17"
+ sources."@babel/runtime-7.14.0"
sources."@babel/template-7.12.13"
- sources."@babel/traverse-7.13.17"
- sources."@babel/types-7.13.17"
+ sources."@babel/traverse-7.14.2"
+ sources."@babel/types-7.14.4"
sources."@reach/router-1.3.4"
sources."@sindresorhus/is-0.7.0"
sources."@types/glob-7.1.3"
sources."@types/json-schema-7.0.7"
sources."@types/minimatch-3.0.4"
- sources."@types/node-14.14.41"
+ sources."@types/node-15.6.1"
sources."@types/parse-json-4.0.0"
sources."@types/q-1.5.4"
sources."@webassemblyjs/ast-1.9.0"
@@ -101697,13 +102045,13 @@ in
})
sources."babel-plugin-dynamic-import-node-2.3.3"
sources."babel-plugin-macros-2.8.0"
- (sources."babel-plugin-polyfill-corejs2-0.2.0" // {
+ (sources."babel-plugin-polyfill-corejs2-0.2.2" // {
dependencies = [
sources."semver-6.3.0"
];
})
- sources."babel-plugin-polyfill-corejs3-0.2.0"
- sources."babel-plugin-polyfill-regenerator-0.2.0"
+ sources."babel-plugin-polyfill-corejs3-0.2.2"
+ sources."babel-plugin-polyfill-regenerator-0.2.2"
sources."babel-plugin-transform-react-remove-prop-types-0.4.24"
sources."babel-plugin-universal-import-4.0.2"
(sources."babel-runtime-6.26.0" // {
@@ -101762,7 +102110,7 @@ in
];
})
sources."browserify-zlib-0.1.4"
- sources."browserslist-4.16.5"
+ sources."browserslist-4.16.6"
sources."buffer-5.7.1"
sources."buffer-alloc-1.2.0"
sources."buffer-alloc-unsafe-1.1.0"
@@ -101796,7 +102144,7 @@ in
sources."camel-case-3.0.0"
sources."camelcase-5.3.1"
sources."caniuse-api-3.0.0"
- sources."caniuse-lite-1.0.30001214"
+ sources."caniuse-lite-1.0.30001230"
sources."case-sensitive-paths-webpack-plugin-2.4.0"
sources."caw-2.0.1"
(sources."chalk-2.4.2" // {
@@ -101881,7 +102229,7 @@ in
sources."copy-concurrently-1.0.5"
sources."copy-descriptor-0.1.1"
sources."core-js-2.6.12"
- (sources."core-js-compat-3.11.0" // {
+ (sources."core-js-compat-3.13.0" // {
dependencies = [
sources."semver-7.0.0"
];
@@ -101989,14 +102337,14 @@ in
sources."depd-1.1.2"
sources."des.js-1.0.1"
sources."destroy-1.0.4"
- sources."detect-node-2.0.5"
+ sources."detect-node-2.1.0"
(sources."diffie-hellman-5.0.3" // {
dependencies = [
sources."bn.js-4.12.0"
];
})
sources."dns-equal-1.0.0"
- sources."dns-packet-1.3.1"
+ sources."dns-packet-1.3.4"
sources."dns-txt-2.0.2"
sources."dom-converter-0.2.0"
(sources."dom-serializer-0.2.2" // {
@@ -102021,7 +102369,7 @@ in
sources."duplexify-3.7.1"
sources."ee-first-1.1.1"
sources."ejs-2.7.4"
- sources."electron-to-chromium-1.3.720"
+ sources."electron-to-chromium-1.3.741"
(sources."elliptic-6.5.4" // {
dependencies = [
sources."bn.js-4.12.0"
@@ -102036,7 +102384,7 @@ in
sources."debug-4.1.1"
];
})
- (sources."engine.io-client-3.5.1" // {
+ (sources."engine.io-client-3.5.2" // {
dependencies = [
sources."component-emitter-1.3.0"
sources."debug-3.1.0"
@@ -102052,7 +102400,7 @@ in
sources."entities-2.2.0"
sources."errno-0.1.8"
sources."error-ex-1.3.2"
- sources."es-abstract-1.18.0"
+ sources."es-abstract-1.18.3"
sources."es-to-primitive-1.2.1"
sources."escalade-3.1.1"
sources."escape-html-1.0.3"
@@ -102131,7 +102479,7 @@ in
sources."punycode-1.4.1"
];
})
- sources."faye-websocket-0.11.3"
+ sources."faye-websocket-0.11.4"
sources."fd-slicer-1.1.0"
sources."figgy-pudding-3.5.2"
sources."figures-2.0.0"
@@ -102155,7 +102503,7 @@ in
sources."find-cache-dir-2.1.0"
sources."find-up-3.0.0"
sources."flush-write-stream-1.1.1"
- sources."follow-redirects-1.13.3"
+ sources."follow-redirects-1.14.1"
sources."for-in-1.0.2"
sources."forwarded-0.1.2"
sources."fragment-cache-0.2.1"
@@ -102176,7 +102524,7 @@ in
sources."get-value-2.0.6"
sources."git-clone-0.1.0"
sources."git-promise-1.0.0"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."glob-parent-5.1.2"
sources."globals-11.12.0"
(sources."globby-6.1.0" // {
@@ -102311,15 +102659,15 @@ in
sources."is-accessor-descriptor-1.0.0"
sources."is-arguments-1.1.0"
sources."is-arrayish-0.2.1"
- sources."is-bigint-1.0.1"
+ sources."is-bigint-1.0.2"
sources."is-binary-path-2.1.0"
- sources."is-boolean-object-1.1.0"
+ sources."is-boolean-object-1.1.1"
sources."is-buffer-1.1.6"
sources."is-callable-1.2.3"
sources."is-color-stop-1.1.0"
- sources."is-core-module-2.3.0"
+ sources."is-core-module-2.4.0"
sources."is-data-descriptor-1.0.0"
- sources."is-date-object-1.0.2"
+ sources."is-date-object-1.0.4"
sources."is-deflate-1.0.0"
sources."is-descriptor-1.0.2"
sources."is-directory-0.3.1"
@@ -102331,7 +102679,7 @@ in
sources."is-natural-number-4.0.1"
sources."is-negative-zero-2.0.1"
sources."is-number-7.0.0"
- sources."is-number-object-1.0.4"
+ sources."is-number-object-1.0.5"
sources."is-obj-2.0.0"
sources."is-object-1.0.2"
sources."is-path-cwd-2.2.0"
@@ -102339,12 +102687,12 @@ in
sources."is-path-inside-2.1.0"
sources."is-plain-obj-1.1.0"
sources."is-plain-object-2.0.4"
- sources."is-regex-1.1.2"
+ sources."is-regex-1.1.3"
sources."is-resolvable-1.1.0"
sources."is-retry-allowed-1.2.0"
sources."is-stream-1.1.0"
- sources."is-string-1.0.5"
- sources."is-symbol-1.0.3"
+ sources."is-string-1.0.6"
+ sources."is-symbol-1.0.4"
sources."is-windows-1.0.2"
sources."is-wsl-1.1.0"
sources."isarray-1.0.0"
@@ -102460,7 +102808,7 @@ in
];
})
sources."node-modules-regexp-1.0.0"
- sources."node-releases-1.1.71"
+ sources."node-releases-1.1.72"
sources."normalize-path-3.0.0"
sources."normalize-range-0.1.2"
(sources."normalize-url-2.0.1" // {
@@ -102490,14 +102838,14 @@ in
sources."kind-of-3.2.2"
];
})
- sources."object-inspect-1.10.2"
+ sources."object-inspect-1.10.3"
sources."object-is-1.1.5"
sources."object-keys-1.1.1"
sources."object-visit-1.0.1"
sources."object.assign-4.1.2"
sources."object.getownpropertydescriptors-2.1.2"
sources."object.pick-1.3.0"
- sources."object.values-1.1.3"
+ sources."object.values-1.1.4"
sources."obuf-1.1.2"
sources."on-finished-2.3.0"
sources."on-headers-1.0.2"
@@ -102505,7 +102853,7 @@ in
sources."onetime-2.0.1"
sources."opener-1.5.2"
sources."opn-5.5.0"
- sources."optimize-css-assets-webpack-plugin-5.0.4"
+ sources."optimize-css-assets-webpack-plugin-5.0.6"
sources."original-1.0.2"
sources."os-browserify-0.3.0"
sources."os-tmpdir-1.0.2"
@@ -102535,14 +102883,14 @@ in
sources."path-is-absolute-1.0.1"
sources."path-is-inside-1.0.2"
sources."path-key-2.0.1"
- sources."path-parse-1.0.6"
+ sources."path-parse-1.0.7"
sources."path-to-regexp-2.2.1"
sources."path-type-4.0.0"
sources."pbkdf2-3.1.2"
sources."peek-stream-1.1.3"
sources."pend-1.2.0"
sources."performance-now-2.1.0"
- sources."picomatch-2.2.3"
+ sources."picomatch-2.3.0"
sources."pify-4.0.1"
sources."pinkie-2.0.4"
sources."pinkie-promise-2.0.1"
@@ -102679,7 +103027,7 @@ in
sources."postcss-value-parser-3.3.1"
];
})
- sources."postcss-selector-parser-6.0.5"
+ sources."postcss-selector-parser-6.0.6"
(sources."postcss-svgo-4.0.3" // {
dependencies = [
sources."postcss-value-parser-3.3.1"
@@ -102789,7 +103137,7 @@ in
];
})
sources."select-hose-2.0.0"
- sources."selfsigned-1.10.8"
+ sources."selfsigned-1.10.11"
sources."semver-5.7.1"
(sources."send-0.17.1" // {
dependencies = [
@@ -103180,8 +103528,8 @@ in
];
})
sources."wrappy-1.0.2"
- sources."ws-7.4.5"
- sources."xmlhttprequest-ssl-1.5.5"
+ sources."ws-7.4.6"
+ sources."xmlhttprequest-ssl-1.6.3"
sources."xtend-4.0.2"
sources."y18n-4.0.3"
sources."yallist-2.1.2"
@@ -103262,45 +103610,39 @@ in
readability-cli = nodeEnv.buildNodePackage {
name = "readability-cli";
packageName = "readability-cli";
- version = "2.2.4-pre";
+ version = "2.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/readability-cli/-/readability-cli-2.2.4-pre.tgz";
- sha512 = "KKCB4KGnrbCnA7KAGlArlGccwqP6UXxxbNkXVEoTGM8GHULUa5xkeIp5QMDwagRvmVR0vBIwLewz+QW1WZORAQ==";
+ url = "https://registry.npmjs.org/readability-cli/-/readability-cli-2.3.0.tgz";
+ sha512 = "9hiYYcNshOLt4kLXcuE1nIO5nAFyOcnau3nn+rw/WNQC52Vpa77GqeJZCSBIWAUNsALmtsCby76oOiSJlX5dbQ==";
};
dependencies = [
sources."@mozilla/readability-0.4.1"
+ sources."@tootallnate/once-1.1.2"
sources."abab-2.0.5"
- sources."acorn-8.2.1"
+ sources."acorn-8.2.4"
(sources."acorn-globals-6.0.0" // {
dependencies = [
sources."acorn-7.4.1"
];
})
sources."acorn-walk-7.2.0"
- sources."ajv-6.12.6"
+ sources."agent-base-6.0.2"
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"
- sources."aws-sign2-0.7.0"
- sources."aws4-1.11.0"
- 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"
(sources."cssstyle-2.3.0" // {
dependencies = [
sources."cssom-0.3.8"
];
})
- sources."dashdash-1.14.1"
sources."data-urls-2.0.0"
+ sources."debug-4.3.2"
sources."decimal.js-10.2.1"
sources."deep-is-0.1.3"
sources."delayed-stream-1.0.0"
@@ -103309,81 +103651,45 @@ in
sources."webidl-conversions-5.0.0"
];
})
- sources."dompurify-2.2.7"
- sources."ecc-jsbn-0.1.2"
+ sources."dompurify-2.2.8"
sources."emoji-regex-8.0.0"
sources."escalade-3.1.1"
sources."escodegen-2.0.0"
sources."esprima-4.0.1"
sources."estraverse-5.2.0"
sources."esutils-2.0.3"
- sources."extend-3.0.2"
- 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."forever-agent-0.6.1"
- sources."form-data-2.3.3"
+ sources."form-data-3.0.1"
sources."get-caller-file-2.0.5"
- sources."getpass-0.1.7"
- sources."har-schema-2.0.0"
- sources."har-validator-5.1.5"
sources."html-encoding-sniffer-2.0.1"
- sources."http-signature-1.2.0"
+ sources."http-proxy-agent-4.0.1"
+ sources."https-proxy-agent-5.0.0"
sources."iconv-lite-0.4.24"
sources."is-fullwidth-code-point-3.0.0"
sources."is-potential-custom-element-name-1.0.1"
- sources."is-typedarray-1.0.0"
- sources."isstream-0.1.2"
- sources."jsbn-0.1.1"
- sources."jsdom-16.5.3"
- sources."json-schema-0.2.3"
- sources."json-schema-traverse-0.4.1"
- sources."json-stringify-safe-5.0.1"
- sources."jsprim-1.4.1"
+ sources."jsdom-16.6.0"
sources."levn-0.3.0"
sources."lodash-4.17.21"
sources."mime-db-1.47.0"
sources."mime-types-2.1.30"
+ sources."ms-2.1.2"
sources."nwsapi-2.2.0"
- sources."oauth-sign-0.9.0"
sources."optionator-0.8.3"
sources."parse5-6.0.1"
- sources."performance-now-2.1.0"
sources."prelude-ls-1.1.2"
sources."psl-1.8.0"
sources."punycode-2.1.1"
- sources."qs-6.5.2"
- (sources."request-2.88.2" // {
- dependencies = [
- sources."tough-cookie-2.5.0"
- ];
- })
- sources."request-promise-core-1.1.4"
- (sources."request-promise-native-1.0.9" // {
- dependencies = [
- 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.2"
sources."strip-ansi-6.0.0"
sources."symbol-tree-3.2.4"
sources."tough-cookie-4.0.0"
- sources."tr46-2.0.2"
- sources."tunnel-agent-0.6.0"
- sources."tweetnacl-0.14.5"
+ sources."tr46-2.1.0"
sources."type-check-0.3.2"
sources."universalify-0.1.2"
- sources."uri-js-4.4.1"
- sources."uuid-3.4.0"
- sources."verror-1.10.0"
sources."w3c-hr-time-1.0.2"
sources."w3c-xmlserializer-2.0.0"
sources."webidl-conversions-6.1.0"
@@ -103392,11 +103698,11 @@ in
sources."whatwg-url-8.5.0"
sources."word-wrap-1.2.3"
sources."wrap-ansi-7.0.0"
- sources."ws-7.4.5"
+ sources."ws-7.4.6"
sources."xml-name-validator-3.0.0"
sources."xmlchars-2.2.0"
sources."y18n-5.0.8"
- sources."yargs-17.0.0-candidate.12"
+ sources."yargs-17.0.1"
sources."yargs-parser-20.2.7"
];
buildInputs = globalBuildInputs;
@@ -103419,36 +103725,37 @@ in
};
dependencies = [
sources."@babel/code-frame-7.12.13"
- (sources."@babel/generator-7.13.16" // {
+ (sources."@babel/generator-7.14.3" // {
dependencies = [
sources."source-map-0.5.7"
];
})
sources."@babel/helper-annotate-as-pure-7.12.13"
- sources."@babel/helper-function-name-7.12.13"
+ sources."@babel/helper-function-name-7.14.2"
sources."@babel/helper-get-function-arity-7.12.13"
sources."@babel/helper-module-imports-7.13.12"
sources."@babel/helper-split-export-declaration-7.12.13"
- sources."@babel/helper-validator-identifier-7.12.11"
- sources."@babel/highlight-7.13.10"
- sources."@babel/parser-7.13.16"
- sources."@babel/runtime-7.13.17"
+ sources."@babel/helper-validator-identifier-7.14.0"
+ sources."@babel/highlight-7.14.0"
+ sources."@babel/parser-7.14.4"
+ sources."@babel/runtime-7.14.0"
sources."@babel/template-7.12.13"
- sources."@babel/traverse-7.13.17"
- sources."@babel/types-7.13.17"
+ sources."@babel/traverse-7.14.2"
+ sources."@babel/types-7.14.4"
sources."@emotion/is-prop-valid-0.8.8"
sources."@emotion/memoize-0.7.4"
sources."@emotion/stylis-0.8.5"
sources."@emotion/unitless-0.7.5"
sources."@exodus/schemasafe-1.0.0-rc.3"
sources."@redocly/ajv-6.12.4"
- (sources."@redocly/openapi-core-1.0.0-beta.44" // {
+ (sources."@redocly/openapi-core-1.0.0-beta.48" // {
dependencies = [
- sources."@types/node-14.14.41"
+ sources."@types/node-14.17.1"
];
})
sources."@redocly/react-dropdown-aria-2.0.11"
- sources."@types/node-13.13.50"
+ sources."@types/json-schema-7.0.7"
+ sources."@types/node-13.13.52"
(sources."ajv-5.5.2" // {
dependencies = [
sources."fast-deep-equal-1.1.0"
@@ -103515,7 +103822,7 @@ in
sources."concat-map-0.0.1"
sources."console-browserify-1.2.0"
sources."constants-browserify-1.0.0"
- sources."core-js-3.11.0"
+ sources."core-js-3.13.0"
sources."core-util-is-1.0.2"
(sources."create-ecdh-4.0.4" // {
dependencies = [
@@ -103538,7 +103845,7 @@ in
];
})
sources."domain-browser-1.2.0"
- sources."dompurify-2.2.7"
+ sources."dompurify-2.2.8"
(sources."elliptic-6.5.4" // {
dependencies = [
sources."bn.js-4.12.0"
@@ -103618,8 +103925,8 @@ in
sources."minimatch-3.0.4"
sources."minimist-1.2.5"
sources."mkdirp-1.0.4"
- sources."mobx-6.3.0"
- sources."mobx-react-7.1.0"
+ sources."mobx-6.3.2"
+ sources."mobx-react-7.2.0"
sources."mobx-react-lite-3.2.0"
sources."ms-2.1.2"
sources."neo-async-2.6.2"
@@ -103638,7 +103945,7 @@ in
sources."oas-schema-walker-1.1.5"
sources."oas-validator-4.0.8"
sources."object-assign-4.1.1"
- sources."openapi-sampler-1.0.0-beta.18"
+ sources."openapi-sampler-1.0.0"
sources."os-browserify-0.3.0"
sources."p-limit-2.3.0"
sources."p-locate-4.1.0"
@@ -103648,8 +103955,8 @@ in
sources."path-browserify-0.0.1"
sources."path-exists-4.0.0"
sources."pbkdf2-3.1.2"
- sources."perfect-scrollbar-1.5.0"
- sources."picomatch-2.2.3"
+ sources."perfect-scrollbar-1.5.1"
+ sources."picomatch-2.3.0"
sources."polished-3.7.1"
sources."postcss-value-parser-4.1.0"
sources."prismjs-1.23.0"
@@ -103699,7 +104006,7 @@ in
sources."should-type-1.4.0"
sources."should-type-adaptors-1.1.0"
sources."should-util-1.0.1"
- sources."slugify-1.5.0"
+ sources."slugify-1.5.3"
sources."source-map-0.6.1"
sources."sprintf-js-1.0.3"
sources."stickyfill-1.1.1"
@@ -103708,7 +104015,7 @@ in
sources."string-width-4.2.2"
sources."string_decoder-1.3.0"
sources."strip-ansi-6.0.0"
- sources."styled-components-5.2.3"
+ sources."styled-components-5.3.0"
sources."supports-color-5.5.0"
sources."swagger2openapi-6.2.3"
sources."timers-browserify-2.0.12"
@@ -103718,7 +104025,7 @@ in
sources."to-regex-range-5.0.1"
sources."tslib-2.2.0"
sources."tty-browserify-0.0.0"
- sources."uglify-js-3.13.4"
+ sources."uglify-js-3.13.8"
(sources."uri-js-4.4.1" // {
dependencies = [
sources."punycode-2.1.1"
@@ -103819,7 +104126,7 @@ in
sources."ink-2.7.1"
sources."is-arrayish-0.2.1"
sources."is-ci-2.0.0"
- sources."is-core-module-2.3.0"
+ sources."is-core-module-2.4.0"
sources."is-fullwidth-code-point-3.0.0"
sources."is-plain-obj-1.1.0"
sources."js-tokens-4.0.0"
@@ -103863,7 +104170,7 @@ in
sources."p-try-1.0.0"
sources."parse-json-4.0.0"
sources."path-exists-3.0.0"
- sources."path-parse-1.0.6"
+ sources."path-parse-1.0.7"
sources."path-type-3.0.0"
sources."pify-3.0.0"
sources."prop-types-15.7.2"
@@ -103883,7 +104190,7 @@ in
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."spdx-license-ids-3.0.9"
(sources."string-length-3.1.0" // {
dependencies = [
sources."ansi-regex-4.1.0"
@@ -103916,10 +104223,10 @@ in
"reveal.js" = nodeEnv.buildNodePackage {
name = "reveal.js";
packageName = "reveal.js";
- version = "4.1.0";
+ version = "4.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/reveal.js/-/reveal.js-4.1.0.tgz";
- sha512 = "lYOMhxSWgq5jtgspF7eRL0d2rBnHO/VGZ4/qp46yu+eGoWqJkYHEuepEXzx71M8MI6Rf8HBYWaTnKi5uHWcU1Q==";
+ url = "https://registry.npmjs.org/reveal.js/-/reveal.js-4.1.1.tgz";
+ sha512 = "Ol+/3LF4sZKQQOaG7/Jsa7t5Kix1I+dx9UEYL8mOOn2sWROtLcbI3AGHZbNQPWeuvnQ/y1R3MJ0vN9ZI5nBPUg==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -103944,7 +104251,7 @@ in
sources."brace-expansion-1.1.11"
sources."concat-map-0.0.1"
sources."fs.realpath-1.0.0"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."minimatch-3.0.4"
@@ -103965,10 +104272,10 @@ in
rollup = nodeEnv.buildNodePackage {
name = "rollup";
packageName = "rollup";
- version = "2.45.2";
+ version = "2.50.3";
src = fetchurl {
- url = "https://registry.npmjs.org/rollup/-/rollup-2.45.2.tgz";
- sha512 = "kRRU7wXzFHUzBIv0GfoFFIN3m9oteY4uAsKllIpQDId5cfnkWF2J130l+27dzDju0E6MScKiV0ZM5Bw8m4blYQ==";
+ url = "https://registry.npmjs.org/rollup/-/rollup-2.50.3.tgz";
+ sha512 = "58KiHnaCzZn6F5yRMjHe7WTZuFj6r4iJVJz5UwvKD6f/xfTy2IdtbR2AVHN6cyfK1tBy//hJ66ebXy6Y1h7HlQ==";
};
dependencies = [
sources."fsevents-2.3.2"
@@ -103990,13 +104297,14 @@ in
src = ../../misc/vscode-extensions/rust-analyzer/build-deps;
dependencies = [
sources."@babel/code-frame-7.12.11"
- sources."@babel/helper-validator-identifier-7.12.11"
- (sources."@babel/highlight-7.13.10" // {
+ sources."@babel/helper-validator-identifier-7.14.0"
+ (sources."@babel/highlight-7.14.0" // {
dependencies = [
sources."chalk-2.4.2"
+ sources."escape-string-regexp-1.0.5"
];
})
- (sources."@eslint/eslintrc-0.4.0" // {
+ (sources."@eslint/eslintrc-0.4.1" // {
dependencies = [
sources."globals-12.4.0"
sources."ignore-4.0.6"
@@ -104021,14 +104329,14 @@ in
sources."@types/node-12.12.70"
sources."@types/node-fetch-2.5.10"
sources."@types/resolve-1.17.1"
- sources."@types/vscode-1.55.0"
- sources."@typescript-eslint/eslint-plugin-4.22.0"
- sources."@typescript-eslint/experimental-utils-4.22.0"
- sources."@typescript-eslint/parser-4.22.0"
- sources."@typescript-eslint/scope-manager-4.22.0"
- sources."@typescript-eslint/types-4.22.0"
- sources."@typescript-eslint/typescript-estree-4.22.0"
- sources."@typescript-eslint/visitor-keys-4.22.0"
+ sources."@types/vscode-1.56.0"
+ sources."@typescript-eslint/eslint-plugin-4.25.0"
+ sources."@typescript-eslint/experimental-utils-4.25.0"
+ sources."@typescript-eslint/parser-4.25.0"
+ sources."@typescript-eslint/scope-manager-4.25.0"
+ sources."@typescript-eslint/types-4.25.0"
+ sources."@typescript-eslint/typescript-estree-4.25.0"
+ sources."@typescript-eslint/visitor-keys-4.25.0"
sources."@ungap/promise-all-settled-1.1.2"
sources."acorn-7.4.1"
sources."acorn-jsx-5.3.1"
@@ -104042,7 +104350,7 @@ in
sources."array-union-2.1.0"
sources."astral-regex-2.0.0"
sources."asynckit-0.4.0"
- sources."azure-devops-node-api-7.2.0"
+ sources."azure-devops-node-api-10.2.2"
sources."balanced-match-1.0.2"
sources."big-integer-1.6.48"
sources."binary-0.3.0"
@@ -104056,6 +104364,7 @@ in
sources."buffer-indexof-polyfill-1.0.2"
sources."buffers-0.1.1"
sources."builtin-modules-3.2.0"
+ sources."call-bind-1.0.2"
sources."callsites-3.1.0"
sources."camelcase-6.2.0"
sources."chainsaw-0.1.0"
@@ -104068,7 +104377,7 @@ in
sources."supports-color-7.2.0"
];
})
- sources."cheerio-1.0.0-rc.6"
+ sources."cheerio-1.0.0-rc.9"
sources."cheerio-select-1.4.0"
sources."chokidar-3.5.1"
sources."cliui-7.0.4"
@@ -104082,7 +104391,7 @@ in
sources."core-util-is-1.0.2"
sources."cross-spawn-7.0.3"
sources."css-select-4.1.2"
- sources."css-what-5.0.0"
+ sources."css-what-5.0.1"
sources."debug-4.3.2"
sources."decamelize-4.0.0"
sources."deep-is-0.1.3"
@@ -104092,7 +104401,7 @@ in
sources."diff-5.0.0"
sources."dir-glob-3.0.1"
sources."doctrine-3.0.0"
- sources."dom-serializer-1.3.1"
+ sources."dom-serializer-1.3.2"
sources."domelementtype-2.2.0"
sources."domhandler-4.2.0"
sources."domutils-2.6.0"
@@ -104108,8 +104417,8 @@ in
sources."enquirer-2.3.6"
sources."entities-2.2.0"
sources."escalade-3.1.1"
- sources."escape-string-regexp-1.0.5"
- (sources."eslint-7.25.0" // {
+ sources."escape-string-regexp-4.0.0"
+ (sources."eslint-7.27.0" // {
dependencies = [
sources."ignore-4.0.6"
];
@@ -104120,7 +104429,7 @@ in
sources."eslint-visitor-keys-1.3.0"
];
})
- sources."eslint-visitor-keys-2.0.0"
+ sources."eslint-visitor-keys-2.1.0"
(sources."espree-7.3.1" // {
dependencies = [
sources."eslint-visitor-keys-1.3.0"
@@ -104163,9 +104472,10 @@ in
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."get-intrinsic-1.1.1"
+ sources."glob-7.1.7"
sources."glob-parent-5.1.2"
- (sources."globals-13.8.0" // {
+ (sources."globals-13.9.0" // {
dependencies = [
sources."type-fest-0.20.2"
];
@@ -104175,6 +104485,7 @@ in
sources."growl-1.10.5"
sources."has-1.0.3"
sources."has-flag-3.0.0"
+ sources."has-symbols-1.0.2"
sources."he-1.2.0"
sources."htmlparser2-6.1.0"
sources."http-proxy-agent-4.0.1"
@@ -104185,7 +104496,7 @@ in
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."is-binary-path-2.1.0"
- sources."is-core-module-2.3.0"
+ sources."is-core-module-2.4.0"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-3.0.0"
sources."is-glob-4.0.1"
@@ -104206,7 +104517,7 @@ in
sources."locate-path-6.0.0"
sources."lodash-4.17.21"
sources."lodash.clonedeep-4.5.0"
- sources."lodash.flatten-4.4.0"
+ sources."lodash.merge-4.6.2"
sources."lodash.truncate-4.4.2"
sources."log-symbols-4.0.0"
sources."lru-cache-6.0.0"
@@ -104225,7 +104536,7 @@ in
sources."minimatch-3.0.4"
sources."minimist-1.2.5"
sources."mkdirp-0.5.5"
- (sources."mocha-8.3.2" // {
+ (sources."mocha-8.4.0" // {
dependencies = [
sources."argparse-2.0.1"
(sources."debug-4.3.1" // {
@@ -104233,7 +104544,7 @@ in
sources."ms-2.1.2"
];
})
- sources."escape-string-regexp-4.0.0"
+ sources."glob-7.1.6"
sources."has-flag-4.0.0"
sources."js-yaml-4.0.0"
sources."ms-2.1.3"
@@ -104247,9 +104558,9 @@ in
sources."node-fetch-2.6.1"
sources."normalize-path-3.0.0"
sources."nth-check-2.0.0"
+ sources."object-inspect-1.10.3"
sources."once-1.4.0"
sources."optionator-0.9.1"
- sources."os-0.1.1"
sources."os-homedir-1.0.2"
sources."os-tmpdir-1.0.2"
sources."osenv-0.1.5"
@@ -104266,15 +104577,16 @@ in
sources."path-exists-4.0.0"
sources."path-is-absolute-1.0.1"
sources."path-key-3.1.1"
- sources."path-parse-1.0.6"
+ sources."path-parse-1.0.7"
sources."path-type-4.0.0"
sources."pend-1.2.0"
- sources."picomatch-2.2.3"
+ sources."picomatch-2.3.0"
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."qs-6.10.1"
sources."queue-microtask-1.2.3"
sources."randombytes-2.1.0"
sources."read-1.0.7"
@@ -104291,7 +104603,7 @@ in
sources."resolve-from-4.0.0"
sources."reusify-1.0.4"
sources."rimraf-3.0.2"
- sources."rollup-2.45.2"
+ sources."rollup-2.50.3"
sources."run-parallel-1.2.0"
sources."safe-buffer-5.2.1"
sources."semver-7.3.5"
@@ -104299,6 +104611,7 @@ in
sources."setimmediate-1.0.5"
sources."shebang-command-2.0.0"
sources."shebang-regex-3.0.0"
+ sources."side-channel-1.0.4"
sources."sigmund-1.0.1"
sources."slash-3.0.0"
(sources."slice-ansi-4.0.0" // {
@@ -104319,9 +104632,9 @@ in
sources."strip-ansi-6.0.0"
sources."strip-json-comments-3.1.1"
sources."supports-color-5.5.0"
- (sources."table-6.5.1" // {
+ (sources."table-6.7.1" // {
dependencies = [
- sources."ajv-8.1.0"
+ sources."ajv-8.5.0"
sources."json-schema-traverse-1.0.0"
];
})
@@ -104335,23 +104648,24 @@ in
sources."tslib-1.14.1"
];
})
- sources."tunnel-0.0.4"
+ sources."tunnel-0.0.6"
sources."type-check-0.4.0"
sources."type-fest-0.8.1"
- sources."typed-rest-client-1.2.0"
- sources."typescript-4.2.4"
+ sources."typed-rest-client-1.8.4"
+ sources."typescript-4.3.2"
sources."typescript-formatter-7.2.2"
sources."uc.micro-1.0.6"
- sources."underscore-1.8.3"
+ sources."underscore-1.13.1"
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.3.0"
- (sources."vsce-1.87.1" // {
+ (sources."vsce-1.88.0" // {
dependencies = [
sources."chalk-2.4.2"
sources."commander-6.2.1"
+ sources."escape-string-regexp-1.0.5"
sources."semver-5.7.1"
];
})
@@ -104530,10 +104844,10 @@ in
sass = nodeEnv.buildNodePackage {
name = "sass";
packageName = "sass";
- version = "1.32.11";
+ version = "1.34.0";
src = fetchurl {
- url = "https://registry.npmjs.org/sass/-/sass-1.32.11.tgz";
- sha512 = "O9tRcob/fegUVSIV1ihLLZcftIOh0AF1VpKgusUfLqnb2jQ0GLDwI5ivv1FYWivGv8eZ/AwntTyTzjcHu0c/qw==";
+ url = "https://registry.npmjs.org/sass/-/sass-1.34.0.tgz";
+ sha512 = "rHEN0BscqjUYuomUEaqq3BMgsXqQfkcMVR7UhscsAVub0/spUrZGBMxQXFS2kfiDsPLZw5yuU9iJEFNC2x38Qw==";
};
dependencies = [
sources."anymatch-3.1.2"
@@ -104548,7 +104862,7 @@ in
sources."is-glob-4.0.1"
sources."is-number-7.0.0"
sources."normalize-path-3.0.0"
- sources."picomatch-2.2.3"
+ sources."picomatch-2.3.0"
sources."readdirp-3.5.0"
sources."to-regex-range-5.0.1"
];
@@ -104693,10 +105007,10 @@ in
serverless = nodeEnv.buildNodePackage {
name = "serverless";
packageName = "serverless";
- version = "2.38.0";
+ version = "2.43.1";
src = fetchurl {
- url = "https://registry.npmjs.org/serverless/-/serverless-2.38.0.tgz";
- sha512 = "M/PAO3e3XoAdWvAd02iq+K4KkWmdxx8hLMCPg4tne0XZaLF5pTOvBWTdACgkuuikQDdo+Px8dl4idsIciEGezQ==";
+ url = "https://registry.npmjs.org/serverless/-/serverless-2.43.1.tgz";
+ sha512 = "KasMG0u78+QBMecuT1Cit3PdHA1Wl6xyjrWgFEdtJnI5mBcMA9FZVMvdqRk1VjaQtnvNJfpbzfJa6Aj2rrqXWQ==";
};
dependencies = [
sources."2-thenable-1.0.0"
@@ -104724,16 +105038,30 @@ in
dependencies = [
sources."@serverless/utils-1.2.0"
sources."chalk-2.4.2"
+ sources."dotenv-8.6.0"
sources."uuid-3.4.0"
];
})
sources."@serverless/component-metrics-1.0.8"
- (sources."@serverless/components-3.9.0" // {
+ (sources."@serverless/components-3.10.1" // {
dependencies = [
+ (sources."@serverless/utils-4.1.0" // {
+ dependencies = [
+ sources."js-yaml-4.1.0"
+ ];
+ })
sources."ansi-regex-5.0.0"
- sources."js-yaml-3.14.1"
+ sources."argparse-2.0.1"
+ sources."dotenv-8.6.0"
+ (sources."js-yaml-3.14.1" // {
+ dependencies = [
+ sources."argparse-1.0.10"
+ ];
+ })
+ sources."jwt-decode-3.1.2"
sources."ramda-0.27.1"
sources."strip-ansi-6.0.0"
+ sources."write-file-atomic-3.0.3"
];
})
(sources."@serverless/core-1.1.2" // {
@@ -104743,7 +105071,7 @@ in
sources."semver-6.3.0"
];
})
- sources."@serverless/enterprise-plugin-4.5.3"
+ sources."@serverless/dashboard-plugin-5.1.4"
sources."@serverless/event-mocks-1.1.1"
(sources."@serverless/platform-client-4.2.2" // {
dependencies = [
@@ -104751,29 +105079,41 @@ in
sources."js-yaml-3.14.1"
];
})
- (sources."@serverless/platform-client-china-2.1.10" // {
+ (sources."@serverless/platform-client-china-2.1.13" // {
dependencies = [
+ sources."dotenv-8.6.0"
sources."js-yaml-3.14.1"
];
})
sources."@serverless/template-1.1.4"
- (sources."@serverless/utils-4.1.0" // {
+ (sources."@serverless/utils-5.2.0" // {
dependencies = [
+ sources."get-stream-6.0.1"
sources."jwt-decode-3.1.2"
sources."write-file-atomic-3.0.3"
];
})
- sources."@serverless/utils-china-1.0.15"
+ sources."@serverless/utils-china-1.1.0"
sources."@sindresorhus/is-0.14.0"
sources."@szmarczak/http-timer-1.1.2"
sources."@tencent-sdk/capi-1.1.8"
+ sources."@tencent-sdk/cls-0.2.1"
+ (sources."@tencent-sdk/common-0.1.0" // {
+ dependencies = [
+ sources."type-fest-1.1.3"
+ ];
+ })
+ sources."@tencent-sdk/faas-0.1.5"
+ sources."@tokenizer/token-0.1.1"
sources."@types/cacheable-request-6.0.1"
sources."@types/caseless-0.12.2"
+ sources."@types/debug-4.1.5"
sources."@types/http-cache-semantics-4.0.0"
sources."@types/keyv-3.1.1"
- sources."@types/lodash-4.14.168"
+ sources."@types/lodash-4.14.170"
sources."@types/long-4.0.1"
- sources."@types/node-14.14.41"
+ sources."@types/node-15.6.1"
+ sources."@types/readable-stream-2.3.10"
sources."@types/request-2.48.5"
sources."@types/request-promise-native-1.0.17"
sources."@types/responselike-1.0.0"
@@ -104834,7 +105174,7 @@ in
sources."async-2.6.3"
sources."asynckit-0.4.0"
sources."at-least-node-1.0.0"
- (sources."aws-sdk-2.892.0" // {
+ (sources."aws-sdk-2.918.0" // {
dependencies = [
sources."buffer-4.9.2"
sources."ieee754-1.1.13"
@@ -104916,7 +105256,7 @@ in
sources."child-process-ext-2.1.1"
sources."chokidar-3.5.1"
sources."chownr-1.1.4"
- sources."ci-info-3.1.1"
+ sources."ci-info-3.2.0"
sources."cli-boxes-2.2.1"
(sources."cli-color-2.0.0" // {
dependencies = [
@@ -104962,18 +105302,33 @@ in
];
})
sources."dashdash-1.14.1"
- sources."dayjs-1.10.4"
+ sources."dayjs-1.10.5"
sources."debug-2.6.9"
- sources."decode-uri-component-0.2.0"
- sources."decompress-4.2.1"
+ (sources."decompress-4.2.1" // {
+ dependencies = [
+ (sources."make-dir-1.3.0" // {
+ dependencies = [
+ sources."pify-3.0.0"
+ ];
+ })
+ ];
+ })
sources."decompress-response-3.3.0"
- sources."decompress-tar-4.1.1"
+ (sources."decompress-tar-4.1.1" // {
+ dependencies = [
+ sources."file-type-5.2.0"
+ ];
+ })
(sources."decompress-tarbz2-4.1.1" // {
dependencies = [
sources."file-type-6.2.0"
];
})
- sources."decompress-targz-4.1.1"
+ (sources."decompress-targz-4.1.1" // {
+ dependencies = [
+ sources."file-type-5.2.0"
+ ];
+ })
(sources."decompress-unzip-4.0.1" // {
dependencies = [
sources."file-type-3.9.0"
@@ -104988,36 +105343,10 @@ in
sources."denque-1.5.0"
sources."detect-libc-1.0.3"
sources."diagnostics-1.1.1"
- sources."dijkstrajs-1.0.1"
+ sources."dijkstrajs-1.0.2"
sources."dir-glob-3.0.1"
sources."dot-qs-0.2.0"
- sources."dotenv-8.2.0"
- (sources."download-8.0.0" // {
- dependencies = [
- sources."@sindresorhus/is-0.7.0"
- (sources."cacheable-request-2.1.4" // {
- dependencies = [
- sources."get-stream-3.0.0"
- ];
- })
- sources."file-type-11.1.0"
- (sources."got-8.3.2" // {
- dependencies = [
- sources."get-stream-3.0.0"
- sources."pify-3.0.0"
- ];
- })
- sources."http-cache-semantics-3.8.1"
- sources."keyv-3.0.0"
- sources."lowercase-keys-1.0.0"
- sources."make-dir-2.1.0"
- sources."normalize-url-2.0.1"
- sources."p-cancelable-0.4.1"
- sources."pify-4.0.1"
- sources."semver-5.7.1"
- sources."sort-keys-2.0.0"
- ];
- })
+ sources."dotenv-9.0.2"
sources."duplexer3-0.1.4"
sources."duplexify-4.1.1"
sources."duration-0.2.2"
@@ -105025,7 +105354,7 @@ 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.1" // {
+ (sources."engine.io-client-3.5.2" // {
dependencies = [
sources."debug-3.1.0"
];
@@ -105065,25 +105394,18 @@ in
sources."fd-slicer-1.1.0"
sources."fecha-4.2.1"
sources."figures-3.2.0"
- sources."file-type-5.2.0"
+ sources."file-type-16.5.0"
sources."file-uri-to-path-1.0.0"
sources."filename-reserved-regex-2.0.0"
- sources."filenamify-3.0.0"
+ sources."filenamify-4.3.0"
sources."filesize-6.3.0"
sources."fill-range-7.0.1"
sources."find-requires-1.0.0"
sources."flat-5.0.2"
- sources."follow-redirects-1.13.3"
+ sources."follow-redirects-1.14.1"
sources."forever-agent-0.6.1"
sources."form-data-2.5.1"
sources."formidable-1.2.2"
- (sources."from2-2.3.0" // {
- dependencies = [
- sources."readable-stream-2.3.7"
- sources."safe-buffer-5.1.2"
- sources."string_decoder-1.1.1"
- ];
- })
sources."fs-constants-1.0.0"
(sources."fs-extra-9.1.0" // {
dependencies = [
@@ -105105,7 +105427,7 @@ in
sources."get-stream-4.1.0"
sources."getpass-0.1.7"
sources."github-from-package-0.0.0"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."glob-parent-5.1.2"
sources."globby-11.0.3"
(sources."got-11.8.2" // {
@@ -105120,7 +105442,7 @@ in
sources."keyv-4.0.3"
sources."lowercase-keys-2.0.0"
sources."mimic-response-3.1.0"
- sources."p-cancelable-2.1.0"
+ sources."p-cancelable-2.1.1"
sources."responselike-2.0.0"
];
})
@@ -105135,8 +105457,6 @@ in
})
sources."has-cors-1.1.0"
sources."has-flag-3.0.0"
- sources."has-symbol-support-x-1.4.2"
- sources."has-to-string-tag-x-1.4.1"
sources."has-unicode-2.0.1"
sources."http-cache-semantics-4.1.0"
sources."http-signature-1.2.0"
@@ -105165,7 +105485,6 @@ in
];
})
sources."inquirer-autocomplete-prompt-1.3.0"
- sources."into-stream-3.1.0"
sources."is-arrayish-0.3.2"
sources."is-binary-path-2.1.0"
sources."is-docker-2.2.1"
@@ -105174,10 +105493,8 @@ in
sources."is-glob-4.0.1"
sources."is-natural-number-4.0.1"
sources."is-number-7.0.0"
- sources."is-object-1.0.2"
sources."is-plain-obj-1.1.0"
sources."is-promise-2.2.2"
- sources."is-retry-allowed-1.2.0"
sources."is-stream-1.1.0"
sources."is-typedarray-1.0.0"
sources."is-wsl-2.2.0"
@@ -105185,7 +105502,6 @@ in
sources."isexe-2.0.0"
sources."isomorphic-ws-4.0.1"
sources."isstream-0.1.2"
- sources."isurl-1.0.0"
sources."jmespath-0.15.0"
(sources."js-yaml-4.1.0" // {
dependencies = [
@@ -105249,11 +105565,12 @@ in
sources."lowercase-keys-1.0.1"
sources."lru-cache-6.0.0"
sources."lru-queue-0.1.0"
- (sources."make-dir-1.3.0" // {
+ (sources."make-dir-3.1.0" // {
dependencies = [
- sources."pify-3.0.0"
+ sources."semver-6.3.0"
];
})
+ sources."media-typer-0.3.0"
(sources."memoizee-0.4.15" // {
dependencies = [
sources."next-tick-1.1.0"
@@ -105272,18 +105589,17 @@ in
sources."minipass-3.1.3"
sources."minizlib-2.1.2"
sources."mkdirp-0.5.5"
- sources."moment-2.29.1"
sources."ms-2.0.0"
sources."mute-stream-0.0.8"
sources."nan-2.14.2"
sources."nanoid-2.1.11"
sources."napi-build-utils-1.0.2"
sources."native-promise-only-0.8.1"
- sources."ncjsm-4.1.0"
+ sources."ncjsm-4.2.0"
sources."nested-error-stacks-2.1.0"
sources."next-tick-1.0.0"
sources."nice-try-1.0.5"
- (sources."node-abi-2.26.0" // {
+ (sources."node-abi-2.30.0" // {
dependencies = [
sources."semver-5.7.1"
];
@@ -105292,12 +105608,12 @@ in
sources."node-fetch-2.6.1"
sources."noop-logger-0.1.1"
sources."normalize-path-3.0.0"
- sources."normalize-url-4.5.0"
+ sources."normalize-url-4.5.1"
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."object-hash-2.1.1"
+ sources."object-hash-2.2.0"
sources."once-1.4.0"
sources."one-time-0.0.4"
sources."onetime-5.1.2"
@@ -105306,10 +105622,9 @@ in
sources."os-homedir-1.0.2"
sources."os-tmpdir-1.0.2"
sources."p-cancelable-1.1.0"
- sources."p-event-2.3.1"
+ sources."p-event-4.2.0"
sources."p-finally-1.0.0"
- sources."p-is-promise-1.1.0"
- sources."p-timeout-2.0.1"
+ sources."p-timeout-3.2.0"
(sources."package-json-6.5.0" // {
dependencies = [
sources."got-9.6.0"
@@ -105323,9 +105638,11 @@ in
sources."path-key-2.0.1"
sources."path-loader-1.0.10"
sources."path-type-4.0.0"
+ sources."path2-0.1.0"
+ sources."peek-readable-3.1.3"
sources."pend-1.2.0"
sources."performance-now-2.1.0"
- sources."picomatch-2.2.3"
+ sources."picomatch-2.3.0"
sources."pify-2.3.0"
sources."pinkie-2.0.4"
sources."pinkie-promise-2.0.1"
@@ -105339,9 +105656,8 @@ in
sources."printj-1.1.2"
sources."process-nextick-args-2.0.1"
sources."promise-queue-2.2.5"
- (sources."protobufjs-6.10.2" // {
+ (sources."protobufjs-6.11.2" // {
dependencies = [
- sources."@types/node-13.13.50"
sources."long-4.0.0"
];
})
@@ -105350,13 +105666,13 @@ in
sources."punycode-2.1.1"
sources."qrcode-terminal-0.12.0"
sources."qs-6.5.2"
- sources."query-string-5.1.1"
sources."querystring-0.2.1"
sources."queue-microtask-1.2.3"
sources."quick-lru-5.1.1"
sources."ramda-0.26.1"
sources."rc-1.2.8"
sources."readable-stream-3.6.0"
+ sources."readable-web-to-node-stream-3.0.1"
sources."readdir-glob-1.1.1"
sources."readdirp-3.5.0"
sources."registry-auth-token-4.2.1"
@@ -105392,7 +105708,7 @@ in
sources."signal-exit-3.0.3"
sources."simple-concat-1.0.1"
sources."simple-get-2.8.1"
- (sources."simple-git-2.38.0" // {
+ (sources."simple-git-2.39.0" // {
dependencies = [
sources."debug-4.3.2"
sources."ms-2.1.2"
@@ -105422,7 +105738,6 @@ in
sources."stealthy-require-1.1.1"
sources."stream-promise-3.2.0"
sources."stream-shift-1.0.1"
- sources."strict-uri-encode-1.1.0"
(sources."string-width-1.0.2" // {
dependencies = [
sources."ansi-regex-2.1.1"
@@ -105434,6 +105749,7 @@ in
sources."strip-dirs-2.1.0"
sources."strip-json-comments-2.0.1"
sources."strip-outer-1.0.1"
+ sources."strtok3-6.0.8"
(sources."superagent-3.8.3" // {
dependencies = [
sources."debug-3.2.7"
@@ -105484,16 +105800,17 @@ in
sources."string_decoder-1.1.1"
];
})
+ sources."tencent-serverless-http-1.3.2"
sources."text-hex-1.0.0"
sources."throat-5.0.0"
sources."through-2.3.8"
- sources."timed-out-4.0.1"
sources."timers-ext-0.1.7"
sources."tmp-0.0.33"
sources."to-array-0.1.4"
sources."to-buffer-1.1.1"
sources."to-readable-stream-1.0.0"
sources."to-regex-range-5.0.1"
+ sources."token-types-2.1.1"
sources."tough-cookie-2.5.0"
sources."traverse-0.6.6"
sources."trim-repeated-1.0.0"
@@ -105503,6 +105820,7 @@ in
sources."tweetnacl-0.14.5"
sources."type-2.5.0"
sources."type-fest-0.21.3"
+ sources."type-is-1.6.18"
sources."typedarray-to-buffer-3.1.5"
sources."unbzip2-stream-1.4.3"
sources."universalify-0.1.2"
@@ -105515,7 +105833,6 @@ in
];
})
sources."url-parse-lax-3.0.0"
- sources."url-to-options-1.0.1"
sources."urlencode-1.1.0"
sources."util-deprecate-1.0.2"
sources."uuid-8.3.2"
@@ -105552,10 +105869,10 @@ in
})
sources."wrappy-1.0.2"
sources."write-file-atomic-2.4.3"
- sources."ws-7.4.5"
+ sources."ws-7.4.6"
sources."xml2js-0.4.19"
sources."xmlbuilder-9.0.7"
- sources."xmlhttprequest-ssl-1.5.5"
+ sources."xmlhttprequest-ssl-1.6.3"
sources."xtend-4.0.2"
sources."yallist-4.0.0"
sources."yaml-ast-parser-0.0.43"
@@ -106201,10 +106518,10 @@ in
snyk = nodeEnv.buildNodePackage {
name = "snyk";
packageName = "snyk";
- version = "1.563.0";
+ version = "1.618.0";
src = fetchurl {
- url = "https://registry.npmjs.org/snyk/-/snyk-1.563.0.tgz";
- sha512 = "o0Cb8JR70NzR4OLDKJDx04zj9Cq4gKhFLvQxU1MxZv0Hko7K6FmMDxdgyljd3nU5wl1QyVNdnug1H4XaHfhhvA==";
+ url = "https://registry.npmjs.org/snyk/-/snyk-1.618.0.tgz";
+ sha512 = "N4pTbZQgoZYsammFO65c8SPdmH0bxd3iP0cV6xWsbNeueLqjAJ9pKkT3+tYcIi97HmkXo6Zf1RAliH/Kge/akA==";
};
dependencies = [
sources."@arcanis/slice-ansi-1.0.2"
@@ -106214,11 +106531,11 @@ in
sources."@nodelib/fs.walk-1.2.6"
sources."@octetstream/promisify-2.0.2"
sources."@open-policy-agent/opa-wasm-1.2.0"
- sources."@sindresorhus/is-2.1.1"
+ sources."@sindresorhus/is-4.0.1"
sources."@snyk/cli-interface-2.11.0"
sources."@snyk/cloud-config-parser-1.9.2"
sources."@snyk/cocoapods-lockfile-parser-3.6.2"
- (sources."@snyk/code-client-3.4.1" // {
+ (sources."@snyk/code-client-3.7.0" // {
dependencies = [
sources."uuid-8.3.2"
];
@@ -106229,14 +106546,19 @@ in
sources."semver-7.3.5"
];
})
- sources."@snyk/docker-registry-v2-client-1.13.9"
+ sources."@snyk/docker-registry-v2-client-2.1.3"
sources."@snyk/fast-glob-3.2.6-patch"
- (sources."@snyk/fix-1.554.0" // {
+ (sources."@snyk/fix-1.601.0" // {
dependencies = [
sources."chalk-4.1.0"
sources."strip-ansi-6.0.0"
];
})
+ (sources."@snyk/fix-pipenv-pipfile-0.3.5" // {
+ dependencies = [
+ sources."debug-4.3.1"
+ ];
+ })
sources."@snyk/gemfile-1.2.0"
sources."@snyk/glob-parent-5.1.2-patch.1"
sources."@snyk/graphlib-2.1.9-patch.3"
@@ -106247,7 +106569,7 @@ in
sources."strip-ansi-6.0.0"
];
})
- (sources."@snyk/java-call-graph-builder-1.20.0" // {
+ (sources."@snyk/java-call-graph-builder-1.23.0" // {
dependencies = [
sources."rimraf-3.0.2"
sources."tmp-0.2.1"
@@ -106264,7 +106586,7 @@ in
sources."tslib-2.2.0"
];
})
- (sources."@snyk/snyk-docker-pull-3.2.3" // {
+ (sources."@snyk/snyk-docker-pull-3.2.5" // {
dependencies = [
sources."tmp-0.1.0"
];
@@ -106275,7 +106597,6 @@ in
];
})
sources."@szmarczak/http-timer-4.0.5"
- sources."@types/braces-3.0.0"
sources."@types/cacheable-request-6.0.1"
sources."@types/debug-4.1.5"
sources."@types/emscripten-1.39.4"
@@ -106284,23 +106605,22 @@ in
sources."@types/http-cache-semantics-4.0.0"
sources."@types/js-yaml-3.12.6"
sources."@types/keyv-3.1.1"
- sources."@types/lodash-4.14.168"
+ sources."@types/lodash-4.14.170"
sources."@types/lodash.chunk-4.2.6"
sources."@types/lodash.omit-4.5.6"
sources."@types/lodash.union-4.6.6"
- sources."@types/micromatch-4.0.1"
- sources."@types/node-14.14.41"
+ sources."@types/minimatch-3.0.4"
+ sources."@types/multimatch-4.0.0"
+ sources."@types/node-13.13.52"
sources."@types/responselike-1.0.0"
sources."@types/sarif-2.1.3"
- sources."@types/semver-7.3.4"
+ sources."@types/semver-7.3.6"
sources."@types/treeify-1.0.0"
sources."@types/uuid-8.3.0"
(sources."@yarnpkg/core-2.4.0" // {
dependencies = [
- sources."@sindresorhus/is-4.0.1"
sources."chalk-3.0.0"
sources."cross-spawn-7.0.3"
- sources."got-11.8.2"
sources."mkdirp-0.5.5"
sources."path-key-3.1.1"
sources."semver-7.3.5"
@@ -106314,11 +106634,7 @@ in
sources."@yarnpkg/libzip-2.2.1"
sources."@yarnpkg/lockfile-1.1.0"
sources."@yarnpkg/parsers-2.3.0"
- (sources."@yarnpkg/pnp-2.3.2" // {
- dependencies = [
- sources."@types/node-13.13.50"
- ];
- })
+ sources."@yarnpkg/pnp-2.3.2"
(sources."@yarnpkg/shell-2.4.1" // {
dependencies = [
sources."cross-spawn-7.0.3"
@@ -106348,7 +106664,9 @@ in
sources."sprintf-js-1.0.3"
];
})
+ sources."array-differ-3.0.0"
sources."array-union-2.1.0"
+ sources."arrify-2.0.1"
sources."asap-2.0.6"
sources."asn1-0.2.4"
sources."async-3.2.0"
@@ -106358,11 +106676,15 @@ in
sources."bcrypt-pbkdf-1.0.2"
sources."binjumper-0.1.4"
sources."bl-4.1.0"
- sources."boolean-3.0.3"
- (sources."boxen-4.2.0" // {
+ sources."boolean-3.0.4"
+ sources."bottleneck-2.19.5"
+ (sources."boxen-5.0.1" // {
dependencies = [
- sources."chalk-3.0.0"
- sources."type-fest-0.8.1"
+ sources."camelcase-6.2.0"
+ sources."chalk-4.1.1"
+ sources."strip-ansi-6.0.0"
+ sources."type-fest-0.20.2"
+ sources."wrap-ansi-7.0.0"
];
})
sources."brace-expansion-1.1.11"
@@ -106389,6 +106711,7 @@ in
})
sources."chardet-0.7.0"
sources."child-process-1.0.2"
+ sources."child_process-1.0.2"
sources."chownr-2.0.0"
sources."ci-info-2.0.0"
sources."clean-stack-2.2.0"
@@ -106404,7 +106727,7 @@ in
sources."color-name-1.1.4"
sources."concat-map-0.0.1"
sources."configstore-5.0.1"
- sources."core-js-3.11.0"
+ sources."core-js-3.13.0"
sources."core-util-is-1.0.2"
(sources."cross-spawn-6.0.5" // {
dependencies = [
@@ -106422,11 +106745,11 @@ in
sources."defaults-1.0.3"
sources."defer-to-connect-2.0.1"
sources."define-properties-1.1.3"
- sources."detect-node-2.0.5"
+ sources."detect-node-2.1.0"
sources."diff-4.0.2"
sources."dir-glob-3.0.1"
sources."docker-modem-2.1.3"
- sources."dockerfile-ast-0.2.0"
+ sources."dockerfile-ast-0.2.1"
sources."dot-prop-5.3.0"
sources."dotnet-deps-parser-5.0.0"
sources."duplexer3-0.1.4"
@@ -106457,24 +106780,24 @@ in
sources."fastq-1.11.0"
sources."figures-3.2.0"
sources."fill-range-7.0.1"
- sources."follow-redirects-1.13.3"
+ sources."follow-redirects-1.14.1"
sources."fs-constants-1.0.0"
sources."fs-minipass-2.1.0"
sources."fs.realpath-1.0.0"
sources."function-bind-1.1.1"
sources."get-intrinsic-1.1.1"
sources."get-stream-4.1.0"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."glob-parent-5.1.2"
(sources."global-agent-2.2.0" // {
dependencies = [
sources."semver-7.3.5"
];
})
- sources."global-dirs-2.1.0"
+ sources."global-dirs-3.0.0"
sources."globalthis-1.0.2"
sources."globby-11.0.3"
- sources."got-11.4.0"
+ sources."got-11.8.2"
sources."graceful-fs-4.2.6"
sources."grapheme-splitter-1.0.4"
sources."gunzip-maybe-1.4.2"
@@ -106482,11 +106805,6 @@ in
sources."has-flag-4.0.0"
sources."has-symbols-1.0.2"
sources."has-yarn-2.1.0"
- (sources."hcl-to-json-0.1.1" // {
- dependencies = [
- sources."debug-3.2.7"
- ];
- })
sources."hosted-git-info-3.0.8"
sources."http-cache-semantics-4.1.0"
sources."http2-wrapper-1.0.3"
@@ -106499,7 +106817,7 @@ in
sources."indent-string-4.0.0"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
- sources."ini-1.3.7"
+ sources."ini-2.0.0"
sources."is-3.3.0"
sources."is-callable-1.2.3"
sources."is-ci-2.0.0"
@@ -106509,9 +106827,9 @@ in
sources."is-fullwidth-code-point-3.0.0"
sources."is-glob-4.0.1"
sources."is-gzip-1.0.0"
- sources."is-installed-globally-0.3.2"
+ sources."is-installed-globally-0.4.0"
sources."is-interactive-1.0.0"
- sources."is-npm-4.0.0"
+ sources."is-npm-5.0.0"
sources."is-number-7.0.0"
sources."is-obj-2.0.0"
sources."is-path-inside-3.0.3"
@@ -106546,7 +106864,6 @@ in
sources."lodash.clonedeep-4.5.0"
sources."lodash.constant-3.0.0"
sources."lodash.defaults-4.2.0"
- sources."lodash.endswith-4.2.1"
sources."lodash.filter-4.6.0"
sources."lodash.find-4.6.0"
sources."lodash.findindex-4.6.0"
@@ -106609,6 +106926,7 @@ in
sources."minizlib-2.1.2"
sources."mkdirp-1.0.4"
sources."ms-2.1.2"
+ sources."multimatch-5.0.0"
sources."mute-stream-0.0.8"
(sources."needle-2.6.0" // {
dependencies = [
@@ -106617,15 +106935,15 @@ in
})
sources."nice-try-1.0.5"
sources."node.extend-2.0.2"
- sources."normalize-url-4.5.0"
+ sources."normalize-url-4.5.1"
sources."npm-run-path-2.0.2"
- sources."object-hash-2.1.1"
+ sources."object-hash-2.2.0"
sources."object-keys-1.1.1"
sources."object.assign-4.1.2"
sources."once-1.4.0"
sources."onetime-5.1.2"
sources."open-7.4.2"
- (sources."ora-5.3.0" // {
+ (sources."ora-5.4.0" // {
dependencies = [
sources."chalk-4.1.1"
sources."strip-ansi-6.0.0"
@@ -106633,7 +106951,7 @@ in
})
sources."os-name-3.1.0"
sources."os-tmpdir-1.0.2"
- sources."p-cancelable-2.1.0"
+ sources."p-cancelable-2.1.1"
sources."p-finally-1.0.0"
sources."p-limit-2.3.0"
sources."p-map-4.0.0"
@@ -106664,7 +106982,7 @@ in
sources."path-key-2.0.1"
sources."path-type-4.0.0"
sources."peek-stream-1.1.3"
- sources."picomatch-2.2.3"
+ sources."picomatch-2.3.0"
sources."pluralize-7.0.0"
sources."prepend-http-2.0.0"
sources."pretty-bytes-5.6.0"
@@ -106687,7 +107005,11 @@ in
sources."queue-6.0.2"
sources."queue-microtask-1.2.3"
sources."quick-lru-5.1.1"
- sources."rc-1.2.8"
+ (sources."rc-1.2.8" // {
+ dependencies = [
+ sources."ini-1.3.8"
+ ];
+ })
sources."readable-stream-3.6.0"
sources."registry-auth-token-4.2.1"
sources."registry-url-5.1.0"
@@ -106723,12 +107045,12 @@ in
sources."tslib-2.2.0"
];
})
- (sources."snyk-docker-plugin-4.19.3" // {
+ (sources."snyk-docker-plugin-4.20.8" // {
dependencies = [
sources."p-map-2.1.0"
sources."rimraf-3.0.2"
sources."semver-7.3.5"
- sources."snyk-nodejs-lockfile-parser-1.30.2"
+ sources."snyk-nodejs-lockfile-parser-1.34.0"
sources."tmp-0.2.1"
sources."uuid-8.3.2"
];
@@ -106740,7 +107062,7 @@ in
sources."tmp-0.2.1"
];
})
- (sources."snyk-gradle-plugin-3.14.2" // {
+ (sources."snyk-gradle-plugin-3.16.0" // {
dependencies = [
sources."chalk-3.0.0"
sources."rimraf-3.0.2"
@@ -106749,9 +107071,9 @@ in
];
})
sources."snyk-module-3.1.0"
- (sources."snyk-mvn-plugin-2.25.3" // {
+ (sources."snyk-mvn-plugin-2.26.0" // {
dependencies = [
- (sources."@snyk/java-call-graph-builder-1.19.1" // {
+ (sources."@snyk/java-call-graph-builder-1.21.0" // {
dependencies = [
sources."tmp-0.2.1"
];
@@ -106765,8 +107087,10 @@ in
sources."tslib-1.11.1"
];
})
- (sources."snyk-nodejs-lockfile-parser-1.32.0" // {
+ (sources."snyk-nodejs-lockfile-parser-1.35.0" // {
dependencies = [
+ sources."argparse-2.0.1"
+ sources."js-yaml-4.1.0"
sources."p-map-2.1.0"
sources."uuid-8.3.2"
];
@@ -106798,7 +107122,7 @@ in
sources."yallist-3.1.1"
];
})
- sources."snyk-python-plugin-1.19.8"
+ sources."snyk-python-plugin-1.19.9"
sources."snyk-resolve-1.1.0"
(sources."snyk-resolve-deps-4.7.2" // {
dependencies = [
@@ -106858,7 +107182,6 @@ in
sources."temp-dir-1.0.0"
];
})
- sources."term-size-2.2.1"
sources."then-fs-2.0.0"
sources."through-2.3.8"
(sources."through2-2.0.5" // {
@@ -106881,9 +107204,10 @@ in
sources."typedarray-to-buffer-3.1.5"
sources."unique-string-2.0.0"
sources."upath-2.0.1"
- (sources."update-notifier-4.1.3" // {
+ (sources."update-notifier-5.1.0" // {
dependencies = [
- sources."chalk-3.0.0"
+ sources."chalk-4.1.1"
+ sources."semver-7.3.5"
];
})
sources."url-parse-lax-3.0.0"
@@ -106929,16 +107253,16 @@ in
"socket.io" = nodeEnv.buildNodePackage {
name = "socket.io";
packageName = "socket.io";
- version = "4.0.1";
+ version = "4.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/socket.io/-/socket.io-4.0.1.tgz";
- sha512 = "g8eZB9lV0f4X4gndG0k7YZAywOg1VxYgCUspS4V+sDqsgI/duqd0AW84pKkbGj/wQwxrqrEq+VZrspRfTbHTAQ==";
+ url = "https://registry.npmjs.org/socket.io/-/socket.io-4.1.2.tgz";
+ sha512 = "xK0SD1C7hFrh9+bYoYCdVt+ncixkSLKtNLCax5aEy1o3r5PaO5yQhVb97exIe67cE7lAK+EpyMytXWTWmyZY8w==";
};
dependencies = [
sources."@types/component-emitter-1.2.10"
sources."@types/cookie-0.4.0"
sources."@types/cors-2.8.10"
- sources."@types/node-14.14.41"
+ sources."@types/node-15.6.1"
sources."accepts-1.3.7"
sources."base64-arraybuffer-0.1.4"
sources."base64id-2.0.0"
@@ -106946,17 +107270,17 @@ in
sources."cookie-0.4.1"
sources."cors-2.8.5"
sources."debug-4.3.2"
- sources."engine.io-5.0.0"
+ sources."engine.io-5.1.1"
sources."engine.io-parser-4.0.2"
sources."mime-db-1.47.0"
sources."mime-types-2.1.30"
sources."ms-2.1.2"
sources."negotiator-0.6.2"
sources."object-assign-4.1.1"
- sources."socket.io-adapter-2.2.0"
+ sources."socket.io-adapter-2.3.1"
sources."socket.io-parser-4.0.4"
sources."vary-1.1.2"
- sources."ws-7.4.5"
+ sources."ws-7.4.6"
];
buildInputs = globalBuildInputs;
meta = {
@@ -107035,7 +107359,7 @@ in
sources."ini-1.3.8"
sources."is-arrayish-0.2.1"
sources."is-ci-1.2.1"
- sources."is-core-module-2.3.0"
+ sources."is-core-module-2.4.0"
sources."is-fullwidth-code-point-2.0.0"
sources."is-installed-globally-0.1.0"
sources."is-npm-1.0.0"
@@ -107080,7 +107404,7 @@ in
sources."path-exists-3.0.0"
sources."path-is-inside-1.0.2"
sources."path-key-2.0.1"
- sources."path-parse-1.0.6"
+ sources."path-parse-1.0.7"
sources."path-type-3.0.0"
sources."pify-3.0.0"
sources."prepend-http-1.0.4"
@@ -107105,7 +107429,7 @@ in
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."spdx-license-ids-3.0.9"
sources."speedtest-net-1.6.2"
sources."string-width-2.1.1"
sources."strip-ansi-4.0.0"
@@ -107170,7 +107494,6 @@ in
sources."arr-flatten-1.1.0"
sources."arr-union-3.1.0"
sources."array-differ-3.0.0"
- sources."array-filter-1.0.0"
sources."array-union-1.0.2"
sources."array-uniq-1.0.3"
sources."array-unique-0.2.1"
@@ -107178,7 +107501,7 @@ in
sources."assign-symbols-1.0.0"
(sources."async-append-only-log-3.0.8" // {
dependencies = [
- sources."push-stream-11.0.0"
+ sources."push-stream-11.0.1"
];
})
sources."async-each-1.0.3"
@@ -107186,9 +107509,9 @@ in
sources."async-write-2.1.0"
sources."atob-2.1.2"
sources."atomic-file-1.1.5"
- sources."atomic-file-rw-0.2.1"
+ sources."atomic-file-rw-0.2.2"
sources."attach-ware-1.1.1"
- sources."available-typed-arrays-1.0.2"
+ sources."available-typed-arrays-1.0.4"
sources."bail-1.0.5"
sources."balanced-match-1.0.2"
(sources."base-0.11.2" // {
@@ -107278,6 +107601,7 @@ in
sources."copy-descriptor-0.1.1"
sources."core-util-is-1.0.2"
sources."cpu-percentage-1.0.3"
+ sources."crc-3.6.0"
sources."cross-spawn-6.0.5"
sources."debug-4.3.2"
sources."decode-uri-component-0.2.0"
@@ -107311,9 +107635,9 @@ in
sources."end-of-stream-1.4.4"
sources."epidemic-broadcast-trees-7.0.0"
sources."errno-0.1.8"
- (sources."es-abstract-1.18.0" // {
+ (sources."es-abstract-1.18.3" // {
dependencies = [
- sources."object-inspect-1.10.2"
+ sources."object-inspect-1.10.3"
];
})
(sources."es-get-iterator-1.1.2" // {
@@ -107425,7 +107749,6 @@ in
sources."kind-of-4.0.0"
];
})
- sources."hash-wasm-4.6.0"
sources."hashlru-2.3.0"
sources."he-0.5.0"
sources."heap-0.2.6"
@@ -107450,9 +107773,9 @@ in
sources."is-alphabetical-1.0.4"
sources."is-alphanumerical-1.0.4"
sources."is-arguments-1.1.0"
- sources."is-bigint-1.0.1"
+ sources."is-bigint-1.0.2"
sources."is-binary-path-1.0.1"
- sources."is-boolean-object-1.1.0"
+ sources."is-boolean-object-1.1.1"
sources."is-buffer-1.1.6"
sources."is-callable-1.2.3"
sources."is-canonical-base64-1.1.1"
@@ -107461,7 +107784,7 @@ in
sources."kind-of-6.0.3"
];
})
- sources."is-date-object-1.0.2"
+ sources."is-date-object-1.0.4"
sources."is-decimal-1.0.4"
(sources."is-descriptor-1.0.2" // {
dependencies = [
@@ -107478,7 +107801,7 @@ in
sources."is-map-2.0.2"
sources."is-negative-zero-2.0.1"
sources."is-number-2.1.0"
- sources."is-number-object-1.0.4"
+ sources."is-number-object-1.0.5"
sources."is-options-1.0.1"
(sources."is-plain-object-2.0.4" // {
dependencies = [
@@ -107487,11 +107810,11 @@ in
})
sources."is-posix-bracket-0.1.1"
sources."is-primitive-2.0.0"
- sources."is-regex-1.1.2"
+ sources."is-regex-1.1.3"
sources."is-set-2.0.2"
sources."is-stream-2.0.0"
- sources."is-string-1.0.5"
- sources."is-symbol-1.0.3"
+ sources."is-string-1.0.6"
+ sources."is-symbol-1.0.4"
sources."is-typed-array-1.1.5"
sources."is-typedarray-1.0.0"
sources."is-valid-domain-0.0.19"
@@ -107501,11 +107824,10 @@ in
sources."isarray-1.0.0"
sources."isexe-2.0.0"
sources."isobject-2.1.0"
- (sources."jitdb-3.1.3" // {
+ (sources."jitdb-3.1.4" // {
dependencies = [
sources."mkdirp-1.0.4"
- sources."push-stream-11.0.0"
- sources."typedarray-to-buffer-4.0.0"
+ sources."push-stream-11.0.1"
];
})
sources."jsesc-3.0.2"
@@ -107521,7 +107843,11 @@ in
sources."readable-stream-3.6.0"
];
})
- sources."level-js-4.0.2"
+ (sources."level-js-4.0.2" // {
+ dependencies = [
+ sources."typedarray-to-buffer-3.1.5"
+ ];
+ })
sources."level-packager-5.1.1"
sources."level-post-1.0.7"
sources."level-supports-1.0.1"
@@ -107576,11 +107902,11 @@ in
sources."arrify-2.0.1"
];
})
- sources."multiserver-3.7.1"
+ sources."multiserver-3.7.2"
sources."multiserver-address-1.0.1"
sources."multiserver-scopes-1.0.0"
sources."mutexify-1.3.1"
- sources."muxrpc-6.5.2"
+ sources."muxrpc-6.5.3"
sources."muxrpc-usage-2.1.0"
sources."muxrpc-validation-3.0.2"
sources."muxrpcli-3.1.2"
@@ -107650,7 +107976,6 @@ in
sources."once-1.4.0"
sources."onetime-1.1.0"
sources."opencollective-postinstall-2.0.3"
- sources."options-0.0.6"
sources."os-homedir-1.0.2"
sources."os-tmpdir-1.0.2"
sources."osenv-0.1.5"
@@ -107666,7 +107991,7 @@ in
sources."path-exists-4.0.0"
sources."path-is-absolute-1.0.1"
sources."path-key-2.0.1"
- sources."path-parse-1.0.6"
+ sources."path-parse-1.0.7"
sources."pify-2.3.0"
sources."pinkie-2.0.4"
sources."pinkie-promise-2.0.1"
@@ -107674,7 +107999,7 @@ in
sources."polyraf-1.1.0"
sources."posix-character-classes-0.1.1"
sources."preserve-0.2.0"
- sources."prettier-2.2.1"
+ sources."prettier-2.3.0"
(sources."pretty-quick-3.1.0" // {
dependencies = [
sources."ansi-styles-4.3.0"
@@ -107743,6 +108068,7 @@ in
})
sources."pull-traverse-1.0.3"
sources."pull-utf8-decoder-1.0.2"
+ sources."pull-websocket-3.4.2"
(sources."pull-window-2.1.4" // {
dependencies = [
sources."looper-2.0.0"
@@ -107750,11 +108076,14 @@ in
})
sources."pull-write-1.1.4"
sources."pull-write-file-0.2.4"
- sources."pull-ws-3.3.2"
sources."pump-3.0.0"
sources."punycode-1.4.1"
sources."push-stream-10.1.2"
- sources."push-stream-to-pull-stream-1.0.3"
+ (sources."push-stream-to-pull-stream-1.0.4" // {
+ dependencies = [
+ sources."push-stream-11.0.1"
+ ];
+ })
sources."quicktask-1.0.1"
sources."railroad-diagrams-1.0.0"
sources."randexp-0.4.6"
@@ -107858,7 +108187,7 @@ in
sources."right-pad-1.0.1"
(sources."rimraf-2.7.1" // {
dependencies = [
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
];
})
sources."rng-0.2.2"
@@ -107881,7 +108210,7 @@ in
sources."shellsubstitute-1.2.0"
(sources."side-channel-1.0.4" // {
dependencies = [
- sources."object-inspect-1.10.2"
+ sources."object-inspect-1.10.3"
];
})
sources."signal-exit-3.0.3"
@@ -107933,7 +108262,7 @@ in
sources."ssb-client-4.9.0"
sources."ssb-config-3.4.5"
sources."ssb-db-19.2.0"
- (sources."ssb-db2-2.1.1" // {
+ (sources."ssb-db2-2.1.2" // {
dependencies = [
sources."abstract-leveldown-6.2.3"
(sources."flumecodec-0.0.1" // {
@@ -107941,18 +108270,17 @@ in
sources."level-codec-6.2.0"
];
})
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."level-6.0.1"
sources."level-js-5.0.2"
sources."mkdirp-1.0.4"
- sources."push-stream-11.0.0"
+ sources."push-stream-11.0.1"
sources."rimraf-3.0.2"
(sources."ssb-keys-8.1.0" // {
dependencies = [
sources."mkdirp-0.5.5"
];
})
- sources."typedarray-to-buffer-4.0.0"
];
})
sources."ssb-ebt-5.6.7"
@@ -107987,7 +108315,7 @@ in
sources."ssb-plugins-1.0.0"
sources."ssb-query-2.4.5"
sources."ssb-ref-2.14.3"
- sources."ssb-replicate-1.3.2"
+ sources."ssb-replicate-1.3.3"
sources."ssb-sort-1.1.3"
sources."ssb-unix-socket-1.0.0"
(sources."ssb-validate-4.1.4" // {
@@ -108032,7 +108360,7 @@ in
sources."supports-color-2.0.0"
(sources."tape-4.13.3" // {
dependencies = [
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."is-regex-1.0.5"
];
})
@@ -108058,11 +108386,10 @@ in
sources."tweetnacl-0.14.5"
sources."tweetnacl-auth-0.3.1"
sources."typedarray-0.0.6"
- sources."typedarray-to-buffer-3.1.5"
+ sources."typedarray-to-buffer-4.0.0"
sources."typedfastbitset-0.2.1"
sources."typewiselite-1.0.0"
sources."uint48be-2.0.1"
- sources."ultron-1.0.2"
sources."unbox-primitive-1.0.1"
sources."unherit-1.1.3"
sources."unified-2.1.4"
@@ -108101,7 +108428,7 @@ in
sources."word-wrap-1.2.3"
sources."wrap-fn-0.1.5"
sources."wrappy-1.0.2"
- sources."ws-1.1.5"
+ sources."ws-7.4.6"
sources."xtend-4.0.2"
sources."zerr-1.0.4"
];
@@ -108201,7 +108528,7 @@ in
sources."async-1.5.2"
sources."async-limiter-1.0.1"
sources."asynckit-0.4.0"
- (sources."aws-sdk-2.892.0" // {
+ (sources."aws-sdk-2.918.0" // {
dependencies = [
sources."uuid-3.3.2"
];
@@ -108340,14 +108667,14 @@ in
dependencies = [
sources."cookie-0.4.1"
sources."debug-4.1.1"
- sources."ws-7.4.5"
+ sources."ws-7.4.6"
];
})
- (sources."engine.io-client-3.5.1" // {
+ (sources."engine.io-client-3.5.2" // {
dependencies = [
sources."debug-3.1.0"
sources."ms-2.0.0"
- sources."ws-7.4.5"
+ sources."ws-7.4.6"
];
})
sources."engine.io-parser-2.2.1"
@@ -108385,7 +108712,7 @@ in
sources."fd-slicer-1.1.0"
sources."finalhandler-1.1.2"
sources."find-up-3.0.0"
- sources."follow-redirects-1.13.3"
+ sources."follow-redirects-1.14.1"
sources."forever-agent-0.6.1"
sources."form-data-2.1.4"
sources."formidable-1.2.2"
@@ -108453,7 +108780,7 @@ in
sources."ipaddr.js-1.9.1"
sources."is-arrayish-0.2.1"
sources."is-buffer-1.1.6"
- sources."is-core-module-2.3.0"
+ sources."is-core-module-2.4.0"
(sources."is-expression-3.0.0" // {
dependencies = [
sources."acorn-4.0.13"
@@ -108464,7 +108791,7 @@ in
sources."is-my-json-valid-2.20.5"
sources."is-promise-2.2.2"
sources."is-property-1.0.2"
- sources."is-regex-1.1.2"
+ sources."is-regex-1.1.3"
sources."is-stream-1.1.0"
sources."is-typedarray-1.0.0"
sources."is-utf8-0.2.1"
@@ -108586,7 +108913,7 @@ in
sources."oauth-sign-0.8.2"
sources."object-assign-4.1.1"
sources."object-hash-0.3.0"
- sources."object-inspect-1.10.2"
+ sources."object-inspect-1.10.3"
sources."on-finished-2.3.0"
sources."on-headers-1.0.2"
sources."once-1.4.0"
@@ -108617,7 +108944,7 @@ in
sources."path-is-absolute-1.0.1"
sources."path-key-2.0.1"
sources."path-loader-1.0.10"
- sources."path-parse-1.0.6"
+ sources."path-parse-1.0.7"
sources."path-to-regexp-0.1.7"
sources."path-type-1.1.0"
sources."pause-0.0.1"
@@ -108756,7 +109083,7 @@ in
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."spdx-license-ids-3.0.9"
sources."split-1.0.1"
sources."sprintf-js-1.0.3"
(sources."sshpk-1.16.1" // {
@@ -108821,7 +109148,7 @@ in
sources."switchback-2.0.5"
(sources."temp-0.8.4" // {
dependencies = [
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."rimraf-2.6.3"
];
})
@@ -108921,7 +109248,7 @@ in
sources."xml2js-0.4.19"
sources."xmlbuilder-9.0.7"
sources."xmldom-0.1.31"
- sources."xmlhttprequest-ssl-1.5.5"
+ sources."xmlhttprequest-ssl-1.6.3"
sources."xpath-0.0.5"
sources."xpath.js-1.1.0"
sources."xtend-4.0.2"
@@ -108971,38 +109298,38 @@ in
stylelint = nodeEnv.buildNodePackage {
name = "stylelint";
packageName = "stylelint";
- version = "13.13.0";
+ version = "13.13.1";
src = fetchurl {
- url = "https://registry.npmjs.org/stylelint/-/stylelint-13.13.0.tgz";
- sha512 = "jvkM1iuH88vAvjdKPwPm6abiMP2/D/1chbfb+4GVONddOOskHuCXc0loyrLdxO1AwwH6jdnjYskkTKHQD7cXwQ==";
+ url = "https://registry.npmjs.org/stylelint/-/stylelint-13.13.1.tgz";
+ sha512 = "Mv+BQr5XTUrKqAXmpqm6Ddli6Ief+AiPZkRsIrAoUKFuq/ElkUh9ZMYxXD0iQNZ5ADghZKLOWz1h7hTClB7zgQ==";
};
dependencies = [
sources."@babel/code-frame-7.12.13"
- sources."@babel/compat-data-7.13.15"
- sources."@babel/core-7.13.16"
- sources."@babel/generator-7.13.16"
- sources."@babel/helper-compilation-targets-7.13.16"
- sources."@babel/helper-function-name-7.12.13"
+ sources."@babel/compat-data-7.14.4"
+ sources."@babel/core-7.14.3"
+ sources."@babel/generator-7.14.3"
+ sources."@babel/helper-compilation-targets-7.14.4"
+ sources."@babel/helper-function-name-7.14.2"
sources."@babel/helper-get-function-arity-7.12.13"
sources."@babel/helper-member-expression-to-functions-7.13.12"
sources."@babel/helper-module-imports-7.13.12"
- sources."@babel/helper-module-transforms-7.13.14"
+ sources."@babel/helper-module-transforms-7.14.2"
sources."@babel/helper-optimise-call-expression-7.12.13"
- sources."@babel/helper-replace-supers-7.13.12"
+ sources."@babel/helper-replace-supers-7.14.4"
sources."@babel/helper-simple-access-7.13.12"
sources."@babel/helper-split-export-declaration-7.12.13"
- sources."@babel/helper-validator-identifier-7.12.11"
+ sources."@babel/helper-validator-identifier-7.14.0"
sources."@babel/helper-validator-option-7.12.17"
- sources."@babel/helpers-7.13.17"
- (sources."@babel/highlight-7.13.10" // {
+ sources."@babel/helpers-7.14.0"
+ (sources."@babel/highlight-7.14.0" // {
dependencies = [
sources."chalk-2.4.2"
];
})
- sources."@babel/parser-7.13.16"
+ sources."@babel/parser-7.14.4"
sources."@babel/template-7.12.13"
- sources."@babel/traverse-7.13.17"
- sources."@babel/types-7.13.17"
+ sources."@babel/traverse-7.14.2"
+ sources."@babel/types-7.14.4"
sources."@nodelib/fs.scandir-2.1.4"
sources."@nodelib/fs.stat-2.0.4"
sources."@nodelib/fs.walk-1.2.6"
@@ -109013,7 +109340,7 @@ in
sources."@types/normalize-package-data-2.4.0"
sources."@types/parse-json-4.0.0"
sources."@types/unist-2.0.3"
- sources."ajv-8.1.0"
+ sources."ajv-8.5.0"
sources."ansi-regex-5.0.0"
sources."ansi-styles-3.2.1"
sources."array-union-2.1.0"
@@ -109028,11 +109355,11 @@ in
];
})
sources."braces-3.0.2"
- sources."browserslist-4.16.5"
+ sources."browserslist-4.16.6"
sources."callsites-3.1.0"
sources."camelcase-5.3.1"
sources."camelcase-keys-6.2.2"
- sources."caniuse-lite-1.0.30001214"
+ sources."caniuse-lite-1.0.30001230"
(sources."chalk-4.1.1" // {
dependencies = [
sources."ansi-styles-4.3.0"
@@ -109070,7 +109397,7 @@ in
sources."domelementtype-1.3.1"
sources."domhandler-2.4.2"
sources."domutils-1.7.0"
- sources."electron-to-chromium-1.3.720"
+ sources."electron-to-chromium-1.3.741"
sources."emoji-regex-8.0.0"
sources."entities-1.1.2"
sources."error-ex-1.3.2"
@@ -109091,7 +109418,7 @@ in
sources."function-bind-1.1.1"
sources."gensync-1.0.0-beta.2"
sources."get-stdin-8.0.0"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."glob-parent-5.1.2"
sources."global-modules-2.0.0"
sources."global-prefix-3.0.0"
@@ -109121,7 +109448,7 @@ in
sources."is-alphanumerical-1.0.4"
sources."is-arrayish-0.2.1"
sources."is-buffer-2.0.5"
- sources."is-core-module-2.3.0"
+ sources."is-core-module-2.4.0"
sources."is-decimal-1.0.4"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-3.0.0"
@@ -109144,7 +109471,6 @@ in
sources."locate-path-5.0.0"
sources."lodash-4.17.21"
sources."lodash.clonedeep-4.5.0"
- sources."lodash.flatten-4.4.0"
sources."lodash.truncate-4.4.2"
sources."log-symbols-4.1.0"
sources."longest-streak-2.0.4"
@@ -109167,7 +109493,7 @@ in
];
})
sources."ms-2.1.2"
- sources."node-releases-1.1.71"
+ sources."node-releases-1.1.72"
(sources."normalize-package-data-3.0.2" // {
dependencies = [
sources."semver-7.3.5"
@@ -109185,9 +109511,9 @@ in
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"
+ sources."path-parse-1.0.7"
sources."path-type-4.0.0"
- sources."picomatch-2.2.3"
+ sources."picomatch-2.3.0"
(sources."postcss-7.0.35" // {
dependencies = [
(sources."chalk-2.4.2" // {
@@ -109206,7 +109532,7 @@ in
sources."postcss-safe-parser-4.0.2"
sources."postcss-sass-0.4.4"
sources."postcss-scss-2.1.1"
- sources."postcss-selector-parser-6.0.5"
+ sources."postcss-selector-parser-6.0.6"
sources."postcss-syntax-0.36.2"
sources."postcss-value-parser-4.1.0"
sources."punycode-2.1.1"
@@ -109252,7 +109578,7 @@ in
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."spdx-license-ids-3.0.9"
sources."specificity-0.4.1"
sources."string-width-4.2.2"
(sources."string_decoder-1.3.0" // {
@@ -109266,10 +109592,10 @@ in
sources."sugarss-2.0.0"
sources."supports-color-5.5.0"
sources."svg-tags-1.0.0"
- sources."table-6.5.1"
+ sources."table-6.7.1"
sources."to-fast-properties-2.0.0"
sources."to-regex-range-5.0.1"
- sources."trim-newlines-3.0.0"
+ sources."trim-newlines-3.0.1"
sources."trough-1.0.5"
sources."type-fest-0.18.1"
sources."typedarray-to-buffer-3.1.5"
@@ -109304,16 +109630,16 @@ in
svelte-language-server = nodeEnv.buildNodePackage {
name = "svelte-language-server";
packageName = "svelte-language-server";
- version = "0.13.2";
+ version = "0.14.0";
src = fetchurl {
- url = "https://registry.npmjs.org/svelte-language-server/-/svelte-language-server-0.13.2.tgz";
- sha512 = "mOcSqZUM9zJORyl1FbODC4TSvlYgOgQmlEKzDj77D1JyuXfYD+XSnqxJufwa0DqI05y8uKMBKj0AWWeTu1OZjw==";
+ url = "https://registry.npmjs.org/svelte-language-server/-/svelte-language-server-0.14.0.tgz";
+ sha512 = "P9QsonwMBUvwQxJbnNKggvJf1K24xaUhRrzoqkJabHtUT37JyYrt9anMIZ7WmjuKUEI/Ejf+Gu/8A0VvyUBaUQ==";
};
dependencies = [
sources."@emmetio/abbreviation-2.2.2"
sources."@emmetio/css-abbreviation-2.1.4"
sources."@emmetio/scanner-1.0.0"
- sources."@types/node-14.14.41"
+ sources."@types/node-15.6.1"
sources."@types/pug-2.0.4"
sources."@types/sass-1.16.0"
sources."anymatch-3.1.2"
@@ -109324,13 +109650,13 @@ in
sources."chokidar-3.5.1"
sources."concat-map-0.0.1"
sources."dedent-js-1.0.1"
- sources."detect-indent-6.0.0"
+ sources."detect-indent-6.1.0"
sources."emmet-2.3.4"
sources."estree-walker-2.0.2"
sources."fill-range-7.0.1"
sources."fs.realpath-1.0.0"
sources."fsevents-2.3.2"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."glob-parent-5.1.2"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
@@ -109348,24 +109674,28 @@ in
sources."once-1.4.0"
sources."pascal-case-3.1.2"
sources."path-is-absolute-1.0.1"
- sources."picomatch-2.2.3"
- sources."prettier-2.2.1"
- sources."prettier-plugin-svelte-2.2.0"
+ sources."picomatch-2.3.0"
+ sources."prettier-2.3.0"
+ sources."prettier-plugin-svelte-2.3.0"
sources."readdirp-3.5.0"
sources."source-map-0.7.3"
sources."strip-indent-3.0.0"
- sources."svelte-3.35.0"
- sources."svelte-preprocess-4.6.9"
- sources."svelte2tsx-0.1.188"
+ sources."svelte-3.38.2"
+ sources."svelte-preprocess-4.7.3"
+ sources."svelte2tsx-0.2.0"
sources."to-regex-range-5.0.1"
sources."tslib-2.2.0"
- sources."typescript-4.2.4"
+ sources."typescript-4.3.2"
sources."vscode-css-languageservice-5.0.0"
sources."vscode-emmet-helper-2.1.2"
sources."vscode-html-languageservice-4.0.0"
- sources."vscode-jsonrpc-6.0.0"
- sources."vscode-languageserver-7.0.0"
- sources."vscode-languageserver-protocol-3.16.0"
+ sources."vscode-jsonrpc-6.1.0-next.2"
+ sources."vscode-languageserver-7.1.0-next.4"
+ (sources."vscode-languageserver-protocol-3.17.0-next.5" // {
+ dependencies = [
+ sources."vscode-languageserver-types-3.17.0-next.1"
+ ];
+ })
sources."vscode-languageserver-textdocument-1.0.1"
sources."vscode-languageserver-types-3.16.0"
sources."vscode-nls-5.0.0"
@@ -109402,7 +109732,7 @@ in
sources."css-tree-1.1.3"
sources."css-what-4.0.0"
sources."csso-4.2.0"
- sources."dom-serializer-1.3.1"
+ sources."dom-serializer-1.3.2"
sources."domelementtype-2.2.0"
sources."domhandler-4.2.0"
sources."domutils-2.6.0"
@@ -109624,7 +109954,7 @@ in
sources."get-intrinsic-1.1.1"
sources."get-stream-3.0.0"
sources."get-value-2.0.6"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
(sources."glob-parent-3.1.0" // {
dependencies = [
sources."is-glob-3.1.0"
@@ -109807,7 +110137,7 @@ in
sources."kind-of-3.2.2"
];
})
- sources."object-inspect-1.10.2"
+ sources."object-inspect-1.10.3"
sources."object-visit-1.0.1"
sources."object.pick-1.3.0"
sources."on-finished-2.3.0"
@@ -110003,7 +110333,7 @@ in
sources."truncate-utf8-bytes-1.0.2"
sources."type-is-1.6.18"
sources."typedarray-0.0.6"
- sources."uglify-js-3.13.4"
+ sources."uglify-js-3.13.8"
sources."undefsafe-2.0.3"
(sources."union-value-1.0.1" // {
dependencies = [
@@ -110227,7 +110557,7 @@ in
sources."minimist-1.2.5"
sources."mkdirp-classic-0.5.3"
sources."napi-build-utils-1.0.2"
- sources."node-abi-2.26.0"
+ sources."node-abi-2.30.0"
sources."node-addon-api-3.0.2"
sources."noop-logger-0.1.1"
sources."npmlog-4.1.2"
@@ -110257,7 +110587,7 @@ in
];
})
sources."tunnel-agent-0.6.0"
- sources."usb-1.7.0"
+ sources."usb-1.7.1"
sources."util-deprecate-1.0.2"
sources."which-pm-runs-1.0.0"
sources."wide-align-1.1.3"
@@ -110292,7 +110622,7 @@ in
sources."enhanced-resolve-2.3.0"
sources."errno-0.1.8"
sources."fs.realpath-1.0.0"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."graceful-fs-4.2.6"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
@@ -110325,29 +110655,31 @@ in
textlint = nodeEnv.buildNodePackage {
name = "textlint";
packageName = "textlint";
- version = "11.9.0";
+ version = "12.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/textlint/-/textlint-11.9.0.tgz";
- sha512 = "a9ZCfCOcOTNxEQsRbYBDFNu8m5cjJC+znnXCBommGSdP0W+9QmwZnkralwpxrVhRgWvLz+QyuDXtLBZcqfDmHg==";
+ url = "https://registry.npmjs.org/textlint/-/textlint-12.0.0.tgz";
+ sha512 = "hpXezTFR/BxNzc0iJqwspAuHYrCWF/nF7mBS9OGzgBJx5FfS1xfsAIityV65Ffcr+nxCExzTQqRHR6qSWOZmbg==";
};
dependencies = [
sources."@azu/format-text-1.0.1"
sources."@azu/style-format-1.0.0"
- sources."@textlint/ast-node-types-4.4.2"
- sources."@textlint/ast-tester-2.3.4"
- sources."@textlint/ast-traverse-2.3.4"
- sources."@textlint/feature-flag-3.3.4"
- sources."@textlint/fixer-formatter-3.3.4"
- sources."@textlint/kernel-3.4.4"
- sources."@textlint/linter-formatter-3.3.4"
- sources."@textlint/markdown-to-ast-6.3.4"
- sources."@textlint/module-interop-1.2.4"
- sources."@textlint/source-code-fixer-3.4.4"
- sources."@textlint/text-to-ast-3.3.4"
- sources."@textlint/textlint-plugin-markdown-5.3.4"
- sources."@textlint/textlint-plugin-text-4.3.4"
- sources."@textlint/types-1.5.4"
- sources."@textlint/utils-1.2.4"
+ sources."@textlint/ast-node-types-12.0.0"
+ sources."@textlint/ast-tester-12.0.0"
+ sources."@textlint/ast-traverse-12.0.0"
+ sources."@textlint/feature-flag-12.0.0"
+ sources."@textlint/fixer-formatter-12.0.0"
+ sources."@textlint/kernel-12.0.0"
+ sources."@textlint/linter-formatter-12.0.0"
+ sources."@textlint/markdown-to-ast-12.0.0"
+ sources."@textlint/module-interop-12.0.0"
+ sources."@textlint/source-code-fixer-12.0.0"
+ sources."@textlint/text-to-ast-12.0.0"
+ sources."@textlint/textlint-plugin-markdown-12.0.0"
+ sources."@textlint/textlint-plugin-text-12.0.0"
+ sources."@textlint/types-12.0.0"
+ sources."@textlint/utils-12.0.0"
+ sources."@types/mdast-3.0.3"
+ sources."@types/unist-2.0.3"
sources."ajv-4.11.8"
sources."ajv-keywords-1.5.1"
sources."ansi-regex-2.1.1"
@@ -110357,8 +110689,8 @@ in
sources."balanced-match-1.0.2"
sources."boundary-1.0.1"
sources."brace-expansion-1.1.11"
- sources."buffer-from-1.1.1"
sources."call-bind-1.0.2"
+ sources."ccount-1.1.0"
(sources."chalk-1.1.3" // {
dependencies = [
sources."strip-ansi-3.0.1"
@@ -110370,10 +110702,7 @@ in
sources."charenc-0.0.2"
sources."co-4.6.0"
sources."code-point-at-1.1.0"
- sources."collapse-white-space-1.0.6"
sources."concat-map-0.0.1"
- sources."concat-stream-1.6.2"
- sources."core-util-is-1.0.2"
sources."crypt-0.0.2"
sources."debug-4.3.2"
sources."deep-equal-1.1.1"
@@ -110395,7 +110724,7 @@ in
sources."function-bind-1.1.1"
sources."get-intrinsic-1.1.1"
sources."get-stdin-5.0.1"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."graceful-fs-4.2.6"
sources."has-1.0.3"
sources."has-ansi-2.0.0"
@@ -110407,19 +110736,16 @@ in
sources."is-alphanumerical-1.0.4"
sources."is-arguments-1.1.0"
sources."is-arrayish-0.2.1"
- sources."is-buffer-1.1.6"
- sources."is-core-module-2.3.0"
- sources."is-date-object-1.0.2"
+ sources."is-buffer-2.0.5"
+ sources."is-core-module-2.4.0"
+ sources."is-date-object-1.0.4"
sources."is-decimal-1.0.4"
sources."is-file-1.0.0"
sources."is-fullwidth-code-point-1.0.0"
sources."is-hexadecimal-1.0.4"
- sources."is-plain-obj-1.1.0"
- sources."is-regex-1.1.2"
+ sources."is-plain-obj-2.1.0"
+ sources."is-regex-1.1.3"
sources."is-utf8-0.2.1"
- sources."is-whitespace-character-1.0.4"
- sources."is-word-character-1.0.4"
- sources."isarray-1.0.0"
sources."js-yaml-3.14.1"
sources."json-parse-better-errors-1.0.2"
sources."json-stable-stringify-1.0.1"
@@ -110430,9 +110756,38 @@ in
sources."locate-path-2.0.0"
sources."lodash-4.17.21"
sources."log-symbols-1.0.2"
+ sources."longest-streak-2.0.4"
sources."map-like-2.0.0"
- sources."markdown-escapes-1.0.4"
- sources."md5-2.3.0"
+ sources."markdown-table-2.0.0"
+ (sources."md5-2.3.0" // {
+ dependencies = [
+ sources."is-buffer-1.1.6"
+ ];
+ })
+ (sources."mdast-util-find-and-replace-1.1.1" // {
+ dependencies = [
+ sources."escape-string-regexp-4.0.0"
+ ];
+ })
+ sources."mdast-util-footnote-0.1.7"
+ sources."mdast-util-from-markdown-0.8.5"
+ sources."mdast-util-frontmatter-0.2.0"
+ sources."mdast-util-gfm-0.1.2"
+ sources."mdast-util-gfm-autolink-literal-0.1.3"
+ sources."mdast-util-gfm-strikethrough-0.2.3"
+ sources."mdast-util-gfm-table-0.1.6"
+ sources."mdast-util-gfm-task-list-item-0.1.6"
+ sources."mdast-util-to-markdown-0.6.5"
+ sources."mdast-util-to-string-2.0.0"
+ sources."micromark-2.11.4"
+ sources."micromark-extension-footnote-0.3.2"
+ sources."micromark-extension-frontmatter-0.2.2"
+ sources."micromark-extension-gfm-0.3.3"
+ sources."micromark-extension-gfm-autolink-literal-0.5.7"
+ sources."micromark-extension-gfm-strikethrough-0.6.5"
+ sources."micromark-extension-gfm-table-0.4.3"
+ sources."micromark-extension-gfm-tagfilter-0.3.0"
+ sources."micromark-extension-gfm-task-list-item-0.3.3"
sources."minimatch-3.0.4"
sources."minimist-1.2.5"
sources."mkdirp-0.5.5"
@@ -110446,11 +110801,11 @@ in
sources."p-limit-1.3.0"
sources."p-locate-2.0.0"
sources."p-try-1.0.0"
- sources."parse-entities-1.2.2"
+ sources."parse-entities-2.0.0"
sources."parse-json-2.2.0"
sources."path-exists-3.0.0"
sources."path-is-absolute-1.0.1"
- sources."path-parse-1.0.6"
+ sources."path-parse-1.0.7"
sources."path-to-glob-pattern-1.0.2"
sources."path-type-1.1.0"
sources."pify-2.3.0"
@@ -110458,7 +110813,6 @@ in
sources."pinkie-promise-2.0.1"
sources."pluralize-2.0.0"
sources."prelude-ls-1.2.1"
- sources."process-nextick-args-2.0.1"
sources."rc-config-loader-3.0.0"
sources."read-pkg-1.1.0"
(sources."read-pkg-up-3.0.0" // {
@@ -110471,30 +110825,27 @@ in
sources."strip-bom-3.0.0"
];
})
- sources."readable-stream-2.3.7"
sources."regexp.prototype.flags-1.3.1"
- sources."remark-frontmatter-1.3.3"
- sources."remark-parse-5.0.0"
+ sources."remark-footnotes-3.0.0"
+ sources."remark-frontmatter-3.0.0"
+ sources."remark-gfm-1.0.0"
+ sources."remark-parse-9.0.0"
sources."repeat-string-1.6.1"
- sources."replace-ext-1.0.0"
sources."require-from-string-2.0.2"
sources."resolve-1.20.0"
sources."rimraf-2.6.3"
- sources."safe-buffer-5.1.2"
sources."semver-5.7.1"
sources."slice-ansi-0.0.4"
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."spdx-license-ids-3.0.9"
sources."sprintf-js-1.0.3"
- sources."state-toggle-1.0.3"
(sources."string-width-1.0.2" // {
dependencies = [
sources."strip-ansi-3.0.1"
];
})
- sources."string_decoder-1.1.1"
(sources."strip-ansi-6.0.0" // {
dependencies = [
sources."ansi-regex-5.0.0"
@@ -110513,31 +110864,22 @@ in
})
sources."text-table-0.2.0"
sources."traverse-0.6.6"
- sources."trim-0.0.1"
- sources."trim-trailing-lines-1.1.4"
sources."trough-1.0.5"
sources."try-resolve-1.0.1"
sources."type-check-0.4.0"
- sources."typedarray-0.0.6"
- sources."unherit-1.1.3"
- sources."unified-6.2.0"
+ sources."unified-9.2.1"
sources."unique-concat-0.2.2"
- sources."unist-util-is-3.0.0"
- sources."unist-util-remove-position-1.1.4"
- sources."unist-util-stringify-position-1.1.2"
- sources."unist-util-visit-1.4.1"
- sources."unist-util-visit-parents-2.1.2"
- sources."util-deprecate-1.0.2"
+ sources."unist-util-is-4.1.0"
+ sources."unist-util-stringify-position-2.0.3"
+ sources."unist-util-visit-parents-3.1.1"
sources."validate-npm-package-license-3.0.4"
- sources."vfile-2.3.0"
- sources."vfile-location-2.0.6"
- sources."vfile-message-1.1.1"
+ sources."vfile-4.2.1"
+ sources."vfile-message-2.0.4"
sources."word-wrap-1.2.3"
sources."wrappy-1.0.2"
sources."write-1.0.3"
- sources."x-is-string-0.1.0"
sources."xml-escape-1.1.0"
- sources."xtend-4.0.2"
+ sources."zwitch-1.0.5"
];
buildInputs = globalBuildInputs;
meta = {
@@ -110558,7 +110900,7 @@ in
sha1 = "9139c65b8da891c983b368a50a286338cd76777a";
};
dependencies = [
- sources."@textlint/ast-node-types-4.4.2"
+ sources."@textlint/ast-node-types-4.4.3"
sources."txt-to-ast-3.0.3"
];
buildInputs = globalBuildInputs;
@@ -110610,18 +110952,18 @@ in
};
dependencies = [
sources."@babel/code-frame-7.12.13"
- sources."@babel/helper-validator-identifier-7.12.11"
- sources."@babel/highlight-7.13.10"
+ sources."@babel/helper-validator-identifier-7.14.0"
+ sources."@babel/highlight-7.14.0"
sources."@sindresorhus/is-0.14.0"
sources."@szmarczak/http-timer-1.1.2"
- sources."@textlint/ast-node-types-4.4.2"
- sources."@textlint/types-1.5.4"
+ sources."@textlint/ast-node-types-4.4.3"
+ sources."@textlint/types-1.5.5"
sources."@types/hast-2.3.1"
sources."@types/minimist-1.2.1"
sources."@types/normalize-package-data-2.4.0"
sources."@types/parse5-5.0.3"
sources."@types/unist-2.0.3"
- sources."acorn-8.2.1"
+ sources."acorn-8.2.4"
sources."acorn-jsx-5.3.1"
sources."alex-9.1.0"
(sources."ansi-align-3.0.0" // {
@@ -110721,7 +111063,7 @@ in
})
sources."git-diff-tree-1.1.0"
sources."git-spawned-stream-1.0.1"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
(sources."global-dirs-2.1.0" // {
dependencies = [
sources."ini-1.3.7"
@@ -110758,7 +111100,7 @@ in
sources."is-arrayish-0.2.1"
sources."is-buffer-2.0.5"
sources."is-ci-2.0.0"
- sources."is-core-module-2.3.0"
+ sources."is-core-module-2.4.0"
sources."is-decimal-1.0.4"
sources."is-empty-1.2.0"
sources."is-fullwidth-code-point-2.0.0"
@@ -110831,7 +111173,7 @@ in
sources."nlcst-search-2.0.0"
sources."nlcst-to-string-2.0.4"
sources."normalize-package-data-2.5.0"
- sources."normalize-url-4.5.0"
+ sources."normalize-url-4.5.1"
sources."object-keys-1.1.1"
sources."once-1.4.0"
sources."p-cancelable-1.1.0"
@@ -110850,7 +111192,7 @@ in
sources."parse5-6.0.1"
sources."path-exists-4.0.0"
sources."path-is-absolute-1.0.1"
- sources."path-parse-1.0.6"
+ sources."path-parse-1.0.7"
sources."pause-stream-0.0.11"
sources."pluralize-8.0.0"
sources."prepend-http-2.0.0"
@@ -110914,7 +111256,7 @@ in
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."spdx-license-ids-3.0.9"
sources."split-0.2.10"
(sources."split-transform-stream-0.1.1" // {
dependencies = [
@@ -110943,7 +111285,7 @@ in
sources."structured-source-3.0.2"
sources."supports-color-5.5.0"
sources."term-size-2.2.1"
- (sources."textlint-rule-helper-2.1.1" // {
+ (sources."textlint-rule-helper-2.2.0" // {
dependencies = [
sources."unist-util-is-3.0.0"
sources."unist-util-visit-1.4.1"
@@ -110960,7 +111302,7 @@ in
sources."to-readable-stream-1.0.0"
sources."to-vfile-6.1.0"
sources."trim-0.0.1"
- sources."trim-newlines-3.0.0"
+ sources."trim-newlines-3.0.1"
sources."trim-trailing-lines-1.1.4"
sources."trough-1.0.5"
sources."type-fest-0.13.1"
@@ -111125,7 +111467,7 @@ in
sha512 = "t4twAgEZWWMhIYH3xURZr/A1EcAUKiC10/N0EU6RG+ZBa9+FB5HDhMdQMS5wHqEI1FopWHTYYv/sC2PGEtvyLg==";
};
dependencies = [
- sources."@textlint/ast-node-types-4.4.2"
+ sources."@textlint/ast-node-types-4.4.3"
sources."@types/structured-source-3.0.0"
sources."@types/unist-2.0.3"
sources."bail-1.0.5"
@@ -111147,7 +111489,7 @@ in
sources."readable-stream-3.6.0"
sources."rehype-parse-6.0.2"
sources."safe-buffer-5.2.1"
- sources."sentence-splitter-3.2.1"
+ sources."sentence-splitter-3.2.2"
sources."space-separated-tokens-1.1.5"
sources."string_decoder-1.3.0"
sources."structured-source-3.0.2"
@@ -111183,8 +111525,8 @@ in
sha512 = "HydBbkWjnMn4KrnlpnusY1BGjIG+64UySxRCvRphUAIiuJL2nbkdrIIiOjwfQhllKUa7Sf33bs6RAcbEWjZVfg==";
};
dependencies = [
- sources."@textlint/ast-node-types-4.4.2"
- sources."@textlint/types-1.5.4"
+ sources."@textlint/ast-node-types-4.4.3"
+ sources."@textlint/types-1.5.5"
sources."boundary-1.0.1"
sources."buffer-from-1.1.1"
sources."concat-stream-2.0.0"
@@ -111193,10 +111535,10 @@ in
sources."object_values-0.1.2"
sources."readable-stream-3.6.0"
sources."safe-buffer-5.2.1"
- sources."sentence-splitter-3.2.1"
+ sources."sentence-splitter-3.2.2"
sources."string_decoder-1.3.0"
sources."structured-source-3.0.2"
- sources."textlint-rule-helper-2.1.1"
+ sources."textlint-rule-helper-2.2.0"
sources."typedarray-0.0.6"
sources."unist-util-is-3.0.0"
sources."unist-util-visit-1.4.1"
@@ -111228,23 +111570,23 @@ in
sources."define-properties-1.1.3"
sources."emoji-regex-6.5.1"
sources."end-with-1.0.2"
- sources."es-abstract-1.18.0"
+ sources."es-abstract-1.18.3"
sources."es-to-primitive-1.2.1"
sources."function-bind-1.1.1"
sources."get-intrinsic-1.1.1"
sources."has-1.0.3"
sources."has-bigints-1.0.1"
sources."has-symbols-1.0.2"
- sources."is-bigint-1.0.1"
- sources."is-boolean-object-1.1.0"
+ sources."is-bigint-1.0.2"
+ sources."is-boolean-object-1.1.1"
sources."is-callable-1.2.3"
- sources."is-date-object-1.0.2"
+ sources."is-date-object-1.0.4"
sources."is-negative-zero-2.0.1"
- sources."is-number-object-1.0.4"
- sources."is-regex-1.1.2"
- sources."is-string-1.0.5"
- sources."is-symbol-1.0.3"
- sources."object-inspect-1.10.2"
+ sources."is-number-object-1.0.5"
+ sources."is-regex-1.1.3"
+ sources."is-string-1.0.6"
+ sources."is-symbol-1.0.4"
+ sources."object-inspect-1.10.3"
sources."object-keys-1.1.1"
sources."object.assign-4.1.2"
sources."string.prototype.trimend-1.0.4"
@@ -111271,13 +111613,13 @@ in
sha512 = "UW7nWrqBUHfz/sRLTFo40BNjwXOiXSHg00TJuYY4GVDQtsWRLyAsOnXSBqClP4i6wl7ejMBeYmB5mfllYAYMgA==";
};
dependencies = [
- sources."@textlint/ast-node-types-4.4.2"
- sources."@textlint/types-1.5.4"
+ sources."@textlint/ast-node-types-4.4.3"
+ sources."@textlint/types-1.5.5"
sources."boundary-1.0.1"
sources."lodash-4.17.21"
sources."split-lines-2.1.0"
sources."structured-source-3.0.2"
- sources."textlint-rule-helper-2.1.1"
+ sources."textlint-rule-helper-2.2.0"
sources."unist-util-is-3.0.0"
sources."unist-util-visit-1.4.1"
sources."unist-util-visit-parents-2.1.2"
@@ -111301,13 +111643,13 @@ in
sha512 = "VW+ea4ByLPddSUqoFkVVJF8zWnO8kqKwvC681wGFAjI4CYz9WhjEQH1ikhoEHXnd5AFXNArcjyoa8hoihrXy0w==";
};
dependencies = [
- sources."@textlint/ast-node-types-4.4.2"
- sources."@textlint/types-1.5.4"
+ sources."@textlint/ast-node-types-4.4.3"
+ sources."@textlint/types-1.5.5"
sources."boundary-1.0.1"
sources."lodash-4.17.21"
sources."strip-json-comments-3.1.1"
sources."structured-source-3.0.2"
- sources."textlint-rule-helper-2.1.1"
+ sources."textlint-rule-helper-2.2.0"
sources."unist-util-is-3.0.0"
sources."unist-util-visit-1.4.1"
sources."unist-util-visit-parents-2.1.2"
@@ -111334,24 +111676,24 @@ in
sources."array-includes-3.1.3"
sources."call-bind-1.0.2"
sources."define-properties-1.1.3"
- sources."es-abstract-1.18.0"
+ sources."es-abstract-1.18.3"
sources."es-to-primitive-1.2.1"
sources."function-bind-1.1.1"
sources."get-intrinsic-1.1.1"
sources."has-1.0.3"
sources."has-bigints-1.0.1"
sources."has-symbols-1.0.2"
- sources."is-bigint-1.0.1"
- sources."is-boolean-object-1.1.0"
+ sources."is-bigint-1.0.2"
+ sources."is-boolean-object-1.1.1"
sources."is-callable-1.2.3"
sources."is-capitalized-1.0.0"
- sources."is-date-object-1.0.2"
+ sources."is-date-object-1.0.4"
sources."is-negative-zero-2.0.1"
- sources."is-number-object-1.0.4"
- sources."is-regex-1.1.2"
- sources."is-string-1.0.5"
- sources."is-symbol-1.0.3"
- sources."object-inspect-1.10.2"
+ sources."is-number-object-1.0.5"
+ sources."is-regex-1.1.3"
+ sources."is-string-1.0.6"
+ sources."is-symbol-1.0.4"
+ sources."object-inspect-1.10.3"
sources."object-keys-1.1.1"
sources."object.assign-4.1.2"
sources."string.prototype.trimend-1.0.4"
@@ -111378,8 +111720,8 @@ in
sha1 = "3c79b04091319d4e8be5fb442c596bf500e8493e";
};
dependencies = [
- sources."@textlint/ast-node-types-4.4.2"
- sources."@textlint/types-1.5.4"
+ sources."@textlint/ast-node-types-4.4.3"
+ sources."@textlint/types-1.5.5"
sources."adverb-where-0.0.9"
sources."boundary-1.0.1"
sources."call-bind-1.0.2"
@@ -111394,7 +111736,7 @@ in
sources."object.assign-4.1.2"
sources."passive-voice-0.1.0"
sources."structured-source-3.0.2"
- sources."textlint-rule-helper-2.1.1"
+ sources."textlint-rule-helper-2.2.0"
sources."too-wordy-0.1.6"
sources."unist-util-is-3.0.0"
sources."unist-util-visit-1.4.1"
@@ -111428,7 +111770,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.41"
+ sources."@types/node-15.6.1"
sources."@types/responselike-1.0.0"
sources."abbrev-1.1.1"
sources."abstract-logging-2.0.1"
@@ -111504,7 +111846,7 @@ in
sources."content-type-1.0.4"
sources."cookie-0.4.0"
sources."cookie-signature-1.0.6"
- sources."core-js-3.11.0"
+ sources."core-js-3.13.0"
sources."core-util-is-1.0.2"
sources."css-select-1.2.0"
sources."css-what-2.1.3"
@@ -111579,7 +111921,7 @@ in
sources."gauge-2.7.4"
sources."get-stream-5.2.0"
sources."getpass-0.1.7"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."got-11.5.2"
sources."graceful-fs-4.2.6"
sources."grapheme-splitter-1.0.4"
@@ -111607,7 +111949,7 @@ in
})
sources."iconv-lite-0.4.24"
sources."ieee754-1.2.1"
- sources."ignore-walk-3.0.3"
+ sources."ignore-walk-3.0.4"
sources."indexof-0.0.1"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
@@ -111615,7 +111957,7 @@ in
sources."ipaddr.js-1.9.1"
(sources."irc-framework-4.9.0" // {
dependencies = [
- sources."iconv-lite-0.6.2"
+ sources."iconv-lite-0.6.3"
];
})
sources."is-fullwidth-code-point-1.0.0"
@@ -111681,7 +112023,7 @@ in
];
})
sources."nopt-4.0.3"
- sources."normalize-url-4.5.0"
+ sources."normalize-url-4.5.1"
sources."npm-bundled-1.1.2"
sources."npm-normalize-package-bin-1.0.1"
sources."npm-packlist-1.4.8"
@@ -111696,7 +112038,7 @@ in
sources."os-homedir-1.0.2"
sources."os-tmpdir-1.0.2"
sources."osenv-0.1.5"
- sources."p-cancelable-2.1.0"
+ sources."p-cancelable-2.1.1"
sources."p-finally-1.0.0"
sources."p-try-2.2.0"
(sources."package-json-6.5.0" // {
@@ -111843,7 +112185,7 @@ in
sources."wide-align-1.1.3"
sources."with-open-file-0.1.7"
sources."wrappy-1.0.2"
- sources."ws-7.4.5"
+ sources."ws-7.4.6"
sources."xmlhttprequest-ssl-1.5.5"
sources."yallist-3.1.1"
sources."yarn-1.22.4"
@@ -111862,10 +112204,10 @@ in
three = nodeEnv.buildNodePackage {
name = "three";
packageName = "three";
- version = "0.128.0";
+ version = "0.129.0";
src = fetchurl {
- url = "https://registry.npmjs.org/three/-/three-0.128.0.tgz";
- sha512 = "i0ap/E+OaSfzw7bD1TtYnPo3VEplkl70WX5fZqZnfZsE3k3aSFudqrrC9ldFZfYFkn1zwDmBcdGfiIm/hnbyZA==";
+ url = "https://registry.npmjs.org/three/-/three-0.129.0.tgz";
+ sha512 = "wiWio1yVRg2Oj6WEWsTHQo5eSzYpEwSBtPSi3OofNpvFbf26HFfb9kw4FZJNjII4qxzp0b1xLB11+tKkBGB1ZA==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -111898,16 +112240,16 @@ in
titanium = nodeEnv.buildNodePackage {
name = "titanium";
packageName = "titanium";
- version = "5.3.0";
+ version = "5.3.2";
src = fetchurl {
- url = "https://registry.npmjs.org/titanium/-/titanium-5.3.0.tgz";
- sha512 = "j+Bk1jWH4Ki/7hfizhG6MvaZMEeHNdaJnzjC50CUJThfDkxr8nN1rn7smaX9Wg5W1iiBeBQyJreTExZloTRCJw==";
+ url = "https://registry.npmjs.org/titanium/-/titanium-5.3.2.tgz";
+ sha512 = "fVpcAtANFCRTadfJ87uMKb41FpWeCikJkoFkFdRzCOQ/cA/9OgSbi2P08otCCyY2oAjLmRO5eOHZAeud+eKwzA==";
};
dependencies = [
sources."ajv-6.12.6"
sources."asn1-0.2.4"
sources."assert-plus-1.0.0"
- sources."async-2.6.3"
+ sources."async-3.2.0"
sources."asynckit-0.4.0"
sources."at-least-node-1.0.0"
sources."aws-sign2-0.7.0"
@@ -111941,7 +112283,7 @@ in
sources."fs-extra-9.0.1"
sources."fs.realpath-1.0.0"
sources."getpass-0.1.7"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."graceful-fs-4.2.6"
sources."har-schema-2.0.0"
sources."har-validator-5.1.5"
@@ -111962,16 +112304,13 @@ in
})
sources."jsprim-1.4.1"
sources."keypress-0.2.1"
- sources."lodash-4.17.21"
sources."lru-cache-6.0.0"
sources."mime-db-1.47.0"
sources."mime-types-2.1.30"
sources."minimatch-3.0.4"
- (sources."node-appc-1.1.2" // {
- dependencies = [
- sources."async-3.2.0"
- ];
- })
+ sources."minimist-1.2.5"
+ sources."mkdirp-0.5.5"
+ sources."node-appc-1.1.2"
sources."oauth-sign-0.9.0"
sources."once-1.4.0"
sources."path-is-absolute-1.0.1"
@@ -111992,7 +112331,7 @@ in
sources."sprintf-0.1.5"
sources."sshpk-1.16.1"
sources."stack-trace-0.0.10"
- sources."temp-0.9.1"
+ sources."temp-0.9.4"
sources."tough-cookie-2.5.0"
sources."tunnel-agent-0.6.0"
sources."tweetnacl-0.14.5"
@@ -112024,10 +112363,10 @@ in
triton = nodeEnv.buildNodePackage {
name = "triton";
packageName = "triton";
- version = "7.14.0";
+ version = "7.15.0";
src = fetchurl {
- url = "https://registry.npmjs.org/triton/-/triton-7.14.0.tgz";
- sha512 = "2oIu0p1QjDYdNp3fI0gTxJvwOmzcP76hMwCn4KlqfFxDihBghwDmvWhGU3PPn4zNf3yBDJ1xlsxY14WHqgcV7g==";
+ url = "https://registry.npmjs.org/triton/-/triton-7.15.0.tgz";
+ sha512 = "P0toU5OT3VdKKkJSrjLrFZFgo+0UlPliZ2TDLzF/brfOaPwfousrwJrVfmxtMPO3gk0Dpokz/gfJc7CO9ENeTg==";
};
dependencies = [
sources."asn1-0.2.4"
@@ -112240,7 +112579,7 @@ in
sources."diff-2.2.3"
sources."escape-string-regexp-1.0.5"
sources."fs.realpath-1.0.0"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."has-ansi-2.0.0"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
@@ -112294,10 +112633,10 @@ in
typescript = nodeEnv.buildNodePackage {
name = "typescript";
packageName = "typescript";
- version = "4.2.4";
+ version = "4.3.2";
src = fetchurl {
- url = "https://registry.npmjs.org/typescript/-/typescript-4.2.4.tgz";
- sha512 = "V+evlYHZnQkaz8TRBuxTA92yZBPotr5H+WhQ7bD3hZUndx5tGOa1fuCgeSjxAzM1RiN5IzvadIXTVefuuwZCRg==";
+ url = "https://registry.npmjs.org/typescript/-/typescript-4.3.2.tgz";
+ sha512 = "zZ4hShnmnoVnAHpVHWpTcxdv7dWP60S2FsydQLV8V5PbS3FifjWFFRiHSWpDJahly88PRyV5teTSLoq4eG7mKw==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -112349,10 +112688,10 @@ in
uglify-js = nodeEnv.buildNodePackage {
name = "uglify-js";
packageName = "uglify-js";
- version = "3.13.4";
+ version = "3.13.8";
src = fetchurl {
- url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.13.4.tgz";
- sha512 = "kv7fCkIXyQIilD5/yQy8O+uagsYIOt5cZvs890W40/e/rvjMSzJw81o9Bg0tkURxzZBROtDQhW2LFjOGoK3RZw==";
+ url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.13.8.tgz";
+ sha512 = "PvFLMFIQHfIjFFlvAch69U2IvIxK9TNzNWt1SxZGp9JZ/v70yvqIQuiJeVPPtUMOzoNt+aNRDk4wgxb34wvEqA==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -112385,20 +112724,20 @@ in
ungit = nodeEnv.buildNodePackage {
name = "ungit";
packageName = "ungit";
- version = "1.5.16";
+ version = "1.5.18";
src = fetchurl {
- url = "https://registry.npmjs.org/ungit/-/ungit-1.5.16.tgz";
- sha512 = "Hv5QiC0qMJChmDf6s3qwwclL38XQUKVInJaJZiNuIHh6vvO9hjkeoUb7djmGb2F2xxVuU7aOtpbdizfwunzU4A==";
+ url = "https://registry.npmjs.org/ungit/-/ungit-1.5.18.tgz";
+ sha512 = "E8fuVzs7KhfqWyk+MQ+LqP2A0IXFW643Xu2BJCw4iLpmFBoKHl+7AUZ5q4o2qefe1DFoAMijmbFsxbIcmDuvWg==";
};
dependencies = [
sources."@dabh/diagnostics-2.0.2"
- sources."@primer/octicons-12.1.0"
+ sources."@primer/octicons-14.1.0"
sources."@sindresorhus/is-0.14.0"
sources."@szmarczak/http-timer-1.1.2"
sources."@types/component-emitter-1.2.10"
sources."@types/cookie-0.4.0"
sources."@types/cors-2.8.10"
- sources."@types/node-14.14.41"
+ sources."@types/node-14.17.1"
sources."abbrev-1.1.1"
sources."accepts-1.3.7"
sources."ansi-regex-5.0.0"
@@ -112451,7 +112790,7 @@ in
sources."depd-1.1.2"
sources."destroy-1.0.4"
sources."diff-5.0.0"
- sources."diff2html-3.4.3"
+ sources."diff2html-3.4.4"
sources."dnd-page-scroll-0.0.4"
sources."duplexer3-0.1.4"
sources."ee-first-1.1.1"
@@ -112459,7 +112798,7 @@ in
sources."enabled-2.0.0"
sources."encodeurl-1.0.2"
sources."end-of-stream-1.4.4"
- (sources."engine.io-5.0.0" // {
+ (sources."engine.io-5.1.1" // {
dependencies = [
sources."cookie-0.4.1"
sources."debug-4.3.2"
@@ -112472,10 +112811,11 @@ in
sources."etag-1.8.1"
sources."eve-0.5.4"
sources."express-4.17.1"
- (sources."express-session-1.17.1" // {
+ (sources."express-session-1.17.2" // {
dependencies = [
+ sources."cookie-0.4.1"
sources."depd-2.0.0"
- sources."safe-buffer-5.2.0"
+ sources."safe-buffer-5.2.1"
];
})
sources."fast-safe-stringify-2.0.7"
@@ -112488,7 +112828,7 @@ in
sources."get-caller-file-2.0.5"
sources."get-stream-4.1.0"
sources."getmac-5.17.0"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."got-9.6.0"
sources."hasher-1.2.0"
(sources."hogan.js-3.0.2" // {
@@ -112548,14 +112888,14 @@ in
sources."negotiator-0.6.2"
sources."node-cache-5.1.2"
sources."nopt-1.0.10"
- sources."normalize-url-4.5.0"
+ sources."normalize-url-4.5.1"
sources."nprogress-0.2.0"
sources."object-assign-4.1.1"
sources."on-finished-2.3.0"
sources."on-headers-1.0.2"
sources."once-1.4.0"
sources."one-time-1.0.0"
- sources."open-8.0.6"
+ sources."open-8.1.0"
sources."p-cancelable-1.1.0"
(sources."package-json-6.5.0" // {
dependencies = [
@@ -112604,13 +112944,13 @@ in
sources."signals-1.0.0"
sources."simple-swizzle-0.2.2"
sources."snapsvg-0.5.1"
- (sources."socket.io-4.0.1" // {
+ (sources."socket.io-4.1.2" // {
dependencies = [
sources."debug-4.3.2"
sources."ms-2.1.2"
];
})
- sources."socket.io-adapter-2.2.0"
+ sources."socket.io-adapter-2.3.1"
(sources."socket.io-parser-4.0.4" // {
dependencies = [
sources."debug-4.3.2"
@@ -112653,10 +112993,10 @@ in
})
sources."wrap-ansi-7.0.0"
sources."wrappy-1.0.2"
- sources."ws-7.4.5"
+ sources."ws-7.4.6"
sources."y18n-5.0.8"
sources."yallist-2.1.2"
- sources."yargs-16.2.0"
+ sources."yargs-17.0.1"
sources."yargs-parser-20.2.7"
];
buildInputs = globalBuildInputs;
@@ -112678,15 +113018,17 @@ in
sha512 = "dp7CncooBn6zSacyoSRdlm+fS1mQ6PsCT2pFILUgsDzn3e/e56iQA2mjmob8DOqM1n/0xbVziVelH31M8fcYXw==";
};
dependencies = [
+ sources."@mapbox/node-pre-gyp-1.0.5"
sources."abbrev-1.1.1"
+ sources."agent-base-6.0.2"
sources."ansi-regex-2.1.1"
sources."ansi-styles-4.3.0"
sources."aproba-1.2.0"
sources."are-we-there-yet-1.1.5"
sources."balanced-match-1.0.2"
sources."brace-expansion-1.1.11"
- sources."canvas-2.7.0"
- sources."chownr-1.1.4"
+ sources."canvas-2.8.0"
+ sources."chownr-2.0.0"
(sources."cliui-7.0.4" // {
dependencies = [
sources."ansi-regex-5.0.0"
@@ -112720,66 +113062,59 @@ in
sources."d3-time-2.1.1"
sources."d3-time-format-3.0.0"
sources."d3-timer-2.0.0"
- sources."debug-3.2.7"
+ sources."debug-4.3.2"
sources."decompress-response-4.2.1"
- sources."deep-extend-0.6.0"
sources."delaunator-4.0.1"
sources."delegates-1.0.0"
sources."detect-libc-1.0.3"
sources."emoji-regex-8.0.0"
sources."escalade-3.1.1"
- sources."fs-minipass-1.2.7"
+ sources."fs-minipass-2.1.0"
sources."fs.realpath-1.0.0"
sources."function-bind-1.1.1"
sources."gauge-2.7.4"
sources."get-caller-file-2.0.5"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."has-1.0.3"
sources."has-unicode-2.0.1"
+ sources."https-proxy-agent-5.0.0"
sources."iconv-lite-0.4.24"
- sources."ignore-walk-3.0.3"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
- sources."ini-1.3.8"
sources."internmap-1.0.1"
- sources."is-core-module-2.3.0"
+ sources."is-core-module-2.4.0"
sources."is-fullwidth-code-point-1.0.0"
sources."isarray-1.0.0"
+ sources."lru-cache-6.0.0"
+ (sources."make-dir-3.1.0" // {
+ dependencies = [
+ sources."semver-6.3.0"
+ ];
+ })
sources."mimic-response-2.1.0"
sources."minimatch-3.0.4"
- sources."minimist-1.2.5"
- sources."minipass-2.9.0"
- sources."minizlib-1.3.3"
- sources."mkdirp-0.5.5"
- sources."ms-2.1.3"
+ sources."minipass-3.1.3"
+ sources."minizlib-2.1.2"
+ sources."mkdirp-1.0.4"
+ sources."ms-2.1.2"
sources."nan-2.14.2"
- sources."needle-2.6.0"
sources."node-fetch-2.6.1"
- sources."node-pre-gyp-0.15.0"
- sources."nopt-4.0.3"
- sources."npm-bundled-1.1.2"
- sources."npm-normalize-package-bin-1.0.1"
- sources."npm-packlist-1.4.8"
+ sources."nopt-5.0.0"
sources."npmlog-4.1.2"
sources."number-is-nan-1.0.1"
sources."object-assign-4.1.1"
sources."once-1.4.0"
- sources."os-homedir-1.0.2"
- sources."os-tmpdir-1.0.2"
- sources."osenv-0.1.5"
sources."path-is-absolute-1.0.1"
- sources."path-parse-1.0.6"
+ sources."path-parse-1.0.7"
sources."process-nextick-args-2.0.1"
- sources."rc-1.2.8"
sources."readable-stream-2.3.7"
sources."require-directory-2.1.1"
sources."resolve-1.20.0"
- sources."rimraf-2.7.1"
+ sources."rimraf-3.0.2"
sources."rw-1.3.3"
sources."safe-buffer-5.1.2"
sources."safer-buffer-2.1.2"
- sources."sax-1.2.4"
- sources."semver-5.7.1"
+ sources."semver-7.3.5"
sources."set-blocking-2.0.0"
sources."signal-exit-3.0.3"
sources."simple-concat-1.0.1"
@@ -112787,8 +113122,7 @@ in
sources."string-width-1.0.2"
sources."string_decoder-1.1.1"
sources."strip-ansi-3.0.1"
- sources."strip-json-comments-2.0.1"
- sources."tar-4.4.13"
+ sources."tar-6.1.0"
sources."topojson-client-3.1.0"
sources."util-deprecate-1.0.2"
sources."vega-5.20.2"
@@ -112832,7 +113166,7 @@ in
})
sources."wrappy-1.0.2"
sources."y18n-5.0.8"
- sources."yallist-3.1.1"
+ sources."yallist-4.0.0"
(sources."yargs-16.2.0" // {
dependencies = [
sources."ansi-regex-5.0.0"
@@ -112863,7 +113197,7 @@ in
};
dependencies = [
sources."@types/clone-2.1.0"
- sources."@types/fast-json-stable-stringify-2.0.0"
+ sources."@types/fast-json-stable-stringify-2.1.0"
sources."ansi-regex-5.0.0"
sources."ansi-styles-4.3.0"
sources."array-flat-polyfill-1.0.1"
@@ -112903,10 +113237,10 @@ in
vim-language-server = nodeEnv.buildNodePackage {
name = "vim-language-server";
packageName = "vim-language-server";
- version = "2.2.2";
+ version = "2.2.3";
src = fetchurl {
- url = "https://registry.npmjs.org/vim-language-server/-/vim-language-server-2.2.2.tgz";
- sha512 = "kM1XAb7NE+jwZ4ClyHMUWvd/0eDBSW8fBGaVinuRDgqMvavTrlo7SUlsgHzZhlTjTk+ZaDMfyVQBZUVNytprkg==";
+ url = "https://registry.npmjs.org/vim-language-server/-/vim-language-server-2.2.3.tgz";
+ sha512 = "dUaWfvqNM0IVwinwYHv6prKYEw4o/ayZtvceFBKdMCf91uYzKt64MLqD8ZA597JLheul/oEV1XKgpzLLPcfVVw==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -112928,13 +113262,14 @@ in
};
dependencies = [
sources."@babel/code-frame-7.12.11"
- sources."@babel/helper-validator-identifier-7.12.11"
- (sources."@babel/highlight-7.13.10" // {
+ sources."@babel/helper-validator-identifier-7.14.0"
+ (sources."@babel/highlight-7.14.0" // {
dependencies = [
sources."chalk-2.4.2"
+ sources."escape-string-regexp-1.0.5"
];
})
- (sources."@eslint/eslintrc-0.4.0" // {
+ (sources."@eslint/eslintrc-0.4.1" // {
dependencies = [
sources."globals-12.4.0"
];
@@ -112971,8 +113306,8 @@ in
sources."doctrine-3.0.0"
sources."emoji-regex-8.0.0"
sources."enquirer-2.3.6"
- sources."escape-string-regexp-1.0.5"
- sources."eslint-7.25.0"
+ sources."escape-string-regexp-4.0.0"
+ sources."eslint-7.27.0"
sources."eslint-plugin-vue-7.9.0"
sources."eslint-scope-5.1.1"
(sources."eslint-utils-2.1.0" // {
@@ -112980,7 +113315,7 @@ in
sources."eslint-visitor-keys-1.3.0"
];
})
- sources."eslint-visitor-keys-2.0.0"
+ sources."eslint-visitor-keys-2.1.0"
(sources."espree-7.3.1" // {
dependencies = [
sources."eslint-visitor-keys-1.3.0"
@@ -113008,9 +113343,9 @@ in
sources."fs.realpath-1.0.0"
sources."function-bind-1.1.1"
sources."functional-red-black-tree-1.0.1"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."glob-parent-5.1.2"
- (sources."globals-13.8.0" // {
+ (sources."globals-13.9.0" // {
dependencies = [
sources."type-fest-0.20.2"
];
@@ -113022,7 +113357,7 @@ in
sources."imurmurhash-0.1.4"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
- sources."is-core-module-2.3.0"
+ sources."is-core-module-2.4.0"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-3.0.0"
sources."is-glob-4.0.1"
@@ -113034,7 +113369,7 @@ in
sources."levn-0.4.1"
sources."lodash-4.17.21"
sources."lodash.clonedeep-4.5.0"
- sources."lodash.flatten-4.4.0"
+ sources."lodash.merge-4.6.2"
sources."lodash.truncate-4.4.2"
sources."lru-cache-6.0.0"
sources."minimatch-3.0.4"
@@ -113047,9 +113382,9 @@ in
sources."parent-module-1.0.1"
sources."path-is-absolute-1.0.1"
sources."path-key-3.1.1"
- sources."path-parse-1.0.6"
+ sources."path-parse-1.0.7"
sources."prelude-ls-1.2.1"
- sources."prettier-2.2.1"
+ sources."prettier-2.3.0"
sources."progress-2.0.3"
sources."punycode-2.1.1"
sources."regexpp-3.1.0"
@@ -113072,9 +113407,9 @@ in
sources."strip-ansi-6.0.0"
sources."strip-json-comments-3.1.1"
sources."supports-color-5.5.0"
- (sources."table-6.5.1" // {
+ (sources."table-6.7.1" // {
dependencies = [
- sources."ajv-8.1.0"
+ sources."ajv-8.5.0"
sources."json-schema-traverse-1.0.0"
];
})
@@ -113083,13 +113418,14 @@ in
(sources."tslint-6.1.3" // {
dependencies = [
sources."chalk-2.4.2"
+ sources."escape-string-regexp-1.0.5"
sources."semver-5.7.1"
];
})
sources."tsutils-2.29.0"
sources."type-check-0.4.0"
sources."type-fest-0.8.1"
- sources."typescript-4.2.4"
+ sources."typescript-4.3.2"
sources."uri-js-4.4.1"
sources."v8-compile-cache-2.3.0"
(sources."vue-eslint-parser-7.6.0" // {
@@ -113201,7 +113537,7 @@ in
sources."minimatch-3.0.4"
sources."ms-2.0.0"
sources."request-light-0.4.0"
- (sources."vscode-json-languageservice-4.1.0" // {
+ (sources."vscode-json-languageservice-4.1.4" // {
dependencies = [
sources."vscode-nls-5.0.0"
];
@@ -113283,7 +113619,7 @@ in
sources."@types/json5-0.0.30"
sources."@types/mocha-7.0.2"
sources."@types/node-8.10.66"
- sources."@types/vscode-1.55.0"
+ sources."@types/vscode-1.56.0"
sources."@types/yauzl-2.9.1"
sources."@webassemblyjs/ast-1.9.0"
sources."@webassemblyjs/floating-point-hex-parser-1.9.0"
@@ -113333,7 +113669,7 @@ in
sources."assign-symbols-1.0.0"
sources."async-each-1.0.3"
sources."atob-2.1.2"
- sources."azure-devops-node-api-7.2.0"
+ sources."azure-devops-node-api-10.2.2"
sources."balanced-match-1.0.2"
(sources."base-0.11.2" // {
dependencies = [
@@ -113374,7 +113710,7 @@ in
sources."builtin-status-codes-3.0.0"
(sources."cacache-12.0.4" // {
dependencies = [
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
];
})
sources."cache-base-1.0.1"
@@ -113385,7 +113721,7 @@ in
sources."supports-color-5.5.0"
];
})
- sources."cheerio-1.0.0-rc.6"
+ sources."cheerio-1.0.0-rc.9"
sources."cheerio-select-1.4.0"
sources."chokidar-3.3.0"
sources."chownr-1.1.4"
@@ -113445,7 +113781,7 @@ in
sources."cross-spawn-6.0.5"
sources."crypto-browserify-3.12.0"
sources."css-select-4.1.2"
- sources."css-what-5.0.0"
+ sources."css-what-5.0.1"
sources."cyclist-1.0.1"
sources."debug-3.2.6"
sources."decamelize-1.2.0"
@@ -113461,7 +113797,7 @@ in
sources."bn.js-4.12.0"
];
})
- sources."dom-serializer-1.3.1"
+ sources."dom-serializer-1.3.2"
sources."domain-browser-1.2.0"
sources."domelementtype-2.2.0"
sources."domhandler-4.2.0"
@@ -113491,7 +113827,7 @@ in
})
sources."entities-2.2.0"
sources."errno-0.1.8"
- (sources."es-abstract-1.18.0" // {
+ (sources."es-abstract-1.18.3" // {
dependencies = [
sources."object.assign-4.1.2"
];
@@ -113623,13 +113959,13 @@ in
sources."ini-1.3.8"
sources."interpret-1.4.0"
sources."is-accessor-descriptor-1.0.0"
- sources."is-bigint-1.0.1"
+ sources."is-bigint-1.0.2"
sources."is-binary-path-2.1.0"
- sources."is-boolean-object-1.1.0"
+ sources."is-boolean-object-1.1.1"
sources."is-buffer-2.0.5"
sources."is-callable-1.2.3"
sources."is-data-descriptor-1.0.0"
- sources."is-date-object-1.0.2"
+ sources."is-date-object-1.0.4"
sources."is-descriptor-1.0.2"
sources."is-extendable-0.1.1"
sources."is-extglob-2.1.1"
@@ -113637,11 +113973,11 @@ in
sources."is-glob-4.0.1"
sources."is-negative-zero-2.0.1"
sources."is-number-7.0.0"
- sources."is-number-object-1.0.4"
+ sources."is-number-object-1.0.5"
sources."is-plain-object-2.0.4"
- sources."is-regex-1.1.2"
- sources."is-string-1.0.5"
- sources."is-symbol-1.0.3"
+ sources."is-regex-1.1.3"
+ sources."is-string-1.0.6"
+ sources."is-symbol-1.0.4"
sources."is-windows-1.0.2"
sources."is-wsl-1.1.0"
sources."isarray-0.0.1"
@@ -113755,14 +114091,13 @@ in
sources."kind-of-3.2.2"
];
})
- sources."object-inspect-1.10.2"
+ sources."object-inspect-1.10.3"
sources."object-keys-1.1.1"
sources."object-visit-1.0.1"
sources."object.assign-4.1.0"
sources."object.getownpropertydescriptors-2.1.2"
sources."object.pick-1.3.0"
sources."once-1.4.0"
- sources."os-0.1.1"
sources."os-browserify-0.3.0"
sources."os-homedir-1.0.2"
sources."os-tmpdir-1.0.2"
@@ -113791,7 +114126,7 @@ in
sources."path-key-2.0.1"
sources."pbkdf2-3.1.2"
sources."pend-1.2.0"
- sources."picomatch-2.2.3"
+ sources."picomatch-2.3.0"
sources."pify-4.0.1"
sources."pkg-dir-3.0.0"
sources."posix-character-classes-0.1.1"
@@ -113811,6 +114146,7 @@ in
];
})
sources."punycode-2.1.1"
+ sources."qs-6.10.1"
sources."querystring-0.2.0"
sources."querystring-es3-0.2.1"
sources."randombytes-2.1.0"
@@ -113852,6 +114188,7 @@ in
sources."sha.js-2.4.11"
sources."shebang-command-1.2.0"
sources."shebang-regex-1.0.0"
+ sources."side-channel-1.0.4"
(sources."snapdragon-0.8.2" // {
dependencies = [
sources."debug-2.6.9"
@@ -113966,14 +114303,15 @@ in
sources."semver-6.3.0"
];
})
+ sources."tslib-2.2.0"
sources."tty-browserify-0.0.0"
- sources."tunnel-0.0.4"
- sources."typed-rest-client-1.2.0"
+ sources."tunnel-0.0.6"
+ sources."typed-rest-client-1.8.4"
sources."typedarray-0.0.6"
sources."typescript-3.9.9"
sources."uc.micro-1.0.6"
sources."unbox-primitive-1.0.1"
- sources."underscore-1.8.3"
+ sources."underscore-1.13.1"
sources."union-value-1.0.1"
sources."unique-filename-1.1.1"
sources."unique-slug-2.0.2"
@@ -114006,7 +114344,7 @@ in
sources."util-deprecate-1.0.2"
sources."v8-compile-cache-2.3.0"
sources."vm-browserify-1.1.2"
- sources."vsce-1.87.1"
+ sources."vsce-1.88.0"
sources."vscode-debugadapter-testsupport-1.47.0"
sources."vscode-debugprotocol-1.47.0"
(sources."watchpack-1.7.5" // {
@@ -114188,7 +114526,7 @@ in
sources."get-stream-3.0.0"
sources."getpass-0.1.7"
sources."git-clone-0.1.0"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."got-6.7.1"
sources."graceful-fs-4.2.6"
sources."gray-matter-2.1.1"
@@ -114335,7 +114673,7 @@ in
sources."tslib-1.14.1"
sources."tunnel-agent-0.6.0"
sources."tweetnacl-0.14.5"
- sources."uglify-js-3.13.4"
+ sources."uglify-js-3.13.8"
sources."uid-0.0.2"
sources."unbzip2-stream-1.4.3"
sources."unyield-0.0.1"
@@ -114377,8 +114715,8 @@ in
};
dependencies = [
sources."@babel/code-frame-7.12.13"
- sources."@babel/helper-validator-identifier-7.12.11"
- sources."@babel/highlight-7.13.10"
+ sources."@babel/helper-validator-identifier-7.14.0"
+ sources."@babel/highlight-7.14.0"
sources."@emmetio/extract-abbreviation-0.1.6"
sources."@mrmlnc/readdir-enhanced-2.2.1"
sources."@nodelib/fs.stat-1.1.3"
@@ -114394,7 +114732,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.41"
+ sources."@types/node-15.6.1"
sources."@types/unist-2.0.3"
sources."@types/vfile-3.0.2"
sources."@types/vfile-message-2.0.0"
@@ -114675,7 +115013,7 @@ in
sources."get-caller-file-1.0.3"
sources."get-stream-3.0.0"
sources."get-value-2.0.6"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
(sources."glob-parent-3.1.0" // {
dependencies = [
sources."is-glob-3.1.0"
@@ -114745,7 +115083,7 @@ in
sources."is-binary-path-2.1.0"
sources."is-buffer-2.0.5"
sources."is-ci-2.0.0"
- sources."is-core-module-2.3.0"
+ sources."is-core-module-2.4.0"
sources."is-data-descriptor-1.0.0"
sources."is-decimal-1.0.4"
sources."is-descriptor-1.0.2"
@@ -114854,7 +115192,7 @@ in
sources."nopt-5.0.0"
sources."normalize-package-data-2.5.0"
sources."normalize-path-3.0.0"
- sources."normalize-url-4.5.0"
+ sources."normalize-url-4.5.1"
sources."npm-prefix-1.2.0"
sources."npm-run-path-2.0.2"
sources."number-is-nan-1.0.1"
@@ -114909,9 +115247,9 @@ in
sources."path-is-absolute-1.0.1"
sources."path-is-inside-1.0.2"
sources."path-key-2.0.1"
- sources."path-parse-1.0.6"
+ sources."path-parse-1.0.7"
sources."path-type-3.0.0"
- sources."picomatch-2.2.3"
+ sources."picomatch-2.3.0"
sources."pify-3.0.0"
sources."pinkie-2.0.4"
sources."pinkie-promise-2.0.1"
@@ -115068,7 +115406,7 @@ in
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."spdx-license-ids-3.0.9"
sources."split-string-3.1.0"
sources."sprintf-js-1.0.3"
sources."stampit-1.2.0"
@@ -115200,7 +115538,7 @@ in
sources."unist-util-inspect-4.1.4"
sources."unist-util-is-2.1.3"
sources."unist-util-modify-children-1.1.6"
- sources."unist-util-stringify-position-2.0.3"
+ sources."unist-util-stringify-position-3.0.0"
sources."unist-util-visit-1.4.1"
(sources."unist-util-visit-parents-2.1.2" // {
dependencies = [
@@ -115226,8 +115564,13 @@ in
sources."user-home-2.0.0"
sources."util-deprecate-1.0.2"
sources."validate-npm-package-license-3.0.4"
- sources."vfile-4.2.1"
- sources."vfile-message-2.0.4"
+ (sources."vfile-4.2.1" // {
+ dependencies = [
+ sources."unist-util-stringify-position-2.0.3"
+ sources."vfile-message-2.0.4"
+ ];
+ })
+ sources."vfile-message-3.0.1"
(sources."vfile-reporter-6.0.2" // {
dependencies = [
sources."ansi-regex-5.0.0"
@@ -115236,6 +115579,7 @@ in
sources."string-width-4.2.2"
sources."strip-ansi-6.0.0"
sources."supports-color-6.1.0"
+ sources."unist-util-stringify-position-2.0.3"
];
})
sources."vfile-sort-2.2.2"
@@ -115312,8 +115656,8 @@ in
};
dependencies = [
sources."@babel/code-frame-7.12.11"
- sources."@babel/helper-validator-identifier-7.12.11"
- (sources."@babel/highlight-7.13.10" // {
+ sources."@babel/helper-validator-identifier-7.14.0"
+ (sources."@babel/highlight-7.14.0" // {
dependencies = [
sources."ansi-styles-3.2.1"
sources."chalk-2.4.2"
@@ -115327,7 +115671,7 @@ in
sources."@devicefarmer/adbkit-2.11.3"
sources."@devicefarmer/adbkit-logcat-1.1.0"
sources."@devicefarmer/adbkit-monkey-1.0.1"
- (sources."@eslint/eslintrc-0.4.0" // {
+ (sources."@eslint/eslintrc-0.4.1" // {
dependencies = [
sources."debug-4.3.2"
sources."globals-12.4.0"
@@ -115338,7 +115682,7 @@ in
sources."@sindresorhus/is-0.14.0"
sources."@szmarczak/http-timer-1.1.2"
sources."@types/minimatch-3.0.4"
- sources."@types/node-14.14.41"
+ sources."@types/node-15.6.1"
sources."@types/yauzl-2.9.1"
sources."acorn-7.4.1"
sources."acorn-jsx-5.3.1"
@@ -115432,7 +115776,7 @@ in
sources."cross-spawn-7.0.3"
sources."crypto-random-string-2.0.0"
sources."css-select-4.1.2"
- sources."css-what-5.0.0"
+ sources."css-what-5.0.1"
sources."dashdash-1.14.1"
sources."debounce-1.2.0"
sources."debug-2.6.9"
@@ -115453,7 +115797,7 @@ in
];
})
sources."doctrine-3.0.0"
- sources."dom-serializer-1.3.1"
+ sources."dom-serializer-1.3.2"
sources."domelementtype-2.2.0"
sources."domhandler-4.2.0"
sources."domutils-2.6.0"
@@ -115518,7 +115862,7 @@ in
})
sources."fast-json-stable-stringify-2.1.0"
sources."fast-levenshtein-2.0.6"
- sources."fast-redact-3.0.0"
+ sources."fast-redact-3.0.1"
sources."fast-safe-stringify-2.0.7"
sources."fd-slicer-1.1.0"
sources."file-entry-cache-6.0.1"
@@ -115557,7 +115901,7 @@ in
sources."glob-parent-5.1.2"
sources."glob-to-regexp-0.4.1"
sources."global-dirs-3.0.0"
- (sources."globals-13.8.0" // {
+ (sources."globals-13.9.0" // {
dependencies = [
sources."type-fest-0.20.2"
];
@@ -115594,7 +115938,7 @@ in
sources."is-arguments-1.1.0"
sources."is-arrayish-0.2.1"
sources."is-ci-2.0.0"
- sources."is-date-object-1.0.2"
+ sources."is-date-object-1.0.4"
sources."is-docker-2.2.1"
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-3.0.0"
@@ -115604,7 +115948,7 @@ in
sources."is-npm-5.0.0"
sources."is-obj-2.0.0"
sources."is-path-inside-3.0.3"
- sources."is-regex-1.1.2"
+ sources."is-regex-1.1.3"
sources."is-relative-0.1.3"
sources."is-stream-2.0.0"
sources."is-typedarray-1.0.0"
@@ -115650,7 +115994,6 @@ in
sources."lines-and-columns-1.1.6"
sources."lodash-4.17.21"
sources."lodash.clonedeep-4.5.0"
- sources."lodash.flatten-4.4.0"
sources."lodash.includes-4.3.0"
sources."lodash.isboolean-3.0.3"
sources."lodash.isinteger-4.0.4"
@@ -115667,7 +116010,7 @@ in
];
})
sources."map-age-cleaner-0.1.3"
- sources."marky-1.2.1"
+ sources."marky-1.2.2"
sources."mem-5.1.1"
sources."merge-stream-2.0.0"
sources."mime-db-1.47.0"
@@ -115689,7 +116032,7 @@ in
})
sources."mz-2.7.0"
sources."nan-2.14.2"
- sources."nanoid-3.1.22"
+ sources."nanoid-3.1.23"
sources."natural-compare-1.4.0"
sources."natural-compare-lite-1.4.0"
sources."ncp-2.0.0"
@@ -115699,7 +116042,7 @@ in
sources."uuid-8.3.2"
];
})
- sources."normalize-url-4.5.0"
+ sources."normalize-url-4.5.1"
sources."npm-run-path-4.0.1"
sources."nth-check-2.0.0"
sources."oauth-sign-0.9.0"
@@ -115821,9 +116164,9 @@ in
sources."strip-final-newline-2.0.0"
sources."strip-json-comments-3.1.1"
sources."supports-color-7.2.0"
- (sources."table-6.5.1" // {
+ (sources."table-6.7.1" // {
dependencies = [
- sources."ajv-8.1.0"
+ sources."ajv-8.5.0"
sources."ansi-regex-5.0.0"
sources."json-schema-traverse-1.0.0"
sources."strip-ansi-6.0.0"
@@ -115897,17 +116240,17 @@ in
webpack = nodeEnv.buildNodePackage {
name = "webpack";
packageName = "webpack";
- version = "5.35.1";
+ version = "5.38.1";
src = fetchurl {
- url = "https://registry.npmjs.org/webpack/-/webpack-5.35.1.tgz";
- sha512 = "uWKYStqJ23+N6/EnMEwUjPSSKUG1tFmcuKhALEh/QXoUxwN8eb3ATNIZB38A+fO6QZ0xfc7Cu7KNV9LXNhDCsw==";
+ url = "https://registry.npmjs.org/webpack/-/webpack-5.38.1.tgz";
+ sha512 = "OqRmYD1OJbHZph6RUMD93GcCZy4Z4wC0ele4FXyYF0J6AxO1vOSuIlU1hkS/lDlR9CDYBz64MZRmdbdnFFoT2g==";
};
dependencies = [
- sources."@types/eslint-7.2.10"
+ sources."@types/eslint-7.2.12"
sources."@types/eslint-scope-3.7.0"
sources."@types/estree-0.0.47"
sources."@types/json-schema-7.0.7"
- sources."@types/node-14.14.41"
+ sources."@types/node-15.6.1"
sources."@webassemblyjs/ast-1.11.0"
sources."@webassemblyjs/floating-point-hex-parser-1.11.0"
sources."@webassemblyjs/helper-api-error-1.11.0"
@@ -115925,17 +116268,17 @@ in
sources."@webassemblyjs/wast-printer-1.11.0"
sources."@xtuc/ieee754-1.2.0"
sources."@xtuc/long-4.2.2"
- sources."acorn-8.2.1"
+ sources."acorn-8.2.4"
sources."ajv-6.12.6"
sources."ajv-keywords-3.5.2"
- sources."browserslist-4.16.5"
+ sources."browserslist-4.16.6"
sources."buffer-from-1.1.1"
- sources."caniuse-lite-1.0.30001214"
+ sources."caniuse-lite-1.0.30001230"
sources."chrome-trace-event-1.0.3"
sources."colorette-1.2.2"
sources."commander-2.20.3"
- sources."electron-to-chromium-1.3.720"
- sources."enhanced-resolve-5.8.0"
+ sources."electron-to-chromium-1.3.741"
+ sources."enhanced-resolve-5.8.2"
sources."es-module-lexer-0.4.1"
sources."escalade-3.1.1"
sources."eslint-scope-5.1.1"
@@ -115959,7 +116302,7 @@ in
sources."mime-db-1.47.0"
sources."mime-types-2.1.30"
sources."neo-async-2.6.2"
- sources."node-releases-1.1.71"
+ sources."node-releases-1.1.72"
sources."p-limit-3.1.0"
sources."punycode-2.1.1"
sources."randombytes-2.1.0"
@@ -115971,15 +116314,15 @@ in
sources."source-map-support-0.5.19"
sources."supports-color-7.2.0"
sources."tapable-2.2.0"
- (sources."terser-5.6.1" // {
+ (sources."terser-5.7.0" // {
dependencies = [
sources."source-map-0.7.3"
];
})
- sources."terser-webpack-plugin-5.1.1"
+ sources."terser-webpack-plugin-5.1.2"
sources."uri-js-4.4.1"
- sources."watchpack-2.1.1"
- sources."webpack-sources-2.2.0"
+ sources."watchpack-2.2.0"
+ sources."webpack-sources-2.3.0"
sources."yocto-queue-0.1.0"
];
buildInputs = globalBuildInputs;
@@ -115995,22 +116338,20 @@ in
webpack-cli = nodeEnv.buildNodePackage {
name = "webpack-cli";
packageName = "webpack-cli";
- version = "4.6.0";
+ version = "4.7.0";
src = fetchurl {
- url = "https://registry.npmjs.org/webpack-cli/-/webpack-cli-4.6.0.tgz";
- sha512 = "9YV+qTcGMjQFiY7Nb1kmnupvb1x40lfpj8pwdO/bom+sQiP4OBMKjHq29YQrlDWDPZO9r/qWaRRywKaRDKqBTA==";
+ url = "https://registry.npmjs.org/webpack-cli/-/webpack-cli-4.7.0.tgz";
+ sha512 = "7bKr9182/sGfjFm+xdZSwgQuFjgEcy0iCTIBxRUeteJ2Kr8/Wz0qNJX+jw60LU36jApt4nmMkep6+W5AKhok6g==";
};
dependencies = [
- sources."@discoveryjs/json-ext-0.5.2"
- sources."@webpack-cli/configtest-1.0.2"
- sources."@webpack-cli/info-1.2.3"
- sources."@webpack-cli/serve-1.3.1"
- sources."ansi-colors-4.1.1"
+ sources."@discoveryjs/json-ext-0.5.3"
+ sources."@webpack-cli/configtest-1.0.3"
+ sources."@webpack-cli/info-1.2.4"
+ sources."@webpack-cli/serve-1.4.0"
sources."clone-deep-4.0.1"
sources."colorette-1.2.2"
sources."commander-7.2.0"
sources."cross-spawn-7.0.3"
- sources."enquirer-2.3.6"
sources."envinfo-7.8.1"
sources."execa-5.0.0"
sources."fastest-levenshtein-1.0.12"
@@ -116021,7 +116362,7 @@ in
sources."human-signals-2.1.0"
sources."import-local-3.0.2"
sources."interpret-2.2.0"
- sources."is-core-module-2.3.0"
+ sources."is-core-module-2.4.0"
sources."is-plain-object-2.0.4"
sources."is-stream-2.0.0"
sources."isexe-2.0.0"
@@ -116037,7 +116378,7 @@ in
sources."p-try-2.2.0"
sources."path-exists-4.0.0"
sources."path-key-3.1.1"
- sources."path-parse-1.0.6"
+ sources."path-parse-1.0.7"
sources."pkg-dir-4.2.0"
sources."rechoir-0.7.0"
sources."resolve-1.20.0"
@@ -116056,6 +116397,7 @@ in
buildInputs = globalBuildInputs;
meta = {
description = "CLI for webpack & friends";
+ homepage = "https://github.com/webpack/webpack-cli/tree/master/packages/webpack-cli";
license = "MIT";
};
production = true;
@@ -116073,7 +116415,7 @@ in
dependencies = [
sources."@types/glob-7.1.3"
sources."@types/minimatch-3.0.4"
- sources."@types/node-14.14.41"
+ sources."@types/node-15.6.1"
sources."accepts-1.3.7"
sources."ajv-6.12.6"
sources."ajv-errors-1.0.1"
@@ -116193,9 +116535,9 @@ in
sources."del-4.1.1"
sources."depd-1.1.2"
sources."destroy-1.0.4"
- sources."detect-node-2.0.5"
+ sources."detect-node-2.1.0"
sources."dns-equal-1.0.0"
- sources."dns-packet-1.3.1"
+ sources."dns-packet-1.3.4"
sources."dns-txt-2.0.2"
sources."ee-first-1.1.1"
sources."emoji-regex-7.0.3"
@@ -116244,7 +116586,7 @@ in
})
sources."fast-deep-equal-3.1.3"
sources."fast-json-stable-stringify-2.1.0"
- sources."faye-websocket-0.11.3"
+ sources."faye-websocket-0.11.4"
sources."file-uri-to-path-1.0.0"
(sources."fill-range-4.0.0" // {
dependencies = [
@@ -116258,7 +116600,7 @@ in
];
})
sources."find-up-3.0.0"
- sources."follow-redirects-1.13.3"
+ sources."follow-redirects-1.14.1"
sources."for-in-1.0.2"
sources."forwarded-0.1.2"
sources."fragment-cache-0.2.1"
@@ -116270,7 +116612,7 @@ in
sources."get-intrinsic-1.1.1"
sources."get-stream-4.1.0"
sources."get-value-2.0.6"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
(sources."glob-parent-3.1.0" // {
dependencies = [
sources."is-glob-3.1.0"
@@ -116317,7 +116659,7 @@ in
sources."is-binary-path-1.0.1"
sources."is-buffer-1.1.6"
sources."is-data-descriptor-1.0.0"
- sources."is-date-object-1.0.2"
+ sources."is-date-object-1.0.4"
sources."is-descriptor-1.0.2"
sources."is-extendable-1.0.1"
sources."is-extglob-2.1.1"
@@ -116332,7 +116674,7 @@ in
sources."is-path-in-cwd-2.1.0"
sources."is-path-inside-2.1.0"
sources."is-plain-object-2.0.4"
- sources."is-regex-1.1.2"
+ sources."is-regex-1.1.3"
sources."is-stream-1.1.0"
sources."is-windows-1.0.2"
sources."is-wsl-1.1.0"
@@ -116459,7 +116801,7 @@ in
sources."safer-buffer-2.1.2"
sources."schema-utils-1.0.0"
sources."select-hose-2.0.0"
- sources."selfsigned-1.10.8"
+ sources."selfsigned-1.10.11"
sources."semver-6.3.0"
(sources."send-0.17.1" // {
dependencies = [
@@ -116646,10 +116988,10 @@ in
copy-webpack-plugin = nodeEnv.buildNodePackage {
name = "copy-webpack-plugin";
packageName = "copy-webpack-plugin";
- version = "8.1.1";
+ version = "9.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-8.1.1.tgz";
- sha512 = "rYM2uzRxrLRpcyPqGceRBDpxxUV8vcDqIKxAUKfcnFpcrPxT5+XvhTxv7XLjo5AvEJFPdAE3zCogG2JVahqgSQ==";
+ url = "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-9.0.0.tgz";
+ sha512 = "k8UB2jLIb1Jip2nZbCz83T/XfhfjX6mB1yLJNYKrpYi7FQimfOoFv/0//iT6HV1K8FwUB5yUbCcnpLebJXJTug==";
};
dependencies = [
sources."@nodelib/fs.scandir-2.1.4"
@@ -116662,11 +117004,15 @@ in
sources."braces-3.0.2"
sources."dir-glob-3.0.1"
sources."fast-deep-equal-3.1.3"
- sources."fast-glob-3.2.5"
+ (sources."fast-glob-3.2.5" // {
+ dependencies = [
+ sources."glob-parent-5.1.2"
+ ];
+ })
sources."fast-json-stable-stringify-2.1.0"
sources."fastq-1.11.0"
sources."fill-range-7.0.1"
- sources."glob-parent-5.1.2"
+ sources."glob-parent-6.0.0"
sources."globby-11.0.3"
sources."ignore-5.1.8"
sources."is-extglob-2.1.1"
@@ -116678,7 +117024,7 @@ in
sources."normalize-path-3.0.0"
sources."p-limit-3.1.0"
sources."path-type-4.0.0"
- sources."picomatch-2.2.3"
+ sources."picomatch-2.3.0"
sources."punycode-2.1.1"
sources."queue-microtask-1.2.3"
sources."randombytes-2.1.0"
@@ -116722,7 +117068,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.50"
+ sources."@types/node-15.6.1"
sources."addr-to-ip-port-1.5.1"
sources."airplay-js-0.3.0"
sources."balanced-match-1.0.2"
@@ -116809,7 +117155,7 @@ in
sources."mime-1.6.0"
];
})
- sources."dns-packet-1.3.1"
+ sources."dns-packet-1.3.4"
sources."dns-txt-2.0.2"
sources."ecstatic-4.1.4"
sources."ee-first-1.1.1"
@@ -116828,12 +117174,12 @@ in
sources."fs.realpath-1.0.0"
sources."get-browser-rtc-1.1.0"
sources."get-stdin-7.0.0"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."he-1.2.0"
sources."http-node-git://github.com/feross/http-node#webtorrent"
sources."http-parser-js-0.4.13"
sources."ieee754-1.2.1"
- sources."immediate-chunk-store-2.1.1"
+ sources."immediate-chunk-store-2.2.0"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."ip-1.1.5"
@@ -116869,7 +117215,7 @@ in
sources."mdns-js-0.5.0"
sources."mdns-js-packet-0.2.0"
sources."mediasource-2.4.0"
- sources."memory-chunk-store-1.3.2"
+ sources."memory-chunk-store-1.3.5"
sources."mime-2.5.2"
sources."mimic-response-1.0.1"
sources."minimatch-3.0.4"
@@ -116913,7 +117259,7 @@ in
})
sources."prettier-bytes-1.0.4"
sources."process-nextick-args-2.0.1"
- sources."protobufjs-6.10.2"
+ sources."protobufjs-6.11.2"
sources."pump-3.0.0"
sources."qap-3.3.1"
sources."queue-microtask-1.2.3"
@@ -116924,7 +117270,7 @@ in
sources."range-parser-1.2.1"
sources."range-slice-stream-2.0.0"
sources."readable-stream-3.6.0"
- sources."record-cache-1.1.0"
+ sources."record-cache-1.1.1"
(sources."render-media-4.1.0" // {
dependencies = [
sources."debug-4.3.2"
@@ -116991,18 +117337,18 @@ in
sources."ms-2.1.2"
];
})
- sources."ut_pex-2.0.1"
- sources."utf-8-validate-5.0.4"
+ sources."ut_pex-3.0.0"
+ sources."utf-8-validate-5.0.5"
sources."util-deprecate-1.0.2"
- sources."utp-native-2.4.0"
+ sources."utp-native-2.5.0"
sources."videostream-3.2.2"
sources."vlc-command-1.2.0"
- (sources."webtorrent-0.118.0" // {
+ (sources."webtorrent-1.0.0" // {
dependencies = [
sources."debug-4.3.2"
sources."decompress-response-6.0.0"
sources."get-stdin-8.0.0"
- sources."magnet-uri-6.1.1"
+ sources."magnet-uri-6.2.0"
sources."mimic-response-3.1.0"
sources."ms-2.1.2"
sources."parse-torrent-9.1.3"
@@ -117011,7 +117357,7 @@ in
})
sources."winreg-1.2.4"
sources."wrappy-1.0.2"
- sources."ws-7.4.5"
+ sources."ws-7.4.6"
sources."xml2js-0.4.23"
sources."xmlbuilder-11.0.1"
sources."xmldom-0.1.31"
@@ -117053,119 +117399,13 @@ in
sha512 = "P1Ct7+DNrOcr2JAxDZ3Q5i5sx2LSveu7iLaoUL0A+YiG0GKf0l5+9j3rwMeyh6JeTL1+HfQV1rnwEvzhNIvpFw==";
};
dependencies = [
- sources."@babel/runtime-7.13.17"
- sources."@babel/runtime-corejs3-7.13.17"
- sources."@types/json5-0.0.29"
- sources."adverb-where-0.2.2"
- sources."aria-query-4.2.2"
- sources."array-includes-3.1.3"
- sources."array.prototype.flat-1.2.4"
- sources."array.prototype.flatmap-1.2.4"
- sources."ast-types-flow-0.0.7"
- sources."axe-core-4.1.4"
- sources."axobject-query-2.2.0"
- sources."balanced-match-1.0.2"
- sources."brace-expansion-1.1.11"
- sources."call-bind-1.0.2"
+ sources."adverb-where-0.2.5"
sources."commander-2.20.3"
- sources."concat-map-0.0.1"
- sources."contains-path-0.1.0"
- sources."core-js-pure-3.11.0"
- sources."damerau-levenshtein-1.0.6"
- sources."debug-2.6.9"
- sources."define-properties-1.1.3"
- sources."doctrine-1.5.0"
sources."e-prime-0.10.4"
- sources."emoji-regex-9.2.2"
- sources."error-ex-1.3.2"
- sources."es-abstract-1.18.0"
- sources."es-to-primitive-1.2.1"
- sources."eslint-import-resolver-node-0.3.4"
- sources."eslint-module-utils-2.6.0"
- sources."eslint-plugin-import-2.22.1"
- sources."eslint-plugin-jsx-a11y-6.4.1"
- (sources."eslint-plugin-react-7.23.2" // {
- dependencies = [
- sources."doctrine-2.1.0"
- sources."resolve-2.0.0-next.3"
- ];
- })
- sources."eslint-plugin-react-hooks-4.2.0"
- sources."esutils-2.0.3"
- sources."find-up-2.1.0"
- sources."function-bind-1.1.1"
- sources."get-intrinsic-1.1.1"
- sources."graceful-fs-4.2.6"
- sources."has-1.0.3"
- sources."has-bigints-1.0.1"
- sources."has-symbols-1.0.2"
- sources."hosted-git-info-2.8.9"
- sources."internal-slot-1.0.3"
- sources."is-arrayish-0.2.1"
- sources."is-bigint-1.0.1"
- sources."is-boolean-object-1.1.0"
- sources."is-callable-1.2.3"
- sources."is-core-module-2.3.0"
- sources."is-date-object-1.0.2"
- sources."is-negative-zero-2.0.1"
- sources."is-number-object-1.0.4"
- sources."is-regex-1.1.2"
- sources."is-string-1.0.5"
- sources."is-symbol-1.0.3"
- sources."isarray-1.0.0"
- sources."js-tokens-4.0.0"
- sources."json5-1.0.1"
- sources."jsx-ast-utils-3.2.0"
- sources."language-subtag-registry-0.3.21"
- sources."language-tags-1.0.5"
- sources."load-json-file-2.0.0"
- sources."locate-path-2.0.0"
- sources."loose-envify-1.4.0"
- sources."minimatch-3.0.4"
- sources."minimist-1.2.5"
- sources."ms-2.0.0"
- sources."no-cliches-0.3.2"
- sources."normalize-package-data-2.5.0"
- sources."object-assign-4.1.1"
- sources."object-inspect-1.10.2"
- sources."object-keys-1.1.1"
- sources."object.assign-4.1.2"
- sources."object.entries-1.1.3"
- sources."object.fromentries-2.0.4"
- sources."object.values-1.1.3"
- sources."p-limit-1.3.0"
- sources."p-locate-2.0.0"
- sources."p-try-1.0.0"
- sources."parse-json-2.2.0"
+ sources."no-cliches-0.3.4"
sources."passive-voice-0.1.0"
- sources."path-exists-3.0.0"
- sources."path-parse-1.0.6"
- sources."path-type-2.0.0"
- sources."pify-2.3.0"
- sources."pkg-dir-2.0.0"
- sources."prop-types-15.7.2"
- sources."react-is-16.13.1"
- sources."read-pkg-2.0.0"
- sources."read-pkg-up-2.0.0"
- sources."regenerator-runtime-0.13.8"
- sources."regexp.prototype.flags-1.3.1"
- sources."resolve-1.20.0"
- sources."semver-5.7.1"
- sources."side-channel-1.0.4"
- 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."string.prototype.matchall-4.0.4"
- sources."string.prototype.trimend-1.0.4"
- sources."string.prototype.trimstart-1.0.4"
- sources."strip-bom-3.0.0"
- sources."too-wordy-0.3.1"
- sources."tsconfig-paths-3.9.0"
- sources."unbox-primitive-1.0.1"
- sources."validate-npm-package-license-3.0.4"
+ sources."too-wordy-0.3.4"
sources."weasel-words-0.1.1"
- sources."which-boxed-primitive-1.0.2"
];
buildInputs = globalBuildInputs;
meta = {
@@ -117180,30 +117420,28 @@ in
yaml-language-server = nodeEnv.buildNodePackage {
name = "yaml-language-server";
packageName = "yaml-language-server";
- version = "0.18.0";
+ version = "0.19.2";
src = fetchurl {
- url = "https://registry.npmjs.org/yaml-language-server/-/yaml-language-server-0.18.0.tgz";
- sha512 = "Cm3UKlaEzvd+my1L4lf5NKfCqDCkdxLmuvq8jRWOPjtrGEdY41EtuY1V+lRdRREVXyurgy4NPVFWzarcl5CltQ==";
+ url = "https://registry.npmjs.org/yaml-language-server/-/yaml-language-server-0.19.2.tgz";
+ sha512 = "E4yMj1oK+OCObD15LvEaHOw8y3ux7G4KrREQDsDkjqFhUm/3qCCPMh3NPXTRQyse3r6Xpsv+lAW17Qo/NKm+0g==";
};
dependencies = [
sources."agent-base-4.3.0"
- sources."argparse-1.0.10"
+ sources."argparse-2.0.1"
sources."balanced-match-1.0.2"
sources."brace-expansion-1.1.11"
sources."concat-map-0.0.1"
sources."debug-3.1.0"
sources."es6-promise-4.2.8"
sources."es6-promisify-5.0.0"
- sources."esprima-4.0.1"
sources."http-proxy-agent-2.1.0"
sources."https-proxy-agent-2.2.4"
- sources."js-yaml-3.14.1"
+ sources."js-yaml-4.1.0"
sources."jsonc-parser-2.3.1"
sources."minimatch-3.0.4"
sources."ms-2.0.0"
sources."request-light-0.2.5"
- sources."sprintf-js-1.0.3"
- (sources."vscode-json-languageservice-4.1.0" // {
+ (sources."vscode-json-languageservice-4.1.4" // {
dependencies = [
sources."jsonc-parser-3.0.0"
sources."vscode-nls-5.0.0"
@@ -117249,22 +117487,22 @@ in
yo = nodeEnv.buildNodePackage {
name = "yo";
packageName = "yo";
- version = "4.0.0";
+ version = "4.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/yo/-/yo-4.0.0.tgz";
- sha512 = "u4nr6946GQ1HXrX0K9YAHK8wJmvVNIAYIsC/NSTIXOSK61N400UCY1HLQr5oo7TJcpZAe7aO3k3jFJXIvRb6Qw==";
+ url = "https://registry.npmjs.org/yo/-/yo-4.2.0.tgz";
+ sha512 = "dbHkO8dp4/KDsU5V7akSWVdWB+yyfadR0q3vGxRKXxg1umiYlFUrPuiu66Iy4IpRRr2Qrqx495kInkZJIJtqmA==";
};
dependencies = [
- sources."@babel/runtime-7.13.17"
+ sources."@babel/runtime-7.14.0"
sources."@nodelib/fs.scandir-2.1.4"
sources."@nodelib/fs.stat-2.0.4"
sources."@nodelib/fs.walk-1.2.6"
- (sources."@npmcli/arborist-2.4.0" // {
+ (sources."@npmcli/arborist-2.6.1" // {
dependencies = [
sources."semver-7.3.5"
];
})
- (sources."@npmcli/git-2.0.8" // {
+ (sources."@npmcli/git-2.0.9" // {
dependencies = [
sources."mkdirp-1.0.4"
sources."semver-7.3.5"
@@ -117289,7 +117527,10 @@ in
sources."@npmcli/run-script-1.8.5"
sources."@sindresorhus/is-0.7.0"
sources."@tootallnate/once-1.1.2"
+ sources."@types/expect-1.20.4"
sources."@types/minimatch-3.0.4"
+ sources."@types/node-15.6.1"
+ sources."@types/vinyl-2.0.4"
sources."abbrev-1.1.1"
(sources."agent-base-6.0.2" // {
dependencies = [
@@ -117321,7 +117562,7 @@ in
sources."array-find-index-1.0.2"
sources."array-union-2.1.0"
sources."array-uniq-1.0.3"
- sources."arrify-1.0.1"
+ sources."arrify-2.0.1"
sources."asap-2.0.6"
sources."asn1-0.2.4"
sources."assert-plus-1.0.0"
@@ -117331,6 +117572,7 @@ in
sources."aws-sign2-0.7.0"
sources."aws4-1.11.0"
sources."balanced-match-1.0.2"
+ sources."base64-js-1.5.1"
sources."bcrypt-pbkdf-1.0.2"
(sources."bin-links-2.2.1" // {
dependencies = [
@@ -117345,7 +117587,12 @@ in
})
sources."bin-version-check-3.0.0"
sources."binaryextensions-4.15.0"
- sources."boolean-3.0.3"
+ (sources."bl-4.1.0" // {
+ dependencies = [
+ sources."readable-stream-3.6.0"
+ ];
+ })
+ sources."boolean-3.0.4"
(sources."boxen-1.3.0" // {
dependencies = [
sources."camelcase-4.1.0"
@@ -117353,9 +117600,10 @@ in
})
sources."brace-expansion-1.1.11"
sources."braces-3.0.2"
+ sources."buffer-5.7.1"
sources."buffer-from-1.1.1"
sources."builtins-1.0.3"
- (sources."cacache-15.0.6" // {
+ (sources."cacache-15.2.0" // {
dependencies = [
sources."mkdirp-1.0.4"
];
@@ -117378,9 +117626,10 @@ in
sources."cli-boxes-1.0.0"
sources."cli-cursor-2.1.0"
sources."cli-list-0.2.0"
+ sources."cli-spinners-2.6.0"
sources."cli-table-0.3.6"
sources."cli-width-2.2.1"
- sources."clone-2.1.2"
+ sources."clone-1.0.4"
sources."clone-buffer-1.0.0"
sources."clone-regexp-1.0.1"
sources."clone-response-1.0.2"
@@ -117401,7 +117650,7 @@ in
sources."config-chain-1.1.12"
sources."configstore-3.1.5"
sources."console-control-strings-1.1.0"
- sources."core-js-3.11.0"
+ sources."core-js-3.13.0"
sources."core-util-is-1.0.2"
sources."create-error-class-3.0.2"
sources."cross-spawn-6.0.5"
@@ -117413,7 +117662,6 @@ in
})
sources."crypto-random-string-1.0.0"
sources."currently-unhandled-0.4.1"
- sources."cyclist-1.0.1"
sources."dashdash-1.14.1"
sources."dateformat-4.5.1"
sources."debug-2.6.9"
@@ -117423,41 +117671,36 @@ in
sources."decompress-response-3.3.0"
sources."deep-extend-0.6.0"
sources."default-uid-1.0.0"
+ sources."defaults-1.0.3"
sources."define-properties-1.1.3"
sources."delayed-stream-1.0.0"
sources."delegates-1.0.0"
sources."depd-1.1.2"
- sources."detect-node-2.0.5"
+ sources."detect-node-2.1.0"
sources."dezalgo-1.0.3"
sources."diff-5.0.0"
- (sources."dir-glob-3.0.1" // {
- dependencies = [
- sources."path-type-4.0.0"
- ];
- })
+ sources."dir-glob-3.0.1"
sources."dot-prop-4.2.1"
sources."downgrade-root-1.2.2"
sources."duplexer3-0.1.4"
sources."ecc-jsbn-0.1.2"
- sources."editions-6.1.0"
sources."ejs-3.1.6"
sources."emoji-regex-8.0.0"
sources."encodeurl-1.0.2"
(sources."encoding-0.1.13" // {
dependencies = [
- sources."iconv-lite-0.6.2"
+ sources."iconv-lite-0.6.3"
];
})
sources."end-of-stream-1.4.4"
sources."env-paths-1.0.0"
sources."err-code-2.0.3"
- sources."errlop-4.1.0"
sources."error-10.4.0"
sources."error-ex-1.3.2"
sources."es6-error-4.1.1"
- sources."es6-promise-4.2.8"
sources."escape-string-regexp-1.0.5"
sources."esprima-4.0.1"
+ sources."eventemitter3-4.0.7"
sources."execa-1.0.0"
sources."execall-1.0.0"
sources."exit-hook-1.1.1"
@@ -117488,7 +117731,7 @@ in
sources."get-stdin-4.0.1"
sources."get-stream-4.1.0"
sources."getpass-0.1.7"
- sources."glob-7.1.6"
+ sources."glob-7.1.7"
sources."glob-parent-5.1.2"
(sources."global-agent-2.2.0" // {
dependencies = [
@@ -117538,8 +117781,9 @@ in
sources."humanize-ms-1.2.1"
sources."humanize-string-1.0.2"
sources."iconv-lite-0.4.24"
+ sources."ieee754-1.2.1"
sources."ignore-5.1.8"
- sources."ignore-walk-3.0.3"
+ sources."ignore-walk-3.0.4"
sources."import-lazy-2.1.0"
sources."imurmurhash-0.1.4"
sources."indent-string-4.0.0"
@@ -117558,13 +117802,14 @@ in
sources."ip-regex-2.1.0"
sources."is-arrayish-0.2.1"
sources."is-ci-1.2.1"
- sources."is-core-module-2.3.0"
+ sources."is-core-module-2.4.0"
sources."is-docker-1.1.0"
sources."is-extglob-2.1.1"
sources."is-finite-1.1.0"
sources."is-fullwidth-code-point-2.0.0"
sources."is-glob-4.0.1"
sources."is-installed-globally-0.1.0"
+ sources."is-interactive-1.0.0"
sources."is-lambda-1.0.1"
sources."is-npm-1.0.0"
sources."is-number-7.0.0"
@@ -117584,10 +117829,9 @@ in
sources."is-utf8-0.2.1"
sources."is-wsl-1.1.0"
sources."isarray-1.0.0"
- sources."isbinaryfile-4.0.6"
+ sources."isbinaryfile-4.0.8"
sources."isexe-2.0.0"
sources."isstream-0.1.2"
- sources."istextorbinary-5.12.0"
sources."isurl-1.0.0"
(sources."jake-10.8.2" // {
dependencies = [
@@ -117601,7 +117845,7 @@ in
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-nice-1.1.3"
+ sources."json-stringify-nice-1.1.4"
sources."json-stringify-safe-5.0.1"
sources."jsonparse-1.3.1"
sources."jsprim-1.4.1"
@@ -117629,7 +117873,7 @@ in
];
})
sources."locate-path-2.0.0"
- sources."locutus-2.0.14"
+ sources."locutus-2.0.15"
sources."lodash-4.17.21"
sources."lodash.debounce-4.0.8"
sources."lodash.pad-4.5.1"
@@ -117654,12 +117898,8 @@ in
];
})
sources."mem-5.1.1"
- (sources."mem-fs-1.2.0" // {
- dependencies = [
- sources."through2-3.0.2"
- ];
- })
- sources."mem-fs-editor-8.1.2"
+ sources."mem-fs-2.2.1"
+ sources."mem-fs-editor-9.0.1"
(sources."meow-3.7.0" // {
dependencies = [
sources."find-up-1.1.2"
@@ -117691,11 +117931,7 @@ in
];
})
sources."ms-2.0.0"
- (sources."multimatch-5.0.0" // {
- dependencies = [
- sources."arrify-2.0.1"
- ];
- })
+ sources."multimatch-5.0.0"
sources."mute-stream-0.0.7"
sources."nice-try-1.0.5"
(sources."node-gyp-7.1.2" // {
@@ -117739,13 +117975,13 @@ in
sources."semver-7.3.5"
];
})
- sources."npm-packlist-2.1.5"
+ sources."npm-packlist-2.2.2"
(sources."npm-pick-manifest-6.1.1" // {
dependencies = [
sources."semver-7.3.5"
];
})
- sources."npm-registry-fetch-10.1.1"
+ sources."npm-registry-fetch-10.1.2"
sources."npm-run-path-2.0.2"
sources."npmlog-2.0.4"
sources."number-is-nan-1.0.1"
@@ -117759,18 +117995,39 @@ in
];
})
sources."open-6.4.0"
+ (sources."ora-5.4.0" // {
+ dependencies = [
+ sources."ansi-regex-5.0.0"
+ sources."ansi-styles-4.3.0"
+ sources."chalk-4.1.1"
+ sources."cli-cursor-3.1.0"
+ sources."color-convert-2.0.1"
+ sources."color-name-1.1.4"
+ sources."has-flag-4.0.0"
+ sources."log-symbols-4.1.0"
+ sources."onetime-5.1.2"
+ sources."restore-cursor-3.1.0"
+ sources."strip-ansi-6.0.0"
+ sources."supports-color-7.2.0"
+ ];
+ })
sources."os-homedir-1.0.2"
sources."os-name-3.1.0"
sources."os-shim-0.1.3"
sources."os-tmpdir-1.0.2"
sources."p-any-2.1.0"
- sources."p-cancelable-2.1.0"
+ sources."p-cancelable-2.1.1"
sources."p-defer-1.0.0"
sources."p-finally-1.0.0"
sources."p-is-promise-2.1.0"
sources."p-limit-1.3.0"
sources."p-locate-2.0.0"
sources."p-map-4.0.0"
+ (sources."p-queue-6.6.2" // {
+ dependencies = [
+ sources."p-timeout-3.2.0"
+ ];
+ })
sources."p-some-4.1.0"
sources."p-timeout-2.0.1"
sources."p-try-1.0.0"
@@ -117789,22 +118046,13 @@ in
sources."path-is-absolute-1.0.1"
sources."path-is-inside-1.0.2"
sources."path-key-2.0.1"
- sources."path-parse-1.0.6"
- (sources."path-type-1.1.0" // {
- dependencies = [
- sources."pify-2.3.0"
- ];
- })
+ sources."path-parse-1.0.7"
+ sources."path-type-4.0.0"
sources."performance-now-2.1.0"
- sources."picomatch-2.2.3"
+ sources."picomatch-2.3.0"
sources."pify-3.0.0"
sources."pinkie-2.0.4"
sources."pinkie-promise-2.0.1"
- (sources."pipeline-pipe-0.1.5" // {
- dependencies = [
- sources."readable-stream-3.6.0"
- ];
- })
(sources."pkg-dir-4.2.0" // {
dependencies = [
sources."find-up-4.1.0"
@@ -117841,14 +118089,14 @@ in
sources."query-string-5.1.1"
sources."queue-microtask-1.2.3"
sources."rc-1.2.8"
- (sources."read-chunk-3.2.0" // {
- dependencies = [
- sources."pify-4.0.1"
- ];
- })
sources."read-cmd-shim-2.0.0"
sources."read-package-json-fast-2.0.2"
- sources."read-pkg-1.1.0"
+ (sources."read-pkg-1.1.0" // {
+ dependencies = [
+ sources."path-type-1.1.0"
+ sources."pify-2.3.0"
+ ];
+ })
(sources."read-pkg-up-4.0.0" // {
dependencies = [
sources."find-up-3.0.0"
@@ -117924,12 +118172,16 @@ in
];
})
sources."sort-keys-2.0.0"
- sources."sort-on-3.0.0"
+ (sources."sort-on-3.0.0" // {
+ dependencies = [
+ sources."arrify-1.0.1"
+ ];
+ })
sources."spawn-sync-1.0.15"
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."spdx-license-ids-3.0.9"
sources."sprintf-js-1.1.2"
sources."sshpk-1.16.1"
sources."ssri-8.0.1"
@@ -118009,11 +118261,6 @@ in
sources."text-table-0.2.0"
sources."textextensions-5.12.0"
sources."through-2.3.8"
- (sources."through2-4.0.2" // {
- dependencies = [
- sources."readable-stream-3.6.0"
- ];
- })
sources."timed-out-4.0.1"
sources."titleize-1.0.1"
sources."tmp-0.0.33"
@@ -118044,9 +118291,11 @@ in
sources."validate-npm-package-license-3.0.4"
sources."validate-npm-package-name-3.0.0"
sources."verror-1.10.0"
- sources."version-compare-1.1.0"
- sources."version-range-1.1.0"
- sources."vinyl-2.2.1"
+ (sources."vinyl-2.2.1" // {
+ dependencies = [
+ sources."clone-2.1.2"
+ ];
+ })
(sources."vinyl-file-3.0.0" // {
dependencies = [
sources."pify-2.3.0"
@@ -118054,6 +118303,7 @@ in
})
sources."walk-2.3.14"
sources."walk-up-path-1.0.0"
+ sources."wcwidth-1.0.1"
sources."which-1.3.1"
(sources."which-pm-2.0.0" // {
dependencies = [
@@ -118063,12 +118313,6 @@ in
sources."wide-align-1.1.3"
sources."widest-line-2.0.1"
sources."windows-release-3.3.3"
- (sources."with-open-file-0.1.7" // {
- dependencies = [
- sources."p-try-2.2.0"
- sources."pify-4.0.1"
- ];
- })
(sources."wrap-ansi-2.1.0" // {
dependencies = [
sources."ansi-regex-2.1.1"
@@ -118088,12 +118332,11 @@ in
];
})
sources."yeoman-doctor-4.0.0"
- (sources."yeoman-environment-3.2.0" // {
+ (sources."yeoman-environment-3.4.1" // {
dependencies = [
sources."ansi-escapes-4.3.2"
sources."ansi-regex-2.1.1"
sources."ansi-styles-4.3.0"
- sources."arrify-2.0.1"
sources."chalk-4.1.1"
sources."cli-cursor-3.1.0"
sources."cli-width-3.0.0"
@@ -118118,7 +118361,7 @@ in
})
sources."get-stream-6.0.1"
sources."has-flag-4.0.0"
- sources."inquirer-8.0.0"
+ sources."inquirer-8.1.0"
sources."is-fullwidth-code-point-3.0.0"
sources."is-stream-2.0.0"
sources."locate-path-6.0.0"
diff --git a/pkgs/development/python-modules/pyroon/default.nix b/pkgs/development/python-modules/pyroon/default.nix
new file mode 100644
index 000000000000..c27c70be5895
--- /dev/null
+++ b/pkgs/development/python-modules/pyroon/default.nix
@@ -0,0 +1,57 @@
+{ lib
+, buildPythonPackage
+, fetchFromGitHub
+, fetchpatch
+, ifaddr
+, poetry-core
+, pythonOlder
+, requests
+, six
+, websocket_client
+}:
+
+buildPythonPackage rec {
+ pname = "pyroon";
+ version = "0.0.37";
+ format = "pyproject";
+ disabled = pythonOlder "3.7";
+
+ src = fetchFromGitHub {
+ owner = "pavoni";
+ repo = pname;
+ rev = version;
+ sha256 = "1hxr473z9h3kb91m3ygina58pfwfyjsv1yb29spxmnbzvk34rzzz";
+ };
+
+ nativeBuildInputs = [
+ poetry-core
+ ];
+
+ propagatedBuildInputs = [
+ ifaddr
+ requests
+ six
+ websocket_client
+ ];
+
+ patches = [
+ # Switch to poetry-core, https://github.com/pavoni/pyroon/pull/43
+ (fetchpatch {
+ name = "use-peotry-core.patch";
+ url = "https://github.com/pavoni/pyroon/commit/16f890314683a6c2700fa4da5c937559e2e24bea.patch";
+ sha256 = "047bhimr72rwqqyjy7jkfzacdc2ycy81wbmgnvf7xyhgjw1jyvh5";
+ })
+ ];
+
+ # Tests require access to the Roon API
+ doCheck = false;
+
+ pythonImportsCheck = [ "roonapi" ];
+
+ meta = with lib; {
+ description = "Python library to interface with the Roon API";
+ homepage = "https://github.com/pavoni/pyroon";
+ license = with licenses; [ asl20 ];
+ maintainers = with maintainers; [ fab ];
+ };
+}
diff --git a/pkgs/development/tools/build-managers/bmake/default.nix b/pkgs/development/tools/build-managers/bmake/default.nix
index e79e06a71f4e..d2b0e5a45dba 100644
--- a/pkgs/development/tools/build-managers/bmake/default.nix
+++ b/pkgs/development/tools/build-managers/bmake/default.nix
@@ -18,6 +18,31 @@ stdenv.mkDerivation rec {
./fix-unexport-env-test.patch
];
+ # The generated makefile is a small wrapper for calling ./boot-strap
+ # with a given op. On a case-insensitive filesystem this generated
+ # makefile clobbers a distinct, shipped, Makefile and causes
+ # infinite recursion during tests which eventually fail with
+ # "fork: Resource temporarily unavailable"
+ configureFlags = [
+ "--without-makefile"
+ ];
+
+ buildPhase = ''
+ runHook preBuild
+
+ ./boot-strap --prefix=$out -o . op=build
+
+ runHook postBuild
+ '';
+
+ installPhase = ''
+ runHook preInstall
+
+ ./boot-strap --prefix=$out -o . op=install
+
+ runHook postInstall
+ '';
+
setupHook = ./setup-hook.sh;
meta = with lib; {
diff --git a/pkgs/development/tools/cue/default.nix b/pkgs/development/tools/cue/default.nix
index f48b54471b14..08dada094ff4 100644
--- a/pkgs/development/tools/cue/default.nix
+++ b/pkgs/development/tools/cue/default.nix
@@ -2,15 +2,15 @@
buildGoModule rec {
pname = "cue";
- version = "0.3.2";
+ version = "0.4.0";
src = fetchgit {
url = "https://cue.googlesource.com/cue";
rev = "v${version}";
- sha256 = "0rfgpq4dyd3zm07vcjzn5vv0dhvvryrarxc50sd2pxagbq5cqc8l";
+ sha256 = "sha256-rcGEl+CMFyxZKsOKhVimhv5/ONo3xS6FjgKModZGR2o=";
};
- vendorSha256 = "10kvss23a8a6q26a7h1bqc3i0nskm2halsvc9wdv9zf9qsz7zjkp";
+ vendorSha256 = "sha256-eSKVlBgnHR1R0j1lNwtFoIgRuj8GqoMbvuBl/N1SanY=";
doCheck = false;
diff --git a/pkgs/development/tools/earthly/default.nix b/pkgs/development/tools/earthly/default.nix
index 68a8d1d03523..588716b9f30c 100644
--- a/pkgs/development/tools/earthly/default.nix
+++ b/pkgs/development/tools/earthly/default.nix
@@ -2,13 +2,13 @@
buildGoModule rec {
pname = "earthly";
- version = "0.5.13";
+ version = "0.5.14";
src = fetchFromGitHub {
owner = "earthly";
repo = "earthly";
rev = "v${version}";
- sha256 = "sha256-XN3E1oCIlohALnaP17WOB7/1vaklmyAfVZLxrBOXhbo=";
+ sha256 = "sha256-XB3zfbcuEgkqQ7DGnyUJj3K+qUH2DNv3n1/0mlocqfM=";
};
vendorSha256 = "sha256-q3dDV0eop2NxXHFrlppWsZrO2Hz1q5xhs1DnB6PvG9g=";
diff --git a/pkgs/development/tools/electron/default.nix b/pkgs/development/tools/electron/default.nix
index 5ecec0059a02..e3cd9d2cf905 100644
--- a/pkgs/development/tools/electron/default.nix
+++ b/pkgs/development/tools/electron/default.nix
@@ -22,7 +22,7 @@ let
in
rec {
- electron = electron_12;
+ electron = electron_13;
electron_3 = mkElectron "3.1.13" {
x86_64-linux = "1psmbplz6jhnnf6hmfhxbmmhn4n1dpnhzbc12pxn645xhfpk9ark";
@@ -86,32 +86,42 @@ rec {
headers = "0yx8mkrm15ha977hzh7g2sc5fab9sdvlk1bk3yxignhxrqqbw885";
};
- electron_10 = mkElectron "10.4.5" {
- x86_64-linux = "d7f6203d09b4419262e985001d4c4f6c1fdfa3150eddb0708df9e124bebd0503";
- x86_64-darwin = "e3ae7228010055b1d198d8dbaf0f34882d369d8caf76206a59f198301a3f3913";
- i686-linux = "dd6abc0dc00d8f9d0e31c8f2bb70f7bbbaec58af4c446f8b493bbae9a9428e2f";
- armv7l-linux = "86bc5f9d3dc94d19e847bf10ab22d98926b616d9febcbdceafd30e35b8f2b2db";
- aarch64-linux = "655b36d68332131250f7496de0bb03a1e93f74bb5fc4b4286148855874673dcd";
- headers = "1kfgww8wha86yw75k5yfq4mxvjlxgf1jmmzxy0p3hyr000kw26pk";
+ electron_10 = mkElectron "10.4.7" {
+ x86_64-linux = "e3ea75fcedce588c6b59cfa3a6e46ba67b789e14dc2e5b9dfe1ddf3f82b0f995";
+ x86_64-darwin = "8f01e020563b7fce68dc2e3d4bbf419320d13b088e89eb64f9645e9d73ad88fb";
+ i686-linux = "dd7fde9b3993538333ec701101554050b27d0b680196d0883ab563e8e696fc79";
+ armv7l-linux = "56f11ed14f8a620650d31c21ebd095ce59ef4286c98276802b18f9cc85560ddd";
+ aarch64-linux = "0550584518c8e98fe1113706c10fd7456ec519f7aa6867fbff17c8913327d758";
+ headers = "01x6a0r2jawjpl09ixgzap3g0z6znj34hsnnhzanavkbds0ri4k6";
};
- electron_11 = mkElectron "11.4.6" {
- x86_64-linux = "03932a0b3328a00e7ed49947c70143b7b3455a3c1976defab2f74127cdae43e9";
- x86_64-darwin = "47de03b17ab20213c95d5817af3d7db2b942908989649202efdcd1d566dd24c3";
- i686-linux = "b76e69ad4b654384b4f1647f0cb362e78c1d99be7b814d7d32abc22294639ace";
- armv7l-linux = "cc4be8e0c348bc8db5002cf6c63c1d02fcb594f1f8bfc358168738c930098857";
- aarch64-linux = "75665dd5b2b9938bb4572344d459db65f46c5f7c637a32946c5a822cc23a77dc";
- aarch64-darwin = "0c782b1d4eb848bae780f4e3a236caa1671486264c1f8e72fde98f1256d8f9e5";
- headers = "0ip1wxgflifs86vk4xpz1555xa7yjy64ygqgd5a2g723148m52rk";
+ electron_11 = mkElectron "11.4.7" {
+ x86_64-linux = "05005d351a1b08a550a8186efba6f4fdd96842355a634934d9a9d7d31c2cd539";
+ x86_64-darwin = "e6445ad3d7e851fc3227785788d0706d58c9c8ea3821afa7f871c6254c463043";
+ i686-linux = "5473f36eb2a9772da7e4f1a162a724b4a5335e8f78fb51d585bac3bd50ff12fc";
+ armv7l-linux = "0de0d74b1206f7ffd9e4c75754bbf6fdf27c83a0ce6b4cd8a6b5af81d7a20ba7";
+ aarch64-linux = "f2261dde71197c358aff85d7a320cbd2315a5adf228218fd9a2f5c8561589323";
+ aarch64-darwin = "a2abc83c21402e30f4f42f4615cccc4369884faa2f2fa576d71f423834988622";
+ headers = "1dqkx861vfq6xbzdlbgza6h4j7bib8p3xahllrnfc0s65y8gf0ry";
};
- electron_12 = mkElectron "12.0.7" {
- x86_64-linux = "335b77b35361fac4e2df1b7e8de5cf055e0a1a2065759cb2dd4508e8a77949fa";
- x86_64-darwin = "c3238c9962c5ad0f9de23c9314f07e03410d096d7e9f9d91016dab2856606a9e";
- i686-linux = "16023d86b88c7fccafd491c020d064caa2138d6a3493664739714555f72e5b06";
- armv7l-linux = "53cc1250ff62f2353d8dd37552cbd7bdcaaa756106faee8b809303bed00e040a";
- aarch64-linux = "3eddc0c507a43cce4e714bfe509d99218b5ab99f4660dd173aac2a895576dc71";
- aarch64-darwin = "2bc8f37af68e220f93fb9abc62d1c56d8b64baaf0ef9ef974f24ddcbe4f8b488";
- headers = "1ji9aj7qr4b27m5kprsgsrl21rjphz5bbnmn6q0n2x84l429nyfb";
+ electron_12 = mkElectron "12.0.9" {
+ x86_64-linux = "3ab0a873f720d3bf56cce6ca1bf9d8b956843920798f659ca0829e4cc3126f6d";
+ x86_64-darwin = "b3f1e378f58e7c36b54451c5a3485adc370277827974e1eb0790b6965737c872";
+ i686-linux = "37405b3b27779ad417c3ae432d7f0d969c126c958a0ad8f2585c34fc8ee6c6e6";
+ armv7l-linux = "2d41ef3ed6a215efe2c7d03d8055fcfda0079f09e9580e5bf70e8ac4a22b0898";
+ aarch64-linux = "22a85817ea2edbba2e17b35f6e3a8104b2165e070ea21a1f2fa3b40e8d7aecc9";
+ aarch64-darwin = "cb8aa8153005ea0d801182eb714d56af0217345b1152d867317291670731daeb";
+ headers = "1vwcjzkjag2wxrwnsbi8bgbv8bi6vn5iq9b04krwlk7mlhm4ax66";
+ };
+
+ electron_13 = mkElectron "13.0.1" {
+ x86_64-linux = "05c6cfc2804d426d6c2af15cc16e0265782917e76fb2c4e87b7469d0f3ab0f81";
+ x86_64-darwin = "a65a44bfafcdfcdee0bb2b3515dab57e884e0700830ccd142e15f01e6c3a4976";
+ i686-linux = "3f3b358879523b10e6341a5c74842f8c09a1073f6064410f3495143733663f8d";
+ armv7l-linux = "b6657862bf4b1f61f5c1e0c836401f82822fc5ebd69ecb2efd0777255fefc813";
+ aarch64-linux = "ccc581dc5ddf9d2adefb60d8bc495b5a04363a80614d617094c142b8c5aa95de";
+ aarch64-darwin = "e58e3ea3fffc8c3b280b0b6c22c685f9ecd82ef0340a5207d8b9c6f20e7c0197";
+ headers = "0idlap698vqz7i2by3g9k4yqhm87fqc34pgzxcidzan9qvyd0njx";
};
}
diff --git a/pkgs/development/tools/kind/default.nix b/pkgs/development/tools/kind/default.nix
index d0ce0c83c90b..88bc30943c38 100644
--- a/pkgs/development/tools/kind/default.nix
+++ b/pkgs/development/tools/kind/default.nix
@@ -4,16 +4,16 @@ with lib;
buildGoModule rec {
pname = "kind";
- version = "0.11.0";
+ version = "0.11.1";
src = fetchFromGitHub {
rev = "v${version}";
owner = "kubernetes-sigs";
repo = "kind";
- sha256 = "020s1fr92lv9yiy5kbnrfb8n0lpslriwyh5z31aym3x44qpc6jaj";
+ sha256 = "sha256-pjg52ONseKNw06EOBzD6Elge+Cz+C3llPvjJPHkn1cw=";
};
- vendorSha256 = "08cjvhk587f3aar4drn0hq9q1zlsnl4p7by4j38jzb4r8ix5s98y";
+ vendorSha256 = "sha256-HiVdekSZrC/RkMSvcwm1mv6AE4bA5kayUsMdVCbckiE=";
doCheck = false;
diff --git a/pkgs/development/tools/rust/cargo-raze/default.nix b/pkgs/development/tools/rust/cargo-raze/default.nix
index 2e75c08b42bb..0299fe516d94 100644
--- a/pkgs/development/tools/rust/cargo-raze/default.nix
+++ b/pkgs/development/tools/rust/cargo-raze/default.nix
@@ -19,7 +19,9 @@ rustPlatform.buildRustPackage rec {
buildInputs = [ curl libgit2 openssl ]
++ lib.optional stdenv.isDarwin Security;
- doCheck = true;
+ # thread 'main' panicked at 'Cannot ping mock server.: "cannot send request to mock server: cannot send request to mock server: failed to resolve host name"'
+ # __darwinAllowLocalNetworking does not fix the panic
+ doCheck = !stdenv.isDarwin;
meta = with lib; {
description = "Generate Bazel BUILD files from Cargo dependencies";
diff --git a/pkgs/games/augustus/default.nix b/pkgs/games/augustus/default.nix
index b7c2a0b79792..4693e290da6a 100644
--- a/pkgs/games/augustus/default.nix
+++ b/pkgs/games/augustus/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "augustus";
- version = "2.0.1";
+ version = "3.0.1";
src = fetchFromGitHub {
owner = "Keriew";
repo = "augustus";
rev = "v${version}";
- sha256 = "0czazw8mc3fbvdazs2nzvgxd1dpzjc8z5fwiv89vv4nd7laz3jkj";
+ sha256 = "03pmnwq6bahq854vh1vmv1vabb8cs0alca8f36id8dlz8bw95nik";
};
nativeBuildInputs = [ cmake ];
diff --git a/pkgs/games/cbonsai/default.nix b/pkgs/games/cbonsai/default.nix
index c817b5d36b5b..42e89d235df7 100644
--- a/pkgs/games/cbonsai/default.nix
+++ b/pkgs/games/cbonsai/default.nix
@@ -1,14 +1,14 @@
{ stdenv, lib, fetchFromGitLab, ncurses, pkg-config, nix-update-script }:
stdenv.mkDerivation rec {
- version = "1.0.4";
+ version = "1.1.1";
pname = "cbonsai";
src = fetchFromGitLab {
owner = "jallbrit";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-5yyvisExf4Minyr1ApJQ2SoctfjhdU6kEbgBGgHDtCg=";
+ sha256 = "sha256-IgtBHy6JCuTTXL0GNnaRCLrmQ9QDatK15WvrBBvux6s=";
};
nativeBuildInputs = [ pkg-config ];
diff --git a/pkgs/games/rpg-cli/default.nix b/pkgs/games/rpg-cli/default.nix
new file mode 100644
index 000000000000..1e07c3418fcc
--- /dev/null
+++ b/pkgs/games/rpg-cli/default.nix
@@ -0,0 +1,27 @@
+{ rustPlatform, fetchFromGitHub, lib }:
+
+rustPlatform.buildRustPackage rec {
+ pname = "rpg-cli";
+ version = "unstable-2021-05-27";
+
+ src = fetchFromGitHub {
+ owner = "facundoolano";
+ repo = pname;
+ # certain revision because the Cargo.lock was checked-in in that commit
+ rev = "4d8a1dac79a1d29d79c0c874475037769dcef5a1";
+ sha256 = "sha256-qfj1uij9lYyfyHFUnVi9I0ELOoObjFG2NS9UreC/xio=";
+ };
+
+ cargoSha256 = "sha256-I+rSfuiGFdzA5zqPfvMPcERaQfiX92LW2NKjazWh9c4=";
+
+ # tests assume the authors macbook, and thus fail
+ doCheck = false;
+
+ meta = with lib; {
+ description = "Your filesystem as a dungeon";
+ homepage = "https://github.com/facundoolano/rpg-cli";
+ license = licenses.mit;
+ maintainers = with maintainers; [ legendofmiracles ];
+ mainProgram = "rpg-cli";
+ };
+}
diff --git a/pkgs/games/terraria-server/default.nix b/pkgs/games/terraria-server/default.nix
index b21f1008885d..b5a8c7e486bd 100644
--- a/pkgs/games/terraria-server/default.nix
+++ b/pkgs/games/terraria-server/default.nix
@@ -2,12 +2,12 @@
stdenv.mkDerivation rec {
pname = "terraria-server";
- version = "1.4.2.2";
+ version = "1.4.2.3";
urlVersion = lib.replaceChars [ "." ] [ "" ] version;
src = fetchurl {
- url = "https://terraria.org/system/dedicated_servers/archives/000/000/045/original/terraria-server-${urlVersion}.zip";
- sha256 = "0jz79yidnri6hrqp2aqbi8hg0w3k4nrnfbvxgy5q612fr04g6nsw";
+ url = "https://terraria.org/system/dedicated_servers/archives/000/000/046/original/terraria-server-${urlVersion}.zip";
+ sha256 = "0qm4pbm1d9gax47fk4zhw9rcxvajxs36w7dghirli89i994r7g8j";
};
buildInputs = [ file ];
diff --git a/pkgs/servers/home-assistant/component-packages.nix b/pkgs/servers/home-assistant/component-packages.nix
index 7d1b5e162189..0e952c444deb 100644
--- a/pkgs/servers/home-assistant/component-packages.nix
+++ b/pkgs/servers/home-assistant/component-packages.nix
@@ -701,7 +701,7 @@
"rocketchat" = ps: with ps; [ ]; # missing inputs: rocketchat-API
"roku" = ps: with ps; [ rokuecp ];
"roomba" = ps: with ps; [ roombapy ];
- "roon" = ps: with ps; [ ]; # missing inputs: roonapi
+ "roon" = ps: with ps; [ pyroon ];
"route53" = ps: with ps; [ boto3 ];
"rova" = ps: with ps; [ ]; # missing inputs: rova
"rpi_camera" = ps: with ps; [ ];
diff --git a/pkgs/servers/home-assistant/default.nix b/pkgs/servers/home-assistant/default.nix
index 13413a840753..f0c00550381d 100644
--- a/pkgs/servers/home-assistant/default.nix
+++ b/pkgs/servers/home-assistant/default.nix
@@ -521,6 +521,7 @@ in with py.pkgs; buildPythonApplication rec {
"rmvtransport"
"roku"
"roomba"
+ "roon"
"rss_feed_template"
"ruckus_unleashed"
"safe_mode"
diff --git a/pkgs/servers/matrix-synapse/matrix-appservice-irc/default.nix b/pkgs/servers/matrix-synapse/matrix-appservice-irc/default.nix
index 808e81370bbd..ab92c29ee3dc 100644
--- a/pkgs/servers/matrix-synapse/matrix-appservice-irc/default.nix
+++ b/pkgs/servers/matrix-synapse/matrix-appservice-irc/default.nix
@@ -10,6 +10,8 @@ let
};
in
ourNodePackages."${packageName}".override {
+ pname = "matrix-appservice-irc";
+
nativeBuildInputs = [ makeWrapper nodePackages.node-gyp-build ];
postInstall = ''
diff --git a/pkgs/servers/matrix-synapse/matrix-appservice-slack/default.nix b/pkgs/servers/matrix-synapse/matrix-appservice-slack/default.nix
index 9d21065dc02a..596739a45d73 100644
--- a/pkgs/servers/matrix-synapse/matrix-appservice-slack/default.nix
+++ b/pkgs/servers/matrix-synapse/matrix-appservice-slack/default.nix
@@ -13,6 +13,8 @@ let
};
in
nodePackages.package.override {
+ pname = "matrix-appservice-slack";
+
inherit src;
nativeBuildInputs = [ pkgs.makeWrapper ];
diff --git a/pkgs/servers/monitoring/prometheus/promscale.nix b/pkgs/servers/monitoring/prometheus/promscale.nix
index 81240072d42d..5b0b308c5ec5 100644
--- a/pkgs/servers/monitoring/prometheus/promscale.nix
+++ b/pkgs/servers/monitoring/prometheus/promscale.nix
@@ -5,16 +5,16 @@
buildGoModule rec {
pname = "promscale";
- version = "0.3.0";
+ version = "0.4.1";
src = fetchFromGitHub {
owner = "timescale";
repo = pname;
rev = version;
- sha256 = "sha256-kZYFOuY6FFM35mP+o/YU5SM5H9ziOq9BQ8T1RX7rhGE=";
+ sha256 = "sha256-RdhsQtrD+I8eAgFNr1hvW83Ho22aNhWBX8crCM0b8jU=";
};
- vendorSha256 = "sha256-1VOhDOfFE4BpDR4XfhLoXJFuTDkG1nx88tVvTF3ZVxU=";
+ vendorSha256 = "sha256-82E82O0yaLbu+oSTX7AQoYXFYy3wYVdBCevV7pHZVOA=";
buildFlagsArray = [ "-ldflags=-s -w -X github.com/timescale/promscale/pkg/version.Version=${version} -X github.com/timescale/promscale/pkg/version.CommitHash=${src.rev}" ];
diff --git a/pkgs/servers/mx-puppet-discord/default.nix b/pkgs/servers/mx-puppet-discord/default.nix
index b3b72c2c5f2b..d2606148768d 100644
--- a/pkgs/servers/mx-puppet-discord/default.nix
+++ b/pkgs/servers/mx-puppet-discord/default.nix
@@ -16,7 +16,10 @@ let
};
in myNodePackages.package.override {
+ pname = "mx-puppet-discord";
+
inherit src;
+
nativeBuildInputs = [ nodePackages.node-pre-gyp pkg-config ];
buildInputs = [ libjpeg pixman cairo pango ];
diff --git a/pkgs/servers/web-apps/discourse/action_mailer_ca_cert.patch b/pkgs/servers/web-apps/discourse/action_mailer_ca_cert.patch
index 83c44a466fac..3872eb751406 100644
--- a/pkgs/servers/web-apps/discourse/action_mailer_ca_cert.patch
+++ b/pkgs/servers/web-apps/discourse/action_mailer_ca_cert.patch
@@ -1,5 +1,5 @@
diff --git a/config/environments/production.rb b/config/environments/production.rb
-index 75c3a69512..7fc374cd9d 100644
+index a523888a8d..422c2c1ee8 100644
--- a/config/environments/production.rb
+++ b/config/environments/production.rb
@@ -32,6 +32,7 @@ Discourse::Application.configure do
diff --git a/pkgs/servers/web-apps/discourse/default.nix b/pkgs/servers/web-apps/discourse/default.nix
index 4bcbee1d4283..12ae858ea3a4 100644
--- a/pkgs/servers/web-apps/discourse/default.nix
+++ b/pkgs/servers/web-apps/discourse/default.nix
@@ -1,23 +1,24 @@
-{ stdenv, makeWrapper, runCommandNoCC, lib, nixosTests
-, fetchFromGitHub, bundlerEnv, ruby, replace, gzip, gnutar, git
+{ stdenv, makeWrapper, runCommandNoCC, lib, nixosTests, writeShellScript
+, fetchFromGitHub, bundlerEnv, ruby, replace, gzip, gnutar, git, cacert
, util-linux, gawk, imagemagick, optipng, pngquant, libjpeg, jpegoptim
-, gifsicle, libpsl, redis, postgresql, which, brotli, procps
+, gifsicle, libpsl, redis, postgresql, which, brotli, procps, rsync
, nodePackages, v8
}:
let
- version = "2.6.5";
+ version = "2.7.0";
src = fetchFromGitHub {
owner = "discourse";
repo = "discourse";
rev = "v${version}";
- sha256 = "sha256-JQUgHxs2Cl2LBpg/6JLhZxje4RmPREL1IPta84kXwPw=";
+ sha256 = "sha256-w26pwGDL2j7qbporUzZATgw7E//E6xwahCbXv35QNnc=";
};
runtimeDeps = [
# For backups, themes and assets
rubyEnv.wrappedRuby
+ rsync
gzip
gnutar
git
@@ -65,24 +66,38 @@ let
gems = import ./rubyEnv/gemset.nix;
in
gems // {
- mini_racer = gems.mini_racer // {
- buildInputs = [ v8 ];
- dontBuild = false;
- # The Ruby extension makefile generator assumes the source
- # is C, when it's actually C++ ¯\_(ツ)_/¯
- postPatch = ''
- substituteInPlace ext/mini_racer_extension/extconf.rb \
- --replace '" -std=c++0x"' \
- '" -x c++ -std=c++0x"'
- '';
- };
+ libv8-node =
+ let
+ noopScript = writeShellScript "noop" "exit 0";
+ linkFiles = writeShellScript "link-files" ''
+ cd ../..
+
+ mkdir -p vendor/v8/out.gn/libv8/obj/
+ ln -s "${v8}/lib/libv8.a" vendor/v8/out.gn/libv8/obj/libv8_monolith.a
+
+ ln -s ${v8}/include vendor/v8/include
+
+ mkdir -p ext/libv8-node
+ echo '--- !ruby/object:Libv8::Node::Location::Vendor {}' >ext/libv8-node/.location.yml
+ '';
+ in gems.libv8-node // {
+ dontBuild = false;
+ postPatch = ''
+ cp ${noopScript} libexec/build-libv8
+ cp ${noopScript} libexec/build-monolith
+ cp ${noopScript} libexec/download-node
+ cp ${noopScript} libexec/extract-node
+ cp ${linkFiles} libexec/inject-libv8
+ '';
+ };
mini_suffix = gems.mini_suffix // {
propagatedBuildInputs = [ libpsl ];
dontBuild = false;
# Use our libpsl instead of the vendored one, which isn't
- # available for aarch64
+ # available for aarch64. It has to be called
+ # libpsl.x86_64.so or it isn't found.
postPatch = ''
- cp $(readlink -f ${libpsl}/lib/libpsl.so) vendor/libpsl.so
+ cp $(readlink -f ${libpsl}/lib/libpsl.so) vendor/libpsl.x86_64.so
'';
};
};
@@ -111,6 +126,8 @@ let
# run. This means that Redis and PostgreSQL has to be running and
# database migrations performed.
preBuild = ''
+ export SSL_CERT_FILE=${cacert}/etc/ssl/certs/ca-bundle.crt
+
redis-server >/dev/null &
initdb -A trust $NIX_BUILD_TOP/postgres >/dev/null
diff --git a/pkgs/servers/web-apps/discourse/disable_jhead.patch b/pkgs/servers/web-apps/discourse/disable_jhead.patch
index 709a1959d637..a7ee56ff1855 100644
--- a/pkgs/servers/web-apps/discourse/disable_jhead.patch
+++ b/pkgs/servers/web-apps/discourse/disable_jhead.patch
@@ -1,12 +1,12 @@
diff --git a/lib/file_helper.rb b/lib/file_helper.rb
-index 162de9a40b..9ac8807e9d 100644
+index d87da5a85e..f5323292d7 100644
--- a/lib/file_helper.rb
+++ b/lib/file_helper.rb
-@@ -124,6 +124,7 @@ class FileHelper
- jpegoptim: { strip: strip_image_metadata ? "all" : "none" },
- jpegtran: false,
+@@ -127,6 +127,7 @@ class FileHelper
jpegrecompress: false,
+ # Skip looking for gifsicle, svgo binaries
+ gifsicle: false,
+ jhead: false,
+ svgo: false
)
end
- end
diff --git a/pkgs/servers/web-apps/discourse/rubyEnv/Gemfile b/pkgs/servers/web-apps/discourse/rubyEnv/Gemfile
index cb86d7e4bacf..71ee3f910c0e 100644
--- a/pkgs/servers/web-apps/discourse/rubyEnv/Gemfile
+++ b/pkgs/servers/web-apps/discourse/rubyEnv/Gemfile
@@ -18,13 +18,13 @@ else
# this allows us to include the bits of rails we use without pieces we do not.
#
# To issue a rails update bump the version number here
- gem 'actionmailer', '6.0.3.3'
- gem 'actionpack', '6.0.3.3'
- gem 'actionview', '6.0.3.3'
- gem 'activemodel', '6.0.3.3'
- gem 'activerecord', '6.0.3.3'
- gem 'activesupport', '6.0.3.3'
- gem 'railties', '6.0.3.3'
+ gem 'actionmailer', '6.1.3.2'
+ gem 'actionpack', '6.1.3.2'
+ gem 'actionview', '6.1.3.2'
+ gem 'activemodel', '6.1.3.2'
+ gem 'activerecord', '6.1.3.2'
+ gem 'activesupport', '6.1.3.2'
+ gem 'railties', '6.1.3.2'
gem 'sprockets-rails'
end
@@ -40,7 +40,7 @@ gem 'actionview_precompiler', require: false
gem 'seed-fu'
-gem 'mail', require: false
+gem 'mail', git: 'https://github.com/discourse/mail.git', require: false
gem 'mini_mime'
gem 'mini_suffix'
@@ -96,6 +96,7 @@ gem 'discourse_image_optim', require: 'image_optim'
gem 'multi_json'
gem 'mustache'
gem 'nokogiri'
+gem 'loofah'
gem 'css_parser', require: false
gem 'omniauth'
@@ -132,6 +133,7 @@ gem 'rack-protection' # security
gem 'cbor', require: false
gem 'cose', require: false
gem 'addressable'
+gem 'json_schemer'
# Gems used only for assets and not required in production environments by default.
# Allow everywhere for now cause we are allowing asset debugging in production
@@ -176,6 +178,7 @@ group :development do
gem 'binding_of_caller'
gem 'yaml-lint'
gem 'annotate'
+ gem 'discourse_dev'
end
# this is an optional gem, it provides a high performance replacement
@@ -192,7 +195,6 @@ gem 'htmlentities', require: false
# If you want to amend mini profiler to do the monkey patches in the railties
# we are open to it. by deferring require to the initializer we can configure discourse installs without it
-gem 'flamegraph', require: false
gem 'rack-mini-profiler', require: ['enable_rails_patches']
gem 'unicorn', require: false, platform: :ruby
diff --git a/pkgs/servers/web-apps/discourse/rubyEnv/Gemfile.lock b/pkgs/servers/web-apps/discourse/rubyEnv/Gemfile.lock
index 4f0674932277..d3f999d34f47 100644
--- a/pkgs/servers/web-apps/discourse/rubyEnv/Gemfile.lock
+++ b/pkgs/servers/web-apps/discourse/rubyEnv/Gemfile.lock
@@ -1,21 +1,29 @@
+GIT
+ remote: https://github.com/discourse/mail.git
+ revision: 5b700fc95ee66378e0cf2559abc73c8bc3062a4b
+ specs:
+ mail (2.8.0.edge)
+ mini_mime (>= 0.1.1)
+
GEM
remote: https://rubygems.org/
specs:
- actionmailer (6.0.3.3)
- actionpack (= 6.0.3.3)
- actionview (= 6.0.3.3)
- activejob (= 6.0.3.3)
+ actionmailer (6.1.3.2)
+ actionpack (= 6.1.3.2)
+ actionview (= 6.1.3.2)
+ activejob (= 6.1.3.2)
+ activesupport (= 6.1.3.2)
mail (~> 2.5, >= 2.5.4)
rails-dom-testing (~> 2.0)
- actionpack (6.0.3.3)
- actionview (= 6.0.3.3)
- activesupport (= 6.0.3.3)
- rack (~> 2.0, >= 2.0.8)
+ actionpack (6.1.3.2)
+ actionview (= 6.1.3.2)
+ activesupport (= 6.1.3.2)
+ rack (~> 2.0, >= 2.0.9)
rack-test (>= 0.6.3)
rails-dom-testing (~> 2.0)
rails-html-sanitizer (~> 1.0, >= 1.2.0)
- actionview (6.0.3.3)
- activesupport (= 6.0.3.3)
+ actionview (6.1.3.2)
+ activesupport (= 6.1.3.2)
builder (~> 3.1)
erubi (~> 1.4)
rails-dom-testing (~> 2.0)
@@ -24,44 +32,44 @@ GEM
actionview (>= 6.0.a)
active_model_serializers (0.8.4)
activemodel (>= 3.0)
- activejob (6.0.3.3)
- activesupport (= 6.0.3.3)
+ activejob (6.1.3.2)
+ activesupport (= 6.1.3.2)
globalid (>= 0.3.6)
- activemodel (6.0.3.3)
- activesupport (= 6.0.3.3)
- activerecord (6.0.3.3)
- activemodel (= 6.0.3.3)
- activesupport (= 6.0.3.3)
- activesupport (6.0.3.3)
+ activemodel (6.1.3.2)
+ activesupport (= 6.1.3.2)
+ activerecord (6.1.3.2)
+ activemodel (= 6.1.3.2)
+ activesupport (= 6.1.3.2)
+ activesupport (6.1.3.2)
concurrent-ruby (~> 1.0, >= 1.0.2)
- i18n (>= 0.7, < 2)
- minitest (~> 5.1)
- tzinfo (~> 1.1)
- zeitwerk (~> 2.2, >= 2.2.2)
+ i18n (>= 1.6, < 2)
+ minitest (>= 5.1)
+ tzinfo (~> 2.0)
+ zeitwerk (~> 2.3)
addressable (2.7.0)
public_suffix (>= 2.0.2, < 5.0)
annotate (3.1.1)
activerecord (>= 3.2, < 7.0)
rake (>= 10.4, < 14.0)
- ast (2.4.1)
- aws-eventstream (1.1.0)
- aws-partitions (1.390.0)
- aws-sdk-core (3.109.2)
+ ast (2.4.2)
+ aws-eventstream (1.1.1)
+ aws-partitions (1.432.0)
+ aws-sdk-core (3.112.1)
aws-eventstream (~> 1, >= 1.0.2)
aws-partitions (~> 1, >= 1.239.0)
aws-sigv4 (~> 1.1)
jmespath (~> 1.0)
- aws-sdk-kms (1.39.0)
- aws-sdk-core (~> 3, >= 3.109.0)
+ aws-sdk-kms (1.42.0)
+ aws-sdk-core (~> 3, >= 3.112.0)
aws-sigv4 (~> 1.1)
- aws-sdk-s3 (1.83.2)
- aws-sdk-core (~> 3, >= 3.109.0)
+ aws-sdk-s3 (1.90.0)
+ aws-sdk-core (~> 3, >= 3.112.0)
aws-sdk-kms (~> 1)
aws-sigv4 (~> 1.1)
- aws-sdk-sns (1.35.0)
- aws-sdk-core (~> 3, >= 3.109.0)
+ aws-sdk-sns (1.38.0)
+ aws-sdk-core (~> 3, >= 3.112.0)
aws-sigv4 (~> 1.1)
- aws-sigv4 (1.2.2)
+ aws-sigv4 (1.2.3)
aws-eventstream (~> 1, >= 1.0.2)
barber (0.12.2)
ember-source (>= 1.0, < 3.1)
@@ -70,31 +78,32 @@ GEM
coderay (>= 1.0.0)
erubi (>= 1.0.0)
rack (>= 0.9.0)
- binding_of_caller (0.8.0)
+ binding_of_caller (1.0.0)
debug_inspector (>= 0.0.1)
- bootsnap (1.5.1)
+ bootsnap (1.7.5)
msgpack (~> 1.0)
builder (3.2.4)
- bullet (6.1.0)
+ bullet (6.1.4)
activesupport (>= 3.0.0)
uniform_notifier (~> 1.11)
byebug (11.1.3)
cbor (0.5.9.6)
certified (1.0.0)
- chunky_png (1.3.14)
+ chunky_png (1.4.0)
coderay (1.1.3)
colored2 (3.1.2)
- concurrent-ruby (1.1.7)
- connection_pool (2.2.3)
+ concurrent-ruby (1.1.8)
+ connection_pool (2.2.5)
cose (1.2.0)
cbor (~> 0.5.9)
openssl-signature_algorithm (~> 1.0)
cppjieba_rb (0.3.3)
- crack (0.4.4)
+ crack (0.4.5)
+ rexml
crass (1.0.6)
- css_parser (1.7.1)
+ css_parser (1.9.0)
addressable
- debug_inspector (0.0.3)
+ debug_inspector (1.1.0)
diff-lcs (1.4.4)
diffy (3.4.0)
discourse-ember-rails (0.18.6)
@@ -104,15 +113,19 @@ GEM
ember-source (>= 1.1.0)
jquery-rails (>= 1.0.17)
railties (>= 3.1)
- discourse-ember-source (3.12.2.2)
- discourse-fonts (0.0.5)
+ discourse-ember-source (3.12.2.3)
+ discourse-fonts (0.0.8)
+ discourse_dev (0.2.1)
+ faker (~> 2.16)
discourse_image_optim (0.26.2)
exifr (~> 1.2, >= 1.2.2)
fspath (~> 3.0)
image_size (~> 1.5)
in_threads (~> 1.3)
progress (~> 3.0, >= 3.0.1)
- docile (1.3.2)
+ docile (1.4.0)
+ ecma-re-validator (0.3.0)
+ regexp_parser (~> 2.0)
email_reply_trimmer (0.1.13)
ember-data-source (3.0.2)
ember-source (>= 2, < 3.0)
@@ -121,31 +134,39 @@ GEM
sprockets (>= 3.3, < 4.1)
ember-source (2.18.2)
erubi (1.10.0)
- excon (0.78.0)
- execjs (2.7.0)
+ excon (0.81.0)
+ execjs (2.8.1)
exifr (1.3.9)
- fabrication (2.21.1)
+ fabrication (2.22.0)
+ faker (2.17.0)
+ i18n (>= 1.6, < 2)
fakeweb (1.3.0)
- faraday (1.1.0)
+ faraday (1.4.1)
+ faraday-excon (~> 1.1)
+ faraday-net_http (~> 1.0)
+ faraday-net_http_persistent (~> 1.1)
multipart-post (>= 1.2, < 3)
- ruby2_keywords
+ ruby2_keywords (>= 0.0.4)
+ faraday-excon (1.1.0)
+ faraday-net_http (1.0.1)
+ faraday-net_http_persistent (1.1.0)
fast_blank (1.0.0)
fast_xs (0.8.0)
- fastimage (2.2.0)
- ffi (1.13.1)
- flamegraph (0.9.5)
+ fastimage (2.2.3)
+ ffi (1.15.0)
fspath (3.1.2)
gc_tracer (1.5.1)
globalid (0.4.2)
activesupport (>= 4.2.0)
guess_html_encoding (0.0.11)
+ hana (1.3.7)
hashdiff (1.0.1)
hashie (4.1.0)
highline (2.0.3)
hkdf (0.3.0)
htmlentities (4.3.4)
http_accept_language (2.1.1)
- i18n (1.8.5)
+ i18n (1.8.10)
concurrent-ruby (~> 1.0)
image_size (1.5.0)
in_threads (1.5.4)
@@ -154,13 +175,23 @@ GEM
rails-dom-testing (>= 1, < 3)
railties (>= 4.2.0)
thor (>= 0.14, < 2.0)
- json (2.3.1)
+ json (2.5.1)
json-schema (2.8.1)
addressable (>= 2.4)
- jwt (2.2.2)
+ json_schemer (0.2.18)
+ ecma-re-validator (~> 0.3)
+ hana (~> 1.3)
+ regexp_parser (~> 2.0)
+ uri_template (~> 0.7)
+ jwt (2.2.3)
kgio (2.11.3)
- libv8 (8.4.255.0)
- listen (3.3.1)
+ libv8-node (15.14.0.1)
+ libv8-node (15.14.0.1-arm64-darwin-20)
+ libv8-node (15.14.0.1-x86_64-darwin-18)
+ libv8-node (15.14.0.1-x86_64-darwin-19)
+ libv8-node (15.14.0.1-x86_64-darwin-20)
+ libv8-node (15.14.0.1-x86_64-linux)
+ listen (3.5.1)
rb-fsevent (~> 0.10, >= 0.10.3)
rb-inotify (~> 0.9, >= 0.9.10)
lograge (0.11.2)
@@ -171,49 +202,49 @@ GEM
logstash-event (1.2.02)
logstash-logger (0.26.1)
logstash-event (~> 1.2)
- logster (2.9.4)
- loofah (2.8.0)
+ logster (2.9.6)
+ loofah (2.9.1)
crass (~> 1.0.2)
nokogiri (>= 1.5.9)
lru_redux (1.1.0)
lz4-ruby (0.3.3)
- mail (2.7.1)
- mini_mime (>= 0.1.1)
maxminddb (0.1.22)
- memory_profiler (0.9.14)
- message_bus (3.3.4)
+ memory_profiler (1.0.0)
+ message_bus (3.3.5)
rack (>= 1.1.3)
method_source (1.0.0)
- mini_mime (1.0.2)
- mini_portile2 (2.4.0)
- mini_racer (0.3.1)
- libv8 (~> 8.4.255)
- mini_scheduler (0.12.3)
- sidekiq
- mini_sql (0.3)
- mini_suffix (0.3.0)
+ mini_mime (1.1.0)
+ mini_portile2 (2.5.1)
+ mini_racer (0.4.0)
+ libv8-node (~> 15.14.0.0)
+ mini_scheduler (0.13.0)
+ sidekiq (>= 4.2.3)
+ mini_sql (1.1.3)
+ mini_suffix (0.3.2)
ffi (~> 1.9)
- minitest (5.14.2)
- mocha (1.11.2)
- mock_redis (0.26.0)
- msgpack (1.3.3)
+ minitest (5.14.4)
+ mocha (1.12.0)
+ mock_redis (0.28.0)
+ ruby2_keywords
+ msgpack (1.4.2)
multi_json (1.15.0)
multi_xml (0.6.0)
multipart-post (2.1.1)
mustache (1.1.1)
- nio4r (2.5.4)
- nokogiri (1.10.10)
- mini_portile2 (~> 2.4.0)
- nokogumbo (2.0.2)
+ nio4r (2.5.7)
+ nokogiri (1.11.3)
+ mini_portile2 (~> 2.5.0)
+ racc (~> 1.4)
+ nokogumbo (2.0.5)
nokogiri (~> 1.8, >= 1.8.4)
- oauth (0.5.4)
- oauth2 (1.4.4)
+ oauth (0.5.6)
+ oauth2 (1.4.7)
faraday (>= 0.8, < 2.0)
jwt (>= 1.0, < 3.0)
multi_json (~> 1.3)
multi_xml (~> 0.5)
rack (>= 1.2, < 3)
- oj (3.10.16)
+ oj (3.11.5)
omniauth (1.9.1)
hashie (>= 3.4.6)
rack (>= 1.6.2, < 3)
@@ -222,35 +253,38 @@ GEM
omniauth-github (1.4.0)
omniauth (~> 1.5)
omniauth-oauth2 (>= 1.4.0, < 2.0)
- omniauth-google-oauth2 (0.8.0)
+ omniauth-google-oauth2 (0.8.2)
jwt (>= 2.0)
- omniauth (>= 1.1.1)
+ oauth2 (~> 1.1)
+ omniauth (~> 1.1)
omniauth-oauth2 (>= 1.6)
- omniauth-oauth (1.1.0)
+ omniauth-oauth (1.2.0)
oauth
- omniauth (~> 1.0)
- omniauth-oauth2 (1.7.0)
+ omniauth (>= 1.0, < 3)
+ omniauth-oauth2 (1.7.1)
oauth2 (~> 1.4)
- omniauth (~> 1.9)
+ omniauth (>= 1.9, < 3)
omniauth-twitter (1.4.0)
omniauth-oauth (~> 1.1)
rack
- onebox (2.2.1)
+ onebox (2.2.15)
addressable (~> 2.7.0)
htmlentities (~> 4.3)
multi_json (~> 1.11)
mustache
nokogiri (~> 1.7)
sanitize
- openssl-signature_algorithm (1.0.0)
+ openssl (2.2.0)
+ openssl-signature_algorithm (1.1.1)
+ openssl (~> 2.0)
optimist (3.0.1)
parallel (1.20.1)
- parallel_tests (3.4.0)
+ parallel_tests (3.7.0)
parallel
- parser (2.7.2.0)
+ parser (3.0.1.1)
ast (~> 2.4.1)
pg (1.2.3)
- progress (3.5.2)
+ progress (3.6.0)
pry (0.13.1)
coderay (~> 1.1)
method_source (~> 1.0)
@@ -260,11 +294,12 @@ GEM
pry-rails (0.3.9)
pry (>= 0.10.4)
public_suffix (4.0.6)
- puma (5.0.4)
+ puma (5.3.1)
nio4r (~> 2.0)
r2 (0.2.7)
+ racc (1.5.2)
rack (2.2.3)
- rack-mini-profiler (2.2.0)
+ rack-mini-profiler (2.3.2)
rack (>= 1.2.0)
rack-protection (2.1.0)
rack
@@ -275,23 +310,23 @@ GEM
nokogiri (>= 1.6)
rails-html-sanitizer (1.3.0)
loofah (~> 2.3)
- rails_failover (0.6.2)
+ rails_failover (0.7.3)
activerecord (~> 6.0)
concurrent-ruby
railties (~> 6.0)
- rails_multisite (2.5.0)
+ rails_multisite (3.0.0)
activerecord (> 5.0, < 7)
railties (> 5.0, < 7)
- railties (6.0.3.3)
- actionpack (= 6.0.3.3)
- activesupport (= 6.0.3.3)
+ railties (6.1.3.2)
+ actionpack (= 6.1.3.2)
+ activesupport (= 6.1.3.2)
method_source
rake (>= 0.8.7)
- thor (>= 0.20.3, < 2.0)
+ thor (~> 1.0)
rainbow (3.0.0)
raindrops (0.19.1)
- rake (13.0.1)
- rb-fsevent (0.10.4)
+ rake (13.0.3)
+ rb-fsevent (0.11.0)
rb-inotify (0.10.1)
ffi (~> 1.0)
rbtrace (0.4.14)
@@ -300,72 +335,72 @@ GEM
optimist (>= 3.0.0)
rchardet (1.8.0)
redis (4.2.5)
- redis-namespace (1.8.0)
+ redis-namespace (1.8.1)
redis (>= 3.0.4)
- regexp_parser (2.0.0)
+ regexp_parser (2.1.1)
request_store (1.5.0)
rack (>= 1.4)
- rexml (3.2.4)
+ rexml (3.2.5)
rinku (2.0.6)
rotp (6.2.0)
- rqrcode (1.1.2)
+ rqrcode (2.0.0)
chunky_png (~> 1.0)
- rqrcode_core (~> 0.1)
- rqrcode_core (0.1.2)
+ rqrcode_core (~> 1.0)
+ rqrcode_core (1.0.0)
rspec (3.10.0)
rspec-core (~> 3.10.0)
rspec-expectations (~> 3.10.0)
rspec-mocks (~> 3.10.0)
- rspec-core (3.10.0)
+ rspec-core (3.10.1)
rspec-support (~> 3.10.0)
- rspec-expectations (3.10.0)
+ rspec-expectations (3.10.1)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.10.0)
rspec-html-matchers (0.9.4)
nokogiri (~> 1)
rspec (>= 3.0.0.a, < 4)
- rspec-mocks (3.10.0)
+ rspec-mocks (3.10.2)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.10.0)
- rspec-rails (4.0.1)
- actionpack (>= 4.2)
- activesupport (>= 4.2)
- railties (>= 4.2)
- rspec-core (~> 3.9)
- rspec-expectations (~> 3.9)
- rspec-mocks (~> 3.9)
- rspec-support (~> 3.9)
- rspec-support (3.10.0)
- rswag-specs (2.3.1)
+ rspec-rails (5.0.1)
+ actionpack (>= 5.2)
+ activesupport (>= 5.2)
+ railties (>= 5.2)
+ rspec-core (~> 3.10)
+ rspec-expectations (~> 3.10)
+ rspec-mocks (~> 3.10)
+ rspec-support (~> 3.10)
+ rspec-support (3.10.2)
+ rswag-specs (2.4.0)
activesupport (>= 3.1, < 7.0)
json-schema (~> 2.2)
railties (>= 3.1, < 7.0)
rtlit (0.0.5)
- rubocop (1.4.2)
+ rubocop (1.14.0)
parallel (~> 1.10)
- parser (>= 2.7.1.5)
+ parser (>= 3.0.0.0)
rainbow (>= 2.2.2, < 4.0)
- regexp_parser (>= 1.8)
+ regexp_parser (>= 1.8, < 3.0)
rexml
- rubocop-ast (>= 1.1.1)
+ rubocop-ast (>= 1.5.0, < 2.0)
ruby-progressbar (~> 1.7)
- unicode-display_width (>= 1.4.0, < 2.0)
- rubocop-ast (1.2.0)
- parser (>= 2.7.1.5)
+ unicode-display_width (>= 1.4.0, < 3.0)
+ rubocop-ast (1.5.0)
+ parser (>= 3.0.1.1)
rubocop-discourse (2.4.1)
rubocop (>= 1.1.0)
rubocop-rspec (>= 2.0.0)
- rubocop-rspec (2.0.0)
+ rubocop-rspec (2.3.0)
rubocop (~> 1.0)
rubocop-ast (>= 1.1.0)
- ruby-prof (1.4.2)
- ruby-progressbar (1.10.1)
+ ruby-prof (1.4.3)
+ ruby-progressbar (1.11.0)
ruby-readability (0.7.0)
guess_html_encoding (>= 0.0.4)
nokogiri (>= 1.6.0)
- ruby2_keywords (0.0.2)
+ ruby2_keywords (0.0.4)
rubyzip (2.3.0)
- sanitize (5.2.1)
+ sanitize (5.2.3)
crass (~> 1.0.2)
nokogiri (>= 1.8.0)
nokogumbo (~> 2.0)
@@ -381,18 +416,18 @@ GEM
seed-fu (2.3.9)
activerecord (>= 3.1)
activesupport (>= 3.1)
- shoulda-matchers (4.4.1)
+ shoulda-matchers (4.5.1)
activesupport (>= 4.2.0)
- sidekiq (6.1.2)
+ sidekiq (6.2.1)
connection_pool (>= 2.2.2)
rack (~> 2.0)
redis (>= 4.2.0)
- simplecov (0.20.0)
+ simplecov (0.21.2)
docile (~> 1.1)
simplecov-html (~> 0.11)
simplecov_json_formatter (~> 0.1)
simplecov-html (0.12.3)
- simplecov_json_formatter (0.1.2)
+ simplecov_json_formatter (0.1.3)
sprockets (3.7.2)
concurrent-ruby (~> 1.0)
rack (> 1, < 3)
@@ -401,24 +436,24 @@ GEM
activesupport (>= 4.0)
sprockets (>= 3.0.0)
sshkey (2.0.0)
- stackprof (0.2.16)
- test-prof (0.12.2)
- thor (1.0.1)
- thread_safe (0.3.6)
+ stackprof (0.2.17)
+ test-prof (1.0.5)
+ thor (1.1.0)
tilt (2.0.10)
- tzinfo (1.2.8)
- thread_safe (~> 0.1)
+ tzinfo (2.0.4)
+ concurrent-ruby (~> 1.0)
uglifier (4.2.0)
execjs (>= 0.3.0, < 3)
unf (0.1.4)
unf_ext
unf_ext (0.0.7.7)
- unicode-display_width (1.7.0)
- unicorn (5.7.0)
+ unicode-display_width (2.0.0)
+ unicorn (6.0.0)
kgio (~> 2.6)
raindrops (~> 0.7)
- uniform_notifier (1.13.0)
- webmock (3.10.0)
+ uniform_notifier (1.14.2)
+ uri_template (0.7.0)
+ webmock (3.12.2)
addressable (>= 2.3.6)
crack (>= 0.3.2)
hashdiff (>= 0.4.0, < 2.0.0)
@@ -427,20 +462,25 @@ GEM
jwt (~> 2.0)
xorcist (1.1.2)
yaml-lint (0.0.10)
- zeitwerk (2.4.1)
+ zeitwerk (2.4.2)
PLATFORMS
+ arm64-darwin-20
ruby
+ x86_64-darwin-18
+ x86_64-darwin-19
+ x86_64-darwin-20
+ x86_64-linux
DEPENDENCIES
- actionmailer (= 6.0.3.3)
- actionpack (= 6.0.3.3)
- actionview (= 6.0.3.3)
+ actionmailer (= 6.1.3.2)
+ actionpack (= 6.1.3.2)
+ actionview (= 6.1.3.2)
actionview_precompiler
active_model_serializers (~> 0.8.3)
- activemodel (= 6.0.3.3)
- activerecord (= 6.0.3.3)
- activesupport (= 6.0.3.3)
+ activemodel (= 6.1.3.2)
+ activerecord (= 6.1.3.2)
+ activesupport (= 6.1.3.2)
addressable
annotate
aws-sdk-s3
@@ -461,6 +501,7 @@ DEPENDENCIES
discourse-ember-rails (= 0.18.6)
discourse-ember-source (~> 3.12.2)
discourse-fonts
+ discourse_dev
discourse_image_optim
email_reply_trimmer
ember-handlebars-template (= 0.8.0)
@@ -471,20 +512,21 @@ DEPENDENCIES
fast_blank
fast_xs
fastimage
- flamegraph
gc_tracer
highline
htmlentities
http_accept_language
json
+ json_schemer
listen
lograge
logstash-event
logstash-logger
logster
+ loofah
lru_redux
lz4-ruby
- mail
+ mail!
maxminddb
memory_profiler
message_bus
@@ -518,7 +560,7 @@ DEPENDENCIES
rack-protection
rails_failover
rails_multisite
- railties (= 6.0.3.3)
+ railties (= 6.1.3.2)
rake
rb-fsevent
rbtrace
@@ -558,4 +600,4 @@ DEPENDENCIES
yaml-lint
BUNDLED WITH
- 2.1.4
+ 2.2.16
diff --git a/pkgs/servers/web-apps/discourse/rubyEnv/gemset.nix b/pkgs/servers/web-apps/discourse/rubyEnv/gemset.nix
index b2cf191a4444..4b3ce8ce2192 100644
--- a/pkgs/servers/web-apps/discourse/rubyEnv/gemset.nix
+++ b/pkgs/servers/web-apps/discourse/rubyEnv/gemset.nix
@@ -1,14 +1,14 @@
{
actionmailer = {
- dependencies = ["actionpack" "actionview" "activejob" "mail" "rails-dom-testing"];
+ dependencies = ["actionpack" "actionview" "activejob" "activesupport" "mail" "rails-dom-testing"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1spq0dbfn0qkqg9sq0rsjn360b4j36zly8hawaivkrwr3rsvyz75";
+ sha256 = "1nqdaykzgib8fsldkxdkw0w44jzz4grvb028crzg0qpwvv03g2wp";
type = "gem";
};
- version = "6.0.3.3";
+ version = "6.1.3.2";
};
actionpack = {
dependencies = ["actionview" "activesupport" "rack" "rack-test" "rails-dom-testing" "rails-html-sanitizer"];
@@ -16,10 +16,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1p873nqwmpsvmkb5n86d70wndx1qhy15pc9mbcd1mc8sj174578b";
+ sha256 = "1wdgv5llgbl4nayx5j78lfvhhjssrzfmypb45mjy37mgm8z5l5m5";
type = "gem";
};
- version = "6.0.3.3";
+ version = "6.1.3.2";
};
actionview = {
dependencies = ["activesupport" "builder" "erubi" "rails-dom-testing" "rails-html-sanitizer"];
@@ -27,10 +27,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "08pvmjddlw01q5r9zdfgddwp4csndpf5i2w47677z5r36jznz36q";
+ sha256 = "1r6db2g3fsrca1hp9kbyvjx9psipsxw0g306qharkcblxl8h1ysn";
type = "gem";
};
- version = "6.0.3.3";
+ version = "6.1.3.2";
};
actionview_precompiler = {
dependencies = ["actionview"];
@@ -60,10 +60,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0w54ckvc229iaax879hkhyc93j7z8p0v7acp6mk3h8xjfvmwy5jp";
+ sha256 = "0p80rbahcxhxlkxgf4bh580hbifn9q4gr5g9fy8fd0z5g6gr9xxq";
type = "gem";
};
- version = "6.0.3.3";
+ version = "6.1.3.2";
};
activemodel = {
dependencies = ["activesupport"];
@@ -71,10 +71,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "166jlx6kbby01vr37srh081a9fykgsz873yg5i9gl2ar3vw9gs56";
+ sha256 = "1gpd3hh4ryyr84drj6m0b5sy6929nyf50bfgksw1hpc594542nal";
type = "gem";
};
- version = "6.0.3.3";
+ version = "6.1.3.2";
};
activerecord = {
dependencies = ["activemodel" "activesupport"];
@@ -82,10 +82,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0y2a4ss6ld6yrhpcbcb3kjn5gj6zk9qklp2aq5rl1awl8vbdbdb7";
+ sha256 = "0fg58qma2zgrz0gr61p61qcz8c3h88fd5lbdrkpkm96aq5shwh68";
type = "gem";
};
- version = "6.0.3.3";
+ version = "6.1.3.2";
};
activesupport = {
dependencies = ["concurrent-ruby" "i18n" "minitest" "tzinfo" "zeitwerk"];
@@ -93,10 +93,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1dmkqbvndbz011a1byg6f990936vfadbnwjwjw9vjzr4kd8bxk96";
+ sha256 = "1csxddyhl6k773ycxjvmyshyr4g9jb1icbs3pnm7crnavqs4h1yr";
type = "gem";
};
- version = "6.0.3.3";
+ version = "6.1.3.2";
};
addressable = {
dependencies = ["public_suffix"];
@@ -125,30 +125,30 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1l3468czzjmxl93ap40hp7z94yxp4nbag0bxqs789bm30md90m2a";
+ sha256 = "04nc8x27hlzlrr5c2gn7mar4vdr0apw5xg22wp6m8dx3wqr04a0y";
type = "gem";
};
- version = "2.4.1";
+ version = "2.4.2";
};
aws-eventstream = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0r0pn66yqrdkrfdin7qdim0yj2x75miyg4wp6mijckhzhrjb7cv5";
+ sha256 = "0jfki5ikfr8ln5cdgv4iv1643kax0bjpp29jh78chzy713274jh3";
type = "gem";
};
- version = "1.1.0";
+ version = "1.1.1";
};
aws-partitions = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "17xranmng1mg6238zdmnfvaig82r2ymp2apra9yh5d8rhvn8hkwm";
+ sha256 = "0y0z25hgghy3i8azx0mn8pda2qvd47zkilwjps0x32zn091blzgg";
type = "gem";
};
- version = "1.390.0";
+ version = "1.432.0";
};
aws-sdk-core = {
dependencies = ["aws-eventstream" "aws-partitions" "aws-sigv4" "jmespath"];
@@ -156,10 +156,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "05dq7jfv5qf1y00ib96nqsipf08hflw8n8fwkyjw4qav84wjqaq4";
+ sha256 = "0r5f7pb9dh95f7cb4rdj1z766c88735y6y6msbgzak0v8g8j3dw9";
type = "gem";
};
- version = "3.109.2";
+ version = "3.112.1";
};
aws-sdk-kms = {
dependencies = ["aws-sdk-core" "aws-sigv4"];
@@ -167,10 +167,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0ly1m631qm2ciif7sysbzrgczjvz95ga3g6w6vrzvfdv31jjnl9a";
+ sha256 = "00wgf83cdy6z77b2y0ld0aqiidfyldi71hx0z8b73gxjdlbwpq1i";
type = "gem";
};
- version = "1.39.0";
+ version = "1.42.0";
};
aws-sdk-s3 = {
dependencies = ["aws-sdk-core" "aws-sdk-kms" "aws-sigv4"];
@@ -178,10 +178,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1mld0yh6q6i2nbb143g5xc6gm70sqpvpwxfknlihrd8jmw3xc0bs";
+ sha256 = "0sm1x1pm2wb8gj3p4yv45r7n8m4k3qawk3lrnd2lvk2vg5nyfh61";
type = "gem";
};
- version = "1.83.2";
+ version = "1.90.0";
};
aws-sdk-sns = {
dependencies = ["aws-sdk-core" "aws-sigv4"];
@@ -189,10 +189,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1dw80ldqhb1mny5irgi2jh36hykcmyd07xalv21xncxqzmf8aiag";
+ sha256 = "0cqri14igfmcxlapbagg0nmy79zzg29awzybv51gl76m3mljbafb";
type = "gem";
};
- version = "1.35.0";
+ version = "1.38.0";
};
aws-sigv4 = {
dependencies = ["aws-eventstream"];
@@ -200,10 +200,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1ll9382c1x2hp750cilh01h1cycgyhdr4cmmgx23k94hyyb8chv5";
+ sha256 = "1d9zhmi3mpfzkkpg7yw7s9r1dwk157kh9875j3c7gh6cy95lmmaw";
type = "gem";
};
- version = "1.2.2";
+ version = "1.2.3";
};
barber = {
dependencies = ["ember-source" "execjs"];
@@ -237,10 +237,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "05syqlks7463zsy1jdfbbdravdhj9hpj5pv2m74blqpv8bq4vv5g";
+ sha256 = "078n2dkpgsivcf0pr50981w95nfc2bsrp3wpf9wnxz1qsp8jbb9s";
type = "gem";
};
- version = "0.8.0";
+ version = "1.0.0";
};
bootsnap = {
dependencies = ["msgpack"];
@@ -252,10 +252,10 @@
}];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1qx1f729bgh391agsqb4ngzn22wdn4cc6mkp0cipf0d5hsg9cpaq";
+ sha256 = "12n09iwpssnsfw9s140ynfxr9psd0xcfx42yqdsk0hq60zhq2nlx";
type = "gem";
};
- version = "1.5.1";
+ version = "1.7.5";
};
builder = {
groups = ["default" "development" "test"];
@@ -273,10 +273,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "18ifwnvn13755qkfigapyj5bflpby3phxzbb7x5336d0kzv5k7d9";
+ sha256 = "0r8d3vh1xjfx46qlv75228rkshzgqxpmf491vxzpicpqi1xad5ni";
type = "gem";
};
- version = "6.1.0";
+ version = "6.1.4";
};
byebug = {
groups = ["development" "test"];
@@ -317,10 +317,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1v52ndgx9r4jybq8yzr8anzfbnjk4y2hvz97nm9924wi4bad3xkf";
+ sha256 = "1znw5x86hmm9vfhidwdsijz8m38pqgmv98l9ryilvky0aldv7mc9";
type = "gem";
};
- version = "1.3.14";
+ version = "1.4.0";
};
coderay = {
groups = ["default" "development"];
@@ -351,20 +351,20 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1vnxrbhi7cq3p4y2v9iwd10v1c7l15is4var14hwnb2jip4fyjzz";
+ sha256 = "0mr23wq0szj52xnj0zcn1k0c7j4v79wlwbijkpfcscqww3l6jlg3";
type = "gem";
};
- version = "1.1.7";
+ version = "1.1.8";
};
connection_pool = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1qikl4av1z8kqnk5ba18136dpqzw8wjawc2w9b4zb5psdd5z8nwf";
+ sha256 = "0ffdxhgirgc86qb42yvmfj6v1v0x4lvi0pxn9zhghkff44wzra0k";
type = "gem";
};
- version = "2.2.3";
+ version = "2.2.5";
};
cose = {
dependencies = ["cbor" "openssl-signature_algorithm"];
@@ -388,14 +388,15 @@
version = "0.3.3";
};
crack = {
+ dependencies = ["rexml"];
groups = ["default" "test"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1awi8jy4jn0f7vxpdvz3xvn1zzjbjh33n28lfkijh77dla5zb7lc";
+ sha256 = "1cr1kfpw3vkhysvkk3wg7c54m75kd68mbm9rs5azdjdq57xid13r";
type = "gem";
};
- version = "0.4.4";
+ version = "0.4.5";
};
crass = {
groups = ["default" "development" "test"];
@@ -413,20 +414,20 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "04c4dl8cm5rjr50k9qa6yl9r05fk9zcb1zxh0y0cdahxlsgcydfw";
+ sha256 = "0xs4ind9xd099rb52b73pch8ha143dl8bhivqsbba4wrvxpbx751";
type = "gem";
};
- version = "1.7.1";
+ version = "1.9.0";
};
debug_inspector = {
groups = ["default" "development"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0vxr0xa1mfbkfcrn71n7c4f2dj7la5hvphn904vh20j3x4j5lrx0";
+ sha256 = "01l678ng12rby6660pmwagmyg8nccvjfgs3487xna7ay378a59ga";
type = "gem";
};
- version = "0.0.3";
+ version = "1.1.0";
};
diff-lcs = {
groups = ["default" "development" "test"];
@@ -464,20 +465,31 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0mqkwiqb5n64lc5jdjnmpgb9apq08ywkz9yk8mj1sx2lqcsw11pc";
+ sha256 = "0q4wypjiqvjlwaif5z3pnv0z02rsiysx58d7iljrw8xx9sxwxn6x";
type = "gem";
};
- version = "3.12.2.2";
+ version = "3.12.2.3";
};
discourse-fonts = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0xhwgqclh3jncjr55m0hyq3w3iw8jw2r7ickzq1zn1282pc3n2i7";
+ sha256 = "1gr1d80wmb1jvip82jlbsz5bcpwsz9lryxxfnwiw537vx8pqkk3p";
type = "gem";
};
- version = "0.0.5";
+ version = "0.0.8";
+ };
+ discourse_dev = {
+ dependencies = ["faker"];
+ groups = ["development"];
+ platforms = [];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "1sn2lcgjhsbqnaca97a37bfk249c55b3cn1q8abnf1am9jq5hdiw";
+ type = "gem";
+ };
+ version = "0.2.1";
};
discourse_image_optim = {
dependencies = ["exifr" "fspath" "image_size" "in_threads" "progress"];
@@ -495,10 +507,21 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0qrwiyagxzl8zlx3dafb0ay8l14ib7imb2rsmx70i5cp420v8gif";
+ sha256 = "1lxqxgq71rqwj1lpl9q1mbhhhhhhdkkj7my341f2889pwayk85sz";
type = "gem";
};
- version = "1.3.2";
+ version = "1.4.0";
+ };
+ ecma-re-validator = {
+ dependencies = ["regexp_parser"];
+ groups = ["default"];
+ platforms = [];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "1mz0nsl2093jd94nygw8qs13rwfwl1ax76xz3ypinr5hqbc5pab6";
+ type = "gem";
+ };
+ version = "0.3.0";
};
email_reply_trimmer = {
groups = ["default"];
@@ -561,20 +584,20 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1hi89v53pm2abfv9j8lgqdd7hgkr7fr0gwrczr940iwbb3xv7rrs";
+ sha256 = "19g5nvkycnkzqq4mqn1zjznq9adrlv2jz0dr9w10cbn42hhqpiz7";
type = "gem";
};
- version = "0.78.0";
+ version = "0.81.0";
};
execjs = {
groups = ["assets" "default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1yz55sf2nd3l666ms6xr18sm2aggcvmb8qr3v53lr4rir32y1yp1";
+ sha256 = "121h6af4i6wr3wxvv84y53jcyw2sk71j5wsncm6wq6yqrwcrk4vd";
type = "gem";
};
- version = "2.7.0";
+ version = "2.8.1";
};
exifr = {
groups = ["default"];
@@ -591,10 +614,21 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1pdrl55xf76pbc5kjzp7diawxxvgbk2cm38532in6df823431n6z";
+ sha256 = "1a1zv94hcss44n1b04w0rg0swg8npigrj3nva9h0y2f1iflj124k";
type = "gem";
};
- version = "2.21.1";
+ version = "2.22.0";
+ };
+ faker = {
+ dependencies = ["i18n"];
+ groups = ["default" "development"];
+ platforms = [];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "0z3d4y6xg8prn3zdjw1qpqrnziq1d3zigqil4sxjj0pbr46gc1d6";
+ type = "gem";
+ };
+ version = "2.17.0";
};
fakeweb = {
groups = ["test"];
@@ -607,12 +641,42 @@
version = "1.3.0";
};
faraday = {
- dependencies = ["multipart-post" "ruby2_keywords"];
+ dependencies = ["faraday-excon" "faraday-net_http" "faraday-net_http_persistent" "multipart-post" "ruby2_keywords"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "16dapwi5pivrl25r4lkr1mxjrzkznj4wlcb08fzkmxnj4g5c6y35";
+ sha256 = "0q646m07lfahakx5jdq77j004rcgfj6lkg13c0f84993gi78dhvi";
+ type = "gem";
+ };
+ version = "1.4.1";
+ };
+ faraday-excon = {
+ groups = ["default"];
+ platforms = [];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "0h09wkb0k0bhm6dqsd47ac601qiaah8qdzjh8gvxfd376x1chmdh";
+ type = "gem";
+ };
+ version = "1.1.0";
+ };
+ faraday-net_http = {
+ groups = ["default"];
+ platforms = [];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "1fi8sda5hc54v1w3mqfl5yz09nhx35kglyx72w7b8xxvdr0cwi9j";
+ type = "gem";
+ };
+ version = "1.0.1";
+ };
+ faraday-net_http_persistent = {
+ groups = ["default"];
+ platforms = [];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "0l2c835wl7gv34xp49fhd1bl4czkpw2g3ahqsak2251iqv5589ka";
type = "gem";
};
version = "1.1.0";
@@ -654,10 +718,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "11ny2pj0j6pljszrf1w3iqdv2pcl2iwwghjbgcjlizy424zbh0hb";
+ sha256 = "0lgr0vs9kg5622qaf2l3f37b238dncs037fisiygvkbq8sg11i68";
type = "gem";
};
- version = "2.2.0";
+ version = "2.2.3";
};
ffi = {
groups = ["default" "development" "test"];
@@ -668,20 +732,10 @@
}];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "12lpwaw82bb0rm9f52v1498bpba8aj2l2q359mkwbxsswhpga5af";
+ sha256 = "0nq1fb3vbfylccwba64zblxy96qznxbys5900wd7gm9bpplmf432";
type = "gem";
};
- version = "1.13.1";
- };
- flamegraph = {
- groups = ["default"];
- platforms = [];
- source = {
- remotes = ["https://rubygems.org"];
- sha256 = "1p785nmhdzbwj0qpxn5fzrmr4kgimcds83v4f95f387z6w3050x6";
- type = "gem";
- };
- version = "0.9.5";
+ version = "1.15.0";
};
fspath = {
groups = ["default"];
@@ -728,6 +782,16 @@
};
version = "0.0.11";
};
+ hana = {
+ groups = ["default"];
+ platforms = [];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "03cvrv2wl25j9n4n509hjvqnmwa60k92j741b64a1zjisr1dn9al";
+ type = "gem";
+ };
+ version = "1.3.7";
+ };
hashdiff = {
groups = ["default" "test"];
platforms = [];
@@ -794,10 +858,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "153sx77p16vawrs4qpkv7qlzf9v5fks4g7xqcj1dwk40i6g7rfzk";
+ sha256 = "0g2fnag935zn2ggm5cn6k4s4xvv53v2givj1j90szmvavlpya96a";
type = "gem";
};
- version = "1.8.5";
+ version = "1.8.10";
};
image_size = {
groups = ["default"];
@@ -845,10 +909,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "158fawfwmv2sq4whqqaksfykkiad2xxrrj0nmpnc6vnlzi1bp7iz";
+ sha256 = "0lrirj0gw420kw71bjjlqkqhqbrplla61gbv1jzgsz6bv90qr3ci";
type = "gem";
};
- version = "2.3.1";
+ version = "2.5.1";
};
json-schema = {
dependencies = ["addressable"];
@@ -861,15 +925,26 @@
};
version = "2.8.1";
};
+ json_schemer = {
+ dependencies = ["ecma-re-validator" "hana" "regexp_parser" "uri_template"];
+ groups = ["default"];
+ platforms = [];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "1rkb7gz819g82n3xshb5g8kgv1nvgwg1lm2fk7715pggzcgc4qik";
+ type = "gem";
+ };
+ version = "0.2.18";
+ };
jwt = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "14ynyq1q483spj20ffl4xayfqx1a8qr761mqjfxczf8lwlap392n";
+ sha256 = "036i5fc09275ms49mw43mh4i9pwaap778ra2pmx06ipzyyjl6bfs";
type = "gem";
};
- version = "2.2.2";
+ version = "2.2.3";
};
kgio = {
groups = ["default"];
@@ -887,15 +962,15 @@
};
version = "2.11.3";
};
- libv8 = {
+ libv8-node = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0317sr3nrl51sp844bps71smkrwim3fjn47wdfpbycixnbxspivm";
+ sha256 = "1xx217hrkpcm41p41inmy05kb7g8p9w5fwabgjgmpvz0d60j2862";
type = "gem";
};
- version = "8.4.255.0";
+ version = "15.14.0.1";
};
listen = {
dependencies = ["rb-fsevent" "rb-inotify"];
@@ -903,10 +978,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0028p1fss6pvw4mlpjqdmxfzsm8ww79irsadbibrr7f23qfn8ykr";
+ sha256 = "0h2v34xhi30w0d9gfzds2w6v89grq2gkpgvmdj9m8x1ld1845xnj";
type = "gem";
};
- version = "3.3.1";
+ version = "3.5.1";
};
lograge = {
dependencies = ["actionpack" "activesupport" "railties" "request_store"];
@@ -945,10 +1020,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1ldikj3p0bakxg57didaw05pldjn0i5r20zawhqa34knlsqm66r6";
+ sha256 = "1a65kp9d3n34nnd0vr49s3gxxjzi4l197s3qyq4njjf81smd2764";
type = "gem";
};
- version = "2.9.4";
+ version = "2.9.6";
};
loofah = {
dependencies = ["crass" "nokogiri"];
@@ -956,10 +1031,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0ndimir6k3kfrh8qrb7ir1j836l4r3qlwyclwjh88b86clblhszh";
+ sha256 = "1w9mbii8515p28xd4k72f3ab2g6xiyq15497ys5r8jn6m355lgi7";
type = "gem";
};
- version = "2.8.0";
+ version = "2.9.1";
};
lru_redux = {
groups = ["default"];
@@ -992,11 +1067,13 @@
groups = ["default"];
platforms = [];
source = {
- remotes = ["https://rubygems.org"];
- sha256 = "00wwz6ys0502dpk8xprwcqfwyf3hmnx6lgxaiq6vj43mkx43sapc";
- type = "gem";
+ fetchSubmodules = false;
+ rev = "5b700fc95ee66378e0cf2559abc73c8bc3062a4b";
+ sha256 = "0j084s1gsdwiqvm4jdayi0x4rsdrazqv8z8wkz28v7zmaymw18lz";
+ type = "git";
+ url = "https://github.com/discourse/mail.git";
};
- version = "2.7.1";
+ version = "2.8.0.edge";
};
maxminddb = {
groups = ["default"];
@@ -1017,10 +1094,10 @@
}];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "04ivhv1bilwqm33jv28gar2vwzsichb5nipaq395d3axabv8qmfy";
+ sha256 = "0s8qaf19yr4lhvdxk3cy3ifc47cgxdz2jybg6hzxsy9gh88c1f7v";
type = "gem";
};
- version = "0.9.14";
+ version = "1.0.0";
};
message_bus = {
dependencies = ["rack"];
@@ -1028,10 +1105,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0hckijk9aa628nx66vr7axfsk7zfdkskaxj1mdzikk019q3h54fr";
+ sha256 = "0gg8axd71vjanzis8w4h4if2qi4fx0glmc258dwa5b3z6zvzsbz8";
type = "gem";
};
- version = "3.3.4";
+ version = "3.3.5";
};
method_source = {
groups = ["default" "development" "test"];
@@ -1048,31 +1125,31 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1axm0rxyx3ss93wbmfkm78a6x03l8y4qy60rhkkiq0aza0vwq3ha";
+ sha256 = "0kb7jq3wjgckmkzna799y5qmvn6vg52878bkgw35qay6lflcrwih";
type = "gem";
};
- version = "1.0.2";
+ version = "1.1.0";
};
mini_portile2 = {
groups = ["default" "development" "test"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "15zplpfw3knqifj9bpf604rb3wc1vhq6363pd6lvhayng8wql5vy";
+ sha256 = "0xg1x4708a4pn2wk8qs2d8kfzzdyv9kjjachg2f1phsx62ap2rx2";
type = "gem";
};
- version = "2.4.0";
+ version = "2.5.1";
};
mini_racer = {
- dependencies = ["libv8"];
+ dependencies = ["libv8-node"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0r7j241mvhyyc017bqgp0pvf3jyrwbcqvz2pzm0r8zn2r85ks1jl";
+ sha256 = "0334q46gi3il9izw7k4z32fj06nm8pznqdkr9r51033lnwwy9zy3";
type = "gem";
};
- version = "0.3.1";
+ version = "0.4.0";
};
mini_scheduler = {
dependencies = ["sidekiq"];
@@ -1080,20 +1157,20 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0vigv7f1q5bkcb55ab2lyhq15yqfkg5mq61p7m7mw9b3jac7qjz1";
+ sha256 = "1cy9c2wv19m4h2sv9fs66hh1an7hq3y9513678dzx43vm3kjvhz5";
type = "gem";
};
- version = "0.12.3";
+ version = "0.13.0";
};
mini_sql = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0qi4bj5jkh3673ybsxvsf7y485znyxb72vxg84gk9x65mf0y0m6h";
+ sha256 = "1yvln5wx2jfpd9q2pvjdid96vdz1ynnfk8ip913wpx28wp8ww7jn";
type = "gem";
};
- version = "0.3";
+ version = "1.1.3";
};
mini_suffix = {
dependencies = ["ffi"];
@@ -1101,40 +1178,41 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0bxd1fgzb20gvfvhbkrxym9fr7skm5x6fzvqfg4a0jijb34ww50h";
+ sha256 = "1r6pwyv1vpyza0rn1pyxls4qdw5jd3vg4k5dp1iaqa57n6fiqrvi";
type = "gem";
};
- version = "0.3.0";
+ version = "0.3.2";
};
minitest = {
groups = ["default" "development" "test"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "170y2cvx51gm3cm3nhdf7j36sxnkh6vv8ls36p90ric7w8w16h4v";
+ sha256 = "19z7wkhg59y8abginfrm2wzplz7py3va8fyngiigngqvsws6cwgl";
type = "gem";
};
- version = "5.14.2";
+ version = "5.14.4";
};
mocha = {
groups = ["development" "test"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0hxmkm8qxd04vwj8mqnpyrf2dwy7g1k9zipdfhl4y71cw7ijm9n4";
+ sha256 = "05yw6rwgjppq116jgqfg4pv4bql3ci4r2fmmg0m2c3sqib1bq41a";
type = "gem";
};
- version = "1.11.2";
+ version = "1.12.0";
};
mock_redis = {
+ dependencies = ["ruby2_keywords"];
groups = ["development" "test"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "06yj6j9x4zjckah4ixiwhy3hb6xzjp7yk7lmmcvcb8hpd0z0x95q";
+ sha256 = "0x6ng2p1884pjpwj169p6xyas5bvshi4q1wfcfmxvk82jwm0cz3c";
type = "gem";
};
- version = "0.26.0";
+ version = "0.28.0";
};
msgpack = {
groups = ["default"];
@@ -1145,10 +1223,10 @@
}];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1lva6bkvb4mfa0m3bqn4lm4s4gi81c40jvdcsrxr6vng49q9daih";
+ sha256 = "06iajjyhx0rvpn4yr3h1hc4w4w3k59bdmfhxnjzzh76wsrdxxrc6";
type = "gem";
};
- version = "1.3.3";
+ version = "1.4.2";
};
multi_json = {
groups = ["default"];
@@ -1195,21 +1273,21 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1cbwp1kbv6b2qfxv8sarv0d0ilb257jihlvdqj8f5pdm0ksq1sgk";
+ sha256 = "00fwz0qq7agd2xkdz02i8li236qvwhma3p0jdn5bdvc21b7ydzd5";
type = "gem";
};
- version = "2.5.4";
+ version = "2.5.7";
};
nokogiri = {
- dependencies = ["mini_portile2"];
+ dependencies = ["mini_portile2" "racc"];
groups = ["default" "development" "test"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0xmf60nj5kg9vaj5bysy308687sgmkasgx06vbbnf94p52ih7si2";
+ sha256 = "19d78mdg2lbz9jb4ph6nk783c9jbsdm8rnllwhga6pd53xffp6x0";
type = "gem";
};
- version = "1.10.10";
+ version = "1.11.3";
};
nokogumbo = {
dependencies = ["nokogiri"];
@@ -1217,20 +1295,20 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0sxjnpjvrn10gdmfw2dimhch861lz00f28hvkkz0b1gc2rb65k9s";
+ sha256 = "0ngsnr0l6r4yccdwvky18n9a81plhpviaw6g7ym45mr1q0y0aj2w";
type = "gem";
};
- version = "2.0.2";
+ version = "2.0.5";
};
oauth = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1zszdg8q1b135z7l7crjj234k4j0m347hywp5kj6zsq7q78pw09y";
+ sha256 = "1zwd6v39yqfdrpg1p3d9jvzs9ljg55ana2p06m0l7qn5w0lgx1a0";
type = "gem";
};
- version = "0.5.4";
+ version = "0.5.6";
};
oauth2 = {
dependencies = ["faraday" "jwt" "multi_json" "multi_xml" "rack"];
@@ -1238,20 +1316,20 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1bhakjh30vi8scqwnhd1c9qkac9r8hh2lr0dbs5ynwmrc5djxknm";
+ sha256 = "1q6q2kgpxmygk8kmxqn54zkw8cs57a34zzz5cxpsh1bj3ag06rk3";
type = "gem";
};
- version = "1.4.4";
+ version = "1.4.7";
};
oj = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1xqmzqldi9a0wpilwx87yh61xd7647gg8ffammg4ava0bsx375g2";
+ sha256 = "1cnadm83qwnmbpyild9whb9bgf9r7gs046ydxypclb2l756gcnva";
type = "gem";
};
- version = "3.10.16";
+ version = "3.11.5";
};
omniauth = {
dependencies = ["hashie" "rack"];
@@ -1287,15 +1365,15 @@
version = "1.4.0";
};
omniauth-google-oauth2 = {
- dependencies = ["jwt" "omniauth" "omniauth-oauth2"];
+ dependencies = ["jwt" "oauth2" "omniauth" "omniauth-oauth2"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "17pgqasl048irs2c6w6g57zvk0ygb5ml1krwir4qi4b6y53zyr55";
+ sha256 = "10pnxvb6wpnf58dja3yz4ja527443x3q13hzhcbays4amnnp8i4a";
type = "gem";
};
- version = "0.8.0";
+ version = "0.8.2";
};
omniauth-oauth = {
dependencies = ["oauth" "omniauth"];
@@ -1303,10 +1381,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1n5vk4by7hkyc09d9blrw2argry5awpw4gbw1l4n2s9b3j4qz037";
+ sha256 = "0yw2vzx633p9wpdkd4jxsih6mw604mj7f6myyfikmj4d95c8d9z7";
type = "gem";
};
- version = "1.1.0";
+ version = "1.2.0";
};
omniauth-oauth2 = {
dependencies = ["oauth2" "omniauth"];
@@ -1314,10 +1392,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0v6rw7sd223k7qw0l13wikgfcqbvbk81r53a9i2z0k7jl5vd97w5";
+ sha256 = "10fr2b58sp7l6nfdvxpbi67374hkrvsf507cvda89jjs0jacy319";
type = "gem";
};
- version = "1.7.0";
+ version = "1.7.1";
};
omniauth-twitter = {
dependencies = ["omniauth-oauth" "rack"];
@@ -1336,20 +1414,31 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0b2aih0d5cva9bris36gh1mk3ym61wgxlpwvzjd6qphdrjfzqx8v";
+ sha256 = "0a76xmwikcg2lv8k2cawzhmi2hx7j145v12mbpriby6zff797z4g";
type = "gem";
};
- version = "2.2.1";
+ version = "2.2.15";
};
- openssl-signature_algorithm = {
+ openssl = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0h1pfx49j8d9vbdbi8jyj0mr63l7rhflgvgc0nhfygm1v77d7nkn";
+ sha256 = "03wbynzkhay7l1x76srjkg91q48mxl575vrxb3blfxlpqwsvvp0w";
type = "gem";
};
- version = "1.0.0";
+ version = "2.2.0";
+ };
+ openssl-signature_algorithm = {
+ dependencies = ["openssl"];
+ groups = ["default"];
+ platforms = [];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "173p9agv45hj62fdgl9bzqr9f6xg7hi2sf5iyd3ahiwbv220x332";
+ type = "gem";
+ };
+ version = "1.1.1";
};
optimist = {
groups = ["default"];
@@ -1381,10 +1470,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1mvdk8vgzqjv2pvadxwc8w2vf8dmiw145rjf47c36nn6l5hh02j6";
+ sha256 = "1vrd24lg1pqxvp63664hrndywpdyn8i38j4gfvqk8zjl1mxy9840";
type = "gem";
};
- version = "3.4.0";
+ version = "3.7.0";
};
parser = {
dependencies = ["ast"];
@@ -1392,10 +1481,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1f7gmm60yla325wlnd3qkxs59qm2y0aan8ljpg6k18rwzrrfil6z";
+ sha256 = "1pxsi1i5z506xfzhiyavlasf8777h55ab40phvp7pfv9npmd5pnj";
type = "gem";
};
- version = "2.7.2.0";
+ version = "3.0.1.1";
};
pg = {
groups = ["default"];
@@ -1412,10 +1501,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1pm3bv5n8c8j0vfm7wghd7xf6yq4m068cksxjldmna11qi0h0s8s";
+ sha256 = "0wymdk40cwrqn32gwg1kw94s5p1n0z3n7ma7x1s62gd4vw3d63in";
type = "gem";
};
- version = "3.5.2";
+ version = "3.6.0";
};
pry = {
dependencies = ["coderay" "method_source"];
@@ -1466,10 +1555,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0mkmfbf4qyiknwi9bb5432cpbbz06r855gknxb8grn24gmgs4d9i";
+ sha256 = "00839fhvcq73h9a4crbrk87y6bi2z4vp1zazxihn6w0mrwr51c3i";
type = "gem";
};
- version = "5.0.4";
+ version = "5.3.1";
};
r2 = {
groups = ["default"];
@@ -1481,6 +1570,16 @@
};
version = "0.2.7";
};
+ racc = {
+ groups = ["default" "development" "test"];
+ platforms = [];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "178k7r0xn689spviqzhvazzvxfq6fyjldxb3ywjbgipbfi4s8j1g";
+ type = "gem";
+ };
+ version = "1.5.2";
+ };
rack = {
groups = ["default" "development" "test"];
platforms = [{
@@ -1501,10 +1600,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "05s7y56ayn56bn7y5ah3krm5d53vsj7apmcxlwc2qp7ik0xlypvq";
+ sha256 = "02rkbmi66pqcx8l4yxnhpiywdqhbza4m2i2b457q8imjvw950jhs";
type = "gem";
};
- version = "2.2.0";
+ version = "2.3.2";
};
rack-protection = {
dependencies = ["rack"];
@@ -1556,10 +1655,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0ibxn7lk6rqk7q76cd9ir3xnh19p2pqr9mzam46n3h37f12yyax5";
+ sha256 = "0g3snqmsbdl2jyf2h7q4ds333hizp0j89chca75xv10gv2lq6sa8";
type = "gem";
};
- version = "0.6.2";
+ version = "0.7.3";
};
rails_multisite = {
dependencies = ["activerecord" "railties"];
@@ -1567,10 +1666,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0p7g9gkcmw030zfqlw3k933i40j31wf3jh4bj1niihzk7slha97y";
+ sha256 = "09lwi5pd0bisy45pv85l8w7wm5f7l5bxpva0y7bcvqdrk49ykm1g";
type = "gem";
};
- version = "2.5.0";
+ version = "3.0.0";
};
railties = {
dependencies = ["actionpack" "activesupport" "method_source" "rake" "thor"];
@@ -1578,10 +1677,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "05b79r0ms8jrs91zml1190qfxmnmks90g0sd820ks9msyr8xdp7j";
+ sha256 = "17r1pr8d467vh3zkciw4wmrcixj9zjrvd11nxn2z091bkzf66xq2";
type = "gem";
};
- version = "6.0.3.3";
+ version = "6.1.3.2";
};
rainbow = {
groups = ["default" "development" "test"];
@@ -1614,20 +1713,20 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0w6qza25bq1s825faaglkx1k6d59aiyjjk3yw3ip5sb463mhhai9";
+ sha256 = "1iik52mf9ky4cgs38fp2m8r6skdkq1yz23vh18lk95fhbcxb6a67";
type = "gem";
};
- version = "13.0.1";
+ version = "13.0.3";
};
rb-fsevent = {
groups = ["development" "test"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1k9bsj7ni0g2fd7scyyy1sk9dy2pg9akniahab0iznvjmhn54h87";
+ sha256 = "1qsx9c4jr11vr3a9s5j83avczx9qn9rjaf32gxpc2v451hvbc0is";
type = "gem";
};
- version = "0.10.4";
+ version = "0.11.0";
};
rb-inotify = {
dependencies = ["ffi"];
@@ -1681,20 +1780,20 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "05i6s898z5w31z385cba1683pgg5nnmj4m686cbravg7j4pgbcgv";
+ sha256 = "0k65fr7f8ciq7d9nwc5ziw1d32zsxilgmqdlj3359rz5jgb0f5y8";
type = "gem";
};
- version = "1.8.0";
+ version = "1.8.1";
};
regexp_parser = {
groups = ["default" "development" "test"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1racz3w9s4w0ls32bvjypfifk4a7qxngm2cv1rh16jyz0c1wjd70";
+ sha256 = "0vg7imjnfcqjx7kw94ccj5r78j4g190cqzi1i59sh4a0l940b9cr";
type = "gem";
};
- version = "2.0.0";
+ version = "2.1.1";
};
request_store = {
dependencies = ["rack"];
@@ -1712,10 +1811,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1mkvkcw9fhpaizrhca0pdgjcrbns48rlz4g6lavl5gjjq3rk2sq3";
+ sha256 = "08ximcyfjy94pm1rhcx04ny1vx2sk0x4y185gzn86yfsbzwkng53";
type = "gem";
};
- version = "3.2.4";
+ version = "3.2.5";
};
rinku = {
groups = ["default"];
@@ -1743,20 +1842,20 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "06lw8b6wfshxd61xw98xyp1a0zsz6av4nls2c9fwb7q59wb05sci";
+ sha256 = "073w0qgjydkqpsqsb9yr8qg0mhvwlzx6z53hqr2b5zifvb9wzh02";
type = "gem";
};
- version = "1.1.2";
+ version = "2.0.0";
};
rqrcode_core = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "071jqmhk3hf0grsvi0jx5sl449pf82p40ls5b3likbq4q516zc0j";
+ sha256 = "1djrfpzdy19c336nlzxdsm9qkrgqnm1himdawflsjsmxpq4j826c";
type = "gem";
};
- version = "0.1.2";
+ version = "1.0.0";
};
rspec = {
dependencies = ["rspec-core" "rspec-expectations" "rspec-mocks"];
@@ -1775,10 +1874,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0n2rdv8f26yw8c6asymc0mgddyr5d2b5n6mfvpd3n6lnpf1jdyv2";
+ sha256 = "0wwnfhxxvrlxlk1a3yxlb82k2f9lm0yn0598x7lk8fksaz4vv6mc";
type = "gem";
};
- version = "3.10.0";
+ version = "3.10.1";
};
rspec-expectations = {
dependencies = ["diff-lcs" "rspec-support"];
@@ -1786,10 +1885,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0j37dvnvfbjwj8dqx27yfvz0frl7f2jc1abqg99h0ppriz9za6dc";
+ sha256 = "1sz9bj4ri28adsklnh257pnbq4r5ayziw02qf67wry0kvzazbb17";
type = "gem";
};
- version = "3.10.0";
+ version = "3.10.1";
};
rspec-html-matchers = {
dependencies = ["nokogiri" "rspec"];
@@ -1808,10 +1907,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1pz89y1522i6f8wzrg72ykmch3318ih87nlpl0y1ghsrs5hqymw3";
+ sha256 = "1d13g6kipqqc9lmwz5b244pdwc97z15vcbnbq6n9rlf32bipdz4k";
type = "gem";
};
- version = "3.10.0";
+ version = "3.10.2";
};
rspec-rails = {
dependencies = ["actionpack" "activesupport" "railties" "rspec-core" "rspec-expectations" "rspec-mocks" "rspec-support"];
@@ -1819,20 +1918,20 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0lzik01ziaskgpdpy8knffpw0fsy9151f5lfigyhb89wq4q45hfs";
+ sha256 = "1pj2a9vrkp2xzlq0810q90sdc2zcqc7k92n57hxzhri2vcspy7n6";
type = "gem";
};
- version = "4.0.1";
+ version = "5.0.1";
};
rspec-support = {
groups = ["default" "development" "test"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0j0n28i6zci5j7gg370bdy87dy43hlwx6dw428d9kamf5a0i2klz";
+ sha256 = "15j52parvb8cgvl6s0pbxi2ywxrv6x0764g222kz5flz0s4mycbl";
type = "gem";
};
- version = "3.10.0";
+ version = "3.10.2";
};
rswag-specs = {
dependencies = ["activesupport" "json-schema" "railties"];
@@ -1840,10 +1939,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0lyp2m76p960bvgy4xcz0dilp4w5lq2cwh8md5z7cwxdg8qsbr83";
+ sha256 = "1dma3j5vfjhyclg8y0gsp44vs4wn9chf4jgfhc9r6ws018xrbxzd";
type = "gem";
};
- version = "2.3.1";
+ version = "2.4.0";
};
rtlit = {
groups = ["assets"];
@@ -1861,10 +1960,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1kvzhzhzcdd5bqwjilb0fpp51sqjniww2b0g713n0cvhnlgchn2y";
+ sha256 = "0chjr6i0g7frbp7dhi4d83ppf7akkdaw7mcgcwbxd6a9mairafpp";
type = "gem";
};
- version = "1.4.2";
+ version = "1.14.0";
};
rubocop-ast = {
dependencies = ["parser"];
@@ -1872,10 +1971,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0q0kdi89ad7dd1xmzrdf5ikk32bllzr68hf4x8fd7azcv5jnch2l";
+ sha256 = "0hx4im1a2qpiwipvsl3fma358ixjp4h0mhj56ichq15xrq709qlf";
type = "gem";
};
- version = "1.2.0";
+ version = "1.5.0";
};
rubocop-discourse = {
dependencies = ["rubocop" "rubocop-rspec"];
@@ -1894,10 +1993,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1gl7hdd9lq0si4gb510g33dbysmk3iydas2b0sbl5pwfkhv0k4g1";
+ sha256 = "0r69qcwm74vsbp1s2gaqaf91kkrsn2mv4gk6rvfb2pxzmgyi0r9g";
type = "gem";
};
- version = "2.0.0";
+ version = "2.3.0";
};
ruby-prof = {
groups = ["development"];
@@ -1908,20 +2007,20 @@
}];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1lm3wdxc6gjldkb5pdwwipapf84lgrvxck4h5kg8jdfd8arrpyis";
+ sha256 = "1r3xalp91l07m0cwllcxjzg6nkviiqnxkcbgg5qnzsdji6rgy65m";
type = "gem";
};
- version = "1.4.2";
+ version = "1.4.3";
};
ruby-progressbar = {
groups = ["default" "development" "test"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1k77i0d4wsn23ggdd2msrcwfy0i376cglfqypkk2q77r2l3408zf";
+ sha256 = "02nmaw7yx9kl7rbaan5pl8x5nn0y4j5954mzrkzi9i3dhsrps4nc";
type = "gem";
};
- version = "1.10.1";
+ version = "1.11.0";
};
ruby-readability = {
dependencies = ["guess_html_encoding" "nokogiri"];
@@ -1935,14 +2034,14 @@
version = "0.7.0";
};
ruby2_keywords = {
- groups = ["default"];
+ groups = ["default" "development" "test"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "17pcc0wgvh3ikrkr7bm3nx0qhyiqwidd13ij0fa50k7gsbnr2p0l";
+ sha256 = "15wfcqxyfgka05v2a7kpg64x57gl1y4xzvnc9lh60bqx5sf1iqrs";
type = "gem";
};
- version = "0.0.2";
+ version = "0.0.4";
};
rubyzip = {
groups = ["default"];
@@ -1960,10 +2059,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "18m3zcf207gcrmghx288w3n2kpphc22lbmbc1wdx1nzcn8g2yddh";
+ sha256 = "0xi2c9vbfjs0gk4i9y4mrlb3xx6g5lj22hlg5cx6hyc88ri7j4bc";
type = "gem";
};
- version = "5.2.1";
+ version = "5.2.3";
};
sassc = {
dependencies = ["ffi" "rake"];
@@ -2004,10 +2103,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1wd1bblxr4dfmrnh3j83kvfds6a7nak4ifq37ab0pg1kdi6iiw7l";
+ sha256 = "1qi7gzli00mqlaq9an28m6xd323k7grgq19r6dqa2amjnnxy41ld";
type = "gem";
};
- version = "4.4.1";
+ version = "4.5.1";
};
sidekiq = {
dependencies = ["connection_pool" "rack" "redis"];
@@ -2015,10 +2114,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0mjxrxppv08a1hwqi8gpg6n168cxqhp7c2r2jwc4rbz9j5k41vcw";
+ sha256 = "1ac57q6lnqg9h9lsj49wlwhgsfqfr83lgka1c1srk6g8vghhz662";
type = "gem";
};
- version = "6.1.2";
+ version = "6.2.1";
};
simplecov = {
dependencies = ["docile" "simplecov-html" "simplecov_json_formatter"];
@@ -2026,10 +2125,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1mm20dvd64w46l5k11il9z5sjgdpp0bknml76glcngvl2w03k3cb";
+ sha256 = "1hrv046jll6ad1s964gsmcq4hvkr3zzr6jc7z1mns22mvfpbc3cr";
type = "gem";
};
- version = "0.20.0";
+ version = "0.21.2";
};
simplecov-html = {
groups = ["default" "test"];
@@ -2046,10 +2145,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0cl3j7p3b5q7sxsx1va63c8imc5x6g99xablz08qrmqhpi0d6g6j";
+ sha256 = "19r15hyvh52jx7fmsrcflb58xh8l7l0zx4sxkh3hqzhq68y81pjl";
type = "gem";
};
- version = "0.1.2";
+ version = "0.1.3";
};
sprockets = {
dependencies = ["concurrent-ruby" "rack"];
@@ -2092,40 +2191,30 @@
}];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "147rb66p3n062vc433afqhkd99iazvkrqnghxgh871r62yhha93f";
+ sha256 = "06lz70k8c0r7fyxk1nc3idh14x7nvsr21ydm1bsmbj00jyhmfzsn";
type = "gem";
};
- version = "0.2.16";
+ version = "0.2.17";
};
test-prof = {
groups = ["test"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1jfq8ylxpxanc3f0i6qb3nchawx9hj6qcqj6ccfyixrnvzswwjvi";
+ sha256 = "15jbm45jf1i8s1g5kj6pcfp6ddq9qfyy31lx3pff8g2w2hkhpik4";
type = "gem";
};
- version = "0.12.2";
+ version = "1.0.5";
};
thor = {
groups = ["default" "development" "test"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1xbhkmyhlxwzshaqa7swy2bx6vd64mm0wrr8g3jywvxy7hg0cwkm";
+ sha256 = "18yhlvmfya23cs3pvhr1qy38y41b6mhr5q9vwv5lrgk16wmf3jna";
type = "gem";
};
- version = "1.0.1";
- };
- thread_safe = {
- groups = ["default" "development" "test"];
- platforms = [];
- source = {
- remotes = ["https://rubygems.org"];
- sha256 = "0nmhcgq6cgz44srylra07bmaw99f5271l0dpsvl5f75m44l0gmwy";
- type = "gem";
- };
- version = "0.3.6";
+ version = "1.1.0";
};
tilt = {
groups = ["default"];
@@ -2138,15 +2227,15 @@
version = "2.0.10";
};
tzinfo = {
- dependencies = ["thread_safe"];
+ dependencies = ["concurrent-ruby"];
groups = ["default" "development" "test"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0skr6ih9cr3pwp8l84f0z7fy3q9kiq8hw0sg3zqw0hpbbyj05743";
+ sha256 = "10qp5x7f9hvlc0psv9gsfbxg4a7s0485wsbq1kljkxq94in91l4z";
type = "gem";
};
- version = "1.2.8";
+ version = "2.0.4";
};
uglifier = {
dependencies = ["execjs"];
@@ -2185,10 +2274,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "06i3id27s60141x6fdnjn5rar1cywdwy64ilc59cz937303q3mna";
+ sha256 = "1bilbnc8j6jkb59lrf177i3p1pdyxll0n8400hzqr35vl3r3kv2m";
type = "gem";
};
- version = "1.7.0";
+ version = "2.0.0";
};
unicorn = {
dependencies = ["kgio" "raindrops"];
@@ -2202,20 +2291,30 @@
}];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1qzdhbmab2w034wpdj5ippnyyvgqm8gpx9wbchb4zgs4i1mswzhv";
+ sha256 = "1jcm85d7j7njfgims712svlgml32zjim6qwabm99645aj5laayln";
type = "gem";
};
- version = "5.7.0";
+ version = "6.0.0";
};
uniform_notifier = {
groups = ["default" "development"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0vm4aix8jmv42s1x58m3lj3xwkbxyn9qn6lzhhig0d1j8fv6j30c";
+ sha256 = "1614dqnky0f9f1znj0lih8i184vfps86md93dw0kxrg3af9gnqb4";
type = "gem";
};
- version = "1.13.0";
+ version = "1.14.2";
+ };
+ uri_template = {
+ groups = ["default"];
+ platforms = [];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "0p8qbxlpmg3msw0ihny6a3gsn0yvydx9ksh5knn8dnq06zhqyb1i";
+ type = "gem";
+ };
+ version = "0.7.0";
};
webmock = {
dependencies = ["addressable" "crack" "hashdiff"];
@@ -2223,10 +2322,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0wbdjagk2qpr76k3zw2gmkfp5aqlrc1a4qrpjv7sq1q39qbn8xax";
+ sha256 = "038igpmkpmn0nw0k7s4db8x88af1nwcy7wzh9m9c9q4p74h7rii0";
type = "gem";
};
- version = "3.10.0";
+ version = "3.12.2";
};
webpush = {
dependencies = ["hkdf" "jwt"];
@@ -2264,9 +2363,9 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "12n0hiawqayzchi0yga5n19hi63b2snd49fv3n23n2i4pp05jzrp";
+ sha256 = "1746czsjarixq0x05f7p3hpzi38ldg6wxnxxw74kbjzh1sdjgmpl";
type = "gem";
};
- version = "2.4.1";
+ version = "2.4.2";
};
}
diff --git a/pkgs/servers/web-apps/discourse/unicorn_logging_and_timeout.patch b/pkgs/servers/web-apps/discourse/unicorn_logging_and_timeout.patch
index 1dbfed679192..d78b511f6ad9 100644
--- a/pkgs/servers/web-apps/discourse/unicorn_logging_and_timeout.patch
+++ b/pkgs/servers/web-apps/discourse/unicorn_logging_and_timeout.patch
@@ -1,10 +1,10 @@
diff --git a/config/unicorn.conf.rb b/config/unicorn.conf.rb
-index 373e235b3f..57d4d7a55b 100644
+index ffcafcb618..31ba691983 100644
--- a/config/unicorn.conf.rb
+++ b/config/unicorn.conf.rb
@@ -27,18 +27,10 @@ pid (ENV["UNICORN_PID_PATH"] || "#{discourse_path}/tmp/pids/unicorn.pid")
- if ENV["RAILS_ENV"] == "development" || !ENV["RAILS_ENV"]
+ if ENV["RAILS_ENV"] != "production"
logger Logger.new($stdout)
- # we want a longer timeout in dev cause first request can be really slow
- timeout (ENV["UNICORN_TIMEOUT"] && ENV["UNICORN_TIMEOUT"].to_i || 60)
diff --git a/pkgs/shells/nushell/default.nix b/pkgs/shells/nushell/default.nix
index a03e3eb3df56..06ff6011d263 100644
--- a/pkgs/shells/nushell/default.nix
+++ b/pkgs/shells/nushell/default.nix
@@ -17,16 +17,16 @@
rustPlatform.buildRustPackage rec {
pname = "nushell";
- version = "0.30.0";
+ version = "0.31.0";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = version;
- sha256 = "104zrj15kmc0a698dc8dxbzhg1rjqn38v3wqcwg2xiickglpgd5f";
+ sha256 = "1dpbc6m0pxizkh4r02nw1i1fx9v43llylqnd28naqkklwc15pb2w";
};
- cargoSha256 = "1c6yhkj1hyr82y82nff6gy9kq9z0mbq3ivlq8rir10pnqy4j5791";
+ cargoSha256 = "1znqac3s48ah9a7zpqdgw0lvvhklryj2j7mym65myzjbn1g264rm";
nativeBuildInputs = [ pkg-config ]
++ lib.optionals (withStableFeatures && stdenv.isLinux) [ python3 ];
diff --git a/pkgs/tools/X11/xpra/default.nix b/pkgs/tools/X11/xpra/default.nix
index 8fd0cf016bf4..c3cea1ed0612 100644
--- a/pkgs/tools/X11/xpra/default.nix
+++ b/pkgs/tools/X11/xpra/default.nix
@@ -1,12 +1,13 @@
{ lib
, fetchurl
, fetchpatch
-, substituteAll, python3, pkg-config, writeText
+, substituteAll, python3, pkg-config, runCommand, writeText
, xorg, gtk3, glib, pango, cairo, gdk-pixbuf, atk, pandoc
, wrapGAppsHook, xorgserver, getopt, xauth, util-linux, which
, ffmpeg, x264, libvpx, libwebp, x265, librsvg
, libfakeXinerama
, gst_all_1, pulseaudio, gobject-introspection
+, withNvenc ? false, cudatoolkit, nv-codec-headers-10, nvidia_x11 ? null
, pam }:
with lib;
@@ -34,6 +35,13 @@ let
EndSection
'';
+ nvencHeaders = runCommand "nvenc-headers" {
+ inherit nvidia_x11;
+ } ''
+ mkdir -p $out/include $out/lib/pkgconfig
+ cp ${nv-codec-headers-10}/include/ffnvcodec/nvEncodeAPI.h $out/include
+ substituteAll ${./nvenc.pc} $out/lib/pkgconfig/nvenc.pc
+ '';
in buildPythonApplication rec {
pname = "xpra";
version = "4.2";
@@ -60,7 +68,8 @@ in buildPythonApplication rec {
substituteInPlace setup.py --replace '/usr/include/security' '${pam}/include/security'
'';
- nativeBuildInputs = [ pkg-config wrapGAppsHook pandoc ];
+ nativeBuildInputs = [ pkg-config wrapGAppsHook pandoc ]
+ ++ lib.optional withNvenc cudatoolkit;
buildInputs = with xorg; [
libX11 xorgproto libXrender libXi
libXtst libXfixes libXcomposite libXdamage
@@ -81,13 +90,13 @@ in buildPythonApplication rec {
pam
gobject-introspection
- ];
+ ] ++ lib.optional withNvenc nvencHeaders;
propagatedBuildInputs = with python3.pkgs; [
pillow rencode pycrypto cryptography pycups lz4 dbus-python
netifaces numpy pygobject3 pycairo gst-python pam
pyopengl paramiko opencv4 python-uinput pyxdg
ipaddress idna pyinotify
- ];
+ ] ++ lib.optionals withNvenc (with python3.pkgs; [pynvml pycuda]);
# error: 'import_cairo' defined but not used
NIX_CFLAGS_COMPILE = "-Wno-error=unused-function";
@@ -100,7 +109,7 @@ in buildPythonApplication rec {
# Override these, setup.py checks for headers in /usr/* paths
"--with-pam"
"--with-vsock"
- ];
+ ] ++ lib.optional withNvenc "--with-nvenc";
dontWrapGApps = true;
preFixup = ''
@@ -111,6 +120,9 @@ in buildPythonApplication rec {
--set XPRA_XKB_CONFIG_ROOT "${xorg.xkeyboardconfig}/share/X11/xkb"
--prefix LD_LIBRARY_PATH : ${libfakeXinerama}/lib
--prefix PATH : ${lib.makeBinPath [ getopt xorgserver xauth which util-linux pulseaudio ]}
+ '' + lib.optionalString withNvenc ''
+ --prefix LD_LIBRARY_PATH : ${nvidia_x11}/lib
+ '' + ''
)
'';
diff --git a/pkgs/tools/X11/xpra/nvenc.pc b/pkgs/tools/X11/xpra/nvenc.pc
new file mode 100644
index 000000000000..6d8d916a0251
--- /dev/null
+++ b/pkgs/tools/X11/xpra/nvenc.pc
@@ -0,0 +1,11 @@
+prefix=@out@
+includedir=${prefix}/include
+libdir=@nvidia_x11@/lib
+
+Name: nvenc
+Description: NVENC
+Version: 10
+Requires:
+Conflicts:
+Libs: -L${libdir} -lnvidia-encode
+Cflags: -I${includedir}
diff --git a/pkgs/tools/audio/spotdl/default.nix b/pkgs/tools/audio/spotdl/default.nix
index 9306c516af51..38f69b4d2b77 100644
--- a/pkgs/tools/audio/spotdl/default.nix
+++ b/pkgs/tools/audio/spotdl/default.nix
@@ -6,13 +6,13 @@
python3.pkgs.buildPythonApplication rec {
pname = "spotdl";
- version = "3.5.2";
+ version = "3.6.1";
src = fetchFromGitHub {
owner = "spotDL";
repo = "spotify-downloader";
rev = "v${version}";
- sha256 = "sha256-V9jIA+ULjZRj+uVy4Yh55PapPiqFy9I9ZVln1nt/bJw=";
+ sha256 = "sha256-F3bP8f1LtcFZL7qahYkCUvhtc27fcL8WBnmyLcS9lCY=";
};
propagatedBuildInputs = with python3.pkgs; [
@@ -25,6 +25,7 @@ python3.pkgs.buildPythonApplication rec {
tqdm
beautifulsoup4
requests
+ unidecode
];
checkInputs = with python3.pkgs; [
diff --git a/pkgs/tools/audio/yabridge/default.nix b/pkgs/tools/audio/yabridge/default.nix
index 375ce985819c..048cac40972d 100644
--- a/pkgs/tools/audio/yabridge/default.nix
+++ b/pkgs/tools/audio/yabridge/default.nix
@@ -1,7 +1,6 @@
{ lib
, stdenv
, fetchFromGitHub
-, fetchpatch
, substituteAll
, meson
, ninja
@@ -58,14 +57,14 @@ let
};
in stdenv.mkDerivation rec {
pname = "yabridge";
- version = "3.1.0";
+ version = "3.2.0";
# NOTE: Also update yabridgectl's cargoHash when this is updated
src = fetchFromGitHub {
owner = "robbert-vdh";
repo = pname;
rev = version;
- hash = "sha256-xvKjb+ql3WxnGHqcn3WnxunY5+s9f8Gt/n6EFSBrNdI=";
+ hash = "sha256-UT6st0Rc6HOaObE3N+qlPZZ8U1gl/MFLU0mjFuScdes=";
};
# Unpack subproject sources
@@ -80,16 +79,6 @@ in stdenv.mkDerivation rec {
)'';
patches = [
- # Fix printing wine version when using absolute path (remove patches in next release):
- (fetchpatch {
- url = "https://github.com/robbert-vdh/yabridge/commit/2aadf5256b3eafeb86efa8626247972dd33baa13.patch";
- sha256 = "sha256-Nq9TQJxa22vJLmf+USyPBkF8cKyEzb1Lp2Rx86pDxnY=";
- })
- (fetchpatch {
- url = "https://github.com/robbert-vdh/yabridge/commit/93df3fa1da6ffcc69a5b384ba04e3da7c5ef23ef.patch";
- sha256 = "sha256-//8Dxolqe6n+aFo4yVnnMR9kSq/iEFE0qZPvcIBehvI=";
- })
-
# Hard code wine path so wine version is correct in logs
(substituteAll {
src = ./hardcode-wine.patch;
@@ -130,11 +119,13 @@ in stdenv.mkDerivation rec {
];
installPhase = ''
+ runHook preInstall
mkdir -p "$out/bin" "$out/lib"
cp yabridge-group.exe{,.so} "$out/bin"
cp yabridge-host.exe{,.so} "$out/bin"
cp libyabridge-vst2.so "$out/lib"
cp libyabridge-vst3.so "$out/lib"
+ runHook postInstall
'';
# Hard code wine path in wrapper scripts generated by winegcc
diff --git a/pkgs/tools/audio/yabridgectl/default.nix b/pkgs/tools/audio/yabridgectl/default.nix
index 4f88e58f0af9..4f738310d85c 100644
--- a/pkgs/tools/audio/yabridgectl/default.nix
+++ b/pkgs/tools/audio/yabridgectl/default.nix
@@ -11,7 +11,7 @@ rustPlatform.buildRustPackage rec {
src = yabridge.src;
sourceRoot = "source/tools/yabridgectl";
- cargoHash = "sha256-TcjFaDo5IUs6Z3tgb+6jqyyrB2BLcif6Ycw++5FzuDY=";
+ cargoHash = "sha256-cB4Xp8pNLQRcPQ6HtVkDkLbfNSmM9yl+oRcEzcqrmkY=";
patches = [
# By default, yabridgectl locates libyabridge.so by using
diff --git a/pkgs/tools/graphics/feedgnuplot/default.nix b/pkgs/tools/graphics/feedgnuplot/default.nix
index 02bb022dfb47..51d3e1e868da 100644
--- a/pkgs/tools/graphics/feedgnuplot/default.nix
+++ b/pkgs/tools/graphics/feedgnuplot/default.nix
@@ -1,5 +1,6 @@
{ lib, fetchFromGitHub, makeWrapper, gawk
, makeFontsConf, freefont_ttf, gnuplot, perl, perlPackages
+, stdenv, shortenPerlShebang
}:
let
@@ -10,18 +11,18 @@ in
perlPackages.buildPerlPackage rec {
pname = "feedgnuplot";
- version = "1.51";
+ version = "1.58";
src = fetchFromGitHub {
owner = "dkogan";
repo = "feedgnuplot";
rev = "v${version}";
- sha256 = "0npk2l032cnmibjj5zf3ii09mpxciqn32lx6g5bal91bkxwn7r5i";
+ sha256 = "1qix4lwwyhqibz0a6q2rrb497rmk00v1fvmdyinj0dqmgjw155zr";
};
outputs = [ "out" ];
- nativeBuildInputs = [ makeWrapper gawk ];
+ nativeBuildInputs = [ makeWrapper gawk ] ++ lib.optional stdenv.isDarwin shortenPerlShebang;
buildInputs = [ gnuplot perl ]
++ (with perlPackages; [ ListMoreUtils IPCRun StringShellQuote ]);
@@ -36,7 +37,9 @@ perlPackages.buildPerlPackage rec {
# Tests require gnuplot 4.6.4 and are completely skipped with gnuplot 5.
doCheck = false;
- postInstall = ''
+ postInstall = lib.optionalString stdenv.isDarwin ''
+ shortenPerlShebang $out/bin/feedgnuplot
+ '' + ''
wrapProgram $out/bin/feedgnuplot \
--prefix "PATH" ":" "$PATH" \
--prefix "PERL5LIB" ":" "$PERL5LIB"
diff --git a/pkgs/tools/misc/bkyml/default.nix b/pkgs/tools/misc/bkyml/default.nix
new file mode 100644
index 000000000000..aea83e7c99ff
--- /dev/null
+++ b/pkgs/tools/misc/bkyml/default.nix
@@ -0,0 +1,45 @@
+{ lib
+, python3
+}:
+
+with python3.pkgs;
+
+buildPythonApplication rec {
+ pname = "bkyml";
+ version = "1.4.3";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "01kpx35572mp4xl2fjyvfk39jfgfjcyzymbifk76891kaqkjb7r9";
+ };
+
+ # The pyscaffold is not a runtime dependency but just a python project bootstrapping tool. Thus,
+ # instead of implement this package in nix we remove a dependency on it and fix up the version
+ # of the package, that has been affected by the pyscaffold package dependency removal.
+ postPatch = ''
+ substituteInPlace setup.py \
+ --replace "['pyscaffold>=3.0a0,<3.1a0'] + " "" \
+ --replace "use_pyscaffold=True" ""
+ substituteInPlace src/bkyml/skeleton.py --replace \
+ "from bkyml import __version__" \
+ "__version__ = \"${version}\""
+ '';
+
+ # Don't run tests because they are broken when run within
+ # buildPythonApplication for reasons I don't quite understand.
+ doCheck = false;
+
+ pythonImportsCheck = [ "bkyml" ];
+
+ propagatedBuildInputs = [
+ ruamel_yaml
+ setuptools
+ ];
+
+ meta = with lib; {
+ homepage = "https://github.com/joscha/bkyml";
+ description = "A CLI tool to generate a pipeline.yaml file for Buildkite on the fly.";
+ license = licenses.mit;
+ maintainers = with maintainers; [ olebedev ];
+ };
+}
diff --git a/pkgs/tools/misc/diffoscope/default.nix b/pkgs/tools/misc/diffoscope/default.nix
index f59e8bb430a1..21a02f1e99c7 100644
--- a/pkgs/tools/misc/diffoscope/default.nix
+++ b/pkgs/tools/misc/diffoscope/default.nix
@@ -16,11 +16,11 @@ let
in
python3Packages.buildPythonApplication rec {
pname = "diffoscope";
- version = "175";
+ version = "176";
src = fetchurl {
url = "https://diffoscope.org/archive/diffoscope-${version}.tar.bz2";
- sha256 = "sha256-ofRu5bD+kymdXdViPxfGD/2cf7lUvnEQfYAqog5GIIk=";
+ sha256 = "sha256-Hr3GNgpvKCLs+HA8QLOewh5nz9npZr5MZ65wRrat7l0=";
};
outputs = [ "out" "man" ];
@@ -35,10 +35,6 @@ python3Packages.buildPythonApplication rec {
# When generating manpage, use the installed version
substituteInPlace doc/Makefile --replace "../bin" "$out/bin"
-
- # https://salsa.debian.org/reproducible-builds/diffoscope/-/issues/258
- substituteInPlace tests/data/mp3_expected_diff \
- --replace " Stream" "Stream"
'';
nativeBuildInputs = [ docutils help2man installShellFiles ];
diff --git a/pkgs/tools/misc/goreleaser/default.nix b/pkgs/tools/misc/goreleaser/default.nix
index c4fc87967fd7..fb7bb2f9648d 100644
--- a/pkgs/tools/misc/goreleaser/default.nix
+++ b/pkgs/tools/misc/goreleaser/default.nix
@@ -2,16 +2,16 @@
buildGoModule rec {
pname = "goreleaser";
- version = "0.165.0";
+ version = "0.166.0";
src = fetchFromGitHub {
owner = "goreleaser";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-xffxpEOEWnh3FtK5JYX38kMkKWQHWrdAXShbVDrW+lE=";
+ sha256 = "sha256-4D8KiTGuiJ0y1w3NdWcOs5q61kuIIZ49ys18wMb3fXI=";
};
- vendorSha256 = "sha256-9CO5dHp/RHygp4YXCJM/XPvFcNQGHu1Gx3bhxlQ0Quk=";
+ vendorSha256 = "sha256-UI/cz9xZYi6BU/4MK/Qup55Kc1yv6DQHCEJM/I5oMec=";
buildFlagsArray = [
"-ldflags="
diff --git a/pkgs/tools/misc/tmuxinator/default.nix b/pkgs/tools/misc/tmuxinator/default.nix
index 5ed63d799793..c3ceae7a0bd3 100644
--- a/pkgs/tools/misc/tmuxinator/default.nix
+++ b/pkgs/tools/misc/tmuxinator/default.nix
@@ -8,8 +8,8 @@ buildRubyGem rec {
inherit ruby;
name = "${gemName}-${version}";
gemName = "tmuxinator";
- version = "2.0.2";
- source.sha256 = "0wwrgx1syi3zrwn52pblh7qivyxp3cvq0rywp6n0s2bkk0xz903z";
+ version = "2.0.3";
+ source.sha256 = "0js43hl07is9nx1b17g8x2blh1q7ls8y4dshcb50r5dn7drpardh";
erubis = buildRubyGem rec {
inherit ruby;
diff --git a/pkgs/tools/networking/corerad/default.nix b/pkgs/tools/networking/corerad/default.nix
index a7e5026d83af..f5b0875e6ffb 100644
--- a/pkgs/tools/networking/corerad/default.nix
+++ b/pkgs/tools/networking/corerad/default.nix
@@ -2,16 +2,16 @@
buildGoModule rec {
pname = "corerad";
- version = "0.3.0";
+ version = "0.3.1";
src = fetchFromGitHub {
owner = "mdlayher";
repo = "corerad";
rev = "v${version}";
- sha256 = "1q4wcliifas8xvwy7kcq4fbc1iv7dha3k6j1nbwl7pjqmyggs3f4";
+ sha256 = "0ky4zfmxzgxidsizfj2lwm5z3zl666khw9cgsxfgbzn3cjgr33c3";
};
- vendorSha256 = "07khxs15z9xzcmp4gyggdwqyz361y96h6ib92qax8k83cr0l494p";
+ vendorSha256 = "0ddni8hl8fv0m9kinwfnhcj3k51fk8h61yksv7ws6agdx0bl1rwh";
doCheck = false;
diff --git a/pkgs/tools/package-management/cargo-deb/default.nix b/pkgs/tools/package-management/cargo-deb/default.nix
index 4ed3b21b64b8..5a1e621d12a0 100644
--- a/pkgs/tools/package-management/cargo-deb/default.nix
+++ b/pkgs/tools/package-management/cargo-deb/default.nix
@@ -9,18 +9,18 @@
rustPlatform.buildRustPackage rec {
pname = "cargo-deb";
- version = "1.29.2";
+ version = "1.30.0";
src = fetchFromGitHub {
owner = "mmstick";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-2eOWhxKZ+YPj5oKTe5g7PyeakiSNnPz27dK150GAcVQ=";
+ sha256 = "sha256-rAmG6Aj0D9dHVueh1BN1Chhit+XFhqGib1WTvMDy0LI=";
};
buildInputs = lib.optionals stdenv.isDarwin [ libiconv Security ];
- cargoSha256 = "sha256-QmchuY+4R7w0zMOdReH1m8idl9RI1hHE9VtbwT2K9YM=";
+ cargoSha256 = "sha256-MEpyEdjLWNZvqE7gJLvQ169tgmJRzec4vqQI9fF3xr8=";
preCheck = ''
substituteInPlace tests/command.rs \
diff --git a/pkgs/tools/security/b3sum/cargo-lock.patch b/pkgs/tools/security/b3sum/cargo-lock.patch
deleted file mode 100644
index 1f8494089477..000000000000
--- a/pkgs/tools/security/b3sum/cargo-lock.patch
+++ /dev/null
@@ -1,513 +0,0 @@
-diff --git a/Cargo.lock b/Cargo.lock
-new file mode 100644
-index 0000000..1dff162
---- /dev/null
-+++ b/Cargo.lock
-@@ -0,0 +1,507 @@
-+# This file is automatically @generated by Cargo.
-+# It is not intended for manual editing.
-+[[package]]
-+name = "ansi_term"
-+version = "0.11.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b"
-+dependencies = [
-+ "winapi",
-+]
-+
-+[[package]]
-+name = "anyhow"
-+version = "1.0.34"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "bf8dcb5b4bbaa28653b647d8c77bd4ed40183b48882e130c1f1ffb73de069fd7"
-+
-+[[package]]
-+name = "arrayref"
-+version = "0.3.6"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544"
-+
-+[[package]]
-+name = "arrayvec"
-+version = "0.5.2"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b"
-+
-+[[package]]
-+name = "atty"
-+version = "0.2.14"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
-+dependencies = [
-+ "hermit-abi",
-+ "libc",
-+ "winapi",
-+]
-+
-+[[package]]
-+name = "autocfg"
-+version = "1.0.1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
-+
-+[[package]]
-+name = "b3sum"
-+version = "0.3.7"
-+dependencies = [
-+ "anyhow",
-+ "blake3",
-+ "clap",
-+ "duct",
-+ "hex",
-+ "memmap",
-+ "rayon",
-+ "tempfile",
-+ "wild",
-+]
-+
-+[[package]]
-+name = "bitflags"
-+version = "1.2.1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
-+
-+[[package]]
-+name = "blake3"
-+version = "0.3.7"
-+dependencies = [
-+ "arrayref",
-+ "arrayvec",
-+ "cc",
-+ "cfg-if 0.1.10",
-+ "constant_time_eq",
-+ "crypto-mac",
-+ "digest",
-+ "rayon",
-+]
-+
-+[[package]]
-+name = "cc"
-+version = "1.0.62"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "f1770ced377336a88a67c473594ccc14eca6f4559217c34f64aac8f83d641b40"
-+
-+[[package]]
-+name = "cfg-if"
-+version = "0.1.10"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
-+
-+[[package]]
-+name = "cfg-if"
-+version = "1.0.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
-+
-+[[package]]
-+name = "clap"
-+version = "2.33.3"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "37e58ac78573c40708d45522f0d80fa2f01cc4f9b4e2bf749807255454312002"
-+dependencies = [
-+ "ansi_term",
-+ "atty",
-+ "bitflags",
-+ "strsim",
-+ "textwrap",
-+ "unicode-width",
-+ "vec_map",
-+]
-+
-+[[package]]
-+name = "const_fn"
-+version = "0.4.3"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "c478836e029dcef17fb47c89023448c64f781a046e0300e257ad8225ae59afab"
-+
-+[[package]]
-+name = "constant_time_eq"
-+version = "0.1.5"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
-+
-+[[package]]
-+name = "crossbeam-channel"
-+version = "0.5.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "dca26ee1f8d361640700bde38b2c37d8c22b3ce2d360e1fc1c74ea4b0aa7d775"
-+dependencies = [
-+ "cfg-if 1.0.0",
-+ "crossbeam-utils",
-+]
-+
-+[[package]]
-+name = "crossbeam-deque"
-+version = "0.8.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "94af6efb46fef72616855b036a624cf27ba656ffc9be1b9a3c931cfc7749a9a9"
-+dependencies = [
-+ "cfg-if 1.0.0",
-+ "crossbeam-epoch",
-+ "crossbeam-utils",
-+]
-+
-+[[package]]
-+name = "crossbeam-epoch"
-+version = "0.9.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "ec0f606a85340376eef0d6d8fec399e6d4a544d648386c6645eb6d0653b27d9f"
-+dependencies = [
-+ "cfg-if 1.0.0",
-+ "const_fn",
-+ "crossbeam-utils",
-+ "lazy_static",
-+ "memoffset",
-+ "scopeguard",
-+]
-+
-+[[package]]
-+name = "crossbeam-utils"
-+version = "0.8.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "ec91540d98355f690a86367e566ecad2e9e579f230230eb7c21398372be73ea5"
-+dependencies = [
-+ "autocfg",
-+ "cfg-if 1.0.0",
-+ "const_fn",
-+ "lazy_static",
-+]
-+
-+[[package]]
-+name = "crypto-mac"
-+version = "0.8.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "b584a330336237c1eecd3e94266efb216c56ed91225d634cb2991c5f3fd1aeab"
-+dependencies = [
-+ "generic-array",
-+ "subtle",
-+]
-+
-+[[package]]
-+name = "digest"
-+version = "0.9.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
-+dependencies = [
-+ "generic-array",
-+]
-+
-+[[package]]
-+name = "duct"
-+version = "0.13.4"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "f90a9c3a25aafbd538c7d40a53f83c4487ee8216c12d1c8ef2c01eb2f6ea1553"
-+dependencies = [
-+ "libc",
-+ "once_cell",
-+ "os_pipe",
-+ "shared_child",
-+]
-+
-+[[package]]
-+name = "either"
-+version = "1.6.1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
-+
-+[[package]]
-+name = "generic-array"
-+version = "0.14.4"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "501466ecc8a30d1d3b7fc9229b122b2ce8ed6e9d9223f1138d4babb253e51817"
-+dependencies = [
-+ "typenum",
-+ "version_check",
-+]
-+
-+[[package]]
-+name = "getrandom"
-+version = "0.1.15"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "fc587bc0ec293155d5bfa6b9891ec18a1e330c234f896ea47fbada4cadbe47e6"
-+dependencies = [
-+ "cfg-if 0.1.10",
-+ "libc",
-+ "wasi",
-+]
-+
-+[[package]]
-+name = "glob"
-+version = "0.3.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
-+
-+[[package]]
-+name = "hermit-abi"
-+version = "0.1.17"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "5aca5565f760fb5b220e499d72710ed156fdb74e631659e99377d9ebfbd13ae8"
-+dependencies = [
-+ "libc",
-+]
-+
-+[[package]]
-+name = "hex"
-+version = "0.4.2"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "644f9158b2f133fd50f5fb3242878846d9eb792e445c893805ff0e3824006e35"
-+
-+[[package]]
-+name = "lazy_static"
-+version = "1.4.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
-+
-+[[package]]
-+name = "libc"
-+version = "0.2.80"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "4d58d1b70b004888f764dfbf6a26a3b0342a1632d33968e4a179d8011c760614"
-+
-+[[package]]
-+name = "memmap"
-+version = "0.7.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "6585fd95e7bb50d6cc31e20d4cf9afb4e2ba16c5846fc76793f11218da9c475b"
-+dependencies = [
-+ "libc",
-+ "winapi",
-+]
-+
-+[[package]]
-+name = "memoffset"
-+version = "0.5.6"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "043175f069eda7b85febe4a74abbaeff828d9f8b448515d3151a14a3542811aa"
-+dependencies = [
-+ "autocfg",
-+]
-+
-+[[package]]
-+name = "num_cpus"
-+version = "1.13.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3"
-+dependencies = [
-+ "hermit-abi",
-+ "libc",
-+]
-+
-+[[package]]
-+name = "once_cell"
-+version = "1.5.2"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "13bd41f508810a131401606d54ac32a467c97172d74ba7662562ebba5ad07fa0"
-+
-+[[package]]
-+name = "os_pipe"
-+version = "0.9.2"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "fb233f06c2307e1f5ce2ecad9f8121cffbbee2c95428f44ea85222e460d0d213"
-+dependencies = [
-+ "libc",
-+ "winapi",
-+]
-+
-+[[package]]
-+name = "ppv-lite86"
-+version = "0.2.10"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "ac74c624d6b2d21f425f752262f42188365d7b8ff1aff74c82e45136510a4857"
-+
-+[[package]]
-+name = "rand"
-+version = "0.7.3"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
-+dependencies = [
-+ "getrandom",
-+ "libc",
-+ "rand_chacha",
-+ "rand_core",
-+ "rand_hc",
-+]
-+
-+[[package]]
-+name = "rand_chacha"
-+version = "0.2.2"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
-+dependencies = [
-+ "ppv-lite86",
-+ "rand_core",
-+]
-+
-+[[package]]
-+name = "rand_core"
-+version = "0.5.1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
-+dependencies = [
-+ "getrandom",
-+]
-+
-+[[package]]
-+name = "rand_hc"
-+version = "0.2.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
-+dependencies = [
-+ "rand_core",
-+]
-+
-+[[package]]
-+name = "rayon"
-+version = "1.5.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "8b0d8e0819fadc20c74ea8373106ead0600e3a67ef1fe8da56e39b9ae7275674"
-+dependencies = [
-+ "autocfg",
-+ "crossbeam-deque",
-+ "either",
-+ "rayon-core",
-+]
-+
-+[[package]]
-+name = "rayon-core"
-+version = "1.9.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "9ab346ac5921dc62ffa9f89b7a773907511cdfa5490c572ae9be1be33e8afa4a"
-+dependencies = [
-+ "crossbeam-channel",
-+ "crossbeam-deque",
-+ "crossbeam-utils",
-+ "lazy_static",
-+ "num_cpus",
-+]
-+
-+[[package]]
-+name = "redox_syscall"
-+version = "0.1.57"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce"
-+
-+[[package]]
-+name = "remove_dir_all"
-+version = "0.5.3"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
-+dependencies = [
-+ "winapi",
-+]
-+
-+[[package]]
-+name = "scopeguard"
-+version = "1.1.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
-+
-+[[package]]
-+name = "shared_child"
-+version = "0.3.4"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "8cebcf3a403e4deafaf34dc882c4a1b6a648b43e5670aa2e4bb985914eaeb2d2"
-+dependencies = [
-+ "libc",
-+ "winapi",
-+]
-+
-+[[package]]
-+name = "strsim"
-+version = "0.8.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
-+
-+[[package]]
-+name = "subtle"
-+version = "2.3.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "343f3f510c2915908f155e94f17220b19ccfacf2a64a2a5d8004f2c3e311e7fd"
-+
-+[[package]]
-+name = "tempfile"
-+version = "3.1.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "7a6e24d9338a0a5be79593e2fa15a648add6138caa803e2d5bc782c371732ca9"
-+dependencies = [
-+ "cfg-if 0.1.10",
-+ "libc",
-+ "rand",
-+ "redox_syscall",
-+ "remove_dir_all",
-+ "winapi",
-+]
-+
-+[[package]]
-+name = "textwrap"
-+version = "0.11.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
-+dependencies = [
-+ "unicode-width",
-+]
-+
-+[[package]]
-+name = "typenum"
-+version = "1.12.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "373c8a200f9e67a0c95e62a4f52fbf80c23b4381c05a17845531982fa99e6b33"
-+
-+[[package]]
-+name = "unicode-width"
-+version = "0.1.8"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "9337591893a19b88d8d87f2cec1e73fad5cdfd10e5a6f349f498ad6ea2ffb1e3"
-+
-+[[package]]
-+name = "vec_map"
-+version = "0.8.2"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
-+
-+[[package]]
-+name = "version_check"
-+version = "0.9.2"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "b5a972e5669d67ba988ce3dc826706fb0a8b01471c088cb0b6110b805cc36aed"
-+
-+[[package]]
-+name = "wasi"
-+version = "0.9.0+wasi-snapshot-preview1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
-+
-+[[package]]
-+name = "wild"
-+version = "2.0.4"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "035793abb854745033f01a07647a79831eba29ec0be377205f2a25b0aa830020"
-+dependencies = [
-+ "glob",
-+]
-+
-+[[package]]
-+name = "winapi"
-+version = "0.3.9"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
-+dependencies = [
-+ "winapi-i686-pc-windows-gnu",
-+ "winapi-x86_64-pc-windows-gnu",
-+]
-+
-+[[package]]
-+name = "winapi-i686-pc-windows-gnu"
-+version = "0.4.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
-+
-+[[package]]
-+name = "winapi-x86_64-pc-windows-gnu"
-+version = "0.4.0"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
diff --git a/pkgs/tools/security/b3sum/default.nix b/pkgs/tools/security/b3sum/default.nix
index 9cfc68146f95..1d9b2f66debf 100644
--- a/pkgs/tools/security/b3sum/default.nix
+++ b/pkgs/tools/security/b3sum/default.nix
@@ -1,21 +1,15 @@
-{ lib, fetchFromGitHub, rustPlatform }:
+{ lib, fetchCrate, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "b3sum";
- version = "0.3.7";
+ version = "0.3.8";
- src = fetchFromGitHub {
- owner = "BLAKE3-team";
- repo = "BLAKE3";
- rev = version;
- sha256 = "0r3nj7jbrpb2gkkfa9h6nv6blrbv6dlrhxg131qnh340q1ysh0x7";
+ src = fetchCrate {
+ inherit version pname;
+ sha256 = "1a42kwbl886yymm3v7h6y957x5f4yi9j40jy4szg9k0iy8bsdfmh";
};
- sourceRoot = "source/b3sum";
-
- cargoSha256 = "18l6j756s6qfmiy3z2cai7i62wskf04xi7y4dlcv4aiv4sv3nx9r";
-
- cargoPatches = [ ./cargo-lock.patch ];
+ cargoSha256 = "0v7ric12agicppg5ax5q0vwbslw7kmxpinafvdjj5sc2ysinw1zm";
meta = {
description = "BLAKE3 cryptographic hash function";
diff --git a/pkgs/tools/security/b3sum/update-cargo-lock.sh b/pkgs/tools/security/b3sum/update-cargo-lock.sh
deleted file mode 100755
index 8c52ad5cf6c0..000000000000
--- a/pkgs/tools/security/b3sum/update-cargo-lock.sh
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/sh
-
-# This updates cargo-lock.patch for the b3sum version listed in default.nix.
-
-set -eu -o verbose
-
-here=$PWD
-version=$(cat default.nix | grep '^ version = "' | cut -d '"' -f 2)
-checkout=$(mktemp -d)
-git clone -b "$version" --depth=1 https://github.com/BLAKE3-team/BLAKE3 "$checkout"
-cd "$checkout"
-
-(cd b3sum && cargo generate-lockfile)
-mv b3sum/Cargo.lock ./
-git add -f Cargo.lock
-git diff HEAD -- Cargo.lock > "$here"/cargo-lock.patch
-
-cd "$here"
-rm -rf "$checkout"
diff --git a/pkgs/tools/security/exploitdb/default.nix b/pkgs/tools/security/exploitdb/default.nix
index 1c5a3fdd4734..50cc54f9c30d 100644
--- a/pkgs/tools/security/exploitdb/default.nix
+++ b/pkgs/tools/security/exploitdb/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "exploitdb";
- version = "2021-05-22";
+ version = "2021-05-26";
src = fetchFromGitHub {
owner = "offensive-security";
repo = pname;
rev = version;
- sha256 = "sha256-cpzAdRAtF47j92u8GHyu6V1ycqtNld+9saCqoboAu+o=";
+ sha256 = "sha256-LYCUPIoqgU5IPtUew+orY1e2NfmefZFoWnvsZ9erohE=";
};
installPhase = ''
diff --git a/pkgs/tools/text/ugrep/default.nix b/pkgs/tools/text/ugrep/default.nix
index 5806723a043e..587c15cc33fa 100644
--- a/pkgs/tools/text/ugrep/default.nix
+++ b/pkgs/tools/text/ugrep/default.nix
@@ -1,17 +1,33 @@
-{ lib, stdenv, fetchFromGitHub, boost, bzip2, lz4, pcre2, xz, zlib }:
+{ lib
+, stdenv
+, fetchFromGitHub
+, boost
+, bzip2
+, lz4
+, pcre2
+, xz
+, zlib
+}:
stdenv.mkDerivation rec {
pname = "ugrep";
- version = "3.1.7";
+ version = "3.2.2";
src = fetchFromGitHub {
owner = "Genivia";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-nCpU4GBJ/4c/70hgVKfO1995XCyDRLVUeczsqnlkkFM=";
+ sha256 = "sha256-0Vc+ORHnSG9W4OaKWGs4tI5+e5TJNMbBNQ+3NZRz6Ug=";
};
- buildInputs = [ boost bzip2 lz4 pcre2 xz zlib ];
+ buildInputs = [
+ boost
+ bzip2
+ lz4
+ pcre2
+ xz
+ zlib
+ ];
meta = with lib; {
description = "Ultra fast grep with interactive query UI";
diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix
index 8c5a5b01c3f4..ba631bb45ec5 100644
--- a/pkgs/top-level/aliases.nix
+++ b/pkgs/top-level/aliases.nix
@@ -498,6 +498,7 @@ mapAliases ({
nixFlakes = nixUnstable; # added 2021-05-21
nmap_graphical = nmap-graphical; # added 2017-01-19
nologin = shadow; # added 2018-04-25
+ nordic-polar = throw "nordic-polar was removed on 2021-05-27, now integrated in nordic"; # added 2021-05-27
nxproxy = nx-libs; # added 2019-02-15
nylas-mail-bin = throw "nylas-mail-bin was deprecated on 2019-09-11: abandoned by upstream";
oauth2_proxy = oauth2-proxy; # added 2021-04-18
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 637f1a4baa11..394e826d9c74 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -1280,6 +1280,8 @@ in
bitwarden_rs-vault = callPackage ../tools/security/bitwarden_rs/vault.nix { };
+ bkyml = callPackage ../tools/misc/bkyml { };
+
blockbench-electron = callPackage ../applications/graphics/blockbench-electron { };
bmap-tools = callPackage ../tools/misc/bmap-tools { };
@@ -3492,6 +3494,8 @@ in
cfdg = callPackage ../tools/graphics/cfdg { };
+ cgreen = callPackage ../development/libraries/cgreen { };
+
checkinstall = callPackage ../tools/package-management/checkinstall { };
checkmake = callPackage ../development/tools/checkmake { };
@@ -8054,6 +8058,8 @@ in
qtikz = libsForQt5.callPackage ../applications/graphics/ktikz { };
+ quadrafuzz = callPackage ../applications/audio/quadrafuzz { };
+
quickfix = callPackage ../development/libraries/quickfix { };
quickjs = callPackage ../development/interpreters/quickjs { };
@@ -8261,6 +8267,8 @@ in
rowhammer-test = callPackage ../tools/system/rowhammer-test { };
+ rpg-cli = callPackage ../games/rpg-cli { };
+
rpPPPoE = callPackage ../tools/networking/rp-pppoe { };
rpi-imager = libsForQt5.callPackage ../tools/misc/rpi-imager { };
@@ -11543,7 +11551,7 @@ in
ocamlformat # latest version
ocamlformat_0_11_0 ocamlformat_0_12 ocamlformat_0_13_0 ocamlformat_0_14_0
ocamlformat_0_14_1 ocamlformat_0_14_2 ocamlformat_0_14_3 ocamlformat_0_15_0
- ocamlformat_0_15_1 ocamlformat_0_16_0 ocamlformat_0_17_0;
+ ocamlformat_0_15_1 ocamlformat_0_16_0 ocamlformat_0_17_0 ocamlformat_0_18_0;
orc = callPackage ../development/compilers/orc { };
@@ -12672,7 +12680,7 @@ in
aws-adfs = with python3Packages; toPythonApplication aws-adfs;
inherit (callPackages ../development/tools/electron { })
- electron electron_3 electron_4 electron_5 electron_6 electron_7 electron_8 electron_9 electron_10 electron_11 electron_12;
+ electron electron_3 electron_4 electron_5 electron_6 electron_7 electron_8 electron_9 electron_10 electron_11 electron_12 electron_13;
autobuild = callPackage ../development/tools/misc/autobuild { };
@@ -17201,6 +17209,7 @@ in
nuspellWithDicts = dicts: callPackage ../development/libraries/nuspell/wrapper.nix { inherit dicts; };
nv-codec-headers = callPackage ../development/libraries/nv-codec-headers { };
+ nv-codec-headers-10 = callPackage ../development/libraries/nv-codec-headers/10_x.nix { };
mkNvidiaContainerPkg = { name, containerRuntimePath, configTemplate, additionalPaths ? [] }:
let
@@ -20730,7 +20739,7 @@ in
# Update this when adding the newest kernel major version!
# And update linux_latest_for_hardened below if the patches are already available
- linuxPackages_latest = linuxPackages_5_11;
+ linuxPackages_latest = linuxPackages_5_12;
linux_latest = linuxPackages_latest.kernel;
# Realtime kernel packages.
@@ -22006,8 +22015,6 @@ in
nordic = callPackage ../data/themes/nordic { };
- nordic-polar = callPackage ../data/themes/nordic-polar { };
-
inherit (callPackages ../data/fonts/noto-fonts {})
noto-fonts noto-fonts-cjk noto-fonts-emoji noto-fonts-emoji-blob-bin noto-fonts-extra;
@@ -26292,6 +26299,8 @@ in
scite = callPackage ../applications/editors/scite { };
+ scli = with python3Packages; callPackage ../applications/misc/scli { };
+
scribus = callPackage ../applications/office/scribus {
inherit (gnome2) libart_lgpl;
};
@@ -27661,6 +27670,10 @@ in
libxpdf = callPackage ../applications/misc/xpdf/libxpdf.nix { };
xpra = callPackage ../tools/X11/xpra { };
+ xpraWithNvenc = callPackage ../tools/X11/xpra {
+ withNvenc = true;
+ nvidia_x11 = linuxPackages.nvidia_x11.override { libsOnly = true; };
+ };
libfakeXinerama = callPackage ../tools/X11/xpra/libfakeXinerama.nix { };
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index 2fed68c691b4..03ffc1a6bda4 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -6202,6 +6202,8 @@ in {
pyro-ppl = callPackage ../development/python-modules/pyro-ppl { };
+ pyroon = callPackage ../development/python-modules/pyroon { };
+
pyroute2 = callPackage ../development/python-modules/pyroute2 { };
pyrr = callPackage ../development/python-modules/pyrr { };