diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix
index 67930b4f276f..b2fae16f3b67 100644
--- a/maintainers/maintainer-list.nix
+++ b/maintainers/maintainer-list.nix
@@ -13589,4 +13589,15 @@
github = "PhilippWoelfel";
githubId = 19400064;
};
+ qbit = {
+ name = "Aaron Bieber";
+ email = "aaron@bolddaemon.com";
+ github = "qbit";
+ githubId = 68368;
+ matrix = "@qbit:tapenet.org";
+ keys = [{
+ longkeyid = "rsa4096/0x1F81112D62A9ADCE";
+ fingerprint = "3586 3350 BFEA C101 DB1A 4AF0 1F81 112D 62A9 ADCE";
+ }];
+ };
}
diff --git a/nixos/doc/manual/from_md/release-notes/rl-2205.section.xml b/nixos/doc/manual/from_md/release-notes/rl-2205.section.xml
index c389d19de14b..68d46c30ac65 100644
--- a/nixos/doc/manual/from_md/release-notes/rl-2205.section.xml
+++ b/nixos/doc/manual/from_md/release-notes/rl-2205.section.xml
@@ -343,6 +343,15 @@
true.
+
+
+ The option services.thelounge.plugins has
+ been added to allow installing plugins for The Lounge. Plugins
+ can be found in
+ pkgs.theLoungePlugins.plugins and
+ pkgs.theLoungePlugins.themes.
+
+
diff --git a/nixos/doc/manual/release-notes/rl-2205.section.md b/nixos/doc/manual/release-notes/rl-2205.section.md
index c5da4acb87d4..e29b1a936725 100644
--- a/nixos/doc/manual/release-notes/rl-2205.section.md
+++ b/nixos/doc/manual/release-notes/rl-2205.section.md
@@ -126,3 +126,5 @@ In addition to numerous new and upgraded packages, this release has the followin
- `fetchFromSourcehut` now allows fetching repositories recursively
using `fetchgit` or `fetchhg` if the argument `fetchSubmodules`
is set to `true`.
+
+- The option `services.thelounge.plugins` has been added to allow installing plugins for The Lounge. Plugins can be found in `pkgs.theLoungePlugins.plugins` and `pkgs.theLoungePlugins.themes`.
diff --git a/nixos/modules/services/desktops/gnome/tracker-miners.nix b/nixos/modules/services/desktops/gnome/tracker-miners.nix
index c9101f0caa63..9351007d30b5 100644
--- a/nixos/modules/services/desktops/gnome/tracker-miners.nix
+++ b/nixos/modules/services/desktops/gnome/tracker-miners.nix
@@ -47,6 +47,8 @@ with lib;
systemd.packages = [ pkgs.tracker-miners ];
+ services.gnome.tracker.subcommandPackages = [ pkgs.tracker-miners ];
+
};
}
diff --git a/nixos/modules/services/desktops/gnome/tracker.nix b/nixos/modules/services/desktops/gnome/tracker.nix
index 29d9662b0b8f..fef399d0112e 100644
--- a/nixos/modules/services/desktops/gnome/tracker.nix
+++ b/nixos/modules/services/desktops/gnome/tracker.nix
@@ -4,6 +4,9 @@
with lib;
+let
+ cfg = config.services.gnome.tracker;
+in
{
meta = {
@@ -33,6 +36,15 @@ with lib;
'';
};
+ subcommandPackages = mkOption {
+ type = types.listOf types.package;
+ default = [ ];
+ internal = true;
+ description = ''
+ List of packages containing tracker3 subcommands.
+ '';
+ };
+
};
};
@@ -40,7 +52,7 @@ with lib;
###### implementation
- config = mkIf config.services.gnome.tracker.enable {
+ config = mkIf cfg.enable {
environment.systemPackages = [ pkgs.tracker ];
@@ -48,6 +60,17 @@ with lib;
systemd.packages = [ pkgs.tracker ];
+ environment.variables = {
+ TRACKER_CLI_SUBCOMMANDS_DIR =
+ let
+ subcommandPackagesTree = pkgs.symlinkJoin {
+ name = "tracker-with-subcommands-${pkgs.tracker.version}";
+ paths = [ pkgs.tracker ] ++ cfg.subcommandPackages;
+ };
+ in
+ "${subcommandPackagesTree}/libexec/tracker3";
+ };
+
};
}
diff --git a/nixos/modules/services/networking/ddclient.nix b/nixos/modules/services/networking/ddclient.nix
index 8a2c0fc7080c..0bb8c87b38ef 100644
--- a/nixos/modules/services/networking/ddclient.nix
+++ b/nixos/modules/services/networking/ddclient.nix
@@ -13,7 +13,7 @@ let
foreground=YES
use=${cfg.use}
login=${cfg.username}
- password=
+ password=${lib.optionalString (cfg.protocol == "nsupdate") "/run/${RuntimeDirectory}/ddclient.key"}
protocol=${cfg.protocol}
${lib.optionalString (cfg.script != "") "script=${cfg.script}"}
${lib.optionalString (cfg.server != "") "server=${cfg.server}"}
@@ -29,8 +29,10 @@ let
configFile = if (cfg.configFile != null) then cfg.configFile else configFile';
preStart = ''
- install ${configFile} /run/${RuntimeDirectory}/ddclient.conf
- ${lib.optionalString (cfg.configFile == null) (if (cfg.passwordFile != null) then ''
+ install --owner ddclient -m600 ${configFile} /run/${RuntimeDirectory}/ddclient.conf
+ ${lib.optionalString (cfg.configFile == null) (if (cfg.protocol == "nsupdate") then ''
+ install --owner ddclient -m600 ${cfg.passwordFile} /run/${RuntimeDirectory}/ddclient.key
+ '' else if (cfg.passwordFile != null) then ''
password=$(printf "%q" "$(head -n 1 "${cfg.passwordFile}")")
sed -i "s|^password=$|password=$password|" /run/${RuntimeDirectory}/ddclient.conf
'' else ''
@@ -85,7 +87,9 @@ with lib;
};
username = mkOption {
- default = "";
+ # For `nsupdate` username contains the path to the nsupdate executable
+ default = lib.optionalString (config.services.ddclient.protocol == "nsupdate") "${pkgs.bind.dnsutils}/bin/nsupdate";
+ defaultText = "";
type = str;
description = ''
User name.
@@ -96,7 +100,7 @@ with lib;
default = null;
type = nullOr str;
description = ''
- A file containing the password.
+ A file containing the password or a TSIG key in named format when using the nsupdate protocol.
'';
};
diff --git a/nixos/modules/services/networking/ssh/sshd.nix b/nixos/modules/services/networking/ssh/sshd.nix
index 004b4f99670f..f19624aba022 100644
--- a/nixos/modules/services/networking/ssh/sshd.nix
+++ b/nixos/modules/services/networking/ssh/sshd.nix
@@ -480,6 +480,8 @@ in
else
cfg.ports;
socketConfig.Accept = true;
+ # Prevent brute-force attacks from shutting down socket
+ socketConfig.TriggerLimitIntervalSec = 0;
};
services."sshd@" = service;
diff --git a/nixos/modules/services/networking/thelounge.nix b/nixos/modules/services/networking/thelounge.nix
index b94491639163..9a366c97fcb6 100644
--- a/nixos/modules/services/networking/thelounge.nix
+++ b/nixos/modules/services/networking/thelounge.nix
@@ -8,7 +8,18 @@ let
configJsData = "module.exports = " + builtins.toJSON (
{ private = cfg.private; port = cfg.port; } // cfg.extraConfig
);
-in {
+ pluginManifest = {
+ dependencies = builtins.listToAttrs (builtins.map (pkg: { name = getName pkg; value = getVersion pkg; }) cfg.plugins);
+ };
+ plugins = pkgs.runCommandLocal "thelounge-plugins" { } ''
+ mkdir -p $out/node_modules
+ echo ${escapeShellArg (builtins.toJSON pluginManifest)} >> $out/package.json
+ ${concatMapStringsSep "\n" (pkg: ''
+ ln -s ${pkg}/lib/node_modules/${getName pkg} $out/node_modules/${getName pkg}
+ '') cfg.plugins}
+ '';
+in
+{
options.services.thelounge = {
enable = mkEnableOption "The Lounge web IRC client";
@@ -30,7 +41,7 @@ in {
};
extraConfig = mkOption {
- default = {};
+ default = { };
type = types.attrs;
example = literalExpression ''{
reverseProxy = true;
@@ -50,19 +61,30 @@ in {
Documentation:
'';
};
+
+ plugins = mkOption {
+ default = [ ];
+ type = types.listOf types.package;
+ example = literalExpression "[ pkgs.theLoungePlugins.themes.solarized ]";
+ description = ''
+ The Lounge plugins to install. Plugins can be found in
+ pkgs.theLoungePlugins.plugins and pkgs.theLoungePlugins.themes.
+ '';
+ };
};
config = mkIf cfg.enable {
users.users.thelounge = {
- description = "thelounge service user";
+ description = "The Lounge service user";
group = "thelounge";
isSystemUser = true;
};
- users.groups.thelounge = {};
+ users.groups.thelounge = { };
systemd.services.thelounge = {
description = "The Lounge web IRC client";
wantedBy = [ "multi-user.target" ];
preStart = "ln -sf ${pkgs.writeText "config.js" configJsData} ${dataDir}/config.js";
+ environment.THELOUNGE_PACKAGES = mkIf (cfg.plugins != [ ]) "${plugins}";
serviceConfig = {
User = "thelounge";
StateDirectory = baseNameOf dataDir;
@@ -72,4 +94,8 @@ in {
environment.systemPackages = [ pkgs.thelounge ];
};
+
+ meta = {
+ maintainers = with lib.maintainers; [ winter ];
+ };
}
diff --git a/pkgs/applications/audio/espeak-ng/default.nix b/pkgs/applications/audio/espeak-ng/default.nix
index e0f7822bcd71..6458d7188ae1 100644
--- a/pkgs/applications/audio/espeak-ng/default.nix
+++ b/pkgs/applications/audio/espeak-ng/default.nix
@@ -45,6 +45,10 @@ stdenv.mkDerivation rec {
patchelf --set-rpath "$(patchelf --print-rpath $out/bin/espeak-ng)" $out/bin/speak-ng
'';
+ passthru = {
+ inherit mbrolaSupport;
+ };
+
meta = with lib; {
description = "Open source speech synthesizer that supports over 70 languages, based on eSpeak";
homepage = "https://github.com/espeak-ng/espeak-ng";
diff --git a/pkgs/applications/graphics/gnome-photos/default.nix b/pkgs/applications/graphics/gnome-photos/default.nix
index f0911395404e..9dc318a0674c 100644
--- a/pkgs/applications/graphics/gnome-photos/default.nix
+++ b/pkgs/applications/graphics/gnome-photos/default.nix
@@ -78,7 +78,6 @@ stdenv.mkDerivation rec {
gfbgraph
glib
gnome-online-accounts
- gnome.adwaita-icon-theme
grilo
grilo-plugins
gsettings-desktop-schemas
diff --git a/pkgs/applications/misc/gallery-dl/default.nix b/pkgs/applications/misc/gallery-dl/default.nix
index 43ce94d5bfc4..26c76988169e 100644
--- a/pkgs/applications/misc/gallery-dl/default.nix
+++ b/pkgs/applications/misc/gallery-dl/default.nix
@@ -2,11 +2,11 @@
buildPythonApplication rec {
pname = "gallery_dl";
- version = "1.19.3";
+ version = "1.20.1";
src = fetchPypi {
inherit pname version;
- sha256 = "db3973a17f1074e4f4cb99b635b94c1926bdd549263e1df909498f3c6aa93484";
+ sha256 = "a1c06625381485f82aa14a038a622d40ab9cc2c8d150dd65c66df96dbf427f62";
};
propagatedBuildInputs = [ requests yt-dlp ];
diff --git a/pkgs/applications/misc/redshift/default.nix b/pkgs/applications/misc/redshift/default.nix
index e73f3392cea3..6dbe3d840415 100644
--- a/pkgs/applications/misc/redshift/default.nix
+++ b/pkgs/applications/misc/redshift/default.nix
@@ -123,13 +123,13 @@ rec {
gammastep = mkRedshift rec {
pname = "gammastep";
- version = "2.0.7";
+ version = "2.0.8";
src = fetchFromGitLab {
owner = "chinstrap";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-78z2CQ+r7undbp+8E0mMDNWWl+RXeS5he/ax0VomRYY=";
+ sha256 = "071f3iqdbblb3awnx48j19kspk6l2g3658za80i2mf4gacgq9fm1";
};
meta = redshift.meta // {
diff --git a/pkgs/applications/misc/tagtime/default.nix b/pkgs/applications/misc/tagtime/default.nix
new file mode 100644
index 000000000000..d21621058bca
--- /dev/null
+++ b/pkgs/applications/misc/tagtime/default.nix
@@ -0,0 +1,79 @@
+{ lib, stdenv, fetchFromGitHub, perl, xterm, coreutils }:
+
+stdenv.mkDerivation {
+ pname = "tagtime";
+ version = "2018-09-02";
+
+ src = fetchFromGitHub {
+ owner = "tagtime";
+ repo = "TagTime";
+ rev = "59343e2cbe451eb16109e782c194ccbd0ee4196d";
+ sha256 = "1xpmra3f9618b0gajfxqh061r4phkiklvcgpglsyx82bhmgf9n1f";
+ };
+
+ buildInputs = [
+ perl
+ ];
+
+ installPhase = ''
+ runHook preInstall
+
+ mkdir -p $out/{libexec,bin}
+
+ # We don’t support a config file for now,
+ # since it’s not entirely clear how to split nix-set paths
+ # from the actual config options.
+ for pl in *.pl; do
+ substituteInPlace "$pl" \
+ --replace 'require "$ENV{HOME}/.tagtimerc";' \
+ 'require "${placeholder "out"}/libexec/settings.pl";'
+ done;
+
+ install tagtimed.pl $out/bin/tagtimed
+
+ substituteInPlace util.pl \
+ --replace '/usr/bin/touch' \
+ '${coreutils}/bin/touch' \
+ --replace '/bin/rm -f $lockf' \
+ '${coreutils}/bin/rm -f $lockf' \
+ --replace '$lockf = "''${path}tagtime.lock";' \
+ 'mkdir "$ENV{HOME}/.cache/tagtime";
+ $lockf = "$ENV{HOME}/.cache/tagtime/tagtime.lock";'
+
+ mv *.pl $out/libexec/
+ mv template.tsk $out/libexec/
+
+
+ # set the default template arguments to sane defaults.
+ substitute settings.pl.template $out/libexec/settings.pl \
+ --replace '"__USER__"' \
+ 'getlogin()' \
+ --replace '"__PATH__"' \
+ '"${placeholder "out"}/libexec/"' \
+ --replace '$logf = "$path$usr.log";' \
+ 'mkdir "$ENV{HOME}/.local/share/tagtime";
+ $logf = "$ENV{HOME}/.local/share/tagtime/pings.log";' \
+ --replace '"__ED__ +"' \
+ '$ENV{"EDITOR"}' \
+ --replace '"__XT__"' \
+ '"${xterm}/bin/xterm"'
+
+ runHook postInstall
+ '';
+
+ meta = {
+ description = "Stochastic Time Tracking for Space Cadets";
+ longDescription = ''
+ To determine how you spend your time, TagTime literally randomly samples
+ you. At random times it pops up and asks what you're doing right at that
+ moment. You answer with tags.
+
+ See https://messymatters.com/tagtime for the whole story.
+
+ [maintainer’s note]: This is the original perl script implementation.
+ '';
+ homepage = "http://messymatters.com/tagtime/";
+ license = lib.licenses.bsd3;
+ maintainers = [ lib.maintainers.Profpatsch ];
+ };
+}
diff --git a/pkgs/applications/networking/browsers/brave/default.nix b/pkgs/applications/networking/browsers/brave/default.nix
index 464085d2116d..a769d30e500a 100644
--- a/pkgs/applications/networking/browsers/brave/default.nix
+++ b/pkgs/applications/networking/browsers/brave/default.nix
@@ -93,11 +93,11 @@ in
stdenv.mkDerivation rec {
pname = "brave";
- version = "1.33.106";
+ version = "1.34.80";
src = fetchurl {
url = "https://github.com/brave/brave-browser/releases/download/v${version}/brave-browser_${version}_amd64.deb";
- sha256 = "XSqlQyc6gJthchfmq29d5+OVVSaxYG7zpVZNFZpl67s=";
+ sha256 = "2N+dXQGVfm3GsaKKo3EBxLu+cu08OjlrqkgXX9knFys=";
};
dontConfigure = true;
@@ -174,7 +174,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
homepage = "https://brave.com/";
description = "Privacy-oriented browser for Desktop and Laptop computers";
- changelog = "https://github.com/brave/brave-browser/blob/master/CHANGELOG_DESKTOP.md";
+ changelog = "https://github.com/brave/brave-browser/blob/master/CHANGELOG_DESKTOP.md#" + lib.replaceStrings [ "." ] [ "" ] version;
longDescription = ''
Brave browser blocks the ads and trackers that slow you down,
chew up your bandwidth, and invade your privacy. Brave lets you
diff --git a/pkgs/applications/networking/cluster/nomad/1.2.nix b/pkgs/applications/networking/cluster/nomad/1.2.nix
new file mode 100644
index 000000000000..1bf38a8457b5
--- /dev/null
+++ b/pkgs/applications/networking/cluster/nomad/1.2.nix
@@ -0,0 +1,12 @@
+{ callPackage
+, buildGoModule
+, nvidia_x11
+, nvidiaGpuSupport
+}:
+
+callPackage ./genericModule.nix {
+ inherit buildGoModule nvidia_x11 nvidiaGpuSupport;
+ version = "1.2.3";
+ sha256 = "0qjj1pnq2yv4r8dv03m08ii4118drjnswf4n1r95dqh8j3bymv5i";
+ vendorSha256 = "0djh2184yg4b656wbhzxg1q1hsdnbrwsk79vc0426d0mqbzyy7dx";
+}
diff --git a/pkgs/applications/networking/cluster/nomad/generic.nix b/pkgs/applications/networking/cluster/nomad/generic.nix
index 586308dd424f..c028e476020a 100644
--- a/pkgs/applications/networking/cluster/nomad/generic.nix
+++ b/pkgs/applications/networking/cluster/nomad/generic.nix
@@ -44,6 +44,6 @@ buildGoPackage rec {
description = "A Distributed, Highly Available, Datacenter-Aware Scheduler";
platforms = platforms.unix;
license = licenses.mpl20;
- maintainers = with maintainers; [ rushmorem pradeepchhetri endocrimes maxeaubrey ];
+ maintainers = with maintainers; [ rushmorem pradeepchhetri endocrimes maxeaubrey techknowlogick ];
};
}
diff --git a/pkgs/applications/networking/cluster/terraform-providers/providers.json b/pkgs/applications/networking/cluster/terraform-providers/providers.json
index 5ad5ae7d3cc9..5f748baf2096 100644
--- a/pkgs/applications/networking/cluster/terraform-providers/providers.json
+++ b/pkgs/applications/networking/cluster/terraform-providers/providers.json
@@ -94,28 +94,28 @@
"owner": "hashicorp",
"provider-source-address": "registry.terraform.io/hashicorp/aws",
"repo": "terraform-provider-aws",
- "rev": "v3.70.0",
- "sha256": "0133f1ngwa7x8w9zicfwmkj14rav9cvwk7qf7hdz0cfmyl4pj4x2",
- "vendorSha256": "03k8xijzfawbdzc1wavw9k2z2zyffi1ysnqls412nzdyvxyl8xw4",
- "version": "3.70.0"
+ "rev": "v3.71.0",
+ "sha256": "0jr9mk6gvimh8picpcc47pcan323k4rml438743ma53g8jhcvn2a",
+ "vendorSha256": "02ax2717xci8qia3k7q19yknazn67idb64hf5mwahfnx1fjmdc22",
+ "version": "3.71.0"
},
"azuread": {
"owner": "hashicorp",
"provider-source-address": "registry.terraform.io/hashicorp/azuread",
"repo": "terraform-provider-azuread",
- "rev": "v2.13.0",
- "sha256": "13337m20yxamdjpiw4kfi2ik4i5ivvr1fryygixpsj34lr21zxgk",
+ "rev": "v2.14.0",
+ "sha256": "0sjpwhywc165gkxd1ybkwi1aww4xivry82wh0mbh4bgs607mn8lg",
"vendorSha256": null,
- "version": "2.13.0"
+ "version": "2.14.0"
},
"azurerm": {
"owner": "hashicorp",
"provider-source-address": "registry.terraform.io/hashicorp/azurerm",
"repo": "terraform-provider-azurerm",
- "rev": "v2.90.0",
- "sha256": "04bll0ygjgrqq18va97xi42p55fvlbgdc24m2i9amjhjbly5m7wn",
+ "rev": "v2.91.0",
+ "sha256": "0db23ch46wi5mjmwibp7n98y0j3cl06mq2pzmvw1scbzvgh0gcqp",
"vendorSha256": null,
- "version": "2.90.0"
+ "version": "2.91.0"
},
"azurestack": {
"owner": "hashicorp",
@@ -157,10 +157,10 @@
"owner": "checkly",
"provider-source-address": "registry.terraform.io/checkly/checkly",
"repo": "terraform-provider-checkly",
- "rev": "v1.3.0",
- "sha256": "11vwl983lh983c1x3f7zc8b7i9f4pymk4j1ikf04vz2kgxry49yr",
- "vendorSha256": "14wp5sa2fm3hlmyacfy4aacx2cz5bxf24r4fjwd6f2hskzjz6825",
- "version": "1.3.0"
+ "rev": "v1.4.0-rc1",
+ "sha256": "125ng4yzsmnbzgvwn3d2070cxnp3jvzpp8m9sc95q9x7dprbxzvl",
+ "vendorSha256": "1dkij2anw0cy8h2pv8h9a0cr0r9skpcc0j26bggspigk8qa4nzsx",
+ "version": "1.4.0-rc1"
},
"checkpoint": {
"deleteVendor": true,
@@ -187,7 +187,7 @@
"repo": "terraform-provider-cloudflare",
"rev": "v3.6.0",
"sha256": "1adpzk9vjllr18dq8kggxfabm3ax59m55ls98mkqh8lmgq96bh7d",
- "vendorSha256": "0qby6fa1x5fapgcy5i35dwwlkb2ggws9sxcssshzssy0fzpb3k87",
+ "vendorSha256": "1rdgjb1gfz5fs6s3c15nj92rm8ifb23n25wpxl16mz4aifkjgqam",
"version": "3.6.0"
},
"cloudfoundry": {
@@ -196,7 +196,7 @@
"repo": "terraform-provider-cloudfoundry",
"rev": "v0.15.0",
"sha256": "0kg9aivxlbkqgrwv0j02hfsaky5q4f0bmqihn589dsdk7jds66i7",
- "vendorSha256": "19jnaazhdqagfx5wkpvrf0amf7d22kg6hzk0nsg888d0l4x93hna",
+ "vendorSha256": "19h526ag7p2jkdp0610slbpsz8q3njvj9d4xmsfdsv3r8pz7xzls",
"version": "0.15.0"
},
"cloudinit": {
@@ -241,7 +241,7 @@
"repo": "terraform-provider-ct",
"rev": "v0.9.1",
"sha256": "1d8q6ffh64v46r80vmbpsgmjw1vg6y26hpq3nz2h5mvqm0fqya9r",
- "vendorSha256": "sha256-e/r59hnVRxrSqmQUwYZiN+YCCz+LbxUHGV2MFGcmJn4=",
+ "vendorSha256": "0zi64rki932x343iavwb7w5h5ripca3c2534mb91liym37vgkykv",
"version": "0.9.1"
},
"datadog": {
@@ -286,7 +286,7 @@
"repo": "terraform-provider-dns",
"rev": "v3.2.1",
"sha256": "1zynfwm7hl7pnldjr2nxj0a06j209r62g8zpkasj6zdjscy62rc8",
- "vendorSha256": "sha256-D/CD3O/EHIa2GTwmIAZM3e3bFSLMXy4KhAGWeD4i7kI=",
+ "vendorSha256": "0hpf48z7i5h1hh52wpyc48axpvfx9h3209iw36v8c764xzf87w0g",
"version": "3.2.1"
},
"dnsimple": {
@@ -320,10 +320,10 @@
"owner": "phillbaker",
"provider-source-address": "registry.terraform.io/phillbaker/elasticsearch",
"repo": "terraform-provider-elasticsearch",
- "rev": "v2.0.0-beta.2",
- "sha256": "1pr0vaag0b0i83381pcpxnq5bpjfj80bm6m483rivbaqbxr0dakw",
+ "rev": "v2.0.0-beta.3",
+ "sha256": "1a3jrj93yr22srs4rwk4j1kydhpmkic0aqxrklg7v9ri7rdwx36s",
"vendorSha256": "1w92k895ikrqm9n1hf36wlh9nq278vifl3r14v0rxa8g9awizfdr",
- "version": "2.0.0-beta.2"
+ "version": "2.0.0-beta.3"
},
"exoscale": {
"owner": "exoscale",
@@ -338,10 +338,10 @@
"owner": "hashicorp",
"provider-source-address": "registry.terraform.io/hashicorp/external",
"repo": "terraform-provider-external",
- "rev": "v2.1.1",
- "sha256": "1f92cg2fjwy2n5380fx9j6j2bnsnkcy18kq0bjbkwkh8kmshqjn8",
- "vendorSha256": "031knr4axrcwisbhzs39faykzc1jgm9hx4rhqk46wim950gifl7g",
- "version": "2.1.1"
+ "rev": "v2.2.0",
+ "sha256": "0s7zxz9dni1p93di1ddx595d0mmizq7zrvkbbx1m4c5f208m262x",
+ "vendorSha256": "1f5gh110rylb1cw4dlwdzsj8sb0myj7xcj7ix966l5qa9x05p9pn",
+ "version": "2.2.0"
},
"fastly": {
"owner": "fastly",
@@ -374,10 +374,10 @@
"owner": "integrations",
"provider-source-address": "registry.terraform.io/integrations/github",
"repo": "terraform-provider-github",
- "rev": "v4.19.0",
- "sha256": "17xpkcrklzbim91rxw4g4n8izk9qiw9q0vfivr467i32dv5mzc2d",
+ "rev": "v4.19.1",
+ "sha256": "0dixdw0215ksa76871mac60k7y0vm111f3jay9njsa1ljz8rwhnd",
"vendorSha256": null,
- "version": "4.19.0"
+ "version": "4.19.1"
},
"gitlab": {
"owner": "gitlabhq",
@@ -385,7 +385,7 @@
"repo": "terraform-provider-gitlab",
"rev": "v3.8.0",
"sha256": "0ha6lp0z3lqdk05fhggdgdz50dm7z6ksn648khp44n7in0c0c5pj",
- "vendorSha256": "sha256-tkPenz+gkghIGMYF9iFj1TXUV3NGm/zYGQ3nP2hWdZA=",
+ "vendorSha256": "143marl3zrqd37cgr6s6fdbx8dfmcchzc1f63140i4m07ygxwhxn",
"version": "3.8.0"
},
"google": {
@@ -395,7 +395,7 @@
"repo": "terraform-provider-google",
"rev": "v4.5.0",
"sha256": "173aqwrzqdb3y57wiq1dbgb74ksr063qqq1k178n4wrab4s1h3px",
- "vendorSha256": "0f18fh0qi1v1hkq3j8nrc8x2rah7vk6njjgdakxr1g1xxv8f0nhx",
+ "vendorSha256": "17rlq86zl83cav8pinr8am3wkmva4slab2izmxddhiw3na60a4la",
"version": "4.5.0"
},
"google-beta": {
@@ -405,7 +405,7 @@
"repo": "terraform-provider-google-beta",
"rev": "v4.5.0",
"sha256": "17z2jy8b9gk0id8q0318a6k60fhcqps0p36s7d7kkqmr44shgzs4",
- "vendorSha256": "0f18fh0qi1v1hkq3j8nrc8x2rah7vk6njjgdakxr1g1xxv8f0nhx",
+ "vendorSha256": "17rlq86zl83cav8pinr8am3wkmva4slab2izmxddhiw3na60a4la",
"version": "4.5.0"
},
"grafana": {
@@ -432,7 +432,7 @@
"repo": "terraform-provider-hcloud",
"rev": "v1.32.2",
"sha256": "0rr65bxd0w5r0zqgj975rzxw7j3wrav4dw9gl3ispfhkb9v1302f",
- "vendorSha256": "0g8cbkg5kcddd1x3p6d8mb6mqwsayqby0mrrifkw5icf7rlaa0sl",
+ "vendorSha256": "0rc4pznb16fm5dhi54fwka44zvngy3hp0cfwlrh84ifmzqgx0mlv",
"version": "1.32.2"
},
"helm": {
@@ -520,19 +520,19 @@
"owner": "Mongey",
"provider-source-address": "registry.terraform.io/Mongey/kafka",
"repo": "terraform-provider-kafka",
- "rev": "v0.4.1",
- "sha256": "0k1vrd2h7d01ypyhs2q1x83nnmiivglwsbrmwrj4k750x2wniygq",
- "vendorSha256": "06n2xpic0lmb81rbkx39avz6zgnspmi6xv69kfzdvx7q3zpf7w4s",
- "version": "0.4.1"
+ "rev": "v0.4.2",
+ "sha256": "1qgcjcdkhxh2r2c12zd3b5cjn8zf4rdmw91a9h4izy52fsmc2x3q",
+ "vendorSha256": "1y6q5q84a6hin1h86gbm7c5glmfjc4im0w6cjaznmj9gmrkjh8qg",
+ "version": "0.4.2"
},
"kafka-connect": {
"owner": "Mongey",
"provider-source-address": "registry.terraform.io/Mongey/kafka-connect",
"repo": "terraform-provider-kafka-connect",
- "rev": "v0.2.3",
- "sha256": "0fn03l58lkrlinvnxld2ba7z1gx95vxklbhh2z7930pih0vhr0sr",
- "vendorSha256": "17fwqhxh22szdys97dxh069z6s8xr3y9i3pi5ckdcr462j1dr95w",
- "version": "0.2.3"
+ "rev": "v0.2.4",
+ "sha256": "17qslh2axvwiqmqzaxdl75zg3ww6hcpq7k2bfx026ca7bifqx13f",
+ "vendorSha256": "0acl8ijai4awgxhps17bwnwd9aks0qbjvv4ad6pj8vbf496dc411",
+ "version": "0.2.4"
},
"keycloak": {
"owner": "mrparkers",
@@ -574,10 +574,10 @@
"owner": "launchdarkly",
"provider-source-address": "registry.terraform.io/launchdarkly/launchdarkly",
"repo": "terraform-provider-launchdarkly",
- "rev": "v2.2.0",
- "sha256": "06lhcimk368ll73vhs09d6lsmphbm2mvlxhiajc190db492nnjnl",
- "vendorSha256": "05gx87dwh49zc5mlqnzcqn46pjf9q4wsv9l15pjr3spczzi11cnz",
- "version": "2.2.0"
+ "rev": "v2.3.0",
+ "sha256": "1yvxzhwx5nm53gjaqxzsfkc8khgyi2va1a9kjwmkhzqghzl4w5nw",
+ "vendorSha256": "0pmnhlfmi9i6xblz62ysnw02p4i8iz6naqpna99gbgyllnj5asdg",
+ "version": "2.3.0"
},
"libvirt": {
"owner": "dmacvicar",
@@ -592,10 +592,10 @@
"owner": "linode",
"provider-source-address": "registry.terraform.io/linode/linode",
"repo": "terraform-provider-linode",
- "rev": "v1.25.0",
- "sha256": "11ybl1ny90y7w999hwjnwnmmdkqak5q8gbg1qqimhjvw69j0dr81",
- "vendorSha256": "01146ds79clf2hn8ph4hx0g8chwhfawdy5cpslnppsm1w8v5arrm",
- "version": "1.25.0"
+ "rev": "v1.25.1",
+ "sha256": "1sy3hg9scfidrn3z9ip6ryxghv1s9zlhwccl8k2s2b05xkx43j23",
+ "vendorSha256": "0c882yafydhdhnp5awb8llzbmiljfdbamqlx740347ywpliy0ga2",
+ "version": "1.25.1"
},
"linuxbox": {
"owner": "numtide",
@@ -667,7 +667,7 @@
"repo": "terraform-provider-minio",
"rev": "v1.2.0",
"sha256": "07f7kflmy0n8vbcxs2f62iqwm8fw8r97vgwwp38hmz3f1bix42qn",
- "vendorSha256": "sha256-fBn0AfgdiFQ065SwqwMQeCuvJdkscc5QYsMMc/+p4V0=",
+ "vendorSha256": "0pg1m7zp6363c98cww9cv4jsyavq201spc4lxcs5920xz00z86bw",
"version": "1.2.0"
},
"mongodbatlas": {
@@ -720,10 +720,10 @@
"owner": "ns1-terraform",
"provider-source-address": "registry.terraform.io/ns1-terraform/ns1",
"repo": "terraform-provider-ns1",
- "rev": "v1.12.1",
- "sha256": "0l72z92k71z48ls1dwy6apwhgi9xbs4czmryc0k65krh4hgjhhwk",
+ "rev": "v1.12.2",
+ "sha256": "01cmfmg429vp7j8xb9fvfvwg9l3pwjrpv9a4jbdbhh8gaarpw8db",
"vendorSha256": "0nk8xs24hwsarr22h5m1qcpixg7ijdkah5686wkp51y8cp69v25r",
- "version": "1.12.1"
+ "version": "1.12.2"
},
"nsxt": {
"owner": "vmware",
@@ -757,10 +757,10 @@
"owner": "terraform-providers",
"provider-source-address": "registry.terraform.io/hashicorp/oci",
"repo": "terraform-provider-oci",
- "rev": "v4.57.0",
- "sha256": "123k24pa5232j9yxhgn6ng36s46y3iv4xsqay9ry53g4pw6zcx9y",
+ "rev": "v4.58.0",
+ "sha256": "0cxzy9sj4n7yz7zbqhpkr92h7gqqfx7qxpr0a1jgh9a087j3752c",
"vendorSha256": null,
- "version": "4.57.0"
+ "version": "4.58.0"
},
"okta": {
"owner": "okta",
@@ -768,7 +768,7 @@
"repo": "terraform-provider-okta",
"rev": "v3.20.2",
"sha256": "0qlm99m4dljnczsypn4gmw9n4vvxkfazi21hvkbkgy2v3wmhsms9",
- "vendorSha256": "1dadvvkspb654pmxzb8vlp88vpnh2ssgfsvlcaiikyjqh2z7wbq4",
+ "vendorSha256": "0fyxm6wff5pz5g3rjnia23npar9qbwcv01pa3rsskxkl8jc3v13j",
"version": "3.20.2"
},
"oktaasa": {
@@ -805,7 +805,7 @@
"repo": "terraform-provider-openstack",
"rev": "v1.46.0",
"sha256": "1kkqfr0i33kw0qj3dp5knxm14p1ndy72n4chd36dhkydp4rm688f",
- "vendorSha256": "1f77z6p8423gh8x7zbhn3pkd8a1nxd5pabc1043d66pbw9rxchax",
+ "vendorSha256": "10vcxqh77wqxwzsrq1y0rlyl7wazl5glmsqbz5wfvrq5b9q1r75x",
"version": "1.46.0"
},
"opentelekomcloud": {
@@ -821,10 +821,10 @@
"owner": "opsgenie",
"provider-source-address": "registry.terraform.io/opsgenie/opsgenie",
"repo": "terraform-provider-opsgenie",
- "rev": "v0.6.7",
- "sha256": "1dfp7s8zvnifnbka7azfxss42cj11s00mp92fj10bji4hkk0bvjq",
+ "rev": "v0.6.8",
+ "sha256": "10lq9gfmpwc56m6rihxjc5hkglmfh6sqsa0fwsypw6709488a7yq",
"vendorSha256": null,
- "version": "0.6.7"
+ "version": "0.6.8"
},
"oraclepaas": {
"owner": "terraform-providers",
@@ -857,10 +857,10 @@
"owner": "PaloAltoNetworks",
"provider-source-address": "registry.terraform.io/PaloAltoNetworks/panos",
"repo": "terraform-provider-panos",
- "rev": "v1.9.0",
- "sha256": "0v2vydrljnaq47pkz6rfrhl7zsqa8lgjclpa6jy7nyc69c02d90c",
+ "rev": "v1.9.1",
+ "sha256": "05jsap80dcgmncxa8xbx1hnrbpi9bxjz2k9jnfnws1pmbjxl94hf",
"vendorSha256": null,
- "version": "1.9.0"
+ "version": "1.9.1"
},
"pass": {
"owner": "camptocamp",
@@ -895,17 +895,17 @@
"repo": "terraform-provider-rabbitmq",
"rev": "v1.6.0",
"sha256": "0src4d032z3mpv10fgya2izqm8qfdgr87rfhpnld1r90yvxqgnl2",
- "vendorSha256": "sha256-wbnjAM2PYocAtRuY4fjLPGFPJfzsKih6Q0YCvFyMulQ=",
+ "vendorSha256": "0m5siifbq0j68dx2hapczhjlyq9wrgwf360vnl08fqlgrl0f7ff1",
"version": "1.6.0"
},
"rancher2": {
"owner": "rancher",
"provider-source-address": "registry.terraform.io/rancher/rancher2",
"repo": "terraform-provider-rancher2",
- "rev": "v1.22.1",
- "sha256": "0sx24riks78ywxsrhvc18w3wppz676zv1bjmzvm7r4q94miplxgl",
- "vendorSha256": "0qdd1sl9r6rpp9jmxy3r5a064f8agjmlkrn241p4sd7j5cncxdk3",
- "version": "1.22.1"
+ "rev": "v1.22.2",
+ "sha256": "0k5ljyb55nw993vc3whhnyjgwy97qr1pp5mbi9g40dlm84myi9bm",
+ "vendorSha256": "1x7i69cyss5mkz82ii5pqvjprgvqyd41admfdm7hpci626i9dhsr",
+ "version": "1.22.2"
},
"random": {
"owner": "hashicorp",
@@ -931,7 +931,7 @@
"repo": "terraform-provider-scaleway",
"rev": "v2.2.0",
"sha256": "1l9cmdz46rhvbnlyxi3hyk8rszf44xphpz22w56mrbi91z1yr8c1",
- "vendorSha256": "0f2nx0x6gpxw440s81mn7plg63zd0g4crnlbalmj6i2rjkpj48v5",
+ "vendorSha256": "0zbz0y3fg94c9794jgfcqngh1xcyqcdhcgmy74pdscrvydjhd5z8",
"version": "2.2.0"
},
"secret": {
@@ -958,7 +958,7 @@
"repo": "terraform-provider-sentry",
"rev": "v0.7.0",
"sha256": "09rxgq4m28nhwg6y51m5sq3d12lx7r1q3k76zrd5gpbxagqhvhkr",
- "vendorSha256": "1cpwa8a3p6mixdgvbgim1pnhvqh72sask950w2bxsgrpgdbnys5m",
+ "vendorSha256": "1wh2nf5q69j1p568c0q5yhlkd8ij3r8jg2769qy51wsj3bbv0wcj",
"version": "0.7.0"
},
"shell": {
@@ -967,7 +967,7 @@
"repo": "terraform-provider-shell",
"rev": "v1.7.10",
"sha256": "15pw8i1j47ppwrrh1gpfdkba54zab50ziqfqsc17pmv2gisq8d9d",
- "vendorSha256": "0d76xpzfba4xxxafgw0k2dkm22xpzgsa2bf53jwrgwyfvjgvj41c",
+ "vendorSha256": "1vgs7nvqa25c0qxhj7jpjfphshxsqhxvxnr9ny7x4ghzg9ab90rh",
"version": "1.7.10"
},
"signalfx": {
@@ -976,7 +976,7 @@
"repo": "terraform-provider-signalfx",
"rev": "v6.7.10",
"sha256": "113q9wwvz0lxn1l948g5mnwbpd76q8j2pm9q90nbkg1yvwsidsqi",
- "vendorSha256": "124vw40rpnsmna6fkwb9qp8z31hlxn4dx7p7vgng32l1w7ddwmcp",
+ "vendorSha256": "1dd42a9kqsrvvllign6g9kzb0jvav71x7kg9n2w9rs9wvmmang4w",
"version": "6.7.10"
},
"skytap": {
@@ -1001,10 +1001,10 @@
"owner": "spotinst",
"provider-source-address": "registry.terraform.io/spotinst/spotinst",
"repo": "terraform-provider-spotinst",
- "rev": "v1.64.1",
- "sha256": "0a0v1ydickmnn5gsv5lr97yv4lvhxf3q9mhhkl38ksijzd2radlz",
+ "rev": "v1.64.2",
+ "sha256": "0h47ik93lhb9mjg3ai9n76ya918h1mk3fyp70yr26rwc3rihvjm6",
"vendorSha256": "1lv305kamb3xnw3a2q45ndn7a88ifnh8j8ngv7awc41028j539w4",
- "version": "1.64.1"
+ "version": "1.64.2"
},
"stackpath": {
"owner": "stackpath",
@@ -1046,10 +1046,10 @@
"owner": "tencentcloudstack",
"provider-source-address": "registry.terraform.io/tencentcloudstack/tencentcloud",
"repo": "terraform-provider-tencentcloud",
- "rev": "v1.60.25",
- "sha256": "0ag0h9cxjzmzz3iqh6c9czmfqd6zxg82n13nahlcg7qg1b0c2rvv",
+ "rev": "v1.60.26",
+ "sha256": "1diwiyfswmgqm1iizj228s2ysrnx4z3lqlq82a7gp0z9p8rzd0vs",
"vendorSha256": null,
- "version": "1.60.25"
+ "version": "1.60.26"
},
"tfe": {
"owner": "hashicorp",
@@ -1057,7 +1057,7 @@
"repo": "terraform-provider-tfe",
"rev": "v0.27.0",
"sha256": "00lra2d8dzczlmx74cblk7hglj2dvlkkgv30ndb85fbmaq2jqw0n",
- "vendorSha256": "1g77ghz4928kfpidqd92cy6xkrqmz2y97x7g7lb55mw3mxg2bsx5",
+ "vendorSha256": "0p2kdf7l6k75c9ngfysj70fqf3my8fsm41gi8d1j1djfsxgzfpxs",
"version": "0.27.0"
},
"thunder": {
@@ -1075,7 +1075,7 @@
"repo": "terraform-provider-time",
"rev": "v0.7.2",
"sha256": "02b7l65civmphhdax05ajvbfm2ilqf421di1p3vj1zysz194wgl2",
- "vendorSha256": "sha256-oBgHd0KTAdlnAZZZdT1FOzcfC0afdIKoDEIwx/rMxRk=",
+ "vendorSha256": "06f5rkxcfc221jl84x4z8q5iydrv8lypancn05kxj0ck89vhf650",
"version": "0.7.2"
},
"tls": {
@@ -1128,10 +1128,10 @@
"owner": "vmware",
"provider-source-address": "registry.terraform.io/vmware/vcd",
"repo": "terraform-provider-vcd",
- "rev": "v3.4.0",
- "sha256": "0lvpcw4d70888c0dssvpzbx8n67a52yb66kanqzp4is0clw4943g",
- "vendorSha256": "19lwrr28fknv098s82cvczdb7xrcblsrh0jmzpn69gym5axcc2v9",
- "version": "3.4.0"
+ "rev": "v3.5.0",
+ "sha256": "1sdcjizg0gip55042p0599wvjicibyx9kiymxq45af14yhnwqyv5",
+ "vendorSha256": "0bzp6807l4hspk1c1pmgnzk0axk0nir3v0lqmw9xvkij4c5rnz9s",
+ "version": "3.5.0"
},
"venafi": {
"deleteVendor": true,
diff --git a/pkgs/applications/networking/cluster/terraform/default.nix b/pkgs/applications/networking/cluster/terraform/default.nix
index 7bcc6476115a..573cb83ccce2 100644
--- a/pkgs/applications/networking/cluster/terraform/default.nix
+++ b/pkgs/applications/networking/cluster/terraform/default.nix
@@ -184,7 +184,7 @@ rec {
terraform_0_14 = mkTerraform {
version = "0.14.11";
sha256 = "1yi1jj3n61g1kn8klw6l78shd23q79llb7qqwigqrx3ki2mp279j";
- vendorSha256 = "1d93aqkjdrvabkvix6h1qaxpjzv7w1wa7xa44czdnjs2lapx4smm";
+ vendorSha256 = "sha256-tWrSr6JCS9s+I0T1o3jgZ395u8IBmh73XGrnJidWI7U=";
patches = [ ./provider-path.patch ];
passthru = { inherit plugins; };
};
@@ -192,7 +192,7 @@ rec {
terraform_0_15 = mkTerraform {
version = "0.15.5";
sha256 = "18f4a6l24s3cym7gk40agxikd90i56q84wziskw1spy9rgv2yx6d";
- vendorSha256 = "12hrpxay6k3kz89ihyhl91c4lw4wp821ppa245w9977fq09fhnx0";
+ vendorSha256 = "sha256-oFvoEsDunJR4IULdGwS6nHBKWEgUehgT+nNM41W/GYo=";
patches = [ ./provider-path-0_15.patch ];
passthru = { inherit plugins; };
};
@@ -200,7 +200,7 @@ rec {
terraform_1 = mkTerraform {
version = "1.1.3";
sha256 = "sha256-dvAuzVmwnM2PQcILzw3xNacBwuRY7cZEU3nv4/DzOKE=";
- vendorSha256 = "sha256-inPNvNUcil9X0VQ/pVgZdnnmn9UCfEz7qXiuKDj8RYM=";
+ vendorSha256 = "sha256-Rk2hHtJfaS553MJIea6n51irMas3qcBrWAD+adzTi1Y=";
patches = [ ./provider-path-0_15.patch ];
passthru = { inherit plugins; };
};
diff --git a/pkgs/applications/networking/gns3/default.nix b/pkgs/applications/networking/gns3/default.nix
index 85d966191c44..5bb125c10077 100644
--- a/pkgs/applications/networking/gns3/default.nix
+++ b/pkgs/applications/networking/gns3/default.nix
@@ -1,7 +1,7 @@
{ callPackage, libsForQt5 }:
let
- stableVersion = "2.2.28";
+ stableVersion = "2.2.29";
previewVersion = stableVersion;
addVersion = args:
let version = if args.stable then stableVersion else previewVersion;
@@ -26,8 +26,8 @@ let
};
mkGui = args: libsForQt5.callPackage (import ./gui.nix (addVersion args // extraArgs)) { };
mkServer = args: callPackage (import ./server.nix (addVersion args // extraArgs)) { };
- guiSrcHash = "sha256-5GPGn0ZFlqoKkb5BOzxf2FqwPlu7hZe4ysWDGSROCj0=";
- serverSrcHash = "sha256-7xsgpm4KFeGFbW81/oMUGQSwXWXnBPTHzVVR0/cUe6U=";
+ guiSrcHash = "04yqh0kq5pkmadcxf090ilh9sqqxajcg65nf7ai1iikxi3x7z3r8";
+ serverSrcHash = "0p6q421rldmyqi0padssgrssf4d9mb5ifiqjm5y8vfhwfl5a2cqk";
in {
guiStable = mkGui {
stable = true;
diff --git a/pkgs/applications/science/astronomy/astrolog/default.nix b/pkgs/applications/science/astronomy/astrolog/default.nix
index dc567339d136..26d0639ae67f 100644
--- a/pkgs/applications/science/astronomy/astrolog/default.nix
+++ b/pkgs/applications/science/astronomy/astrolog/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchzip, fetchurl, xorg, gnused
+{ lib, stdenv, fetchzip, fetchurl, xorg
, withBigAtlas ? true
, withEphemeris ? true
, withMoonsEphemeris ? true
@@ -14,7 +14,8 @@ stdenv.mkDerivation rec {
};
patchPhase = ''
- ${gnused}/bin/sed -i "s:~/astrolog:$out/astrolog:g" astrolog.h
+ sed -i "s:~/astrolog:$out/astrolog:g" astrolog.h
+ substituteInPlace Makefile --replace cc "$CC" --replace strip "$STRIP"
'';
buildInputs = [ xorg.libX11 ];
diff --git a/pkgs/applications/science/misc/nextinspace/default.nix b/pkgs/applications/science/misc/nextinspace/default.nix
index 390b2c58ca68..fd7e58183144 100644
--- a/pkgs/applications/science/misc/nextinspace/default.nix
+++ b/pkgs/applications/science/misc/nextinspace/default.nix
@@ -1,24 +1,44 @@
-{ lib, fetchPypi, python3Packages }:
+{ lib
+, fetchFromGitHub
+, python3
+}:
-python3Packages.buildPythonPackage rec {
+python3.pkgs.buildPythonApplication rec {
pname = "nextinspace";
- version = "1.0.6";
+ version = "2.0.3";
+ format = "pyproject";
- src = fetchPypi {
- inherit pname version;
- sha256 = "1h3dksxyy5gq071fa7i2p73s50918y1bkk38hgfwr4226c3wipvg";
+ src = fetchFromGitHub {
+ owner = "not-stirred";
+ repo = pname;
+ rev = "v${version}";
+ hash = "sha256-Macx2pQglB95Bhc939TFVCHd1qvqJsco91EXKCIQLgg=";
};
- pythonPath = with python3Packages; [
+ nativeBuildInputs = with python3.pkgs; [
+ poetry-core
+ ];
+
+ pythonPath = with python3.pkgs; [
requests
tzlocal
colorama
];
+ checkInputs = with python3.pkgs; [
+ pytest-lazy-fixture
+ pytestCheckHook
+ requests-mock
+ ];
+
+ pythonImportsCheck = [
+ "nextinspace"
+ ];
+
meta = with lib; {
description = "Print upcoming space-related events in your terminal";
homepage = "https://github.com/The-Kid-Gid/nextinspace";
- license = licenses.gpl3;
+ license = licenses.gpl3Only;
maintainers = with maintainers; [ penguwin ];
};
}
diff --git a/pkgs/applications/version-management/commit-formatter/default.nix b/pkgs/applications/version-management/commit-formatter/default.nix
new file mode 100644
index 000000000000..eb475dca78a0
--- /dev/null
+++ b/pkgs/applications/version-management/commit-formatter/default.nix
@@ -0,0 +1,22 @@
+{ lib, fetchFromGitHub, rustPlatform }:
+
+rustPlatform.buildRustPackage rec {
+ pname = "commit-formatter";
+ version = "0.2.1";
+
+ src = fetchFromGitHub {
+ owner = "Eliot00";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "EYzhb9jJ4MzHxIbaTb1MxeXUgoxTwcnq5JdxAv2uNcA=";
+ };
+
+ cargoSha256 = "AeHQCoP1HOftlOt/Yala3AXocMlwwIXIO2i1AsFSvGQ=";
+
+ meta = with lib; {
+ description = "A CLI tool to help you write git commit";
+ homepage = "https://github.com/Eliot00/commit-formatter";
+ license = with licenses; [ asl20 /* or */ mit ];
+ maintainers = with maintainers; [ elliot ];
+ };
+}
diff --git a/pkgs/applications/video/kodi/unwrapped.nix b/pkgs/applications/video/kodi/unwrapped.nix
index dc5e41aeac5b..89eeed890485 100644
--- a/pkgs/applications/video/kodi/unwrapped.nix
+++ b/pkgs/applications/video/kodi/unwrapped.nix
@@ -10,7 +10,7 @@
, libjpeg, libpng, libtiff
, libmpeg2, libsamplerate, libmad
, libogg, libvorbis, flac, libxslt
-, lzo, libcdio, libmodplug, libass, libbluray
+, lzo, libcdio, libmodplug, libass, libbluray, libudfread
, sqlite, libmysqlclient, nasm, gnutls, libva, libdrm
, curl, bzip2, zip, unzip, glxinfo
, libcec, libcec_platform, dcadec, libuuid
@@ -118,7 +118,7 @@ in stdenv.mkDerivation {
libjpeg libpng libtiff
libmpeg2 libsamplerate libmad
libogg libvorbis flac libxslt systemd
- lzo libcdio libmodplug libass libbluray
+ lzo libcdio libmodplug libass libbluray libudfread
sqlite libmysqlclient avahi lame
curl bzip2 zip unzip glxinfo
libcec libcec_platform dcadec libuuid
diff --git a/pkgs/build-support/build-graalvm-native-image/default.nix b/pkgs/build-support/build-graalvm-native-image/default.nix
index 09b2d9f73a2b..3aedd61ea6ce 100644
--- a/pkgs/build-support/build-graalvm-native-image/default.nix
+++ b/pkgs/build-support/build-graalvm-native-image/default.nix
@@ -33,6 +33,8 @@ stdenv.mkDerivation (args // {
nativeImageBuildArgs = nativeImageBuildArgs ++ extraNativeImageBuildArgs ++ [ graalvmXmx ];
buildPhase = args.buildPhase or ''
+ export LC_ALL="en_US.UTF-8"
+
runHook preBuild
native-image ''${nativeImageBuildArgs[@]}
diff --git a/pkgs/data/misc/rime-data/default.nix b/pkgs/data/misc/rime-data/default.nix
index fbf65bc12a9f..97404764e200 100644
--- a/pkgs/data/misc/rime-data/default.nix
+++ b/pkgs/data/misc/rime-data/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation {
pname = "rime-data";
- version = "0.38.20210628";
+ version = "0.38.20211002";
src = fetchFromGitHub {
owner = "rime";
repo = "plum";
- rev = "0b835e347cad9c2d7038cfe82df5b5d1fe1c0327";
- sha256 = "0mja4wyazxdc6fr7pzij5ah4rzwxv4s12s64vfn5ikx1ias1f8ib";
+ rev = "1730556e1da5a08bb8e0a656c4780a46851a2913";
+ sha256 = "sha256-D7rPUxcB3QkCtisfBLHPiqfgL5lqmxjSiuEcpE63elw=";
};
buildInputs = [ librime ];
diff --git a/pkgs/desktops/gnome/apps/seahorse/default.nix b/pkgs/desktops/gnome/apps/seahorse/default.nix
index 67036df2d51b..8265636344fc 100644
--- a/pkgs/desktops/gnome/apps/seahorse/default.nix
+++ b/pkgs/desktops/gnome/apps/seahorse/default.nix
@@ -73,7 +73,7 @@ stdenv.mkDerivation rec {
# Add “org.gnome.crypto.pgp” GSettings schema to path
# to make it available for “gpgme-backend” test.
# It is used by Seahorse’s internal “common” library.
- addToSearchPath XDG_DATA_DIRS "${glib.getSchemaPath gcr}/../.."
+ addToSearchPath XDG_DATA_DIRS "${glib.getSchemaDataDirPath gcr}"
# The same test also requires home directory so that it can store settings.
export HOME=$TMPDIR
'';
diff --git a/pkgs/desktops/gnome/core/gnome-shell/default.nix b/pkgs/desktops/gnome/core/gnome-shell/default.nix
index 5e03551dceca..5de52723d007 100644
--- a/pkgs/desktops/gnome/core/gnome-shell/default.nix
+++ b/pkgs/desktops/gnome/core/gnome-shell/default.nix
@@ -55,7 +55,7 @@
, gnome-clocks
, gnome-settings-daemon
, gnome-autoar
-, asciidoc-full
+, asciidoc
, bash-completion
, mesa
}:
@@ -119,7 +119,7 @@ stdenv.mkDerivation rec {
desktop-file-utils
libxslt.bin
python3
- asciidoc-full
+ asciidoc
];
buildInputs = [
@@ -180,6 +180,9 @@ stdenv.mkDerivation rec {
chmod +x meson/postinstall.py
patchShebangs meson/postinstall.py
+ # We can generate it ourselves.
+ rm -f man/gnome-shell.1
+
substituteInPlace src/gnome-shell-extension-tool.in --replace "@PYTHON@" "${pythonEnv}/bin/python"
substituteInPlace src/gnome-shell-perf-tool.in --replace "@PYTHON@" "${pythonEnv}/bin/python"
'';
diff --git a/pkgs/development/libraries/audio/roc-toolkit/default.nix b/pkgs/development/libraries/audio/roc-toolkit/default.nix
index f9f9d4888e98..728e52b26701 100644
--- a/pkgs/development/libraries/audio/roc-toolkit/default.nix
+++ b/pkgs/development/libraries/audio/roc-toolkit/default.nix
@@ -40,7 +40,10 @@ stdenv.mkDerivation rec {
];
sconsFlags =
- [ "--disable-sox"
+ [ "--build=${stdenv.buildPlatform.config}"
+ "--host=${stdenv.hostPlatform.config}"
+ "--prefix=${placeholder "out"}"
+ "--disable-sox"
"--disable-tests" ] ++
lib.optional (!libunwindSupport) "--disable-libunwind" ++
lib.optional (!pulseaudioSupport) "--disable-pulseaudio" ++
@@ -52,10 +55,6 @@ stdenv.mkDerivation rec {
prePatch = lib.optionalString stdenv.isAarch64
"sed -i 's/c++98/c++11/g' SConstruct";
- preConfigure = ''
- sconsFlags+=" --prefix=$out"
- '';
-
meta = with lib; {
description = "Roc is a toolkit for real-time audio streaming over the network";
homepage = "https://github.com/roc-streaming/roc-toolkit";
diff --git a/pkgs/development/libraries/aws-crt-cpp/0001-build-Make-includedir-properly-overrideable.patch b/pkgs/development/libraries/aws-crt-cpp/0001-build-Make-includedir-properly-overrideable.patch
new file mode 100644
index 000000000000..ed08abfb48f8
--- /dev/null
+++ b/pkgs/development/libraries/aws-crt-cpp/0001-build-Make-includedir-properly-overrideable.patch
@@ -0,0 +1,58 @@
+From 6be95cf45c4b5beae8b364468cef42d5c5880836 Mon Sep 17 00:00:00 2001
+From: Jan Tojnar
+Date: Sun, 9 Jan 2022 01:57:18 +0100
+Subject: [PATCH] build: Make includedir properly overrideable
+
+This is required by some package managers like Nix.
+---
+ CMakeLists.txt | 20 ++++++++++++--------
+ 1 file changed, 12 insertions(+), 8 deletions(-)
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index ad50174..e0be58c 100644
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -54,6 +54,10 @@ elseif(NOT DEFINED CMAKE_INSTALL_LIBDIR)
+ set(CMAKE_INSTALL_LIBDIR "lib")
+ endif()
+
++if(NOT DEFINED CMAKE_INSTALL_INCLUDEDIR)
++ set(CMAKE_INSTALL_INCLUDEDIR "include")
++endif()
++
+ if (${CMAKE_INSTALL_LIBDIR} STREQUAL "lib64")
+ set(FIND_LIBRARY_USE_LIB64_PATHS true)
+ endif()
+@@ -302,7 +306,7 @@ endif ()
+
+ target_include_directories(${PROJECT_NAME} PUBLIC
+ $
+- $)
++ $)
+
+ aws_use_package(aws-c-http)
+ aws_use_package(aws-c-mqtt)
+@@ -316,13 +320,13 @@ aws_use_package(aws-c-s3)
+
+ target_link_libraries(${PROJECT_NAME} ${DEP_AWS_LIBS})
+
+-install(FILES ${AWS_CRT_HEADERS} DESTINATION "include/aws/crt" COMPONENT Development)
+-install(FILES ${AWS_CRT_AUTH_HEADERS} DESTINATION "include/aws/crt/auth" COMPONENT Development)
+-install(FILES ${AWS_CRT_CRYPTO_HEADERS} DESTINATION "include/aws/crt/crypto" COMPONENT Development)
+-install(FILES ${AWS_CRT_IO_HEADERS} DESTINATION "include/aws/crt/io" COMPONENT Development)
+-install(FILES ${AWS_CRT_IOT_HEADERS} DESTINATION "include/aws/iot" COMPONENT Development)
+-install(FILES ${AWS_CRT_MQTT_HEADERS} DESTINATION "include/aws/crt/mqtt" COMPONENT Development)
+-install(FILES ${AWS_CRT_HTTP_HEADERS} DESTINATION "include/aws/crt/http" COMPONENT Development)
++install(FILES ${AWS_CRT_HEADERS} DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}/aws/crt" COMPONENT Development)
++install(FILES ${AWS_CRT_AUTH_HEADERS} DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}/aws/crt/auth" COMPONENT Development)
++install(FILES ${AWS_CRT_CRYPTO_HEADERS} DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}/aws/crt/crypto" COMPONENT Development)
++install(FILES ${AWS_CRT_IO_HEADERS} DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}/aws/crt/io" COMPONENT Development)
++install(FILES ${AWS_CRT_IOT_HEADERS} DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}/aws/iot" COMPONENT Development)
++install(FILES ${AWS_CRT_MQTT_HEADERS} DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}/aws/crt/mqtt" COMPONENT Development)
++install(FILES ${AWS_CRT_HTTP_HEADERS} DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}/aws/crt/http" COMPONENT Development)
+
+ install(
+ TARGETS ${PROJECT_NAME}
+--
+2.34.1
+
diff --git a/pkgs/development/libraries/aws-crt-cpp/default.nix b/pkgs/development/libraries/aws-crt-cpp/default.nix
index 5d4a44ccf159..9f70be5eb8d0 100644
--- a/pkgs/development/libraries/aws-crt-cpp/default.nix
+++ b/pkgs/development/libraries/aws-crt-cpp/default.nix
@@ -18,6 +18,8 @@ stdenv.mkDerivation rec {
pname = "aws-crt-cpp";
version = "0.17.8";
+ outputs = [ "out" "dev" ];
+
src = fetchFromGitHub {
owner = "awslabs";
repo = "aws-crt-cpp";
@@ -25,6 +27,12 @@ stdenv.mkDerivation rec {
sha256 = "sha256-eHABIg3v5ycpQzacW/8C74PT6yDOXGmJqDa9P1hN7Mo=";
};
+ patches = [
+ # Correct include path for split outputs.
+ # https://github.com/awslabs/aws-crt-cpp/pull/325
+ ./0001-build-Make-includedir-properly-overrideable.patch
+ ];
+
postPatch = ''
substituteInPlace CMakeLists.txt --replace '-Werror' ""
'';
@@ -53,6 +61,11 @@ stdenv.mkDerivation rec {
"-DBUILD_SHARED_LIBS=ON"
];
+ postInstall = ''
+ # Prevent dependency cycle.
+ moveToOutput lib/aws-crt-cpp/cmake "$dev"
+ '';
+
meta = with lib; {
description = "C++ wrapper around the aws-c-* libraries";
homepage = "https://github.com/awslabs/aws-crt-cpp";
diff --git a/pkgs/development/libraries/glib/default.nix b/pkgs/development/libraries/glib/default.nix
index 9f39776be282..9d21d8e06f01 100644
--- a/pkgs/development/libraries/glib/default.nix
+++ b/pkgs/development/libraries/glib/default.nix
@@ -191,8 +191,12 @@ stdenv.mkDerivation rec {
passthru = rec {
gioModuleDir = "lib/gio/modules";
- makeSchemaPath = dir: name: "${dir}/share/gsettings-schemas/${name}/glib-2.0/schemas";
+
+ makeSchemaDataDirPath = dir: name: "${dir}/share/gsettings-schemas/${name}";
+ makeSchemaPath = dir: name: "${makeSchemaDataDirPath dir name}/glib-2.0/schemas";
getSchemaPath = pkg: makeSchemaPath pkg pkg.name;
+ getSchemaDataDirPath = pkg: makeSchemaDataDirPath pkg pkg.name;
+
inherit flattenInclude;
updateScript = gnome.updateScript { packageName = "glib"; };
};
diff --git a/pkgs/development/libraries/libadwaita/default.nix b/pkgs/development/libraries/libadwaita/default.nix
index 6324a134ed88..6976f872b300 100644
--- a/pkgs/development/libraries/libadwaita/default.nix
+++ b/pkgs/development/libraries/libadwaita/default.nix
@@ -73,7 +73,7 @@ stdenv.mkDerivation rec {
# AdwSettings needs to be initialized from “org.gnome.desktop.interface” GSettings schema when portal is not used for color scheme.
# It will not actually be used since the “color-scheme” key will only have been introduced in GNOME 42, falling back to detecting theme name.
# See adw_settings_constructed function in https://gitlab.gnome.org/GNOME/libadwaita/commit/60ec69f0a5d49cad8a6d79e4ecefd06dc6e3db12
- "XDG_DATA_DIRS=${glib.getSchemaPath gsettings-desktop-schemas}/../.."
+ "XDG_DATA_DIRS=${glib.getSchemaDataDirPath gsettings-desktop-schemas}"
# Tests need a cache directory
"HOME=$TMPDIR"
diff --git a/pkgs/development/libraries/libgtop/default.nix b/pkgs/development/libraries/libgtop/default.nix
index 98b0dc89fee8..517655080988 100644
--- a/pkgs/development/libraries/libgtop/default.nix
+++ b/pkgs/development/libraries/libgtop/default.nix
@@ -13,6 +13,8 @@ stdenv.mkDerivation rec {
pname = "libgtop";
version = "2.40.0";
+ outputs = [ "out" "dev" ];
+
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "1m6jbqk8maa52gxrf223442fr5bvvxgb7ham6v039i3r1i62gwvq";
diff --git a/pkgs/development/libraries/libhandy/default.nix b/pkgs/development/libraries/libhandy/default.nix
index 0744ae30f344..63c494999a93 100644
--- a/pkgs/development/libraries/libhandy/default.nix
+++ b/pkgs/development/libraries/libhandy/default.nix
@@ -94,7 +94,7 @@ stdenv.mkDerivation rec {
# HdySettings needs to be initialized from “org.gnome.desktop.interface” GSettings schema when portal is not used for color scheme.
# It will not actually be used since the “color-scheme” key will only have been introduced in GNOME 42, falling back to detecting theme name.
# See hdy_settings_constructed function in https://gitlab.gnome.org/GNOME/libhandy/-/commit/bb68249b005c445947bfb2bee66c91d0fe9c41a4
- "${glib.getSchemaPath gsettings-desktop-schemas}/../.."
+ (glib.getSchemaDataDirPath gsettings-desktop-schemas)
# Some tests require icons
"${hicolor-icon-theme}/share"
diff --git a/pkgs/development/libraries/libudfread/default.nix b/pkgs/development/libraries/libudfread/default.nix
new file mode 100644
index 000000000000..d4f9a0d06b46
--- /dev/null
+++ b/pkgs/development/libraries/libudfread/default.nix
@@ -0,0 +1,22 @@
+{ lib, stdenv, fetchurl, autoreconfHook, }:
+
+stdenv.mkDerivation rec {
+ pname = "libudfread";
+ version = "1.1.2";
+
+ src = fetchurl {
+ url =
+ "https://code.videolan.org/videolan/${pname}/-/archive/${version}/${pname}-${version}.tar.gz";
+ sha256 = "1idsfxff1x264n8jd7077qrd61rycsd09fwmc4ar7l4qmhk6gw9b";
+ };
+
+ nativeBuildInputs = [ autoreconfHook ];
+
+ meta = with lib; {
+ description = "UDF reader";
+ homepage = "https://code.videolan.org/videolan/libudfread";
+ license = licenses.lgpl21Plus;
+ maintainers = with maintainers; [ chkno ];
+ platforms = platforms.all;
+ };
+}
diff --git a/pkgs/development/libraries/libvncserver/default.nix b/pkgs/development/libraries/libvncserver/default.nix
index b9890f6a806b..b9da7135f92e 100644
--- a/pkgs/development/libraries/libvncserver/default.nix
+++ b/pkgs/development/libraries/libvncserver/default.nix
@@ -16,6 +16,8 @@ stdenv.mkDerivation rec {
pname = "libvncserver";
version = "0.9.13";
+ outputs = [ "out" "dev" ];
+
src = fetchFromGitHub {
owner = "LibVNC";
repo = "libvncserver";
@@ -23,11 +25,24 @@ stdenv.mkDerivation rec {
sha256 = "sha256-gQT/M2u4nWQ0MfO2gWAqY0ZJc7V9eGczGzcsxKmG4H8=";
};
- nativeBuildInputs = [ cmake ];
- buildInputs = [ libjpeg openssl libgcrypt libpng ]
- ++ lib.optional stdenv.isLinux systemd
- ++ lib.optional stdenv.isDarwin Carbon;
- propagatedBuildInputs = [ zlib ];
+ nativeBuildInputs = [
+ cmake
+ ];
+
+ buildInputs = [
+ libjpeg
+ openssl
+ libgcrypt
+ libpng
+ ] ++ lib.optionals stdenv.isLinux [
+ systemd
+ ] ++ lib.optional stdenv.isDarwin [
+ Carbon
+ ];
+
+ propagatedBuildInputs = [
+ zlib
+ ];
meta = with lib; {
description = "VNC server library";
diff --git a/pkgs/development/libraries/notcurses/default.nix b/pkgs/development/libraries/notcurses/default.nix
index 07ef398e6f8a..444cc5034e67 100644
--- a/pkgs/development/libraries/notcurses/default.nix
+++ b/pkgs/development/libraries/notcurses/default.nix
@@ -1,51 +1,63 @@
-{ stdenv
+{ lib
+, stdenv
+, fetchFromGitHub
, cmake
-, pkg-config
-, pandoc
+, libdeflate
, libunistring
, ncurses
+, pandoc
+, pkg-config
, zlib
-, ffmpeg
-, fetchFromGitHub
-, lib
-, multimediaSupport ? true
+, multimediaSupport ? true, ffmpeg
+, qrcodegenSupport ? true, qrcodegen
}:
stdenv.mkDerivation rec {
pname = "notcurses";
- version = "2.4.9";
+ version = "3.0.3";
src = fetchFromGitHub {
owner = "dankamongmen";
repo = "notcurses";
rev = "v${version}";
- sha256 = "sha256-J7yTNMvmcm69B+yF0PYLXFG8kkcnffWyUx3kEFU0ToI=";
+ sha256 = "sha256-jIUIr7roX9ciYkNmvS9m14RdNgFTElwrKadYzi0lCP0=";
};
outputs = [ "out" "dev" ];
- nativeBuildInputs = [ cmake pkg-config pandoc ];
+ nativeBuildInputs = [
+ cmake
+ pandoc
+ pkg-config
+ ];
- buildInputs = [ libunistring ncurses zlib ]
- ++ lib.optional multimediaSupport ffmpeg;
+ buildInputs = [
+ libdeflate
+ libunistring
+ ncurses
+ zlib
+ ]
+ ++ lib.optional qrcodegenSupport qrcodegen
+ ++ lib.optional multimediaSupport ffmpeg;
- cmakeFlags = [ "-DUSE_QRCODEGEN=OFF" ]
+ cmakeFlags =
+ lib.optional (qrcodegenSupport) "-DUSE_QRCODEGEN=ON"
++ lib.optional (!multimediaSupport) "-DUSE_MULTIMEDIA=none";
meta = with lib; {
- description = "blingful TUIs and character graphics";
+ homepage = "https://github.com/dankamongmen/notcurses";
+ description = "Blingful TUIs and character graphics";
longDescription = ''
- A library facilitating complex TUIs on modern terminal emulators,
- supporting vivid colors, multimedia, and Unicode to the maximum degree
- possible. Things can be done with Notcurses that simply can't be done
- with NCURSES.
+ Notcurses is a library facilitating complex TUIs on modern terminal
+ emulators, supporting vivid colors, multimedia, and Unicode to the maximum
+ degree possible. Things can be done with Notcurses that simply can't be
+ done with NCURSES.
It is not a source-compatible X/Open Curses implementation, nor a
replacement for NCURSES on existing systems.
'';
- homepage = "https://github.com/dankamongmen/notcurses";
license = licenses.asl20;
- platforms = platforms.all;
- maintainers = with maintainers; [ jb55 ];
+ maintainers = with maintainers; [ jb55 AndersonTorres ];
+ inherit (ncurses.meta) platforms;
};
}
diff --git a/pkgs/development/libraries/qrcodegen/default.nix b/pkgs/development/libraries/qrcodegen/default.nix
index 0ad42c1fc4d7..cd19705f1e93 100644
--- a/pkgs/development/libraries/qrcodegen/default.nix
+++ b/pkgs/development/libraries/qrcodegen/default.nix
@@ -1,4 +1,8 @@
-{ lib, stdenv, fetchFromGitHub }:
+{ lib
+, stdenv
+, fetchFromGitHub
+}:
+
stdenv.mkDerivation rec {
pname = "qrcodegen";
version = "1.7.0";
@@ -10,25 +14,28 @@ stdenv.mkDerivation rec {
sha256 = "sha256-WH6O3YE/+NNznzl52TXZYL+6O25GmKSnaFqDDhRl4As=";
};
- preBuild = "cd c";
+ preBuild = ''
+ cd c/
+ '';
+
installPhase = ''
+ runHook preInstall
+
mkdir -p $out/lib $out/include/qrcodegen
cp libqrcodegen.a $out/lib
cp qrcodegen.h $out/include/qrcodegen/
+
+ runHook postInstall
'';
- meta = with lib;
- {
- description = "qrcode generator library in multiple languages";
-
- longDescription = ''
- This project aims to be the best, clearest library for generating QR Codes. My primary goals are flexible options and absolute correctness. Secondary goals are compact implementation size and good documentation comments.
- '';
-
- homepage = "https://github.com/nayuki/QR-Code-generator";
-
- license = licenses.mit;
- platforms = platforms.all;
- maintainers = with maintainers; [ mcbeth ];
- };
+ meta = with lib; {
+ homepage = "https://www.nayuki.io/page/qr-code-generator-library";
+ description = "High-quality QR Code generator library in many languages";
+ license = licenses.mit;
+ maintainers = with maintainers; [ mcbeth AndersonTorres ];
+ platforms = platforms.unix;
+ broken = stdenv.isDarwin;
+ };
}
+# TODO: build the other languages
+# TODO: multiple outputs
diff --git a/pkgs/development/libraries/speechd/default.nix b/pkgs/development/libraries/speechd/default.nix
index 80034a5a9cf0..270894c3e554 100644
--- a/pkgs/development/libraries/speechd/default.nix
+++ b/pkgs/development/libraries/speechd/default.nix
@@ -1,8 +1,8 @@
-{ lib, stdenv
+{ stdenv
+, lib
, substituteAll
, pkg-config
, fetchurl
-, fetchpatch
, python3Packages
, gettext
, itstool
@@ -18,33 +18,20 @@
, withAlsa ? false, alsa-lib
, withOss ? false
, withFlite ? true, flite
-# , withFestival ? false, festival-freebsoft-utils
, withEspeak ? true, espeak, sonic, pcaudiolib
+, mbrola
, withPico ? true, svox
-# , withIvona ? false, libdumbtts
}:
let
- inherit (lib) optional optionals;
inherit (python3Packages) python pyxdg wrapPython;
-
- # speechd hard-codes espeak, even when built without support for it.
- selectedDefaultModule =
- if withEspeak then
- "espeak-ng"
- else if withPico then
- "pico"
- else if withFlite then
- "flite"
- else
- throw "You need to enable at least one output module.";
in stdenv.mkDerivation rec {
pname = "speech-dispatcher";
- version = "0.10.2";
+ version = "0.11.1";
src = fetchurl {
url = "https://github.com/brailcom/speechd/releases/download/${version}/${pname}-${version}.tar.gz";
- sha256 = "sha256-sGMZ8gHhXlbGKWZTr1vPwwDLNI6XLVF9+LBurHfq4tw=";
+ sha256 = "sha256-0doS7T2shPE3mbai7Dm6LTyiGoST9E3BhVvQupbC3cY=";
};
patches = [
@@ -52,12 +39,11 @@ in stdenv.mkDerivation rec {
src = ./fix-paths.patch;
utillinux = util-linux;
})
-
- # Fix build with Glib 2.68
- # https://github.com/brailcom/speechd/pull/462
- (fetchpatch {
- url = "https://github.com/brailcom/speechd/commit/a2faab416e42cbdf3d73f98578a89eb7a235e25a.patch";
- sha256 = "8Q7tUdKKBBtgXZZnj59OcJOkrCNeBR9gkBjhKlpW0hQ=";
+ ] ++ lib.optionals espeak.mbrolaSupport [
+ # Replace FHS paths.
+ (substituteAll {
+ src = ./fix-mbrola-paths.patch;
+ inherit espeak mbrola;
})
];
@@ -79,36 +65,39 @@ in stdenv.mkDerivation rec {
libpulseaudio
alsa-lib
python
- ] ++ optionals withEspeak [
+ ] ++ lib.optionals withEspeak [
espeak
sonic
pcaudiolib
- ] ++ optional withFlite flite
- ++ optional withPico svox
- # TODO: add flint/festival support with festival-freebsoft-utils package
- # ++ optional withFestival festival-freebsoft-utils
- # TODO: add Ivona support with libdumbtts package
- # ++ optional withIvona libdumbtts
- ;
+ ] ++ lib.optional withFlite [
+ flite
+ ] ++ lib.optional withPico [
+ svox
+ ];
- pythonPath = [ pyxdg ];
+ pythonPath = [
+ pyxdg
+ ];
configureFlags = [
# Audio method falls back from left to right.
"--with-default-audio-method=\"libao,pulse,alsa,oss\""
"--with-systemdsystemunitdir=${placeholder "out"}/lib/systemd/system"
- ] ++ optional withPulse "--with-pulse"
- ++ optional withAlsa "--with-alsa"
- ++ optional withLibao "--with-libao"
- ++ optional withOss "--with-oss"
- ++ optional withEspeak "--with-espeak-ng"
- ++ optional withPico "--with-pico"
- # ++ optional withFestival "--with-flint"
- # ++ optional withIvona "--with-ivona"
- ;
+ ] ++ lib.optional withPulse [
+ "--with-pulse"
+ ] ++ lib.optional withAlsa [
+ "--with-alsa"
+ ] ++ lib.optional withLibao [
+ "--with-libao"
+ ] ++ lib.optional withOss [
+ "--with-oss"
+ ] ++ lib.optional withEspeak [
+ "--with-espeak-ng"
+ ] ++ lib.optional withPico [
+ "--with-pico"
+ ];
postPatch = ''
- substituteInPlace config/speechd.conf --replace "DefaultModule espeak" "DefaultModule ${selectedDefaultModule}"
substituteInPlace src/modules/pico.c --replace "/usr/share/pico/lang" "${svox}/share/pico/lang"
'';
@@ -122,7 +111,10 @@ in stdenv.mkDerivation rec {
description = "Common interface to speech synthesis";
homepage = "https://devel.freebsoft.org/speechd";
license = licenses.gpl2Plus;
- maintainers = with maintainers; [ berce ];
+ maintainers = with maintainers; [
+ berce
+ jtojnar
+ ];
platforms = platforms.linux;
};
}
diff --git a/pkgs/development/libraries/speechd/fix-mbrola-paths.patch b/pkgs/development/libraries/speechd/fix-mbrola-paths.patch
new file mode 100644
index 000000000000..ea16bea9bac5
--- /dev/null
+++ b/pkgs/development/libraries/speechd/fix-mbrola-paths.patch
@@ -0,0 +1,21 @@
+diff --git a/src/modules/espeak.c b/src/modules/espeak.c
+index 94a01197..9bb34475 100644
+--- a/src/modules/espeak.c
++++ b/src/modules/espeak.c
+@@ -898,13 +898,13 @@ static SPDVoice **espeak_list_synthesis_voices()
+ path = g_strdup_printf("%s/mbrola/%s", espeak_data, voicename);
+ if (access(path, O_RDONLY) != 0) {
+ g_free(path);
+- path = g_strdup_printf("/usr/share/mbrola/%s", voicename);
++ path = g_strdup_printf("@mbrola@/share/mbrola/%s", voicename);
+ if (access(path, O_RDONLY) != 0) {
+ g_free(path);
+- path = g_strdup_printf("/usr/share/mbrola/%s/%s", voicename, voicename);
++ path = g_strdup_printf("@mbrola@/share/mbrola/%s/%s", voicename, voicename);
+ if (access(path, O_RDONLY) != 0) {
+ g_free(path);
+- path = g_strdup_printf("/usr/share/mbrola/voices/%s", voicename);
++ path = g_strdup_printf("@mbrola@/share/mbrola/voices/%s", voicename);
+ if (access(path, O_RDONLY) != 0) {
+ g_free(path);
+ espeak_mbrola[j] = NULL;
diff --git a/pkgs/development/lisp-modules/asdf/2.26.nix b/pkgs/development/lisp-modules/asdf/2.26.nix
index 05851777a7fe..dbf81bb76a5f 100644
--- a/pkgs/development/lisp-modules/asdf/2.26.nix
+++ b/pkgs/development/lisp-modules/asdf/2.26.nix
@@ -9,7 +9,8 @@ stdenv.mkDerivation rec {
sha256 = "sha256-tuUuIlZcS+a0izXeJl3Ckp+/PYAWkZ0+Cw7blwkh9+M=";
};
- buildInputs = [
+ strictDeps = true;
+ nativeBuildInputs = [
texinfo
texLive
perl
diff --git a/pkgs/development/lisp-modules/asdf/3.1.nix b/pkgs/development/lisp-modules/asdf/3.1.nix
index 11cee90bf1fe..cda5d46131a0 100644
--- a/pkgs/development/lisp-modules/asdf/3.1.nix
+++ b/pkgs/development/lisp-modules/asdf/3.1.nix
@@ -9,7 +9,8 @@ stdenv.mkDerivation rec {
sha256 = "sha256-+P+FLM1mr2KRdj7bfhWq4ync86bJS/uE0Jm/E/e4HL0=";
};
- buildInputs = [
+ strictDeps = true;
+ nativeBuildInputs = [
texinfo
texLive
perl
diff --git a/pkgs/development/lisp-modules/asdf/default.nix b/pkgs/development/lisp-modules/asdf/default.nix
index d1b45cb32c33..78d49a917898 100644
--- a/pkgs/development/lisp-modules/asdf/default.nix
+++ b/pkgs/development/lisp-modules/asdf/default.nix
@@ -9,7 +9,8 @@ stdenv.mkDerivation rec {
sha256 = "sha256-/k7cmN0ymZUgpP4K+IWfhq85TkzfPjTR4QdUgV9n1x4=";
};
- buildInputs = [
+ strictDeps = true;
+ nativeBuildInputs = [
texinfo
texLive
perl
diff --git a/pkgs/development/node-packages/default.nix b/pkgs/development/node-packages/default.nix
index e063a0d7c012..2e7c6fc38cc3 100644
--- a/pkgs/development/node-packages/default.nix
+++ b/pkgs/development/node-packages/default.nix
@@ -440,6 +440,7 @@ let
buildInputs = [ self.node-pre-gyp ];
postInstall = ''
echo /var/lib/thelounge > $out/lib/node_modules/thelounge/.thelounge_home
+ patch -d $out/lib/node_modules/thelounge -p1 < ${./thelounge-packages-path.patch}
'';
};
diff --git a/pkgs/development/node-packages/node-packages.json b/pkgs/development/node-packages/node-packages.json
index bd7197185af8..488061fb0028 100644
--- a/pkgs/development/node-packages/node-packages.json
+++ b/pkgs/development/node-packages/node-packages.json
@@ -289,6 +289,45 @@
, "textlint-rule-unexpanded-acronym"
, "textlint-rule-write-good"
, "thelounge"
+, "thelounge-plugin-closepms"
+, "thelounge-plugin-giphy"
+, "thelounge-plugin-shortcuts"
+, "thelounge-theme-abyss"
+, "thelounge-theme-amoled"
+, "thelounge-theme-amoled-sourcecodepro"
+, "thelounge-theme-bdefault"
+, "thelounge-theme-bmorning"
+, "thelounge-theme-chord"
+, "thelounge-theme-classic"
+, "thelounge-theme-common"
+, "thelounge-theme-crypto"
+, "thelounge-theme-discordapp"
+, "thelounge-theme-dracula"
+, "thelounge-theme-dracula-official"
+, "thelounge-theme-flat-blue"
+, "thelounge-theme-flat-dark"
+, "thelounge-theme-gruvbox"
+, "thelounge-theme-hexified"
+, "thelounge-theme-ion"
+, "thelounge-theme-light"
+, "thelounge-theme-midnight"
+, "thelounge-theme-mininapse"
+, "thelounge-theme-monokai-console"
+, "thelounge-theme-mortified"
+, "thelounge-theme-neuron-fork"
+, "thelounge-theme-new-morning"
+, "thelounge-theme-new-morning-compact"
+, "thelounge-theme-nologo"
+, "thelounge-theme-nord"
+, "thelounge-theme-onedark"
+, "thelounge-theme-purplenight"
+, "thelounge-theme-scoutlink"
+, "thelounge-theme-seraphimrp"
+, "thelounge-theme-solarized"
+, "thelounge-theme-solarized-fork-monospace"
+, "thelounge-theme-zenburn"
+, "thelounge-theme-zenburn-monospace"
+, "thelounge-theme-zenburn-sourcecodepro"
, "three"
, "tiddlywiki"
, "titanium"
diff --git a/pkgs/development/node-packages/node-packages.nix b/pkgs/development/node-packages/node-packages.nix
index 59d6d063130f..675e4b8815b2 100644
--- a/pkgs/development/node-packages/node-packages.nix
+++ b/pkgs/development/node-packages/node-packages.nix
@@ -130,112 +130,148 @@ let
sha512 = "i3hkJ/k0gZMmxIAq0yq0V7mW1kSRJcyND6NN6fmeOEd0UMCwtNhn1sbVdxbdUiKD5vcpNTi5prRmqDITF894bA==";
};
};
- "@antora/asciidoc-loader-2.3.4" = {
+ "@antora/asciidoc-loader-3.0.0" = {
name = "_at_antora_slash_asciidoc-loader";
packageName = "@antora/asciidoc-loader";
- version = "2.3.4";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@antora/asciidoc-loader/-/asciidoc-loader-2.3.4.tgz";
- sha512 = "IQ0d/hnOCGZXzTYUwKAw2BlyRMI4Kg/zu7XejQ6ERIncjuUUv/+PhlzVxoJNT0r9uasJFHDlZ7l3X53Hn+MUuQ==";
+ url = "https://registry.npmjs.org/@antora/asciidoc-loader/-/asciidoc-loader-3.0.0.tgz";
+ sha512 = "6l+/SfI8zvOdj+kHDYkR61HyHCTywxRY5np7CIDF0DP3w36geLHQ72zsLv++WoFqPciBb+3WxPeY7w8OnUh2Nw==";
};
};
- "@antora/content-aggregator-2.3.4" = {
+ "@antora/content-aggregator-3.0.0" = {
name = "_at_antora_slash_content-aggregator";
packageName = "@antora/content-aggregator";
- version = "2.3.4";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@antora/content-aggregator/-/content-aggregator-2.3.4.tgz";
- sha512 = "ZwlGm/t90PUnGVo+pir71O+wC+gyXnVuhoAed+9bBLjsiGI7EGUzwUEXSZqHRSihPx5XLFj6pZinoCGX+uabcw==";
+ url = "https://registry.npmjs.org/@antora/content-aggregator/-/content-aggregator-3.0.0.tgz";
+ sha512 = "LdRztRiDTB1x0h634UoM3BMDFaouNC+M8l9z5Qa/LVbxtsVFWCwDf2Crnpr2bGWSS1ozFxB2lrwLglt9Te/veA==";
};
};
- "@antora/content-classifier-2.3.4" = {
+ "@antora/content-classifier-3.0.0" = {
name = "_at_antora_slash_content-classifier";
packageName = "@antora/content-classifier";
- version = "2.3.4";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@antora/content-classifier/-/content-classifier-2.3.4.tgz";
- sha512 = "DR4I6dLSZEFOS3T0F/hYwLf3AGY2Rb3e9j8V8ygEFzdP8OySAAZWyTjjJPF4pJZqjWtqD7s7S1f5/cCI83977Q==";
+ url = "https://registry.npmjs.org/@antora/content-classifier/-/content-classifier-3.0.0.tgz";
+ sha512 = "K7s8otINSo7Om1494xY26aJFFCy3C2rwJEgRU7jNcCMLHuDFh7zC1masqSkFOSN18P2Nt3rUu7pvGfw3CXY5+Q==";
};
};
- "@antora/document-converter-2.3.4" = {
+ "@antora/document-converter-3.0.0" = {
name = "_at_antora_slash_document-converter";
packageName = "@antora/document-converter";
- version = "2.3.4";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@antora/document-converter/-/document-converter-2.3.4.tgz";
- sha512 = "Fo2SKdX3BlNrvfQEBOi2II+YmYzdEqKQ5+lO2pzxJuNBfqN0kJJYYk30jFPR27h6QuU43U/XZgufyDt+FjfdZg==";
+ url = "https://registry.npmjs.org/@antora/document-converter/-/document-converter-3.0.0.tgz";
+ sha512 = "J8foZPdpBxzFFFDpse/JJiCZ72zS4G4oPRg5YEvfyP8tHjpunAlSEElOXapyVlGjmKUmp34ux9xMLoluzv/RIA==";
};
};
- "@antora/expand-path-helper-1.0.0" = {
+ "@antora/expand-path-helper-2.0.0" = {
name = "_at_antora_slash_expand-path-helper";
packageName = "@antora/expand-path-helper";
- version = "1.0.0";
+ version = "2.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@antora/expand-path-helper/-/expand-path-helper-1.0.0.tgz";
- sha512 = "hg3y6M3OvRTb7jtLAnwwloYDxafbyKYttcf16kGCXvP7Wqosh7c+Ag+ltaZ7VSebpzpphO/umb/BXdpU7rxapw==";
+ url = "https://registry.npmjs.org/@antora/expand-path-helper/-/expand-path-helper-2.0.0.tgz";
+ sha512 = "CSMBGC+tI21VS2kGW3PV7T2kQTM5eT3f2GTPVLttwaNYbNxDve08en/huzszHJfxo11CcEs26Ostr0F2c1QqeA==";
};
};
- "@antora/navigation-builder-2.3.4" = {
+ "@antora/file-publisher-3.0.0" = {
+ name = "_at_antora_slash_file-publisher";
+ packageName = "@antora/file-publisher";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@antora/file-publisher/-/file-publisher-3.0.0.tgz";
+ sha512 = "bsLOAInskhYfIbb8gPPIRwnouNM6Rzj1nWbFfi8iXGhESkHpCh3c0FCIEDZpVYR4Ueobc6epw3ljCSYa7dytGw==";
+ };
+ };
+ "@antora/logger-3.0.0" = {
+ name = "_at_antora_slash_logger";
+ packageName = "@antora/logger";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@antora/logger/-/logger-3.0.0.tgz";
+ sha512 = "u8XojkuEco0vwatS9EElA2rBlsCK3Nx7yENvL53HIqsC1yyYSW8U3DtiGtXsXZgZNyr+ZW9qrNA+XfyuHy+eFw==";
+ };
+ };
+ "@antora/navigation-builder-3.0.0" = {
name = "_at_antora_slash_navigation-builder";
packageName = "@antora/navigation-builder";
- version = "2.3.4";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@antora/navigation-builder/-/navigation-builder-2.3.4.tgz";
- sha512 = "55I7p9tNTernQ/YR1+mp6RRXMV5EcU8q20Tdodt3mazdm3ObTe9E9XVAvUDFmDzRA27D0eb06jVRwLoth1gHYA==";
+ url = "https://registry.npmjs.org/@antora/navigation-builder/-/navigation-builder-3.0.0.tgz";
+ sha512 = "hrgGQdXw26FsX3GYCHDhRUNvfStVYX2Rkj4kA1pFNPw0VT6eU+nqpqbNuxjsU890812cCHgzaLtrsfiM0LDaNg==";
};
};
- "@antora/page-composer-2.3.4" = {
+ "@antora/page-composer-3.0.0" = {
name = "_at_antora_slash_page-composer";
packageName = "@antora/page-composer";
- version = "2.3.4";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@antora/page-composer/-/page-composer-2.3.4.tgz";
- sha512 = "xY0O9X87DzcoP6k/5Jx55ysy0iQIhgav3q1JbOQK/FoYQYHbiQgmVWOjJdqh5nZw57ih3yE20JROPuYqOYuUZA==";
+ url = "https://registry.npmjs.org/@antora/page-composer/-/page-composer-3.0.0.tgz";
+ sha512 = "inJegSuA+8qjvwvpTvdQCwiqZjmT+2XtwOzmjYQXqzpm033Q3JDtbM83Z2Mclj2g/feMquRdtQQYpaQkVhZzIA==";
};
};
- "@antora/playbook-builder-2.3.4" = {
+ "@antora/playbook-builder-3.0.0" = {
name = "_at_antora_slash_playbook-builder";
packageName = "@antora/playbook-builder";
- version = "2.3.4";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@antora/playbook-builder/-/playbook-builder-2.3.4.tgz";
- sha512 = "iPjBndcoZhWqpN608WOkXKUUD94b3JX38igebshiT5/NRINJbeEclpdEX/gPv8D1Z1JcrSVGURZQO1uML76dkg==";
+ url = "https://registry.npmjs.org/@antora/playbook-builder/-/playbook-builder-3.0.0.tgz";
+ sha512 = "6tECWOrbEJ0IEPMOdXlfWVjHUlFFYlHJA0ELmtAEBsdGxBpf7Be8cOwnrrIRwK2PZJiVws4W8qh/78zJuktuHw==";
};
};
- "@antora/redirect-producer-2.3.4" = {
+ "@antora/redirect-producer-3.0.0" = {
name = "_at_antora_slash_redirect-producer";
packageName = "@antora/redirect-producer";
- version = "2.3.4";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@antora/redirect-producer/-/redirect-producer-2.3.4.tgz";
- sha512 = "148amiLc+1Pod6kluAOBke8OATFWFUW3LZdTPFVfqX1lJolCp5ciOnGciy52sIIysSyVkQUjotEUhqGO9Af1EQ==";
+ url = "https://registry.npmjs.org/@antora/redirect-producer/-/redirect-producer-3.0.0.tgz";
+ sha512 = "55cSu4rFnH/I/bFhSs+6AxWnP9bDHmMkZ4prf0qc1PLUY2M7ilvYvyjBAJwa69nt3c7fq8dNv1efUDJxENcyxQ==";
};
};
- "@antora/site-mapper-2.3.4" = {
+ "@antora/site-generator-3.0.0" = {
+ name = "_at_antora_slash_site-generator";
+ packageName = "@antora/site-generator";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@antora/site-generator/-/site-generator-3.0.0.tgz";
+ sha512 = "qjG1somzw0b4tWYDttn5PHplKxJAoIHU/6i3X4FvAT2s/SlwjDY5TTnJBMVhLdHuIXeG5foZ8Lmk0OomgGJa7Q==";
+ };
+ };
+ "@antora/site-mapper-3.0.0" = {
name = "_at_antora_slash_site-mapper";
packageName = "@antora/site-mapper";
- version = "2.3.4";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@antora/site-mapper/-/site-mapper-2.3.4.tgz";
- sha512 = "GVghn6ausIWZlUfbEEdDD4YB7M1mWJAUMokyha9sE5w0gyYoWwukKWQiwCwk/JhvnwXunMLhEUm6y2nrHEmlLw==";
+ url = "https://registry.npmjs.org/@antora/site-mapper/-/site-mapper-3.0.0.tgz";
+ sha512 = "ctjDJfVdSxeJ2c0XxDmh9OZS92duCKS9DBMS3RGuocuoXuyeOqn1/cybeMXFU9PmqUN4R3M2Ff7GZ5RO6DC/UQ==";
};
};
- "@antora/site-publisher-2.3.4" = {
+ "@antora/site-publisher-3.0.0" = {
name = "_at_antora_slash_site-publisher";
packageName = "@antora/site-publisher";
- version = "2.3.4";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@antora/site-publisher/-/site-publisher-2.3.4.tgz";
- sha512 = "7xI/5OdjKq5tkdGzE0ABkl/QpIcgtnof+rnIWZweQKeQtA3LWutvEHtdIeXLQt0oNZmE/kf45FwC2XCg9/ptDg==";
+ url = "https://registry.npmjs.org/@antora/site-publisher/-/site-publisher-3.0.0.tgz";
+ sha512 = "Mw+z6mbfEpnwJyszSXZS1W9Yox6jqMtN1WY/8eJ5GuflJXnwYz8Ppdy7vUH3BpHPm7T013T4kl5Jweqz3v6eSg==";
};
};
- "@antora/ui-loader-2.3.4" = {
+ "@antora/ui-loader-3.0.0" = {
name = "_at_antora_slash_ui-loader";
packageName = "@antora/ui-loader";
- version = "2.3.4";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@antora/ui-loader/-/ui-loader-2.3.4.tgz";
- sha512 = "eorTmZW7zc6ZHgGLt3Vrq7mzPuobPeJnyfli50/m/DIQ91slkqjPKUYGcq4paPEz6IWoa7LT2ZwtwA5KzMyTPg==";
+ url = "https://registry.npmjs.org/@antora/ui-loader/-/ui-loader-3.0.0.tgz";
+ sha512 = "/nOKo9aS/S/dVL6Juhyc2UI70xAi3sKa3PiYQ+Jl7673sUGa/rqCbUVzQejwXys+rsKouk+miMVn4FJpAdh78g==";
+ };
+ };
+ "@antora/user-require-helper-2.0.0" = {
+ name = "_at_antora_slash_user-require-helper";
+ packageName = "@antora/user-require-helper";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@antora/user-require-helper/-/user-require-helper-2.0.0.tgz";
+ sha512 = "5fMfBZfw4zLoFdDAPMQX6Frik90uvfD8rXOA4UpXPOUikkX4uT1Rk6m0/4oi8oS3fcjiIl0k/7Nc+eTxW5TcQQ==";
};
};
"@apidevtools/json-schema-ref-parser-9.0.9" = {
@@ -292,6 +328,735 @@ let
sha512 = "vyrkEHG1jrukmzTPtyWB4NLPauUw5bQeg4uhn8f+1SSynmrOcyvlb1GKQjjgoBzElLdfXCRYX8UnBlhklOHYRQ==";
};
};
+ "@asciidoctor/core-2.2.5" = {
+ name = "_at_asciidoctor_slash_core";
+ packageName = "@asciidoctor/core";
+ version = "2.2.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@asciidoctor/core/-/core-2.2.5.tgz";
+ sha512 = "jtQPQ5EivgFbwvSyGKas4ANnMGGHPbmu791H9xrZKooA65JNI30jM2em5MvUXTTetSPgb6saUf+PJibEuSB6uw==";
+ };
+ };
+ "@aws-crypto/crc32-2.0.0" = {
+ name = "_at_aws-crypto_slash_crc32";
+ packageName = "@aws-crypto/crc32";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-crypto/crc32/-/crc32-2.0.0.tgz";
+ sha512 = "TvE1r2CUueyXOuHdEigYjIZVesInd9KN+K/TFFNfkkxRThiNxO6i4ZqqAVMoEjAamZZ1AA8WXJkjCz7YShHPQA==";
+ };
+ };
+ "@aws-crypto/ie11-detection-2.0.0" = {
+ name = "_at_aws-crypto_slash_ie11-detection";
+ packageName = "@aws-crypto/ie11-detection";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-crypto/ie11-detection/-/ie11-detection-2.0.0.tgz";
+ sha512 = "pkVXf/dq6PITJ0jzYZ69VhL8VFOFoPZLZqtU/12SGnzYuJOOGNfF41q9GxdI1yqC8R13Rq3jOLKDFpUJFT5eTA==";
+ };
+ };
+ "@aws-crypto/sha256-browser-2.0.0" = {
+ name = "_at_aws-crypto_slash_sha256-browser";
+ packageName = "@aws-crypto/sha256-browser";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-crypto/sha256-browser/-/sha256-browser-2.0.0.tgz";
+ sha512 = "rYXOQ8BFOaqMEHJrLHul/25ckWH6GTJtdLSajhlqGMx0PmSueAuvboCuZCTqEKlxR8CQOwRarxYMZZSYlhRA1A==";
+ };
+ };
+ "@aws-crypto/sha256-js-2.0.0" = {
+ name = "_at_aws-crypto_slash_sha256-js";
+ packageName = "@aws-crypto/sha256-js";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-crypto/sha256-js/-/sha256-js-2.0.0.tgz";
+ sha512 = "VZY+mCY4Nmrs5WGfitmNqXzaE873fcIZDu54cbaDaaamsaTOP1DBImV9F4pICc3EHjQXujyE8jig+PFCaew9ig==";
+ };
+ };
+ "@aws-crypto/supports-web-crypto-2.0.0" = {
+ name = "_at_aws-crypto_slash_supports-web-crypto";
+ packageName = "@aws-crypto/supports-web-crypto";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-crypto/supports-web-crypto/-/supports-web-crypto-2.0.0.tgz";
+ sha512 = "Ge7WQ3E0OC7FHYprsZV3h0QIcpdyJLvIeg+uTuHqRYm8D6qCFJoiC+edSzSyFiHtZf+NOQDJ1q46qxjtzIY2nA==";
+ };
+ };
+ "@aws-crypto/util-2.0.1" = {
+ name = "_at_aws-crypto_slash_util";
+ packageName = "@aws-crypto/util";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-crypto/util/-/util-2.0.1.tgz";
+ sha512 = "JJmFFwvbm08lULw4Nm5QOLg8+lAQeC8aCXK5xrtxntYzYXCGfHwUJ4Is3770Q7HmICsXthGQ+ZsDL7C2uH3yBQ==";
+ };
+ };
+ "@aws-sdk/abort-controller-3.40.0" = {
+ name = "_at_aws-sdk_slash_abort-controller";
+ packageName = "@aws-sdk/abort-controller";
+ version = "3.40.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/abort-controller/-/abort-controller-3.40.0.tgz";
+ sha512 = "S7LzLvNuwuf0q7r4q7zqGzxd/W2xYsn8cpZ90MMb3ObolhbkLySrikUJujmXae8k+2/KFCOr+FVC0YLrATSUgQ==";
+ };
+ };
+ "@aws-sdk/chunked-blob-reader-3.37.0" = {
+ name = "_at_aws-sdk_slash_chunked-blob-reader";
+ packageName = "@aws-sdk/chunked-blob-reader";
+ version = "3.37.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/chunked-blob-reader/-/chunked-blob-reader-3.37.0.tgz";
+ sha512 = "uDacnFaczeO962RnVttwAQddS4rgDfI7nfeY8NV6iZkDv5uxGzHTfH4jT7WvPDM1pSMcOMDx8RJ+Tmtsd1VTsA==";
+ };
+ };
+ "@aws-sdk/chunked-blob-reader-native-3.37.0" = {
+ name = "_at_aws-sdk_slash_chunked-blob-reader-native";
+ packageName = "@aws-sdk/chunked-blob-reader-native";
+ version = "3.37.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/chunked-blob-reader-native/-/chunked-blob-reader-native-3.37.0.tgz";
+ sha512 = "h9OYq6EvDrpb7SKod+Kow+d3aRNFVBYR1a8G8ahEDDQe3AtmA2Smyvni4kt/ABTiKvYdof2//Pq3BL/IUV9n9Q==";
+ };
+ };
+ "@aws-sdk/client-s3-3.45.0" = {
+ name = "_at_aws-sdk_slash_client-s3";
+ packageName = "@aws-sdk/client-s3";
+ version = "3.45.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.45.0.tgz";
+ sha512 = "9JMAdLNWKlqKb3k2mtI0LRrzrfLfqnbShG5e6Im8+Rj+Br5QhtrJ5WIwvT953S+GGumvBzWE28kQcN1/Ve0flw==";
+ };
+ };
+ "@aws-sdk/client-sso-3.45.0" = {
+ name = "_at_aws-sdk_slash_client-sso";
+ packageName = "@aws-sdk/client-sso";
+ version = "3.45.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.45.0.tgz";
+ sha512 = "MfsKg4Wq5KvuGEg+M7kYfl6B3TRhxKeL01+5wtxhYbiLqxzr18mfO8PnBAasXMmYCmEQsSGmFepD7GLOld9uHA==";
+ };
+ };
+ "@aws-sdk/client-sts-3.45.0" = {
+ name = "_at_aws-sdk_slash_client-sts";
+ packageName = "@aws-sdk/client-sts";
+ version = "3.45.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.45.0.tgz";
+ sha512 = "D+VGhAg+1i7/WQhfkLn7nWHR+Uyp7FPVAQ/N2MBQvZxGbSSb2agU9DN2FnxeFljOEcGJ7NdJ9YSZCFlJo0bLWA==";
+ };
+ };
+ "@aws-sdk/config-resolver-3.45.0" = {
+ name = "_at_aws-sdk_slash_config-resolver";
+ packageName = "@aws-sdk/config-resolver";
+ version = "3.45.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/config-resolver/-/config-resolver-3.45.0.tgz";
+ sha512 = "pk+9jWQGvga2jr4aiB/KR1vAI0vPngvo9HqBbKebbJzaBhpA/RwGVWB1ZJch93oG8DBeyKZ0md9eOJRU1BkTIQ==";
+ };
+ };
+ "@aws-sdk/credential-provider-env-3.40.0" = {
+ name = "_at_aws-sdk_slash_credential-provider-env";
+ packageName = "@aws-sdk/credential-provider-env";
+ version = "3.40.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.40.0.tgz";
+ sha512 = "qHZdf2vxhzZkSygjw2I4SEYFL2dMZxxYvO4QlkqQouKY81OVxs/j69oiNCjPasQzGz5jaZZKI8xEAIfkSyr1lg==";
+ };
+ };
+ "@aws-sdk/credential-provider-imds-3.40.0" = {
+ name = "_at_aws-sdk_slash_credential-provider-imds";
+ packageName = "@aws-sdk/credential-provider-imds";
+ version = "3.40.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/credential-provider-imds/-/credential-provider-imds-3.40.0.tgz";
+ sha512 = "Ty/wVa+BQrCFrP06AGl5S1CeLifDt68YrlYXUnkRn603SX4DvxBgVO7XFeDH58G8ziDCiqxfmVl4yjbncPPeSw==";
+ };
+ };
+ "@aws-sdk/credential-provider-ini-3.45.0" = {
+ name = "_at_aws-sdk_slash_credential-provider-ini";
+ packageName = "@aws-sdk/credential-provider-ini";
+ version = "3.45.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.45.0.tgz";
+ sha512 = "lfYh8LVW33de01zzfqs6H+4xr20l+++QtvWG8PwKzEAY/71s344ybrOw7KiVUkCDLLbj3SWEmsMJFvBcrvifbA==";
+ };
+ };
+ "@aws-sdk/credential-provider-node-3.45.0" = {
+ name = "_at_aws-sdk_slash_credential-provider-node";
+ packageName = "@aws-sdk/credential-provider-node";
+ version = "3.45.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.45.0.tgz";
+ sha512 = "ZNqo0JlA7S4k1bAB+Xb8A3KsmNPWVFMmoY3NC25dgXU4xQLVxy0MucQggnfCqRjvshwI4OEdDQsRgl69n/XErQ==";
+ };
+ };
+ "@aws-sdk/credential-provider-process-3.40.0" = {
+ name = "_at_aws-sdk_slash_credential-provider-process";
+ packageName = "@aws-sdk/credential-provider-process";
+ version = "3.40.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.40.0.tgz";
+ sha512 = "qsaNCDesW2GasDbzpeOA371gxugi05JWxt3EKonLbUfkGKBK7kmmL6EgLIxZuNm2/Ve4RS07PKp8yBGm4xIx9w==";
+ };
+ };
+ "@aws-sdk/credential-provider-sso-3.45.0" = {
+ name = "_at_aws-sdk_slash_credential-provider-sso";
+ packageName = "@aws-sdk/credential-provider-sso";
+ version = "3.45.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.45.0.tgz";
+ sha512 = "FBMn+QA6rI74A90ieQtCJckbKPBxNn4mgR9rzWyi/R6o5gVuu99yJGL03NXtWtm5N4x/1SygBtezY/XL5UU0Mg==";
+ };
+ };
+ "@aws-sdk/credential-provider-web-identity-3.41.0" = {
+ name = "_at_aws-sdk_slash_credential-provider-web-identity";
+ packageName = "@aws-sdk/credential-provider-web-identity";
+ version = "3.41.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.41.0.tgz";
+ sha512 = "VqvVoEh9C8xTXl4stKyJC5IKQhS8g1Gi5k6B9HPHLIxFRRfKxkE73DT4pMN6npnus7o0yi0MTFGQFQGYSrFO2g==";
+ };
+ };
+ "@aws-sdk/eventstream-marshaller-3.40.0" = {
+ name = "_at_aws-sdk_slash_eventstream-marshaller";
+ packageName = "@aws-sdk/eventstream-marshaller";
+ version = "3.40.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/eventstream-marshaller/-/eventstream-marshaller-3.40.0.tgz";
+ sha512 = "zHGchfkG3B9M8OOKRpByeS5g1/15YQ0+QQHwxQRtm/CPtKBAIAsCZRQaCNBLu9uQMtBBKj5JsDUcjirhGeSvIg==";
+ };
+ };
+ "@aws-sdk/eventstream-serde-browser-3.40.0" = {
+ name = "_at_aws-sdk_slash_eventstream-serde-browser";
+ packageName = "@aws-sdk/eventstream-serde-browser";
+ version = "3.40.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-browser/-/eventstream-serde-browser-3.40.0.tgz";
+ sha512 = "V0AXAfSkhY0hgxDJ0cNA+r42kL8295U7UTCp2Q2fvCaob3wKWh+54KZ2L4IOYTlK3yNzXJ5V6PP1zUuRlsUTew==";
+ };
+ };
+ "@aws-sdk/eventstream-serde-config-resolver-3.40.0" = {
+ name = "_at_aws-sdk_slash_eventstream-serde-config-resolver";
+ packageName = "@aws-sdk/eventstream-serde-config-resolver";
+ version = "3.40.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-config-resolver/-/eventstream-serde-config-resolver-3.40.0.tgz";
+ sha512 = "GgGiJBsQ1/SBTpRM/wCdFBCMo1Nybvy46bNVkH1ujCdp8UTLc5PozzNpH+15V2IQbc9sPDYffMab6HSFjDp5vw==";
+ };
+ };
+ "@aws-sdk/eventstream-serde-node-3.40.0" = {
+ name = "_at_aws-sdk_slash_eventstream-serde-node";
+ packageName = "@aws-sdk/eventstream-serde-node";
+ version = "3.40.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-node/-/eventstream-serde-node-3.40.0.tgz";
+ sha512 = "CnzX/JZGvhWlg+ooIPVZ78T+5wIm5Ld1BD7jwhlptJa8IjTMvkc8Nh4pAhc7T0ZScy4zZa/oTkqeVYCOVCyd1Q==";
+ };
+ };
+ "@aws-sdk/eventstream-serde-universal-3.40.0" = {
+ name = "_at_aws-sdk_slash_eventstream-serde-universal";
+ packageName = "@aws-sdk/eventstream-serde-universal";
+ version = "3.40.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/eventstream-serde-universal/-/eventstream-serde-universal-3.40.0.tgz";
+ sha512 = "rkHwVMyZJMhp9iBixkuaAGQNer/DPxZ9kxDDtE+LuAMhepTYQ8c4lUW0QQhYbNMWf48QKD1G4FV3JXIj9JfP9A==";
+ };
+ };
+ "@aws-sdk/fetch-http-handler-3.40.0" = {
+ name = "_at_aws-sdk_slash_fetch-http-handler";
+ packageName = "@aws-sdk/fetch-http-handler";
+ version = "3.40.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/fetch-http-handler/-/fetch-http-handler-3.40.0.tgz";
+ sha512 = "w1HiZromoU+/bbEo89uO81l6UO/M+c2uOMnXntZqe6t3ZHUUUo3AbvhKh0QGVFqRQa+Oi0+95KqWmTHa72/9Iw==";
+ };
+ };
+ "@aws-sdk/hash-blob-browser-3.40.0" = {
+ name = "_at_aws-sdk_slash_hash-blob-browser";
+ packageName = "@aws-sdk/hash-blob-browser";
+ version = "3.40.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/hash-blob-browser/-/hash-blob-browser-3.40.0.tgz";
+ sha512 = "l8xyprVVKKH+720VrQ677X6VkvHttDXB4MxkMuxhSvwYBQwsRzP2Wppo7xIAtWGoS+oqlLmD4LCbHdhFRcN5yA==";
+ };
+ };
+ "@aws-sdk/hash-node-3.40.0" = {
+ name = "_at_aws-sdk_slash_hash-node";
+ packageName = "@aws-sdk/hash-node";
+ version = "3.40.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/hash-node/-/hash-node-3.40.0.tgz";
+ sha512 = "yOXXK85DdGDktdnQtXgMdaVKii4wtMjEhJ1mrvx2A9nMFNaPhxvERkVVIUKSWlJRa9ZujOw5jWOx8d2R51/Kjg==";
+ };
+ };
+ "@aws-sdk/hash-stream-node-3.45.0" = {
+ name = "_at_aws-sdk_slash_hash-stream-node";
+ packageName = "@aws-sdk/hash-stream-node";
+ version = "3.45.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/hash-stream-node/-/hash-stream-node-3.45.0.tgz";
+ sha512 = "gZiH4wgYvsLxyMnMvuF3UmOl9KkFTrixIatlFdYG6eLCDgP2oOkXeW007Yu6BQxchsTUC7WUZ971R3T1DtpJlQ==";
+ };
+ };
+ "@aws-sdk/invalid-dependency-3.40.0" = {
+ name = "_at_aws-sdk_slash_invalid-dependency";
+ packageName = "@aws-sdk/invalid-dependency";
+ version = "3.40.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/invalid-dependency/-/invalid-dependency-3.40.0.tgz";
+ sha512 = "axIWtDwCBDDqEgAJipX1FB1ZNpWYXquVwKDMo+7G+ftPBZ4FEq4M1ELhXJL3hhNJ9ZmCQzv+4F6Wnt8dwuzUaQ==";
+ };
+ };
+ "@aws-sdk/is-array-buffer-3.37.0" = {
+ name = "_at_aws-sdk_slash_is-array-buffer";
+ packageName = "@aws-sdk/is-array-buffer";
+ version = "3.37.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/is-array-buffer/-/is-array-buffer-3.37.0.tgz";
+ sha512 = "XLjA/a6AuGnCvcJZLsMTy2jxF2upgGhqCCkoIJgLlzzXHSihur13KcmPvW/zcaGnCRj0SvKWXiJHl4vDlW75VQ==";
+ };
+ };
+ "@aws-sdk/md5-js-3.40.0" = {
+ name = "_at_aws-sdk_slash_md5-js";
+ packageName = "@aws-sdk/md5-js";
+ version = "3.40.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/md5-js/-/md5-js-3.40.0.tgz";
+ sha512 = "P1tzEljMD/MkjSc00TkVBYvfaVv/7S+04YEwE7tpu/jtxWxMHnk3CMKqq/F2iMhY83DRoqoYy+YqnaF4Bzr1uA==";
+ };
+ };
+ "@aws-sdk/middleware-apply-body-checksum-3.40.0" = {
+ name = "_at_aws-sdk_slash_middleware-apply-body-checksum";
+ packageName = "@aws-sdk/middleware-apply-body-checksum";
+ version = "3.40.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-apply-body-checksum/-/middleware-apply-body-checksum-3.40.0.tgz";
+ sha512 = "gNSFlFu/O8cxAM0X64OwiLLN/NPXvK3FsAIJRsfhIW+dX0bEq4lsGPsdU8Tx+9eenaj/Z01uqgWZ6Izar8zVvQ==";
+ };
+ };
+ "@aws-sdk/middleware-bucket-endpoint-3.41.0" = {
+ name = "_at_aws-sdk_slash_middleware-bucket-endpoint";
+ packageName = "@aws-sdk/middleware-bucket-endpoint";
+ version = "3.41.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-bucket-endpoint/-/middleware-bucket-endpoint-3.41.0.tgz";
+ sha512 = "4A0kWHH2qemd4P7CZKS7XB6qtSUP2xMJ7Dn/llxYgvadR0mKEfGPeYPhAss/k7T1JGv+kSTIV30RwUXwdXgE/A==";
+ };
+ };
+ "@aws-sdk/middleware-content-length-3.40.0" = {
+ name = "_at_aws-sdk_slash_middleware-content-length";
+ packageName = "@aws-sdk/middleware-content-length";
+ version = "3.40.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-content-length/-/middleware-content-length-3.40.0.tgz";
+ sha512 = "sybAJb8v7I/vvL08R3+TI/XDAg9gybQTZ2treC24Ap4+jAOz4QBTHJPMKaUlEeFlMUcq4rj6/u2897ebYH6opw==";
+ };
+ };
+ "@aws-sdk/middleware-expect-continue-3.40.0" = {
+ name = "_at_aws-sdk_slash_middleware-expect-continue";
+ packageName = "@aws-sdk/middleware-expect-continue";
+ version = "3.40.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-expect-continue/-/middleware-expect-continue-3.40.0.tgz";
+ sha512 = "FY6vT0u1ptDZ2bBj1yG/Iyk6HZB7U9fbrpeZNPYzgq8HJxBcTgfLwtB3VLobyhThQm9X2a7R2YZrwtArW8yQfQ==";
+ };
+ };
+ "@aws-sdk/middleware-header-default-3.40.0" = {
+ name = "_at_aws-sdk_slash_middleware-header-default";
+ packageName = "@aws-sdk/middleware-header-default";
+ version = "3.40.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-header-default/-/middleware-header-default-3.40.0.tgz";
+ sha512 = "eXQ13x/AivPZKoG8/akp9g5xdNHuKftl83GMuk9K6tt4+eAa22TdxiFu4R0UVlKAvo2feqxFrNs5DhhhBeAQWA==";
+ };
+ };
+ "@aws-sdk/middleware-host-header-3.40.0" = {
+ name = "_at_aws-sdk_slash_middleware-host-header";
+ packageName = "@aws-sdk/middleware-host-header";
+ version = "3.40.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.40.0.tgz";
+ sha512 = "/wocR7JFOLM7/+BQM1DgAd6KCFYcdxYu1P7AhI451GlVNuYa5f89zh7p0gt3SRC6monI5lXgpL7RudhDm8fTrA==";
+ };
+ };
+ "@aws-sdk/middleware-location-constraint-3.40.0" = {
+ name = "_at_aws-sdk_slash_middleware-location-constraint";
+ packageName = "@aws-sdk/middleware-location-constraint";
+ version = "3.40.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-location-constraint/-/middleware-location-constraint-3.40.0.tgz";
+ sha512 = "9XaVPYsDQVJbWJH96sNdv4HHY3j1raman+lYxMu4528Awp0OdWUeSsGRYRN+CnRPlkHnfNw4m6SKdWYHxdjshw==";
+ };
+ };
+ "@aws-sdk/middleware-logger-3.40.0" = {
+ name = "_at_aws-sdk_slash_middleware-logger";
+ packageName = "@aws-sdk/middleware-logger";
+ version = "3.40.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.40.0.tgz";
+ sha512 = "19kx0Xg5ymVRKoupmhdmfTBkROcv3DZj508agpyG2YAo0abOObMlIP4Jltg0VD4PhNjGzNh0jFGJnvhjdwv4/A==";
+ };
+ };
+ "@aws-sdk/middleware-retry-3.40.0" = {
+ name = "_at_aws-sdk_slash_middleware-retry";
+ packageName = "@aws-sdk/middleware-retry";
+ version = "3.40.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-retry/-/middleware-retry-3.40.0.tgz";
+ sha512 = "SMUJrukugLL7YJE5X8B2ToukxMWMPwnf7jAFr84ptycCe8bdWv8x8klQ3EtVWpyqochtNlbTi6J/tTQBniUX7A==";
+ };
+ };
+ "@aws-sdk/middleware-sdk-s3-3.45.0" = {
+ name = "_at_aws-sdk_slash_middleware-sdk-s3";
+ packageName = "@aws-sdk/middleware-sdk-s3";
+ version = "3.45.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.45.0.tgz";
+ sha512 = "V4rnR4pnCxbZOMIFLkIEejmvrW3cujB1OECsK4/fmIlxpgImwYhHbCvFRG/upe92oltehqddGtkCxglmHNMs3g==";
+ };
+ };
+ "@aws-sdk/middleware-sdk-sts-3.45.0" = {
+ name = "_at_aws-sdk_slash_middleware-sdk-sts";
+ packageName = "@aws-sdk/middleware-sdk-sts";
+ version = "3.45.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-sdk-sts/-/middleware-sdk-sts-3.45.0.tgz";
+ sha512 = "nvvzoKItzyZF44+0/VdygbUDgBG8wxYqDK0i+aPYLmmTu2NTBcREeMDiYO/aHZIzMNemyJqSdB3p8sdf2BYTAA==";
+ };
+ };
+ "@aws-sdk/middleware-serde-3.40.0" = {
+ name = "_at_aws-sdk_slash_middleware-serde";
+ packageName = "@aws-sdk/middleware-serde";
+ version = "3.40.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-serde/-/middleware-serde-3.40.0.tgz";
+ sha512 = "uOWfZjlAoBy6xPqp0d4ka83WNNbEVCWn9WwfqBUXThyoTdTooYSpXe5y2YzN0BJa8b+tEZTyWpgamnBpFLp47g==";
+ };
+ };
+ "@aws-sdk/middleware-signing-3.45.0" = {
+ name = "_at_aws-sdk_slash_middleware-signing";
+ packageName = "@aws-sdk/middleware-signing";
+ version = "3.45.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-signing/-/middleware-signing-3.45.0.tgz";
+ sha512 = "MUtKe0mRWgWimGlbDX9KWHnxcQz8g1N+gEjfkcxzw+HMIxxQIKYFgUyllhFZ3HvYIje/wLlFYuDKXRBrJjUxYQ==";
+ };
+ };
+ "@aws-sdk/middleware-ssec-3.40.0" = {
+ name = "_at_aws-sdk_slash_middleware-ssec";
+ packageName = "@aws-sdk/middleware-ssec";
+ version = "3.40.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-ssec/-/middleware-ssec-3.40.0.tgz";
+ sha512 = "ZoRpaZeAIQa1Q+NyEh74ATwOR3nFGfcP6Nu0jFzgqoVijCReMnhtlCRx23ccBu1ZLZNUsNk6MhKjY+ZTfNsjEg==";
+ };
+ };
+ "@aws-sdk/middleware-stack-3.40.0" = {
+ name = "_at_aws-sdk_slash_middleware-stack";
+ packageName = "@aws-sdk/middleware-stack";
+ version = "3.40.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-stack/-/middleware-stack-3.40.0.tgz";
+ sha512 = "hby9HvESUYJxpdALX+6Dn2LPmS5jtMVurGB/+j3MWOvIcDYB4bcSXgVRvXzYnTKwbSupIdbX9zOE2ZAx2SJpUQ==";
+ };
+ };
+ "@aws-sdk/middleware-user-agent-3.40.0" = {
+ name = "_at_aws-sdk_slash_middleware-user-agent";
+ packageName = "@aws-sdk/middleware-user-agent";
+ version = "3.40.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.40.0.tgz";
+ sha512 = "dzC2fxWnanetFJ1oYgil8df3N36bR1yc/OCOpbdfQNiUk1FrXiCXqH5rHNO8zCvnwJAj8GHFwpFGd9a2Qube2w==";
+ };
+ };
+ "@aws-sdk/node-config-provider-3.40.0" = {
+ name = "_at_aws-sdk_slash_node-config-provider";
+ packageName = "@aws-sdk/node-config-provider";
+ version = "3.40.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/node-config-provider/-/node-config-provider-3.40.0.tgz";
+ sha512 = "AmokjgUDECG8osoMfdRsPNweqI+L1pn4bYGk5iTLmzbBi0o4ot0U1FdX8Rf0qJZZwS4t1TXc3s8/PDVknmPxKg==";
+ };
+ };
+ "@aws-sdk/node-http-handler-3.40.0" = {
+ name = "_at_aws-sdk_slash_node-http-handler";
+ packageName = "@aws-sdk/node-http-handler";
+ version = "3.40.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/node-http-handler/-/node-http-handler-3.40.0.tgz";
+ sha512 = "qjda6IbxDhbYr8NHmrMurKkbjgLUkfTMVgagDErDK24Nm3Dn5VaO6J4n6c0Q4OLHlmFaRcUfZSTrOo5DAubqCw==";
+ };
+ };
+ "@aws-sdk/property-provider-3.40.0" = {
+ name = "_at_aws-sdk_slash_property-provider";
+ packageName = "@aws-sdk/property-provider";
+ version = "3.40.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/property-provider/-/property-provider-3.40.0.tgz";
+ sha512 = "Mx4lkShjsYRwW9ujHA1pcnuubrWQ4kF5/DXWNfUiXuSIO/0Lojp1qTLheyBm4vzkJIlx5umyP6NvRAUkEHSN4Q==";
+ };
+ };
+ "@aws-sdk/protocol-http-3.40.0" = {
+ name = "_at_aws-sdk_slash_protocol-http";
+ packageName = "@aws-sdk/protocol-http";
+ version = "3.40.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/protocol-http/-/protocol-http-3.40.0.tgz";
+ sha512 = "f4ea7/HZkjpvGBrnRIuzc/bhrExWrgDv7eulj4htPukZGHdTqSJD3Jk8lEXWvFuX2vUKQDGhEhCDsqup7YWJQQ==";
+ };
+ };
+ "@aws-sdk/querystring-builder-3.40.0" = {
+ name = "_at_aws-sdk_slash_querystring-builder";
+ packageName = "@aws-sdk/querystring-builder";
+ version = "3.40.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/querystring-builder/-/querystring-builder-3.40.0.tgz";
+ sha512 = "gO24oipnNaxJRBXB7lhLfa96vIMOd8gtMBqJTjelTjS2e1ZP1YY12CNKKTWwafSk8Ge021erZAG/YTOaXGpv+g==";
+ };
+ };
+ "@aws-sdk/querystring-parser-3.40.0" = {
+ name = "_at_aws-sdk_slash_querystring-parser";
+ packageName = "@aws-sdk/querystring-parser";
+ version = "3.40.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/querystring-parser/-/querystring-parser-3.40.0.tgz";
+ sha512 = "XZIyaKQIiZAM6zelCBcsLHhVDOLafi7XIOd3jy6SymGN8ajj3HqUJ/vdQ5G6ISTk18OrqgqcCOI9oNzv+nrBcA==";
+ };
+ };
+ "@aws-sdk/s3-request-presigner-3.45.0" = {
+ name = "_at_aws-sdk_slash_s3-request-presigner";
+ packageName = "@aws-sdk/s3-request-presigner";
+ version = "3.45.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/s3-request-presigner/-/s3-request-presigner-3.45.0.tgz";
+ sha512 = "kwL9rzvX5cMY0VQq+/mWcSl9l2Cut60UpR3J91KvCn7WYCr4QtNlni9w6MO7qdJWZldvlYgoMdCuxi+0lrzvbA==";
+ };
+ };
+ "@aws-sdk/service-error-classification-3.40.0" = {
+ name = "_at_aws-sdk_slash_service-error-classification";
+ packageName = "@aws-sdk/service-error-classification";
+ version = "3.40.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/service-error-classification/-/service-error-classification-3.40.0.tgz";
+ sha512 = "c8btKmkvjXczWudXubGdbO3JgmjySBUVC/gCrZDNfwNGsG8RYJJQYYcnmt1gWjelUZsgMDl/2PIzxTlxVF91rA==";
+ };
+ };
+ "@aws-sdk/shared-ini-file-loader-3.37.0" = {
+ name = "_at_aws-sdk_slash_shared-ini-file-loader";
+ packageName = "@aws-sdk/shared-ini-file-loader";
+ version = "3.37.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/shared-ini-file-loader/-/shared-ini-file-loader-3.37.0.tgz";
+ sha512 = "+vRBSlfa48R9KL7DpQt3dsu5/+5atjRgoCISblWo3SLpjrx41pKcjKneo7a1u0aP1Xc2oG2TfIyqTWZuOXsmEQ==";
+ };
+ };
+ "@aws-sdk/signature-v4-3.45.0" = {
+ name = "_at_aws-sdk_slash_signature-v4";
+ packageName = "@aws-sdk/signature-v4";
+ version = "3.45.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/signature-v4/-/signature-v4-3.45.0.tgz";
+ sha512 = "73dwNe4R4Ytgn82gV8B99tE6UqrWjHE1JIAXpEZeXsBPJtg+8wpgd9sujs6JH9JW2cvnSnIsCXs1gQGD9+bZ0A==";
+ };
+ };
+ "@aws-sdk/smithy-client-3.41.0" = {
+ name = "_at_aws-sdk_slash_smithy-client";
+ packageName = "@aws-sdk/smithy-client";
+ version = "3.41.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/smithy-client/-/smithy-client-3.41.0.tgz";
+ sha512 = "ldhS0Pf3v6yHCd//kk5DvKcdyeUkKEwxNDRanAp+ekTW68J3XcYgKaPC9sNDhVTDH1zrywTvtEz5zWHEvXjQow==";
+ };
+ };
+ "@aws-sdk/types-3.40.0" = {
+ name = "_at_aws-sdk_slash_types";
+ packageName = "@aws-sdk/types";
+ version = "3.40.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/types/-/types-3.40.0.tgz";
+ sha512 = "KpILcfvRaL88TLvo3SY4OuCCg90SvcNLPyjDwUuBqiOyWODjrKShHtAPJzej4CLp92lofh+ul0UnBfV9Jb/5PA==";
+ };
+ };
+ "@aws-sdk/url-parser-3.40.0" = {
+ name = "_at_aws-sdk_slash_url-parser";
+ packageName = "@aws-sdk/url-parser";
+ version = "3.40.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/url-parser/-/url-parser-3.40.0.tgz";
+ sha512 = "HwNV+HX7bHgLk5FzTOgdXANsC0SeVz5PMC4Nh+TLz2IoeQnrw4H8dsA4YNonncjern5oC5veKRjQeOoCL5SlSQ==";
+ };
+ };
+ "@aws-sdk/util-arn-parser-3.37.0" = {
+ name = "_at_aws-sdk_slash_util-arn-parser";
+ packageName = "@aws-sdk/util-arn-parser";
+ version = "3.37.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/util-arn-parser/-/util-arn-parser-3.37.0.tgz";
+ sha512 = "njIYn8gzm7Ms17A2oEu0vN/0GJpgq7cNFFtzBrM1cPtrc1jhMRJx5hzS7uX5h6ll8BM92bA3y00evRZFHxQPVQ==";
+ };
+ };
+ "@aws-sdk/util-base64-browser-3.37.0" = {
+ name = "_at_aws-sdk_slash_util-base64-browser";
+ packageName = "@aws-sdk/util-base64-browser";
+ version = "3.37.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/util-base64-browser/-/util-base64-browser-3.37.0.tgz";
+ sha512 = "o4s/rHVm5k8eC/T7grJQINyYA/mKfDmEWKMA9wk5iBroXlI2rUm7x649TBk5hzoddufk/mffEeNz/1wM7yTmlg==";
+ };
+ };
+ "@aws-sdk/util-base64-node-3.37.0" = {
+ name = "_at_aws-sdk_slash_util-base64-node";
+ packageName = "@aws-sdk/util-base64-node";
+ version = "3.37.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/util-base64-node/-/util-base64-node-3.37.0.tgz";
+ sha512 = "1UPxly1GPrGZtlIWvbNCDIAund4Oyp8cFi9neA43TeNACvrmEQu/nG01pDbOoo0ENoVSVJrNAVBeqKEpqjH2GA==";
+ };
+ };
+ "@aws-sdk/util-body-length-browser-3.37.0" = {
+ name = "_at_aws-sdk_slash_util-body-length-browser";
+ packageName = "@aws-sdk/util-body-length-browser";
+ version = "3.37.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/util-body-length-browser/-/util-body-length-browser-3.37.0.tgz";
+ sha512 = "tClmH1uYelqWT43xxmnOsVFbCQJiIwizp6y4E109G2LIof07inxrO0L8nbwBpjhugVplx6NZr9IaqTFqbdM1gA==";
+ };
+ };
+ "@aws-sdk/util-body-length-node-3.37.0" = {
+ name = "_at_aws-sdk_slash_util-body-length-node";
+ packageName = "@aws-sdk/util-body-length-node";
+ version = "3.37.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/util-body-length-node/-/util-body-length-node-3.37.0.tgz";
+ sha512 = "aY3mXdbEajruRi9CHgq/heM89R+Gectj/Xrs1naewmamaN8NJrvjDm3s+cw//lqqSOW903LYHXDgm7wvCzUnFA==";
+ };
+ };
+ "@aws-sdk/util-buffer-from-3.37.0" = {
+ name = "_at_aws-sdk_slash_util-buffer-from";
+ packageName = "@aws-sdk/util-buffer-from";
+ version = "3.37.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/util-buffer-from/-/util-buffer-from-3.37.0.tgz";
+ sha512 = "aa3SBwjLwImuJoE4+hxDIWQ9REz3UFb3p7KFPe9qopdXb/yB12RTcbrXVb4whUux4i4mO6KRij0ZNjFZrjrKPg==";
+ };
+ };
+ "@aws-sdk/util-config-provider-3.40.0" = {
+ name = "_at_aws-sdk_slash_util-config-provider";
+ packageName = "@aws-sdk/util-config-provider";
+ version = "3.40.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/util-config-provider/-/util-config-provider-3.40.0.tgz";
+ sha512 = "NjZGrA4mqhpr6gkVCAUweurP0Z9d3vFyXJCtulC0BFbpKAnKCf/crSK56NwUaNhAEMCkSuBvjRFzkbfT+HO8bA==";
+ };
+ };
+ "@aws-sdk/util-create-request-3.41.0" = {
+ name = "_at_aws-sdk_slash_util-create-request";
+ packageName = "@aws-sdk/util-create-request";
+ version = "3.41.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/util-create-request/-/util-create-request-3.41.0.tgz";
+ sha512 = "mKTMCDTaQ9HH+ppg1QMcBiSlbvRmw8AOllXTkYS1pdO7gi/Sl21krXfIja2MakuK6cB6D+B8MFP8rfq14Vhhlg==";
+ };
+ };
+ "@aws-sdk/util-credentials-3.37.0" = {
+ name = "_at_aws-sdk_slash_util-credentials";
+ packageName = "@aws-sdk/util-credentials";
+ version = "3.37.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/util-credentials/-/util-credentials-3.37.0.tgz";
+ sha512 = "zcLhSZDKgBLhUjSU5HoQpuQiP3v8oE86NmV/tiZVPEaO6YVULEAB2Cfj1hpM/b/JXWzjSHfT06KXT7QUODKS+A==";
+ };
+ };
+ "@aws-sdk/util-format-url-3.40.0" = {
+ name = "_at_aws-sdk_slash_util-format-url";
+ packageName = "@aws-sdk/util-format-url";
+ version = "3.40.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/util-format-url/-/util-format-url-3.40.0.tgz";
+ sha512 = "eOKeYwAvsCQjTSCAW1LVhnjmTyyGK6lZjGTa9wXxxjVE6Fhc66+cCykS8u/u8Vj7BCS+ixiLetXtH1/qd+Bl+g==";
+ };
+ };
+ "@aws-sdk/util-hex-encoding-3.37.0" = {
+ name = "_at_aws-sdk_slash_util-hex-encoding";
+ packageName = "@aws-sdk/util-hex-encoding";
+ version = "3.37.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/util-hex-encoding/-/util-hex-encoding-3.37.0.tgz";
+ sha512 = "tn5UpfaeM+rZWqynoNqB8lwtcAXil5YYO3HLGH9himpWAdft/2Z7LK6bsYDpctaAI1WHgMDcL0bw3Id04ZUbhA==";
+ };
+ };
+ "@aws-sdk/util-locate-window-3.37.0" = {
+ name = "_at_aws-sdk_slash_util-locate-window";
+ packageName = "@aws-sdk/util-locate-window";
+ version = "3.37.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/util-locate-window/-/util-locate-window-3.37.0.tgz";
+ sha512 = "NvDCfOhLLVHp27oGUUs8EVirhz91aX5gdxGS7J/sh5PF0cNN8rwaR1vSLR7BxPmJHMO7NH7i9EwiELfLfYcq6g==";
+ };
+ };
+ "@aws-sdk/util-uri-escape-3.37.0" = {
+ name = "_at_aws-sdk_slash_util-uri-escape";
+ packageName = "@aws-sdk/util-uri-escape";
+ version = "3.37.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/util-uri-escape/-/util-uri-escape-3.37.0.tgz";
+ sha512 = "8pKf4YJTELP5lm/CEgYw2atyJBB1RWWqFa0sZx6YJmTlOtLF5G6raUdAi4iDa2hldGt2B6IAdIIyuusT8zeU8Q==";
+ };
+ };
+ "@aws-sdk/util-user-agent-browser-3.40.0" = {
+ name = "_at_aws-sdk_slash_util-user-agent-browser";
+ packageName = "@aws-sdk/util-user-agent-browser";
+ version = "3.40.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.40.0.tgz";
+ sha512 = "C69sTI26bV2EprTv3DTXu9XP7kD9Wu4YVPBzqztOYArd2GDYw3w+jS8SEg3XRbjAKY/mOPZ2Thw4StjpZlWZiA==";
+ };
+ };
+ "@aws-sdk/util-user-agent-node-3.40.0" = {
+ name = "_at_aws-sdk_slash_util-user-agent-node";
+ packageName = "@aws-sdk/util-user-agent-node";
+ version = "3.40.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.40.0.tgz";
+ sha512 = "cjIzd0hRZFTTh7iLJD6Bciu++Em1iaM1clyG02xRl0JD5DEtDSR1zO02uu+AeM7GSLGOxIvwOkK2j8ySPAOmBA==";
+ };
+ };
+ "@aws-sdk/util-utf8-browser-3.37.0" = {
+ name = "_at_aws-sdk_slash_util-utf8-browser";
+ packageName = "@aws-sdk/util-utf8-browser";
+ version = "3.37.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/util-utf8-browser/-/util-utf8-browser-3.37.0.tgz";
+ sha512 = "tuiOxzfqet1kKGYzlgpMGfhr64AHJnYsFx2jZiH/O6Yq8XQg43ryjQlbJlim/K/XHGNzY0R+nabeJg34q3Ua1g==";
+ };
+ };
+ "@aws-sdk/util-utf8-node-3.37.0" = {
+ name = "_at_aws-sdk_slash_util-utf8-node";
+ packageName = "@aws-sdk/util-utf8-node";
+ version = "3.37.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/util-utf8-node/-/util-utf8-node-3.37.0.tgz";
+ sha512 = "fUAgd7UTCULL36j9/vnXHxVhxvswnq23mYgTCIT8NQ7wHN30q2a89ym1e9DwGeQkJEBOkOcKLn6nsMsN7YQMDQ==";
+ };
+ };
+ "@aws-sdk/util-waiter-3.40.0" = {
+ name = "_at_aws-sdk_slash_util-waiter";
+ packageName = "@aws-sdk/util-waiter";
+ version = "3.40.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/util-waiter/-/util-waiter-3.40.0.tgz";
+ sha512 = "jdxwNEZdID49ZvyAnxaeNm5w2moIfMLOwj/q6TxKlxYoXMs16FQWkhyfGue0vEASzchS49ewbyt+KBqpT31Ebg==";
+ };
+ };
+ "@aws-sdk/xml-builder-3.37.0" = {
+ name = "_at_aws-sdk_slash_xml-builder";
+ packageName = "@aws-sdk/xml-builder";
+ version = "3.37.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@aws-sdk/xml-builder/-/xml-builder-3.37.0.tgz";
+ sha512 = "Vf0f4ZQ+IBo/l9wUaTOXLqqQO9b/Ll5yPbg+EhHx8zlHbTHIm89ettkVCGyT/taGagC1X+ZeTK9maX6ymEOBow==";
+ };
+ };
"@azu/format-text-1.0.1" = {
name = "_at_azu_slash_format-text";
packageName = "@azu/format-text";
@@ -310,13 +1075,13 @@ let
sha1 = "e70187f8a862e191b1bce6c0268f13acd3a56b20";
};
};
- "@babel/cli-7.16.0" = {
+ "@babel/cli-7.16.7" = {
name = "_at_babel_slash_cli";
packageName = "@babel/cli";
- version = "7.16.0";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/cli/-/cli-7.16.0.tgz";
- sha512 = "WLrM42vKX/4atIoQB+eb0ovUof53UUvecb4qGjU2PDDWRiZr50ZpiV8NpcLo7iSxeGYrRG0Mqembsa+UrTAV6Q==";
+ url = "https://registry.npmjs.org/@babel/cli/-/cli-7.16.7.tgz";
+ sha512 = "0iBF+G2Qml0y3mY5dirolyToLSR88a/KB6F2Gm8J/lOnyL8wbEOHak0DHF8gjc9XZGgTDGv/jYXNiapvsYyHTA==";
};
};
"@babel/code-frame-7.10.4" = {
@@ -337,13 +1102,13 @@ let
sha512 = "Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==";
};
};
- "@babel/code-frame-7.16.0" = {
+ "@babel/code-frame-7.16.7" = {
name = "_at_babel_slash_code-frame";
packageName = "@babel/code-frame";
- version = "7.16.0";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.0.tgz";
- sha512 = "IF4EOMEV+bfYwOmNxGzSnjR2EmQod7f1UXOpZM3l4i4o4QNwzjtJAu/HxdjHq0aYBvdqMuQEY1eg0nqW9ZPORA==";
+ url = "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.7.tgz";
+ sha512 = "iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==";
};
};
"@babel/compat-data-7.16.4" = {
@@ -364,13 +1129,13 @@ let
sha512 = "O34LQooYVDXPl7QWCdW9p4NR+QlzOr7xShPPJz8GsuCU3/8ua/wqTr7gmnxXv+WBESiGU/G5s16i6tUvHkNb+w==";
};
};
- "@babel/core-7.16.5" = {
+ "@babel/core-7.16.7" = {
name = "_at_babel_slash_core";
packageName = "@babel/core";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/core/-/core-7.16.5.tgz";
- sha512 = "wUcenlLzuWMZ9Zt8S0KmFwGlH6QKRh3vsm/dhDA3CHkiTA45YuG1XkHRcNRl73EFPXDp/d5kVOU0/y7x2w6OaQ==";
+ url = "https://registry.npmjs.org/@babel/core/-/core-7.16.7.tgz";
+ sha512 = "aeLaqcqThRNZYmbMqtulsetOQZ/5gbR/dWruUCJcpas4Qoyy+QeagfDsPdMrqwsPRDNxJvBlRiZxxX7THO7qtA==";
};
};
"@babel/core-7.9.0" = {
@@ -382,58 +1147,58 @@ let
sha512 = "kWc7L0fw1xwvI0zi8OKVBuxRVefwGOrKSQMvrQ3dW+bIIavBY3/NpXmpjMy7bQnLgwgzWQZ8TlM57YHpHNHz4w==";
};
};
- "@babel/generator-7.16.5" = {
+ "@babel/generator-7.16.7" = {
name = "_at_babel_slash_generator";
packageName = "@babel/generator";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/generator/-/generator-7.16.5.tgz";
- sha512 = "kIvCdjZqcdKqoDbVVdt5R99icaRtrtYhYK/xux5qiWCBmfdvEYMFZ68QCrpE5cbFM1JsuArUNs1ZkuKtTtUcZA==";
+ url = "https://registry.npmjs.org/@babel/generator/-/generator-7.16.7.tgz";
+ sha512 = "/ST3Sg8MLGY5HVYmrjOgL60ENux/HfO/CsUh7y4MalThufhE/Ff/6EibFDHi4jiDCaWfJKoqbE6oTh21c5hrRg==";
};
};
- "@babel/helper-annotate-as-pure-7.16.0" = {
+ "@babel/helper-annotate-as-pure-7.16.7" = {
name = "_at_babel_slash_helper-annotate-as-pure";
packageName = "@babel/helper-annotate-as-pure";
- version = "7.16.0";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.0.tgz";
- sha512 = "ItmYF9vR4zA8cByDocY05o0LGUkp1zhbTQOH1NFyl5xXEqlTJQCEJjieriw+aFpxo16swMxUnUiKS7a/r4vtHg==";
+ url = "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.7.tgz";
+ sha512 = "s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw==";
};
};
- "@babel/helper-builder-binary-assignment-operator-visitor-7.16.5" = {
+ "@babel/helper-builder-binary-assignment-operator-visitor-7.16.7" = {
name = "_at_babel_slash_helper-builder-binary-assignment-operator-visitor";
packageName = "@babel/helper-builder-binary-assignment-operator-visitor";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.16.5.tgz";
- sha512 = "3JEA9G5dmmnIWdzaT9d0NmFRgYnWUThLsDaL7982H0XqqWr56lRrsmwheXFMjR+TMl7QMBb6mzy9kvgr1lRLUA==";
+ url = "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.16.7.tgz";
+ sha512 = "C6FdbRaxYjwVu/geKW4ZeQ0Q31AftgRcdSnZ5/jsH6BzCJbtvXvhpfkbkThYSuutZA7nCXpPR6AD9zd1dprMkA==";
};
};
- "@babel/helper-compilation-targets-7.16.3" = {
+ "@babel/helper-compilation-targets-7.16.7" = {
name = "_at_babel_slash_helper-compilation-targets";
packageName = "@babel/helper-compilation-targets";
- version = "7.16.3";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.16.3.tgz";
- sha512 = "vKsoSQAyBmxS35JUOOt+07cLc6Nk/2ljLIHwmq2/NM6hdioUaqEXq/S+nXvbvXbZkNDlWOymPanJGOc4CBjSJA==";
+ url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.16.7.tgz";
+ sha512 = "mGojBwIWcwGD6rfqgRXVlVYmPAv7eOpIemUG3dGnDdCY4Pae70ROij3XmfrH6Fa1h1aiDylpglbZyktfzyo/hA==";
};
};
- "@babel/helper-create-class-features-plugin-7.16.5" = {
+ "@babel/helper-create-class-features-plugin-7.16.7" = {
name = "_at_babel_slash_helper-create-class-features-plugin";
packageName = "@babel/helper-create-class-features-plugin";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.16.5.tgz";
- sha512 = "NEohnYA7mkB8L5JhU7BLwcBdU3j83IziR9aseMueWGeAjblbul3zzb8UvJ3a1zuBiqCMObzCJHFqKIQE6hTVmg==";
+ url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.16.7.tgz";
+ sha512 = "kIFozAvVfK05DM4EVQYKK+zteWvY85BFdGBRQBytRyY3y+6PX0DkDOn/CZ3lEuczCfrCxEzwt0YtP/87YPTWSw==";
};
};
- "@babel/helper-create-regexp-features-plugin-7.16.0" = {
+ "@babel/helper-create-regexp-features-plugin-7.16.7" = {
name = "_at_babel_slash_helper-create-regexp-features-plugin";
packageName = "@babel/helper-create-regexp-features-plugin";
- version = "7.16.0";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.16.0.tgz";
- sha512 = "3DyG0zAFAZKcOp7aVr33ddwkxJ0Z0Jr5V99y3I690eYLpukJsJvAbzTy1ewoCqsML8SbIrjH14Jc/nSQ4TvNPA==";
+ url = "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.16.7.tgz";
+ sha512 = "fk5A6ymfp+O5+p2yCkXAu5Kyj6v0xh0RBeNcAkYUMDvvAAoxvSKXn+Jb37t/yWFiQVDFK1ELpUTD8/aLhCPu+g==";
};
};
"@babel/helper-define-polyfill-provider-0.3.0" = {
@@ -445,85 +1210,85 @@ let
sha512 = "7hfT8lUljl/tM3h+izTX/pO3W3frz2ok6Pk+gzys8iJqDfZrZy2pXjRTZAvG2YmfHun1X4q8/UZRLatMfqc5Tg==";
};
};
- "@babel/helper-environment-visitor-7.16.5" = {
+ "@babel/helper-environment-visitor-7.16.7" = {
name = "_at_babel_slash_helper-environment-visitor";
packageName = "@babel/helper-environment-visitor";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.5.tgz";
- sha512 = "ODQyc5AnxmZWm/R2W7fzhamOk1ey8gSguo5SGvF0zcB3uUzRpTRmM/jmLSm9bDMyPlvbyJ+PwPEK0BWIoZ9wjg==";
+ url = "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.7.tgz";
+ sha512 = "SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag==";
};
};
- "@babel/helper-explode-assignable-expression-7.16.0" = {
+ "@babel/helper-explode-assignable-expression-7.16.7" = {
name = "_at_babel_slash_helper-explode-assignable-expression";
packageName = "@babel/helper-explode-assignable-expression";
- version = "7.16.0";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.16.0.tgz";
- sha512 = "Hk2SLxC9ZbcOhLpg/yMznzJ11W++lg5GMbxt1ev6TXUiJB0N42KPC+7w8a+eWGuqDnUYuwStJoZHM7RgmIOaGQ==";
+ url = "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.16.7.tgz";
+ sha512 = "KyUenhWMC8VrxzkGP0Jizjo4/Zx+1nNZhgocs+gLzyZyB8SHidhoq9KK/8Ato4anhwsivfkBLftky7gvzbZMtQ==";
};
};
- "@babel/helper-function-name-7.16.0" = {
+ "@babel/helper-function-name-7.16.7" = {
name = "_at_babel_slash_helper-function-name";
packageName = "@babel/helper-function-name";
- version = "7.16.0";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.16.0.tgz";
- sha512 = "BZh4mEk1xi2h4HFjWUXRQX5AEx4rvaZxHgax9gcjdLWdkjsY7MKt5p0otjsg5noXw+pB+clMCjw+aEVYADMjog==";
+ url = "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.16.7.tgz";
+ sha512 = "QfDfEnIUyyBSR3HtrtGECuZ6DAyCkYFp7GHl75vFtTnn6pjKeK0T1DB5lLkFvBea8MdaiUABx3osbgLyInoejA==";
};
};
- "@babel/helper-get-function-arity-7.16.0" = {
+ "@babel/helper-get-function-arity-7.16.7" = {
name = "_at_babel_slash_helper-get-function-arity";
packageName = "@babel/helper-get-function-arity";
- version = "7.16.0";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.0.tgz";
- sha512 = "ASCquNcywC1NkYh/z7Cgp3w31YW8aojjYIlNg4VeJiHkqyP4AzIvr4qx7pYDb4/s8YcsZWqqOSxgkvjUz1kpDQ==";
+ url = "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.7.tgz";
+ sha512 = "flc+RLSOBXzNzVhcLu6ujeHUrD6tANAOU5ojrRx/as+tbzf8+stUCj7+IfRRoAbEZqj/ahXEMsjhOhgeZsrnTw==";
};
};
- "@babel/helper-hoist-variables-7.16.0" = {
+ "@babel/helper-hoist-variables-7.16.7" = {
name = "_at_babel_slash_helper-hoist-variables";
packageName = "@babel/helper-hoist-variables";
- version = "7.16.0";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.0.tgz";
- sha512 = "1AZlpazjUR0EQZQv3sgRNfM9mEVWPK3M6vlalczA+EECcPz3XPh6VplbErL5UoMpChhSck5wAJHthlj1bYpcmg==";
+ url = "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz";
+ sha512 = "m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==";
};
};
- "@babel/helper-member-expression-to-functions-7.16.5" = {
+ "@babel/helper-member-expression-to-functions-7.16.7" = {
name = "_at_babel_slash_helper-member-expression-to-functions";
packageName = "@babel/helper-member-expression-to-functions";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.16.5.tgz";
- sha512 = "7fecSXq7ZrLE+TWshbGT+HyCLkxloWNhTbU2QM1NTI/tDqyf0oZiMcEfYtDuUDCo528EOlt39G1rftea4bRZIw==";
+ url = "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.16.7.tgz";
+ sha512 = "VtJ/65tYiU/6AbMTDwyoXGPKHgTsfRarivm+YbB5uAzKUyuPjgZSgAFeG87FCigc7KNHu2Pegh1XIT3lXjvz3Q==";
};
};
- "@babel/helper-module-imports-7.16.0" = {
+ "@babel/helper-module-imports-7.16.7" = {
name = "_at_babel_slash_helper-module-imports";
packageName = "@babel/helper-module-imports";
- version = "7.16.0";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.16.0.tgz";
- sha512 = "kkH7sWzKPq0xt3H1n+ghb4xEMP8k0U7XV3kkB+ZGy69kDk2ySFW1qPi06sjKzFY3t1j6XbJSqr4mF9L7CYVyhg==";
+ url = "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz";
+ sha512 = "LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==";
};
};
- "@babel/helper-module-transforms-7.16.5" = {
+ "@babel/helper-module-transforms-7.16.7" = {
name = "_at_babel_slash_helper-module-transforms";
packageName = "@babel/helper-module-transforms";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.16.5.tgz";
- sha512 = "CkvMxgV4ZyyioElFwcuWnDCcNIeyqTkCm9BxXZi73RR1ozqlpboqsbGUNvRTflgZtFbbJ1v5Emvm+lkjMYY/LQ==";
+ url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.16.7.tgz";
+ sha512 = "gaqtLDxJEFCeQbYp9aLAefjhkKdjKcdh6DB7jniIGU3Pz52WAmP268zK0VgPz9hUNkMSYeH976K2/Y6yPadpng==";
};
};
- "@babel/helper-optimise-call-expression-7.16.0" = {
+ "@babel/helper-optimise-call-expression-7.16.7" = {
name = "_at_babel_slash_helper-optimise-call-expression";
packageName = "@babel/helper-optimise-call-expression";
- version = "7.16.0";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.16.0.tgz";
- sha512 = "SuI467Gi2V8fkofm2JPnZzB/SUuXoJA5zXe/xzyPP2M04686RzFKFHPK6HDVN6JvWBIEW8tt9hPR7fXdn2Lgpw==";
+ url = "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.16.7.tgz";
+ sha512 = "EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z+1w==";
};
};
"@babel/helper-plugin-utils-7.10.4" = {
@@ -535,40 +1300,40 @@ let
sha512 = "O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==";
};
};
- "@babel/helper-plugin-utils-7.16.5" = {
+ "@babel/helper-plugin-utils-7.16.7" = {
name = "_at_babel_slash_helper-plugin-utils";
packageName = "@babel/helper-plugin-utils";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.5.tgz";
- sha512 = "59KHWHXxVA9K4HNF4sbHCf+eJeFe0Te/ZFGqBT4OjXhrwvA04sGfaEGsVTdsjoszq0YTP49RC9UKe5g8uN2RwQ==";
+ url = "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz";
+ sha512 = "Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA==";
};
};
- "@babel/helper-remap-async-to-generator-7.16.5" = {
+ "@babel/helper-remap-async-to-generator-7.16.7" = {
name = "_at_babel_slash_helper-remap-async-to-generator";
packageName = "@babel/helper-remap-async-to-generator";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.16.5.tgz";
- sha512 = "X+aAJldyxrOmN9v3FKp+Hu1NO69VWgYgDGq6YDykwRPzxs5f2N+X988CBXS7EQahDU+Vpet5QYMqLk+nsp+Qxw==";
+ url = "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.16.7.tgz";
+ sha512 = "C3o117GnP/j/N2OWo+oepeWbFEKRfNaay+F1Eo5Mj3A1SRjyx+qaFhm23nlipub7Cjv2azdUUiDH+VlpdwUFRg==";
};
};
- "@babel/helper-replace-supers-7.16.5" = {
+ "@babel/helper-replace-supers-7.16.7" = {
name = "_at_babel_slash_helper-replace-supers";
packageName = "@babel/helper-replace-supers";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.16.5.tgz";
- sha512 = "ao3seGVa/FZCMCCNDuBcqnBFSbdr8N2EW35mzojx3TwfIbdPmNK+JV6+2d5bR0Z71W5ocLnQp9en/cTF7pBJiQ==";
+ url = "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.16.7.tgz";
+ sha512 = "y9vsWilTNaVnVh6xiJfABzsNpgDPKev9HnAgz6Gb1p6UUwf9NepdlsV7VXGCftJM+jqD5f7JIEubcpLjZj5dBw==";
};
};
- "@babel/helper-simple-access-7.16.0" = {
+ "@babel/helper-simple-access-7.16.7" = {
name = "_at_babel_slash_helper-simple-access";
packageName = "@babel/helper-simple-access";
- version = "7.16.0";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.16.0.tgz";
- sha512 = "o1rjBT/gppAqKsYfUdfHq5Rk03lMQrkPHG1OWzHWpLgVXRH4HnMM9Et9CVdIqwkCQlobnGHEJMsgWP/jE1zUiw==";
+ url = "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.16.7.tgz";
+ sha512 = "ZIzHVyoeLMvXMN/vok/a4LWRy8G2v205mNP0XOuf9XRLyX5/u9CnVulUtDgUTama3lT+bf/UqucuZjqiGuTS1g==";
};
};
"@babel/helper-skip-transparent-expression-wrappers-7.16.0" = {
@@ -580,67 +1345,67 @@ let
sha512 = "+il1gTy0oHwUsBQZyJvukbB4vPMdcYBrFHa0Uc4AizLxbq6BOYC51Rv4tWocX9BLBDLZ4kc6qUFpQ6HRgL+3zw==";
};
};
- "@babel/helper-split-export-declaration-7.16.0" = {
+ "@babel/helper-split-export-declaration-7.16.7" = {
name = "_at_babel_slash_helper-split-export-declaration";
packageName = "@babel/helper-split-export-declaration";
- version = "7.16.0";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.0.tgz";
- sha512 = "0YMMRpuDFNGTHNRiiqJX19GjNXA4H0E8jZ2ibccfSxaCogbm3am5WN/2nQNj0YnQwGWM1J06GOcQ2qnh3+0paw==";
+ url = "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz";
+ sha512 = "xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==";
};
};
- "@babel/helper-validator-identifier-7.15.7" = {
+ "@babel/helper-validator-identifier-7.16.7" = {
name = "_at_babel_slash_helper-validator-identifier";
packageName = "@babel/helper-validator-identifier";
- version = "7.15.7";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.15.7.tgz";
- sha512 = "K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w==";
+ url = "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz";
+ sha512 = "hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==";
};
};
- "@babel/helper-validator-option-7.14.5" = {
+ "@babel/helper-validator-option-7.16.7" = {
name = "_at_babel_slash_helper-validator-option";
packageName = "@babel/helper-validator-option";
- version = "7.14.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz";
- sha512 = "OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow==";
+ url = "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.16.7.tgz";
+ sha512 = "TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ==";
};
};
- "@babel/helper-wrap-function-7.16.5" = {
+ "@babel/helper-wrap-function-7.16.7" = {
name = "_at_babel_slash_helper-wrap-function";
packageName = "@babel/helper-wrap-function";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.16.5.tgz";
- sha512 = "2J2pmLBqUqVdJw78U0KPNdeE2qeuIyKoG4mKV7wAq3mc4jJG282UgjZw4ZYDnqiWQuS3Y3IYdF/AQ6CpyBV3VA==";
+ url = "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.16.7.tgz";
+ sha512 = "7a9sABeVwcunnztZZ7WTgSw6jVYLzM1wua0Z4HIXm9S3/HC96WKQTkFgGEaj5W06SHHihPJ6Le6HzS5cGOQMNw==";
};
};
- "@babel/helpers-7.16.5" = {
+ "@babel/helpers-7.16.7" = {
name = "_at_babel_slash_helpers";
packageName = "@babel/helpers";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.16.5.tgz";
- sha512 = "TLgi6Lh71vvMZGEkFuIxzaPsyeYCHQ5jJOOX1f0xXn0uciFuE8cEk0wyBquMcCxBXZ5BJhE2aUB7pnWTD150Tw==";
+ url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.16.7.tgz";
+ sha512 = "9ZDoqtfY7AuEOt3cxchfii6C7GDyyMBffktR5B2jvWv8u2+efwvpnVKXMWzNehqy68tKgAfSwfdw/lWpthS2bw==";
};
};
- "@babel/highlight-7.16.0" = {
+ "@babel/highlight-7.16.7" = {
name = "_at_babel_slash_highlight";
packageName = "@babel/highlight";
- version = "7.16.0";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.0.tgz";
- sha512 = "t8MH41kUQylBtu2+4IQA3atqevA2lRgqA2wyVB/YiWmsDSuylZZuXOUy9ric30hfzauEFfdsuk/eXTRrGrfd0g==";
+ url = "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.7.tgz";
+ sha512 = "aKpPMfLvGO3Q97V0qhw/V2SWNWlwfJknuwAunU7wZLSfrM4xTBvg7E5opUVi1kJTBKihE38CPg4nBiqX83PWYw==";
};
};
- "@babel/node-7.16.5" = {
+ "@babel/node-7.16.7" = {
name = "_at_babel_slash_node";
packageName = "@babel/node";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/node/-/node-7.16.5.tgz";
- sha512 = "NUzl2ILzKE7lu5yj4pFLeOmREwOq6//8bFBB3m7XXz73INCSI1rjQJbUYLwZrpZWlt6RY536nDJFqo2MnY43nA==";
+ url = "https://registry.npmjs.org/@babel/node/-/node-7.16.7.tgz";
+ sha512 = "gXg2/lWOdJQeEwxmkS882UdlZNWTF9vdSjefYA2zrV1cudVqLv6qAdbo9GdqhJq9PzAqix5XyTqSfrl7BZC2lA==";
};
};
"@babel/parser-7.16.2" = {
@@ -652,31 +1417,31 @@ let
sha512 = "RUVpT0G2h6rOZwqLDTrKk7ksNv7YpAilTnYe1/Q+eDjxEceRMKVWbCsX7t8h6C1qCFi/1Y8WZjcEPBAFG27GPw==";
};
};
- "@babel/parser-7.16.6" = {
+ "@babel/parser-7.16.7" = {
name = "_at_babel_slash_parser";
packageName = "@babel/parser";
- version = "7.16.6";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/parser/-/parser-7.16.6.tgz";
- sha512 = "Gr86ujcNuPDnNOY8mi383Hvi8IYrJVJYuf3XcuBM/Dgd+bINn/7tHqsj+tKkoreMbmGsFLsltI/JJd8fOFWGDQ==";
+ url = "https://registry.npmjs.org/@babel/parser/-/parser-7.16.7.tgz";
+ sha512 = "sR4eaSrnM7BV7QPzGfEX5paG/6wrZM3I0HDzfIAK06ESvo9oy3xBuVBxE3MbQaKNhvg8g/ixjMWo2CGpzpHsDA==";
};
};
- "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.2" = {
+ "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.7" = {
name = "_at_babel_slash_plugin-bugfix-safari-id-destructuring-collision-in-function-expression";
packageName = "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression";
- version = "7.16.2";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.2.tgz";
- sha512 = "h37CvpLSf8gb2lIJ2CgC3t+EjFbi0t8qS7LCS1xcJIlEXE4czlofwaW7W1HA8zpgOCzI9C1nmoqNR1zWkk0pQg==";
+ url = "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.7.tgz";
+ sha512 = "anv/DObl7waiGEnC24O9zqL0pSuI9hljihqiDuFHC8d7/bjr/4RLGPWuc8rYOff/QPzbEPSkzG8wGG9aDuhHRg==";
};
};
- "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.0" = {
+ "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.7" = {
name = "_at_babel_slash_plugin-bugfix-v8-spread-parameters-in-optional-chaining";
packageName = "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining";
- version = "7.16.0";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.0.tgz";
- sha512 = "4tcFwwicpWTrpl9qjf7UsoosaArgImF85AxqCRZlgc3IQDvkUHjJpruXAL58Wmj+T6fypWTC/BakfEkwIL/pwA==";
+ url = "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.7.tgz";
+ sha512 = "di8vUHRdf+4aJ7ltXhaDbPoszdkh59AQtJM5soLsuHpQJdFQZOA4uGj0V2u/CZ8bJ/u8ULDL5yq6FO/bCXnKHw==";
};
};
"@babel/plugin-external-helpers-7.8.3" = {
@@ -688,94 +1453,94 @@ let
sha512 = "mx0WXDDiIl5DwzMtzWGRSPugXi9BxROS05GQrhLNbEamhBiicgn994ibwkyiBH+6png7bm/yA7AUsvHyCXi4Vw==";
};
};
- "@babel/plugin-proposal-async-generator-functions-7.16.5" = {
+ "@babel/plugin-proposal-async-generator-functions-7.16.7" = {
name = "_at_babel_slash_plugin-proposal-async-generator-functions";
packageName = "@babel/plugin-proposal-async-generator-functions";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.16.5.tgz";
- sha512 = "C/FX+3HNLV6sz7AqbTQqEo1L9/kfrKjxcVtgyBCmvIgOjvuBVUWooDoi7trsLxOzCEo5FccjRvKHkfDsJFZlfA==";
+ url = "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.16.7.tgz";
+ sha512 = "TTXBT3A5c11eqRzaC6beO6rlFT3Mo9C2e8eB44tTr52ESXSK2CIc2fOp1ynpAwQA8HhBMho+WXhMHWlAe3xkpw==";
};
};
- "@babel/plugin-proposal-class-properties-7.16.5" = {
+ "@babel/plugin-proposal-class-properties-7.16.7" = {
name = "_at_babel_slash_plugin-proposal-class-properties";
packageName = "@babel/plugin-proposal-class-properties";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.16.5.tgz";
- sha512 = "pJD3HjgRv83s5dv1sTnDbZOaTjghKEz8KUn1Kbh2eAIRhGuyQ1XSeI4xVXU3UlIEVA3DAyIdxqT1eRn7Wcn55A==";
+ url = "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.16.7.tgz";
+ sha512 = "IobU0Xme31ewjYOShSIqd/ZGM/r/cuOz2z0MDbNrhF5FW+ZVgi0f2lyeoj9KFPDOAqsYxmLWZte1WOwlvY9aww==";
};
};
- "@babel/plugin-proposal-class-static-block-7.16.5" = {
+ "@babel/plugin-proposal-class-static-block-7.16.7" = {
name = "_at_babel_slash_plugin-proposal-class-static-block";
packageName = "@babel/plugin-proposal-class-static-block";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.16.5.tgz";
- sha512 = "EEFzuLZcm/rNJ8Q5krK+FRKdVkd6FjfzT9tuSZql9sQn64K0hHA2KLJ0DqVot9/iV6+SsuadC5yI39zWnm+nmQ==";
+ url = "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.16.7.tgz";
+ sha512 = "dgqJJrcZoG/4CkMopzhPJjGxsIe9A8RlkQLnL/Vhhx8AA9ZuaRwGSlscSh42hazc7WSrya/IK7mTeoF0DP9tEw==";
};
};
- "@babel/plugin-proposal-dynamic-import-7.16.5" = {
+ "@babel/plugin-proposal-dynamic-import-7.16.7" = {
name = "_at_babel_slash_plugin-proposal-dynamic-import";
packageName = "@babel/plugin-proposal-dynamic-import";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.16.5.tgz";
- sha512 = "P05/SJZTTvHz79LNYTF8ff5xXge0kk5sIIWAypcWgX4BTRUgyHc8wRxJ/Hk+mU0KXldgOOslKaeqnhthcDJCJQ==";
+ url = "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.16.7.tgz";
+ sha512 = "I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH+d60iG7dUfi0KkYwSvoalHzzdRzpWHTg==";
};
};
- "@babel/plugin-proposal-export-default-from-7.16.5" = {
+ "@babel/plugin-proposal-export-default-from-7.16.7" = {
name = "_at_babel_slash_plugin-proposal-export-default-from";
packageName = "@babel/plugin-proposal-export-default-from";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-proposal-export-default-from/-/plugin-proposal-export-default-from-7.16.5.tgz";
- sha512 = "pU4aCS+AzGjDD/6LnwSmeelmtqfMSjzQxs7+/AS673bYsshK1XZm9eth6OkgivVscQM8XdkVYhrb6tPFVTBVHA==";
+ url = "https://registry.npmjs.org/@babel/plugin-proposal-export-default-from/-/plugin-proposal-export-default-from-7.16.7.tgz";
+ sha512 = "+cENpW1rgIjExn+o5c8Jw/4BuH4eGKKYvkMB8/0ZxFQ9mC0t4z09VsPIwNg6waF69QYC81zxGeAsREGuqQoKeg==";
};
};
- "@babel/plugin-proposal-export-namespace-from-7.16.5" = {
+ "@babel/plugin-proposal-export-namespace-from-7.16.7" = {
name = "_at_babel_slash_plugin-proposal-export-namespace-from";
packageName = "@babel/plugin-proposal-export-namespace-from";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.16.5.tgz";
- sha512 = "i+sltzEShH1vsVydvNaTRsgvq2vZsfyrd7K7vPLUU/KgS0D5yZMe6uipM0+izminnkKrEfdUnz7CxMRb6oHZWw==";
+ url = "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.16.7.tgz";
+ sha512 = "ZxdtqDXLRGBL64ocZcs7ovt71L3jhC1RGSyR996svrCi3PYqHNkb3SwPJCs8RIzD86s+WPpt2S73+EHCGO+NUA==";
};
};
- "@babel/plugin-proposal-json-strings-7.16.5" = {
+ "@babel/plugin-proposal-json-strings-7.16.7" = {
name = "_at_babel_slash_plugin-proposal-json-strings";
packageName = "@babel/plugin-proposal-json-strings";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.16.5.tgz";
- sha512 = "QQJueTFa0y9E4qHANqIvMsuxM/qcLQmKttBACtPCQzGUEizsXDACGonlPiSwynHfOa3vNw0FPMVvQzbuXwh4SQ==";
+ url = "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.16.7.tgz";
+ sha512 = "lNZ3EEggsGY78JavgbHsK9u5P3pQaW7k4axlgFLYkMd7UBsiNahCITShLjNQschPyjtO6dADrL24757IdhBrsQ==";
};
};
- "@babel/plugin-proposal-logical-assignment-operators-7.16.5" = {
+ "@babel/plugin-proposal-logical-assignment-operators-7.16.7" = {
name = "_at_babel_slash_plugin-proposal-logical-assignment-operators";
packageName = "@babel/plugin-proposal-logical-assignment-operators";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.16.5.tgz";
- sha512 = "xqibl7ISO2vjuQM+MzR3rkd0zfNWltk7n9QhaD8ghMmMceVguYrNDt7MikRyj4J4v3QehpnrU8RYLnC7z/gZLA==";
+ url = "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.16.7.tgz";
+ sha512 = "K3XzyZJGQCr00+EtYtrDjmwX7o7PLK6U9bi1nCwkQioRFVUv6dJoxbQjtWVtP+bCPy82bONBKG8NPyQ4+i6yjg==";
};
};
- "@babel/plugin-proposal-nullish-coalescing-operator-7.16.5" = {
+ "@babel/plugin-proposal-nullish-coalescing-operator-7.16.7" = {
name = "_at_babel_slash_plugin-proposal-nullish-coalescing-operator";
packageName = "@babel/plugin-proposal-nullish-coalescing-operator";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.16.5.tgz";
- sha512 = "YwMsTp/oOviSBhrjwi0vzCUycseCYwoXnLiXIL3YNjHSMBHicGTz7GjVU/IGgz4DtOEXBdCNG72pvCX22ehfqg==";
+ url = "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.16.7.tgz";
+ sha512 = "aUOrYU3EVtjf62jQrCj63pYZ7k6vns2h/DQvHPWGmsJRYzWXZ6/AsfgpiRy6XiuIDADhJzP2Q9MwSMKauBQ+UQ==";
};
};
- "@babel/plugin-proposal-numeric-separator-7.16.5" = {
+ "@babel/plugin-proposal-numeric-separator-7.16.7" = {
name = "_at_babel_slash_plugin-proposal-numeric-separator";
packageName = "@babel/plugin-proposal-numeric-separator";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.16.5.tgz";
- sha512 = "DvB9l/TcsCRvsIV9v4jxR/jVP45cslTVC0PMVHvaJhhNuhn2Y1SOhCSFlPK777qLB5wb8rVDaNoqMTyOqtY5Iw==";
+ url = "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.16.7.tgz";
+ sha512 = "vQgPMknOIgiuVqbokToyXbkY/OmmjAzr/0lhSIbG/KmnzXPGwW/AdhdKpi+O4X/VkWiWjnkKOBiqJrTaC98VKw==";
};
};
"@babel/plugin-proposal-object-rest-spread-7.10.4" = {
@@ -787,58 +1552,58 @@ let
sha512 = "6vh4SqRuLLarjgeOf4EaROJAHjvu9Gl+/346PbDH9yWbJyfnJ/ah3jmYKYtswEyCoWZiidvVHjHshd4WgjB9BA==";
};
};
- "@babel/plugin-proposal-object-rest-spread-7.16.5" = {
+ "@babel/plugin-proposal-object-rest-spread-7.16.7" = {
name = "_at_babel_slash_plugin-proposal-object-rest-spread";
packageName = "@babel/plugin-proposal-object-rest-spread";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.16.5.tgz";
- sha512 = "UEd6KpChoyPhCoE840KRHOlGhEZFutdPDMGj+0I56yuTTOaT51GzmnEl/0uT41fB/vD2nT+Pci2KjezyE3HmUw==";
+ url = "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.16.7.tgz";
+ sha512 = "3O0Y4+dw94HA86qSg9IHfyPktgR7q3gpNVAeiKQd+8jBKFaU5NQS1Yatgo4wY+UFNuLjvxcSmzcsHqrhgTyBUA==";
};
};
- "@babel/plugin-proposal-optional-catch-binding-7.16.5" = {
+ "@babel/plugin-proposal-optional-catch-binding-7.16.7" = {
name = "_at_babel_slash_plugin-proposal-optional-catch-binding";
packageName = "@babel/plugin-proposal-optional-catch-binding";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.16.5.tgz";
- sha512 = "ihCMxY1Iljmx4bWy/PIMJGXN4NS4oUj1MKynwO07kiKms23pNvIn1DMB92DNB2R0EA882sw0VXIelYGdtF7xEQ==";
+ url = "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.16.7.tgz";
+ sha512 = "eMOH/L4OvWSZAE1VkHbr1vckLG1WUcHGJSLqqQwl2GaUqG6QjddvrOaTUMNYiv77H5IKPMZ9U9P7EaHwvAShfA==";
};
};
- "@babel/plugin-proposal-optional-chaining-7.16.5" = {
+ "@babel/plugin-proposal-optional-chaining-7.16.7" = {
name = "_at_babel_slash_plugin-proposal-optional-chaining";
packageName = "@babel/plugin-proposal-optional-chaining";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.16.5.tgz";
- sha512 = "kzdHgnaXRonttiTfKYnSVafbWngPPr2qKw9BWYBESl91W54e+9R5pP70LtWxV56g0f05f/SQrwHYkfvbwcdQ/A==";
+ url = "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.16.7.tgz";
+ sha512 = "eC3xy+ZrUcBtP7x+sq62Q/HYd674pPTb/77XZMb5wbDPGWIdUbSr4Agr052+zaUPSb+gGRnjxXfKFvx5iMJ+DA==";
};
};
- "@babel/plugin-proposal-private-methods-7.16.5" = {
+ "@babel/plugin-proposal-private-methods-7.16.7" = {
name = "_at_babel_slash_plugin-proposal-private-methods";
packageName = "@babel/plugin-proposal-private-methods";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.16.5.tgz";
- sha512 = "+yFMO4BGT3sgzXo+lrq7orX5mAZt57DwUK6seqII6AcJnJOIhBJ8pzKH47/ql/d426uQ7YhN8DpUFirQzqYSUA==";
+ url = "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.16.7.tgz";
+ sha512 = "7twV3pzhrRxSwHeIvFE6coPgvo+exNDOiGUMg39o2LiLo1Y+4aKpfkcLGcg1UHonzorCt7SNXnoMyCnnIOA8Sw==";
};
};
- "@babel/plugin-proposal-private-property-in-object-7.16.5" = {
+ "@babel/plugin-proposal-private-property-in-object-7.16.7" = {
name = "_at_babel_slash_plugin-proposal-private-property-in-object";
packageName = "@babel/plugin-proposal-private-property-in-object";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.16.5.tgz";
- sha512 = "+YGh5Wbw0NH3y/E5YMu6ci5qTDmAEVNoZ3I54aB6nVEOZ5BQ7QJlwKq5pYVucQilMByGn/bvX0af+uNaPRCabA==";
+ url = "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.16.7.tgz";
+ sha512 = "rMQkjcOFbm+ufe3bTZLyOfsOUOxyvLXZJCTARhJr+8UMSoZmqTe1K1BgkFcrW37rAchWg57yI69ORxiWvUINuQ==";
};
};
- "@babel/plugin-proposal-unicode-property-regex-7.16.5" = {
+ "@babel/plugin-proposal-unicode-property-regex-7.16.7" = {
name = "_at_babel_slash_plugin-proposal-unicode-property-regex";
packageName = "@babel/plugin-proposal-unicode-property-regex";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.16.5.tgz";
- sha512 = "s5sKtlKQyFSatt781HQwv1hoM5BQ9qRH30r+dK56OLDsHmV74mzwJNX7R1yMuE7VZKG5O6q/gmOGSAO6ikTudg==";
+ url = "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.16.7.tgz";
+ sha512 = "QRK0YI/40VLhNVGIjRNAAQkEHws0cswSdFFjpFyt943YmJIU1da9uW63Iu6NFV6CxTZW5eTDCrwZUstBWgp/Rg==";
};
};
"@babel/plugin-syntax-async-generators-7.8.4" = {
@@ -886,13 +1651,13 @@ let
sha512 = "5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==";
};
};
- "@babel/plugin-syntax-export-default-from-7.16.5" = {
+ "@babel/plugin-syntax-export-default-from-7.16.7" = {
name = "_at_babel_slash_plugin-syntax-export-default-from";
packageName = "@babel/plugin-syntax-export-default-from";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-syntax-export-default-from/-/plugin-syntax-export-default-from-7.16.5.tgz";
- sha512 = "tvY55nhq4mSG9WbM7IZcLIhdc5jzIZu0PQKJHtZ16+dF7oBxKbqV/Z0e9ta2zaLMvUjH+3rJv1hbZ0+lpXzuFQ==";
+ url = "https://registry.npmjs.org/@babel/plugin-syntax-export-default-from/-/plugin-syntax-export-default-from-7.16.7.tgz";
+ sha512 = "4C3E4NsrLOgftKaTYTULhHsuQrGv3FHrBzOMDiS7UYKIpgGBkAdawg4h+EI8zPeK9M0fiIIh72hIwsI24K7MbA==";
};
};
"@babel/plugin-syntax-export-namespace-from-7.8.3" = {
@@ -904,13 +1669,13 @@ let
sha512 = "MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==";
};
};
- "@babel/plugin-syntax-flow-7.16.5" = {
+ "@babel/plugin-syntax-flow-7.16.7" = {
name = "_at_babel_slash_plugin-syntax-flow";
packageName = "@babel/plugin-syntax-flow";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.16.5.tgz";
- sha512 = "Nrx+7EAJx1BieBQseZa2pavVH2Rp7hADK2xn7coYqVbWRu9C2OFizYcsKo6TrrqJkJl+qF/+Qqzrk/+XDu4GnA==";
+ url = "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.16.7.tgz";
+ sha512 = "UDo3YGQO0jH6ytzVwgSLv9i/CzMcUjbKenL67dTrAZPPv6GFAtDhe6jqnvmoKzC/7htNTohhos+onPtDMqJwaQ==";
};
};
"@babel/plugin-syntax-import-meta-7.10.4" = {
@@ -940,13 +1705,13 @@ let
sha512 = "KCg9mio9jwiARCB7WAcQ7Y1q+qicILjoK8LP/VkPkEKaf5dkaZZK1EcTe91a3JJlZ3qy6L5s9X52boEYi8DM9g==";
};
};
- "@babel/plugin-syntax-jsx-7.16.5" = {
+ "@babel/plugin-syntax-jsx-7.16.7" = {
name = "_at_babel_slash_plugin-syntax-jsx";
packageName = "@babel/plugin-syntax-jsx";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.16.5.tgz";
- sha512 = "42OGssv9NPk4QHKVgIHlzeLgPOW5rGgfV5jzG90AhcXXIv6hu/eqj63w4VgvRxdvZY3AlYeDgPiSJ3BqAd1Y6Q==";
+ url = "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.16.7.tgz";
+ sha512 = "Esxmk7YjA8QysKeT3VhTXvF6y77f/a91SIs4pWb4H2eWGQkCKFgQaG6hdoEVZtGsrAcb2K5BW66XsOErD4WU3Q==";
};
};
"@babel/plugin-syntax-logical-assignment-operators-7.10.4" = {
@@ -1021,382 +1786,382 @@ let
sha512 = "hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==";
};
};
- "@babel/plugin-syntax-typescript-7.16.5" = {
+ "@babel/plugin-syntax-typescript-7.16.7" = {
name = "_at_babel_slash_plugin-syntax-typescript";
packageName = "@babel/plugin-syntax-typescript";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.16.5.tgz";
- sha512 = "/d4//lZ1Vqb4mZ5xTep3dDK888j7BGM/iKqBmndBaoYAFPlPKrGU608VVBz5JeyAb6YQDjRu1UKqj86UhwWVgw==";
+ url = "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.16.7.tgz";
+ sha512 = "YhUIJHHGkqPgEcMYkPCKTyGUdoGKWtopIycQyjJH8OjvRgOYsXsaKehLVPScKJWAULPxMa4N1vCe6szREFlZ7A==";
};
};
- "@babel/plugin-transform-arrow-functions-7.16.5" = {
+ "@babel/plugin-transform-arrow-functions-7.16.7" = {
name = "_at_babel_slash_plugin-transform-arrow-functions";
packageName = "@babel/plugin-transform-arrow-functions";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.16.5.tgz";
- sha512 = "8bTHiiZyMOyfZFULjsCnYOWG059FVMes0iljEHSfARhNgFfpsqE92OrCffv3veSw9rwMkYcFe9bj0ZoXU2IGtQ==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.16.7.tgz";
+ sha512 = "9ffkFFMbvzTvv+7dTp/66xvZAWASuPD5Tl9LK3Z9vhOmANo6j94rik+5YMBt4CwHVMWLWpMsriIc2zsa3WW3xQ==";
};
};
- "@babel/plugin-transform-async-to-generator-7.16.5" = {
+ "@babel/plugin-transform-async-to-generator-7.16.7" = {
name = "_at_babel_slash_plugin-transform-async-to-generator";
packageName = "@babel/plugin-transform-async-to-generator";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.16.5.tgz";
- sha512 = "TMXgfioJnkXU+XRoj7P2ED7rUm5jbnDWwlCuFVTpQboMfbSya5WrmubNBAMlk7KXvywpo8rd8WuYZkis1o2H8w==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.16.7.tgz";
+ sha512 = "pFEfjnK4DfXCfAlA5I98BYdDJD8NltMzx19gt6DAmfE+2lXRfPUoa0/5SUjT4+TDE1W/rcxU/1lgN55vpAjjdg==";
};
};
- "@babel/plugin-transform-block-scoped-functions-7.16.5" = {
+ "@babel/plugin-transform-block-scoped-functions-7.16.7" = {
name = "_at_babel_slash_plugin-transform-block-scoped-functions";
packageName = "@babel/plugin-transform-block-scoped-functions";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.16.5.tgz";
- sha512 = "BxmIyKLjUGksJ99+hJyL/HIxLIGnLKtw772zYDER7UuycDZ+Xvzs98ZQw6NGgM2ss4/hlFAaGiZmMNKvValEjw==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.16.7.tgz";
+ sha512 = "JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg==";
};
};
- "@babel/plugin-transform-block-scoping-7.16.5" = {
+ "@babel/plugin-transform-block-scoping-7.16.7" = {
name = "_at_babel_slash_plugin-transform-block-scoping";
packageName = "@babel/plugin-transform-block-scoping";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.16.5.tgz";
- sha512 = "JxjSPNZSiOtmxjX7PBRBeRJTUKTyJ607YUYeT0QJCNdsedOe+/rXITjP08eG8xUpsLfPirgzdCFN+h0w6RI+pQ==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.16.7.tgz";
+ sha512 = "ObZev2nxVAYA4bhyusELdo9hb3H+A56bxH3FZMbEImZFiEDYVHXQSJ1hQKFlDnlt8G9bBrCZ5ZpURZUrV4G5qQ==";
};
};
- "@babel/plugin-transform-classes-7.16.5" = {
+ "@babel/plugin-transform-classes-7.16.7" = {
name = "_at_babel_slash_plugin-transform-classes";
packageName = "@babel/plugin-transform-classes";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.16.5.tgz";
- sha512 = "DzJ1vYf/7TaCYy57J3SJ9rV+JEuvmlnvvyvYKFbk5u46oQbBvuB9/0w+YsVsxkOv8zVWKpDmUoj4T5ILHoXevA==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.16.7.tgz";
+ sha512 = "WY7og38SFAGYRe64BrjKf8OrE6ulEHtr5jEYaZMwox9KebgqPi67Zqz8K53EKk1fFEJgm96r32rkKZ3qA2nCWQ==";
};
};
- "@babel/plugin-transform-computed-properties-7.16.5" = {
+ "@babel/plugin-transform-computed-properties-7.16.7" = {
name = "_at_babel_slash_plugin-transform-computed-properties";
packageName = "@babel/plugin-transform-computed-properties";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.16.5.tgz";
- sha512 = "n1+O7xtU5lSLraRzX88CNcpl7vtGdPakKzww74bVwpAIRgz9JVLJJpOLb0uYqcOaXVM0TL6X0RVeIJGD2CnCkg==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.16.7.tgz";
+ sha512 = "gN72G9bcmenVILj//sv1zLNaPyYcOzUho2lIJBMh/iakJ9ygCo/hEF9cpGb61SCMEDxbbyBoVQxrt+bWKu5KGw==";
};
};
- "@babel/plugin-transform-destructuring-7.16.5" = {
+ "@babel/plugin-transform-destructuring-7.16.7" = {
name = "_at_babel_slash_plugin-transform-destructuring";
packageName = "@babel/plugin-transform-destructuring";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.16.5.tgz";
- sha512 = "GuRVAsjq+c9YPK6NeTkRLWyQskDC099XkBSVO+6QzbnOnH2d/4mBVXYStaPrZD3dFRfg00I6BFJ9Atsjfs8mlg==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.16.7.tgz";
+ sha512 = "VqAwhTHBnu5xBVDCvrvqJbtLUa++qZaWC0Fgr2mqokBlulZARGyIvZDoqbPlPaKImQ9dKAcCzbv+ul//uqu70A==";
};
};
- "@babel/plugin-transform-dotall-regex-7.16.5" = {
+ "@babel/plugin-transform-dotall-regex-7.16.7" = {
name = "_at_babel_slash_plugin-transform-dotall-regex";
packageName = "@babel/plugin-transform-dotall-regex";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.16.5.tgz";
- sha512 = "iQiEMt8Q4/5aRGHpGVK2Zc7a6mx7qEAO7qehgSug3SDImnuMzgmm/wtJALXaz25zUj1PmnNHtShjFgk4PDx4nw==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.16.7.tgz";
+ sha512 = "Lyttaao2SjZF6Pf4vk1dVKv8YypMpomAbygW+mU5cYP3S5cWTfCJjG8xV6CFdzGFlfWK81IjL9viiTvpb6G7gQ==";
};
};
- "@babel/plugin-transform-duplicate-keys-7.16.5" = {
+ "@babel/plugin-transform-duplicate-keys-7.16.7" = {
name = "_at_babel_slash_plugin-transform-duplicate-keys";
packageName = "@babel/plugin-transform-duplicate-keys";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.16.5.tgz";
- sha512 = "81tijpDg2a6I1Yhj4aWY1l3O1J4Cg/Pd7LfvuaH2VVInAkXtzibz9+zSPdUM1WvuUi128ksstAP0hM5w48vQgg==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.16.7.tgz";
+ sha512 = "03DvpbRfvWIXyK0/6QiR1KMTWeT6OcQ7tbhjrXyFS02kjuX/mu5Bvnh5SDSWHxyawit2g5aWhKwI86EE7GUnTw==";
};
};
- "@babel/plugin-transform-exponentiation-operator-7.16.5" = {
+ "@babel/plugin-transform-exponentiation-operator-7.16.7" = {
name = "_at_babel_slash_plugin-transform-exponentiation-operator";
packageName = "@babel/plugin-transform-exponentiation-operator";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.16.5.tgz";
- sha512 = "12rba2HwemQPa7BLIKCzm1pT2/RuQHtSFHdNl41cFiC6oi4tcrp7gjB07pxQvFpcADojQywSjblQth6gJyE6CA==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.16.7.tgz";
+ sha512 = "8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA==";
};
};
- "@babel/plugin-transform-flow-strip-types-7.16.5" = {
+ "@babel/plugin-transform-flow-strip-types-7.16.7" = {
name = "_at_babel_slash_plugin-transform-flow-strip-types";
packageName = "@babel/plugin-transform-flow-strip-types";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.16.5.tgz";
- sha512 = "skE02E/MptkZdBS4HwoRhjWXqeKQj0BWKEAPfPC+8R4/f6bjQqQ9Nftv/+HkxWwnVxh/E2NV9TNfzLN5H/oiBw==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.16.7.tgz";
+ sha512 = "mzmCq3cNsDpZZu9FADYYyfZJIOrSONmHcop2XEKPdBNMa4PDC4eEvcOvzZaCNcjKu72v0XQlA5y1g58aLRXdYg==";
};
};
- "@babel/plugin-transform-for-of-7.16.5" = {
+ "@babel/plugin-transform-for-of-7.16.7" = {
name = "_at_babel_slash_plugin-transform-for-of";
packageName = "@babel/plugin-transform-for-of";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.16.5.tgz";
- sha512 = "+DpCAJFPAvViR17PIMi9x2AE34dll5wNlXO43wagAX2YcRGgEVHCNFC4azG85b4YyyFarvkc/iD5NPrz4Oneqw==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.16.7.tgz";
+ sha512 = "/QZm9W92Ptpw7sjI9Nx1mbcsWz33+l8kuMIQnDwgQBG5s3fAfQvkRjQ7NqXhtNcKOnPkdICmUHyCaWW06HCsqg==";
};
};
- "@babel/plugin-transform-function-name-7.16.5" = {
+ "@babel/plugin-transform-function-name-7.16.7" = {
name = "_at_babel_slash_plugin-transform-function-name";
packageName = "@babel/plugin-transform-function-name";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.16.5.tgz";
- sha512 = "Fuec/KPSpVLbGo6z1RPw4EE1X+z9gZk1uQmnYy7v4xr4TO9p41v1AoUuXEtyqAI7H+xNJYSICzRqZBhDEkd3kQ==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.16.7.tgz";
+ sha512 = "SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA==";
};
};
- "@babel/plugin-transform-literals-7.16.5" = {
+ "@babel/plugin-transform-literals-7.16.7" = {
name = "_at_babel_slash_plugin-transform-literals";
packageName = "@babel/plugin-transform-literals";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.16.5.tgz";
- sha512 = "B1j9C/IfvshnPcklsc93AVLTrNVa69iSqztylZH6qnmiAsDDOmmjEYqOm3Ts2lGSgTSywnBNiqC949VdD0/gfw==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.16.7.tgz";
+ sha512 = "6tH8RTpTWI0s2sV6uq3e/C9wPo4PTqqZps4uF0kzQ9/xPLFQtipynvmT1g/dOfEJ+0EQsHhkQ/zyRId8J2b8zQ==";
};
};
- "@babel/plugin-transform-member-expression-literals-7.16.5" = {
+ "@babel/plugin-transform-member-expression-literals-7.16.7" = {
name = "_at_babel_slash_plugin-transform-member-expression-literals";
packageName = "@babel/plugin-transform-member-expression-literals";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.16.5.tgz";
- sha512 = "d57i3vPHWgIde/9Y8W/xSFUndhvhZN5Wu2TjRrN1MVz5KzdUihKnfDVlfP1U7mS5DNj/WHHhaE4/tTi4hIyHwQ==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.16.7.tgz";
+ sha512 = "mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw==";
};
};
- "@babel/plugin-transform-modules-amd-7.16.5" = {
+ "@babel/plugin-transform-modules-amd-7.16.7" = {
name = "_at_babel_slash_plugin-transform-modules-amd";
packageName = "@babel/plugin-transform-modules-amd";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.16.5.tgz";
- sha512 = "oHI15S/hdJuSCfnwIz+4lm6wu/wBn7oJ8+QrkzPPwSFGXk8kgdI/AIKcbR/XnD1nQVMg/i6eNaXpszbGuwYDRQ==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.16.7.tgz";
+ sha512 = "KaaEtgBL7FKYwjJ/teH63oAmE3lP34N3kshz8mm4VMAw7U3PxjVwwUmxEFksbgsNUaO3wId9R2AVQYSEGRa2+g==";
};
};
- "@babel/plugin-transform-modules-commonjs-7.16.5" = {
+ "@babel/plugin-transform-modules-commonjs-7.16.7" = {
name = "_at_babel_slash_plugin-transform-modules-commonjs";
packageName = "@babel/plugin-transform-modules-commonjs";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.16.5.tgz";
- sha512 = "ABhUkxvoQyqhCWyb8xXtfwqNMJD7tx+irIRnUh6lmyFud7Jln1WzONXKlax1fg/ey178EXbs4bSGNd6PngO+SQ==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.16.7.tgz";
+ sha512 = "h2RP2kE7He1ZWKyAlanMZrAbdv+Acw1pA8dQZhE025WJZE2z0xzFADAinXA9fxd5bn7JnM+SdOGcndGx1ARs9w==";
};
};
- "@babel/plugin-transform-modules-systemjs-7.16.5" = {
+ "@babel/plugin-transform-modules-systemjs-7.16.7" = {
name = "_at_babel_slash_plugin-transform-modules-systemjs";
packageName = "@babel/plugin-transform-modules-systemjs";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.16.5.tgz";
- sha512 = "53gmLdScNN28XpjEVIm7LbWnD/b/TpbwKbLk6KV4KqC9WyU6rq1jnNmVG6UgAdQZVVGZVoik3DqHNxk4/EvrjA==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.16.7.tgz";
+ sha512 = "DuK5E3k+QQmnOqBR9UkusByy5WZWGRxfzV529s9nPra1GE7olmxfqO2FHobEOYSPIjPBTr4p66YDcjQnt8cBmw==";
};
};
- "@babel/plugin-transform-modules-umd-7.16.5" = {
+ "@babel/plugin-transform-modules-umd-7.16.7" = {
name = "_at_babel_slash_plugin-transform-modules-umd";
packageName = "@babel/plugin-transform-modules-umd";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.16.5.tgz";
- sha512 = "qTFnpxHMoenNHkS3VoWRdwrcJ3FhX567GvDA3hRZKF0Dj8Fmg0UzySZp3AP2mShl/bzcywb/UWAMQIjA1bhXvw==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.16.7.tgz";
+ sha512 = "EMh7uolsC8O4xhudF2F6wedbSHm1HHZ0C6aJ7K67zcDNidMzVcxWdGr+htW9n21klm+bOn+Rx4CBsAntZd3rEQ==";
};
};
- "@babel/plugin-transform-named-capturing-groups-regex-7.16.5" = {
+ "@babel/plugin-transform-named-capturing-groups-regex-7.16.7" = {
name = "_at_babel_slash_plugin-transform-named-capturing-groups-regex";
packageName = "@babel/plugin-transform-named-capturing-groups-regex";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.16.5.tgz";
- sha512 = "/wqGDgvFUeKELW6ex6QB7dLVRkd5ehjw34tpXu1nhKC0sFfmaLabIswnpf8JgDyV2NeDmZiwoOb0rAmxciNfjA==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.16.7.tgz";
+ sha512 = "kFy35VwmwIQwCjwrAQhl3+c/kr292i4KdLPKp5lPH03Ltc51qnFlIADoyPxc/6Naz3ok3WdYKg+KK6AH+D4utg==";
};
};
- "@babel/plugin-transform-new-target-7.16.5" = {
+ "@babel/plugin-transform-new-target-7.16.7" = {
name = "_at_babel_slash_plugin-transform-new-target";
packageName = "@babel/plugin-transform-new-target";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.16.5.tgz";
- sha512 = "ZaIrnXF08ZC8jnKR4/5g7YakGVL6go6V9ql6Jl3ecO8PQaQqFE74CuM384kezju7Z9nGCCA20BqZaR1tJ/WvHg==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.16.7.tgz";
+ sha512 = "xiLDzWNMfKoGOpc6t3U+etCE2yRnn3SM09BXqWPIZOBpL2gvVrBWUKnsJx0K/ADi5F5YC5f8APFfWrz25TdlGg==";
};
};
- "@babel/plugin-transform-object-super-7.16.5" = {
+ "@babel/plugin-transform-object-super-7.16.7" = {
name = "_at_babel_slash_plugin-transform-object-super";
packageName = "@babel/plugin-transform-object-super";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.16.5.tgz";
- sha512 = "tded+yZEXuxt9Jdtkc1RraW1zMF/GalVxaVVxh41IYwirdRgyAxxxCKZ9XB7LxZqmsjfjALxupNE1MIz9KH+Zg==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.16.7.tgz";
+ sha512 = "14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw==";
};
};
- "@babel/plugin-transform-parameters-7.16.5" = {
+ "@babel/plugin-transform-parameters-7.16.7" = {
name = "_at_babel_slash_plugin-transform-parameters";
packageName = "@babel/plugin-transform-parameters";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.16.5.tgz";
- sha512 = "B3O6AL5oPop1jAVg8CV+haeUte9oFuY85zu0jwnRNZZi3tVAbJriu5tag/oaO2kGaQM/7q7aGPBlTI5/sr9enA==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.16.7.tgz";
+ sha512 = "AT3MufQ7zZEhU2hwOA11axBnExW0Lszu4RL/tAlUJBuNoRak+wehQW8h6KcXOcgjY42fHtDxswuMhMjFEuv/aw==";
};
};
- "@babel/plugin-transform-property-literals-7.16.5" = {
+ "@babel/plugin-transform-property-literals-7.16.7" = {
name = "_at_babel_slash_plugin-transform-property-literals";
packageName = "@babel/plugin-transform-property-literals";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.16.5.tgz";
- sha512 = "+IRcVW71VdF9pEH/2R/Apab4a19LVvdVsr/gEeotH00vSDVlKD+XgfSIw+cgGWsjDB/ziqGv/pGoQZBIiQVXHg==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.16.7.tgz";
+ sha512 = "z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw==";
};
};
- "@babel/plugin-transform-react-display-name-7.16.5" = {
+ "@babel/plugin-transform-react-display-name-7.16.7" = {
name = "_at_babel_slash_plugin-transform-react-display-name";
packageName = "@babel/plugin-transform-react-display-name";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.16.5.tgz";
- sha512 = "dHYCOnzSsXFz8UcdNQIHGvg94qPL/teF7CCiCEMRxmA1G2p5Mq4JnKVowCDxYfiQ9D7RstaAp9kwaSI+sXbnhw==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.16.7.tgz";
+ sha512 = "qgIg8BcZgd0G/Cz916D5+9kqX0c7nPZyXaP8R2tLNN5tkyIZdG5fEwBrxwplzSnjC1jvQmyMNVwUCZPcbGY7Pg==";
};
};
- "@babel/plugin-transform-react-jsx-7.16.5" = {
+ "@babel/plugin-transform-react-jsx-7.16.7" = {
name = "_at_babel_slash_plugin-transform-react-jsx";
packageName = "@babel/plugin-transform-react-jsx";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.16.5.tgz";
- sha512 = "+arLIz1d7kmwX0fKxTxbnoeG85ONSnLpvdODa4P3pc1sS7CV1hfmtYWufkW/oYsPnkDrEeQFxhUWcFnrXW7jQQ==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.16.7.tgz";
+ sha512 = "8D16ye66fxiE8m890w0BpPpngG9o9OVBBy0gH2E+2AR7qMR2ZpTYJEqLxAsoroenMId0p/wMW+Blc0meDgu0Ag==";
};
};
- "@babel/plugin-transform-react-jsx-development-7.16.5" = {
+ "@babel/plugin-transform-react-jsx-development-7.16.7" = {
name = "_at_babel_slash_plugin-transform-react-jsx-development";
packageName = "@babel/plugin-transform-react-jsx-development";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.16.5.tgz";
- sha512 = "uQSLacMZSGLCxOw20dzo1dmLlKkd+DsayoV54q3MHXhbqgPzoiGerZQgNPl/Ro8/OcXV2ugfnkx+rxdS0sN5Uw==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.16.7.tgz";
+ sha512 = "RMvQWvpla+xy6MlBpPlrKZCMRs2AGiHOGHY3xRwl0pEeim348dDyxeH4xBsMPbIMhujeq7ihE702eM2Ew0Wo+A==";
};
};
- "@babel/plugin-transform-react-pure-annotations-7.16.5" = {
+ "@babel/plugin-transform-react-pure-annotations-7.16.7" = {
name = "_at_babel_slash_plugin-transform-react-pure-annotations";
packageName = "@babel/plugin-transform-react-pure-annotations";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.16.5.tgz";
- sha512 = "0nYU30hCxnCVCbRjSy9ahlhWZ2Sn6khbY4FqR91W+2RbSqkWEbVu2gXh45EqNy4Bq7sRU+H4i0/6YKwOSzh16A==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.16.7.tgz";
+ sha512 = "hs71ToC97k3QWxswh2ElzMFABXHvGiJ01IB1TbYQDGeWRKWz/MPUTh5jGExdHvosYKpnJW5Pm3S4+TA3FyX+GA==";
};
};
- "@babel/plugin-transform-regenerator-7.16.5" = {
+ "@babel/plugin-transform-regenerator-7.16.7" = {
name = "_at_babel_slash_plugin-transform-regenerator";
packageName = "@babel/plugin-transform-regenerator";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.16.5.tgz";
- sha512 = "2z+it2eVWU8TtQQRauvGUqZwLy4+7rTfo6wO4npr+fvvN1SW30ZF3O/ZRCNmTuu4F5MIP8OJhXAhRV5QMJOuYg==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.16.7.tgz";
+ sha512 = "mF7jOgGYCkSJagJ6XCujSQg+6xC1M77/03K2oBmVJWoFGNUtnVJO4WHKJk3dnPC8HCcj4xBQP1Egm8DWh3Pb3Q==";
};
};
- "@babel/plugin-transform-reserved-words-7.16.5" = {
+ "@babel/plugin-transform-reserved-words-7.16.7" = {
name = "_at_babel_slash_plugin-transform-reserved-words";
packageName = "@babel/plugin-transform-reserved-words";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.16.5.tgz";
- sha512 = "aIB16u8lNcf7drkhXJRoggOxSTUAuihTSTfAcpynowGJOZiGf+Yvi7RuTwFzVYSYPmWyARsPqUGoZWWWxLiknw==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.16.7.tgz";
+ sha512 = "KQzzDnZ9hWQBjwi5lpY5v9shmm6IVG0U9pB18zvMu2i4H90xpT4gmqwPYsn8rObiadYe2M0gmgsiOIF5A/2rtg==";
};
};
- "@babel/plugin-transform-runtime-7.16.5" = {
+ "@babel/plugin-transform-runtime-7.16.7" = {
name = "_at_babel_slash_plugin-transform-runtime";
packageName = "@babel/plugin-transform-runtime";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.16.5.tgz";
- sha512 = "gxpfS8XQWDbQ8oP5NcmpXxtEgCJkbO+W9VhZlOhr0xPyVaRjAQPOv7ZDj9fg0d5s9+NiVvMCE6gbkEkcsxwGRw==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.16.7.tgz";
+ sha512 = "2FoHiSAWkdq4L06uaDN3rS43i6x28desUVxq+zAFuE6kbWYQeiLPJI5IC7Sg9xKYVcrBKSQkVUfH6aeQYbl9QA==";
};
};
- "@babel/plugin-transform-shorthand-properties-7.16.5" = {
+ "@babel/plugin-transform-shorthand-properties-7.16.7" = {
name = "_at_babel_slash_plugin-transform-shorthand-properties";
packageName = "@babel/plugin-transform-shorthand-properties";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.16.5.tgz";
- sha512 = "ZbuWVcY+MAXJuuW7qDoCwoxDUNClfZxoo7/4swVbOW1s/qYLOMHlm9YRWMsxMFuLs44eXsv4op1vAaBaBaDMVg==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.16.7.tgz";
+ sha512 = "hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg==";
};
};
- "@babel/plugin-transform-spread-7.16.5" = {
+ "@babel/plugin-transform-spread-7.16.7" = {
name = "_at_babel_slash_plugin-transform-spread";
packageName = "@babel/plugin-transform-spread";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.16.5.tgz";
- sha512 = "5d6l/cnG7Lw4tGHEoga4xSkYp1euP7LAtrah1h1PgJ3JY7yNsjybsxQAnVK4JbtReZ/8z6ASVmd3QhYYKLaKZw==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.16.7.tgz";
+ sha512 = "+pjJpgAngb53L0iaA5gU/1MLXJIfXcYepLgXB3esVRf4fqmj8f2cxM3/FKaHsZms08hFQJkFccEWuIpm429TXg==";
};
};
- "@babel/plugin-transform-sticky-regex-7.16.5" = {
+ "@babel/plugin-transform-sticky-regex-7.16.7" = {
name = "_at_babel_slash_plugin-transform-sticky-regex";
packageName = "@babel/plugin-transform-sticky-regex";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.16.5.tgz";
- sha512 = "usYsuO1ID2LXxzuUxifgWtJemP7wL2uZtyrTVM4PKqsmJycdS4U4mGovL5xXkfUheds10Dd2PjoQLXw6zCsCbg==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.16.7.tgz";
+ sha512 = "NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw==";
};
};
- "@babel/plugin-transform-template-literals-7.16.5" = {
+ "@babel/plugin-transform-template-literals-7.16.7" = {
name = "_at_babel_slash_plugin-transform-template-literals";
packageName = "@babel/plugin-transform-template-literals";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.16.5.tgz";
- sha512 = "gnyKy9RyFhkovex4BjKWL3BVYzUDG6zC0gba7VMLbQoDuqMfJ1SDXs8k/XK41Mmt1Hyp4qNAvGFb9hKzdCqBRQ==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.16.7.tgz";
+ sha512 = "VwbkDDUeenlIjmfNeDX/V0aWrQH2QiVyJtwymVQSzItFDTpxfyJh3EVaQiS0rIN/CqbLGr0VcGmuwyTdZtdIsA==";
};
};
- "@babel/plugin-transform-typeof-symbol-7.16.5" = {
+ "@babel/plugin-transform-typeof-symbol-7.16.7" = {
name = "_at_babel_slash_plugin-transform-typeof-symbol";
packageName = "@babel/plugin-transform-typeof-symbol";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.16.5.tgz";
- sha512 = "ldxCkW180qbrvyCVDzAUZqB0TAeF8W/vGJoRcaf75awm6By+PxfJKvuqVAnq8N9wz5Xa6mSpM19OfVKKVmGHSQ==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.16.7.tgz";
+ sha512 = "p2rOixCKRJzpg9JB4gjnG4gjWkWa89ZoYUnl9snJ1cWIcTH/hvxZqfO+WjG6T8DRBpctEol5jw1O5rA8gkCokQ==";
};
};
- "@babel/plugin-transform-typescript-7.16.1" = {
+ "@babel/plugin-transform-typescript-7.16.7" = {
name = "_at_babel_slash_plugin-transform-typescript";
packageName = "@babel/plugin-transform-typescript";
- version = "7.16.1";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.16.1.tgz";
- sha512 = "NO4XoryBng06jjw/qWEU2LhcLJr1tWkhpMam/H4eas/CDKMX/b2/Ylb6EI256Y7+FVPCawwSM1rrJNOpDiz+Lg==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.16.7.tgz";
+ sha512 = "Hzx1lvBtOCWuCEwMmYOfpQpO7joFeXLgoPuzZZBtTxXqSqUGUubvFGZv2ygo1tB5Bp9q6PXV3H0E/kf7KM0RLA==";
};
};
- "@babel/plugin-transform-unicode-escapes-7.16.5" = {
+ "@babel/plugin-transform-unicode-escapes-7.16.7" = {
name = "_at_babel_slash_plugin-transform-unicode-escapes";
packageName = "@babel/plugin-transform-unicode-escapes";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.16.5.tgz";
- sha512 = "shiCBHTIIChGLdyojsKQjoAyB8MBwat25lKM7MJjbe1hE0bgIppD+LX9afr41lLHOhqceqeWl4FkLp+Bgn9o1Q==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.16.7.tgz";
+ sha512 = "TAV5IGahIz3yZ9/Hfv35TV2xEm+kaBDaZQCn2S/hG9/CZ0DktxJv9eKfPc7yYCvOYR4JGx1h8C+jcSOvgaaI/Q==";
};
};
- "@babel/plugin-transform-unicode-regex-7.16.5" = {
+ "@babel/plugin-transform-unicode-regex-7.16.7" = {
name = "_at_babel_slash_plugin-transform-unicode-regex";
packageName = "@babel/plugin-transform-unicode-regex";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.16.5.tgz";
- sha512 = "GTJ4IW012tiPEMMubd7sD07iU9O/LOo8Q/oU4xNhcaq0Xn8+6TcUQaHtC8YxySo1T+ErQ8RaWogIEeFhKGNPzw==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.16.7.tgz";
+ sha512 = "oC5tYYKw56HO75KZVLQ+R/Nl3Hro9kf8iG0hXoaHP7tjAyCpvqBiSNe6vGrZni1Z6MggmUOC6A7VP7AVmw225Q==";
};
};
- "@babel/preset-env-7.16.5" = {
+ "@babel/preset-env-7.16.7" = {
name = "_at_babel_slash_preset-env";
packageName = "@babel/preset-env";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.16.5.tgz";
- sha512 = "MiJJW5pwsktG61NDxpZ4oJ1CKxM1ncam9bzRtx9g40/WkLRkxFP6mhpkYV0/DxcciqoiHicx291+eUQrXb/SfQ==";
+ url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.16.7.tgz";
+ sha512 = "urX3Cee4aOZbRWOSa3mKPk0aqDikfILuo+C7qq7HY0InylGNZ1fekq9jmlr3pLWwZHF4yD7heQooc2Pow2KMyQ==";
};
};
- "@babel/preset-flow-7.16.5" = {
+ "@babel/preset-flow-7.16.7" = {
name = "_at_babel_slash_preset-flow";
packageName = "@babel/preset-flow";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/preset-flow/-/preset-flow-7.16.5.tgz";
- sha512 = "rmC6Nznp4V55N4Zfec87jwd14TdREqwKVJFM/6Z2wTwoeZQr56czjaPRCezqzqc8TsHF7aLP1oczjadIQ058gw==";
+ url = "https://registry.npmjs.org/@babel/preset-flow/-/preset-flow-7.16.7.tgz";
+ sha512 = "6ceP7IyZdUYQ3wUVqyRSQXztd1YmFHWI4Xv11MIqAlE4WqxBSd/FZ61V9k+TS5Gd4mkHOtQtPp9ymRpxH4y1Ug==";
};
};
"@babel/preset-modules-0.1.5" = {
@@ -1408,13 +2173,13 @@ let
sha512 = "A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==";
};
};
- "@babel/preset-react-7.16.5" = {
+ "@babel/preset-react-7.16.7" = {
name = "_at_babel_slash_preset-react";
packageName = "@babel/preset-react";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.16.5.tgz";
- sha512 = "3kzUOQeaxY/2vhPDS7CX/KGEGu/1bOYGvdRDJ2U5yjEz5o5jmIeTPLoiQBPGjfhPascLuW5OlMiPzwOOuB6txg==";
+ url = "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.16.7.tgz";
+ sha512 = "fWpyI8UM/HE6DfPBzD8LnhQ/OcH8AgTaqcqP2nGOXEUV+VKBR5JRN9hCk9ai+zQQ57vtm9oWeXguBCPNUjytgA==";
};
};
"@babel/preset-stage-0-7.8.3" = {
@@ -1435,22 +2200,22 @@ let
sha512 = "dStnEQgejNYIHFNACdDCigK4BF7wgW6Zahv9Dc2un7rGjbeVtZhBfR3sy0I7ZJOhBexkFxVdMZ5hqmll7BFShw==";
};
};
- "@babel/preset-typescript-7.16.5" = {
+ "@babel/preset-typescript-7.16.7" = {
name = "_at_babel_slash_preset-typescript";
packageName = "@babel/preset-typescript";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.16.5.tgz";
- sha512 = "lmAWRoJ9iOSvs3DqOndQpj8XqXkzaiQs50VG/zESiI9D3eoZhGriU675xNCr0UwvsuXrhMAGvyk1w+EVWF3u8Q==";
+ url = "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.16.7.tgz";
+ sha512 = "WbVEmgXdIyvzB77AQjGBEyYPZx+8tTsO50XtfozQrkW8QB2rLJpH2lgx0TRw5EJrBxOZQ+wCcyPVQvS8tjEHpQ==";
};
};
- "@babel/register-7.16.5" = {
+ "@babel/register-7.16.7" = {
name = "_at_babel_slash_register";
packageName = "@babel/register";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/register/-/register-7.16.5.tgz";
- sha512 = "NpluD+cToBiZiDsG3y9rtIcqDyivsahpaM9csfyfiq1qQWduSmihUZ+ruIqqSDGjZKZMJfgAElo9x2YWlOQuRw==";
+ url = "https://registry.npmjs.org/@babel/register/-/register-7.16.7.tgz";
+ sha512 = "Ft+cuxorVxFj4RrPDs9TbJNE7ZbuJTyazUC6jLWRvBQT/qIDZPMe7MHgjlrA+11+XDLh+I0Pnx7sxPp4LRhzcA==";
};
};
"@babel/runtime-7.13.9" = {
@@ -1462,13 +2227,13 @@ let
sha512 = "aY2kU+xgJ3dJ1eU6FMB9EH8dIe8dmusF1xEku52joLvw6eAFN0AI+WxCLDnpev2LEejWBAy2sBvBOBAjI3zmvA==";
};
};
- "@babel/runtime-7.16.5" = {
+ "@babel/runtime-7.16.7" = {
name = "_at_babel_slash_runtime";
packageName = "@babel/runtime";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.5.tgz";
- sha512 = "TXWihFIS3Pyv5hzR7j6ihmeLkZfrXGxAr5UfSl8CHf+6q/wpiYDkUau0czckpYG8QmnCIuPpdLtuA9VmuGGyMA==";
+ url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.7.tgz";
+ sha512 = "9E9FJowqAsytyOY6LG+1KuueckRL+aQW+mKvXRXnuFGyRAyepJPmEo9vgMfXUA6O9u3IeEdv9MAkppFcaQwogQ==";
};
};
"@babel/runtime-7.9.0" = {
@@ -1480,40 +2245,40 @@ let
sha512 = "cTIudHnzuWLS56ik4DnRnqqNf8MkdUzV4iFFI1h7Jo9xvrpQROYaAnaSd2mHLQAzzZAPfATynX5ord6YlNYNMA==";
};
};
- "@babel/runtime-corejs3-7.16.5" = {
+ "@babel/runtime-corejs3-7.16.7" = {
name = "_at_babel_slash_runtime-corejs3";
packageName = "@babel/runtime-corejs3";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.16.5.tgz";
- sha512 = "F1pMwvTiUNSAM8mc45kccMQxj31x3y3P+tA/X8hKNWp3/hUsxdGxZ3D3H8JIkxtfA8qGkaBTKvcmvStaYseAFw==";
+ url = "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.16.7.tgz";
+ sha512 = "MiYR1yk8+TW/CpOD0CyX7ve9ffWTKqLk/L6pk8TPl0R8pNi+1pFY8fH9yET55KlvukQ4PAWfXsGr2YHVjcI4Pw==";
};
};
- "@babel/standalone-7.16.6" = {
+ "@babel/standalone-7.16.7" = {
name = "_at_babel_slash_standalone";
packageName = "@babel/standalone";
- version = "7.16.6";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/standalone/-/standalone-7.16.6.tgz";
- sha512 = "wjildVe951w1IPEPN4G76j+y5JFZfJN9gdyP8o9zd61qbiVEecAgORKskK1D/7VrJZrZS+nxDbhj2akEFU2RJw==";
+ url = "https://registry.npmjs.org/@babel/standalone/-/standalone-7.16.7.tgz";
+ sha512 = "NlZijlgcJ45JRdk/3c+Q034+Ngi9oJBgemfVRLULb6iv6lyQaHm4LeRNtWtPWNmr3auRrMs/nc8ZQ/8OyIbeuw==";
};
};
- "@babel/template-7.16.0" = {
+ "@babel/template-7.16.7" = {
name = "_at_babel_slash_template";
packageName = "@babel/template";
- version = "7.16.0";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/template/-/template-7.16.0.tgz";
- sha512 = "MnZdpFD/ZdYhXwiunMqqgyZyucaYsbL0IrjoGjaVhGilz+x8YB++kRfygSOIj1yOtWKPlx7NBp+9I1RQSgsd5A==";
+ url = "https://registry.npmjs.org/@babel/template/-/template-7.16.7.tgz";
+ sha512 = "I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==";
};
};
- "@babel/traverse-7.16.5" = {
+ "@babel/traverse-7.16.7" = {
name = "_at_babel_slash_traverse";
packageName = "@babel/traverse";
- version = "7.16.5";
+ version = "7.16.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.16.5.tgz";
- sha512 = "FOCODAzqUMROikDYLYxl4nmwiLlu85rNqBML/A5hKRVXG2LV8d0iMqgPzdYTcIpjZEBB7D6UDU9vxRZiriASdQ==";
+ url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.16.7.tgz";
+ sha512 = "8KWJPIb8c2VvY8AJrydh6+fVRo2ODx1wYBU2398xJVq0JomuLBZmVQzLPBblJgHIGYG4znCpUZUZ0Pt2vdmVYQ==";
};
};
"@babel/types-7.16.0" = {
@@ -1525,6 +2290,15 @@ let
sha512 = "PJgg/k3SdLsGb3hhisFvtLOw5ts113klrpLuIPtCJIU+BB24fqq6lf8RWqKJEjzqXR9AEH1rIb5XTqwBHB+kQg==";
};
};
+ "@babel/types-7.16.7" = {
+ name = "_at_babel_slash_types";
+ packageName = "@babel/types";
+ version = "7.16.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@babel/types/-/types-7.16.7.tgz";
+ sha512 = "E8HuV7FO9qLpx6OtoGfUQ2cjIYnbFwvZWYBS+87EwtdMvmUPJSwykpovFB+8insbpF0uJcpr8KMUi64XZntZcg==";
+ };
+ };
"@blueprintjs/colors-4.0.0-beta.3" = {
name = "_at_blueprintjs_slash_colors";
packageName = "@blueprintjs/colors";
@@ -1633,13 +2407,13 @@ let
sha512 = "oh0O3EA0u2xmhSlL1JkJpA8K9mENKuRB1y1ChSnkoP5OS2GK0YebPQcrUTcvixW3tNi8ciYalC4JsY5oCKpFDQ==";
};
};
- "@chemzqm/neovim-5.4.0" = {
+ "@chemzqm/neovim-5.5.2" = {
name = "_at_chemzqm_slash_neovim";
packageName = "@chemzqm/neovim";
- version = "5.4.0";
+ version = "5.5.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@chemzqm/neovim/-/neovim-5.4.0.tgz";
- sha512 = "BjOAR5sliE2kp3EGZsyUmrYwTMRrxvXe6WBQTxL0m5uRIvfxShRaWyKOGbqoe0+sHCfgT67QsMevUAjB1Ovskw==";
+ url = "https://registry.npmjs.org/@chemzqm/neovim/-/neovim-5.5.2.tgz";
+ sha512 = "ozgBaKLo0SBo38KyqVU8lmPUCAs7AMUhrt3ak2LUKaTvAMDRjB25rb+LGWjNV4oGHL8QbjyfZkvIBYaWeef7Tw==";
};
};
"@cnakazawa/watch-1.0.4" = {
@@ -1660,130 +2434,139 @@ let
sha512 = "sR9Go0U6puXoXyW9UgIiIQhRcJ8jVOvGl4BptUiXAtheMs72WcakZ1udh6J0ZOivr3o8jAM+MTCHLP8FZMbVpQ==";
};
};
- "@commitlint/ensure-15.0.0" = {
+ "@commitlint/config-validator-16.0.0" = {
+ name = "_at_commitlint_slash_config-validator";
+ packageName = "@commitlint/config-validator";
+ version = "16.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@commitlint/config-validator/-/config-validator-16.0.0.tgz";
+ sha512 = "i80DGlo1FeC5jZpuoNV9NIjQN/m2dDV3jYGWg+1Wr+KldptkUHXj+6GY1Akll66lJ3D8s6aUGi3comPLHPtWHg==";
+ };
+ };
+ "@commitlint/ensure-16.0.0" = {
name = "_at_commitlint_slash_ensure";
packageName = "@commitlint/ensure";
- version = "15.0.0";
+ version = "16.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@commitlint/ensure/-/ensure-15.0.0.tgz";
- sha512 = "7DV4iNIald3vycwaWBNGk5FbonaNzOlU8nBe5m5AgU2dIeNKuXwLm+zzJzG27j0Ho56rgz//3F6RIvmsoxY9ZA==";
+ url = "https://registry.npmjs.org/@commitlint/ensure/-/ensure-16.0.0.tgz";
+ sha512 = "WdMySU8DCTaq3JPf0tZFCKIUhqxaL54mjduNhu8v4D2AMUVIIQKYMGyvXn94k8begeW6iJkTf9cXBArayskE7Q==";
};
};
- "@commitlint/execute-rule-15.0.0" = {
+ "@commitlint/execute-rule-16.0.0" = {
name = "_at_commitlint_slash_execute-rule";
packageName = "@commitlint/execute-rule";
- version = "15.0.0";
+ version = "16.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@commitlint/execute-rule/-/execute-rule-15.0.0.tgz";
- sha512 = "pyE4ApxjbWhb1TXz5vRiGwI2ssdMMgZbaaheZq1/7WC0xRnqnIhE1yUC1D2q20qPtvkZPstTYvMiRVtF+DvjUg==";
+ url = "https://registry.npmjs.org/@commitlint/execute-rule/-/execute-rule-16.0.0.tgz";
+ sha512 = "8edcCibmBb386x5JTHSPHINwA5L0xPkHQFY8TAuDEt5QyRZY/o5DF8OPHSa5Hx2xJvGaxxuIz4UtAT6IiRDYkw==";
};
};
- "@commitlint/format-15.0.0" = {
+ "@commitlint/format-16.0.0" = {
name = "_at_commitlint_slash_format";
packageName = "@commitlint/format";
- version = "15.0.0";
+ version = "16.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@commitlint/format/-/format-15.0.0.tgz";
- sha512 = "bPhAfqwRhPk92WiuY0ktEJNpRRHSCd+Eg1MdhGyL9Bl3U25E5zvuInA+dNctnzZiOBSH/37ZaD0eOKCpQE6acg==";
+ url = "https://registry.npmjs.org/@commitlint/format/-/format-16.0.0.tgz";
+ sha512 = "9yp5NCquXL1jVMKL0ZkRwJf/UHdebvCcMvICuZV00NQGYSAL89O398nhqrqxlbjBhM5EZVq0VGcV5+7r3D4zAA==";
};
};
- "@commitlint/is-ignored-15.0.0" = {
+ "@commitlint/is-ignored-16.0.0" = {
name = "_at_commitlint_slash_is-ignored";
packageName = "@commitlint/is-ignored";
- version = "15.0.0";
+ version = "16.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@commitlint/is-ignored/-/is-ignored-15.0.0.tgz";
- sha512 = "edtnkf2QZ/7e/YCJDgn1WDw9wfF1WfOitW5YEoSOb4SxjJEb/oE87kxNPZ2j8mnDMuunspcMfGHeg6fRlwaEWg==";
+ url = "https://registry.npmjs.org/@commitlint/is-ignored/-/is-ignored-16.0.0.tgz";
+ sha512 = "gmAQcwIGC/R/Lp0CEb2b5bfGC7MT5rPe09N8kOGjO/NcdNmfFSZMquwrvNJsq9hnAP0skRdHIsqwlkENkN4Lag==";
};
};
- "@commitlint/lint-15.0.0" = {
+ "@commitlint/lint-16.0.0" = {
name = "_at_commitlint_slash_lint";
packageName = "@commitlint/lint";
- version = "15.0.0";
+ version = "16.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@commitlint/lint/-/lint-15.0.0.tgz";
- sha512 = "hUi2+Im/2dJ5FBvWnodypTkg+5haCgsDzB0fyMApWLUA1IucYUAqRCQCW5em1Mhk9Crw1pd5YzFNikhIclkqCw==";
+ url = "https://registry.npmjs.org/@commitlint/lint/-/lint-16.0.0.tgz";
+ sha512 = "HNl15bRC0h+pLzbMzQC3tM0j1aESXsLYhElqKnXcf5mnCBkBkHzu6WwJW8rZbfxX+YwJmNljN62cPhmdBo8x0A==";
};
};
- "@commitlint/load-15.0.0" = {
+ "@commitlint/load-16.0.0" = {
name = "_at_commitlint_slash_load";
packageName = "@commitlint/load";
- version = "15.0.0";
+ version = "16.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@commitlint/load/-/load-15.0.0.tgz";
- sha512 = "Ak1YPeOhvxmY3ioe0o6m1yLGvUAYb4BdfGgShU8jiTCmU3Mnmms0Xh/kfQz8AybhezCC3AmVTyBLaBZxOHR8kg==";
+ url = "https://registry.npmjs.org/@commitlint/load/-/load-16.0.0.tgz";
+ sha512 = "7WhrGCkP6K/XfjBBguLkkI2XUdiiIyMGlNsSoSqgRNiD352EiffhFEApMy1/XOU+viwBBm/On0n5p0NC7e9/4A==";
};
};
- "@commitlint/message-15.0.0" = {
+ "@commitlint/message-16.0.0" = {
name = "_at_commitlint_slash_message";
packageName = "@commitlint/message";
- version = "15.0.0";
+ version = "16.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@commitlint/message/-/message-15.0.0.tgz";
- sha512 = "L8euabzboKavPuDJsdIYAY2wx97LbiGEYsckMo6NmV8pOun50c8hQx6ouXFSAx4pp+mX9yUGmMiVqfrk2LKDJQ==";
+ url = "https://registry.npmjs.org/@commitlint/message/-/message-16.0.0.tgz";
+ sha512 = "CmK2074SH1Ws6kFMEKOKH/7hMekGVbOD6vb4alCOo2+33ZSLUIX8iNkDYyrw38Jwg6yWUhLjyQLUxREeV+QIUA==";
};
};
- "@commitlint/parse-15.0.0" = {
+ "@commitlint/parse-16.0.0" = {
name = "_at_commitlint_slash_parse";
packageName = "@commitlint/parse";
- version = "15.0.0";
+ version = "16.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@commitlint/parse/-/parse-15.0.0.tgz";
- sha512 = "7fweM67tZfBNS7zw1KTuuT5K2u9nGytUJqFqT/1Ln3Na9cBCsoAqR47mfsNOTlRCgGwakm4xiQ7BpS2gN0OGuw==";
+ url = "https://registry.npmjs.org/@commitlint/parse/-/parse-16.0.0.tgz";
+ sha512 = "F9EjFlMw4MYgBEqoRrWZZKQBzdiJzPBI0qFDFqwUvfQsMmXEREZ242T4R5bFwLINWaALFLHEIa/FXEPa6QxCag==";
};
};
- "@commitlint/read-15.0.0" = {
+ "@commitlint/read-16.0.0" = {
name = "_at_commitlint_slash_read";
packageName = "@commitlint/read";
- version = "15.0.0";
+ version = "16.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@commitlint/read/-/read-15.0.0.tgz";
- sha512 = "5yI1o2HKZFVe7RTjL7IhuhHMKar/MDNY34vEHqqz9gMI7BK/rdP8uVb4Di1efl2V0UPnwID0nPKWESjQ8Ti0gw==";
+ url = "https://registry.npmjs.org/@commitlint/read/-/read-16.0.0.tgz";
+ sha512 = "H4T2zsfmYQK9B+JtoQaCXWBHUhgIJyOzWZjSfuIV9Ce69/OgHoffNpLZPF2lX6yKuDrS1SQFhI/kUCjVc/e4ew==";
};
};
- "@commitlint/resolve-extends-15.0.0" = {
+ "@commitlint/resolve-extends-16.0.0" = {
name = "_at_commitlint_slash_resolve-extends";
packageName = "@commitlint/resolve-extends";
- version = "15.0.0";
+ version = "16.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-15.0.0.tgz";
- sha512 = "7apfRJjgJsKja7lHsPfEFixKjA/fk/UeD3owkOw1174yYu4u8xBDLSeU3IinGPdMuF9m245eX8wo7vLUy+EBSg==";
+ url = "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-16.0.0.tgz";
+ sha512 = "Z/w9MAQUcxeawpCLtjmkVNXAXOmB2nhW+LYmHEZcx9O6UTauF/1+uuZ2/r0MtzTe1qw2JD+1QHVhEWYHVPlkdA==";
};
};
- "@commitlint/rules-15.0.0" = {
+ "@commitlint/rules-16.0.0" = {
name = "_at_commitlint_slash_rules";
packageName = "@commitlint/rules";
- version = "15.0.0";
+ version = "16.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@commitlint/rules/-/rules-15.0.0.tgz";
- sha512 = "SqXfp6QUlwBS+0IZm4FEA/NmmAwcFQIkG3B05BtemOVWXQdZ8j1vV6hDwvA9oMPCmUSrrGpHOtZK7HaHhng2yA==";
+ url = "https://registry.npmjs.org/@commitlint/rules/-/rules-16.0.0.tgz";
+ sha512 = "AOl0y2SBTdJ1bvIv8nwHvQKRT/jC1xb09C5VZwzHoT8sE8F54KDeEzPCwHQFgUcWdGLyS10kkOTAH2MyA8EIlg==";
};
};
- "@commitlint/to-lines-15.0.0" = {
+ "@commitlint/to-lines-16.0.0" = {
name = "_at_commitlint_slash_to-lines";
packageName = "@commitlint/to-lines";
- version = "15.0.0";
+ version = "16.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@commitlint/to-lines/-/to-lines-15.0.0.tgz";
- sha512 = "mY3MNA9ujPqVpiJjTYG9MDsYCobue5PJFO0MfcIzS1mCVvngH8ZFTPAh1fT5t+t1h876boS88+9WgqjRvbYItw==";
+ url = "https://registry.npmjs.org/@commitlint/to-lines/-/to-lines-16.0.0.tgz";
+ sha512 = "iN/qU38TCKU7uKOg6RXLpD49wNiuI0TqMqybHbjefUeP/Jmzxa8ishryj0uLyVdrAl1ZjGeD1ukXGMTtvqz8iA==";
};
};
- "@commitlint/top-level-15.0.0" = {
+ "@commitlint/top-level-16.0.0" = {
name = "_at_commitlint_slash_top-level";
packageName = "@commitlint/top-level";
- version = "15.0.0";
+ version = "16.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@commitlint/top-level/-/top-level-15.0.0.tgz";
- sha512 = "7Gz3t7xcuuUw1d1Nou6YLaztzp2Em+qZ6YdCzrqYc+aquca3Vt0O696nuiBDU/oE+tls4Hx2CNpAbWhTgEwB5A==";
+ url = "https://registry.npmjs.org/@commitlint/top-level/-/top-level-16.0.0.tgz";
+ sha512 = "/Jt6NLxyFkpjL5O0jxurZPCHURZAm7cQCqikgPCwqPAH0TLgwqdHjnYipl8J+AGnAMGDip4FNLoYrtgIpZGBYw==";
};
};
- "@commitlint/types-15.0.0" = {
+ "@commitlint/types-16.0.0" = {
name = "_at_commitlint_slash_types";
packageName = "@commitlint/types";
- version = "15.0.0";
+ version = "16.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@commitlint/types/-/types-15.0.0.tgz";
- sha512 = "OMSLX+QJnyNoTwws54ULv9sOvuw9GdVezln76oyUd4YbMMJyaav62aSXDuCdWyL2sm9hTkSzyEi52PNaIj/vqw==";
+ url = "https://registry.npmjs.org/@commitlint/types/-/types-16.0.0.tgz";
+ sha512 = "+0FvYOAS39bJ4aKjnYn/7FD4DfWkmQ6G/06I4F0Gvu4KS5twirEg8mIcLhmeRDOOKn4Tp8PwpLwBiSA6npEMQA==";
};
};
"@corestore/networker-1.2.0" = {
@@ -1804,22 +2587,22 @@ let
sha512 = "do5jDoX9oCR/dGHE4POVQ3PYDCmQ2Fow4CA72UL4WoE8zUImA/0lChczjfl+ucNjE4sXFWUnzoO6j4WzrUvLnw==";
};
};
- "@cspell/cspell-bundled-dicts-5.13.3" = {
+ "@cspell/cspell-bundled-dicts-5.14.0" = {
name = "_at_cspell_slash_cspell-bundled-dicts";
packageName = "@cspell/cspell-bundled-dicts";
- version = "5.13.3";
+ version = "5.14.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-5.13.3.tgz";
- sha512 = "IfjMBNA0M9QsZQW68rGNfWGawAAw5gkjDstuvsEuJfFoOHBT6NB8T5asGmMPJcRdfLvLSaVSG5IYnYWxL0wu/A==";
+ url = "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-5.14.0.tgz";
+ sha512 = "H9vrn+DUuZ8yrpL6Ljv5Q4WQG9FbEFmS2RpsQ+jPu1gZ/JLnHYRLL1S62Gzgwsky2QeXvHbNJVct7s9A0FXj8A==";
};
};
- "@cspell/cspell-types-5.13.3" = {
+ "@cspell/cspell-types-5.14.0" = {
name = "_at_cspell_slash_cspell-types";
packageName = "@cspell/cspell-types";
- version = "5.13.3";
+ version = "5.14.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-5.13.3.tgz";
- sha512 = "T70PvJQ5GV8BW7U2Q5mnrIB5poPnF7bNk7Cp95piYUcv/jlrPdWanDvdp+2gJLM+h0GUDRXscoX3Air4BmAwng==";
+ url = "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-5.14.0.tgz";
+ sha512 = "yTKxE+h+4LjzASHWrIuFpLK9L4oX3Em8Ea8aU4ccV1YCHcIqsuriTXnVtaqqaFEw9zz0PeU9ugwDROFwzfAejg==";
};
};
"@cspell/dict-ada-1.1.2" = {
@@ -1984,13 +2767,13 @@ let
sha512 = "kvl8T84cnYRPpND/P3D86P6WRSqebsbk0FnMfy27zo15L5MLAb3d3MOiT1kW3vEWfQgzUD7uddX/vUiuroQ8TA==";
};
};
- "@cspell/dict-html-1.1.9" = {
+ "@cspell/dict-html-2.0.2" = {
name = "_at_cspell_slash_dict-html";
packageName = "@cspell/dict-html";
- version = "1.1.9";
+ version = "2.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@cspell/dict-html/-/dict-html-1.1.9.tgz";
- sha512 = "vvnYia0tyIS5Fdoz+gEQm77MGZZE66kOJjuNpIYyRHCXFAhWdYz3SmkRm6YKJSWSvuO+WBJYTKDvkOxSh3Fx/w==";
+ url = "https://registry.npmjs.org/@cspell/dict-html/-/dict-html-2.0.2.tgz";
+ sha512 = "5zIZGBGyHfxnRPt8JyL3I8co2Rs+64phiap9sMA0D7lNnoT4MZXu1NYz7Z8F6/XCDFuu8Bw5X5CoPrL6pJ3F7Q==";
};
};
"@cspell/dict-html-symbol-entities-1.0.23" = {
@@ -2155,6 +2938,24 @@ let
sha512 = "n9So2C2Zw+uSDRzb2h9wq3PjZBqoHx+vBvu6a34H2qpumNjZ6HaEronrzX5tXJJXzOtocIQYrLxdd128TAU3+g==";
};
};
+ "@cspotcode/source-map-consumer-0.8.0" = {
+ name = "_at_cspotcode_slash_source-map-consumer";
+ packageName = "@cspotcode/source-map-consumer";
+ version = "0.8.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@cspotcode/source-map-consumer/-/source-map-consumer-0.8.0.tgz";
+ sha512 = "41qniHzTU8yAGbCp04ohlmSrZf8bkf/iJsl3V0dRGsQN/5GFfx+LbCSsCpp2gqrqjTVg/K6O8ycoV35JIwAzAg==";
+ };
+ };
+ "@cspotcode/source-map-support-0.7.0" = {
+ name = "_at_cspotcode_slash_source-map-support";
+ packageName = "@cspotcode/source-map-support";
+ version = "0.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.7.0.tgz";
+ sha512 = "X4xqRHqN8ACt2aHVe51OxeA2HjbcL4MqFqXkrmQszJ1NOUuUu5u6Vqx/0lZSVNku7velL5FC/s5uEAj1lsBMhA==";
+ };
+ };
"@cycle/dom-18.3.0" = {
name = "_at_cycle_slash_dom";
packageName = "@cycle/dom";
@@ -2560,22 +3361,22 @@ let
sha512 = "Ydf4LidRB/EBI+YrB+cVLqIseiRfjUI/AeHBgjGMtq3GroraDu81OV7zqophRgupngoL3iS3JUMDMnxO7g39qA==";
};
};
- "@expo/config-6.0.13" = {
+ "@expo/config-6.0.14" = {
name = "_at_expo_slash_config";
packageName = "@expo/config";
- version = "6.0.13";
+ version = "6.0.14";
src = fetchurl {
- url = "https://registry.npmjs.org/@expo/config/-/config-6.0.13.tgz";
- sha512 = "smVwkWQQrLaWO3/sIhT/7qX3qN29fvNB6kw5bGNzUQTJQ/gbjnwcZ522ME1QrcBQM6/uVWZ6Nu6+JTANk7h/Yg==";
+ url = "https://registry.npmjs.org/@expo/config/-/config-6.0.14.tgz";
+ sha512 = "CVnAGmXvAEYRYhXa7p1fZW9MzJtxE8cO0AGWdJIym4kyvxi6qkgeowmENEQUYKRk2s8Kq1+iY5krm2VXDqQV9w==";
};
};
- "@expo/config-plugins-4.0.13" = {
+ "@expo/config-plugins-4.0.14" = {
name = "_at_expo_slash_config-plugins";
packageName = "@expo/config-plugins";
- version = "4.0.13";
+ version = "4.0.14";
src = fetchurl {
- url = "https://registry.npmjs.org/@expo/config-plugins/-/config-plugins-4.0.13.tgz";
- sha512 = "yFcqqllAKz472UUdMRtcmfz8cHBT5VJ044cDY2E5JvaO/DQ9lfe4j/0soVUv7aeiHIWOheywJeefNfqpCo0glQ==";
+ url = "https://registry.npmjs.org/@expo/config-plugins/-/config-plugins-4.0.14.tgz";
+ sha512 = "3UMo9STaIAQRAvtlXXIX83mrxWAh0prQYgVG+n2JRBwI9CWiRdj35W+jyXkTChtPYXGvW1JQF2xatjB8ituSvg==";
};
};
"@expo/config-types-43.0.1" = {
@@ -2587,22 +3388,22 @@ let
sha512 = "EtllpCGDdB/UdwAIs5YXJwBLpbFQNdlLLrxIvoILA9cXrpQMWkeDCT9lQPJzFRMFcLUaMuGvkzX2tR4tx5EQFQ==";
};
};
- "@expo/dev-server-0.1.100" = {
+ "@expo/dev-server-0.1.101" = {
name = "_at_expo_slash_dev-server";
packageName = "@expo/dev-server";
- version = "0.1.100";
+ version = "0.1.101";
src = fetchurl {
- url = "https://registry.npmjs.org/@expo/dev-server/-/dev-server-0.1.100.tgz";
- sha512 = "ypu1Qka1AjR+jPDVoNrNW5o+w412vhTezlM80mvzcmswGOVYshp32+qTGJKtuwdGIir0bgbjHbZ/Sp8T/9Ps7Q==";
+ url = "https://registry.npmjs.org/@expo/dev-server/-/dev-server-0.1.101.tgz";
+ sha512 = "VRL3sDJXGUiJK3dv+yY4QpK8b7FTk5Khxf0U96wrAFmsnTWh3EhH0kbOZa37+A+5rUm6jwAS3gUE58vE7Jaw8g==";
};
};
- "@expo/dev-tools-0.13.136" = {
+ "@expo/dev-tools-0.13.138" = {
name = "_at_expo_slash_dev-tools";
packageName = "@expo/dev-tools";
- version = "0.13.136";
+ version = "0.13.138";
src = fetchurl {
- url = "https://registry.npmjs.org/@expo/dev-tools/-/dev-tools-0.13.136.tgz";
- sha512 = "3L486Jf9D0ErVF+ypUjx74BdyXo4r5iyOtLjvskVkCLxMtuFtjqqyVste3/zBKqHgF/A2ZWo8XfU8v+5SNa00g==";
+ url = "https://registry.npmjs.org/@expo/dev-tools/-/dev-tools-0.13.138.tgz";
+ sha512 = "ud8dVfrA5TGfa9QZTcXD09otT8VeNX0MqECl/1X229xbzmgMXRuBoTVoIV+yxGIp2WtPmZlOe1g6gMzZTq+X8g==";
};
};
"@expo/devcert-1.0.0" = {
@@ -2632,13 +3433,13 @@ let
sha512 = "ZxtBodAZGxdLtgKzmsC+8ViUxt1mhFW642Clu2OuG3f6PAyAFsU/SqEGag9wKFaD3x3Wt8VhL+3y5fMJmUFgPw==";
};
};
- "@expo/metro-config-0.3.6" = {
+ "@expo/metro-config-0.3.7" = {
name = "_at_expo_slash_metro-config";
packageName = "@expo/metro-config";
- version = "0.3.6";
+ version = "0.3.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@expo/metro-config/-/metro-config-0.3.6.tgz";
- sha512 = "GK7esyK2Cn/v5xoksD6x+45eE/PE7YUO9vuaLIwd8QHX7FyWWe3KAC6Mi/sCqNN+GP6E+TL8tgPFaVAr7R/WTw==";
+ url = "https://registry.npmjs.org/@expo/metro-config/-/metro-config-0.3.7.tgz";
+ sha512 = "ps5HXXYjAsEpG9qxzKG59YA1kItDp+XWPwOzPtqnBwffcuL1xFYPzBCLGvYlVg+6qKs7xvSMLWHzh89pv8oa0w==";
};
};
"@expo/osascript-2.0.31" = {
@@ -2668,13 +3469,13 @@ let
sha512 = "yQMt2CTm2VNLiHv2/EqHYrHvfflI2mFJd+DZIQQy569hvpZle0CxMPGH1p2KatbrO8htxJNvwrlR/4TIwhQJ5w==";
};
};
- "@expo/prebuild-config-3.0.13" = {
+ "@expo/prebuild-config-3.0.14" = {
name = "_at_expo_slash_prebuild-config";
packageName = "@expo/prebuild-config";
- version = "3.0.13";
+ version = "3.0.14";
src = fetchurl {
- url = "https://registry.npmjs.org/@expo/prebuild-config/-/prebuild-config-3.0.13.tgz";
- sha512 = "g85sgDFITEWKIKNUcab9AGPdnPSp8Msb49bhp03ckvM4gjgN7Ir/u4qN6DPm28JMRwf00aSfoMSZf8JTpSirCw==";
+ url = "https://registry.npmjs.org/@expo/prebuild-config/-/prebuild-config-3.0.14.tgz";
+ sha512 = "YpPcjgHsILWlXVl3txPJ6lQNCc8JWbMp3EkXdyi6/glXYAHbOI8snTFeV2GOJH5X2y88C24u0sAParcaNuapiQ==";
};
};
"@expo/rudder-sdk-node-1.1.1" = {
@@ -2686,13 +3487,13 @@ let
sha512 = "uy/hS/awclDJ1S88w9UGpc6Nm9XnNUjzOAAib1A3PVAnGQIwebg8DpFqOthFBTlZxeuV/BKbZ5jmTbtNZkp1WQ==";
};
};
- "@expo/schemer-1.3.32" = {
+ "@expo/schemer-1.3.33" = {
name = "_at_expo_slash_schemer";
packageName = "@expo/schemer";
- version = "1.3.32";
+ version = "1.3.33";
src = fetchurl {
- url = "https://registry.npmjs.org/@expo/schemer/-/schemer-1.3.32.tgz";
- sha512 = "cmyIL8glJPLNf1MFMJ5LLSdCC3f3jjItinClZ5Ne0qB5gqjRj2f8JwNZBpYKJ06xKULWtaJrWzw0jIgFmVzchQ==";
+ url = "https://registry.npmjs.org/@expo/schemer/-/schemer-1.3.33.tgz";
+ sha512 = "qjbArE6hl+ZKms4Znlv7mXMbCkm8T5BMn3eBzKnHJRCogNti/LOR0t8Nf9aY3QqaUqX1k6/JspLmLWhM/bGYYw==";
};
};
"@expo/sdk-runtime-versions-1.0.0" = {
@@ -2713,13 +3514,13 @@ let
sha512 = "LB7jWkqrHo+5fJHNrLAFdimuSXQ2MQ4lA7SQW5bf/HbsXuV2VrT/jN/M8f/KoWt0uJMGN4k/j7Opx4AvOOxSew==";
};
};
- "@expo/webpack-config-0.16.13" = {
+ "@expo/webpack-config-0.16.14" = {
name = "_at_expo_slash_webpack-config";
packageName = "@expo/webpack-config";
- version = "0.16.13";
+ version = "0.16.14";
src = fetchurl {
- url = "https://registry.npmjs.org/@expo/webpack-config/-/webpack-config-0.16.13.tgz";
- sha512 = "VLJzDKaeX27hfMk+ydTO3m+xyBuVEACMYM/wJv4Wo6KgxvJqmYO9d4YzVgU5nW3tnn+eN4+Q02JweyCD+DxjbQ==";
+ url = "https://registry.npmjs.org/@expo/webpack-config/-/webpack-config-0.16.14.tgz";
+ sha512 = "yJQrnr1GBpVdE9xPMSOO2nsfbFieady0YT/RlB1tDUFGuZ4HJjN+h8vMx5n3eDnHRxZgiQSOHOFYLUQmVJ5IoA==";
};
};
"@expo/xcpretty-4.1.0" = {
@@ -2893,6 +3694,15 @@ let
sha512 = "mgKZ7XdXN7MEGK+MCmRKuoq3GBiuYIa9ytYuV1DIHbd+eYqqyPYZHvL8g/73eogkNYK5TxSydja7TCRDzfJaxA==";
};
};
+ "@grammyjs/types-2.5.1" = {
+ name = "_at_grammyjs_slash_types";
+ packageName = "@grammyjs/types";
+ version = "2.5.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@grammyjs/types/-/types-2.5.1.tgz";
+ sha512 = "ZJ+X+w5qo6YxCRDWt63+SD2iX+xitP3Z7ieLUWw1b7OanljAMjPRry2PvBRoA1Zg0nFqulxFtiAHxxN1v8BXiQ==";
+ };
+ };
"@graphql-cli/common-4.1.0" = {
name = "_at_graphql-cli_slash_common";
packageName = "@graphql-cli/common";
@@ -3550,58 +4360,67 @@ let
sha512 = "fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==";
};
};
- "@joplin/fork-htmlparser2-4.1.38" = {
+ "@joplin/fork-htmlparser2-4.1.39" = {
name = "_at_joplin_slash_fork-htmlparser2";
packageName = "@joplin/fork-htmlparser2";
- version = "4.1.38";
+ version = "4.1.39";
src = fetchurl {
- url = "https://registry.npmjs.org/@joplin/fork-htmlparser2/-/fork-htmlparser2-4.1.38.tgz";
- sha512 = "DAv/fkv+tR0HFu6g8hNn2b/g2ZOBxGU8wuj2WScc598VOQXVKFfOAqZ+phZ1apTxpk1X0Z/HwmyTyzuS76QgYA==";
+ url = "https://registry.npmjs.org/@joplin/fork-htmlparser2/-/fork-htmlparser2-4.1.39.tgz";
+ sha512 = "CFHPa5Xcnn4oU3Y1/J4VYfqP7xwm0O0/0McKEwbZxpjUipIO7+yQ4VQ8sBHkj+DScN136YHLZcM3JLlUo/cqNg==";
};
};
- "@joplin/fork-sax-1.2.42" = {
+ "@joplin/fork-sax-1.2.43" = {
name = "_at_joplin_slash_fork-sax";
packageName = "@joplin/fork-sax";
- version = "1.2.42";
+ version = "1.2.43";
src = fetchurl {
- url = "https://registry.npmjs.org/@joplin/fork-sax/-/fork-sax-1.2.42.tgz";
- sha512 = "mHeN2V/kbxKLpTn5xCsiVTYaGPTk3amw0uAPedxB9oqb1BhTennzvlhWvM7HdnQER+infrqb+giRlYakiNjcBw==";
+ url = "https://registry.npmjs.org/@joplin/fork-sax/-/fork-sax-1.2.43.tgz";
+ sha512 = "BHtTnVVFoDRKyFgdBh/nXjiprU5FUhs+CrCYaY0U39WNJJ8rtY0ENEXaOogUPPXcaPP7Qy1/r/RSoNklJvodOA==";
};
};
- "@joplin/lib-2.6.2" = {
+ "@joplin/htmlpack-2.6.1" = {
+ name = "_at_joplin_slash_htmlpack";
+ packageName = "@joplin/htmlpack";
+ version = "2.6.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@joplin/htmlpack/-/htmlpack-2.6.1.tgz";
+ sha512 = "MII/ViUh+ZtvJHb2H4duaMRaGfeWRqLADt2490ONKb4Wji2H6A9lNzEtTvYg84+kG+xpBk7kJNrxKX4n1rR6ag==";
+ };
+ };
+ "@joplin/lib-2.6.3" = {
name = "_at_joplin_slash_lib";
packageName = "@joplin/lib";
- version = "2.6.2";
+ version = "2.6.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@joplin/lib/-/lib-2.6.2.tgz";
- sha512 = "mb/JK30T5BCUtDq+xwoURCJw8EXvhyqvqwE+G4EVBwxnxyQ/scMBfVMVOhR4RM2Wokrf0rPqeYGQFYFAiYEZvQ==";
+ url = "https://registry.npmjs.org/@joplin/lib/-/lib-2.6.3.tgz";
+ sha512 = "81azmfGSCEdwGbTbEXmEHD6wj+JF6WUDaBGD+7uc/82Xk4eh4CpdWqA5ThiQ5uT2hTrkyIaMnBw92n+vHWLK8A==";
};
};
- "@joplin/renderer-2.6.2" = {
+ "@joplin/renderer-2.6.3" = {
name = "_at_joplin_slash_renderer";
packageName = "@joplin/renderer";
- version = "2.6.2";
+ version = "2.6.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@joplin/renderer/-/renderer-2.6.2.tgz";
- sha512 = "3Dv6s8hb4hj9UZwa6BJotZijz/EQtEQftqcP5S8xHkL+YNRH+bkCOSof8s1p98nH3l/6Z9GTv99APoA1fp5sDA==";
+ url = "https://registry.npmjs.org/@joplin/renderer/-/renderer-2.6.3.tgz";
+ sha512 = "OpYA72QFJjaFB7gcVtelMRYazSkmnxB+0uMmbK9qld83EDsUb0h/94+rQPxqrISu3pt07tNTtHPAoAMVqbL7EA==";
};
};
- "@joplin/turndown-4.0.60" = {
+ "@joplin/turndown-4.0.61" = {
name = "_at_joplin_slash_turndown";
packageName = "@joplin/turndown";
- version = "4.0.60";
+ version = "4.0.61";
src = fetchurl {
- url = "https://registry.npmjs.org/@joplin/turndown/-/turndown-4.0.60.tgz";
- sha512 = "o7HCjVnai5kFIrRPfjIgixZrgNCGL9qYBK4p0v3S5b6gMz2Xt6NPkvlz09bTv7Ix3uJFJsRr4A6G6gVKZKt0ow==";
+ url = "https://registry.npmjs.org/@joplin/turndown/-/turndown-4.0.61.tgz";
+ sha512 = "sxAwwlKISZYyPwyaw1feLcuTGBFmulLtMEY8fvLk8Q6tgJbRqyIaV55dDHX3zYnn55hrC1RLFSJui0y6C2fhzQ==";
};
};
- "@joplin/turndown-plugin-gfm-1.0.42" = {
+ "@joplin/turndown-plugin-gfm-1.0.43" = {
name = "_at_joplin_slash_turndown-plugin-gfm";
packageName = "@joplin/turndown-plugin-gfm";
- version = "1.0.42";
+ version = "1.0.43";
src = fetchurl {
- url = "https://registry.npmjs.org/@joplin/turndown-plugin-gfm/-/turndown-plugin-gfm-1.0.42.tgz";
- sha512 = "8vYIdyKuQAkG8ANyHwOwxabQAj1IqTjs8MK9z8qXFpUyy/3b7sKd/oOALL+cnOnc63YcLWLz1JB9jGYAmkUKhg==";
+ url = "https://registry.npmjs.org/@joplin/turndown-plugin-gfm/-/turndown-plugin-gfm-1.0.43.tgz";
+ sha512 = "d0Qji9JT8vyCjPMfWCPgOCOA9naJlY9Yihumi2n3+FEnVJuu55gTpJzUNzA0TY5f1EDTbHtQYiFM56vkisjwgw==";
};
};
"@josephg/resolvable-1.0.1" = {
@@ -3622,22 +4441,22 @@ let
sha512 = "4JQNk+3mVzK3xh2rqd6RB4J46qUR19azEHBneZyTZM+c456qOrbbM/5xcR8huNCCcbVt7+UmizG6GuUvPvKUYg==";
};
};
- "@jsii/check-node-1.49.0" = {
+ "@jsii/check-node-1.50.0" = {
name = "_at_jsii_slash_check-node";
packageName = "@jsii/check-node";
- version = "1.49.0";
+ version = "1.50.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@jsii/check-node/-/check-node-1.49.0.tgz";
- sha512 = "NRlfVfsczS503K0Y476YkfqLr1yjtgGpj5xcPahS4qaPHJoxMdeiiPuvtybKif37+CKUj/BGsZc8yRXp5bzI1w==";
+ url = "https://registry.npmjs.org/@jsii/check-node/-/check-node-1.50.0.tgz";
+ sha512 = "CkL3EtRIxglzPraC2bR+plEw4pxrbCLUZRjTDxALjhJaO67SWyMUhtHkFerPH9vqIe7rQVkvrv6kJTwpNFRU5Q==";
};
};
- "@jsii/spec-1.49.0" = {
+ "@jsii/spec-1.50.0" = {
name = "_at_jsii_slash_spec";
packageName = "@jsii/spec";
- version = "1.49.0";
+ version = "1.50.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@jsii/spec/-/spec-1.49.0.tgz";
- sha512 = "uf3wr4c/bCl52VDLQGOGQQynAvyEvwCJ2jcN83nmHhovUkxmhVlqaKt8pumOyjfB5N5SoLW5tiY7ClMQ/q8UoQ==";
+ url = "https://registry.npmjs.org/@jsii/spec/-/spec-1.50.0.tgz";
+ sha512 = "u5GHFleSgoawkGb2C0vbKnI4w3Xok2/WaNxWojRKeL82UG6/C7E091ezrgQU26Y8l+BIzKK929uc6garfJWn5w==";
};
};
"@kwsites/file-exists-1.1.1" = {
@@ -4540,13 +5359,13 @@ let
sha512 = "W6CLUJ2eBMw3Rec70qrsEW0jOm/3twwJv21mrmj2yORiaVmVYGS4sSS5yUwvQc1ZlDLYGPnClVWmUUMagKNsfA==";
};
};
- "@microsoft/load-themed-styles-1.10.240" = {
+ "@microsoft/load-themed-styles-1.10.241" = {
name = "_at_microsoft_slash_load-themed-styles";
packageName = "@microsoft/load-themed-styles";
- version = "1.10.240";
+ version = "1.10.241";
src = fetchurl {
- url = "https://registry.npmjs.org/@microsoft/load-themed-styles/-/load-themed-styles-1.10.240.tgz";
- sha512 = "Db8ycvx1Kf+GWFbGMOVHB7YLOx5TANxDf7t4Qnre+iuf1O0X+YhB4vsGrNFcOL8OJXIa9P+ZaEC1GFL1bp8+4g==";
+ url = "https://registry.npmjs.org/@microsoft/load-themed-styles/-/load-themed-styles-1.10.241.tgz";
+ sha512 = "UdEtJGWSj361OxGO2AWMVzfBZPGv6EOJ2ZsuYLWGhDgBv/Y7QWPngEyHYljIC1YcqyQxy8q9xFvH/5qZKpTteA==";
};
};
"@mitmaro/errors-1.0.0" = {
@@ -4846,13 +5665,13 @@ let
sha512 = "5vwpq6kbvwkQwKqAoOU3L72GZ3Ta8RRrewKj9OJRolx28KLJJ8Dg9Rf7obRwt5jQA9bkYd8gqzMTrI7H3xLfaw==";
};
};
- "@oclif/command-1.8.15" = {
+ "@oclif/command-1.8.16" = {
name = "_at_oclif_slash_command";
packageName = "@oclif/command";
- version = "1.8.15";
+ version = "1.8.16";
src = fetchurl {
- url = "https://registry.npmjs.org/@oclif/command/-/command-1.8.15.tgz";
- sha512 = "lMRsr38sm4XBDBt2u88nvGyk3YxMjQenfX1HM140ZckTVqwuvFVZLP4HZ0rSAK9FdJzfryO/tH5hovdiC6bgsw==";
+ url = "https://registry.npmjs.org/@oclif/command/-/command-1.8.16.tgz";
+ sha512 = "rmVKYEsKzurfRU0xJz+iHelbi1LGlihIWZ7Qvmb/CBz1EkhL7nOkW4SVXmG2dA5Ce0si2gr88i6q4eBOMRNJ1w==";
};
};
"@oclif/config-1.17.0" = {
@@ -5125,13 +5944,13 @@ let
sha512 = "PffXX2AL8Sh0VHQ52jJC4u3T0H6wDK6N/4bg7xh4ngMYOIi13aR1kzVvX1sVDBgfGwDOkMbl4c54Xm3tlPx/+A==";
};
};
- "@opentelemetry/api-1.0.3" = {
+ "@opentelemetry/api-1.0.4" = {
name = "_at_opentelemetry_slash_api";
packageName = "@opentelemetry/api";
- version = "1.0.3";
+ version = "1.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@opentelemetry/api/-/api-1.0.3.tgz";
- sha512 = "puWxACExDe9nxbBB3lOymQFrLYml2dVOrd7USiVRnSbgXE+KwBu+HxFvxrzfqsiSda9IWsXJG1ef7C1O2/GmKQ==";
+ url = "https://registry.npmjs.org/@opentelemetry/api/-/api-1.0.4.tgz";
+ sha512 = "BuJuXRSJNQ3QoKA6GWWDyuLpOUck+9hAXNMCnrloc1aWVoy6Xq6t9PUV08aBZ4Lutqq2LEHM486bpZqoViScog==";
};
};
"@opentelemetry/semantic-conventions-0.24.0" = {
@@ -5143,328 +5962,328 @@ let
sha512 = "a/szuMQV0Quy0/M7kKdglcbRSoorleyyOwbTNNJ32O+RBN766wbQlMTvdimImTmwYWGr+NJOni1EcC242WlRcA==";
};
};
- "@ot-builder/bin-composite-types-1.3.2" = {
+ "@ot-builder/bin-composite-types-1.3.3" = {
name = "_at_ot-builder_slash_bin-composite-types";
packageName = "@ot-builder/bin-composite-types";
- version = "1.3.2";
+ version = "1.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/bin-composite-types/-/bin-composite-types-1.3.2.tgz";
- sha512 = "mtNln6Ve4bg3DxfOFFqAaNc/2DZmUSu8hZf9tM0pYoE5mOfeNfMQZEnD8Mo3WJ74bSi1SaJdXGoI00/7jPowCg==";
+ url = "https://registry.npmjs.org/@ot-builder/bin-composite-types/-/bin-composite-types-1.3.3.tgz";
+ sha512 = "E0l5ixtUowsGzGDP++wMQz64rm8IVCvcIz5NKHtOhs1RIzWT58O5EybSxGBvVBstP2jprMsiGCxjZJ9rhHmrqg==";
};
};
- "@ot-builder/bin-util-1.3.2" = {
+ "@ot-builder/bin-util-1.3.3" = {
name = "_at_ot-builder_slash_bin-util";
packageName = "@ot-builder/bin-util";
- version = "1.3.2";
+ version = "1.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/bin-util/-/bin-util-1.3.2.tgz";
- sha512 = "v+36AFrFJVQlqPF+vcZzYExCeeryPpjP2hGCGLAf+ADKLtw1sMS39+UHxmNwx5wmlfnhHtg6WTIVOV5l9grpkA==";
+ url = "https://registry.npmjs.org/@ot-builder/bin-util/-/bin-util-1.3.3.tgz";
+ sha512 = "76pe9Wz431PyOek445P+j/CwcRJaIZqItLL+oe/HAsWNLeAudh/GF1NdK6jKrjJsGa1sGbJUWuGfklpvY9IoBA==";
};
};
- "@ot-builder/cli-help-shower-1.3.2" = {
+ "@ot-builder/cli-help-shower-1.3.3" = {
name = "_at_ot-builder_slash_cli-help-shower";
packageName = "@ot-builder/cli-help-shower";
- version = "1.3.2";
+ version = "1.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/cli-help-shower/-/cli-help-shower-1.3.2.tgz";
- sha512 = "zkaFrbS6+8GGIsx0YiXUl4vrhd4dV8ADmscc372F0fg8Wnu3k6LJClEFBYSzJAAJxxfDuuPBBDmxrHJafLg0sg==";
+ url = "https://registry.npmjs.org/@ot-builder/cli-help-shower/-/cli-help-shower-1.3.3.tgz";
+ sha512 = "Judhkaz9m8dsjz/xESy3WJY7xmcnjD40A51Mg8H+EcA+Zyl2PsRguGjeYK5GP0YZpCDq73cPvt9IqXbU74HDKA==";
};
};
- "@ot-builder/cli-proc-1.3.2" = {
+ "@ot-builder/cli-proc-1.3.3" = {
name = "_at_ot-builder_slash_cli-proc";
packageName = "@ot-builder/cli-proc";
- version = "1.3.2";
+ version = "1.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/cli-proc/-/cli-proc-1.3.2.tgz";
- sha512 = "qNvhZINthCthkuzfeTmp9bHP7jesbvovcfy7f0lu6Rd7ODdU/ia/qNs58cGWcW6skN7f21Ba6TnAFzyGsll1Fg==";
+ url = "https://registry.npmjs.org/@ot-builder/cli-proc/-/cli-proc-1.3.3.tgz";
+ sha512 = "Afd6KU7iarOt8OJYJGWMU9tR2Hm4TCcvRHTq2kJns7rn7leJnJFvteRPLZwBFGIc0qlkeJ/w7uF0YBnnlSLWqw==";
};
};
- "@ot-builder/cli-shared-1.3.2" = {
+ "@ot-builder/cli-shared-1.3.3" = {
name = "_at_ot-builder_slash_cli-shared";
packageName = "@ot-builder/cli-shared";
- version = "1.3.2";
+ version = "1.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/cli-shared/-/cli-shared-1.3.2.tgz";
- sha512 = "QqOGIOHJQ73MHdzSE7FM5Ip4wE8QwILfiJViB5++74qU7m8wqF3u7TsPbUxlnoYsyMv4xkHI2Bd20VHcboJ+sA==";
+ url = "https://registry.npmjs.org/@ot-builder/cli-shared/-/cli-shared-1.3.3.tgz";
+ sha512 = "9isYiHmyRNDBhU+Zg55DcHFn/9uzD8O46r3+6BPO8X8YWXp6cOpEKzhgf3yfzCcJxplGrOKoUTR2PWj3TIaO1A==";
};
};
- "@ot-builder/common-impl-1.3.2" = {
+ "@ot-builder/common-impl-1.3.3" = {
name = "_at_ot-builder_slash_common-impl";
packageName = "@ot-builder/common-impl";
- version = "1.3.2";
+ version = "1.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/common-impl/-/common-impl-1.3.2.tgz";
- sha512 = "GMJfo9am2LqVMbYloPxdatAfuphbjahpLDPRU0qcpw495SInTeYCqysuiJ5iP+PwOOua18Lay9wrPFOVbnp77g==";
+ url = "https://registry.npmjs.org/@ot-builder/common-impl/-/common-impl-1.3.3.tgz";
+ sha512 = "+ijxOzqDER1qC1uC9JwIo5xyoHPB4vdY1YMvqZD+6JLO7AkiUjqqJlihnp1Xq7s0+WpySru45P+2S+ZI6J4X8g==";
};
};
- "@ot-builder/errors-1.3.2" = {
+ "@ot-builder/errors-1.3.3" = {
name = "_at_ot-builder_slash_errors";
packageName = "@ot-builder/errors";
- version = "1.3.2";
+ version = "1.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/errors/-/errors-1.3.2.tgz";
- sha512 = "QoQ9ksBaQxt/KyW7NRvaPPOQRKRYmLAdfKNT0GCL8eHViOxQNhFZR9OcdVQEgetxpi2HFOd7L4Mw9Jg+sugLXw==";
+ url = "https://registry.npmjs.org/@ot-builder/errors/-/errors-1.3.3.tgz";
+ sha512 = "i+i1/NFGysYbDeFSwikmbq/HLfpgJ7vXTviJMnZn1/JIYXscfrw01lqYpCnAmKrUXSbYqOc6pKWycS0IIzYEsA==";
};
};
- "@ot-builder/io-bin-cff-1.3.2" = {
+ "@ot-builder/io-bin-cff-1.3.3" = {
name = "_at_ot-builder_slash_io-bin-cff";
packageName = "@ot-builder/io-bin-cff";
- version = "1.3.2";
+ version = "1.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/io-bin-cff/-/io-bin-cff-1.3.2.tgz";
- sha512 = "JNt/2zvTxHRQJSWJ23I8zufkyjOEaKkGt4x0JkdyvVBK7TGMu2z29ZArNCCceBr+DFAMfB0M826glHrE9DNwFQ==";
+ url = "https://registry.npmjs.org/@ot-builder/io-bin-cff/-/io-bin-cff-1.3.3.tgz";
+ sha512 = "qcqWuo2WtR+MCFsTS1a0ieLH8+0KUaqpkXbhVha5y1eeKRIYsPaLS5Uj5IAApuLX6F6eZgaKiZkR7CqeBMwIGw==";
};
};
- "@ot-builder/io-bin-encoding-1.3.2" = {
+ "@ot-builder/io-bin-encoding-1.3.3" = {
name = "_at_ot-builder_slash_io-bin-encoding";
packageName = "@ot-builder/io-bin-encoding";
- version = "1.3.2";
+ version = "1.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/io-bin-encoding/-/io-bin-encoding-1.3.2.tgz";
- sha512 = "MLHhwtD8onUkYnC0I3Wxyk5te0qYnWVrmTsnANUEiCyUMcwNGLvJnX0273Gczq41IfsL6C7KFd3AlwXHCyepkw==";
+ url = "https://registry.npmjs.org/@ot-builder/io-bin-encoding/-/io-bin-encoding-1.3.3.tgz";
+ sha512 = "fE+RI5fc1FqXr8q96Ne6x12UStz2m/RjS0PbKO9X5/lxg0JaTKHdtJ65M6RX1kxLUO783P1NlibLliiuXWTg4A==";
};
};
- "@ot-builder/io-bin-ext-private-1.3.2" = {
+ "@ot-builder/io-bin-ext-private-1.3.3" = {
name = "_at_ot-builder_slash_io-bin-ext-private";
packageName = "@ot-builder/io-bin-ext-private";
- version = "1.3.2";
+ version = "1.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/io-bin-ext-private/-/io-bin-ext-private-1.3.2.tgz";
- sha512 = "BXpOFvKMAq3dbEin+9GrU7rHjdkDX2/CEXpdfGVVAsI91pcNlF0Kd200rUv7B1HoyIP5GQAhkn3/gfZCtbVKYg==";
+ url = "https://registry.npmjs.org/@ot-builder/io-bin-ext-private/-/io-bin-ext-private-1.3.3.tgz";
+ sha512 = "CyLwG038inIozQtn4bWclc13EWynWALO4LGPcgLMRmD1UsS4LbMRuoGJ02p70+uxsKLaHgA2RjC63g02IbIjmw==";
};
};
- "@ot-builder/io-bin-font-1.3.2" = {
+ "@ot-builder/io-bin-font-1.3.3" = {
name = "_at_ot-builder_slash_io-bin-font";
packageName = "@ot-builder/io-bin-font";
- version = "1.3.2";
+ version = "1.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/io-bin-font/-/io-bin-font-1.3.2.tgz";
- sha512 = "b/f3ckpBoY7OMWs0Lnp1N5mnmsOg3pc27Q9LE85tlJvx8k19NDVWOHGxr2TRiSRYgzHm5m4mCi9q8Vd9QRU/Rw==";
+ url = "https://registry.npmjs.org/@ot-builder/io-bin-font/-/io-bin-font-1.3.3.tgz";
+ sha512 = "b3aHYfGAwJShZe9mmZAJXFXpklZspUBjf69FuujkbA5teQl7w6GdwXOiwhavtsNwHuNC2We7Oh9wp1vnLSceXA==";
};
};
- "@ot-builder/io-bin-glyph-store-1.3.2" = {
+ "@ot-builder/io-bin-glyph-store-1.3.3" = {
name = "_at_ot-builder_slash_io-bin-glyph-store";
packageName = "@ot-builder/io-bin-glyph-store";
- version = "1.3.2";
+ version = "1.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/io-bin-glyph-store/-/io-bin-glyph-store-1.3.2.tgz";
- sha512 = "PPZZIwWm3njbDJMojxgwJerQFEL/eAfM1It8Wrgo/04d87jMECWhV+YML/8YEu67TuZiRhKhP27jnPENX1WavQ==";
+ url = "https://registry.npmjs.org/@ot-builder/io-bin-glyph-store/-/io-bin-glyph-store-1.3.3.tgz";
+ sha512 = "yJPth9RyOLvyO/wGm+axfBSOPUqkgiVUeOSMSpLHM+ujhrZXW0OW9Xbxij+9QLsZrxI9mpEWkdWygWWBUceD/Q==";
};
};
- "@ot-builder/io-bin-layout-1.3.2" = {
+ "@ot-builder/io-bin-layout-1.3.3" = {
name = "_at_ot-builder_slash_io-bin-layout";
packageName = "@ot-builder/io-bin-layout";
- version = "1.3.2";
+ version = "1.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/io-bin-layout/-/io-bin-layout-1.3.2.tgz";
- sha512 = "o1M9y2R2KbL9X6DmOx6zeBG126mwDyhxoDYFPXMEaa3x1an7zAavkOd4gZxBFgWPqeVFXScGFTge9WX7DYSDnw==";
+ url = "https://registry.npmjs.org/@ot-builder/io-bin-layout/-/io-bin-layout-1.3.3.tgz";
+ sha512 = "8fnXYL73O7GsvrQNqDtzbzChGVbyzH6J1a04I+M0H+BUW6u0XY0FJkUtfF68xzju4eyrkOZc/ElDbXouADKWug==";
};
};
- "@ot-builder/io-bin-metadata-1.3.2" = {
+ "@ot-builder/io-bin-metadata-1.3.3" = {
name = "_at_ot-builder_slash_io-bin-metadata";
packageName = "@ot-builder/io-bin-metadata";
- version = "1.3.2";
+ version = "1.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/io-bin-metadata/-/io-bin-metadata-1.3.2.tgz";
- sha512 = "odT8UNrlVJrtWKwNbSTrs2exddXfNLP4Ee24eoXKYsRXgbfXI97FbqOMPzGRVnXEeFI0iXQ3ZMdaJHow4yLljg==";
+ url = "https://registry.npmjs.org/@ot-builder/io-bin-metadata/-/io-bin-metadata-1.3.3.tgz";
+ sha512 = "onYKN6OrUBclDaZiyhXZhTcSf+KfvqW9lwsEaKyYTh0ZOZ/ButSvwxNtrMjzekGFzK0izIQft3oWhXkUyapnzg==";
};
};
- "@ot-builder/io-bin-metric-1.3.2" = {
+ "@ot-builder/io-bin-metric-1.3.3" = {
name = "_at_ot-builder_slash_io-bin-metric";
packageName = "@ot-builder/io-bin-metric";
- version = "1.3.2";
+ version = "1.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/io-bin-metric/-/io-bin-metric-1.3.2.tgz";
- sha512 = "sstjrdY6Qi16idjlnwALy6bXy8QuOSIcOE5hiQeEJ3NJWgLvPcc7LIPXvwEPhv5IeyZ+ClLFn9n5cFAq3gfUdw==";
+ url = "https://registry.npmjs.org/@ot-builder/io-bin-metric/-/io-bin-metric-1.3.3.tgz";
+ sha512 = "fngm7u0BSyet87WijLs/TOXF4y/NkadxZK8NWvyRiEC6hU/d20Tfen6eqit+UB3RBBicbZdCjeJvUqTzq2BRhA==";
};
};
- "@ot-builder/io-bin-name-1.3.2" = {
+ "@ot-builder/io-bin-name-1.3.3" = {
name = "_at_ot-builder_slash_io-bin-name";
packageName = "@ot-builder/io-bin-name";
- version = "1.3.2";
+ version = "1.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/io-bin-name/-/io-bin-name-1.3.2.tgz";
- sha512 = "JxRB5fg78m7M4GS6uuriu1dPIeLHPqzwKJFmBZH9FStULBUtU5dc5/HaIJJg4ozIukRHyXIwnmsGZO1XsHq3VA==";
+ url = "https://registry.npmjs.org/@ot-builder/io-bin-name/-/io-bin-name-1.3.3.tgz";
+ sha512 = "hWuqZyIdUjfxiVTZ9pa4KZe1srH+88lXkoIGupfz1cibMIM98sgwNkcjT0tjFiyH18SBMQBIxhwmfMRWBj4kKw==";
};
};
- "@ot-builder/io-bin-sfnt-1.3.2" = {
+ "@ot-builder/io-bin-sfnt-1.3.3" = {
name = "_at_ot-builder_slash_io-bin-sfnt";
packageName = "@ot-builder/io-bin-sfnt";
- version = "1.3.2";
+ version = "1.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/io-bin-sfnt/-/io-bin-sfnt-1.3.2.tgz";
- sha512 = "6wKIR+gABvsJOL94IehuwUbVMDcSokoAv1mXI6IFVhKmdd/ev2PM7KWP3SGSJXV8Kr1QTDFORthLH4D8YFLIYA==";
+ url = "https://registry.npmjs.org/@ot-builder/io-bin-sfnt/-/io-bin-sfnt-1.3.3.tgz";
+ sha512 = "CkXXxwwvxgxHZwYx0Tv7cxcvT8yXCF8MusSV51n9On2h/YB3m/uCevna7/E6Jf5MpzHkyICiWYwe6tV+fv5xXA==";
};
};
- "@ot-builder/io-bin-ttf-1.3.2" = {
+ "@ot-builder/io-bin-ttf-1.3.3" = {
name = "_at_ot-builder_slash_io-bin-ttf";
packageName = "@ot-builder/io-bin-ttf";
- version = "1.3.2";
+ version = "1.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/io-bin-ttf/-/io-bin-ttf-1.3.2.tgz";
- sha512 = "ILIs2vFdV9O14SoMMWkXikLgsSqt5sUP9EBJqdHCTv0iVaXT6SFjAWCH8EFMEMKvvaKn4Iarimty9Z+kO7DZDQ==";
+ url = "https://registry.npmjs.org/@ot-builder/io-bin-ttf/-/io-bin-ttf-1.3.3.tgz";
+ sha512 = "8stTcg6ulB5N/I3wXsM2Tq71Xnf13JehvXruwNfroYiNLtiWc8NRGlo/PDRB5xbLURv8QeyP0SxUy0ZV9VGXhQ==";
};
};
- "@ot-builder/io-bin-vtt-private-1.3.2" = {
+ "@ot-builder/io-bin-vtt-private-1.3.3" = {
name = "_at_ot-builder_slash_io-bin-vtt-private";
packageName = "@ot-builder/io-bin-vtt-private";
- version = "1.3.2";
+ version = "1.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/io-bin-vtt-private/-/io-bin-vtt-private-1.3.2.tgz";
- sha512 = "tHUcaCoCFXexp1AHGVW5uXO1NIKhqKMJEcx6Rp0s82CaVUSaORp362MYUPVcGoLylbQfBsR1c1CpLwrmzB8VoQ==";
+ url = "https://registry.npmjs.org/@ot-builder/io-bin-vtt-private/-/io-bin-vtt-private-1.3.3.tgz";
+ sha512 = "hPAibMtIX1WynkNDME+pWph/lU166XXJPrEkKLZ5kEl9XPbAzk+JS6TKnX38AEqGx5lWlc5Fx26slYyqksR48g==";
};
};
- "@ot-builder/ot-1.3.2" = {
+ "@ot-builder/ot-1.3.3" = {
name = "_at_ot-builder_slash_ot";
packageName = "@ot-builder/ot";
- version = "1.3.2";
+ version = "1.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/ot/-/ot-1.3.2.tgz";
- sha512 = "+AqSS8xW+OxlsMT5NFztGNfVCzl/dWazJYTk1JHcMK0xajJnTIrORr/rPvdbKR4iNzGbEi8R++MnGhhllBAO+w==";
+ url = "https://registry.npmjs.org/@ot-builder/ot/-/ot-1.3.3.tgz";
+ sha512 = "e0apRiFxboGKw24eg8uTp0NxkI3KPtNIoztOmJWQTaSXMS78QbzWDAXX8yy94qnL6mu+aN7u1H8f67zNtMH1DA==";
};
};
- "@ot-builder/ot-encoding-1.3.2" = {
+ "@ot-builder/ot-encoding-1.3.3" = {
name = "_at_ot-builder_slash_ot-encoding";
packageName = "@ot-builder/ot-encoding";
- version = "1.3.2";
+ version = "1.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/ot-encoding/-/ot-encoding-1.3.2.tgz";
- sha512 = "x7AiuYe6r0uyvuw52/dWvfG6fj47v+nnQrvswOr2lOniZMhhRPRbek5y7dWCuabmRFdxmZKClK3PEgmNbVWJQQ==";
+ url = "https://registry.npmjs.org/@ot-builder/ot-encoding/-/ot-encoding-1.3.3.tgz";
+ sha512 = "syxPDRoAezIQA/Z/DDPSF2AQ3N9vWaypTvbUPmdLEqriOZFDAx4fR455B8gqZKIeg3FFAjXLMCtaDR1sftp74g==";
};
};
- "@ot-builder/ot-ext-private-1.3.2" = {
+ "@ot-builder/ot-ext-private-1.3.3" = {
name = "_at_ot-builder_slash_ot-ext-private";
packageName = "@ot-builder/ot-ext-private";
- version = "1.3.2";
+ version = "1.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/ot-ext-private/-/ot-ext-private-1.3.2.tgz";
- sha512 = "IbZNrhXBw5AgbVoUahkDxxpuBDhpstadKdfVS8IcAZHhVyyqOD4+gkAQDfIxqNOMaCXi73dLAcQwNofF63/08w==";
+ url = "https://registry.npmjs.org/@ot-builder/ot-ext-private/-/ot-ext-private-1.3.3.tgz";
+ sha512 = "s5Se3iuiRyznjdO4Qlm1yimNI8NkPl/RRkbc8tC4hoq45KO78CCjU3tKllioTs5DGHtP2kpinseNbyL1zofykA==";
};
};
- "@ot-builder/ot-glyphs-1.3.2" = {
+ "@ot-builder/ot-glyphs-1.3.3" = {
name = "_at_ot-builder_slash_ot-glyphs";
packageName = "@ot-builder/ot-glyphs";
- version = "1.3.2";
+ version = "1.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/ot-glyphs/-/ot-glyphs-1.3.2.tgz";
- sha512 = "lmt3fSv4bR9xnQKVHz+B9VNnFwVCIlSXyecEhEJqCzQ5UFt3dBHgh8l29n6Yg7FL84m/wB+0vxLdLmGeRvZYeQ==";
+ url = "https://registry.npmjs.org/@ot-builder/ot-glyphs/-/ot-glyphs-1.3.3.tgz";
+ sha512 = "vqPrWqlfugwsnutphMz2od5VJRvsdnGjBU48rye4tKxRDkOQ+jv9XnrMiEhms0wfBR3G/z0LjNsQAayWIggpDA==";
};
};
- "@ot-builder/ot-layout-1.3.2" = {
+ "@ot-builder/ot-layout-1.3.3" = {
name = "_at_ot-builder_slash_ot-layout";
packageName = "@ot-builder/ot-layout";
- version = "1.3.2";
+ version = "1.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/ot-layout/-/ot-layout-1.3.2.tgz";
- sha512 = "tSdTZtExUmNRiksf6HTzHi8q3i+BazW0O9NANvK5OLroEDcHXn/2DKq4e9DNsuEjDrGLZR4vvAQ9Dx4bhvYSHg==";
+ url = "https://registry.npmjs.org/@ot-builder/ot-layout/-/ot-layout-1.3.3.tgz";
+ sha512 = "h0JqUVYvSh77xoGI+PHaXnXOlYKrQCu7EXXDC8uUr2xrnQR4+LJzvt+NPpFwtlG1upc/muCFpDxp6ooQ8crErw==";
};
};
- "@ot-builder/ot-metadata-1.3.2" = {
+ "@ot-builder/ot-metadata-1.3.3" = {
name = "_at_ot-builder_slash_ot-metadata";
packageName = "@ot-builder/ot-metadata";
- version = "1.3.2";
+ version = "1.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/ot-metadata/-/ot-metadata-1.3.2.tgz";
- sha512 = "JIX3zX9t3B81OTSZC39Irt9Oia8U4kMRPs4qAusGeGkxyRgVsDcHrnQjxECj/b/RPJbtVzGUxK7o+rEkUaw7Qg==";
+ url = "https://registry.npmjs.org/@ot-builder/ot-metadata/-/ot-metadata-1.3.3.tgz";
+ sha512 = "t/D9+MHsSd21laRKtC+M48mCKVODVjcMW8VIZLwA5Vsg9xtAkSSYU/ZXZjmUwahnaJRLAJCovD7B7WkIc8NX7A==";
};
};
- "@ot-builder/ot-name-1.3.2" = {
+ "@ot-builder/ot-name-1.3.3" = {
name = "_at_ot-builder_slash_ot-name";
packageName = "@ot-builder/ot-name";
- version = "1.3.2";
+ version = "1.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/ot-name/-/ot-name-1.3.2.tgz";
- sha512 = "ecqgZx589wI2YejSUMdxssoguq9CTw4Lymb3cyhdoxXxDP7Y55l2ycOU7HXAfbzwSEWYEh4wDO/y+NL0iV5d2A==";
+ url = "https://registry.npmjs.org/@ot-builder/ot-name/-/ot-name-1.3.3.tgz";
+ sha512 = "g+flff2TZNeN6U4cq9T/JtOTi82NoTjVQrtxsdDTgL7UbfbpyBxloutnFVTdslEUAH2NgSJAeKLdUIuH7LwVjw==";
};
};
- "@ot-builder/ot-sfnt-1.3.2" = {
+ "@ot-builder/ot-sfnt-1.3.3" = {
name = "_at_ot-builder_slash_ot-sfnt";
packageName = "@ot-builder/ot-sfnt";
- version = "1.3.2";
+ version = "1.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/ot-sfnt/-/ot-sfnt-1.3.2.tgz";
- sha512 = "nXZzF4nRGH60J1rVW9ljAlLJavYH0Bp+6L3r0gQvmtLspO3w2s7dYSM1fSfkH2wCG6FqAf8C7TIUgqOS5QyzBQ==";
+ url = "https://registry.npmjs.org/@ot-builder/ot-sfnt/-/ot-sfnt-1.3.3.tgz";
+ sha512 = "reA2LMD5BI/1dsenrgfSmydY18jvu5Lq4p3DmQc/uMaEc5ReW4Vlu0AUoRPoqdhtE00pzwcyc9nuOBXivFl4qg==";
};
};
- "@ot-builder/ot-standard-glyph-namer-1.3.2" = {
+ "@ot-builder/ot-standard-glyph-namer-1.3.3" = {
name = "_at_ot-builder_slash_ot-standard-glyph-namer";
packageName = "@ot-builder/ot-standard-glyph-namer";
- version = "1.3.2";
+ version = "1.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/ot-standard-glyph-namer/-/ot-standard-glyph-namer-1.3.2.tgz";
- sha512 = "A3Kg35P7pThuEz6eFSAtNbZEvHMferWcs4O4jWUetBqaV6ZbOZ504hVOPVJT7WaT2iS7X4sd0BKNRJLXCwqCbA==";
+ url = "https://registry.npmjs.org/@ot-builder/ot-standard-glyph-namer/-/ot-standard-glyph-namer-1.3.3.tgz";
+ sha512 = "6Ku8YiCVQxT2OwNBnWSrEJO76OtV8LtUCNS+1tdrDJpTzWeZqys0ypnXBLka/aBKUZUkJeXWflaxUNo1r4Tx+A==";
};
};
- "@ot-builder/ot-vtt-private-1.3.2" = {
+ "@ot-builder/ot-vtt-private-1.3.3" = {
name = "_at_ot-builder_slash_ot-vtt-private";
packageName = "@ot-builder/ot-vtt-private";
- version = "1.3.2";
+ version = "1.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/ot-vtt-private/-/ot-vtt-private-1.3.2.tgz";
- sha512 = "ny7u9ZalS6I3tzr8EKDVHLBe8gcBb02GruqFCzhx20115F7Gtk165PqqJTKH5yi2nAh2e92WallUOE7ouB11TQ==";
+ url = "https://registry.npmjs.org/@ot-builder/ot-vtt-private/-/ot-vtt-private-1.3.3.tgz";
+ sha512 = "T1sdeXE83/IdRz7eRa182bAVYANmnoGiLlO3y/6e0sJSxgMzwr9eSjbf441edvjEMJPbCmBr6gqiJoQMzcIiCg==";
};
};
- "@ot-builder/prelude-1.3.2" = {
+ "@ot-builder/prelude-1.3.3" = {
name = "_at_ot-builder_slash_prelude";
packageName = "@ot-builder/prelude";
- version = "1.3.2";
+ version = "1.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/prelude/-/prelude-1.3.2.tgz";
- sha512 = "zDr5gEaBC47gaBsIvz46M52pIUDzPmH4nEwKYmtOQDklR+6A37/2SUOeKMBB1FCPCutyWgSWdwdiUm5wSi77lQ==";
+ url = "https://registry.npmjs.org/@ot-builder/prelude/-/prelude-1.3.3.tgz";
+ sha512 = "GJSZOF13jqvVV4+LREhSo7ZRmikYVGPZl+Z1D4jHUFF7nDqX53KbGMt/tl3rhNMhub0/NTdV8tzdd2LTb/AJDQ==";
};
};
- "@ot-builder/primitive-1.3.2" = {
+ "@ot-builder/primitive-1.3.3" = {
name = "_at_ot-builder_slash_primitive";
packageName = "@ot-builder/primitive";
- version = "1.3.2";
+ version = "1.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/primitive/-/primitive-1.3.2.tgz";
- sha512 = "hoIWTUac1//Uglj78S2w24mMB0wgMoyOZV1h0tpIaisnN2A/rhId6lOLUskn3em8j9+VcvRyIxmIvoVhDKi6mQ==";
+ url = "https://registry.npmjs.org/@ot-builder/primitive/-/primitive-1.3.3.tgz";
+ sha512 = "aEwB2TlorsArhqVQKL9cDyYiszl0wdvhFFgNHp3bmxw7D1w86pFdjAfUO7IyIF7k5JBPswHAzMfmotXcA51lUw==";
};
};
- "@ot-builder/rectify-1.3.2" = {
+ "@ot-builder/rectify-1.3.3" = {
name = "_at_ot-builder_slash_rectify";
packageName = "@ot-builder/rectify";
- version = "1.3.2";
+ version = "1.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/rectify/-/rectify-1.3.2.tgz";
- sha512 = "3wZy4fMSHELSaAyi/1ONQ6OLMozLvQjmyPxTkSIPlq6JbUQEOEhwTF+DgqDh6kZixaXeP/Dd/4azhDL0hbsocQ==";
+ url = "https://registry.npmjs.org/@ot-builder/rectify/-/rectify-1.3.3.tgz";
+ sha512 = "Ij9dpqhw0lOos2Z9mr7Z4Li+zQQ1xN9LSUIgfqtHFGVDnC66udYyHahOLMhjhODJVPtA25otADrM4LT/T4jGXQ==";
};
};
- "@ot-builder/stat-glyphs-1.3.2" = {
+ "@ot-builder/stat-glyphs-1.3.3" = {
name = "_at_ot-builder_slash_stat-glyphs";
packageName = "@ot-builder/stat-glyphs";
- version = "1.3.2";
+ version = "1.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/stat-glyphs/-/stat-glyphs-1.3.2.tgz";
- sha512 = "2F3qwwAzYZcwjmRVUOC9KS7mTB0R+76ZtGoYS28kBz/WHVOduvsxr8xiUwYM/0PAZttWA1eB/CwFjZ2WhQEDAg==";
+ url = "https://registry.npmjs.org/@ot-builder/stat-glyphs/-/stat-glyphs-1.3.3.tgz";
+ sha512 = "8vHTL/fhorFp1l2jFSGNT9R9tu0Rr8yQH/vslaOIvY8bBgJDQCqKExmF4lxiGMWMr05mKZhNrwV2vYMHWUP2mA==";
};
};
- "@ot-builder/trace-1.3.2" = {
+ "@ot-builder/trace-1.3.3" = {
name = "_at_ot-builder_slash_trace";
packageName = "@ot-builder/trace";
- version = "1.3.2";
+ version = "1.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/trace/-/trace-1.3.2.tgz";
- sha512 = "TGjyWSo64Cv0pwZtiLba65qz3BZrS2fshQTnBPWa42CWVoC9wpvF+rMQarvdksJH5UZGkgXRXfdT6rXumo9D7Q==";
+ url = "https://registry.npmjs.org/@ot-builder/trace/-/trace-1.3.3.tgz";
+ sha512 = "d4KsjCUgY4tlpfSY74Q2l/k1Fl82ROlt+IQhzl8weSeb/KVGVALltzEIyEmT3Kb5Yh3Clej9nlzzwKWX74dgZw==";
};
};
- "@ot-builder/var-store-1.3.2" = {
+ "@ot-builder/var-store-1.3.3" = {
name = "_at_ot-builder_slash_var-store";
packageName = "@ot-builder/var-store";
- version = "1.3.2";
+ version = "1.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/var-store/-/var-store-1.3.2.tgz";
- sha512 = "RbCBl+7xCYFgR1bvvDmD7rMU/8J5oESiHWGtx0y1KfykHP4AGElH0ZcocXE/fx8s4Q/s6oXlulojKEWt0r7GfA==";
+ url = "https://registry.npmjs.org/@ot-builder/var-store/-/var-store-1.3.3.tgz";
+ sha512 = "5LKBIWxB0Oe4QUeRHA3mGaHqlrgA9byeOQNMQxjGDF0fRVDyG40VW1g4xlUQYWzTitM2ML3dP0HlEoVvsTgwwg==";
};
};
- "@ot-builder/variance-1.3.2" = {
+ "@ot-builder/variance-1.3.3" = {
name = "_at_ot-builder_slash_variance";
packageName = "@ot-builder/variance";
- version = "1.3.2";
+ version = "1.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@ot-builder/variance/-/variance-1.3.2.tgz";
- sha512 = "DEC1r6TZTuhhmzz+j5/rEULkOIgtH1NWVVoo7jff4BPK879hHY56hU5mhcnkvTX9BZ02rHQcYu3ka7ddZ80ZJQ==";
+ url = "https://registry.npmjs.org/@ot-builder/variance/-/variance-1.3.3.tgz";
+ sha512 = "kCd+aqpuF/Go+yHRc0WJ3GP9p1069WQBdG9b5GomQJhYfccGmNOl2P1BUtISAu467DVngc9bBx5ZJbDWn1luXg==";
};
};
"@parcel/fs-1.11.0" = {
@@ -5557,40 +6376,22 @@ let
sha512 = "I/gRlM2meKPKXFN/1fxLoigPXvAUsivxRCih7vgeO7o4qrNNsl6Ah85l3UBbFi0t7ttjMde2+bS1A32a1Hu0BA==";
};
};
- "@prisma/debug-3.5.0" = {
- name = "_at_prisma_slash_debug";
- packageName = "@prisma/debug";
- version = "3.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@prisma/debug/-/debug-3.5.0.tgz";
- sha512 = "JWBmzqxtbq6rJfMyIIQVL/QSAIsiCOp20ArTl5zUHtSYH/MrNmuQ69YAn9RuUQBOTIAQaVTIMII2xpN5kB5RRg==";
- };
- };
- "@prisma/engines-3.6.0-24.dc520b92b1ebb2d28dc3161f9f82e875bd35d727" = {
+ "@prisma/engines-3.7.0-31.8746e055198f517658c08a0c426c7eec87f5a85f" = {
name = "_at_prisma_slash_engines";
packageName = "@prisma/engines";
- version = "3.6.0-24.dc520b92b1ebb2d28dc3161f9f82e875bd35d727";
+ version = "3.7.0-31.8746e055198f517658c08a0c426c7eec87f5a85f";
src = fetchurl {
- url = "https://registry.npmjs.org/@prisma/engines/-/engines-3.6.0-24.dc520b92b1ebb2d28dc3161f9f82e875bd35d727.tgz";
- sha512 = "dRClHS7DsTVchDKzeG72OaEyeDskCv91pnZ72Fftn0mp4BkUvX2LvWup65hCNzwwQm5IDd6A88APldKDnMiEMA==";
+ url = "https://registry.npmjs.org/@prisma/engines/-/engines-3.7.0-31.8746e055198f517658c08a0c426c7eec87f5a85f.tgz";
+ sha512 = "W549ub5NlgexNhR8EFstA/UwAWq3Zq0w9aNkraqsozVCt2CsX+lK4TK7IW5OZVSnxHwRjrgEAt3r9yPy8nZQRg==";
};
};
- "@prisma/get-platform-3.6.0-24.dc520b92b1ebb2d28dc3161f9f82e875bd35d727" = {
- name = "_at_prisma_slash_get-platform";
- packageName = "@prisma/get-platform";
- version = "3.6.0-24.dc520b92b1ebb2d28dc3161f9f82e875bd35d727";
- src = fetchurl {
- url = "https://registry.npmjs.org/@prisma/get-platform/-/get-platform-3.6.0-24.dc520b92b1ebb2d28dc3161f9f82e875bd35d727.tgz";
- sha512 = "zvlddqvNU5rXnjTeT+0DOyMwH9E8NwV1a1F3tYN6lNWAjpWx26nGDGkIOO5Nid5mIjz+SDz5VM2NEZ+HXgDuMQ==";
- };
- };
- "@prisma/prisma-fmt-wasm-3.6.0-24.dc520b92b1ebb2d28dc3161f9f82e875bd35d727" = {
+ "@prisma/prisma-fmt-wasm-3.7.0-31.8746e055198f517658c08a0c426c7eec87f5a85f" = {
name = "_at_prisma_slash_prisma-fmt-wasm";
packageName = "@prisma/prisma-fmt-wasm";
- version = "3.6.0-24.dc520b92b1ebb2d28dc3161f9f82e875bd35d727";
+ version = "3.7.0-31.8746e055198f517658c08a0c426c7eec87f5a85f";
src = fetchurl {
- url = "https://registry.npmjs.org/@prisma/prisma-fmt-wasm/-/prisma-fmt-wasm-3.6.0-24.dc520b92b1ebb2d28dc3161f9f82e875bd35d727.tgz";
- sha512 = "Nt4A2SZ4MASAliZ9OaXCYG1xr80lEcJABliUAi/tvzCU8r5W3V4Tp5XDqchxuN/w71XY/s+OaWce7PHnoMGpkA==";
+ url = "https://registry.npmjs.org/@prisma/prisma-fmt-wasm/-/prisma-fmt-wasm-3.7.0-31.8746e055198f517658c08a0c426c7eec87f5a85f.tgz";
+ sha512 = "hwd3R0CYseBPx9RM20tcIqukBfd0wffLtqXq+FHEv2HeDlH2y1bvnXDAbn9Z+8t8Wqsj1hBDwEYLeYkvh6d19g==";
};
};
"@protobufjs/aspromise-1.1.2" = {
@@ -5683,13 +6484,13 @@ let
sha1 = "a777360b5b39a1a2e5106f8e858f2fd2d060c570";
};
};
- "@putdotio/api-client-8.19.0" = {
+ "@putdotio/api-client-8.20.0" = {
name = "_at_putdotio_slash_api-client";
packageName = "@putdotio/api-client";
- version = "8.19.0";
+ version = "8.20.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@putdotio/api-client/-/api-client-8.19.0.tgz";
- sha512 = "qzA6w/N4Yj9Mmpn3JFqg07U65VWvjbHPVRA0bBJ/AoZgnhRjOeHWfq/FC/piSQeFaHgdpkvOrun8PMH3W+nkWQ==";
+ url = "https://registry.npmjs.org/@putdotio/api-client/-/api-client-8.20.0.tgz";
+ sha512 = "7Bf/sq0ow4gc+DtePtQGCvQpalohvmDX91IslqYHhFPA/LerJzpkYoiyN51CK8AWHbibjVzWQVlZpMouN3GfcA==";
};
};
"@reach/router-1.3.4" = {
@@ -5746,13 +6547,13 @@ let
sha512 = "y9qNj0//tZtWB2jfXNK3BX18BSBp9zNR7KE7lMysVHwbZtY392OJCjm6Rb/h4UHH2r1AqjNEHFD6bRn+DqU9Mw==";
};
};
- "@redocly/openapi-core-1.0.0-beta.73" = {
+ "@redocly/openapi-core-1.0.0-beta.76" = {
name = "_at_redocly_slash_openapi-core";
packageName = "@redocly/openapi-core";
- version = "1.0.0-beta.73";
+ version = "1.0.0-beta.76";
src = fetchurl {
- url = "https://registry.npmjs.org/@redocly/openapi-core/-/openapi-core-1.0.0-beta.73.tgz";
- sha512 = "1wmKGJp+lvhNFDEfTzjB6QlyEPNyozSiDb4sfr+R97pcGa+6YdSmgItPl5P/21Y0fBZYku9Uo1n0rhFVdr20EQ==";
+ url = "https://registry.npmjs.org/@redocly/openapi-core/-/openapi-core-1.0.0-beta.76.tgz";
+ sha512 = "iQ0YbUR7HhSAypqIwVrTMznkEU6kjVI9vyRdm2MYDKQcDyECgcraxkx0i9Lb4dOIuZGp3vDGvRH9fhybHbjlug==";
};
};
"@redocly/react-dropdown-aria-2.0.12" = {
@@ -5845,13 +6646,13 @@ let
sha512 = "PY7gH+7aQ+MltcUD7SRDuQODJ9Sav9HhFJsgOiyf8IVo7XVD6FxZIsSnpMI6paSkptOB7n+0Jz03gNlEkKetQQ==";
};
};
- "@serverless/dashboard-plugin-5.5.1" = {
+ "@serverless/dashboard-plugin-5.5.2" = {
name = "_at_serverless_slash_dashboard-plugin";
packageName = "@serverless/dashboard-plugin";
- version = "5.5.1";
+ version = "5.5.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@serverless/dashboard-plugin/-/dashboard-plugin-5.5.1.tgz";
- sha512 = "gXn17AOyY3fxSq2nIFNnU4tZorplh2yVb0zI9A+rTeHlQ3HgIJa7xs/rR2hLEcW4vT26zX8dqwdJOAml/9kZyw==";
+ url = "https://registry.npmjs.org/@serverless/dashboard-plugin/-/dashboard-plugin-5.5.2.tgz";
+ sha512 = "w//z0A5IJ52kwbHken4QEx+vo/T2WHbmHFR5CblVbe2LpswgSJ2IEUHrbm/Tp9V/1QtGrVVXRVxgOPxoAChFwg==";
};
};
"@serverless/event-mocks-1.1.1" = {
@@ -5908,13 +6709,13 @@ let
sha512 = "cl5uPaGg72z0sCUpF0zsOhwYYUV72Gxc1FwFfxltO8hSvMeFDvwD7JrNE4kHcIcKRjwPGbSH0fdVPUpErZ8Mog==";
};
};
- "@serverless/utils-5.20.1" = {
+ "@serverless/utils-5.20.2" = {
name = "_at_serverless_slash_utils";
packageName = "@serverless/utils";
- version = "5.20.1";
+ version = "5.20.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@serverless/utils/-/utils-5.20.1.tgz";
- sha512 = "X2CD685Q4NHuX4Si3SVZU4iaMDgD4+d78sd+nTyxV+lwFHG9FFUSJftwclYzoqZshw6QoYd/mMnUotWnlsiLWA==";
+ url = "https://registry.npmjs.org/@serverless/utils/-/utils-5.20.2.tgz";
+ sha512 = "u7+oVwbq1BunmLI0T9egRL93Xg3TGxNsqogXqzxSLtjMWiImsadv3/gUJfXz/wTI9VXfbtQZvsVYMaRpS0JiqA==";
};
};
"@serverless/utils-china-1.1.4" = {
@@ -5998,6 +6799,15 @@ let
sha512 = "/aPsuoj/1Dw/kzhkgz+ES6TxG0zfTMGLwuK2ZG00k/iJzYHTLCE8mVU8EPqEOp/lmxPoq1C1C9RYToRKb2KEfg==";
};
};
+ "@sindresorhus/is-3.1.2" = {
+ name = "_at_sindresorhus_slash_is";
+ packageName = "@sindresorhus/is";
+ version = "3.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@sindresorhus/is/-/is-3.1.2.tgz";
+ sha512 = "JiX9vxoKMmu8Y3Zr2RVathBL1Cdu4Nt4MuNWemt1Nc06A0RAin9c5FArkhGsyMBWfCu4zj+9b+GxtjAnE4qqLQ==";
+ };
+ };
"@sindresorhus/is-4.2.0" = {
name = "_at_sindresorhus_slash_is";
packageName = "@sindresorhus/is";
@@ -6313,15 +7123,6 @@ let
sha512 = "ItqpVEYLDYQkEk0ixeD4wElqkgkDErAGGDN/QK4cmIvtBeVd/GSIQFS1pwC1/Abmd4dTK3j/9z/dov1gVFZB1Q==";
};
};
- "@textlint/types-1.5.5" = {
- name = "_at_textlint_slash_types";
- packageName = "@textlint/types";
- version = "1.5.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/@textlint/types/-/types-1.5.5.tgz";
- sha512 = "80P6fcqgsG9bP6JgR6W/E/oIx+71pplaicYCvvB4vMIeGk0OnWls4Q21kCpDYmq/C/ABtZ/Gy/Ov/8ExQPeQ7A==";
- };
- };
"@textlint/types-12.1.0" = {
name = "_at_textlint_slash_types";
packageName = "@textlint/types";
@@ -6412,6 +7213,42 @@ let
sha512 = "7hWZS0NRpEsNV8vWJzg7FEz6V8MaLNeJOmwmghqUXTpzk16V1LLZhdo+4QvE/+zv4cVci0OviuJFnqhEfoV3+g==";
};
};
+ "@tsconfig/node10-1.0.8" = {
+ name = "_at_tsconfig_slash_node10";
+ packageName = "@tsconfig/node10";
+ version = "1.0.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.8.tgz";
+ sha512 = "6XFfSQmMgq0CFLY1MslA/CPUfhIL919M1rMsa5lP2P097N2Wd1sSX0tx1u4olM16fLNhtHZpRhedZJphNJqmZg==";
+ };
+ };
+ "@tsconfig/node12-1.0.9" = {
+ name = "_at_tsconfig_slash_node12";
+ packageName = "@tsconfig/node12";
+ version = "1.0.9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.9.tgz";
+ sha512 = "/yBMcem+fbvhSREH+s14YJi18sp7J9jpuhYByADT2rypfajMZZN4WQ6zBGgBKp53NKmqI36wFYDb3yaMPurITw==";
+ };
+ };
+ "@tsconfig/node14-1.0.1" = {
+ name = "_at_tsconfig_slash_node14";
+ packageName = "@tsconfig/node14";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.1.tgz";
+ sha512 = "509r2+yARFfHHE7T6Puu2jjkoycftovhXRqW328PDXTVGKihlb1P8Z9mMZH04ebyajfRY7dedfGynlrFHJUQCg==";
+ };
+ };
+ "@tsconfig/node16-1.0.2" = {
+ name = "_at_tsconfig_slash_node16";
+ packageName = "@tsconfig/node16";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.2.tgz";
+ sha512 = "eZxlbI8GZscaGS7kkc/trHTT5xgrjH3/1n2JDwusC9iahPKWMRvRjJSAN5mCXviuTGQ/lHnhvv8Q1YTpnfz9gA==";
+ };
+ };
"@turist/fetch-7.1.7" = {
name = "_at_turist_slash_fetch";
packageName = "@turist/fetch";
@@ -6475,22 +7312,22 @@ let
sha512 = "pkPtJUUY+Vwv6B1inAz55rQvivClHJxc9aVEPPmaq2cbyeMLCiDpbKpcKyX4LAwpNGi+SHBv0tHv6+0gXv0P2A==";
};
};
- "@types/babel__core-7.1.17" = {
+ "@types/babel__core-7.1.18" = {
name = "_at_types_slash_babel__core";
packageName = "@types/babel__core";
- version = "7.1.17";
+ version = "7.1.18";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.17.tgz";
- sha512 = "6zzkezS9QEIL8yCBvXWxPTJPNuMeECJVxSOhxNY/jfq9LxOTHivaYTqr37n9LknWWRTIkzqH2UilS5QFvfa90A==";
+ url = "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.18.tgz";
+ sha512 = "S7unDjm/C7z2A2R9NzfKCK1I+BAALDtxEmsJBwlB3EzNfb929ykjL++1CK9LO++EIp2fQrC8O+BwjKvz6UeDyQ==";
};
};
- "@types/babel__generator-7.6.3" = {
+ "@types/babel__generator-7.6.4" = {
name = "_at_types_slash_babel__generator";
packageName = "@types/babel__generator";
- version = "7.6.3";
+ version = "7.6.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.3.tgz";
- sha512 = "/GWCmzJWqV7diQW54smJZzWbSFf4QYtF71WCKhcx6Ru/tFyQIY2eiiITcCAeuPbNSvT9YCGkVMqqvSk2Z0mXiA==";
+ url = "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz";
+ sha512 = "tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==";
};
};
"@types/babel__template-7.4.1" = {
@@ -6556,6 +7393,15 @@ let
sha512 = "ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==";
};
};
+ "@types/bonjour-3.5.10" = {
+ name = "_at_types_slash_bonjour";
+ packageName = "@types/bonjour";
+ version = "3.5.10";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.10.tgz";
+ sha512 = "p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==";
+ };
+ };
"@types/cacheable-request-6.0.2" = {
name = "_at_types_slash_cacheable-request";
packageName = "@types/cacheable-request";
@@ -6637,6 +7483,15 @@ let
sha512 = "cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==";
};
};
+ "@types/connect-history-api-fallback-1.3.5" = {
+ name = "_at_types_slash_connect-history-api-fallback";
+ packageName = "@types/connect-history-api-fallback";
+ version = "1.3.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.3.5.tgz";
+ sha512 = "h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw==";
+ };
+ };
"@types/content-disposition-0.5.4" = {
name = "_at_types_slash_content-disposition";
packageName = "@types/content-disposition";
@@ -6709,13 +7564,13 @@ let
sha512 = "9AonUzyTjXXhEOa0DnqpzZi6VHlqKMswga9EXjpXnnqxwLtdvPPtlO8evrI5D9S6asFRCQ6v+wpiUKbw+vKqyg==";
};
};
- "@types/diff-3.5.4" = {
+ "@types/diff-3.5.5" = {
name = "_at_types_slash_diff";
packageName = "@types/diff";
- version = "3.5.4";
+ version = "3.5.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/diff/-/diff-3.5.4.tgz";
- sha512 = "/eg1PwPsu0YWSRDM0SIUSOEA70LNPRsO+wt+jzYEN3n5fRbHKsaqYfbWDfcL4Wscez/9ar9U4UypDzBU8n/evg==";
+ url = "https://registry.npmjs.org/@types/diff/-/diff-3.5.5.tgz";
+ sha512 = "aqcrAbqT/0+ULJJ73bwKWsiFkBh3ZnAelj9u+iI5/cr4Nz3yXGf3w4glx5am6uvvgBbKinK1PAqSJs7fSKD6ig==";
};
};
"@types/dom4-2.0.2" = {
@@ -6727,13 +7582,13 @@ let
sha512 = "Rt4IC1T7xkCWa0OG1oSsPa0iqnxlDeQqKXZAHrQGLb7wFGncWm85MaxKUjAGejOrUynOgWlFi4c6S6IyJwoK4g==";
};
};
- "@types/duplexify-3.6.0" = {
+ "@types/duplexify-3.6.1" = {
name = "_at_types_slash_duplexify";
packageName = "@types/duplexify";
- version = "3.6.0";
+ version = "3.6.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/duplexify/-/duplexify-3.6.0.tgz";
- sha512 = "5zOA53RUlzN74bvrSGwjudssD9F3a797sDZQkiYpUOxW+WHaXTCPz4/d5Dgi6FKnOqZ2CpaTo0DhgIfsXAOE/A==";
+ url = "https://registry.npmjs.org/@types/duplexify/-/duplexify-3.6.1.tgz";
+ sha512 = "n0zoEj/fMdMOvqbHxmqnza/kXyoGgJmEpsXjpP+gEqE1Ye4yNqc7xWipKnUoMpWhMuzJQSfK2gMrwlElly7OGQ==";
};
};
"@types/ejs-2.7.0" = {
@@ -6745,13 +7600,13 @@ let
sha512 = "kM2g9Fdk/du24fKuuQhA/LBleFR4Z4JP2MVKpLxQQSzofF1uJ06D+c05zfLDAkkDO55aEeNwJih0gHrE/Ci20A==";
};
};
- "@types/emoji-mart-3.0.8" = {
+ "@types/emoji-mart-3.0.9" = {
name = "_at_types_slash_emoji-mart";
packageName = "@types/emoji-mart";
- version = "3.0.8";
+ version = "3.0.9";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/emoji-mart/-/emoji-mart-3.0.8.tgz";
- sha512 = "jmNew3D9XAVchIpyXHEZjR3Sa0uP8qD5TILk9U6Ev/Fcp43V6K1UFZ07KWtVVLjzyCMXaFB9UD3/3Y/2vVdGmQ==";
+ url = "https://registry.npmjs.org/@types/emoji-mart/-/emoji-mart-3.0.9.tgz";
+ sha512 = "qdBo/2Y8MXaJ/2spKjDZocuq79GpnOhkwMHnK2GnVFa8WYFgfA+ei6sil3aeWQPCreOKIx9ogPpR5+7MaOqYAA==";
};
};
"@types/engine.io-3.1.7" = {
@@ -6844,13 +7699,13 @@ let
sha512 = "wLhcKh3PMlyA2cNAB9sjM1BntnhPMiM0JOBwPBqttjHev2428MLEB4AYVN+d8s2iyCVZac+o41Pflm/ZH5vLXQ==";
};
};
- "@types/express-serve-static-core-4.17.26" = {
+ "@types/express-serve-static-core-4.17.27" = {
name = "_at_types_slash_express-serve-static-core";
packageName = "@types/express-serve-static-core";
- version = "4.17.26";
+ version = "4.17.27";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.26.tgz";
- sha512 = "zeu3tpouA043RHxW0gzRxwCHchMgftE8GArRsvYT0ByDMbn19olQHx5jLue0LxWY6iYtXb7rXmuVtSkhy9YZvQ==";
+ url = "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.27.tgz";
+ sha512 = "e/sVallzUTPdyOTiqi8O8pMdBBphscvI6E4JYaKlja4Lm+zh7UFSSdW5VMkRbhDtmrONqOUHOXRguPsDckzxNA==";
};
};
"@types/fancy-log-1.3.0" = {
@@ -6997,13 +7852,13 @@ let
sha512 = "a3xgqnFTuNJDm1fjsTjHocYJ40Cz3t8utYpi5GNaxzrJC2HSD08ym+whIL7fNqiqBCdM9bcqD1H/tORWAFXoZw==";
};
};
- "@types/istanbul-lib-coverage-2.0.3" = {
+ "@types/istanbul-lib-coverage-2.0.4" = {
name = "_at_types_slash_istanbul-lib-coverage";
packageName = "@types/istanbul-lib-coverage";
- version = "2.0.3";
+ version = "2.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz";
- sha512 = "sz7iLqvVUg1gIedBOvlkxPlc8/uVzyS5OwGz1cKjXzkl3FpL3al0crU8YGU1WoHkxn0Wxbw5tyi6hvzJKNzFsw==";
+ url = "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz";
+ sha512 = "z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==";
};
};
"@types/istanbul-lib-report-3.0.0" = {
@@ -7033,13 +7888,13 @@ let
sha512 = "c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==";
};
};
- "@types/jquery-3.5.10" = {
+ "@types/jquery-3.5.11" = {
name = "_at_types_slash_jquery";
packageName = "@types/jquery";
- version = "3.5.10";
+ version = "3.5.11";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/jquery/-/jquery-3.5.10.tgz";
- sha512 = "w2qT5DFikh5TXrW/aOaCvCP8g2MMAfPXo3oeHR9v7dRuAZhu38PUWEkYrL4e9VRTcgZE4yER21AHndgpq2QPTQ==";
+ url = "https://registry.npmjs.org/@types/jquery/-/jquery-3.5.11.tgz";
+ sha512 = "lYZGdfOtUa0XFjIATQgiogqeTY5PNNMOmp3Jq48ghmJALL8t/IqABRqlEwdHfuUdA8iIE1uGD1HoI4a7Tiy6OA==";
};
};
"@types/js-levenshtein-1.1.0" = {
@@ -7339,13 +8194,13 @@ let
sha512 = "F0KIgDJfy2nA3zMLmWGKxcH2ZVEtCZXHHdOQs2gSaQ27+lNeEfGxzkIw90aXswATX7AZ33tahPbzy6KAfUreVw==";
};
};
- "@types/node-12.20.37" = {
+ "@types/node-12.20.40" = {
name = "_at_types_slash_node";
packageName = "@types/node";
- version = "12.20.37";
+ version = "12.20.40";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-12.20.37.tgz";
- sha512 = "i1KGxqcvJaLQali+WuypQnXwcplhtNtjs66eNsZpp2P2FL/trJJxx/VWsM0YCL2iMoIJrbXje48lvIQAQ4p2ZA==";
+ url = "https://registry.npmjs.org/@types/node/-/node-12.20.40.tgz";
+ sha512 = "RX6hFa0hxkFuktu5629zJEkWK5e0HreW4vpNSLn4nWkOui7CTGCjtKiKpvtZ4QwCZ2Am5uhrb5ULHKNyunYYqg==";
};
};
"@types/node-13.13.52" = {
@@ -7375,13 +8230,13 @@ let
sha512 = "USUftMYpmuMzeWobskoPfzDi+vkpe0dvcOBRNOscFrGxVp4jomnRxWuVohgqBow2xyIPC0S3gjxV/5079jhmDg==";
};
};
- "@types/node-14.18.0" = {
+ "@types/node-14.18.4" = {
name = "_at_types_slash_node";
packageName = "@types/node";
- version = "14.18.0";
+ version = "14.18.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-14.18.0.tgz";
- sha512 = "0GeIl2kmVMXEnx8tg1SlG6Gg8vkqirrW752KqolYo1PHevhhZN3bhJ67qHj+bQaINhX0Ra3TlWwRvMCd9iEfNQ==";
+ url = "https://registry.npmjs.org/@types/node/-/node-14.18.4.tgz";
+ sha512 = "swe3lD4izOJWHuxvsZdDFRq6S9i6koJsXOnQKYekhSO5JTizMVirUFgY/bUsaOJQj8oSD4oxmRYPBM/0b6jpdw==";
};
};
"@types/node-15.14.9" = {
@@ -7393,15 +8248,6 @@ let
sha512 = "qjd88DrCxupx/kJD5yQgZdcYKZKSIGBVDIBE1/LTGcNm3d2Np/jxojkdePDdfnBHJc5W7vSMpbJ1aB7p/Py69A==";
};
};
- "@types/node-16.11.11" = {
- name = "_at_types_slash_node";
- packageName = "@types/node";
- version = "16.11.11";
- src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-16.11.11.tgz";
- sha512 = "KB0sixD67CeecHC33MYn+eYARkqTheIRNuu97y2XMjR7Wu3XibO1vaY6VBV6O/a89SPI81cEUIYT87UqUWlZNw==";
- };
- };
"@types/node-16.11.12" = {
name = "_at_types_slash_node";
packageName = "@types/node";
@@ -7411,13 +8257,13 @@ let
sha512 = "+2Iggwg7PxoO5Kyhvsq9VarmPbIelXP070HMImEpbtGCoyWNINQj4wzjbQCXzdHTRXnqufutJb5KAURZANNBAw==";
};
};
- "@types/node-16.11.14" = {
+ "@types/node-16.11.17" = {
name = "_at_types_slash_node";
packageName = "@types/node";
- version = "16.11.14";
+ version = "16.11.17";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-16.11.14.tgz";
- sha512 = "mK6BKLpL0bG6v2CxHbm0ed6RcZrAtTHBTd/ZpnlVPVa3HkumsqLE4BC4u6TQ8D7pnrRbOU0am6epuALs+Ncnzw==";
+ url = "https://registry.npmjs.org/@types/node/-/node-16.11.17.tgz";
+ sha512 = "C1vTZME8cFo8uxY2ui41xcynEotVkczIVI5AjLmy5pkpBv/FtG+jhtOlfcPysI8VRVwoOMv6NJm44LGnoMSWkw==";
};
};
"@types/node-16.11.7" = {
@@ -7429,13 +8275,13 @@ let
sha512 = "QB5D2sqfSjCmTuWcBWyJ+/44bcjO7VbjSbOE0ucoVbAsSNQc4Lt6QkgkVXkTDwkL4z/beecZNDvVX15D4P8Jbw==";
};
};
- "@types/node-17.0.0" = {
+ "@types/node-17.0.6" = {
name = "_at_types_slash_node";
packageName = "@types/node";
- version = "17.0.0";
+ version = "17.0.6";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-17.0.0.tgz";
- sha512 = "eMhwJXc931Ihh4tkU+Y7GiLzT/y/DBNpNtr4yU9O2w3SYBsr9NaOPhQlLKRmoWtI54uNwuo0IOUFQjVOTZYRvw==";
+ url = "https://registry.npmjs.org/@types/node/-/node-17.0.6.tgz";
+ sha512 = "+XBAjfZmmivILUzO0HwBJoYkAyyySSLg5KCGBDFLomJo0sV6szvVLAf4ANZZ0pfWzgEds5KmGLG9D5hfEqOhaA==";
};
};
"@types/node-6.14.13" = {
@@ -7546,13 +8392,13 @@ let
sha512 = "rZ5drC/jWjrArrS8BR6SIr4cWpW09RNTYt9AMZo3Jwwif+iacXAqgVjm0B0Bv/S1jhDXKHqRVNCbACkJ89RAnQ==";
};
};
- "@types/pug-2.0.5" = {
+ "@types/pug-2.0.6" = {
name = "_at_types_slash_pug";
packageName = "@types/pug";
- version = "2.0.5";
+ version = "2.0.6";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/pug/-/pug-2.0.5.tgz";
- sha512 = "LOnASQoeNZMkzexRuyqcBBDZ6rS+rQxUMkmj5A0PkhhiSZivLIuz6Hxyr1mkGoEZEkk66faROmpMi4fFkrKsBA==";
+ url = "https://registry.npmjs.org/@types/pug/-/pug-2.0.6.tgz";
+ sha512 = "SnHmG9wN1UVmagJOnyo/qkk0Z7gejYxOYYmaAwr5u2yFYfsupN3sg10kyzN8Hep/2zbHxCnsumxOoRIRMBwKCg==";
};
};
"@types/q-1.5.5" = {
@@ -7654,6 +8500,15 @@ let
sha512 = "GWP9AZW7foLd4YQxyFZDBepl0lPsWLMEXDZUjQ/c1gqVPDPECrRZyEzuhJdnPWioFCq3Tv0qoGpMD6U+ygd4ZA==";
};
};
+ "@types/request-2.48.8" = {
+ name = "_at_types_slash_request";
+ packageName = "@types/request";
+ version = "2.48.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/request/-/request-2.48.8.tgz";
+ sha512 = "whjk1EDJPcAR2kYHRbFl/lKeeKYTi05A15K9bnLInCVroNDCtXce57xKdI0/rQaA3K+6q0eFyUBPmqfSndUZdQ==";
+ };
+ };
"@types/request-promise-native-1.0.18" = {
name = "_at_types_slash_request-promise-native";
packageName = "@types/request-promise-native";
@@ -7717,6 +8572,15 @@ let
sha512 = "Da66lEIFeIz9ltsdMZcpQvmrmmoqrfju8pm1BH8WbYjZSwUgCwXLb9C+9XYogwBITnbsSaMdVPb2ekf7TV+03w==";
};
};
+ "@types/serve-index-1.9.1" = {
+ name = "_at_types_slash_serve-index";
+ packageName = "@types/serve-index";
+ version = "1.9.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.1.tgz";
+ sha512 = "d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==";
+ };
+ };
"@types/serve-static-1.13.10" = {
name = "_at_types_slash_serve-static";
packageName = "@types/serve-static";
@@ -7753,6 +8617,15 @@ let
sha512 = "m4LnxkljsI9fMsjwpW5QhRpMixo2BeeLpFmg0AE+sS4H1pzAd/cs/ftTiL60FLZgfFa8PFRPx5KsHu8O0bADKQ==";
};
};
+ "@types/sockjs-0.3.33" = {
+ name = "_at_types_slash_sockjs";
+ packageName = "@types/sockjs";
+ version = "0.3.33";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.33.tgz";
+ sha512 = "f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==";
+ };
+ };
"@types/source-list-map-0.1.2" = {
name = "_at_types_slash_source-list-map";
packageName = "@types/source-list-map";
@@ -7861,13 +8734,13 @@ let
sha512 = "awrJu8yML4E/xTwr2EMatC+HBnHGoDxc2+ImA9QyeUELI1S7dOCIZcyjki1rkwoA8P2D2NVgLAJLjnclkdLtAw==";
};
};
- "@types/url-parse-1.4.5" = {
+ "@types/url-parse-1.4.6" = {
name = "_at_types_slash_url-parse";
packageName = "@types/url-parse";
- version = "1.4.5";
+ version = "1.4.6";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/url-parse/-/url-parse-1.4.5.tgz";
- sha512 = "8Wje3itJpk/FX+QItca9vjNLjGx5jlEYBw/CpMi03Fphk2DSVeZDUqWTE81BeCI5Bl6Z+zmA1O9L/8e3ZUSeLg==";
+ url = "https://registry.npmjs.org/@types/url-parse/-/url-parse-1.4.6.tgz";
+ sha512 = "Xo6pU78oG9NNk5UJaumUXzrwu9hPiVN2N83mcdXQ1C3/R037fMPlVCh+LqP/2BELXMnlQH0sKec0u33ZnktqHQ==";
};
};
"@types/vfile-3.0.2" = {
@@ -7960,15 +8833,6 @@ let
sha512 = "cyeefcUCgJlEk+hk2h3N+MqKKsPViQgF5boi9TTHSK+PoR9KWBb/C5ccPcDyAqgsbAYHTwulch725DV84+pSpg==";
};
};
- "@types/ws-8.2.1" = {
- name = "_at_types_slash_ws";
- packageName = "@types/ws";
- version = "8.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@types/ws/-/ws-8.2.1.tgz";
- sha512 = "SqQ+LhVZaJi7c7sYVkjWALDigi/Wy7h7Iu72gkQp8Y8OWw/DddEVBrTSKu86pQftV2+Gm8lYM61hadPKqyaIeg==";
- };
- };
"@types/ws-8.2.2" = {
name = "_at_types_slash_ws";
packageName = "@types/ws";
@@ -9103,13 +9967,13 @@ let
sha512 = "3SIr/jmyHDMkCzOtcH03YG9qTAJeE7auPg/V7e9tJrhiW329hNMhg8+VAO72Tp1AOi5bMhma09ACRS2Y9bMOKA==";
};
};
- "@xstate/fsm-1.6.2" = {
+ "@xstate/fsm-1.6.3" = {
name = "_at_xstate_slash_fsm";
packageName = "@xstate/fsm";
- version = "1.6.2";
+ version = "1.6.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@xstate/fsm/-/fsm-1.6.2.tgz";
- sha512 = "vOfiFVQu9mQceA8oJ3PcA4vwhtyo/j/mbVDVIlHDOh3iuiTqMnp805zZ3QsouRdO2Ie3B7n3jMw8BntI74fZxg==";
+ url = "https://registry.npmjs.org/@xstate/fsm/-/fsm-1.6.3.tgz";
+ sha512 = "Sf8o6JPbldmGx16J7WHgkkwo/R1ZvSK64nSA5i8Xh3W+UVH5MQJTWBxxaplNt8Qlw36SNJ+8Qry03GGrksWWKQ==";
};
};
"@xtuc/ieee754-1.2.0" = {
@@ -9292,6 +10156,15 @@ let
sha512 = "TU5nlYgta8YrBMNpc9FwQzRbiXsj49gsALsXadbGHt9CROPzX5fB0rWDR5mtdpOOKa5XqRFpbj1QroPAoPzVjQ==";
};
};
+ "abstract-logging-1.0.0" = {
+ name = "abstract-logging";
+ packageName = "abstract-logging";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/abstract-logging/-/abstract-logging-1.0.0.tgz";
+ sha1 = "8b7deafd310559bc28f77724dd1bb30177278c1b";
+ };
+ };
"abstract-logging-2.0.1" = {
name = "abstract-logging";
packageName = "abstract-logging";
@@ -9400,6 +10273,15 @@ let
sha512 = "U1riIR+lBSNi3IbxtaHOIKdH8sLFv3NYfNv8sg7ZsNhcfl4HF2++BfqqrNAxoCLQW1iiylOj76ecnaUxz+z9yw==";
};
};
+ "acorn-8.7.0" = {
+ name = "acorn";
+ packageName = "acorn";
+ version = "8.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/acorn/-/acorn-8.7.0.tgz";
+ sha512 = "V/LGr1APy+PXIwKebEWrkZPwoeoF+w1jiOBUmuxuiUIaOHtob8Qc9BTrYo7VuI5fR8tqsy+buA2WFooR5olqvQ==";
+ };
+ };
"acorn-globals-1.0.9" = {
name = "acorn-globals";
packageName = "acorn-globals";
@@ -9661,13 +10543,13 @@ let
sha512 = "RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==";
};
};
- "agentkeepalive-4.1.4" = {
+ "agentkeepalive-4.2.0" = {
name = "agentkeepalive";
packageName = "agentkeepalive";
- version = "4.1.4";
+ version = "4.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.1.4.tgz";
- sha512 = "+V/rGa3EuU74H6wR04plBb7Ks10FbtUQgRj/FQOG7uUIEuaINI+AiqJR1k6t3SVNs7o7ZjIdus6706qqzVq8jQ==";
+ url = "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.2.0.tgz";
+ sha512 = "0PhAp58jZNw13UJv7NVdTGb0ZcghHUb3DrZ046JiiJY/BOaTTpbwdHq2VObPCBV8M2GPh7sgrJ3AQ8Ey468LJw==";
};
};
"aggregate-error-3.1.0" = {
@@ -10759,6 +11641,15 @@ let
sha512 = "8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==";
};
};
+ "args-5.0.1" = {
+ name = "args";
+ packageName = "args";
+ version = "5.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/args/-/args-5.0.1.tgz";
+ sha512 = "1kqmFCFsPffavQFGt8OxJdIcETti99kySRUPMpOhaGjL6mRJn8HFU1OxKY5bMqfZKUwTQc1mZkAjmGYaVOHFtQ==";
+ };
+ };
"argsarray-0.0.1" = {
name = "argsarray";
packageName = "argsarray";
@@ -11299,13 +12190,13 @@ let
sha512 = "PNxzXIPPOtWq8T7bgzBtk9cI2lgS4SJZthUHEiQ1aoIc3lNzGfUvIvo9LiAnq26TACo9t1/4qP6KTGAUbzX9Xg==";
};
};
- "asciidoctor.js-1.5.9" = {
- name = "asciidoctor.js";
- packageName = "asciidoctor.js";
- version = "1.5.9";
+ "asciidoctor-opal-runtime-0.3.3" = {
+ name = "asciidoctor-opal-runtime";
+ packageName = "asciidoctor-opal-runtime";
+ version = "0.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/asciidoctor.js/-/asciidoctor.js-1.5.9.tgz";
- sha512 = "k5JgwyV82TsiCpnYbDPReuHhzf/vRUt6NaZ+OGywkDDGeGG/CPfvN2Gd1MJ0iIZKDyuk4iJHOdY/2x1KBrWMzA==";
+ url = "https://registry.npmjs.org/asciidoctor-opal-runtime/-/asciidoctor-opal-runtime-0.3.3.tgz";
+ sha512 = "/CEVNiOia8E5BMO9FLooo+Kv18K4+4JBFRJp8vUy/N5dMRAg+fRNV4HA+o6aoSC79jVU/aT5XvUpxSxSsTS8FQ==";
};
};
"ascli-0.3.0" = {
@@ -11929,13 +12820,13 @@ let
sha1 = "00f35b2d27ac91b1f0d3ef2084c98cf1d1f0adc3";
};
};
- "aws-sdk-2.1046.0" = {
+ "aws-sdk-2.1048.0" = {
name = "aws-sdk";
packageName = "aws-sdk";
- version = "2.1046.0";
+ version = "2.1048.0";
src = fetchurl {
- url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1046.0.tgz";
- sha512 = "ocwHclMXdIA+NWocUyvp9Ild3/zy2vr5mHp3mTyodf0WU5lzBE8PocCVLSWhMAXLxyia83xv2y5f5AzAcetbqA==";
+ url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1048.0.tgz";
+ sha512 = "mVwWo+Udiuc/yEZ/DgJQGqOEtfiQjgUdtshx/t6ISe3+jW3TF9hUACwADwx2Sr/fuJyyJ3QD5JYLt5Cw35wQpA==";
};
};
"aws-sdk-2.920.0" = {
@@ -12775,15 +13666,6 @@ let
sha512 = "vFIUq7FdLtjZMhATwDul5RZWv2jpXQ09Pd6jcVEOvIsqCWTRFD/ONHNfyOS8dA/Ippi5dsIgpyKWKZaAKZltbA==";
};
};
- "base64-js-0.0.2" = {
- name = "base64-js";
- packageName = "base64-js";
- version = "0.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/base64-js/-/base64-js-0.0.2.tgz";
- sha1 = "024f0f72afa25b75f9c0ee73cd4f55ec1bed9784";
- };
- };
"base64-js-0.0.8" = {
name = "base64-js";
packageName = "base64-js";
@@ -13603,15 +14485,6 @@ let
sha512 = "6Pesp1w0DEX1N550i/uGV/TqucVL4AM/pgThFSN/Qq9si1/DF9aIHs1BxD8V/QU0HoeHO6cQRTAuYnLPKq1e4g==";
};
};
- "bl-4.0.4" = {
- name = "bl";
- packageName = "bl";
- version = "4.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/bl/-/bl-4.0.4.tgz";
- sha512 = "7tdr4EpSd7jJ6tuQ21vu2ke8w7pNEstzj1O8wwq6sNNzO3UDi5MA8Gny/gquCj7r2C6fHudg8tKRGyjRgmvNxQ==";
- };
- };
"bl-4.1.0" = {
name = "bl";
packageName = "bl";
@@ -14062,15 +14935,6 @@ let
sha512 = "SiHJE2jEXjAL3TewN99wDl5Ehpm5DKA75oIyiY+2EMWWMPhIuZlQ/AvDzsLktNkwhylmAVLwiW+nuBPIU7kcoQ==";
};
};
- "bops-0.0.7" = {
- name = "bops";
- packageName = "bops";
- version = "0.0.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/bops/-/bops-0.0.7.tgz";
- sha1 = "b4a0a5a839a406454af0fe05a8b91a7a766a54e2";
- };
- };
"bottleneck-2.19.5" = {
name = "bottleneck";
packageName = "bottleneck";
@@ -14125,6 +14989,15 @@ let
sha1 = "0c1817c48063a88d96cc3d516c55e57fff5d9ecb";
};
};
+ "bowser-2.11.0" = {
+ name = "bowser";
+ packageName = "bowser";
+ version = "2.11.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/bowser/-/bowser-2.11.0.tgz";
+ sha512 = "AlcaJBi/pqqJBIQ8U9Mcpc9i8Aqxn88Skv5d+xBX006BY5u8N3mGLHa5Lgppa7L/HfwgwLgZ6NYs+Ag6uUmJRA==";
+ };
+ };
"boxen-0.6.0" = {
name = "boxen";
packageName = "boxen";
@@ -15098,6 +15971,15 @@ let
sha512 = "y7tTxhGKXcyBxRKAni+awqx8uqaJKrSFSNFSeRG5CsWNdmy2BIK+6VGWEW7TZnIO/533mtMEA4rOevQV815YJw==";
};
};
+ "busboy-1.3.0" = {
+ name = "busboy";
+ packageName = "busboy";
+ version = "1.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/busboy/-/busboy-1.3.0.tgz";
+ sha512 = "ytF8pdwEKCNwl0K9PSwmv+yPcicy+ef+YNAw+L0FTfyBLzCWhp5V3jEfau2kb5A0JD0TkOPrdtdCKLoAHlMu1A==";
+ };
+ };
"bval-0.1.6" = {
name = "bval";
packageName = "bval";
@@ -15224,15 +16106,6 @@ let
sha512 = "i4uu6M4zuMUiyfZN4RU2+i9+peJh//pXhd9x1oSe1LBkZ3LEbCoygu8W0bXTukU1Jme2txKuotpCZRaC3FLxcQ==";
};
};
- "cacache-11.3.3" = {
- name = "cacache";
- packageName = "cacache";
- version = "11.3.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/cacache/-/cacache-11.3.3.tgz";
- sha512 = "p8WcneCytvzPxhDvYp31PD039vi77I12W+/KfR9S8AZbaiARFBCpsPJS+9uhWfeBfeAtW7o/4vt3MUqLkbY6nA==";
- };
- };
"cacache-12.0.4" = {
name = "cacache";
packageName = "cacache";
@@ -15503,6 +16376,15 @@ let
sha1 = "d545635be1e33c542649c69173e5de6acfae34dd";
};
};
+ "camelcase-5.0.0" = {
+ name = "camelcase";
+ packageName = "camelcase";
+ version = "5.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/camelcase/-/camelcase-5.0.0.tgz";
+ sha512 = "faqwZqnWxbxn+F1d399ygeamQNy3lPp/H9H6rNrqYh4FSVCtcY+3cub1MxA8o9mDd55mM8Aghuu/kuyYA6VTsA==";
+ };
+ };
"camelcase-5.3.1" = {
name = "camelcase";
packageName = "camelcase";
@@ -15593,13 +16475,13 @@ let
sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==";
};
};
- "caniuse-lite-1.0.30001287" = {
+ "caniuse-lite-1.0.30001294" = {
name = "caniuse-lite";
packageName = "caniuse-lite";
- version = "1.0.30001287";
+ version = "1.0.30001294";
src = fetchurl {
- url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001287.tgz";
- sha512 = "4udbs9bc0hfNrcje++AxBuc6PfLNHwh3PO9kbwnfCQWyqtlzg3py0YgFu8jyRTTo85VAz4U+VLxSlID09vNtWA==";
+ url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001294.tgz";
+ sha512 = "LiMlrs1nSKZ8qkNhpUf5KD0Al1KCBE3zaT7OLOwEkagXMEDij98SiOovn9wxVGQpklk9vVC/pUSqgYmkmKOS8g==";
};
};
"canvas-2.8.0" = {
@@ -15764,22 +16646,22 @@ let
sha512 = "eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==";
};
};
- "cdk8s-1.3.2" = {
+ "cdk8s-1.3.20" = {
name = "cdk8s";
packageName = "cdk8s";
- version = "1.3.2";
+ version = "1.3.20";
src = fetchurl {
- url = "https://registry.npmjs.org/cdk8s/-/cdk8s-1.3.2.tgz";
- sha512 = "ZAYcx5EplKocUWhB50cYqs6C21+27ogXZiqY68J521Lt0cGgCm95Z0Ul3vErmcxaRPGto66odmgZ9FkGBAW8bA==";
+ url = "https://registry.npmjs.org/cdk8s/-/cdk8s-1.3.20.tgz";
+ sha512 = "4iYulUvvqp5F8e8wS3lJnGUOxUvXc97uM9JMc5F0iYmz7eYB7yY8P1FSPYd7VvNiCfxh+Sly4AE0xHcIUSLing==";
};
};
- "cdk8s-plus-22-1.0.0-beta.62" = {
+ "cdk8s-plus-22-1.0.0-beta.75" = {
name = "cdk8s-plus-22";
packageName = "cdk8s-plus-22";
- version = "1.0.0-beta.62";
+ version = "1.0.0-beta.75";
src = fetchurl {
- url = "https://registry.npmjs.org/cdk8s-plus-22/-/cdk8s-plus-22-1.0.0-beta.62.tgz";
- sha512 = "VlRod4cmslhNOUt34d1gysY5qlK2lbhXI5PI4wXbvKDDEUvi5MGPGXCREtvDcgzDZk+EqdJ6QTnjYWnqLzcAng==";
+ url = "https://registry.npmjs.org/cdk8s-plus-22/-/cdk8s-plus-22-1.0.0-beta.75.tgz";
+ sha512 = "8novLo/3/axCjH0U0hLm/gPnV2Lsgt/01hr1taXzZRlVVOX2nVZ2jaITRSrsnWep6SeZU8hWybwZQIanlmB9YQ==";
};
};
"cdktf-0.8.3" = {
@@ -16088,13 +16970,13 @@ let
sha512 = "+2jlOobSk52c1VU6fzkh3UwqHMdSlgH1xFv9FKMqHiNCpXsGPQa/+81AFa+i3jZ253Mq9aAycPwDjnn1XbRNNw==";
};
};
- "chart.js-3.6.2" = {
+ "chart.js-3.7.0" = {
name = "chart.js";
packageName = "chart.js";
- version = "3.6.2";
+ version = "3.7.0";
src = fetchurl {
- url = "https://registry.npmjs.org/chart.js/-/chart.js-3.6.2.tgz";
- sha512 = "Xz7f/fgtVltfQYWq0zL1Xbv7N2inpG+B54p3D5FSvpCdy3sM+oZhbqa42eNuYXltaVvajgX5UpKCU2GeeJIgxg==";
+ url = "https://registry.npmjs.org/chart.js/-/chart.js-3.7.0.tgz";
+ sha512 = "31gVuqqKp3lDIFmzpKIrBeum4OpZsQjSIAqlOpgjosHDJZlULtvwLEZKtEhIAZc7JMPaHlYMys40Qy9Mf+1AAg==";
};
};
"chartjs-color-2.4.1" = {
@@ -16196,6 +17078,15 @@ let
sha512 = "g0J0q/O6mW8z5zxQ3A8E8J1hUgp4SMOvEoW/x84OwyHKe/Zccz83PVT4y5Crcr530FV6NgmKI1qvGTKVl9XXVw==";
};
};
+ "cheerio-1.0.0-rc.3" = {
+ name = "cheerio";
+ packageName = "cheerio";
+ version = "1.0.0-rc.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.3.tgz";
+ sha512 = "0td5ijfUPuubwLUu0OBoe98gZj8C/AA+RW3v67GPlGOrvxWjZmBXiBCRU+I8VEiNyJzjth40POfHiz2RB3gImA==";
+ };
+ };
"cheerio-select-1.5.0" = {
name = "cheerio-select";
packageName = "cheerio-select";
@@ -16691,15 +17582,6 @@ let
sha512 = "y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==";
};
};
- "cli-color-0.1.7" = {
- name = "cli-color";
- packageName = "cli-color";
- version = "0.1.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/cli-color/-/cli-color-0.1.7.tgz";
- sha1 = "adc3200fa471cc211b0da7f566b71e98b9d67347";
- };
- };
"cli-color-1.4.0" = {
name = "cli-color";
packageName = "cli-color";
@@ -16808,13 +17690,13 @@ let
sha512 = "x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==";
};
};
- "cli-sprintf-format-1.1.0" = {
+ "cli-sprintf-format-1.1.1" = {
name = "cli-sprintf-format";
packageName = "cli-sprintf-format";
- version = "1.1.0";
+ version = "1.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/cli-sprintf-format/-/cli-sprintf-format-1.1.0.tgz";
- sha512 = "t3LcCdPvrypZovStadWdRS4a186gsq9aoHJYTIer55VY20YdVjGVHDV4uPWcWCXTw1tPjfwlRGE7zKMWJ663Sw==";
+ url = "https://registry.npmjs.org/cli-sprintf-format/-/cli-sprintf-format-1.1.1.tgz";
+ sha512 = "BbEjY9BEdA6wagVwTqPvmAwGB24U93rQPBFZUT8lNCDxXzre5LFHQUTJc70czjgUomVg8u8R5kW8oY9DYRFNeg==";
};
};
"cli-table-0.3.11" = {
@@ -17402,13 +18284,13 @@ let
sha512 = "3WQV/Fpa77nvzjUlc+0u53uIroJyyMB2Qwl++aXpAiDIsrsiAQq4uCURwdRBRX+eLkOTIAmT0L4qna3T7+2pUg==";
};
};
- "codemaker-1.49.0" = {
+ "codemaker-1.50.0" = {
name = "codemaker";
packageName = "codemaker";
- version = "1.49.0";
+ version = "1.50.0";
src = fetchurl {
- url = "https://registry.npmjs.org/codemaker/-/codemaker-1.49.0.tgz";
- sha512 = "WtHwTvbR1uORGHNnl2D3kcPk52u21x4oQNsLC5n7r6vCXdRE7RAsy0hUi1ovt+9NQ4jvM9BfeMUdZp9o8h4oog==";
+ url = "https://registry.npmjs.org/codemaker/-/codemaker-1.50.0.tgz";
+ sha512 = "6PqfJzSjboI02C+mlDz5kih0ev0R7rv55a7dRFXVnC2DX9qZjpfRsJ68ODSTEU/tlG8f+m3FC2FCPq7IUFCQlQ==";
};
};
"codepage-1.4.0" = {
@@ -17546,6 +18428,15 @@ let
sha512 = "qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==";
};
};
+ "colord-2.9.2" = {
+ name = "colord";
+ packageName = "colord";
+ version = "2.9.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/colord/-/colord-2.9.2.tgz";
+ sha512 = "Uqbg+J445nc1TKn4FoDPS6ZZqAvEDnwrH42yo8B40JSOgSLxMZ/gt3h4nmCtPLQeXhjJJkqBx7SCY35WnIixaQ==";
+ };
+ };
"colorette-1.4.0" = {
name = "colorette";
packageName = "colorette";
@@ -17843,6 +18734,15 @@ let
sha1 = "9c99094176e12240cb22d6c5146098400fe0f7d4";
};
};
+ "commander-3.0.2" = {
+ name = "commander";
+ packageName = "commander";
+ version = "3.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/commander/-/commander-3.0.2.tgz";
+ sha512 = "Gar0ASD4BDyKC4hl4DwHqDrmvjoxWKZigVnAbn5H1owvm4CxCPdb0HQDehwNYMJpla5+M2tPmPARzhtYuwpHow==";
+ };
+ };
"commander-4.1.1" = {
name = "commander";
packageName = "commander";
@@ -17861,13 +18761,13 @@ let
sha512 = "P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==";
};
};
- "commander-6.1.0" = {
+ "commander-6.0.0" = {
name = "commander";
packageName = "commander";
- version = "6.1.0";
+ version = "6.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/commander/-/commander-6.1.0.tgz";
- sha512 = "wl7PNrYWd2y5mp1OK/LhTlv8Ff4kQJQRXXAvF+uU/TPNiVJUxZLRYGj/B0y/lPGAVcSbJqH2Za/cvHmrPMC8mA==";
+ url = "https://registry.npmjs.org/commander/-/commander-6.0.0.tgz";
+ sha512 = "s7EA+hDtTYNhuXkTlhqew4txMZVdszBmKWSPEMxGr8ru8JXR7bLUFIAtPhcSuFdJQ0ILMxnJi8GkQL0yvDy/YA==";
};
};
"commander-6.2.1" = {
@@ -18437,22 +19337,22 @@ let
sha1 = "c20b96d8c617748aaf1c16021760cd27fcb8cb75";
};
};
- "constructs-10.0.12" = {
+ "constructs-10.0.21" = {
name = "constructs";
packageName = "constructs";
- version = "10.0.12";
+ version = "10.0.21";
src = fetchurl {
- url = "https://registry.npmjs.org/constructs/-/constructs-10.0.12.tgz";
- sha512 = "wVQcQgwwK7b//7yI54/3hundmXAw7RBpuy5f6yIBFNceJr8feTK6Cs2I2f3+gp3/ikszzTouLup9AzxioEEXPQ==";
+ url = "https://registry.npmjs.org/constructs/-/constructs-10.0.21.tgz";
+ sha512 = "J2qEE4N/ZHSaveXrrUan+/ccUq+nEXCweLTxuEZhK0VWEr9K51s9swd61KIMzL8fB9V8JZln03vBAU9VoIvAJA==";
};
};
- "constructs-3.3.166" = {
+ "constructs-3.3.176" = {
name = "constructs";
packageName = "constructs";
- version = "3.3.166";
+ version = "3.3.176";
src = fetchurl {
- url = "https://registry.npmjs.org/constructs/-/constructs-3.3.166.tgz";
- sha512 = "vhFswEqFb5BRkeYbWPd66A+BtvSSSdRI/1TYNwetC2reJul+ztI40vK9l2CNx1Vi/EOAQp1qjjjTEg+29irtYA==";
+ url = "https://registry.npmjs.org/constructs/-/constructs-3.3.176.tgz";
+ sha512 = "KekI5/HZAeTC7Cg6BpahXv4tLlb9fT8W3VuYsJqzJyzZfk7JZ3AWbu883uhDfbLgRfj5NE5atO0Lf9xjridQ+A==";
};
};
"consume-http-header-1.0.0" = {
@@ -18537,13 +19437,13 @@ let
sha1 = "0e790b3abfef90f6ecb77ae8585db9099caf7578";
};
};
- "contentful-management-7.47.0" = {
+ "contentful-management-7.47.2" = {
name = "contentful-management";
packageName = "contentful-management";
- version = "7.47.0";
+ version = "7.47.2";
src = fetchurl {
- url = "https://registry.npmjs.org/contentful-management/-/contentful-management-7.47.0.tgz";
- sha512 = "DruvWHDD/og1Qpu0T5kCmRlm6XSJYFDPNNJOlgo3DeUVLEvp/76nAhEjsW2sPV2KBANgD4wVytP4p6/vO3/LxA==";
+ url = "https://registry.npmjs.org/contentful-management/-/contentful-management-7.47.2.tgz";
+ sha512 = "Q4ZUWrUh1IrCFq38ZLga2pkHObzQtsN1uieeVCCSG2VIMW8sU0DxrJE+9/t2qVIagYIWwyV15myxGVlDqq+3bg==";
};
};
"contentful-sdk-core-6.10.4" = {
@@ -18618,13 +19518,13 @@ let
sha512 = "jx44cconVqkCEEyLSKWwkvUXwO561jXMa3LPjTPsm5QR22PA0/mhe33FT4Xb5y74JDvt/Cq+5lm8S8rskLv9ZA==";
};
};
- "conventional-changelog-3.1.24" = {
+ "conventional-changelog-3.1.25" = {
name = "conventional-changelog";
packageName = "conventional-changelog";
- version = "3.1.24";
+ version = "3.1.25";
src = fetchurl {
- url = "https://registry.npmjs.org/conventional-changelog/-/conventional-changelog-3.1.24.tgz";
- sha512 = "ed6k8PO00UVvhExYohroVPXcOJ/K1N0/drJHx/faTH37OIZthlecuLIRX/T6uOp682CAoVoFpu+sSEaeuH6Asg==";
+ url = "https://registry.npmjs.org/conventional-changelog/-/conventional-changelog-3.1.25.tgz";
+ sha512 = "ryhi3fd1mKf3fSjbLXOfK2D06YwKNic1nC9mWqybBHdObPd8KJ2vjaXZfYj1U23t+V8T8n0d7gwnc9XbIdFbyQ==";
};
};
"conventional-changelog-angular-5.0.13" = {
@@ -18654,13 +19554,13 @@ let
sha512 = "z5DAsn3uj1Vfp7po3gpt2Boc+Bdwmw2++ZHa5Ak9k0UKsYAO5mH1UBTN0qSCuJZREIhX6WU4E1p3IW2oRCNzQw==";
};
};
- "conventional-changelog-conventionalcommits-4.6.1" = {
+ "conventional-changelog-conventionalcommits-4.6.3" = {
name = "conventional-changelog-conventionalcommits";
packageName = "conventional-changelog-conventionalcommits";
- version = "4.6.1";
+ version = "4.6.3";
src = fetchurl {
- url = "https://registry.npmjs.org/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-4.6.1.tgz";
- sha512 = "lzWJpPZhbM1R0PIzkwzGBCnAkH5RKJzJfFQZcl/D+2lsJxAwGnDKBqn/F4C1RD31GJNn8NuKWQzAZDAVXPp2Mw==";
+ url = "https://registry.npmjs.org/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-4.6.3.tgz";
+ sha512 = "LTTQV4fwOM4oLPad317V/QNQ1FY4Hju5qeBIM1uTHbrnCE+Eg4CdRZ3gO2pUeR+tzWdp80M2j3qFFEDWVqOV4g==";
};
};
"conventional-changelog-core-4.2.4" = {
@@ -18726,13 +19626,13 @@ let
sha512 = "GEKRWkrSAZeTq5+YjUZOYxdHq+ci4dNwHvpaBC3+ENalzFWuCWa9EZXSuZBpkr72sMdKB+1fyDV4takK1Lf58g==";
};
};
- "conventional-changelog-writer-5.0.0" = {
+ "conventional-changelog-writer-5.0.1" = {
name = "conventional-changelog-writer";
packageName = "conventional-changelog-writer";
- version = "5.0.0";
+ version = "5.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/conventional-changelog-writer/-/conventional-changelog-writer-5.0.0.tgz";
- sha512 = "HnDh9QHLNWfL6E1uHz6krZEQOgm8hN7z/m7tT16xwd802fwgMN0Wqd7AQYVkhpsjDUx/99oo+nGgvKF657XP5g==";
+ url = "https://registry.npmjs.org/conventional-changelog-writer/-/conventional-changelog-writer-5.0.1.tgz";
+ sha512 = "5WsuKUfxW7suLblAbFnxAcrvf6r+0b7GvNaWUwUIk0bXMnENP/PEieGKVUQrjPqwPT4o3EPAASBXiY6iHooLOQ==";
};
};
"conventional-commits-filter-2.0.7" = {
@@ -18744,13 +19644,13 @@ let
sha512 = "ASS9SamOP4TbCClsRHxIHXRfcGCnIoQqkvAzCSbZzTFLfcTqJVugB0agRgsEELsqaeWgsXv513eS116wnlSSPA==";
};
};
- "conventional-commits-parser-3.2.3" = {
+ "conventional-commits-parser-3.2.4" = {
name = "conventional-commits-parser";
packageName = "conventional-commits-parser";
- version = "3.2.3";
+ version = "3.2.4";
src = fetchurl {
- url = "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-3.2.3.tgz";
- sha512 = "YyRDR7On9H07ICFpRm/igcdjIqebXbvf4Cff+Pf0BrBys1i1EOzx9iFXNlAbdrLAR8jf7bkUYkDAr8pEy0q4Pw==";
+ url = "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-3.2.4.tgz";
+ sha512 = "nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q==";
};
};
"conventional-recommended-bump-6.1.0" = {
@@ -18807,13 +19707,13 @@ let
sha1 = "7e3e48bbe6d997b1417ddca2868204b4d3d85715";
};
};
- "convict-6.0.1" = {
+ "convict-6.2.1" = {
name = "convict";
packageName = "convict";
- version = "6.0.1";
+ version = "6.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/convict/-/convict-6.0.1.tgz";
- sha512 = "M4YNNq5NV4/VS8JhvBSHAokwvQRL4evEuU0VFe1GNPiqnj9TAkLXpf39ImCCVZlsp3CFp04bc/kRSWPGsJGJWg==";
+ url = "https://registry.npmjs.org/convict/-/convict-6.2.1.tgz";
+ sha512 = "Mn4AJiYkR3TAZH1Xm/RU7gFS/0kM5TBSAQDry8y40Aez0ASY+3boUhv+3QE5XbOXiXM2JjdhkKve3IsBvWCibQ==";
};
};
"cookie-0.0.4" = {
@@ -18969,13 +19869,13 @@ let
sha512 = "zCazfdYAh3q/O4VzZFiadWGpDA2zTs6FC6D7YTHD6H1J40pzo0H4z22h1NYMCl4ArQP4CK8y/KWqPrJ4rVkZ5A==";
};
};
- "cordova-app-hello-world-5.0.0" = {
+ "cordova-app-hello-world-6.0.0" = {
name = "cordova-app-hello-world";
packageName = "cordova-app-hello-world";
- version = "5.0.0";
+ version = "6.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/cordova-app-hello-world/-/cordova-app-hello-world-5.0.0.tgz";
- sha512 = "5My01wsYoeYwS0f/t5Ck52xPm0+2zYJ0SlvxG9vUsndDGtgiP6t/G8upPgWcyDRRz7Rs/50yZuOntmHqmJxccQ==";
+ url = "https://registry.npmjs.org/cordova-app-hello-world/-/cordova-app-hello-world-6.0.0.tgz";
+ sha512 = "wPZsm+fzNUwdiTRODT+fQuPV410RNmd3Buiw63vT8BPxjC+cn6Bu8emrgwrDM4pbmU5sa5Unwu3xPcbQGQ3G3g==";
};
};
"cordova-common-4.0.2" = {
@@ -18987,13 +19887,13 @@ let
sha512 = "od7aNShyuBajzPY83mUEO8tERwwWdFklXETHiXP5Ft87CWeo/tSuwNPFztyTy8XYc74yXdogXKPTJeUHuVzB8Q==";
};
};
- "cordova-create-3.0.0" = {
+ "cordova-create-4.0.0" = {
name = "cordova-create";
packageName = "cordova-create";
- version = "3.0.0";
+ version = "4.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/cordova-create/-/cordova-create-3.0.0.tgz";
- sha512 = "WxZRTnt5RHxSAB9urnHFUtVBcIe1YjR4sfwHLsxakNoKkFhcie3HrV5QmNBgRQ5DkxmanRN3VSx4OrPVsNmAaQ==";
+ url = "https://registry.npmjs.org/cordova-create/-/cordova-create-4.0.0.tgz";
+ sha512 = "t/4zaDZ4ZsFpC7j6x7s9hR9OeEo8nD2m7rSrzV2PUEfA4BPQujkmk0AIC+5iBvjfR7+ReHOHKsY/NfB1LnMQxQ==";
};
};
"cordova-fetch-3.0.1" = {
@@ -19005,13 +19905,13 @@ let
sha512 = "bxXk6H3FtGXpCtlO+XyXM4pa72azQomdurNeHbZai9eYBzA5vjyPnsgxsYcylLUc1wQFeR+XWQVfgJitx6ghEw==";
};
};
- "cordova-lib-10.1.0" = {
+ "cordova-lib-11.0.0" = {
name = "cordova-lib";
packageName = "cordova-lib";
- version = "10.1.0";
+ version = "11.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/cordova-lib/-/cordova-lib-10.1.0.tgz";
- sha512 = "JY/r/5RKRjgrjJ1a8z0x/NEU33/97mTFB76PCCcvQOySnmZ0rygRBYmwl2+XwFuUR0LP+fnbieePv6LiPc9UkA==";
+ url = "https://registry.npmjs.org/cordova-lib/-/cordova-lib-11.0.0.tgz";
+ sha512 = "3XSCIAlS060/hzxWKDrF+sMfv3PVU8bglCaL31HMCyj3YrZn1CZhqrRRrW5lwRxtz7Sh4XCxv97rNxF38uj9hg==";
};
};
"cordova-serve-4.0.0" = {
@@ -19041,31 +19941,31 @@ let
sha512 = "WJeQqq6jOYgVgg4NrXKL0KLQhi0CT4ZOCvFL+3CQ5o7I6J8HkT5wd53EadMfqTDp1so/MT1J+w2ujhWcCJtN7w==";
};
};
- "core-js-3.20.0" = {
+ "core-js-3.20.2" = {
name = "core-js";
packageName = "core-js";
- version = "3.20.0";
+ version = "3.20.2";
src = fetchurl {
- url = "https://registry.npmjs.org/core-js/-/core-js-3.20.0.tgz";
- sha512 = "KjbKU7UEfg4YPpskMtMXPhUKn7m/1OdTHTVjy09ScR2LVaoUXe8Jh0UdvN2EKUR6iKTJph52SJP95mAB0MnVLQ==";
+ url = "https://registry.npmjs.org/core-js/-/core-js-3.20.2.tgz";
+ sha512 = "nuqhq11DcOAbFBV4zCbKeGbKQsUDRqTX0oqx7AttUBuqe3h20ixsE039QHelbL6P4h+9kytVqyEtyZ6gsiwEYw==";
};
};
- "core-js-compat-3.20.0" = {
+ "core-js-compat-3.20.2" = {
name = "core-js-compat";
packageName = "core-js-compat";
- version = "3.20.0";
+ version = "3.20.2";
src = fetchurl {
- url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.20.0.tgz";
- sha512 = "relrah5h+sslXssTTOkvqcC/6RURifB0W5yhYBdBkaPYa5/2KBMiog3XiD+s3TwEHWxInWVv4Jx2/Lw0vng+IQ==";
+ url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.20.2.tgz";
+ sha512 = "qZEzVQ+5Qh6cROaTPFLNS4lkvQ6mBzE3R6A6EEpssj7Zr2egMHgsy4XapdifqJDGC9CBiNv7s+ejI96rLNQFdg==";
};
};
- "core-js-pure-3.20.0" = {
+ "core-js-pure-3.20.2" = {
name = "core-js-pure";
packageName = "core-js-pure";
- version = "3.20.0";
+ version = "3.20.2";
src = fetchurl {
- url = "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.20.0.tgz";
- sha512 = "qsrbIwWSEEYOM7z616jAVgwhuDDtPLwZSpUsU3vyUkHYqKTf/uwOJBZg2V7lMurYWkpVlaVOxBrfX0Q3ppvjfg==";
+ url = "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.20.2.tgz";
+ sha512 = "CmWHvSKn2vNL6p6StNp1EmMIfVY/pqn3JLAjfZQ8WZGPOlGoO92EkX9/Mk81i6GxvoPXjUqEQnpM3rJ5QxxIOg==";
};
};
"core-util-is-1.0.2" = {
@@ -19185,6 +20085,15 @@ let
sha512 = "H/2gurFWVi7xXvCyvsWRLCMekl4tITJcX0QEsDMpzxtuxDyM59xLatYNg4s/k9AA/HdtCYfj2su8mgA0GSDLDA==";
};
};
+ "cosmiconfig-typescript-loader-1.0.2" = {
+ name = "cosmiconfig-typescript-loader";
+ packageName = "cosmiconfig-typescript-loader";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-1.0.2.tgz";
+ sha512 = "27ZehvijYqAKVzta5xtZBS3PAliC8CmnWkGXN0vgxAZz7yqxpMjf3aG7flxF5rEiu8FAD7nZZXtOI+xUGn+bVg==";
+ };
+ };
"couch-login-0.1.20" = {
name = "couch-login";
packageName = "couch-login";
@@ -19491,13 +20400,13 @@ let
sha512 = "mkLtJJcYbDCxEG7Js6eUnUNndWjyUZwJ3H7bErmmtOYU/Zb99DyUkpamuIZE0b3bhmJyZ7D90uS6f+CGxRRjOw==";
};
};
- "cross-undici-fetch-0.1.4" = {
+ "cross-undici-fetch-0.1.12" = {
name = "cross-undici-fetch";
packageName = "cross-undici-fetch";
- version = "0.1.4";
+ version = "0.1.12";
src = fetchurl {
- url = "https://registry.npmjs.org/cross-undici-fetch/-/cross-undici-fetch-0.1.4.tgz";
- sha512 = "jIcyxjQ6mEvUS3y2yhIVktOR7wlGZuyjFAK8woo7pMb+BR1f2ylfTxsN01UPwhqT8gtYPmZ2rPdyoInr1Cdrrw==";
+ url = "https://registry.npmjs.org/cross-undici-fetch/-/cross-undici-fetch-0.1.12.tgz";
+ sha512 = "JNUr0ANEwc3MEUT5xBl2fVnCJqcPa7hpQfEYNsrCG/7/M4pUH5W0nQOe6FKAQGB6SqFPyAeoEn8G375QXWxwWQ==";
};
};
"crossroads-0.12.2" = {
@@ -19572,49 +20481,49 @@ let
sha512 = "v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==";
};
};
- "cspell-gitignore-5.13.3" = {
+ "cspell-gitignore-5.14.0" = {
name = "cspell-gitignore";
packageName = "cspell-gitignore";
- version = "5.13.3";
+ version = "5.14.0";
src = fetchurl {
- url = "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-5.13.3.tgz";
- sha512 = "/x8C9v0WINmyD6rgyX3OByN7lVgk1EIt0AGfYZXcVgx6iCpvBNyz8It1l3kaCEw5OPWyHvCEGeL8cy53y2dZxQ==";
+ url = "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-5.14.0.tgz";
+ sha512 = "eK3bjQV4MJtKi1DuNACyKuV3OlMsN8o+IQphBu4D7rF+zCU3rkVtE+nD2x2MMOi3YlIRxdvXxqVr5k8m5X5T4A==";
};
};
- "cspell-glob-5.13.3" = {
+ "cspell-glob-5.14.0" = {
name = "cspell-glob";
packageName = "cspell-glob";
- version = "5.13.3";
+ version = "5.14.0";
src = fetchurl {
- url = "https://registry.npmjs.org/cspell-glob/-/cspell-glob-5.13.3.tgz";
- sha512 = "9g1/AJs7ws1tLDXFJwcePhmab3wxrWbxEZVfmJIHhawp9rWc+cU6BZFdxJJ52EHClKa+DuKJxYsyohE1ctD9rA==";
+ url = "https://registry.npmjs.org/cspell-glob/-/cspell-glob-5.14.0.tgz";
+ sha512 = "qWPrdKwyl400ukYmBxEaPA6029pctkBXb+A8MmY8Ku4+pv/X0XkIGSYsxjt/32odIWws2Hoi7MGyHF9YF0K4TA==";
};
};
- "cspell-io-5.13.3" = {
+ "cspell-io-5.14.0" = {
name = "cspell-io";
packageName = "cspell-io";
- version = "5.13.3";
+ version = "5.14.0";
src = fetchurl {
- url = "https://registry.npmjs.org/cspell-io/-/cspell-io-5.13.3.tgz";
- sha512 = "4OwpSprgaUc8yZGWHUBiy5Uv528gmk7wMai6c2ZQOd8HEOkIoxWIjCVnOEYHsXBflhcrvSPxirwcsLOcGU2bkQ==";
+ url = "https://registry.npmjs.org/cspell-io/-/cspell-io-5.14.0.tgz";
+ sha512 = "MPi6Dgu+bZvxg9I3iZ+e2G1tIODIZ062O+75URZX3xCdv235aGdGtCY0AH2RNOQ+R9/jbkZMKlM0gIuGOIz0Ug==";
};
};
- "cspell-lib-5.13.3" = {
+ "cspell-lib-5.14.0" = {
name = "cspell-lib";
packageName = "cspell-lib";
- version = "5.13.3";
+ version = "5.14.0";
src = fetchurl {
- url = "https://registry.npmjs.org/cspell-lib/-/cspell-lib-5.13.3.tgz";
- sha512 = "X4GkrxhMkNTH+H+irHHL2GluwQHhR3G0/5+bF/KOYtZ4Ypi2iVYkzcxB3xPmaeM82+NHyoNu/TU5I1jspt4GSg==";
+ url = "https://registry.npmjs.org/cspell-lib/-/cspell-lib-5.14.0.tgz";
+ sha512 = "qnkXdQA3R/Z5HtjRJmWsTnqS7RTFeAiWyY7ozA+O7cY1OYTxShIB39uGHPQH0/ZUa3gNNh+kscif4KVE9nBb8Q==";
};
};
- "cspell-trie-lib-5.13.3" = {
+ "cspell-trie-lib-5.14.0" = {
name = "cspell-trie-lib";
packageName = "cspell-trie-lib";
- version = "5.13.3";
+ version = "5.14.0";
src = fetchurl {
- url = "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-5.13.3.tgz";
- sha512 = "CbydOTo7u/XxBn2tyWwIkl/KQ8ikLT4TSBM2M/3e7pZMtbAKGlV2L8P0M77mHbz5HrlL+pqrU/Ywk7TwoXmKNQ==";
+ url = "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-5.14.0.tgz";
+ sha512 = "PA9G4FZislIZ7YScR1fBToBDnPjU7HsFRNsgSkmhlI3ekxUugRaJTJW/XnDH1DDXoKqSoB/mCCN5kV8vwBBYuw==";
};
};
"csrf-3.1.0" = {
@@ -19752,13 +20661,13 @@ let
sha512 = "Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==";
};
};
- "css-select-4.2.0" = {
+ "css-select-4.2.1" = {
name = "css-select";
packageName = "css-select";
- version = "4.2.0";
+ version = "4.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/css-select/-/css-select-4.2.0.tgz";
- sha512 = "6YVG6hsH9yIb/si3Th/is8Pex7qnVHO6t7q7U6TIUnkQASGbS8tnUDBftnPynLNnuUl/r2+PTd0ekiiq7R0zJw==";
+ url = "https://registry.npmjs.org/css-select/-/css-select-4.2.1.tgz";
+ sha512 = "/aUslKhzkTNCQUB2qTX84lVmfia9NyjP3WpDGtj/WxhwBzWBYUV3DgUpurHTme8UTPcPlAD1DJ+b0nN/t50zDQ==";
};
};
"css-select-base-adapter-0.1.1" = {
@@ -21228,6 +22137,15 @@ let
sha512 = "YzhyDAwA4TaQIhM5go+vCLmU0UikghC/t9DTQYZR2M/UvZ1MdOhPezSDZcjj9uqQJOMqjLcpWtyW2iNINdlatQ==";
};
};
+ "datauri-4.1.0" = {
+ name = "datauri";
+ packageName = "datauri";
+ version = "4.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/datauri/-/datauri-4.1.0.tgz";
+ sha512 = "y17kh32+I82G+ED9MNWFkZiP/Cq/vO1hN9+tSZsT9C9qn3NrvcBnh7crSepg0AQPge1hXx2Ca44s1FRdv0gFWA==";
+ };
+ };
"date-fns-1.30.1" = {
name = "date-fns";
packageName = "date-fns";
@@ -21237,13 +22155,13 @@ let
sha512 = "hBSVCvSmWC+QypYObzwGOd9wqdDpOt+0wl0KbU+R+uuZBS1jN8VsD1ss3irQDknRj5NvxiTF6oj/nDRnN/UQNw==";
};
};
- "date-fns-2.27.0" = {
+ "date-fns-2.28.0" = {
name = "date-fns";
packageName = "date-fns";
- version = "2.27.0";
+ version = "2.28.0";
src = fetchurl {
- url = "https://registry.npmjs.org/date-fns/-/date-fns-2.27.0.tgz";
- sha512 = "sj+J0Mo2p2X1e306MHq282WS4/A8Pz/95GIFcsPNMPMZVI3EUrAdSv90al1k+p74WGLCruMXk23bfEDZa71X9Q==";
+ url = "https://registry.npmjs.org/date-fns/-/date-fns-2.28.0.tgz";
+ sha512 = "8d35hViGYx/QH0icHYCeLmsLmMUheMmTyV9Fcm6gvNwdw31yXXH+O85sOBJ+OLnLQMKZowvpKb6FgMIQjcpvQw==";
};
};
"date-format-1.2.0" = {
@@ -22461,15 +23379,6 @@ let
sha1 = "a76a3ed1855be7a012bb8ac16cb80f3c00dc28f0";
};
};
- "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==";
- };
- };
"devtools-protocol-0.0.901419" = {
name = "devtools-protocol";
packageName = "devtools-protocol";
@@ -22560,15 +23469,6 @@ let
sha512 = "MdceRRWqltEG2dZqO769g27N/3PXfcKl04VhYnBlo2YhH7zPi88VebsjTKclaOyiuMaGU72hTfw3VkUitGcVCA==";
};
};
- "dictionary-en-gb-2.3.0" = {
- name = "dictionary-en-gb";
- packageName = "dictionary-en-gb";
- version = "2.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/dictionary-en-gb/-/dictionary-en-gb-2.3.0.tgz";
- sha512 = "P/J2VQp/hDsMTfJhmIYPUBxZqezWuDaUzSgb6oW7JLpUV2So9jCXbR5TaUYXwfO50ZXPYEzQqQHPQK3pKcs7Rg==";
- };
- };
"didyoumean-1.2.2" = {
name = "didyoumean";
packageName = "didyoumean";
@@ -22884,13 +23784,13 @@ let
sha512 = "bn1AKpfkFbm0MIioOMHZ5qJzl2uypdBwI4nYNsqvhjsegBhcKJUlCrMPWLx6JEezRjxZmxhtIz/FkBEur2l8Cw==";
};
};
- "dns-packet-5.3.0" = {
+ "dns-packet-5.3.1" = {
name = "dns-packet";
packageName = "dns-packet";
- version = "5.3.0";
+ version = "5.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/dns-packet/-/dns-packet-5.3.0.tgz";
- sha512 = "Nce7YLu6YCgWRvOmDBsJMo9M5/jV3lEZ5vUWnWXYmwURvPylHvq7nkDWhNmk1ZQoZZOP7oQh/S0lSxbisKOfHg==";
+ url = "https://registry.npmjs.org/dns-packet/-/dns-packet-5.3.1.tgz";
+ sha512 = "spBwIj0TK0Ey3666GwIdWVfUpLyubpU53BTCu8iPn4r4oXd9O14Hjg3EHw3ts2oed77/SeckunUYCyRlSngqHw==";
};
};
"dns-socket-3.0.0" = {
@@ -23442,13 +24342,13 @@ let
sha1 = "212f078a722bfd2ecc267ea86ab6dddc1081fd48";
};
};
- "dreamopt-0.6.0" = {
+ "dreamopt-0.8.0" = {
name = "dreamopt";
packageName = "dreamopt";
- version = "0.6.0";
+ version = "0.8.0";
src = fetchurl {
- url = "https://registry.npmjs.org/dreamopt/-/dreamopt-0.6.0.tgz";
- sha1 = "d813ccdac8d39d8ad526775514a13dda664d6b4b";
+ url = "https://registry.npmjs.org/dreamopt/-/dreamopt-0.8.0.tgz";
+ sha1 = "5bcc80be7097e45fc489c342405ab68140a8c1d9";
};
};
"dset-3.1.1" = {
@@ -23631,6 +24531,15 @@ let
sha512 = "5qPa0GVZJI1FAMS+4GZBWXS/bzY7/p2ehuGuHPqvsRWe2yXDc4Bgvf89BMJz87pqcW7+ogGQkLZfwflMr/RPgQ==";
};
};
+ "ecpair-2.0.1" = {
+ name = "ecpair";
+ packageName = "ecpair";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ecpair/-/ecpair-2.0.1.tgz";
+ sha512 = "iT3wztQMeE/nDTlfnAg8dAFUfBS7Tq2BXzq3ae6L+pWgFU0fQ3l0woTzdTBrJV3OxBjxbzjq8EQhAbEmJNWFSw==";
+ };
+ };
"ecstatic-4.1.4" = {
name = "ecstatic";
packageName = "ecstatic";
@@ -23757,13 +24666,13 @@ let
sha512 = "U9dKi10V9w/BdIVB8a8dTKYLK3Q1d2WZ+Yo5qfM3XX/O4jI7KpnwgvWgGoVv0jTWPC2NlebF00ffWS/8NfUAtA==";
};
};
- "electron-to-chromium-1.4.21" = {
+ "electron-to-chromium-1.4.31" = {
name = "electron-to-chromium";
packageName = "electron-to-chromium";
- version = "1.4.21";
+ version = "1.4.31";
src = fetchurl {
- url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.21.tgz";
- sha512 = "T04U2ciApGbm+dESFEBbewi2Xt0Dgyww8M4n4sOt9lnmFuYbaHEDWCROkx4jvAZDUWWry9YOdnAs+7468q80Qg==";
+ url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.31.tgz";
+ sha512 = "t3XVQtk+Frkv6aTD4RRk0OqosU+VLe1dQFW83MDer78ZD6a52frgXuYOIsLYTQiH2Lm+JB2OKYcn7zrX+YGAiQ==";
};
};
"electrum-client-git://github.com/janoside/electrum-client" = {
@@ -24506,15 +25415,6 @@ let
sha512 = "Xs2Stw6NiNHWypzRTY1MtaG/uJlwCk8kH81920ma8mvN8Xq1gsfhZvpkImLQArw8AHnv8MT2I45J3c0R8slE+Q==";
};
};
- "es5-ext-0.8.2" = {
- name = "es5-ext";
- packageName = "es5-ext";
- version = "0.8.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/es5-ext/-/es5-ext-0.8.2.tgz";
- sha1 = "aba8d9e1943a895ac96837a62a39b3f55ecd94ab";
- };
- };
"es6-error-4.1.1" = {
name = "es6-error";
packageName = "es6-error";
@@ -25055,13 +25955,13 @@ let
sha512 = "ZgYLvCS1wxOczBYGcQT9DDWgicXwJ4dbocr9uYN+/eresBAUuBu+O4WzB21ufQ/JqQT8gyp7hJ3z8SHii32mTQ==";
};
};
- "espree-9.2.0" = {
+ "espree-9.3.0" = {
name = "espree";
packageName = "espree";
- version = "9.2.0";
+ version = "9.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/espree/-/espree-9.2.0.tgz";
- sha512 = "oP3utRkynpZWF/F2x/HZJ+AGtnIclaR7z1pYPxy7NYM2fSO6LgK/Rkny8anRSPK/VwEA1eqm2squui0T7ZMOBg==";
+ url = "https://registry.npmjs.org/espree/-/espree-9.3.0.tgz";
+ sha512 = "d/5nCsb0JcqsSEeQzFZ8DH1RmxPcglRWh24EFTlUEmCKoehXGdpsx0RkHDubqUI8LSAIKMQp4r9SzQ3n+sm4HQ==";
};
};
"esprima-1.1.1" = {
@@ -25163,13 +26063,13 @@ let
sha512 = "KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==";
};
};
- "essentials-1.1.1" = {
+ "essentials-1.2.0" = {
name = "essentials";
packageName = "essentials";
- version = "1.1.1";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/essentials/-/essentials-1.1.1.tgz";
- sha512 = "SmaxoAdVu86XkZQM/u6TYSu96ZlFGwhvSk1l9zAkznFuQkMb9mRDS2iq/XWDow7R8OwBwdYH8nLyDKznMD+GWw==";
+ url = "https://registry.npmjs.org/essentials/-/essentials-1.2.0.tgz";
+ sha512 = "kP/j7Iw7KeNE8b/o7+tr9uX2s1wegElGOoGZ2Xm35qBr4BbbEcH3/bxR2nfH9l9JANCq9AUrvKw+gRuHtZp0HQ==";
};
};
"esshorten-1.1.1" = {
@@ -25838,13 +26738,13 @@ let
sha512 = "GRGHbQ4b/aOtEup/oA6YVS7OOBKqU4sNLhoiTkEJWXmYDRERZiRvp8N2krQtn54y5PqucftqlBrMbdCinTouqg==";
};
};
- "expo-pwa-0.0.108" = {
+ "expo-pwa-0.0.109" = {
name = "expo-pwa";
packageName = "expo-pwa";
- version = "0.0.108";
+ version = "0.0.109";
src = fetchurl {
- url = "https://registry.npmjs.org/expo-pwa/-/expo-pwa-0.0.108.tgz";
- sha512 = "+DIFOpzx5oPOYbm7PqCCZVyVZQGJ78r9Ra1rCri2QiYSyH+tS8Yzns1885SdcSh0xLMW7I0ZhKrFs/RB++u7fg==";
+ url = "https://registry.npmjs.org/expo-pwa/-/expo-pwa-0.0.109.tgz";
+ sha512 = "88zMIwMYqVYAwgA45fdlbENrZtoETXwfDruhiP5XdAH/SbR7atNEH45ccj/lcU8o9Rzo/cIxkpJnRxn0YJ9xjg==";
};
};
"express-2.5.11" = {
@@ -25892,6 +26792,15 @@ let
sha512 = "mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==";
};
};
+ "express-4.17.2" = {
+ name = "express";
+ packageName = "express";
+ version = "4.17.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/express/-/express-4.17.2.tgz";
+ sha512 = "oxlxJxcQlYwqPWKVJJtvQiwHgosH/LrLSPA+H4UxpyvSS6jC5aH+5MoHFM+KABgTOt0APue4w66Ha8jCUo9QGg==";
+ };
+ };
"express-async-handler-1.2.0" = {
name = "express-async-handler";
packageName = "express-async-handler";
@@ -26513,6 +27422,15 @@ let
sha1 = "f4af3ea9f34d8a271cf58ad2b3759f431f0b318d";
};
};
+ "fast-xml-parser-3.19.0" = {
+ name = "fast-xml-parser";
+ packageName = "fast-xml-parser";
+ version = "3.19.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-3.19.0.tgz";
+ sha512 = "4pXwmBplsCPv8FOY1WRakF970TjNGnGnfbOnLqjlYvMiF1SR3yOHyxMR/YCXpPTOspNF5gwudqktIP4VsWkvBg==";
+ };
+ };
"fastest-levenshtein-1.0.12" = {
name = "fastest-levenshtein";
packageName = "fastest-levenshtein";
@@ -26837,6 +27755,24 @@ let
sha512 = "uzk64HRpUZyTGZtVuvrjP0FYxzQrBf4rojot6J65YMEbwBLB0CWm0CLojVpwpmFmxcE/lkvYICgfcGozbBq6rw==";
};
};
+ "file-type-12.3.1" = {
+ name = "file-type";
+ packageName = "file-type";
+ version = "12.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/file-type/-/file-type-12.3.1.tgz";
+ sha512 = "FXxY5h6vSYMjrRal4YqbtfuoKD/oE0AMjJ7E5Hm+BdaQECcFVD03B41RAWYJ7wyuLr/wRnCtFo7y37l+nh+TAA==";
+ };
+ };
+ "file-type-14.7.1" = {
+ name = "file-type";
+ packageName = "file-type";
+ version = "14.7.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/file-type/-/file-type-14.7.1.tgz";
+ sha512 = "sXAMgFk67fQLcetXustxfKX+PZgHIUFn96Xld9uH8aXPdX3xOp0/jg9OdouVTvQrf7mrn+wAa4jN/y9fUOOiRA==";
+ };
+ };
"file-type-16.2.0" = {
name = "file-type";
packageName = "file-type";
@@ -26954,6 +27890,15 @@ let
sha512 = "ICw7NTT6RsDp2rnYKVd8Fu4cr6ITzGy3+u4vUujPkabyaz+03F24NWEX7fs5fp+kBonlaqPH8fAO2NM+SXt/JA==";
};
};
+ "filenamify-4.1.0" = {
+ name = "filenamify";
+ packageName = "filenamify";
+ version = "4.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/filenamify/-/filenamify-4.1.0.tgz";
+ sha512 = "KQV/uJDI9VQgN7sHH1Zbk6+42cD6mnQ2HONzkXUfPJ+K2FC8GZ1dpewbbHw0Sz8Tf5k3EVdHVayM4DoAwWlmtg==";
+ };
+ };
"filenamify-4.2.0" = {
name = "filenamify";
packageName = "filenamify";
@@ -26981,15 +27926,6 @@ let
sha512 = "7KjR1vv6qnicaPMi1iiTcI85CyYwRO/PSFCu6SvqL8jN2Wjt/NIYQTFtFs7fSDCYOstUkEWIQGFUg5YZQfjlcg==";
};
};
- "filesize-4.2.1" = {
- name = "filesize";
- packageName = "filesize";
- version = "4.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/filesize/-/filesize-4.2.1.tgz";
- sha512 = "bP82Hi8VRZX/TUBKfE24iiUGsB/sfm2WUrwTQyAzQrhO3V9IhcBBNBXMyzLY5orACxRyYJ3d2HeRVX+eFv4lmA==";
- };
- };
"filesize-6.1.0" = {
name = "filesize";
packageName = "filesize";
@@ -28367,13 +29303,13 @@ let
sha1 = "1b0ab3bd553b2a0d6399d29c0e3ea0b252078327";
};
};
- "fuse.js-6.4.6" = {
+ "fuse.js-6.5.3" = {
name = "fuse.js";
packageName = "fuse.js";
- version = "6.4.6";
+ version = "6.5.3";
src = fetchurl {
- url = "https://registry.npmjs.org/fuse.js/-/fuse.js-6.4.6.tgz";
- sha512 = "/gYxR/0VpXmWSfZOIPS3rWwU8SHgsRTwWuXhyb2O6s7aRuVtHtxCkR33bNYu3wyLyNx/Wpv0vU7FZy8Vj53VNw==";
+ url = "https://registry.npmjs.org/fuse.js/-/fuse.js-6.5.3.tgz";
+ sha512 = "sA5etGE7yD/pOqivZRBvUBd/NaL2sjAu6QuSaFoe1H2BrJSkH/T/UXAJ8CdXdw7DvY3Hs8CXKYkDWX7RiP5KOg==";
};
};
"fuzzy-search-3.2.1" = {
@@ -28889,15 +29825,6 @@ let
sha1 = "5eff8e3e684d569ae4cb2b1282604e8ba62149fa";
};
};
- "git-apply-delta-0.0.7" = {
- name = "git-apply-delta";
- packageName = "git-apply-delta";
- version = "0.0.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/git-apply-delta/-/git-apply-delta-0.0.7.tgz";
- sha1 = "fb76ae144540d79440b52b31de03e63c993c7219";
- };
- };
"git-clone-0.1.0" = {
name = "git-clone";
packageName = "git-clone";
@@ -28952,13 +29879,13 @@ let
sha512 = "GAhWltNB3/sf/48MwE7MbObDM2tDls9YIvVlUmga3gyqSMZG3wHEMhGSQB6genvmnbbHMxCkpVVl5YP6qGQn3w==";
};
};
- "git-raw-commits-2.0.10" = {
+ "git-raw-commits-2.0.11" = {
name = "git-raw-commits";
packageName = "git-raw-commits";
- version = "2.0.10";
+ version = "2.0.11";
src = fetchurl {
- url = "https://registry.npmjs.org/git-raw-commits/-/git-raw-commits-2.0.10.tgz";
- sha512 = "sHhX5lsbG9SOO6yXdlwgEMQ/ljIn7qMpAbJZCGfXX2fq5T8M5SrDnpYk9/4HswTildcIqatsWa91vty6VhWSaQ==";
+ url = "https://registry.npmjs.org/git-raw-commits/-/git-raw-commits-2.0.11.tgz";
+ sha512 = "VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A==";
};
};
"git-remote-origin-url-2.0.0" = {
@@ -29267,6 +30194,15 @@ let
sha1 = "7045c99413b3eb94888d83ab46d0b404cc7bdde4";
};
};
+ "glob-stream-7.0.0" = {
+ name = "glob-stream";
+ packageName = "glob-stream";
+ version = "7.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/glob-stream/-/glob-stream-7.0.0.tgz";
+ sha512 = "evR4kvr6s0Yo5t4CD4H171n4T8XcnPFznvsbeN8K9FPzc0Q0wYqcOWyGtck2qcvJSLXKnU6DnDyfmbDDabYvRQ==";
+ };
+ };
"glob-to-regexp-0.3.0" = {
name = "glob-to-regexp";
packageName = "glob-to-regexp";
@@ -29466,15 +30402,6 @@ let
sha512 = "ZQnSFO1la8P7auIOQECnm0sSuoMeaSq0EEdXMBFF2QJO4uNcwbyhSgG3MruWNbFTqCLmxVwGOl7LZ9kASvHdeQ==";
};
};
- "globalyzer-0.1.4" = {
- name = "globalyzer";
- packageName = "globalyzer";
- version = "0.1.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/globalyzer/-/globalyzer-0.1.4.tgz";
- sha512 = "LeguVWaxgHN0MNbWC6YljNMzHkrCny9fzjmEUdnF1kQ7wATFD1RHFRqA1qxaX2tgxGENlcxjOflopBwj3YZiXA==";
- };
- };
"globby-10.0.2" = {
name = "globby";
packageName = "globby";
@@ -29565,15 +30492,6 @@ let
sha1 = "2f4494ac8919e3767c5cbb691e9f463324285d43";
};
};
- "globrex-0.1.2" = {
- name = "globrex";
- packageName = "globrex";
- version = "0.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/globrex/-/globrex-0.1.2.tgz";
- sha512 = "uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==";
- };
- };
"globule-1.3.3" = {
name = "globule";
packageName = "globule";
@@ -29610,6 +30528,15 @@ let
sha512 = "VZ0VPPIuiSO5/ZZr/UqFP3X3Yv04/TZxIe+SO+Ceqy43ulthPZcnrWsB8hYW2gqZzOPJeVJaYaX9FmL70kYITw==";
};
};
+ "goldengate-11.0.0" = {
+ name = "goldengate";
+ packageName = "goldengate";
+ version = "11.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/goldengate/-/goldengate-11.0.0.tgz";
+ sha512 = "2hGoEY0KosJOgllqjzx1M7jQGC9a9YmDy4qznidhn4pUHPFfIYDp+Wdy58TnHH8mcGuaHd+uJdsZVaWMkA7S/w==";
+ };
+ };
"gonzales-pe-4.3.0" = {
name = "gonzales-pe";
packageName = "gonzales-pe";
@@ -29700,6 +30627,15 @@ let
sha512 = "aWTDeNw9g+XqEZNcTjMMZSy7B7yE9toWOFYip7ofFTLleJhvZwUxxTxkTpKvF+p1SAA4VHmuEy7PiHTHyq8tJg==";
};
};
+ "got-11.5.2" = {
+ name = "got";
+ packageName = "got";
+ version = "11.5.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/got/-/got-11.5.2.tgz";
+ sha512 = "yUhpEDLeuGiGJjRSzEq3kvt4zJtAcjKmhIiwNp/eUs75tRlXfWcHo5tcBaMQtnjHWC7nQYT5HkY/l0QOQTkVww==";
+ };
+ };
"got-11.8.2" = {
name = "got";
packageName = "got";
@@ -29817,6 +30753,15 @@ let
sha1 = "4cafad76bc62f02fa039b2f94e9a3dd3a391a725";
};
};
+ "grammy-1.5.4" = {
+ name = "grammy";
+ packageName = "grammy";
+ version = "1.5.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/grammy/-/grammy-1.5.4.tgz";
+ sha512 = "maTeLcuDJNU7leLMPO8MoE5Hd4HjMzSkozHrLKe4SXa4f0/QZyWjvckRgFnCWtkzkuWEAoWYleUYeCSdJr0HdA==";
+ };
+ };
"grapheme-breaker-0.3.2" = {
name = "grapheme-breaker";
packageName = "grapheme-breaker";
@@ -30267,13 +31212,13 @@ let
sha1 = "0054e1e744502e27c04c187c3ecc505dd54bbb4f";
};
};
- "gulp-vinyl-zip-2.2.1" = {
+ "gulp-vinyl-zip-2.5.0" = {
name = "gulp-vinyl-zip";
packageName = "gulp-vinyl-zip";
- version = "2.2.1";
+ version = "2.5.0";
src = fetchurl {
- url = "https://registry.npmjs.org/gulp-vinyl-zip/-/gulp-vinyl-zip-2.2.1.tgz";
- sha512 = "9lwCZUkrENzP649hVQB2r+8GgeGtVrqA2fEeVDX6aYr6+yJjdczWu0r1C6WvbZdzhXcA61MtR5MEyjR9a3D7cw==";
+ url = "https://registry.npmjs.org/gulp-vinyl-zip/-/gulp-vinyl-zip-2.5.0.tgz";
+ sha512 = "KPi5/2SUmkXXDvKU4L2U1dkPOP03SbhONTOgNZlL23l9Yopt+euJ1bBXwWrSMbsyh3JLW/TYuC8CI4c4Kq4qrw==";
};
};
"gulplog-1.0.0" = {
@@ -32284,6 +33229,15 @@ let
sha512 = "2zeMQpbKz5dhZ9IwL0gbxSW5w0NK/MSAMtNuhgIHEPmaU3vPdKPL0UdvUCXs5SS4JAwsBxysK5sFMW8ocFiVjQ==";
};
};
+ "ignore-5.2.0" = {
+ name = "ignore";
+ packageName = "ignore";
+ version = "5.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz";
+ sha512 = "CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==";
+ };
+ };
"ignore-by-default-1.0.1" = {
name = "ignore-by-default";
packageName = "ignore-by-default";
@@ -32761,15 +33715,6 @@ let
sha512 = "7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==";
};
};
- "init-package-json-1.10.3" = {
- name = "init-package-json";
- packageName = "init-package-json";
- version = "1.10.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/init-package-json/-/init-package-json-1.10.3.tgz";
- sha512 = "zKSiXKhQveNteyhcj1CoOP8tqp1QuxPIPBl8Bid99DGLFqA1p87M6lNgfjJHSBoWJJlidGOv5rWjyYKEB3g2Jw==";
- };
- };
"init-package-json-2.0.5" = {
name = "init-package-json";
packageName = "init-package-json";
@@ -32995,6 +33940,15 @@ let
sha512 = "YOncxSN6Omh+1Oqxt+OJAvJVMDKw7l6IEG0wT2cTMGxjsTcroOGW4IR926QDzxg/uZHcFZ2cZbckDWdZhc2pZw==";
};
};
+ "insight-0.11.1" = {
+ name = "insight";
+ packageName = "insight";
+ version = "0.11.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/insight/-/insight-0.11.1.tgz";
+ sha512 = "TBcZ0qC9dgdmcxL93OoqkY/RZXJtIi0i07phX/QyYk2ysmJtZex59dgTj4Doq50N9CG9dLRe/RIudc/5CCoFNw==";
+ };
+ };
"inspect-custom-symbol-1.1.1" = {
name = "inspect-custom-symbol";
packageName = "inspect-custom-symbol";
@@ -33067,13 +34021,13 @@ let
sha512 = "MAQUJuIo7Xqk8EVNP+6d3CKq9c80hi4tjIbIAT6lmGW9W6WzlHiu9PS8uSuUYU+Do+j1baiFp3H25XEVxDIG2g==";
};
};
- "install-artifact-from-github-1.2.0" = {
+ "install-artifact-from-github-1.3.0" = {
name = "install-artifact-from-github";
packageName = "install-artifact-from-github";
- version = "1.2.0";
+ version = "1.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/install-artifact-from-github/-/install-artifact-from-github-1.2.0.tgz";
- sha512 = "3OxCPcY55XlVM3kkfIpeCgmoSKnMsz2A3Dbhsq0RXpIknKQmrX1YiznCeW9cD2ItFmDxziA3w6Eg8d80AoL3oA==";
+ url = "https://registry.npmjs.org/install-artifact-from-github/-/install-artifact-from-github-1.3.0.tgz";
+ sha512 = "iT8v1GwOAX0pPXifF/5ihnMhHOCo3OeK7z3TQa4CtSNCIg8k0UxqBEk9jRwz8OP68hHXvJ2gxRa89KYHtBkqGA==";
};
};
"int53-1.0.0" = {
@@ -33346,6 +34300,15 @@ let
sha512 = "JdHz4tSMx1IeFj8yEcQU0i58qiSkOlmZXkZ8+HJ0ROV5KcgLRDO9F703oJ1GeZCvqggrcCbmagD/V7hghY62wA==";
};
};
+ "ipaddr.js-0.1.3" = {
+ name = "ipaddr.js";
+ packageName = "ipaddr.js";
+ version = "0.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-0.1.3.tgz";
+ sha1 = "27a9ca37f148d2102b0ef191ccbf2c51a8f025c6";
+ };
+ };
"ipaddr.js-1.4.0" = {
name = "ipaddr.js";
packageName = "ipaddr.js";
@@ -33400,6 +34363,24 @@ let
sha512 = "A7AoNxAGzViARQv4sVchmTzRiWiQZMCuQVnCOhrggEgAMsc8Vr345U5/JMN5I45gqL4LVfjtruWokp5YiU23Iw==";
};
};
+ "irc-framework-4.4.0" = {
+ name = "irc-framework";
+ packageName = "irc-framework";
+ version = "4.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/irc-framework/-/irc-framework-4.4.0.tgz";
+ sha512 = "81ZjeFg0J+OdwGO4S90f8/GpwNwIcP9KaCt0lvRqt1GueT7cKPX2v1yiRML3cJXofkz/MsVZqJCnAEThYYaTUQ==";
+ };
+ };
+ "irc-framework-4.9.0" = {
+ name = "irc-framework";
+ packageName = "irc-framework";
+ version = "4.9.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/irc-framework/-/irc-framework-4.9.0.tgz";
+ sha512 = "cUYMnnKwcNpXtEw/CXnEwUtglmaWZbfu0E/0iI7bENC3bASPNfcvcyTsFQcdknpnoFLyh5kXpQCjPBWKTbOQAQ==";
+ };
+ };
"irc-replies-2.0.1" = {
name = "irc-replies";
packageName = "irc-replies";
@@ -33427,15 +34408,6 @@ let
sha1 = "2ca9b033651111855412f16be5d77c62a458a766";
};
};
- "irregular-plurals-2.0.0" = {
- name = "irregular-plurals";
- packageName = "irregular-plurals";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/irregular-plurals/-/irregular-plurals-2.0.0.tgz";
- sha512 = "Y75zBYLkh0lJ9qxeHlMjQ7bSbyiSqNW/UOPWDmzC7cXskL1hekSITh1Oc6JV0XCWWZ9DE8VYSB71xocLk3gmGw==";
- };
- };
"irregular-plurals-3.3.0" = {
name = "irregular-plurals";
packageName = "irregular-plurals";
@@ -35119,13 +36091,13 @@ let
sha512 = "qvUtwJ3j6qwsF3jLxkZ72qCgjMysPzDfeV240JHiGZsANBYd+EEuu35v7dfrJ9Up0Ak07D7GGSkGhCHTqg/5wA==";
};
};
- "isomorphic-git-0.78.5" = {
+ "isomorphic-git-1.10.3" = {
name = "isomorphic-git";
packageName = "isomorphic-git";
- version = "0.78.5";
+ version = "1.10.3";
src = fetchurl {
- url = "https://registry.npmjs.org/isomorphic-git/-/isomorphic-git-0.78.5.tgz";
- sha512 = "LrF5t9x7RdFeg84NsYpZo9qF1MZeb56LpBm6Jv47qMjnWMv0Il/3wPTA8I/lUYywgVbvF/e7xypHauj5auKW3w==";
+ url = "https://registry.npmjs.org/isomorphic-git/-/isomorphic-git-1.10.3.tgz";
+ sha512 = "Q++mEoh8NBazBujZycflotlGTSkAhyYS6tE9XAVJ7RO+Bzu6WLQc2knyJD1Onh+4Io7NmfFHvv80COremCaV8w==";
};
};
"isomorphic-textencoder-1.0.1" = {
@@ -35398,13 +36370,13 @@ let
sha512 = "dZ6Ra7u1G8c4Letq/B5EzAxj4tLFHL+cGtdpR+PVm4yzPDj+lCk+AbivWt1eOM+ikzkowtyV7qSqX6qr3t71Ww==";
};
};
- "jitdb-4.0.0" = {
+ "jitdb-4.0.1" = {
name = "jitdb";
packageName = "jitdb";
- version = "4.0.0";
+ version = "4.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/jitdb/-/jitdb-4.0.0.tgz";
- sha512 = "+jpM3dpRHHicXsph8XcuQer8droFbzcKS1lhiB4chxUtNjw+dOcuwX2jvPIj0ufFqcukyKHg45trA0HaoUCkUA==";
+ url = "https://registry.npmjs.org/jitdb/-/jitdb-4.0.1.tgz";
+ sha512 = "teg0Zk1KhdCkv2t7ULptqej7cfdOfNtodXGBpQmY71x8U/aty3AubYrL6DutwYCiKYB7q6ITI8M/ywAJxT3kOQ==";
};
};
"jju-1.4.0" = {
@@ -35470,6 +36442,15 @@ let
sha1 = "10535a126d24cbd65f7ffcdf15ef2e631076b505";
};
};
+ "joycon-3.1.1" = {
+ name = "joycon";
+ packageName = "joycon";
+ version = "3.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/joycon/-/joycon-3.1.1.tgz";
+ sha512 = "34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==";
+ };
+ };
"jp-kernel-2.0.0" = {
name = "jp-kernel";
packageName = "jp-kernel";
@@ -35534,13 +36515,13 @@ let
sha1 = "bcb4045c8dd0539c134bc1488cdd3e768a7a9e51";
};
};
- "jquery.terminal-2.30.1" = {
+ "jquery.terminal-2.31.1" = {
name = "jquery.terminal";
packageName = "jquery.terminal";
- version = "2.30.1";
+ version = "2.31.1";
src = fetchurl {
- url = "https://registry.npmjs.org/jquery.terminal/-/jquery.terminal-2.30.1.tgz";
- sha512 = "kZ7mQTKhT/b5js9PYP2uVjyya11wqe2lpEyGgxqQJovmt91Rw0IxGK4iDdvQ1SVPKPbRnJp+OavNR7Uno3fJIg==";
+ url = "https://registry.npmjs.org/jquery.terminal/-/jquery.terminal-2.31.1.tgz";
+ sha512 = "JVCL3mOmE+NQ1SvwHyRtJ18ICEylHoLqh0mmi0HResjeE7v/85rREfoLDtYfJxDxCNpTrznGl3HEoUCfjHnycA==";
};
};
"js-base64-2.6.4" = {
@@ -35804,13 +36785,13 @@ let
sha512 = "u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==";
};
};
- "jsdom-18.1.1" = {
+ "jsdom-19.0.0" = {
name = "jsdom";
packageName = "jsdom";
- version = "18.1.1";
+ version = "19.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/jsdom/-/jsdom-18.1.1.tgz";
- sha512 = "NmJQbjQ/gpS/1at/ce3nCx89HbXL/f5OcenBe8wU1Eik0ROhyUc3LtmG3567dEHAGXkN8rmILW/qtCOPxPHQJw==";
+ url = "https://registry.npmjs.org/jsdom/-/jsdom-19.0.0.tgz";
+ sha512 = "RYAyjCbxy/vri/CfnjUWJQQtZ3LKlLnDqj+9XLNnJPgEGeirZs3hllKR20re8LUZ6o1b1X4Jat+Qd26zmP41+A==";
};
};
"jsdom-7.2.2" = {
@@ -35849,49 +36830,49 @@ let
sha512 = "xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==";
};
};
- "jsii-1.49.0" = {
+ "jsii-1.50.0" = {
name = "jsii";
packageName = "jsii";
- version = "1.49.0";
+ version = "1.50.0";
src = fetchurl {
- url = "https://registry.npmjs.org/jsii/-/jsii-1.49.0.tgz";
- sha512 = "0/nn32SoCVgvuDSvVD8UuEwMJZbKbROuYtYQJRNN3n/O9g1jA/cj1eM95rRlu4THdWChTw0FDQxLfcuK+oEwpQ==";
+ url = "https://registry.npmjs.org/jsii/-/jsii-1.50.0.tgz";
+ sha512 = "7a9QXBe/MvOTGFpr5ASetxqrOd8Y6sdZo7Ts2UNJRQQWA+YS/hVpOuemnvdUImdo5u659gqdcXLsKy48QXiC/Q==";
};
};
- "jsii-pacmak-1.49.0" = {
+ "jsii-pacmak-1.50.0" = {
name = "jsii-pacmak";
packageName = "jsii-pacmak";
- version = "1.49.0";
+ version = "1.50.0";
src = fetchurl {
- url = "https://registry.npmjs.org/jsii-pacmak/-/jsii-pacmak-1.49.0.tgz";
- sha512 = "tU5N3wFAl0MrjR29JBzN96kAmm2swrMW3nK8YRdVOZDgNzhyuh0+d6tFfrS5/b6/LTV2sM+wVH6uH6w0FYWxOw==";
+ url = "https://registry.npmjs.org/jsii-pacmak/-/jsii-pacmak-1.50.0.tgz";
+ sha512 = "EE8sZqYumlik6LbZVKntRE169F4zE/cly74LijQWUIehvOhWafk0wZsPYwOBSZl8tYeTTrF6w4TPxt1+7e3JaQ==";
};
};
- "jsii-reflect-1.49.0" = {
+ "jsii-reflect-1.50.0" = {
name = "jsii-reflect";
packageName = "jsii-reflect";
- version = "1.49.0";
+ version = "1.50.0";
src = fetchurl {
- url = "https://registry.npmjs.org/jsii-reflect/-/jsii-reflect-1.49.0.tgz";
- sha512 = "aTpvvkSuinx2xtuxEz69LchQAN7eTK79s6M9512c8Ajvg0+brolHR83mzINKp/i3DWrUAZ+fb3su+PuSmqvEuQ==";
+ url = "https://registry.npmjs.org/jsii-reflect/-/jsii-reflect-1.50.0.tgz";
+ sha512 = "SPMDhrCkkCLPQR6P6qX8eW9v6UuGxyD061021WQZM/F+GsJZA+puQFJX8Jq2swv08O4iSVlVtE9iPQ+UhuNLoQ==";
};
};
- "jsii-rosetta-1.49.0" = {
+ "jsii-rosetta-1.50.0" = {
name = "jsii-rosetta";
packageName = "jsii-rosetta";
- version = "1.49.0";
+ version = "1.50.0";
src = fetchurl {
- url = "https://registry.npmjs.org/jsii-rosetta/-/jsii-rosetta-1.49.0.tgz";
- sha512 = "rXj3z0qssulanbqSegJIYhHZmJqwjBed4nJYIsxiUstDCM8vQ5QoewSAO4c7+EZV68EklHh3UCKBkBa5QmQ/hw==";
+ url = "https://registry.npmjs.org/jsii-rosetta/-/jsii-rosetta-1.50.0.tgz";
+ sha512 = "CuOu7lT24WVYrWI5Uynymdvgp7wwLsd2CtOV9Fs1Lv5RvnOMZ2VGUx2fCDp/oCA5uRQdesknnuj7xBREX/edKg==";
};
};
- "jsii-srcmak-0.1.426" = {
+ "jsii-srcmak-0.1.433" = {
name = "jsii-srcmak";
packageName = "jsii-srcmak";
- version = "0.1.426";
+ version = "0.1.433";
src = fetchurl {
- url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.426.tgz";
- sha512 = "qiKIpps0TXLmSNjSS7P4Y8znoKhd+6sI+K/8HGWrzLvmv7XD0IhZYIKvzwGV1McA/JOhhMq05LtECS49309PHQ==";
+ url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.433.tgz";
+ sha512 = "5AUv7Az1YiH5Bazp2bgoQIG2zBtHG530wEaUjn4mw366HbiHC2VBjHxX2VPPCzEgWRVrBbYYsX4TJVaxpGj1xw==";
};
};
"json-bigint-1.0.0" = {
@@ -36182,13 +37163,13 @@ let
sha512 = "0/4Lv6IenJV0qj2oBdgPIAmFiKKnh8qh7bmLFJ+/ZZHLjSeiL3fKKGX3UryvKPbxFbhV+JcYo9KUC19GJ/Z/4A==";
};
};
- "json2jsii-0.2.81" = {
+ "json2jsii-0.2.93" = {
name = "json2jsii";
packageName = "json2jsii";
- version = "0.2.81";
+ version = "0.2.93";
src = fetchurl {
- url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.2.81.tgz";
- sha512 = "0gdbZdLZM8IPb9bva40Iba9GT8944x61CZivTDBygOlrYImR+wVZ4CzQtKwH8Od6BcM5kGSDjoLGNkT20Uhu2w==";
+ url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.2.93.tgz";
+ sha512 = "cQhc2g8HcOPHu1JeWOJogIMsbu/hCFUJcgyd0sHE9/ERAriL55yMSIAAMTD2o3XmDbzgaRVwolZBwx1WgiH6hQ==";
};
};
"json3-3.2.6" = {
@@ -36227,15 +37208,6 @@ let
sha512 = "aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==";
};
};
- "json5-2.1.3" = {
- name = "json5";
- packageName = "json5";
- version = "2.1.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/json5/-/json5-2.1.3.tgz";
- sha512 = "KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA==";
- };
- };
"json5-2.2.0" = {
name = "json5";
packageName = "json5";
@@ -37028,13 +38000,13 @@ let
sha512 = "sZLUnTqimCkvkgRS+kbPlYW5o8q5w1cu+uIisKpEWkj31I8mx8kNG162DwRav8Zirkva6N5uoFsm9kzK4mUXjw==";
};
};
- "known-css-properties-0.23.0" = {
+ "known-css-properties-0.24.0" = {
name = "known-css-properties";
packageName = "known-css-properties";
- version = "0.23.0";
+ version = "0.24.0";
src = fetchurl {
- url = "https://registry.npmjs.org/known-css-properties/-/known-css-properties-0.23.0.tgz";
- sha512 = "h9ivI88e1lFNmTT4HovBN33Ysn0OIJG7IPG2mkpx2uniQXFWqo35QdiX7w0TovlUFXfW8aPFblP5/q0jlOr2sA==";
+ url = "https://registry.npmjs.org/known-css-properties/-/known-css-properties-0.24.0.tgz";
+ sha512 = "RTSoaUAfLvpR357vWzAz/50Q/BmHfmE6ETSWfutT0AJiw10e6CmcdYRQJlLRd95B53D0Y2aD1jSxD3V3ySF+PA==";
};
};
"known-css-properties-0.5.0" = {
@@ -37172,13 +38144,13 @@ let
sha512 = "weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA==";
};
};
- "launch-editor-2.2.1" = {
+ "launch-editor-2.3.0" = {
name = "launch-editor";
packageName = "launch-editor";
- version = "2.2.1";
+ version = "2.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/launch-editor/-/launch-editor-2.2.1.tgz";
- sha512 = "On+V7K2uZK6wK7x691ycSUbLD/FyKKelArkbaAMSSJU8JmqmhwN2+mnJDNINuJWSrh2L0kDk+ZQtbC/gOWUwLw==";
+ url = "https://registry.npmjs.org/launch-editor/-/launch-editor-2.3.0.tgz";
+ sha512 = "3QrsCXejlWYHjBPFXTyGNhPj4rrQdB+5+r5r3wArpLH201aR+nWUgw/zKKkTmilCfY/sv6u8qo98pNvtg8LUTA==";
};
};
"layered-graph-1.1.3" = {
@@ -37289,6 +38261,24 @@ let
sha1 = "544ff7032b7b83c68f0701328d9297aa694340f9";
};
};
+ "ldapjs-2.0.0-pre.2" = {
+ name = "ldapjs";
+ packageName = "ldapjs";
+ version = "2.0.0-pre.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ldapjs/-/ldapjs-2.0.0-pre.2.tgz";
+ sha512 = "KZnKiFXu5eEU4jKWoz29yUWh6fS8pIBuxFq9njji8LfHu3T4i05j6lsnGyDLayhJDw+rtKpEgmS3/As7CXg7WQ==";
+ };
+ };
+ "ldapjs-2.1.1" = {
+ name = "ldapjs";
+ packageName = "ldapjs";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ldapjs/-/ldapjs-2.1.1.tgz";
+ sha512 = "XzF2BEGeM/nenYDAJvkDMYovZ07fIGalrYD+suprSqUWPCWpoa+a4vWl5g8o/En85m6NHWBpirDFNClWLAd77w==";
+ };
+ };
"ldapjs-2.3.1" = {
name = "ldapjs";
packageName = "ldapjs";
@@ -37658,15 +38648,6 @@ let
sha512 = "5i0XgY+PSaGmMQTuVdtnzDg0LiTp1krfH4seefFLJNFb6Hunxic00D/roybGgd9hlbqeGmGYXZ+YQpATKQtblA==";
};
};
- "lightning-5.1.1" = {
- name = "lightning";
- packageName = "lightning";
- version = "5.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/lightning/-/lightning-5.1.1.tgz";
- sha512 = "KsLcijLhonCRwa9HiAyluIeH3Iju2W0w365/Nd5f6I157zHhnRIZAyCc2QgzklhN1yiDl2CbBJ7AGgM1RUOm7w==";
- };
- };
"lightning-5.2.1" = {
name = "lightning";
packageName = "lightning";
@@ -37730,6 +38711,15 @@ let
sha512 = "7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==";
};
};
+ "lines-and-columns-2.0.3" = {
+ name = "lines-and-columns";
+ packageName = "lines-and-columns";
+ version = "2.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-2.0.3.tgz";
+ sha512 = "cNOjgCnLB+FnvWWtyRTzmB3POJ+cXxTA81LoW7u8JdmhfXzriropYwpjShnz1QLLWsQwY7nIxoDmcPTwphDK9w==";
+ };
+ };
"linewise-0.0.3" = {
name = "linewise";
packageName = "linewise";
@@ -37757,6 +38747,15 @@ let
sha512 = "GnAl/knGn+i1U/wjBz3akz2stz+HrHLsxMwHQGofCDfPvlf+gDKN58UtfmUquTY4/MXeE2x7k19KQmeoZi94Iw==";
};
};
+ "linkify-it-3.0.2" = {
+ name = "linkify-it";
+ packageName = "linkify-it";
+ version = "3.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/linkify-it/-/linkify-it-3.0.2.tgz";
+ sha512 = "gDBO4aHNZS6coiZCKVhSNh43F9ioIL4JwRjLZPkoLIY4yZFwg264Y5lu2x6rb1Js42Gh6Yqm2f6L2AJcnkzinQ==";
+ };
+ };
"linkify-it-3.0.3" = {
name = "linkify-it";
packageName = "linkify-it";
@@ -37856,15 +38855,6 @@ let
sha512 = "20ZIPPyGI4odh/Jxq6Lawtc+Zx7MkPuxnn34TuhZpM6ppwVbSGJSuJPctLrhZvWdaYYeboz3BITiqI/o4KvChQ==";
};
};
- "ln-service-53.1.2" = {
- name = "ln-service";
- packageName = "ln-service";
- version = "53.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/ln-service/-/ln-service-53.1.2.tgz";
- sha512 = "suXjhDhulSS5pruRaFQdY3FLf6VMrnDqo1f+RcCFNQN7nvA1mFIT2L6bSrnduRGMFofhlOwUWB5DuLBQgTal5w==";
- };
- };
"ln-service-53.2.0" = {
name = "ln-service";
packageName = "ln-service";
@@ -37883,13 +38873,13 @@ let
sha512 = "rCH59pxjqsWrcwse8hL9FdWGMj7L3tGMTzxussOnbM2oEfj9LsvRPxrcj7+mEMhuJ+/OZ8V31jIUwCGwUTMz6w==";
};
};
- "ln-sync-3.3.0" = {
+ "ln-sync-3.6.0" = {
name = "ln-sync";
packageName = "ln-sync";
- version = "3.3.0";
+ version = "3.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/ln-sync/-/ln-sync-3.3.0.tgz";
- sha512 = "FXfoGbvYkR+VyMtRMn6RsW6dujt+jI5cUqXJ36sWdnn5XS60sCEeATWvn48vi60BzqgDFMCX7aDHG5v4s7IRbw==";
+ url = "https://registry.npmjs.org/ln-sync/-/ln-sync-3.6.0.tgz";
+ sha512 = "cpLbBWbevpjXCL0/jBO0/lITkKoJQHWpIkKjmu5vSqYEiXEYrX0bnc1Ex4JfuZGG3UUFtVi6sddpQKDmt2uzDQ==";
};
};
"ln-telegram-3.4.2" = {
@@ -38180,6 +39170,15 @@ let
sha1 = "d22c9ac660288f3843e16ba7d2b5d06cca27d777";
};
};
+ "lodash-4.17.15" = {
+ name = "lodash";
+ packageName = "lodash";
+ version = "4.17.15";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz";
+ sha512 = "8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==";
+ };
+ };
"lodash-4.17.20" = {
name = "lodash";
packageName = "lodash";
@@ -38774,15 +39773,6 @@ let
sha1 = "78b41eafe1405fa966459ea4193fd502d084524b";
};
};
- "lodash.forown-4.4.0" = {
- name = "lodash.forown";
- packageName = "lodash.forown";
- version = "4.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.forown/-/lodash.forown-4.4.0.tgz";
- sha1 = "85115cf04f73ef966eced52511d3893cc46683af";
- };
- };
"lodash.get-4.4.2" = {
name = "lodash.get";
packageName = "lodash.get";
@@ -39323,13 +40313,13 @@ let
sha512 = "U7KCmLdqsGHBLeWqYlFA0V0Sl6P08EE1ZrmA9cxjUE0WVqT9qnyVDPz1kzpFEP0jdJuFnasWIfSd7fsaNXkpbg==";
};
};
- "log-node-8.0.2" = {
+ "log-node-8.0.3" = {
name = "log-node";
packageName = "log-node";
- version = "8.0.2";
+ version = "8.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/log-node/-/log-node-8.0.2.tgz";
- sha512 = "H+3t002yGqZRJhVW3A/EksIB7i1M84cwcWzBPsnAmQWOA2ePAV2fXJpNPBnw6VEdhzPcedIxQwT5jhBVTlYQww==";
+ url = "https://registry.npmjs.org/log-node/-/log-node-8.0.3.tgz";
+ sha512 = "1UBwzgYiCIDFs8A0rM2QdBFo8Wd8UQ0HrSTu/MNI+/2zN3NoHRj2fhplurAyuxTYUXu3Oohugq1jAn5s05u1MQ==";
};
};
"log-symbols-1.0.2" = {
@@ -40557,15 +41547,6 @@ let
sha1 = "c6f34834a0d8dbc3b37c27ee8bbcb27c7775582e";
};
};
- "matcher-2.1.0" = {
- name = "matcher";
- packageName = "matcher";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/matcher/-/matcher-2.1.0.tgz";
- sha512 = "o+nZr+vtJtgPNklyeUKkkH42OsK8WAfdgaJE2FNxcjLPg+5QbeEoT6vRj8Xq/iv18JlQ9cmKsEu0b94ixWf1YQ==";
- };
- };
"matcher-3.0.0" = {
name = "matcher";
packageName = "matcher";
@@ -40845,13 +41826,13 @@ let
sha512 = "j4yDxQ66AJSBwGkbpFEp9uG/LS1tZV3P33fN1gkyRB2LoRL+RR3f76m0HPHaby6F4Z5xr9Fv1URmATlRRUIpRQ==";
};
};
- "mdast-util-gfm-table-1.0.1" = {
+ "mdast-util-gfm-table-1.0.2" = {
name = "mdast-util-gfm-table";
packageName = "mdast-util-gfm-table";
- version = "1.0.1";
+ version = "1.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/mdast-util-gfm-table/-/mdast-util-gfm-table-1.0.1.tgz";
- sha512 = "NByKuaSg5+M6r9DZBPXFUmhMHGFf9u+WE76EeStN01ghi8hpnydiWBXr+qj0XCRWI7SAMNtEjGvip6zci9axQA==";
+ url = "https://registry.npmjs.org/mdast-util-gfm-table/-/mdast-util-gfm-table-1.0.2.tgz";
+ sha512 = "pPekvCTChFBF8uCq8bVyQwar8NBU/TaXIy44jj/UzmjMgPBHIa1B1ge8a0JVgzhqgXQAMvGT+PgiKlicdLGfDQ==";
};
};
"mdast-util-gfm-task-list-item-0.1.6" = {
@@ -40935,15 +41916,6 @@ let
sha512 = "doJZmTEGagHypWvJ8ltinmwUsT9ZaNgNIQW6Gl7jNdsI1QZkTHTimYW561Niy2s8AEPAqEgV0dIh2UOVlSXUJA==";
};
};
- "mdast-util-to-nlcst-3.2.3" = {
- name = "mdast-util-to-nlcst";
- packageName = "mdast-util-to-nlcst";
- version = "3.2.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/mdast-util-to-nlcst/-/mdast-util-to-nlcst-3.2.3.tgz";
- sha512 = "hPIsgEg7zCvdU6/qvjcR6lCmJeRuIEpZGY5xBV+pqzuMOvQajyyF8b6f24f8k3Rw8u40GwkI3aAxUXr3bB2xag==";
- };
- };
"mdast-util-to-nlcst-4.0.1" = {
name = "mdast-util-to-nlcst";
packageName = "mdast-util-to-nlcst";
@@ -41142,22 +42114,22 @@ let
sha512 = "yiAivd4xFOH/WXlUi6v/nKopBh1QLzwjFi36NK88cGt/PRXI8WeBASqY+YSjIVWvQTx3hR8zHKDBMV6hWmglNA==";
};
};
- "mem-fs-editor-9.3.0" = {
+ "mem-fs-editor-9.4.0" = {
name = "mem-fs-editor";
packageName = "mem-fs-editor";
- version = "9.3.0";
+ version = "9.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/mem-fs-editor/-/mem-fs-editor-9.3.0.tgz";
- sha512 = "QKFbPwGCh1ypmc2H8BUYpbapwT/x2AOCYZQogzSui4rUNes7WVMagQXsirPIfp18EarX0SSY9Fpg426nSjew4Q==";
+ url = "https://registry.npmjs.org/mem-fs-editor/-/mem-fs-editor-9.4.0.tgz";
+ sha512 = "HSSOLSVRrsDdui9I6i96dDtG+oAez/4EB2g4cjSrNhgNQ3M+L57/+22NuPdORSoxvOHjIg/xeOE+C0wwF91D2g==";
};
};
- "memfs-3.4.0" = {
+ "memfs-3.4.1" = {
name = "memfs";
packageName = "memfs";
- version = "3.4.0";
+ version = "3.4.1";
src = fetchurl {
- url = "https://registry.npmjs.org/memfs/-/memfs-3.4.0.tgz";
- sha512 = "o/RfP0J1d03YwsAxyHxAYs2kyJp55AFkMazlFAZFR2I2IXkxiUTXRabJ6RmNNCQ83LAD2jy52Khj0m3OffpNdA==";
+ url = "https://registry.npmjs.org/memfs/-/memfs-3.4.1.tgz";
+ sha512 = "1c9VPVvW5P7I85c35zAdEr1TD5+F11IToIHIlrVIcflfnzPkJa0ZoYEoEdYDP8KgPFoSZ/opDrUsAoZWym3mtw==";
};
};
"memoize-one-5.2.1" = {
@@ -41430,13 +42402,13 @@ let
sha512 = "TIurLf/ustQNMXi5foClGTcEsRvH6DCvxeAKu68OrwHMOSM/M1pgPXb7qe52Svk1ClvmZuAVpLtP5FWKzPr/sw==";
};
};
- "mermaid-8.13.6" = {
+ "mermaid-8.13.8" = {
name = "mermaid";
packageName = "mermaid";
- version = "8.13.6";
+ version = "8.13.8";
src = fetchurl {
- url = "https://registry.npmjs.org/mermaid/-/mermaid-8.13.6.tgz";
- sha512 = "mz8MHq0IyEM7vLyl3fEOWgqMNYrowTS1s8Tx2EC1BGlT0KHpy4BFFgcKlLdor2vxSMSlXq1sAZS+aykFC6uUBA==";
+ url = "https://registry.npmjs.org/mermaid/-/mermaid-8.13.8.tgz";
+ sha512 = "Z5v31rvo8P7BPTiGicdJl9BbzyUe9s5sXILK8sM1g7ijkagpfFjPtXZVsq5P1WlN8m/fUp2PPNXVF9SqeTM91w==";
};
};
"meros-1.1.4" = {
@@ -41601,13 +42573,13 @@ let
sha512 = "oVN4zv5/tAIA+l3GbMi7lWeYpJ14oQyJ3uEim20ktYFAcfX1x3LNlFGGlmrZHt7u9YlKExmyJdDGaTt6cMSR/A==";
};
};
- "micromark-extension-gfm-2.0.0" = {
+ "micromark-extension-gfm-2.0.1" = {
name = "micromark-extension-gfm";
packageName = "micromark-extension-gfm";
- version = "2.0.0";
+ version = "2.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/micromark-extension-gfm/-/micromark-extension-gfm-2.0.0.tgz";
- sha512 = "yYPlZ48Ss8fRFSmlQP/QXt3/M6tEvawEVFO+jDPnFA3mGeVgzIyaeHgrIV/9AMFAjQhctKA47Bk8xBhcuaL74Q==";
+ url = "https://registry.npmjs.org/micromark-extension-gfm/-/micromark-extension-gfm-2.0.1.tgz";
+ sha512 = "p2sGjajLa0iYiGQdT0oelahRYtMWvLjy8J9LOCxzIQsllMCGLbsLW+Nc+N4vi02jcRJvedVJ68cjelKIO6bpDA==";
};
};
"micromark-extension-gfm-autolink-literal-0.5.7" = {
@@ -41862,13 +42834,13 @@ let
sha512 = "DLT5Ho02qr6QWVNYbRZ3RYOSSWWFuH3tJexd3dgN1odEuPNxCngTCXJum7+ViRAd9BbdxCvMToPOD/IvVhzG6Q==";
};
};
- "micromark-util-encode-1.0.0" = {
+ "micromark-util-encode-1.0.1" = {
name = "micromark-util-encode";
packageName = "micromark-util-encode";
- version = "1.0.0";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-1.0.0.tgz";
- sha512 = "cJpFVM768h6zkd8qJ1LNRrITfY4gwFt+tziPcIf71Ui8yFzY9wG3snZQqiWVq93PG4Sw6YOtcNiKJfVIs9qfGg==";
+ url = "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-1.0.1.tgz";
+ sha512 = "U2s5YdnAYexjKDel31SVMPbfi+eF8y1U4pfiRW/Y8EFVCy/vgxk/2wWTxzcqE71LHtCuCzlBDRU2a5CQ5j+mQA==";
};
};
"micromark-util-events-to-acorn-1.0.4" = {
@@ -42087,6 +43059,24 @@ let
sha512 = "BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ==";
};
};
+ "mime-db-1.40.0" = {
+ name = "mime-db";
+ packageName = "mime-db";
+ version = "1.40.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mime-db/-/mime-db-1.40.0.tgz";
+ sha512 = "jYdeOMPy9vnxEqFRRo6ZvTZ8d9oPb+k18PKoYNYUe2stVEBPPwsln/qWzdbmaIvnhZ9v2P+CuecK+fpUfsV2mA==";
+ };
+ };
+ "mime-db-1.44.0" = {
+ name = "mime-db";
+ packageName = "mime-db";
+ version = "1.44.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mime-db/-/mime-db-1.44.0.tgz";
+ sha512 = "/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg==";
+ };
+ };
"mime-db-1.50.0" = {
name = "mime-db";
packageName = "mime-db";
@@ -42114,6 +43104,24 @@ let
sha512 = "lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ==";
};
};
+ "mime-types-2.1.24" = {
+ name = "mime-types";
+ packageName = "mime-types";
+ version = "2.1.24";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.24.tgz";
+ sha512 = "WaFHS3MCl5fapm3oLxU4eYDw77IQM2ACcxQ9RIxfaC3ooc6PFuBMGZZsYpvoXS5D5QTWPieo1jjLdAm3TBP3cQ==";
+ };
+ };
+ "mime-types-2.1.27" = {
+ name = "mime-types";
+ packageName = "mime-types";
+ version = "2.1.27";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.27.tgz";
+ sha512 = "JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w==";
+ };
+ };
"mime-types-2.1.33" = {
name = "mime-types";
packageName = "mime-types";
@@ -42132,6 +43140,15 @@ let
sha512 = "6cP692WwGIs9XXdOO4++N+7qjqv0rqxxVvJ3VHPh/Sc9mVZcQP+ZGhkKiTvWMQRr2tbHkJP/Yn7Y0npb3ZBs4A==";
};
};
+ "mimer-2.0.2" = {
+ name = "mimer";
+ packageName = "mimer";
+ version = "2.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mimer/-/mimer-2.0.2.tgz";
+ sha512 = "izxvjsB7Ur5HrTbPu6VKTrzxSMBFBqyZQc6dWlZNQ4/wAvf886fD4lrjtFd8IQ8/WmZKdxKjUtqFFNaj3hQ52g==";
+ };
+ };
"mimic-fn-1.2.0" = {
name = "mimic-fn";
packageName = "mimic-fn";
@@ -42267,15 +43284,6 @@ let
sha512 = "yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==";
};
};
- "minimatch-all-1.1.0" = {
- name = "minimatch-all";
- packageName = "minimatch-all";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/minimatch-all/-/minimatch-all-1.1.0.tgz";
- sha1 = "40c496a27a2e128d19bf758e76bb01a0c7145787";
- };
- };
"minimist-0.0.10" = {
name = "minimist";
packageName = "minimist";
@@ -42582,13 +43590,13 @@ let
sha512 = "sdqtiFt3lkOaYvTXSRIUjkIdPTcxgv5+fgqYE/5qgwdw12cOrAuzzgzvVExIkH/ul1oeHN3bCLOWSG3XOqbKKw==";
};
};
- "mobx-6.3.9" = {
+ "mobx-6.3.10" = {
name = "mobx";
packageName = "mobx";
- version = "6.3.9";
+ version = "6.3.10";
src = fetchurl {
- url = "https://registry.npmjs.org/mobx/-/mobx-6.3.9.tgz";
- sha512 = "u9vhETRPgx6s+MD2NhGaOQJMJa/qszflwFxKryCXotERWY77ocdrRQUp7Jwt1urjefUXNj3fQbTnKrCV+kBaXw==";
+ url = "https://registry.npmjs.org/mobx/-/mobx-6.3.10.tgz";
+ sha512 = "lfuIN5TGXBNy/5s3ggr1L+IbD+LvfZVlj5q1ZuqyV9AfMtunYQvE8G0WfewS9tgIR3I1q8HJEEbcAOsxEgLwRw==";
};
};
"mobx-react-7.2.1" = {
@@ -42600,13 +43608,13 @@ let
sha512 = "LZS99KFLn75VWDXPdRJhILzVQ7qLcRjQbzkK+wVs0Qg4kWw5hOI2USp7tmu+9zP9KYsVBmKyx2k/8cTTBfsymw==";
};
};
- "mobx-react-lite-3.2.2" = {
+ "mobx-react-lite-3.2.3" = {
name = "mobx-react-lite";
packageName = "mobx-react-lite";
- version = "3.2.2";
+ version = "3.2.3";
src = fetchurl {
- url = "https://registry.npmjs.org/mobx-react-lite/-/mobx-react-lite-3.2.2.tgz";
- sha512 = "FxJJMqmHcnQYOVVs2DdjNHioGlFsXF5/9VHztS9NAfIT3DYrxNZzVi119Zr/OmlWKkWNkAsssSNzPkqautfL4A==";
+ url = "https://registry.npmjs.org/mobx-react-lite/-/mobx-react-lite-3.2.3.tgz";
+ sha512 = "7exWp1FV0M9dP08H9PIeHlJqDw4IdkQVRMfLYaZFMmlbzSS6ZU6p/kx392KN+rVf81hH3IQYewvRGQ70oiwmbw==";
};
};
"mocha-2.5.3" = {
@@ -42870,6 +43878,15 @@ let
sha512 = "ja8+mFKIHdB1Tpl6vac+sktqy3gA8t9Mduom1BA75cI+R9AHnZOiaBQwpGiWnaVJLDGRdNhQmFaAqd7tkKSMGA==";
};
};
+ "mri-1.1.4" = {
+ name = "mri";
+ packageName = "mri";
+ version = "1.1.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mri/-/mri-1.1.4.tgz";
+ sha512 = "6y7IjGPm8AzlvoUrwAaw1tLnUBudaS3752vcd8JtrpGGQn+rXIe63LFVHm/YMwtqAuh+LJPCFdlLYPWM1nYn6w==";
+ };
+ };
"mri-1.2.0" = {
name = "mri";
packageName = "mri";
@@ -42987,13 +44004,13 @@ let
sha512 = "2wY2+xD4udX612aMqMcB8Ws2Voq6NIUPEtD1be6m411T4uDH/VtL9i//xvcyFlTVfRdaBsk7hV5tgrGQqhuBiw==";
};
};
- "multi-progress-2.0.0" = {
+ "multi-progress-4.0.0" = {
name = "multi-progress";
packageName = "multi-progress";
- version = "2.0.0";
+ version = "4.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/multi-progress/-/multi-progress-2.0.0.tgz";
- sha1 = "29ccb42cf24874b1c6384f03127ce5dff7b22f2c";
+ url = "https://registry.npmjs.org/multi-progress/-/multi-progress-4.0.0.tgz";
+ sha512 = "9zcjyOou3FFCKPXsmkbC3ethv51SFPoA4dJD6TscIp2pUmy26kBDZW6h9XofPELrzseSkuD7r0V+emGEeo39Pg==";
};
};
"multi-random-access-2.1.1" = {
@@ -44419,6 +45436,15 @@ let
sha512 = "sol30LUpz1jQFBjOKwbjxijiE3b6pjd74YwfD0fJOKPjF+fONKb2Yg8rYgS6+bK6VDl+/wfr4IYpC7jDzLUIfw==";
};
};
+ "node-forge-0.9.1" = {
+ name = "node-forge";
+ packageName = "node-forge";
+ version = "0.9.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-forge/-/node-forge-0.9.1.tgz";
+ sha512 = "G6RlQt5Sb4GMBzXvhfkeFmbqR6MzhtnT7VTHuLadjkii3rdYHNdw0m8zA4BTxVIh68FicCQ2NSUANpsqkr9jvQ==";
+ };
+ };
"node-gyp-3.8.0" = {
name = "node-gyp";
packageName = "node-gyp";
@@ -45310,15 +46336,6 @@ let
sha1 = "cb8f34c53213d895723fcbab907e9422adbcafb1";
};
};
- "nspell-2.1.5" = {
- name = "nspell";
- packageName = "nspell";
- version = "2.1.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/nspell/-/nspell-2.1.5.tgz";
- sha512 = "PSStyugKMiD9mHmqI/CR5xXrSIGejUXPlo88FBRq5Og1kO5QwQ5Ilu8D8O5I/SHpoS+mibpw6uKA8rd3vXd2Sg==";
- };
- };
"nssocket-0.6.0" = {
name = "nssocket";
packageName = "nssocket";
@@ -45626,6 +46643,15 @@ let
sha512 = "If7BjFlpkzzBeV1cqgT3OSWT3azyoxDGajR+iGnFBfVV2EWyDyWaZZW2ERDjUaY2QM8i5jI3Sj7mhsM4DDAqWA==";
};
};
+ "object-inspect-1.12.0" = {
+ name = "object-inspect";
+ packageName = "object-inspect";
+ version = "1.12.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.0.tgz";
+ sha512 = "Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g==";
+ };
+ };
"object-inspect-1.4.1" = {
name = "object-inspect";
packageName = "object-inspect";
@@ -46067,22 +47093,13 @@ let
sha512 = "fvaSZRzprpwLFge/mcwE0CItfniNisVNamDdMK1FQUjh4ArQZ8ZWSkDaJbZc3XaANKZHq0xIa8NJpZ2HSe3oXA==";
};
};
- "oo-ascii-tree-1.49.0" = {
+ "oo-ascii-tree-1.50.0" = {
name = "oo-ascii-tree";
packageName = "oo-ascii-tree";
- version = "1.49.0";
+ version = "1.50.0";
src = fetchurl {
- url = "https://registry.npmjs.org/oo-ascii-tree/-/oo-ascii-tree-1.49.0.tgz";
- sha512 = "Y84LTdUO7/ptZRgJqzmxgvuSDlRh23p/mag4T4NTN3TVuBlfg9pvu80Hqo5NEC2Z3GFpUTI5FgIEwiSgqWlevA==";
- };
- };
- "opal-runtime-1.0.11" = {
- name = "opal-runtime";
- packageName = "opal-runtime";
- version = "1.0.11";
- src = fetchurl {
- url = "https://registry.npmjs.org/opal-runtime/-/opal-runtime-1.0.11.tgz";
- sha512 = "L+6pnRvXPlDtbamBRnJAnB9mEMXmsIQ/b+0r/2xJ5/n/nxheEkLo+Pm5QNQ08LEbEN9TI6/kedhIspqRRu6tXA==";
+ url = "https://registry.npmjs.org/oo-ascii-tree/-/oo-ascii-tree-1.50.0.tgz";
+ sha512 = "943KZJW94gBh+naWsXvw4ISsHnlEXXkx5Yf8wA6NLOeLlY2Xj7tN/W+FhKNTlI9Y99Vz0NQQP+8o9Q05I8Ld9Q==";
};
};
"open-0.0.2" = {
@@ -46778,22 +47795,22 @@ let
sha512 = "0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==";
};
};
- "ot-builder-1.3.2" = {
+ "ot-builder-1.3.3" = {
name = "ot-builder";
packageName = "ot-builder";
- version = "1.3.2";
+ version = "1.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/ot-builder/-/ot-builder-1.3.2.tgz";
- sha512 = "sWAQ6ZRqzsvlxa81clJ9xMuPHhDVKqDtsGjgZvR4vo+BFlK232PZaFML5seQ0dIZaw/IBP2t2nmyn6s4dauPkQ==";
+ url = "https://registry.npmjs.org/ot-builder/-/ot-builder-1.3.3.tgz";
+ sha512 = "MRagUwE9VN5++ptJXPd5RqK6YbDUe6i+I7RWRpsgo2aD2ZbvktfoJ1FJGzLbaRucsWw4X3d6xKf8xIQ5SnjMJA==";
};
};
- "otb-ttc-bundle-1.3.2" = {
+ "otb-ttc-bundle-1.3.3" = {
name = "otb-ttc-bundle";
packageName = "otb-ttc-bundle";
- version = "1.3.2";
+ version = "1.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/otb-ttc-bundle/-/otb-ttc-bundle-1.3.2.tgz";
- sha512 = "0Ibk+w278i7wjPntVZItgvjTZ5X596OYcSUayo8XndrN94l/M8+GOpH9tJTSCyI/0WKj8DhwI+NA8LZsh42K9w==";
+ url = "https://registry.npmjs.org/otb-ttc-bundle/-/otb-ttc-bundle-1.3.3.tgz";
+ sha512 = "Aezn4zk5RFET7R7KONsKRvspOBpdJvVqTg6t2NZ6/sIpCeiwSIe3nUtOpn+PGvM11zMq7x3ulhWFrWdNRO9A/g==";
};
};
"ow-0.21.0" = {
@@ -47417,13 +48434,13 @@ let
sha1 = "ad1f22ce1bf0fdc0d6ddd908af17f351a404b8ac";
};
};
- "paid-services-3.2.0" = {
+ "paid-services-3.3.0" = {
name = "paid-services";
packageName = "paid-services";
- version = "3.2.0";
+ version = "3.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/paid-services/-/paid-services-3.2.0.tgz";
- sha512 = "kktETjyuk7ptb1OLdT6pv5eNCzQclfig+Ys+9SSEYvJWklI3QXnoxI1Wpo8FWlAm9tu6SFlr3EcnsncAcu7pZw==";
+ url = "https://registry.npmjs.org/paid-services/-/paid-services-3.3.0.tgz";
+ sha512 = "VzvPBTw1jRxR4tNEOY19pjWdCcr8H7+3PsHtqftFwV6ShtN4PsMPo2sUgtBaYguo+JhrrZIou2leuK5rrUAqDQ==";
};
};
"pako-0.2.9" = {
@@ -47714,6 +48731,15 @@ let
sha512 = "ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==";
};
};
+ "parse-json-6.0.2" = {
+ name = "parse-json";
+ packageName = "parse-json";
+ version = "6.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/parse-json/-/parse-json-6.0.2.tgz";
+ sha512 = "SA5aMiaIjXkAiBrW/yPgLgQAQg42f7K3ACO+2l/zOvtQBwX58DMUsFJXelW2fx3yMBmWOVkR6j1MGsdSbCA4UA==";
+ };
+ };
"parse-latin-4.3.0" = {
name = "parse-latin";
packageName = "parse-latin";
@@ -47849,6 +48875,15 @@ let
sha1 = "9b7f3b0de32be78dc2401b17573ccaf0f6f59d94";
};
};
+ "parse5-3.0.3" = {
+ name = "parse5";
+ packageName = "parse5";
+ version = "3.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/parse5/-/parse5-3.0.3.tgz";
+ sha512 = "rgO9Zg5LLLkfJF9E6CCmXlSE4UVceloys8JrFqCcHloC3usd/kJCyPDwH2SOlzix2j3xaP9sUX3e8+kvkuleAA==";
+ };
+ };
"parse5-4.0.0" = {
name = "parse5";
packageName = "parse5";
@@ -48569,13 +49604,13 @@ let
sha512 = "qTAAlrEsl8s4OiEQY69wDvcMIdQN6wdz5ojQiOy6YRMuynxenON0O5oCpJI6lshc6scgAY8qvJ2On/p+CXY0GA==";
};
};
- "pgpass-1.0.4" = {
+ "pgpass-1.0.5" = {
name = "pgpass";
packageName = "pgpass";
- version = "1.0.4";
+ version = "1.0.5";
src = fetchurl {
- url = "https://registry.npmjs.org/pgpass/-/pgpass-1.0.4.tgz";
- sha512 = "YmuA56alyBq7M59vxVBfPJrGSozru8QAdoNlWuW3cz8l+UX3cWge0vTvjKhsSHSJpo3Bom8/Mm6hf0TR5GY0+w==";
+ url = "https://registry.npmjs.org/pgpass/-/pgpass-1.0.5.tgz";
+ sha512 = "FdW9r/jQZhSeohs1Z3sI1yxFQNFvMcnmfuj4WBMUTxOrAyLMaTcE1aAMBiTlbMNaXvBCQuVi0R7hd8udDSP7ug==";
};
};
"phin-2.9.3" = {
@@ -48614,15 +49649,6 @@ let
sha512 = "1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==";
};
};
- "picomatch-2.2.3" = {
- name = "picomatch";
- packageName = "picomatch";
- version = "2.2.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/picomatch/-/picomatch-2.2.3.tgz";
- sha512 = "KpELjfwcCDUb9PeigTs2mBJzXUPzAuP2oPcA989He8Rte0+YUAjw1JVedDhuTKPkHjSYzMN3npC9luThGYEKdg==";
- };
- };
"picomatch-2.3.0" = {
name = "picomatch";
packageName = "picomatch";
@@ -48758,6 +49784,15 @@ let
sha512 = "qEHLtKcmYcid6s2qjlGTxaLe9Lq1IiGmd74IZb9Obi/FRTaA+ymb8FD/cmOIL4vt6ug/EtmhGwxZbiGhI+7cuQ==";
};
};
+ "pino-7.6.2" = {
+ name = "pino";
+ packageName = "pino";
+ version = "7.6.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pino/-/pino-7.6.2.tgz";
+ sha512 = "GTzW+HHOzUTaPIyvK6tasky2jMXF1o3iw7Oc2ik7qFjcaexXfyn6ej72XwX4O+wuRyFCbp3oKpv00htrPddv5A==";
+ };
+ };
"pino-abstract-transport-0.5.0" = {
name = "pino-abstract-transport";
packageName = "pino-abstract-transport";
@@ -48767,6 +49802,15 @@ let
sha512 = "+KAgmVeqXYbTtU2FScx1XS3kNyfZ5TrXY07V96QnUSFqo2gAqlvmaxH67Lj7SWazqsMabf+58ctdTcBgnOLUOQ==";
};
};
+ "pino-pretty-7.3.0" = {
+ name = "pino-pretty";
+ packageName = "pino-pretty";
+ version = "7.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pino-pretty/-/pino-pretty-7.3.0.tgz";
+ sha512 = "HAhShJ2z2QzxXhYAn6XfwYpF13o1PQbjzSNA9q+30FAvhjOmeACit9lprhV/mCOw/8YFWSyyNk0YCq2EDYGYpw==";
+ };
+ };
"pino-std-serializers-4.0.0" = {
name = "pino-std-serializers";
packageName = "pino-std-serializers";
@@ -49001,15 +50045,6 @@ let
sha1 = "7482452c1a0f508e3e344eaec312c91c29dc655a";
};
};
- "plur-3.1.1" = {
- name = "plur";
- packageName = "plur";
- version = "3.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/plur/-/plur-3.1.1.tgz";
- sha512 = "t1Ax8KUvV3FFII8ltczPn2tJdjqbd1sIzu6t4JL7nQ3EyeL/lTrj5PWKb06ic5/6XYDr65rQ4uzQEGN70/6X5w==";
- };
- };
"plur-4.0.0" = {
name = "plur";
packageName = "plur";
@@ -49722,13 +50757,13 @@ let
sha512 = "rBkDbaHAu5uywbCR2XE8a25tats3xSOsGNx6mppK6Q9kSFGKc/FyAzfci+fWM2l+K402p1D0pNcfDGxeje5IKg==";
};
};
- "postcss-reporter-7.0.4" = {
+ "postcss-reporter-7.0.5" = {
name = "postcss-reporter";
packageName = "postcss-reporter";
- version = "7.0.4";
+ version = "7.0.5";
src = fetchurl {
- url = "https://registry.npmjs.org/postcss-reporter/-/postcss-reporter-7.0.4.tgz";
- sha512 = "jY/fnpGSin7kwJeunXbY35STp5O3VIxSFdjee5JkoPQ+FfGH5JW3N+Xe9oAPcL9UkjWjkK+JC72o8XH4XXKdhw==";
+ url = "https://registry.npmjs.org/postcss-reporter/-/postcss-reporter-7.0.5.tgz";
+ sha512 = "glWg7VZBilooZGOFPhN9msJ3FQs19Hie7l5a/eE6WglzYqVeH3ong3ShFcp9kDWJT1g2Y/wd59cocf9XxBtkWA==";
};
};
"postcss-resolve-nested-selector-0.1.1" = {
@@ -49821,13 +50856,13 @@ let
sha512 = "36P2QR59jDTOAiIkqEprfJDsoNrvwFei3eCqKd1Y0tUsBimsq39BLp7RD+JWny3WgB1zGhJX8XVePwm9k4wdBg==";
};
};
- "postcss-selector-parser-6.0.7" = {
+ "postcss-selector-parser-6.0.8" = {
name = "postcss-selector-parser";
packageName = "postcss-selector-parser";
- version = "6.0.7";
+ version = "6.0.8";
src = fetchurl {
- url = "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.7.tgz";
- sha512 = "U+b/Deoi4I/UmE6KOVPpnhS7I7AYdKbhGcat+qTQ27gycvaACvNEw11ba6RrkwVmDVRW7sigWgLj4/KbbJjeDA==";
+ url = "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.8.tgz";
+ sha512 = "D5PG53d209Z1Uhcc0qAZ5U3t5HagH3cxu+WLZ22jt3gLUpXM4eXXfiO14jiDWST3NNooX/E8wISfOhZ9eIjGTQ==";
};
};
"postcss-svgo-4.0.3" = {
@@ -50334,15 +51369,6 @@ let
sha512 = "7PtVymN48hGcO4fGjybyBSIWDsLU4H4XlvOHfq91pz9kkGlonzwTfYkaIEwiRg/dAJF9YlbsduBAgtYLi+8cFg==";
};
};
- "prettier-2.5.0" = {
- name = "prettier";
- packageName = "prettier";
- version = "2.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/prettier/-/prettier-2.5.0.tgz";
- sha512 = "FM/zAKgWTxj40rH03VxzIPdXmj39SwSjwG0heUcNFwI+EMZJnY93yAiKXM3dObIKAM5TA88werc8T/EwhB45eg==";
- };
- };
"prettier-2.5.1" = {
name = "prettier";
packageName = "prettier";
@@ -50667,6 +51693,15 @@ let
sha512 = "fMyMQbKCxX51YxR7YGCzPjLsU3yDzXFkP4oi1/Mt5Ixnk7GO/7uUTj8mrCHUwuvozWzI+V7QSJR9cZYnwNOZPg==";
};
};
+ "process-warning-1.0.0" = {
+ name = "process-warning";
+ packageName = "process-warning";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/process-warning/-/process-warning-1.0.0.tgz";
+ sha512 = "du4wfLyj4yCZq1VupnVSZmRsPJsNuxoDQFdCFHLaYiEbFBD7QE0a+I4D7hOxrVnh78QE/YipFAj9lXHiXocV+Q==";
+ };
+ };
"progbar-1.2.1" = {
name = "progbar";
packageName = "progbar";
@@ -50955,13 +51990,13 @@ let
sha1 = "26a5d6ee8c7dee4cb12208305acfb93ba382a9ee";
};
};
- "prop-types-15.7.2" = {
+ "prop-types-15.8.0" = {
name = "prop-types";
packageName = "prop-types";
- version = "15.7.2";
+ version = "15.8.0";
src = fetchurl {
- url = "https://registry.npmjs.org/prop-types/-/prop-types-15.7.2.tgz";
- sha512 = "8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==";
+ url = "https://registry.npmjs.org/prop-types/-/prop-types-15.8.0.tgz";
+ sha512 = "fDGekdaHh65eI3lMi5OnErU6a8Ighg2KjcjQxO7m8VHyWjcPyj5kiOgV1LQDOOOgVy3+5FgjXvdSSX7B8/5/4g==";
};
};
"proper-lockfile-2.0.1" = {
@@ -52107,40 +53142,13 @@ let
sha512 = "2cP8mBoqnu5gzAVpbZ0fRaobBWZM8GEUF4I1F6WbgHrKV/rz7SX8PG2wMymZgD0wo0UBlg2FBPNxlF/xlqW6+w==";
};
};
- "puppeteer-13.0.0" = {
+ "puppeteer-13.0.1" = {
name = "puppeteer";
packageName = "puppeteer";
- version = "13.0.0";
+ version = "13.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/puppeteer/-/puppeteer-13.0.0.tgz";
- sha512 = "kZfGAieIVSo4bFqYuvY2KvhgP9txzmPbbnpZIzLlfdt8nEu9evXEwsbBt1BHocVQM4fJmCiS+FRyw7c8aWadNg==";
- };
- };
- "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==";
- };
- };
- "purescript-0.14.4" = {
- name = "purescript";
- packageName = "purescript";
- version = "0.14.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/purescript/-/purescript-0.14.4.tgz";
- sha512 = "9Lq2qvyVkQoKUBSNOEBKIJjtD5sDwThurSt3SRdtSseaA03p1Fk7VxbUr9HV/gHLVZPIkOhPtjvZGUNs5U2PDA==";
- };
- };
- "purescript-installer-0.2.5" = {
- name = "purescript-installer";
- packageName = "purescript-installer";
- version = "0.2.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/purescript-installer/-/purescript-installer-0.2.5.tgz";
- sha512 = "fQAWWP5a7scuchXecjpU4r4KEgSPuS6bBnaP01k9f71qqD28HaJ2m4PXHFkhkR4oATAxTPIGCtmTwtVoiBOHog==";
+ url = "https://registry.npmjs.org/puppeteer/-/puppeteer-13.0.1.tgz";
+ sha512 = "wqGIx59LzYqWhYcJQphMT+ux0sgatEUbjKG0lbjJxNVqVIT3ZC5m4Bvmq2gHE3qhb63EwS+rNkql08bm4BvO0A==";
};
};
"purgecss-2.3.0" = {
@@ -52188,13 +53196,13 @@ let
sha1 = "15931d3cd967ade52206f523aa7331aef7d43af7";
};
};
- "pyright-1.1.196" = {
+ "pyright-1.1.202" = {
name = "pyright";
packageName = "pyright";
- version = "1.1.196";
+ version = "1.1.202";
src = fetchurl {
- url = "https://registry.npmjs.org/pyright/-/pyright-1.1.196.tgz";
- sha512 = "63LF3JNElRU9wkCLgJLk8NMi4tJ/aB97itckp19zb4g8wXmlc90nyvA5bUk19ey10R4yAmlp8ol8Tz/mxAUmGQ==";
+ url = "https://registry.npmjs.org/pyright/-/pyright-1.1.202.tgz";
+ sha512 = "P3jLqklz+O7RIEMosDEVx9W+EfOtes9UopnGSkLx3S/E12japllf83aaXCvHbxvANWFLZ1ToztgOkYrVcXhYsg==";
};
};
"q-0.9.7" = {
@@ -52998,13 +54006,13 @@ let
sha512 = "wuygyq8TXUlSdVXv2kigXxQNOgdb9m7LbIjwfTNGSpaY1riLd5e+VeQjlQMyUtrk0oiyhi1AqIVynworl3qxHA==";
};
};
- "re2-1.17.1" = {
+ "re2-1.17.2" = {
name = "re2";
packageName = "re2";
- version = "1.17.1";
+ version = "1.17.2";
src = fetchurl {
- url = "https://registry.npmjs.org/re2/-/re2-1.17.1.tgz";
- sha512 = "TrhxVzakyO/WJsErkc01zjlEiDLCuuRuddbVi2I8YasIbh6MEJfkRoajBRj+ggm00gnGI2EMemE9GrlKrgUZ8Q==";
+ url = "https://registry.npmjs.org/re2/-/re2-1.17.2.tgz";
+ sha512 = "z+OkvKWvm6+pDW4gwMHFuHDL8ZE/lg4cYH0/p8DBh3EEfQgBDbG56n7TJkFFKKWmFOaKPjZE4pLNQoBfqEMZ+g==";
};
};
"reachdown-1.1.0" = {
@@ -53547,6 +54555,15 @@ let
sha512 = "BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==";
};
};
+ "readable-web-to-node-stream-2.0.0" = {
+ name = "readable-web-to-node-stream";
+ packageName = "readable-web-to-node-stream";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/readable-web-to-node-stream/-/readable-web-to-node-stream-2.0.0.tgz";
+ sha512 = "+oZJurc4hXpaaqsN68GoZGQAQIA3qr09Or4fqEsargABnbe5Aau8hFn6ISVleT3cpY/0n/8drn7huyyEvTbghA==";
+ };
+ };
"readable-web-to-node-stream-3.0.2" = {
name = "readable-web-to-node-stream";
packageName = "readable-web-to-node-stream";
@@ -54312,15 +55329,6 @@ let
sha1 = "592a347bdd3d5881f4f080c98b5b152fb1407a92";
};
};
- "remark-lint-6.0.6" = {
- name = "remark-lint";
- packageName = "remark-lint";
- version = "6.0.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/remark-lint/-/remark-lint-6.0.6.tgz";
- sha512 = "JBY6zz5fYQFN724Vq6VeiHwhyjVIlrww/dE1+hWGcDyUuz7YNCqwZKwBdQGDvslICkzHw/wEExNEb8D4PNiLlA==";
- };
- };
"remark-lint-8.0.0" = {
name = "remark-lint";
packageName = "remark-lint";
@@ -54330,15 +55338,6 @@ let
sha512 = "ESI8qJQ/TIRjABDnqoFsTiZntu+FRifZ5fJ77yX63eIDijl/arvmDvT+tAf75/Nm5BFL4R2JFUtkHRGVjzYUsg==";
};
};
- "remark-lint-blockquote-indentation-1.0.4" = {
- name = "remark-lint-blockquote-indentation";
- packageName = "remark-lint-blockquote-indentation";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/remark-lint-blockquote-indentation/-/remark-lint-blockquote-indentation-1.0.4.tgz";
- sha512 = "ExcDP7lufshEBNkVddSHa+Bz/97PtFstIniQ8ZF2TahHPmpx92z3mkI/nXL2Qt5d3B09eTVvh4Pvhgp6x2470g==";
- };
- };
"remark-lint-blockquote-indentation-2.0.1" = {
name = "remark-lint-blockquote-indentation";
packageName = "remark-lint-blockquote-indentation";
@@ -54366,15 +55365,6 @@ let
sha512 = "+T4+hoY85qZE2drD2rCe14vF7fAgD3Kv2fkFd1HRvv3M5Riy148w/4YeoBI5U5BpybGTVUeEUYLCeJ8zbJLjkw==";
};
};
- "remark-lint-code-block-style-1.0.4" = {
- name = "remark-lint-code-block-style";
- packageName = "remark-lint-code-block-style";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/remark-lint-code-block-style/-/remark-lint-code-block-style-1.0.4.tgz";
- sha512 = "Wq5F94nkaWTx8W/9C/ydG+DhVWLirBrWb0xnoMQ0cHnizAd3BWw8g0x5L7yglMYSUSVLWY0jfMHgOe9UW3JfTw==";
- };
- };
"remark-lint-code-block-style-2.0.1" = {
name = "remark-lint-code-block-style";
packageName = "remark-lint-code-block-style";
@@ -54384,15 +55374,6 @@ let
sha512 = "eRhmnColmSxJhO61GHZkvO67SpHDshVxs2j3+Zoc5Y1a4zQT2133ZAij04XKaBFfsVLjhbY/+YOWxgvtjx2nmA==";
};
};
- "remark-lint-definition-case-1.0.5" = {
- name = "remark-lint-definition-case";
- packageName = "remark-lint-definition-case";
- version = "1.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/remark-lint-definition-case/-/remark-lint-definition-case-1.0.5.tgz";
- sha512 = "iirq74fKhJZsFw7x4FJuLVRkXclntutG1YKajfLaE3Gm14YlJWBEoabNTk+ENR4QXoB9rTdEqn3Cc3ImO8qciQ==";
- };
- };
"remark-lint-definition-case-2.0.1" = {
name = "remark-lint-definition-case";
packageName = "remark-lint-definition-case";
@@ -54402,15 +55383,6 @@ let
sha512 = "M+XlThtQwEJLQnQb5Gi6xZdkw92rGp7m2ux58WMw/Qlcg02WgHR/O0OcHPe5VO5hMJrtI+cGG5T0svsCgRZd3w==";
};
};
- "remark-lint-definition-spacing-1.0.5" = {
- name = "remark-lint-definition-spacing";
- packageName = "remark-lint-definition-spacing";
- version = "1.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/remark-lint-definition-spacing/-/remark-lint-definition-spacing-1.0.5.tgz";
- sha512 = "ss8OQmK4c/1amEAJpDjkFiByLyXpsYFNzmk6rEZQkxZZd+DVHI0oF+CzSeMVHu48rF2qHOkKhVghqrCM0vleAA==";
- };
- };
"remark-lint-definition-spacing-2.0.1" = {
name = "remark-lint-definition-spacing";
packageName = "remark-lint-definition-spacing";
@@ -54429,15 +55401,6 @@ let
sha512 = "0zHUJimo0fNAqQPzwt6ii9pRYCxBU0wqilVlily1RxRyTqhy0ANgTQOERMaf+lkTEN1ADEeoyh9gE7VWzqI+WA==";
};
};
- "remark-lint-emphasis-marker-1.0.4" = {
- name = "remark-lint-emphasis-marker";
- packageName = "remark-lint-emphasis-marker";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/remark-lint-emphasis-marker/-/remark-lint-emphasis-marker-1.0.4.tgz";
- sha512 = "TdYISSw7Ib6EJDApDj9zcZNDCJEaEoQIrYS3+QH2TQxoDx96B0t1bbErRM5L/hx1UWPBpeFLKpgIWL163eMmYA==";
- };
- };
"remark-lint-emphasis-marker-2.0.1" = {
name = "remark-lint-emphasis-marker";
packageName = "remark-lint-emphasis-marker";
@@ -54447,24 +55410,6 @@ let
sha512 = "7mpbAUrSnHiWRyGkbXRL5kfSKY9Cs8cdob7Fw+Z02/pufXMF4yRWaegJ5NTUu1RE+SKlF44wtWWjvcIoyY6/aw==";
};
};
- "remark-lint-fenced-code-flag-1.0.4" = {
- name = "remark-lint-fenced-code-flag";
- packageName = "remark-lint-fenced-code-flag";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/remark-lint-fenced-code-flag/-/remark-lint-fenced-code-flag-1.0.4.tgz";
- sha512 = "bkQvlEYco6ZzdzvGPrY7DBsqSq/2mZEmdhpn0KdMEZ9kcKJP4unQdVQys04SKnf9QISqQ446VnQj5Q4E3HMSkQ==";
- };
- };
- "remark-lint-fenced-code-marker-1.0.4" = {
- name = "remark-lint-fenced-code-marker";
- packageName = "remark-lint-fenced-code-marker";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/remark-lint-fenced-code-marker/-/remark-lint-fenced-code-marker-1.0.4.tgz";
- sha512 = "aJF4ISIEvK3NX+C2rN93QoS/32SSiytQKRSeGa+HwsAn3sTwqmy2IoAwbFeZIZA2vqKcVB4h1b9yKamSlfX30Q==";
- };
- };
"remark-lint-fenced-code-marker-2.0.1" = {
name = "remark-lint-fenced-code-marker";
packageName = "remark-lint-fenced-code-marker";
@@ -54483,15 +55428,6 @@ let
sha512 = "oVQdf5vEomwHkfQ7R/mgmsWW2H/t9kSvnrxtVoNOHr+qnOEafKKDn+AFhioN2kqtjCZBAjSSrePs6xGKmXKDTw==";
};
};
- "remark-lint-final-definition-1.0.4" = {
- name = "remark-lint-final-definition";
- packageName = "remark-lint-final-definition";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/remark-lint-final-definition/-/remark-lint-final-definition-1.0.4.tgz";
- sha512 = "y9aDZPhqWcI7AtrJtL69HE6MoWMqDqLQUyWMadzAYUYb9/m4ciLdygJ4cWVpEN3n4mkBepHIsWzASaKHHBDJOQ==";
- };
- };
"remark-lint-final-newline-1.0.5" = {
name = "remark-lint-final-newline";
packageName = "remark-lint-final-newline";
@@ -54501,15 +55437,6 @@ let
sha512 = "rfLlW8+Fz2dqnaEgU4JwLA55CQF1T4mfSs/GwkkeUCGPenvEYwSkCN2KO2Gr1dy8qPoOdTFE1rSufLjmeTW5HA==";
};
};
- "remark-lint-hard-break-spaces-1.0.5" = {
- name = "remark-lint-hard-break-spaces";
- packageName = "remark-lint-hard-break-spaces";
- version = "1.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/remark-lint-hard-break-spaces/-/remark-lint-hard-break-spaces-1.0.5.tgz";
- sha512 = "Rss7ujNtxipO/hasWYc0QdiO8D5VyliSwj3zAZ8GeDn0ix2KH+pY4/AJC7i9IGcVVbUGvvXLpJB3Pp1VeY7oKw==";
- };
- };
"remark-lint-hard-break-spaces-2.0.1" = {
name = "remark-lint-hard-break-spaces";
packageName = "remark-lint-hard-break-spaces";
@@ -54519,24 +55446,6 @@ let
sha512 = "Qfn/BMQFamHhtbfLrL8Co/dbYJFLRL4PGVXZ5wumkUO5f9FkZC2RsV+MD9lisvGTkJK0ZEJrVVeaPbUIFM0OAw==";
};
};
- "remark-lint-heading-increment-1.0.4" = {
- name = "remark-lint-heading-increment";
- packageName = "remark-lint-heading-increment";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/remark-lint-heading-increment/-/remark-lint-heading-increment-1.0.4.tgz";
- sha512 = "3PJj32G7W1OUyRVSZiZbSOxyFAsw/mNssIosS9G8+6Lq2yeTSMDoCJy0+LC+s00nORFcbzeMedMK5U/eLbDe4w==";
- };
- };
- "remark-lint-heading-style-1.0.4" = {
- name = "remark-lint-heading-style";
- packageName = "remark-lint-heading-style";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/remark-lint-heading-style/-/remark-lint-heading-style-1.0.4.tgz";
- sha512 = "ASssbw0vj9urTMxDJGpOn4K7d9MgPQPJGaCD+7v7je42krofvqC4CxpYvO/fOAkRZcttE91VfFHxkaPjiBtQLw==";
- };
- };
"remark-lint-heading-style-2.0.1" = {
name = "remark-lint-heading-style";
packageName = "remark-lint-heading-style";
@@ -54546,15 +55455,6 @@ let
sha512 = "IrFLNs0M5Vbn9qg51AYhGUfzgLAcDOjh2hFGMz3mx664dV6zLcNZOPSdJBBJq3JQR4gKpoXcNwN1+FFaIATj+A==";
};
};
- "remark-lint-link-title-style-1.0.5" = {
- name = "remark-lint-link-title-style";
- packageName = "remark-lint-link-title-style";
- version = "1.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/remark-lint-link-title-style/-/remark-lint-link-title-style-1.0.5.tgz";
- sha512 = "Nu0cKj220q/PmUzELhYRUR2uxXabWuFJq9sApkgsc59uh+NKDtCEdpxkx7Zwvn6kUEwpuQVimeRfdesiKxX52g==";
- };
- };
"remark-lint-link-title-style-2.0.1" = {
name = "remark-lint-link-title-style";
packageName = "remark-lint-link-title-style";
@@ -54573,15 +55473,6 @@ let
sha512 = "X2rleWP8XReC4LXKF7Qi5vYiPJkA4Grx5zxsjHofFrVRz6j0PYOCuz7vsO+ZzMunFMfom6FODnscSWz4zouDVw==";
};
};
- "remark-lint-list-item-content-indent-1.0.4" = {
- name = "remark-lint-list-item-content-indent";
- packageName = "remark-lint-list-item-content-indent";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/remark-lint-list-item-content-indent/-/remark-lint-list-item-content-indent-1.0.4.tgz";
- sha512 = "zfEeAayZjEKkPr07fnhkGLENxOhnm0WZJTj6UBIXhtGu7rX23WNKSZaiou8iUoHxcO6ySCvIUJAEmq/XN1FxkQ==";
- };
- };
"remark-lint-list-item-content-indent-2.0.1" = {
name = "remark-lint-list-item-content-indent";
packageName = "remark-lint-list-item-content-indent";
@@ -54591,15 +55482,6 @@ let
sha512 = "OzUMqavxyptAdG7vWvBSMc9mLW9ZlTjbW4XGayzczd3KIr6Uwp3NEFXKx6MLtYIM/vwBqMrPQUrObOC7A2uBpQ==";
};
};
- "remark-lint-list-item-indent-1.0.5" = {
- name = "remark-lint-list-item-indent";
- packageName = "remark-lint-list-item-indent";
- version = "1.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/remark-lint-list-item-indent/-/remark-lint-list-item-indent-1.0.5.tgz";
- sha512 = "DjRgxjqaVMrnlQFJypizTPtLa9gSM5ad0LVIFDSstV2UVXSgpBi2+bSsFJEXb4Fkjo/d2JAgt27UhzhcoF2lnw==";
- };
- };
"remark-lint-list-item-indent-2.0.1" = {
name = "remark-lint-list-item-indent";
packageName = "remark-lint-list-item-indent";
@@ -54609,15 +55491,6 @@ let
sha512 = "4IKbA9GA14Q9PzKSQI6KEHU/UGO36CSQEjaDIhmb9UOhyhuzz4vWhnSIsxyI73n9nl9GGRAMNUSGzr4pQUFwTA==";
};
};
- "remark-lint-list-item-spacing-1.1.4" = {
- name = "remark-lint-list-item-spacing";
- packageName = "remark-lint-list-item-spacing";
- version = "1.1.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/remark-lint-list-item-spacing/-/remark-lint-list-item-spacing-1.1.4.tgz";
- sha512 = "zZELzTPYCoOCnOWh/nYTfQWnGXWg4/I5KpwrjBqe7WYwoMtvLVU9mqjRj2jHEbmirEXas54NZnYnkCoIBMS4bw==";
- };
- };
"remark-lint-match-punctuation-0.2.1" = {
name = "remark-lint-match-punctuation";
packageName = "remark-lint-match-punctuation";
@@ -54627,33 +55500,6 @@ let
sha512 = "XgarnmpBHMsCNRnhTNLf/8dDe5/gXdA/mQnBDPG/XZFNMebS6GFnWQpuL3cyzLmuWD62I1A5ouZczRZcrWYrTQ==";
};
};
- "remark-lint-maximum-heading-length-1.0.4" = {
- name = "remark-lint-maximum-heading-length";
- packageName = "remark-lint-maximum-heading-length";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/remark-lint-maximum-heading-length/-/remark-lint-maximum-heading-length-1.0.4.tgz";
- sha512 = "dhDBnUFXMuHoW8LSV/VICJAJO+wWumnvuu3ND7MJquCYrsjX2vcRmJXL5cusJSY4yqPosKlOowIkzdV5B6/SDQ==";
- };
- };
- "remark-lint-maximum-line-length-1.2.2" = {
- name = "remark-lint-maximum-line-length";
- packageName = "remark-lint-maximum-line-length";
- version = "1.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/remark-lint-maximum-line-length/-/remark-lint-maximum-line-length-1.2.2.tgz";
- sha512 = "ItAdjK+tUhqggqFvtAJ8iJ0MbBgShLl0HDgpG3In0QSYp/dmofO77DjvRjCJQo1pQYS8/LwlBii9cqg/3MwFfA==";
- };
- };
- "remark-lint-no-auto-link-without-protocol-1.0.4" = {
- name = "remark-lint-no-auto-link-without-protocol";
- packageName = "remark-lint-no-auto-link-without-protocol";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/remark-lint-no-auto-link-without-protocol/-/remark-lint-no-auto-link-without-protocol-1.0.4.tgz";
- sha512 = "dhDHQLeaI79p7SRoKfxJ9c8J5otQsGua7ILeNbs2Onzn46/tp9ir6zjq3Lfh4VJJr4OVign2e8u+MzXsS7Uu/A==";
- };
- };
"remark-lint-no-auto-link-without-protocol-2.0.1" = {
name = "remark-lint-no-auto-link-without-protocol";
packageName = "remark-lint-no-auto-link-without-protocol";
@@ -54663,15 +55509,6 @@ let
sha512 = "TFcXxzucsfBb/5uMqGF1rQA+WJJqm1ZlYQXyvJEXigEZ8EAxsxZGPb/gOQARHl/y0vymAuYxMTaChavPKaBqpQ==";
};
};
- "remark-lint-no-blockquote-without-marker-2.0.4" = {
- name = "remark-lint-no-blockquote-without-marker";
- packageName = "remark-lint-no-blockquote-without-marker";
- version = "2.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/remark-lint-no-blockquote-without-marker/-/remark-lint-no-blockquote-without-marker-2.0.4.tgz";
- sha512 = "a5LFGj7It2z7aBRGaAcztk4D2pax2b7dK9iOarIWv/JBus/PSjZJxzZCma2aAAOQhv3wbNTwqQwuQC0UJHMbPg==";
- };
- };
"remark-lint-no-blockquote-without-marker-4.0.0" = {
name = "remark-lint-no-blockquote-without-marker";
packageName = "remark-lint-no-blockquote-without-marker";
@@ -54681,33 +55518,6 @@ let
sha512 = "Y59fMqdygRVFLk1gpx2Qhhaw5IKOR9T38Wf7pjR07bEFBGUNfcoNVIFMd1TCJfCPQxUyJzzSqfZz/KT7KdUuiQ==";
};
};
- "remark-lint-no-consecutive-blank-lines-1.0.4" = {
- name = "remark-lint-no-consecutive-blank-lines";
- packageName = "remark-lint-no-consecutive-blank-lines";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/remark-lint-no-consecutive-blank-lines/-/remark-lint-no-consecutive-blank-lines-1.0.4.tgz";
- sha512 = "33rYrp+3OQ2UjG2/xhctruCvkP2iKLuHJhoUOAUV3BGwqJjAB+xNOl+0DdvDo0fxh5dyZuNesBuos3xr2yVR+w==";
- };
- };
- "remark-lint-no-duplicate-headings-1.0.5" = {
- name = "remark-lint-no-duplicate-headings";
- packageName = "remark-lint-no-duplicate-headings";
- version = "1.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/remark-lint-no-duplicate-headings/-/remark-lint-no-duplicate-headings-1.0.5.tgz";
- sha512 = "4GKPxhKpN797V/6Jg1K4Zwqq+PhsjC633+wQMrZcTvOJfY+Rq1i7sNJ9lJVZnsDAlZJI56VqZCKnPJmS2br87g==";
- };
- };
- "remark-lint-no-emphasis-as-heading-1.0.4" = {
- name = "remark-lint-no-emphasis-as-heading";
- packageName = "remark-lint-no-emphasis-as-heading";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/remark-lint-no-emphasis-as-heading/-/remark-lint-no-emphasis-as-heading-1.0.4.tgz";
- sha512 = "gnsInLxTkc59eVD3/qelFagD/NcrMPKXT1sy7i4e8D2jqQyrIHHl0p3TfiyNNt8qIjKMKhlIii4k4kVk/3Mczg==";
- };
- };
"remark-lint-no-emphasis-as-heading-2.0.1" = {
name = "remark-lint-no-emphasis-as-heading";
packageName = "remark-lint-no-emphasis-as-heading";
@@ -54789,15 +55599,6 @@ let
sha512 = "b8ImhLv2AnRDxtYUODplzsl/7IwQ+lqRmD1bwbZgSerEP9MLaULW3SjH37EyA6z+8rCDjvEyppKKU6zec0TCjg==";
};
};
- "remark-lint-no-heading-punctuation-1.0.4" = {
- name = "remark-lint-no-heading-punctuation";
- packageName = "remark-lint-no-heading-punctuation";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/remark-lint-no-heading-punctuation/-/remark-lint-no-heading-punctuation-1.0.4.tgz";
- sha512 = "++/HXg/qtVssJjzq2ZgEreoxaazw9KkYrAbTDImKV7Fypo+7bZFELUvFicq0/i9qwAwt1tvhkKtLYt1W/sr1JQ==";
- };
- };
"remark-lint-no-heading-punctuation-2.0.1" = {
name = "remark-lint-no-heading-punctuation";
packageName = "remark-lint-no-heading-punctuation";
@@ -54807,15 +55608,6 @@ let
sha512 = "lY/eF6GbMeGu4cSuxfGHyvaQQBIq/6T/o+HvAR5UfxSTxmxZFwbZneAI2lbeR1zPcqOU87NsZ5ZZzWVwdLpPBw==";
};
};
- "remark-lint-no-inline-padding-1.0.5" = {
- name = "remark-lint-no-inline-padding";
- packageName = "remark-lint-no-inline-padding";
- version = "1.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/remark-lint-no-inline-padding/-/remark-lint-no-inline-padding-1.0.5.tgz";
- sha512 = "AjS34hBRasYiIAKZJ7/9U42LouRHok2WVTRdQPcVtRBswStNOuot59S+FRsatqlk1wvMmjytqxUKQfVTSeu9ag==";
- };
- };
"remark-lint-no-inline-padding-3.0.0" = {
name = "remark-lint-no-inline-padding";
packageName = "remark-lint-no-inline-padding";
@@ -54825,24 +55617,6 @@ let
sha512 = "3s9uW3Yux9RFC0xV81MQX3bsYs+UY7nPnRuMxeIxgcVwxQ4E/mTJd9QjXUwBhU9kdPtJ5AalngdmOW2Tgar8Cg==";
};
};
- "remark-lint-no-literal-urls-1.0.4" = {
- name = "remark-lint-no-literal-urls";
- packageName = "remark-lint-no-literal-urls";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/remark-lint-no-literal-urls/-/remark-lint-no-literal-urls-1.0.4.tgz";
- sha512 = "sHjbzaSG4z6jMu1L0Qx1b7VvIQHy0bR4xZ6t9auJ5AoB5ua8hb/970s77irH1+46TF1ezhE7i+QDjmhcQi09xg==";
- };
- };
- "remark-lint-no-multiple-toplevel-headings-1.0.5" = {
- name = "remark-lint-no-multiple-toplevel-headings";
- packageName = "remark-lint-no-multiple-toplevel-headings";
- version = "1.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/remark-lint-no-multiple-toplevel-headings/-/remark-lint-no-multiple-toplevel-headings-1.0.5.tgz";
- sha512 = "RZ1YPxRO7Bo8mT+A36cZ7nx2QHFAKk+oE6j87YrZYpAKr2oF6snKS8nIGhVku4PSI/9cW1G12MZz1cAA5rcjFw==";
- };
- };
"remark-lint-no-multiple-toplevel-headings-2.0.1" = {
name = "remark-lint-no-multiple-toplevel-headings";
packageName = "remark-lint-no-multiple-toplevel-headings";
@@ -54861,15 +55635,6 @@ let
sha512 = "JJduCs4FimdBcR1AB576SqIYOjt+7t8OjTnnlZMvjnw7lzkuL0+nNNHyNXVPaK6jxaLjEUhrH2/smU6vZFUT7g==";
};
};
- "remark-lint-no-shell-dollars-1.0.4" = {
- name = "remark-lint-no-shell-dollars";
- packageName = "remark-lint-no-shell-dollars";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/remark-lint-no-shell-dollars/-/remark-lint-no-shell-dollars-1.0.4.tgz";
- sha512 = "YXFj8FUVTKkVvoAbFY3zv1Ol7Kj1i+qdze3pXSgRG61y1LpfL8/HpnvFrseMbBmNw6o4WpjTo7GoArngJ1sCeg==";
- };
- };
"remark-lint-no-shell-dollars-2.0.2" = {
name = "remark-lint-no-shell-dollars";
packageName = "remark-lint-no-shell-dollars";
@@ -54879,33 +55644,6 @@ let
sha512 = "zhkHZOuyaD3r/TUUkkVqW0OxsR9fnSrAnHIF63nfJoAAUezPOu8D1NBsni6rX8H2DqGbPYkoeWrNsTwiKP0yow==";
};
};
- "remark-lint-no-shortcut-reference-image-1.0.4" = {
- name = "remark-lint-no-shortcut-reference-image";
- packageName = "remark-lint-no-shortcut-reference-image";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/remark-lint-no-shortcut-reference-image/-/remark-lint-no-shortcut-reference-image-1.0.4.tgz";
- sha512 = "5/9QoesnOHIDwMHU9x+AGPBiFoMe9ZBKIR8nC17C6ZdksgwUIpjBJ3VX5POFlt5E6OhAZaeXqUCq9G2USccEdA==";
- };
- };
- "remark-lint-no-shortcut-reference-link-1.0.5" = {
- name = "remark-lint-no-shortcut-reference-link";
- packageName = "remark-lint-no-shortcut-reference-link";
- version = "1.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/remark-lint-no-shortcut-reference-link/-/remark-lint-no-shortcut-reference-link-1.0.5.tgz";
- sha512 = "qDVL7/0ptOTd/nyd9u/4MYFWQtYQU8povdUB45UgTXy5Rrf1WsC+4DfzAEZkX3tOSTExdAIf1WOKqdC5xRcfvA==";
- };
- };
- "remark-lint-no-table-indentation-1.0.5" = {
- name = "remark-lint-no-table-indentation";
- packageName = "remark-lint-no-table-indentation";
- version = "1.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/remark-lint-no-table-indentation/-/remark-lint-no-table-indentation-1.0.5.tgz";
- sha512 = "eE1GL+IzU3vtHdYCKHCZEIhCwiwCM7UH+pMDIMpGfH2LB3cB/Nrfbiz9xadGkARKqxxDMsJSBZDw4A/01IU+kA==";
- };
- };
"remark-lint-no-table-indentation-3.0.0" = {
name = "remark-lint-no-table-indentation";
packageName = "remark-lint-no-table-indentation";
@@ -54951,15 +55689,6 @@ let
sha512 = "+BMc0BOjc364SvKYLkspmxDch8OaKPbnUGgQBvK0Bmlwy42baR4C9zhwAWBxm0SBy5Z4AyM4G4jKpLXPH40Oxg==";
};
};
- "remark-lint-ordered-list-marker-style-1.0.4" = {
- name = "remark-lint-ordered-list-marker-style";
- packageName = "remark-lint-ordered-list-marker-style";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/remark-lint-ordered-list-marker-style/-/remark-lint-ordered-list-marker-style-1.0.4.tgz";
- sha512 = "c6AIqeePzm3nfkPCbTdwBS3/AQICgwE76+ryOc7tsSq4ulyK/Nt8Syvi/oiHYuonBddZoGtFTNCn0jqen9qscA==";
- };
- };
"remark-lint-ordered-list-marker-style-2.0.1" = {
name = "remark-lint-ordered-list-marker-style";
packageName = "remark-lint-ordered-list-marker-style";
@@ -54969,15 +55698,6 @@ let
sha512 = "Cnpw1Dn9CHn+wBjlyf4qhPciiJroFOEGmyfX008sQ8uGoPZsoBVIJx76usnHklojSONbpjEDcJCjnOvfAcWW1A==";
};
};
- "remark-lint-ordered-list-marker-value-1.0.5" = {
- name = "remark-lint-ordered-list-marker-value";
- packageName = "remark-lint-ordered-list-marker-value";
- version = "1.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/remark-lint-ordered-list-marker-value/-/remark-lint-ordered-list-marker-value-1.0.5.tgz";
- sha512 = "eKepbNNfu9rEuG8WvV0sc7B+KiPMgq5Nc9baAxL9Hi6mhpj347YFWXxJUNttSINS13YTpnHxPvXmF9SzhjFKNQ==";
- };
- };
"remark-lint-ordered-list-marker-value-2.0.1" = {
name = "remark-lint-ordered-list-marker-value";
packageName = "remark-lint-ordered-list-marker-value";
@@ -54987,15 +55707,6 @@ let
sha512 = "blt9rS7OKxZ2NW8tqojELeyNEwPhhTJGVa+YpUkdEH+KnrdcD7Nzhnj6zfLWOx6jFNZk3jpq5nvLFAPteHaNKg==";
};
};
- "remark-lint-rule-style-1.0.4" = {
- name = "remark-lint-rule-style";
- packageName = "remark-lint-rule-style";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/remark-lint-rule-style/-/remark-lint-rule-style-1.0.4.tgz";
- sha512 = "omr5P6CCvo2zixCzK9uiGZpwzOE+4rc+95kWH95k2iA6Rp8Qohp8RK4unSRKLtFYGUhSbiQPgWaQXHDxMkWczg==";
- };
- };
"remark-lint-rule-style-2.0.1" = {
name = "remark-lint-rule-style";
packageName = "remark-lint-rule-style";
@@ -55005,15 +55716,6 @@ let
sha512 = "hz4Ff9UdlYmtO6Czz99WJavCjqCer7Cav4VopXt+yVIikObw96G5bAuLYcVS7hvMUGqC9ZuM02/Y/iq9n8pkAg==";
};
};
- "remark-lint-strong-marker-1.0.4" = {
- name = "remark-lint-strong-marker";
- packageName = "remark-lint-strong-marker";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/remark-lint-strong-marker/-/remark-lint-strong-marker-1.0.4.tgz";
- sha512 = "X9f6yhZ85cdP0cmCgkqlbxllpeQ60pS9Qqk9Jb9SZo6f95esaHptQ5bExb1ZVXzhSHz2Xz86tUhXtzG3zGFD4g==";
- };
- };
"remark-lint-strong-marker-2.0.1" = {
name = "remark-lint-strong-marker";
packageName = "remark-lint-strong-marker";
@@ -55023,15 +55725,6 @@ let
sha512 = "8X2IsW1jZ5FmW9PLfQjkL0OVy/J3xdXLcZrG1GTeQKQ91BrPFyEZqUM2oM6Y4S6LGtxWer+neZkPZNroZoRPBQ==";
};
};
- "remark-lint-table-cell-padding-1.0.5" = {
- name = "remark-lint-table-cell-padding";
- packageName = "remark-lint-table-cell-padding";
- version = "1.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/remark-lint-table-cell-padding/-/remark-lint-table-cell-padding-1.0.5.tgz";
- sha512 = "N/WpcymrGBSPbLiv2OQTvdzNn6H9ctdyEA+P/odn4G9FqyrLmeTMkGJuGtinU569hLG/RtHqZIDeFVDiYi8Wzw==";
- };
- };
"remark-lint-table-cell-padding-3.0.0" = {
name = "remark-lint-table-cell-padding";
packageName = "remark-lint-table-cell-padding";
@@ -55041,15 +55734,6 @@ let
sha512 = "sEKrbyFZPZpxI39R8/r+CwUrin9YtyRwVn0SQkNQEZWZcIpylK+bvoKIldvLIXQPob+ZxklL0GPVRzotQMwuWQ==";
};
};
- "remark-lint-table-pipe-alignment-1.0.4" = {
- name = "remark-lint-table-pipe-alignment";
- packageName = "remark-lint-table-pipe-alignment";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/remark-lint-table-pipe-alignment/-/remark-lint-table-pipe-alignment-1.0.4.tgz";
- sha512 = "pmELEOXeUjMQedyVvOtZcTCnTu6FxZ4gfBskMx6iJhOFEEKTFOmviqlKLpndPBxFNZB86AiE0C00/NvAaut8dw==";
- };
- };
"remark-lint-table-pipe-alignment-2.0.1" = {
name = "remark-lint-table-pipe-alignment";
packageName = "remark-lint-table-pipe-alignment";
@@ -55059,15 +55743,6 @@ let
sha512 = "O89U7bp0ja6uQkT2uQrNB76GaPvFabrHiUGhqEUnld21yEdyj7rgS57kn84lZNSuuvN1Oor6bDyCwWQGzzpoOQ==";
};
};
- "remark-lint-table-pipes-1.0.4" = {
- name = "remark-lint-table-pipes";
- packageName = "remark-lint-table-pipes";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/remark-lint-table-pipes/-/remark-lint-table-pipes-1.0.4.tgz";
- sha512 = "0fdnoiiSLIPd/76gNvQY4pg27d8HkMmmv5gCGfD+Z/Si9DdpbJdq93U0kX+Botb3+/4VEDIlcU7Cp5HXppMTWA==";
- };
- };
"remark-lint-table-pipes-3.0.0" = {
name = "remark-lint-table-pipes";
packageName = "remark-lint-table-pipes";
@@ -55077,15 +55752,6 @@ let
sha512 = "QPokSazEdl0Y8ayUV9UB0Ggn3Jos/RAQwIo0z1KDGnJlGDiF80Jc6iU9RgDNUOjlpQffSLIfSVxH5VVYF/K3uQ==";
};
};
- "remark-lint-unordered-list-marker-style-1.0.4" = {
- name = "remark-lint-unordered-list-marker-style";
- packageName = "remark-lint-unordered-list-marker-style";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/remark-lint-unordered-list-marker-style/-/remark-lint-unordered-list-marker-style-1.0.4.tgz";
- sha512 = "lcuG1J74VGTT4gl8oH33HpkHrqorxjxMlJnBupLFrVowqvJ2hAq8yPJdGZ7P46uZOYw+Xz+Qv08bF8A73PNWxQ==";
- };
- };
"remark-lint-unordered-list-marker-style-2.0.1" = {
name = "remark-lint-unordered-list-marker-style";
packageName = "remark-lint-unordered-list-marker-style";
@@ -55122,15 +55788,6 @@ let
sha512 = "Z/+0eWc7pBEABwg3a5ptL+vCTWHYMFnYzpLoJxTm2muBSk8XyB/CL+tEJ6SV3Q/fScHX2dtG4JRcGSpbZFLazQ==";
};
};
- "remark-message-control-4.2.0" = {
- name = "remark-message-control";
- packageName = "remark-message-control";
- version = "4.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/remark-message-control/-/remark-message-control-4.2.0.tgz";
- sha512 = "WXH2t5ljTyhsXlK1zPBLF3iPHbXl58R94phPMreS1xcHWBZJt6Oiu8RtNjy1poZFb3PqKnbYLJeR/CWcZ1bTFw==";
- };
- };
"remark-message-control-6.0.0" = {
name = "remark-message-control";
packageName = "remark-message-control";
@@ -55203,24 +55860,6 @@ let
sha512 = "geKatMwSzEXKHuzBNU1z676sGcDcFoChMK38TgdHJNAYfFtsfHDQG7MoJAjs6sgYMqyLduCYWDIWZIxiPeafEw==";
};
};
- "remark-preset-lint-markdown-style-guide-2.1.4" = {
- name = "remark-preset-lint-markdown-style-guide";
- packageName = "remark-preset-lint-markdown-style-guide";
- version = "2.1.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/remark-preset-lint-markdown-style-guide/-/remark-preset-lint-markdown-style-guide-2.1.4.tgz";
- sha512 = "CGEN3DRtJEp+BvfgZ+VKxuq0Ij8Uw2DXfrbhK2xn4/XxatcHRPN8tnagXbMe1LHaQJGN8Gl1+UyLjsfIk6hyGQ==";
- };
- };
- "remark-retext-3.1.3" = {
- name = "remark-retext";
- packageName = "remark-retext";
- version = "3.1.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/remark-retext/-/remark-retext-3.1.3.tgz";
- sha512 = "UujXAm28u4lnUvtOZQFYfRIhxX+auKI9PuA2QpQVTT7gYk1OgX6o0OUrSo1KOa6GNrFX+OODOtS5PWIHPxM7qw==";
- };
- };
"remark-retext-4.0.0" = {
name = "remark-retext";
packageName = "remark-retext";
@@ -55500,13 +56139,13 @@ let
sha512 = "fimzjIVw506FBZLspTAXHdpvgvQebyjpNyLRd0e6drPPRq7gcrROeGWRyF81wLqFg5ijPgnOQbmfck5wdTqpSA==";
};
};
- "request-light-0.5.5" = {
+ "request-light-0.5.6" = {
name = "request-light";
packageName = "request-light";
- version = "0.5.5";
+ version = "0.5.6";
src = fetchurl {
- url = "https://registry.npmjs.org/request-light/-/request-light-0.5.5.tgz";
- sha512 = "AvjfJuhyT6dYfhtIBF+IpTPQco+Td1QJ6PsIJ5xui110vQ5p9HxHk+m1XJqXazLQT6CxxSx9eNv6R/+fu4bZig==";
+ url = "https://registry.npmjs.org/request-light/-/request-light-0.5.6.tgz";
+ sha512 = "mIfRkYujBF6qQQi+uJGHFzYD2P7WwfIMyJ3/DcTtOFB3iypwIVOXmsr3RMnFwTJRVcYLLZdjkIx43E8Zn2hRng==";
};
};
"request-progress-2.0.1" = {
@@ -55959,15 +56598,6 @@ let
sha512 = "M0b3YWQs7R3Z917WRQy1HHA7Ba7D8hvZg6UE5mLykJxQVE2ju0IXbGlaHPPlkY+WN7wFP+wUMXmBFA0aV6vYGQ==";
};
};
- "retext-6.0.2" = {
- name = "retext";
- packageName = "retext";
- version = "6.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/retext/-/retext-6.0.2.tgz";
- sha512 = "CxpBywVxRjzikCRrC6Z87KzqzuSbCDLLqpQSzjzE0xlzPaZemZiywCHEzX7eSWRdXY5006rYgD7Zm4BCyzFxvg==";
- };
- };
"retext-english-3.0.4" = {
name = "retext-english";
packageName = "retext-english";
@@ -56004,15 +56634,6 @@ let
sha512 = "HmwH06qUlmCNQZZBY7Kkljbqc9isGTVwpm5WedpkfklB2dy+suyUUF1X0Zn3VbcaUlh7DfYrzpaJAtvOkML/eA==";
};
};
- "retext-latin-2.0.4" = {
- name = "retext-latin";
- packageName = "retext-latin";
- version = "2.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/retext-latin/-/retext-latin-2.0.4.tgz";
- sha512 = "fOoSSoQgDZ+l/uS81oxI3alBghDUPja0JEl0TpQxI6MN+dhM6fLFumPJwMZ4PJTyL5FFAgjlsdv8IX+6IRuwMw==";
- };
- };
"retext-profanities-6.1.0" = {
name = "retext-profanities";
packageName = "retext-profanities";
@@ -56031,24 +56652,6 @@ let
sha512 = "TeqYTbm3n8YLeswe+OVEB/s7TjJEvWMNzoypoXRSRY4mcEMdnBv2uRbkYBBv2+UWTJ3uXD2y94oEu9syeD1NQQ==";
};
};
- "retext-spell-2.4.1" = {
- name = "retext-spell";
- packageName = "retext-spell";
- version = "2.4.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/retext-spell/-/retext-spell-2.4.1.tgz";
- sha512 = "l2C37Sz+JMLgUJHqqNA2bV3Qqh7V6zWT3fCi8MtsZn2PoanDh57Tz2NW/DJpoEIsK9mV7o2EMvQmIMt5cgcgAg==";
- };
- };
- "retext-stringify-2.0.4" = {
- name = "retext-stringify";
- packageName = "retext-stringify";
- version = "2.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/retext-stringify/-/retext-stringify-2.0.4.tgz";
- sha512 = "xOtx5mFJBoT3j7PBtiY2I+mEGERNniofWktI1cKXvjMEJPOuqve0dghLHO1+gz/gScLn4zqspDGv4kk2wS5kSA==";
- };
- };
"rethinkdb-2.4.2" = {
name = "rethinkdb";
packageName = "rethinkdb";
@@ -56679,13 +57282,13 @@ let
sha512 = "hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==";
};
};
- "rxjs-7.4.0" = {
+ "rxjs-7.5.1" = {
name = "rxjs";
packageName = "rxjs";
- version = "7.4.0";
+ version = "7.5.1";
src = fetchurl {
- url = "https://registry.npmjs.org/rxjs/-/rxjs-7.4.0.tgz";
- sha512 = "7SQDi7xeTMCJpqViXh8gL/lebcwlp3d831F05+9B44A4B0WfsEwUQHR64gsH1kvJ+Ep/J9K2+n1hVl1CsGN23w==";
+ url = "https://registry.npmjs.org/rxjs/-/rxjs-7.5.1.tgz";
+ sha512 = "KExVEeZWxMZnZhUZtsJcFwz8IvPvgu4G2Z2QyqjZQzUGr32KDYuSxrEYO4w3tFFNbfLozcrKUTvTPi+E9ywJkQ==";
};
};
"s3-stream-upload-2.0.2" = {
@@ -56715,13 +57318,13 @@ let
sha1 = "182a991208fc1ab5214443eb250fc8f53b4bc9ea";
};
};
- "sade-1.7.4" = {
+ "sade-1.8.0" = {
name = "sade";
packageName = "sade";
- version = "1.7.4";
+ version = "1.8.0";
src = fetchurl {
- url = "https://registry.npmjs.org/sade/-/sade-1.7.4.tgz";
- sha512 = "y5yauMD93rX840MwUJr7C1ysLFBgMspsdTo4UVrDg3fXDvtwOyIqykhVAAm6fk/3au77773itJStObgK+LKaiA==";
+ url = "https://registry.npmjs.org/sade/-/sade-1.8.0.tgz";
+ sha512 = "NRfCA8AVYuAA7Hu8bs18od6J4BdcXXwOv6OJuNgwbw8LcLK8JKwaM3WckLZ+MGyPJUS/ivVgK3twltrOIJJnug==";
};
};
"safe-buffer-5.0.1" = {
@@ -56760,15 +57363,6 @@ let
sha512 = "rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==";
};
};
- "safe-compare-1.1.4" = {
- name = "safe-compare";
- packageName = "safe-compare";
- version = "1.1.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/safe-compare/-/safe-compare-1.1.4.tgz";
- sha512 = "b9wZ986HHCo/HbKrRpBJb2kqXMK9CEWIE1egeEvZsYn69ay3kdfl9nG3RyOcR+jInTDf7a86WQ1d4VJX7goSSQ==";
- };
- };
"safe-json-stringify-1.2.0" = {
name = "safe-json-stringify";
packageName = "safe-json-stringify";
@@ -56886,13 +57480,13 @@ let
sha1 = "478be1429500fcfaa780be88b3343ced7d2a9182";
};
};
- "sass-1.45.0" = {
+ "sass-1.45.2" = {
name = "sass";
packageName = "sass";
- version = "1.45.0";
+ version = "1.45.2";
src = fetchurl {
- url = "https://registry.npmjs.org/sass/-/sass-1.45.0.tgz";
- sha512 = "ONy5bjppoohtNkFJRqdz1gscXamMzN3wQy1YH9qO2FiNpgjLhpz/IPRGg0PpCjyz/pWfCOaNEaiEGCcjOFAjqw==";
+ url = "https://registry.npmjs.org/sass/-/sass-1.45.2.tgz";
+ sha512 = "cKfs+F9AMPAFlbbTXNsbGvg3y58nV0mXA3E94jqaySKcC8Kq3/8983zVKQ0TLMUrHw7hF9Tnd3Bz9z5Xgtrl9g==";
};
};
"sax-0.5.8" = {
@@ -57102,6 +57696,15 @@ let
sha1 = "f1a0329b308b221fae37b9974f3d578d0ca999e3";
};
};
+ "secure-json-parse-2.4.0" = {
+ name = "secure-json-parse";
+ packageName = "secure-json-parse";
+ version = "2.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/secure-json-parse/-/secure-json-parse-2.4.0.tgz";
+ sha512 = "Q5Z/97nbON5t/L/sH6mY2EacfjVGwrCcSi5D3btRO2GZ8pf1K1UN7Z9H5J57hjVU2Qzxr1xO+FmBhOvEkzCMmg==";
+ };
+ };
"secure-keys-1.0.0" = {
name = "secure-keys";
packageName = "secure-keys";
@@ -57939,6 +58542,15 @@ let
sha1 = "9bfc8f74fa39205c53d38c34d717303e277124f1";
};
};
+ "should-proxy-1.0.4" = {
+ name = "should-proxy";
+ packageName = "should-proxy";
+ version = "1.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/should-proxy/-/should-proxy-1.0.4.tgz";
+ sha1 = "c805a501abf69539600634809e62fbf238ba35e4";
+ };
+ };
"should-type-1.4.0" = {
name = "should-type";
packageName = "should-type";
@@ -58875,6 +59487,15 @@ let
sha512 = "FbZ/X/2Xq3DAMhuRA4bnN0jy1QxaPTVPLFvyv6CEj0QDKSTdWp9yRxo1JhqXmWKhPQeJyUMajHJB2UjT43pFcw==";
};
};
+ "socksjs-0.5.0" = {
+ name = "socksjs";
+ packageName = "socksjs";
+ version = "0.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/socksjs/-/socksjs-0.5.0.tgz";
+ sha1 = "77b005e32d1bfc96e560fedd5d7eedcf120f87e3";
+ };
+ };
"sodium-browserify-1.3.0" = {
name = "sodium-browserify";
packageName = "sodium-browserify";
@@ -58956,13 +59577,13 @@ let
sha512 = "WnBQ0GDo/82shKQHZBZT9h4q4miCtxkbzcwVLsCBPWNq4qbq8BXhKICt9nPwQAsJ43ct/rF61FKu4t0druUBug==";
};
};
- "sonic-boom-2.4.1" = {
+ "sonic-boom-2.4.2" = {
name = "sonic-boom";
packageName = "sonic-boom";
- version = "2.4.1";
+ version = "2.4.2";
src = fetchurl {
- url = "https://registry.npmjs.org/sonic-boom/-/sonic-boom-2.4.1.tgz";
- sha512 = "WgtVLfGl347/zS1oTuLaOAvVD5zijgjphAJHgbbnBJGgexnr+C1ULSj0j7ftoGxpuxR4PaV635NkwFemG8m/5w==";
+ url = "https://registry.npmjs.org/sonic-boom/-/sonic-boom-2.4.2.tgz";
+ sha512 = "zlOmAKFLJzTI+MbvmkWhnOOJ++NYo0Iy7F93ARNPmvZvpWG2l8Ff3uwM3CkpHqRw8v3pcRROScM5E+vbeTeOKw==";
};
};
"sorcery-0.10.0" = {
@@ -59235,15 +59856,6 @@ let
sha512 = "ekwEbFp5aqSPKaqeY1PGrlGQxPNaq+Cnx4+bE2D8sciBQrHpbwoBbawqTN2+6jPs9IdWxxiUcN0K2pkczD3zmw==";
};
};
- "spago-0.20.3" = {
- name = "spago";
- packageName = "spago";
- version = "0.20.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/spago/-/spago-0.20.3.tgz";
- sha512 = "R4CWLP5IbaWoNIpS1QAUuDK2LKlKYqT5gBKVZL7ILilvCwdwS72u3NbGZbvx7VCRRZz4lG7zXUkqKNow7zh6wQ==";
- };
- };
"spark-md5-1.0.1" = {
name = "spark-md5";
packageName = "spark-md5";
@@ -59631,6 +60243,15 @@ let
sha512 = "2PNlcs3j5JflQKcg4wpdqpZ+AjhQJ2OZEo34NXDtlB0tIPG84xaaXhpA8XFacFiwjKA4m49UOYG83y3hbMn/gQ==";
};
};
+ "sqlite3-4.1.0" = {
+ name = "sqlite3";
+ packageName = "sqlite3";
+ version = "4.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sqlite3/-/sqlite3-4.1.0.tgz";
+ sha512 = "RvqoKxq+8pDHsJo7aXxsFR18i+dU2Wp5o12qAJOV5LNcDt+fgJsc2QKKg3sIRfXrN9ZjzY1T7SNe/DFVqAXjaw==";
+ };
+ };
"sqlite3-4.2.0" = {
name = "sqlite3";
packageName = "sqlite3";
@@ -59775,13 +60396,13 @@ let
sha512 = "pJAFizB6OcuJLX4RJJuU9HWyPwM2CqLi/vs08lhVIR3TGxacxpavvK5LzbxT+Y3iWkBchOTKS5hHCigA5aaung==";
};
};
- "ssb-db2-2.8.3" = {
+ "ssb-db2-2.8.5" = {
name = "ssb-db2";
packageName = "ssb-db2";
- version = "2.8.3";
+ version = "2.8.5";
src = fetchurl {
- url = "https://registry.npmjs.org/ssb-db2/-/ssb-db2-2.8.3.tgz";
- sha512 = "45qxUO4ULsQKf79IUma0fuMIatyQac83pmmMZPQHHbiPr001hlgUnZvVzgNgGq7eZE5J6451/TBrBKzO5jjILg==";
+ url = "https://registry.npmjs.org/ssb-db2/-/ssb-db2-2.8.5.tgz";
+ sha512 = "6JLfdXIr0Q1EooLMTJ5I6PcQHLxvJ5jUX9ocsDKOswOAevWbVMkvy2GsQtXkMf0uabsKAoTEPWRuHwxnfqyKEQ==";
};
};
"ssb-ebt-5.6.7" = {
@@ -60036,13 +60657,13 @@ let
sha512 = "Z4jBj917W+dKAiDglwxCpWm8vINOMtkpHQIgk50NQTb5jHqHI5Rcyiy7EO0uRcWwRWqXi1ZwOTEFVyLyyuittA==";
};
};
- "ssb-uri2-1.5.2" = {
+ "ssb-uri2-1.6.0" = {
name = "ssb-uri2";
packageName = "ssb-uri2";
- version = "1.5.2";
+ version = "1.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/ssb-uri2/-/ssb-uri2-1.5.2.tgz";
- sha512 = "jlsN7w6/toFjcRZLDkCC3nq6+rKeS7NhUxZ+xGS1ASltenkudcZvdgczRb+L11ObFND4VCohkO21lVSAJV8hCQ==";
+ url = "https://registry.npmjs.org/ssb-uri2/-/ssb-uri2-1.6.0.tgz";
+ sha512 = "Iihj9z5g67NV5vwewvo1XdYS05Wu3I6MVIhruN+/zqlXUfLmpeKZzyKOgszfDgbpVJvADm4/0Dj/mj7uAEf9OQ==";
};
};
"ssb-validate-4.1.4" = {
@@ -60063,13 +60684,13 @@ let
sha512 = "B1UMy/+sZLbVo0KvdiAvOeSCalYWSaFXxxEmuZ0K0wRqIkn/KU7vdXeaXxp+bRmTTnABdu+k/O7qRJtdiD6e0w==";
};
};
- "ssb-validate2-rsjs-node-1.0.3" = {
+ "ssb-validate2-rsjs-node-1.0.4" = {
name = "ssb-validate2-rsjs-node";
packageName = "ssb-validate2-rsjs-node";
- version = "1.0.3";
+ version = "1.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/ssb-validate2-rsjs-node/-/ssb-validate2-rsjs-node-1.0.3.tgz";
- sha512 = "jqMfr/EzgVkz53XCA/4cN+8sGrW4n8VPrDT5yjx4XcRxqiSHQYA0hp3M7N1XvLo1Zy+Eu51jGDLYXzlbql64Xw==";
+ url = "https://registry.npmjs.org/ssb-validate2-rsjs-node/-/ssb-validate2-rsjs-node-1.0.4.tgz";
+ sha512 = "UWdqf1nu7DgDDYB8ZndELiD/RkAIm8//odirkv1yynSxGOgwiGrFiQG+5I/OVdpfnb3pZ712QWX9sv0t+hUFYg==";
};
};
"ssb-ws-6.2.3" = {
@@ -60081,13 +60702,13 @@ let
sha512 = "zZ/Q1M+9ZWlrchgh4QauD/MEUFa6eC6H6FYq6T8Of/y82JqsQBLwN6YlzbO09evE7Rx6x0oliXDCnQSjwGwQRA==";
};
};
- "sscaff-1.2.151" = {
+ "sscaff-1.2.158" = {
name = "sscaff";
packageName = "sscaff";
- version = "1.2.151";
+ version = "1.2.158";
src = fetchurl {
- url = "https://registry.npmjs.org/sscaff/-/sscaff-1.2.151.tgz";
- sha512 = "6UfOVW4ElZDCutLaPUULDA/RdtV5zs2qsmSVkg47mE0WrGXmaG/vC/4k668/s+MbpGjCCW+dytbmNkcduREEJw==";
+ url = "https://registry.npmjs.org/sscaff/-/sscaff-1.2.158.tgz";
+ sha512 = "5jQZTO4SVXb6PGIGdm8j7yIgkHtAPuERCuGFV5CiqycoSEWkOUHknVgS62cFxg4CK0o+nzmniJTE3asK//m9rQ==";
};
};
"ssh-config-1.1.6" = {
@@ -60729,6 +61350,15 @@ let
sha1 = "808b9d0e56fc273d809ba57338e929919a1a9f1a";
};
};
+ "streamsearch-1.1.0" = {
+ name = "streamsearch";
+ packageName = "streamsearch";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz";
+ sha512 = "Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==";
+ };
+ };
"streamx-2.12.0" = {
name = "streamx";
packageName = "streamx";
@@ -61818,40 +62448,31 @@ let
sha512 = "6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ==";
};
};
- "svelte-3.38.3" = {
+ "svelte-3.44.3" = {
name = "svelte";
packageName = "svelte";
- version = "3.38.3";
+ version = "3.44.3";
src = fetchurl {
- url = "https://registry.npmjs.org/svelte/-/svelte-3.38.3.tgz";
- sha512 = "N7bBZJH0iF24wsalFZF+fVYMUOigaAUQMIcEKHO3jstK/iL8VmP9xE+P0/a76+FkNcWt+TDv2Gx1taUoUscrvw==";
+ url = "https://registry.npmjs.org/svelte/-/svelte-3.44.3.tgz";
+ sha512 = "aGgrNCip5PQFNfq9e9tmm7EYxWLVHoFsEsmKrtOeRD8dmoGDdyTQ+21xd7qgFd8MNdKGSYvg7F9dr+Tc0yDymg==";
};
};
- "svelte-preprocess-4.10.0" = {
+ "svelte-preprocess-4.10.1" = {
name = "svelte-preprocess";
packageName = "svelte-preprocess";
- version = "4.10.0";
+ version = "4.10.1";
src = fetchurl {
- url = "https://registry.npmjs.org/svelte-preprocess/-/svelte-preprocess-4.10.0.tgz";
- sha512 = "uZgGyC4SwkFoby2ceiMgGYs4qHYGz2fT06cAsHO8FHdDbvj1dKQyQ/fD9OB0KLymVv0fmzuJo/On7Kv7AeVhWA==";
+ url = "https://registry.npmjs.org/svelte-preprocess/-/svelte-preprocess-4.10.1.tgz";
+ sha512 = "NSNloaylf+o9UeyUR2KvpdxrAyMdHl3U7rMnoP06/sG0iwJvlUM4TpMno13RaNqovh4AAoGsx1jeYcIyuGUXMw==";
};
};
- "svelte-preprocess-4.9.8" = {
- name = "svelte-preprocess";
- packageName = "svelte-preprocess";
- version = "4.9.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/svelte-preprocess/-/svelte-preprocess-4.9.8.tgz";
- sha512 = "EQS/oRZzMtYdAprppZxY3HcysKh11w54MgA63ybtL+TAZ4hVqYOnhw41JVJjWN9dhPnNjjLzvbZ2tMhTsla1Og==";
- };
- };
- "svelte2tsx-0.4.11" = {
+ "svelte2tsx-0.4.12" = {
name = "svelte2tsx";
packageName = "svelte2tsx";
- version = "0.4.11";
+ version = "0.4.12";
src = fetchurl {
- url = "https://registry.npmjs.org/svelte2tsx/-/svelte2tsx-0.4.11.tgz";
- sha512 = "y1mqNrxv3TzDHstM0qlHrbKwfWk+G/uB28yRH4JYMjJ7N3XZrfrLad+/+P6ITTawbUfLqfs/WlxJDKzl7F2CPw==";
+ url = "https://registry.npmjs.org/svelte2tsx/-/svelte2tsx-0.4.12.tgz";
+ sha512 = "aTKg+W95w16RqOPFi01icd4jlwnMzgvTlewvqrJJTLAs0kjpQ/DMhhd+iDDhDBkhKT4nDkVzEfe/LZTz1Xf6AQ==";
};
};
"sver-compat-1.5.0" = {
@@ -62133,15 +62754,6 @@ let
sha512 = "YPPlu67mdnHGTup2A8ff7BC2Pjq0e0Yp/IyTFN03zWO0RcK07uLcbi7C2KpGR2FvWbaB0+bfE27a+sBKebSo7w==";
};
};
- "systeminformation-4.34.23" = {
- name = "systeminformation";
- packageName = "systeminformation";
- version = "4.34.23";
- src = fetchurl {
- url = "https://registry.npmjs.org/systeminformation/-/systeminformation-4.34.23.tgz";
- sha512 = "33+lQwlLxXoxy0o9WLOgw8OjbXeS3Jv+pSl+nxKc2AOClBI28HsdRPpH0u9Xa9OVjHLT9vonnOMw1ug7YXI0dA==";
- };
- };
"systeminformation-5.9.17" = {
name = "systeminformation";
packageName = "systeminformation";
@@ -62512,15 +63124,6 @@ let
sha512 = "6u5UyW2KpMS/hwC4DKLGlicK/rVSYCahPFgF14ioP6BzwcDwQlciHCB/oWguvxLJaYGrvY6crzLHfjupFTBPXw==";
};
};
- "telegraf-4.5.2" = {
- name = "telegraf";
- packageName = "telegraf";
- version = "4.5.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/telegraf/-/telegraf-4.5.2.tgz";
- sha512 = "OG68wQqYQQq2ldzAMv6JJUkh9XU+4mWRgHinMeJ8FoRA5ZZuA4WauqRFi8aY/OQiwJM2gTT2XWCfopN2dZWDNw==";
- };
- };
"temp-0.6.0" = {
name = "temp";
packageName = "temp";
@@ -62845,13 +63448,13 @@ let
sha1 = "be68d47a5146b16dd116278c9aeb7bd35631ccda";
};
};
- "textlint-rule-helper-2.2.0" = {
+ "textlint-rule-helper-2.2.1" = {
name = "textlint-rule-helper";
packageName = "textlint-rule-helper";
- version = "2.2.0";
+ version = "2.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/textlint-rule-helper/-/textlint-rule-helper-2.2.0.tgz";
- sha512 = "9S5CsgQuQwPjM2wvr4JGdpkLf+pR9gOjedSQFa/Dkrbh+D9MXt1LIR4Jvx1RujKtt2nq42prmEX2q3xOxyUcIQ==";
+ url = "https://registry.npmjs.org/textlint-rule-helper/-/textlint-rule-helper-2.2.1.tgz";
+ sha512 = "pdX3uNbFzQTgINamaBpEHRT/MgROHev5wCnQnUTXRLT5DaRjls0Rmpi5d1MPZG6HT5NKVL++Q2J0FUbh5shi3Q==";
};
};
"textlint-util-to-string-2.1.1" = {
@@ -62881,6 +63484,33 @@ let
sha512 = "eJQ0dGfDIzWNiFNYFVjJ+Ezl/GmwHaFTBTjrtqNPW0S7cuVDBrZrmzUz6VkMeCR4DZFqhd4YtLwsw3i2wYHswQ==";
};
};
+ "thelounge-3.3.0" = {
+ name = "thelounge";
+ packageName = "thelounge";
+ version = "3.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/thelounge/-/thelounge-3.3.0.tgz";
+ sha512 = "F7qYCmAkb/HPFxZfyKi/gEm24ZzjgUzJb+zI5I5u8b5PNJrfi9RwFb3cmE4pvF2Ft0QejR5O4khuX6DEFFxYDw==";
+ };
+ };
+ "thelounge-4.2.0" = {
+ name = "thelounge";
+ packageName = "thelounge";
+ version = "4.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/thelounge/-/thelounge-4.2.0.tgz";
+ sha512 = "5hijX1V/4CrgrkqCqtwP32LSbLPSF/10nneI+2doPHKx7AdCgR52HqWZo0AQEPv4fvOqEOMLJ0c9pL6t/jUDwg==";
+ };
+ };
+ "thelounge-4.3.0" = {
+ name = "thelounge";
+ packageName = "thelounge";
+ version = "4.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/thelounge/-/thelounge-4.3.0.tgz";
+ sha512 = "dkVdH21q9vipV7UU10qQQprPuP8rG+IDJSHUtmOC0WDYvwYTiUC9IYLIpkyWdgfwFYegDTnnR4duHNZynqOXTA==";
+ };
+ };
"then-fs-2.0.0" = {
name = "then-fs";
packageName = "then-fs";
@@ -62890,6 +63520,15 @@ let
sha1 = "72f792dd9d31705a91ae19ebfcf8b3f968c81da2";
};
};
+ "thenby-1.3.4" = {
+ name = "thenby";
+ packageName = "thenby";
+ version = "1.3.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/thenby/-/thenby-1.3.4.tgz";
+ sha512 = "89Gi5raiWA3QZ4b2ePcEwswC3me9JIg+ToSgtE0JWeCynLnLxNr/f9G+xfo9K+Oj4AFdom8YNJjibIARTJmapQ==";
+ };
+ };
"thenify-3.3.1" = {
name = "thenify";
packageName = "thenify";
@@ -63277,6 +63916,15 @@ let
sha512 = "FmqJZGduTyvsr2cF3375fqGHUovSwDi/QytexX1Se4BPuPZpTE5Ftp5fg+EFSuEf3lhZqgCRjEG3ydUQ/aNiwA==";
};
};
+ "tiny-secp256k1-2.1.2" = {
+ name = "tiny-secp256k1";
+ packageName = "tiny-secp256k1";
+ version = "2.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tiny-secp256k1/-/tiny-secp256k1-2.1.2.tgz";
+ sha512 = "8qPw7zDK6Hco2tVGYGQeOmOPp/hZnREwy2iIkcq0ygAuqc9WHo29vKN94lNymh1QbB3nthtAMF6KTIrdbsIotA==";
+ };
+ };
"tinycolor-0.0.1" = {
name = "tinycolor";
packageName = "tinycolor";
@@ -63331,6 +63979,24 @@ let
sha512 = "W/YVH/QczLUxVjnQhFC61Iq232NWu3TqDdO0S/MtXVz4xybejBov4ud+CIwN9aYqjOecEqIy0PscGkwpG9ZyTw==";
};
};
+ "tlds-1.203.1" = {
+ name = "tlds";
+ packageName = "tlds";
+ version = "1.203.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tlds/-/tlds-1.203.1.tgz";
+ sha512 = "7MUlYyGJ6rSitEZ3r1Q1QNV8uSIzapS8SmmhSusBuIc7uIxPPwsKllEP0GRp1NS6Ik6F+fRZvnjDWm3ecv2hDw==";
+ };
+ };
+ "tlds-1.208.0" = {
+ name = "tlds";
+ packageName = "tlds";
+ version = "1.208.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tlds/-/tlds-1.208.0.tgz";
+ sha512 = "6kbY7GJpRQXwBddSOAbVUZXjObbCGFXliWWN+kOSEoRWIOyRWLB6zdeKC/Tguwwenl/KsUx016XR50EdHYsxZw==";
+ };
+ };
"tlds-1.216.0" = {
name = "tlds";
packageName = "tlds";
@@ -63538,15 +64204,6 @@ let
sha1 = "fc92adaba072647bc0b67d6b03664aa195093af6";
};
};
- "to-utf8-0.0.1" = {
- name = "to-utf8";
- packageName = "to-utf8";
- version = "0.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/to-utf8/-/to-utf8-0.0.1.tgz";
- sha1 = "d17aea72ff2fba39b9e43601be7b3ff72e089852";
- };
- };
"to-vfile-1.0.0" = {
name = "to-vfile";
packageName = "to-vfile";
@@ -64168,6 +64825,15 @@ let
sha512 = "WHXLtFDcIRwoqaiu0elAoZ/AmI+SwwDafnPKjgJmdwJ2gRVO0jMKBt88rV2liT/c6MTsXyuWbGFiHe9MRddWJw==";
};
};
+ "ts-node-10.4.0" = {
+ name = "ts-node";
+ packageName = "ts-node";
+ version = "10.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ts-node/-/ts-node-10.4.0.tgz";
+ sha512 = "g0FlPvvCXSIO1JDF6S232P5jPYqBkRL9qly81ZgAOSU7rwI0stphCgd2kLiCrU9DjQCrJMWEqcNSjQL02s6d8A==";
+ };
+ };
"ts-node-8.9.1" = {
name = "ts-node";
packageName = "ts-node";
@@ -64762,13 +65428,13 @@ let
sha512 = "7uc1O8h1M1g0rArakJdf0uLRSSgFcYexrVoKo+bzJd32gd4gDy2L/Z+8/FjPnU9ydY3pEnVPtr9FyscYY60K1g==";
};
};
- "typegram-3.6.2" = {
+ "typegram-3.7.0" = {
name = "typegram";
packageName = "typegram";
- version = "3.6.2";
+ version = "3.7.0";
src = fetchurl {
- url = "https://registry.npmjs.org/typegram/-/typegram-3.6.2.tgz";
- sha512 = "q222XE5vFtzhY8q+x+yl4oNhVqjDSAixwvnpmzze61i+u/eaKIrimT3xz/oJrCUmSvaROH1GNZS3jqDDDNp94A==";
+ url = "https://registry.npmjs.org/typegram/-/typegram-3.7.0.tgz";
+ sha512 = "IafMO+GRi5H8CtWSNihuD56Bjpmj/ISbg6G8jdTkNxldrym+FOPlo/fxtaPs/LyWnS0l1Bm18MUDwOikZSKmJw==";
};
};
"typescript-2.9.2" = {
@@ -64906,6 +65572,24 @@ let
sha512 = "W20RYp2OCEGMhEYayR0cAP67AUWiGRUufMs6Clul7MAmu5SpLuOG/RWk7+LkL65wsugcfhPQlFEJ231C2xHNQg==";
};
};
+ "ua-parser-js-0.7.20" = {
+ name = "ua-parser-js";
+ packageName = "ua-parser-js";
+ version = "0.7.20";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.20.tgz";
+ sha512 = "8OaIKfzL5cpx8eCMAhhvTlft8GYF8b2eQr6JkCyVdrgjcytyOmPCXrqXFcUnhonRpLlh5yxEZVohm6mzaowUOw==";
+ };
+ };
+ "ua-parser-js-0.7.21" = {
+ name = "ua-parser-js";
+ packageName = "ua-parser-js";
+ version = "0.7.21";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.21.tgz";
+ sha512 = "+O8/qh/Qj8CgC6eYBVBykMrNtp5Gebn4dlGD/kKXVkJNDwyrAwSIqwz8CDf+tsAIWVycKcku6gIXJ0qwx/ZXaQ==";
+ };
+ };
"ua-parser-js-0.7.30" = {
name = "ua-parser-js";
packageName = "ua-parser-js";
@@ -65077,6 +65761,15 @@ let
sha512 = "mliiCSrsE29aNBI7O9W5gGv6WmA9kBR8PtTt6Apaxns076IRdYrrtFhXHEWMj5CSum3U7cv7/pi4xmi4XsIOqg==";
};
};
+ "uint8array-tools-0.0.6" = {
+ name = "uint8array-tools";
+ packageName = "uint8array-tools";
+ version = "0.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/uint8array-tools/-/uint8array-tools-0.0.6.tgz";
+ sha512 = "aIvEHNRX1AlOYAr6qSUjQBn4mCduxx6MtC967aRDTb2UUBPj0Ix2ZFQDcmXUUO/UxRPHcw1f5a5nVbCSKDSOqA==";
+ };
+ };
"ultron-1.0.2" = {
name = "ultron";
packageName = "ultron";
@@ -65284,13 +65977,13 @@ let
sha1 = "5e4bda308e4a8a2ae584f9b9a4359a499825cc50";
};
};
- "undici-4.12.0" = {
+ "undici-4.12.1" = {
name = "undici";
packageName = "undici";
- version = "4.12.0";
+ version = "4.12.1";
src = fetchurl {
- url = "https://registry.npmjs.org/undici/-/undici-4.12.0.tgz";
- sha512 = "sJ4CyO3ZPaoxWpLQTJpH/gWD+tCIra2OJ9UPvrX1siyJkgh8NOAybRejJ/g2xHyOdAuoSE0lPRJwRl8AZSXYJQ==";
+ url = "https://registry.npmjs.org/undici/-/undici-4.12.1.tgz";
+ sha512 = "MSfap7YiQJqTPP12C11PFRs9raZuVicDbwsZHTjB0a8+SsCqt7KdUis54f373yf7ZFhJzAkGJLaKm0202OIxHg==";
};
};
"unherit-1.1.3" = {
@@ -65473,13 +66166,13 @@ let
sha512 = "ZlMm62ejrf+tJHdyOjQfljszngQjRor95q2XZMGk6rpJUYi7ZIHY/EXEhOcj9PZkMKKdLIM+dqL4s0ceyk9wbA==";
};
};
- "unified-engine-9.0.4" = {
+ "unified-engine-9.0.5" = {
name = "unified-engine";
packageName = "unified-engine";
- version = "9.0.4";
+ version = "9.0.5";
src = fetchurl {
- url = "https://registry.npmjs.org/unified-engine/-/unified-engine-9.0.4.tgz";
- sha512 = "NFI+jC3DWZ23eBsWkOW2havz47DPG/DSyJEvBH+qA5cQHF6zlgiJYev7ksb/naOypZZ+cfhaCxCRo2BqrysYEw==";
+ url = "https://registry.npmjs.org/unified-engine/-/unified-engine-9.0.5.tgz";
+ sha512 = "frQ6lUNlkTwVC0JELJqSSITpE7MLrLJqAWmDrUFj5Do6A4/3n6eX5Jyg8fhe4Dbwwh38spqUJd39FtRFG34QWg==";
};
};
"unified-lint-rule-1.0.6" = {
@@ -65491,15 +66184,6 @@ let
sha512 = "YPK15YBFwnsVorDFG/u0cVVQN5G2a3V8zv5/N6KN3TCG+ajKtaALcy7u14DCSrJI+gZeyYquFL9cioJXOGXSvg==";
};
};
- "unified-message-control-1.0.4" = {
- name = "unified-message-control";
- packageName = "unified-message-control";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/unified-message-control/-/unified-message-control-1.0.4.tgz";
- sha512 = "e1dEtN4Z/TvLn/qHm+xeZpzqhJTtfZusFErk336kkZVpqrJYiV9ptxq+SbRPFMlN0OkjDYHmVJ929KYjsMTo3g==";
- };
- };
"unified-message-control-3.0.3" = {
name = "unified-message-control";
packageName = "unified-message-control";
@@ -66130,6 +66814,15 @@ let
sha512 = "KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==";
};
};
+ "unxhr-1.0.1" = {
+ name = "unxhr";
+ packageName = "unxhr";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/unxhr/-/unxhr-1.0.1.tgz";
+ sha512 = "MAhukhVHyaLGDjyDYhy8gVjWJyhTECCdNsLwlMoGFoNJ3o79fpQhtQuzmAE4IxCMDwraF4cW8ZjpAV0m9CRQbg==";
+ };
+ };
"unyield-0.0.1" = {
name = "unyield";
packageName = "unyield";
@@ -66418,13 +67111,13 @@ let
sha512 = "3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==";
};
};
- "url-parse-1.5.3" = {
+ "url-parse-1.5.4" = {
name = "url-parse";
packageName = "url-parse";
- version = "1.5.3";
+ version = "1.5.4";
src = fetchurl {
- url = "https://registry.npmjs.org/url-parse/-/url-parse-1.5.3.tgz";
- sha512 = "IIORyIQD9rvj0A4CLWsHkBBJuNqWpFQe224b6j9t/ABmquIS0qDU2pY6kl6AuOrL5OkCXHMCFNe1jBcuAggjvQ==";
+ url = "https://registry.npmjs.org/url-parse/-/url-parse-1.5.4.tgz";
+ sha512 = "ITeAByWWoqutFClc/lRZnFplgXgEZr3WJ6XngMM/N9DMIm4K8zXPCZ1Jdu0rERwO84w1WC5wkle2ubwTA4NTBg==";
};
};
"url-parse-lax-1.0.0" = {
@@ -66833,6 +67526,15 @@ let
sha512 = "yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==";
};
};
+ "uuid-3.3.3" = {
+ name = "uuid";
+ packageName = "uuid";
+ version = "3.3.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/uuid/-/uuid-3.3.3.tgz";
+ sha512 = "pW0No1RGHgzlpHJO1nsVrHKpOEIxkGg1xB+v0ZmdNH5OAeAwzAVrCnI2/6Mtx+Uys6iaylxa+D3g4j63IKKjSQ==";
+ };
+ };
"uuid-3.4.0" = {
name = "uuid";
packageName = "uuid";
@@ -66860,6 +67562,15 @@ let
sha512 = "CI18flHDznR0lq54xBycOVmphdCYnQLKn8abKn7PXUiKUGdEd+/l9LWNJmugXel4hXq7S+RMNl34ecyC9TntWg==";
};
};
+ "uuid-8.3.0" = {
+ name = "uuid";
+ packageName = "uuid";
+ version = "8.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/uuid/-/uuid-8.3.0.tgz";
+ sha512 = "fX6Z5o4m6XsXBdli9g7DtWgAx+osMsRRZFKma1mIUsLCz6vRvv+pz5VNbyu9UEDzpMWulZfvpgb/cmDXVulYFQ==";
+ };
+ };
"uuid-8.3.2" = {
name = "uuid";
packageName = "uuid";
@@ -67031,15 +67742,6 @@ let
sha1 = "d2bd5c66db76c13879d96e6a306edc989df978da";
};
};
- "varint-0.0.3" = {
- name = "varint";
- packageName = "varint";
- version = "0.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/varint/-/varint-0.0.3.tgz";
- sha1 = "b821de9b04b38b3cd22f72c18d94a9fb72ab3518";
- };
- };
"varint-3.0.1" = {
name = "varint";
packageName = "varint";
@@ -67517,13 +68219,13 @@ let
sha512 = "O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==";
};
};
- "vfile-5.2.0" = {
+ "vfile-5.2.1" = {
name = "vfile";
packageName = "vfile";
- version = "5.2.0";
+ version = "5.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/vfile/-/vfile-5.2.0.tgz";
- sha512 = "ftCpb6pU8Jrzcqku8zE6N3Gi4/RkDhRwEXSWudzZzA2eEOn/cBpsfk9aulCUR+j1raRSAykYQap9u6j6rhUaCA==";
+ url = "https://registry.npmjs.org/vfile/-/vfile-5.2.1.tgz";
+ sha512 = "vXW5XKbELM6mLj88kmkJ+gjFGZ/2gTmpdqPDjs3y+qbvI5i7md7rba/+pbYEawa7t22W7ynywPV6lUUAS1WiYg==";
};
};
"vfile-find-down-1.0.0" = {
@@ -67607,13 +68309,13 @@ let
sha512 = "DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==";
};
};
- "vfile-message-3.0.2" = {
+ "vfile-message-3.1.0" = {
name = "vfile-message";
packageName = "vfile-message";
- version = "3.0.2";
+ version = "3.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/vfile-message/-/vfile-message-3.0.2.tgz";
- sha512 = "UUjZYIOg9lDRwwiBAuezLIsu9KlXntdxwG+nXnjuQAHvBpcX3x0eN8h+I7TkY5nkCXj+cWVp4ZqebtGBvok8ww==";
+ url = "https://registry.npmjs.org/vfile-message/-/vfile-message-3.1.0.tgz";
+ sha512 = "4QJbBk+DkPEhBXq3f260xSaWtjE4gPKOfulzfMFF8ZNwaPZieWsg3iVlcmF04+eebzpcpeXOOFMfrYzJHVYg+g==";
};
};
"vfile-reporter-1.5.0" = {
@@ -67994,15 +68696,6 @@ let
sha512 = "PgaToZVXJ44nFWEBuSINdDgVV6EnpC3MnXBsysR3O5TKcAfywbYeRGRy+Y4dVR7YeUgDvtb+JkJoSkaYC0mxXQ==";
};
};
- "vscode-json-languageserver-1.3.4" = {
- name = "vscode-json-languageserver";
- packageName = "vscode-json-languageserver";
- version = "1.3.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/vscode-json-languageserver/-/vscode-json-languageserver-1.3.4.tgz";
- sha512 = "+ghebnslXk6fVDySBrT0BVqozLDdmKY/qxgkDD4JtOQcU2vXc3e7jh7YyMxvuvE93E9OLvBqUrvajttj8xf3BA==";
- };
- };
"vscode-json-languageservice-3.11.0" = {
name = "vscode-json-languageservice";
packageName = "vscode-json-languageservice";
@@ -68012,15 +68705,6 @@ let
sha512 = "QxI+qV97uD7HHOCjh3MrM1TfbdwmTXrMckri5Tus1/FQiG3baDZb2C9Y0y8QThs7PwHYBIQXcAc59ZveCRZKPA==";
};
};
- "vscode-json-languageservice-4.1.0" = {
- name = "vscode-json-languageservice";
- packageName = "vscode-json-languageservice";
- version = "4.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/vscode-json-languageservice/-/vscode-json-languageservice-4.1.0.tgz";
- sha512 = "QW2SFk4kln5lTPQajGNuXWtmr2z9hVA6Sfi4qPFEW2vjt2XaUAp38/1OrcUQYiJXOyXntbWN2jZJaGxg+hDUxw==";
- };
- };
"vscode-json-languageservice-4.1.10" = {
name = "vscode-json-languageservice";
packageName = "vscode-json-languageservice";
@@ -68030,6 +68714,15 @@ let
sha512 = "IHliMEEYSY0tJjJt0ECb8ESx/nRXpoy9kN42WVQXgaqGyizFAf3jibSiezDQTrrY7f3kywXggCU+kkJEM+OLZQ==";
};
};
+ "vscode-json-languageservice-4.1.7" = {
+ name = "vscode-json-languageservice";
+ packageName = "vscode-json-languageservice";
+ version = "4.1.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vscode-json-languageservice/-/vscode-json-languageservice-4.1.7.tgz";
+ sha512 = "cwG5TwZyHYthsk2aS3W1dVgVP6Vwn3o+zscwN58uMgZt/nKuyxd9vdEB1F58Ix+S5kSKAnkUCP6hvulcoImQQQ==";
+ };
+ };
"vscode-json-languageservice-4.2.0-next.2" = {
name = "vscode-json-languageservice";
packageName = "vscode-json-languageservice";
@@ -68489,13 +69182,13 @@ let
sha512 = "8TEXQxlldWAuIODdukIb+TR5s+9Ds40eSJrw+1iDDA9IFORPjMELarNQE3myz5XIkWWpdprmJjm1/SxMlWOC8A==";
};
};
- "vscode-uri-3.0.2" = {
+ "vscode-uri-3.0.3" = {
name = "vscode-uri";
packageName = "vscode-uri";
- version = "3.0.2";
+ version = "3.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.0.2.tgz";
- sha512 = "jkjy6pjU1fxUvI51P+gCsxg1u2n8LSt0W6KrCNQceaziKzff74GoWmjVG46KieVzybO1sttPQmYfrwSHey7GUA==";
+ url = "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.0.3.tgz";
+ sha512 = "EcswR2S8bpR7fD0YPeS7r2xXExrScVMxg4MedACaWHEtx9ftCF/qHG1xGkolzTPcEmjTavCQgbVzHUIdTMzFGA==";
};
};
"vstream-0.1.0" = {
@@ -68804,6 +69497,24 @@ let
sha512 = "bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==";
};
};
+ "web-push-3.4.1" = {
+ name = "web-push";
+ packageName = "web-push";
+ version = "3.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/web-push/-/web-push-3.4.1.tgz";
+ sha512 = "wtx18llPtWWW+x8hv+Gxvz+2VjO+vZuyihInsjySNpNGNVswH1Bb2KkbbCtE96yi52VUmbFMdidxM8kJAPaSWQ==";
+ };
+ };
+ "web-push-3.4.4" = {
+ name = "web-push";
+ packageName = "web-push";
+ version = "3.4.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/web-push/-/web-push-3.4.4.tgz";
+ sha512 = "tB0F+ccobsfw5jTWBinWJKyd/YdCdRbKj+CFSnsJeEgFYysOULvWFYyeCxn9KuQvG/3UF1t3cTAcJzBec5LCWA==";
+ };
+ };
"web-push-3.4.5" = {
name = "web-push";
packageName = "web-push";
@@ -70073,6 +70784,15 @@ let
sha512 = "Gs5EZtpqZzLvmIM59w4igITU57lrtYVFneaa434VROv4thzJyV6UjIL3D42lslWlI+D4KzLYnxSwtfuiO79sNw==";
};
};
+ "ws-8.4.0" = {
+ name = "ws";
+ packageName = "ws";
+ version = "8.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ws/-/ws-8.4.0.tgz";
+ sha512 = "IHVsKe2pjajSUIl4KYMQOdlyliovpEPquKkqbwswulszzI7r0SfQrxnXdWAEqOlDCLrVSJzo+O1hAwdog2sKSQ==";
+ };
+ };
"x-default-browser-0.3.1" = {
name = "x-default-browser";
packageName = "x-default-browser";
@@ -70163,13 +70883,13 @@ let
sha512 = "N1XQngeqMBoj9wM4ZFadVV2MymImeiFfYD+fJrNlcVcOHsJFFQe7n3b+aBoTPwARuq2HQxukfzVpQmAk1gN4sQ==";
};
};
- "xdl-59.2.20" = {
+ "xdl-59.2.22" = {
name = "xdl";
packageName = "xdl";
- version = "59.2.20";
+ version = "59.2.22";
src = fetchurl {
- url = "https://registry.npmjs.org/xdl/-/xdl-59.2.20.tgz";
- sha512 = "wP9zY0/yRoOvSMlaoIhpZXQKrtNNjDDFop4TT/Mvrjy5dqQHY6+eB5w0Jla74W+wHSBzcRPBxtRpqwcAl3Q6TA==";
+ url = "https://registry.npmjs.org/xdl/-/xdl-59.2.22.tgz";
+ sha512 = "hKmLoA64vaCRprJUS0DiOF89ykKQ/Sm2haTdvfzli/9wJpoY+2ZAZ08LCaQtbqgmRiOUK7g94Q2WMW9YIIXCpQ==";
};
};
"xenvar-0.5.1" = {
@@ -70451,15 +71171,6 @@ let
sha512 = "iAcin401y58LckRZ0TkI4k0VSM1Qg0KGSc3i8rU+xrxe19A/BN1zHyVSJY7uoutVlaTSzYyk/v5AmkewAP7jtg==";
};
};
- "xmlhttprequest-1.8.0" = {
- name = "xmlhttprequest";
- packageName = "xmlhttprequest";
- version = "1.8.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/xmlhttprequest/-/xmlhttprequest-1.8.0.tgz";
- sha1 = "67fe075c5c24fef39f9d65f5f7b7fe75171968fc";
- };
- };
"xmlhttprequest-https://github.com/LearnBoost/node-XMLHttpRequest/archive/0f36d0b5ebc03d85f860d42a64ae9791e1daa433.tar.gz" = {
name = "xmlhttprequest";
packageName = "xmlhttprequest";
@@ -70587,13 +71298,13 @@ let
sha512 = "qmoqrRksmzqSKvgqzN0055UFWY7OKx1/9JWeRswwEVX9fCG5jcYRxa/A2DHcmZX6VJvjzHRQ2STeeVcQkrmLSw==";
};
};
- "xstate-4.26.1" = {
+ "xstate-4.27.0" = {
name = "xstate";
packageName = "xstate";
- version = "4.26.1";
+ version = "4.27.0";
src = fetchurl {
- url = "https://registry.npmjs.org/xstate/-/xstate-4.26.1.tgz";
- sha512 = "JLofAEnN26l/1vbODgsDa+Phqa61PwDlxWu8+2pK+YbXf+y9pQSDLRvcYH2H1kkeUBA5fGp+xFL/zfE8jNMw4g==";
+ url = "https://registry.npmjs.org/xstate/-/xstate-4.27.0.tgz";
+ sha512 = "ohOwDM9tViC/zSSmY9261CHblDPqiaAk5vyjVbi69uJv9fGWMzlm0VDQwM2OvC61GKfXVBeuWSMkL7LPUsTpfA==";
};
};
"xstream-11.14.0" = {
@@ -70686,6 +71397,15 @@ let
sha512 = "r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==";
};
};
+ "yaml-2.0.0-10" = {
+ name = "yaml";
+ packageName = "yaml";
+ version = "2.0.0-10";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yaml/-/yaml-2.0.0-10.tgz";
+ sha512 = "FHV8s5ODFFQXX/enJEU2EkanNl1UDBUz8oa4k5Qo/sR+Iq7VmhCDkRMb0/mjJCNeAWQ31W8WV6PYStDE4d9EIw==";
+ };
+ };
"yaml-2.0.0-8" = {
name = "yaml";
packageName = "yaml";
@@ -70695,15 +71415,6 @@ let
sha512 = "QaYgJZMfWD6fKN/EYMk6w1oLWPCr1xj9QaPSZW5qkDb3y8nGCXhy2Ono+AF4F+CSL/vGcqswcAT0BaS//pgD2A==";
};
};
- "yaml-2.0.0-9" = {
- name = "yaml";
- packageName = "yaml";
- version = "2.0.0-9";
- src = fetchurl {
- url = "https://registry.npmjs.org/yaml/-/yaml-2.0.0-9.tgz";
- sha512 = "Bf2KowHjyVkIIiGMt7+fbhmlvKOaE8DWuD07bnL4+FQ9sPmEl/5IzGpBpoxPqOaHuyasBjJhyXDcISpJWfhCGw==";
- };
- };
"yaml-ast-parser-0.0.43" = {
name = "yaml-ast-parser";
packageName = "yaml-ast-parser";
@@ -70749,22 +71460,13 @@ let
sha1 = "87cfa5a9613f48e26005420d6a8ee0da6fe8daec";
};
};
- "yaml-language-server-0.20.0" = {
+ "yaml-language-server-1.2.2" = {
name = "yaml-language-server";
packageName = "yaml-language-server";
- version = "0.20.0";
+ version = "1.2.2";
src = fetchurl {
- url = "https://registry.npmjs.org/yaml-language-server/-/yaml-language-server-0.20.0.tgz";
- sha512 = "JV5jqB/1p2g4WCW1Gi6Kd3RQQSepdvTQBIDLSSoVzi7Q7kH+6tFkFJlMCBs0qmxLPkaU062d3IxdTWDK/MvvEA==";
- };
- };
- "yaml-language-server-parser-0.1.2" = {
- name = "yaml-language-server-parser";
- packageName = "yaml-language-server-parser";
- version = "0.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/yaml-language-server-parser/-/yaml-language-server-parser-0.1.2.tgz";
- sha512 = "GQ2eRE5GcKBK8XVKBIcMyOfC8WMZmEs6gogtVc6knLKE6pG+e5L/lOMfBxZzAt2lqye5itMggQ9+6stXAVhMsw==";
+ url = "https://registry.npmjs.org/yaml-language-server/-/yaml-language-server-1.2.2.tgz";
+ sha512 = "wjMlqjhg6hNMT8EgYYkfUaM0aXwjWSQDmPO18doWLxIXG7LGBuzb+Vm/MjLrP9LPblSEhE2WWHQFfGW+Odb7vw==";
};
};
"yamljs-0.3.0" = {
@@ -70884,13 +71586,13 @@ let
sha512 = "XfR8du6ua4K6uLGm5S6fA+FIJom/MdJcFNVY8geLlp2v8GYbOXD4EB1tPNZsRn4vBzKGMgb5DRZMeWuFc2GO8Q==";
};
};
- "yargs-17.3.0" = {
+ "yargs-17.3.1" = {
name = "yargs";
packageName = "yargs";
- version = "17.3.0";
+ version = "17.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/yargs/-/yargs-17.3.0.tgz";
- sha512 = "GQl1pWyDoGptFPJx9b9L6kmR33TGusZvXIZUT+BOz9f7X2L94oeAskFYLEg/FkhV06zZPBYLvLZRWeYId29lew==";
+ url = "https://registry.npmjs.org/yargs/-/yargs-17.3.1.tgz";
+ sha512 = "WUANQeVgjLbNsEmGk20f+nlHgOqzRFpiGWVaBrYGYIGANIIu3lWjoyi0fNlFmJkvfhCZ6BXINe7/W2O2bV4iaA==";
};
};
"yargs-3.10.0" = {
@@ -71082,6 +71784,15 @@ let
sha512 = "7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==";
};
};
+ "yarn-1.19.1" = {
+ name = "yarn";
+ packageName = "yarn";
+ version = "1.19.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yarn/-/yarn-1.19.1.tgz";
+ sha512 = "gBnfbL9rYY05Gt0cjJhs/siqQXHYlZalTjK3nXn2QO20xbkIFPob+LlH44ML47GcR4VU9/2dYck1BWFM0Javxw==";
+ };
+ };
"yarn-1.22.10" = {
name = "yarn";
packageName = "yarn";
@@ -71100,6 +71811,15 @@ let
sha512 = "H0p241BXaH0UN9IeH//RT82tl5PfNraVpSpEoW+ET7lmopNC61eZ+A+IDvU8FM6Go5vx162SncDL8J1ZjRBriQ==";
};
};
+ "yarn-1.22.4" = {
+ name = "yarn";
+ packageName = "yarn";
+ version = "1.22.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yarn/-/yarn-1.22.4.tgz";
+ sha512 = "oYM7hi/lIWm9bCoDMEWgffW8aiNZXCWeZ1/tGy0DWrN6vmzjCXIKu2Y21o8DYVBUtiktwKcNoxyGl/2iKLUNGA==";
+ };
+ };
"yarn-or-npm-3.0.1" = {
name = "yarn-or-npm";
packageName = "yarn-or-npm";
@@ -71371,7 +72091,7 @@ in
sources."@yarnpkg/lockfile-1.1.0"
sources."abbrev-1.1.1"
sources."agent-base-6.0.2"
- sources."agentkeepalive-4.1.4"
+ sources."agentkeepalive-4.2.0"
sources."aggregate-error-3.1.0"
sources."ajv-8.8.2"
sources."ajv-formats-2.1.1"
@@ -71444,8 +72164,8 @@ in
sources."ini-2.0.0"
(sources."inquirer-8.2.0" // {
dependencies = [
- sources."rxjs-7.4.0"
- sources."tslib-2.1.0"
+ sources."rxjs-7.5.1"
+ sources."tslib-2.3.1"
];
})
sources."ip-1.1.5"
@@ -71557,29 +72277,76 @@ in
"@antora/cli" = nodeEnv.buildNodePackage {
name = "_at_antora_slash_cli";
packageName = "@antora/cli";
- version = "2.3.4";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@antora/cli/-/cli-2.3.4.tgz";
- sha512 = "KItaWFEf/X4LLY2XCidjD00oUp4Ay7y9Hu26+T8dPqV+qnMwOL+MGHhYXsJz+4JaeNJu1Ofwc4onmShpwHQruA==";
+ url = "https://registry.npmjs.org/@antora/cli/-/cli-3.0.0.tgz";
+ sha512 = "zakn5/7Hu84+3uS0+URCyYaKWJMR66QF7w3gcCNRmqQn5bx4X7ibiDXgMm77dTrkZldzD2Yi9FhJUUeiYbn8qw==";
};
dependencies = [
- sources."@antora/playbook-builder-2.3.4"
+ sources."@antora/expand-path-helper-2.0.0"
+ sources."@antora/logger-3.0.0"
+ sources."@antora/playbook-builder-3.0.0"
+ sources."@antora/user-require-helper-2.0.0"
sources."@iarna/toml-2.2.5"
- sources."argparse-1.0.10"
- sources."camelcase-5.3.1"
- sources."camelcase-keys-6.2.2"
- sources."commander-6.1.0"
- sources."convict-6.0.1"
- sources."decamelize-1.2.0"
- sources."esprima-4.0.1"
- sources."js-yaml-3.14.1"
- sources."json5-2.1.3"
+ sources."ansi-styles-3.2.1"
+ sources."argparse-2.0.1"
+ sources."args-5.0.1"
+ sources."atomic-sleep-1.0.0"
+ sources."camelcase-5.0.0"
+ (sources."camelcase-keys-7.0.1" // {
+ dependencies = [
+ sources."camelcase-6.2.1"
+ ];
+ })
+ sources."chalk-2.4.2"
+ sources."color-convert-1.9.3"
+ sources."color-name-1.1.3"
+ sources."colorette-2.0.16"
+ sources."commander-8.3.0"
+ sources."convict-6.2.1"
+ sources."dateformat-4.6.3"
+ sources."duplexify-4.1.2"
+ sources."end-of-stream-1.4.4"
+ sources."escape-string-regexp-1.0.5"
+ sources."fast-redact-3.0.2"
+ sources."fast-safe-stringify-2.1.1"
+ sources."has-flag-3.0.0"
+ sources."inherits-2.0.4"
+ sources."joycon-3.1.1"
+ sources."js-yaml-4.1.0"
+ sources."json5-2.2.0"
+ sources."leven-2.1.0"
sources."lodash.clonedeep-4.5.0"
sources."map-obj-4.3.0"
sources."minimist-1.2.5"
- sources."quick-lru-4.0.1"
- sources."sprintf-js-1.0.3"
- sources."yargs-parser-18.1.3"
+ sources."mri-1.1.4"
+ sources."on-exit-leak-free-0.2.0"
+ sources."once-1.4.0"
+ sources."pino-7.6.2"
+ sources."pino-abstract-transport-0.5.0"
+ sources."pino-pretty-7.3.0"
+ sources."pino-std-serializers-4.0.0"
+ sources."process-warning-1.0.0"
+ sources."pump-3.0.0"
+ sources."quick-format-unescaped-4.0.4"
+ sources."quick-lru-5.1.1"
+ sources."readable-stream-3.6.0"
+ sources."real-require-0.1.0"
+ sources."rfdc-1.3.0"
+ sources."safe-buffer-5.2.1"
+ sources."safe-stable-stringify-2.3.1"
+ sources."secure-json-parse-2.4.0"
+ sources."sonic-boom-2.4.2"
+ sources."split2-4.1.0"
+ sources."stream-shift-1.0.1"
+ sources."string_decoder-1.3.0"
+ sources."strip-json-comments-3.1.1"
+ sources."supports-color-5.5.0"
+ sources."thread-stream-0.13.0"
+ sources."type-fest-1.4.0"
+ sources."util-deprecate-1.0.2"
+ sources."wrappy-1.0.2"
+ sources."yargs-parser-20.2.9"
];
buildInputs = globalBuildInputs;
meta = {
@@ -71594,164 +72361,111 @@ in
"@antora/site-generator-default" = nodeEnv.buildNodePackage {
name = "_at_antora_slash_site-generator-default";
packageName = "@antora/site-generator-default";
- version = "2.3.4";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@antora/site-generator-default/-/site-generator-default-2.3.4.tgz";
- sha512 = "uRiFJ/nG5bxjDmFOur27ae7A1J7r+OFVocEwx+vVLRvVYfNHxYP0fI2uUrmJTci8xJ92NLH9VLHpfsHypsoq9Q==";
+ url = "https://registry.npmjs.org/@antora/site-generator-default/-/site-generator-default-3.0.0.tgz";
+ sha512 = "Gn7jsb2z05ThrtsoMQkfBsrWfrzFYkBv9tbQqdAlv8azrBJo/QnZ/y/oYVDU22msoPysEllGoL4D0BhhqQvvwA==";
};
dependencies = [
- sources."@antora/asciidoc-loader-2.3.4"
- sources."@antora/content-aggregator-2.3.4"
- sources."@antora/content-classifier-2.3.4"
- sources."@antora/document-converter-2.3.4"
- sources."@antora/expand-path-helper-1.0.0"
- sources."@antora/navigation-builder-2.3.4"
- sources."@antora/page-composer-2.3.4"
- sources."@antora/playbook-builder-2.3.4"
- sources."@antora/redirect-producer-2.3.4"
- sources."@antora/site-mapper-2.3.4"
- sources."@antora/site-publisher-2.3.4"
- sources."@antora/ui-loader-2.3.4"
+ sources."@antora/asciidoc-loader-3.0.0"
+ sources."@antora/content-aggregator-3.0.0"
+ sources."@antora/content-classifier-3.0.0"
+ sources."@antora/document-converter-3.0.0"
+ sources."@antora/expand-path-helper-2.0.0"
+ sources."@antora/file-publisher-3.0.0"
+ sources."@antora/logger-3.0.0"
+ sources."@antora/navigation-builder-3.0.0"
+ sources."@antora/page-composer-3.0.0"
+ sources."@antora/playbook-builder-3.0.0"
+ sources."@antora/redirect-producer-3.0.0"
+ sources."@antora/site-generator-3.0.0"
+ sources."@antora/site-mapper-3.0.0"
+ sources."@antora/site-publisher-3.0.0"
+ sources."@antora/ui-loader-3.0.0"
+ sources."@antora/user-require-helper-2.0.0"
+ sources."@asciidoctor/core-2.2.5"
sources."@iarna/toml-2.2.5"
- sources."@sindresorhus/is-0.14.0"
- sources."@szmarczak/http-timer-1.1.2"
+ sources."ansi-styles-3.2.1"
sources."append-buffer-1.0.2"
- sources."argparse-1.0.10"
- sources."asciidoctor.js-1.5.9"
- sources."async-lock-1.3.0"
- sources."balanced-match-1.0.2"
- sources."base64-js-0.0.2"
- sources."bl-4.0.4"
- sources."bops-0.0.7"
- sources."brace-expansion-1.1.11"
- sources."braces-3.0.2"
- (sources."buffer-5.7.1" // {
+ sources."argparse-2.0.1"
+ (sources."args-5.0.1" // {
dependencies = [
- sources."base64-js-1.5.1"
+ sources."camelcase-5.0.0"
];
})
+ sources."asciidoctor-opal-runtime-0.3.3"
+ sources."async-lock-1.3.0"
+ sources."atomic-sleep-1.0.0"
+ sources."balanced-match-1.0.2"
+ sources."brace-expansion-1.1.11"
+ sources."braces-3.0.2"
sources."buffer-crc32-0.2.13"
sources."buffer-equal-1.0.0"
sources."cache-directory-2.0.0"
- (sources."cacheable-request-6.1.0" // {
- dependencies = [
- sources."get-stream-5.2.0"
- sources."lowercase-keys-2.0.0"
- sources."pump-3.0.0"
- ];
- })
sources."call-bind-1.0.2"
- sources."camelcase-5.3.1"
- sources."camelcase-keys-6.2.2"
+ sources."camelcase-6.2.1"
+ sources."camelcase-keys-7.0.1"
+ sources."chalk-2.4.2"
sources."clean-git-ref-2.0.1"
sources."clone-2.1.2"
sources."clone-buffer-1.0.0"
- (sources."clone-response-1.0.2" // {
- dependencies = [
- sources."mimic-response-1.0.1"
- ];
- })
sources."clone-stats-1.0.0"
(sources."cloneable-readable-1.1.3" // {
dependencies = [
sources."readable-stream-2.3.7"
- sources."safe-buffer-5.1.2"
- sources."string_decoder-1.1.1"
];
})
+ sources."color-convert-1.9.3"
+ sources."color-name-1.1.3"
+ sources."colorette-2.0.16"
sources."concat-map-0.0.1"
- (sources."convert-source-map-1.8.0" // {
- dependencies = [
- sources."safe-buffer-5.1.2"
- ];
- })
- sources."convict-6.0.1"
+ sources."convert-source-map-1.8.0"
+ sources."convict-6.2.1"
sources."core-util-is-1.0.3"
sources."crc-32-1.2.0"
- sources."decamelize-1.2.0"
+ sources."dateformat-4.6.3"
sources."decompress-response-4.2.1"
- sources."defer-to-connect-1.1.3"
sources."define-properties-1.1.3"
sources."diff3-0.0.3"
- sources."duplexer3-0.1.4"
- (sources."duplexify-3.7.1" // {
- dependencies = [
- sources."readable-stream-2.3.7"
- sources."safe-buffer-5.1.2"
- sources."string_decoder-1.1.1"
- ];
- })
+ sources."duplexify-4.1.2"
sources."end-of-stream-1.4.4"
- sources."escape-string-regexp-2.0.0"
- sources."esprima-4.0.1"
+ sources."escape-string-regexp-1.0.5"
sources."exit-on-epipe-1.0.1"
sources."extend-3.0.2"
+ sources."fast-redact-3.0.2"
+ sources."fast-safe-stringify-2.1.1"
sources."fd-slicer-1.1.0"
sources."fill-range-7.0.1"
(sources."flush-write-stream-1.1.1" // {
dependencies = [
sources."readable-stream-2.3.7"
- sources."safe-buffer-5.1.2"
- sources."string_decoder-1.1.1"
- ];
- })
- sources."fs-extra-8.1.0"
- (sources."fs-mkdirp-stream-1.0.0" // {
- dependencies = [
- sources."readable-stream-2.3.7"
- sources."safe-buffer-5.1.2"
- sources."string_decoder-1.1.1"
- sources."through2-2.0.5"
];
})
+ sources."fs-mkdirp-stream-1.0.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" // {
- dependencies = [
- sources."pump-3.0.0"
- ];
- })
- sources."git-apply-delta-0.0.7"
- sources."glob-6.0.4"
- sources."glob-parent-3.1.0"
- (sources."glob-stream-6.1.0" // {
+ sources."glob-7.1.3"
+ sources."glob-parent-6.0.2"
+ (sources."glob-stream-7.0.0" // {
dependencies = [
sources."glob-7.2.0"
- sources."readable-stream-2.3.7"
- sources."safe-buffer-5.1.2"
- sources."string_decoder-1.1.1"
- ];
- })
- sources."globalyzer-0.1.4"
- sources."globrex-0.1.2"
- (sources."got-9.6.0" // {
- dependencies = [
- sources."decompress-response-3.3.0"
- sources."mimic-response-1.0.1"
];
})
sources."graceful-fs-4.2.8"
- (sources."gulp-vinyl-zip-2.2.1" // {
- dependencies = [
- sources."readable-stream-2.3.7"
- sources."safe-buffer-5.1.2"
- sources."string_decoder-1.1.1"
- sources."through2-2.0.5"
- ];
- })
+ sources."gulp-vinyl-zip-2.5.0"
sources."handlebars-4.7.7"
sources."has-1.0.3"
+ sources."has-flag-3.0.0"
sources."has-symbols-1.0.2"
- sources."http-cache-semantics-4.1.0"
- sources."ieee754-1.2.1"
- sources."ignore-5.1.9"
+ sources."hpagent-0.1.2"
+ sources."ignore-5.2.0"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."is-absolute-1.0.0"
sources."is-buffer-1.1.6"
sources."is-extglob-2.1.1"
- sources."is-glob-3.1.0"
+ sources."is-glob-4.0.3"
sources."is-negated-glob-1.0.0"
sources."is-number-7.0.0"
sources."is-relative-1.0.0"
@@ -71760,146 +72474,133 @@ in
sources."is-valid-glob-1.0.0"
sources."is-windows-1.0.2"
sources."isarray-1.0.0"
- sources."isomorphic-git-0.78.5"
- sources."js-yaml-3.14.1"
- sources."json-buffer-3.0.0"
+ (sources."isomorphic-git-1.10.3" // {
+ dependencies = [
+ sources."simple-get-3.1.0"
+ ];
+ })
+ sources."joycon-3.1.1"
+ sources."js-yaml-4.1.0"
sources."json-stable-stringify-without-jsonify-1.0.1"
- sources."json5-2.1.3"
- sources."jsonfile-4.0.0"
- sources."keyv-3.1.0"
+ sources."json5-2.2.0"
(sources."lazystream-1.0.1" // {
dependencies = [
sources."readable-stream-2.3.7"
- sources."safe-buffer-5.1.2"
- sources."string_decoder-1.1.1"
];
})
sources."lead-1.0.0"
+ sources."leven-2.1.0"
sources."lodash.clonedeep-4.5.0"
- sources."lowercase-keys-1.0.1"
sources."map-obj-4.3.0"
- sources."marky-1.2.2"
- sources."matcher-2.1.0"
sources."mime-db-1.51.0"
sources."mime-types-2.1.34"
sources."mimic-response-2.1.0"
sources."minimatch-3.0.4"
- sources."minimatch-all-1.1.0"
sources."minimist-1.2.5"
sources."minimisted-2.0.1"
- sources."multi-progress-2.0.0"
+ sources."mri-1.1.4"
+ sources."multi-progress-4.0.0"
sources."neo-async-2.6.2"
sources."normalize-path-2.1.1"
- 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"
+ sources."on-exit-leak-free-0.2.0"
sources."once-1.4.0"
- sources."opal-runtime-1.0.11"
(sources."ordered-read-streams-1.0.1" // {
dependencies = [
sources."readable-stream-2.3.7"
- sources."safe-buffer-5.1.2"
- sources."string_decoder-1.1.1"
];
})
- sources."p-cancelable-1.1.0"
sources."pako-1.0.11"
sources."path-dirname-1.0.2"
sources."path-is-absolute-1.0.1"
sources."pend-1.2.0"
- sources."picomatch-2.2.3"
+ sources."picomatch-2.3.0"
sources."pify-4.0.1"
- sources."prepend-http-2.0.0"
+ sources."pino-7.6.2"
+ sources."pino-abstract-transport-0.5.0"
+ sources."pino-pretty-7.3.0"
+ sources."pino-std-serializers-4.0.0"
sources."printj-1.1.2"
sources."process-nextick-args-2.0.1"
- sources."progress-1.1.8"
- sources."pump-2.0.1"
- sources."pumpify-1.5.1"
+ sources."process-warning-1.0.0"
+ sources."progress-2.0.3"
+ sources."pump-3.0.0"
+ sources."pumpify-2.0.1"
sources."queue-4.5.1"
- sources."quick-lru-4.0.1"
+ sources."quick-format-unescaped-4.0.4"
+ sources."quick-lru-5.1.1"
sources."readable-stream-3.6.0"
+ sources."real-require-0.1.0"
sources."remove-bom-buffer-3.0.0"
- (sources."remove-bom-stream-1.2.0" // {
- dependencies = [
- (sources."readable-stream-2.3.7" // {
- dependencies = [
- sources."safe-buffer-5.1.2"
- ];
- })
- (sources."string_decoder-1.1.1" // {
- dependencies = [
- sources."safe-buffer-5.1.2"
- ];
- })
- sources."through2-2.0.5"
- ];
- })
+ sources."remove-bom-stream-1.2.0"
sources."remove-trailing-separator-1.1.0"
sources."replace-ext-1.0.1"
sources."require-from-string-2.0.2"
sources."resolve-options-1.1.0"
- sources."responselike-1.0.2"
- sources."safe-buffer-5.2.1"
+ sources."rfdc-1.3.0"
+ sources."safe-buffer-5.1.2"
+ sources."safe-stable-stringify-2.3.1"
+ sources."secure-json-parse-2.4.0"
sources."sha.js-2.4.11"
+ sources."should-proxy-1.0.4"
sources."simple-concat-1.0.1"
- sources."simple-get-3.1.0"
+ (sources."simple-get-4.0.0" // {
+ dependencies = [
+ sources."decompress-response-6.0.0"
+ sources."mimic-response-3.1.0"
+ ];
+ })
+ sources."sonic-boom-2.4.2"
sources."source-map-0.6.1"
- sources."sprintf-js-1.0.3"
+ sources."split2-4.1.0"
sources."stream-shift-1.0.1"
- sources."string_decoder-1.3.0"
+ sources."string_decoder-1.1.1"
+ sources."strip-json-comments-3.1.1"
+ sources."supports-color-5.5.0"
+ sources."thread-stream-0.13.0"
sources."through-2.3.8"
- sources."through2-4.0.2"
- (sources."through2-filter-3.0.0" // {
+ (sources."through2-2.0.5" // {
dependencies = [
sources."readable-stream-2.3.7"
- sources."safe-buffer-5.1.2"
- sources."string_decoder-1.1.1"
- sources."through2-2.0.5"
];
})
+ sources."through2-filter-3.0.0"
sources."to-absolute-glob-2.0.2"
- sources."to-readable-stream-1.0.0"
sources."to-regex-range-5.0.1"
- (sources."to-through-2.0.0" // {
- dependencies = [
- sources."readable-stream-2.3.7"
- sources."safe-buffer-5.1.2"
- sources."string_decoder-1.1.1"
- sources."through2-2.0.5"
- ];
- })
- sources."to-utf8-0.0.1"
+ sources."to-through-2.0.0"
+ sources."type-fest-1.4.0"
sources."uglify-js-3.14.5"
sources."unc-path-regex-0.1.2"
sources."unique-stream-2.3.1"
- sources."universalify-0.1.2"
- sources."url-parse-lax-3.0.0"
+ sources."unxhr-1.0.1"
sources."util-deprecate-1.0.2"
sources."value-or-function-3.0.0"
- sources."varint-0.0.3"
sources."vinyl-2.2.1"
(sources."vinyl-fs-3.0.3" // {
dependencies = [
+ sources."duplexify-3.7.1"
+ sources."glob-parent-3.1.0"
+ sources."glob-stream-6.1.0"
+ sources."is-glob-3.1.0"
+ sources."pump-2.0.1"
+ sources."pumpify-1.5.1"
sources."readable-stream-2.3.7"
- sources."safe-buffer-5.1.2"
- sources."string_decoder-1.1.1"
- sources."through2-2.0.5"
];
})
sources."vinyl-sourcemap-1.1.0"
sources."wordwrap-1.0.0"
sources."wrappy-1.0.2"
sources."xdg-basedir-3.0.0"
- sources."xmlhttprequest-1.8.0"
sources."xtend-4.0.2"
- sources."yargs-parser-18.1.3"
+ sources."yargs-parser-20.2.9"
sources."yauzl-2.10.0"
sources."yazl-2.5.1"
];
buildInputs = globalBuildInputs;
meta = {
- description = "The default site generator pipeline for producing and publishing static documentation sites with Antora.";
+ description = "An alias for the @antora/site-generator package.";
homepage = "https://antora.org";
license = "MPL-2.0";
};
@@ -71910,10 +72611,10 @@ in
"@astrojs/language-server" = nodeEnv.buildNodePackage {
name = "_at_astrojs_slash_language-server";
packageName = "@astrojs/language-server";
- version = "0.8.4";
+ version = "0.8.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@astrojs/language-server/-/language-server-0.8.4.tgz";
- sha512 = "708BHd8clydMkrsUrh05vPL13RSoU6Cjuu6QExps1co7PDo218EgDBku+JS8g/pnDqDfQwC2Rmo/6GwZ/hfXpA==";
+ url = "https://registry.npmjs.org/@astrojs/language-server/-/language-server-0.8.5.tgz";
+ sha512 = "3Ra2HjnJnfKjSsLrZeWuXIvpW/LBtoUOcnSYAR/pqfOcSZDZXHOXLsySLTkS46zQoMJK0F+V+IRUmZ+vTGUQwA==";
};
dependencies = [
sources."@emmetio/abbreviation-2.2.2"
@@ -71969,7 +72670,7 @@ in
sources."vscode-languageserver-textdocument-1.0.3"
sources."vscode-languageserver-types-3.16.0"
sources."vscode-nls-5.0.0"
- sources."vscode-uri-3.0.2"
+ sources."vscode-uri-3.0.3"
];
buildInputs = globalBuildInputs;
meta = {
@@ -71990,7 +72691,7 @@ in
dependencies = [
sources."@tootallnate/once-1.1.2"
sources."abab-2.0.5"
- sources."acorn-8.6.0"
+ sources."acorn-8.7.0"
(sources."acorn-globals-6.0.0" // {
dependencies = [
sources."acorn-7.4.1"
@@ -72135,15 +72836,15 @@ in
"@commitlint/cli" = nodeEnv.buildNodePackage {
name = "_at_commitlint_slash_cli";
packageName = "@commitlint/cli";
- version = "15.0.0";
+ version = "16.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@commitlint/cli/-/cli-15.0.0.tgz";
- sha512 = "Y5xmDCweytqzo4N4lOI2YRiuX35xTjcs8n5hUceBH8eyK0YbwtgWX50BJOH2XbkwEmII9blNhlBog6AdQsqicg==";
+ url = "https://registry.npmjs.org/@commitlint/cli/-/cli-16.0.1.tgz";
+ sha512 = "61gGRy65WiVDRsqP0dAR2fAgE3qrTBW3fgz9MySv32y5Ib3ZXXDDq6bGyQqi2dSaPuDYzNCRwwlC7mmQM73T/g==";
};
dependencies = [
- sources."@babel/code-frame-7.16.0"
- sources."@babel/helper-validator-identifier-7.15.7"
- (sources."@babel/highlight-7.16.0" // {
+ sources."@babel/code-frame-7.16.7"
+ sources."@babel/helper-validator-identifier-7.16.7"
+ (sources."@babel/highlight-7.16.7" // {
dependencies = [
sources."ansi-styles-3.2.1"
sources."chalk-2.4.2"
@@ -72153,19 +72854,20 @@ in
sources."supports-color-5.5.0"
];
})
- sources."@commitlint/ensure-15.0.0"
- sources."@commitlint/execute-rule-15.0.0"
- sources."@commitlint/format-15.0.0"
- sources."@commitlint/is-ignored-15.0.0"
- sources."@commitlint/lint-15.0.0"
- sources."@commitlint/load-15.0.0"
- sources."@commitlint/message-15.0.0"
- sources."@commitlint/parse-15.0.0"
- sources."@commitlint/read-15.0.0"
- sources."@commitlint/resolve-extends-15.0.0"
- sources."@commitlint/rules-15.0.0"
- sources."@commitlint/to-lines-15.0.0"
- (sources."@commitlint/top-level-15.0.0" // {
+ sources."@commitlint/config-validator-16.0.0"
+ sources."@commitlint/ensure-16.0.0"
+ sources."@commitlint/execute-rule-16.0.0"
+ sources."@commitlint/format-16.0.0"
+ sources."@commitlint/is-ignored-16.0.0"
+ sources."@commitlint/lint-16.0.0"
+ sources."@commitlint/load-16.0.0"
+ sources."@commitlint/message-16.0.0"
+ sources."@commitlint/parse-16.0.0"
+ sources."@commitlint/read-16.0.0"
+ sources."@commitlint/resolve-extends-16.0.0"
+ sources."@commitlint/rules-16.0.0"
+ sources."@commitlint/to-lines-16.0.0"
+ (sources."@commitlint/top-level-16.0.0" // {
dependencies = [
sources."find-up-5.0.0"
sources."locate-path-6.0.0"
@@ -72173,18 +72875,25 @@ in
sources."p-locate-5.0.0"
];
})
- sources."@commitlint/types-15.0.0"
- sources."@endemolshinegroup/cosmiconfig-typescript-loader-3.0.2"
+ sources."@commitlint/types-16.0.0"
+ sources."@cspotcode/source-map-consumer-0.8.0"
+ sources."@cspotcode/source-map-support-0.7.0"
+ sources."@tsconfig/node10-1.0.8"
+ sources."@tsconfig/node12-1.0.9"
+ sources."@tsconfig/node14-1.0.1"
+ sources."@tsconfig/node16-1.0.2"
sources."@types/minimist-1.2.2"
sources."@types/normalize-package-data-2.4.1"
sources."@types/parse-json-4.0.0"
sources."JSONStream-1.3.5"
+ sources."acorn-8.7.0"
+ sources."acorn-walk-8.2.0"
+ sources."ajv-6.12.6"
sources."ansi-regex-5.0.1"
sources."ansi-styles-4.3.0"
sources."arg-4.1.3"
sources."array-ify-1.0.0"
sources."arrify-1.0.1"
- sources."buffer-from-1.1.2"
sources."callsites-3.1.0"
sources."camelcase-5.3.1"
sources."camelcase-keys-6.2.2"
@@ -72194,8 +72903,9 @@ in
sources."color-name-1.1.4"
sources."compare-func-2.0.0"
sources."conventional-changelog-angular-5.0.13"
- sources."conventional-commits-parser-3.2.3"
+ sources."conventional-commits-parser-3.2.4"
sources."cosmiconfig-7.0.1"
+ sources."cosmiconfig-typescript-loader-1.0.2"
sources."create-require-1.1.1"
sources."cross-spawn-7.0.3"
sources."dargs-7.0.0"
@@ -72212,12 +72922,14 @@ in
sources."escalade-3.1.1"
sources."escape-string-regexp-1.0.5"
sources."execa-5.1.1"
+ sources."fast-deep-equal-3.1.3"
+ sources."fast-json-stable-stringify-2.1.0"
sources."find-up-4.1.0"
sources."fs-extra-10.0.0"
sources."function-bind-1.1.1"
sources."get-caller-file-2.0.5"
sources."get-stream-6.0.1"
- sources."git-raw-commits-2.0.10"
+ sources."git-raw-commits-2.0.11"
sources."global-dirs-0.1.1"
sources."graceful-fs-4.2.8"
sources."hard-rejection-2.1.0"
@@ -72243,13 +72955,13 @@ in
sources."isexe-2.0.0"
sources."js-tokens-4.0.0"
sources."json-parse-even-better-errors-2.3.1"
+ sources."json-schema-traverse-0.4.1"
sources."jsonfile-6.1.0"
sources."jsonparse-1.3.1"
sources."kind-of-6.0.3"
sources."lines-and-columns-1.2.4"
sources."locate-path-5.0.0"
sources."lodash-4.17.21"
- sources."lodash.get-4.4.2"
sources."lru-cache-6.0.0"
sources."make-error-1.3.6"
sources."map-obj-4.3.0"
@@ -72270,6 +72982,7 @@ in
sources."path-key-3.1.1"
sources."path-parse-1.0.7"
sources."path-type-4.0.0"
+ sources."punycode-2.1.1"
sources."q-1.5.1"
sources."quick-lru-4.0.1"
(sources."read-pkg-5.2.0" // {
@@ -72296,8 +73009,6 @@ in
sources."shebang-command-2.0.0"
sources."shebang-regex-3.0.0"
sources."signal-exit-3.0.6"
- sources."source-map-0.6.1"
- sources."source-map-support-0.5.21"
sources."spdx-correct-3.1.1"
sources."spdx-exceptions-2.3.0"
sources."spdx-expression-parse-3.0.1"
@@ -72313,11 +73024,11 @@ in
sources."through-2.3.8"
sources."through2-4.0.2"
sources."trim-newlines-3.0.1"
- sources."ts-node-9.1.1"
- sources."tslib-2.3.1"
+ sources."ts-node-10.4.0"
sources."type-fest-0.18.1"
sources."typescript-4.5.4"
sources."universalify-2.0.0"
+ sources."uri-js-4.4.1"
sources."util-deprecate-1.0.2"
sources."validate-npm-package-license-3.0.4"
sources."which-2.0.2"
@@ -72325,7 +73036,7 @@ in
sources."y18n-5.0.8"
sources."yallist-4.0.0"
sources."yaml-1.10.2"
- (sources."yargs-17.3.0" // {
+ (sources."yargs-17.3.1" // {
dependencies = [
sources."yargs-parser-21.0.0"
];
@@ -72347,15 +73058,15 @@ in
"@commitlint/config-conventional" = nodeEnv.buildNodePackage {
name = "_at_commitlint_slash_config-conventional";
packageName = "@commitlint/config-conventional";
- version = "15.0.0";
+ version = "16.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@commitlint/config-conventional/-/config-conventional-15.0.0.tgz";
- sha512 = "eZBRL8Lk3hMNHp1wUMYj0qrZQEsST1ai7KHR8J1IDD9aHgT7L2giciibuQ+Og7vxVhR5WtYDvh9xirXFVPaSkQ==";
+ url = "https://registry.npmjs.org/@commitlint/config-conventional/-/config-conventional-16.0.0.tgz";
+ sha512 = "mN7J8KlKFn0kROd+q9PB01sfDx/8K/R25yITspL1No8PB4oj9M1p77xWjP80hPydqZG9OvQq+anXK3ZWeR7s3g==";
};
dependencies = [
sources."array-ify-1.0.0"
sources."compare-func-2.0.0"
- sources."conventional-changelog-conventionalcommits-4.6.1"
+ sources."conventional-changelog-conventionalcommits-4.6.3"
sources."dot-prop-5.3.0"
sources."is-obj-2.0.0"
sources."lodash-4.17.21"
@@ -72389,7 +73100,7 @@ in
sources."@hyperswarm/hypersign-2.1.1"
sources."@hyperswarm/network-2.1.0"
sources."@leichtgewicht/ip-codec-2.0.3"
- sources."@types/node-17.0.0"
+ sources."@types/node-17.0.6"
sources."abstract-extension-3.1.1"
sources."abstract-leveldown-6.2.3"
sources."ansi-colors-3.2.3"
@@ -72485,7 +73196,7 @@ in
sources."pump-1.0.3"
];
})
- sources."dns-packet-5.3.0"
+ sources."dns-packet-5.3.1"
sources."duplexify-3.7.1"
sources."emoji-regex-7.0.3"
sources."encoding-down-6.3.0"
@@ -72677,7 +73388,7 @@ in
sources."normalize-path-3.0.0"
sources."npm-run-path-1.0.0"
sources."object-assign-4.1.1"
- sources."object-inspect-1.11.1"
+ sources."object-inspect-1.12.0"
sources."object-keys-1.1.1"
sources."object.assign-4.1.0"
sources."object.getownpropertydescriptors-2.1.3"
@@ -72860,7 +73571,7 @@ in
sha512 = "7EpRhhrJqICbMGjLkdthQYLLGMXNCsrsq8/xxYX1cdRiNwoGb84yjL1WFBrnQtaM8rXShOvhf4lrM2W0K9m4lQ==";
};
dependencies = [
- sources."@babel/parser-7.16.6"
+ sources."@babel/parser-7.16.7"
sources."@medable/mdctl-api-1.0.62"
sources."@medable/mdctl-core-1.0.62"
sources."@medable/mdctl-core-schemas-1.0.62"
@@ -72890,7 +73601,7 @@ in
sources."@nodelib/fs.walk-1.2.8"
sources."@types/glob-7.2.0"
sources."@types/minimatch-3.0.5"
- sources."@types/node-17.0.0"
+ sources."@types/node-17.0.6"
sources."@types/tough-cookie-2.3.8"
sources."abbrev-1.1.1"
sources."abort-controller-3.0.0"
@@ -73193,7 +73904,7 @@ in
sources."http-signature-1.2.0"
sources."https-proxy-agent-5.0.0"
sources."iconv-lite-0.4.24"
- sources."ignore-5.1.9"
+ sources."ignore-5.2.0"
sources."ignore-walk-3.0.4"
sources."immediate-3.0.6"
sources."inflection-1.13.1"
@@ -73888,13 +74599,13 @@ in
dependencies = [
sources."chalk-4.1.2"
sources."inquirer-8.2.0"
- sources."rxjs-7.4.0"
- sources."tslib-2.1.0"
+ sources."rxjs-7.5.1"
+ sources."tslib-2.3.1"
];
})
- sources."@babel/code-frame-7.16.0"
- sources."@babel/helper-validator-identifier-7.15.7"
- (sources."@babel/highlight-7.16.0" // {
+ sources."@babel/code-frame-7.16.7"
+ sources."@babel/helper-validator-identifier-7.16.7"
+ (sources."@babel/highlight-7.16.7" // {
dependencies = [
sources."ansi-styles-3.2.1"
sources."chalk-2.4.2"
@@ -73916,7 +74627,7 @@ in
sources."@types/estree-0.0.50"
sources."@types/json-schema-7.0.9"
sources."@types/json5-0.0.29"
- sources."@types/node-17.0.0"
+ sources."@types/node-17.0.6"
sources."@types/parse-json-4.0.0"
sources."@webassemblyjs/ast-1.11.1"
sources."@webassemblyjs/floating-point-hex-parser-1.11.1"
@@ -73935,7 +74646,7 @@ in
sources."@webassemblyjs/wast-printer-1.11.1"
sources."@xtuc/ieee754-1.2.0"
sources."@xtuc/long-4.2.2"
- sources."acorn-8.6.0"
+ sources."acorn-8.7.0"
sources."acorn-import-assertions-1.8.0"
sources."ajv-8.8.2"
sources."ajv-formats-2.1.1"
@@ -73956,7 +74667,7 @@ in
sources."buffer-5.7.1"
sources."buffer-from-1.1.2"
sources."callsites-3.1.0"
- sources."caniuse-lite-1.0.30001287"
+ sources."caniuse-lite-1.0.30001294"
sources."chalk-3.0.0"
sources."chardet-0.7.0"
sources."chokidar-3.5.2"
@@ -73975,7 +74686,7 @@ in
sources."cross-spawn-7.0.3"
sources."deepmerge-4.2.2"
sources."defaults-1.0.3"
- sources."electron-to-chromium-1.4.21"
+ sources."electron-to-chromium-1.4.31"
sources."emoji-regex-8.0.0"
sources."end-of-stream-1.4.4"
(sources."enhanced-resolve-5.8.3" // {
@@ -74065,7 +74776,7 @@ in
sources."lru-cache-6.0.0"
sources."macos-release-2.5.0"
sources."magic-string-0.25.7"
- sources."memfs-3.4.0"
+ sources."memfs-3.4.1"
sources."merge-stream-2.0.0"
sources."mime-db-1.51.0"
sources."mime-types-2.1.34"
@@ -74288,60 +74999,60 @@ in
sources."@apollographql/apollo-tools-0.5.2"
sources."@apollographql/graphql-playground-html-1.6.27"
sources."@apollographql/graphql-upload-8-fork-8.1.3"
- sources."@babel/code-frame-7.16.0"
+ sources."@babel/code-frame-7.16.7"
sources."@babel/compat-data-7.16.4"
- sources."@babel/core-7.16.5"
- sources."@babel/generator-7.16.5"
- sources."@babel/helper-annotate-as-pure-7.16.0"
- sources."@babel/helper-builder-binary-assignment-operator-visitor-7.16.5"
- sources."@babel/helper-compilation-targets-7.16.3"
- sources."@babel/helper-create-class-features-plugin-7.16.5"
- sources."@babel/helper-create-regexp-features-plugin-7.16.0"
+ sources."@babel/core-7.16.7"
+ sources."@babel/generator-7.16.7"
+ sources."@babel/helper-annotate-as-pure-7.16.7"
+ sources."@babel/helper-builder-binary-assignment-operator-visitor-7.16.7"
+ sources."@babel/helper-compilation-targets-7.16.7"
+ sources."@babel/helper-create-class-features-plugin-7.16.7"
+ sources."@babel/helper-create-regexp-features-plugin-7.16.7"
sources."@babel/helper-define-polyfill-provider-0.3.0"
- sources."@babel/helper-environment-visitor-7.16.5"
- sources."@babel/helper-explode-assignable-expression-7.16.0"
- sources."@babel/helper-function-name-7.16.0"
- sources."@babel/helper-get-function-arity-7.16.0"
- sources."@babel/helper-hoist-variables-7.16.0"
- sources."@babel/helper-member-expression-to-functions-7.16.5"
- sources."@babel/helper-module-imports-7.16.0"
- sources."@babel/helper-module-transforms-7.16.5"
- sources."@babel/helper-optimise-call-expression-7.16.0"
- sources."@babel/helper-plugin-utils-7.16.5"
- sources."@babel/helper-remap-async-to-generator-7.16.5"
- sources."@babel/helper-replace-supers-7.16.5"
- sources."@babel/helper-simple-access-7.16.0"
+ sources."@babel/helper-environment-visitor-7.16.7"
+ sources."@babel/helper-explode-assignable-expression-7.16.7"
+ sources."@babel/helper-function-name-7.16.7"
+ sources."@babel/helper-get-function-arity-7.16.7"
+ sources."@babel/helper-hoist-variables-7.16.7"
+ sources."@babel/helper-member-expression-to-functions-7.16.7"
+ sources."@babel/helper-module-imports-7.16.7"
+ sources."@babel/helper-module-transforms-7.16.7"
+ sources."@babel/helper-optimise-call-expression-7.16.7"
+ sources."@babel/helper-plugin-utils-7.16.7"
+ sources."@babel/helper-remap-async-to-generator-7.16.7"
+ sources."@babel/helper-replace-supers-7.16.7"
+ sources."@babel/helper-simple-access-7.16.7"
sources."@babel/helper-skip-transparent-expression-wrappers-7.16.0"
- sources."@babel/helper-split-export-declaration-7.16.0"
- sources."@babel/helper-validator-identifier-7.15.7"
- sources."@babel/helper-validator-option-7.14.5"
- sources."@babel/helper-wrap-function-7.16.5"
- sources."@babel/helpers-7.16.5"
- sources."@babel/highlight-7.16.0"
- sources."@babel/parser-7.16.6"
- sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.2"
- sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.0"
- sources."@babel/plugin-proposal-async-generator-functions-7.16.5"
- sources."@babel/plugin-proposal-class-properties-7.16.5"
- sources."@babel/plugin-proposal-class-static-block-7.16.5"
- sources."@babel/plugin-proposal-dynamic-import-7.16.5"
- sources."@babel/plugin-proposal-export-namespace-from-7.16.5"
- sources."@babel/plugin-proposal-json-strings-7.16.5"
- sources."@babel/plugin-proposal-logical-assignment-operators-7.16.5"
- sources."@babel/plugin-proposal-nullish-coalescing-operator-7.16.5"
- sources."@babel/plugin-proposal-numeric-separator-7.16.5"
- sources."@babel/plugin-proposal-object-rest-spread-7.16.5"
- sources."@babel/plugin-proposal-optional-catch-binding-7.16.5"
- sources."@babel/plugin-proposal-optional-chaining-7.16.5"
- sources."@babel/plugin-proposal-private-methods-7.16.5"
- sources."@babel/plugin-proposal-private-property-in-object-7.16.5"
- sources."@babel/plugin-proposal-unicode-property-regex-7.16.5"
+ sources."@babel/helper-split-export-declaration-7.16.7"
+ sources."@babel/helper-validator-identifier-7.16.7"
+ sources."@babel/helper-validator-option-7.16.7"
+ sources."@babel/helper-wrap-function-7.16.7"
+ sources."@babel/helpers-7.16.7"
+ sources."@babel/highlight-7.16.7"
+ sources."@babel/parser-7.16.7"
+ sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.7"
+ sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.7"
+ sources."@babel/plugin-proposal-async-generator-functions-7.16.7"
+ sources."@babel/plugin-proposal-class-properties-7.16.7"
+ sources."@babel/plugin-proposal-class-static-block-7.16.7"
+ sources."@babel/plugin-proposal-dynamic-import-7.16.7"
+ sources."@babel/plugin-proposal-export-namespace-from-7.16.7"
+ sources."@babel/plugin-proposal-json-strings-7.16.7"
+ sources."@babel/plugin-proposal-logical-assignment-operators-7.16.7"
+ sources."@babel/plugin-proposal-nullish-coalescing-operator-7.16.7"
+ sources."@babel/plugin-proposal-numeric-separator-7.16.7"
+ sources."@babel/plugin-proposal-object-rest-spread-7.16.7"
+ sources."@babel/plugin-proposal-optional-catch-binding-7.16.7"
+ sources."@babel/plugin-proposal-optional-chaining-7.16.7"
+ sources."@babel/plugin-proposal-private-methods-7.16.7"
+ sources."@babel/plugin-proposal-private-property-in-object-7.16.7"
+ sources."@babel/plugin-proposal-unicode-property-regex-7.16.7"
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.14.5"
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.16.5"
+ sources."@babel/plugin-syntax-flow-7.16.7"
sources."@babel/plugin-syntax-json-strings-7.8.3"
sources."@babel/plugin-syntax-logical-assignment-operators-7.10.4"
sources."@babel/plugin-syntax-nullish-coalescing-operator-7.8.3"
@@ -74351,56 +75062,56 @@ in
sources."@babel/plugin-syntax-optional-chaining-7.8.3"
sources."@babel/plugin-syntax-private-property-in-object-7.14.5"
sources."@babel/plugin-syntax-top-level-await-7.14.5"
- sources."@babel/plugin-syntax-typescript-7.16.5"
- sources."@babel/plugin-transform-arrow-functions-7.16.5"
- sources."@babel/plugin-transform-async-to-generator-7.16.5"
- sources."@babel/plugin-transform-block-scoped-functions-7.16.5"
- sources."@babel/plugin-transform-block-scoping-7.16.5"
- sources."@babel/plugin-transform-classes-7.16.5"
- sources."@babel/plugin-transform-computed-properties-7.16.5"
- sources."@babel/plugin-transform-destructuring-7.16.5"
- sources."@babel/plugin-transform-dotall-regex-7.16.5"
- sources."@babel/plugin-transform-duplicate-keys-7.16.5"
- sources."@babel/plugin-transform-exponentiation-operator-7.16.5"
- sources."@babel/plugin-transform-flow-strip-types-7.16.5"
- sources."@babel/plugin-transform-for-of-7.16.5"
- sources."@babel/plugin-transform-function-name-7.16.5"
- sources."@babel/plugin-transform-literals-7.16.5"
- sources."@babel/plugin-transform-member-expression-literals-7.16.5"
- sources."@babel/plugin-transform-modules-amd-7.16.5"
- sources."@babel/plugin-transform-modules-commonjs-7.16.5"
- sources."@babel/plugin-transform-modules-systemjs-7.16.5"
- sources."@babel/plugin-transform-modules-umd-7.16.5"
- sources."@babel/plugin-transform-named-capturing-groups-regex-7.16.5"
- sources."@babel/plugin-transform-new-target-7.16.5"
- sources."@babel/plugin-transform-object-super-7.16.5"
- sources."@babel/plugin-transform-parameters-7.16.5"
- sources."@babel/plugin-transform-property-literals-7.16.5"
- sources."@babel/plugin-transform-regenerator-7.16.5"
- sources."@babel/plugin-transform-reserved-words-7.16.5"
- sources."@babel/plugin-transform-shorthand-properties-7.16.5"
- sources."@babel/plugin-transform-spread-7.16.5"
- sources."@babel/plugin-transform-sticky-regex-7.16.5"
- sources."@babel/plugin-transform-template-literals-7.16.5"
- sources."@babel/plugin-transform-typeof-symbol-7.16.5"
- sources."@babel/plugin-transform-typescript-7.16.1"
- sources."@babel/plugin-transform-unicode-escapes-7.16.5"
- sources."@babel/plugin-transform-unicode-regex-7.16.5"
- sources."@babel/preset-env-7.16.5"
- sources."@babel/preset-flow-7.16.5"
+ sources."@babel/plugin-syntax-typescript-7.16.7"
+ sources."@babel/plugin-transform-arrow-functions-7.16.7"
+ sources."@babel/plugin-transform-async-to-generator-7.16.7"
+ sources."@babel/plugin-transform-block-scoped-functions-7.16.7"
+ sources."@babel/plugin-transform-block-scoping-7.16.7"
+ sources."@babel/plugin-transform-classes-7.16.7"
+ sources."@babel/plugin-transform-computed-properties-7.16.7"
+ sources."@babel/plugin-transform-destructuring-7.16.7"
+ sources."@babel/plugin-transform-dotall-regex-7.16.7"
+ sources."@babel/plugin-transform-duplicate-keys-7.16.7"
+ sources."@babel/plugin-transform-exponentiation-operator-7.16.7"
+ sources."@babel/plugin-transform-flow-strip-types-7.16.7"
+ sources."@babel/plugin-transform-for-of-7.16.7"
+ sources."@babel/plugin-transform-function-name-7.16.7"
+ sources."@babel/plugin-transform-literals-7.16.7"
+ sources."@babel/plugin-transform-member-expression-literals-7.16.7"
+ sources."@babel/plugin-transform-modules-amd-7.16.7"
+ sources."@babel/plugin-transform-modules-commonjs-7.16.7"
+ sources."@babel/plugin-transform-modules-systemjs-7.16.7"
+ sources."@babel/plugin-transform-modules-umd-7.16.7"
+ sources."@babel/plugin-transform-named-capturing-groups-regex-7.16.7"
+ sources."@babel/plugin-transform-new-target-7.16.7"
+ sources."@babel/plugin-transform-object-super-7.16.7"
+ sources."@babel/plugin-transform-parameters-7.16.7"
+ sources."@babel/plugin-transform-property-literals-7.16.7"
+ sources."@babel/plugin-transform-regenerator-7.16.7"
+ sources."@babel/plugin-transform-reserved-words-7.16.7"
+ sources."@babel/plugin-transform-shorthand-properties-7.16.7"
+ sources."@babel/plugin-transform-spread-7.16.7"
+ sources."@babel/plugin-transform-sticky-regex-7.16.7"
+ sources."@babel/plugin-transform-template-literals-7.16.7"
+ sources."@babel/plugin-transform-typeof-symbol-7.16.7"
+ sources."@babel/plugin-transform-typescript-7.16.7"
+ sources."@babel/plugin-transform-unicode-escapes-7.16.7"
+ sources."@babel/plugin-transform-unicode-regex-7.16.7"
+ sources."@babel/preset-env-7.16.7"
+ sources."@babel/preset-flow-7.16.7"
sources."@babel/preset-modules-0.1.5"
- sources."@babel/preset-typescript-7.16.5"
- (sources."@babel/register-7.16.5" // {
+ sources."@babel/preset-typescript-7.16.7"
+ (sources."@babel/register-7.16.7" // {
dependencies = [
sources."make-dir-2.1.0"
sources."pify-4.0.1"
sources."semver-5.7.1"
];
})
- sources."@babel/runtime-7.16.5"
- sources."@babel/template-7.16.0"
- sources."@babel/traverse-7.16.5"
- sources."@babel/types-7.16.0"
+ sources."@babel/runtime-7.16.7"
+ sources."@babel/template-7.16.7"
+ sources."@babel/traverse-7.16.7"
+ sources."@babel/types-7.16.7"
sources."@hapi/address-2.1.4"
sources."@hapi/bourne-1.3.2"
sources."@hapi/hoek-8.5.1"
@@ -74434,7 +75145,7 @@ in
sources."@types/cors-2.8.10"
sources."@types/ejs-2.7.0"
sources."@types/express-4.17.13"
- sources."@types/express-serve-static-core-4.17.26"
+ sources."@types/express-serve-static-core-4.17.27"
sources."@types/fs-capacitor-2.0.0"
sources."@types/glob-7.2.0"
sources."@types/http-assert-1.5.3"
@@ -74453,7 +75164,7 @@ in
sources."@types/long-4.0.1"
sources."@types/mime-1.3.2"
sources."@types/minimatch-3.0.5"
- sources."@types/node-17.0.0"
+ sources."@types/node-17.0.6"
sources."@types/normalize-package-data-2.4.1"
sources."@types/qs-6.9.7"
sources."@types/range-parser-1.2.4"
@@ -74588,7 +75299,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.30001287"
+ sources."caniuse-lite-1.0.30001294"
sources."caseless-0.12.0"
sources."caw-2.0.1"
sources."chalk-2.4.2"
@@ -74630,26 +75341,22 @@ in
sources."component-emitter-1.3.0"
sources."concat-map-0.0.1"
sources."config-chain-1.1.13"
- (sources."content-disposition-0.5.3" // {
- dependencies = [
- sources."safe-buffer-5.1.2"
- ];
- })
+ sources."content-disposition-0.5.4"
sources."content-type-1.0.4"
(sources."convert-source-map-1.8.0" // {
dependencies = [
sources."safe-buffer-5.1.2"
];
})
- sources."cookie-0.4.0"
+ sources."cookie-0.4.1"
sources."cookie-signature-1.0.6"
sources."copy-descriptor-0.1.1"
- (sources."core-js-compat-3.20.0" // {
+ (sources."core-js-compat-3.20.2" // {
dependencies = [
sources."semver-7.0.0"
];
})
- sources."core-js-pure-3.20.0"
+ sources."core-js-pure-3.20.2"
sources."core-util-is-1.0.2"
sources."cors-2.8.5"
(sources."cross-spawn-6.0.5" // {
@@ -74715,7 +75422,7 @@ in
sources."ecc-jsbn-0.1.2"
sources."ee-first-1.1.1"
sources."ejs-2.7.4"
- sources."electron-to-chromium-1.4.21"
+ sources."electron-to-chromium-1.4.31"
sources."emoji-regex-8.0.0"
sources."encodeurl-1.0.2"
sources."end-of-stream-1.4.4"
@@ -74754,18 +75461,10 @@ in
];
})
sources."expand-tilde-2.0.2"
- (sources."express-4.17.1" // {
+ (sources."express-4.17.2" // {
dependencies = [
- sources."body-parser-1.19.0"
- sources."bytes-3.1.0"
sources."debug-2.6.9"
- sources."http-errors-1.7.2"
- sources."inherits-2.0.3"
- sources."qs-6.7.0"
- sources."raw-body-2.4.0"
- sources."safe-buffer-5.1.2"
- sources."setprototypeof-1.1.1"
- sources."toidentifier-1.0.0"
+ sources."qs-6.9.6"
];
})
sources."express-history-api-fallback-2.2.1"
@@ -74982,7 +75681,7 @@ in
sources."jsprim-1.4.2"
sources."keyv-3.0.0"
sources."kind-of-6.0.3"
- sources."launch-editor-2.2.1"
+ sources."launch-editor-2.3.0"
sources."leven-3.1.0"
sources."lines-and-columns-1.2.4"
sources."locate-path-3.0.0"
@@ -75087,7 +75786,7 @@ in
sources."kind-of-3.2.2"
];
})
- sources."object-inspect-1.11.1"
+ sources."object-inspect-1.12.0"
sources."object-keys-1.1.1"
sources."object-path-0.11.8"
sources."object-visit-1.0.1"
@@ -75217,20 +75916,17 @@ in
sources."sec-1.0.0"
sources."seek-bzip-1.0.6"
sources."semver-6.3.0"
- (sources."send-0.17.1" // {
+ (sources."send-0.17.2" // {
dependencies = [
(sources."debug-2.6.9" // {
dependencies = [
sources."ms-2.0.0"
];
})
- sources."http-errors-1.7.3"
- sources."ms-2.1.1"
- sources."setprototypeof-1.1.1"
- sources."toidentifier-1.0.0"
+ sources."ms-2.1.3"
];
})
- sources."serve-static-1.14.1"
+ sources."serve-static-1.14.2"
sources."set-value-2.0.1"
sources."setprototypeof-1.2.0"
sources."sha.js-2.4.11"
@@ -75435,7 +76131,7 @@ in
sources."fill-range-7.0.1"
sources."glob-parent-5.1.2"
sources."globby-11.0.4"
- sources."ignore-5.1.9"
+ sources."ignore-5.2.0"
sources."is-number-7.0.0"
sources."lru-cache-6.0.0"
sources."micromatch-4.0.4"
@@ -75612,13 +76308,13 @@ in
sha512 = "7SWOLN+1eZ5e9gohQPVdA8XQstGIYei/70T5kmLP6vC41zy8BBYNt35OgLZmbpg3iOQ1vWT17ZMhVikSJySSRg==";
};
dependencies = [
- sources."@babel/code-frame-7.16.0"
- sources."@babel/generator-7.16.5"
- sources."@babel/helper-validator-identifier-7.15.7"
- sources."@babel/highlight-7.16.0"
- sources."@babel/parser-7.16.6"
- sources."@babel/template-7.16.0"
- sources."@babel/types-7.16.0"
+ sources."@babel/code-frame-7.16.7"
+ sources."@babel/generator-7.16.7"
+ sources."@babel/helper-validator-identifier-7.16.7"
+ sources."@babel/highlight-7.16.7"
+ sources."@babel/parser-7.16.7"
+ sources."@babel/template-7.16.7"
+ sources."@babel/types-7.16.7"
sources."@webassemblyjs/ast-1.11.1"
sources."@webassemblyjs/floating-point-hex-parser-1.11.1"
sources."@webassemblyjs/helper-api-error-1.11.1"
@@ -75692,9 +76388,9 @@ in
sha512 = "yTKA5M514WOTpZZkK6pusBbtvVbNTavKS3nI4Z9ceH7RdNGII9S8p8mrcA38S8T0QGxp+EK3l/61XLBj0LTdhQ==";
};
dependencies = [
- sources."@babel/code-frame-7.16.0"
- sources."@babel/helper-validator-identifier-7.15.7"
- sources."@babel/highlight-7.16.0"
+ sources."@babel/code-frame-7.16.7"
+ sources."@babel/helper-validator-identifier-7.16.7"
+ sources."@babel/highlight-7.16.7"
sources."@sindresorhus/is-0.14.0"
sources."@szmarczak/http-timer-1.1.2"
sources."@types/acorn-4.0.6"
@@ -75709,12 +76405,12 @@ in
sources."@types/minimist-1.2.2"
sources."@types/ms-0.7.31"
sources."@types/nlcst-1.0.0"
- sources."@types/node-16.11.14"
+ sources."@types/node-17.0.6"
sources."@types/normalize-package-data-2.4.1"
sources."@types/parse5-6.0.3"
sources."@types/supports-color-8.1.1"
sources."@types/unist-2.0.6"
- sources."acorn-8.6.0"
+ sources."acorn-8.7.0"
sources."acorn-jsx-5.3.2"
sources."ansi-align-3.0.1"
sources."ansi-regex-5.0.1"
@@ -75841,7 +76537,7 @@ in
sources."hastscript-7.0.2"
sources."hosted-git-info-4.0.2"
sources."http-cache-semantics-4.1.0"
- sources."ignore-5.1.9"
+ sources."ignore-5.2.0"
sources."import-lazy-2.1.0"
sources."import-meta-resolve-1.1.1"
sources."imurmurhash-0.1.4"
@@ -75911,7 +76607,7 @@ in
sources."mdast-util-gfm-autolink-literal-1.0.2"
sources."mdast-util-gfm-footnote-1.0.0"
sources."mdast-util-gfm-strikethrough-1.0.0"
- sources."mdast-util-gfm-table-1.0.1"
+ sources."mdast-util-gfm-table-1.0.2"
sources."mdast-util-gfm-task-list-item-1.0.0"
sources."mdast-util-mdx-1.1.0"
sources."mdast-util-mdx-expression-1.1.1"
@@ -75924,7 +76620,7 @@ in
sources."micromark-3.0.10"
sources."micromark-core-commonmark-1.0.6"
sources."micromark-extension-frontmatter-1.0.0"
- sources."micromark-extension-gfm-2.0.0"
+ sources."micromark-extension-gfm-2.0.1"
sources."micromark-extension-gfm-autolink-literal-1.0.3"
sources."micromark-extension-gfm-footnote-1.0.3"
sources."micromark-extension-gfm-strikethrough-1.0.4"
@@ -75948,7 +76644,7 @@ in
sources."micromark-util-combine-extensions-1.0.0"
sources."micromark-util-decode-numeric-character-reference-1.0.0"
sources."micromark-util-decode-string-1.0.2"
- sources."micromark-util-encode-1.0.0"
+ sources."micromark-util-encode-1.0.1"
sources."micromark-util-events-to-acorn-1.0.4"
sources."micromark-util-html-tag-name-1.0.0"
sources."micromark-util-normalize-identifier-1.0.0"
@@ -76025,7 +76721,7 @@ in
sources."retext-english-4.1.0"
sources."retext-equality-6.3.0"
sources."retext-profanities-7.1.0"
- sources."sade-1.7.4"
+ sources."sade-1.8.0"
sources."safe-buffer-5.2.1"
sources."semver-7.3.5"
(sources."semver-diff-3.1.1" // {
@@ -76083,9 +76779,11 @@ in
];
})
sources."unified-diff-4.0.1"
- (sources."unified-engine-9.0.4" // {
+ (sources."unified-engine-9.0.5" // {
dependencies = [
sources."is-plain-obj-4.0.0"
+ sources."lines-and-columns-2.0.3"
+ sources."parse-json-6.0.2"
];
})
(sources."unified-message-control-4.0.0" // {
@@ -76122,10 +76820,10 @@ in
sources."util-deprecate-1.0.2"
sources."uvu-0.5.2"
sources."validate-npm-package-license-3.0.4"
- sources."vfile-5.2.0"
+ sources."vfile-5.2.1"
sources."vfile-find-up-6.0.0"
sources."vfile-location-4.0.1"
- sources."vfile-message-3.0.2"
+ sources."vfile-message-3.1.0"
(sources."vfile-reporter-7.0.3" // {
dependencies = [
sources."ansi-regex-6.0.1"
@@ -76175,35 +76873,35 @@ in
sha512 = "fLYUFiga1hybXkV5p1hhRqWO2LhGPPqdxREr1GtXz3SpsdfYDBQCTcXd79RG3RciFurmmKqClpfM5AemiWQDuA==";
};
dependencies = [
- sources."@babel/code-frame-7.16.0"
+ sources."@babel/code-frame-7.16.7"
sources."@babel/compat-data-7.16.4"
- (sources."@babel/core-7.16.5" // {
+ (sources."@babel/core-7.16.7" // {
dependencies = [
sources."source-map-0.5.7"
];
})
- (sources."@babel/generator-7.16.5" // {
+ (sources."@babel/generator-7.16.7" // {
dependencies = [
sources."source-map-0.5.7"
];
})
- sources."@babel/helper-compilation-targets-7.16.3"
- sources."@babel/helper-environment-visitor-7.16.5"
- sources."@babel/helper-function-name-7.16.0"
- sources."@babel/helper-get-function-arity-7.16.0"
- sources."@babel/helper-hoist-variables-7.16.0"
- sources."@babel/helper-module-imports-7.16.0"
- sources."@babel/helper-module-transforms-7.16.5"
- sources."@babel/helper-simple-access-7.16.0"
- sources."@babel/helper-split-export-declaration-7.16.0"
- sources."@babel/helper-validator-identifier-7.15.7"
- sources."@babel/helper-validator-option-7.14.5"
- sources."@babel/helpers-7.16.5"
- sources."@babel/highlight-7.16.0"
- sources."@babel/parser-7.16.6"
- sources."@babel/template-7.16.0"
- sources."@babel/traverse-7.16.5"
- sources."@babel/types-7.16.0"
+ sources."@babel/helper-compilation-targets-7.16.7"
+ sources."@babel/helper-environment-visitor-7.16.7"
+ sources."@babel/helper-function-name-7.16.7"
+ sources."@babel/helper-get-function-arity-7.16.7"
+ sources."@babel/helper-hoist-variables-7.16.7"
+ sources."@babel/helper-module-imports-7.16.7"
+ sources."@babel/helper-module-transforms-7.16.7"
+ sources."@babel/helper-simple-access-7.16.7"
+ sources."@babel/helper-split-export-declaration-7.16.7"
+ sources."@babel/helper-validator-identifier-7.16.7"
+ sources."@babel/helper-validator-option-7.16.7"
+ sources."@babel/helpers-7.16.7"
+ sources."@babel/highlight-7.16.7"
+ sources."@babel/parser-7.16.7"
+ sources."@babel/template-7.16.7"
+ sources."@babel/traverse-7.16.7"
+ sources."@babel/types-7.16.7"
sources."JSV-4.0.2"
sources."ansi-styles-3.2.1"
sources."array-unique-0.3.2"
@@ -76211,7 +76909,7 @@ in
sources."balanced-match-1.0.2"
sources."brace-expansion-1.1.11"
sources."browserslist-4.19.1"
- sources."caniuse-lite-1.0.30001287"
+ sources."caniuse-lite-1.0.30001294"
sources."chalk-2.4.2"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
@@ -76221,7 +76919,7 @@ in
sources."convert-source-map-1.8.0"
sources."debug-4.3.3"
sources."ejs-3.1.6"
- sources."electron-to-chromium-1.4.21"
+ sources."electron-to-chromium-1.4.31"
sources."ensure-posix-path-1.1.1"
sources."escalade-3.1.1"
sources."escape-string-regexp-1.0.5"
@@ -76316,7 +77014,7 @@ in
dependencies = [
sources."@types/glob-7.2.0"
sources."@types/minimatch-3.0.5"
- sources."@types/node-17.0.0"
+ sources."@types/node-17.0.6"
sources."balanced-match-1.0.2"
sources."brace-expansion-1.1.11"
sources."chromium-pickle-js-0.2.0"
@@ -76394,15 +77092,15 @@ in
autoprefixer = nodeEnv.buildNodePackage {
name = "autoprefixer";
packageName = "autoprefixer";
- version = "10.4.0";
+ version = "10.4.1";
src = fetchurl {
- url = "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.0.tgz";
- sha512 = "7FdJ1ONtwzV1G43GDD0kpVMn/qbiNqyOPMFTX5nRffI+7vgWoFEc6DcXOxHJxrWNDXrZh18eDsZjvZGUljSRGA==";
+ url = "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.1.tgz";
+ sha512 = "B3ZEG7wtzXDRCEFsan7HmR2AeNsxdJB0+sEC0Hc5/c2NbhJqPwuZm+tn233GBVw82L+6CtD6IPSfVruwKjfV3A==";
};
dependencies = [
sources."browserslist-4.19.1"
- sources."caniuse-lite-1.0.30001287"
- sources."electron-to-chromium-1.4.21"
+ sources."caniuse-lite-1.0.30001294"
+ sources."electron-to-chromium-1.4.31"
sources."escalade-3.1.1"
sources."fraction.js-4.1.2"
sources."node-releases-2.0.1"
@@ -76430,14 +77128,14 @@ in
};
dependencies = [
sources."@tootallnate/once-1.1.2"
- sources."@types/node-17.0.0"
+ sources."@types/node-17.0.6"
sources."@types/yauzl-2.9.2"
sources."agent-base-6.0.2"
sources."ansi-escapes-4.3.2"
sources."ansi-regex-5.0.1"
sources."ansi-styles-4.3.0"
sources."ast-types-0.13.4"
- (sources."aws-sdk-2.1046.0" // {
+ (sources."aws-sdk-2.1048.0" // {
dependencies = [
sources."uuid-3.3.2"
];
@@ -76469,7 +77167,7 @@ in
sources."commander-8.3.0"
sources."concat-map-0.0.1"
sources."core-util-is-1.0.3"
- sources."css-select-4.2.0"
+ sources."css-select-4.2.1"
sources."css-what-5.1.0"
sources."data-uri-to-buffer-3.0.1"
sources."debug-4.3.3"
@@ -76577,11 +77275,7 @@ in
sources."restore-cursor-3.1.0"
sources."rimraf-3.0.2"
sources."run-async-2.4.1"
- (sources."rxjs-7.4.0" // {
- dependencies = [
- sources."tslib-2.1.0"
- ];
- })
+ sources."rxjs-7.5.1"
sources."safe-buffer-5.2.1"
sources."safer-buffer-2.1.2"
sources."sax-1.2.1"
@@ -76647,9 +77341,9 @@ in
sha512 = "Jc5aV6fjaAnx5Rmgk26lSUAreSU4UAFrRdedTYK1x2yXB5348X5bHN7J0xUf70AUw5ujloYVkZPCw4mwuVXllg==";
};
dependencies = [
- sources."@babel/code-frame-7.16.0"
- sources."@babel/helper-validator-identifier-7.15.7"
- (sources."@babel/highlight-7.16.0" // {
+ sources."@babel/code-frame-7.16.7"
+ sources."@babel/helper-validator-identifier-7.16.7"
+ (sources."@babel/highlight-7.16.7" // {
dependencies = [
sources."ansi-styles-3.2.1"
sources."chalk-2.4.2"
@@ -76763,7 +77457,7 @@ in
sources."hosted-git-info-4.0.2"
sources."http-cache-semantics-4.1.0"
sources."ieee754-1.2.1"
- sources."ignore-5.1.9"
+ sources."ignore-5.2.0"
sources."indent-string-4.0.0"
sources."indexed-filter-1.0.3"
sources."inflight-1.0.6"
@@ -77058,18 +77752,19 @@ in
balanceofsatoshis = nodeEnv.buildNodePackage {
name = "balanceofsatoshis";
packageName = "balanceofsatoshis";
- version = "11.15.0";
+ version = "11.17.0";
src = fetchurl {
- url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-11.15.0.tgz";
- sha512 = "M9z7lob87YaxDc42JLHLUyaw1+mDg4Hykk31HfZSTJ0hL8rUqxjYg5d5BHep43Ue0ZwkYgTWahBgORfLj8QR8Q==";
+ url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-11.17.0.tgz";
+ sha512 = "A6FbP/RrewXj/fDvIElhrNlA8iCh/m+R61Ob6AiZ+WPmnNH8gWn0MvdcrW4qT92YN3pwSXkRrCessWjkXl71RA==";
};
dependencies = [
sources."@alexbosworth/fiat-1.0.0"
sources."@alexbosworth/html2unicode-1.1.5"
sources."@alexbosworth/node-fetch-2.6.2"
sources."@alexbosworth/saxophone-0.6.2"
- sources."@grpc/grpc-js-1.4.4"
- sources."@grpc/proto-loader-0.6.6"
+ sources."@grammyjs/types-2.5.1"
+ sources."@grpc/grpc-js-1.4.5"
+ sources."@grpc/proto-loader-0.6.7"
sources."@handsontable/formulajs-2.0.2"
sources."@mitmaro/errors-1.0.0"
sources."@mitmaro/http-authorization-header-1.0.0"
@@ -77089,10 +77784,10 @@ in
sources."@types/caseless-0.12.2"
sources."@types/connect-3.4.35"
sources."@types/express-4.17.13"
- sources."@types/express-serve-static-core-4.17.26"
+ sources."@types/express-serve-static-core-4.17.27"
sources."@types/long-4.0.1"
sources."@types/mime-1.3.2"
- sources."@types/node-17.0.0"
+ sources."@types/node-17.0.6"
sources."@types/qs-6.9.7"
sources."@types/range-parser-1.2.4"
sources."@types/request-2.48.7"
@@ -77141,6 +77836,8 @@ in
(sources."bip32-2.0.6" // {
dependencies = [
sources."@types/node-10.12.18"
+ sources."bn.js-4.12.0"
+ sources."tiny-secp256k1-1.1.6"
];
})
sources."bip65-1.0.3"
@@ -77151,7 +77848,7 @@ in
sources."bl-4.1.0"
sources."bluebird-3.7.2"
sources."bn.js-5.2.0"
- sources."body-parser-1.19.0"
+ sources."body-parser-1.19.1"
sources."bolt01-1.2.3"
(sources."bolt03-1.2.12" // {
dependencies = [
@@ -77176,11 +77873,8 @@ in
sources."bs58-4.0.1"
sources."bs58check-2.1.2"
sources."buffer-5.7.1"
- sources."buffer-alloc-1.2.0"
- sources."buffer-alloc-unsafe-1.1.0"
- sources."buffer-fill-1.0.0"
sources."buffer-from-1.1.2"
- sources."bytes-3.1.0"
+ sources."bytes-3.1.1"
(sources."cacheable-request-6.1.0" // {
dependencies = [
sources."get-stream-5.2.0"
@@ -77261,7 +77955,7 @@ in
sources."destroy-1.0.4"
sources."dot-prop-5.3.0"
sources."duplexer3-0.1.4"
- sources."ecpair-1.0.1"
+ sources."ecpair-2.0.1"
sources."ee-first-1.1.1"
(sources."elliptic-6.5.4" // {
dependencies = [
@@ -77280,7 +77974,15 @@ in
sources."exit-hook-1.1.1"
(sources."express-4.17.1" // {
dependencies = [
+ sources."body-parser-1.19.0"
+ sources."bytes-3.1.0"
+ sources."http-errors-1.7.2"
+ sources."inherits-2.0.3"
+ sources."qs-6.7.0"
+ sources."raw-body-2.4.0"
sources."safe-buffer-5.1.2"
+ sources."setprototypeof-1.1.1"
+ sources."toidentifier-1.0.0"
];
})
sources."extend-3.0.2"
@@ -77298,14 +78000,15 @@ in
sources."get-caller-file-2.0.5"
sources."get-stream-4.1.0"
sources."global-dirs-3.0.0"
- (sources."goldengate-10.4.2" // {
- dependencies = [
- sources."bitcoinjs-lib-6.0.0"
- sources."ln-service-52.16.0"
- ];
- })
+ sources."goldengate-11.0.0"
sources."got-9.6.0"
sources."graceful-fs-4.2.8"
+ (sources."grammy-1.5.4" // {
+ dependencies = [
+ sources."debug-4.3.3"
+ sources."ms-2.1.2"
+ ];
+ })
(sources."has-ansi-2.0.0" // {
dependencies = [
sources."ansi-regex-2.1.1"
@@ -77319,11 +78022,7 @@ in
sources."hmac-drbg-1.0.1"
sources."hot-formula-parser-4.0.0"
sources."http-cache-semantics-4.1.0"
- (sources."http-errors-1.7.2" // {
- dependencies = [
- sources."inherits-2.0.3"
- ];
- })
+ sources."http-errors-1.8.1"
sources."iconv-lite-0.4.24"
sources."ieee754-1.2.1"
sources."import-lazy-4.0.0"
@@ -77388,8 +78087,14 @@ in
sources."latest-version-5.1.0"
(sources."lightning-4.14.3" // {
dependencies = [
+ sources."@grpc/grpc-js-1.4.4"
+ sources."@grpc/proto-loader-0.6.6"
sources."@types/node-16.11.7"
sources."bitcoinjs-lib-6.0.0"
+ sources."body-parser-1.19.0"
+ sources."bytes-3.1.0"
+ sources."http-errors-1.7.2"
+ sources."inherits-2.0.3"
(sources."invoices-2.0.1" // {
dependencies = [
(sources."bitcoinjs-lib-5.2.0" // {
@@ -77399,40 +78104,72 @@ in
})
];
})
+ sources."qs-6.7.0"
+ sources."raw-body-2.4.0"
+ sources."setprototypeof-1.1.1"
+ (sources."tiny-secp256k1-1.1.6" // {
+ dependencies = [
+ sources."bn.js-4.12.0"
+ ];
+ })
+ sources."toidentifier-1.0.0"
];
})
(sources."ln-accounting-5.0.5" // {
dependencies = [
+ sources."@grpc/grpc-js-1.4.4"
+ sources."@grpc/proto-loader-0.6.6"
sources."bitcoinjs-lib-6.0.0"
+ sources."bn.js-4.12.0"
+ sources."body-parser-1.19.0"
+ sources."bytes-3.1.0"
+ sources."ecpair-1.0.1"
+ sources."goldengate-10.4.2"
+ sources."http-errors-1.7.2"
+ sources."inherits-2.0.3"
sources."ln-service-52.16.0"
+ sources."qs-6.7.0"
+ sources."raw-body-2.4.0"
+ sources."setprototypeof-1.1.1"
+ sources."tiny-secp256k1-1.1.6"
+ sources."toidentifier-1.0.0"
];
})
(sources."ln-service-53.2.0" // {
dependencies = [
- sources."@grpc/proto-loader-0.6.7"
+ sources."@grpc/grpc-js-1.4.4"
sources."@types/node-16.11.12"
sources."@types/ws-8.2.2"
+ sources."body-parser-1.19.0"
+ sources."bytes-3.1.0"
+ sources."http-errors-1.7.2"
+ sources."inherits-2.0.3"
sources."lightning-5.2.1"
+ sources."qs-6.7.0"
+ sources."raw-body-2.4.0"
+ sources."setprototypeof-1.1.1"
+ sources."toidentifier-1.0.0"
sources."type-fest-2.8.0"
sources."ws-8.3.0"
];
})
- (sources."ln-sync-3.3.0" // {
- dependencies = [
- sources."@grpc/proto-loader-0.6.7"
- sources."@types/node-16.11.12"
- sources."@types/ws-8.2.2"
- sources."lightning-5.2.1"
- sources."type-fest-2.8.0"
- ];
- })
+ sources."ln-sync-3.6.0"
(sources."ln-telegram-3.4.2" // {
dependencies = [
+ sources."@grpc/grpc-js-1.4.4"
+ sources."@grpc/proto-loader-0.6.6"
sources."@types/node-16.11.7"
sources."ansi-regex-5.0.1"
sources."bech32-1.1.4"
sources."bitcoinjs-lib-6.0.0"
+ sources."bn.js-4.12.0"
+ sources."body-parser-1.19.0"
+ sources."bytes-3.1.0"
sources."cbor-8.0.2"
+ sources."ecpair-1.0.1"
+ sources."goldengate-10.4.2"
+ sources."http-errors-1.7.2"
+ sources."inherits-2.0.3"
(sources."invoices-2.0.1" // {
dependencies = [
sources."bech32-2.0.0"
@@ -77441,19 +78178,26 @@ in
sources."bech32-1.1.4"
];
})
+ sources."bn.js-5.2.0"
];
})
sources."is-fullwidth-code-point-3.0.0"
(sources."lightning-4.13.3" // {
dependencies = [
sources."bitcoinjs-lib-5.2.0"
+ sources."bn.js-5.2.0"
];
})
sources."ln-service-52.16.0"
sources."ln-sync-3.0.1"
+ sources."qs-6.7.0"
+ sources."raw-body-2.4.0"
+ sources."setprototypeof-1.1.1"
sources."string-width-4.2.3"
sources."strip-ansi-6.0.1"
sources."table-6.7.3"
+ sources."tiny-secp256k1-1.1.6"
+ sources."toidentifier-1.0.0"
];
})
sources."lodash-4.17.21"
@@ -77497,7 +78241,6 @@ in
sources."minimalistic-crypto-utils-1.0.1"
sources."minimist-1.2.5"
sources."mkdirp-0.5.5"
- sources."module-alias-2.2.2"
sources."moment-2.29.1"
(sources."morgan-1.10.0" // {
dependencies = [
@@ -77535,23 +78278,12 @@ in
sources."os-shim-0.1.3"
sources."os-tmpdir-1.0.2"
sources."p-cancelable-1.1.0"
- sources."p-timeout-4.1.0"
(sources."package-json-6.5.0" // {
dependencies = [
sources."semver-6.3.0"
];
})
- (sources."paid-services-3.2.0" // {
- dependencies = [
- sources."@grpc/proto-loader-0.6.7"
- sources."@types/node-16.11.11"
- sources."@types/ws-8.2.1"
- sources."lightning-5.1.1"
- sources."ln-service-53.1.2"
- sources."type-fest-2.8.0"
- sources."ws-8.3.0"
- ];
- })
+ sources."paid-services-3.3.0"
sources."parseurl-1.3.3"
sources."path-to-regexp-0.1.7"
sources."pinkie-2.0.4"
@@ -77570,6 +78302,11 @@ in
dependencies = [
sources."bech32-1.1.4"
sources."bitcoinjs-lib-5.2.0"
+ (sources."tiny-secp256k1-1.1.6" // {
+ dependencies = [
+ sources."bn.js-4.12.0"
+ ];
+ })
];
})
sources."pump-3.0.0"
@@ -77577,10 +78314,10 @@ in
sources."pupa-2.1.1"
sources."pushdata-bitcoin-1.0.1"
sources."qrcode-terminal-0.12.0"
- sources."qs-6.7.0"
+ sources."qs-6.9.6"
sources."randombytes-2.1.0"
sources."range-parser-1.2.1"
- sources."raw-body-2.4.0"
+ sources."raw-body-2.4.2"
(sources."rc-1.2.8" // {
dependencies = [
sources."ini-1.3.8"
@@ -77596,11 +78333,9 @@ in
sources."ripemd160-2.0.2"
sources."run-async-2.4.1"
sources."rx-4.1.0"
- sources."rxjs-7.4.0"
+ sources."rxjs-7.5.1"
sources."safe-buffer-5.2.1"
- sources."safe-compare-1.1.4"
sources."safer-buffer-2.1.2"
- sources."sandwich-stream-2.0.2"
sources."sanitize-filename-1.6.3"
sources."secp256k1-4.0.2"
sources."semver-7.3.5"
@@ -77611,11 +78346,14 @@ in
})
(sources."send-0.17.1" // {
dependencies = [
+ sources."http-errors-1.7.3"
sources."ms-2.1.1"
+ sources."setprototypeof-1.1.1"
+ sources."toidentifier-1.0.0"
];
})
sources."serve-static-1.14.1"
- sources."setprototypeof-1.1.1"
+ sources."setprototypeof-1.2.0"
sources."sha.js-2.4.11"
sources."signal-exit-3.0.6"
sources."sjcl-1.0.8"
@@ -77651,25 +78389,15 @@ in
sources."strip-ansi-3.0.1"
];
})
- (sources."telegraf-4.5.2" // {
- dependencies = [
- sources."debug-4.3.3"
- sources."ms-2.1.2"
- ];
- })
sources."through-2.3.8"
sources."tiny-emitter-2.1.0"
- (sources."tiny-secp256k1-1.1.6" // {
- dependencies = [
- sources."bn.js-4.12.0"
- ];
- })
+ sources."tiny-secp256k1-2.1.2"
sources."tmp-0.0.29"
sources."to-readable-stream-1.0.0"
- sources."toidentifier-1.0.0"
+ sources."toidentifier-1.0.1"
sources."tr46-0.0.3"
sources."truncate-utf8-bytes-1.0.2"
- sources."tslib-2.1.0"
+ sources."tslib-2.3.1"
sources."tweetnacl-1.0.3"
sources."tweetnacl-util-0.15.1"
sources."type-fest-0.21.3"
@@ -77677,7 +78405,7 @@ in
sources."typedarray-0.0.6"
sources."typedarray-to-buffer-3.1.5"
sources."typeforce-1.18.0"
- sources."typegram-3.6.2"
+ sources."uint8array-tools-0.0.6"
sources."unique-string-2.0.0"
sources."unpipe-1.0.0"
(sources."update-notifier-5.1.0" // {
@@ -78349,7 +79077,7 @@ in
sources."mkdirp-classic-0.5.3"
sources."module-deps-6.2.3"
sources."object-assign-4.1.1"
- sources."object-inspect-1.11.1"
+ sources."object-inspect-1.12.0"
sources."object-keys-1.1.1"
sources."object.assign-4.1.2"
sources."once-1.4.0"
@@ -78697,11 +79425,11 @@ in
sha512 = "lGrnNrAGb+SjksV92nG2zvm0Mxt7q9bTMNIqQXGTf/AsdrxQDjV097izcRnrBoy41fRS1//J7TuNCH/oAsOteg==";
};
dependencies = [
- sources."@babel/code-frame-7.16.0"
- sources."@babel/helper-validator-identifier-7.15.7"
- sources."@babel/highlight-7.16.0"
- sources."@babel/parser-7.16.6"
- sources."@babel/types-7.16.0"
+ sources."@babel/code-frame-7.16.7"
+ sources."@babel/helper-validator-identifier-7.16.7"
+ sources."@babel/highlight-7.16.7"
+ sources."@babel/parser-7.16.7"
+ sources."@babel/types-7.16.7"
sources."@kwsites/file-exists-1.1.1"
sources."@kwsites/promise-deferred-1.1.1"
sources."@types/minimist-1.2.2"
@@ -78764,7 +79492,7 @@ in
sources."chalk-2.4.2"
sources."character-parser-2.2.0"
sources."charenc-0.0.2"
- sources."chart.js-3.6.2"
+ sources."chart.js-3.7.0"
sources."cipher-base-1.0.4"
sources."cliui-6.0.0"
sources."color-convert-1.9.3"
@@ -78779,7 +79507,11 @@ in
})
sources."concat-map-0.0.1"
sources."constantinople-4.0.1"
- sources."content-disposition-0.5.3"
+ (sources."content-disposition-0.5.4" // {
+ dependencies = [
+ sources."safe-buffer-5.2.1"
+ ];
+ })
sources."content-type-1.0.4"
sources."cookie-0.4.1"
sources."cookie-parser-1.4.6"
@@ -78837,18 +79569,10 @@ in
sources."escape-string-regexp-1.0.5"
sources."etag-1.8.1"
sources."event-loop-stats-1.3.0"
- (sources."express-4.17.1" // {
+ (sources."express-4.17.2" // {
dependencies = [
- sources."body-parser-1.19.0"
- sources."bytes-3.1.0"
- sources."cookie-0.4.0"
sources."debug-2.6.9"
- sources."http-errors-1.7.2"
- sources."inherits-2.0.3"
- sources."qs-6.7.0"
- sources."raw-body-2.4.0"
- sources."setprototypeof-1.1.1"
- sources."toidentifier-1.0.0"
+ sources."safe-buffer-5.2.1"
];
})
sources."express-async-handler-1.2.0"
@@ -79052,17 +79776,14 @@ in
sources."safe-json-stringify-1.2.0"
sources."safer-buffer-2.1.2"
sources."semver-7.3.5"
- (sources."send-0.17.1" // {
+ (sources."send-0.17.2" // {
dependencies = [
(sources."debug-2.6.9" // {
dependencies = [
sources."ms-2.0.0"
];
})
- sources."http-errors-1.7.3"
- sources."ms-2.1.1"
- sources."setprototypeof-1.1.1"
- sources."toidentifier-1.0.0"
+ sources."ms-2.1.3"
];
})
(sources."serve-favicon-2.5.0" // {
@@ -79071,7 +79792,7 @@ in
sources."safe-buffer-5.1.1"
];
})
- sources."serve-static-1.14.1"
+ sources."serve-static-1.14.2"
sources."set-blocking-2.0.0"
sources."setprototypeof-1.2.0"
sources."sha.js-2.4.11"
@@ -79167,7 +79888,7 @@ in
sources."@protobufjs/pool-1.1.0"
sources."@protobufjs/utf8-1.1.0"
sources."@types/long-4.0.1"
- sources."@types/node-17.0.0"
+ sources."@types/node-17.0.6"
sources."addr-to-ip-port-1.5.4"
sources."airplay-js-0.2.16"
sources."ajv-6.12.6"
@@ -80171,15 +80892,15 @@ in
cdk8s-cli = nodeEnv.buildNodePackage {
name = "cdk8s-cli";
packageName = "cdk8s-cli";
- version = "1.0.52";
+ version = "1.0.67";
src = fetchurl {
- url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-1.0.52.tgz";
- sha512 = "FNSI8peew5FAsgZQ2cxE4asAazudoNVoEGCFNbZ3VyCXz+77wxl6BrslHf6LeHKYEnP8Qfk3NjqZuR2178u2Bw==";
+ url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-1.0.67.tgz";
+ sha512 = "3T8HYJAH/Ij48IPsAXGQy3kU0PEhspGTUwTKu9PGg24UuiqcRCgYKc7T4HBzO8z0FVHKZcAc/JcDmfkxaO0OuA==";
};
dependencies = [
- sources."@jsii/check-node-1.49.0"
- sources."@jsii/spec-1.49.0"
- sources."@types/node-12.20.37"
+ sources."@jsii/check-node-1.50.0"
+ sources."@jsii/spec-1.50.0"
+ sources."@types/node-12.20.40"
sources."@xmldom/xmldom-0.7.5"
sources."ajv-8.8.2"
sources."ansi-regex-5.0.1"
@@ -80189,12 +80910,12 @@ in
sources."call-bind-1.0.2"
sources."camelcase-6.2.1"
sources."case-1.6.3"
- sources."cdk8s-1.3.2"
- sources."cdk8s-plus-22-1.0.0-beta.62"
+ sources."cdk8s-1.3.20"
+ sources."cdk8s-plus-22-1.0.0-beta.75"
sources."chalk-4.1.2"
sources."cliui-7.0.4"
sources."clone-2.1.2"
- (sources."codemaker-1.49.0" // {
+ (sources."codemaker-1.50.0" // {
dependencies = [
sources."fs-extra-9.1.0"
];
@@ -80203,7 +80924,7 @@ in
sources."color-name-1.1.4"
sources."colors-1.4.0"
sources."commonmark-0.30.0"
- sources."constructs-3.3.166"
+ sources."constructs-3.3.176"
sources."date-format-3.0.0"
sources."debug-4.3.3"
sources."decamelize-5.0.1"
@@ -80259,38 +80980,38 @@ in
sources."is-weakref-1.0.2"
sources."is-weakset-2.0.2"
sources."isarray-2.0.5"
- (sources."jsii-1.49.0" // {
+ (sources."jsii-1.50.0" // {
dependencies = [
sources."fs-extra-9.1.0"
sources."yargs-16.2.0"
];
})
- (sources."jsii-pacmak-1.49.0" // {
+ (sources."jsii-pacmak-1.50.0" // {
dependencies = [
sources."fs-extra-9.1.0"
sources."yargs-16.2.0"
];
})
- (sources."jsii-reflect-1.49.0" // {
+ (sources."jsii-reflect-1.50.0" // {
dependencies = [
sources."fs-extra-9.1.0"
sources."yargs-16.2.0"
];
})
- (sources."jsii-rosetta-1.49.0" // {
+ (sources."jsii-rosetta-1.50.0" // {
dependencies = [
sources."fs-extra-9.1.0"
sources."yargs-16.2.0"
];
})
- (sources."jsii-srcmak-0.1.426" // {
+ (sources."jsii-srcmak-0.1.433" // {
dependencies = [
sources."fs-extra-9.1.0"
];
})
sources."json-schema-0.4.0"
sources."json-schema-traverse-1.0.0"
- sources."json2jsii-0.2.81"
+ sources."json2jsii-0.2.93"
sources."jsonfile-6.1.0"
sources."jsonschema-1.4.0"
sources."locate-path-5.0.0"
@@ -80302,11 +81023,11 @@ in
sources."ms-2.1.2"
sources."ncp-2.0.0"
sources."no-case-3.0.4"
- sources."object-inspect-1.11.1"
+ sources."object-inspect-1.12.0"
sources."object-is-1.1.5"
sources."object-keys-1.1.1"
sources."object.assign-4.1.2"
- sources."oo-ascii-tree-1.49.0"
+ sources."oo-ascii-tree-1.50.0"
sources."p-limit-2.3.0"
sources."p-locate-4.1.0"
sources."p-try-2.2.0"
@@ -80328,7 +81049,7 @@ in
sources."snake-case-3.0.4"
sources."sort-json-2.0.0"
sources."spdx-license-list-6.4.0"
- sources."sscaff-1.2.151"
+ sources."sscaff-1.2.158"
(sources."streamroller-2.2.4" // {
dependencies = [
sources."date-format-2.1.0"
@@ -80354,7 +81075,7 @@ in
sources."xmlbuilder-15.1.1"
sources."y18n-5.0.8"
sources."yallist-4.0.0"
- sources."yaml-2.0.0-9"
+ sources."yaml-2.0.0-10"
(sources."yargs-15.4.1" // {
dependencies = [
sources."camelcase-5.3.1"
@@ -80385,17 +81106,17 @@ in
sha512 = "T1cFortUf0IZKKXIxlNZLAdJ+7+OGi1cD0aN+X8gx8wD4V171f+d/bP2wALGZOstABd6gTzvBZbzEjK7BZgWFg==";
};
dependencies = [
- sources."@babel/code-frame-7.16.0"
- sources."@babel/generator-7.16.5"
- sources."@babel/helper-validator-identifier-7.15.7"
- sources."@babel/highlight-7.16.0"
- sources."@babel/parser-7.16.6"
- sources."@babel/template-7.16.0"
- sources."@babel/types-7.16.0"
+ sources."@babel/code-frame-7.16.7"
+ sources."@babel/generator-7.16.7"
+ sources."@babel/helper-validator-identifier-7.16.7"
+ sources."@babel/highlight-7.16.7"
+ sources."@babel/parser-7.16.7"
+ sources."@babel/template-7.16.7"
+ sources."@babel/types-7.16.7"
sources."@cdktf/hcl2cdk-0.8.3"
sources."@cdktf/hcl2json-0.8.3"
sources."@cdktf/provider-generator-0.8.3"
- (sources."@jsii/check-node-1.49.0" // {
+ (sources."@jsii/check-node-1.50.0" // {
dependencies = [
sources."ansi-styles-4.3.0"
sources."chalk-4.1.2"
@@ -80405,8 +81126,8 @@ in
sources."supports-color-7.2.0"
];
})
- sources."@jsii/spec-1.49.0"
- sources."@types/node-17.0.0"
+ sources."@jsii/spec-1.50.0"
+ sources."@types/node-17.0.6"
sources."@types/node-fetch-2.5.12"
sources."@xmldom/xmldom-0.7.5"
sources."ansi-regex-5.0.1"
@@ -80434,7 +81155,7 @@ in
sources."combined-stream-1.0.8"
sources."commonmark-0.30.0"
sources."concat-map-0.0.1"
- sources."constructs-10.0.12"
+ sources."constructs-10.0.21"
sources."date-format-3.0.0"
sources."debug-4.3.3"
sources."decamelize-1.2.0"
@@ -80495,7 +81216,7 @@ in
sources."isarray-2.0.5"
sources."js-tokens-4.0.0"
sources."jsesc-2.5.2"
- (sources."jsii-1.49.0" // {
+ (sources."jsii-1.50.0" // {
dependencies = [
sources."ansi-styles-4.3.0"
sources."cliui-7.0.4"
@@ -80510,11 +81231,11 @@ in
sources."yargs-parser-20.2.9"
];
})
- (sources."jsii-pacmak-1.49.0" // {
+ (sources."jsii-pacmak-1.50.0" // {
dependencies = [
sources."ansi-styles-4.3.0"
sources."cliui-7.0.4"
- sources."codemaker-1.49.0"
+ sources."codemaker-1.50.0"
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
sources."decamelize-5.0.1"
@@ -80528,7 +81249,7 @@ in
sources."yargs-parser-20.2.9"
];
})
- (sources."jsii-reflect-1.49.0" // {
+ (sources."jsii-reflect-1.50.0" // {
dependencies = [
sources."ansi-styles-4.3.0"
sources."cliui-7.0.4"
@@ -80543,7 +81264,7 @@ in
sources."yargs-parser-20.2.9"
];
})
- (sources."jsii-rosetta-1.49.0" // {
+ (sources."jsii-rosetta-1.50.0" // {
dependencies = [
sources."ansi-styles-4.3.0"
sources."cliui-7.0.4"
@@ -80558,7 +81279,7 @@ in
sources."yargs-parser-20.2.9"
];
})
- (sources."jsii-srcmak-0.1.426" // {
+ (sources."jsii-srcmak-0.1.433" // {
dependencies = [
sources."fs-extra-9.1.0"
sources."jsonfile-6.1.0"
@@ -80579,13 +81300,13 @@ in
sources."ms-2.1.2"
sources."ncp-2.0.0"
sources."node-fetch-2.6.6"
- sources."object-inspect-1.11.1"
+ sources."object-inspect-1.12.0"
sources."object-is-1.1.5"
sources."object-keys-1.1.1"
sources."object.assign-4.1.2"
sources."obliterator-1.6.1"
sources."once-1.4.0"
- sources."oo-ascii-tree-1.49.0"
+ sources."oo-ascii-tree-1.50.0"
sources."p-limit-2.3.0"
sources."p-locate-4.1.0"
sources."p-try-2.2.0"
@@ -80643,7 +81364,7 @@ in
sources."xmlbuilder-15.1.1"
sources."y18n-4.0.3"
sources."yallist-4.0.0"
- (sources."yargs-17.3.0" // {
+ (sources."yargs-17.3.1" // {
dependencies = [
sources."ansi-styles-4.3.0"
sources."cliui-7.0.4"
@@ -80729,9 +81450,9 @@ in
sha512 = "DbwDqv+O4AIbUqLmT3w7J/Fo8uT9bNmy7oRzykTUEIcrEL0DozGNOjxjiwwcKSLLf1fXKmjdLolui+OB3j1vYg==";
};
dependencies = [
- sources."@babel/code-frame-7.16.0"
- sources."@babel/helper-validator-identifier-7.15.7"
- sources."@babel/highlight-7.16.0"
+ sources."@babel/code-frame-7.16.7"
+ sources."@babel/helper-validator-identifier-7.16.7"
+ sources."@babel/highlight-7.16.7"
sources."@types/minimist-1.2.2"
sources."@types/normalize-package-data-2.4.1"
sources."ansi-styles-3.2.1"
@@ -80930,10 +81651,10 @@ in
coc-css = nodeEnv.buildNodePackage {
name = "coc-css";
packageName = "coc-css";
- version = "1.2.6";
+ version = "1.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-css/-/coc-css-1.2.6.tgz";
- sha512 = "eVzucf/n0T9Sap+9HbKeW6XhMle1Q/2aURaE9BVTNHFW9eqFlKq72l/38NzrUYbdCpQh8foDsoKAqbFsAnBFYw==";
+ url = "https://registry.npmjs.org/coc-css/-/coc-css-1.3.0.tgz";
+ sha512 = "adpUCwj1sFK+6RFXVDUYZe3oC+I1dre4XoWVZY7H05Fn7r7sa5QbpQ/F+kIce2sveQbsVoLTR7mfr18wH7Ru+w==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -80988,10 +81709,10 @@ in
coc-eslint = nodeEnv.buildNodePackage {
name = "coc-eslint";
packageName = "coc-eslint";
- version = "1.4.5";
+ version = "1.5.2";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-eslint/-/coc-eslint-1.4.5.tgz";
- sha512 = "+xt0bn1nG348Q2tERiL44a/20a+NeDJLtwh7Gnn5VjOQ64OYUGrbAbQphskdVZyLE5qRDTvyiLArN+IxDsmpQQ==";
+ url = "https://registry.npmjs.org/coc-eslint/-/coc-eslint-1.5.2.tgz";
+ sha512 = "Cg4Ys7D2EhxweGBdSJn75Q8nNxU41A6T1pWSc0gxmn+jodL98+jCkA2XGtdN41/c7/R+OJXr0scifwpugmWM3g==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -81092,10 +81813,10 @@ in
coc-git = nodeEnv.buildNodePackage {
name = "coc-git";
packageName = "coc-git";
- version = "2.4.3";
+ version = "2.4.4";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-git/-/coc-git-2.4.3.tgz";
- sha512 = "JJq0jIXe4UyOI51JkyqQYPoAVXkTYWUuYBpWI/FMEDC/RVF8myL42GmqAZN3ikGhO/ErA/r4KmVhhb1UrfQqIQ==";
+ url = "https://registry.npmjs.org/coc-git/-/coc-git-2.4.4.tgz";
+ sha512 = "mYC/nZsUDAAsD6pVR1y7PhMehd0JnWvOIMM0o8V/aMqkQxxQREtSJx7mjxhYpbzfFUpyPPI0U70lRmAWRHujpA==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -81121,7 +81842,7 @@ in
sources."tr46-0.0.3"
sources."tslib-2.3.1"
sources."vscode-languageserver-textdocument-1.0.3"
- sources."vscode-uri-3.0.2"
+ sources."vscode-uri-3.0.3"
sources."webidl-conversions-3.0.1"
sources."whatwg-url-5.0.0"
sources."which-2.0.2"
@@ -81155,17 +81876,17 @@ in
coc-html = nodeEnv.buildNodePackage {
name = "coc-html";
packageName = "coc-html";
- version = "1.4.1";
+ version = "1.5.1";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-html/-/coc-html-1.4.1.tgz";
- sha512 = "7SHQYzpRKPrpaLcTm1UUk1zu9VvFEJKFqxwDIuqv/CL0cBTtEvlsfpVh9DOaMHlZPu8U8Lgyf04bHV/sFS1zJw==";
+ url = "https://registry.npmjs.org/coc-html/-/coc-html-1.5.1.tgz";
+ sha512 = "YVJHVLe3JULSPKykTIs83QnTqMYEbv4yYgvtAlTuMYXmGVeuQ5Vzp6xbr+rqQRjCq2fuK5dk4poLSjrdhuQAJQ==";
};
dependencies = [
sources."typescript-4.5.4"
];
buildInputs = globalBuildInputs;
meta = {
- description = "Html extension for coc";
+ description = "Html extension for coc.nvim";
homepage = "https://github.com/neoclide/coc-html#readme";
license = "MIT";
};
@@ -81229,35 +81950,11 @@ in
coc-json = nodeEnv.buildNodePackage {
name = "coc-json";
packageName = "coc-json";
- version = "1.3.6";
+ version = "1.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-json/-/coc-json-1.3.6.tgz";
- sha512 = "iUKVNmYMZEBpniRRy7iXzcYqDCfamRMU4OOb1b9M9Zi68xbwsu1JVl0ARw5FVCv40ELszK+w/6jKlpS97kTU8w==";
+ url = "https://registry.npmjs.org/coc-json/-/coc-json-1.4.0.tgz";
+ sha512 = "HVLMIr3UTypi0sNWKzOlBeC9aHL5WcTDCCcqcBuEPsJhCUUx5xRyR3lAkZD4jdy2e0Ke0PRUB7/S5rzQIHxYIA==";
};
- dependencies = [
- sources."agent-base-4.3.0"
- sources."debug-3.1.0"
- sources."es6-promise-4.2.8"
- sources."es6-promisify-5.0.0"
- sources."http-proxy-agent-2.1.0"
- sources."https-proxy-agent-2.2.4"
- sources."jsonc-parser-3.0.0"
- sources."ms-2.0.0"
- sources."request-light-0.4.0"
- sources."vscode-json-languageserver-1.3.4"
- (sources."vscode-json-languageservice-4.1.10" // {
- dependencies = [
- sources."vscode-nls-5.0.0"
- ];
- })
- sources."vscode-jsonrpc-6.0.0"
- sources."vscode-languageserver-7.0.0"
- sources."vscode-languageserver-protocol-3.16.0"
- sources."vscode-languageserver-textdocument-1.0.3"
- sources."vscode-languageserver-types-3.16.0"
- sources."vscode-nls-4.1.2"
- sources."vscode-uri-3.0.2"
- ];
buildInputs = globalBuildInputs;
meta = {
description = "Json extension for coc.nvim";
@@ -81312,7 +82009,7 @@ in
sha512 = "6AT89AXRnCUpWukcMOOy8Y4MJ0eO+h61dRtSyK9zXL1Qc7V2Mj42EI/LYohEFXRPPR6EeyaIiYxip7NPkgRvSg==";
};
dependencies = [
- sources."@chemzqm/neovim-5.4.0"
+ sources."@chemzqm/neovim-5.5.2"
sources."@tootallnate/once-1.1.2"
sources."agent-base-6.0.2"
sources."arch-2.2.0"
@@ -81432,7 +82129,7 @@ in
sources."node-fetch-2.6.6"
sources."node-int64-0.4.0"
sources."npm-run-path-2.0.2"
- sources."object-inspect-1.11.1"
+ sources."object-inspect-1.12.0"
sources."object-keys-1.1.1"
sources."object.assign-4.1.2"
sources."once-1.4.0"
@@ -81511,10 +82208,10 @@ in
coc-pairs = nodeEnv.buildNodePackage {
name = "coc-pairs";
packageName = "coc-pairs";
- version = "1.3.0";
+ version = "1.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-pairs/-/coc-pairs-1.3.0.tgz";
- sha512 = "elI1hdsA5VNBKoEAo6gkNpYu3Ze5rxZIhhIfE+mPnFoT/KsaWlcidyv2HBHBOawiudMsuWhNYbWfn6hoR2abUg==";
+ url = "https://registry.npmjs.org/coc-pairs/-/coc-pairs-1.3.1.tgz";
+ sha512 = "V9MlHr2TAdlCQKHuVLtz8rixh36HwRvKKtlhNuedhI/ljF5uzoNd2wFl345aRRzi6ceUcsDZ5QCwG9UzGkLFjw==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -81536,8 +82233,8 @@ in
};
dependencies = [
sources."@babel/code-frame-7.12.11"
- sources."@babel/helper-validator-identifier-7.15.7"
- (sources."@babel/highlight-7.16.0" // {
+ sources."@babel/helper-validator-identifier-7.16.7"
+ (sources."@babel/highlight-7.16.7" // {
dependencies = [
sources."chalk-2.4.2"
sources."escape-string-regexp-1.0.5"
@@ -81615,7 +82312,7 @@ in
sources."callsites-3.1.0"
sources."camelcase-2.1.1"
sources."camelcase-keys-2.1.0"
- sources."caniuse-lite-1.0.30001287"
+ sources."caniuse-lite-1.0.30001294"
sources."capture-stack-trace-1.0.1"
sources."ccount-1.1.0"
(sources."chalk-4.1.2" // {
@@ -81677,7 +82374,7 @@ in
];
})
sources."copy-descriptor-0.1.1"
- sources."core-js-3.20.0"
+ sources."core-js-3.20.2"
sources."cosmiconfig-3.1.0"
sources."create-error-class-3.0.2"
sources."cross-spawn-7.0.3"
@@ -81713,7 +82410,7 @@ in
sources."domutils-1.7.0"
sources."dot-prop-5.3.0"
sources."duplexer3-0.1.4"
- sources."electron-to-chromium-1.4.21"
+ sources."electron-to-chromium-1.4.31"
sources."emoji-regex-8.0.0"
sources."end-of-stream-1.4.4"
sources."enquirer-2.3.6"
@@ -82517,7 +83214,7 @@ in
sha512 = "+OOz8r1rNCC5YL61NIQaDrDeFHOuHQ61NhqvIp9bcALigrexK0WjIWY+SI+1t+GoEiM8e0zpWRxwdyueZKLpGA==";
};
dependencies = [
- sources."pyright-1.1.196"
+ sources."pyright-1.1.202"
];
buildInputs = globalBuildInputs;
meta = {
@@ -82591,10 +83288,10 @@ in
coc-rust-analyzer = nodeEnv.buildNodePackage {
name = "coc-rust-analyzer";
packageName = "coc-rust-analyzer";
- version = "0.57.0";
+ version = "0.59.0";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-rust-analyzer/-/coc-rust-analyzer-0.57.0.tgz";
- sha512 = "mZsgreUpluLmDokJ3jfCrTbpQcZIUdlfyPMF4sD0o5FB+ufEz/IL3QRGcHIfKj9enyY1ZBo932z8RW/UxTswVg==";
+ url = "https://registry.npmjs.org/coc-rust-analyzer/-/coc-rust-analyzer-0.59.0.tgz";
+ sha512 = "HHznm5OEJ2+q8InoToTd7hUjWzbTE0BrMGHU58uHooEtbqLmAMTjBY86/T+qBTglEoZoVEGng9oR9Uqw4LTgnA==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -82627,10 +83324,10 @@ in
coc-snippets = nodeEnv.buildNodePackage {
name = "coc-snippets";
packageName = "coc-snippets";
- version = "2.4.6";
+ version = "2.4.7";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-snippets/-/coc-snippets-2.4.6.tgz";
- sha512 = "lWtv+2+WEdkiCfplZtUzPy9TFkmrk0ajjpgil1KersbmiBeoylLuqgiVVY6u3gmiofr/5AG1DD20Qj8Vg6M0jg==";
+ url = "https://registry.npmjs.org/coc-snippets/-/coc-snippets-2.4.7.tgz";
+ sha512 = "i7P14KzQVE9TILKAXW9+HW9ILZkFuBfCrwEvQmwF2ZFrKl1YgNSj9I5TJNqLfRynIeNmCuEELfEWMhl4kjvp0g==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -82644,10 +83341,10 @@ in
coc-solargraph = nodeEnv.buildNodePackage {
name = "coc-solargraph";
packageName = "coc-solargraph";
- version = "1.2.2";
+ version = "1.2.3";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-solargraph/-/coc-solargraph-1.2.2.tgz";
- sha512 = "KwL3QM6RXsungMkjF0wXsJ6CZuP5h/Lll54Hs49OTJskbQaJTh98DCaCWiIKqBXIuAfxaESEQNihLT2MyefL+Q==";
+ url = "https://registry.npmjs.org/coc-solargraph/-/coc-solargraph-1.2.3.tgz";
+ sha512 = "271smxh06nFDBJ/xfVYmrW8IosGWQzApBzYt244mbbBlMhcJBV5W9CvT2SuhrU9bp8ZM6jw9BWYgD/ex8311Lw==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -82667,31 +83364,31 @@ in
sha512 = "+GYR6KTvHQnqu0j1kXT30hRZMuCwG/G52wG/19LSPE+p9Q0i8XFH6582T0btTu39xz2TPsDOGjT1VgyRw2urug==";
};
dependencies = [
- sources."@babel/code-frame-7.16.0"
+ sources."@babel/code-frame-7.16.7"
sources."@babel/compat-data-7.16.4"
- sources."@babel/core-7.16.5"
- sources."@babel/generator-7.16.5"
- sources."@babel/helper-compilation-targets-7.16.3"
- sources."@babel/helper-environment-visitor-7.16.5"
- sources."@babel/helper-function-name-7.16.0"
- sources."@babel/helper-get-function-arity-7.16.0"
- sources."@babel/helper-hoist-variables-7.16.0"
- sources."@babel/helper-module-imports-7.16.0"
- sources."@babel/helper-module-transforms-7.16.5"
- sources."@babel/helper-simple-access-7.16.0"
- sources."@babel/helper-split-export-declaration-7.16.0"
- sources."@babel/helper-validator-identifier-7.15.7"
- sources."@babel/helper-validator-option-7.14.5"
- sources."@babel/helpers-7.16.5"
- (sources."@babel/highlight-7.16.0" // {
+ sources."@babel/core-7.16.7"
+ sources."@babel/generator-7.16.7"
+ sources."@babel/helper-compilation-targets-7.16.7"
+ sources."@babel/helper-environment-visitor-7.16.7"
+ sources."@babel/helper-function-name-7.16.7"
+ sources."@babel/helper-get-function-arity-7.16.7"
+ sources."@babel/helper-hoist-variables-7.16.7"
+ sources."@babel/helper-module-imports-7.16.7"
+ sources."@babel/helper-module-transforms-7.16.7"
+ sources."@babel/helper-simple-access-7.16.7"
+ sources."@babel/helper-split-export-declaration-7.16.7"
+ sources."@babel/helper-validator-identifier-7.16.7"
+ sources."@babel/helper-validator-option-7.16.7"
+ sources."@babel/helpers-7.16.7"
+ (sources."@babel/highlight-7.16.7" // {
dependencies = [
sources."chalk-2.4.2"
];
})
- sources."@babel/parser-7.16.6"
- sources."@babel/template-7.16.0"
- sources."@babel/traverse-7.16.5"
- sources."@babel/types-7.16.0"
+ sources."@babel/parser-7.16.7"
+ sources."@babel/template-7.16.7"
+ sources."@babel/traverse-7.16.7"
+ sources."@babel/types-7.16.7"
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
@@ -82725,7 +83422,7 @@ in
sources."callsites-3.1.0"
sources."camelcase-5.3.1"
sources."camelcase-keys-6.2.2"
- sources."caniuse-lite-1.0.30001287"
+ sources."caniuse-lite-1.0.30001294"
(sources."chalk-4.1.2" // {
dependencies = [
sources."ansi-styles-4.3.0"
@@ -82762,7 +83459,7 @@ in
sources."domelementtype-1.3.1"
sources."domhandler-2.4.2"
sources."domutils-1.7.0"
- sources."electron-to-chromium-1.4.21"
+ sources."electron-to-chromium-1.4.31"
sources."emoji-regex-8.0.0"
sources."entities-1.1.2"
sources."error-ex-1.3.2"
@@ -82798,7 +83495,7 @@ in
sources."hosted-git-info-4.0.2"
sources."html-tags-3.1.0"
sources."htmlparser2-3.10.1"
- sources."ignore-5.1.9"
+ sources."ignore-5.2.0"
(sources."import-fresh-3.3.0" // {
dependencies = [
sources."resolve-from-4.0.0"
@@ -82894,7 +83591,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.7"
+ sources."postcss-selector-parser-6.0.8"
sources."postcss-syntax-0.36.2"
sources."postcss-value-parser-4.2.0"
sources."punycode-2.1.1"
@@ -83043,9 +83740,9 @@ in
sha512 = "5Zxv2Adtb6Mlpv2YdKErhf8ntxiBl1UyrbEqo7gR9nFIAfi3o0Ue6TJTpZfOhQViFQxLjJAS65IQVRaNlbhkxw==";
};
dependencies = [
- sources."@babel/code-frame-7.16.0"
- sources."@babel/helper-validator-identifier-7.15.7"
- sources."@babel/highlight-7.16.0"
+ sources."@babel/code-frame-7.16.7"
+ sources."@babel/helper-validator-identifier-7.16.7"
+ sources."@babel/highlight-7.16.7"
sources."ansi-styles-3.2.1"
sources."argparse-1.0.10"
sources."balanced-match-1.0.2"
@@ -83131,10 +83828,10 @@ in
coc-tsserver = nodeEnv.buildNodePackage {
name = "coc-tsserver";
packageName = "coc-tsserver";
- version = "1.8.6";
+ version = "1.9.4";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-tsserver/-/coc-tsserver-1.8.6.tgz";
- sha512 = "RTet29nZNYrOWEuquBOAv3yFtWyHPE7xGbsHjRdNbTP6g9PF+2nV2TnDO+c/T5HAk/1J0lKKZBu6hZTnEJ2f4w==";
+ url = "https://registry.npmjs.org/coc-tsserver/-/coc-tsserver-1.9.4.tgz";
+ sha512 = "s91xtk99Rutm+gSTgsQKCOQqIboe9FfvNx6KwfSJwsdxzGluZh0H808GyeIPvB/BxkuS7ABcsklj34YvC76E9Q==";
};
dependencies = [
sources."typescript-4.5.4"
@@ -83177,8 +83874,8 @@ in
};
dependencies = [
sources."@babel/code-frame-7.12.11"
- sources."@babel/helper-validator-identifier-7.15.7"
- (sources."@babel/highlight-7.16.0" // {
+ sources."@babel/helper-validator-identifier-7.16.7"
+ (sources."@babel/highlight-7.16.7" // {
dependencies = [
sources."chalk-2.4.2"
sources."escape-string-regexp-1.0.5"
@@ -83393,10 +84090,10 @@ in
coc-vimtex = nodeEnv.buildNodePackage {
name = "coc-vimtex";
packageName = "coc-vimtex";
- version = "1.0.4";
+ version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-vimtex/-/coc-vimtex-1.0.4.tgz";
- sha512 = "gE04Ruk/7Of+jhVlWUT3M5xW5LEN24335rpSPHu7u1uzasuv9SsNehXbZpkj1SEYM4K7+5bw8NC+EFshuZm6Vw==";
+ url = "https://registry.npmjs.org/coc-vimtex/-/coc-vimtex-1.1.0.tgz";
+ sha512 = "1CFLycCS+gbvUzVnrdN9SU7clGaPckD8uj+1XFqfuRqh+m58rUd0+xchNSJZcVHMGXlH5fJMvaJyAgZNjU2m/g==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -83411,10 +84108,10 @@ in
coc-wxml = nodeEnv.buildNodePackage {
name = "coc-wxml";
packageName = "coc-wxml";
- version = "1.0.8";
+ version = "1.0.9";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-wxml/-/coc-wxml-1.0.8.tgz";
- sha512 = "MN8UM7KsaBXy56dQe16ei18BZXzvQu5ReDeHUvAgfNc+8K6tnTp9fSwpG1gxe9JaukL5zYbkkl1qsQjsFBUx9w==";
+ url = "https://registry.npmjs.org/coc-wxml/-/coc-wxml-1.0.9.tgz";
+ sha512 = "ExbBjO4/7sbwHVawtK/sDzFwmUTwW9rHgm51sJxqQim+Zjn3vw1x0pNObonVb+r/kX9peLCyE6/nmT2ybfeBPg==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -83428,48 +84125,25 @@ in
coc-yaml = nodeEnv.buildNodePackage {
name = "coc-yaml";
packageName = "coc-yaml";
- version = "1.4.2";
+ version = "1.6.1";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-yaml/-/coc-yaml-1.4.2.tgz";
- sha512 = "cfocwN+TczdspN03m7t+eJMyaAsKCSzfgJJDM2CWPvrreKIMMahWqce/krTtENqDHDu51miuWo+o6/6FEKSf4g==";
+ url = "https://registry.npmjs.org/coc-yaml/-/coc-yaml-1.6.1.tgz";
+ sha512 = "YhsgTIFfCCExjxGK3/vEnR8oUmjEitMa2rvqCZZqjLD785XsLRZAbM14vJ5ZIxbdnjqu3uZ3y2d0tFmgrtuYew==";
};
dependencies = [
- sources."agent-base-4.3.0"
- 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."http-proxy-agent-2.1.0"
- sources."https-proxy-agent-2.2.4"
- sources."js-yaml-4.1.0"
sources."jsonc-parser-3.0.0"
- sources."minimatch-3.0.4"
- sources."ms-2.0.0"
sources."prettier-2.0.5"
- (sources."request-light-0.2.5" // {
- dependencies = [
- sources."vscode-nls-4.1.2"
- ];
- })
- sources."vscode-json-languageservice-4.1.0"
+ sources."request-light-0.5.6"
+ sources."vscode-json-languageservice-4.1.7"
sources."vscode-jsonrpc-6.0.0"
sources."vscode-languageserver-7.0.0"
sources."vscode-languageserver-protocol-3.16.0"
sources."vscode-languageserver-textdocument-1.0.3"
sources."vscode-languageserver-types-3.16.0"
sources."vscode-nls-5.0.0"
- sources."vscode-uri-3.0.2"
- (sources."yaml-language-server-0.20.0" // {
- dependencies = [
- sources."jsonc-parser-2.3.1"
- sources."vscode-nls-4.1.2"
- sources."vscode-uri-2.1.2"
- ];
- })
- sources."yaml-language-server-parser-0.1.2"
+ sources."vscode-uri-3.0.3"
+ sources."yaml-2.0.0-8"
+ sources."yaml-language-server-1.2.2"
];
buildInputs = globalBuildInputs;
meta = {
@@ -83507,7 +84181,7 @@ in
sha512 = "uPhR9IKtN1z6gt9mpRH5OAdYjJQgQq7CCQpm5VmCpLe2QdGDzi4xfB3ybXGaBRX+UN4whtz3pZvgZssJvBwcqQ==";
};
dependencies = [
- sources."@xstate/fsm-1.6.2"
+ sources."@xstate/fsm-1.6.3"
sources."ansi-styles-3.2.1"
sources."balanced-match-1.0.2"
sources."base64-js-1.5.1"
@@ -83737,10 +84411,10 @@ in
concurrently = nodeEnv.buildNodePackage {
name = "concurrently";
packageName = "concurrently";
- version = "6.4.0";
+ version = "6.5.1";
src = fetchurl {
- url = "https://registry.npmjs.org/concurrently/-/concurrently-6.4.0.tgz";
- sha512 = "HZ3D0RTQMH3oS4gvtYj1P+NBc6PzE2McEra6yEFcQKrUQ9HvtTGU4Dbne083F034p+LRb7kWU0tPRNvSGs1UCQ==";
+ url = "https://registry.npmjs.org/concurrently/-/concurrently-6.5.1.tgz";
+ sha512 = "FlSwNpGjWQfRwPLXvJ/OgysbBxPkWpiVjy1042b0U7on7S7qwwMIILRj7WTN1mTgqa582bG6NFuScOoh6Zgdag==";
};
dependencies = [
sources."ansi-regex-5.0.1"
@@ -83753,7 +84427,7 @@ in
sources."cliui-7.0.4"
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
- sources."date-fns-2.27.0"
+ sources."date-fns-2.28.0"
sources."emoji-regex-8.0.0"
sources."escalade-3.1.1"
sources."get-caller-file-2.0.5"
@@ -83844,15 +84518,15 @@ in
conventional-changelog-cli = nodeEnv.buildNodePackage {
name = "conventional-changelog-cli";
packageName = "conventional-changelog-cli";
- version = "2.1.1";
+ version = "2.2.2";
src = fetchurl {
- url = "https://registry.npmjs.org/conventional-changelog-cli/-/conventional-changelog-cli-2.1.1.tgz";
- sha512 = "xMGQdKJ+4XFDDgfX5aK7UNFduvJMbvF5BB+g0OdVhA3rYdYyhctrIE2Al+WYdZeKTdg9YzMWF2iFPT8MupIwng==";
+ url = "https://registry.npmjs.org/conventional-changelog-cli/-/conventional-changelog-cli-2.2.2.tgz";
+ sha512 = "8grMV5Jo8S0kP3yoMeJxV2P5R6VJOqK72IiSV9t/4H5r/HiRqEBQ83bYGuz4Yzfdj4bjaAEhZN/FFbsFXr5bOA==";
};
dependencies = [
- sources."@babel/code-frame-7.16.0"
- sources."@babel/helper-validator-identifier-7.15.7"
- sources."@babel/highlight-7.16.0"
+ sources."@babel/code-frame-7.16.7"
+ sources."@babel/helper-validator-identifier-7.16.7"
+ sources."@babel/highlight-7.16.7"
sources."@hutson/parse-repository-url-3.0.2"
sources."@types/minimist-1.2.2"
sources."@types/normalize-package-data-2.4.1"
@@ -83875,11 +84549,11 @@ in
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
sources."compare-func-2.0.0"
- sources."conventional-changelog-3.1.24"
+ sources."conventional-changelog-3.1.25"
sources."conventional-changelog-angular-5.0.13"
sources."conventional-changelog-atom-2.0.8"
sources."conventional-changelog-codemirror-2.0.8"
- sources."conventional-changelog-conventionalcommits-4.6.1"
+ sources."conventional-changelog-conventionalcommits-4.6.3"
sources."conventional-changelog-core-4.2.4"
sources."conventional-changelog-ember-2.0.9"
sources."conventional-changelog-eslint-3.0.9"
@@ -83887,9 +84561,9 @@ in
sources."conventional-changelog-jquery-3.0.11"
sources."conventional-changelog-jshint-2.0.9"
sources."conventional-changelog-preset-loader-2.3.4"
- sources."conventional-changelog-writer-5.0.0"
+ sources."conventional-changelog-writer-5.0.1"
sources."conventional-commits-filter-2.0.7"
- sources."conventional-commits-parser-3.2.3"
+ sources."conventional-commits-parser-3.2.4"
sources."core-util-is-1.0.3"
sources."dargs-7.0.0"
sources."dateformat-3.0.3"
@@ -83915,7 +84589,7 @@ in
sources."through2-2.0.5"
];
})
- sources."git-raw-commits-2.0.10"
+ sources."git-raw-commits-2.0.11"
sources."git-remote-origin-url-2.0.0"
sources."git-semver-tags-4.1.1"
sources."gitconfiglocal-1.0.0"
@@ -84060,10 +84734,10 @@ in
cordova = nodeEnv.buildNodePackage {
name = "cordova";
packageName = "cordova";
- version = "10.0.0";
+ version = "11.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/cordova/-/cordova-10.0.0.tgz";
- sha512 = "00wMcj3X9ILhKtvRG2iEwO2qly4B+vgXFhH4WhVepWg2UVbD1opl1q9jSZ+j2AaI/vsBWW8e6M2M5FAHasnuWw==";
+ url = "https://registry.npmjs.org/cordova/-/cordova-11.0.0.tgz";
+ sha512 = "Hu2YeT0naeP/1sEm/xfJYUsXN48XV6zagxbi1+4q0Ei9c5TKsIq8v4EWukvSHF4UO2pnh+9ViaDlGMcS1Wrnfg==";
};
dependencies = [
sources."@gar/promisify-1.1.2"
@@ -84084,9 +84758,15 @@ in
sources."abbrev-1.1.1"
sources."accepts-1.3.7"
sources."agent-base-6.0.2"
- sources."agentkeepalive-4.1.4"
+ sources."agentkeepalive-4.2.0"
sources."aggregate-error-3.1.0"
sources."ajv-6.12.6"
+ (sources."ajv-formats-2.1.1" // {
+ dependencies = [
+ sources."ajv-8.8.2"
+ sources."json-schema-traverse-1.0.0"
+ ];
+ })
sources."ansi-0.3.1"
(sources."ansi-align-3.0.1" // {
dependencies = [
@@ -84109,24 +84789,26 @@ in
sources."async-2.6.3"
sources."asynckit-0.4.0"
sources."at-least-node-1.0.0"
+ sources."atomically-1.7.0"
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."big-integer-1.6.51"
- (sources."body-parser-1.19.0" // {
+ (sources."body-parser-1.19.1" // {
dependencies = [
- sources."bytes-3.1.0"
+ sources."bytes-3.1.1"
sources."debug-2.6.9"
sources."iconv-lite-0.4.24"
sources."ms-2.0.0"
- sources."qs-6.7.0"
+ sources."qs-6.9.6"
];
})
- (sources."boxen-4.2.0" // {
+ (sources."boxen-5.1.2" // {
dependencies = [
sources."ansi-regex-5.0.1"
+ sources."chalk-4.1.2"
sources."is-fullwidth-code-point-3.0.0"
sources."string-width-4.2.3"
sources."strip-ansi-6.0.1"
@@ -84140,11 +84822,12 @@ in
sources."cacache-15.3.0"
(sources."cacheable-request-6.1.0" // {
dependencies = [
+ sources."get-stream-5.2.0"
sources."lowercase-keys-2.0.0"
];
})
sources."callsites-3.1.0"
- sources."camelcase-5.3.1"
+ sources."camelcase-6.2.1"
sources."caseless-0.12.0"
sources."chalk-3.0.0"
sources."chardet-0.7.0"
@@ -84167,31 +84850,37 @@ in
];
})
sources."concat-map-0.0.1"
- (sources."conf-1.4.0" // {
+ (sources."conf-10.1.1" // {
dependencies = [
- sources."dot-prop-4.2.1"
- sources."env-paths-1.0.0"
- sources."is-obj-1.0.1"
- sources."make-dir-1.3.0"
- sources."pify-3.0.0"
- sources."write-file-atomic-2.4.3"
+ sources."ajv-8.8.2"
+ sources."dot-prop-6.0.1"
+ sources."json-schema-traverse-1.0.0"
];
})
sources."configstore-5.0.1"
sources."console-control-strings-1.1.0"
- sources."content-disposition-0.5.3"
+ (sources."content-disposition-0.5.4" // {
+ dependencies = [
+ sources."safe-buffer-5.2.1"
+ ];
+ })
sources."content-type-1.0.4"
- sources."cookie-0.4.0"
+ sources."cookie-0.4.1"
sources."cookie-signature-1.0.6"
- sources."cordova-app-hello-world-5.0.0"
- sources."cordova-common-4.0.2"
- sources."cordova-create-3.0.0"
+ sources."cordova-app-hello-world-6.0.0"
+ (sources."cordova-common-4.0.2" // {
+ dependencies = [
+ sources."fs-extra-9.1.0"
+ ];
+ })
+ sources."cordova-create-4.0.0"
(sources."cordova-fetch-3.0.1" // {
dependencies = [
+ sources."fs-extra-9.1.0"
sources."pify-5.0.0"
];
})
- (sources."cordova-lib-10.1.0" // {
+ (sources."cordova-lib-11.0.0" // {
dependencies = [
sources."pify-5.0.0"
];
@@ -84202,6 +84891,11 @@ in
sources."crypto-random-string-2.0.0"
sources."currently-unhandled-0.4.1"
sources."dashdash-1.14.1"
+ (sources."debounce-fn-4.0.0" // {
+ dependencies = [
+ sources."mimic-fn-3.1.0"
+ ];
+ })
sources."debug-4.3.3"
sources."decompress-response-3.3.0"
sources."dedent-0.7.0"
@@ -84236,12 +84930,13 @@ in
sources."escape-html-1.0.3"
sources."escape-string-regexp-1.0.5"
sources."etag-1.8.1"
- sources."execa-4.1.0"
- (sources."express-4.17.1" // {
+ sources."execa-5.1.1"
+ (sources."express-4.17.2" // {
dependencies = [
sources."debug-2.6.9"
sources."ms-2.0.0"
- sources."qs-6.7.0"
+ sources."qs-6.9.6"
+ sources."safe-buffer-5.2.1"
];
})
sources."extend-3.0.2"
@@ -84265,21 +84960,21 @@ in
sources."ms-2.0.0"
];
})
- sources."find-up-2.1.0"
+ sources."find-up-3.0.0"
sources."forever-agent-0.6.1"
sources."form-data-2.3.3"
sources."forwarded-0.2.0"
sources."fresh-0.5.2"
- sources."fs-extra-9.1.0"
+ sources."fs-extra-10.0.0"
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-stream-5.2.0"
+ sources."get-stream-6.0.1"
sources."getpass-0.1.7"
sources."glob-7.2.0"
sources."glob-parent-5.1.2"
- sources."global-dirs-2.1.0"
+ sources."global-dirs-3.0.0"
sources."globby-11.0.4"
(sources."got-9.6.0" // {
dependencies = [
@@ -84295,18 +84990,14 @@ 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.2" // {
- dependencies = [
- sources."inherits-2.0.3"
- ];
- })
+ sources."http-errors-1.8.1"
sources."http-proxy-agent-4.0.1"
sources."http-signature-1.2.0"
sources."https-proxy-agent-5.0.0"
- sources."human-signals-1.1.1"
+ sources."human-signals-2.1.0"
sources."humanize-ms-1.2.1"
sources."iconv-lite-0.6.3"
- sources."ignore-5.1.9"
+ sources."ignore-5.2.0"
sources."ignore-walk-3.0.4"
sources."import-fresh-3.3.0"
sources."import-lazy-2.1.0"
@@ -84315,14 +85006,8 @@ in
sources."infer-owner-1.0.4"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
- sources."ini-1.3.7"
- (sources."init-package-json-1.10.3" // {
- dependencies = [
- sources."hosted-git-info-2.8.9"
- sources."npm-package-arg-6.1.1"
- sources."semver-5.7.1"
- ];
- })
+ sources."ini-2.0.0"
+ sources."init-package-json-2.0.5"
(sources."inquirer-6.5.2" // {
dependencies = [
sources."ansi-regex-3.0.0"
@@ -84346,19 +85031,15 @@ in
sources."supports-color-5.5.0"
];
})
- (sources."insight-0.10.3" // {
+ (sources."insight-0.11.1" // {
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."has-flag-3.0.0"
- sources."supports-color-5.5.0"
- sources."tough-cookie-3.0.1"
+ sources."chalk-4.1.2"
+ sources."tough-cookie-4.0.0"
+ sources."universalify-0.1.2"
+ sources."uuid-8.3.2"
];
})
sources."ip-1.1.5"
- sources."ip-regex-2.1.0"
sources."ipaddr.js-1.9.1"
sources."is-ci-2.0.0"
sources."is-core-module-2.8.0"
@@ -84366,9 +85047,9 @@ in
sources."is-extglob-2.1.1"
sources."is-fullwidth-code-point-1.0.0"
sources."is-glob-4.0.3"
- sources."is-installed-globally-0.3.2"
+ sources."is-installed-globally-0.4.0"
sources."is-lambda-1.0.1"
- 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"
@@ -84385,6 +85066,7 @@ in
sources."json-parse-even-better-errors-2.3.1"
sources."json-schema-0.4.0"
sources."json-schema-traverse-0.4.1"
+ sources."json-schema-typed-7.0.3"
sources."json-stringify-safe-5.0.1"
sources."jsonfile-6.1.0"
sources."jsonparse-1.3.1"
@@ -84395,7 +85077,7 @@ in
})
sources."keyv-3.1.0"
sources."latest-version-5.1.0"
- sources."locate-path-2.0.0"
+ sources."locate-path-3.0.0"
sources."lodash-4.17.21"
sources."lodash.debounce-4.0.8"
sources."loud-rejection-2.2.0"
@@ -84434,19 +85116,9 @@ in
sources."ms-2.1.2"
sources."mute-stream-0.0.8"
sources."negotiator-0.6.2"
- sources."nice-try-1.0.5"
- (sources."node-gyp-7.1.2" // {
- dependencies = [
- sources."nopt-5.0.0"
- ];
- })
- sources."nopt-4.0.3"
- (sources."normalize-package-data-2.5.0" // {
- dependencies = [
- sources."hosted-git-info-2.8.9"
- sources."semver-5.7.1"
- ];
- })
+ sources."node-gyp-7.1.2"
+ sources."nopt-5.0.0"
+ sources."normalize-package-data-3.0.3"
sources."normalize-url-4.5.1"
sources."npm-bundled-1.1.2"
sources."npm-install-checks-4.0.0"
@@ -84466,18 +85138,12 @@ in
sources."once-1.4.0"
sources."onetime-5.1.2"
sources."open-7.4.2"
- sources."os-homedir-1.0.2"
- sources."os-name-3.1.0"
+ sources."os-name-4.0.1"
sources."os-tmpdir-1.0.2"
- sources."osenv-0.1.5"
sources."p-cancelable-1.1.0"
sources."p-finally-1.0.0"
- (sources."p-limit-1.3.0" // {
- dependencies = [
- sources."p-try-1.0.0"
- ];
- })
- sources."p-locate-2.0.0"
+ sources."p-limit-2.3.0"
+ sources."p-locate-3.0.0"
sources."p-map-4.0.0"
sources."p-try-2.2.0"
(sources."package-json-6.5.0" // {
@@ -84498,7 +85164,7 @@ in
sources."performance-now-2.1.0"
sources."picomatch-2.3.0"
sources."pify-4.0.1"
- sources."pkg-up-2.0.0"
+ sources."pkg-up-3.1.0"
sources."plist-3.0.4"
sources."prepend-http-2.0.0"
sources."process-nextick-args-2.0.1"
@@ -84514,21 +85180,26 @@ in
sources."qs-6.5.2"
sources."queue-microtask-1.2.3"
sources."range-parser-1.2.1"
- (sources."raw-body-2.4.0" // {
+ (sources."raw-body-2.4.2" // {
dependencies = [
- sources."bytes-3.1.0"
+ sources."bytes-3.1.1"
sources."iconv-lite-0.4.24"
];
})
- sources."rc-1.2.8"
+ (sources."rc-1.2.8" // {
+ dependencies = [
+ sources."ini-1.3.8"
+ ];
+ })
sources."read-1.0.7"
sources."read-chunk-3.2.0"
- sources."read-package-json-2.1.2"
+ sources."read-package-json-4.1.1"
sources."read-package-json-fast-2.0.3"
sources."readable-stream-2.3.7"
sources."registry-auth-token-4.2.1"
sources."registry-url-5.1.0"
sources."request-2.88.2"
+ sources."require-from-string-2.0.2"
sources."resolve-1.20.0"
sources."resolve-from-4.0.0"
sources."responselike-1.0.2"
@@ -84553,19 +85224,19 @@ in
sources."semver-6.3.0"
];
})
- (sources."send-0.17.1" // {
+ (sources."send-0.17.2" // {
dependencies = [
(sources."debug-2.6.9" // {
dependencies = [
sources."ms-2.0.0"
];
})
- sources."ms-2.1.1"
+ sources."ms-2.1.3"
];
})
- sources."serve-static-1.14.1"
+ sources."serve-static-1.14.2"
sources."set-blocking-2.0.0"
- sources."setprototypeof-1.1.1"
+ sources."setprototypeof-1.2.0"
sources."shebang-command-2.0.0"
sources."shebang-regex-3.0.0"
sources."signal-exit-3.0.6"
@@ -84585,23 +85256,21 @@ in
sources."stringify-package-1.0.1"
sources."strip-ansi-3.0.1"
sources."strip-bom-4.0.0"
- sources."strip-eof-1.0.0"
sources."strip-final-newline-2.0.0"
sources."strip-json-comments-2.0.1"
sources."supports-color-7.2.0"
- sources."systeminformation-4.34.23"
+ sources."systeminformation-5.9.17"
sources."tar-6.1.11"
- sources."term-size-2.2.1"
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."toidentifier-1.0.1"
sources."tough-cookie-2.5.0"
sources."tslib-1.14.1"
sources."tunnel-agent-0.6.0"
sources."tweetnacl-0.14.5"
- sources."type-fest-0.8.1"
+ sources."type-fest-0.20.2"
sources."type-is-1.6.18"
sources."typedarray-to-buffer-3.1.5"
sources."underscore-1.13.2"
@@ -84610,7 +85279,11 @@ in
sources."unique-string-2.0.0"
sources."universalify-2.0.0"
sources."unpipe-1.0.0"
- sources."update-notifier-4.1.3"
+ (sources."update-notifier-5.1.0" // {
+ dependencies = [
+ sources."chalk-4.1.2"
+ ];
+ })
sources."uri-js-4.4.1"
sources."url-parse-lax-3.0.0"
sources."util-deprecate-1.0.2"
@@ -84635,21 +85308,22 @@ in
sources."strip-ansi-6.0.1"
];
})
- (sources."windows-release-3.3.3" // {
+ (sources."windows-release-4.0.0" // {
dependencies = [
- sources."cross-spawn-6.0.5"
- sources."execa-1.0.0"
- sources."get-stream-4.1.0"
- sources."is-stream-1.1.0"
- sources."npm-run-path-2.0.2"
- sources."path-key-2.0.1"
- sources."semver-5.7.1"
- sources."shebang-command-1.2.0"
- sources."shebang-regex-1.0.0"
- sources."which-1.3.1"
+ sources."execa-4.1.0"
+ sources."get-stream-5.2.0"
+ sources."human-signals-1.1.1"
];
})
sources."with-open-file-0.1.7"
+ (sources."wrap-ansi-7.0.0" // {
+ dependencies = [
+ sources."ansi-regex-5.0.1"
+ sources."is-fullwidth-code-point-3.0.0"
+ sources."string-width-4.2.3"
+ sources."strip-ansi-6.0.1"
+ ];
+ })
sources."wrappy-1.0.2"
sources."write-file-atomic-3.0.3"
sources."xdg-basedir-4.0.0"
@@ -84659,7 +85333,6 @@ in
buildInputs = globalBuildInputs;
meta = {
description = "Cordova command line interface tool";
- homepage = "https://github.com/apache/cordova-cli#readme";
license = "Apache-2.0";
};
production = true;
@@ -84675,15 +85348,15 @@ in
sha512 = "HCpNdBkQy3rw+uARLuIf0YurqsMXYzBa9ihhSAuxYJcNIrqrSq3BstPfr0cQN38AdMrQiO9Dp4hYy7GtGJsLPg==";
};
dependencies = [
- sources."@babel/code-frame-7.16.0"
- sources."@babel/helper-validator-identifier-7.15.7"
- sources."@babel/highlight-7.16.0"
+ sources."@babel/code-frame-7.16.7"
+ sources."@babel/helper-validator-identifier-7.16.7"
+ sources."@babel/highlight-7.16.7"
sources."@mrmlnc/readdir-enhanced-2.2.1"
sources."@nodelib/fs.stat-1.1.3"
sources."@types/glob-7.2.0"
sources."@types/minimatch-3.0.5"
sources."@types/minimist-1.2.2"
- sources."@types/node-17.0.0"
+ sources."@types/node-17.0.6"
sources."@types/normalize-package-data-2.4.1"
sources."aggregate-error-3.1.0"
sources."ansi-styles-3.2.1"
@@ -85054,7 +85727,7 @@ in
sources."@cycle/run-3.4.0"
sources."@cycle/time-0.10.1"
sources."@types/cookiejar-2.1.2"
- sources."@types/node-17.0.0"
+ sources."@types/node-17.0.6"
sources."@types/superagent-3.8.2"
sources."ansi-escapes-3.2.0"
sources."ansi-regex-2.1.1"
@@ -85143,7 +85816,7 @@ in
sources."mute-stream-0.0.7"
sources."next-tick-1.0.0"
sources."object-assign-4.1.1"
- sources."object-inspect-1.11.1"
+ sources."object-inspect-1.12.0"
sources."object-keys-1.1.1"
sources."onetime-2.0.1"
sources."os-tmpdir-1.0.2"
@@ -85318,15 +85991,15 @@ in
cspell = nodeEnv.buildNodePackage {
name = "cspell";
packageName = "cspell";
- version = "5.13.3";
+ version = "5.14.0";
src = fetchurl {
- url = "https://registry.npmjs.org/cspell/-/cspell-5.13.3.tgz";
- sha512 = "14RzCLHadT2BFcTEhEJUiwW4m8vVNnBXGBPnnEYkFiF2MyJEtfyOoqqVxqDHOvwVmc0zKIiAU0ZrG98spWuNnA==";
+ url = "https://registry.npmjs.org/cspell/-/cspell-5.14.0.tgz";
+ sha512 = "WR3WlXIU/WKN4CMfVbRQoo/IscmInYLJoNUe0vx6mVb/T+FbOGzIB1oG2+YqpoN2wG94DS6qdJ01LjPyz+rkXw==";
};
dependencies = [
- sources."@babel/code-frame-7.16.0"
- sources."@babel/helper-validator-identifier-7.15.7"
- (sources."@babel/highlight-7.16.0" // {
+ sources."@babel/code-frame-7.16.7"
+ sources."@babel/helper-validator-identifier-7.16.7"
+ (sources."@babel/highlight-7.16.7" // {
dependencies = [
sources."ansi-styles-3.2.1"
sources."chalk-2.4.2"
@@ -85336,8 +86009,8 @@ in
sources."supports-color-5.5.0"
];
})
- sources."@cspell/cspell-bundled-dicts-5.13.3"
- sources."@cspell/cspell-types-5.13.3"
+ sources."@cspell/cspell-bundled-dicts-5.14.0"
+ sources."@cspell/cspell-types-5.14.0"
sources."@cspell/dict-ada-1.1.2"
sources."@cspell/dict-aws-1.0.14"
sources."@cspell/dict-bash-1.0.17"
@@ -85356,7 +86029,7 @@ in
sources."@cspell/dict-fullstack-2.0.4"
sources."@cspell/dict-golang-1.1.24"
sources."@cspell/dict-haskell-1.0.13"
- sources."@cspell/dict-html-1.1.9"
+ sources."@cspell/dict-html-2.0.2"
sources."@cspell/dict-html-symbol-entities-1.0.23"
sources."@cspell/dict-java-1.0.23"
sources."@cspell/dict-latex-1.0.25"
@@ -85394,11 +86067,11 @@ in
sources."core-util-is-1.0.3"
sources."cosmiconfig-7.0.1"
sources."crypto-random-string-2.0.0"
- sources."cspell-gitignore-5.13.3"
- sources."cspell-glob-5.13.3"
- sources."cspell-io-5.13.3"
- sources."cspell-lib-5.13.3"
- sources."cspell-trie-lib-5.13.3"
+ sources."cspell-gitignore-5.14.0"
+ sources."cspell-glob-5.14.0"
+ sources."cspell-io-5.14.0"
+ sources."cspell-lib-5.14.0"
+ sources."cspell-trie-lib-5.14.0"
sources."dot-prop-5.3.0"
sources."error-ex-1.3.2"
sources."escape-string-regexp-1.0.5"
@@ -85437,7 +86110,12 @@ in
sources."jsonfile-6.1.0"
sources."lines-and-columns-1.2.4"
sources."locate-path-6.0.0"
- sources."make-dir-3.1.0"
+ sources."lru-cache-6.0.0"
+ (sources."make-dir-3.1.0" // {
+ dependencies = [
+ sources."semver-6.3.0"
+ ];
+ })
sources."micromatch-4.0.4"
sources."minimatch-3.0.4"
sources."once-1.4.0"
@@ -85453,7 +86131,7 @@ in
sources."resolve-from-5.0.0"
sources."resolve-global-1.0.0"
sources."rimraf-3.0.2"
- sources."semver-6.3.0"
+ sources."semver-7.3.5"
sources."signal-exit-3.0.6"
sources."strip-ansi-6.0.1"
sources."supports-color-7.2.0"
@@ -85461,10 +86139,11 @@ in
sources."typedarray-to-buffer-3.1.5"
sources."unique-string-2.0.0"
sources."universalify-2.0.0"
- sources."vscode-uri-3.0.2"
+ sources."vscode-uri-3.0.3"
sources."wrappy-1.0.2"
sources."write-file-atomic-3.0.3"
sources."xdg-basedir-4.0.0"
+ sources."yallist-4.0.0"
sources."yaml-1.10.2"
sources."yocto-queue-0.1.0"
];
@@ -85876,7 +86555,7 @@ in
sources."multi-random-access-2.1.1"
(sources."multicast-dns-7.2.4" // {
dependencies = [
- sources."dns-packet-5.3.0"
+ sources."dns-packet-5.3.1"
];
})
sources."multistream-2.1.1"
@@ -86201,69 +86880,69 @@ in
version = "1.26.0";
src = ../../applications/networking/instant-messengers/deltachat-desktop;
dependencies = [
- sources."@babel/code-frame-7.16.0"
+ sources."@babel/code-frame-7.16.7"
sources."@babel/compat-data-7.16.4"
- (sources."@babel/core-7.16.5" // {
+ (sources."@babel/core-7.16.7" // {
dependencies = [
sources."source-map-0.5.7"
];
})
- (sources."@babel/generator-7.16.5" // {
+ (sources."@babel/generator-7.16.7" // {
dependencies = [
sources."source-map-0.5.7"
];
})
- sources."@babel/helper-annotate-as-pure-7.16.0"
- sources."@babel/helper-builder-binary-assignment-operator-visitor-7.16.5"
- sources."@babel/helper-compilation-targets-7.16.3"
- sources."@babel/helper-create-class-features-plugin-7.16.5"
- sources."@babel/helper-create-regexp-features-plugin-7.16.0"
+ sources."@babel/helper-annotate-as-pure-7.16.7"
+ sources."@babel/helper-builder-binary-assignment-operator-visitor-7.16.7"
+ sources."@babel/helper-compilation-targets-7.16.7"
+ sources."@babel/helper-create-class-features-plugin-7.16.7"
+ sources."@babel/helper-create-regexp-features-plugin-7.16.7"
sources."@babel/helper-define-polyfill-provider-0.3.0"
- sources."@babel/helper-environment-visitor-7.16.5"
- sources."@babel/helper-explode-assignable-expression-7.16.0"
- sources."@babel/helper-function-name-7.16.0"
- sources."@babel/helper-get-function-arity-7.16.0"
- sources."@babel/helper-hoist-variables-7.16.0"
- sources."@babel/helper-member-expression-to-functions-7.16.5"
- sources."@babel/helper-module-imports-7.16.0"
- sources."@babel/helper-module-transforms-7.16.5"
- sources."@babel/helper-optimise-call-expression-7.16.0"
- sources."@babel/helper-plugin-utils-7.16.5"
- sources."@babel/helper-remap-async-to-generator-7.16.5"
- sources."@babel/helper-replace-supers-7.16.5"
- sources."@babel/helper-simple-access-7.16.0"
+ sources."@babel/helper-environment-visitor-7.16.7"
+ sources."@babel/helper-explode-assignable-expression-7.16.7"
+ sources."@babel/helper-function-name-7.16.7"
+ sources."@babel/helper-get-function-arity-7.16.7"
+ sources."@babel/helper-hoist-variables-7.16.7"
+ sources."@babel/helper-member-expression-to-functions-7.16.7"
+ sources."@babel/helper-module-imports-7.16.7"
+ sources."@babel/helper-module-transforms-7.16.7"
+ sources."@babel/helper-optimise-call-expression-7.16.7"
+ sources."@babel/helper-plugin-utils-7.16.7"
+ sources."@babel/helper-remap-async-to-generator-7.16.7"
+ sources."@babel/helper-replace-supers-7.16.7"
+ sources."@babel/helper-simple-access-7.16.7"
sources."@babel/helper-skip-transparent-expression-wrappers-7.16.0"
- sources."@babel/helper-split-export-declaration-7.16.0"
- sources."@babel/helper-validator-identifier-7.15.7"
- sources."@babel/helper-validator-option-7.14.5"
- sources."@babel/helper-wrap-function-7.16.5"
- sources."@babel/helpers-7.16.5"
- sources."@babel/highlight-7.16.0"
- sources."@babel/parser-7.16.6"
- sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.2"
- sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.0"
- sources."@babel/plugin-proposal-async-generator-functions-7.16.5"
- sources."@babel/plugin-proposal-class-properties-7.16.5"
- sources."@babel/plugin-proposal-class-static-block-7.16.5"
- sources."@babel/plugin-proposal-dynamic-import-7.16.5"
- sources."@babel/plugin-proposal-export-namespace-from-7.16.5"
- sources."@babel/plugin-proposal-json-strings-7.16.5"
- sources."@babel/plugin-proposal-logical-assignment-operators-7.16.5"
- sources."@babel/plugin-proposal-nullish-coalescing-operator-7.16.5"
- sources."@babel/plugin-proposal-numeric-separator-7.16.5"
- sources."@babel/plugin-proposal-object-rest-spread-7.16.5"
- sources."@babel/plugin-proposal-optional-catch-binding-7.16.5"
- sources."@babel/plugin-proposal-optional-chaining-7.16.5"
- sources."@babel/plugin-proposal-private-methods-7.16.5"
- sources."@babel/plugin-proposal-private-property-in-object-7.16.5"
- sources."@babel/plugin-proposal-unicode-property-regex-7.16.5"
+ sources."@babel/helper-split-export-declaration-7.16.7"
+ sources."@babel/helper-validator-identifier-7.16.7"
+ sources."@babel/helper-validator-option-7.16.7"
+ sources."@babel/helper-wrap-function-7.16.7"
+ sources."@babel/helpers-7.16.7"
+ sources."@babel/highlight-7.16.7"
+ sources."@babel/parser-7.16.7"
+ sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.7"
+ sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.7"
+ sources."@babel/plugin-proposal-async-generator-functions-7.16.7"
+ sources."@babel/plugin-proposal-class-properties-7.16.7"
+ sources."@babel/plugin-proposal-class-static-block-7.16.7"
+ sources."@babel/plugin-proposal-dynamic-import-7.16.7"
+ sources."@babel/plugin-proposal-export-namespace-from-7.16.7"
+ sources."@babel/plugin-proposal-json-strings-7.16.7"
+ sources."@babel/plugin-proposal-logical-assignment-operators-7.16.7"
+ sources."@babel/plugin-proposal-nullish-coalescing-operator-7.16.7"
+ sources."@babel/plugin-proposal-numeric-separator-7.16.7"
+ sources."@babel/plugin-proposal-object-rest-spread-7.16.7"
+ sources."@babel/plugin-proposal-optional-catch-binding-7.16.7"
+ sources."@babel/plugin-proposal-optional-chaining-7.16.7"
+ sources."@babel/plugin-proposal-private-methods-7.16.7"
+ sources."@babel/plugin-proposal-private-property-in-object-7.16.7"
+ sources."@babel/plugin-proposal-unicode-property-regex-7.16.7"
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.14.5"
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"
- sources."@babel/plugin-syntax-jsx-7.16.5"
+ sources."@babel/plugin-syntax-jsx-7.16.7"
sources."@babel/plugin-syntax-logical-assignment-operators-7.10.4"
sources."@babel/plugin-syntax-nullish-coalescing-operator-7.8.3"
sources."@babel/plugin-syntax-numeric-separator-7.10.4"
@@ -86272,49 +86951,49 @@ in
sources."@babel/plugin-syntax-optional-chaining-7.8.3"
sources."@babel/plugin-syntax-private-property-in-object-7.14.5"
sources."@babel/plugin-syntax-top-level-await-7.14.5"
- sources."@babel/plugin-transform-arrow-functions-7.16.5"
- sources."@babel/plugin-transform-async-to-generator-7.16.5"
- sources."@babel/plugin-transform-block-scoped-functions-7.16.5"
- sources."@babel/plugin-transform-block-scoping-7.16.5"
- sources."@babel/plugin-transform-classes-7.16.5"
- sources."@babel/plugin-transform-computed-properties-7.16.5"
- sources."@babel/plugin-transform-destructuring-7.16.5"
- sources."@babel/plugin-transform-dotall-regex-7.16.5"
- sources."@babel/plugin-transform-duplicate-keys-7.16.5"
- sources."@babel/plugin-transform-exponentiation-operator-7.16.5"
- sources."@babel/plugin-transform-for-of-7.16.5"
- sources."@babel/plugin-transform-function-name-7.16.5"
- sources."@babel/plugin-transform-literals-7.16.5"
- sources."@babel/plugin-transform-member-expression-literals-7.16.5"
- sources."@babel/plugin-transform-modules-amd-7.16.5"
- sources."@babel/plugin-transform-modules-commonjs-7.16.5"
- sources."@babel/plugin-transform-modules-systemjs-7.16.5"
- sources."@babel/plugin-transform-modules-umd-7.16.5"
- sources."@babel/plugin-transform-named-capturing-groups-regex-7.16.5"
- sources."@babel/plugin-transform-new-target-7.16.5"
- sources."@babel/plugin-transform-object-super-7.16.5"
- sources."@babel/plugin-transform-parameters-7.16.5"
- sources."@babel/plugin-transform-property-literals-7.16.5"
- sources."@babel/plugin-transform-react-display-name-7.16.5"
- sources."@babel/plugin-transform-react-jsx-7.16.5"
- sources."@babel/plugin-transform-react-jsx-development-7.16.5"
- sources."@babel/plugin-transform-react-pure-annotations-7.16.5"
- sources."@babel/plugin-transform-regenerator-7.16.5"
- sources."@babel/plugin-transform-reserved-words-7.16.5"
- sources."@babel/plugin-transform-shorthand-properties-7.16.5"
- sources."@babel/plugin-transform-spread-7.16.5"
- sources."@babel/plugin-transform-sticky-regex-7.16.5"
- sources."@babel/plugin-transform-template-literals-7.16.5"
- sources."@babel/plugin-transform-typeof-symbol-7.16.5"
- sources."@babel/plugin-transform-unicode-escapes-7.16.5"
- sources."@babel/plugin-transform-unicode-regex-7.16.5"
- sources."@babel/preset-env-7.16.5"
+ sources."@babel/plugin-transform-arrow-functions-7.16.7"
+ sources."@babel/plugin-transform-async-to-generator-7.16.7"
+ sources."@babel/plugin-transform-block-scoped-functions-7.16.7"
+ sources."@babel/plugin-transform-block-scoping-7.16.7"
+ sources."@babel/plugin-transform-classes-7.16.7"
+ sources."@babel/plugin-transform-computed-properties-7.16.7"
+ sources."@babel/plugin-transform-destructuring-7.16.7"
+ sources."@babel/plugin-transform-dotall-regex-7.16.7"
+ sources."@babel/plugin-transform-duplicate-keys-7.16.7"
+ sources."@babel/plugin-transform-exponentiation-operator-7.16.7"
+ sources."@babel/plugin-transform-for-of-7.16.7"
+ sources."@babel/plugin-transform-function-name-7.16.7"
+ sources."@babel/plugin-transform-literals-7.16.7"
+ sources."@babel/plugin-transform-member-expression-literals-7.16.7"
+ sources."@babel/plugin-transform-modules-amd-7.16.7"
+ sources."@babel/plugin-transform-modules-commonjs-7.16.7"
+ sources."@babel/plugin-transform-modules-systemjs-7.16.7"
+ sources."@babel/plugin-transform-modules-umd-7.16.7"
+ sources."@babel/plugin-transform-named-capturing-groups-regex-7.16.7"
+ sources."@babel/plugin-transform-new-target-7.16.7"
+ sources."@babel/plugin-transform-object-super-7.16.7"
+ sources."@babel/plugin-transform-parameters-7.16.7"
+ sources."@babel/plugin-transform-property-literals-7.16.7"
+ sources."@babel/plugin-transform-react-display-name-7.16.7"
+ sources."@babel/plugin-transform-react-jsx-7.16.7"
+ sources."@babel/plugin-transform-react-jsx-development-7.16.7"
+ sources."@babel/plugin-transform-react-pure-annotations-7.16.7"
+ sources."@babel/plugin-transform-regenerator-7.16.7"
+ sources."@babel/plugin-transform-reserved-words-7.16.7"
+ sources."@babel/plugin-transform-shorthand-properties-7.16.7"
+ sources."@babel/plugin-transform-spread-7.16.7"
+ sources."@babel/plugin-transform-sticky-regex-7.16.7"
+ sources."@babel/plugin-transform-template-literals-7.16.7"
+ sources."@babel/plugin-transform-typeof-symbol-7.16.7"
+ sources."@babel/plugin-transform-unicode-escapes-7.16.7"
+ sources."@babel/plugin-transform-unicode-regex-7.16.7"
+ sources."@babel/preset-env-7.16.7"
sources."@babel/preset-modules-0.1.5"
- sources."@babel/preset-react-7.16.5"
- sources."@babel/runtime-7.16.5"
- sources."@babel/template-7.16.0"
- sources."@babel/traverse-7.16.5"
- sources."@babel/types-7.16.0"
+ sources."@babel/preset-react-7.16.7"
+ sources."@babel/runtime-7.16.7"
+ sources."@babel/template-7.16.7"
+ sources."@babel/traverse-7.16.7"
+ sources."@babel/types-7.16.7"
sources."@blueprintjs/colors-4.0.0-beta.3"
sources."@blueprintjs/core-3.52.0"
sources."@blueprintjs/icons-3.31.0"
@@ -86338,11 +87017,11 @@ in
sources."@szmarczak/http-timer-1.1.2"
sources."@types/debounce-1.2.1"
sources."@types/dom4-2.0.2"
- sources."@types/emoji-mart-3.0.8"
+ sources."@types/emoji-mart-3.0.9"
sources."@types/geojson-7946.0.8"
sources."@types/mapbox-gl-0.54.5"
sources."@types/mime-types-2.1.1"
- sources."@types/node-14.18.0"
+ sources."@types/node-14.18.4"
sources."@types/node-fetch-2.5.12"
sources."@types/prop-types-15.7.4"
sources."@types/rc-1.2.0"
@@ -86351,7 +87030,7 @@ in
sources."@types/react-window-1.8.5"
sources."@types/react-window-infinite-loader-1.0.5"
sources."@types/scheduler-0.16.2"
- sources."@types/url-parse-1.4.5"
+ sources."@types/url-parse-1.4.6"
sources."ansi-styles-3.2.1"
(sources."anymatch-2.0.0" // {
dependencies = [
@@ -86399,7 +87078,7 @@ in
];
})
sources."call-bind-1.0.2"
- sources."caniuse-lite-1.0.30001287"
+ sources."caniuse-lite-1.0.30001294"
sources."chalk-2.4.2"
sources."chokidar-2.1.8"
(sources."class-utils-0.3.6" // {
@@ -86440,7 +87119,7 @@ in
];
})
sources."copy-descriptor-0.1.1"
- (sources."core-js-compat-3.20.0" // {
+ (sources."core-js-compat-3.20.2" // {
dependencies = [
sources."semver-7.0.0"
];
@@ -86466,7 +87145,7 @@ in
sources."duplexer3-0.1.4"
sources."earcut-2.2.3"
sources."electron-13.6.3"
- sources."electron-to-chromium-1.4.21"
+ sources."electron-to-chromium-1.4.31"
sources."emoji-js-clean-4.0.0"
sources."emoji-mart-3.0.1"
sources."emoji-regex-9.2.2"
@@ -86690,7 +87369,7 @@ in
sources."prepend-http-2.0.0"
sources."process-nextick-args-2.0.1"
sources."progress-2.0.3"
- sources."prop-types-15.7.2"
+ sources."prop-types-15.8.0"
sources."proto-list-1.2.4"
sources."protocol-buffers-schema-3.6.0"
sources."pump-3.0.0"
@@ -86746,7 +87425,7 @@ in
sources."rw-0.1.4"
sources."safe-buffer-5.2.1"
sources."safe-regex-1.1.0"
- (sources."sass-1.45.0" // {
+ (sources."sass-1.45.2" // {
dependencies = [
sources."anymatch-3.1.2"
sources."binary-extensions-2.2.0"
@@ -86878,7 +87557,7 @@ in
})
sources."upath-1.2.0"
sources."urix-0.1.0"
- sources."url-parse-1.5.3"
+ sources."url-parse-1.5.4"
sources."url-parse-lax-3.0.0"
sources."use-3.1.1"
sources."use-debounce-3.4.3"
@@ -86953,7 +87632,7 @@ in
sources."glob-parent-5.1.2"
sources."globby-11.0.4"
sources."graceful-fs-4.2.8"
- sources."ignore-5.1.9"
+ sources."ignore-5.2.0"
sources."indent-string-4.0.0"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
@@ -87050,7 +87729,7 @@ in
dependencies = [
sources."@fast-csv/format-4.3.5"
sources."@fast-csv/parse-4.3.6"
- sources."@types/node-14.18.0"
+ sources."@types/node-14.18.4"
sources."JSONStream-1.3.5"
sources."ajv-6.12.6"
sources."asn1-0.2.6"
@@ -87253,12 +87932,12 @@ in
sources."@types/http-cache-semantics-4.0.1"
sources."@types/keyv-3.1.3"
sources."@types/minimatch-3.0.5"
- sources."@types/node-17.0.0"
+ sources."@types/node-17.0.6"
sources."@types/responselike-1.0.0"
sources."@types/yauzl-2.9.2"
sources."abbrev-1.1.1"
sources."agent-base-6.0.2"
- sources."agentkeepalive-4.1.4"
+ sources."agentkeepalive-4.2.0"
sources."aggregate-error-3.1.0"
sources."ajv-6.12.6"
(sources."ansi-escapes-4.3.2" // {
@@ -87684,7 +88363,7 @@ in
sources."roarr-2.15.4"
sources."run-async-2.4.1"
sources."run-parallel-1.2.0"
- sources."rxjs-7.4.0"
+ sources."rxjs-7.5.1"
sources."safe-buffer-5.2.1"
sources."safer-buffer-2.1.2"
sources."semver-7.3.5"
@@ -87741,7 +88420,7 @@ in
sources."tr46-0.0.3"
sources."trim-newlines-1.0.0"
sources."trim-repeated-1.0.0"
- sources."tslib-2.1.0"
+ sources."tslib-2.3.1"
sources."tunnel-0.0.6"
sources."tunnel-agent-0.6.0"
sources."tweetnacl-0.14.5"
@@ -87771,7 +88450,7 @@ in
sources."xtend-2.1.2"
sources."y18n-5.0.8"
sources."yallist-4.0.0"
- (sources."yargs-17.3.0" // {
+ (sources."yargs-17.3.1" // {
dependencies = [
sources."yargs-parser-21.0.0"
];
@@ -87827,43 +88506,43 @@ in
sha512 = "ceJSyC2s1VCIqyzGkHeJkWBq/85QXaHM+0rZ1lRRtmcK9CsfRDyLSIZ7KJDZhPdIRUXBgBkdcOAW3AIu/yO/ew==";
};
dependencies = [
- sources."@babel/code-frame-7.16.0"
+ sources."@babel/code-frame-7.16.7"
sources."@babel/compat-data-7.16.4"
- (sources."@babel/core-7.16.5" // {
+ (sources."@babel/core-7.16.7" // {
dependencies = [
sources."semver-6.3.0"
];
})
- sources."@babel/generator-7.16.5"
- sources."@babel/helper-annotate-as-pure-7.16.0"
- (sources."@babel/helper-compilation-targets-7.16.3" // {
+ sources."@babel/generator-7.16.7"
+ sources."@babel/helper-annotate-as-pure-7.16.7"
+ (sources."@babel/helper-compilation-targets-7.16.7" // {
dependencies = [
sources."semver-6.3.0"
];
})
- sources."@babel/helper-environment-visitor-7.16.5"
- sources."@babel/helper-function-name-7.16.0"
- sources."@babel/helper-get-function-arity-7.16.0"
- sources."@babel/helper-hoist-variables-7.16.0"
- sources."@babel/helper-module-imports-7.16.0"
- sources."@babel/helper-module-transforms-7.16.5"
- sources."@babel/helper-plugin-utils-7.16.5"
- sources."@babel/helper-simple-access-7.16.0"
- sources."@babel/helper-split-export-declaration-7.16.0"
- sources."@babel/helper-validator-identifier-7.15.7"
- sources."@babel/helper-validator-option-7.14.5"
- sources."@babel/helpers-7.16.5"
- sources."@babel/highlight-7.16.0"
- sources."@babel/parser-7.16.6"
- sources."@babel/plugin-proposal-object-rest-spread-7.16.5"
- sources."@babel/plugin-syntax-jsx-7.16.5"
+ sources."@babel/helper-environment-visitor-7.16.7"
+ sources."@babel/helper-function-name-7.16.7"
+ sources."@babel/helper-get-function-arity-7.16.7"
+ sources."@babel/helper-hoist-variables-7.16.7"
+ sources."@babel/helper-module-imports-7.16.7"
+ sources."@babel/helper-module-transforms-7.16.7"
+ sources."@babel/helper-plugin-utils-7.16.7"
+ sources."@babel/helper-simple-access-7.16.7"
+ sources."@babel/helper-split-export-declaration-7.16.7"
+ sources."@babel/helper-validator-identifier-7.16.7"
+ sources."@babel/helper-validator-option-7.16.7"
+ sources."@babel/helpers-7.16.7"
+ sources."@babel/highlight-7.16.7"
+ sources."@babel/parser-7.16.7"
+ sources."@babel/plugin-proposal-object-rest-spread-7.16.7"
+ sources."@babel/plugin-syntax-jsx-7.16.7"
sources."@babel/plugin-syntax-object-rest-spread-7.8.3"
- sources."@babel/plugin-transform-destructuring-7.16.5"
- sources."@babel/plugin-transform-parameters-7.16.5"
- sources."@babel/plugin-transform-react-jsx-7.16.5"
- sources."@babel/template-7.16.0"
- sources."@babel/traverse-7.16.5"
- sources."@babel/types-7.16.0"
+ sources."@babel/plugin-transform-destructuring-7.16.7"
+ sources."@babel/plugin-transform-parameters-7.16.7"
+ sources."@babel/plugin-transform-react-jsx-7.16.7"
+ sources."@babel/template-7.16.7"
+ sources."@babel/traverse-7.16.7"
+ sources."@babel/types-7.16.7"
sources."@types/minimist-1.2.2"
sources."@types/normalize-package-data-2.4.1"
sources."@types/yoga-layout-1.9.2"
@@ -87888,7 +88567,7 @@ in
sources."callsites-2.0.0"
sources."camelcase-5.3.1"
sources."camelcase-keys-6.2.2"
- sources."caniuse-lite-1.0.30001287"
+ sources."caniuse-lite-1.0.30001294"
sources."chalk-2.4.2"
sources."ci-info-2.0.0"
sources."cli-boxes-2.2.1"
@@ -87917,7 +88596,7 @@ in
];
})
sources."dot-prop-5.3.0"
- sources."electron-to-chromium-1.4.21"
+ sources."electron-to-chromium-1.4.31"
sources."emoji-regex-8.0.0"
sources."emojilib-2.4.0"
sources."end-of-stream-1.4.4"
@@ -88038,7 +88717,7 @@ in
];
})
sources."pkg-up-3.1.0"
- sources."prop-types-15.7.2"
+ sources."prop-types-15.8.0"
sources."pump-3.0.0"
sources."punycode-2.1.1"
sources."quick-lru-4.0.1"
@@ -88149,9 +88828,9 @@ in
version = "1.7.5";
src = ../../applications/video/epgstation;
dependencies = [
- sources."@babel/code-frame-7.16.0"
- sources."@babel/helper-validator-identifier-7.15.7"
- (sources."@babel/highlight-7.16.0" // {
+ sources."@babel/code-frame-7.16.7"
+ sources."@babel/helper-validator-identifier-7.16.7"
+ (sources."@babel/highlight-7.16.7" // {
dependencies = [
sources."ansi-styles-3.2.1"
sources."chalk-2.4.2"
@@ -88176,7 +88855,7 @@ in
sources."normalize-path-2.1.1"
];
})
- sources."@microsoft/load-themed-styles-1.10.240"
+ sources."@microsoft/load-themed-styles-1.10.241"
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
@@ -88195,7 +88874,7 @@ in
sources."@types/connect-3.4.35"
sources."@types/engine.io-3.1.7"
sources."@types/express-4.17.8"
- sources."@types/express-serve-static-core-4.17.26"
+ sources."@types/express-serve-static-core-4.17.27"
sources."@types/fancy-log-1.3.0"
sources."@types/glob-7.2.0"
sources."@types/hls.js-0.13.1"
@@ -88888,7 +89567,7 @@ in
sources."iconv-lite-0.4.24"
sources."ieee754-1.2.1"
sources."iferr-0.1.5"
- sources."ignore-5.1.9"
+ sources."ignore-5.2.0"
sources."ignore-walk-3.0.4"
sources."immutable-4.0.0"
sources."imurmurhash-0.1.4"
@@ -89323,7 +90002,7 @@ in
sources."pg-pool-3.4.1"
sources."pg-protocol-1.5.0"
sources."pg-types-2.2.0"
- sources."pgpass-1.0.4"
+ sources."pgpass-1.0.5"
sources."picomatch-2.3.0"
sources."pify-2.3.0"
sources."pinkie-2.0.4"
@@ -89346,7 +90025,7 @@ in
sources."process-nextick-args-2.0.1"
sources."promise-inflight-1.0.1"
sources."promise-queue-2.2.5"
- sources."prop-types-15.7.2"
+ sources."prop-types-15.8.0"
sources."proxy-addr-2.0.7"
sources."prr-1.0.1"
sources."psl-1.8.0"
@@ -89432,7 +90111,7 @@ in
sources."safe-buffer-5.1.2"
sources."safe-regex-1.1.0"
sources."safer-buffer-2.1.2"
- (sources."sass-1.45.0" // {
+ (sources."sass-1.45.2" // {
dependencies = [
sources."anymatch-3.1.2"
sources."binary-extensions-2.2.0"
@@ -89536,7 +90215,7 @@ in
sources."spdx-expression-parse-3.0.1"
sources."spdx-license-ids-3.0.11"
sources."split-string-3.1.0"
- sources."split2-3.2.2"
+ sources."split2-4.1.0"
sources."sprintf-js-1.0.3"
sources."sqlite3-5.0.0"
sources."sqlstring-2.3.1"
@@ -89854,16 +90533,16 @@ in
eslint = nodeEnv.buildNodePackage {
name = "eslint";
packageName = "eslint";
- version = "8.4.1";
+ version = "8.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/eslint/-/eslint-8.4.1.tgz";
- sha512 = "TxU/p7LB1KxQ6+7aztTnO7K0i+h0tDi81YRY9VzB6Id71kNz+fFYnf5HD5UOQmxkzcoa0TlVZf9dpMtUv0GpWg==";
+ url = "https://registry.npmjs.org/eslint/-/eslint-8.6.0.tgz";
+ sha512 = "UvxdOJ7mXFlw7iuHZA4jmzPaUqIw54mZrv+XPYKNbKdLR0et4rf60lIZUU9kiNtnzzMzGWxMV+tQ7uG7JG8DPw==";
};
dependencies = [
sources."@eslint/eslintrc-1.0.5"
sources."@humanwhocodes/config-array-0.9.2"
sources."@humanwhocodes/object-schema-1.2.1"
- sources."acorn-8.6.0"
+ sources."acorn-8.7.0"
sources."acorn-jsx-5.3.2"
sources."ajv-6.12.6"
sources."ansi-colors-4.1.1"
@@ -89890,7 +90569,7 @@ in
];
})
sources."eslint-visitor-keys-3.1.0"
- sources."espree-9.2.0"
+ sources."espree-9.3.0"
sources."esquery-1.4.0"
sources."esrecurse-4.3.0"
sources."estraverse-5.3.0"
@@ -89971,8 +90650,8 @@ in
};
dependencies = [
sources."@babel/code-frame-7.12.11"
- sources."@babel/helper-validator-identifier-7.15.7"
- (sources."@babel/highlight-7.16.0" // {
+ sources."@babel/helper-validator-identifier-7.16.7"
+ (sources."@babel/highlight-7.16.7" // {
dependencies = [
sources."chalk-2.4.2"
sources."escape-string-regexp-1.0.5"
@@ -90145,10 +90824,10 @@ in
expo-cli = nodeEnv.buildNodePackage {
name = "expo-cli";
packageName = "expo-cli";
- version = "5.0.1";
+ version = "5.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/expo-cli/-/expo-cli-5.0.1.tgz";
- sha512 = "jGGiwb8QUgs7k5d8B2XXoi5hRUtt2D729FR28KkMjAAbnN6egk/G3tWxumKHelz3CO4Kov++qToTbOExkR9u7Q==";
+ url = "https://registry.npmjs.org/expo-cli/-/expo-cli-5.0.3.tgz";
+ sha512 = "Wou4IPj/V2VggX6k818WnU9Gz/JMgPln02282tQAvmouvkYInXwLG8IFkRqHJdt25nJvz9xrN7RATzn4IFcMWg==";
};
dependencies = [
sources."@babel/code-frame-7.10.4"
@@ -90158,46 +90837,46 @@ in
sources."semver-5.7.1"
];
})
- sources."@babel/generator-7.16.5"
- sources."@babel/helper-environment-visitor-7.16.5"
- sources."@babel/helper-function-name-7.16.0"
- sources."@babel/helper-get-function-arity-7.16.0"
- sources."@babel/helper-hoist-variables-7.16.0"
- sources."@babel/helper-module-imports-7.16.0"
- sources."@babel/helper-module-transforms-7.16.5"
- sources."@babel/helper-simple-access-7.16.0"
- sources."@babel/helper-split-export-declaration-7.16.0"
- sources."@babel/helper-validator-identifier-7.15.7"
- sources."@babel/helpers-7.16.5"
- (sources."@babel/highlight-7.16.0" // {
+ sources."@babel/generator-7.16.7"
+ sources."@babel/helper-environment-visitor-7.16.7"
+ sources."@babel/helper-function-name-7.16.7"
+ sources."@babel/helper-get-function-arity-7.16.7"
+ sources."@babel/helper-hoist-variables-7.16.7"
+ sources."@babel/helper-module-imports-7.16.7"
+ sources."@babel/helper-module-transforms-7.16.7"
+ sources."@babel/helper-simple-access-7.16.7"
+ sources."@babel/helper-split-export-declaration-7.16.7"
+ sources."@babel/helper-validator-identifier-7.16.7"
+ sources."@babel/helpers-7.16.7"
+ (sources."@babel/highlight-7.16.7" // {
dependencies = [
sources."chalk-2.4.2"
];
})
- sources."@babel/parser-7.16.6"
+ sources."@babel/parser-7.16.7"
sources."@babel/runtime-7.9.0"
- (sources."@babel/template-7.16.0" // {
+ (sources."@babel/template-7.16.7" // {
dependencies = [
- sources."@babel/code-frame-7.16.0"
+ sources."@babel/code-frame-7.16.7"
];
})
- (sources."@babel/traverse-7.16.5" // {
+ (sources."@babel/traverse-7.16.7" // {
dependencies = [
- sources."@babel/code-frame-7.16.0"
+ sources."@babel/code-frame-7.16.7"
];
})
- sources."@babel/types-7.16.0"
+ sources."@babel/types-7.16.7"
sources."@expo/apple-utils-0.0.0-alpha.26"
sources."@expo/bunyan-4.0.0"
- sources."@expo/config-6.0.13"
- (sources."@expo/config-plugins-4.0.13" // {
+ sources."@expo/config-6.0.14"
+ (sources."@expo/config-plugins-4.0.14" // {
dependencies = [
sources."semver-7.3.5"
];
})
sources."@expo/config-types-43.0.1"
- sources."@expo/dev-server-0.1.100"
- sources."@expo/dev-tools-0.13.136"
+ sources."@expo/dev-server-0.1.101"
+ sources."@expo/dev-tools-0.13.138"
(sources."@expo/devcert-1.0.0" // {
dependencies = [
sources."debug-3.2.7"
@@ -90213,7 +90892,7 @@ in
];
})
sources."@expo/json-file-8.2.34"
- sources."@expo/metro-config-0.3.6"
+ sources."@expo/metro-config-0.3.7"
sources."@expo/osascript-2.0.31"
(sources."@expo/package-manager-0.0.48" // {
dependencies = [
@@ -90227,9 +90906,9 @@ in
sources."xmlbuilder-14.0.0"
];
})
- sources."@expo/prebuild-config-3.0.13"
+ sources."@expo/prebuild-config-3.0.14"
sources."@expo/rudder-sdk-node-1.1.1"
- (sources."@expo/schemer-1.3.32" // {
+ (sources."@expo/schemer-1.3.33" // {
dependencies = [
sources."ajv-5.5.2"
sources."fast-deep-equal-1.1.0"
@@ -90238,7 +90917,7 @@ in
})
sources."@expo/sdk-runtime-versions-1.0.0"
sources."@expo/spawn-async-1.5.0"
- (sources."@expo/webpack-config-0.16.13" // {
+ (sources."@expo/webpack-config-0.16.14" // {
dependencies = [
sources."is-wsl-2.2.0"
];
@@ -90302,13 +90981,13 @@ in
sources."@types/glob-7.2.0"
sources."@types/html-minifier-terser-5.1.2"
sources."@types/http-cache-semantics-4.0.1"
- sources."@types/istanbul-lib-coverage-2.0.3"
+ sources."@types/istanbul-lib-coverage-2.0.4"
sources."@types/istanbul-lib-report-3.0.0"
sources."@types/istanbul-reports-3.0.1"
sources."@types/json-schema-7.0.9"
sources."@types/keyv-3.1.3"
sources."@types/minimatch-3.0.5"
- sources."@types/node-17.0.0"
+ sources."@types/node-17.0.6"
sources."@types/q-1.5.5"
sources."@types/responselike-1.0.0"
sources."@types/retry-0.12.1"
@@ -90358,7 +91037,7 @@ in
sources."acorn-6.4.2"
sources."address-1.1.2"
sources."agent-base-6.0.2"
- sources."agentkeepalive-4.1.4"
+ sources."agentkeepalive-4.2.0"
sources."aggregate-error-3.1.0"
sources."ajv-6.12.6"
sources."ajv-errors-1.0.1"
@@ -90516,7 +91195,7 @@ in
})
sources."camelcase-6.2.1"
sources."caniuse-api-3.0.0"
- sources."caniuse-lite-1.0.30001287"
+ sources."caniuse-lite-1.0.30001294"
sources."caseless-0.12.0"
(sources."chalk-4.1.2" // {
dependencies = [
@@ -90673,7 +91352,7 @@ in
sources."semver-6.3.0"
];
})
- (sources."css-select-4.2.0" // {
+ (sources."css-select-4.2.1" // {
dependencies = [
sources."domhandler-4.3.0"
];
@@ -90774,7 +91453,7 @@ in
sources."duplexify-3.7.1"
sources."ecc-jsbn-0.1.2"
sources."ee-first-1.1.1"
- sources."electron-to-chromium-1.4.21"
+ sources."electron-to-chromium-1.4.31"
(sources."elliptic-6.5.4" // {
dependencies = [
sources."bn.js-4.12.0"
@@ -90854,7 +91533,7 @@ in
sources."fs-extra-9.1.0"
];
})
- (sources."expo-pwa-0.0.108" // {
+ (sources."expo-pwa-0.0.109" // {
dependencies = [
sources."commander-2.20.0"
];
@@ -91075,7 +91754,7 @@ in
sources."icss-utils-4.1.1"
sources."ieee754-1.2.1"
sources."iferr-0.1.5"
- sources."ignore-5.1.9"
+ sources."ignore-5.2.0"
sources."ignore-walk-3.0.4"
sources."image-size-1.0.0"
sources."immer-8.0.1"
@@ -91430,7 +92109,7 @@ in
sources."kind-of-3.2.2"
];
})
- sources."object-inspect-1.11.1"
+ sources."object-inspect-1.12.0"
sources."object-is-1.1.5"
sources."object-keys-1.1.1"
sources."object-visit-1.0.1"
@@ -91689,7 +92368,7 @@ in
];
})
sources."postcss-safe-parser-4.0.2"
- sources."postcss-selector-parser-6.0.7"
+ sources."postcss-selector-parser-6.0.8"
(sources."postcss-svgo-4.0.3" // {
dependencies = [
sources."postcss-value-parser-3.3.1"
@@ -92166,7 +92845,7 @@ in
})
sources."url-join-4.0.0"
sources."url-loader-4.1.1"
- sources."url-parse-1.5.3"
+ sources."url-parse-1.5.4"
(sources."url-parse-lax-3.0.0" // {
dependencies = [
sources."prepend-http-2.0.0"
@@ -92245,12 +92924,18 @@ in
sources."anymatch-2.0.0"
sources."array-union-1.0.2"
sources."binary-extensions-1.13.1"
+ (sources."body-parser-1.19.1" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ ];
+ })
sources."braces-2.3.2"
+ sources."bytes-3.1.1"
sources."chokidar-2.1.8"
- sources."content-disposition-0.5.3"
- sources."cookie-0.4.0"
+ sources."content-disposition-0.5.4"
+ sources."cookie-0.4.1"
sources."del-4.1.1"
- (sources."express-4.17.1" // {
+ (sources."express-4.17.2" // {
dependencies = [
sources."debug-2.6.9"
];
@@ -92260,39 +92945,27 @@ in
sources."fsevents-1.2.13"
sources."glob-parent-3.1.0"
sources."globby-6.1.0"
- sources."http-errors-1.7.3"
sources."is-absolute-url-3.0.3"
sources."is-binary-path-1.0.1"
sources."is-glob-3.1.0"
sources."is-number-3.0.0"
sources."kind-of-3.2.2"
sources."micromatch-3.1.10"
- sources."mime-1.6.0"
sources."ms-2.0.0"
sources."normalize-path-2.1.1"
sources."p-map-2.1.0"
sources."p-retry-3.0.1"
sources."pify-2.3.0"
+ sources."qs-6.9.6"
+ sources."raw-body-2.4.2"
sources."readdirp-2.2.1"
sources."rimraf-2.7.1"
+ sources."safe-buffer-5.2.1"
sources."schema-utils-1.0.0"
sources."semver-6.3.0"
- (sources."send-0.17.1" // {
- dependencies = [
- (sources."debug-2.6.9" // {
- dependencies = [
- sources."ms-2.0.0"
- ];
- })
- sources."ms-2.1.1"
- ];
- })
- sources."serve-static-1.14.1"
- sources."setprototypeof-1.1.1"
sources."strip-ansi-3.0.1"
sources."supports-color-6.1.0"
sources."to-regex-range-2.1.1"
- sources."toidentifier-1.0.0"
sources."ws-6.2.2"
];
})
@@ -92339,7 +93012,7 @@ in
sources."uuid-7.0.3"
];
})
- (sources."xdl-59.2.20" // {
+ (sources."xdl-59.2.22" // {
dependencies = [
sources."bplist-parser-0.3.1"
sources."chownr-1.1.4"
@@ -92396,43 +93069,43 @@ in
fast-cli = nodeEnv.buildNodePackage {
name = "fast-cli";
packageName = "fast-cli";
- version = "3.0.1";
+ version = "3.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/fast-cli/-/fast-cli-3.0.1.tgz";
- sha512 = "QT3uBdxjHiXEz8iSAUJezETjKgTEP0PicHk36ga2veZHmIpqU5k+M0z1bmZ5G+EJHCN84o4w++fngJIgcj1Nqw==";
+ url = "https://registry.npmjs.org/fast-cli/-/fast-cli-3.1.0.tgz";
+ sha512 = "vpRrhwFHZGzf/cGKbl1m/JUx+H27zmeUMaOsCknEmKHPvDlL+HQL6YTxK4XYRCUEQmxOGYOUSGG4udBpprG7gg==";
};
dependencies = [
- sources."@babel/code-frame-7.16.0"
+ sources."@babel/code-frame-7.16.7"
sources."@babel/compat-data-7.16.4"
- sources."@babel/core-7.16.5"
- sources."@babel/generator-7.16.5"
- sources."@babel/helper-annotate-as-pure-7.16.0"
- sources."@babel/helper-compilation-targets-7.16.3"
- sources."@babel/helper-environment-visitor-7.16.5"
- sources."@babel/helper-function-name-7.16.0"
- sources."@babel/helper-get-function-arity-7.16.0"
- sources."@babel/helper-hoist-variables-7.16.0"
- sources."@babel/helper-module-imports-7.16.0"
- sources."@babel/helper-module-transforms-7.16.5"
- sources."@babel/helper-plugin-utils-7.16.5"
- sources."@babel/helper-simple-access-7.16.0"
- sources."@babel/helper-split-export-declaration-7.16.0"
- sources."@babel/helper-validator-identifier-7.15.7"
- sources."@babel/helper-validator-option-7.14.5"
- sources."@babel/helpers-7.16.5"
- sources."@babel/highlight-7.16.0"
- sources."@babel/parser-7.16.6"
- sources."@babel/plugin-proposal-object-rest-spread-7.16.5"
- sources."@babel/plugin-syntax-jsx-7.16.5"
+ sources."@babel/core-7.16.7"
+ sources."@babel/generator-7.16.7"
+ sources."@babel/helper-annotate-as-pure-7.16.7"
+ sources."@babel/helper-compilation-targets-7.16.7"
+ sources."@babel/helper-environment-visitor-7.16.7"
+ sources."@babel/helper-function-name-7.16.7"
+ sources."@babel/helper-get-function-arity-7.16.7"
+ sources."@babel/helper-hoist-variables-7.16.7"
+ sources."@babel/helper-module-imports-7.16.7"
+ sources."@babel/helper-module-transforms-7.16.7"
+ sources."@babel/helper-plugin-utils-7.16.7"
+ sources."@babel/helper-simple-access-7.16.7"
+ sources."@babel/helper-split-export-declaration-7.16.7"
+ sources."@babel/helper-validator-identifier-7.16.7"
+ sources."@babel/helper-validator-option-7.16.7"
+ sources."@babel/helpers-7.16.7"
+ sources."@babel/highlight-7.16.7"
+ sources."@babel/parser-7.16.7"
+ sources."@babel/plugin-proposal-object-rest-spread-7.16.7"
+ sources."@babel/plugin-syntax-jsx-7.16.7"
sources."@babel/plugin-syntax-object-rest-spread-7.8.3"
- sources."@babel/plugin-transform-destructuring-7.16.5"
- sources."@babel/plugin-transform-parameters-7.16.5"
- sources."@babel/plugin-transform-react-jsx-7.16.5"
- sources."@babel/template-7.16.0"
- sources."@babel/traverse-7.16.5"
- sources."@babel/types-7.16.0"
+ sources."@babel/plugin-transform-destructuring-7.16.7"
+ sources."@babel/plugin-transform-parameters-7.16.7"
+ sources."@babel/plugin-transform-react-jsx-7.16.7"
+ sources."@babel/template-7.16.7"
+ sources."@babel/traverse-7.16.7"
+ sources."@babel/types-7.16.7"
sources."@types/minimist-1.2.2"
- sources."@types/node-17.0.0"
+ sources."@types/node-17.0.6"
sources."@types/normalize-package-data-2.4.1"
sources."@types/yauzl-2.9.2"
sources."@types/yoga-layout-1.9.2"
@@ -92459,7 +93132,7 @@ in
sources."callsites-2.0.0"
sources."camelcase-5.3.1"
sources."camelcase-keys-6.2.2"
- sources."caniuse-lite-1.0.30001287"
+ sources."caniuse-lite-1.0.30001294"
sources."chalk-2.4.2"
sources."chownr-1.1.4"
sources."ci-info-2.0.0"
@@ -92482,8 +93155,8 @@ in
];
})
sources."delay-5.0.0"
- sources."devtools-protocol-0.0.869402"
- sources."electron-to-chromium-1.4.21"
+ sources."devtools-protocol-0.0.937139"
+ sources."electron-to-chromium-1.4.31"
sources."emoji-regex-8.0.0"
sources."end-of-stream-1.4.4"
sources."error-ex-1.3.2"
@@ -92550,7 +93223,7 @@ in
sources."minimist-options-4.1.0"
sources."mkdirp-classic-0.5.3"
sources."ms-2.1.2"
- sources."node-fetch-2.6.6"
+ sources."node-fetch-2.6.5"
sources."node-releases-2.0.1"
(sources."normalize-package-data-3.0.3" // {
dependencies = [
@@ -92572,14 +93245,17 @@ in
sources."picocolors-1.0.0"
sources."pkg-dir-4.2.0"
sources."progress-2.0.3"
- sources."prop-types-15.7.2"
sources."proxy-from-env-1.1.0"
sources."pump-3.0.0"
- sources."puppeteer-9.1.1"
+ (sources."puppeteer-13.0.1" // {
+ dependencies = [
+ sources."debug-4.3.2"
+ sources."ws-8.2.3"
+ ];
+ })
sources."quick-lru-4.0.1"
- sources."react-16.14.0"
+ sources."react-17.0.2"
sources."react-devtools-core-4.22.1"
- sources."react-is-16.13.1"
sources."react-reconciler-0.26.2"
(sources."read-pkg-5.2.0" // {
dependencies = [
@@ -92693,7 +93369,7 @@ in
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
- sources."@oclif/command-1.8.15"
+ sources."@oclif/command-1.8.16"
sources."@oclif/config-1.18.2"
sources."@oclif/errors-1.3.5"
(sources."@oclif/help-1.0.1" // {
@@ -92883,7 +93559,7 @@ in
sources."hyperlinker-1.0.0"
sources."iconv-lite-0.4.24"
sources."ieee754-1.2.1"
- sources."ignore-5.1.9"
+ sources."ignore-5.2.0"
sources."indent-string-4.0.0"
sources."inherits-2.0.4"
sources."ini-1.3.8"
@@ -92986,11 +93662,7 @@ in
sources."reusify-1.0.4"
sources."run-async-2.4.1"
sources."run-parallel-1.2.0"
- (sources."rxjs-7.4.0" // {
- dependencies = [
- sources."tslib-2.1.0"
- ];
- })
+ sources."rxjs-7.5.1"
sources."safe-buffer-5.2.1"
sources."safer-buffer-2.1.2"
sources."semver-7.3.5"
@@ -93064,10 +93736,10 @@ in
firebase-tools = nodeEnv.buildNodePackage {
name = "firebase-tools";
packageName = "firebase-tools";
- version = "9.23.3";
+ version = "10.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/firebase-tools/-/firebase-tools-9.23.3.tgz";
- sha512 = "J1S/T96rL3vKObDtTuBkop9JtW3vYnfwyU83NopiuOy9oPBRxFkitgzk034qGrpGyZvDA6Do6ZHI50taB3hrEg==";
+ url = "https://registry.npmjs.org/firebase-tools/-/firebase-tools-10.0.1.tgz";
+ sha512 = "KmovP22GtPb/rLFR6J6dtByqm4Dd2BJWtJTcmqoWNP+fxIPEa0kqxRikXsQwdoYbBEm0qIGHOKpRTsl5016sWQ==";
};
dependencies = [
(sources."@apidevtools/json-schema-ref-parser-9.0.9" // {
@@ -93099,7 +93771,7 @@ in
sources."mkdirp-1.0.4"
];
})
- sources."@opentelemetry/api-1.0.3"
+ sources."@opentelemetry/api-1.0.4"
sources."@opentelemetry/semantic-conventions-0.24.0"
sources."@protobufjs/aspromise-1.1.2"
sources."@protobufjs/base64-1.1.2"
@@ -93115,18 +93787,18 @@ in
sources."@szmarczak/http-timer-1.1.2"
sources."@tootallnate/once-1.1.2"
sources."@types/archiver-5.3.0"
- sources."@types/duplexify-3.6.0"
+ sources."@types/duplexify-3.6.1"
sources."@types/glob-7.2.0"
sources."@types/json-schema-7.0.9"
sources."@types/long-4.0.1"
sources."@types/minimatch-3.0.5"
- sources."@types/node-17.0.0"
+ sources."@types/node-17.0.6"
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."agentkeepalive-4.1.4"
+ sources."agentkeepalive-4.2.0"
sources."aggregate-error-3.1.0"
sources."ajv-6.12.6"
sources."ansi-align-3.0.1"
@@ -93270,13 +93942,9 @@ in
];
})
sources."console-control-strings-1.1.0"
- (sources."content-disposition-0.5.3" // {
- dependencies = [
- sources."safe-buffer-5.1.2"
- ];
- })
+ sources."content-disposition-0.5.4"
sources."content-type-1.0.4"
- sources."cookie-0.4.0"
+ sources."cookie-0.4.1"
sources."cookie-signature-1.0.6"
sources."core-util-is-1.0.3"
sources."cors-2.8.5"
@@ -93362,19 +94030,10 @@ in
sources."exegesis-express-2.0.1"
sources."exit-code-1.0.2"
sources."exit-on-epipe-1.0.1"
- (sources."express-4.17.1" // {
+ (sources."express-4.17.2" // {
dependencies = [
- sources."body-parser-1.19.0"
- sources."bytes-3.1.0"
sources."debug-2.6.9"
- sources."http-errors-1.7.2"
- sources."inherits-2.0.3"
sources."ms-2.0.0"
- sources."qs-6.7.0"
- sources."raw-body-2.4.0"
- sources."safe-buffer-5.1.2"
- sources."setprototypeof-1.1.1"
- sources."toidentifier-1.0.0"
];
})
(sources."ext-1.6.0" // {
@@ -93506,7 +94165,7 @@ in
})
];
})
- sources."install-artifact-from-github-1.2.0"
+ sources."install-artifact-from-github-1.3.0"
sources."ip-1.1.5"
sources."ip-regex-4.3.0"
sources."ipaddr.js-1.9.1"
@@ -93738,7 +94397,7 @@ in
sources."range-parser-1.2.1"
sources."raw-body-2.4.2"
sources."rc-1.2.8"
- sources."re2-1.17.1"
+ sources."re2-1.17.2"
sources."readable-stream-3.6.0"
sources."readdir-glob-1.1.1"
sources."readdirp-3.6.0"
@@ -93780,21 +94439,18 @@ in
sources."semver-6.3.0"
];
})
- (sources."send-0.17.1" // {
+ (sources."send-0.17.2" // {
dependencies = [
(sources."debug-2.6.9" // {
dependencies = [
sources."ms-2.0.0"
];
})
- sources."http-errors-1.7.3"
sources."mime-1.6.0"
- sources."ms-2.1.1"
- sources."setprototypeof-1.1.1"
- sources."toidentifier-1.0.0"
+ sources."ms-2.1.3"
];
})
- sources."serve-static-1.14.1"
+ sources."serve-static-1.14.2"
sources."set-blocking-2.0.0"
sources."setimmediate-1.0.5"
sources."setprototypeof-1.2.0"
@@ -94033,9 +94689,9 @@ in
sha512 = "iLv/+0qHQjqnj9Pa9gA0TQ6vhV9eRn4fKxbiOPKL7uGs2Zth7iIGvNnpHmJfQ7OV7TTgR53yolY2DS1vWE/FjQ==";
};
dependencies = [
- sources."@babel/code-frame-7.16.0"
- sources."@babel/helper-validator-identifier-7.15.7"
- (sources."@babel/highlight-7.16.0" // {
+ sources."@babel/code-frame-7.16.7"
+ sources."@babel/helper-validator-identifier-7.16.7"
+ (sources."@babel/highlight-7.16.7" // {
dependencies = [
sources."ansi-styles-3.2.1"
sources."chalk-2.4.2"
@@ -94189,7 +94845,7 @@ in
sources."redent-4.0.0"
sources."restore-cursor-3.1.0"
sources."run-async-2.4.1"
- sources."rxjs-7.4.0"
+ sources."rxjs-7.5.1"
sources."safe-buffer-5.2.1"
sources."safer-buffer-2.1.2"
sources."semver-7.3.5"
@@ -94215,7 +94871,7 @@ in
sources."through-2.3.8"
sources."tmp-0.0.33"
sources."trim-newlines-4.0.2"
- sources."tslib-2.1.0"
+ sources."tslib-2.3.1"
sources."type-fest-0.21.3"
sources."util-deprecate-1.0.2"
sources."validate-npm-package-license-3.0.4"
@@ -94247,7 +94903,7 @@ in
sources."@types/atob-2.1.2"
sources."@types/bn.js-5.1.0"
sources."@types/inquirer-6.5.0"
- sources."@types/node-17.0.0"
+ sources."@types/node-17.0.6"
sources."@types/pbkdf2-3.1.0"
sources."@types/secp256k1-4.0.3"
sources."@types/through-0.0.30"
@@ -94724,7 +95380,7 @@ in
sources."kind-of-3.2.2"
];
})
- sources."object-inspect-1.11.1"
+ sources."object-inspect-1.12.0"
sources."object-is-1.1.5"
sources."object-keys-1.1.1"
sources."object-visit-1.0.1"
@@ -94962,56 +95618,56 @@ in
sources."tslib-2.0.3"
];
})
- sources."@babel/code-frame-7.16.0"
+ sources."@babel/code-frame-7.16.7"
sources."@babel/compat-data-7.16.4"
- (sources."@babel/core-7.16.5" // {
+ (sources."@babel/core-7.16.7" // {
dependencies = [
sources."semver-6.3.0"
sources."source-map-0.5.7"
];
})
- (sources."@babel/generator-7.16.5" // {
+ (sources."@babel/generator-7.16.7" // {
dependencies = [
sources."source-map-0.5.7"
];
})
- sources."@babel/helper-annotate-as-pure-7.16.0"
- (sources."@babel/helper-compilation-targets-7.16.3" // {
+ sources."@babel/helper-annotate-as-pure-7.16.7"
+ (sources."@babel/helper-compilation-targets-7.16.7" // {
dependencies = [
sources."semver-6.3.0"
];
})
- sources."@babel/helper-environment-visitor-7.16.5"
- sources."@babel/helper-function-name-7.16.0"
- sources."@babel/helper-get-function-arity-7.16.0"
- sources."@babel/helper-hoist-variables-7.16.0"
- sources."@babel/helper-module-imports-7.16.0"
- sources."@babel/helper-module-transforms-7.16.5"
- sources."@babel/helper-plugin-utils-7.16.5"
- sources."@babel/helper-simple-access-7.16.0"
+ sources."@babel/helper-environment-visitor-7.16.7"
+ sources."@babel/helper-function-name-7.16.7"
+ sources."@babel/helper-get-function-arity-7.16.7"
+ sources."@babel/helper-hoist-variables-7.16.7"
+ sources."@babel/helper-module-imports-7.16.7"
+ sources."@babel/helper-module-transforms-7.16.7"
+ sources."@babel/helper-plugin-utils-7.16.7"
+ sources."@babel/helper-simple-access-7.16.7"
sources."@babel/helper-skip-transparent-expression-wrappers-7.16.0"
- sources."@babel/helper-split-export-declaration-7.16.0"
- sources."@babel/helper-validator-identifier-7.15.7"
- sources."@babel/helper-validator-option-7.14.5"
- sources."@babel/helpers-7.16.5"
- (sources."@babel/highlight-7.16.0" // {
+ sources."@babel/helper-split-export-declaration-7.16.7"
+ sources."@babel/helper-validator-identifier-7.16.7"
+ sources."@babel/helper-validator-option-7.16.7"
+ sources."@babel/helpers-7.16.7"
+ (sources."@babel/highlight-7.16.7" // {
dependencies = [
sources."chalk-2.4.2"
];
})
- sources."@babel/parser-7.16.6"
+ sources."@babel/parser-7.16.7"
sources."@babel/plugin-proposal-object-rest-spread-7.10.4"
- sources."@babel/plugin-proposal-optional-chaining-7.16.5"
- sources."@babel/plugin-syntax-jsx-7.16.5"
+ sources."@babel/plugin-proposal-optional-chaining-7.16.7"
+ sources."@babel/plugin-syntax-jsx-7.16.7"
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.16.5"
- sources."@babel/plugin-transform-react-jsx-7.16.5"
- sources."@babel/runtime-7.16.5"
- sources."@babel/standalone-7.16.6"
- sources."@babel/template-7.16.0"
- sources."@babel/traverse-7.16.5"
- sources."@babel/types-7.16.0"
+ sources."@babel/plugin-transform-parameters-7.16.7"
+ sources."@babel/plugin-transform-react-jsx-7.16.7"
+ sources."@babel/runtime-7.16.7"
+ sources."@babel/standalone-7.16.7"
+ sources."@babel/template-7.16.7"
+ sources."@babel/traverse-7.16.7"
+ sources."@babel/types-7.16.7"
sources."@graphql-tools/schema-7.1.5"
sources."@graphql-tools/utils-7.10.0"
sources."@hapi/address-2.1.4"
@@ -95045,12 +95701,12 @@ in
sources."@types/cacheable-request-6.0.2"
sources."@types/common-tags-1.8.1"
sources."@types/http-cache-semantics-4.0.1"
- sources."@types/istanbul-lib-coverage-2.0.3"
+ sources."@types/istanbul-lib-coverage-2.0.4"
sources."@types/istanbul-lib-report-3.0.0"
sources."@types/istanbul-reports-1.1.2"
sources."@types/json-patch-0.0.30"
sources."@types/keyv-3.1.3"
- sources."@types/node-17.0.0"
+ sources."@types/node-17.0.6"
sources."@types/node-fetch-2.5.12"
sources."@types/responselike-1.0.0"
sources."@types/unist-2.0.6"
@@ -95079,11 +95735,11 @@ in
sources."better-queue-3.8.10"
sources."better-queue-memory-1.0.4"
sources."binary-extensions-2.2.0"
- (sources."body-parser-1.19.0" // {
+ (sources."body-parser-1.19.1" // {
dependencies = [
sources."debug-2.6.9"
sources."ms-2.0.0"
- sources."qs-6.7.0"
+ sources."qs-6.9.6"
];
})
sources."boolbase-1.0.0"
@@ -95091,7 +95747,7 @@ in
sources."brace-expansion-1.1.11"
sources."braces-3.0.2"
sources."browserslist-4.19.1"
- sources."bytes-3.1.0"
+ sources."bytes-3.1.1"
sources."cacheable-lookup-5.0.4"
(sources."cacheable-request-7.0.2" // {
dependencies = [
@@ -95101,7 +95757,7 @@ in
sources."call-bind-1.0.2"
sources."camel-case-4.1.2"
sources."camelcase-6.2.1"
- sources."caniuse-lite-1.0.30001287"
+ sources."caniuse-lite-1.0.30001294"
sources."ccount-1.1.0"
(sources."chalk-4.1.2" // {
dependencies = [
@@ -95144,13 +95800,9 @@ in
sources."common-tags-1.8.2"
sources."concat-map-0.0.1"
sources."configstore-5.0.1"
- (sources."content-disposition-0.5.3" // {
- dependencies = [
- sources."safe-buffer-5.1.2"
- ];
- })
+ sources."content-disposition-0.5.4"
sources."content-type-1.0.4"
- (sources."contentful-management-7.47.0" // {
+ (sources."contentful-management-7.47.2" // {
dependencies = [
sources."type-fest-2.8.0"
];
@@ -95162,7 +95814,7 @@ in
sources."safe-buffer-5.1.2"
];
})
- sources."cookie-0.4.0"
+ sources."cookie-0.4.1"
sources."cookie-signature-1.0.6"
sources."cors-2.8.5"
sources."create-gatsby-2.4.0"
@@ -95172,7 +95824,7 @@ in
];
})
sources."crypto-random-string-2.0.0"
- sources."css-select-4.2.0"
+ sources."css-select-4.2.1"
sources."css-what-5.1.0"
sources."debug-4.3.3"
sources."decamelize-1.2.0"
@@ -95204,7 +95856,7 @@ in
sources."dotenv-8.6.0"
sources."duplexer3-0.1.4"
sources."ee-first-1.1.1"
- sources."electron-to-chromium-1.4.21"
+ sources."electron-to-chromium-1.4.31"
sources."emoji-regex-8.0.0"
sources."encodeurl-1.0.2"
sources."end-of-stream-1.4.4"
@@ -95227,25 +95879,17 @@ in
sources."which-2.0.2"
];
})
- (sources."express-4.17.1" // {
+ (sources."express-4.17.2" // {
dependencies = [
sources."debug-2.6.9"
sources."ms-2.0.0"
- sources."qs-6.7.0"
- sources."safe-buffer-5.1.2"
+ sources."qs-6.9.6"
];
})
(sources."express-graphql-0.12.0" // {
dependencies = [
- sources."bytes-3.1.1"
sources."http-errors-1.8.0"
- (sources."raw-body-2.4.2" // {
- dependencies = [
- sources."http-errors-1.8.1"
- ];
- })
- sources."setprototypeof-1.2.0"
- sources."toidentifier-1.0.1"
+ sources."toidentifier-1.0.0"
];
})
sources."extend-3.0.2"
@@ -95319,11 +95963,7 @@ in
sources."hosted-git-info-3.0.8"
sources."htmlparser2-6.1.0"
sources."http-cache-semantics-4.1.0"
- (sources."http-errors-1.7.2" // {
- dependencies = [
- sources."inherits-2.0.3"
- ];
- })
+ sources."http-errors-1.8.1"
sources."http2-wrapper-1.0.3"
sources."human-signals-2.1.0"
sources."iconv-lite-0.4.24"
@@ -95448,7 +96088,7 @@ in
sources."npm-run-path-2.0.2"
sources."nth-check-2.0.1"
sources."object-assign-4.1.1"
- sources."object-inspect-1.11.1"
+ sources."object-inspect-1.12.0"
sources."object-path-0.11.5"
sources."on-finished-2.3.0"
sources."once-1.4.0"
@@ -95510,7 +96150,7 @@ in
})
sources."progress-2.0.3"
sources."prompts-2.4.2"
- sources."prop-types-15.7.2"
+ sources."prop-types-15.8.0"
sources."proper-lockfile-4.1.2"
sources."protocols-1.4.8"
sources."proxy-addr-2.0.7"
@@ -95520,7 +96160,7 @@ in
sources."query-string-6.14.1"
sources."quick-lru-5.1.1"
sources."range-parser-1.2.1"
- sources."raw-body-2.4.0"
+ sources."raw-body-2.4.2"
(sources."rc-1.2.8" // {
dependencies = [
sources."ini-1.3.8"
@@ -95582,19 +96222,19 @@ in
sources."semver-6.3.0"
];
})
- (sources."send-0.17.1" // {
+ (sources."send-0.17.2" // {
dependencies = [
(sources."debug-2.6.9" // {
dependencies = [
sources."ms-2.0.0"
];
})
- sources."ms-2.1.1"
+ sources."ms-2.1.3"
];
})
- sources."serve-static-1.14.1"
+ sources."serve-static-1.14.2"
sources."set-blocking-2.0.0"
- sources."setprototypeof-1.1.1"
+ sources."setprototypeof-1.2.0"
sources."shebang-command-1.2.0"
sources."shebang-regex-1.0.0"
sources."side-channel-1.0.4"
@@ -95632,7 +96272,7 @@ in
sources."to-fast-properties-2.0.0"
sources."to-readable-stream-1.0.0"
sources."to-regex-range-5.0.1"
- sources."toidentifier-1.0.0"
+ sources."toidentifier-1.0.1"
sources."token-types-4.1.1"
sources."tr46-0.0.3"
sources."trim-0.0.1"
@@ -95694,7 +96334,7 @@ in
sources."write-file-atomic-3.0.3"
sources."ws-7.5.6"
sources."xdg-basedir-4.0.0"
- sources."xstate-4.26.1"
+ sources."xstate-4.27.0"
sources."xtend-4.0.2"
sources."y18n-4.0.3"
sources."yallist-4.0.0"
@@ -95730,9 +96370,9 @@ in
sha512 = "iNIWQw9R2XxY2epw0NZjFvy3lzhhe1K5UipEn11PmYFQqMhbQdL6SQsM9KFdwSBiVbzOJ1BWrzk/r9Zcp+RyMw==";
};
dependencies = [
- sources."@babel/code-frame-7.16.0"
- sources."@babel/helper-validator-identifier-7.15.7"
- (sources."@babel/highlight-7.16.0" // {
+ sources."@babel/code-frame-7.16.7"
+ sources."@babel/helper-validator-identifier-7.16.7"
+ (sources."@babel/highlight-7.16.7" // {
dependencies = [
sources."ansi-styles-3.2.1"
sources."chalk-2.4.2"
@@ -95834,7 +96474,7 @@ in
})
sources."read-pkg-up-7.0.1"
sources."rechoir-0.6.2"
- sources."request-light-0.5.5"
+ sources."request-light-0.5.6"
sources."resolve-1.20.0"
sources."run-async-2.4.1"
sources."sanitize-filename-1.6.3"
@@ -96186,7 +96826,7 @@ in
sources."@types/cacheable-request-6.0.2"
sources."@types/http-cache-semantics-4.0.1"
sources."@types/keyv-3.1.3"
- sources."@types/node-17.0.0"
+ sources."@types/node-17.0.6"
sources."@types/responselike-1.0.0"
sources."ansi-regex-6.0.1"
sources."ansi-styles-4.3.0"
@@ -96246,7 +96886,7 @@ in
sources."mimic-fn-2.1.0"
sources."mimic-response-1.0.1"
sources."normalize-url-6.1.0"
- sources."object-inspect-1.11.1"
+ sources."object-inspect-1.12.0"
sources."once-1.4.0"
sources."onetime-5.1.2"
sources."ora-6.0.1"
@@ -96292,9 +96932,9 @@ in
sha512 = "8PVebGkXGXlNE2T7You4gzX4SFiULZja38LInfmnJQFfMgmeOT8br/WpirCkqhBVA28tTMYflQj5QGoeGLfTUQ==";
};
dependencies = [
- sources."@babel/code-frame-7.16.0"
- sources."@babel/helper-validator-identifier-7.15.7"
- (sources."@babel/highlight-7.16.0" // {
+ sources."@babel/code-frame-7.16.7"
+ sources."@babel/helper-validator-identifier-7.16.7"
+ (sources."@babel/highlight-7.16.7" // {
dependencies = [
sources."ansi-styles-3.2.1"
sources."chalk-2.4.2"
@@ -96400,7 +97040,7 @@ in
];
})
sources."function-bind-1.1.1"
- sources."fuse.js-6.4.6"
+ sources."fuse.js-6.5.3"
sources."get-stream-6.0.1"
sources."get-uri-3.0.2"
sources."global-dirs-3.0.0"
@@ -96564,7 +97204,7 @@ in
sources."responselike-1.0.2"
sources."restore-cursor-3.1.0"
sources."run-async-2.4.1"
- sources."rxjs-7.4.0"
+ sources."rxjs-7.5.1"
sources."safe-buffer-5.2.1"
sources."safer-buffer-2.1.2"
sources."semver-7.3.5"
@@ -96599,7 +97239,7 @@ in
sources."toidentifier-1.0.1"
sources."tr46-0.0.3"
sources."trim-newlines-3.0.1"
- sources."tslib-2.1.0"
+ sources."tslib-2.3.1"
sources."type-check-0.3.2"
sources."type-fest-0.21.3"
sources."typedarray-to-buffer-3.1.5"
@@ -96812,7 +97452,7 @@ in
sources."wrappy-1.0.2"
sources."xtend-4.0.2"
sources."y18n-5.0.8"
- sources."yargs-17.3.0"
+ sources."yargs-17.3.1"
sources."yargs-parser-21.0.0"
sources."yauzl-2.10.0"
];
@@ -96836,9 +97476,9 @@ in
};
dependencies = [
sources."@ardatan/aggregate-error-0.0.6"
- sources."@babel/code-frame-7.16.0"
- sources."@babel/helper-validator-identifier-7.15.7"
- (sources."@babel/highlight-7.16.0" // {
+ sources."@babel/code-frame-7.16.7"
+ sources."@babel/helper-validator-identifier-7.16.7"
+ (sources."@babel/highlight-7.16.7" // {
dependencies = [
sources."ansi-styles-3.2.1"
sources."chalk-2.4.2"
@@ -96940,7 +97580,7 @@ in
sources."@nodelib/fs.walk-1.2.8"
sources."@sindresorhus/is-0.14.0"
sources."@szmarczak/http-timer-1.1.2"
- sources."@types/node-17.0.0"
+ sources."@types/node-17.0.6"
sources."@types/parse-json-4.0.0"
sources."@types/websocket-1.0.2"
sources."abort-controller-3.0.0"
@@ -97105,7 +97745,7 @@ in
sources."http2-client-1.3.5"
sources."iconv-lite-0.4.24"
sources."ieee754-1.2.1"
- sources."ignore-5.1.9"
+ sources."ignore-5.2.0"
(sources."import-fresh-3.3.0" // {
dependencies = [
sources."resolve-from-4.0.0"
@@ -97235,13 +97875,13 @@ in
sources."oas-linter-3.2.2"
(sources."oas-resolver-2.5.6" // {
dependencies = [
- sources."yargs-17.3.0"
+ sources."yargs-17.3.1"
];
})
sources."oas-schema-walker-1.1.5"
sources."oas-validator-5.0.8"
sources."oauth-sign-0.9.0"
- sources."object-inspect-1.11.1"
+ sources."object-inspect-1.12.0"
sources."object-is-1.1.5"
sources."object-keys-1.1.1"
sources."object.assign-4.1.2"
@@ -97348,7 +97988,7 @@ in
sources."supports-color-7.2.0"
(sources."swagger2openapi-7.0.8" // {
dependencies = [
- sources."yargs-17.3.0"
+ sources."yargs-17.3.1"
];
})
sources."symbol-observable-1.2.0"
@@ -97414,9 +98054,9 @@ in
sha512 = "97Chda90OBIHCpH6iQHNYc9qTTADN0LOFbiMcRws3V5SottC/0yTDIQDgBzncZYVCkttyjAnT6YmVuNId7ymQA==";
};
dependencies = [
- sources."@babel/code-frame-7.16.0"
- sources."@babel/helper-validator-identifier-7.15.7"
- (sources."@babel/highlight-7.16.0" // {
+ sources."@babel/code-frame-7.16.7"
+ sources."@babel/helper-validator-identifier-7.16.7"
+ (sources."@babel/highlight-7.16.7" // {
dependencies = [
sources."ansi-styles-3.2.1"
sources."chalk-2.4.2"
@@ -97444,7 +98084,7 @@ in
sources."ws-7.5.6"
];
})
- sources."ws-8.3.0"
+ sources."ws-8.4.0"
];
})
sources."@graphql-tools/utils-8.5.5"
@@ -97480,7 +98120,7 @@ in
})
sources."@oclif/screen-1.0.4"
sources."@types/json-schema-7.0.9"
- sources."@types/node-17.0.0"
+ sources."@types/node-17.0.6"
sources."@types/parse-json-4.0.0"
sources."@types/websocket-1.0.4"
sources."@types/ws-8.2.2"
@@ -97556,7 +98196,7 @@ in
sources."semver-5.7.1"
];
})
- sources."cross-undici-fetch-0.1.4"
+ sources."cross-undici-fetch-0.1.12"
sources."cwise-compiler-1.1.3"
sources."dataloader-2.0.0"
sources."debug-4.3.3"
@@ -97617,7 +98257,7 @@ in
sources."hyperlinker-1.0.0"
sources."iconv-lite-0.4.19"
sources."ieee754-1.2.1"
- sources."ignore-5.1.9"
+ sources."ignore-5.2.0"
(sources."import-fresh-3.3.0" // {
dependencies = [
sources."resolve-from-4.0.0"
@@ -97750,7 +98390,7 @@ in
sources."ts-node-9.1.1"
sources."tslib-2.3.1"
sources."type-is-1.6.18"
- sources."undici-4.12.0"
+ sources."undici-4.12.1"
sources."uniq-1.0.1"
sources."universalify-0.1.2"
sources."unixify-1.0.0"
@@ -97881,19 +98521,19 @@ in
meshcommander = nodeEnv.buildNodePackage {
name = "meshcommander";
packageName = "meshcommander";
- version = "0.9.1-a";
+ version = "0.9.2-a";
src = fetchurl {
- url = "https://registry.npmjs.org/meshcommander/-/meshcommander-0.9.1-a.tgz";
- sha512 = "y6T69luPREY/22vvm0MKauIN85BXoSy1zSEAmZc0lKkqc37JY12M16kGm5wF55uXs8LAlreOVY+4lrfrPnQtxw==";
+ url = "https://registry.npmjs.org/meshcommander/-/meshcommander-0.9.2-a.tgz";
+ sha512 = "qS3MSZ34J+E/iqyLpq/NJwCP99GDmjMF+aZ5YWYR+B8neFMLiPufKNoeou3wh1WtkYtHzyJsaWVwMEECclQacQ==";
};
dependencies = [
sources."accepts-1.3.7"
sources."array-flatten-1.1.1"
- sources."body-parser-1.19.0"
- sources."bytes-3.1.0"
- sources."content-disposition-0.5.3"
+ sources."body-parser-1.19.1"
+ sources."bytes-3.1.1"
+ sources."content-disposition-0.5.4"
sources."content-type-1.0.4"
- sources."cookie-0.4.0"
+ sources."cookie-0.4.1"
sources."cookie-signature-1.0.6"
sources."debug-2.6.9"
sources."depd-1.1.2"
@@ -97902,14 +98542,14 @@ in
sources."encodeurl-1.0.2"
sources."escape-html-1.0.3"
sources."etag-1.8.1"
- sources."express-4.17.1"
+ sources."express-4.17.2"
sources."express-ws-2.0.0"
sources."finalhandler-1.1.2"
sources."forwarded-0.2.0"
sources."fresh-0.5.2"
- sources."http-errors-1.7.2"
+ sources."http-errors-1.8.1"
sources."iconv-lite-0.4.24"
- sources."inherits-2.0.3"
+ sources."inherits-2.0.4"
sources."ipaddr.js-1.9.1"
sources."media-typer-0.3.0"
sources."merge-descriptors-1.0.1"
@@ -97925,20 +98565,20 @@ in
sources."parseurl-1.3.3"
sources."path-to-regexp-0.1.7"
sources."proxy-addr-2.0.7"
- sources."qs-6.7.0"
+ sources."qs-6.9.6"
sources."range-parser-1.2.1"
- sources."raw-body-2.4.0"
- sources."safe-buffer-5.1.2"
+ sources."raw-body-2.4.2"
+ sources."safe-buffer-5.2.1"
sources."safer-buffer-2.1.2"
- (sources."send-0.17.1" // {
+ (sources."send-0.17.2" // {
dependencies = [
- sources."ms-2.1.1"
+ sources."ms-2.1.3"
];
})
- sources."serve-static-1.14.1"
- sources."setprototypeof-1.1.1"
+ sources."serve-static-1.14.2"
+ sources."setprototypeof-1.2.0"
sources."statuses-1.5.0"
- sources."toidentifier-1.0.0"
+ sources."toidentifier-1.0.1"
sources."type-is-1.6.18"
sources."ultron-1.0.2"
sources."unpipe-1.0.0"
@@ -98992,10 +99632,10 @@ in
htmlhint = nodeEnv.buildNodePackage {
name = "htmlhint";
packageName = "htmlhint";
- version = "1.0.0";
+ version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/htmlhint/-/htmlhint-1.0.0.tgz";
- sha512 = "Z+8hVuoHHRoWRUMWE7ehtNVJbED/sbmIFN/azvNnBMliF9vgdTISdATUnPvA1Y5B6FV4tDPFCMrJ5+gvKIZ2rQ==";
+ url = "https://registry.npmjs.org/htmlhint/-/htmlhint-1.1.0.tgz";
+ sha512 = "+bsDBss95q0SdgVzPJ6Kqu8kSHu91/9rEFs8mIrobGrdV30EtNLyvqTL4xwl3q8GkzRn7lJxNNjwSGwiAoZkiw==";
};
dependencies = [
sources."ansi-styles-4.3.0"
@@ -99070,7 +99710,7 @@ in
sources."minimist-1.2.5"
sources."mkdirp-0.5.5"
sources."ms-2.1.3"
- sources."object-inspect-1.11.1"
+ sources."object-inspect-1.12.0"
sources."opener-1.5.2"
sources."portfinder-1.0.28"
sources."qs-6.10.2"
@@ -99266,7 +99906,7 @@ in
dependencies = [
sources."@fast-csv/format-4.3.5"
sources."@fast-csv/parse-4.3.6"
- sources."@types/node-14.18.0"
+ sources."@types/node-14.18.4"
sources."ajv-6.12.6"
sources."ansi-regex-5.0.1"
sources."ansi-styles-4.3.0"
@@ -99275,7 +99915,7 @@ in
sources."assert-plus-1.0.0"
sources."async-2.6.3"
sources."asynckit-0.4.0"
- sources."aws-sdk-2.1046.0"
+ sources."aws-sdk-2.1048.0"
sources."aws-sign2-0.7.0"
sources."aws4-1.11.0"
sources."base64-js-1.5.1"
@@ -99817,7 +100457,7 @@ in
};
dependencies = [
sources."@jcubic/lily-0.3.0"
- sources."@types/jquery-3.5.10"
+ sources."@types/jquery-3.5.11"
sources."@types/sizzle-2.3.3"
sources."ansidec-0.3.4"
sources."arch-2.2.0"
@@ -99846,7 +100486,7 @@ in
sources."is-wsl-2.2.0"
sources."isexe-2.0.0"
sources."jquery-3.6.0"
- sources."jquery.terminal-2.30.1"
+ sources."jquery.terminal-2.31.1"
sources."jsonfile-2.4.0"
sources."keyboardevent-key-polyfill-1.1.0"
sources."line-reader-0.4.0"
@@ -100085,7 +100725,7 @@ in
sources."vscode-languageserver-textdocument-1.0.3"
sources."vscode-languageserver-types-3.17.0-next.1"
sources."vscode-nls-5.0.0"
- sources."vscode-uri-3.0.2"
+ sources."vscode-uri-3.0.3"
sources."wrappy-1.0.2"
sources."yallist-2.1.2"
];
@@ -100287,7 +100927,7 @@ in
sources."path-key-2.0.1"
];
})
- sources."object-inspect-1.11.1"
+ sources."object-inspect-1.12.0"
sources."once-1.4.0"
sources."onetime-2.0.1"
sources."open-7.4.2"
@@ -100420,9 +101060,9 @@ in
dependencies = [
sources."@iarna/toml-2.2.5"
sources."@msgpack/msgpack-2.7.1"
- sources."@ot-builder/bin-composite-types-1.3.2"
- sources."@ot-builder/bin-util-1.3.2"
- (sources."@ot-builder/cli-help-shower-1.3.2" // {
+ sources."@ot-builder/bin-composite-types-1.3.3"
+ sources."@ot-builder/bin-util-1.3.3"
+ (sources."@ot-builder/cli-help-shower-1.3.3" // {
dependencies = [
sources."ansi-styles-4.3.0"
sources."chalk-4.1.2"
@@ -100432,39 +101072,39 @@ in
sources."supports-color-7.2.0"
];
})
- sources."@ot-builder/cli-proc-1.3.2"
- sources."@ot-builder/cli-shared-1.3.2"
- sources."@ot-builder/common-impl-1.3.2"
- sources."@ot-builder/errors-1.3.2"
- sources."@ot-builder/io-bin-cff-1.3.2"
- sources."@ot-builder/io-bin-encoding-1.3.2"
- sources."@ot-builder/io-bin-ext-private-1.3.2"
- sources."@ot-builder/io-bin-font-1.3.2"
- sources."@ot-builder/io-bin-glyph-store-1.3.2"
- sources."@ot-builder/io-bin-layout-1.3.2"
- sources."@ot-builder/io-bin-metadata-1.3.2"
- sources."@ot-builder/io-bin-metric-1.3.2"
- sources."@ot-builder/io-bin-name-1.3.2"
- sources."@ot-builder/io-bin-sfnt-1.3.2"
- sources."@ot-builder/io-bin-ttf-1.3.2"
- sources."@ot-builder/io-bin-vtt-private-1.3.2"
- sources."@ot-builder/ot-1.3.2"
- sources."@ot-builder/ot-encoding-1.3.2"
- sources."@ot-builder/ot-ext-private-1.3.2"
- sources."@ot-builder/ot-glyphs-1.3.2"
- sources."@ot-builder/ot-layout-1.3.2"
- sources."@ot-builder/ot-metadata-1.3.2"
- sources."@ot-builder/ot-name-1.3.2"
- sources."@ot-builder/ot-sfnt-1.3.2"
- sources."@ot-builder/ot-standard-glyph-namer-1.3.2"
- sources."@ot-builder/ot-vtt-private-1.3.2"
- sources."@ot-builder/prelude-1.3.2"
- sources."@ot-builder/primitive-1.3.2"
- sources."@ot-builder/rectify-1.3.2"
- sources."@ot-builder/stat-glyphs-1.3.2"
- sources."@ot-builder/trace-1.3.2"
- sources."@ot-builder/var-store-1.3.2"
- sources."@ot-builder/variance-1.3.2"
+ sources."@ot-builder/cli-proc-1.3.3"
+ sources."@ot-builder/cli-shared-1.3.3"
+ sources."@ot-builder/common-impl-1.3.3"
+ sources."@ot-builder/errors-1.3.3"
+ sources."@ot-builder/io-bin-cff-1.3.3"
+ sources."@ot-builder/io-bin-encoding-1.3.3"
+ sources."@ot-builder/io-bin-ext-private-1.3.3"
+ sources."@ot-builder/io-bin-font-1.3.3"
+ sources."@ot-builder/io-bin-glyph-store-1.3.3"
+ sources."@ot-builder/io-bin-layout-1.3.3"
+ sources."@ot-builder/io-bin-metadata-1.3.3"
+ sources."@ot-builder/io-bin-metric-1.3.3"
+ sources."@ot-builder/io-bin-name-1.3.3"
+ sources."@ot-builder/io-bin-sfnt-1.3.3"
+ sources."@ot-builder/io-bin-ttf-1.3.3"
+ sources."@ot-builder/io-bin-vtt-private-1.3.3"
+ sources."@ot-builder/ot-1.3.3"
+ sources."@ot-builder/ot-encoding-1.3.3"
+ sources."@ot-builder/ot-ext-private-1.3.3"
+ sources."@ot-builder/ot-glyphs-1.3.3"
+ sources."@ot-builder/ot-layout-1.3.3"
+ sources."@ot-builder/ot-metadata-1.3.3"
+ sources."@ot-builder/ot-name-1.3.3"
+ sources."@ot-builder/ot-sfnt-1.3.3"
+ sources."@ot-builder/ot-standard-glyph-namer-1.3.3"
+ sources."@ot-builder/ot-vtt-private-1.3.3"
+ sources."@ot-builder/prelude-1.3.3"
+ sources."@ot-builder/primitive-1.3.3"
+ sources."@ot-builder/rectify-1.3.3"
+ sources."@ot-builder/stat-glyphs-1.3.3"
+ sources."@ot-builder/trace-1.3.3"
+ sources."@ot-builder/var-store-1.3.3"
+ sources."@ot-builder/variance-1.3.3"
sources."@unicode/unicode-13.0.0-1.2.1"
sources."@xmldom/xmldom-0.7.5"
sources."aglfn-1.0.2"
@@ -100546,8 +101186,8 @@ in
sources."once-1.4.0"
sources."onetime-5.1.2"
sources."optionator-0.8.3"
- sources."ot-builder-1.3.2"
- sources."otb-ttc-bundle-1.3.2"
+ sources."ot-builder-1.3.3"
+ sources."otb-ttc-bundle-1.3.3"
sources."passerror-1.1.1"
sources."patel-0.35.1"
sources."path-is-absolute-1.0.1"
@@ -100596,7 +101236,7 @@ in
sources."color-name-1.1.4"
sources."has-flag-4.0.0"
sources."supports-color-7.2.0"
- sources."yargs-17.3.0"
+ sources."yargs-17.3.1"
sources."yargs-parser-21.0.0"
];
})
@@ -100747,30 +101387,144 @@ in
joplin = nodeEnv.buildNodePackage {
name = "joplin";
packageName = "joplin";
- version = "2.6.1";
+ version = "2.6.2";
src = fetchurl {
- url = "https://registry.npmjs.org/joplin/-/joplin-2.6.1.tgz";
- sha512 = "fnpQ169874h4kg9yYrqAt/kuJuNEKngNQk1FjIFoIZaQJ6iLV6vnqFSl/ncF/dNK6OJahcngtAcFBHHyYxTF1A==";
+ url = "https://registry.npmjs.org/joplin/-/joplin-2.6.2.tgz";
+ sha512 = "61T3dXujHOPIlSwH6VkWRdMIVr36AkuZd9djuvsNSTOJl7s2C5xeztz47evpIXQCoGRd5ziFivTkAY2euydulw==";
};
dependencies = [
+ (sources."@aws-crypto/crc32-2.0.0" // {
+ dependencies = [
+ sources."tslib-1.14.1"
+ ];
+ })
+ (sources."@aws-crypto/ie11-detection-2.0.0" // {
+ dependencies = [
+ sources."tslib-1.14.1"
+ ];
+ })
+ (sources."@aws-crypto/sha256-browser-2.0.0" // {
+ dependencies = [
+ sources."tslib-1.14.1"
+ ];
+ })
+ (sources."@aws-crypto/sha256-js-2.0.0" // {
+ dependencies = [
+ sources."tslib-1.14.1"
+ ];
+ })
+ (sources."@aws-crypto/supports-web-crypto-2.0.0" // {
+ dependencies = [
+ sources."tslib-1.14.1"
+ ];
+ })
+ (sources."@aws-crypto/util-2.0.1" // {
+ dependencies = [
+ sources."tslib-1.14.1"
+ ];
+ })
+ sources."@aws-sdk/abort-controller-3.40.0"
+ sources."@aws-sdk/chunked-blob-reader-3.37.0"
+ sources."@aws-sdk/chunked-blob-reader-native-3.37.0"
+ sources."@aws-sdk/client-s3-3.45.0"
+ sources."@aws-sdk/client-sso-3.45.0"
+ sources."@aws-sdk/client-sts-3.45.0"
+ sources."@aws-sdk/config-resolver-3.45.0"
+ sources."@aws-sdk/credential-provider-env-3.40.0"
+ sources."@aws-sdk/credential-provider-imds-3.40.0"
+ sources."@aws-sdk/credential-provider-ini-3.45.0"
+ sources."@aws-sdk/credential-provider-node-3.45.0"
+ sources."@aws-sdk/credential-provider-process-3.40.0"
+ sources."@aws-sdk/credential-provider-sso-3.45.0"
+ sources."@aws-sdk/credential-provider-web-identity-3.41.0"
+ sources."@aws-sdk/eventstream-marshaller-3.40.0"
+ sources."@aws-sdk/eventstream-serde-browser-3.40.0"
+ sources."@aws-sdk/eventstream-serde-config-resolver-3.40.0"
+ sources."@aws-sdk/eventstream-serde-node-3.40.0"
+ sources."@aws-sdk/eventstream-serde-universal-3.40.0"
+ sources."@aws-sdk/fetch-http-handler-3.40.0"
+ sources."@aws-sdk/hash-blob-browser-3.40.0"
+ sources."@aws-sdk/hash-node-3.40.0"
+ sources."@aws-sdk/hash-stream-node-3.45.0"
+ sources."@aws-sdk/invalid-dependency-3.40.0"
+ sources."@aws-sdk/is-array-buffer-3.37.0"
+ sources."@aws-sdk/md5-js-3.40.0"
+ sources."@aws-sdk/middleware-apply-body-checksum-3.40.0"
+ sources."@aws-sdk/middleware-bucket-endpoint-3.41.0"
+ sources."@aws-sdk/middleware-content-length-3.40.0"
+ sources."@aws-sdk/middleware-expect-continue-3.40.0"
+ sources."@aws-sdk/middleware-header-default-3.40.0"
+ sources."@aws-sdk/middleware-host-header-3.40.0"
+ sources."@aws-sdk/middleware-location-constraint-3.40.0"
+ sources."@aws-sdk/middleware-logger-3.40.0"
+ (sources."@aws-sdk/middleware-retry-3.40.0" // {
+ dependencies = [
+ sources."uuid-8.3.2"
+ ];
+ })
+ sources."@aws-sdk/middleware-sdk-s3-3.45.0"
+ sources."@aws-sdk/middleware-sdk-sts-3.45.0"
+ sources."@aws-sdk/middleware-serde-3.40.0"
+ sources."@aws-sdk/middleware-signing-3.45.0"
+ sources."@aws-sdk/middleware-ssec-3.40.0"
+ sources."@aws-sdk/middleware-stack-3.40.0"
+ sources."@aws-sdk/middleware-user-agent-3.40.0"
+ sources."@aws-sdk/node-config-provider-3.40.0"
+ sources."@aws-sdk/node-http-handler-3.40.0"
+ sources."@aws-sdk/property-provider-3.40.0"
+ sources."@aws-sdk/protocol-http-3.40.0"
+ sources."@aws-sdk/querystring-builder-3.40.0"
+ sources."@aws-sdk/querystring-parser-3.40.0"
+ sources."@aws-sdk/s3-request-presigner-3.45.0"
+ sources."@aws-sdk/service-error-classification-3.40.0"
+ sources."@aws-sdk/shared-ini-file-loader-3.37.0"
+ sources."@aws-sdk/signature-v4-3.45.0"
+ sources."@aws-sdk/smithy-client-3.41.0"
+ sources."@aws-sdk/types-3.40.0"
+ sources."@aws-sdk/url-parser-3.40.0"
+ sources."@aws-sdk/util-arn-parser-3.37.0"
+ sources."@aws-sdk/util-base64-browser-3.37.0"
+ sources."@aws-sdk/util-base64-node-3.37.0"
+ sources."@aws-sdk/util-body-length-browser-3.37.0"
+ sources."@aws-sdk/util-body-length-node-3.37.0"
+ sources."@aws-sdk/util-buffer-from-3.37.0"
+ sources."@aws-sdk/util-config-provider-3.40.0"
+ sources."@aws-sdk/util-create-request-3.41.0"
+ sources."@aws-sdk/util-credentials-3.37.0"
+ sources."@aws-sdk/util-format-url-3.40.0"
+ sources."@aws-sdk/util-hex-encoding-3.37.0"
+ sources."@aws-sdk/util-locate-window-3.37.0"
+ sources."@aws-sdk/util-uri-escape-3.37.0"
+ sources."@aws-sdk/util-user-agent-browser-3.40.0"
+ sources."@aws-sdk/util-user-agent-node-3.40.0"
+ sources."@aws-sdk/util-utf8-browser-3.37.0"
+ sources."@aws-sdk/util-utf8-node-3.37.0"
+ sources."@aws-sdk/util-waiter-3.40.0"
+ sources."@aws-sdk/xml-builder-3.37.0"
sources."@braintree/sanitize-url-3.1.0"
sources."@cronvel/get-pixels-3.4.0"
- sources."@joplin/fork-htmlparser2-4.1.38"
- sources."@joplin/fork-sax-1.2.42"
- sources."@joplin/lib-2.6.2"
- (sources."@joplin/renderer-2.6.2" // {
+ sources."@joplin/fork-htmlparser2-4.1.39"
+ sources."@joplin/fork-sax-1.2.43"
+ (sources."@joplin/htmlpack-2.6.1" // {
+ dependencies = [
+ sources."fs-extra-10.0.0"
+ ];
+ })
+ sources."@joplin/lib-2.6.3"
+ (sources."@joplin/renderer-2.6.3" // {
dependencies = [
sources."fs-extra-8.1.0"
sources."jsonfile-4.0.0"
+ sources."universalify-0.1.2"
sources."uslug-git+https://github.com/laurent22/uslug.git#emoji-support"
];
})
- (sources."@joplin/turndown-4.0.60" // {
+ (sources."@joplin/turndown-4.0.61" // {
dependencies = [
sources."css-2.2.4"
];
})
- sources."@joplin/turndown-plugin-gfm-1.0.42"
+ sources."@joplin/turndown-plugin-gfm-1.0.43"
sources."abab-2.0.5"
sources."abbrev-1.1.1"
sources."acorn-7.4.1"
@@ -100806,7 +101560,7 @@ in
sources."async-mutex-0.1.4"
sources."asynckit-0.4.0"
sources."atob-2.1.2"
- (sources."aws-sdk-2.1046.0" // {
+ (sources."aws-sdk-2.1048.0" // {
dependencies = [
sources."sax-1.2.1"
sources."uuid-3.3.2"
@@ -100829,6 +101583,7 @@ in
];
})
sources."block-stream-0.0.9"
+ sources."bowser-2.11.0"
sources."brace-expansion-1.1.11"
sources."braces-3.0.2"
sources."browser-process-hrtime-1.0.0"
@@ -100947,6 +101702,7 @@ in
})
sources."dashdash-1.14.1"
sources."data-urls-1.1.0"
+ sources."datauri-4.1.0"
sources."debug-0.7.4"
sources."decode-uri-component-0.2.0"
sources."decompress-response-4.2.1"
@@ -101003,9 +101759,9 @@ in
sources."fast-deep-equal-3.1.3"
sources."fast-json-stable-stringify-2.1.0"
sources."fast-levenshtein-2.0.6"
+ sources."fast-xml-parser-3.19.0"
sources."fault-1.0.4"
sources."file-type-10.11.0"
- sources."file-uri-to-path-1.0.0"
sources."fill-range-7.0.1"
sources."find-up-2.1.0"
sources."follow-redirects-1.14.6"
@@ -101019,6 +101775,7 @@ in
(sources."fs-extra-5.0.0" // {
dependencies = [
sources."jsonfile-4.0.0"
+ sources."universalify-0.1.2"
];
})
sources."fs-minipass-1.2.7"
@@ -101057,8 +101814,10 @@ in
(sources."image-data-uri-2.0.1" // {
dependencies = [
sources."fs-extra-0.26.7"
+ sources."jsonfile-2.4.0"
];
})
+ sources."image-size-1.0.0"
sources."image-type-3.1.0"
sources."immer-7.0.15"
sources."inflight-1.0.6"
@@ -101126,7 +101885,7 @@ in
sources."json-schema-0.4.0"
sources."json-schema-traverse-0.4.1"
sources."json-stringify-safe-5.0.1"
- sources."jsonfile-2.4.0"
+ sources."jsonfile-6.1.0"
sources."jsprim-1.4.2"
(sources."katex-0.13.24" // {
dependencies = [
@@ -101185,9 +101944,10 @@ in
sources."md5-2.3.0"
sources."md5-file-4.0.0"
sources."mdurl-1.0.1"
- sources."mermaid-8.13.6"
+ sources."mermaid-8.13.8"
sources."mime-db-1.51.0"
sources."mime-types-2.1.34"
+ sources."mimer-2.0.2"
sources."mimic-response-2.1.0"
sources."minimatch-3.0.4"
sources."minimist-1.2.5"
@@ -101294,6 +102054,7 @@ in
sources."query-string-4.3.4"
sources."querystring-0.2.0"
sources."querystringify-2.2.0"
+ sources."queue-6.0.2"
sources."random-bytes-1.0.0"
sources."rc-1.2.8"
sources."re-reselect-4.0.0"
@@ -101428,6 +102189,7 @@ in
sources."tough-cookie-3.0.1"
sources."tr46-1.0.1"
sources."tree-kit-0.7.4"
+ sources."tslib-2.3.1"
sources."tunnel-agent-0.6.0"
sources."tweetnacl-0.14.5"
sources."type-check-0.3.2"
@@ -101442,7 +102204,7 @@ in
sources."uid-safe-2.1.5"
sources."unc-path-regex-0.1.2"
sources."uniq-1.0.1"
- sources."universalify-0.1.2"
+ sources."universalify-2.0.0"
sources."unorm-1.6.0"
sources."unpack-string-0.0.2"
sources."upper-case-1.1.3"
@@ -101453,7 +102215,7 @@ in
sources."punycode-1.3.2"
];
})
- sources."url-parse-1.5.3"
+ sources."url-parse-1.5.4"
sources."uslug-git+https://github.com/laurent22/uslug.git#emoji-support"
sources."util-deprecate-1.0.2"
sources."uuid-3.4.0"
@@ -101567,7 +102329,7 @@ in
sha512 = "sxKt7h0vzCd+3Y81Ey2qinupL6DpRSZJclS04ugHDNmRUXGzqicMJ6iwayhSA0S0DwwX30c5ozyUthr1QKF6uw==";
};
dependencies = [
- sources."@babel/parser-7.16.6"
+ sources."@babel/parser-7.16.7"
sources."argparse-1.0.10"
sources."bluebird-3.7.2"
sources."catharsis-0.9.0"
@@ -101604,10 +102366,10 @@ in
jshint = nodeEnv.buildNodePackage {
name = "jshint";
packageName = "jshint";
- version = "2.13.1";
+ version = "2.13.2";
src = fetchurl {
- url = "https://registry.npmjs.org/jshint/-/jshint-2.13.1.tgz";
- sha512 = "vymzfR3OysF5P774x6zYv0bD4EpH6NWRxpq54wO9mA9RuY49yb1teKSICkLx2Ryx+mfzlVVNNbTBtsRtg78t7g==";
+ url = "https://registry.npmjs.org/jshint/-/jshint-2.13.2.tgz";
+ sha512 = "xt9lIEqJ0B/48GwIuFA4sw3PPQvmFo/fVCe9Yim9oU2UdX437lnkrBrHEHF/R0HS64WgLFXUvSxrHb0UOrYhAA==";
};
dependencies = [
sources."balanced-match-1.0.2"
@@ -101674,23 +102436,44 @@ in
json-diff = nodeEnv.buildNodePackage {
name = "json-diff";
packageName = "json-diff";
- version = "0.5.4";
+ version = "0.7.1";
src = fetchurl {
- url = "https://registry.npmjs.org/json-diff/-/json-diff-0.5.4.tgz";
- sha512 = "q5Xmx9QXNOzOzIlMoYtLrLiu4Jl/Ce2bn0CNcv54PhyH89CI4GWlGVDye8ei2Ijt9R3U+vsWPsXpLUNob8bs8Q==";
+ url = "https://registry.npmjs.org/json-diff/-/json-diff-0.7.1.tgz";
+ sha512 = "/LxjcgeDIZwFB1HHTShKAYs2NaxAgwUQjXKvrFLDvw3KqvbffFmy5ZeeamxoSLgQG89tRs9+CFKiR3lJAPPhDw==";
};
dependencies = [
- sources."cli-color-0.1.7"
+ sources."cli-color-2.0.1"
+ sources."d-1.0.1"
sources."difflib-0.2.4"
- sources."dreamopt-0.6.0"
- sources."es5-ext-0.8.2"
+ sources."dreamopt-0.8.0"
+ 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."event-emitter-0.3.5"
+ (sources."ext-1.6.0" // {
+ dependencies = [
+ sources."type-2.5.0"
+ ];
+ })
sources."heap-0.2.7"
+ sources."is-promise-2.2.2"
+ sources."lru-queue-0.1.0"
+ (sources."memoizee-0.4.15" // {
+ dependencies = [
+ sources."next-tick-1.1.0"
+ ];
+ })
+ sources."next-tick-1.0.0"
+ sources."timers-ext-0.1.7"
+ sources."type-1.2.0"
sources."wordwrap-1.0.0"
];
buildInputs = globalBuildInputs;
meta = {
description = "JSON diff";
homepage = "https://github.com/andreyvit/json-diff";
+ license = "MIT";
};
production = true;
bypassCache = true;
@@ -101734,7 +102517,7 @@ in
sources."mime-types-2.1.34"
sources."ms-2.1.3"
sources."native-promise-only-0.8.1"
- sources."object-inspect-1.11.1"
+ sources."object-inspect-1.12.0"
sources."path-loader-1.0.10"
sources."process-nextick-args-2.0.1"
sources."punycode-2.1.1"
@@ -101801,9 +102584,13 @@ in
})
sources."configstore-5.0.1"
sources."connect-pause-0.1.1"
- sources."content-disposition-0.5.3"
+ (sources."content-disposition-0.5.4" // {
+ dependencies = [
+ sources."safe-buffer-5.2.1"
+ ];
+ })
sources."content-type-1.0.4"
- sources."cookie-0.4.0"
+ sources."cookie-0.4.1"
sources."cookie-signature-1.0.6"
sources."cors-2.8.5"
sources."crypto-random-string-2.0.0"
@@ -101824,16 +102611,9 @@ in
sources."escape-goat-2.1.1"
sources."escape-html-1.0.3"
sources."etag-1.8.1"
- (sources."express-4.17.1" // {
+ (sources."express-4.17.2" // {
dependencies = [
- sources."body-parser-1.19.0"
- sources."bytes-3.1.0"
- sources."http-errors-1.7.2"
- sources."inherits-2.0.3"
- sources."qs-6.7.0"
- sources."raw-body-2.4.0"
- sources."setprototypeof-1.1.1"
- sources."toidentifier-1.0.0"
+ sources."safe-buffer-5.2.1"
];
})
(sources."express-urlrewrite-1.4.0" // {
@@ -101946,15 +102726,12 @@ in
sources."semver-6.3.0"
];
})
- (sources."send-0.17.1" // {
+ (sources."send-0.17.2" // {
dependencies = [
- sources."http-errors-1.7.3"
- sources."ms-2.1.1"
- sources."setprototypeof-1.1.1"
- sources."toidentifier-1.0.0"
+ sources."ms-2.1.3"
];
})
- sources."serve-static-1.14.1"
+ sources."serve-static-1.14.2"
sources."server-destroy-1.0.1"
sources."setprototypeof-1.2.0"
sources."signal-exit-3.0.6"
@@ -101982,7 +102759,7 @@ in
sources."xdg-basedir-4.0.0"
sources."y18n-5.0.8"
sources."yallist-4.0.0"
- sources."yargs-17.3.0"
+ sources."yargs-17.3.1"
sources."yargs-parser-21.0.0"
];
buildInputs = globalBuildInputs;
@@ -102110,9 +102887,13 @@ in
];
})
sources."connect-pause-0.1.1"
- sources."content-disposition-0.5.3"
+ (sources."content-disposition-0.5.4" // {
+ dependencies = [
+ sources."safe-buffer-5.2.1"
+ ];
+ })
sources."content-type-1.0.4"
- sources."cookie-0.4.0"
+ sources."cookie-0.4.1"
sources."cookie-signature-1.0.6"
sources."copy-descriptor-0.1.1"
sources."core-util-is-1.0.3"
@@ -102143,16 +102924,9 @@ in
sources."etag-1.8.1"
sources."expand-brackets-0.1.5"
sources."expand-range-1.8.2"
- (sources."express-4.17.1" // {
+ (sources."express-4.17.2" // {
dependencies = [
- sources."body-parser-1.19.0"
- sources."bytes-3.1.0"
- sources."http-errors-1.7.2"
- sources."inherits-2.0.3"
- sources."qs-6.7.0"
- sources."raw-body-2.4.0"
- sources."setprototypeof-1.1.1"
- sources."toidentifier-1.0.0"
+ sources."safe-buffer-5.2.1"
];
})
sources."extend-3.0.2"
@@ -102457,15 +103231,12 @@ in
sources."safer-buffer-2.1.2"
sources."semver-5.7.1"
sources."semver-diff-2.1.0"
- (sources."send-0.17.1" // {
+ (sources."send-0.17.2" // {
dependencies = [
- sources."http-errors-1.7.3"
- sources."ms-2.1.1"
- sources."setprototypeof-1.1.1"
- sources."toidentifier-1.0.0"
+ sources."ms-2.1.3"
];
})
- sources."serve-static-1.14.1"
+ sources."serve-static-1.14.2"
sources."server-destroy-1.0.1"
sources."set-blocking-2.0.0"
(sources."set-value-2.0.1" // {
@@ -102613,7 +103384,7 @@ in
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
- sources."@oclif/command-1.8.15"
+ sources."@oclif/command-1.8.16"
sources."@oclif/config-1.18.2"
sources."@oclif/errors-1.3.5"
(sources."@oclif/help-1.0.1" // {
@@ -102629,7 +103400,7 @@ in
];
})
sources."@oclif/screen-1.0.4"
- (sources."@putdotio/api-client-8.19.0" // {
+ (sources."@putdotio/api-client-8.20.0" // {
dependencies = [
sources."axios-0.21.4"
];
@@ -102723,7 +103494,7 @@ in
sources."has-symbols-1.0.2"
sources."hyperlinker-1.0.0"
sources."iconv-lite-0.4.24"
- sources."ignore-5.1.9"
+ sources."ignore-5.2.0"
sources."imurmurhash-0.1.4"
sources."indent-string-4.0.0"
sources."inquirer-7.3.3"
@@ -102761,7 +103532,7 @@ in
sources."next-tick-1.0.0"
sources."nice-try-1.0.5"
sources."node-downloader-helper-1.0.19"
- sources."object-inspect-1.11.1"
+ sources."object-inspect-1.12.0"
sources."object-treeify-1.1.33"
sources."onetime-5.1.2"
sources."os-tmpdir-1.0.2"
@@ -102863,7 +103634,7 @@ in
sources."@types/component-emitter-1.2.11"
sources."@types/cookie-0.4.1"
sources."@types/cors-2.8.12"
- sources."@types/node-17.0.0"
+ sources."@types/node-17.0.6"
sources."accepts-1.3.7"
sources."ansi-regex-5.0.1"
sources."ansi-styles-4.3.0"
@@ -103023,42 +103794,42 @@ in
sha512 = "ffn0F9o3Yy6E9UFAS/vzOpsYxbVwk/pbSWrS3YPIZs+PtUv6zmwrkZ+71xSSb6tHBkJw5k93vOdkbo4cViFdFA==";
};
dependencies = [
- sources."@babel/cli-7.16.0"
- sources."@babel/code-frame-7.16.0"
+ sources."@babel/cli-7.16.7"
+ sources."@babel/code-frame-7.16.7"
sources."@babel/compat-data-7.16.4"
- (sources."@babel/core-7.16.5" // {
+ (sources."@babel/core-7.16.7" // {
dependencies = [
sources."semver-6.3.0"
];
})
- sources."@babel/generator-7.16.5"
- sources."@babel/helper-annotate-as-pure-7.16.0"
- (sources."@babel/helper-compilation-targets-7.16.3" // {
+ sources."@babel/generator-7.16.7"
+ sources."@babel/helper-annotate-as-pure-7.16.7"
+ (sources."@babel/helper-compilation-targets-7.16.7" // {
dependencies = [
sources."semver-6.3.0"
];
})
- sources."@babel/helper-environment-visitor-7.16.5"
- sources."@babel/helper-function-name-7.16.0"
- sources."@babel/helper-get-function-arity-7.16.0"
- sources."@babel/helper-hoist-variables-7.16.0"
- sources."@babel/helper-module-imports-7.16.0"
- sources."@babel/helper-module-transforms-7.16.5"
- sources."@babel/helper-plugin-utils-7.16.5"
- sources."@babel/helper-simple-access-7.16.0"
- sources."@babel/helper-split-export-declaration-7.16.0"
- sources."@babel/helper-validator-identifier-7.15.7"
- sources."@babel/helper-validator-option-7.14.5"
- sources."@babel/helpers-7.16.5"
- sources."@babel/highlight-7.16.0"
- sources."@babel/node-7.16.5"
- sources."@babel/parser-7.16.6"
- sources."@babel/plugin-syntax-jsx-7.16.5"
- sources."@babel/plugin-transform-react-jsx-7.16.5"
- sources."@babel/register-7.16.5"
- sources."@babel/template-7.16.0"
- sources."@babel/traverse-7.16.5"
- sources."@babel/types-7.16.0"
+ sources."@babel/helper-environment-visitor-7.16.7"
+ sources."@babel/helper-function-name-7.16.7"
+ sources."@babel/helper-get-function-arity-7.16.7"
+ sources."@babel/helper-hoist-variables-7.16.7"
+ sources."@babel/helper-module-imports-7.16.7"
+ sources."@babel/helper-module-transforms-7.16.7"
+ sources."@babel/helper-plugin-utils-7.16.7"
+ sources."@babel/helper-simple-access-7.16.7"
+ sources."@babel/helper-split-export-declaration-7.16.7"
+ sources."@babel/helper-validator-identifier-7.16.7"
+ sources."@babel/helper-validator-option-7.16.7"
+ sources."@babel/helpers-7.16.7"
+ sources."@babel/highlight-7.16.7"
+ sources."@babel/node-7.16.7"
+ sources."@babel/parser-7.16.7"
+ sources."@babel/plugin-syntax-jsx-7.16.7"
+ sources."@babel/plugin-transform-react-jsx-7.16.7"
+ sources."@babel/register-7.16.7"
+ sources."@babel/template-7.16.7"
+ sources."@babel/traverse-7.16.7"
+ sources."@babel/types-7.16.7"
sources."@tootallnate/once-1.1.2"
sources."@xmpp/base64-0.12.1"
sources."@xmpp/client-0.12.1"
@@ -103089,7 +103860,7 @@ in
sources."@xmpp/xml-0.12.1"
sources."abab-2.0.5"
sources."accepts-1.3.7"
- sources."acorn-8.6.0"
+ sources."acorn-8.7.0"
(sources."acorn-globals-6.0.0" // {
dependencies = [
sources."acorn-7.4.1"
@@ -103110,7 +103881,7 @@ in
sources."bent-7.3.12"
sources."bitwise-xor-0.0.0"
sources."bn.js-4.12.0"
- (sources."body-parser-1.19.0" // {
+ (sources."body-parser-1.19.1" // {
dependencies = [
sources."debug-2.6.9"
sources."ms-2.0.0"
@@ -103121,10 +103892,10 @@ in
sources."browser-process-hrtime-1.0.0"
sources."browserslist-4.19.1"
sources."buffer-from-1.1.2"
- sources."bytes-3.1.0"
+ sources."bytes-3.1.1"
sources."bytesish-0.4.4"
sources."call-bind-1.0.2"
- sources."caniuse-lite-1.0.30001287"
+ sources."caniuse-lite-1.0.30001294"
sources."caseless-0.12.0"
sources."chalk-2.4.2"
sources."chardet-1.4.0"
@@ -103137,12 +103908,16 @@ in
sources."commander-4.1.1"
sources."commondir-1.0.1"
sources."concat-map-0.0.1"
- sources."content-disposition-0.5.3"
+ (sources."content-disposition-0.5.4" // {
+ dependencies = [
+ sources."safe-buffer-5.2.1"
+ ];
+ })
sources."content-type-1.0.4"
sources."convert-source-map-1.8.0"
- sources."cookie-0.4.0"
+ sources."cookie-0.4.1"
sources."cookie-signature-1.0.6"
- sources."core-js-3.20.0"
+ sources."core-js-3.20.2"
sources."cors-2.8.5"
sources."create-hash-1.2.0"
sources."create-hmac-1.1.7"
@@ -103175,7 +103950,7 @@ in
})
sources."dotenv-8.6.0"
sources."ee-first-1.1.1"
- sources."electron-to-chromium-1.4.21"
+ sources."electron-to-chromium-1.4.31"
sources."emoji-regex-8.0.0"
sources."encodeurl-1.0.2"
sources."enquirer-2.3.6"
@@ -103194,10 +103969,11 @@ in
sources."esutils-2.0.3"
sources."etag-1.8.1"
sources."events-3.3.0"
- (sources."express-4.17.1" // {
+ (sources."express-4.17.2" // {
dependencies = [
sources."debug-2.6.9"
sources."ms-2.0.0"
+ sources."safe-buffer-5.2.1"
];
})
sources."express-validator-6.14.0"
@@ -103236,11 +104012,7 @@ in
})
sources."homedir-polyfill-1.0.3"
sources."html-encoding-sniffer-2.0.1"
- (sources."http-errors-1.7.2" // {
- dependencies = [
- sources."inherits-2.0.3"
- ];
- })
+ sources."http-errors-1.8.1"
sources."http-proxy-agent-4.0.1"
sources."https-proxy-agent-5.0.0"
sources."iconv-lite-0.4.24"
@@ -103309,7 +104081,7 @@ in
sources."node-releases-2.0.1"
sources."nwsapi-2.2.0"
sources."object-assign-4.1.1"
- sources."object-inspect-1.11.1"
+ sources."object-inspect-1.12.0"
sources."object-keys-1.1.1"
sources."object.assign-4.1.2"
sources."object.getownpropertydescriptors-2.1.3"
@@ -103334,11 +104106,11 @@ in
sources."proxy-addr-2.0.7"
sources."psl-1.8.0"
sources."punycode-2.1.1"
- sources."qs-6.7.0"
+ sources."qs-6.9.6"
sources."query-string-6.14.1"
sources."randombytes-2.1.0"
sources."range-parser-1.2.1"
- sources."raw-body-2.4.0"
+ sources."raw-body-2.4.2"
sources."readable-stream-3.6.0"
sources."regenerator-runtime-0.13.9"
sources."require-directory-2.1.1"
@@ -103351,18 +104123,18 @@ in
sources."saslmechanisms-0.1.1"
sources."saxes-5.0.1"
sources."semver-5.7.1"
- (sources."send-0.17.1" // {
+ (sources."send-0.17.2" // {
dependencies = [
(sources."debug-2.6.9" // {
dependencies = [
sources."ms-2.0.0"
];
})
- sources."ms-2.1.1"
+ sources."ms-2.1.3"
];
})
- sources."serve-static-1.14.1"
- sources."setprototypeof-1.1.1"
+ sources."serve-static-1.14.2"
+ sources."setprototypeof-1.2.0"
sources."sha.js-2.4.11"
sources."shallow-clone-3.0.1"
sources."side-channel-1.0.4"
@@ -103389,7 +104161,7 @@ in
sources."supports-color-5.5.0"
sources."symbol-tree-3.2.4"
sources."to-fast-properties-2.0.0"
- sources."toidentifier-1.0.0"
+ sources."toidentifier-1.0.1"
sources."tough-cookie-4.0.0"
sources."tr46-0.0.3"
sources."type-check-0.3.2"
@@ -103420,7 +104192,7 @@ in
})
sources."wrappy-1.0.2"
sources."write-file-atomic-1.3.4"
- sources."ws-8.3.0"
+ sources."ws-8.4.0"
sources."xml-name-validator-3.0.0"
sources."xmlchars-2.2.0"
sources."y18n-5.0.8"
@@ -104045,9 +104817,9 @@ in
sha512 = "DD/i1znurfOmNJb0OBw66NmNqiM8kF6uIrzrJ0wGE3VNdzeOhz9ziWLYiRaZDGGwgbcjOo6eIfcx9O5Qynz+kg==";
};
dependencies = [
- sources."@babel/code-frame-7.16.0"
- sources."@babel/helper-validator-identifier-7.15.7"
- (sources."@babel/highlight-7.16.0" // {
+ sources."@babel/code-frame-7.16.7"
+ sources."@babel/helper-validator-identifier-7.16.7"
+ (sources."@babel/highlight-7.16.7" // {
dependencies = [
sources."ansi-styles-3.2.1"
sources."chalk-2.4.2"
@@ -104194,7 +104966,7 @@ in
sources."abbrev-1.1.1"
sources."add-stream-1.0.0"
sources."agent-base-6.0.2"
- sources."agentkeepalive-4.1.4"
+ sources."agentkeepalive-4.2.0"
sources."aggregate-error-3.1.0"
sources."ajv-6.12.6"
(sources."ansi-escapes-4.3.2" // {
@@ -104275,13 +105047,13 @@ in
];
})
sources."conventional-changelog-preset-loader-2.3.4"
- (sources."conventional-changelog-writer-5.0.0" // {
+ (sources."conventional-changelog-writer-5.0.1" // {
dependencies = [
sources."semver-6.3.0"
];
})
sources."conventional-commits-filter-2.0.7"
- sources."conventional-commits-parser-3.2.3"
+ sources."conventional-commits-parser-3.2.4"
sources."conventional-recommended-bump-6.1.0"
sources."core-util-is-1.0.2"
sources."cosmiconfig-7.0.1"
@@ -104365,7 +105137,7 @@ in
sources."get-stream-6.0.1"
sources."get-symbol-description-1.0.0"
sources."getpass-0.1.7"
- sources."git-raw-commits-2.0.10"
+ sources."git-raw-commits-2.0.11"
(sources."git-remote-origin-url-2.0.0" // {
dependencies = [
sources."pify-2.3.0"
@@ -104401,7 +105173,7 @@ in
sources."human-signals-2.1.0"
sources."humanize-ms-1.2.1"
sources."iconv-lite-0.6.3"
- sources."ignore-5.1.9"
+ sources."ignore-5.2.0"
sources."ignore-walk-3.0.4"
(sources."import-fresh-3.3.0" // {
dependencies = [
@@ -104590,7 +105362,7 @@ in
sources."number-is-nan-1.0.1"
sources."oauth-sign-0.9.0"
sources."object-assign-4.1.1"
- sources."object-inspect-1.11.1"
+ sources."object-inspect-1.12.0"
sources."object-keys-1.1.1"
sources."object.assign-4.1.2"
sources."object.getownpropertydescriptors-2.1.3"
@@ -105274,9 +106046,13 @@ in
sources."component-bind-1.0.0"
sources."component-emitter-1.3.0"
sources."component-inherit-0.0.3"
- sources."content-disposition-0.5.3"
+ (sources."content-disposition-0.5.4" // {
+ dependencies = [
+ sources."safe-buffer-5.2.1"
+ ];
+ })
sources."content-type-1.0.4"
- sources."cookie-0.4.0"
+ sources."cookie-0.4.1"
sources."cookie-signature-1.0.6"
sources."copy-descriptor-0.1.1"
sources."core-util-is-1.0.3"
@@ -105296,7 +106072,6 @@ in
sources."encodeurl-1.0.2"
(sources."engine.io-3.5.0" // {
dependencies = [
- sources."cookie-0.4.1"
sources."debug-4.1.1"
sources."ms-2.1.3"
];
@@ -105312,16 +106087,9 @@ in
sources."etag-1.8.1"
sources."expand-brackets-0.1.5"
sources."expand-range-1.8.2"
- (sources."express-4.17.1" // {
+ (sources."express-4.17.2" // {
dependencies = [
- sources."body-parser-1.19.0"
- sources."bytes-3.1.0"
- sources."http-errors-1.7.2"
- sources."inherits-2.0.3"
- sources."qs-6.7.0"
- sources."raw-body-2.4.0"
- sources."setprototypeof-1.1.1"
- sources."toidentifier-1.0.0"
+ sources."safe-buffer-5.2.1"
];
})
sources."extend-3.0.2"
@@ -105574,15 +106342,12 @@ in
sources."safe-buffer-5.1.2"
sources."safe-regex-1.1.0"
sources."safer-buffer-2.1.2"
- (sources."send-0.17.1" // {
+ (sources."send-0.17.2" // {
dependencies = [
- sources."http-errors-1.7.3"
- sources."ms-2.1.1"
- sources."setprototypeof-1.1.1"
- sources."toidentifier-1.0.0"
+ sources."ms-2.1.3"
];
})
- sources."serve-static-1.14.1"
+ sources."serve-static-1.14.2"
(sources."set-value-2.0.1" // {
dependencies = [
sources."extend-shallow-2.0.1"
@@ -105738,59 +106503,59 @@ in
version = "1.10.1";
src = ../interpreters/clojurescript/lumo;
dependencies = [
- sources."@babel/code-frame-7.16.0"
+ sources."@babel/code-frame-7.16.7"
sources."@babel/compat-data-7.16.4"
- sources."@babel/core-7.16.5"
- sources."@babel/generator-7.16.5"
- sources."@babel/helper-annotate-as-pure-7.16.0"
- sources."@babel/helper-builder-binary-assignment-operator-visitor-7.16.5"
- sources."@babel/helper-compilation-targets-7.16.3"
- sources."@babel/helper-create-class-features-plugin-7.16.5"
- sources."@babel/helper-create-regexp-features-plugin-7.16.0"
+ sources."@babel/core-7.16.7"
+ sources."@babel/generator-7.16.7"
+ sources."@babel/helper-annotate-as-pure-7.16.7"
+ sources."@babel/helper-builder-binary-assignment-operator-visitor-7.16.7"
+ sources."@babel/helper-compilation-targets-7.16.7"
+ sources."@babel/helper-create-class-features-plugin-7.16.7"
+ sources."@babel/helper-create-regexp-features-plugin-7.16.7"
sources."@babel/helper-define-polyfill-provider-0.3.0"
- sources."@babel/helper-environment-visitor-7.16.5"
- sources."@babel/helper-explode-assignable-expression-7.16.0"
- sources."@babel/helper-function-name-7.16.0"
- sources."@babel/helper-get-function-arity-7.16.0"
- sources."@babel/helper-hoist-variables-7.16.0"
- sources."@babel/helper-member-expression-to-functions-7.16.5"
- sources."@babel/helper-module-imports-7.16.0"
- sources."@babel/helper-module-transforms-7.16.5"
- sources."@babel/helper-optimise-call-expression-7.16.0"
- sources."@babel/helper-plugin-utils-7.16.5"
- sources."@babel/helper-remap-async-to-generator-7.16.5"
- sources."@babel/helper-replace-supers-7.16.5"
- sources."@babel/helper-simple-access-7.16.0"
+ sources."@babel/helper-environment-visitor-7.16.7"
+ sources."@babel/helper-explode-assignable-expression-7.16.7"
+ sources."@babel/helper-function-name-7.16.7"
+ sources."@babel/helper-get-function-arity-7.16.7"
+ sources."@babel/helper-hoist-variables-7.16.7"
+ sources."@babel/helper-member-expression-to-functions-7.16.7"
+ sources."@babel/helper-module-imports-7.16.7"
+ sources."@babel/helper-module-transforms-7.16.7"
+ sources."@babel/helper-optimise-call-expression-7.16.7"
+ sources."@babel/helper-plugin-utils-7.16.7"
+ sources."@babel/helper-remap-async-to-generator-7.16.7"
+ sources."@babel/helper-replace-supers-7.16.7"
+ sources."@babel/helper-simple-access-7.16.7"
sources."@babel/helper-skip-transparent-expression-wrappers-7.16.0"
- sources."@babel/helper-split-export-declaration-7.16.0"
- sources."@babel/helper-validator-identifier-7.15.7"
- sources."@babel/helper-validator-option-7.14.5"
- sources."@babel/helper-wrap-function-7.16.5"
- sources."@babel/helpers-7.16.5"
- (sources."@babel/highlight-7.16.0" // {
+ sources."@babel/helper-split-export-declaration-7.16.7"
+ sources."@babel/helper-validator-identifier-7.16.7"
+ sources."@babel/helper-validator-option-7.16.7"
+ sources."@babel/helper-wrap-function-7.16.7"
+ sources."@babel/helpers-7.16.7"
+ (sources."@babel/highlight-7.16.7" // {
dependencies = [
sources."chalk-2.4.2"
];
})
- sources."@babel/parser-7.16.6"
- sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.2"
- sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.0"
+ sources."@babel/parser-7.16.7"
+ sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.7"
+ sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.7"
sources."@babel/plugin-external-helpers-7.8.3"
- sources."@babel/plugin-proposal-async-generator-functions-7.16.5"
- sources."@babel/plugin-proposal-class-properties-7.16.5"
- sources."@babel/plugin-proposal-class-static-block-7.16.5"
- sources."@babel/plugin-proposal-dynamic-import-7.16.5"
- sources."@babel/plugin-proposal-export-namespace-from-7.16.5"
- sources."@babel/plugin-proposal-json-strings-7.16.5"
- sources."@babel/plugin-proposal-logical-assignment-operators-7.16.5"
- sources."@babel/plugin-proposal-nullish-coalescing-operator-7.16.5"
- sources."@babel/plugin-proposal-numeric-separator-7.16.5"
- sources."@babel/plugin-proposal-object-rest-spread-7.16.5"
- sources."@babel/plugin-proposal-optional-catch-binding-7.16.5"
- sources."@babel/plugin-proposal-optional-chaining-7.16.5"
- sources."@babel/plugin-proposal-private-methods-7.16.5"
- sources."@babel/plugin-proposal-private-property-in-object-7.16.5"
- sources."@babel/plugin-proposal-unicode-property-regex-7.16.5"
+ sources."@babel/plugin-proposal-async-generator-functions-7.16.7"
+ sources."@babel/plugin-proposal-class-properties-7.16.7"
+ sources."@babel/plugin-proposal-class-static-block-7.16.7"
+ sources."@babel/plugin-proposal-dynamic-import-7.16.7"
+ sources."@babel/plugin-proposal-export-namespace-from-7.16.7"
+ sources."@babel/plugin-proposal-json-strings-7.16.7"
+ sources."@babel/plugin-proposal-logical-assignment-operators-7.16.7"
+ sources."@babel/plugin-proposal-nullish-coalescing-operator-7.16.7"
+ sources."@babel/plugin-proposal-numeric-separator-7.16.7"
+ sources."@babel/plugin-proposal-object-rest-spread-7.16.7"
+ sources."@babel/plugin-proposal-optional-catch-binding-7.16.7"
+ sources."@babel/plugin-proposal-optional-chaining-7.16.7"
+ sources."@babel/plugin-proposal-private-methods-7.16.7"
+ sources."@babel/plugin-proposal-private-property-in-object-7.16.7"
+ sources."@babel/plugin-proposal-unicode-property-regex-7.16.7"
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"
@@ -105807,46 +106572,46 @@ in
sources."@babel/plugin-syntax-optional-chaining-7.8.3"
sources."@babel/plugin-syntax-private-property-in-object-7.14.5"
sources."@babel/plugin-syntax-top-level-await-7.14.5"
- sources."@babel/plugin-transform-arrow-functions-7.16.5"
- sources."@babel/plugin-transform-async-to-generator-7.16.5"
- sources."@babel/plugin-transform-block-scoped-functions-7.16.5"
- sources."@babel/plugin-transform-block-scoping-7.16.5"
- sources."@babel/plugin-transform-classes-7.16.5"
- sources."@babel/plugin-transform-computed-properties-7.16.5"
- sources."@babel/plugin-transform-destructuring-7.16.5"
- sources."@babel/plugin-transform-dotall-regex-7.16.5"
- sources."@babel/plugin-transform-duplicate-keys-7.16.5"
- sources."@babel/plugin-transform-exponentiation-operator-7.16.5"
- sources."@babel/plugin-transform-for-of-7.16.5"
- sources."@babel/plugin-transform-function-name-7.16.5"
- sources."@babel/plugin-transform-literals-7.16.5"
- sources."@babel/plugin-transform-member-expression-literals-7.16.5"
- sources."@babel/plugin-transform-modules-amd-7.16.5"
- sources."@babel/plugin-transform-modules-commonjs-7.16.5"
- sources."@babel/plugin-transform-modules-systemjs-7.16.5"
- sources."@babel/plugin-transform-modules-umd-7.16.5"
- sources."@babel/plugin-transform-named-capturing-groups-regex-7.16.5"
- sources."@babel/plugin-transform-new-target-7.16.5"
- sources."@babel/plugin-transform-object-super-7.16.5"
- sources."@babel/plugin-transform-parameters-7.16.5"
- sources."@babel/plugin-transform-property-literals-7.16.5"
- sources."@babel/plugin-transform-regenerator-7.16.5"
- sources."@babel/plugin-transform-reserved-words-7.16.5"
- sources."@babel/plugin-transform-runtime-7.16.5"
- sources."@babel/plugin-transform-shorthand-properties-7.16.5"
- sources."@babel/plugin-transform-spread-7.16.5"
- sources."@babel/plugin-transform-sticky-regex-7.16.5"
- sources."@babel/plugin-transform-template-literals-7.16.5"
- sources."@babel/plugin-transform-typeof-symbol-7.16.5"
- sources."@babel/plugin-transform-unicode-escapes-7.16.5"
- sources."@babel/plugin-transform-unicode-regex-7.16.5"
- sources."@babel/preset-env-7.16.5"
+ sources."@babel/plugin-transform-arrow-functions-7.16.7"
+ sources."@babel/plugin-transform-async-to-generator-7.16.7"
+ sources."@babel/plugin-transform-block-scoped-functions-7.16.7"
+ sources."@babel/plugin-transform-block-scoping-7.16.7"
+ sources."@babel/plugin-transform-classes-7.16.7"
+ sources."@babel/plugin-transform-computed-properties-7.16.7"
+ sources."@babel/plugin-transform-destructuring-7.16.7"
+ sources."@babel/plugin-transform-dotall-regex-7.16.7"
+ sources."@babel/plugin-transform-duplicate-keys-7.16.7"
+ sources."@babel/plugin-transform-exponentiation-operator-7.16.7"
+ sources."@babel/plugin-transform-for-of-7.16.7"
+ sources."@babel/plugin-transform-function-name-7.16.7"
+ sources."@babel/plugin-transform-literals-7.16.7"
+ sources."@babel/plugin-transform-member-expression-literals-7.16.7"
+ sources."@babel/plugin-transform-modules-amd-7.16.7"
+ sources."@babel/plugin-transform-modules-commonjs-7.16.7"
+ sources."@babel/plugin-transform-modules-systemjs-7.16.7"
+ sources."@babel/plugin-transform-modules-umd-7.16.7"
+ sources."@babel/plugin-transform-named-capturing-groups-regex-7.16.7"
+ sources."@babel/plugin-transform-new-target-7.16.7"
+ sources."@babel/plugin-transform-object-super-7.16.7"
+ sources."@babel/plugin-transform-parameters-7.16.7"
+ sources."@babel/plugin-transform-property-literals-7.16.7"
+ sources."@babel/plugin-transform-regenerator-7.16.7"
+ sources."@babel/plugin-transform-reserved-words-7.16.7"
+ sources."@babel/plugin-transform-runtime-7.16.7"
+ sources."@babel/plugin-transform-shorthand-properties-7.16.7"
+ sources."@babel/plugin-transform-spread-7.16.7"
+ sources."@babel/plugin-transform-sticky-regex-7.16.7"
+ sources."@babel/plugin-transform-template-literals-7.16.7"
+ sources."@babel/plugin-transform-typeof-symbol-7.16.7"
+ sources."@babel/plugin-transform-unicode-escapes-7.16.7"
+ sources."@babel/plugin-transform-unicode-regex-7.16.7"
+ sources."@babel/preset-env-7.16.7"
sources."@babel/preset-modules-0.1.5"
sources."@babel/preset-stage-2-7.8.3"
- sources."@babel/runtime-7.16.5"
- sources."@babel/template-7.16.0"
- sources."@babel/traverse-7.16.5"
- sources."@babel/types-7.16.0"
+ sources."@babel/runtime-7.16.7"
+ sources."@babel/template-7.16.7"
+ sources."@babel/traverse-7.16.7"
+ sources."@babel/types-7.16.7"
sources."@cnakazawa/watch-1.0.4"
sources."@comandeer/babel-plugin-banner-5.0.0"
sources."@istanbuljs/load-nyc-config-1.1.0"
@@ -105857,17 +106622,17 @@ in
];
})
sources."@jest/types-25.5.0"
- sources."@types/babel__core-7.1.17"
- sources."@types/babel__generator-7.6.3"
+ sources."@types/babel__core-7.1.18"
+ sources."@types/babel__generator-7.6.4"
sources."@types/babel__template-7.4.1"
sources."@types/babel__traverse-7.14.2"
sources."@types/estree-0.0.50"
sources."@types/graceful-fs-4.1.5"
- sources."@types/istanbul-lib-coverage-2.0.3"
+ sources."@types/istanbul-lib-coverage-2.0.4"
sources."@types/istanbul-lib-report-3.0.0"
sources."@types/istanbul-reports-1.1.2"
sources."@types/json-schema-7.0.9"
- sources."@types/node-17.0.0"
+ sources."@types/node-17.0.6"
sources."@types/normalize-package-data-2.4.1"
sources."@types/resolve-0.0.8"
sources."@types/yargs-15.0.14"
@@ -106040,7 +106805,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.30001287"
+ sources."caniuse-lite-1.0.30001294"
sources."capture-exit-2.0.0"
sources."caseless-0.12.0"
(sources."chalk-3.0.0" // {
@@ -106111,7 +106876,7 @@ in
})
sources."copy-descriptor-0.1.1"
sources."core-js-2.6.12"
- (sources."core-js-compat-3.20.0" // {
+ (sources."core-js-compat-3.20.2" // {
dependencies = [
sources."semver-7.0.0"
];
@@ -106163,7 +106928,7 @@ in
sources."duplexer2-0.1.4"
sources."duplexify-3.7.1"
sources."ecc-jsbn-0.1.2"
- sources."electron-to-chromium-1.4.21"
+ sources."electron-to-chromium-1.4.31"
(sources."elliptic-6.5.4" // {
dependencies = [
sources."bn.js-4.12.0"
@@ -106898,9 +107663,9 @@ in
};
dependencies = [
sources."@types/commander-2.12.2"
- sources."@types/diff-3.5.4"
+ sources."@types/diff-3.5.5"
sources."@types/get-stdin-5.0.1"
- sources."@types/node-17.0.0"
+ sources."@types/node-17.0.6"
sources."commander-2.20.3"
sources."diff-3.5.0"
sources."get-stdin-5.0.1"
@@ -107211,7 +107976,7 @@ in
sources."fill-range-7.0.1"
sources."glob-parent-5.1.2"
sources."globby-11.0.4"
- sources."ignore-5.1.9"
+ sources."ignore-5.2.0"
sources."is-extglob-2.1.1"
sources."is-glob-4.0.3"
sources."is-number-7.0.0"
@@ -107760,14 +108525,14 @@ in
"@mermaid-js/mermaid-cli" = nodeEnv.buildNodePackage {
name = "_at_mermaid-js_slash_mermaid-cli";
packageName = "@mermaid-js/mermaid-cli";
- version = "8.13.5";
+ version = "8.13.7";
src = fetchurl {
- url = "https://registry.npmjs.org/@mermaid-js/mermaid-cli/-/mermaid-cli-8.13.5.tgz";
- sha512 = "QcFi12GO+wOjzQdqLhhPkbRBKx6QhB4azNCA/DH/NROUdAp0iUyOk5W+1xr10ERcANxajWlguO8MwxzTqXzaTw==";
+ url = "https://registry.npmjs.org/@mermaid-js/mermaid-cli/-/mermaid-cli-8.13.7.tgz";
+ sha512 = "+y2kfGHcPOztc+WA0rr7lRsdt/HOFIteUYmICo/dF5OmflbSCAiI7xhV/JbY+AeUUOtwgRtSrjXB1PZlNO3Bxg==";
};
dependencies = [
sources."@braintree/sanitize-url-3.1.0"
- sources."@types/node-17.0.0"
+ sources."@types/node-17.0.6"
sources."@types/yauzl-2.9.2"
sources."agent-base-6.0.2"
sources."ansi-styles-4.3.0"
@@ -107880,7 +108645,7 @@ in
sources."khroma-1.4.1"
sources."locate-path-5.0.0"
sources."lodash-4.17.21"
- sources."mermaid-8.13.6"
+ sources."mermaid-8.13.8"
sources."minimatch-3.0.4"
sources."mkdirp-classic-0.5.3"
sources."moment-mini-2.24.0"
@@ -107897,7 +108662,7 @@ in
sources."progress-2.0.3"
sources."proxy-from-env-1.1.0"
sources."pump-3.0.0"
- sources."puppeteer-13.0.0"
+ sources."puppeteer-13.0.1"
sources."readable-stream-3.6.0"
sources."rimraf-3.0.2"
sources."robust-predicates-3.0.1"
@@ -108077,7 +108842,7 @@ in
sources."mime-types-2.1.34"
sources."ms-2.1.3"
sources."native-promise-only-0.8.1"
- sources."object-inspect-1.11.1"
+ sources."object-inspect-1.12.0"
sources."path-loader-1.0.10"
sources."process-nextick-args-2.0.1"
sources."punycode-2.1.1"
@@ -108270,7 +109035,7 @@ in
sources."@tootallnate/once-1.1.2"
sources."abbrev-1.1.1"
sources."agent-base-6.0.2"
- sources."agentkeepalive-4.1.4"
+ sources."agentkeepalive-4.2.0"
sources."aggregate-error-3.1.0"
sources."ansi-regex-5.0.1"
sources."aproba-2.0.0"
@@ -108412,12 +109177,12 @@ in
sources."biased-opener-0.2.8"
sources."big-integer-1.6.51"
sources."block-stream-0.0.9"
- sources."body-parser-1.19.0"
+ sources."body-parser-1.19.1"
sources."boom-2.10.1"
sources."bplist-parser-0.1.1"
sources."brace-expansion-1.1.11"
sources."browser-launcher2-0.4.6"
- sources."bytes-3.1.0"
+ sources."bytes-3.1.1"
sources."camelcase-2.1.1"
sources."camelcase-keys-2.1.0"
sources."caseless-0.12.0"
@@ -108427,9 +109192,9 @@ in
sources."combined-stream-1.0.8"
sources."concat-map-0.0.1"
sources."console-control-strings-1.1.0"
- sources."content-disposition-0.5.3"
+ sources."content-disposition-0.5.4"
sources."content-type-1.0.4"
- sources."cookie-0.4.0"
+ sources."cookie-0.4.1"
sources."cookie-signature-1.0.6"
sources."core-util-is-1.0.3"
sources."cryptiles-2.0.5"
@@ -108454,7 +109219,7 @@ in
sources."error-ex-1.3.2"
sources."escape-html-1.0.3"
sources."etag-1.8.1"
- sources."express-4.17.1"
+ sources."express-4.17.2"
sources."extend-3.0.2"
sources."extsprintf-1.3.0"
sources."finalhandler-1.1.2"
@@ -108484,12 +109249,12 @@ in
sources."headless-0.1.7"
sources."hoek-2.16.3"
sources."hosted-git-info-2.8.9"
- sources."http-errors-1.7.2"
+ sources."http-errors-1.8.1"
sources."http-signature-1.1.1"
sources."iconv-lite-0.4.24"
sources."indent-string-2.1.0"
sources."inflight-1.0.6"
- sources."inherits-2.0.3"
+ sources."inherits-2.0.4"
sources."ini-1.3.8"
sources."invert-kv-1.0.0"
sources."ipaddr.js-1.9.1"
@@ -108565,13 +109330,17 @@ in
sources."process-nextick-args-2.0.1"
sources."proxy-addr-2.0.7"
sources."punycode-1.4.1"
- sources."qs-6.7.0"
+ sources."qs-6.9.6"
sources."range-parser-1.2.1"
- sources."raw-body-2.4.0"
+ sources."raw-body-2.4.2"
sources."rc-1.2.8"
sources."read-pkg-1.1.0"
sources."read-pkg-up-1.0.1"
- sources."readable-stream-2.3.7"
+ (sources."readable-stream-2.3.7" // {
+ dependencies = [
+ sources."safe-buffer-5.1.2"
+ ];
+ })
sources."redent-1.0.0"
sources."repeating-2.0.1"
(sources."request-2.81.0" // {
@@ -108581,12 +109350,12 @@ in
})
sources."resolve-1.20.0"
sources."rimraf-2.2.8"
- sources."safe-buffer-5.1.2"
+ sources."safe-buffer-5.2.1"
sources."safer-buffer-2.1.2"
sources."semver-4.3.6"
- (sources."send-0.17.1" // {
+ (sources."send-0.17.2" // {
dependencies = [
- sources."ms-2.1.1"
+ sources."ms-2.1.3"
];
})
(sources."serve-favicon-2.5.0" // {
@@ -108595,9 +109364,9 @@ in
sources."safe-buffer-5.1.1"
];
})
- sources."serve-static-1.14.1"
+ sources."serve-static-1.14.2"
sources."set-blocking-2.0.0"
- sources."setprototypeof-1.1.1"
+ sources."setprototypeof-1.2.0"
sources."signal-exit-3.0.6"
sources."sntp-1.0.9"
sources."spdx-correct-3.1.1"
@@ -108611,7 +109380,11 @@ in
})
sources."statuses-1.5.0"
sources."string-width-1.0.2"
- sources."string_decoder-1.1.1"
+ (sources."string_decoder-1.1.1" // {
+ dependencies = [
+ sources."safe-buffer-5.1.2"
+ ];
+ })
sources."stringstream-0.0.6"
sources."strip-ansi-3.0.1"
sources."strip-bom-2.0.0"
@@ -108625,7 +109398,7 @@ in
sources."rimraf-2.7.1"
];
})
- sources."toidentifier-1.0.0"
+ sources."toidentifier-1.0.1"
sources."tough-cookie-2.3.4"
sources."trim-newlines-1.0.0"
sources."truncate-2.1.0"
@@ -108779,7 +109552,7 @@ in
sha512 = "ScpFFE0G+NlxFWrHnMcIkaF8gW+6jwK7n5qRGId66fCTICYnBGkOxXBvV3Q45H+4iQUro5aIRj737Gu7shjsJw==";
};
dependencies = [
- sources."@babel/runtime-7.16.5"
+ sources."@babel/runtime-7.16.7"
sources."@mapbox/node-pre-gyp-1.0.8"
sources."@node-red/editor-api-2.1.4"
sources."@node-red/editor-client-2.1.4"
@@ -108807,7 +109580,7 @@ in
sources."@types/cacheable-request-6.0.2"
sources."@types/http-cache-semantics-4.0.1"
sources."@types/keyv-3.1.3"
- sources."@types/node-17.0.0"
+ sources."@types/node-17.0.6"
sources."@types/responselike-1.0.0"
sources."abbrev-1.1.1"
sources."accepts-1.3.7"
@@ -108893,7 +109666,7 @@ in
sources."core-util-is-1.0.3"
sources."cors-2.8.5"
sources."cronosjs-1.7.1"
- sources."css-select-4.2.0"
+ sources."css-select-4.2.1"
sources."css-what-5.1.0"
sources."debug-2.6.9"
(sources."decompress-response-6.0.0" // {
@@ -109532,9 +110305,9 @@ in
sha512 = "WWGZtfNkE6MEkI7LE8NtG7poTqzTHj/tssBzcPnBAdMVPXkXDtX2wk0ptrj8YZ3u4TFmGSqioSohdud86aJxSg==";
};
dependencies = [
- sources."@babel/code-frame-7.16.0"
- sources."@babel/helper-validator-identifier-7.15.7"
- (sources."@babel/highlight-7.16.0" // {
+ sources."@babel/code-frame-7.16.7"
+ sources."@babel/helper-validator-identifier-7.16.7"
+ (sources."@babel/highlight-7.16.7" // {
dependencies = [
sources."ansi-styles-3.2.1"
sources."chalk-2.4.2"
@@ -109559,7 +110332,7 @@ in
sources."@types/http-cache-semantics-4.0.1"
sources."@types/keyv-3.1.3"
sources."@types/minimist-1.2.2"
- sources."@types/node-17.0.0"
+ sources."@types/node-17.0.6"
sources."@types/normalize-package-data-2.4.1"
sources."@types/parse-json-4.0.0"
sources."@types/responselike-1.0.0"
@@ -109683,7 +110456,7 @@ in
sources."http-cache-semantics-4.1.0"
sources."human-signals-2.1.0"
sources."iconv-lite-0.4.24"
- sources."ignore-5.1.9"
+ sources."ignore-5.2.0"
sources."ignore-walk-3.0.4"
sources."import-fresh-3.3.0"
sources."import-lazy-2.1.0"
@@ -110092,7 +110865,7 @@ in
sources."@tootallnate/once-1.1.2"
sources."abbrev-1.1.1"
sources."agent-base-6.0.2"
- sources."agentkeepalive-4.1.4"
+ sources."agentkeepalive-4.2.0"
sources."aggregate-error-3.1.0"
sources."ansi-align-3.0.1"
sources."ansi-regex-5.0.1"
@@ -110178,7 +110951,7 @@ in
sources."https-proxy-agent-5.0.0"
sources."humanize-ms-1.2.1"
sources."iconv-lite-0.6.3"
- sources."ignore-5.1.9"
+ sources."ignore-5.2.0"
sources."ignore-walk-4.0.1"
sources."import-lazy-2.1.0"
sources."imurmurhash-0.1.4"
@@ -110661,80 +111434,80 @@ in
sha512 = "hpku8mW67U6PXQIenW6NBbphBOMb8XzW6B9r093DUhYj5GN2FUB/CXCiz5hKoPYUsusZ35BpProH8AUF9bh5IQ==";
};
dependencies = [
- sources."@babel/code-frame-7.16.0"
+ sources."@babel/code-frame-7.16.7"
sources."@babel/compat-data-7.16.4"
- (sources."@babel/core-7.16.5" // {
+ (sources."@babel/core-7.16.7" // {
dependencies = [
sources."json5-2.2.0"
sources."semver-6.3.0"
sources."source-map-0.5.7"
];
})
- (sources."@babel/generator-7.16.5" // {
+ (sources."@babel/generator-7.16.7" // {
dependencies = [
sources."source-map-0.5.7"
];
})
- sources."@babel/helper-annotate-as-pure-7.16.0"
- sources."@babel/helper-builder-binary-assignment-operator-visitor-7.16.5"
- (sources."@babel/helper-compilation-targets-7.16.3" // {
+ sources."@babel/helper-annotate-as-pure-7.16.7"
+ sources."@babel/helper-builder-binary-assignment-operator-visitor-7.16.7"
+ (sources."@babel/helper-compilation-targets-7.16.7" // {
dependencies = [
sources."semver-6.3.0"
];
})
- sources."@babel/helper-create-class-features-plugin-7.16.5"
- sources."@babel/helper-create-regexp-features-plugin-7.16.0"
+ sources."@babel/helper-create-class-features-plugin-7.16.7"
+ sources."@babel/helper-create-regexp-features-plugin-7.16.7"
(sources."@babel/helper-define-polyfill-provider-0.3.0" // {
dependencies = [
sources."semver-6.3.0"
];
})
- sources."@babel/helper-environment-visitor-7.16.5"
- sources."@babel/helper-explode-assignable-expression-7.16.0"
- sources."@babel/helper-function-name-7.16.0"
- sources."@babel/helper-get-function-arity-7.16.0"
- sources."@babel/helper-hoist-variables-7.16.0"
- sources."@babel/helper-member-expression-to-functions-7.16.5"
- sources."@babel/helper-module-imports-7.16.0"
- sources."@babel/helper-module-transforms-7.16.5"
- sources."@babel/helper-optimise-call-expression-7.16.0"
- sources."@babel/helper-plugin-utils-7.16.5"
- sources."@babel/helper-remap-async-to-generator-7.16.5"
- sources."@babel/helper-replace-supers-7.16.5"
- sources."@babel/helper-simple-access-7.16.0"
+ sources."@babel/helper-environment-visitor-7.16.7"
+ sources."@babel/helper-explode-assignable-expression-7.16.7"
+ sources."@babel/helper-function-name-7.16.7"
+ sources."@babel/helper-get-function-arity-7.16.7"
+ sources."@babel/helper-hoist-variables-7.16.7"
+ sources."@babel/helper-member-expression-to-functions-7.16.7"
+ sources."@babel/helper-module-imports-7.16.7"
+ sources."@babel/helper-module-transforms-7.16.7"
+ sources."@babel/helper-optimise-call-expression-7.16.7"
+ sources."@babel/helper-plugin-utils-7.16.7"
+ sources."@babel/helper-remap-async-to-generator-7.16.7"
+ sources."@babel/helper-replace-supers-7.16.7"
+ sources."@babel/helper-simple-access-7.16.7"
sources."@babel/helper-skip-transparent-expression-wrappers-7.16.0"
- sources."@babel/helper-split-export-declaration-7.16.0"
- sources."@babel/helper-validator-identifier-7.15.7"
- sources."@babel/helper-validator-option-7.14.5"
- sources."@babel/helper-wrap-function-7.16.5"
- sources."@babel/helpers-7.16.5"
- sources."@babel/highlight-7.16.0"
- sources."@babel/parser-7.16.6"
- sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.2"
- sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.0"
- sources."@babel/plugin-proposal-async-generator-functions-7.16.5"
- sources."@babel/plugin-proposal-class-properties-7.16.5"
- sources."@babel/plugin-proposal-class-static-block-7.16.5"
- sources."@babel/plugin-proposal-dynamic-import-7.16.5"
- sources."@babel/plugin-proposal-export-namespace-from-7.16.5"
- sources."@babel/plugin-proposal-json-strings-7.16.5"
- sources."@babel/plugin-proposal-logical-assignment-operators-7.16.5"
- sources."@babel/plugin-proposal-nullish-coalescing-operator-7.16.5"
- sources."@babel/plugin-proposal-numeric-separator-7.16.5"
- sources."@babel/plugin-proposal-object-rest-spread-7.16.5"
- sources."@babel/plugin-proposal-optional-catch-binding-7.16.5"
- sources."@babel/plugin-proposal-optional-chaining-7.16.5"
- sources."@babel/plugin-proposal-private-methods-7.16.5"
- sources."@babel/plugin-proposal-private-property-in-object-7.16.5"
- sources."@babel/plugin-proposal-unicode-property-regex-7.16.5"
+ sources."@babel/helper-split-export-declaration-7.16.7"
+ sources."@babel/helper-validator-identifier-7.16.7"
+ sources."@babel/helper-validator-option-7.16.7"
+ sources."@babel/helper-wrap-function-7.16.7"
+ sources."@babel/helpers-7.16.7"
+ sources."@babel/highlight-7.16.7"
+ sources."@babel/parser-7.16.7"
+ sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.7"
+ sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.7"
+ sources."@babel/plugin-proposal-async-generator-functions-7.16.7"
+ sources."@babel/plugin-proposal-class-properties-7.16.7"
+ sources."@babel/plugin-proposal-class-static-block-7.16.7"
+ sources."@babel/plugin-proposal-dynamic-import-7.16.7"
+ sources."@babel/plugin-proposal-export-namespace-from-7.16.7"
+ sources."@babel/plugin-proposal-json-strings-7.16.7"
+ sources."@babel/plugin-proposal-logical-assignment-operators-7.16.7"
+ sources."@babel/plugin-proposal-nullish-coalescing-operator-7.16.7"
+ sources."@babel/plugin-proposal-numeric-separator-7.16.7"
+ sources."@babel/plugin-proposal-object-rest-spread-7.16.7"
+ sources."@babel/plugin-proposal-optional-catch-binding-7.16.7"
+ sources."@babel/plugin-proposal-optional-chaining-7.16.7"
+ sources."@babel/plugin-proposal-private-methods-7.16.7"
+ sources."@babel/plugin-proposal-private-property-in-object-7.16.7"
+ sources."@babel/plugin-proposal-unicode-property-regex-7.16.7"
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.14.5"
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.16.5"
+ sources."@babel/plugin-syntax-flow-7.16.7"
sources."@babel/plugin-syntax-json-strings-7.8.3"
- sources."@babel/plugin-syntax-jsx-7.16.5"
+ sources."@babel/plugin-syntax-jsx-7.16.7"
sources."@babel/plugin-syntax-logical-assignment-operators-7.10.4"
sources."@babel/plugin-syntax-nullish-coalescing-operator-7.8.3"
sources."@babel/plugin-syntax-numeric-separator-7.10.4"
@@ -110743,50 +111516,50 @@ in
sources."@babel/plugin-syntax-optional-chaining-7.8.3"
sources."@babel/plugin-syntax-private-property-in-object-7.14.5"
sources."@babel/plugin-syntax-top-level-await-7.14.5"
- sources."@babel/plugin-transform-arrow-functions-7.16.5"
- sources."@babel/plugin-transform-async-to-generator-7.16.5"
- sources."@babel/plugin-transform-block-scoped-functions-7.16.5"
- sources."@babel/plugin-transform-block-scoping-7.16.5"
- sources."@babel/plugin-transform-classes-7.16.5"
- sources."@babel/plugin-transform-computed-properties-7.16.5"
- sources."@babel/plugin-transform-destructuring-7.16.5"
- sources."@babel/plugin-transform-dotall-regex-7.16.5"
- sources."@babel/plugin-transform-duplicate-keys-7.16.5"
- sources."@babel/plugin-transform-exponentiation-operator-7.16.5"
- sources."@babel/plugin-transform-flow-strip-types-7.16.5"
- sources."@babel/plugin-transform-for-of-7.16.5"
- sources."@babel/plugin-transform-function-name-7.16.5"
- sources."@babel/plugin-transform-literals-7.16.5"
- sources."@babel/plugin-transform-member-expression-literals-7.16.5"
- sources."@babel/plugin-transform-modules-amd-7.16.5"
- sources."@babel/plugin-transform-modules-commonjs-7.16.5"
- sources."@babel/plugin-transform-modules-systemjs-7.16.5"
- sources."@babel/plugin-transform-modules-umd-7.16.5"
- sources."@babel/plugin-transform-named-capturing-groups-regex-7.16.5"
- sources."@babel/plugin-transform-new-target-7.16.5"
- sources."@babel/plugin-transform-object-super-7.16.5"
- sources."@babel/plugin-transform-parameters-7.16.5"
- sources."@babel/plugin-transform-property-literals-7.16.5"
- sources."@babel/plugin-transform-react-jsx-7.16.5"
- sources."@babel/plugin-transform-regenerator-7.16.5"
- sources."@babel/plugin-transform-reserved-words-7.16.5"
- sources."@babel/plugin-transform-shorthand-properties-7.16.5"
- sources."@babel/plugin-transform-spread-7.16.5"
- sources."@babel/plugin-transform-sticky-regex-7.16.5"
- sources."@babel/plugin-transform-template-literals-7.16.5"
- sources."@babel/plugin-transform-typeof-symbol-7.16.5"
- sources."@babel/plugin-transform-unicode-escapes-7.16.5"
- sources."@babel/plugin-transform-unicode-regex-7.16.5"
- (sources."@babel/preset-env-7.16.5" // {
+ sources."@babel/plugin-transform-arrow-functions-7.16.7"
+ sources."@babel/plugin-transform-async-to-generator-7.16.7"
+ sources."@babel/plugin-transform-block-scoped-functions-7.16.7"
+ sources."@babel/plugin-transform-block-scoping-7.16.7"
+ sources."@babel/plugin-transform-classes-7.16.7"
+ sources."@babel/plugin-transform-computed-properties-7.16.7"
+ sources."@babel/plugin-transform-destructuring-7.16.7"
+ sources."@babel/plugin-transform-dotall-regex-7.16.7"
+ sources."@babel/plugin-transform-duplicate-keys-7.16.7"
+ sources."@babel/plugin-transform-exponentiation-operator-7.16.7"
+ sources."@babel/plugin-transform-flow-strip-types-7.16.7"
+ sources."@babel/plugin-transform-for-of-7.16.7"
+ sources."@babel/plugin-transform-function-name-7.16.7"
+ sources."@babel/plugin-transform-literals-7.16.7"
+ sources."@babel/plugin-transform-member-expression-literals-7.16.7"
+ sources."@babel/plugin-transform-modules-amd-7.16.7"
+ sources."@babel/plugin-transform-modules-commonjs-7.16.7"
+ sources."@babel/plugin-transform-modules-systemjs-7.16.7"
+ sources."@babel/plugin-transform-modules-umd-7.16.7"
+ sources."@babel/plugin-transform-named-capturing-groups-regex-7.16.7"
+ sources."@babel/plugin-transform-new-target-7.16.7"
+ sources."@babel/plugin-transform-object-super-7.16.7"
+ sources."@babel/plugin-transform-parameters-7.16.7"
+ sources."@babel/plugin-transform-property-literals-7.16.7"
+ sources."@babel/plugin-transform-react-jsx-7.16.7"
+ sources."@babel/plugin-transform-regenerator-7.16.7"
+ sources."@babel/plugin-transform-reserved-words-7.16.7"
+ sources."@babel/plugin-transform-shorthand-properties-7.16.7"
+ sources."@babel/plugin-transform-spread-7.16.7"
+ sources."@babel/plugin-transform-sticky-regex-7.16.7"
+ sources."@babel/plugin-transform-template-literals-7.16.7"
+ sources."@babel/plugin-transform-typeof-symbol-7.16.7"
+ sources."@babel/plugin-transform-unicode-escapes-7.16.7"
+ sources."@babel/plugin-transform-unicode-regex-7.16.7"
+ (sources."@babel/preset-env-7.16.7" // {
dependencies = [
sources."semver-6.3.0"
];
})
sources."@babel/preset-modules-0.1.5"
- sources."@babel/runtime-7.16.5"
- sources."@babel/template-7.16.0"
- sources."@babel/traverse-7.16.5"
- sources."@babel/types-7.16.0"
+ sources."@babel/runtime-7.16.7"
+ sources."@babel/template-7.16.7"
+ sources."@babel/traverse-7.16.7"
+ sources."@babel/types-7.16.7"
sources."@iarna/toml-2.2.5"
sources."@mrmlnc/readdir-enhanced-2.2.1"
sources."@nodelib/fs.stat-1.1.3"
@@ -110908,7 +111681,7 @@ in
sources."caller-path-2.0.0"
sources."callsites-2.0.0"
sources."caniuse-api-3.0.0"
- sources."caniuse-lite-1.0.30001287"
+ sources."caniuse-lite-1.0.30001294"
sources."caseless-0.12.0"
sources."chalk-2.4.2"
sources."chokidar-2.1.8"
@@ -110934,7 +111707,7 @@ in
sources."convert-source-map-1.8.0"
sources."copy-descriptor-0.1.1"
sources."core-js-2.6.12"
- (sources."core-js-compat-3.20.0" // {
+ (sources."core-js-compat-3.20.2" // {
dependencies = [
sources."semver-7.0.0"
];
@@ -111045,7 +111818,7 @@ in
sources."duplexer2-0.1.4"
sources."ecc-jsbn-0.1.2"
sources."ee-first-1.1.1"
- sources."electron-to-chromium-1.4.21"
+ sources."electron-to-chromium-1.4.31"
(sources."elliptic-6.5.4" // {
dependencies = [
sources."bn.js-4.12.0"
@@ -111057,7 +111830,7 @@ in
sources."error-ex-1.3.2"
(sources."es-abstract-1.19.1" // {
dependencies = [
- sources."object-inspect-1.11.1"
+ sources."object-inspect-1.12.0"
];
})
sources."es-to-primitive-1.2.1"
@@ -111413,7 +112186,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.7"
+ sources."postcss-selector-parser-6.0.8"
sources."postcss-svgo-4.0.3"
sources."postcss-unique-selectors-4.0.1"
sources."postcss-value-parser-3.3.1"
@@ -111518,7 +112291,7 @@ in
sources."shebang-regex-1.0.0"
(sources."side-channel-1.0.4" // {
dependencies = [
- sources."object-inspect-1.11.1"
+ sources."object-inspect-1.12.0"
];
})
sources."signal-exit-3.0.6"
@@ -111714,16 +112487,16 @@ in
sources."bintrees-1.0.1"
sources."bl-1.2.3"
sources."bluebird-3.7.2"
- (sources."body-parser-1.19.0" // {
+ (sources."body-parser-1.19.1" // {
dependencies = [
- sources."bytes-3.1.0"
+ sources."bytes-3.1.1"
sources."content-type-1.0.4"
];
})
sources."brace-expansion-1.1.11"
sources."bunyan-1.8.15"
sources."bunyan-syslog-udp-0.2.0"
- sources."busboy-0.3.1"
+ sources."busboy-1.3.0"
sources."bytes-3.0.0"
sources."call-bind-1.0.2"
sources."camelcase-5.3.1"
@@ -111738,9 +112511,13 @@ in
sources."compression-1.7.4"
sources."concat-map-0.0.1"
sources."connect-busboy-0.0.2"
- sources."content-disposition-0.5.3"
+ (sources."content-disposition-0.5.4" // {
+ dependencies = [
+ sources."safe-buffer-5.2.1"
+ ];
+ })
sources."content-type-git+https://github.com/wikimedia/content-type.git#master"
- sources."cookie-0.4.0"
+ sources."cookie-0.4.1"
sources."cookie-signature-1.0.6"
sources."core-js-2.6.12"
sources."core-util-is-1.0.2"
@@ -111751,7 +112528,6 @@ in
sources."delayed-stream-1.0.0"
sources."depd-1.1.2"
sources."destroy-1.0.4"
- sources."dicer-0.3.0"
sources."dnscache-1.0.2"
sources."dom-storage-2.1.0"
sources."domino-2.1.6"
@@ -111765,9 +112541,10 @@ in
sources."escape-html-1.0.3"
sources."esprima-4.0.1"
sources."etag-1.8.1"
- (sources."express-4.17.1" // {
+ (sources."express-4.17.2" // {
dependencies = [
sources."content-type-1.0.4"
+ sources."safe-buffer-5.2.1"
];
})
sources."express-handlebars-3.1.0"
@@ -111801,11 +112578,11 @@ in
sources."hat-0.0.3"
sources."heapdump-0.3.15"
sources."hot-shots-6.8.7"
- sources."http-errors-1.7.2"
+ sources."http-errors-1.8.1"
sources."http-signature-1.2.0"
sources."iconv-lite-0.4.24"
sources."inflight-1.0.6"
- sources."inherits-2.0.3"
+ sources."inherits-2.0.4"
sources."ipaddr.js-1.9.1"
sources."is-arguments-1.1.1"
sources."is-fullwidth-code-point-2.0.0"
@@ -111868,11 +112645,11 @@ in
sources."prr-1.0.1"
sources."psl-1.8.0"
sources."punycode-2.1.1"
- sources."qs-6.7.0"
+ sources."qs-6.9.6"
sources."range-parser-1.2.1"
- (sources."raw-body-2.4.0" // {
+ (sources."raw-body-2.4.2" // {
dependencies = [
- sources."bytes-3.1.0"
+ sources."bytes-3.1.1"
];
})
sources."readable-stream-2.3.7"
@@ -111892,9 +112669,9 @@ in
sources."safe-json-stringify-1.2.0"
sources."safer-buffer-2.1.2"
sources."semver-6.3.0"
- (sources."send-0.17.1" // {
+ (sources."send-0.17.2" // {
dependencies = [
- sources."ms-2.1.1"
+ sources."ms-2.1.3"
];
})
(sources."serve-favicon-2.5.0" // {
@@ -111903,7 +112680,7 @@ in
sources."safe-buffer-5.1.1"
];
})
- sources."serve-static-1.14.1"
+ sources."serve-static-1.14.2"
(sources."service-runner-2.9.0" // {
dependencies = [
sources."semver-7.3.5"
@@ -111911,18 +112688,18 @@ in
];
})
sources."set-blocking-2.0.0"
- sources."setprototypeof-1.1.1"
+ sources."setprototypeof-1.2.0"
sources."simplediff-0.1.1"
sources."source-map-0.6.1"
sources."sprintf-js-1.0.3"
sources."sshpk-1.16.1"
sources."statuses-1.5.0"
- sources."streamsearch-0.1.2"
+ sources."streamsearch-1.1.0"
sources."string-width-3.1.0"
sources."string_decoder-1.1.1"
sources."strip-ansi-5.2.0"
sources."tdigest-0.1.1"
- sources."toidentifier-1.0.0"
+ sources."toidentifier-1.0.1"
sources."tough-cookie-2.5.0"
sources."tunnel-agent-0.6.0"
sources."tweetnacl-0.14.5"
@@ -112432,9 +113209,13 @@ in
sources."toidentifier-1.0.0"
];
})
- sources."content-disposition-0.5.3"
+ (sources."content-disposition-0.5.4" // {
+ dependencies = [
+ sources."safe-buffer-5.2.1"
+ ];
+ })
sources."content-type-1.0.4"
- sources."cookie-0.4.0"
+ sources."cookie-0.4.1"
sources."cookie-signature-1.0.6"
sources."core-util-is-1.0.3"
sources."crc-3.8.0"
@@ -112452,7 +113233,6 @@ in
sources."end-of-stream-1.4.4"
(sources."engine.io-3.5.0" // {
dependencies = [
- sources."cookie-0.4.1"
sources."debug-4.1.1"
sources."ms-2.1.3"
];
@@ -112465,17 +113245,9 @@ in
sources."engine.io-parser-2.2.1"
sources."escape-html-1.0.3"
sources."etag-1.8.1"
- (sources."express-4.17.1" // {
+ (sources."express-4.17.2" // {
dependencies = [
- sources."body-parser-1.19.0"
- sources."bytes-3.1.0"
- sources."http-errors-1.7.2"
- sources."inherits-2.0.3"
- sources."qs-6.7.0"
- sources."raw-body-2.4.0"
- sources."serve-static-1.14.1"
- sources."setprototypeof-1.1.1"
- sources."toidentifier-1.0.0"
+ sources."safe-buffer-5.2.1"
];
})
sources."extend-3.0.2"
@@ -112629,20 +113401,12 @@ in
sources."rusha-0.8.14"
sources."safe-buffer-5.1.2"
sources."safer-buffer-2.1.2"
- (sources."send-0.17.1" // {
- dependencies = [
- sources."http-errors-1.7.3"
- sources."ms-2.1.1"
- sources."setprototypeof-1.1.1"
- sources."toidentifier-1.0.0"
- ];
- })
- (sources."serve-static-1.14.2" // {
+ (sources."send-0.17.2" // {
dependencies = [
sources."ms-2.1.3"
- sources."send-0.17.2"
];
})
+ sources."serve-static-1.14.2"
sources."setprototypeof-1.2.0"
sources."simple-concat-1.0.1"
sources."simple-get-2.8.1"
@@ -112750,7 +113514,7 @@ in
sha512 = "3IiUgwYRQBfXcmdBakjqttRrhpruZ1h/UCobtra2IN4S29eJhgxr39Dd8EZxUikgSLUH3v/eUWO3ZInSmlSXpw==";
};
dependencies = [
- sources."@babel/helper-validator-identifier-7.15.7"
+ sources."@babel/helper-validator-identifier-7.16.7"
sources."@babel/parser-7.16.2"
sources."@babel/types-7.16.0"
sources."@nodelib/fs.scandir-2.1.5"
@@ -112820,7 +113584,7 @@ in
sources."has-unicode-2.0.1"
sources."https-proxy-agent-5.0.0"
sources."ieee754-1.2.1"
- sources."ignore-5.1.9"
+ sources."ignore-5.2.0"
sources."inherits-2.0.4"
sources."ini-1.3.8"
sources."into-stream-6.0.0"
@@ -113158,10 +113922,10 @@ in
pnpm = nodeEnv.buildNodePackage {
name = "pnpm";
packageName = "pnpm";
- version = "6.24.1";
+ version = "6.24.4";
src = fetchurl {
- url = "https://registry.npmjs.org/pnpm/-/pnpm-6.24.1.tgz";
- sha512 = "gvXXhgSfdq27ASRSd9121GtRXqnZ5RMeaj/HDlsRjV5XTBWCMJZvLIdz6SiSeDQas/+6w9PNz73vFR0l9j+XYA==";
+ url = "https://registry.npmjs.org/pnpm/-/pnpm-6.24.4.tgz";
+ sha512 = "bUdRZ1TIZDlfohEb4ONI0Zb+KiEq6N7Zwb41S7Yi66gWLIvZUKFxMPxnKjfpArS+3i8YQzoEwJd8bE2cIweLyg==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -113260,7 +114024,7 @@ in
sources."glob-parent-5.1.2"
sources."globby-12.0.2"
sources."graceful-fs-4.2.8"
- sources."ignore-5.1.9"
+ sources."ignore-5.2.0"
sources."import-cwd-3.0.0"
sources."import-from-3.0.0"
sources."is-binary-path-2.1.0"
@@ -113270,11 +114034,6 @@ in
sources."is-number-7.0.0"
sources."jsonfile-6.1.0"
sources."lilconfig-2.0.4"
- sources."lodash.difference-4.5.0"
- sources."lodash.forown-4.4.0"
- sources."lodash.get-4.4.2"
- sources."lodash.groupby-4.6.0"
- sources."lodash.sortby-4.7.0"
sources."merge2-1.4.1"
sources."micromatch-4.0.4"
sources."normalize-path-3.0.0"
@@ -113283,7 +114042,7 @@ in
sources."picomatch-2.3.0"
sources."pify-2.3.0"
sources."postcss-load-config-3.1.0"
- sources."postcss-reporter-7.0.4"
+ sources."postcss-reporter-7.0.5"
sources."pretty-hrtime-1.0.3"
sources."queue-microtask-1.2.3"
sources."read-cache-1.0.0"
@@ -113295,12 +114054,13 @@ in
sources."slash-4.0.0"
sources."string-width-4.2.3"
sources."strip-ansi-6.0.1"
+ sources."thenby-1.3.4"
sources."to-regex-range-5.0.1"
sources."universalify-2.0.0"
sources."wrap-ansi-7.0.0"
sources."y18n-5.0.8"
sources."yaml-1.10.2"
- sources."yargs-17.3.0"
+ sources."yargs-17.3.1"
sources."yargs-parser-21.0.0"
];
buildInputs = globalBuildInputs;
@@ -113358,13 +114118,13 @@ in
prisma = nodeEnv.buildNodePackage {
name = "prisma";
packageName = "prisma";
- version = "3.6.0";
+ version = "3.7.0";
src = fetchurl {
- url = "https://registry.npmjs.org/prisma/-/prisma-3.6.0.tgz";
- sha512 = "6SqgHS/5Rq6HtHjsWsTxlj+ySamGyCLBUQfotc2lStOjPv52IQuDVpp58GieNqc9VnfuFyHUvTZw7aQB+G2fvQ==";
+ url = "https://registry.npmjs.org/prisma/-/prisma-3.7.0.tgz";
+ sha512 = "pzgc95msPLcCHqOli7Hnabu/GRfSGSUWl5s2P6N13T/rgMB+NNeKbxCmzQiZT2yLOeLEPivV6YrW1oeQIwJxcg==";
};
dependencies = [
- sources."@prisma/engines-3.6.0-24.dc520b92b1ebb2d28dc3161f9f82e875bd35d727"
+ sources."@prisma/engines-3.7.0-31.8746e055198f517658c08a0c426c7eec87f5a85f"
];
buildInputs = globalBuildInputs;
meta = {
@@ -113379,21 +114139,16 @@ in
"@prisma/language-server" = nodeEnv.buildNodePackage {
name = "_at_prisma_slash_language-server";
packageName = "@prisma/language-server";
- version = "3.6.0";
+ version = "3.7.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@prisma/language-server/-/language-server-3.6.0.tgz";
- sha512 = "3WUlWYGEcavLaueLpl6vsGsgfHn2TMB4885tIsQ/qPulwdY9ZgL+qzrve+wnSoBwgFi3gSWnGZB6VYOhLaOTdQ==";
+ url = "https://registry.npmjs.org/@prisma/language-server/-/language-server-3.7.0.tgz";
+ sha512 = "oDpJ7cS7z1ni7xPgcVG04+HE4SFp03sdCsHh9tLwWrw9cDFUuanDyVD7lBjd0UBwqHhBxI4lf/uj8UgZBdABig==";
};
dependencies = [
- sources."@prisma/debug-3.5.0"
- sources."@prisma/get-platform-3.6.0-24.dc520b92b1ebb2d28dc3161f9f82e875bd35d727"
- sources."@prisma/prisma-fmt-wasm-3.6.0-24.dc520b92b1ebb2d28dc3161f9f82e875bd35d727"
- sources."@types/debug-4.1.7"
+ sources."@prisma/prisma-fmt-wasm-3.7.0-31.8746e055198f517658c08a0c426c7eec87f5a85f"
sources."@types/js-levenshtein-1.1.0"
- sources."@types/ms-0.7.31"
sources."js-levenshtein-1.1.6"
sources."klona-2.0.5"
- sources."ms-2.1.3"
sources."vscode-jsonrpc-6.0.0"
sources."vscode-languageserver-7.0.0"
sources."vscode-languageserver-protocol-3.16.0"
@@ -113723,176 +114478,15 @@ in
purescript-language-server = nodeEnv.buildNodePackage {
name = "purescript-language-server";
packageName = "purescript-language-server";
- version = "0.16.1";
+ version = "0.16.2";
src = fetchurl {
- url = "https://registry.npmjs.org/purescript-language-server/-/purescript-language-server-0.16.1.tgz";
- sha512 = "TX18OnuIZYDySoYxENH7dTQmjwewyoSt8x4chQcLd/zZjgYyiJCr7rDs7LP7Z8bse3iyvQte+HS1OoEIQnauqw==";
+ url = "https://registry.npmjs.org/purescript-language-server/-/purescript-language-server-0.16.2.tgz";
+ sha512 = "d1pKF+nfbHKbsmnJGPt/VKWfDz2+x0dUHNN/A6pL2efJK8UQi3vOSd/mk+/vHH571eG0x2lFU8SP9pvzP/4pmg==";
};
dependencies = [
- sources."ajv-6.12.6"
- sources."ansi-escapes-3.2.0"
- sources."ansi-regex-4.1.0"
- sources."ansi-styles-3.2.1"
- sources."aproba-1.2.0"
- sources."arch-2.2.0"
- sources."asn1-0.2.6"
- sources."assert-plus-1.0.0"
- sources."asynckit-0.4.0"
- sources."aws-sign2-0.7.0"
- sources."aws4-1.11.0"
- sources."balanced-match-1.0.2"
- sources."bcrypt-pbkdf-1.0.2"
- sources."bluebird-3.7.2"
- sources."brace-expansion-1.1.11"
- sources."buffer-from-1.1.2"
- sources."byline-5.0.0"
- sources."cacache-11.3.3"
- sources."caseless-0.12.0"
- sources."chalk-2.4.2"
- sources."chownr-1.1.4"
- sources."cli-cursor-2.1.0"
- sources."color-convert-1.9.3"
- sources."color-name-1.1.3"
- sources."combined-stream-1.0.8"
- sources."concat-map-0.0.1"
- sources."concat-stream-1.6.2"
- sources."copy-concurrently-1.0.5"
- sources."core-util-is-1.0.3"
- sources."cross-spawn-7.0.3"
- sources."cyclist-1.0.1"
- sources."dashdash-1.14.1"
- sources."delayed-stream-1.0.0"
- sources."duplexify-3.7.1"
- sources."ecc-jsbn-0.1.2"
- sources."emoji-regex-7.0.3"
- sources."end-of-stream-1.4.4"
- sources."env-paths-2.2.1"
- sources."escape-string-regexp-1.0.5"
- sources."execa-2.1.0"
- 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."figgy-pudding-3.5.2"
- sources."filesize-4.2.1"
- sources."flush-write-stream-1.1.1"
- sources."forever-agent-0.6.1"
- sources."form-data-2.3.3"
- sources."from2-2.3.0"
- sources."fs-minipass-1.2.7"
- sources."fs-write-stream-atomic-1.0.10"
- sources."fs.realpath-1.0.0"
- sources."get-stream-5.2.0"
- sources."getpass-0.1.7"
- sources."glob-7.2.0"
- sources."graceful-fs-4.2.8"
- sources."har-schema-2.0.0"
- sources."har-validator-5.1.5"
- sources."has-flag-3.0.0"
- sources."http-signature-1.2.0"
- sources."iferr-0.1.5"
- sources."imurmurhash-0.1.4"
- sources."inflight-1.0.6"
- sources."inherits-2.0.4"
- sources."is-fullwidth-code-point-2.0.0"
- sources."is-plain-obj-2.1.0"
- sources."is-stream-2.0.1"
- sources."is-typedarray-1.0.0"
- sources."isarray-1.0.0"
sources."isexe-2.0.0"
- sources."isstream-0.1.2"
- sources."jsbn-0.1.1"
- sources."json-schema-0.4.0"
- sources."json-schema-traverse-0.4.1"
- sources."json-stringify-safe-5.0.1"
- sources."jsprim-1.4.2"
- sources."log-symbols-3.0.0"
- sources."log-update-3.4.0"
- sources."lru-cache-5.1.1"
- sources."merge-stream-2.0.0"
- sources."mime-db-1.51.0"
- sources."mime-types-2.1.34"
- sources."mimic-fn-2.1.0"
- sources."minimatch-3.0.4"
- sources."minimist-1.2.5"
- sources."minipass-2.9.0"
- sources."minizlib-1.3.3"
- sources."mississippi-3.0.0"
- sources."mkdirp-0.5.5"
- sources."move-concurrently-1.0.1"
- sources."ms-2.1.3"
- sources."npm-run-path-3.1.0"
- sources."oauth-sign-0.9.0"
- sources."once-1.4.0"
- sources."onetime-5.1.2"
- sources."p-finally-2.0.1"
- sources."parallel-transform-1.2.0"
- sources."path-is-absolute-1.0.1"
- sources."path-key-3.1.1"
- sources."performance-now-2.1.0"
- sources."process-nextick-args-2.0.1"
- sources."promise-inflight-1.0.1"
- sources."psl-1.8.0"
- sources."pump-3.0.0"
- (sources."pumpify-1.5.1" // {
- dependencies = [
- sources."pump-2.0.1"
- ];
- })
- sources."punycode-2.1.1"
- sources."purescript-0.14.4"
- (sources."purescript-installer-0.2.5" // {
- dependencies = [
- sources."which-1.3.1"
- ];
- })
- sources."qs-6.5.2"
- sources."readable-stream-2.3.7"
- sources."request-2.88.2"
- (sources."restore-cursor-2.0.0" // {
- dependencies = [
- sources."mimic-fn-1.2.0"
- sources."onetime-2.0.1"
- ];
- })
- sources."rimraf-2.7.1"
- sources."run-queue-1.0.3"
- sources."safe-buffer-5.1.2"
- sources."safer-buffer-2.1.2"
- sources."shebang-command-2.0.0"
- sources."shebang-regex-3.0.0"
sources."shell-quote-1.7.3"
- sources."signal-exit-3.0.6"
- sources."spago-0.20.3"
- sources."sshpk-1.16.1"
- sources."ssri-6.0.2"
- sources."stream-each-1.2.3"
- sources."stream-shift-1.0.1"
- sources."string-width-3.1.0"
- sources."string_decoder-1.1.1"
- sources."strip-ansi-5.2.0"
- sources."strip-final-newline-2.0.0"
- sources."supports-color-5.5.0"
- (sources."tar-4.4.19" // {
- dependencies = [
- sources."safe-buffer-5.2.1"
- ];
- })
- sources."through2-2.0.5"
- sources."tough-cookie-2.5.0"
- sources."tunnel-agent-0.6.0"
- sources."tweetnacl-0.14.5"
- sources."typedarray-0.0.6"
- sources."unique-filename-1.1.1"
- sources."unique-slug-2.0.2"
- sources."uri-js-4.4.1"
- sources."util-deprecate-1.0.2"
sources."uuid-3.4.0"
- (sources."verror-1.10.0" // {
- dependencies = [
- sources."core-util-is-1.0.2"
- ];
- })
sources."vscode-jsonrpc-8.0.0-next.4"
sources."vscode-languageserver-8.0.0-next.5"
sources."vscode-languageserver-protocol-3.17.0-next.11"
@@ -113900,12 +114494,6 @@ in
sources."vscode-languageserver-types-3.17.0-next.5"
sources."vscode-uri-2.1.2"
sources."which-2.0.2"
- sources."wrap-ansi-5.1.0"
- sources."wrappy-1.0.2"
- sources."xtend-4.0.2"
- sources."y18n-4.0.3"
- sources."yallist-3.1.1"
- sources."zen-observable-0.8.15"
];
buildInputs = globalBuildInputs;
meta = {
@@ -114014,7 +114602,7 @@ in
sources."moment-2.29.1"
sources."ms-2.1.2"
sources."normalize-url-4.5.1"
- sources."object-inspect-1.11.1"
+ sources."object-inspect-1.12.0"
sources."once-1.4.0"
sources."open-7.4.2"
sources."p-cancelable-1.1.0"
@@ -114056,10 +114644,10 @@ in
pyright = nodeEnv.buildNodePackage {
name = "pyright";
packageName = "pyright";
- version = "1.1.196";
+ version = "1.1.202";
src = fetchurl {
- url = "https://registry.npmjs.org/pyright/-/pyright-1.1.196.tgz";
- sha512 = "63LF3JNElRU9wkCLgJLk8NMi4tJ/aB97itckp19zb4g8wXmlc90nyvA5bUk19ey10R4yAmlp8ol8Tz/mxAUmGQ==";
+ url = "https://registry.npmjs.org/pyright/-/pyright-1.1.202.tgz";
+ sha512 = "P3jLqklz+O7RIEMosDEVx9W+EfOtes9UopnGSkLx3S/E12japllf83aaXCvHbxvANWFLZ1ToztgOkYrVcXhYsg==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -114365,7 +114953,7 @@ in
sources."mkdirp-0.5.5"
sources."mute-stream-0.0.8"
sources."ncp-0.4.2"
- sources."object-inspect-1.11.1"
+ sources."object-inspect-1.12.0"
sources."object-is-1.1.5"
sources."object-keys-1.1.1"
sources."object.assign-4.1.2"
@@ -114415,76 +115003,76 @@ in
sha512 = "JQACM+3GgF1vkUH6E6w1k0Qut6IbcfXjU37shGUWM9tIs3F9e/33saXK4G/uSl1kc8qjI+RekAQs/qyjMlUKlg==";
};
dependencies = [
- sources."@babel/cli-7.16.0"
- sources."@babel/code-frame-7.16.0"
+ sources."@babel/cli-7.16.7"
+ sources."@babel/code-frame-7.16.7"
sources."@babel/compat-data-7.16.4"
- (sources."@babel/core-7.16.5" // {
+ (sources."@babel/core-7.16.7" // {
dependencies = [
sources."semver-6.3.0"
];
})
- sources."@babel/generator-7.16.5"
- sources."@babel/helper-annotate-as-pure-7.16.0"
- sources."@babel/helper-builder-binary-assignment-operator-visitor-7.16.5"
- (sources."@babel/helper-compilation-targets-7.16.3" // {
+ sources."@babel/generator-7.16.7"
+ sources."@babel/helper-annotate-as-pure-7.16.7"
+ sources."@babel/helper-builder-binary-assignment-operator-visitor-7.16.7"
+ (sources."@babel/helper-compilation-targets-7.16.7" // {
dependencies = [
sources."semver-6.3.0"
];
})
- sources."@babel/helper-create-class-features-plugin-7.16.5"
- sources."@babel/helper-create-regexp-features-plugin-7.16.0"
+ sources."@babel/helper-create-class-features-plugin-7.16.7"
+ sources."@babel/helper-create-regexp-features-plugin-7.16.7"
(sources."@babel/helper-define-polyfill-provider-0.3.0" // {
dependencies = [
sources."semver-6.3.0"
];
})
- sources."@babel/helper-environment-visitor-7.16.5"
- sources."@babel/helper-explode-assignable-expression-7.16.0"
- sources."@babel/helper-function-name-7.16.0"
- sources."@babel/helper-get-function-arity-7.16.0"
- sources."@babel/helper-hoist-variables-7.16.0"
- sources."@babel/helper-member-expression-to-functions-7.16.5"
- sources."@babel/helper-module-imports-7.16.0"
- sources."@babel/helper-module-transforms-7.16.5"
- sources."@babel/helper-optimise-call-expression-7.16.0"
- sources."@babel/helper-plugin-utils-7.16.5"
- sources."@babel/helper-remap-async-to-generator-7.16.5"
- sources."@babel/helper-replace-supers-7.16.5"
- sources."@babel/helper-simple-access-7.16.0"
+ sources."@babel/helper-environment-visitor-7.16.7"
+ sources."@babel/helper-explode-assignable-expression-7.16.7"
+ sources."@babel/helper-function-name-7.16.7"
+ sources."@babel/helper-get-function-arity-7.16.7"
+ sources."@babel/helper-hoist-variables-7.16.7"
+ sources."@babel/helper-member-expression-to-functions-7.16.7"
+ sources."@babel/helper-module-imports-7.16.7"
+ sources."@babel/helper-module-transforms-7.16.7"
+ sources."@babel/helper-optimise-call-expression-7.16.7"
+ sources."@babel/helper-plugin-utils-7.16.7"
+ sources."@babel/helper-remap-async-to-generator-7.16.7"
+ sources."@babel/helper-replace-supers-7.16.7"
+ sources."@babel/helper-simple-access-7.16.7"
sources."@babel/helper-skip-transparent-expression-wrappers-7.16.0"
- sources."@babel/helper-split-export-declaration-7.16.0"
- sources."@babel/helper-validator-identifier-7.15.7"
- sources."@babel/helper-validator-option-7.14.5"
- sources."@babel/helper-wrap-function-7.16.5"
- sources."@babel/helpers-7.16.5"
- sources."@babel/highlight-7.16.0"
- sources."@babel/parser-7.16.6"
- sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.2"
- sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.0"
- sources."@babel/plugin-proposal-async-generator-functions-7.16.5"
- sources."@babel/plugin-proposal-class-properties-7.16.5"
- sources."@babel/plugin-proposal-class-static-block-7.16.5"
- sources."@babel/plugin-proposal-dynamic-import-7.16.5"
- sources."@babel/plugin-proposal-export-default-from-7.16.5"
- sources."@babel/plugin-proposal-export-namespace-from-7.16.5"
- sources."@babel/plugin-proposal-json-strings-7.16.5"
- sources."@babel/plugin-proposal-logical-assignment-operators-7.16.5"
- sources."@babel/plugin-proposal-nullish-coalescing-operator-7.16.5"
- sources."@babel/plugin-proposal-numeric-separator-7.16.5"
- sources."@babel/plugin-proposal-object-rest-spread-7.16.5"
- sources."@babel/plugin-proposal-optional-catch-binding-7.16.5"
- sources."@babel/plugin-proposal-optional-chaining-7.16.5"
- sources."@babel/plugin-proposal-private-methods-7.16.5"
- sources."@babel/plugin-proposal-private-property-in-object-7.16.5"
- sources."@babel/plugin-proposal-unicode-property-regex-7.16.5"
+ sources."@babel/helper-split-export-declaration-7.16.7"
+ sources."@babel/helper-validator-identifier-7.16.7"
+ sources."@babel/helper-validator-option-7.16.7"
+ sources."@babel/helper-wrap-function-7.16.7"
+ sources."@babel/helpers-7.16.7"
+ sources."@babel/highlight-7.16.7"
+ sources."@babel/parser-7.16.7"
+ sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.7"
+ sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.7"
+ sources."@babel/plugin-proposal-async-generator-functions-7.16.7"
+ sources."@babel/plugin-proposal-class-properties-7.16.7"
+ sources."@babel/plugin-proposal-class-static-block-7.16.7"
+ sources."@babel/plugin-proposal-dynamic-import-7.16.7"
+ sources."@babel/plugin-proposal-export-default-from-7.16.7"
+ sources."@babel/plugin-proposal-export-namespace-from-7.16.7"
+ sources."@babel/plugin-proposal-json-strings-7.16.7"
+ sources."@babel/plugin-proposal-logical-assignment-operators-7.16.7"
+ sources."@babel/plugin-proposal-nullish-coalescing-operator-7.16.7"
+ sources."@babel/plugin-proposal-numeric-separator-7.16.7"
+ sources."@babel/plugin-proposal-object-rest-spread-7.16.7"
+ sources."@babel/plugin-proposal-optional-catch-binding-7.16.7"
+ sources."@babel/plugin-proposal-optional-chaining-7.16.7"
+ sources."@babel/plugin-proposal-private-methods-7.16.7"
+ sources."@babel/plugin-proposal-private-property-in-object-7.16.7"
+ sources."@babel/plugin-proposal-unicode-property-regex-7.16.7"
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.14.5"
sources."@babel/plugin-syntax-dynamic-import-7.8.3"
- sources."@babel/plugin-syntax-export-default-from-7.16.5"
+ sources."@babel/plugin-syntax-export-default-from-7.16.7"
sources."@babel/plugin-syntax-export-namespace-from-7.8.3"
sources."@babel/plugin-syntax-json-strings-7.8.3"
- sources."@babel/plugin-syntax-jsx-7.16.5"
+ sources."@babel/plugin-syntax-jsx-7.16.7"
sources."@babel/plugin-syntax-logical-assignment-operators-7.10.4"
sources."@babel/plugin-syntax-nullish-coalescing-operator-7.8.3"
sources."@babel/plugin-syntax-numeric-separator-7.10.4"
@@ -114493,66 +115081,66 @@ in
sources."@babel/plugin-syntax-optional-chaining-7.8.3"
sources."@babel/plugin-syntax-private-property-in-object-7.14.5"
sources."@babel/plugin-syntax-top-level-await-7.14.5"
- sources."@babel/plugin-transform-arrow-functions-7.16.5"
- sources."@babel/plugin-transform-async-to-generator-7.16.5"
- sources."@babel/plugin-transform-block-scoped-functions-7.16.5"
- sources."@babel/plugin-transform-block-scoping-7.16.5"
- sources."@babel/plugin-transform-classes-7.16.5"
- sources."@babel/plugin-transform-computed-properties-7.16.5"
- sources."@babel/plugin-transform-destructuring-7.16.5"
- sources."@babel/plugin-transform-dotall-regex-7.16.5"
- sources."@babel/plugin-transform-duplicate-keys-7.16.5"
- sources."@babel/plugin-transform-exponentiation-operator-7.16.5"
- sources."@babel/plugin-transform-for-of-7.16.5"
- sources."@babel/plugin-transform-function-name-7.16.5"
- sources."@babel/plugin-transform-literals-7.16.5"
- sources."@babel/plugin-transform-member-expression-literals-7.16.5"
- sources."@babel/plugin-transform-modules-amd-7.16.5"
- sources."@babel/plugin-transform-modules-commonjs-7.16.5"
- sources."@babel/plugin-transform-modules-systemjs-7.16.5"
- sources."@babel/plugin-transform-modules-umd-7.16.5"
- sources."@babel/plugin-transform-named-capturing-groups-regex-7.16.5"
- sources."@babel/plugin-transform-new-target-7.16.5"
- sources."@babel/plugin-transform-object-super-7.16.5"
- sources."@babel/plugin-transform-parameters-7.16.5"
- sources."@babel/plugin-transform-property-literals-7.16.5"
- sources."@babel/plugin-transform-react-display-name-7.16.5"
- sources."@babel/plugin-transform-react-jsx-7.16.5"
- sources."@babel/plugin-transform-react-jsx-development-7.16.5"
- sources."@babel/plugin-transform-react-pure-annotations-7.16.5"
- sources."@babel/plugin-transform-regenerator-7.16.5"
- sources."@babel/plugin-transform-reserved-words-7.16.5"
- (sources."@babel/plugin-transform-runtime-7.16.5" // {
+ sources."@babel/plugin-transform-arrow-functions-7.16.7"
+ sources."@babel/plugin-transform-async-to-generator-7.16.7"
+ sources."@babel/plugin-transform-block-scoped-functions-7.16.7"
+ sources."@babel/plugin-transform-block-scoping-7.16.7"
+ sources."@babel/plugin-transform-classes-7.16.7"
+ sources."@babel/plugin-transform-computed-properties-7.16.7"
+ sources."@babel/plugin-transform-destructuring-7.16.7"
+ sources."@babel/plugin-transform-dotall-regex-7.16.7"
+ sources."@babel/plugin-transform-duplicate-keys-7.16.7"
+ sources."@babel/plugin-transform-exponentiation-operator-7.16.7"
+ sources."@babel/plugin-transform-for-of-7.16.7"
+ sources."@babel/plugin-transform-function-name-7.16.7"
+ sources."@babel/plugin-transform-literals-7.16.7"
+ sources."@babel/plugin-transform-member-expression-literals-7.16.7"
+ sources."@babel/plugin-transform-modules-amd-7.16.7"
+ sources."@babel/plugin-transform-modules-commonjs-7.16.7"
+ sources."@babel/plugin-transform-modules-systemjs-7.16.7"
+ sources."@babel/plugin-transform-modules-umd-7.16.7"
+ sources."@babel/plugin-transform-named-capturing-groups-regex-7.16.7"
+ sources."@babel/plugin-transform-new-target-7.16.7"
+ sources."@babel/plugin-transform-object-super-7.16.7"
+ sources."@babel/plugin-transform-parameters-7.16.7"
+ sources."@babel/plugin-transform-property-literals-7.16.7"
+ sources."@babel/plugin-transform-react-display-name-7.16.7"
+ sources."@babel/plugin-transform-react-jsx-7.16.7"
+ sources."@babel/plugin-transform-react-jsx-development-7.16.7"
+ sources."@babel/plugin-transform-react-pure-annotations-7.16.7"
+ sources."@babel/plugin-transform-regenerator-7.16.7"
+ sources."@babel/plugin-transform-reserved-words-7.16.7"
+ (sources."@babel/plugin-transform-runtime-7.16.7" // {
dependencies = [
sources."semver-6.3.0"
];
})
- sources."@babel/plugin-transform-shorthand-properties-7.16.5"
- sources."@babel/plugin-transform-spread-7.16.5"
- sources."@babel/plugin-transform-sticky-regex-7.16.5"
- sources."@babel/plugin-transform-template-literals-7.16.5"
- sources."@babel/plugin-transform-typeof-symbol-7.16.5"
- sources."@babel/plugin-transform-unicode-escapes-7.16.5"
- sources."@babel/plugin-transform-unicode-regex-7.16.5"
- (sources."@babel/preset-env-7.16.5" // {
+ sources."@babel/plugin-transform-shorthand-properties-7.16.7"
+ sources."@babel/plugin-transform-spread-7.16.7"
+ sources."@babel/plugin-transform-sticky-regex-7.16.7"
+ sources."@babel/plugin-transform-template-literals-7.16.7"
+ sources."@babel/plugin-transform-typeof-symbol-7.16.7"
+ sources."@babel/plugin-transform-unicode-escapes-7.16.7"
+ sources."@babel/plugin-transform-unicode-regex-7.16.7"
+ (sources."@babel/preset-env-7.16.7" // {
dependencies = [
sources."semver-6.3.0"
];
})
sources."@babel/preset-modules-0.1.5"
- sources."@babel/preset-react-7.16.5"
+ sources."@babel/preset-react-7.16.7"
sources."@babel/preset-stage-0-7.8.3"
- sources."@babel/register-7.16.5"
- sources."@babel/runtime-7.16.5"
- sources."@babel/template-7.16.0"
- sources."@babel/traverse-7.16.5"
- sources."@babel/types-7.16.0"
+ sources."@babel/register-7.16.7"
+ sources."@babel/runtime-7.16.7"
+ sources."@babel/template-7.16.7"
+ sources."@babel/traverse-7.16.7"
+ sources."@babel/types-7.16.7"
sources."@reach/router-1.3.4"
sources."@sindresorhus/is-0.7.0"
sources."@types/glob-7.2.0"
sources."@types/json-schema-7.0.9"
sources."@types/minimatch-3.0.5"
- sources."@types/node-17.0.0"
+ sources."@types/node-17.0.6"
sources."@types/parse-json-4.0.0"
sources."@types/q-1.5.5"
sources."@webassemblyjs/ast-1.9.0"
@@ -114678,9 +115266,9 @@ in
sources."blob-0.0.5"
sources."bluebird-3.7.2"
sources."bn.js-5.2.0"
- (sources."body-parser-1.19.0" // {
+ (sources."body-parser-1.19.1" // {
dependencies = [
- sources."bytes-3.1.0"
+ sources."bytes-3.1.1"
sources."debug-2.6.9"
sources."ms-2.0.0"
];
@@ -114744,7 +115332,7 @@ in
sources."camel-case-3.0.0"
sources."camelcase-5.3.1"
sources."caniuse-api-3.0.0"
- sources."caniuse-lite-1.0.30001287"
+ sources."caniuse-lite-1.0.30001294"
sources."case-sensitive-paths-webpack-plugin-2.4.0"
sources."caw-2.0.1"
sources."chalk-2.4.2"
@@ -114828,7 +115416,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.20.0" // {
+ (sources."core-js-compat-3.20.2" // {
dependencies = [
sources."semver-7.0.0"
];
@@ -114972,7 +115560,7 @@ in
sources."duplexify-3.7.1"
sources."ee-first-1.1.1"
sources."ejs-2.7.4"
- sources."electron-to-chromium-1.4.21"
+ sources."electron-to-chromium-1.4.31"
(sources."elliptic-6.5.4" // {
dependencies = [
sources."bn.js-4.12.0"
@@ -115043,14 +115631,13 @@ in
sources."ms-2.0.0"
];
})
- (sources."express-4.17.1" // {
+ (sources."express-4.17.2" // {
dependencies = [
- sources."content-disposition-0.5.3"
- sources."cookie-0.4.0"
sources."debug-2.6.9"
sources."ms-2.0.0"
sources."path-to-regexp-0.1.7"
sources."range-parser-1.2.1"
+ sources."safe-buffer-5.2.1"
];
})
sources."ext-list-2.2.2"
@@ -115209,11 +115796,7 @@ in
})
sources."http-cache-semantics-3.8.1"
sources."http-deceiver-1.2.7"
- (sources."http-errors-1.7.2" // {
- dependencies = [
- sources."inherits-2.0.3"
- ];
- })
+ sources."http-errors-1.8.1"
sources."http-parser-js-0.5.5"
sources."http-proxy-1.18.1"
sources."http-proxy-middleware-0.19.1"
@@ -115447,7 +116030,7 @@ in
sources."kind-of-3.2.2"
];
})
- sources."object-inspect-1.11.1"
+ sources."object-inspect-1.12.0"
sources."object-is-1.1.5"
sources."object-keys-1.1.1"
sources."object-visit-1.0.1"
@@ -115638,7 +116221,7 @@ in
sources."postcss-value-parser-3.3.1"
];
})
- sources."postcss-selector-parser-6.0.7"
+ sources."postcss-selector-parser-6.0.8"
(sources."postcss-svgo-4.0.3" // {
dependencies = [
sources."postcss-value-parser-3.3.1"
@@ -115652,7 +116235,7 @@ in
sources."process-nextick-args-2.0.1"
sources."progress-2.0.3"
sources."promise-inflight-1.0.1"
- sources."prop-types-15.7.2"
+ sources."prop-types-15.8.0"
sources."proto-list-1.2.4"
sources."proxy-addr-2.0.7"
sources."prr-1.0.1"
@@ -115666,7 +116249,7 @@ in
sources."pumpify-1.5.1"
sources."punycode-2.1.1"
sources."q-1.5.1"
- sources."qs-6.7.0"
+ sources."qs-6.9.6"
sources."query-string-5.1.1"
sources."querystring-0.2.0"
sources."querystring-es3-0.2.1"
@@ -115675,9 +116258,9 @@ in
sources."randombytes-2.1.0"
sources."randomfill-1.0.4"
sources."range-parser-1.2.0"
- (sources."raw-body-2.4.0" // {
+ (sources."raw-body-2.4.2" // {
dependencies = [
- sources."bytes-3.1.0"
+ sources."bytes-3.1.1"
];
})
sources."raw-loader-3.1.0"
@@ -115710,7 +116293,7 @@ in
(sources."renderkid-2.0.7" // {
dependencies = [
sources."ansi-regex-2.1.1"
- sources."css-select-4.2.0"
+ sources."css-select-4.2.1"
sources."css-what-5.1.0"
sources."dom-serializer-1.3.2"
sources."domelementtype-2.2.0"
@@ -115756,7 +116339,7 @@ in
sources."select-hose-2.0.0"
sources."selfsigned-1.10.11"
sources."semver-5.7.1"
- (sources."send-0.17.1" // {
+ (sources."send-0.17.2" // {
dependencies = [
(sources."debug-2.6.9" // {
dependencies = [
@@ -115764,7 +116347,7 @@ in
];
})
sources."mime-1.6.0"
- sources."ms-2.1.1"
+ sources."ms-2.1.3"
sources."range-parser-1.2.1"
];
})
@@ -115792,7 +116375,7 @@ in
sources."setprototypeof-1.1.0"
];
})
- sources."serve-static-1.14.1"
+ sources."serve-static-1.14.2"
sources."set-blocking-2.0.0"
(sources."set-value-2.0.1" // {
dependencies = [
@@ -115800,7 +116383,7 @@ in
];
})
sources."setimmediate-1.0.5"
- sources."setprototypeof-1.1.1"
+ sources."setprototypeof-1.2.0"
sources."sha.js-2.4.11"
sources."shallow-clone-3.0.1"
sources."shebang-command-1.2.0"
@@ -115986,7 +116569,7 @@ in
})
sources."to-regex-3.0.2"
sources."to-regex-range-5.0.1"
- sources."toidentifier-1.0.0"
+ sources."toidentifier-1.0.1"
sources."toposort-1.0.7"
sources."trim-repeated-1.0.0"
sources."tryer-1.0.1"
@@ -116037,7 +116620,7 @@ in
];
})
sources."url-loader-2.3.0"
- sources."url-parse-1.5.3"
+ sources."url-parse-1.5.4"
sources."url-parse-lax-3.0.0"
sources."url-to-options-1.0.1"
sources."use-3.1.1"
@@ -116232,16 +116815,16 @@ in
readability-cli = nodeEnv.buildNodePackage {
name = "readability-cli";
packageName = "readability-cli";
- version = "2.3.4";
+ version = "2.3.5";
src = fetchurl {
- url = "https://registry.npmjs.org/readability-cli/-/readability-cli-2.3.4.tgz";
- sha512 = "88OPL2Gj8qWx/GWS0dgxJkArT/kcnfFMgW+duBBSGXbvdWG6CEIUY4602e41OVLtDAmT3xo4cdj3PhmQxgAa6g==";
+ url = "https://registry.npmjs.org/readability-cli/-/readability-cli-2.3.5.tgz";
+ sha512 = "xSnTf4ik+hAY57CKk7lWvtumDbvfDKEHrzveXbIeoaLhEDE2+7qfjgrCK0DcCLFRfOKS6rsrYEZewfOYU+YfpQ==";
};
dependencies = [
sources."@mozilla/readability-0.4.1"
sources."@tootallnate/once-2.0.0"
sources."abab-2.0.5"
- sources."acorn-8.6.0"
+ sources."acorn-8.7.0"
(sources."acorn-globals-6.0.0" // {
dependencies = [
sources."acorn-7.4.1"
@@ -116285,7 +116868,7 @@ in
sources."iconv-lite-0.6.3"
sources."is-fullwidth-code-point-3.0.0"
sources."is-potential-custom-element-name-1.0.1"
- sources."jsdom-18.1.1"
+ sources."jsdom-19.0.0"
sources."levn-0.3.0"
sources."mime-db-1.51.0"
sources."mime-types-2.1.34"
@@ -116315,11 +116898,11 @@ in
sources."whatwg-url-10.0.0"
sources."word-wrap-1.2.3"
sources."wrap-ansi-7.0.0"
- sources."ws-8.3.0"
+ sources."ws-8.4.0"
sources."xml-name-validator-4.0.0"
sources."xmlchars-2.2.0"
sources."y18n-5.0.8"
- sources."yargs-17.3.0"
+ sources."yargs-17.3.1"
sources."yargs-parser-21.0.0"
];
buildInputs = globalBuildInputs;
@@ -116341,36 +116924,36 @@ in
sha512 = "eRGRmAKPvm8ozCb8TxaBlHF0BjeFOXYUKDTx7RD3ABkPKsDamle776GwMrrf1ojgl5i+RSSJfP62k1gTP7Owaw==";
};
dependencies = [
- sources."@babel/code-frame-7.16.0"
- (sources."@babel/generator-7.16.5" // {
+ sources."@babel/code-frame-7.16.7"
+ (sources."@babel/generator-7.16.7" // {
dependencies = [
sources."source-map-0.5.7"
];
})
- sources."@babel/helper-annotate-as-pure-7.16.0"
- sources."@babel/helper-environment-visitor-7.16.5"
- sources."@babel/helper-function-name-7.16.0"
- sources."@babel/helper-get-function-arity-7.16.0"
- sources."@babel/helper-hoist-variables-7.16.0"
- sources."@babel/helper-module-imports-7.16.0"
- sources."@babel/helper-split-export-declaration-7.16.0"
- sources."@babel/helper-validator-identifier-7.15.7"
- sources."@babel/highlight-7.16.0"
- sources."@babel/parser-7.16.6"
- sources."@babel/runtime-7.16.5"
- sources."@babel/template-7.16.0"
- sources."@babel/traverse-7.16.5"
- sources."@babel/types-7.16.0"
+ sources."@babel/helper-annotate-as-pure-7.16.7"
+ sources."@babel/helper-environment-visitor-7.16.7"
+ sources."@babel/helper-function-name-7.16.7"
+ sources."@babel/helper-get-function-arity-7.16.7"
+ sources."@babel/helper-hoist-variables-7.16.7"
+ sources."@babel/helper-module-imports-7.16.7"
+ sources."@babel/helper-split-export-declaration-7.16.7"
+ sources."@babel/helper-validator-identifier-7.16.7"
+ sources."@babel/highlight-7.16.7"
+ sources."@babel/parser-7.16.7"
+ sources."@babel/runtime-7.16.7"
+ sources."@babel/template-7.16.7"
+ sources."@babel/traverse-7.16.7"
+ sources."@babel/types-7.16.7"
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.6"
sources."@redocly/ajv-8.6.4"
- sources."@redocly/openapi-core-1.0.0-beta.73"
+ sources."@redocly/openapi-core-1.0.0-beta.76"
sources."@redocly/react-dropdown-aria-2.0.12"
sources."@types/json-schema-7.0.9"
- sources."@types/node-14.18.0"
+ sources."@types/node-14.18.4"
sources."ansi-regex-5.0.1"
sources."ansi-styles-3.2.1"
sources."anymatch-3.1.2"
@@ -116516,9 +117099,9 @@ in
sources."minimatch-3.0.4"
sources."minimist-1.2.5"
sources."mkdirp-1.0.4"
- sources."mobx-6.3.9"
+ sources."mobx-6.3.10"
sources."mobx-react-7.2.1"
- sources."mobx-react-lite-3.2.2"
+ sources."mobx-react-lite-3.2.3"
sources."ms-2.1.2"
sources."neo-async-2.6.2"
sources."node-fetch-2.6.6"
@@ -116546,7 +117129,7 @@ in
sources."prismjs-1.25.0"
sources."process-0.11.10"
sources."process-nextick-args-2.0.1"
- sources."prop-types-15.7.2"
+ sources."prop-types-15.8.0"
(sources."public-encrypt-4.0.3" // {
dependencies = [
sources."bn.js-4.12.0"
@@ -116642,7 +117225,7 @@ in
sources."y18n-5.0.8"
sources."yaml-1.10.2"
sources."yaml-ast-parser-0.0.43"
- sources."yargs-17.3.0"
+ sources."yargs-17.3.1"
sources."yargs-parser-21.0.0"
];
buildInputs = globalBuildInputs;
@@ -116748,7 +117331,7 @@ in
sources."path-parse-1.0.7"
sources."path-type-3.0.0"
sources."pify-3.0.0"
- sources."prop-types-15.7.2"
+ sources."prop-types-15.8.0"
sources."quick-lru-1.1.0"
sources."react-16.14.0"
sources."react-is-16.13.1"
@@ -117131,10 +117714,10 @@ in
rollup = nodeEnv.buildNodePackage {
name = "rollup";
packageName = "rollup";
- version = "2.61.1";
+ version = "2.62.0";
src = fetchurl {
- url = "https://registry.npmjs.org/rollup/-/rollup-2.61.1.tgz";
- sha512 = "BbTXlEvB8d+XFbK/7E5doIcRtxWPRiqr0eb5vQ0+2paMM04Ye4PZY5nHOQef2ix24l/L0SpLd5hwcH15QHPdvA==";
+ url = "https://registry.npmjs.org/rollup/-/rollup-2.62.0.tgz";
+ sha512 = "cJEQq2gwB0GWMD3rYImefQTSjrPYaC6s4J9pYqnstVLJ1CHa/aZNVkD4Epuvg4iLeMA4KRiq7UM7awKK6j7jcw==";
};
dependencies = [
sources."fsevents-2.3.2"
@@ -117156,8 +117739,8 @@ in
src = ../../misc/vscode-extensions/rust-analyzer/build-deps;
dependencies = [
sources."@babel/code-frame-7.12.11"
- sources."@babel/helper-validator-identifier-7.15.7"
- (sources."@babel/highlight-7.16.0" // {
+ sources."@babel/helper-validator-identifier-7.16.7"
+ (sources."@babel/highlight-7.16.7" // {
dependencies = [
sources."chalk-2.4.2"
sources."escape-string-regexp-1.0.5"
@@ -117252,7 +117835,7 @@ in
sources."console-control-strings-1.1.0"
sources."core-util-is-1.0.3"
sources."cross-spawn-7.0.3"
- sources."css-select-4.2.0"
+ sources."css-select-4.2.1"
sources."css-what-5.1.0"
sources."d3-7.2.1"
sources."d3-array-3.1.1"
@@ -117415,7 +117998,7 @@ in
sources."https-proxy-agent-5.0.0"
sources."iconv-lite-0.6.3"
sources."ieee754-1.2.1"
- sources."ignore-5.1.9"
+ sources."ignore-5.2.0"
sources."import-fresh-3.3.0"
sources."imurmurhash-0.1.4"
sources."inflight-1.0.6"
@@ -117494,7 +118077,7 @@ in
sources."nth-check-2.0.1"
sources."number-is-nan-1.0.1"
sources."object-assign-4.1.1"
- sources."object-inspect-1.11.1"
+ sources."object-inspect-1.12.0"
sources."once-1.4.0"
sources."optionator-0.9.1"
sources."os-homedir-1.0.2"
@@ -117758,7 +118341,7 @@ in
sources."node-uuid-1.4.1"
sources."node-wsfederation-0.1.1"
sources."oauth-https://github.com/ciaranj/node-oauth/tarball/master"
- sources."object-inspect-1.11.1"
+ sources."object-inspect-1.12.0"
(sources."openid-2.0.10" // {
dependencies = [
sources."qs-6.10.2"
@@ -117791,10 +118374,10 @@ in
sass = nodeEnv.buildNodePackage {
name = "sass";
packageName = "sass";
- version = "1.45.0";
+ version = "1.45.2";
src = fetchurl {
- url = "https://registry.npmjs.org/sass/-/sass-1.45.0.tgz";
- sha512 = "ONy5bjppoohtNkFJRqdz1gscXamMzN3wQy1YH9qO2FiNpgjLhpz/IPRGg0PpCjyz/pWfCOaNEaiEGCcjOFAjqw==";
+ url = "https://registry.npmjs.org/sass/-/sass-1.45.2.tgz";
+ sha512 = "cKfs+F9AMPAFlbbTXNsbGvg3y58nV0mXA3E94jqaySKcC8Kq3/8983zVKQ0TLMUrHw7hF9Tnd3Bz9z5Xgtrl9g==";
};
dependencies = [
sources."anymatch-3.1.2"
@@ -117971,10 +118554,10 @@ in
serverless = nodeEnv.buildNodePackage {
name = "serverless";
packageName = "serverless";
- version = "2.69.1";
+ version = "2.70.0";
src = fetchurl {
- url = "https://registry.npmjs.org/serverless/-/serverless-2.69.1.tgz";
- sha512 = "pHHr8l6BDDzHIcFqdXDNGIrEbtcm4Lf0dlE3nuHVvmADET+rdl5aOWem9JaHA75cyICybm8oj8FhhtJIt5Uotw==";
+ url = "https://registry.npmjs.org/serverless/-/serverless-2.70.0.tgz";
+ sha512 = "NoaaylJFgDhbEWLashrerle8jx35b6iGdF3s+gYOzj8wvLhMOF3rfWzeKNyCBVXC0syx1Q5aYgaYVHUMzXzmSw==";
};
dependencies = [
sources."2-thenable-1.0.0"
@@ -118032,7 +118615,7 @@ in
sources."semver-6.3.0"
];
})
- sources."@serverless/dashboard-plugin-5.5.1"
+ sources."@serverless/dashboard-plugin-5.5.2"
sources."@serverless/event-mocks-1.1.1"
(sources."@serverless/platform-client-4.3.0" // {
dependencies = [
@@ -118047,7 +118630,7 @@ in
];
})
sources."@serverless/template-1.1.4"
- (sources."@serverless/utils-5.20.1" // {
+ (sources."@serverless/utils-5.20.2" // {
dependencies = [
sources."get-stream-6.0.1"
sources."has-flag-4.0.0"
@@ -118066,8 +118649,8 @@ in
sources."@types/keyv-3.1.3"
sources."@types/lodash-4.14.178"
sources."@types/long-4.0.1"
- sources."@types/node-17.0.0"
- sources."@types/request-2.48.7"
+ sources."@types/node-17.0.6"
+ sources."@types/request-2.48.8"
sources."@types/request-promise-native-1.0.18"
sources."@types/responselike-1.0.0"
sources."@types/tough-cookie-4.0.1"
@@ -118126,7 +118709,7 @@ in
sources."async-2.6.3"
sources."asynckit-0.4.0"
sources."at-least-node-1.0.0"
- (sources."aws-sdk-2.1046.0" // {
+ (sources."aws-sdk-2.1048.0" // {
dependencies = [
sources."buffer-4.9.2"
sources."ieee754-1.1.13"
@@ -118211,9 +118794,9 @@ in
sources."cli-color-2.0.1"
sources."cli-cursor-3.1.0"
sources."cli-progress-footer-2.3.0"
- (sources."cli-sprintf-format-1.1.0" // {
+ (sources."cli-sprintf-format-1.1.1" // {
dependencies = [
- sources."cli-color-1.4.0"
+ sources."supports-color-6.1.0"
];
})
sources."cli-width-3.0.0"
@@ -118324,7 +118907,7 @@ in
sources."escape-string-regexp-1.0.5"
sources."esniff-1.1.0"
sources."esprima-4.0.1"
- sources."essentials-1.1.1"
+ sources."essentials-1.2.0"
sources."event-emitter-0.3.5"
sources."events-1.1.1"
sources."exit-on-epipe-1.0.1"
@@ -118418,7 +119001,7 @@ in
})
sources."iconv-lite-0.4.24"
sources."ieee754-1.2.1"
- sources."ignore-5.1.9"
+ sources."ignore-5.2.0"
sources."immediate-3.0.6"
sources."imurmurhash-0.1.4"
sources."indexof-0.0.1"
@@ -118499,7 +119082,7 @@ in
sources."lodash.isplainobject-4.0.6"
sources."lodash.union-4.6.0"
sources."log-6.3.1"
- (sources."log-node-8.0.2" // {
+ (sources."log-node-8.0.3" // {
dependencies = [
sources."ansi-regex-5.0.1"
sources."has-flag-4.0.0"
@@ -118875,8 +119458,8 @@ in
sources."bcrypt-pbkdf-1.0.2"
sources."better-assert-1.0.2"
sources."blob-0.0.2"
- sources."body-parser-1.19.0"
- sources."bytes-3.1.0"
+ sources."body-parser-1.19.1"
+ sources."bytes-3.1.1"
sources."callsite-1.0.0"
sources."caseless-0.12.0"
sources."cheerio-0.17.0"
@@ -118885,9 +119468,9 @@ in
sources."component-bind-1.0.0"
sources."component-emitter-1.1.2"
sources."component-inherit-0.0.3"
- sources."content-disposition-0.5.3"
+ sources."content-disposition-0.5.4"
sources."content-type-1.0.4"
- sources."cookie-0.4.0"
+ sources."cookie-0.4.1"
sources."cookie-signature-1.0.6"
sources."core-util-is-1.0.3"
sources."dashdash-1.14.1"
@@ -118923,7 +119506,7 @@ in
sources."escape-html-1.0.3"
sources."etag-1.8.1"
sources."event-stream-3.3.5"
- sources."express-4.17.1"
+ sources."express-4.17.2"
sources."extend-3.0.2"
sources."extsprintf-1.3.0"
sources."fast-deep-equal-3.1.3"
@@ -118946,11 +119529,7 @@ in
sources."entities-1.0.0"
];
})
- (sources."http-errors-1.7.2" // {
- dependencies = [
- sources."inherits-2.0.3"
- ];
- })
+ sources."http-errors-1.8.1"
sources."http-signature-1.2.0"
sources."iconv-lite-0.4.24"
sources."indexof-0.0.1"
@@ -118996,9 +119575,9 @@ in
sources."proxy-addr-2.0.7"
sources."psl-1.8.0"
sources."punycode-2.1.1"
- sources."qs-6.7.0"
+ sources."qs-6.9.6"
sources."range-parser-1.2.1"
- sources."raw-body-2.4.0"
+ sources."raw-body-2.4.2"
sources."read-1.0.7"
sources."readable-stream-1.1.14"
(sources."request-2.88.2" // {
@@ -119006,15 +119585,15 @@ in
sources."qs-6.5.2"
];
})
- sources."safe-buffer-5.1.2"
+ sources."safe-buffer-5.2.1"
sources."safer-buffer-2.1.2"
- (sources."send-0.17.1" // {
+ (sources."send-0.17.2" // {
dependencies = [
- sources."ms-2.1.1"
+ sources."ms-2.1.3"
];
})
- sources."serve-static-1.14.1"
- sources."setprototypeof-1.1.1"
+ sources."serve-static-1.14.2"
+ sources."setprototypeof-1.2.0"
sources."slate-irc-0.7.3"
(sources."slate-irc-parser-0.0.2" // {
dependencies = [
@@ -119051,7 +119630,7 @@ in
sources."through-2.3.8"
sources."tinycolor-0.0.1"
sources."to-array-0.1.3"
- sources."toidentifier-1.0.0"
+ sources."toidentifier-1.0.1"
sources."tough-cookie-2.5.0"
sources."tunnel-agent-0.6.0"
sources."tweetnacl-0.14.5"
@@ -119480,10 +120059,10 @@ in
snyk = nodeEnv.buildNodePackage {
name = "snyk";
packageName = "snyk";
- version = "1.794.0";
+ version = "1.813.0";
src = fetchurl {
- url = "https://registry.npmjs.org/snyk/-/snyk-1.794.0.tgz";
- sha512 = "o2SVajU3FKSn2n56NsCRDroENk4r0GVKX1+++Zle2hPKILNaLZVwtcPAN1NqTFl9WBFAAzcbYzq8ltLopdcADg==";
+ url = "https://registry.npmjs.org/snyk/-/snyk-1.813.0.tgz";
+ sha512 = "zkDSNxlbB3E4LWh9YB21sGJDd3EcvxX069jWB5qWw8hDeeLMZwyCTwsuYkqeZI1djroT4n+nO9A2jiGoIGasjA==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -119507,7 +120086,7 @@ in
sources."@types/component-emitter-1.2.11"
sources."@types/cookie-0.4.1"
sources."@types/cors-2.8.12"
- sources."@types/node-17.0.0"
+ sources."@types/node-17.0.6"
sources."accepts-1.3.7"
sources."base64-arraybuffer-1.0.1"
sources."base64id-2.0.0"
@@ -119546,9 +120125,9 @@ in
sha512 = "CIlLQsG8ffQ2B+2A/s3rXiaTXDWlEKBMya64ajzDcpDZ8bpB5dOyznWQJB+lyUn6/lJ8P+5xe4jKO60S6yLoMw==";
};
dependencies = [
- sources."@babel/code-frame-7.16.0"
- sources."@babel/helper-validator-identifier-7.15.7"
- (sources."@babel/highlight-7.16.0" // {
+ sources."@babel/code-frame-7.16.7"
+ sources."@babel/helper-validator-identifier-7.16.7"
+ (sources."@babel/highlight-7.16.7" // {
dependencies = [
sources."ansi-styles-3.2.1"
sources."chalk-2.4.2"
@@ -120055,7 +120634,7 @@ in
sources."isarray-1.0.0"
sources."isexe-2.0.0"
sources."isobject-2.1.0"
- (sources."jitdb-4.0.0" // {
+ (sources."jitdb-4.0.1" // {
dependencies = [
sources."mkdirp-1.0.4"
sources."push-stream-11.0.1"
@@ -120469,7 +121048,7 @@ in
];
})
sources."ssb-db-19.2.0"
- (sources."ssb-db2-2.8.3" // {
+ (sources."ssb-db2-2.8.5" // {
dependencies = [
sources."abstract-leveldown-6.2.3"
(sources."flumecodec-0.0.1" // {
@@ -120525,14 +121104,14 @@ in
sources."ssb-replicate-1.3.3"
sources."ssb-typescript-2.5.0"
sources."ssb-unix-socket-1.0.0"
- sources."ssb-uri2-1.5.2"
+ sources."ssb-uri2-1.6.0"
(sources."ssb-validate-4.1.4" // {
dependencies = [
sources."ssb-keys-8.2.0"
];
})
sources."ssb-validate2-0.1.2"
- sources."ssb-validate2-rsjs-node-1.0.3"
+ sources."ssb-validate2-rsjs-node-1.0.4"
sources."ssb-ws-6.2.3"
sources."stack-0.1.0"
(sources."static-extend-0.1.2" // {
@@ -120618,7 +121197,7 @@ in
})
sources."untildify-2.1.0"
sources."urix-0.1.0"
- sources."url-parse-1.5.3"
+ sources."url-parse-1.5.4"
sources."use-3.1.1"
sources."user-home-2.0.0"
sources."utf8-byte-length-1.0.4"
@@ -120737,7 +121316,7 @@ in
sources."async-1.5.2"
sources."async-limiter-1.0.1"
sources."asynckit-0.4.0"
- (sources."aws-sdk-2.1046.0" // {
+ (sources."aws-sdk-2.1048.0" // {
dependencies = [
sources."uuid-3.3.2"
];
@@ -120814,7 +121393,11 @@ in
})
sources."config-1.31.0"
sources."constantinople-3.1.2"
- sources."content-disposition-0.5.3"
+ (sources."content-disposition-0.5.4" // {
+ dependencies = [
+ sources."safe-buffer-5.2.1"
+ ];
+ })
sources."content-type-1.0.4"
sources."convert-to-ecmascript-compatible-varname-0.1.5"
sources."cookie-0.4.0"
@@ -120903,18 +121486,12 @@ in
sources."cross-spawn-6.0.5"
];
})
- (sources."express-4.17.1" // {
+ (sources."express-4.17.2" // {
dependencies = [
- sources."body-parser-1.19.0"
- sources."bytes-3.1.0"
- sources."http-errors-1.7.2"
- sources."inherits-2.0.3"
+ sources."cookie-0.4.1"
sources."proxy-addr-2.0.7"
- sources."qs-6.7.0"
- sources."raw-body-2.4.0"
- sources."serve-static-1.14.1"
- sources."setprototypeof-1.1.1"
- sources."toidentifier-1.0.0"
+ sources."qs-6.9.6"
+ sources."safe-buffer-5.2.1"
];
})
(sources."express-validator-2.21.0" // {
@@ -121130,7 +121707,7 @@ in
sources."oauth-sign-0.8.2"
sources."object-assign-4.1.1"
sources."object-hash-0.3.0"
- sources."object-inspect-1.11.1"
+ sources."object-inspect-1.12.0"
sources."on-finished-2.3.0"
sources."on-headers-1.0.2"
sources."once-1.4.0"
@@ -121260,25 +121837,14 @@ in
sources."safer-buffer-2.1.2"
sources."sax-1.2.1"
sources."semver-5.7.1"
- (sources."send-0.17.1" // {
- dependencies = [
- sources."http-errors-1.7.3"
- sources."ms-2.1.1"
- sources."setprototypeof-1.1.1"
- sources."toidentifier-1.0.0"
- ];
- })
+ sources."send-0.17.2"
(sources."serve-favicon-2.5.0" // {
dependencies = [
sources."ms-2.1.1"
sources."safe-buffer-5.1.1"
];
})
- (sources."serve-static-1.14.2" // {
- dependencies = [
- sources."send-0.17.2"
- ];
- })
+ sources."serve-static-1.14.2"
sources."set-blocking-2.0.0"
sources."setprototypeof-1.2.0"
sources."shebang-command-1.2.0"
@@ -121527,15 +122093,15 @@ in
stylelint = nodeEnv.buildNodePackage {
name = "stylelint";
packageName = "stylelint";
- version = "14.1.0";
+ version = "14.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/stylelint/-/stylelint-14.1.0.tgz";
- sha512 = "IedkssuNVA11+v++2PIV2OHOU5A3SfRcXVi56vZVSsMhGrgtwmmit69jeM+08/Tun5DTBe7BuH1Zp1mMLmtKLA==";
+ url = "https://registry.npmjs.org/stylelint/-/stylelint-14.2.0.tgz";
+ sha512 = "i0DrmDXFNpDsWiwx6SPRs4/pyw4kvZgqpDGvsTslQMY7hpUl6r33aQvNSn6cnTg2wtZ9rreFElI7XAKpOWi1vQ==";
};
dependencies = [
- sources."@babel/code-frame-7.16.0"
- sources."@babel/helper-validator-identifier-7.15.7"
- sources."@babel/highlight-7.16.0"
+ sources."@babel/code-frame-7.16.7"
+ sources."@babel/helper-validator-identifier-7.16.7"
+ sources."@babel/highlight-7.16.7"
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
@@ -121562,6 +122128,7 @@ in
sources."clone-regexp-2.2.0"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
+ sources."colord-2.9.2"
sources."concat-map-0.0.1"
sources."cosmiconfig-7.0.1"
sources."cssesc-3.0.0"
@@ -121600,7 +122167,7 @@ in
sources."has-flag-3.0.0"
sources."hosted-git-info-4.0.2"
sources."html-tags-3.1.0"
- sources."ignore-5.1.9"
+ sources."ignore-5.2.0"
(sources."import-fresh-3.3.0" // {
dependencies = [
sources."resolve-from-4.0.0"
@@ -121627,7 +122194,7 @@ in
sources."json-parse-even-better-errors-2.3.1"
sources."json-schema-traverse-1.0.0"
sources."kind-of-6.0.3"
- sources."known-css-properties-0.23.0"
+ sources."known-css-properties-0.24.0"
sources."lines-and-columns-1.2.4"
sources."locate-path-5.0.0"
sources."lodash.truncate-4.4.2"
@@ -121661,7 +122228,7 @@ in
sources."postcss-media-query-parser-0.2.3"
sources."postcss-resolve-nested-selector-0.1.1"
sources."postcss-safe-parser-6.0.0"
- sources."postcss-selector-parser-6.0.7"
+ sources."postcss-selector-parser-6.0.8"
sources."postcss-value-parser-4.2.0"
sources."punycode-2.1.1"
sources."queue-microtask-1.2.3"
@@ -121737,17 +122304,17 @@ in
svelte-check = nodeEnv.buildNodePackage {
name = "svelte-check";
packageName = "svelte-check";
- version = "2.2.10";
+ version = "2.2.11";
src = fetchurl {
- url = "https://registry.npmjs.org/svelte-check/-/svelte-check-2.2.10.tgz";
- sha512 = "UVLd/N7hUIG2v6dytofsw8MxYn2iS2hpNSglsGz9Z9b8ZfbJ5jayl4Mm1SXhNwiFs5aklG90zSBJtd7NTK8dTg==";
+ url = "https://registry.npmjs.org/svelte-check/-/svelte-check-2.2.11.tgz";
+ sha512 = "clotPGGZPj3LuS9qP1lk+Wwnsj+js42ehCPmHk+qtyaQh/dU95e0qkpPmtmOMYHN6My5Y75XqeN1QNLj5V5gwA==";
};
dependencies = [
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
- sources."@types/node-17.0.0"
- sources."@types/pug-2.0.5"
+ sources."@types/node-17.0.6"
+ sources."@types/pug-2.0.6"
sources."@types/sass-1.43.1"
sources."ansi-styles-4.3.0"
sources."anymatch-3.1.2"
@@ -121799,14 +122366,14 @@ in
sources."reusify-1.0.4"
sources."rimraf-2.7.1"
sources."run-parallel-1.2.0"
- sources."sade-1.7.4"
+ sources."sade-1.8.0"
sources."sander-0.5.1"
sources."sorcery-0.10.0"
sources."source-map-0.7.3"
sources."sourcemap-codec-1.4.8"
sources."strip-indent-3.0.0"
sources."supports-color-7.2.0"
- sources."svelte-preprocess-4.10.0"
+ sources."svelte-preprocess-4.10.1"
sources."to-regex-range-5.0.1"
sources."typescript-4.5.4"
sources."wrappy-1.0.2"
@@ -121824,10 +122391,10 @@ in
svelte-language-server = nodeEnv.buildNodePackage {
name = "svelte-language-server";
packageName = "svelte-language-server";
- version = "0.14.15";
+ version = "0.14.16";
src = fetchurl {
- url = "https://registry.npmjs.org/svelte-language-server/-/svelte-language-server-0.14.15.tgz";
- sha512 = "3FK3YzCT8fE+bL+o1VvJ61bgohpex2k3tnfgyP4fxruDPUv2qWAtdoJeS1JKqe6Y44SD6m/V7qN/HYmGmIMntQ==";
+ url = "https://registry.npmjs.org/svelte-language-server/-/svelte-language-server-0.14.16.tgz";
+ sha512 = "Bp6giaD+06WFpbqk8QQk97PJLFXurZw0/24DZpImg+z6yBfTxEZcBuy5zcbiI/5U0D78LY5dAb/BjbNgjFmaFA==";
};
dependencies = [
sources."@emmetio/abbreviation-2.2.2"
@@ -121836,8 +122403,8 @@ in
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
- sources."@types/node-17.0.0"
- sources."@types/pug-2.0.5"
+ sources."@types/node-17.0.6"
+ sources."@types/pug-2.0.6"
sources."@types/sass-1.43.1"
sources."anymatch-3.1.2"
sources."balanced-match-1.0.2"
@@ -121882,7 +122449,7 @@ in
sources."pascal-case-3.1.2"
sources."path-is-absolute-1.0.1"
sources."picomatch-2.3.0"
- sources."prettier-2.5.0"
+ sources."prettier-2.5.1"
sources."prettier-plugin-svelte-2.5.1"
sources."queue-microtask-1.2.3"
sources."readdirp-3.6.0"
@@ -121894,9 +122461,9 @@ in
sources."source-map-0.7.3"
sources."sourcemap-codec-1.4.8"
sources."strip-indent-3.0.0"
- sources."svelte-3.38.3"
- sources."svelte-preprocess-4.9.8"
- sources."svelte2tsx-0.4.11"
+ sources."svelte-3.44.3"
+ sources."svelte-preprocess-4.10.1"
+ sources."svelte2tsx-0.4.12"
sources."to-regex-range-5.0.1"
sources."tslib-2.3.1"
sources."typescript-4.5.4"
@@ -121917,7 +122484,7 @@ in
sources."vscode-languageserver-textdocument-1.0.3"
sources."vscode-languageserver-types-3.16.0"
sources."vscode-nls-5.0.0"
- sources."vscode-uri-3.0.2"
+ sources."vscode-uri-3.0.3"
sources."wrappy-1.0.2"
];
buildInputs = globalBuildInputs;
@@ -121942,7 +122509,7 @@ in
sources."@trysound/sax-0.2.0"
sources."boolbase-1.0.0"
sources."commander-7.2.0"
- sources."css-select-4.2.0"
+ sources."css-select-4.2.1"
sources."css-tree-1.1.3"
sources."css-what-5.1.0"
sources."csso-4.2.0"
@@ -122355,7 +122922,7 @@ in
sources."kind-of-3.2.2"
];
})
- sources."object-inspect-1.11.1"
+ sources."object-inspect-1.12.0"
sources."object-visit-1.0.1"
sources."object.pick-1.3.0"
sources."on-finished-2.3.0"
@@ -122611,15 +123178,15 @@ in
tailwindcss = nodeEnv.buildNodePackage {
name = "tailwindcss";
packageName = "tailwindcss";
- version = "3.0.6";
+ version = "3.0.8";
src = fetchurl {
- url = "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.0.6.tgz";
- sha512 = "+CA2f09rbHFDsdQ1iDvsOGbF1tZFmyPoRhUeaF9/5FRT5GYObtp+UjTSCdmeDcu6T90bx4WAaOkddYFPBkjbAA==";
+ url = "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.0.8.tgz";
+ sha512 = "Yww1eRYO1AxITJmW/KduZPxNvYdHuedeKwPju9Oakp7MdiixRi5xkpLhirsc81QCxHL0eoce6qKmxXwYGt4Cjw==";
};
dependencies = [
- sources."@babel/code-frame-7.16.0"
- sources."@babel/helper-validator-identifier-7.15.7"
- (sources."@babel/highlight-7.16.0" // {
+ sources."@babel/code-frame-7.16.7"
+ sources."@babel/helper-validator-identifier-7.16.7"
+ (sources."@babel/highlight-7.16.7" // {
dependencies = [
sources."ansi-styles-3.2.1"
sources."chalk-2.4.2"
@@ -122714,7 +123281,7 @@ in
sources."postcss-js-3.0.3"
sources."postcss-load-config-3.1.0"
sources."postcss-nested-5.0.6"
- sources."postcss-selector-parser-6.0.7"
+ sources."postcss-selector-parser-6.0.8"
sources."postcss-value-parser-4.2.0"
sources."queue-microtask-1.2.3"
sources."quick-lru-5.1.1"
@@ -122847,7 +123414,7 @@ in
sources."tr46-0.0.3"
sources."tunnel-agent-0.6.0"
sources."tweetnacl-1.0.3"
- sources."typegram-3.6.2"
+ sources."typegram-3.7.0"
sources."uri-js-4.4.1"
sources."uuid-3.4.0"
sources."verror-1.10.0"
@@ -123276,13 +123843,11 @@ in
sha512 = "z/Xo1WHxAn7eueUbRLXoMNew+R3dzGENPG/yiCt/KT2WgAfRuQ7GeF855kLcnCCqdTnl6W7sYq8TKy+/DLpiqQ==";
};
dependencies = [
- sources."@babel/code-frame-7.16.0"
- sources."@babel/helper-validator-identifier-7.15.7"
- sources."@babel/highlight-7.16.0"
+ sources."@babel/code-frame-7.16.7"
+ sources."@babel/helper-validator-identifier-7.16.7"
+ sources."@babel/highlight-7.16.7"
sources."@sindresorhus/is-0.14.0"
sources."@szmarczak/http-timer-1.1.2"
- sources."@textlint/ast-node-types-4.4.3"
- sources."@textlint/types-1.5.5"
sources."@types/hast-2.3.4"
sources."@types/minimist-1.2.2"
sources."@types/normalize-package-data-2.4.1"
@@ -123406,7 +123971,7 @@ in
sources."hastscript-6.0.0"
sources."hosted-git-info-2.8.9"
sources."http-cache-semantics-4.1.0"
- sources."ignore-5.1.9"
+ sources."ignore-5.2.0"
sources."import-lazy-2.1.0"
sources."imurmurhash-0.1.4"
sources."indent-string-4.0.0"
@@ -123583,13 +124148,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.2.0" // {
- dependencies = [
- sources."unist-util-is-3.0.0"
- sources."unist-util-visit-1.4.1"
- sources."unist-util-visit-parents-2.1.2"
- ];
- })
+ sources."textlint-rule-helper-2.2.1"
sources."through-2.3.8"
(sources."through2-2.0.0" // {
dependencies = [
@@ -123823,7 +124382,7 @@ in
};
dependencies = [
sources."@textlint/ast-node-types-4.4.3"
- sources."@textlint/types-1.5.5"
+ sources."@types/unist-2.0.6"
sources."boundary-1.0.1"
sources."buffer-from-1.1.2"
sources."concat-stream-2.0.0"
@@ -123835,11 +124394,11 @@ in
sources."sentence-splitter-3.2.2"
sources."string_decoder-1.3.0"
sources."structured-source-3.0.2"
- sources."textlint-rule-helper-2.2.0"
+ sources."textlint-rule-helper-2.2.1"
sources."typedarray-0.0.6"
- sources."unist-util-is-3.0.0"
- sources."unist-util-visit-1.4.1"
- sources."unist-util-visit-parents-2.1.2"
+ sources."unist-util-is-4.1.0"
+ sources."unist-util-visit-2.0.3"
+ sources."unist-util-visit-parents-3.1.1"
sources."util-deprecate-1.0.2"
];
buildInputs = globalBuildInputs;
@@ -123888,7 +124447,7 @@ in
sources."is-string-1.0.7"
sources."is-symbol-1.0.4"
sources."is-weakref-1.0.2"
- sources."object-inspect-1.11.1"
+ sources."object-inspect-1.12.0"
sources."object-keys-1.1.1"
sources."object.assign-4.1.2"
sources."side-channel-1.0.4"
@@ -123916,16 +124475,15 @@ in
sha512 = "UW7nWrqBUHfz/sRLTFo40BNjwXOiXSHg00TJuYY4GVDQtsWRLyAsOnXSBqClP4i6wl7ejMBeYmB5mfllYAYMgA==";
};
dependencies = [
- sources."@textlint/ast-node-types-4.4.3"
- sources."@textlint/types-1.5.5"
+ sources."@types/unist-2.0.6"
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.2.0"
- sources."unist-util-is-3.0.0"
- sources."unist-util-visit-1.4.1"
- sources."unist-util-visit-parents-2.1.2"
+ sources."textlint-rule-helper-2.2.1"
+ sources."unist-util-is-4.1.0"
+ sources."unist-util-visit-2.0.3"
+ sources."unist-util-visit-parents-3.1.1"
];
buildInputs = globalBuildInputs;
meta = {
@@ -123946,16 +124504,15 @@ in
sha512 = "VW+ea4ByLPddSUqoFkVVJF8zWnO8kqKwvC681wGFAjI4CYz9WhjEQH1ikhoEHXnd5AFXNArcjyoa8hoihrXy0w==";
};
dependencies = [
- sources."@textlint/ast-node-types-4.4.3"
- sources."@textlint/types-1.5.5"
+ sources."@types/unist-2.0.6"
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.2.0"
- sources."unist-util-is-3.0.0"
- sources."unist-util-visit-1.4.1"
- sources."unist-util-visit-parents-2.1.2"
+ sources."textlint-rule-helper-2.2.1"
+ sources."unist-util-is-4.1.0"
+ sources."unist-util-visit-2.0.3"
+ sources."unist-util-visit-parents-3.1.1"
];
buildInputs = globalBuildInputs;
meta = {
@@ -124001,7 +124558,7 @@ in
sources."is-string-1.0.7"
sources."is-symbol-1.0.4"
sources."is-weakref-1.0.2"
- sources."object-inspect-1.11.1"
+ sources."object-inspect-1.12.0"
sources."object-keys-1.1.1"
sources."object.assign-4.1.2"
sources."side-channel-1.0.4"
@@ -124029,8 +124586,7 @@ in
sha512 = "yvOJavJD+PgyUzvsoLDDzDtgCVBva/HNhEvsFnYVugrWz0qy2hr+/4B4wkzjro4wfPbwz20GQe5h13N4DeUEeA==";
};
dependencies = [
- sources."@textlint/ast-node-types-4.4.3"
- sources."@textlint/types-1.5.5"
+ sources."@types/unist-2.0.6"
sources."adverb-where-0.2.5"
sources."boundary-1.0.1"
sources."commander-2.20.3"
@@ -124038,11 +124594,11 @@ in
sources."no-cliches-0.3.4"
sources."passive-voice-0.1.0"
sources."structured-source-3.0.2"
- sources."textlint-rule-helper-2.2.0"
+ sources."textlint-rule-helper-2.2.1"
sources."too-wordy-0.3.4"
- sources."unist-util-is-3.0.0"
- sources."unist-util-visit-1.4.1"
- sources."unist-util-visit-parents-2.1.2"
+ sources."unist-util-is-4.1.0"
+ sources."unist-util-visit-2.0.3"
+ sources."unist-util-visit-parents-3.1.1"
sources."weasel-words-0.1.1"
sources."write-good-1.0.8"
];
@@ -124074,7 +124630,7 @@ in
sources."@types/cors-2.8.12"
sources."@types/http-cache-semantics-4.0.1"
sources."@types/keyv-3.1.3"
- sources."@types/node-17.0.0"
+ sources."@types/node-17.0.6"
sources."@types/responselike-1.0.0"
sources."abbrev-1.1.1"
sources."abstract-logging-2.0.1"
@@ -124140,10 +124696,10 @@ in
sources."content-type-1.0.4"
sources."cookie-0.4.0"
sources."cookie-signature-1.0.6"
- sources."core-js-3.20.0"
+ sources."core-js-3.20.2"
sources."core-util-is-1.0.2"
sources."cors-2.8.5"
- sources."css-select-4.2.0"
+ sources."css-select-4.2.1"
sources."css-what-5.1.0"
sources."dashdash-1.14.1"
sources."debug-2.6.9"
@@ -124340,7 +124896,7 @@ in
sources."number-is-nan-1.0.1"
sources."oauth-sign-0.9.0"
sources."object-assign-4.1.1"
- sources."object-inspect-1.11.1"
+ sources."object-inspect-1.12.0"
sources."object-keys-1.1.1"
sources."object.assign-4.1.2"
sources."on-finished-2.3.0"
@@ -124521,13 +125077,2452 @@ in
bypassCache = true;
reconstructLock = true;
};
+ thelounge-plugin-closepms = nodeEnv.buildNodePackage {
+ name = "thelounge-plugin-closepms";
+ packageName = "thelounge-plugin-closepms";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/thelounge-plugin-closepms/-/thelounge-plugin-closepms-1.0.2.tgz";
+ sha512 = "o24rZwvzeMbbvuara2bGaX6eHw925aQw1BZhl7VHtY6xlWrJ9Sy7P29/Q2GQNIP4Otzcf09TX29zTBbRjKbrSA==";
+ };
+ dependencies = [
+ sources."@sindresorhus/is-4.2.0"
+ sources."@szmarczak/http-timer-4.0.6"
+ sources."@tokenizer/token-0.3.0"
+ sources."@types/cacheable-request-6.0.2"
+ sources."@types/component-emitter-1.2.11"
+ sources."@types/cookie-0.4.1"
+ sources."@types/cors-2.8.12"
+ sources."@types/http-cache-semantics-4.0.1"
+ sources."@types/keyv-3.1.3"
+ sources."@types/node-17.0.6"
+ sources."@types/responselike-1.0.0"
+ sources."abbrev-1.1.1"
+ sources."abstract-logging-2.0.1"
+ sources."accepts-1.3.7"
+ (sources."agent-base-6.0.2" // {
+ dependencies = [
+ sources."debug-4.3.3"
+ sources."ms-2.1.2"
+ ];
+ })
+ sources."ajv-6.12.6"
+ sources."ansi-regex-2.1.1"
+ sources."ansi-styles-4.3.0"
+ sources."aproba-1.2.0"
+ (sources."are-we-there-yet-1.1.7" // {
+ dependencies = [
+ sources."readable-stream-2.3.7"
+ sources."string_decoder-1.1.1"
+ ];
+ })
+ sources."array-flatten-1.1.1"
+ sources."asn1-0.2.6"
+ sources."asn1.js-5.4.1"
+ sources."assert-plus-1.0.0"
+ sources."asynckit-0.4.0"
+ sources."available-typed-arrays-1.0.5"
+ sources."aws-sign2-0.7.0"
+ sources."aws4-1.11.0"
+ sources."backoff-2.5.0"
+ sources."balanced-match-1.0.2"
+ sources."base64-arraybuffer-0.1.4"
+ sources."base64-js-1.5.1"
+ sources."base64id-2.0.0"
+ sources."bcrypt-pbkdf-1.0.2"
+ sources."bcryptjs-2.4.3"
+ sources."block-stream-0.0.9"
+ sources."bn.js-4.12.0"
+ sources."body-parser-1.19.0"
+ sources."boolbase-1.0.0"
+ sources."brace-expansion-1.1.11"
+ sources."buffer-6.0.3"
+ sources."buffer-equal-constant-time-1.0.1"
+ sources."busboy-0.3.1"
+ sources."bytes-3.1.0"
+ sources."cacheable-lookup-5.0.4"
+ sources."cacheable-request-7.0.2"
+ sources."call-bind-1.0.2"
+ sources."caseless-0.12.0"
+ sources."chalk-4.1.2"
+ sources."cheerio-1.0.0-rc.10"
+ sources."cheerio-select-1.5.0"
+ sources."chownr-1.1.4"
+ sources."clone-response-1.0.2"
+ sources."code-point-at-1.1.0"
+ sources."color-convert-2.0.1"
+ sources."color-name-1.1.4"
+ sources."combined-stream-1.0.8"
+ sources."commander-7.2.0"
+ sources."component-emitter-1.3.0"
+ sources."concat-map-0.0.1"
+ sources."console-control-strings-1.1.0"
+ sources."content-disposition-0.5.3"
+ sources."content-type-1.0.4"
+ sources."cookie-0.4.0"
+ sources."cookie-signature-1.0.6"
+ sources."core-js-3.20.2"
+ sources."core-util-is-1.0.2"
+ sources."cors-2.8.5"
+ sources."css-select-4.2.1"
+ sources."css-what-5.1.0"
+ sources."dashdash-1.14.1"
+ sources."debug-2.6.9"
+ (sources."decompress-response-6.0.0" // {
+ dependencies = [
+ sources."mimic-response-3.1.0"
+ ];
+ })
+ sources."deep-extend-0.6.0"
+ sources."defer-to-connect-2.0.1"
+ sources."define-properties-1.1.3"
+ sources."delayed-stream-1.0.0"
+ sources."delegates-1.0.0"
+ sources."depd-1.1.2"
+ sources."destroy-1.0.4"
+ sources."detect-libc-1.0.3"
+ sources."dicer-0.3.0"
+ sources."dom-serializer-1.3.2"
+ sources."domelementtype-2.2.0"
+ sources."domhandler-4.3.0"
+ sources."domutils-2.8.0"
+ sources."duplexer3-0.1.4"
+ sources."ecc-jsbn-0.1.2"
+ sources."ecdsa-sig-formatter-1.0.11"
+ sources."ee-first-1.1.1"
+ sources."encodeurl-1.0.2"
+ sources."end-of-stream-1.4.4"
+ (sources."engine.io-4.1.1" // {
+ dependencies = [
+ sources."cookie-0.4.1"
+ sources."debug-4.3.3"
+ sources."ms-2.1.2"
+ ];
+ })
+ sources."engine.io-parser-4.0.3"
+ sources."entities-2.2.0"
+ sources."es-abstract-1.19.1"
+ sources."es-to-primitive-1.2.1"
+ sources."escape-html-1.0.3"
+ sources."escape-string-regexp-1.0.5"
+ sources."etag-1.8.1"
+ sources."eventemitter3-4.0.7"
+ sources."express-4.17.1"
+ sources."extend-3.0.2"
+ sources."extsprintf-1.4.1"
+ sources."fast-deep-equal-3.1.3"
+ sources."fast-json-stable-stringify-2.1.0"
+ sources."fast-text-encoding-1.0.3"
+ sources."file-type-16.2.0"
+ sources."filename-reserved-regex-2.0.0"
+ sources."filenamify-4.2.0"
+ sources."finalhandler-1.1.2"
+ sources."foreach-2.0.5"
+ sources."forever-agent-0.6.1"
+ sources."form-data-2.3.3"
+ sources."forwarded-0.2.0"
+ sources."fresh-0.5.2"
+ sources."fs-minipass-1.2.7"
+ sources."fs.realpath-1.0.0"
+ sources."fstream-1.0.12"
+ sources."function-bind-1.1.1"
+ sources."gauge-2.7.4"
+ sources."get-intrinsic-1.1.1"
+ sources."get-stream-5.2.0"
+ sources."get-symbol-description-1.0.0"
+ sources."getpass-0.1.7"
+ sources."glob-7.2.0"
+ sources."got-11.8.2"
+ sources."graceful-fs-4.2.8"
+ sources."grapheme-splitter-1.0.4"
+ sources."har-schema-2.0.0"
+ sources."har-validator-5.1.5"
+ sources."has-1.0.3"
+ sources."has-bigints-1.0.1"
+ sources."has-flag-4.0.0"
+ sources."has-symbols-1.0.2"
+ sources."has-tostringtag-1.0.0"
+ sources."has-unicode-2.0.1"
+ sources."htmlparser2-6.1.0"
+ sources."http-cache-semantics-4.1.0"
+ sources."http-errors-1.7.2"
+ sources."http-signature-1.2.0"
+ sources."http2-wrapper-1.0.3"
+ sources."http_ece-1.1.0"
+ (sources."https-proxy-agent-5.0.0" // {
+ dependencies = [
+ sources."debug-4.3.3"
+ sources."ms-2.1.2"
+ ];
+ })
+ sources."iconv-lite-0.4.24"
+ sources."ieee754-1.2.1"
+ sources."ignore-walk-3.0.4"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
+ sources."ini-1.3.8"
+ sources."internal-slot-1.0.3"
+ sources."ip-1.1.5"
+ sources."ipaddr.js-1.9.1"
+ (sources."irc-framework-4.11.0" // {
+ dependencies = [
+ sources."iconv-lite-0.6.3"
+ ];
+ })
+ sources."is-arguments-1.1.1"
+ sources."is-bigint-1.0.4"
+ sources."is-boolean-object-1.1.2"
+ sources."is-callable-1.2.4"
+ sources."is-date-object-1.0.5"
+ sources."is-fullwidth-code-point-1.0.0"
+ sources."is-generator-function-1.0.10"
+ sources."is-negative-zero-2.0.2"
+ sources."is-number-object-1.0.6"
+ sources."is-regex-1.1.4"
+ sources."is-shared-array-buffer-1.0.1"
+ sources."is-string-1.0.7"
+ sources."is-symbol-1.0.4"
+ sources."is-typed-array-1.1.8"
+ sources."is-typedarray-1.0.0"
+ sources."is-utf8-0.2.1"
+ sources."is-weakref-1.0.2"
+ sources."isarray-1.0.0"
+ sources."isexe-2.0.0"
+ sources."isomorphic-textencoder-1.0.1"
+ sources."isstream-0.1.2"
+ sources."jsbn-0.1.1"
+ sources."json-buffer-3.0.1"
+ sources."json-schema-0.4.0"
+ sources."json-schema-traverse-0.4.1"
+ sources."json-stringify-safe-5.0.1"
+ (sources."jsprim-1.4.2" // {
+ dependencies = [
+ sources."extsprintf-1.3.0"
+ sources."verror-1.10.0"
+ ];
+ })
+ sources."jwa-2.0.0"
+ sources."jws-4.0.0"
+ sources."keyv-4.0.4"
+ sources."ldap-filter-0.3.3"
+ sources."ldapjs-2.3.1"
+ sources."linkify-it-3.0.3"
+ sources."lodash-4.17.21"
+ sources."lowercase-keys-2.0.0"
+ sources."lru-cache-6.0.0"
+ sources."media-typer-0.3.0"
+ sources."merge-descriptors-1.0.1"
+ sources."methods-1.1.2"
+ sources."middleware-handler-0.2.0"
+ sources."mime-1.6.0"
+ sources."mime-db-1.50.0"
+ sources."mime-types-2.1.33"
+ sources."mimic-response-1.0.1"
+ sources."minimalistic-assert-1.0.1"
+ sources."minimatch-3.0.4"
+ sources."minimist-1.2.5"
+ (sources."minipass-2.9.0" // {
+ dependencies = [
+ sources."yallist-3.1.1"
+ ];
+ })
+ sources."minizlib-1.3.3"
+ sources."mkdirp-0.5.5"
+ sources."ms-2.0.0"
+ sources."mute-stream-0.0.8"
+ (sources."needle-2.9.1" // {
+ dependencies = [
+ sources."debug-3.2.7"
+ sources."ms-2.1.3"
+ ];
+ })
+ sources."negotiator-0.6.2"
+ sources."node-addon-api-3.2.1"
+ sources."node-forge-0.10.0"
+ (sources."node-gyp-3.8.0" // {
+ dependencies = [
+ sources."nopt-3.0.6"
+ sources."semver-5.3.0"
+ sources."tar-2.2.2"
+ ];
+ })
+ (sources."node-pre-gyp-0.11.0" // {
+ dependencies = [
+ sources."semver-5.7.1"
+ ];
+ })
+ sources."nopt-4.0.3"
+ sources."normalize-url-6.1.0"
+ sources."npm-bundled-1.1.2"
+ sources."npm-normalize-package-bin-1.0.1"
+ sources."npm-packlist-1.4.8"
+ sources."npmlog-4.1.2"
+ sources."nth-check-2.0.1"
+ sources."number-is-nan-1.0.1"
+ sources."oauth-sign-0.9.0"
+ sources."object-assign-4.1.1"
+ sources."object-inspect-1.12.0"
+ sources."object-keys-1.1.1"
+ sources."object.assign-4.1.2"
+ sources."on-finished-2.3.0"
+ sources."once-1.4.0"
+ sources."os-homedir-1.0.2"
+ sources."os-tmpdir-1.0.2"
+ sources."osenv-0.1.5"
+ sources."p-cancelable-2.1.1"
+ sources."p-finally-1.0.0"
+ sources."p-try-2.2.0"
+ (sources."package-json-6.5.0" // {
+ dependencies = [
+ sources."@sindresorhus/is-0.14.0"
+ sources."@szmarczak/http-timer-1.1.2"
+ (sources."cacheable-request-6.1.0" // {
+ dependencies = [
+ sources."get-stream-5.2.0"
+ sources."lowercase-keys-2.0.0"
+ ];
+ })
+ sources."decompress-response-3.3.0"
+ sources."defer-to-connect-1.1.3"
+ sources."get-stream-4.1.0"
+ sources."got-9.6.0"
+ sources."json-buffer-3.0.0"
+ sources."keyv-3.1.0"
+ sources."lowercase-keys-1.0.1"
+ sources."normalize-url-4.5.1"
+ sources."p-cancelable-1.1.0"
+ sources."responselike-1.0.2"
+ sources."semver-6.3.0"
+ ];
+ })
+ sources."parse5-6.0.1"
+ sources."parse5-htmlparser2-tree-adapter-6.0.1"
+ sources."parseurl-1.3.3"
+ sources."path-is-absolute-1.0.1"
+ sources."path-to-regexp-0.1.7"
+ sources."peek-readable-4.0.2"
+ sources."performance-now-2.1.0"
+ sources."pify-4.0.1"
+ sources."precond-0.2.3"
+ sources."prepend-http-2.0.0"
+ sources."process-nextick-args-2.0.1"
+ sources."proxy-addr-2.0.7"
+ sources."psl-1.8.0"
+ sources."pump-3.0.0"
+ sources."punycode-2.1.1"
+ sources."qs-6.7.0"
+ sources."quick-lru-5.1.1"
+ sources."range-parser-1.2.1"
+ sources."raw-body-2.4.0"
+ sources."rc-1.2.8"
+ sources."read-1.0.7"
+ sources."read-chunk-3.2.0"
+ sources."readable-stream-3.6.0"
+ sources."readable-web-to-node-stream-3.0.2"
+ sources."regenerator-runtime-0.13.9"
+ sources."registry-auth-token-4.2.1"
+ sources."registry-url-5.1.0"
+ (sources."request-2.88.2" // {
+ dependencies = [
+ sources."qs-6.5.2"
+ sources."uuid-3.4.0"
+ ];
+ })
+ sources."resolve-alpn-1.2.1"
+ sources."responselike-2.0.0"
+ sources."rimraf-2.7.1"
+ sources."safe-buffer-5.1.2"
+ sources."safer-buffer-2.1.2"
+ sources."sax-1.2.4"
+ sources."semver-7.3.5"
+ (sources."send-0.17.1" // {
+ dependencies = [
+ sources."ms-2.1.1"
+ ];
+ })
+ sources."serve-static-1.14.1"
+ sources."set-blocking-2.0.0"
+ sources."setprototypeof-1.1.1"
+ sources."side-channel-1.0.4"
+ sources."signal-exit-3.0.6"
+ sources."smart-buffer-4.2.0"
+ (sources."socket.io-3.1.2" // {
+ dependencies = [
+ sources."debug-4.3.3"
+ sources."ms-2.1.2"
+ ];
+ })
+ sources."socket.io-adapter-2.1.0"
+ (sources."socket.io-parser-4.0.4" // {
+ dependencies = [
+ sources."debug-4.3.3"
+ sources."ms-2.1.2"
+ ];
+ })
+ sources."socks-2.6.1"
+ sources."sqlite3-5.0.2"
+ sources."sshpk-1.16.1"
+ sources."statuses-1.5.0"
+ (sources."stream-browserify-3.0.0" // {
+ dependencies = [
+ sources."inherits-2.0.4"
+ ];
+ })
+ sources."streamsearch-0.1.2"
+ sources."string-width-1.0.2"
+ sources."string.prototype.trimend-1.0.4"
+ sources."string.prototype.trimstart-1.0.4"
+ (sources."string_decoder-1.3.0" // {
+ dependencies = [
+ sources."safe-buffer-5.2.1"
+ ];
+ })
+ sources."strip-ansi-3.0.1"
+ sources."strip-json-comments-2.0.1"
+ sources."strip-outer-1.0.1"
+ sources."strtok3-6.2.4"
+ sources."supports-color-7.2.0"
+ (sources."tar-4.4.19" // {
+ dependencies = [
+ sources."safe-buffer-5.2.1"
+ sources."yallist-3.1.1"
+ ];
+ })
+ sources."thelounge-4.3.0"
+ sources."tlds-1.216.0"
+ sources."to-readable-stream-1.0.0"
+ sources."toidentifier-1.0.0"
+ (sources."token-types-2.1.1" // {
+ dependencies = [
+ sources."@tokenizer/token-0.1.1"
+ ];
+ })
+ sources."tough-cookie-2.5.0"
+ sources."trim-repeated-1.0.0"
+ sources."tslib-2.3.1"
+ sources."tunnel-agent-0.6.0"
+ sources."tweetnacl-0.14.5"
+ sources."type-is-1.6.18"
+ sources."typedarray-to-buffer-3.1.5"
+ sources."ua-parser-js-0.7.30"
+ sources."uc.micro-1.0.6"
+ sources."unbox-primitive-1.0.1"
+ sources."unpipe-1.0.0"
+ sources."uri-js-4.4.1"
+ sources."url-parse-lax-3.0.0"
+ sources."urlsafe-base64-1.0.0"
+ sources."util-0.12.4"
+ sources."util-deprecate-1.0.2"
+ sources."utils-merge-1.0.1"
+ sources."uuid-8.3.2"
+ sources."vary-1.1.2"
+ (sources."vasync-2.2.1" // {
+ dependencies = [
+ sources."verror-1.10.0"
+ ];
+ })
+ sources."verror-1.10.1"
+ sources."web-push-3.4.5"
+ sources."which-1.3.1"
+ sources."which-boxed-primitive-1.0.2"
+ sources."which-typed-array-1.1.7"
+ sources."wide-align-1.1.5"
+ sources."with-open-file-0.1.7"
+ sources."wrappy-1.0.2"
+ sources."ws-7.4.6"
+ sources."yallist-4.0.0"
+ sources."yarn-1.22.10"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "The Lounge plugin to close all PMs on a network";
+ homepage = "https://github.com/alyx/thelounge-plugin-closepms#readme";
+ license = "ISC";
+ };
+ production = true;
+ bypassCache = true;
+ reconstructLock = true;
+ };
+ thelounge-plugin-giphy = nodeEnv.buildNodePackage {
+ name = "thelounge-plugin-giphy";
+ packageName = "thelounge-plugin-giphy";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/thelounge-plugin-giphy/-/thelounge-plugin-giphy-1.0.2.tgz";
+ sha512 = "X4z5CHFrQwltRfsPlUPZfLHW7PK8LS5eb7aq8Hx0IxP9AIIwgQeqKhSH0myJ5o3e6KYzrN7IY+/ZiUWxt+nqOQ==";
+ };
+ dependencies = [
+ sources."@sindresorhus/is-0.14.0"
+ sources."@szmarczak/http-timer-1.1.2"
+ sources."abbrev-1.1.1"
+ sources."abstract-logging-1.0.0"
+ sources."accepts-1.3.7"
+ sources."after-0.8.2"
+ sources."agent-base-4.3.0"
+ sources."ajv-6.12.6"
+ sources."ansi-regex-2.1.1"
+ sources."ansi-styles-3.2.1"
+ sources."aproba-1.2.0"
+ (sources."are-we-there-yet-1.1.7" // {
+ dependencies = [
+ sources."isarray-1.0.0"
+ sources."readable-stream-2.3.7"
+ sources."safe-buffer-5.1.2"
+ sources."string_decoder-1.1.1"
+ ];
+ })
+ sources."array-flatten-1.1.1"
+ sources."arraybuffer.slice-0.0.7"
+ sources."asn1-0.2.6"
+ sources."asn1.js-5.4.1"
+ sources."assert-plus-1.0.0"
+ sources."async-limiter-1.0.1"
+ sources."asynckit-0.4.0"
+ sources."aws-sign2-0.7.0"
+ sources."aws4-1.11.0"
+ sources."axios-0.19.2"
+ sources."backo2-1.0.2"
+ sources."backoff-2.5.0"
+ sources."balanced-match-1.0.2"
+ sources."base64-arraybuffer-0.1.4"
+ sources."base64id-2.0.0"
+ sources."bcrypt-pbkdf-1.0.2"
+ sources."bcryptjs-2.4.3"
+ sources."better-assert-1.0.2"
+ sources."blob-0.0.5"
+ sources."bn.js-4.12.0"
+ (sources."body-parser-1.19.0" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ sources."qs-6.7.0"
+ ];
+ })
+ sources."boolbase-1.0.0"
+ sources."brace-expansion-1.1.11"
+ sources."buffer-equal-constant-time-1.0.1"
+ sources."busboy-0.3.1"
+ 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."call-bind-1.0.2"
+ sources."callsite-1.0.0"
+ sources."caseless-0.12.0"
+ sources."chalk-2.4.2"
+ sources."cheerio-0.22.0"
+ sources."chownr-1.1.4"
+ sources."clone-response-1.0.2"
+ sources."code-point-at-1.1.0"
+ sources."color-convert-1.9.3"
+ sources."color-name-1.1.3"
+ sources."combined-stream-1.0.8"
+ sources."commander-3.0.2"
+ sources."component-bind-1.0.0"
+ sources."component-emitter-1.2.1"
+ sources."component-inherit-0.0.3"
+ sources."concat-map-0.0.1"
+ sources."console-control-strings-1.1.0"
+ (sources."content-disposition-0.5.3" // {
+ dependencies = [
+ sources."safe-buffer-5.1.2"
+ ];
+ })
+ sources."content-type-1.0.4"
+ sources."cookie-0.4.0"
+ sources."cookie-signature-1.0.6"
+ sources."core-js-3.20.2"
+ sources."core-util-is-1.0.2"
+ sources."css-select-1.2.0"
+ sources."css-what-2.1.3"
+ sources."dashdash-1.14.1"
+ sources."debug-3.1.0"
+ sources."decompress-response-3.3.0"
+ sources."deep-extend-0.6.0"
+ sources."defer-to-connect-1.1.3"
+ sources."delayed-stream-1.0.0"
+ sources."delegates-1.0.0"
+ sources."depd-1.1.2"
+ sources."destroy-1.0.4"
+ sources."detect-libc-1.0.3"
+ sources."dicer-0.3.0"
+ sources."dom-serializer-0.1.1"
+ sources."domelementtype-1.3.1"
+ sources."domhandler-2.4.2"
+ sources."domutils-1.5.1"
+ sources."duplexer3-0.1.4"
+ sources."ecc-jsbn-0.1.2"
+ sources."ecdsa-sig-formatter-1.0.11"
+ sources."ee-first-1.1.1"
+ sources."encodeurl-1.0.2"
+ sources."end-of-stream-1.4.4"
+ (sources."engine.io-3.4.2" // {
+ dependencies = [
+ sources."cookie-0.3.1"
+ sources."debug-4.1.1"
+ sources."ms-2.1.3"
+ ];
+ })
+ (sources."engine.io-client-3.4.4" // {
+ dependencies = [
+ sources."component-emitter-1.3.0"
+ sources."parseqs-0.0.6"
+ sources."parseuri-0.0.6"
+ sources."ws-6.1.4"
+ ];
+ })
+ sources."engine.io-parser-2.2.1"
+ sources."entities-1.1.2"
+ sources."es6-promise-4.2.8"
+ sources."es6-promisify-5.0.0"
+ sources."escape-html-1.0.3"
+ sources."escape-string-regexp-1.0.5"
+ sources."etag-1.8.1"
+ sources."eventemitter3-2.0.3"
+ (sources."express-4.17.1" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ sources."qs-6.7.0"
+ sources."safe-buffer-5.1.2"
+ ];
+ })
+ sources."extend-3.0.2"
+ sources."extsprintf-1.4.1"
+ sources."fast-deep-equal-3.1.3"
+ sources."fast-json-stable-stringify-2.1.0"
+ sources."fast-text-encoding-1.0.3"
+ sources."file-type-12.3.1"
+ sources."filename-reserved-regex-2.0.0"
+ sources."filenamify-4.1.0"
+ (sources."finalhandler-1.1.2" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ ];
+ })
+ sources."follow-redirects-1.5.10"
+ sources."forever-agent-0.6.1"
+ sources."form-data-2.3.3"
+ sources."forwarded-0.2.0"
+ sources."fresh-0.5.2"
+ sources."fs-extra-8.1.0"
+ sources."fs-minipass-1.2.7"
+ sources."fs.realpath-1.0.0"
+ sources."function-bind-1.1.1"
+ sources."gauge-2.7.4"
+ sources."get-intrinsic-1.1.1"
+ sources."get-stream-4.1.0"
+ sources."getpass-0.1.7"
+ sources."glob-7.2.0"
+ sources."got-9.6.0"
+ sources."graceful-fs-4.2.8"
+ sources."grapheme-splitter-1.0.4"
+ sources."har-schema-2.0.0"
+ sources."har-validator-5.1.5"
+ sources."has-1.0.3"
+ sources."has-binary2-1.0.3"
+ sources."has-cors-1.1.0"
+ sources."has-flag-3.0.0"
+ sources."has-symbols-1.0.2"
+ sources."has-unicode-2.0.1"
+ sources."htmlparser2-3.10.1"
+ sources."http-cache-semantics-4.1.0"
+ (sources."http-errors-1.7.2" // {
+ dependencies = [
+ sources."inherits-2.0.3"
+ ];
+ })
+ sources."http-signature-1.2.0"
+ sources."http_ece-1.1.0"
+ sources."https-proxy-agent-3.0.1"
+ sources."iconv-lite-0.4.24"
+ sources."ignore-walk-3.0.4"
+ sources."indexof-0.0.1"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.4"
+ sources."ini-1.3.8"
+ sources."ipaddr.js-1.9.1"
+ sources."irc-framework-4.4.0"
+ sources."is-fullwidth-code-point-1.0.0"
+ sources."is-typedarray-1.0.0"
+ sources."is-utf8-0.2.1"
+ sources."isarray-2.0.1"
+ sources."isomorphic-textencoder-1.0.1"
+ sources."isstream-0.1.2"
+ sources."jsbn-0.1.1"
+ sources."json-buffer-3.0.0"
+ sources."json-schema-0.4.0"
+ sources."json-schema-traverse-0.4.1"
+ sources."json-stringify-safe-5.0.1"
+ sources."jsonfile-4.0.0"
+ (sources."jsprim-1.4.2" // {
+ dependencies = [
+ sources."extsprintf-1.3.0"
+ sources."verror-1.10.0"
+ ];
+ })
+ sources."jwa-1.4.1"
+ sources."jws-3.2.2"
+ sources."keyv-3.1.0"
+ sources."ldap-filter-0.3.3"
+ sources."ldapjs-2.0.0-pre.2"
+ sources."linkify-it-2.2.0"
+ sources."lodash-4.17.15"
+ sources."lodash.assignin-4.2.0"
+ sources."lodash.bind-4.2.1"
+ sources."lodash.defaults-4.2.0"
+ sources."lodash.filter-4.6.0"
+ sources."lodash.flatten-4.4.0"
+ sources."lodash.foreach-4.5.0"
+ sources."lodash.map-4.6.0"
+ sources."lodash.merge-4.6.2"
+ sources."lodash.pick-4.4.0"
+ sources."lodash.reduce-4.6.0"
+ sources."lodash.reject-4.6.0"
+ sources."lodash.some-4.6.0"
+ sources."lowercase-keys-1.0.1"
+ sources."media-typer-0.3.0"
+ sources."merge-descriptors-1.0.1"
+ sources."methods-1.1.2"
+ sources."middleware-handler-0.2.0"
+ sources."mime-1.6.0"
+ sources."mime-db-1.40.0"
+ sources."mime-types-2.1.24"
+ sources."mimic-response-1.0.1"
+ sources."minimalistic-assert-1.0.1"
+ 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.0.0"
+ sources."mute-stream-0.0.8"
+ sources."nan-2.15.0"
+ (sources."needle-2.9.1" // {
+ dependencies = [
+ sources."debug-3.2.7"
+ sources."ms-2.1.3"
+ ];
+ })
+ sources."negotiator-0.6.2"
+ (sources."node-pre-gyp-0.11.0" // {
+ dependencies = [
+ sources."semver-5.7.1"
+ ];
+ })
+ sources."nopt-4.0.3"
+ 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"
+ sources."npmlog-4.1.2"
+ sources."nth-check-1.0.2"
+ sources."number-is-nan-1.0.1"
+ sources."oauth-sign-0.9.0"
+ sources."object-assign-4.1.1"
+ sources."object-component-0.0.3"
+ sources."object-inspect-1.12.0"
+ sources."on-finished-2.3.0"
+ sources."once-1.4.0"
+ sources."os-homedir-1.0.2"
+ sources."os-tmpdir-1.0.2"
+ sources."osenv-0.1.5"
+ sources."p-cancelable-1.1.0"
+ sources."p-finally-1.0.0"
+ sources."p-try-2.2.0"
+ sources."package-json-6.5.0"
+ sources."parseqs-0.0.5"
+ sources."parseuri-0.0.5"
+ sources."parseurl-1.3.3"
+ sources."path-is-absolute-1.0.1"
+ sources."path-to-regexp-0.1.7"
+ sources."performance-now-2.1.0"
+ sources."pify-4.0.1"
+ sources."precond-0.2.3"
+ sources."prepend-http-2.0.0"
+ sources."process-nextick-args-2.0.1"
+ sources."proxy-addr-2.0.7"
+ sources."psl-1.8.0"
+ sources."pump-3.0.0"
+ sources."punycode-2.1.1"
+ sources."qs-6.10.2"
+ sources."range-parser-1.2.1"
+ sources."raw-body-2.4.0"
+ sources."rc-1.2.8"
+ sources."read-1.0.7"
+ sources."read-chunk-3.2.0"
+ sources."readable-stream-3.6.0"
+ sources."regenerator-runtime-0.13.9"
+ sources."registry-auth-token-4.2.1"
+ sources."registry-url-5.1.0"
+ (sources."request-2.88.2" // {
+ dependencies = [
+ sources."qs-6.5.2"
+ ];
+ })
+ sources."responselike-1.0.2"
+ sources."rimraf-2.7.1"
+ sources."safe-buffer-5.2.1"
+ sources."safer-buffer-2.1.2"
+ sources."sax-1.2.4"
+ sources."semver-6.3.0"
+ (sources."send-0.17.1" // {
+ dependencies = [
+ (sources."debug-2.6.9" // {
+ dependencies = [
+ sources."ms-2.0.0"
+ ];
+ })
+ sources."ms-2.1.1"
+ ];
+ })
+ sources."serve-static-1.14.1"
+ sources."set-blocking-2.0.0"
+ sources."setprototypeof-1.1.1"
+ sources."side-channel-1.0.4"
+ sources."signal-exit-3.0.6"
+ (sources."socket.io-2.3.0" // {
+ dependencies = [
+ sources."debug-4.1.1"
+ sources."ms-2.1.3"
+ ];
+ })
+ sources."socket.io-adapter-1.1.2"
+ (sources."socket.io-client-2.3.0" // {
+ dependencies = [
+ sources."base64-arraybuffer-0.1.5"
+ sources."debug-4.1.1"
+ sources."ms-2.1.3"
+ (sources."socket.io-parser-3.3.2" // {
+ dependencies = [
+ sources."component-emitter-1.3.0"
+ sources."debug-3.1.0"
+ sources."ms-2.0.0"
+ ];
+ })
+ ];
+ })
+ (sources."socket.io-parser-3.4.1" // {
+ dependencies = [
+ sources."debug-4.1.1"
+ sources."ms-2.1.3"
+ ];
+ })
+ (sources."socksjs-0.5.0" // {
+ dependencies = [
+ sources."ipaddr.js-0.1.3"
+ ];
+ })
+ sources."sqlite3-4.1.0"
+ sources."sshpk-1.16.1"
+ sources."statuses-1.5.0"
+ sources."streamsearch-0.1.2"
+ sources."string-width-1.0.2"
+ sources."string_decoder-1.3.0"
+ sources."strip-ansi-3.0.1"
+ sources."strip-json-comments-2.0.1"
+ sources."strip-outer-1.0.1"
+ sources."supports-color-5.5.0"
+ sources."tar-4.4.19"
+ sources."thelounge-3.3.0"
+ sources."tlds-1.203.1"
+ sources."to-array-0.1.4"
+ sources."to-readable-stream-1.0.0"
+ sources."toidentifier-1.0.0"
+ sources."tough-cookie-2.5.0"
+ sources."trim-repeated-1.0.0"
+ sources."tunnel-agent-0.6.0"
+ sources."tweetnacl-0.14.5"
+ sources."type-is-1.6.18"
+ sources."ua-parser-js-0.7.20"
+ sources."uc.micro-1.0.6"
+ sources."universalify-0.1.2"
+ sources."unpipe-1.0.0"
+ sources."uri-js-4.4.1"
+ sources."url-parse-lax-3.0.0"
+ sources."urlsafe-base64-1.0.0"
+ sources."util-deprecate-1.0.2"
+ sources."utils-merge-1.0.1"
+ sources."uuid-3.3.3"
+ sources."vary-1.1.2"
+ (sources."vasync-2.2.1" // {
+ dependencies = [
+ sources."verror-1.10.0"
+ ];
+ })
+ sources."verror-1.10.1"
+ sources."web-push-3.4.1"
+ sources."wide-align-1.1.5"
+ sources."with-open-file-0.1.7"
+ sources."wrappy-1.0.2"
+ sources."ws-7.5.6"
+ sources."xmlhttprequest-ssl-1.5.5"
+ sources."yallist-3.1.1"
+ sources."yarn-1.19.1"
+ sources."yeast-0.1.2"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Simple plugin for the irc client thelounge that allows you to quickly look up giphy-gifs";
+ homepage = "https://minidigger.github.io/thelounge-plugin-giphy";
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ reconstructLock = true;
+ };
+ thelounge-plugin-shortcuts = nodeEnv.buildNodePackage {
+ name = "thelounge-plugin-shortcuts";
+ packageName = "thelounge-plugin-shortcuts";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/thelounge-plugin-shortcuts/-/thelounge-plugin-shortcuts-1.1.1.tgz";
+ sha512 = "ca9+lsfl3rrdrWJkGsRupsoqVElAyMk/g5KyUPZLrsEcj00pYq4g8Iyfw7iscslYlS0eHnwjK6sJwk9vd15LkA==";
+ };
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Simple plugin for the irc client thelounge that allows you to register shortcuts/aliases for commands";
+ homepage = "https://minidigger.github.io/thelounge-plugin-shortcuts";
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ reconstructLock = true;
+ };
+ thelounge-theme-abyss = nodeEnv.buildNodePackage {
+ name = "thelounge-theme-abyss";
+ packageName = "thelounge-theme-abyss";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/thelounge-theme-abyss/-/thelounge-theme-abyss-1.1.0.tgz";
+ sha512 = "wNrWWjWKE7C4Ws3CK/s7B2OKf1kG3ZASFwwQErQ0pJT0ggY1VKVWCU8ywz2Ps+rY9V/X1ygaWhMJeYC84U8feg==";
+ };
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "A theme for The Lounge";
+ homepage = "https://github.com/sometoby/thelounge-theme-abyss";
+ license = "GPL-3";
+ };
+ production = true;
+ bypassCache = true;
+ reconstructLock = true;
+ };
+ thelounge-theme-amoled = nodeEnv.buildNodePackage {
+ name = "thelounge-theme-amoled";
+ packageName = "thelounge-theme-amoled";
+ version = "1.0.17";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/thelounge-theme-amoled/-/thelounge-theme-amoled-1.0.17.tgz";
+ sha512 = "s6+OyYbwIhYJG5VVAmUyDR3WvN4bqW2POPK33aeXpvoX9uW1gr2YDcD2ZGuCdo6H7Wteie6JHIRGRroFWok6SA==";
+ };
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Black theme suitable for AMOLED displays";
+ homepage = "https://github.com/realies/thelounge-theme-amoled";
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ reconstructLock = true;
+ };
+ thelounge-theme-amoled-sourcecodepro = nodeEnv.buildNodePackage {
+ name = "thelounge-theme-amoled-sourcecodepro";
+ packageName = "thelounge-theme-amoled-sourcecodepro";
+ version = "1.0.16";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/thelounge-theme-amoled-sourcecodepro/-/thelounge-theme-amoled-sourcecodepro-1.0.16.tgz";
+ sha512 = "zDP2OS8NXym/qSOm36+7dhwxab7mLiZp+7FLVFChhWzrVQY9BzNIg5QeuZfQ8zKwcPgEZp4U4aWcGHe+G2iQ3g==";
+ };
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Black theme suitable for AMOLED displays - with Source Code Pro";
+ homepage = "https://github.com/gryffyn/thelounge-theme-amoled";
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ reconstructLock = true;
+ };
+ thelounge-theme-bdefault = nodeEnv.buildNodePackage {
+ name = "thelounge-theme-bdefault";
+ packageName = "thelounge-theme-bdefault";
+ version = "1.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/thelounge-theme-bdefault/-/thelounge-theme-bdefault-1.0.6.tgz";
+ sha512 = "Z71KJpp1Td9auRiRz9uCSk+d7bU/7MvPfxejslUQiiWlFjO5ufSR7O/PXis+MqDZAucgd1x3z0rWvcd+Nl/cDw==";
+ };
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "A bdefault theme";
+ homepage = "https://github.com/lemos1235/thelounge-theme-bdefault";
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ reconstructLock = true;
+ };
+ thelounge-theme-bmorning = nodeEnv.buildNodePackage {
+ name = "thelounge-theme-bmorning";
+ packageName = "thelounge-theme-bmorning";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/thelounge-theme-bmorning/-/thelounge-theme-bmorning-1.0.2.tgz";
+ sha512 = "OMBpJ/KntSWAd2gv1VQaVzdOOFTwplYA8xPisibv5tJf+DqyHbynD1sg3jcMoDuwGkzSrzHvquKypIDbMIAGrQ==";
+ };
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "A bmorning theme";
+ homepage = "https://github.com/lemos1235/thelounge-theme-bmorning";
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ reconstructLock = true;
+ };
+ thelounge-theme-chord = nodeEnv.buildNodePackage {
+ name = "thelounge-theme-chord";
+ packageName = "thelounge-theme-chord";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/thelounge-theme-chord/-/thelounge-theme-chord-1.0.1.tgz";
+ sha512 = "Y9nr1ZIUAGFyDBRCXmJcZ93pEWdjzfvyFvg+4X0hPC/+mn1QmE5nfx060ExCNRY4uKl1T0muWV89X4B2FAVoHg==";
+ };
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Darkly elegant theme for The Lounge";
+ homepage = "https://github.com/easymac/thelounge-theme-chord";
+ license = "GPL-3.0";
+ };
+ production = true;
+ bypassCache = true;
+ reconstructLock = true;
+ };
+ thelounge-theme-classic = nodeEnv.buildNodePackage {
+ name = "thelounge-theme-classic";
+ packageName = "thelounge-theme-classic";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/thelounge-theme-classic/-/thelounge-theme-classic-1.0.0.tgz";
+ sha512 = "EA3zOFRxn65GEfSMHnjpViW9w3xRRBGJMyFGN83FtlHB1iWOl9J0MRI0t4ATlgb7m1rYdfFStbTEErMPXSj+NA==";
+ };
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Classic theme for The Lounge, to get a v2 look with The Lounge v3";
+ homepage = "https://github.com/thelounge/thelounge-theme-classic";
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ reconstructLock = true;
+ };
+ thelounge-theme-common = nodeEnv.buildNodePackage {
+ name = "thelounge-theme-common";
+ packageName = "thelounge-theme-common";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/thelounge-theme-common/-/thelounge-theme-common-1.0.0.tgz";
+ sha512 = "bfZzLpKp0RqC6hzpmSVOIrQMJiMPZPq+1MP2WatE17j1cayMqljYGGH/9yBd+pt3NYb7+KZtzfS8tKUxd6g9LQ==";
+ };
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "A common theme";
+ homepage = "https://github.com/lemos1235/thelounge-theme-common";
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ reconstructLock = true;
+ };
+ thelounge-theme-crypto = nodeEnv.buildNodePackage {
+ name = "thelounge-theme-crypto";
+ packageName = "thelounge-theme-crypto";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/thelounge-theme-crypto/-/thelounge-theme-crypto-1.0.0.tgz";
+ sha512 = "cAiMnibVftOzvhqkSHR/5WceQ7OKKD75YGZq6u/1ebP2QPMO6tJJklzynPxAKlReoThUayJX/4FvPTp/bG1MPw==";
+ };
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Retro & high-contrast theme for The Lounge";
+ homepage = "https://github.com/thelounge/thelounge-theme-crypto#readme";
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ reconstructLock = true;
+ };
+ thelounge-theme-discordapp = nodeEnv.buildNodePackage {
+ name = "thelounge-theme-discordapp";
+ packageName = "thelounge-theme-discordapp";
+ version = "1.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/thelounge-theme-discordapp/-/thelounge-theme-discordapp-1.1.2.tgz";
+ sha512 = "1ldF19pKboDbeDdxRYrbHrr+lBTtHa4f2X9ygCzD0QoLAoIz46mghH7ZeGgmiqAj1vD/iqkY5KFKRdRX6cpS/A==";
+ };
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "A discordapp like theme for thelounge";
+ homepage = "https://github.com/Minion3665/thelounge-theme-discordapp";
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ reconstructLock = true;
+ };
+ thelounge-theme-dracula = nodeEnv.buildNodePackage {
+ name = "thelounge-theme-dracula";
+ packageName = "thelounge-theme-dracula";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/thelounge-theme-dracula/-/thelounge-theme-dracula-1.1.1.tgz";
+ sha512 = "CSh4ffPinIm4IluS7gLRjSa6VgLvBRBQ/RXbh6n8g0aGeQ7H6m4v1QeOfYiCHBBd/ipAAxseW5WvTN3qJiwwoA==";
+ };
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Dracula theme for thelounge";
+ homepage = "https://github.com/SpaceLenore/thelounge-theme-dracula";
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ reconstructLock = true;
+ };
+ thelounge-theme-dracula-official = nodeEnv.buildNodePackage {
+ name = "thelounge-theme-dracula-official";
+ packageName = "thelounge-theme-dracula-official";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/thelounge-theme-dracula-official/-/thelounge-theme-dracula-official-1.0.3.tgz";
+ sha512 = "Dar4BLNVkmiKXZeZZ3IukVm3QHYAeYMn7tj0+6VBuASl4q18h9b5QExiVLM2kEsIoS47LkgqeMsrUQW0FDKKZA==";
+ };
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = " =2.26.0"' 'requests = "*"' \
- --replace 'rich = "^10.6.0"' 'rich = "*"'
+ --replace 'rich = "^10.16.2"' 'rich = "*"'
substituteInPlace pytest.ini \
--replace "--cov" ""
'';
diff --git a/pkgs/development/python-modules/jupyterlab_server/default.nix b/pkgs/development/python-modules/jupyterlab_server/default.nix
index 7216421a86c7..50ee0b4048be 100644
--- a/pkgs/development/python-modules/jupyterlab_server/default.nix
+++ b/pkgs/development/python-modules/jupyterlab_server/default.nix
@@ -16,12 +16,12 @@
buildPythonPackage rec {
pname = "jupyterlab_server";
- version = "2.10.2";
+ version = "2.10.3";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
- sha256 = "bf1ec9e49d4e26f14d70055cc293b3f8ec8410f95a4d5b4bd55c442d9b8b266c";
+ sha256 = "3fb84a5813d6d836ceda773fb2d4e9ef3c7944dbc1b45a8d59d98641a80de80a";
};
postPatch = ''
diff --git a/pkgs/development/python-modules/mocket/default.nix b/pkgs/development/python-modules/mocket/default.nix
index 4d57d8216632..afef1cb5724d 100644
--- a/pkgs/development/python-modules/mocket/default.nix
+++ b/pkgs/development/python-modules/mocket/default.nix
@@ -19,12 +19,12 @@
buildPythonPackage rec {
pname = "mocket";
- version = "3.10.2";
+ version = "3.10.3";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
- sha256 = "6dbfd47fdc5629136bdbb487cd3cc8d786b402df546b9c7106bed737677aa9f4";
+ sha256 = "82634f7d1a39f6a340ff9c7486e37bf3698e6510fdcfa7b378b5fbb256a42cda";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/pycocotools/default.nix b/pkgs/development/python-modules/pycocotools/default.nix
index fa75d02c6101..13757c9f0088 100644
--- a/pkgs/development/python-modules/pycocotools/default.nix
+++ b/pkgs/development/python-modules/pycocotools/default.nix
@@ -7,12 +7,12 @@
buildPythonPackage rec {
pname = "pycocotools";
- version = "2.0.3";
+ version = "2.0.4";
format = "setuptools";
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-OCkCSTABN3EVZSGkuNtLOu9ZBVbPo6jdP6sCfTmyFeE=";
+ sha256 = "2ab586aa389b9657b6d73c2b9a827a3681f8d00f36490c2e8ab05902e3fd9e93";
};
propagatedBuildInputs = [
@@ -32,6 +32,6 @@ buildPythonPackage rec {
description = "Official APIs for the MS-COCO dataset";
homepage = "https://github.com/cocodataset/cocoapi/tree/master/PythonAPI";
license = licenses.bsd2;
- maintainers = with maintainers; [ hexa piegames ];
+ maintainers = with maintainers; [ piegames ];
};
}
diff --git a/pkgs/development/python-modules/pyradios/default.nix b/pkgs/development/python-modules/pyradios/default.nix
index f95988063dd2..06d5f9724833 100644
--- a/pkgs/development/python-modules/pyradios/default.nix
+++ b/pkgs/development/python-modules/pyradios/default.nix
@@ -1,11 +1,21 @@
-{ lib, buildPythonPackage, fetchPypi, appdirs, requests }:
+{ lib
+, buildPythonPackage
+, fetchPypi
+, appdirs
+, requests
+, pythonOlder
+}:
+
buildPythonPackage rec {
pname = "pyradios";
- version = "0.0.22";
+ version = "1.0.1";
+ format = "setuptools";
+
+ disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
- sha256 = "1bgfb8vz7jybswss16pdzns0qpqfrwa9f2g8qrh1r4mig4xh2dmi";
+ sha256 = "0fd3b234c635d9e628bdadb9dc3a820405631b54977402719a641d2e1cc3f7b6";
};
propagatedBuildInputs = [
@@ -13,6 +23,7 @@ buildPythonPackage rec {
requests
];
+ # Tests and pythonImportsCheck require network access
doCheck = false;
meta = with lib; {
diff --git a/pkgs/development/python-modules/rich/default.nix b/pkgs/development/python-modules/rich/default.nix
index 6517d15df579..ca7397598269 100644
--- a/pkgs/development/python-modules/rich/default.nix
+++ b/pkgs/development/python-modules/rich/default.nix
@@ -13,7 +13,7 @@
buildPythonPackage rec {
pname = "rich";
- version = "10.16.1";
+ version = "10.16.2";
format = "pyproject";
disabled = pythonOlder "3.6";
@@ -21,7 +21,7 @@ buildPythonPackage rec {
owner = "willmcgugan";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-smeRZTMIDbK9pZRRj42BGj8ifQw9bTTE90rGaV/Up/4=";
+ sha256 = "sha256-SVenprbWq+ucQPAM1e9sNVYWbGAeo7qdEBy+cvqAMK8=";
};
nativeBuildInputs = [ poetry-core ];
diff --git a/pkgs/development/python-modules/tensorboardx/default.nix b/pkgs/development/python-modules/tensorboardx/default.nix
index 2127d2275678..eacb5b4cdc80 100644
--- a/pkgs/development/python-modules/tensorboardx/default.nix
+++ b/pkgs/development/python-modules/tensorboardx/default.nix
@@ -1,13 +1,14 @@
{ boto3
, buildPythonPackage
, crc32c
+, which
, fetchFromGitHub
, lib
, matplotlib
, moto
, numpy
, pillow
-, protobuf
+, protobuf3_8
, pytestCheckHook
, pytorch
, six
@@ -24,7 +25,7 @@ buildPythonPackage rec {
owner = "lanpa";
repo = "tensorboardX";
rev = "v${version}";
- sha256 = "1kcw062bcqvqva5kag9j7q72wk3vdqgf5cnn0lxmsvhlmq5sjdfn";
+ sha256 = "sha256-1jWpC64Ubl07Bday4h5ue0wuDj4yPTWL2nhjtoQBnM0=";
};
# apparently torch API changed a bit at 1.6
@@ -34,10 +35,16 @@ buildPythonPackage rec {
"torch.onnx.select_model_mode_for_export(model, torch.onnx.TrainingMode.EVAL)"
'';
+ # Wanted protobuf version is mentioned here:
+ # https://github.com/lanpa/tensorboardX/blob/0d08112618a2bbda4c028a15a137fed3afe77401/compile.sh#L6
+ nativeBuildInputs = [ which protobuf3_8 ];
+
+ # required to make tests deterministic
+ PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION = "python";
+
propagatedBuildInputs = [
crc32c
numpy
- protobuf
six
soundfile
];
@@ -63,9 +70,6 @@ buildPythonPackage rec {
disabledTestPaths = [
# we are not interested in linting errors
"tests/test_lint.py"
- # breaks with `RuntimeError: cannot schedule new futures after interpreter shutdown`
- # Upstream tracking bug: https://github.com/lanpa/tensorboardX/issues/652
- "tests/test_pr_curve.py"
];
meta = with lib; {
diff --git a/pkgs/development/python-modules/tgcrypto/default.nix b/pkgs/development/python-modules/tgcrypto/default.nix
index 7fd62d7bcbe3..728676b53b38 100644
--- a/pkgs/development/python-modules/tgcrypto/default.nix
+++ b/pkgs/development/python-modules/tgcrypto/default.nix
@@ -7,7 +7,7 @@
buildPythonPackage rec {
pname = "tgcrypto";
- version = "1.2.2";
+ version = "1.2.3";
disabled = pythonOlder "3.6";
@@ -15,7 +15,7 @@ buildPythonPackage rec {
owner = "pyrogram";
repo = "tgcrypto";
rev = "v${version}";
- sha256 = "1vyjycjb2n790371kf47qc0mkvd4bxmhh65cfxjsrcjpiri7shjf";
+ sha256 = "06g1kv3skq2948h0sjf64s1cr2p1rhxnx5pf9nmvhxkmri1xmfzs";
};
checkInputs = [
diff --git a/pkgs/development/tools/geckodriver/cargo-lock.patch b/pkgs/development/tools/geckodriver/cargo-lock.patch
index 5c066a7e9746..2a19cca202e6 100644
--- a/pkgs/development/tools/geckodriver/cargo-lock.patch
+++ b/pkgs/development/tools/geckodriver/cargo-lock.patch
@@ -3,9 +3,11 @@ new file mode 100644
index 0000000..4430666
--- /dev/null
+++ b/Cargo.lock
-@@ -0,0 +1,1493 @@
+@@ -0,0 +1,1449 @@
+# This file is automatically @generated by Cargo.
+# It is not intended for manual editing.
++version = 3
++
+[[package]]
+name = "adler"
+version = "1.0.2"
@@ -14,26 +16,14 @@ index 0000000..4430666
+
+[[package]]
+name = "aho-corasick"
-+version = "0.7.15"
++version = "0.7.18"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "7404febffaa47dac81aa44dba71523c9d069b1bdc50a77db41195149e17f68e5"
++checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f"
+dependencies = [
+ "memchr",
+]
+
+[[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 = "autocfg"
+version = "1.0.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -62,20 +52,9 @@ index 0000000..4430666
+
+[[package]]
+name = "bitflags"
-+version = "1.2.1"
++version = "1.3.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
-+
-+[[package]]
-+name = "blake2b_simd"
-+version = "0.5.11"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "afa748e348ad3be8263be728124b24a24f268266f6f5d58af9d75f6a40b5c587"
-+dependencies = [
-+ "arrayref",
-+ "arrayvec",
-+ "constant_time_eq",
-+]
++checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
+
+[[package]]
+name = "block-buffer"
@@ -100,9 +79,9 @@ index 0000000..4430666
+
+[[package]]
+name = "bytes"
-+version = "1.0.1"
++version = "1.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "b700ce4376041dcd0a327fd0097c41095743c4c8af8887265942faf1100bd040"
++checksum = "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8"
+
+[[package]]
+name = "cfg-if"
@@ -131,9 +110,9 @@ index 0000000..4430666
+
+[[package]]
+name = "clap"
-+version = "2.33.3"
++version = "2.34.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "37e58ac78573c40708d45522f0d80fa2f01cc4f9b4e2bf749807255454312002"
++checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
+dependencies = [
+ "bitflags",
+ "strsim",
@@ -143,12 +122,6 @@ index 0000000..4430666
+]
+
+[[package]]
-+name = "constant_time_eq"
-+version = "0.1.5"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
-+
-+[[package]]
+name = "cookie"
+version = "0.12.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -158,29 +131,21 @@ index 0000000..4430666
+]
+
+[[package]]
-+name = "cpuid-bool"
-+version = "0.1.2"
++name = "cpufeatures"
++version = "0.2.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "8aebca1129a03dc6dc2b127edd729435bbc4a37e1d5f4d7513165089ceb02634"
-+
-+[[package]]
-+name = "crc32fast"
-+version = "1.2.1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "81156fece84ab6a9f2afdb109ce3ae577e42b1228441eded99bd77f627953b1a"
++checksum = "95059428f66df56b63431fdb4e1947ed2190586af5c5a8a8b71122bdf5a7f469"
+dependencies = [
-+ "cfg-if 1.0.0",
++ "libc",
+]
+
+[[package]]
-+name = "crossbeam-utils"
-+version = "0.8.3"
++name = "crc32fast"
++version = "1.3.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "e7e9d99fa91428effe99c5c6d4634cdeba32b8cf784fc428a2a687f61a952c49"
++checksum = "738c290dfaea84fc1ca15ad9c168d083b05a714e1efddd8edaab678dc28d2836"
+dependencies = [
-+ "autocfg",
+ "cfg-if 1.0.0",
-+ "lazy_static",
+]
+
+[[package]]
@@ -204,9 +169,9 @@ index 0000000..4430666
+
+[[package]]
+name = "dirs-sys"
-+version = "0.3.5"
++version = "0.3.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "8e93d7f5705de3e49895a2b5e0b8855a1c27f080192ae9c32a6432d50741a57a"
++checksum = "03d86534ed367a67548dc68113a0f5db55432fdfbb6e6f9d77704397d95d5780"
+dependencies = [
+ "libc",
+ "redox_users",
@@ -221,9 +186,9 @@ index 0000000..4430666
+
+[[package]]
+name = "flate2"
-+version = "1.0.20"
++version = "1.0.22"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "cd3aec53de10fe96d7d8c565eb17f2c687bb5518a2ec453b5b1252964526abe0"
++checksum = "1e6988e897c1c9c485f43b47a529cef42fde0547f9d8d41a7062518f1d8fc53f"
+dependencies = [
+ "cfg-if 1.0.0",
+ "crc32fast",
@@ -265,9 +230,9 @@ index 0000000..4430666
+
+[[package]]
+name = "futures"
-+version = "0.3.14"
++version = "0.3.19"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "a9d5813545e459ad3ca1bff9915e9ad7f1a47dc6a91b627ce321d5863b7dd253"
++checksum = "28560757fe2bb34e79f907794bb6b22ae8b0e5c669b638a1132f2592b19035b4"
+dependencies = [
+ "futures-channel",
+ "futures-core",
@@ -279,9 +244,9 @@ index 0000000..4430666
+
+[[package]]
+name = "futures-channel"
-+version = "0.3.14"
++version = "0.3.19"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "ce79c6a52a299137a6013061e0cf0e688fce5d7f1bc60125f520912fdb29ec25"
++checksum = "ba3dda0b6588335f360afc675d0564c17a77a2bda81ca178a4b6081bd86c7f0b"
+dependencies = [
+ "futures-core",
+ "futures-sink",
@@ -289,44 +254,44 @@ index 0000000..4430666
+
+[[package]]
+name = "futures-core"
-+version = "0.3.14"
++version = "0.3.19"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "098cd1c6dda6ca01650f1a37a794245eb73181d0d4d4e955e2f3c37db7af1815"
++checksum = "d0c8ff0461b82559810cdccfde3215c3f373807f5e5232b71479bff7bb2583d7"
+
+[[package]]
+name = "futures-io"
-+version = "0.3.14"
++version = "0.3.19"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "365a1a1fb30ea1c03a830fdb2158f5236833ac81fa0ad12fe35b29cddc35cb04"
++checksum = "b1f9d34af5a1aac6fb380f735fe510746c38067c5bf16c7fd250280503c971b2"
+
+[[package]]
+name = "futures-sink"
-+version = "0.3.14"
++version = "0.3.19"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "5c5629433c555de3d82861a7a4e3794a4c40040390907cfbfd7143a92a426c23"
++checksum = "e3055baccb68d74ff6480350f8d6eb8fcfa3aa11bdc1a1ae3afdd0514617d508"
+
+[[package]]
+name = "futures-task"
-+version = "0.3.14"
++version = "0.3.19"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "ba7aa51095076f3ba6d9a1f702f74bd05ec65f555d70d2033d55ba8d69f581bc"
++checksum = "6ee7c6485c30167ce4dfb83ac568a849fe53274c831081476ee13e0dce1aad72"
+
+[[package]]
+name = "futures-util"
-+version = "0.3.14"
++version = "0.3.19"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "3c144ad54d60f23927f0a6b6d816e4271278b64f005ad65e4e35291d2de9c025"
++checksum = "d9b5cf40b47a271f77a8b1bec03ca09044d99d2372c0de244e66430761127164"
+dependencies = [
+ "futures-core",
+ "futures-sink",
+ "futures-task",
-+ "pin-project-lite 0.2.6",
++ "pin-project-lite 0.2.8",
+ "pin-utils",
+]
+
+[[package]]
+name = "geckodriver"
-+version = "0.29.1"
++version = "0.30.0"
+dependencies = [
+ "base64 0.12.3",
+ "chrono",
@@ -351,9 +316,9 @@ index 0000000..4430666
+
+[[package]]
+name = "generic-array"
-+version = "0.14.4"
++version = "0.14.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "501466ecc8a30d1d3b7fc9229b122b2ce8ed6e9d9223f1138d4babb253e51817"
++checksum = "fd48d33ec7f05fbfa152300fdad764757cbded343c1aa1cff2fbaf4134851803"
+dependencies = [
+ "typenum",
+ "version_check",
@@ -361,24 +326,13 @@ index 0000000..4430666
+
+[[package]]
+name = "getrandom"
-+version = "0.1.16"
++version = "0.2.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
++checksum = "7fcd999463524c52659517fe2cea98493cfe485d10565e7b0fb07dbba7ad2753"
+dependencies = [
+ "cfg-if 1.0.0",
+ "libc",
-+ "wasi 0.9.0+wasi-snapshot-preview1",
-+]
-+
-+[[package]]
-+name = "getrandom"
-+version = "0.2.2"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "c9495705279e7140bf035dde1f6e750c162df8b625267cd52cc44e0b156732c8"
-+dependencies = [
-+ "cfg-if 1.0.0",
-+ "libc",
-+ "wasi 0.10.2+wasi-snapshot-preview1",
++ "wasi",
+]
+
+[[package]]
@@ -403,24 +357,24 @@ index 0000000..4430666
+
+[[package]]
+name = "hashbrown"
-+version = "0.9.1"
++version = "0.11.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "d7afe4a420e3fe79967a00898cc1f4db7c8a49a9333a29f8a4bd76a253d5cd04"
++checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
+
+[[package]]
+name = "headers"
-+version = "0.3.4"
++version = "0.3.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "f0b7591fb62902706ae8e7aaff416b1b0fa2c0fd0878b46dc13baa3712d8a855"
++checksum = "a4c4eb0471fcb85846d8b0690695ef354f9afb11cb03cac2e1d7c9253351afb0"
+dependencies = [
+ "base64 0.13.0",
+ "bitflags",
-+ "bytes 1.0.1",
++ "bytes 1.1.0",
+ "headers-core",
+ "http",
++ "httpdate 1.0.2",
+ "mime",
+ "sha-1",
-+ "time",
+]
+
+[[package]]
@@ -434,13 +388,13 @@ index 0000000..4430666
+
+[[package]]
+name = "http"
-+version = "0.2.4"
++version = "0.2.6"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "527e8c9ac747e28542699a951517aa9a6945af506cd1f2e1b53a576c17b6cc11"
++checksum = "31f4c6746584866f0feabcc69893c5b51beef3831656a968ed7ae254cdc4fd03"
+dependencies = [
-+ "bytes 1.0.1",
++ "bytes 1.1.0",
+ "fnv",
-+ "itoa",
++ "itoa 1.0.1",
+]
+
+[[package]]
@@ -455,9 +409,9 @@ index 0000000..4430666
+
+[[package]]
+name = "httparse"
-+version = "1.3.6"
++version = "1.5.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "bc35c995b9d93ec174cf9a27d425c7892722101e14993cd227fdb51d70cf9589"
++checksum = "acd94fdbe1d4ff688b67b04eee2e17bd50995534a61539e45adfefb45e5e5503"
+
+[[package]]
+name = "httpdate"
@@ -466,6 +420,12 @@ index 0000000..4430666
+checksum = "494b4d60369511e7dea41cf646832512a94e542f68bb9c49e54518e0f468eb47"
+
+[[package]]
++name = "httpdate"
++version = "1.0.2"
++source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
++
++[[package]]
+name = "hyper"
+version = "0.13.10"
+source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -479,9 +439,9 @@ index 0000000..4430666
+ "http",
+ "http-body",
+ "httparse",
-+ "httpdate",
-+ "itoa",
-+ "pin-project 1.0.6",
++ "httpdate 0.3.2",
++ "itoa 0.4.8",
++ "pin-project 1.0.10",
+ "socket2",
+ "tokio",
+ "tower-service",
@@ -491,9 +451,9 @@ index 0000000..4430666
+
+[[package]]
+name = "idna"
-+version = "0.2.2"
++version = "0.2.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "89829a5d69c23d348314a7ac337fe39173b61149a9864deabd260983aed48c21"
++checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
+dependencies = [
+ "matches",
+ "unicode-bidi",
@@ -502,9 +462,9 @@ index 0000000..4430666
+
+[[package]]
+name = "indexmap"
-+version = "1.6.2"
++version = "1.8.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "824845a0bf897a9042383849b02c1bc219c2383772efcd5c6f9766fa4b81aef3"
++checksum = "282a6247722caba404c065016bbfa522806e51714c34f5dfc3e4a3a46fcb4223"
+dependencies = [
+ "autocfg",
+ "hashbrown",
@@ -521,9 +481,15 @@ index 0000000..4430666
+
+[[package]]
+name = "itoa"
-+version = "0.4.7"
++version = "0.4.8"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "dd25036021b0de88a0aff6b850051563c6516d0bf53f8638938edbb9de732736"
++checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
++
++[[package]]
++name = "itoa"
++version = "1.0.1"
++source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "1aab8fc367588b89dcee83ab0fd66b72b50b72fa1904d7095045ace2b0c81c35"
+
+[[package]]
+name = "kernel32-sys"
@@ -543,9 +509,9 @@ index 0000000..4430666
+
+[[package]]
+name = "libc"
-+version = "0.2.93"
++version = "0.2.112"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "9385f66bf6105b241aa65a61cb923ef20efc665cb9f9bb50ac2f0c4b7f378d41"
++checksum = "1b03d17f364a3a042d5e5d46b053bbbf82c92c9430c592dd4c064dc6ee997125"
+
+[[package]]
+name = "line-wrap"
@@ -582,15 +548,15 @@ index 0000000..4430666
+
+[[package]]
+name = "matches"
-+version = "0.1.8"
++version = "0.1.9"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08"
++checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
+
+[[package]]
+name = "memchr"
-+version = "2.3.4"
++version = "2.4.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "0ee1c47aaa256ecabcaea351eae4a9b01ef39ed810004e298d2511ed284b1525"
++checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a"
+
+[[package]]
+name = "mime"
@@ -651,26 +617,27 @@ index 0000000..4430666
+
+[[package]]
+name = "mozdevice"
-+version = "0.3.2"
++version = "0.4.0"
+dependencies = [
+ "log",
+ "once_cell",
+ "regex",
+ "tempfile",
++ "unix_path",
+ "uuid",
+ "walkdir",
+]
+
+[[package]]
+name = "mozprofile"
-+version = "0.7.2"
++version = "0.7.3"
+dependencies = [
+ "tempfile",
+]
+
+[[package]]
+name = "mozrunner"
-+version = "0.12.1"
++version = "0.13.0"
+dependencies = [
+ "dirs",
+ "log",
@@ -681,7 +648,7 @@ index 0000000..4430666
+
+[[package]]
+name = "mozversion"
-+version = "0.4.1"
++version = "0.4.2"
+dependencies = [
+ "regex",
+ "rust-ini",
@@ -730,9 +697,9 @@ index 0000000..4430666
+
+[[package]]
+name = "once_cell"
-+version = "1.7.2"
++version = "1.9.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "af8b08b04175473088b46763e51ee54da5f9a164bc162f615b91bc179dbf15a3"
++checksum = "da32515d9f6e6e489d7bc9d84c71b060db7247dc035bbe44eac88cf87486d8d5"
+
+[[package]]
+name = "opaque-debug"
@@ -748,27 +715,27 @@ index 0000000..4430666
+
+[[package]]
+name = "pin-project"
-+version = "0.4.28"
++version = "0.4.29"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "918192b5c59119d51e0cd221f4d49dde9112824ba717369e903c97d076083d0f"
++checksum = "9615c18d31137579e9ff063499264ddc1278e7b1982757ebc111028c4d1dc909"
+dependencies = [
-+ "pin-project-internal 0.4.28",
++ "pin-project-internal 0.4.29",
+]
+
+[[package]]
+name = "pin-project"
-+version = "1.0.6"
++version = "1.0.10"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "bc174859768806e91ae575187ada95c91a29e96a98dc5d2cd9a1fed039501ba6"
++checksum = "58ad3879ad3baf4e44784bc6a718a8698867bb991f8ce24d1bcbe2cfb4c3a75e"
+dependencies = [
-+ "pin-project-internal 1.0.6",
++ "pin-project-internal 1.0.10",
+]
+
+[[package]]
+name = "pin-project-internal"
-+version = "0.4.28"
++version = "0.4.29"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "3be26700300be6d9d23264c73211d8190e755b6b5ca7a1b28230025511b52a5e"
++checksum = "044964427019eed9d49d9d5bbce6047ef18f37100ea400912a9fa4a3523ab12a"
+dependencies = [
+ "proc-macro2",
+ "quote",
@@ -777,9 +744,9 @@ index 0000000..4430666
+
+[[package]]
+name = "pin-project-internal"
-+version = "1.0.6"
++version = "1.0.10"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "a490329918e856ed1b083f244e3bfe2d8c4f336407e4ea9e1a9f479ff09049e5"
++checksum = "744b6f092ba29c3650faf274db506afd39944f48420f6c86b17cfe0ee1cb36bb"
+dependencies = [
+ "proc-macro2",
+ "quote",
@@ -794,9 +761,9 @@ index 0000000..4430666
+
+[[package]]
+name = "pin-project-lite"
-+version = "0.2.6"
++version = "0.2.8"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "dc0e1f259c92177c30a4c9d177246edd0a3568b25756a977d0632cf8fa37e905"
++checksum = "e280fbe77cc62c91527259e9442153f4688736748d24660126286329742b4c6c"
+
+[[package]]
+name = "pin-utils"
@@ -826,33 +793,33 @@ index 0000000..4430666
+
+[[package]]
+name = "ppv-lite86"
-+version = "0.2.10"
++version = "0.2.16"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "ac74c624d6b2d21f425f752262f42188365d7b8ff1aff74c82e45136510a4857"
++checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872"
+
+[[package]]
+name = "proc-macro2"
-+version = "1.0.26"
++version = "1.0.36"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "a152013215dca273577e18d2bf00fa862b89b24169fb78c4c95aeb07992c9cec"
++checksum = "c7342d5883fbccae1cc37a2353b09c87c9b0f3afd73f5fb9bba687a1f733b029"
+dependencies = [
+ "unicode-xid",
+]
+
+[[package]]
+name = "quote"
-+version = "1.0.9"
++version = "1.0.14"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "c3d0b9745dc2debf507c8422de05d7226cc1f0644216dfdfead988f9b1ab32a7"
++checksum = "47aa80447ce4daf1717500037052af176af5d38cc3e571d9ec1c7353fc10c87d"
+dependencies = [
+ "proc-macro2",
+]
+
+[[package]]
+name = "rand"
-+version = "0.8.3"
++version = "0.8.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "0ef9e7e66b4468674bfcb0c81af8b7fa0bb154fa9f28eb840da5c447baeb8d7e"
++checksum = "2e7573632e6454cf6b99d7aac4ccca54be06da05aca2ef7423d22d27d4d4bcd8"
+dependencies = [
+ "libc",
+ "rand_chacha",
@@ -862,9 +829,9 @@ index 0000000..4430666
+
+[[package]]
+name = "rand_chacha"
-+version = "0.3.0"
++version = "0.3.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "e12735cf05c9e10bf21534da50a147b924d555dc7a547c42e6bb2d5b6017ae0d"
++checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
+dependencies = [
+ "ppv-lite86",
+ "rand_core",
@@ -872,53 +839,46 @@ index 0000000..4430666
+
+[[package]]
+name = "rand_core"
-+version = "0.6.2"
++version = "0.6.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "34cf66eb183df1c5876e2dcf6b13d57340741e8dc255b48e40a26de954d06ae7"
++checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
+dependencies = [
-+ "getrandom 0.2.2",
++ "getrandom",
+]
+
+[[package]]
+name = "rand_hc"
-+version = "0.3.0"
++version = "0.3.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "3190ef7066a446f2e7f42e239d161e905420ccab01eb967c9eb27d21b2322a73"
++checksum = "d51e9f596de227fda2ea6c84607f5558e196eeaf43c986b724ba4fb8fdf497e7"
+dependencies = [
+ "rand_core",
+]
+
+[[package]]
+name = "redox_syscall"
-+version = "0.1.57"
++version = "0.2.10"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce"
-+
-+[[package]]
-+name = "redox_syscall"
-+version = "0.2.5"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "94341e4e44e24f6b591b59e47a8a027df12e008d73fd5672dbea9cc22f4507d9"
++checksum = "8383f39639269cde97d255a32bdb68c047337295414940c68bdd30c2e13203ff"
+dependencies = [
+ "bitflags",
+]
+
+[[package]]
+name = "redox_users"
-+version = "0.3.5"
++version = "0.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "de0737333e7a9502c789a36d7c7fa6092a49895d4faa31ca5df163857ded2e9d"
++checksum = "528532f3d801c87aec9def2add9ca802fe569e44a544afe633765267840abe64"
+dependencies = [
-+ "getrandom 0.1.16",
-+ "redox_syscall 0.1.57",
-+ "rust-argon2",
++ "getrandom",
++ "redox_syscall",
+]
+
+[[package]]
+name = "regex"
-+version = "1.4.5"
++version = "1.5.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "957056ecddbeba1b26965114e191d2e8589ce74db242b6ea25fc4062427a5c19"
++checksum = "d07a8629359eb56f1e2fb1652bb04212c072a87ba68546a04065d525673ac461"
+dependencies = [
+ "aho-corasick",
+ "memchr",
@@ -927,9 +887,9 @@ index 0000000..4430666
+
+[[package]]
+name = "regex-syntax"
-+version = "0.6.23"
++version = "0.6.25"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "24d5f089152e60f62d28b835fbff2cd2e8dc0baf1ac13343bef92ab7eed84548"
++checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"
+
+[[package]]
+name = "remove_dir_all"
@@ -941,18 +901,6 @@ index 0000000..4430666
+]
+
+[[package]]
-+name = "rust-argon2"
-+version = "0.8.3"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "4b18820d944b33caa75a71378964ac46f58517c92b6ae5f762636247c09e78fb"
-+dependencies = [
-+ "base64 0.13.0",
-+ "blake2b_simd",
-+ "constant_time_eq",
-+ "crossbeam-utils",
-+]
-+
-+[[package]]
+name = "rust-ini"
+version = "0.10.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -960,9 +908,9 @@ index 0000000..4430666
+
+[[package]]
+name = "ryu"
-+version = "1.0.5"
++version = "1.0.9"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e"
++checksum = "73b4b750c782965c211b42f022f59af1fbceabdd026623714f104152f1ec149f"
+
+[[package]]
+name = "safemem"
@@ -1002,18 +950,18 @@ index 0000000..4430666
+
+[[package]]
+name = "serde"
-+version = "1.0.125"
++version = "1.0.133"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "558dc50e1a5a5fa7112ca2ce4effcb321b0300c0d4ccf0776a9f60cd89031171"
++checksum = "97565067517b60e2d1ea8b268e59ce036de907ac523ad83a0475da04e818989a"
+dependencies = [
+ "serde_derive",
+]
+
+[[package]]
+name = "serde_derive"
-+version = "1.0.125"
++version = "1.0.133"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "b093b7a2bb58203b5da3056c05b4ec1fed827dcfdb37347a8841695263b3d06d"
++checksum = "ed201699328568d8d08208fdd080e3ff594e6c422e438b6705905da01005d537"
+dependencies = [
+ "proc-macro2",
+ "quote",
@@ -1022,20 +970,20 @@ index 0000000..4430666
+
+[[package]]
+name = "serde_json"
-+version = "1.0.64"
++version = "1.0.74"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "799e97dc9fdae36a5c8b8f2cae9ce2ee9fdce2058c57a93e6099d919fd982f79"
++checksum = "ee2bb9cd061c5865d345bb02ca49fcef1391741b672b54a0bf7b679badec3142"
+dependencies = [
-+ "itoa",
++ "itoa 1.0.1",
+ "ryu",
+ "serde",
+]
+
+[[package]]
+name = "serde_repr"
-+version = "0.1.6"
++version = "0.1.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "2dc6b7951b17b051f3210b063f12cc17320e2fe30ae05b0fe2a3abb068551c76"
++checksum = "98d0516900518c29efa217c298fa1f4e6c6ffc85ae29fd7f4ee48f176e1a9ed5"
+dependencies = [
+ "proc-macro2",
+ "quote",
@@ -1049,41 +997,41 @@ index 0000000..4430666
+checksum = "9ec5d77e2d4c73717816afac02670d5c4f534ea95ed430442cad02e7a6e32c97"
+dependencies = [
+ "dtoa",
-+ "itoa",
++ "itoa 0.4.8",
+ "serde",
+ "url",
+]
+
+[[package]]
+name = "serde_yaml"
-+version = "0.8.17"
++version = "0.8.23"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "15654ed4ab61726bf918a39cb8d98a2e2995b002387807fa6ba58fdf7f59bb23"
++checksum = "a4a521f2940385c165a24ee286aa8599633d162077a54bdcae2a6fd5a7bfa7a0"
+dependencies = [
-+ "dtoa",
-+ "linked-hash-map",
++ "indexmap",
++ "ryu",
+ "serde",
+ "yaml-rust",
+]
+
+[[package]]
+name = "sha-1"
-+version = "0.9.4"
++version = "0.9.8"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "dfebf75d25bd900fd1e7d11501efab59bc846dbc76196839663e6637bba9f25f"
++checksum = "99cd6713db3cf16b6c84e06321e049a9b9f699826e16096d23bbcc44d15d51a6"
+dependencies = [
+ "block-buffer",
+ "cfg-if 1.0.0",
-+ "cpuid-bool",
++ "cpufeatures",
+ "digest",
+ "opaque-debug",
+]
+
+[[package]]
+name = "slab"
-+version = "0.4.2"
++version = "0.4.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8"
++checksum = "9def91fd1e018fe007022791f865d0ccc9b3a0d5001e01aabb8b40e46000afb5"
+
+[[package]]
+name = "socket2"
@@ -1104,9 +1052,9 @@ index 0000000..4430666
+
+[[package]]
+name = "syn"
-+version = "1.0.69"
++version = "1.0.85"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "48fe99c6bd8b1cc636890bcc071842de909d902c81ac7dab53ba33c421ab8ffb"
++checksum = "a684ac3dcd8913827e18cd09a68384ee66c1de24157e3c556c9ab16d85695fb7"
+dependencies = [
+ "proc-macro2",
+ "quote",
@@ -1122,7 +1070,7 @@ index 0000000..4430666
+ "cfg-if 1.0.0",
+ "libc",
+ "rand",
-+ "redox_syscall 0.2.5",
++ "redox_syscall",
+ "remove_dir_all",
+ "winapi 0.3.9",
+]
@@ -1159,9 +1107,9 @@ index 0000000..4430666
+
+[[package]]
+name = "tinyvec"
-+version = "1.2.0"
++version = "1.5.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "5b5220f05bb7de7f3f53c7c065e1199b3172696fe2db9f9c4d8ad9b4ee74c342"
++checksum = "2c1c1d5a42b6245520c249549ec267180beaffcc0615401ac8e31853d4b6d8d2"
+dependencies = [
+ "tinyvec_macros",
+]
@@ -1211,21 +1159,21 @@ index 0000000..4430666
+
+[[package]]
+name = "tracing"
-+version = "0.1.25"
++version = "0.1.29"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "01ebdc2bb4498ab1ab5f5b73c5803825e60199229ccba0698170e3be0e7f959f"
++checksum = "375a639232caf30edfc78e8d89b2d4c375515393e7af7e16f01cd96917fb2105"
+dependencies = [
+ "cfg-if 1.0.0",
+ "log",
-+ "pin-project-lite 0.2.6",
++ "pin-project-lite 0.2.8",
+ "tracing-core",
+]
+
+[[package]]
+name = "tracing-core"
-+version = "0.1.17"
++version = "0.1.21"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "f50de3927f93d202783f4513cda820ab47ef17f624b03c096e86ef00c67e6b5f"
++checksum = "1f4ed65637b8390770814083d20756f87bfa2c21bf2f110babdc5438351746e4"
+dependencies = [
+ "lazy_static",
+]
@@ -1236,7 +1184,7 @@ index 0000000..4430666
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2"
+dependencies = [
-+ "pin-project 1.0.6",
++ "pin-project 1.0.10",
+ "tracing",
+]
+
@@ -1248,9 +1196,9 @@ index 0000000..4430666
+
+[[package]]
+name = "typenum"
-+version = "1.13.0"
++version = "1.15.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "879f6906492a7cd215bfa4cf595b600146ccfac0c79bcbd1f3000162af5e8b06"
++checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
+
+[[package]]
+name = "unicase"
@@ -1263,45 +1211,57 @@ index 0000000..4430666
+
+[[package]]
+name = "unicode-bidi"
-+version = "0.3.5"
++version = "0.3.7"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "eeb8be209bb1c96b7c177c7420d26e04eccacb0eeae6b980e35fcb74678107e0"
-+dependencies = [
-+ "matches",
-+]
++checksum = "1a01404663e3db436ed2746d9fefef640d868edae3cceb81c3b8d5732fda678f"
+
+[[package]]
+name = "unicode-normalization"
-+version = "0.1.17"
++version = "0.1.19"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "07fbfce1c8a97d547e8b5334978438d9d6ec8c20e38f56d4a4374d181493eaef"
++checksum = "d54590932941a9e9266f0832deed84ebe1bf2e4c9e4a3554d393d18f5e854bf9"
+dependencies = [
+ "tinyvec",
+]
+
+[[package]]
+name = "unicode-segmentation"
-+version = "1.7.1"
++version = "1.8.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "bb0d2e7be6ae3a5fa87eed5fb451aff96f2573d2694942e40543ae0bbe19c796"
++checksum = "8895849a949e7845e06bd6dc1aa51731a103c42707010a5b591c0038fb73385b"
+
+[[package]]
+name = "unicode-width"
-+version = "0.1.8"
++version = "0.1.9"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "9337591893a19b88d8d87f2cec1e73fad5cdfd10e5a6f349f498ad6ea2ffb1e3"
++checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973"
+
+[[package]]
+name = "unicode-xid"
-+version = "0.2.1"
++version = "0.2.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "f7fe0bb3479651439c9112f72b6c505038574c9fbb575ed1bf3b797fa39dd564"
++checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"
++
++[[package]]
++name = "unix_path"
++version = "1.0.1"
++source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "af8e291873ae77c4c8d9c9b34d0bee68a35b048fb39c263a5155e0e353783eaf"
++dependencies = [
++ "unix_str",
++]
++
++[[package]]
++name = "unix_str"
++version = "1.0.0"
++source = "registry+https://github.com/rust-lang/crates.io-index"
++checksum = "2ace0b4755d0a2959962769239d56267f8a024fef2d9b32666b3dcd0946b0906"
+
+[[package]]
+name = "url"
-+version = "2.2.1"
++version = "2.2.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "9ccd964113622c8e9322cfac19eb1004a07e636c545f325da085d5cdde6f1f8b"
++checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c"
+dependencies = [
+ "form_urlencoded",
+ "idna",
@@ -1311,9 +1271,9 @@ index 0000000..4430666
+
+[[package]]
+name = "urlencoding"
-+version = "1.1.1"
++version = "1.3.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "c9232eb53352b4442e40d7900465dfc534e8cb2dc8f18656fcb2ac16112b5593"
++checksum = "5a1f0175e03a0973cf4afd476bef05c26e228520400eb1fd473ad417b1c00ffb"
+
+[[package]]
+name = "uuid"
@@ -1321,15 +1281,15 @@ index 0000000..4430666
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7"
+dependencies = [
-+ "getrandom 0.2.2",
++ "getrandom",
+ "serde",
+]
+
+[[package]]
+name = "version_check"
-+version = "0.9.3"
++version = "0.9.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "5fecdca9a5291cc2b8dcf7dc02453fee791a280f3743cb0905f8822ae463b3fe"
++checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
+
+[[package]]
+name = "walkdir"
@@ -1366,7 +1326,7 @@ index 0000000..4430666
+ "log",
+ "mime",
+ "mime_guess",
-+ "pin-project 0.4.28",
++ "pin-project 0.4.29",
+ "scoped-tls",
+ "serde",
+ "serde_json",
@@ -1380,25 +1340,21 @@ index 0000000..4430666
+
+[[package]]
+name = "wasi"
-+version = "0.9.0+wasi-snapshot-preview1"
-+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
-+
-+[[package]]
-+name = "wasi"
+version = "0.10.2+wasi-snapshot-preview1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6"
+
+[[package]]
+name = "webdriver"
-+version = "0.43.1"
++version = "0.44.0"
+dependencies = [
+ "base64 0.12.3",
+ "bytes 0.5.6",
+ "cookie",
+ "http",
+ "log",
++ "once_cell",
++ "regex",
+ "serde",
+ "serde_derive",
+ "serde_json",
@@ -1473,9 +1429,9 @@ index 0000000..4430666
+
+[[package]]
+name = "xml-rs"
-+version = "0.8.3"
++version = "0.8.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
-+checksum = "b07db065a5cf61a7e4ba64f29e67db906fb1787316516c4e6e5ff0fea1efcd8a"
++checksum = "d2d7d3948613f75c98fd9328cfdcc45acc4d360655289d0a7d4ec931392200a3"
+
+[[package]]
+name = "yaml-rust"
diff --git a/pkgs/development/tools/geckodriver/default.nix b/pkgs/development/tools/geckodriver/default.nix
index 25c2dbf3a11c..beb55c21a504 100644
--- a/pkgs/development/tools/geckodriver/default.nix
+++ b/pkgs/development/tools/geckodriver/default.nix
@@ -7,22 +7,22 @@
}:
rustPlatform.buildRustPackage {
- version = "0.29.1";
+ version = "0.30.0";
pname = "geckodriver";
sourceRoot = "source/testing/geckodriver";
# Source revisions are noted alongside the binary releases:
# https://github.com/mozilla/geckodriver/releases
src = (fetchzip {
- url = "https://hg.mozilla.org/mozilla-central/archive/970ef713fe58cbc8a29bfb2fb452a57e010bdb08.zip/testing";
- sha256 = "0cpx0kx8asqkmz2nyanbmcvhnrsksgd6jp3wlcd0maid3qbyw7s2";
+ url = "https://hg.mozilla.org/mozilla-central/archive/d372710b98a6ce5d1b2a9dffd53a879091c5c148.zip/testing";
+ sha256 = "0d27h9c8vw4rs9c2l9wms4lc931nbp2g5hacsh24zhc9y3v454i6";
}).overrideAttrs (_: {
# normally guessed by the url's file extension, force it to unpack properly
unpackCmd = "unzip $curSrc";
});
cargoPatches = [ ./cargo-lock.patch ];
- cargoSha256 = "1vajlcpyk77v6nvhs737yi8hs7ids9kz0sbwy29rm1vmmfjp2b27";
+ cargoSha256 = "08zcrhrmxh3c3iwd7kbnr19lfisikb779i2r7ir7b1i1ynmi4v6r";
buildInputs = lib.optionals stdenv.isDarwin [ libiconv Security ];
diff --git a/pkgs/misc/vscode-extensions/default.nix b/pkgs/misc/vscode-extensions/default.nix
index 5832d46a0415..55a2de116e81 100644
--- a/pkgs/misc/vscode-extensions/default.nix
+++ b/pkgs/misc/vscode-extensions/default.nix
@@ -746,8 +746,8 @@ let
mktplcRef = {
name = "auto-close-tag";
publisher = "formulahendry";
- version = "0.5.6";
- sha256 = "058jgmllqb0j6gg5anghdp35nkykii28igfcwqgh4bp10pyvspg0";
+ version = "0.5.13";
+ sha256 = "0swyxhcibv6cl54gmfpnbz6bqidjzc77nx369wndhlq264idnwkw";
};
meta = {
license = lib.licenses.mit;
@@ -758,8 +758,8 @@ let
mktplcRef = {
name = "auto-rename-tag";
publisher = "formulahendry";
- version = "0.1.6";
- sha256 = "0cqg9mxkyf41brjq2c764w42lzyn6ffphw6ciw7xnqk1h1x8wwbs";
+ version = "0.1.9";
+ sha256 = "1xk8rzda16qgdxhq8bz6f8w09fd9044qczx1wfhszd6w3r4q9262";
};
meta = {
license = lib.licenses.mit;
@@ -1056,8 +1056,8 @@ let
mktplcRef = {
name = "svg";
publisher = "jock";
- version = "1.4.7";
- sha256 = "04ghqg4s7g7yylmvbxzwzpnyy4zin2bwlgvflh18m77w4j0ckpiq";
+ version = "1.4.15";
+ sha256 = "0a5w6qxvsdzcmgc0yfiagpmz25y90pmzgrxz9899na5qy3pjcbmz";
};
meta = with lib; {
license = licenses.mit;
@@ -1068,8 +1068,8 @@ let
mktplcRef = {
name = "vscode-peacock";
publisher = "johnpapa";
- version = "3.9.1";
- sha256 = "1g7apzzgfm8s9sjavhwr8jpf9slhq8b9jfkww3q5n41mzzx8m94p";
+ version = "4.0.0";
+ sha256 = "1i65w70f0kikah1cx7m0bji6qd800jabfci0xisdqxyzaksg7ysz";
};
meta = with lib; {
license = licenses.mit;
@@ -1213,8 +1213,8 @@ let
mktplcRef = {
name = "vscode-docker";
publisher = "ms-azuretools";
- version = "1.9.1";
- sha256 = "1l7pm3s5kbf2vark164ykz4qbpa1ac9ls691hham36f6v91dmff9";
+ version = "1.18.0";
+ sha256 = "0hhlhx3xy7x31xx2v3srvk67immajs6dm9h0wi49ii1rwx61zxah";
};
meta = {
license = lib.licenses.mit;
@@ -1328,8 +1328,8 @@ let
mktplcRef = {
name = "vscode-yaml";
publisher = "redhat";
- version = "0.13.0";
- sha256 = "046kdk73a5xbrwq16ff0l64271c6q6ygjvxaph58z29gyiszfkig";
+ version = "1.2.2";
+ sha256 = "06n4fxqr3lqmiyns9jdk3rdnanamcpzhrivllai8z9d997xmwcx6";
};
meta = {
license = lib.licenses.mit;
@@ -1382,9 +1382,9 @@ let
pkief.material-icon-theme = buildVscodeMarketplaceExtension {
mktplcRef = {
name = "material-icon-theme";
- publisher = "pkief";
- version = "4.4.0";
- sha256 = "1m9mis59j9xnf1zvh67p5rhayaa9qxjiw9iw847nyl9vsy73w8ya";
+ publisher = "PKief";
+ version = "4.11.0";
+ sha256 = "1l2s8j645riqjmj09i3v71s8ycin5vd6brdp35z472fnk6wyi1y6";
};
meta = {
license = lib.licenses.mit;
@@ -1407,8 +1407,8 @@ let
mktplcRef = {
name = "partial-diff";
publisher = "ryu1kn";
- version = "1.4.1";
- sha256 = "1r4kg4slgxncdppr4fn7i5vfhvzcg26ljia2r97n6wvwn8534vs9";
+ version = "1.4.3";
+ sha256 = "0x3lkvna4dagr7s99yykji3x517cxk5kp7ydmqa6jb4bzzsv1s6h";
};
meta = {
license = lib.licenses.mit;
@@ -1674,8 +1674,8 @@ let
mktplcRef = {
name = "pdf";
publisher = "tomoki1207";
- version = "1.1.0";
- sha256 = "0pcs4iy77v4f04f8m9w2rpdzfq7sqbspr7f2sm1fv7bm515qgsvb";
+ version = "1.2.0";
+ sha256 = "1bcj546bp0w4yndd0qxwr8grhiwjd1jvf33jgmpm0j96y34vcszz";
};
meta = {
license = lib.licenses.mit;
@@ -1686,8 +1686,8 @@ let
mktplcRef = {
name = "sort-lines";
publisher = "Tyriar";
- version = "1.9.0";
- sha256 = "0l4wibsjnlbzbrl1wcj18vnm1q4ygvxmh347jvzziv8f1l790qjl";
+ version = "1.9.1";
+ sha256 = "0dds99j6awdxb0ipm15g543a5b6f0hr00q9rz961n0zkyawgdlcb";
};
meta = {
license = lib.licenses.mit;
@@ -1758,8 +1758,8 @@ let
mktplcRef = {
name = "highlight-matching-tag";
publisher = "vincaslt";
- version = "0.10.0";
- sha256 = "1albwz3lc9i20if77inm1ipwws8apigvx24rbag3d1h3p4vwda49";
+ version = "0.10.1";
+ sha256 = "0b9jpwiyxax783gyr9zhx7sgrdl9wffq34fi7y67vd68q9183jw1";
};
meta = {
license = lib.licenses.mit;
diff --git a/pkgs/os-specific/linux/alsa-project/alsa-ucm-conf/default.nix b/pkgs/os-specific/linux/alsa-project/alsa-ucm-conf/default.nix
index 0666f3f47939..e1474e02ed5b 100644
--- a/pkgs/os-specific/linux/alsa-project/alsa-ucm-conf/default.nix
+++ b/pkgs/os-specific/linux/alsa-project/alsa-ucm-conf/default.nix
@@ -1,12 +1,12 @@
{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
- name = "alsa-ucm-conf-${version}";
- version = "1.2.5.1";
+ pname = "alsa-ucm-conf";
+ version = "1.2.6.3";
src = fetchurl {
- url = "mirror://alsa/lib/${name}.tar.bz2";
- sha256 = "sha256-WEGkRBZty/R523UTA9vDVW9oUIWsfgDwyed1VnYZXZc=";
+ url = "mirror://alsa/lib/${pname}-${version}.tar.bz2";
+ sha256 = "sha256-uKA6o4emJKL2XtwgG/d3QhGQtgUpqSCHZGgjr72Wxc0=";
};
dontBuild = true;
diff --git a/pkgs/os-specific/linux/nvidia-x11/default.nix b/pkgs/os-specific/linux/nvidia-x11/default.nix
index 2af6db7faf38..e335c7740a45 100644
--- a/pkgs/os-specific/linux/nvidia-x11/default.nix
+++ b/pkgs/os-specific/linux/nvidia-x11/default.nix
@@ -62,11 +62,11 @@ rec {
# Last one supporting x86
legacy_390 = generic {
- version = "390.143";
- sha256_32bit = "AelrdTTeo/3+ZdXK0iniZDB8gJUkeZQtNoRm25z+bQY=";
- sha256_64bit = "tyKqcPM71ErK8ZZHLPtxmgrWzv6tfEmxBRveCSwTlO8=";
- settingsSha256 = "EJPXZbxZS1CMENAYk9dCAIsHsRTXJpj473+JLuhGkWI=";
- persistencedSha256 = "FtlPF3jCNr18NnImTmr8zJsaK9wbj/aWZ9LwoLr5SeE=";
+ version = "390.147";
+ sha256_32bit = "00avsns7l0j1ai8bf8gav2qshvphfdngy388bwzz24p61mfv1i1a";
+ sha256_64bit = "09qcdfn4j5jza3iw59wqwgq4a489qf7kx355yssrcahaw9g87lxz";
+ settingsSha256 = "16qqw0jy31da65cdi17y3j2kcdhw09vra7g17bkcimaqnf70j0ni";
+ persistencedSha256 = "1ad81y4qfpxrx0vqsk81a3h0bi1yg8hw5gi5y5d58p76vc8083i9";
};
legacy_340 = generic {
diff --git a/pkgs/servers/etcd/3.5.nix b/pkgs/servers/etcd/3.5.nix
new file mode 100644
index 000000000000..ba52feaa9a3b
--- /dev/null
+++ b/pkgs/servers/etcd/3.5.nix
@@ -0,0 +1,82 @@
+{ lib, buildGoModule, fetchFromGitHub, symlinkJoin }:
+
+let
+ etcdVersion = "3.5.1";
+ etcdSrc = fetchFromGitHub {
+ owner = "etcd-io";
+ repo = "etcd";
+ rev = "v${etcdVersion}";
+ sha256 = "sha256-Ip7JAWbZBZcc8MXd+Sw05QmTs448fQXpQ5XXo6RW+Gs=";
+ };
+
+ commonMeta = with lib; {
+ description = "Distributed reliable key-value store for the most critical data of a distributed system";
+ license = licenses.asl20;
+ homepage = "https://etcd.io/";
+ maintainers = with maintainers; [ offline zowoq endocrimes ];
+ platforms = platforms.darwin ++ platforms.linux;
+ };
+
+ etcdserver = buildGoModule rec {
+ pname = "etcdserver";
+ version = etcdVersion;
+
+ vendorSha256 = "sha256-hJzmxCcwN6MTgE0NpjtFlm8pjZ83clQXv1k5YM8Gmes=";
+
+ src = etcdSrc;
+ modRoot = "./server";
+
+ postBuild = ''
+ mv $GOPATH/bin/{server,etcd}
+ '';
+
+ CGO_ENABLED = 0;
+
+ # We set the GitSHA to `GitNotFound` to match official build scripts when
+ # git is unavailable. This is to avoid doing a full Git Checkout of etcd.
+ # User facing version numbers are still available in the binary, just not
+ # the sha it was built from.
+ ldflags = [ "-X go.etcd.io/etcd/api/v3/version.GitSHA=GitNotFound" ];
+
+ meta = commonMeta;
+ };
+
+ etcdutl = buildGoModule rec {
+ pname = "etcdutl";
+ version = etcdVersion;
+
+ vendorSha256 = "sha256-My0kzsN2i8DgPm2yIkbql3VyMXPaHmQSeaa/uK/RFxo=";
+
+ src = etcdSrc;
+ modRoot = "./etcdutl";
+
+ CGO_ENABLED = 0;
+
+ meta = commonMeta;
+ };
+
+ etcdctl = buildGoModule rec {
+ pname = "etcdutl";
+ version = etcdVersion;
+
+ vendorSha256 = "sha256-XZKBA95UrhbiefnDvpaXcBA0wUjnpH+Pb6yXp7yc4HQ=";
+
+ src = etcdSrc;
+ modRoot = "./etcdctl";
+
+ CGO_ENABLED = 0;
+
+ meta = commonMeta;
+ };
+in
+symlinkJoin {
+ name = "etcd";
+ version = etcdVersion;
+ meta = commonMeta;
+
+ paths = [
+ etcdserver
+ etcdutl
+ etcdctl
+ ];
+}
diff --git a/pkgs/servers/http/nginx/mainline.nix b/pkgs/servers/http/nginx/mainline.nix
index 774a3cbe6deb..ee36216686a5 100644
--- a/pkgs/servers/http/nginx/mainline.nix
+++ b/pkgs/servers/http/nginx/mainline.nix
@@ -1,6 +1,6 @@
{ callPackage, openssl_3_0, ... }@args:
callPackage ./generic.nix (args // { openssl = openssl_3_0; }) {
- version = "1.21.4";
- sha256 = "1ziv3xargxhxycd5hp6r3r5mww54nvvydiywcpsamg3i9r3jzxyi";
+ version = "1.21.5";
+ sha256 = "sha256-sg879TOlGKbw86eWff7thy0mjTHkzBIaAAEylgLdz7s=";
}
diff --git a/pkgs/servers/http/nginx/quic.nix b/pkgs/servers/http/nginx/quic.nix
index 3217b859bc82..5173b4c68902 100644
--- a/pkgs/servers/http/nginx/quic.nix
+++ b/pkgs/servers/http/nginx/quic.nix
@@ -6,8 +6,8 @@
callPackage ./generic.nix args {
src = fetchhg {
url = "https://hg.nginx.org/nginx-quic";
- rev = "0ee56d2eac44"; # branch=quic
- sha256 = "sha256-ErJa71aOzcjcBl1P9+g5kzs5sr0JdjrPwYKZ9VAvQus=";
+ rev = "10522e8dea41"; # branch=quic
+ sha256 = "sha256-BnAhnJKq2uHAp0WqVWIk+Hw0GXF/rAOxKCTwwsiiZdo=";
};
preConfigure = ''
@@ -19,5 +19,5 @@ callPackage ./generic.nix args {
"--with-stream_quic_module"
];
- version = "1.21.4-quic";
+ version = "1.21.5-quic";
}
diff --git a/pkgs/servers/tautulli/default.nix b/pkgs/servers/tautulli/default.nix
index 96f8dca234fe..ac29b20a10d9 100644
--- a/pkgs/servers/tautulli/default.nix
+++ b/pkgs/servers/tautulli/default.nix
@@ -2,7 +2,7 @@
buildPythonApplication rec {
pname = "Tautulli";
- version = "2.8.0";
+ version = "2.8.1";
format = "other";
pythonPath = [ setuptools ];
@@ -12,12 +12,17 @@ buildPythonApplication rec {
owner = "Tautulli";
repo = pname;
rev = "v${version}";
- sha256 = "0y4ijjr0sxq72gy22i0q810h64m11vbrz6fk44fpcnj5yab6hv8i";
+ sha256 = "sha256-vaH8PdWsWwBE2eW0i1QsjfOZdG5luME12gAY2uykyng=";
};
installPhase = ''
+ runHook preInstall
+
mkdir -p $out/bin $out/libexec/tautulli
- cp -R contrib data lib plexpy Tautulli.py $out/libexec/tautulli
+ cp -R contrib data lib plexpy Tautulli.py CHANGELOG.md $out/libexec/tautulli
+
+ echo "master" > $out/libexec/tautulli/branch.txt
+ echo "v${version}" > $out/libexec/tautulli/version.txt
# Can't just symlink to the main script, since it uses __file__ to
# import bundled packages and manage the service
@@ -26,6 +31,8 @@ buildPythonApplication rec {
# Creat backwards compatibility symlink to bin/plexpy
ln -s $out/bin/tautulli $out/bin/plexpy
+
+ runHook postInstall
'';
checkPhase = ''
@@ -39,7 +46,7 @@ buildPythonApplication rec {
meta = with lib; {
description = "A Python based monitoring and tracking tool for Plex Media Server";
homepage = "https://tautulli.com/";
- license = licenses.gpl3;
+ license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ csingley ];
};
diff --git a/pkgs/shells/yash/default.nix b/pkgs/shells/yash/default.nix
new file mode 100644
index 000000000000..44faf5c4e027
--- /dev/null
+++ b/pkgs/shells/yash/default.nix
@@ -0,0 +1,23 @@
+{ stdenv, lib, fetchurl, gettext, ncurses }:
+
+stdenv.mkDerivation rec {
+ pname = "yash";
+ version = "2.52";
+
+ src = fetchurl {
+ url = "https://osdn.net/dl/yash/yash-${version}.tar.xz";
+ sha256 = "sha256:1jdmj4cyzwxxyyqf20y1zi578h7md860ryffp02qi143zpppn4sm";
+ };
+
+ buildInputs = [ gettext ncurses ];
+
+ meta = with lib; {
+ description = "Yet another POSIX-compliant shell";
+ homepage = "https://yash.osdn.jp/index.html.en";
+ license = licenses.gpl2Plus;
+ maintainers = with maintainers; [ qbit ];
+ platforms = platforms.all;
+ };
+
+ passthru.shellPath = "/bin/yash";
+}
diff --git a/pkgs/shells/zsh/zsh-history-search-multi-word/default.nix b/pkgs/shells/zsh/zsh-history-search-multi-word/default.nix
new file mode 100644
index 000000000000..09d2136ea26c
--- /dev/null
+++ b/pkgs/shells/zsh/zsh-history-search-multi-word/default.nix
@@ -0,0 +1,30 @@
+{ stdenvNoCC, lib, fetchFromGitHub }:
+
+stdenvNoCC.mkDerivation rec {
+ pname = "zsh-history-search-multi-word";
+ version = "unstable-2021-11-13";
+
+ src = fetchFromGitHub {
+ owner = "zdharma-continuum";
+ repo = "history-search-multi-word";
+ rev = "5b44d8cea12351d91fbdc3697916556f59f14b8c";
+ sha256 = "11r2mmy6bg3b6pf6qc0ml3idh333cj8yz754hrvd1sc4ipfkkqh7";
+ };
+
+ dontConfigure = true;
+ dontBuild = true;
+
+ installPhase = ''
+ plugindir="$out/share/zsh/${pname}"
+
+ mkdir -p "$plugindir"
+ cp -r -- history-* hsmw-* "$plugindir"/
+ '';
+
+ meta = with lib; {
+ description = "Multi-word, syntax highlighted history searching for Zsh";
+ homepage = "https://github.com/zdharma-continuum/history-search-multi-word";
+ license = with licenses; [ gpl3 mit ];
+ platforms = platforms.unix;
+ };
+}
diff --git a/pkgs/tools/admin/pulumi/data.nix b/pkgs/tools/admin/pulumi/data.nix
index 0786f5b017a5..988bd3ec2bb6 100644
--- a/pkgs/tools/admin/pulumi/data.nix
+++ b/pkgs/tools/admin/pulumi/data.nix
@@ -1,100 +1,100 @@
# DO NOT EDIT! This file is generated automatically by update.sh
{ }:
{
- version = "3.19.0";
+ version = "3.21.0";
pulumiPkgs = {
x86_64-linux = [
{
- url = "https://get.pulumi.com/releases/sdk/pulumi-v3.19.0-linux-x64.tar.gz";
- sha256 = "12q3zhwpy8hrg8ivihzqac82xpgj216nscfz66rwhys1aajdvlih";
+ url = "https://get.pulumi.com/releases/sdk/pulumi-v3.21.0-linux-x64.tar.gz";
+ sha256 = "110ab7i3ynkjhbk10q150p7301prffk4xqma79rk28cxxvxf4kk3";
}
{
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-kubernetes-v3.10.1-linux-amd64.tar.gz";
- sha256 = "0hl67xg538arbn7p7qqlx6my9c1ql1q62azwiivrjpj81pfkvx76";
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-auth0-v2.4.0-linux-amd64.tar.gz";
+ sha256 = "02k3ars9i8pfby3070rnnldfcb5hbh32kd5xnbmgd0202yg5y3pd";
}
{
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v4.7.0-linux-amd64.tar.gz";
- sha256 = "1xw8yq4q7d727zqyvc6lfrlf1pl4j0wzmcx5r3gqgv5p44w858vm";
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v4.33.1-linux-amd64.tar.gz";
+ sha256 = "13i6jmy2nyv80d0ab29yw489qwnf7i0yjrns1d124gijdd30zh0l";
}
{
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-postgresql-v3.3.0-linux-amd64.tar.gz";
- sha256 = "05nfdwgfzi5f3hgj2g6dccaidqf9a9xzlv5vp3cd1rsxd159yk9j";
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azure-v4.32.0-linux-amd64.tar.gz";
+ sha256 = "1g0v7vqrf5237vv0ki74j6zb18zas8i3ii5w9fvy4mg9x4k37d4k";
}
{
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azure-v4.29.0-linux-amd64.tar.gz";
- sha256 = "1y5qspns2zab5k1ajkqkh48li0mvyz1wxjx5svdrzca89bnz63rq";
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v4.2.0-linux-amd64.tar.gz";
+ sha256 = "161g5gsr64idz17ffixbjrm0gnbpvpsf440yr26ci4bzdk0s81gh";
}
{
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-linode-v3.7.0-linux-amd64.tar.gz";
- sha256 = "1f21pz6v6bkx5vb02g113l97q5gw9aj459klq4dc9j75mgfdzvfz";
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-consul-v3.5.0-linux-amd64.tar.gz";
+ sha256 = "0yfbiv6q2rfm27gwc4vsg2112m1vll5rkk1zwpg510dzvrnjqqn6";
}
{
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v4.0.0-linux-amd64.tar.gz";
- sha256 = "1p21963qr8rdl5jp7f05j02yq0ab3flybvzjn7xadcl7m85mkyxh";
- }
- {
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gitlab-v4.4.0-linux-amd64.tar.gz";
- sha256 = "14kz4ywhwb0lcsf3nbr9c884x83jdlbxmcg3g9jaq7r739fawpi9";
- }
- {
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v4.30.0-linux-amd64.tar.gz";
- sha256 = "1brn2xfvjds5vfpy08r9syss723jw2whn82c8jsfggzfr978i2xh";
- }
- {
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-random-v4.3.1-linux-amd64.tar.gz";
- sha256 = "1ixmsxawp0qbyjs37c74gcvj2icpbda6znl17yp9bhiyvnrdvxn7";
- }
- {
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-consul-v3.4.0-linux-amd64.tar.gz";
- sha256 = "0wzbwpnnjm8lnph6kh2nrb0ns2v4y70sp10pp9qnwhcxggqjpb5r";
- }
- {
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mailgun-v3.3.0-linux-amd64.tar.gz";
- sha256 = "0nri27c71kf3pjivd0w9ymkl4rn39flh5n2rphi4gn6v4kfb1192";
- }
- {
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-openstack-v3.6.0-linux-amd64.tar.gz";
- sha256 = "1z43qiwyh9ql1kkmdxxnlbsimfihlr8iby93kzipf62wg9y9ag3b";
- }
- {
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-hcloud-v1.7.0-linux-amd64.tar.gz";
- sha256 = "195259nlcpwl84kl7bf8k4das4444kc3pigv9jzz9z4cynpdqqp4";
- }
- {
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-datadog-v4.4.0-linux-amd64.tar.gz";
- sha256 = "0cn25lrd9f8x7ygaq2074dqv59hh71mfprzjpscl8l7zz3ssh8y9";
- }
- {
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v3.1.0-linux-amd64.tar.gz";
- sha256 = "0ffqah4anhdacmfb8n3hdq17jhqq0qclc0l0cq77hvhvgn39yy4r";
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-datadog-v4.5.0-linux-amd64.tar.gz";
+ sha256 = "1pi98naks37cc0nsrjfrnsknskwzsfj5ia01nhaj44caxzvnd8mh";
}
{
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.10.0-linux-amd64.tar.gz";
sha256 = "19y5gm5s7ps0cwdv8j7lnlx1r4c94qf6cdc28z725wpyyq1grc38";
}
{
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-packet-v3.2.2-linux-amd64.tar.gz";
- sha256 = "0glbjhgrb2hiyhd6kwmy7v384j8zw641pw9737g1fczv3x16a3s3";
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v3.1.0-linux-amd64.tar.gz";
+ sha256 = "0ffqah4anhdacmfb8n3hdq17jhqq0qclc0l0cq77hvhvgn39yy4r";
}
{
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-equinix-metal-v3.2.0-linux-amd64.tar.gz";
- sha256 = "0w4604mgkq56ilr1k088piwkk676iwqwy2mync9di5iyig0cnrr1";
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-equinix-metal-v3.2.1-linux-amd64.tar.gz";
+ sha256 = "0hnardid0kbzy65dmn7vz8ddy5hq78nf2871zz6srf2hfyiv7qa4";
}
{
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v6.3.0-linux-amd64.tar.gz";
- sha256 = "1a2529yxrjj0gv89sbk74j1nrphwbbbl6x3hl3pv525xqg6j3r95";
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v6.6.0-linux-amd64.tar.gz";
+ sha256 = "0s9k26yw4lw8rlaz0zcim234bz4sz94x3y4sjh56sn3cd80zcp8i";
+ }
+ {
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v4.9.0-linux-amd64.tar.gz";
+ sha256 = "1zvxqxvdi0szsy3bgyhqbwxbcrgq5zpqcawfq80h55g5bvvmjwk7";
+ }
+ {
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gitlab-v4.4.0-linux-amd64.tar.gz";
+ sha256 = "14kz4ywhwb0lcsf3nbr9c884x83jdlbxmcg3g9jaq7r739fawpi9";
+ }
+ {
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-hcloud-v1.7.1-linux-amd64.tar.gz";
+ sha256 = "0qv3a4d6hnpga7lli7xnbwiig56h080hxrxjr8jbqsy9ymsqb39a";
+ }
+ {
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-kubernetes-v3.12.2-linux-amd64.tar.gz";
+ sha256 = "0lhxz3420ghjkny7r3gqfcf84mxm2j86npiwgg2lkgmsb2kmafj7";
+ }
+ {
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-linode-v3.7.1-linux-amd64.tar.gz";
+ sha256 = "0nrpxd2hnpd3r17938vjkx36fs7bgli4gmzbz5lz27666zzizhmz";
+ }
+ {
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mailgun-v3.3.0-linux-amd64.tar.gz";
+ sha256 = "0nri27c71kf3pjivd0w9ymkl4rn39flh5n2rphi4gn6v4kfb1192";
}
{
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mysql-v3.1.0-linux-amd64.tar.gz";
sha256 = "0lj01hyjyq3qazkryvvxkx6nwai3bac9shqxb6hcqv4pfdjzzxhr";
}
{
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-auth0-v2.3.1-linux-amd64.tar.gz";
- sha256 = "0kx0scva1r44ibfqjl7wwcy0fyywrmixdnx0c57fmf5qm2vlfr34";
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-openstack-v3.7.0-linux-amd64.tar.gz";
+ sha256 = "0xaa2gaqgx5lf1vfg0s8y0nr6ygjcy7dbksf0jszizn08ifgpy8h";
}
{
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vault-v5.0.0-linux-amd64.tar.gz";
- sha256 = "16y17hkzp6i3dqv3b41xkl05awkmhpki1bqnnwgl5318hbkvnwab";
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-packet-v3.2.2-linux-amd64.tar.gz";
+ sha256 = "0glbjhgrb2hiyhd6kwmy7v384j8zw641pw9737g1fczv3x16a3s3";
+ }
+ {
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-postgresql-v3.3.0-linux-amd64.tar.gz";
+ sha256 = "05nfdwgfzi5f3hgj2g6dccaidqf9a9xzlv5vp3cd1rsxd159yk9j";
+ }
+ {
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-random-v4.3.1-linux-amd64.tar.gz";
+ sha256 = "1ixmsxawp0qbyjs37c74gcvj2icpbda6znl17yp9bhiyvnrdvxn7";
+ }
+ {
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vault-v5.1.0-linux-amd64.tar.gz";
+ sha256 = "0b44kfvl01b5cmf9ii6zzcj28i1dd4dx4angdah3hghbsc5hypby";
}
{
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vsphere-v4.1.0-linux-amd64.tar.gz";
@@ -103,96 +103,96 @@
];
x86_64-darwin = [
{
- url = "https://get.pulumi.com/releases/sdk/pulumi-v3.19.0-darwin-x64.tar.gz";
- sha256 = "0sp519ks3glfpmdpmss4pnfnd41ab28k7lm74yl9g96980pcrypd";
+ url = "https://get.pulumi.com/releases/sdk/pulumi-v3.21.0-darwin-x64.tar.gz";
+ sha256 = "0pd6jlrw2cc4g33kkl2dfqks5xicmc2bnbrf0cd2ymx9mdnkdaq8";
}
{
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-kubernetes-v3.10.1-darwin-amd64.tar.gz";
- sha256 = "0pqcra8fi3kfg1d6ndpbgmzd3przsxrnypa84vsr933x9cp1748l";
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-auth0-v2.4.0-darwin-amd64.tar.gz";
+ sha256 = "02s2lyd8rlz86rjraxk5g3g55qhih38kmvq0k2gwkdb2d11npf6r";
}
{
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v4.7.0-darwin-amd64.tar.gz";
- sha256 = "0pk15lbjnrq5ria8c6j8ygbq5gngmmb9g9c1sigfxp9iwlfbpa6k";
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v4.33.1-darwin-amd64.tar.gz";
+ sha256 = "1nkg7ybi8n60ypw69w0psap1k3m7pdk4z4vyfciv7lv3qc30nlfa";
}
{
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-postgresql-v3.3.0-darwin-amd64.tar.gz";
- sha256 = "0q19sh7l1mjl40i5vdsrjfldncxnicalmlgv3yjkw5xpxkgr98z0";
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azure-v4.32.0-darwin-amd64.tar.gz";
+ sha256 = "1nabijlwgp6jfhs9pjv5h4bg5s4nwiaqqa315q30ykna8dd7nl5r";
}
{
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azure-v4.29.0-darwin-amd64.tar.gz";
- sha256 = "1c47ihgvz95r2dzd1s856l0bxh3myvqxmm2izjkpx9il7cqrf1rf";
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v4.2.0-darwin-amd64.tar.gz";
+ sha256 = "0cri2vqvqh4aghs4j66ykw8f4vm2fg1106xkq4q269ilxdd5ia8l";
}
{
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-linode-v3.7.0-darwin-amd64.tar.gz";
- sha256 = "09hb618pjfz930i9f9vb5qw9im7c8fwrrz5gbpm37zaskamvx7cw";
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-consul-v3.5.0-darwin-amd64.tar.gz";
+ sha256 = "1kgk48k4898zxsnhfg6z949m3mgicdm2zfg8ba7z1lbidzc6g3sq";
}
{
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v4.0.0-darwin-amd64.tar.gz";
- sha256 = "1idvdcmbbia0cwkw5v7zp7695p1a6sfmrgsfmzn0r9p8lyg66k8w";
- }
- {
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gitlab-v4.4.0-darwin-amd64.tar.gz";
- sha256 = "15aj3vpafrb6hfrmi46pf6z3wj4y84dljsfzrvd6b5v0svmlr90d";
- }
- {
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v4.30.0-darwin-amd64.tar.gz";
- sha256 = "050iqf2fls9r81kq5rimnh41gs8pp29scx31l8i2ff0bq5gvbg3h";
- }
- {
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-random-v4.3.1-darwin-amd64.tar.gz";
- sha256 = "1dy4n03xvirg6fihiid786d88qlkyqkvk4fq6ggnxc92620x7342";
- }
- {
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-consul-v3.4.0-darwin-amd64.tar.gz";
- sha256 = "0p3zkgr557ngl6pjdidrp76b741nkdsw4s7wf1aj4mpw74fshm3g";
- }
- {
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mailgun-v3.3.0-darwin-amd64.tar.gz";
- sha256 = "06s58xlwm3wf7895bzsqx4jsfb0kbxanzlaf21jff45y62nk1f1p";
- }
- {
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-openstack-v3.6.0-darwin-amd64.tar.gz";
- sha256 = "0x74zlpzy1ajc9y0jkj32vhn4yn2rhldapdn0zlky7ss844a2gfk";
- }
- {
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-hcloud-v1.7.0-darwin-amd64.tar.gz";
- sha256 = "0rggsafqsby8jy905xj0f6m75f2n0mf2z2wcjrsns3fcgcw322q1";
- }
- {
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-datadog-v4.4.0-darwin-amd64.tar.gz";
- sha256 = "1pmkwii8bsrr5k3lm0j2hr2fpzrcrwbbfisygr49w5cngx44k5sa";
- }
- {
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v3.1.0-darwin-amd64.tar.gz";
- sha256 = "0j8ysk4wh78xhk3nv6c1dvvyw5ihs7amwlyqicch52yc6jq3v5a6";
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-datadog-v4.5.0-darwin-amd64.tar.gz";
+ sha256 = "16dllbbmih9dm728wq86cpq2gkbyhlmpiwyh3r20jzhclrx4mgcw";
}
{
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.10.0-darwin-amd64.tar.gz";
sha256 = "115lcaqkliaxqg27hb1j773299kgs44d3l7p2da9kzla3sk7dps0";
}
{
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-packet-v3.2.2-darwin-amd64.tar.gz";
- sha256 = "0621njipng32x43lw8n49mapq10lnvibg8vlvgciqsfvrbpz1yp5";
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v3.1.0-darwin-amd64.tar.gz";
+ sha256 = "0j8ysk4wh78xhk3nv6c1dvvyw5ihs7amwlyqicch52yc6jq3v5a6";
}
{
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-equinix-metal-v3.2.0-darwin-amd64.tar.gz";
- sha256 = "03f0k13qyi40hvhkfnwrdadxv5r1r2jphrf49nq81l35knqvs7fs";
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-equinix-metal-v3.2.1-darwin-amd64.tar.gz";
+ sha256 = "1m5lh59h7nck1flzxs9m4n0ag0klk3jmnpf7hc509vffxs89xnjq";
}
{
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v6.3.0-darwin-amd64.tar.gz";
- sha256 = "1vdfvybqnvd0s8ln6340608vg00l2zhsndg8r03js57a5asmakyf";
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v6.6.0-darwin-amd64.tar.gz";
+ sha256 = "12527gic3sf6ch1773yrwi1g5pp1iyc50q6nhdwwc7vq3sf1ngx9";
+ }
+ {
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v4.9.0-darwin-amd64.tar.gz";
+ sha256 = "0y5c4ifi4jr7nb33c35axmfwyq0c5si28mq0dvwppq0ffz0lifgk";
+ }
+ {
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gitlab-v4.4.0-darwin-amd64.tar.gz";
+ sha256 = "15aj3vpafrb6hfrmi46pf6z3wj4y84dljsfzrvd6b5v0svmlr90d";
+ }
+ {
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-hcloud-v1.7.1-darwin-amd64.tar.gz";
+ sha256 = "1xminhpv7b4nnvfdy5ahlcfrkan1fsmn0sp6gzkp5y4kkjd4a6vy";
+ }
+ {
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-kubernetes-v3.12.2-darwin-amd64.tar.gz";
+ sha256 = "113xcf5zg7h90r4w50ss3yjivn3vlq4icff76abhphi5m99b50f5";
+ }
+ {
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-linode-v3.7.1-darwin-amd64.tar.gz";
+ sha256 = "15zf53m0mgrk11qp3dvkrrh86j48hqs1p7x552gkqfqkn291d5z8";
+ }
+ {
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mailgun-v3.3.0-darwin-amd64.tar.gz";
+ sha256 = "06s58xlwm3wf7895bzsqx4jsfb0kbxanzlaf21jff45y62nk1f1p";
}
{
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mysql-v3.1.0-darwin-amd64.tar.gz";
sha256 = "0fhhc2k0g8mpxzcgci4jl3m59q3n8w3nka94l0n7r9cvs81099n6";
}
{
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-auth0-v2.3.1-darwin-amd64.tar.gz";
- sha256 = "0bdhzbhzjdypf5xr756wx061myml9w765zmff7k7pw438hpzln2p";
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-openstack-v3.7.0-darwin-amd64.tar.gz";
+ sha256 = "0fbc60l3v7mar0g16mbwgqckp9i4kckwlacv165kkwrkvj8nrbym";
}
{
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vault-v5.0.0-darwin-amd64.tar.gz";
- sha256 = "0wry626g455r4lp8cfhjlg2zqwbgvbm2pk1qf9kwsisg1fszpq7a";
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-packet-v3.2.2-darwin-amd64.tar.gz";
+ sha256 = "0621njipng32x43lw8n49mapq10lnvibg8vlvgciqsfvrbpz1yp5";
+ }
+ {
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-postgresql-v3.3.0-darwin-amd64.tar.gz";
+ sha256 = "0q19sh7l1mjl40i5vdsrjfldncxnicalmlgv3yjkw5xpxkgr98z0";
+ }
+ {
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-random-v4.3.1-darwin-amd64.tar.gz";
+ sha256 = "1dy4n03xvirg6fihiid786d88qlkyqkvk4fq6ggnxc92620x7342";
+ }
+ {
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vault-v5.1.0-darwin-amd64.tar.gz";
+ sha256 = "1f2m3zdxbdn7gb0xb3f0rgj7h54nay1wyrn3bk2nzvrdv5c3bhcm";
}
{
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vsphere-v4.1.0-darwin-amd64.tar.gz";
@@ -201,93 +201,93 @@
];
aarch64-linux = [
{
- url = "https://get.pulumi.com/releases/sdk/pulumi-v3.19.0-linux-arm64.tar.gz";
- sha256 = "1s0k743s7b6d2dccbia8909h7a7xjr8526h3ywkncqxam1gfjjlv";
+ url = "https://get.pulumi.com/releases/sdk/pulumi-v3.21.0-linux-arm64.tar.gz";
+ sha256 = "0484hpbf25kfxac72r74h5rfp5r59hlkhzqib9vma3l1cz9icmyx";
}
{
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-kubernetes-v3.10.1-linux-arm64.tar.gz";
- sha256 = "1zcpqjlgpkjzk2bdy8gcnhpfgzadc7r8z2vb5xc4vvf5q3q25sxy";
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-auth0-v2.4.0-linux-arm64.tar.gz";
+ sha256 = "0rlbcxympplq1gwikxalz3c686kpy2vrsc2phfnm45vvrkl22k8j";
}
{
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v4.7.0-linux-arm64.tar.gz";
- sha256 = "07j1gbmmciw9nyy4khhcfj8ayb91pwgrvghwr2i67f9prs570a79";
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v4.33.1-linux-arm64.tar.gz";
+ sha256 = "00gps0dmidkvbxcljwwxlrh6i9ci4lzgnycc4f2vibm2yfx38d4y";
}
{
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-postgresql-v3.3.0-linux-arm64.tar.gz";
- sha256 = "0j2c23ii4dn9yhpw6nymij65gv82y1xp4gi8lgxxf41b1i9bpb2i";
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azure-v4.32.0-linux-arm64.tar.gz";
+ sha256 = "0zg7g4m9rvm24njn90m9ppfprzl08cmm0min0p467h617pyxlii2";
}
{
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azure-v4.29.0-linux-arm64.tar.gz";
- sha256 = "1fr593m1g2y3k8qw1j20ssv2jd3c5m3cr6h4p5v6fng2ph3m3v7i";
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v4.2.0-linux-arm64.tar.gz";
+ sha256 = "08wasnpm5j1rrpsgdlw2h2rx5m7fl4vrm2js5a1vsaxx35374a6h";
}
{
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-linode-v3.7.0-linux-arm64.tar.gz";
- sha256 = "1m5gnc0a6svhzd27z0m151pzws6n3vsgj8bha7jl77znzxqrlxz1";
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-consul-v3.5.0-linux-arm64.tar.gz";
+ sha256 = "1wwv6v9srzsdlcxv92kwv4drkx8w1h5xcvcwqqn6gi2mvsf3kj9n";
}
{
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v4.0.0-linux-arm64.tar.gz";
- sha256 = "0k4yi9xqrmd5m99lr27h672ycwyh138d9jhh3wvgpmnjpdxy28jm";
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-datadog-v4.5.0-linux-arm64.tar.gz";
+ sha256 = "1s77az1b965lca69gqmmx8zfh63rf8vm2bkbzgfkj320zwbfbgj2";
}
{
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gitlab-v4.4.0-linux-arm64.tar.gz";
- sha256 = "06ii12cl7wsfs9pwjkwz01szacg686vfzc6i253l6xvmmiqp6q0j";
- }
- {
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v4.30.0-linux-arm64.tar.gz";
- sha256 = "02whsgdx0cd8nblfjgymsay9vyfmv8aah2y5nqkl7c6dzrlqllav";
- }
- {
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-random-v4.3.1-linux-arm64.tar.gz";
- sha256 = "12iv8vjnal2ym70rxmdnvi02x6md7fxi8jbzhzfw526pzqs1dc47";
- }
- {
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-consul-v3.4.0-linux-arm64.tar.gz";
- sha256 = "1hiqcy51ag4y8j47di5h07mnplrhpc5f406ab6car2c06fwr2wdn";
- }
- {
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mailgun-v3.3.0-linux-arm64.tar.gz";
- sha256 = "14v7wm2gkhd064drw2l894dacdsm5lnndii5qzl5hsl6p9a5m970";
- }
- {
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-openstack-v3.6.0-linux-arm64.tar.gz";
- sha256 = "0rp8qfrm3kgmr19ryg259m3n48wf5fyyff1bvnjinivq5irvl4j9";
- }
- {
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-hcloud-v1.7.0-linux-arm64.tar.gz";
- sha256 = "0al7hrf3ymsq0h611j4f5i8k94rr19i44ym1gschmn7byn0v3ksa";
- }
- {
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-datadog-v4.4.0-linux-arm64.tar.gz";
- sha256 = "0sfnic280p76d2aa635h1jgjx5lbf1fgm6bkrvq5nx6i5x9vy05x";
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.10.0-linux-arm64.tar.gz";
+ sha256 = "1hik4456fdln7hxiw02856v02v0m33zsyiad40c9wg4n772ybchy";
}
{
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v3.1.0-linux-arm64.tar.gz";
sha256 = "1lh1g90ab4blqmvx0yfp516hfsd6n1y751ab7fzhv7hcajf3klvi";
}
{
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.10.0-linux-arm64.tar.gz";
- sha256 = "1hik4456fdln7hxiw02856v02v0m33zsyiad40c9wg4n772ybchy";
- }
- # pulumi-resource-packet skipped (does not exist on remote)
- {
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-equinix-metal-v3.2.0-linux-arm64.tar.gz";
- sha256 = "1cz42cbvx4nah5jj712rf1r8r6p35ip6xl1kjgvxlrr23kq5vdjk";
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-equinix-metal-v3.2.1-linux-arm64.tar.gz";
+ sha256 = "111pia2f5xwkwaqs6p90ri29l5b3ivmahsa1bji4fwyyjyp22h4r";
}
{
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v6.3.0-linux-arm64.tar.gz";
- sha256 = "06pag44k2rg5dhq2x0xrcqs365p49f9fkbp78rb8k31skvlc27jh";
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v6.6.0-linux-arm64.tar.gz";
+ sha256 = "0s07gqviacygag8k4q8zbwwp127zsk0kiiqpz4y0gc95pg872bi1";
+ }
+ {
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v4.9.0-linux-arm64.tar.gz";
+ sha256 = "1c2g5kzyi0vcah1inpa3a974kcsgdlw0a6gyiij23ryaa5vppk1l";
+ }
+ {
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gitlab-v4.4.0-linux-arm64.tar.gz";
+ sha256 = "06ii12cl7wsfs9pwjkwz01szacg686vfzc6i253l6xvmmiqp6q0j";
+ }
+ {
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-hcloud-v1.7.1-linux-arm64.tar.gz";
+ sha256 = "14xqlgy0wy223hg9wp1rc4hbj1pvxrqnzxzv901dqjf5434n6aa0";
+ }
+ {
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-kubernetes-v3.12.2-linux-arm64.tar.gz";
+ sha256 = "02hd6bkhvg27pnn0ph6vb0ns90m8kllfiv1xglsr9yxib25g3bci";
+ }
+ {
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-linode-v3.7.1-linux-arm64.tar.gz";
+ sha256 = "1glpxiq8v1fgjnh0r9hkl89s81iv44r24pha2jfvk1ww2jf54gwq";
+ }
+ {
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mailgun-v3.3.0-linux-arm64.tar.gz";
+ sha256 = "14v7wm2gkhd064drw2l894dacdsm5lnndii5qzl5hsl6p9a5m970";
}
{
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mysql-v3.1.0-linux-arm64.tar.gz";
sha256 = "17iaf72dzy108v1njan21n72a5gzxbycq396hjh293a141kppn1m";
}
{
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-auth0-v2.3.1-linux-arm64.tar.gz";
- sha256 = "13p2gg9ihwkyx35r7ilkp56qrrj4kcg4x1v8gspsbbahb9cbagvk";
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-openstack-v3.7.0-linux-arm64.tar.gz";
+ sha256 = "1xh93187s86x4pjm4j9djh2mfqqxrmkal761fhj2bldkgki2rkq8";
+ }
+ # pulumi-resource-packet skipped (does not exist on remote)
+ {
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-postgresql-v3.3.0-linux-arm64.tar.gz";
+ sha256 = "0j2c23ii4dn9yhpw6nymij65gv82y1xp4gi8lgxxf41b1i9bpb2i";
}
{
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vault-v5.0.0-linux-arm64.tar.gz";
- sha256 = "01rxaqzb72y56cwah90ypgrlg8jlajvyb7n6cakhvnn98nb281fi";
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-random-v4.3.1-linux-arm64.tar.gz";
+ sha256 = "12iv8vjnal2ym70rxmdnvi02x6md7fxi8jbzhzfw526pzqs1dc47";
+ }
+ {
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vault-v5.1.0-linux-arm64.tar.gz";
+ sha256 = "15ambcwhrvv30ykkz9pizfrl4pri7iwvgs6s8f5416vgdj0k26fc";
}
{
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vsphere-v4.1.0-linux-arm64.tar.gz";
@@ -296,93 +296,93 @@
];
aarch64-darwin = [
{
- url = "https://get.pulumi.com/releases/sdk/pulumi-v3.19.0-darwin-arm64.tar.gz";
- sha256 = "097sqsm53wdal1vnklqcxz8ys95w5ffw0n2gcx5rrgcld3fnrrc6";
+ url = "https://get.pulumi.com/releases/sdk/pulumi-v3.21.0-darwin-arm64.tar.gz";
+ sha256 = "01446r5q9a684k0z5b6d2a7gdjszy2816v09jdxkc54cg37fhmlz";
}
{
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-kubernetes-v3.10.1-darwin-arm64.tar.gz";
- sha256 = "1laqs75i8fnzg7zzf3v73xxvg1k4n5qazays1wh6id3wamx5mgk4";
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-auth0-v2.4.0-darwin-arm64.tar.gz";
+ sha256 = "116f1psg3wdl81apxlhgz6w1ykhlqxwqk6ahp82mca1h2qc7bg0h";
}
{
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v4.7.0-darwin-arm64.tar.gz";
- sha256 = "12xnw6gp38dfgc6qvxbipbsv7yqidjazrzjj40aaknk5cqgr0b0f";
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v4.33.1-darwin-arm64.tar.gz";
+ sha256 = "0b67z5ikmplnjcb3gghcmzkdj8sgv6kd0b1a4f9dbv22dds6qbih";
}
{
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-postgresql-v3.3.0-darwin-arm64.tar.gz";
- sha256 = "1i5ipmidg0yspayxyglbjaihajhj1bsk46saxkncfrkvqnh4iq50";
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azure-v4.32.0-darwin-arm64.tar.gz";
+ sha256 = "12rx7cma3mi8a6w09qzz138dns93y5rdgm5l9z422vjynhs0jpm4";
}
{
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-azure-v4.29.0-darwin-arm64.tar.gz";
- sha256 = "0dz698vijizcrfrv4ss4qadxnmklxpz78bwgv4x4crvwr3hjlamr";
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v4.2.0-darwin-arm64.tar.gz";
+ sha256 = "18h8k6wz1givlkrd2fh6mpyc6syzsqr3a29c36cbly103nvr43jy";
}
{
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-linode-v3.7.0-darwin-arm64.tar.gz";
- sha256 = "1ziyhvjwkzq0wvxfxbprpprm8hcch75ifrij6fzlw3z0hxdd1bjf";
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-consul-v3.5.0-darwin-arm64.tar.gz";
+ sha256 = "16nnb6ql4j2207dgwmrhgx8mg19asf2n450lrmwvdzyvcy5zjm7p";
}
{
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v4.0.0-darwin-arm64.tar.gz";
- sha256 = "0fsmmgq0hvzyrw6vrdf3pppxjcj94fxxp52dl73r4f5wjkays33c";
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-datadog-v4.5.0-darwin-arm64.tar.gz";
+ sha256 = "1z74a9j7ih444lsg4zy3wf8vqqk67jf4cis14x6vpzbpyqpdsyvz";
}
{
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gitlab-v4.4.0-darwin-arm64.tar.gz";
- sha256 = "0sgg8bnsi5yyfv8gwzy8jw3f0fmkvizrgzh4jyc802qqc449p1ix";
- }
- {
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v4.30.0-darwin-arm64.tar.gz";
- sha256 = "11bhs20hpmgcyvpha8pbg8gd9v2r1fahjsaiif5fdx9dvpqmnsmi";
- }
- {
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-random-v4.3.1-darwin-arm64.tar.gz";
- sha256 = "0jrihnwfh5wvc95nipqv7ak77kq9xj0pk5hlapv9w2ls5pwykv0r";
- }
- {
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-consul-v3.4.0-darwin-arm64.tar.gz";
- sha256 = "18ggnqx9zh8kl5h6nn2sa4zxvyby9pvscrvqnsam2l9yjv86r7i0";
- }
- {
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mailgun-v3.3.0-darwin-arm64.tar.gz";
- sha256 = "0n60fk2nyb1idf4rdc61jxjpzpw4v9106gwn6r1by10g8f1712yr";
- }
- {
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-openstack-v3.6.0-darwin-arm64.tar.gz";
- sha256 = "1kg60sfa570k55p3fvqa952k1m17z9amr168m4lzqcdp63bfrzay";
- }
- {
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-hcloud-v1.7.0-darwin-arm64.tar.gz";
- sha256 = "13wxbpsqsh3prq6j12ih6cx6pcrfp97d0i5b7mk3d9imj3qdyf8x";
- }
- {
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-datadog-v4.4.0-darwin-arm64.tar.gz";
- sha256 = "0830la5hb84nv077mlsymrhl4ny4j1xvmqlpvy4r5kldrx0h9pa8";
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.10.0-darwin-arm64.tar.gz";
+ sha256 = "1agi0dpck35rqsvxikdcl6xl2fpha2l4144mzgyslki4q86rqmhs";
}
{
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v3.1.0-darwin-arm64.tar.gz";
sha256 = "1z0gd0fagv55dl3ki340h0ljw7dqj8818w4072pc5xxy5id90gb0";
}
{
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.10.0-darwin-arm64.tar.gz";
- sha256 = "1agi0dpck35rqsvxikdcl6xl2fpha2l4144mzgyslki4q86rqmhs";
- }
- # pulumi-resource-packet skipped (does not exist on remote)
- {
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-equinix-metal-v3.2.0-darwin-arm64.tar.gz";
- sha256 = "1hinrhq950ah3ngszm2d9hn6i327lxfl0f9d83nxiknzpw395glw";
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-equinix-metal-v3.2.1-darwin-arm64.tar.gz";
+ sha256 = "12bzicm43l7yvh02v5fx3z8v46l9i7a9f677735xi5rjbmd2an4c";
}
{
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v6.3.0-darwin-arm64.tar.gz";
- sha256 = "094zffj64rymjcgncbxwkdh6vp7g8s6f1nync9066jh29qzll6mf";
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v6.6.0-darwin-arm64.tar.gz";
+ sha256 = "1hswpbzzp18gzz8ggmyfs5ccbhnnk0w9064mvrbpj29baa1brhim";
+ }
+ {
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v4.9.0-darwin-arm64.tar.gz";
+ sha256 = "1znrkq3ch28xdgy6vbx91rb2s2nvm12ihpq945x76swya6z7dvcn";
+ }
+ {
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gitlab-v4.4.0-darwin-arm64.tar.gz";
+ sha256 = "0sgg8bnsi5yyfv8gwzy8jw3f0fmkvizrgzh4jyc802qqc449p1ix";
+ }
+ {
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-hcloud-v1.7.1-darwin-arm64.tar.gz";
+ sha256 = "0n0303423gkwi3b6dwzaqmzsbn2rh4vki6n54mmgd44a3cxbhkak";
+ }
+ {
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-kubernetes-v3.12.2-darwin-arm64.tar.gz";
+ sha256 = "11mhabl8sk4q85hvg41l5s82hkw8rccjiw748wsl43wb3qmx66zx";
+ }
+ {
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-linode-v3.7.1-darwin-arm64.tar.gz";
+ sha256 = "0287l9snqwq801h44vxqawk0bpniszd41rw600jb1vp5h7qpksgf";
+ }
+ {
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mailgun-v3.3.0-darwin-arm64.tar.gz";
+ sha256 = "0n60fk2nyb1idf4rdc61jxjpzpw4v9106gwn6r1by10g8f1712yr";
}
{
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mysql-v3.1.0-darwin-arm64.tar.gz";
sha256 = "0kym9f36h8b7s1smlmgazbzv8jjfpwxk6wv036bhx2xm3ysc7rgp";
}
{
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-auth0-v2.3.1-darwin-arm64.tar.gz";
- sha256 = "1qixa4vsak042vxqv7xsggvdcqyfs8sl10hnf3chdx2xwspm8hjy";
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-openstack-v3.7.0-darwin-arm64.tar.gz";
+ sha256 = "0w7gbdzs47ndvfig8qcnn5mar22plxjjsx0d4dgyhf1k391fz1jh";
+ }
+ # pulumi-resource-packet skipped (does not exist on remote)
+ {
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-postgresql-v3.3.0-darwin-arm64.tar.gz";
+ sha256 = "1i5ipmidg0yspayxyglbjaihajhj1bsk46saxkncfrkvqnh4iq50";
}
{
- url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vault-v5.0.0-darwin-arm64.tar.gz";
- sha256 = "0lh4b6z75yg7zss59bfwmsp2dfryk867845jw5655g7ya15n99da";
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-random-v4.3.1-darwin-arm64.tar.gz";
+ sha256 = "0jrihnwfh5wvc95nipqv7ak77kq9xj0pk5hlapv9w2ls5pwykv0r";
+ }
+ {
+ url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vault-v5.1.0-darwin-arm64.tar.gz";
+ sha256 = "1zc8jhrf7vm2p9mjldvgcnfrzh53zvinpikhsc8b206j3pm6gmbl";
}
{
url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vsphere-v4.1.0-darwin-arm64.tar.gz";
diff --git a/pkgs/tools/admin/pulumi/update.sh b/pkgs/tools/admin/pulumi/update.sh
index 051cf4c90b00..9a185646a7c8 100755
--- a/pkgs/tools/admin/pulumi/update.sh
+++ b/pkgs/tools/admin/pulumi/update.sh
@@ -6,46 +6,46 @@ API_URL="https://api.github.com/repos/pulumi"
# Version of Pulumi from
# https://www.pulumi.com/docs/get-started/install/versions/
-VERSION="3.19.0"
+VERSION="3.21.0"
-# A hashmap containing a plugin's name and it's respective repository inside
-# Pulumi's Github organization
+# An array of plugin names. The respective repository inside Pulumi's
+# Github organization is called pulumi-$name by convention.
-declare -A pulumi_repos
pulumi_repos=(
- ["auth0"]="pulumi-auth0"
- ["aws"]="pulumi-aws"
- ["azure"]="pulumi-azure"
- ["cloudflare"]="pulumi-cloudflare"
- ["consul"]="pulumi-consul"
- ["datadog"]="pulumi-datadog"
- ["digitalocean"]="pulumi-digitalocean"
- ["docker"]="pulumi-docker"
- ["equinix-metal"]="pulumi-equinix-metal"
- ["gcp"]="pulumi-gcp"
- ["github"]="pulumi-github"
- ["gitlab"]="pulumi-gitlab"
- ["hcloud"]="pulumi-hcloud"
- ["kubernetes"]="pulumi-kubernetes"
- ["linode"]="pulumi-linode"
- ["mailgun"]="pulumi-mailgun"
- ["mysql"]="pulumi-mysql"
- ["openstack"]="pulumi-openstack"
- ["packet"]="pulumi-packet"
- ["postgresql"]="pulumi-postgresql"
- ["random"]="pulumi-random"
- ["vault"]="pulumi-vault"
- ["vsphere"]="pulumi-vsphere"
+ "auth0"
+ "aws"
+ "azure"
+ "cloudflare"
+ "consul"
+ "datadog"
+ "digitalocean"
+ "docker"
+ "equinix-metal"
+ "gcp"
+ "github"
+ "gitlab"
+ "hcloud"
+ "kubernetes"
+ "linode"
+ "mailgun"
+ "mysql"
+ "openstack"
+ "packet"
+ "postgresql"
+ "random"
+ "vault"
+ "vsphere"
)
# Contains latest release ${VERSION} from
# https://github.com/pulumi/pulumi-${NAME}/releases
-# Dynamically builds the plugin array, using the hashmap's key/values and the
-# API for getting the latest version.
+# Dynamically builds the plugin array, using the API for getting the
+# latest version.
plugins=()
-for key in "${!pulumi_repos[@]}"; do
- plugins+=("${key}=$(curl -s ${API_URL}/${pulumi_repos[${key}]}/releases/latest | jq -M -r .tag_name | sed 's/v//g')")
+for key in "${pulumi_repos[@]}"; do
+ repo="pulumi-${key}"
+ plugins+=("${key}=$(curl -s ${API_URL}/${repo}/releases/latest | jq -M -r .tag_name | sed 's/v//g')")
sleep 1
done
diff --git a/pkgs/tools/archivers/zpaq/default.nix b/pkgs/tools/archivers/zpaq/default.nix
index 150633e620ae..6d0f00f51490 100644
--- a/pkgs/tools/archivers/zpaq/default.nix
+++ b/pkgs/tools/archivers/zpaq/default.nix
@@ -13,17 +13,13 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ perl /* for pod2man */ ];
- preBuild = let
- CPPFLAGS = with stdenv; ""
- + (lib.optionalString (!isi686 && !isx86_64) "-DNOJIT ")
- + "-Dunix";
- CXXFLAGS = "-O3 -DNDEBUG";
- in ''
- buildFlagsArray=( "CPPFLAGS=${CPPFLAGS}" "CXXFLAGS=${CXXFLAGS}" )
- '';
+ CPPFLAGS = [ "-Dunix" ] ++
+ lib.optional (!stdenv.isi686 && !stdenv.isx86_64) "-DNOJIT";
+ CXXFLAGS = [ "-O3" "-DNDEBUG" ];
enableParallelBuilding = true;
+ makeFlags = [ "CXX=${stdenv.cc.targetPrefix}c++" ];
installFlags = [ "PREFIX=$(out)" ];
meta = with lib; {
diff --git a/pkgs/tools/archivers/zpaq/zpaqd.nix b/pkgs/tools/archivers/zpaq/zpaqd.nix
index 1d674911f49e..6896897be3b1 100644
--- a/pkgs/tools/archivers/zpaq/zpaqd.nix
+++ b/pkgs/tools/archivers/zpaq/zpaqd.nix
@@ -19,8 +19,8 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ unzip ];
buildPhase = ''
- g++ ${compileFlags} -fPIC --shared libzpaq.cpp -o libzpaq.so
- g++ ${compileFlags} -L. -L"$out/lib" -lzpaq zpaqd.cpp -o zpaqd
+ $CXX ${compileFlags} -fPIC --shared libzpaq.cpp -o libzpaq.so
+ $CXX ${compileFlags} -L. -L"$out/lib" -lzpaq zpaqd.cpp -o zpaqd
'';
installPhase = ''
diff --git a/pkgs/tools/inputmethods/touchegg/default.nix b/pkgs/tools/inputmethods/touchegg/default.nix
index a50770c73559..c78890772717 100644
--- a/pkgs/tools/inputmethods/touchegg/default.nix
+++ b/pkgs/tools/inputmethods/touchegg/default.nix
@@ -1,6 +1,8 @@
-{ stdenv, lib
+{ stdenv
+, lib
, fetchFromGitHub
, fetchpatch
+, nix-update-script
, systemd
, libinput
, pugixml
@@ -16,15 +18,28 @@
stdenv.mkDerivation rec {
pname = "touchegg";
- version = "2.0.12";
+ version = "2.0.13";
+
src = fetchFromGitHub {
owner = "JoseExposito";
repo = pname;
rev = version;
- sha256 = "sha256-oJzehs7oLFTDn7GSm6bY/77tEfyEdlANn69EdCApdPA=";
+ sha256 = "sha256-wfXA4+HSLFHMvdsnyiTfRxPqdSsvd0RMkKIacf+rLZI=";
};
- PKG_CONFIG_SYSTEMD_SYSTEMDSYSTEMUNITDIR = "${placeholder "out"}/lib/systemd/system";
+ patches = lib.optionals withPantheon [
+ # Disable per-application gesture by default to make sure the default
+ # config does not conflict with Pantheon switchboard settings.
+ (fetchpatch {
+ url = "https://github.com/elementary/os-patches/commit/7d9b133e02132d7f13cf2fe850b2fe4c015c3c5e.patch";
+ sha256 = "sha256-ZOGVkxiXoTORXC6doz5r9IObAbYjhsDjgg3HtzlTSUc=";
+ })
+ ];
+
+ nativeBuildInputs = [
+ pkg-config
+ cmake
+ ];
buildInputs = [
systemd
@@ -43,19 +58,13 @@ stdenv.mkDerivation rec {
libxcb
]);
- nativeBuildInputs = [
- pkg-config
- cmake
- ];
+ PKG_CONFIG_SYSTEMD_SYSTEMDSYSTEMUNITDIR = "${placeholder "out"}/lib/systemd/system";
- patches = lib.optionals withPantheon [
- # Disable per-application gesture by default to make sure the default
- # config does not conflict with Pantheon switchboard settings.
- (fetchpatch {
- url = "https://github.com/elementary/os-patches/commit/ada4e726540a2bb57b606c98e2531cfaaea57211.patch";
- sha256 = "0is9acwvgiqdhbiw11i3nq0rp0zldcza779fbj8k78cp329rbqb4";
- })
- ];
+ passthru = {
+ updateScript = nix-update-script {
+ attrPath = pname;
+ };
+ };
meta = with lib; {
homepage = "https://github.com/JoseExposito/touchegg";
diff --git a/pkgs/tools/misc/android-tools/default.nix b/pkgs/tools/misc/android-tools/default.nix
index de526cf0ccfc..5bc9e1d820fa 100644
--- a/pkgs/tools/misc/android-tools/default.nix
+++ b/pkgs/tools/misc/android-tools/default.nix
@@ -9,11 +9,11 @@ in
stdenv.mkDerivation rec {
pname = "android-tools";
- version = "31.0.3";
+ version = "31.0.3p1";
src = fetchurl {
url = "https://github.com/nmeum/android-tools/releases/download/${version}/android-tools-${version}.tar.xz";
- sha256 = "0adhws565ny90vzh5jpkbcai8sfs3b9acs0bgl6bm9z1nr2xklnp";
+ sha256 = "1f2svy381r798hjinrc2xiwz13gkkqxfill343zvv8jqkn8rzxhf";
};
patches = [
@@ -40,7 +40,6 @@ stdenv.mkDerivation rec {
postInstall = ''
install -Dm755 ../vendor/avb/avbtool.py -t $out/bin
- install -Dm755 ../vendor/mkbootimg/mkbootimg.py $out/bin/mkbootimg
'';
meta = with lib; {
@@ -56,6 +55,8 @@ stdenv.mkDerivation rec {
- fastboot
- mke2fs.android (required by fastboot)
- simg2img, img2simg, append2simg
+ - lpdump, lpmake, lpadd, lpflash, lpunpack
+ - mkbootimg, unpack_bootimg, repack_bootimg
'';
# https://developer.android.com/studio/command-line#tools-platform
# https://developer.android.com/studio/releases/platform-tools
diff --git a/pkgs/tools/networking/cmst/default.nix b/pkgs/tools/networking/cmst/default.nix
index c211b2183854..06ef6675ceb4 100644
--- a/pkgs/tools/networking/cmst/default.nix
+++ b/pkgs/tools/networking/cmst/default.nix
@@ -2,13 +2,13 @@
mkDerivation rec {
pname = "cmst";
- version = "2021.12.02";
+ version = "2022.01.05";
src = fetchFromGitHub {
repo = "cmst";
owner = "andrew-bibb";
rev = "${pname}-${version}";
- sha256 = "1561bwc1h62w1zfazcs18aqaz17k5n5gr3jal4aw5cw8dgxhvxcb";
+ sha256 = "0d05vrsjm30q22wpxicnxhjzrjq5kxjhpb6262m46sgkr8yipfhr";
};
nativeBuildInputs = [ qmake qttools ];
@@ -21,15 +21,11 @@ mkDerivation rec {
done
'';
- preBuild = ''
- lrelease translations/*.ts
- '';
-
- meta = {
+ meta = with lib; {
description = "QT GUI for Connman with system tray icon";
homepage = "https://github.com/andrew-bibb/cmst";
- maintainers = [ lib.maintainers.matejc ];
- platforms = lib.platforms.linux;
- license = lib.licenses.mit;
+ maintainers = with maintainers; [ matejc romildo ];
+ platforms = platforms.linux;
+ license = licenses.mit;
};
}
diff --git a/pkgs/tools/package-management/protontricks/default.nix b/pkgs/tools/package-management/protontricks/default.nix
index 125b96953734..4ddd758c59bd 100644
--- a/pkgs/tools/package-management/protontricks/default.nix
+++ b/pkgs/tools/package-management/protontricks/default.nix
@@ -14,13 +14,13 @@
buildPythonApplication rec {
pname = "protontricks";
- version = "1.6.2";
+ version = "1.7.0";
src = fetchFromGitHub {
owner = "Matoking";
repo = pname;
rev = version;
- sha256 = "sha256-XC5ip12wlXRo/AaTFJWEZvEZPPC1WtXTyeYivvyHZaE=";
+ sha256 = "sha256-StI9UdSILcCUmViQnxteOJr6xLSz+EgtxRpJis57lBY=";
};
patches = [
diff --git a/pkgs/tools/package-management/protontricks/steam-run.patch b/pkgs/tools/package-management/protontricks/steam-run.patch
index d27289bb3f5c..92565f88fdd0 100644
--- a/pkgs/tools/package-management/protontricks/steam-run.patch
+++ b/pkgs/tools/package-management/protontricks/steam-run.patch
@@ -1,5 +1,5 @@
diff --git a/src/protontricks/cli/main.py b/src/protontricks/cli/main.py
-index bd651aa..2b82aea 100755
+index 8be6c71..f5772df 100755
--- a/src/protontricks/cli/main.py
+++ b/src/protontricks/cli/main.py
@@ -14,8 +14,8 @@ import sys
@@ -10,7 +10,7 @@ index bd651aa..2b82aea 100755
- find_steam_path, get_steam_apps, get_steam_lib_paths)
+from ..steam import (find_proton_app, find_steam_path, get_steam_apps,
+ get_steam_lib_paths)
- from ..util import is_flatpak_sandbox, run_command
+ from ..util import get_running_flatpak_version, FLATPAK_BWRAP_COMPATIBLE_VERSION, run_command
from ..winetricks import get_winetricks_path
from .util import (CustomArgumentParser, cli_error_handler, enable_logging,
@@ -60,8 +60,7 @@ def main(args=None):
@@ -23,7 +23,7 @@ index bd651aa..2b82aea 100755
"PROTONTRICKS_GUI: GUI provider to use, accepts either 'yad' "
"or 'zenity'"
),
-@@ -147,17 +146,9 @@ def main(args=None):
+@@ -151,17 +150,9 @@ def main(args=None):
if not steam_path:
exit_("Steam installation directory could not be found.")
@@ -43,7 +43,7 @@ index bd651aa..2b82aea 100755
else:
use_steam_runtime = False
logger.info("Steam Runtime disabled.")
-@@ -218,7 +209,6 @@ def main(args=None):
+@@ -222,7 +213,6 @@ def main(args=None):
proton_app=proton_app,
steam_app=steam_app,
use_steam_runtime=use_steam_runtime,
@@ -51,7 +51,7 @@ index bd651aa..2b82aea 100755
command=[str(winetricks_path), "--gui"],
use_bwrap=use_bwrap
)
-@@ -286,7 +276,6 @@ def main(args=None):
+@@ -290,7 +280,6 @@ def main(args=None):
proton_app=proton_app,
steam_app=steam_app,
use_steam_runtime=use_steam_runtime,
@@ -59,7 +59,7 @@ index bd651aa..2b82aea 100755
use_bwrap=use_bwrap,
command=[str(winetricks_path)] + args.winetricks_command
)
-@@ -297,7 +286,6 @@ def main(args=None):
+@@ -301,7 +290,6 @@ def main(args=None):
steam_app=steam_app,
command=args.command,
use_steam_runtime=use_steam_runtime,
@@ -68,7 +68,7 @@ index bd651aa..2b82aea 100755
# Pass the command directly into the shell *without*
# escaping it
diff --git a/src/protontricks/steam.py b/src/protontricks/steam.py
-index be5322b..552f894 100644
+index a291762..8af06c5 100644
--- a/src/protontricks/steam.py
+++ b/src/protontricks/steam.py
@@ -12,8 +12,8 @@ from .util import lower_dict, is_flatpak_sandbox
@@ -82,7 +82,7 @@ index be5322b..552f894 100644
"find_proton_app", "get_steam_lib_paths", "get_compat_tool_dirs",
"get_custom_compat_tool_installations_in_dir", "get_custom_compat_tool_installations",
"find_current_steamid3", "get_appid_from_shortcut",
-@@ -318,37 +318,6 @@ def find_steam_path():
+@@ -326,37 +326,6 @@ def find_steam_path():
return None, None
@@ -121,31 +121,27 @@ index be5322b..552f894 100644
APPINFO_STRUCT_SECTION = "