diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix
index 09c65a77fde0..04033780a622 100644
--- a/maintainers/maintainer-list.nix
+++ b/maintainers/maintainer-list.nix
@@ -1520,12 +1520,6 @@
githubId = 355401;
name = "Brian Hicks";
};
- bricewge = {
- email = "bricewge@gmail.com";
- github = "bricewge";
- githubId = 5525646;
- name = "Brice Waegeneire";
- };
Br1ght0ne = {
email = "brightone@protonmail.com";
github = "Br1ght0ne";
@@ -7683,6 +7677,12 @@
githubId = 2590830;
name = "Sage Raflik";
};
+ neosimsim = {
+ email = "me@abn.sh";
+ github = "neosimsim";
+ githubId = 1771772;
+ name = "Alexander Ben Nasrallah";
+ };
nequissimus = {
email = "tim@nequissimus.com";
github = "nequissimus";
@@ -11321,10 +11321,14 @@
name = "Jos van den Oever";
};
vanilla = {
- email = "neko@hydev.org";
+ email = "osu_vanilla@126.com";
github = "VergeDX";
githubId = 25173827;
name = "Vanilla";
+ keys = [{
+ longkeyid = "rsa4096/0x4DFA2BDD7305E739";
+ fingerprint = "5C16 5178 7DE2 EE5A AF98 3EA3 4DFA 2BDD 7305 E739";
+ }];
};
vanschelven = {
email = "klaas@vanschelven.com";
diff --git a/nixos/modules/config/update-users-groups.pl b/nixos/modules/config/update-users-groups.pl
index bef08dc40207..232f886789d3 100644
--- a/nixos/modules/config/update-users-groups.pl
+++ b/nixos/modules/config/update-users-groups.pl
@@ -1,11 +1,10 @@
use strict;
+use warnings;
use File::Path qw(make_path);
use File::Slurp;
+use Getopt::Long;
use JSON;
-make_path("/var/lib/nixos", { mode => 0755 });
-
-
# Keep track of deleted uids and gids.
my $uidMapFile = "/var/lib/nixos/uid-map";
my $uidMap = -e $uidMapFile ? decode_json(read_file($uidMapFile)) : {};
@@ -13,12 +12,19 @@ my $uidMap = -e $uidMapFile ? decode_json(read_file($uidMapFile)) : {};
my $gidMapFile = "/var/lib/nixos/gid-map";
my $gidMap = -e $gidMapFile ? decode_json(read_file($gidMapFile)) : {};
+my $is_dry = ($ENV{'NIXOS_ACTION'} // "") eq "dry-activate";
+GetOptions("dry-activate" => \$is_dry);
+make_path("/var/lib/nixos", { mode => 0755 }) unless $is_dry;
sub updateFile {
my ($path, $contents, $perms) = @_;
+ return if $is_dry;
write_file($path, { atomic => 1, binmode => ':utf8', perms => $perms // 0644 }, $contents) or die;
}
+sub nscdInvalidate {
+ system("nscd", "--invalidate", $_[0]) unless $is_dry;
+}
sub hashPassword {
my ($password) = @_;
@@ -28,6 +34,14 @@ sub hashPassword {
return crypt($password, '$6$' . $salt . '$');
}
+sub dry_print {
+ if ($is_dry) {
+ print STDERR ("$_[1] $_[2]\n")
+ } else {
+ print STDERR ("$_[0] $_[2]\n")
+ }
+}
+
# Functions for allocating free GIDs/UIDs. FIXME: respect ID ranges in
# /etc/login.defs.
@@ -51,7 +65,7 @@ sub allocGid {
my ($name) = @_;
my $prevGid = $gidMap->{$name};
if (defined $prevGid && !defined $gidsUsed{$prevGid}) {
- print STDERR "reviving group '$name' with GID $prevGid\n";
+ dry_print("reviving", "would revive", "group '$name' with GID $prevGid");
$gidsUsed{$prevGid} = 1;
return $prevGid;
}
@@ -63,15 +77,14 @@ sub allocUid {
my ($min, $max, $up) = $isSystemUser ? (400, 999, 0) : (1000, 29999, 1);
my $prevUid = $uidMap->{$name};
if (defined $prevUid && $prevUid >= $min && $prevUid <= $max && !defined $uidsUsed{$prevUid}) {
- print STDERR "reviving user '$name' with UID $prevUid\n";
+ dry_print("reviving", "would revive", "user '$name' with UID $prevUid");
$uidsUsed{$prevUid} = 1;
return $prevUid;
}
return allocId(\%uidsUsed, \%uidsPrevUsed, $min, $max, $up, sub { my ($uid) = @_; getpwuid($uid) });
}
-
-# Read the declared users/groups.
+# Read the declared users/groups
my $spec = decode_json(read_file($ARGV[0]));
# Don't allocate UIDs/GIDs that are manually assigned.
@@ -134,7 +147,7 @@ foreach my $g (@{$spec->{groups}}) {
if (defined $existing) {
$g->{gid} = $existing->{gid} if !defined $g->{gid};
if ($g->{gid} != $existing->{gid}) {
- warn "warning: not applying GID change of group ‘$name’ ($existing->{gid} -> $g->{gid})\n";
+ dry_print("warning: not applying", "warning: would not apply", "GID change of group ‘$name’ ($existing->{gid} -> $g->{gid})");
$g->{gid} = $existing->{gid};
}
$g->{password} = $existing->{password}; # do we want this?
@@ -163,7 +176,7 @@ foreach my $name (keys %groupsCur) {
my $g = $groupsCur{$name};
next if defined $groupsOut{$name};
if (!$spec->{mutableUsers} || defined $declGroups{$name}) {
- print STDERR "removing group ‘$name’\n";
+ dry_print("removing group", "would remove group", "‘$name’");
} else {
$groupsOut{$name} = $g;
}
@@ -175,7 +188,7 @@ my @lines = map { join(":", $_->{name}, $_->{password}, $_->{gid}, $_->{members}
(sort { $a->{gid} <=> $b->{gid} } values(%groupsOut));
updateFile($gidMapFile, to_json($gidMap));
updateFile("/etc/group", \@lines);
-system("nscd --invalidate group");
+nscdInvalidate("group");
# Generate a new /etc/passwd containing the declared users.
my %usersOut;
@@ -196,7 +209,7 @@ foreach my $u (@{$spec->{users}}) {
if (defined $existing) {
$u->{uid} = $existing->{uid} if !defined $u->{uid};
if ($u->{uid} != $existing->{uid}) {
- warn "warning: not applying UID change of user ‘$name’ ($existing->{uid} -> $u->{uid})\n";
+ dry_print("warning: not applying", "warning: would not apply", "UID change of user ‘$name’ ($existing->{uid} -> $u->{uid})");
$u->{uid} = $existing->{uid};
}
} else {
@@ -211,7 +224,7 @@ foreach my $u (@{$spec->{users}}) {
# Ensure home directory incl. ownership and permissions.
if ($u->{createHome}) {
- make_path($u->{home}, { mode => 0700 }) if ! -e $u->{home};
+ make_path($u->{home}, { mode => 0700 }) if ! -e $u->{home} and ! $is_dry;
chown $u->{uid}, $u->{gid}, $u->{home};
chmod 0700, $u->{home};
}
@@ -250,7 +263,7 @@ foreach my $name (keys %usersCur) {
my $u = $usersCur{$name};
next if defined $usersOut{$name};
if (!$spec->{mutableUsers} || defined $declUsers{$name}) {
- print STDERR "removing user ‘$name’\n";
+ dry_print("removing user", "would remove user", "‘$name’");
} else {
$usersOut{$name} = $u;
}
@@ -261,7 +274,7 @@ foreach my $name (keys %usersCur) {
(sort { $a->{uid} <=> $b->{uid} } (values %usersOut));
updateFile($uidMapFile, to_json($uidMap));
updateFile("/etc/passwd", \@lines);
-system("nscd --invalidate passwd");
+nscdInvalidate("passwd");
# Rewrite /etc/shadow to add new accounts or remove dead ones.
@@ -293,7 +306,7 @@ updateFile("/etc/shadow", \@shadowNew, 0640);
my $uid = getpwnam "root";
my $gid = getgrnam "shadow";
my $path = "/etc/shadow";
- chown($uid, $gid, $path) || die "Failed to change ownership of $path: $!";
+ (chown($uid, $gid, $path) || die "Failed to change ownership of $path: $!") unless $is_dry;
}
# Rewrite /etc/subuid & /etc/subgid to include default container mappings
diff --git a/nixos/modules/config/users-groups.nix b/nixos/modules/config/users-groups.nix
index f86be3be2c65..d88162558e66 100644
--- a/nixos/modules/config/users-groups.nix
+++ b/nixos/modules/config/users-groups.nix
@@ -561,14 +561,16 @@ in {
shadow.gid = ids.gids.shadow;
};
- system.activationScripts.users = stringAfter [ "stdio" ]
- ''
+ system.activationScripts.users = {
+ supportsDryActivation = true;
+ text = ''
install -m 0700 -d /root
install -m 0755 -d /home
${pkgs.perl.withPackages (p: [ p.FileSlurp p.JSON ])}/bin/perl \
-w ${./update-users-groups.pl} ${spec}
'';
+ };
# for backwards compatibility
system.activationScripts.groups = stringAfter [ "users" ] "";
diff --git a/nixos/modules/services/monitoring/grafana.nix b/nixos/modules/services/monitoring/grafana.nix
index fb67bbfb8420..d46e38e82af1 100644
--- a/nixos/modules/services/monitoring/grafana.nix
+++ b/nixos/modules/services/monitoring/grafana.nix
@@ -675,6 +675,33 @@ in {
User = "grafana";
RuntimeDirectory = "grafana";
RuntimeDirectoryMode = "0755";
+ # Hardening
+ CapabilityBoundingSet = [ "" ];
+ DeviceAllow = [ "" ];
+ LockPersonality = true;
+ MemoryDenyWriteExecute = true;
+ NoNewPrivileges = true;
+ PrivateDevices = true;
+ PrivateTmp = true;
+ PrivateUsers = true;
+ ProcSubset = "pid";
+ ProtectClock = true;
+ ProtectControlGroups = true;
+ ProtectHome = true;
+ ProtectHostname = true;
+ ProtectKernelLogs = true;
+ ProtectKernelModules = true;
+ ProtectKernelTunables = true;
+ ProtectProc = "invisible";
+ ProtectSystem = "full";
+ RemoveIPC = true;
+ RestrictAddressFamilies = [ "AF_INET" "AF_INET6" "AF_UNIX" ];
+ RestrictNamespaces = true;
+ RestrictRealtime = true;
+ RestrictSUIDSGID = true;
+ SystemCallArchitectures = "native";
+ SystemCallFilter = [ "@system-service" "~@privileged" "~@resources" ];
+ UMask = "0027";
};
preStart = ''
ln -fs ${cfg.package}/share/grafana/conf ${cfg.dataDir}
diff --git a/nixos/modules/system/activation/activation-script.nix b/nixos/modules/system/activation/activation-script.nix
index 3a6930314b1a..548b4de852b7 100644
--- a/nixos/modules/system/activation/activation-script.nix
+++ b/nixos/modules/system/activation/activation-script.nix
@@ -17,6 +17,41 @@ let
'';
});
+ systemActivationScript = set: onlyDry: let
+ set' = filterAttrs (_: v: onlyDry -> v.supportsDryActivation) (mapAttrs (_: v: if isString v then (noDepEntry v) // { supportsDryActivation = false; } else v) set);
+ withHeadlines = addAttributeName set';
+ in
+ ''
+ #!${pkgs.runtimeShell}
+
+ systemConfig='@out@'
+
+ export PATH=/empty
+ for i in ${toString path}; do
+ PATH=$PATH:$i/bin:$i/sbin
+ done
+
+ _status=0
+ trap "_status=1 _localstatus=\$?" ERR
+
+ # Ensure a consistent umask.
+ umask 0022
+
+ ${textClosureMap id (withHeadlines) (attrNames withHeadlines)}
+
+ '' + optionalString (!onlyDry) ''
+ # Make this configuration the current configuration.
+ # The readlink is there to ensure that when $systemConfig = /system
+ # (which is a symlink to the store), /run/current-system is still
+ # used as a garbage collection root.
+ ln -sfn "$(readlink -f "$systemConfig")" /run/current-system
+
+ # Prevent the current configuration from being garbage-collected.
+ ln -sfn /run/current-system /nix/var/nix/gcroots/current-system
+
+ exit $_status
+ '';
+
path = with pkgs; map getBin
[ coreutils
gnugrep
@@ -28,7 +63,7 @@ let
util-linux # needed for mount and mountpoint
];
- scriptType = with types;
+ scriptType = withDry: with types;
let scriptOptions =
{ deps = mkOption
{ type = types.listOf types.str;
@@ -39,6 +74,19 @@ let
{ type = types.lines;
description = "The content of the script.";
};
+ } // optionalAttrs withDry {
+ supportsDryActivation = mkOption
+ { type = types.bool;
+ default = false;
+ description = ''
+ Whether this activation script supports being dry-activated.
+ These activation scripts will also be executed on dry-activate
+ activations with the environment variable
+ NIXOS_ACTION being set to dry-activate
+ . it's important that these activation scripts don't
+ modify anything about the system when the variable is set.
+ '';
+ };
};
in either str (submodule { options = scriptOptions; });
@@ -74,47 +122,19 @@ in
idempotent and fast.
'';
- type = types.attrsOf scriptType;
-
- apply = set: {
- script =
- ''
- #! ${pkgs.runtimeShell}
-
- systemConfig=@out@
-
- export PATH=/empty
- for i in ${toString path}; do
- PATH=$PATH:$i/bin:$i/sbin
- done
-
- _status=0
- trap "_status=1 _localstatus=\$?" ERR
-
- # Ensure a consistent umask.
- umask 0022
-
- ${
- let
- set' = mapAttrs (n: v: if isString v then noDepEntry v else v) set;
- withHeadlines = addAttributeName set';
- in textClosureMap id (withHeadlines) (attrNames withHeadlines)
- }
-
- # Make this configuration the current configuration.
- # The readlink is there to ensure that when $systemConfig = /system
- # (which is a symlink to the store), /run/current-system is still
- # used as a garbage collection root.
- ln -sfn "$(readlink -f "$systemConfig")" /run/current-system
-
- # Prevent the current configuration from being garbage-collected.
- ln -sfn /run/current-system /nix/var/nix/gcroots/current-system
-
- exit $_status
- '';
+ type = types.attrsOf (scriptType true);
+ apply = set: set // {
+ script = systemActivationScript set false;
};
};
+ system.dryActivationScript = mkOption {
+ description = "The shell script that is to be run when dry-activating a system.";
+ readOnly = true;
+ internal = true;
+ default = systemActivationScript (removeAttrs config.system.activationScripts [ "script" ]) true;
+ };
+
system.userActivationScripts = mkOption {
default = {};
@@ -137,7 +157,7 @@ in
idempotent and fast.
'';
- type = with types; attrsOf scriptType;
+ type = with types; attrsOf (scriptType false);
apply = set: {
script = ''
diff --git a/nixos/modules/system/activation/switch-to-configuration.pl b/nixos/modules/system/activation/switch-to-configuration.pl
index dd391c8b5d78..b7a062755296 100644
--- a/nixos/modules/system/activation/switch-to-configuration.pl
+++ b/nixos/modules/system/activation/switch-to-configuration.pl
@@ -36,6 +36,8 @@ EOF
exit 1;
}
+$ENV{NIXOS_ACTION} = $action;
+
# This is a NixOS installation if it has /etc/NIXOS or a proper
# /etc/os-release.
die "This is not a NixOS installation!\n" unless
@@ -360,6 +362,10 @@ if ($action eq "dry-activate") {
if scalar @unitsToStopFiltered > 0;
print STDERR "would NOT stop the following changed units: ", join(", ", sort(keys %unitsToSkip)), "\n"
if scalar(keys %unitsToSkip) > 0;
+
+ print STDERR "would activate the configuration...\n";
+ system("$out/dry-activate", "$out");
+
print STDERR "would restart systemd\n" if $restartSystemd;
print STDERR "would restart the following units: ", join(", ", sort(keys %unitsToRestart)), "\n"
if scalar(keys %unitsToRestart) > 0;
diff --git a/nixos/modules/system/activation/top-level.nix b/nixos/modules/system/activation/top-level.nix
index d3e4923a993f..80835d9688f2 100644
--- a/nixos/modules/system/activation/top-level.nix
+++ b/nixos/modules/system/activation/top-level.nix
@@ -56,9 +56,11 @@ let
''}
echo "$activationScript" > $out/activate
+ echo "$dryActivationScript" > $out/dry-activate
substituteInPlace $out/activate --subst-var out
- chmod u+x $out/activate
- unset activationScript
+ substituteInPlace $out/dry-activate --subst-var out
+ chmod u+x $out/activate $out/dry-activate
+ unset activationScript dryActivationScript
cp ${config.system.build.bootStage2} $out/init
substituteInPlace $out/init --subst-var-by systemConfig $out
@@ -108,6 +110,7 @@ let
config.system.build.installBootLoader
or "echo 'Warning: do not know how to make this configuration bootable; please enable a boot loader.' 1>&2; true";
activationScript = config.system.activationScripts.script;
+ dryActivationScript = config.system.dryActivationScript;
nixosLabel = config.system.nixos.label;
configurationName = config.boot.loader.grub.configurationName;
diff --git a/nixos/modules/tasks/lvm.nix b/nixos/modules/tasks/lvm.nix
index 98a0e2ddef90..aaa76b49fa30 100644
--- a/nixos/modules/tasks/lvm.nix
+++ b/nixos/modules/tasks/lvm.nix
@@ -46,22 +46,32 @@ in {
kernelModules = [ "dm-snapshot" "dm-thin-pool" ];
extraUtilsCommands = ''
- copy_bin_and_libs ${pkgs.thin-provisioning-tools}/bin/pdata_tools
- copy_bin_and_libs ${pkgs.thin-provisioning-tools}/bin/thin_check
+ for BIN in ${pkgs.thin-provisioning-tools}/bin/*; do
+ copy_bin_and_libs $BIN
+ done
+ '';
+
+ extraUtilsCommandsTest = ''
+ ls ${pkgs.thin-provisioning-tools}/bin/ | grep -v pdata_tools | while read BIN; do
+ $out/bin/$(basename $BIN) --help > /dev/null
+ done
'';
};
- environment.etc."lvm/lvm.conf".text = ''
- global/thin_check_executable = "${pkgs.thin-provisioning-tools}/bin/thin_check"
- '';
+ environment.etc."lvm/lvm.conf".text = concatMapStringsSep "\n"
+ (bin: "global/${bin}_executable = ${pkgs.thin-provisioning-tools}/bin/${bin}")
+ [ "thin_check" "thin_dump" "thin_repair" "cache_check" "cache_dump" "cache_repair" ];
})
(mkIf (cfg.dmeventd.enable || cfg.boot.thin.enable) {
boot.initrd.preLVMCommands = ''
mkdir -p /etc/lvm
cat << EOF >> /etc/lvm/lvm.conf
- ${optionalString cfg.boot.thin.enable ''
- global/thin_check_executable = "$(command -v thin_check)"
- ''}
+ ${optionalString cfg.boot.thin.enable (
+ concatMapStringsSep "\n"
+ (bin: "global/${bin}_executable = $(command -v ${bin})")
+ [ "thin_check" "thin_dump" "thin_repair" "cache_check" "cache_dump" "cache_repair" ]
+ )
+ }
${optionalString cfg.dmeventd.enable ''
dmeventd/executable = "$(command -v false)"
activation/monitoring = 0
diff --git a/nixos/tests/miniflux.nix b/nixos/tests/miniflux.nix
index 9a25a9e77cc9..1015550fa8c7 100644
--- a/nixos/tests/miniflux.nix
+++ b/nixos/tests/miniflux.nix
@@ -11,7 +11,7 @@ in
with lib;
{
name = "miniflux";
- meta.maintainers = with pkgs.lib.maintainers; [ bricewge ];
+ meta.maintainers = with pkgs.lib.maintainers; [ ];
nodes = {
default =
diff --git a/nixos/tests/mutable-users.nix b/nixos/tests/mutable-users.nix
index e3f002d9b198..ebe32e6487ef 100644
--- a/nixos/tests/mutable-users.nix
+++ b/nixos/tests/mutable-users.nix
@@ -12,6 +12,7 @@ import ./make-test-python.nix ({ pkgs, ...} : {
};
mutable = { ... }: {
users.mutableUsers = true;
+ users.users.dry-test.isNormalUser = true;
};
};
@@ -41,5 +42,32 @@ import ./make-test-python.nix ({ pkgs, ...} : {
"${mutableSystem}/bin/switch-to-configuration test"
)
assert "/run/wrappers/" in machine.succeed("which passwd")
+
+ with subtest("dry-activation does not change files"):
+ machine.succeed('test -e /home/dry-test') # home was created
+ machine.succeed('rm -rf /home/dry-test')
+
+ files_to_check = ['/etc/group',
+ '/etc/passwd',
+ '/etc/shadow',
+ '/etc/subuid',
+ '/etc/subgid',
+ '/var/lib/nixos/uid-map',
+ '/var/lib/nixos/gid-map',
+ '/var/lib/nixos/declarative-groups',
+ '/var/lib/nixos/declarative-users'
+ ]
+ expected_hashes = {}
+ expected_stats = {}
+ for file in files_to_check:
+ expected_hashes[file] = machine.succeed(f"sha256sum {file}")
+ expected_stats[file] = machine.succeed(f"stat {file}")
+
+ machine.succeed("/run/current-system/bin/switch-to-configuration dry-activate")
+
+ machine.fail('test -e /home/dry-test') # home was not recreated
+ for file in files_to_check:
+ assert machine.succeed(f"sha256sum {file}") == expected_hashes[file]
+ assert machine.succeed(f"stat {file}") == expected_stats[file]
'';
})
diff --git a/pkgs/applications/audio/exaile/default.nix b/pkgs/applications/audio/exaile/default.nix
new file mode 100644
index 000000000000..220a7c4eb3ea
--- /dev/null
+++ b/pkgs/applications/audio/exaile/default.nix
@@ -0,0 +1,107 @@
+{ stdenv, lib, fetchFromGitHub
+, gobject-introspection, makeWrapper, wrapGAppsHook
+, gtk3, gst_all_1, python3
+, gettext, gnome, help2man, keybinder3, libnotify, librsvg, streamripper, udisks, webkitgtk
+, iconTheme ? gnome.adwaita-icon-theme
+, deviceDetectionSupport ? true
+, documentationSupport ? true
+, notificationSupport ? true
+, scalableIconSupport ? true
+, translationSupport ? true
+, bpmCounterSupport ? false
+, ipythonSupport ? false
+, lastfmSupport ? false
+, lyricsManiaSupport ? false
+, lyricsWikiSupport ? false
+, multimediaKeySupport ? false
+, musicBrainzSupport ? false
+, podcastSupport ? false
+, streamripperSupport ? false
+, wikipediaSupport ? false
+, fetchpatch
+}:
+
+stdenv.mkDerivation rec {
+ pname = "exaile";
+ version = "4.1.1";
+
+ src = fetchFromGitHub {
+ owner = "exaile";
+ repo = pname;
+ rev = version;
+ sha256 = "0s29lm0i4slgaw5l5s9a2zx0b83xac43rnil5cvyi210dxm5s048";
+ };
+ patches = [
+ (fetchpatch {
+ url = "https://github.com/exaile/exaile/pull/751.patch";
+ sha256 = "sha256-jCJh85Z3HQcyS4ntQP5HwYJgM7WNHcWzjf0BdNJitsM=";
+ })
+ ];
+
+ nativeBuildInputs = [
+ gobject-introspection
+ makeWrapper
+ wrapGAppsHook
+ ] ++ lib.optionals documentationSupport [
+ help2man
+ python3.pkgs.sphinx
+ python3.pkgs.sphinx_rtd_theme
+ ] ++ lib.optional translationSupport gettext;
+
+ buildInputs = [
+ iconTheme
+ gtk3
+ ] ++ (with gst_all_1; [
+ gstreamer
+ gst-plugins-base
+ gst-plugins-good
+ ]) ++ (with python3.pkgs; [
+ bsddb3
+ dbus-python
+ mutagen
+ pygobject3
+ pycairo
+ gst-python
+ ]) ++ lib.optional deviceDetectionSupport udisks
+ ++ lib.optional notificationSupport libnotify
+ ++ lib.optional scalableIconSupport librsvg
+ ++ lib.optional bpmCounterSupport gst_all_1.gst-plugins-bad
+ ++ lib.optional ipythonSupport python3.pkgs.ipython
+ ++ lib.optional lastfmSupport python3.pkgs.pylast
+ ++ lib.optional (lyricsManiaSupport || lyricsWikiSupport) python3.pkgs.lxml
+ ++ lib.optional lyricsWikiSupport python3.pkgs.beautifulsoup4
+ ++ lib.optional multimediaKeySupport keybinder3
+ ++ lib.optional musicBrainzSupport python3.pkgs.musicbrainzngs
+ ++ lib.optional podcastSupport python3.pkgs.feedparser
+ ++ lib.optional wikipediaSupport webkitgtk;
+
+ checkInputs = with python3.pkgs; [
+ mox3
+ pytest
+ ];
+
+ makeFlags = [
+ "PREFIX=${placeholder "out"}"
+ ];
+
+ doCheck = true;
+ preCheck = ''
+ substituteInPlace Makefile --replace "PYTHONPATH=$(shell pwd)" "PYTHONPATH=$PYTHONPATH:$(shell pwd)"
+ export PYTEST="py.test"
+ export XDG_CACHE_HOME=$(mktemp -d)
+ '';
+
+ postInstall = ''
+ wrapProgram $out/bin/exaile \
+ --set PYTHONPATH $PYTHONPATH \
+ ${lib.optionalString streamripperSupport "--prefix PATH : ${lib.makeBinPath [ streamripper ]}"}
+ '';
+
+ meta = with lib; {
+ homepage = "https://www.exaile.org/";
+ description = "A music player with a simple interface and powerful music management capabilities";
+ license = licenses.gpl2Only;
+ maintainers = with maintainers; [ ryneeverett ];
+ platforms = platforms.all;
+ };
+}
diff --git a/pkgs/applications/audio/lollypop/default.nix b/pkgs/applications/audio/lollypop/default.nix
index 860a621847da..564277562885 100644
--- a/pkgs/applications/audio/lollypop/default.nix
+++ b/pkgs/applications/audio/lollypop/default.nix
@@ -25,7 +25,7 @@
python3.pkgs.buildPythonApplication rec {
pname = "lollypop";
- version = "1.4.17";
+ version = "1.4.23";
format = "other";
doCheck = false;
@@ -34,7 +34,7 @@ python3.pkgs.buildPythonApplication rec {
url = "https://gitlab.gnome.org/World/lollypop";
rev = "refs/tags/${version}";
fetchSubmodules = true;
- sha256 = "sha256-GrznUXIYUTYOKQ1znsCqmBdm5YImCABMK2NGRtx5fSk=";
+ sha256 = "sha256-wwdH3gMpYt40VGqrL1XfB1dOfg45zLKtTEI23AwjCis=";
};
nativeBuildInputs = [
diff --git a/pkgs/applications/networking/cluster/cni/plugins.nix b/pkgs/applications/networking/cluster/cni/plugins.nix
index 0b862718cfb2..14e7095c4b9e 100644
--- a/pkgs/applications/networking/cluster/cni/plugins.nix
+++ b/pkgs/applications/networking/cluster/cni/plugins.nix
@@ -2,13 +2,13 @@
buildGoModule rec {
pname = "cni-plugins";
- version = "1.0.0";
+ version = "1.0.1";
src = fetchFromGitHub {
owner = "containernetworking";
repo = "plugins";
rev = "v${version}";
- sha256 = "sha256-RcDZW/iOAcJodGiuzmeZk3obtD0/mQoMF9vL0xNehbQ=";
+ sha256 = "sha256-zIL9KG1WL+DlgC5c+b9gV1i7mB0Ge8bapcuSV4GNIck=";
};
vendorSha256 = null;
diff --git a/pkgs/applications/networking/gnome-network-displays/default.nix b/pkgs/applications/networking/gnome-network-displays/default.nix
index 8456720cb7ac..6b8ddf9c4f58 100644
--- a/pkgs/applications/networking/gnome-network-displays/default.nix
+++ b/pkgs/applications/networking/gnome-network-displays/default.nix
@@ -21,11 +21,11 @@
stdenv.mkDerivation rec {
pname = "gnome-network-displays";
- version = "0.90.4";
+ version = "0.90.5";
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
- sha256 = "04snnfz5jxxpjkrwa7dchc2h4shszi8mq9g3ihvsvipgzjw3d498";
+ sha256 = "sha256-2SBVQK4fJeK8Y2UrrL0g5vQIerDdGE1nhFc6ke4oIpI=";
};
patches = [
@@ -36,11 +36,6 @@ stdenv.mkDerivation rec {
url = "https://gitlab.gnome.org/GNOME/gnome-network-displays/-/commit/ef3f3ff565acd8238da46de604a1e750d4f02f07.diff";
sha256 = "1ljiwgqia6am4lansg70qnwkch9mp1fr6bga98s5fwyiaw6b6f4p";
})
- # Fixes an upstream bug: https://gitlab.gnome.org/GNOME/gnome-network-displays/-/issues/147
- (fetchpatch {
- url = "https://gitlab.gnome.org/GNOME/gnome-network-displays/-/commit/23164b58f4d5dd59de988525906d6e5e82c5a63c.patch";
- sha256 = "0x32dvkzv9m04q41aicscpf4aspghx81a65462kjqnsavi64lga5";
- })
];
nativeBuildInputs = [
diff --git a/pkgs/applications/networking/syncthing/default.nix b/pkgs/applications/networking/syncthing/default.nix
index a0ab6304e34a..4b1150159a4e 100644
--- a/pkgs/applications/networking/syncthing/default.nix
+++ b/pkgs/applications/networking/syncthing/default.nix
@@ -4,16 +4,16 @@ let
common = { stname, target, postInstall ? "" }:
buildGoModule rec {
pname = stname;
- version = "1.18.1";
+ version = "1.18.2";
src = fetchFromGitHub {
owner = "syncthing";
repo = "syncthing";
rev = "v${version}";
- sha256 = "1sm4d0pjgk0spz9pddqb3i8hli10pibd5xs18mhcwrhnxj2xky1y";
+ sha256 = "1r5vd501p3ydi6rr2k4cqdl3pixdr79lfwpnc90xmd1i6mlyxrma";
};
- vendorSha256 = "1qqpxm4s1s2yp1zmi4m25y1a6r7kxc5rmvfsg50jmqsfnwligpz6";
+ vendorSha256 = "1v8hdr2na7bndx6q1kk0dkg1v9149gbhxcva1wq075xjl0kw21ip";
doCheck = false;
diff --git a/pkgs/applications/version-management/blackbox/default.nix b/pkgs/applications/version-management/blackbox/default.nix
index 5c802d8a300a..06a941de7b46 100644
--- a/pkgs/applications/version-management/blackbox/default.nix
+++ b/pkgs/applications/version-management/blackbox/default.nix
@@ -24,7 +24,8 @@ stdenv.mkDerivation rec {
buildInputs = [ gnupg ];
- doCheck = true;
+ # https://github.com/NixOS/nixpkgs/issues/134445
+ doCheck = !stdenv.isDarwin && stdenv.isx86_64;
checkInputs = [
expect
diff --git a/pkgs/applications/video/obs-studio/default.nix b/pkgs/applications/video/obs-studio/default.nix
index 82040203c4f3..1d226ec8fe26 100644
--- a/pkgs/applications/video/obs-studio/default.nix
+++ b/pkgs/applications/video/obs-studio/default.nix
@@ -46,13 +46,13 @@ let
in
mkDerivation rec {
pname = "obs-studio";
- version = "27.0.0";
+ version = "27.0.1";
src = fetchFromGitHub {
owner = "obsproject";
repo = "obs-studio";
rev = version;
- sha256 = "1n71705b9lbdff3svkmgwmbhlhhxvi8ajxqb74lm07v56a5bvi6p";
+ sha256 = "04fzsr9yizmxy0r7z2706crvnsnybpnv5kgfn77znknxxjacfhkn";
fetchSubmodules = true;
};
diff --git a/pkgs/applications/video/xine-ui/default.nix b/pkgs/applications/video/xine-ui/default.nix
index ed60fad56c3b..87b975e80fb7 100644
--- a/pkgs/applications/video/xine-ui/default.nix
+++ b/pkgs/applications/video/xine-ui/default.nix
@@ -51,6 +51,11 @@ stdenv.mkDerivation rec {
LIRC_CFLAGS="-I${lirc}/include";
LIRC_LIBS="-L ${lirc}/lib -llirc_client";
+ postInstall = ''
+ substituteInPlace $out/share/applications/xine.desktop \
+ --replace "MimeType=;" "MimeType="
+ '';
+
meta = with lib; {
homepage = "http://xinehq.de/";
description = "Xlib-based frontend for Xine video player";
diff --git a/pkgs/applications/virtualization/docker-slim/default.nix b/pkgs/applications/virtualization/docker-slim/default.nix
index a38b0675af2d..5a4532fc6c7f 100644
--- a/pkgs/applications/virtualization/docker-slim/default.nix
+++ b/pkgs/applications/virtualization/docker-slim/default.nix
@@ -6,7 +6,7 @@
buildGoPackage rec {
pname = "docker-slim";
- version = "1.36.2";
+ version = "1.36.4";
goPackagePath = "github.com/docker-slim/docker-slim";
@@ -14,7 +14,7 @@ buildGoPackage rec {
owner = "docker-slim";
repo = "docker-slim";
rev = version;
- sha256 = "sha256-Q8M8+krPC6WRDCxe88gzX5bDG8x6sJ8TduTKjA85WFA=";
+ sha256 = "0hgiigai5jpczjll4s4r4jzbq272s3p8f0r6mj4r3mjjs89hkqz1";
};
subPackages = [ "cmd/docker-slim" "cmd/docker-slim-sensor" ];
@@ -38,7 +38,7 @@ buildGoPackage rec {
meta = with lib; {
description = "Minify and secure Docker containers";
homepage = "https://dockersl.im/";
- changelog = "https://github.com/docker-slim/docker-slim/blob/${version}/CHANGELOG.md";
+ changelog = "https://github.com/docker-slim/docker-slim/raw/${version}/CHANGELOG.md";
license = licenses.asl20;
maintainers = with maintainers; [ Br1ght0ne marsam mbrgm ];
};
diff --git a/pkgs/applications/virtualization/virtualbox/default.nix b/pkgs/applications/virtualization/virtualbox/default.nix
index c693fa8fdcf1..f54f9d84546b 100644
--- a/pkgs/applications/virtualization/virtualbox/default.nix
+++ b/pkgs/applications/virtualization/virtualbox/default.nix
@@ -200,6 +200,11 @@ in stdenv.mkDerivation {
done
''}
+ # https://github.com/NixOS/nixpkgs/issues/137104
+ ${optionalString (enableHardening || headless) ''
+ rm $libexec/components/VBoxREM.so
+ ''}
+
cp -rv out/linux.*/${buildType}/bin/src "$modsrc"
'';
diff --git a/pkgs/build-support/coq/default.nix b/pkgs/build-support/coq/default.nix
index 5f2b5e646b0b..05f6e7762a07 100644
--- a/pkgs/build-support/coq/default.nix
+++ b/pkgs/build-support/coq/default.nix
@@ -57,7 +57,8 @@ let
] "") + optionalString (v == null) "-broken";
append-version = p: n: p + display-pkg n "" coqPackages.${n}.version + "-";
prefix-name = foldl append-version "" namePrefix;
- var-coqlib-install = (optionalString (versions.isGe "8.7" coq.coq-version) "COQMF_") + "COQLIB";
+ var-coqlib-install =
+ (optionalString (versions.isGe "8.7" coq.coq-version || coq.coq-version == "dev") "COQMF_") + "COQLIB";
useDune2 = args.useDune2 or (useDune2ifVersion fetched.version);
in
diff --git a/pkgs/build-support/mkshell/default.nix b/pkgs/build-support/mkshell/default.nix
index 7ca4cc23c1d5..27ee7e322624 100644
--- a/pkgs/build-support/mkshell/default.nix
+++ b/pkgs/build-support/mkshell/default.nix
@@ -14,8 +14,9 @@
, ...
}@attrs:
let
- mergeInputs = name: lib.concatLists (lib.catAttrs name
- ([ attrs ] ++ inputsFrom));
+ mergeInputs = name:
+ (attrs.${name} or []) ++
+ (lib.subtractLists inputsFrom (lib.flatten (lib.catAttrs name inputsFrom)));
rest = builtins.removeAttrs attrs [
"packages"
diff --git a/pkgs/data/themes/solarc/default.nix b/pkgs/data/themes/solarc/default.nix
index 3f6932e40a0c..a6ae8ce2e914 100644
--- a/pkgs/data/themes/solarc/default.nix
+++ b/pkgs/data/themes/solarc/default.nix
@@ -25,7 +25,7 @@ stdenv.mkDerivation {
description = "Solarized version of the Arc theme";
homepage = "https://github.com/schemar/solarc-theme";
license = licenses.gpl3;
- maintainers = [ maintainers.bricewge ];
+ maintainers = [ ];
platforms = platforms.linux;
};
}
diff --git a/pkgs/development/compilers/hip/default.nix b/pkgs/development/compilers/hip/default.nix
new file mode 100644
index 000000000000..ff5a34330ede
--- /dev/null
+++ b/pkgs/development/compilers/hip/default.nix
@@ -0,0 +1,166 @@
+{ stdenv
+, binutils-unwrapped
+, clang
+, clang-unwrapped
+, cmake
+, compiler-rt
+, fetchFromGitHub
+, fetchpatch
+, file
+, lib
+, lld
+, llvm
+, makeWrapper
+, perl
+, python
+, rocclr
+, rocm-comgr
+, rocm-device-libs
+, rocm-opencl-runtime
+, rocm-runtime
+, rocm-thunk
+, rocminfo
+, writeText
+}:
+
+stdenv.mkDerivation rec {
+ name = "hip";
+ version = "4.3.1";
+ src = fetchFromGitHub {
+ owner = "ROCm-Developer-Tools";
+ repo = "HIP";
+ rev = "rocm-${version}";
+ sha256 = "sha256-dUdP32H0u6kVItS+VUE549vvxkV1mSN84HvyfeK2hEE=";
+ };
+
+ # FIXME: https://github.com/ROCm-Developer-Tools/HIP/issues/2317
+ postPatch = ''
+ cp ${rocm-opencl-runtime.src}/amdocl/cl_vk_amd.hpp amdocl/
+ '';
+
+ nativeBuildInputs = [ cmake python makeWrapper ];
+ propagatedBuildInputs = [
+ clang
+ compiler-rt
+ lld
+ llvm
+ rocclr
+ rocm-comgr
+ rocm-device-libs
+ rocm-runtime
+ rocm-thunk
+ rocminfo
+ ];
+
+ preConfigure = ''
+ export HIP_CLANG_PATH=${clang}/bin
+ export DEVICE_LIB_PATH=${rocm-device-libs}/lib
+ '';
+
+ # The patch version is the last two digits of year + week number +
+ # day in the week: date -d "2021-07-25" +%y%U%w
+ workweek = "21300";
+
+ cmakeFlags = [
+ "-DHSA_PATH=${rocm-runtime}"
+ "-DHIP_COMPILER=clang"
+ "-DHIP_PLATFORM=amd"
+ "-DHIP_VERSION_GITDATE=${workweek}"
+ "-DCMAKE_C_COMPILER=${clang}/bin/clang"
+ "-DCMAKE_CXX_COMPILER=${clang}/bin/clang++"
+ "-DLLVM_ENABLE_RTTI=ON"
+ "-DLIBROCclr_STATIC_DIR=${rocclr}/lib/cmake"
+ "-DROCclr_DIR=${rocclr}"
+ "-DHIP_CLANG_ROOT=${clang-unwrapped}"
+ ];
+
+ patches = [
+ (fetchpatch {
+ name = "no-git-during-build";
+ url = "https://github.com/acowley/HIP/commit/310b7e972cfb23216250c0240ba6134741679aee.patch";
+ sha256 = "08ky7v1yvajabn9m5x3afzrnz38gnrgc7vgqlbyr7s801c383ha1";
+ })
+ (fetchpatch {
+ name = "use-PATH-when-compiling-pch";
+ url = "https://github.com/acowley/HIP/commit/bfb4dd1eafa9714a2c05a98229cc35ffa3429b37.patch";
+ sha256 = "1wp0m32df7pf4rhx3k5n750fd7kz10zr60z0wllb0mw6h00w6xpz";
+ })
+ ];
+
+ # - fix bash paths
+ # - fix path to rocm_agent_enumerator
+ # - fix hcc path
+ # - fix hcc version parsing
+ # - add linker flags for libhsa-runtime64 and hc_am since libhip_hcc
+ # refers to them.
+ prePatch = ''
+ for f in $(find bin -type f); do
+ sed -e 's,#!/usr/bin/perl,#!${perl}/bin/perl,' \
+ -e 's,#!/bin/bash,#!${stdenv.shell},' \
+ -i "$f"
+ done
+
+ for f in $(find . -regex '.*\.cpp\|.*\.h\(pp\)?'); do
+ if grep -q __hcc_workweek__ "$f" ; then
+ substituteInPlace "$f" --replace '__hcc_workweek__' '${workweek}'
+ fi
+ done
+
+ sed 's,#!/usr/bin/python,#!${python}/bin/python,' -i hip_prof_gen.py
+
+ sed -e 's,$ROCM_AGENT_ENUM = "''${ROCM_PATH}/bin/rocm_agent_enumerator";,$ROCM_AGENT_ENUM = "${rocminfo}/bin/rocm_agent_enumerator";,' \
+ -e "s,^\($HIP_LIB_PATH=\).*$,\1\"$out/lib\";," \
+ -e 's,^\($HIP_CLANG_PATH=\).*$,\1"${clang}/bin";,' \
+ -e 's,^\($DEVICE_LIB_PATH=\).*$,\1"${rocm-device-libs}/amdgcn/bitcode";,' \
+ -e 's,^\($HIP_COMPILER=\).*$,\1"clang";,' \
+ -e 's,^\($HIP_RUNTIME=\).*$,\1"ROCclr";,' \
+ -e 's,^\([[:space:]]*$HSA_PATH=\).*$,\1"${rocm-runtime}";,'g \
+ -e 's,\([[:space:]]*$HOST_OSNAME=\).*,\1"nixos";,' \
+ -e 's,\([[:space:]]*$HOST_OSVER=\).*,\1"${lib.versions.majorMinor lib.version}";,' \
+ -e 's,^\([[:space:]]*\)$HIP_CLANG_INCLUDE_PATH = abs_path("$HIP_CLANG_PATH/../lib/clang/$HIP_CLANG_VERSION/include");,\1$HIP_CLANG_INCLUDE_PATH = "${clang-unwrapped}/lib/clang/$HIP_CLANG_VERSION/include";,' \
+ -e 's,^\([[:space:]]*$HIPCXXFLAGS .= " -isystem $HIP_CLANG_INCLUDE_PATH\)";,\1 -isystem ${rocm-runtime}/include";,' \
+ -e 's,\($HIPCXXFLAGS .= " -isystem \\"$HIP_INCLUDE_PATH\\"\)" ;,\1 --rocm-path=${rocclr}";,' \
+ -e "s,\$HIP_PATH/\(bin\|lib\),$out/\1,g" \
+ -e "s,^\$HIP_LIB_PATH=\$ENV{'HIP_LIB_PATH'};,\$HIP_LIB_PATH=\"$out/lib\";," \
+ -e 's,`file,`${file}/bin/file,g' \
+ -e 's,`readelf,`${binutils-unwrapped}/bin/readelf,' \
+ -e 's, ar , ${binutils-unwrapped}/bin/ar ,g' \
+ -i bin/hipcc
+
+ sed -e 's,^\($HSA_PATH=\).*$,\1"${rocm-runtime}";,' \
+ -e 's,^\($HIP_CLANG_PATH=\).*$,\1"${clang}/bin";,' \
+ -e 's,^\($HIP_PLATFORM=\).*$,\1"amd";,' \
+ -e 's,$HIP_CLANG_PATH/llc,${llvm}/bin/llc,' \
+ -e 's, abs_path, Cwd::abs_path,' \
+ -i bin/hipconfig
+
+ sed -e 's, abs_path, Cwd::abs_path,' -i bin/hipvars.pm
+
+ sed -e 's|_IMPORT_PREFIX}/../include|_IMPORT_PREFIX}/include|g' \
+ -e 's|''${HIP_CLANG_ROOT}/lib/clang/\*/include|${clang-unwrapped}/lib/clang/*/include|' \
+ -i hip-config.cmake.in
+ '';
+
+ preInstall = ''
+ mkdir -p $out/lib/cmake
+ '';
+
+ # The upstream ROCclr setup wants everything built into the same
+ # ROCclr output directory. We copy things into the HIP output
+ # directory, since it is downstream of ROCclr in terms of dependency
+ # direction. Thus we have device-libs and rocclr pieces in the HIP
+ # output directory.
+ postInstall = ''
+ mkdir -p $out/share
+ mv $out/lib/cmake $out/share/
+ mv $out/cmake/* $out/share/cmake/hip
+ mkdir -p $out/lib
+ ln -s ${rocm-device-libs}/lib $out/lib/bitcode
+ mkdir -p $out/include
+ ln -s ${clang-unwrapped}/lib/clang/11.0.0/include $out/include/clang
+ ln -s ${rocclr}/lib/*.* $out/lib
+ ln -s ${rocclr}/include/* $out/include
+ wrapProgram $out/bin/hipcc --set HIP_PATH $out --set HSA_PATH ${rocm-runtime} --set HIP_CLANG_PATH ${clang}/bin --prefix PATH : ${lld}/bin --set NIX_CC_WRAPPER_TARGET_HOST_${stdenv.cc.suffixSalt} 1 --prefix NIX_LDFLAGS ' ' -L${compiler-rt}/lib --prefix NIX_LDFLAGS_FOR_TARGET ' ' -L${compiler-rt}/lib
+ wrapProgram $out/bin/hipconfig --set HIP_PATH $out --set HSA_PATH ${rocm-runtime} --set HIP_CLANG_PATH ${clang}/bin
+ '';
+}
diff --git a/pkgs/development/compilers/llvm/rocm/clang.nix b/pkgs/development/compilers/llvm/rocm/clang.nix
index d6bfd07d444e..c2844633252e 100644
--- a/pkgs/development/compilers/llvm/rocm/clang.nix
+++ b/pkgs/development/compilers/llvm/rocm/clang.nix
@@ -1,4 +1,5 @@
-{ lib, stdenv
+{ stdenv
+, lib
, fetchFromGitHub
, cmake
, python3
@@ -65,7 +66,7 @@ stdenv.mkDerivation rec {
description = "ROCm fork of the clang C/C++/Objective-C/Objective-C++ LLVM compiler frontend";
homepage = "https://llvm.org/";
license = with licenses; [ ncsa ];
- maintainers = with maintainers; [ ];
+ maintainers = with maintainers; [ acowley danieldk lovesegfault ];
platforms = platforms.linux;
};
}
diff --git a/pkgs/development/compilers/llvm/rocm/compiler-rt/compiler-rt-codesign.patch b/pkgs/development/compilers/llvm/rocm/compiler-rt/compiler-rt-codesign.patch
new file mode 100644
index 000000000000..3cc12b94b200
--- /dev/null
+++ b/pkgs/development/compilers/llvm/rocm/compiler-rt/compiler-rt-codesign.patch
@@ -0,0 +1,33 @@
+From 3dec5f3475a26aeb4678627795c4b67c6b7b4785 Mon Sep 17 00:00:00 2001
+From: Will Dietz
+Date: Tue, 19 Sep 2017 13:13:06 -0500
+Subject: [PATCH] remove codesign use on Apple, disable ios sim testing that
+ needs it
+
+---
+ cmake/Modules/AddCompilerRT.cmake | 8 ------
+ test/asan/CMakeLists.txt | 52 ---------------------------------------
+ test/tsan/CMakeLists.txt | 47 -----------------------------------
+ 3 files changed, 107 deletions(-)
+
+diff --git a/cmake/Modules/AddCompilerRT.cmake b/cmake/Modules/AddCompilerRT.cmake
+index bc5fb9ff7..b64eb4246 100644
+--- a/cmake/Modules/AddCompilerRT.cmake
++++ b/cmake/Modules/AddCompilerRT.cmake
+@@ -210,14 +210,6 @@ function(add_compiler_rt_runtime name type)
+ set_target_properties(${libname} PROPERTIES IMPORT_PREFIX "")
+ set_target_properties(${libname} PROPERTIES IMPORT_SUFFIX ".lib")
+ endif()
+- if(APPLE)
+- # Ad-hoc sign the dylibs
+- add_custom_command(TARGET ${libname}
+- POST_BUILD
+- COMMAND codesign --sign - $
+- WORKING_DIRECTORY ${COMPILER_RT_LIBRARY_OUTPUT_DIR}
+- )
+- endif()
+ endif()
+ install(TARGETS ${libname}
+ ARCHIVE DESTINATION ${COMPILER_RT_LIBRARY_INSTALL_DIR}
+2.14.1
+
diff --git a/pkgs/development/compilers/llvm/rocm/compiler-rt/default.nix b/pkgs/development/compilers/llvm/rocm/compiler-rt/default.nix
new file mode 100644
index 000000000000..f05ff91055a5
--- /dev/null
+++ b/pkgs/development/compilers/llvm/rocm/compiler-rt/default.nix
@@ -0,0 +1,65 @@
+{ stdenv, lib, version, src, cmake, python3, llvm, libcxxabi }:
+stdenv.mkDerivation rec {
+ pname = "compiler-rt";
+ inherit version src;
+
+ nativeBuildInputs = [ cmake python3 llvm ];
+
+ NIX_CFLAGS_COMPILE = [
+ "-DSCUDO_DEFAULT_OPTIONS=DeleteSizeMismatch=0:DeallocationTypeMismatch=0"
+ ];
+
+ cmakeFlags = [
+ "-DCOMPILER_RT_DEFAULT_TARGET_ONLY=ON"
+ "-DCMAKE_C_COMPILER_TARGET=${stdenv.hostPlatform.config}"
+ "-DCMAKE_ASM_COMPILER_TARGET=${stdenv.hostPlatform.config}"
+ "-DCOMPILER_RT_BUILD_SANITIZERS=OFF"
+ "-DCOMPILER_RT_BUILD_XRAY=OFF"
+ "-DCOMPILER_RT_BUILD_LIBFUZZER=OFF"
+ "-DCOMPILER_RT_BUILD_PROFILE=OFF"
+ "-DCMAKE_C_COMPILER_WORKS=ON"
+ "-DCMAKE_CXX_COMPILER_WORKS=ON"
+ "-DCOMPILER_RT_BAREMETAL_BUILD=ON"
+ "-DCMAKE_SIZEOF_VOID_P=${toString (stdenv.hostPlatform.parsed.cpu.bits / 8)}"
+ "-DCOMPILER_RT_BUILD_BUILTINS=ON"
+ "-DCMAKE_C_FLAGS=-nodefaultlibs"
+ #https://stackoverflow.com/questions/53633705/cmake-the-c-compiler-is-not-able-to-compile-a-simple-test-program
+ "-DCMAKE_TRY_COMPILE_TARGET_TYPE=STATIC_LIBRARY"
+ ];
+
+ outputs = [ "out" "dev" ];
+
+ patches = [
+ ./compiler-rt-codesign.patch # Revert compiler-rt commit that makes codesign mandatory
+ ];
+
+
+ # TSAN requires XPC on Darwin, which we have no public/free source files for. We can depend on the Apple frameworks
+ # to get it, but they're unfree. Since LLVM is rather central to the stdenv, we patch out TSAN support so that Hydra
+ # can build this. If we didn't do it, basically the entire nixpkgs on Darwin would have an unfree dependency and we'd
+ # get no binary cache for the entire platform. If you really find yourself wanting the TSAN, make this controllable by
+ # a flag and turn the flag off during the stdenv build.
+ postPatch = lib.optionalString (!stdenv.isDarwin) ''
+ substituteInPlace cmake/builtin-config-ix.cmake \
+ --replace 'set(X86 i386)' 'set(X86 i386 i486 i586 i686)'
+ '';
+
+ # Hack around weird upsream RPATH bug
+ postInstall = ''
+ ln -s "$out/lib"/*/* "$out/lib"
+ ln -s $out/lib/*/clang_rt.crtbegin-*.o $out/lib/crtbegin.o
+ ln -s $out/lib/*/clang_rt.crtend-*.o $out/lib/crtend.o
+ ln -s $out/lib/*/clang_rt.crtbegin_shared-*.o $out/lib/crtbeginS.o
+ ln -s $out/lib/*/clang_rt.crtend_shared-*.o $out/lib/crtendS.o
+ '';
+
+ enableParallelBuilding = true;
+
+ meta = with lib; {
+ description = "ROCm fork of the LLVM Compiler runtime libraries";
+ homepage = "https://github.com/RadeonOpenCompute/llvm-project";
+ license = licenses.ncsa;
+ maintainers = with maintainers; [ acowley danieldk lovesegfault ];
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/development/compilers/llvm/rocm/default.nix b/pkgs/development/compilers/llvm/rocm/default.nix
index 581d05746718..3497f910d6dc 100644
--- a/pkgs/development/compilers/llvm/rocm/default.nix
+++ b/pkgs/development/compilers/llvm/rocm/default.nix
@@ -1,12 +1,12 @@
-{ lib, buildPackages, fetchFromGitHub, callPackage, wrapCCWith }:
+{ stdenv, lib, buildPackages, fetchFromGitHub, callPackage, wrapCCWith, overrideCC }:
let
- version = "4.1.0";
+ version = "4.3.1";
src = fetchFromGitHub {
owner = "RadeonOpenCompute";
repo = "llvm-project";
rev = "rocm-${version}";
- hash = "sha256-DlId/dF5r0ULl2omYPCyu1Ic3XKlLL7ndiCA0RaF264=";
+ hash = "sha256-7XVtHcrTpw+NYUvuKQFWWFE0FlOTt8EnfZpvepQqE1c=";
};
in rec {
clang = wrapCCWith rec {
@@ -15,8 +15,25 @@ in rec {
clang_version=`${cc}/bin/clang -v 2>&1 | grep "clang version " | grep -E -o "[0-9.-]+"`
rsrc="$out/resource-root"
mkdir "$rsrc"
- ln -s "${lib.getLib cc}/lib/clang/$clang_version/include" "$rsrc"
+ ln -s "${cc}/lib/clang/$clang_version/include" "$rsrc"
+ ln -s "${compiler-rt}/lib" "$rsrc/lib"
echo "-resource-dir=$rsrc" >> $out/nix-support/cc-cflags
+ echo "--gcc-toolchain=${stdenv.cc.cc}" >> $out/nix-support/cc-cflags
+ echo "-Wno-unused-command-line-argument" >> $out/nix-support/cc-cflags
+ rm $out/nix-support/add-hardening.sh
+ touch $out/nix-support/add-hardening.sh
+ '';
+ };
+
+ clangNoCompilerRt = wrapCCWith rec {
+ cc = clang-unwrapped;
+ extraBuildCommands = ''
+ clang_version=`${cc}/bin/clang -v 2>&1 | grep "clang version " | grep -E -o "[0-9.-]+"`
+ rsrc="$out/resource-root"
+ mkdir "$rsrc"
+ ln -s "${cc}/lib/clang/$clang_version/include" "$rsrc"
+ echo "-resource-dir=$rsrc" >> $out/nix-support/cc-cflags
+ echo "--gcc-toolchain=${stdenv.cc.cc}" >> $out/nix-support/cc-cflags
echo "-Wno-unused-command-line-argument" >> $out/nix-support/cc-cflags
rm $out/nix-support/add-hardening.sh
touch $out/nix-support/add-hardening.sh
@@ -28,10 +45,15 @@ in rec {
src = "${src}/clang";
};
- lld = callPackage ./lld {
+ compiler-rt = callPackage ./compiler-rt {
+ inherit version llvm;
+ src = "${src}/compiler-rt";
+ stdenv = overrideCC stdenv clangNoCompilerRt;
+ };
+
+ lld = callPackage ./lld.nix {
inherit llvm version;
src = "${src}/lld";
- buildLlvmTools = buildPackages.llvmPackages_rocm;
};
llvm = callPackage ./llvm {
diff --git a/pkgs/development/compilers/llvm/rocm/lld/default.nix b/pkgs/development/compilers/llvm/rocm/lld.nix
similarity index 67%
rename from pkgs/development/compilers/llvm/rocm/lld/default.nix
rename to pkgs/development/compilers/llvm/rocm/lld.nix
index c8ca83f76c12..ae153f5e0de0 100644
--- a/pkgs/development/compilers/llvm/rocm/lld/default.nix
+++ b/pkgs/development/compilers/llvm/rocm/lld.nix
@@ -1,5 +1,5 @@
-{ lib, stdenv
-, buildLlvmTools
+{ stdenv
+, lib
, cmake
, libxml2
, llvm
@@ -14,18 +14,13 @@ stdenv.mkDerivation rec {
pname = "lld";
nativeBuildInputs = [ cmake ];
+
buildInputs = [ libxml2 llvm ];
-
- cmakeFlags = [
- "-DLLVM_MAIN_SRC_DIR=${llvm.src}"
- ] ++ lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
- "-DLLVM_TABLEGEN_EXE=${buildLlvmTools.llvm}/bin/llvm-tblgen"
- "-DLLVM_CONFIG_PATH=${llvm.dev}/bin/llvm-config-native"
- ];
-
outputs = [ "out" "dev" ];
+ cmakeFlags = [ "-DLLVM_MAIN_SRC_DIR=${llvm.src}" ];
+
postInstall = ''
moveToOutput include "$dev"
moveToOutput lib "$dev"
@@ -39,7 +34,7 @@ stdenv.mkDerivation rec {
description = "ROCm fork of the LLVM Linker";
homepage = "https://github.com/RadeonOpenCompute/llvm-project";
license = licenses.ncsa;
- maintainers = with maintainers; [ ];
+ maintainers = with maintainers; [ acowley danieldk lovesegfault ];
platforms = platforms.linux;
};
}
diff --git a/pkgs/development/compilers/llvm/rocm/llvm/default.nix b/pkgs/development/compilers/llvm/rocm/llvm/default.nix
index 6d1ff664972d..05b6d9de0869 100644
--- a/pkgs/development/compilers/llvm/rocm/llvm/default.nix
+++ b/pkgs/development/compilers/llvm/rocm/llvm/default.nix
@@ -1,4 +1,5 @@
-{ lib, stdenv
+{ stdenv
+, lib
, fetchFromGitHub
, cmake
, python3
@@ -91,7 +92,7 @@ in stdenv.mkDerivation rec {
description = "ROCm fork of the LLVM compiler infrastructure";
homepage = "https://github.com/RadeonOpenCompute/llvm-project";
license = with licenses; [ ncsa ];
- maintainers = with maintainers; [ ];
+ maintainers = with maintainers; [ acowley danieldk lovesegfault ];
platforms = platforms.linux;
};
}
diff --git a/pkgs/development/compilers/zig/default.nix b/pkgs/development/compilers/zig/default.nix
index 60ca574f1ccb..385b68a79291 100644
--- a/pkgs/development/compilers/zig/default.nix
+++ b/pkgs/development/compilers/zig/default.nix
@@ -11,13 +11,13 @@ let
in
stdenv.mkDerivation rec {
pname = "zig";
- version = "0.8.0";
+ version = "0.8.1";
src = fetchFromGitHub {
owner = "ziglang";
repo = pname;
rev = version;
- hash = "sha256-bILjcKX8jPl2n1HRYvYRb7jJkobwqmSJ+hHXSn9n2ag=";
+ hash = "sha256-zMSOH8ZWcvzHRwOgGIbLO9Q6jf1P5QL5KCMD+frp+JA=";
};
nativeBuildInputs = [
@@ -51,8 +51,7 @@ stdenv.mkDerivation rec {
license = licenses.mit;
maintainers = with maintainers; [ andrewrk AndersonTorres ];
platforms = platforms.unix;
- # See https://github.com/NixOS/nixpkgs/issues/86299
- broken = stdenv.isDarwin;
+ broken = stdenv.isDarwin; # See https://github.com/NixOS/nixpkgs/issues/86299
};
}
diff --git a/pkgs/development/coq-modules/corn/default.nix b/pkgs/development/coq-modules/corn/default.nix
index 6a3ea81ca0d5..ee4a39dbd5e5 100644
--- a/pkgs/development/coq-modules/corn/default.nix
+++ b/pkgs/development/coq-modules/corn/default.nix
@@ -5,13 +5,12 @@ with lib; mkCoqDerivation rec {
inherit version;
defaultVersion = switch coq.coq-version [
{ case = "8.6"; out = "8.8.1"; }
- { case = (versions.range "8.7" "8.12"); out = "8.12.0"; }
- { case = (versions.range "8.13" "8.13"); out = "c366d3f01ec1812b145117a4da940518b092d3a6"; }
+ { case = (versions.range "8.7" "8.13"); out = "8.13.0"; }
] null;
release = {
"8.8.1".sha256 = "0gh32j0f18vv5lmf6nb87nr5450w6ai06rhrnvlx2wwi79gv10wp";
"8.12.0".sha256 = "0b92vhyzn1j6cs84z2182fn82hxxj0bqq7hk6cs4awwb3vc7dkhi";
- "c366d3f01ec1812b145117a4da940518b092d3a6".sha256 = "1wzr7mdsnf1rq7q0dvmv55vxzysy85b00ahwbs868bl7m8fk8x5b";
+ "8.13.0".sha256 = "1wzr7mdsnf1rq7q0dvmv55vxzysy85b00ahwbs868bl7m8fk8x5b";
};
preConfigure = "patchShebangs ./configure.sh";
diff --git a/pkgs/development/coq-modules/mathcomp-analysis/default.nix b/pkgs/development/coq-modules/mathcomp-analysis/default.nix
index b06f057f82e4..76a5a84cc233 100644
--- a/pkgs/development/coq-modules/mathcomp-analysis/default.nix
+++ b/pkgs/development/coq-modules/mathcomp-analysis/default.nix
@@ -8,6 +8,7 @@ let mca = mkCoqDerivation {
pname = "analysis";
owner = "math-comp";
+ release."0.3.10".sha256 = "sha256-FBH2c8QRibq5Ycw/ieB8mZl0fDiPrYdIzZ6W/A3pIhI=";
release."0.3.9".sha256 = "sha256-uUU9diBwUqBrNRLiDc0kz0CGkwTZCUmigPwLbpDOeg4=";
release."0.3.6".sha256 = "0g2j7b2hca4byz62ssgg90bkbc8wwp7xkb2d3225bbvihi92b4c5";
release."0.3.4".sha256 = "18mgycjgg829dbr7ps77z6lcj03h3dchjbj5iir0pybxby7gd45c";
@@ -17,7 +18,7 @@ let mca = mkCoqDerivation {
inherit version;
defaultVersion = with versions; switch [ coq.version mathcomp.version ] [
- { cases = [ (range "8.11" "8.13") "1.12.0" ]; out = "0.3.9"; }
+ { cases = [ (range "8.11" "8.13") "1.12.0" ]; out = "0.3.10"; }
{ cases = [ (range "8.11" "8.13") "1.11.0" ]; out = "0.3.4"; }
{ cases = [ (range "8.10" "8.12") "1.11.0" ]; out = "0.3.3"; }
{ cases = [ (range "8.10" "8.11") "1.11.0" ]; out = "0.3.1"; }
diff --git a/pkgs/development/libraries/botan/2.0.nix b/pkgs/development/libraries/botan/2.0.nix
index a486ba498205..113c4a27b919 100644
--- a/pkgs/development/libraries/botan/2.0.nix
+++ b/pkgs/development/libraries/botan/2.0.nix
@@ -1,10 +1,19 @@
-{ callPackage, ... } @ args:
+{ callPackage, fetchpatch, ... } @ args:
callPackage ./generic.nix (args // {
baseVersion = "2.18";
- revision = "0";
- sha256 = "09z3fy31q1pvnvpy4fswrsl2aq8ksl94lbh5rl7b6nqc3qp8ar6c";
+ revision = "1";
+ sha256 = "0adf53drhk1hlpfih0175c9081bqpclw6p2afn51cmx849ib9izq";
postPatch = ''
sed -e 's@lang_flags "@&--std=c++11 @' -i src/build-data/cc/{gcc,clang}.txt
'';
+ extraPatches = [
+ (fetchpatch {
+ name = "CVE-2021-40529.patch";
+ url = "https://github.com/randombit/botan/commit/9a23e4e3bc3966340531f2ff608fa9d33b5185a2.patch";
+ sha256 = "1ax1n2l9zh0hk35vkkywgkhzpdk76xb9apz2wm3h9kjvjs9acr3y";
+ # our source tarball doesn't include the tests
+ excludes = [ "src/tests/*" ];
+ })
+ ];
})
diff --git a/pkgs/development/libraries/botan/default.nix b/pkgs/development/libraries/botan/default.nix
index c494fa25f771..d6ee9ff152f4 100644
--- a/pkgs/development/libraries/botan/default.nix
+++ b/pkgs/development/libraries/botan/default.nix
@@ -10,6 +10,7 @@ callPackage ./generic.nix (args // {
sed -e 's@lang_flags "@&--std=c++11 @' -i src/build-data/cc/{gcc,clang}.txt
'';
knownVulnerabilities = [
+ "CVE-2021-40529"
# https://botan.randombit.net/security.html#id1
"2020-03-24: Side channel during CBC padding"
];
diff --git a/pkgs/development/libraries/botan/generic.nix b/pkgs/development/libraries/botan/generic.nix
index 3313b8c4fcd1..1384bdee9add 100644
--- a/pkgs/development/libraries/botan/generic.nix
+++ b/pkgs/development/libraries/botan/generic.nix
@@ -3,6 +3,7 @@
, baseVersion, revision, sha256
, sourceExtension ? "tar.xz"
, extraConfigureFlags ? ""
+, extraPatches ? [ ]
, postPatch ? null
, knownVulnerabilities ? [ ]
, CoreServices
@@ -22,6 +23,7 @@ stdenv.mkDerivation rec {
];
inherit sha256;
};
+ patches = extraPatches;
inherit postPatch;
buildInputs = [ python3 bzip2 zlib gmp openssl boost ]
diff --git a/pkgs/development/libraries/grpc/default.nix b/pkgs/development/libraries/grpc/default.nix
index f015773e2041..72c584d0fd47 100644
--- a/pkgs/development/libraries/grpc/default.nix
+++ b/pkgs/development/libraries/grpc/default.nix
@@ -17,13 +17,13 @@
stdenv.mkDerivation rec {
pname = "grpc";
- version = "1.39.1"; # N.B: if you change this, change pythonPackages.grpcio-tools to a matching version too
+ version = "1.40.0"; # N.B: if you change this, change pythonPackages.grpcio-tools to a matching version too
src = fetchFromGitHub {
owner = "grpc";
repo = "grpc";
rev = "v${version}";
- sha256 = "1yrr04g6faphh4hwzryqrwzgcr0hqqh05x9mc3vhpzmdkrrbz4zn";
+ sha256 = "08l2dyf3g3zrffy60ycid6jngvhfaghg792yrkfjcpcif5dqfd9f";
fetchSubmodules = true;
};
diff --git a/pkgs/development/libraries/ip2location-c/default.nix b/pkgs/development/libraries/ip2location-c/default.nix
index 23801d3436da..510bc162501d 100644
--- a/pkgs/development/libraries/ip2location-c/default.nix
+++ b/pkgs/development/libraries/ip2location-c/default.nix
@@ -1,15 +1,23 @@
-{ lib, stdenv, fetchurl, autoreconfHook }:
+{ lib
+, stdenv
+, fetchFromGitHub
+, autoreconfHook
+}:
stdenv.mkDerivation rec {
pname = "ip2location-c";
- version = "7.0.2"; # meta.homepage might change after a major update
+ version = "8.4.0";
- src = fetchurl {
- sha256 = "1gs43qgcyfn83abrkhvvw1s67d1sbkbj3hab9m17ysn6swafiycx";
- url = "https://www.ip2location.com/downloads/ip2location-c-${version}.tar.gz";
+ src = fetchFromGitHub {
+ owner = "chrislim2888";
+ repo = "IP2Location-C-Library";
+ rev = version;
+ sha256 = "0rqjgmv62s7abiiqi3ff3ff838qx4pzr509irmzvqlflnkxxi0q6";
};
- nativeBuildInputs = [ autoreconfHook ];
+ nativeBuildInputs = [
+ autoreconfHook
+ ];
enableParallelBuilding = true;
@@ -25,8 +33,9 @@ stdenv.mkDerivation rec {
weather, MCC, MNC, mobile brand name, elevation and usage type of
any IP address or host name in the IP2Location databases.
'';
- homepage = "http://www.ip2location.com/developers/c-7";
+ homepage = "https://www.ip2location.com/developers/c";
license = with licenses; [ gpl3Plus lgpl3Plus ];
+ maintainers = with maintainers; [ ];
platforms = platforms.linux;
};
}
diff --git a/pkgs/development/libraries/libspng/default.nix b/pkgs/development/libraries/libspng/default.nix
new file mode 100644
index 000000000000..798a99371804
--- /dev/null
+++ b/pkgs/development/libraries/libspng/default.nix
@@ -0,0 +1,56 @@
+{ lib
+, fetchFromGitHub
+, stdenv
+, zlib
+, ninja
+, meson
+, pkg-config
+, cmake
+, libpng
+}:
+
+stdenv.mkDerivation rec {
+ pname = "libspng";
+ version = "0.7.0-rc3";
+
+ src = fetchFromGitHub {
+ owner = "randy408";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "0n91mr06sr34cqq91738251iaw21h5c4jgjpn0kqfx69ywxcl9fj";
+ };
+
+ doCheck = true;
+
+ mesonBuildType = "release";
+
+ mesonFlags = [
+ # this is required to enable testing
+ # https://github.com/randy408/libspng/blob/bc383951e9a6e04dbc0766f6737e873e0eedb40b/tests/README.md#testing
+ "-Ddev_build=true"
+ ];
+
+ outputs = [ "out" "dev" ];
+
+ checkInputs = [
+ cmake
+ libpng
+ ];
+
+ buildInputs = [
+ pkg-config
+ zlib
+ ];
+
+ nativeBuildInputs = [
+ ninja
+ meson
+ ];
+
+ meta = with lib; {
+ description = "Simple, modern libpng alternative";
+ homepage = "https://github.com/randy408/libspng";
+ license = with licenses; [ bsd2 ];
+ maintainers = with maintainers; [ humancalico ];
+ };
+}
diff --git a/pkgs/development/libraries/libxc/default.nix b/pkgs/development/libraries/libxc/default.nix
index 0680e4b832ce..b46bc9626302 100644
--- a/pkgs/development/libraries/libxc/default.nix
+++ b/pkgs/development/libraries/libxc/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "libxc";
- version = "5.1.5";
+ version = "5.1.6";
src = fetchFromGitLab {
owner = "libxc";
repo = "libxc";
rev = version;
- sha256 = "0cy3x2zn1bldc5i0rzislfbc8h4nqgds445jkfqjv0d1shvdy0zn";
+ sha256 = "07iljmv737kx24kd33x9ndf5l854mwslg9x2psqm12k07jmq9wjw";
};
buildInputs = [ gfortran ];
diff --git a/pkgs/development/libraries/rocclr/default.nix b/pkgs/development/libraries/rocclr/default.nix
index cf085d50edb0..c96753f9a4b2 100644
--- a/pkgs/development/libraries/rocclr/default.nix
+++ b/pkgs/development/libraries/rocclr/default.nix
@@ -15,13 +15,13 @@
stdenv.mkDerivation rec {
pname = "rocclr";
- version = "4.1.0";
+ version = "4.3.1";
src = fetchFromGitHub {
owner = "ROCm-Developer-Tools";
repo = "ROCclr";
rev = "rocm-${version}";
- hash = "sha256-2DI/PL29aiZcxOrGZBzXwAnNgZQpSDjyyGKgl+vDErk=";
+ hash = "sha256-3lk7Zucoam+11gFBzg/TWQI1L8uAlxTrPz/mDwTwod4=";
};
nativeBuildInputs = [ cmake rocm-cmake ];
@@ -55,7 +55,7 @@ stdenv.mkDerivation rec {
description = "Radeon Open Compute common language runtime";
homepage = "https://github.com/ROCm-Developer-Tools/ROCclr";
license = licenses.mit;
- maintainers = with maintainers; [ ];
+ maintainers = with maintainers; [ lovesegfault ];
# rocclr seems to have some AArch64 ifdefs, but does not seem
# to be supported yet by the build infrastructure. Recheck in
# the future.
diff --git a/pkgs/development/libraries/rocm-comgr/default.nix b/pkgs/development/libraries/rocm-comgr/default.nix
index 95fe28ce9fd3..52a3cb6784d6 100644
--- a/pkgs/development/libraries/rocm-comgr/default.nix
+++ b/pkgs/development/libraries/rocm-comgr/default.nix
@@ -1,21 +1,21 @@
-{ lib, stdenv, fetchFromGitHub, cmake, clang, device-libs, lld, llvm }:
+{ lib, stdenv, fetchFromGitHub, cmake, clang, rocm-device-libs, lld, llvm }:
stdenv.mkDerivation rec {
pname = "rocm-comgr";
- version = "4.1.0";
+ version = "4.3.1";
src = fetchFromGitHub {
owner = "RadeonOpenCompute";
repo = "ROCm-CompilerSupport";
rev = "rocm-${version}";
- hash = "sha256-LbQqyJxRqb6vpXiYSkRlF1FeqXJJXktPafGmYDDK02U=";
+ hash = "sha256-wHSAhp1cqR9xOreGt2M2Td/ELCuLEHjpMRRkqE9dUy0=";
};
sourceRoot = "source/lib/comgr";
nativeBuildInputs = [ cmake ];
- buildInputs = [ clang device-libs lld llvm ];
+ buildInputs = [ clang rocm-device-libs lld llvm ];
cmakeFlags = [
"-DCLANG=${clang}/bin/clang"
@@ -40,7 +40,7 @@ stdenv.mkDerivation rec {
description = "APIs for compiling and inspecting AMDGPU code objects";
homepage = "https://github.com/RadeonOpenCompute/ROCm-CompilerSupport/tree/amd-stg-open/lib/comgr";
license = licenses.ncsa;
- maintainers = with maintainers; [ ];
+ maintainers = with maintainers; [ lovesegfault ];
platforms = platforms.linux;
};
}
diff --git a/pkgs/development/libraries/rocm-device-libs/default.nix b/pkgs/development/libraries/rocm-device-libs/default.nix
index 383d91bd08c1..77dd4b721f2a 100644
--- a/pkgs/development/libraries/rocm-device-libs/default.nix
+++ b/pkgs/development/libraries/rocm-device-libs/default.nix
@@ -9,13 +9,13 @@
stdenv.mkDerivation rec {
pname = "rocm-device-libs";
- version = "4.1.0";
+ version = "4.3.1";
src = fetchFromGitHub {
owner = "RadeonOpenCompute";
repo = "ROCm-Device-Libs";
rev = "rocm-${version}";
- hash = "sha256-9p6PIXdHFIgHgNWZzqVz5O9i2Np0z/iyxodG2cLrpGs=";
+ hash = "sha256-fPD9vevO2UDaFaclSI0CC/lRfM5WemWmxP1K5ajXHbk=";
};
nativeBuildInputs = [ cmake ];
@@ -34,7 +34,7 @@ stdenv.mkDerivation rec {
description = "Set of AMD-specific device-side language runtime libraries";
homepage = "https://github.com/RadeonOpenCompute/ROCm-Device-Libs";
license = licenses.ncsa;
- maintainers = with maintainers; [ ];
+ maintainers = with maintainers; [ lovesegfault ];
platforms = platforms.linux;
};
}
diff --git a/pkgs/development/libraries/rocm-opencl-icd/default.nix b/pkgs/development/libraries/rocm-opencl-icd/default.nix
index 0a9d124561e2..9b0f7ab9f81f 100644
--- a/pkgs/development/libraries/rocm-opencl-icd/default.nix
+++ b/pkgs/development/libraries/rocm-opencl-icd/default.nix
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "OpenCL ICD definition for AMD GPUs using the ROCm stack";
license = licenses.mit;
- maintainers = with maintainers; [ ];
+ maintainers = with maintainers; [ lovesegfault ];
platforms = platforms.linux;
};
}
diff --git a/pkgs/development/libraries/rocm-opencl-runtime/default.nix b/pkgs/development/libraries/rocm-opencl-runtime/default.nix
index 40ffcae79246..04fba42525ed 100644
--- a/pkgs/development/libraries/rocm-opencl-runtime/default.nix
+++ b/pkgs/development/libraries/rocm-opencl-runtime/default.nix
@@ -1,4 +1,5 @@
-{ lib, stdenv
+{ stdenv
+, lib
, fetchFromGitHub
, addOpenGLRunpath
, cmake
@@ -21,13 +22,13 @@
stdenv.mkDerivation rec {
pname = "rocm-opencl-runtime";
- version = "4.1.0";
+ version = "4.3.1";
src = fetchFromGitHub {
owner = "RadeonOpenCompute";
repo = "ROCm-OpenCL-Runtime";
rev = "rocm-${version}";
- hash = "sha256-+6h1E5uWNKjjaeO5ZIi854CWYi0QGQ5mVUHdi9+4vX4=";
+ hash = "sha256-4+PNxRqvAvU0Nj2igYl3WiS5h5HGV63J+cHbIVW89LE=";
};
nativeBuildInputs = [ cmake rocm-cmake ];
@@ -77,7 +78,7 @@ stdenv.mkDerivation rec {
description = "OpenCL runtime for AMD GPUs, part of the ROCm stack";
homepage = "https://github.com/RadeonOpenCompute/ROCm-OpenCL-Runtime";
license = with licenses; [ asl20 mit ];
- maintainers = with maintainers; [ ];
+ maintainers = with maintainers; [ acowley danieldk lovesegfault ];
platforms = platforms.linux;
};
}
diff --git a/pkgs/development/libraries/rocm-runtime/default.nix b/pkgs/development/libraries/rocm-runtime/default.nix
index eb4ce3c19fb6..fc3c627a5628 100644
--- a/pkgs/development/libraries/rocm-runtime/default.nix
+++ b/pkgs/development/libraries/rocm-runtime/default.nix
@@ -1,4 +1,5 @@
-{ lib, stdenv
+{ stdenv
+, lib
, fetchFromGitHub
, addOpenGLRunpath
, clang-unwrapped
@@ -6,25 +7,26 @@
, xxd
, elfutils
, llvm
+, numactl
, rocm-device-libs
, rocm-thunk }:
stdenv.mkDerivation rec {
pname = "rocm-runtime";
- version = "4.1.0";
+ version = "4.3.1";
src = fetchFromGitHub {
owner = "RadeonOpenCompute";
repo = "ROCR-Runtime";
rev = "rocm-${version}";
- hash = "sha256-Jxg3n203tV0L+UrmeQEuzX0TKpFu5An2cnuEA/F/SNY=";
+ hash = "sha256-B67v9B8LXDbWNxYNRxM3dgFFLjFSyJmm0zd3G5Bgvek=";
};
sourceRoot = "source/src";
nativeBuildInputs = [ cmake xxd ];
- buildInputs = [ clang-unwrapped elfutils llvm ];
+ buildInputs = [ clang-unwrapped elfutils llvm numactl ];
cmakeFlags = [
"-DBITCODE_DIR=${rocm-device-libs}/amdgcn/bitcode"
@@ -43,6 +45,6 @@ stdenv.mkDerivation rec {
description = "Platform runtime for ROCm";
homepage = "https://github.com/RadeonOpenCompute/ROCR-Runtime";
license = with licenses; [ ncsa ];
- maintainers = with maintainers; [ ];
+ maintainers = with maintainers; [ danieldk lovesegfault ];
};
}
diff --git a/pkgs/development/libraries/rocm-thunk/default.nix b/pkgs/development/libraries/rocm-thunk/default.nix
index 770dd16740ca..432688e1bfb5 100644
--- a/pkgs/development/libraries/rocm-thunk/default.nix
+++ b/pkgs/development/libraries/rocm-thunk/default.nix
@@ -7,13 +7,13 @@
stdenv.mkDerivation rec {
pname = "rocm-thunk";
- version = "4.1.0";
+ version = "4.3.1";
src = fetchFromGitHub {
owner = "RadeonOpenCompute";
repo = "ROCT-Thunk-Interface";
rev = "rocm-${version}";
- hash = "sha256-gdto7BbrSRa3UiRNvTW1KLkHyjrcxdah4+L+1Gdm0wA=";
+ hash = "sha256-jpwFL4UbEnWkw1AiM4U1s1t7GiqzBeOwa55VpnOG2Dk=";
};
preConfigure = ''
@@ -32,6 +32,6 @@ stdenv.mkDerivation rec {
description = "Radeon open compute thunk interface";
homepage = "https://github.com/RadeonOpenCompute/ROCT-Thunk-Interface";
license = with licenses; [ bsd2 mit ];
- maintainers = with maintainers; [ ];
+ maintainers = with maintainers; [ lovesegfault ];
};
}
diff --git a/pkgs/development/node-packages/node-packages.nix b/pkgs/development/node-packages/node-packages.nix
index d0a78354592a..c34bd5206760 100644
--- a/pkgs/development/node-packages/node-packages.nix
+++ b/pkgs/development/node-packages/node-packages.nix
@@ -40,13 +40,13 @@ let
sha512 = "o/xdK8b4P0t/xpCARgWXAeaiWeh9jeua6bP1jrcbfN39+Z4zC4x2jg4NysHNhz6spRG8dJFH3kJIUoIbs0Ckww==";
};
};
- "@angular-devkit/architect-0.1202.3" = {
+ "@angular-devkit/architect-0.1202.4" = {
name = "_at_angular-devkit_slash_architect";
packageName = "@angular-devkit/architect";
- version = "0.1202.3";
+ version = "0.1202.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1202.3.tgz";
- sha512 = "AwLdofKggAiv0hThYe0v3MWOl94XJdJlgq/MXnYU/Ma/IeJDLlRa9WJuajL9AB//x5G+uH06smD3E4Ni8mv2ag==";
+ url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1202.4.tgz";
+ sha512 = "RBatkiiZWGX7/qYYaWVNAzaF3E8TCEt9dRfAoZSaLy/JLQLT3xjX+qT4bBC/XPdC8SQCWvMjW3IjfYRaKTBv1g==";
};
};
"@angular-devkit/core-12.0.5" = {
@@ -67,13 +67,13 @@ let
sha512 = "KOzGD8JbP/7EeUwPiU5x+fo3ZEQ5R4IVW5WoH92PaO3mdpqXC7UL2MWLct8PUe9il9nqJMvrBMldSSvP9PCT2w==";
};
};
- "@angular-devkit/core-12.2.3" = {
+ "@angular-devkit/core-12.2.4" = {
name = "_at_angular-devkit_slash_core";
packageName = "@angular-devkit/core";
- version = "12.2.3";
+ version = "12.2.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@angular-devkit/core/-/core-12.2.3.tgz";
- sha512 = "qt1hcX5zydGmCI9gEFcqTyJDcFEScSHPRqx0dlm61hCtBF75C2g7erSgb35zE3kZ7UE9UQY28JffFnwCj6uJhQ==";
+ url = "https://registry.npmjs.org/@angular-devkit/core/-/core-12.2.4.tgz";
+ sha512 = "lONchANfqBHE0UgqK1PFcaBwpT/FetM8atuLjbhgdM1VcR6lVLzyZImhR12gtNWJ5nledhMp8QeGkFvO3KCdxw==";
};
};
"@angular-devkit/schematics-12.0.5" = {
@@ -94,13 +94,13 @@ let
sha512 = "yD3y3pK/K5piOgvALFoCCiPp4H8emNa3yZL+vlpEpewVLpF1MM55LeTxc0PI5s0uqtOGVnvcbA5wYgMm3YsUEA==";
};
};
- "@angular-devkit/schematics-12.2.3" = {
+ "@angular-devkit/schematics-12.2.4" = {
name = "_at_angular-devkit_slash_schematics";
packageName = "@angular-devkit/schematics";
- version = "12.2.3";
+ version = "12.2.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-12.2.3.tgz";
- sha512 = "pbYOK8DK1V7YCzt8C3OckjQDGvCQqrLmg5kH+nLLAYOlkToRk3DBPIocuF9tCflNt6tEIkRJM4lPeDyy/z/GjQ==";
+ url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-12.2.4.tgz";
+ sha512 = "hL2POzb2G8PzYzLl3Dmc3ePCRyXg1LnJEpGTXvTqgLCUI6fKGb2T7hwn3fbD7keCv88UleGazOPq9iU7Qqvx3Q==";
};
};
"@angular-devkit/schematics-cli-12.1.4" = {
@@ -229,13 +229,13 @@ let
sha512 = "GBD2Le9w2+lVFoc4vswGI/TjkNIZSVp7+9xPf+X3uidBfWnAeUWmquteSyt0+VCrhNMWj/FTABISQrD3Z/YA+w==";
};
};
- "@apollo/client-3.4.9" = {
+ "@apollo/client-3.4.10" = {
name = "_at_apollo_slash_client";
packageName = "@apollo/client";
- version = "3.4.9";
+ version = "3.4.10";
src = fetchurl {
- url = "https://registry.npmjs.org/@apollo/client/-/client-3.4.9.tgz";
- sha512 = "1AlYjRJ/ktDApEUEP2DqHI38tqSyhSlsF/Q3fFb/aCbLHQfcSZ1dCv7ZlC9UXRyDwQYc0w23gYJ7wZde6W8P4A==";
+ url = "https://registry.npmjs.org/@apollo/client/-/client-3.4.10.tgz";
+ sha512 = "b+8TT3jBM2BtEJi+V2FuLpvoYDZCY3baNYrgAgEyw4fjnuBCSRPY7qVjqriZAwMaGiTLtyVifGhmdeICQs4Eow==";
};
};
"@apollo/protobufjs-1.2.2" = {
@@ -310,13 +310,13 @@ let
sha1 = "e70187f8a862e191b1bce6c0268f13acd3a56b20";
};
};
- "@babel/cli-7.14.8" = {
+ "@babel/cli-7.15.4" = {
name = "_at_babel_slash_cli";
packageName = "@babel/cli";
- version = "7.14.8";
+ version = "7.15.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/cli/-/cli-7.14.8.tgz";
- sha512 = "lcy6Lymft9Rpfqmrqdd4oTDdUx9ZwaAhAfywVrHG4771Pa6PPT0danJ1kDHBXYqh4HHSmIdA+nlmfxfxSDPtBg==";
+ url = "https://registry.npmjs.org/@babel/cli/-/cli-7.15.4.tgz";
+ sha512 = "9RhhQ7tgKRcSO/jI3rNLxalLSk30cHqeM8bb+nGOJTyYBDpkoXw/A9QHZ2SYjlslAt4tr90pZQGIEobwWHSIDw==";
};
};
"@babel/code-frame-7.10.4" = {
@@ -364,13 +364,13 @@ let
sha512 = "O34LQooYVDXPl7QWCdW9p4NR+QlzOr7xShPPJz8GsuCU3/8ua/wqTr7gmnxXv+WBESiGU/G5s16i6tUvHkNb+w==";
};
};
- "@babel/core-7.15.0" = {
+ "@babel/core-7.15.5" = {
name = "_at_babel_slash_core";
packageName = "@babel/core";
- version = "7.15.0";
+ version = "7.15.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/core/-/core-7.15.0.tgz";
- sha512 = "tXtmTminrze5HEUPn/a0JtOzzfp0nk+UEXQ/tqIJo3WDGypl/2OFQEMll/zSFU8f/lfmfLXvTaORHF3cfXIQMw==";
+ url = "https://registry.npmjs.org/@babel/core/-/core-7.15.5.tgz";
+ sha512 = "pYgXxiwAgQpgM1bNkZsDEq85f0ggXMA5L7c+o3tskGMh2BunCI9QUwB9Z4jpvXUOuMdyGKiGKQiRe11VS6Jzvg==";
};
};
"@babel/core-7.9.0" = {
@@ -382,49 +382,49 @@ let
sha512 = "kWc7L0fw1xwvI0zi8OKVBuxRVefwGOrKSQMvrQ3dW+bIIavBY3/NpXmpjMy7bQnLgwgzWQZ8TlM57YHpHNHz4w==";
};
};
- "@babel/generator-7.15.0" = {
+ "@babel/generator-7.15.4" = {
name = "_at_babel_slash_generator";
packageName = "@babel/generator";
- version = "7.15.0";
+ version = "7.15.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/generator/-/generator-7.15.0.tgz";
- sha512 = "eKl4XdMrbpYvuB505KTta4AV9g+wWzmVBW69tX0H2NwKVKd2YJbKgyK6M8j/rgLbmHOYJn6rUklV677nOyJrEQ==";
+ url = "https://registry.npmjs.org/@babel/generator/-/generator-7.15.4.tgz";
+ sha512 = "d3itta0tu+UayjEORPNz6e1T3FtvWlP5N4V5M+lhp/CxT4oAA7/NcScnpRyspUMLK6tu9MNHmQHxRykuN2R7hw==";
};
};
- "@babel/helper-annotate-as-pure-7.14.5" = {
+ "@babel/helper-annotate-as-pure-7.15.4" = {
name = "_at_babel_slash_helper-annotate-as-pure";
packageName = "@babel/helper-annotate-as-pure";
- version = "7.14.5";
+ version = "7.15.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.14.5.tgz";
- sha512 = "EivH9EgBIb+G8ij1B2jAwSH36WnGvkQSEC6CkX/6v6ZFlw5fVOHvsgGF4uiEHO2GzMvunZb6tDLQEQSdrdocrA==";
+ url = "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.15.4.tgz";
+ sha512 = "QwrtdNvUNsPCj2lfNQacsGSQvGX8ee1ttrBrcozUP2Sv/jylewBP/8QFe6ZkBsC8T/GYWonNAWJV4aRR9AL2DA==";
};
};
- "@babel/helper-builder-binary-assignment-operator-visitor-7.14.5" = {
+ "@babel/helper-builder-binary-assignment-operator-visitor-7.15.4" = {
name = "_at_babel_slash_helper-builder-binary-assignment-operator-visitor";
packageName = "@babel/helper-builder-binary-assignment-operator-visitor";
- version = "7.14.5";
+ version = "7.15.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.14.5.tgz";
- sha512 = "YTA/Twn0vBXDVGJuAX6PwW7x5zQei1luDDo2Pl6q1qZ7hVNl0RZrhHCQG/ArGpR29Vl7ETiB8eJyrvpuRp300w==";
+ url = "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.15.4.tgz";
+ sha512 = "P8o7JP2Mzi0SdC6eWr1zF+AEYvrsZa7GSY1lTayjF5XJhVH0kjLYUZPvTMflP7tBgZoe9gIhTa60QwFpqh/E0Q==";
};
};
- "@babel/helper-compilation-targets-7.15.0" = {
+ "@babel/helper-compilation-targets-7.15.4" = {
name = "_at_babel_slash_helper-compilation-targets";
packageName = "@babel/helper-compilation-targets";
- version = "7.15.0";
+ version = "7.15.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.15.0.tgz";
- sha512 = "h+/9t0ncd4jfZ8wsdAsoIxSa61qhBYlycXiHWqJaQBCXAhDCMbPRSMTGnZIkkmt1u4ag+UQmuqcILwqKzZ4N2A==";
+ url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.15.4.tgz";
+ sha512 = "rMWPCirulnPSe4d+gwdWXLfAXTTBj8M3guAf5xFQJ0nvFY7tfNAFnWdqaHegHlgDZOCT4qvhF3BYlSJag8yhqQ==";
};
};
- "@babel/helper-create-class-features-plugin-7.15.0" = {
+ "@babel/helper-create-class-features-plugin-7.15.4" = {
name = "_at_babel_slash_helper-create-class-features-plugin";
packageName = "@babel/helper-create-class-features-plugin";
- version = "7.15.0";
+ version = "7.15.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.15.0.tgz";
- sha512 = "MdmDXgvTIi4heDVX/e9EFfeGpugqm9fobBVg/iioE8kueXrOHdRDe36FAY7SnE9xXLVeYCoJR/gdrBEIHRC83Q==";
+ url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.15.4.tgz";
+ sha512 = "7ZmzFi+DwJx6A7mHRwbuucEYpyBwmh2Ca0RvI6z2+WLZYCqV0JOaLb+u0zbtmDicebgKBZgqbYfLaKNqSgv5Pw==";
};
};
"@babel/helper-create-regexp-features-plugin-7.14.5" = {
@@ -445,76 +445,76 @@ let
sha512 = "RH3QDAfRMzj7+0Nqu5oqgO5q9mFtQEVvCRsi8qCEfzLR9p2BHfn5FzhSB2oj1fF7I2+DcTORkYaQ6aTR9Cofew==";
};
};
- "@babel/helper-explode-assignable-expression-7.14.5" = {
+ "@babel/helper-explode-assignable-expression-7.15.4" = {
name = "_at_babel_slash_helper-explode-assignable-expression";
packageName = "@babel/helper-explode-assignable-expression";
- version = "7.14.5";
+ version = "7.15.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.14.5.tgz";
- sha512 = "Htb24gnGJdIGT4vnRKMdoXiOIlqOLmdiUYpAQ0mYfgVT/GDm8GOYhgi4GL+hMKrkiPRohO4ts34ELFsGAPQLDQ==";
+ url = "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.15.4.tgz";
+ sha512 = "J14f/vq8+hdC2KoWLIQSsGrC9EFBKE4NFts8pfMpymfApds+fPqR30AOUWc4tyr56h9l/GA1Sxv2q3dLZWbQ/g==";
};
};
- "@babel/helper-function-name-7.14.5" = {
+ "@babel/helper-function-name-7.15.4" = {
name = "_at_babel_slash_helper-function-name";
packageName = "@babel/helper-function-name";
- version = "7.14.5";
+ version = "7.15.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.14.5.tgz";
- sha512 = "Gjna0AsXWfFvrAuX+VKcN/aNNWonizBj39yGwUzVDVTlMYJMK2Wp6xdpy72mfArFq5uK+NOuexfzZlzI1z9+AQ==";
+ url = "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.15.4.tgz";
+ sha512 = "Z91cOMM4DseLIGOnog+Z8OI6YseR9bua+HpvLAQ2XayUGU+neTtX+97caALaLdyu53I/fjhbeCnWnRH1O3jFOw==";
};
};
- "@babel/helper-get-function-arity-7.14.5" = {
+ "@babel/helper-get-function-arity-7.15.4" = {
name = "_at_babel_slash_helper-get-function-arity";
packageName = "@babel/helper-get-function-arity";
- version = "7.14.5";
+ version = "7.15.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.14.5.tgz";
- sha512 = "I1Db4Shst5lewOM4V+ZKJzQ0JGGaZ6VY1jYvMghRjqs6DWgxLCIyFt30GlnKkfUeFLpJt2vzbMVEXVSXlIFYUg==";
+ url = "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.15.4.tgz";
+ sha512 = "1/AlxSF92CmGZzHnC515hm4SirTxtpDnLEJ0UyEMgTMZN+6bxXKg04dKhiRx5Enel+SUA1G1t5Ed/yQia0efrA==";
};
};
- "@babel/helper-hoist-variables-7.14.5" = {
+ "@babel/helper-hoist-variables-7.15.4" = {
name = "_at_babel_slash_helper-hoist-variables";
packageName = "@babel/helper-hoist-variables";
- version = "7.14.5";
+ version = "7.15.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.14.5.tgz";
- sha512 = "R1PXiz31Uc0Vxy4OEOm07x0oSjKAdPPCh3tPivn/Eo8cvz6gveAeuyUUPB21Hoiif0uoPQSSdhIPS3352nvdyQ==";
+ url = "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.15.4.tgz";
+ sha512 = "VTy085egb3jUGVK9ycIxQiPbquesq0HUQ+tPO0uv5mPEBZipk+5FkRKiWq5apuyTE9FUrjENB0rCf8y+n+UuhA==";
};
};
- "@babel/helper-member-expression-to-functions-7.15.0" = {
+ "@babel/helper-member-expression-to-functions-7.15.4" = {
name = "_at_babel_slash_helper-member-expression-to-functions";
packageName = "@babel/helper-member-expression-to-functions";
- version = "7.15.0";
+ version = "7.15.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.15.0.tgz";
- sha512 = "Jq8H8U2kYiafuj2xMTPQwkTBnEEdGKpT35lJEQsRRjnG0LW3neucsaMWLgKcwu3OHKNeYugfw+Z20BXBSEs2Lg==";
+ url = "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.15.4.tgz";
+ sha512 = "cokOMkxC/BTyNP1AlY25HuBWM32iCEsLPI4BHDpJCHHm1FU2E7dKWWIXJgQgSFiu4lp8q3bL1BIKwqkSUviqtA==";
};
};
- "@babel/helper-module-imports-7.14.5" = {
+ "@babel/helper-module-imports-7.15.4" = {
name = "_at_babel_slash_helper-module-imports";
packageName = "@babel/helper-module-imports";
- version = "7.14.5";
+ version = "7.15.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.14.5.tgz";
- sha512 = "SwrNHu5QWS84XlHwGYPDtCxcA0hrSlL2yhWYLgeOc0w7ccOl2qv4s/nARI0aYZW+bSwAL5CukeXA47B/1NKcnQ==";
+ url = "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.15.4.tgz";
+ sha512 = "jeAHZbzUwdW/xHgHQ3QmWR4Jg6j15q4w/gCfwZvtqOxoo5DKtLHk8Bsf4c5RZRC7NmLEs+ohkdq8jFefuvIxAA==";
};
};
- "@babel/helper-module-transforms-7.15.0" = {
+ "@babel/helper-module-transforms-7.15.4" = {
name = "_at_babel_slash_helper-module-transforms";
packageName = "@babel/helper-module-transforms";
- version = "7.15.0";
+ version = "7.15.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.15.0.tgz";
- sha512 = "RkGiW5Rer7fpXv9m1B3iHIFDZdItnO2/BLfWVW/9q7+KqQSDY5kUfQEbzdXM1MVhJGcugKV7kRrNVzNxmk7NBg==";
+ url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.15.4.tgz";
+ sha512 = "9fHHSGE9zTC++KuXLZcB5FKgvlV83Ox+NLUmQTawovwlJ85+QMhk1CnVk406CQVj97LaWod6KVjl2Sfgw9Aktw==";
};
};
- "@babel/helper-optimise-call-expression-7.14.5" = {
+ "@babel/helper-optimise-call-expression-7.15.4" = {
name = "_at_babel_slash_helper-optimise-call-expression";
packageName = "@babel/helper-optimise-call-expression";
- version = "7.14.5";
+ version = "7.15.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.14.5.tgz";
- sha512 = "IqiLIrODUOdnPU9/F8ib1Fx2ohlgDhxnIDU7OEVi+kAbEZcyiF7BLU8W6PfvPi9LzztjS7kcbzbmL7oG8kD6VA==";
+ url = "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.15.4.tgz";
+ sha512 = "E/z9rfbAOt1vDW1DR7k4SzhzotVV5+qMciWV6LaG1g4jeFrkDlJedjtV4h0i4Q/ITnUu+Pk08M7fczsB9GXBDw==";
};
};
"@babel/helper-plugin-utils-7.10.4" = {
@@ -535,49 +535,49 @@ let
sha512 = "/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ==";
};
};
- "@babel/helper-remap-async-to-generator-7.14.5" = {
+ "@babel/helper-remap-async-to-generator-7.15.4" = {
name = "_at_babel_slash_helper-remap-async-to-generator";
packageName = "@babel/helper-remap-async-to-generator";
- version = "7.14.5";
+ version = "7.15.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.14.5.tgz";
- sha512 = "rLQKdQU+HYlxBwQIj8dk4/0ENOUEhA/Z0l4hN8BexpvmSMN9oA9EagjnhnDpNsRdWCfjwa4mn/HyBXO9yhQP6A==";
+ url = "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.15.4.tgz";
+ sha512 = "v53MxgvMK/HCwckJ1bZrq6dNKlmwlyRNYM6ypaRTdXWGOE2c1/SCa6dL/HimhPulGhZKw9W0QhREM583F/t0vQ==";
};
};
- "@babel/helper-replace-supers-7.15.0" = {
+ "@babel/helper-replace-supers-7.15.4" = {
name = "_at_babel_slash_helper-replace-supers";
packageName = "@babel/helper-replace-supers";
- version = "7.15.0";
+ version = "7.15.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.15.0.tgz";
- sha512 = "6O+eWrhx+HEra/uJnifCwhwMd6Bp5+ZfZeJwbqUTuqkhIT6YcRhiZCOOFChRypOIe0cV46kFrRBlm+t5vHCEaA==";
+ url = "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.15.4.tgz";
+ sha512 = "/ztT6khaXF37MS47fufrKvIsiQkx1LBRvSJNzRqmbyeZnTwU9qBxXYLaaT/6KaxfKhjs2Wy8kG8ZdsFUuWBjzw==";
};
};
- "@babel/helper-simple-access-7.14.8" = {
+ "@babel/helper-simple-access-7.15.4" = {
name = "_at_babel_slash_helper-simple-access";
packageName = "@babel/helper-simple-access";
- version = "7.14.8";
+ version = "7.15.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.14.8.tgz";
- sha512 = "TrFN4RHh9gnWEU+s7JloIho2T76GPwRHhdzOWLqTrMnlas8T9O7ec+oEDNsRXndOmru9ymH9DFrEOxpzPoSbdg==";
+ url = "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.15.4.tgz";
+ sha512 = "UzazrDoIVOZZcTeHHEPYrr1MvTR/K+wgLg6MY6e1CJyaRhbibftF6fR2KU2sFRtI/nERUZR9fBd6aKgBlIBaPg==";
};
};
- "@babel/helper-skip-transparent-expression-wrappers-7.14.5" = {
+ "@babel/helper-skip-transparent-expression-wrappers-7.15.4" = {
name = "_at_babel_slash_helper-skip-transparent-expression-wrappers";
packageName = "@babel/helper-skip-transparent-expression-wrappers";
- version = "7.14.5";
+ version = "7.15.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.14.5.tgz";
- sha512 = "dmqZB7mrb94PZSAOYtr+ZN5qt5owZIAgqtoTuqiFbHFtxgEcmQlRJVI+bO++fciBunXtB6MK7HrzrfcAzIz2NQ==";
+ url = "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.15.4.tgz";
+ sha512 = "BMRLsdh+D1/aap19TycS4eD1qELGrCBJwzaY9IE8LrpJtJb+H7rQkPIdsfgnMtLBA6DJls7X9z93Z4U8h7xw0A==";
};
};
- "@babel/helper-split-export-declaration-7.14.5" = {
+ "@babel/helper-split-export-declaration-7.15.4" = {
name = "_at_babel_slash_helper-split-export-declaration";
packageName = "@babel/helper-split-export-declaration";
- version = "7.14.5";
+ version = "7.15.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.14.5.tgz";
- sha512 = "hprxVPu6e5Kdp2puZUmvOGjaLv9TCe58E/Fl6hRq4YiVQxIcNvuq6uTM2r1mT/oPskuS9CgR+I94sqAYv0NGKA==";
+ url = "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.15.4.tgz";
+ sha512 = "HsFqhLDZ08DxCpBdEVtKmywj6PQbwnF6HHybur0MAnkAKnlS6uHkwnmRIkElB2Owpfb4xL4NwDmDLFubueDXsw==";
};
};
"@babel/helper-validator-identifier-7.14.9" = {
@@ -598,22 +598,22 @@ let
sha512 = "OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow==";
};
};
- "@babel/helper-wrap-function-7.14.5" = {
+ "@babel/helper-wrap-function-7.15.4" = {
name = "_at_babel_slash_helper-wrap-function";
packageName = "@babel/helper-wrap-function";
- version = "7.14.5";
+ version = "7.15.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.14.5.tgz";
- sha512 = "YEdjTCq+LNuNS1WfxsDCNpgXkJaIyqco6DAelTUjT4f2KIWC1nBcaCaSdHTBqQVLnTBexBcVcFhLSU1KnYuePQ==";
+ url = "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.15.4.tgz";
+ sha512 = "Y2o+H/hRV5W8QhIfTpRIBwl57y8PrZt6JM3V8FOo5qarjshHItyH5lXlpMfBfmBefOqSCpKZs/6Dxqp0E/U+uw==";
};
};
- "@babel/helpers-7.15.3" = {
+ "@babel/helpers-7.15.4" = {
name = "_at_babel_slash_helpers";
packageName = "@babel/helpers";
- version = "7.15.3";
+ version = "7.15.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.15.3.tgz";
- sha512 = "HwJiz52XaS96lX+28Tnbu31VeFSQJGOeKHJeaEPQlTl7PnlhFElWPj8tUXtqFIzeN86XxXoBr+WFAyK2PPVz6g==";
+ url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.15.4.tgz";
+ sha512 = "V45u6dqEJ3w2rlryYYXf6i9rQ5YMNu4FLS6ngs8ikblhu2VdR1AqAd6aJjBzmf2Qzh6KOLqKHxEN9+TFbAkAVQ==";
};
};
"@babel/highlight-7.14.5" = {
@@ -625,6 +625,15 @@ let
sha512 = "qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg==";
};
};
+ "@babel/node-7.15.4" = {
+ name = "_at_babel_slash_node";
+ packageName = "@babel/node";
+ version = "7.15.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@babel/node/-/node-7.15.4.tgz";
+ sha512 = "UZue+j8p5aKTaVjvy5psYmqLHqmz+9cIboAFoa97S1xeZyUr0gT6KzXB8ZkfBIsP/u79biOdjGHVXBXnW3rVfw==";
+ };
+ };
"@babel/parser-7.13.13" = {
name = "_at_babel_slash_parser";
packageName = "@babel/parser";
@@ -634,22 +643,22 @@ let
sha512 = "OhsyMrqygfk5v8HmWwOzlYjJrtLaFhF34MrfG/Z73DgYCI6ojNUTUp2TYbtnjo8PegeJp12eamsNettCQjKjVw==";
};
};
- "@babel/parser-7.15.3" = {
+ "@babel/parser-7.15.5" = {
name = "_at_babel_slash_parser";
packageName = "@babel/parser";
- version = "7.15.3";
+ version = "7.15.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/parser/-/parser-7.15.3.tgz";
- sha512 = "O0L6v/HvqbdJawj0iBEfVQMc3/6WP+AeOsovsIgBFyJaG+W2w7eqvZB7puddATmWuARlm1SX7DwxJ/JJUnDpEA==";
+ url = "https://registry.npmjs.org/@babel/parser/-/parser-7.15.5.tgz";
+ sha512 = "2hQstc6I7T6tQsWzlboMh3SgMRPaS4H6H7cPQsJkdzTzEGqQrpLDsE2BGASU5sBPoEQyHzeqU6C8uKbFeEk6sg==";
};
};
- "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.14.5" = {
+ "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.15.4" = {
name = "_at_babel_slash_plugin-bugfix-v8-spread-parameters-in-optional-chaining";
packageName = "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining";
- version = "7.14.5";
+ version = "7.15.4";
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.14.5.tgz";
- sha512 = "ZoJS2XCKPBfTmL122iP6NM9dOg+d4lc9fFk3zxc8iDjvt8Pk4+TlsHSKhIPf6X+L5ORCdBzqMZDjL/WHj7WknQ==";
+ url = "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.15.4.tgz";
+ sha512 = "eBnpsl9tlhPhpI10kU06JHnrYXwg3+V6CaP2idsCXNef0aeslpqyITXQ74Vfk5uHgY7IG7XP0yIH8b42KSzHog==";
};
};
"@babel/plugin-external-helpers-7.8.3" = {
@@ -661,13 +670,13 @@ let
sha512 = "mx0WXDDiIl5DwzMtzWGRSPugXi9BxROS05GQrhLNbEamhBiicgn994ibwkyiBH+6png7bm/yA7AUsvHyCXi4Vw==";
};
};
- "@babel/plugin-proposal-async-generator-functions-7.14.9" = {
+ "@babel/plugin-proposal-async-generator-functions-7.15.4" = {
name = "_at_babel_slash_plugin-proposal-async-generator-functions";
packageName = "@babel/plugin-proposal-async-generator-functions";
- version = "7.14.9";
+ version = "7.15.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.14.9.tgz";
- sha512 = "d1lnh+ZnKrFKwtTYdw320+sQWCTwgkB9fmUhNXRADA4akR6wLjaruSGnIEUjpt9HCOwTr4ynFTKu19b7rFRpmw==";
+ url = "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.15.4.tgz";
+ sha512 = "2zt2g5vTXpMC3OmK6uyjvdXptbhBXfA77XGrd3gh93zwG8lZYBLOBImiGBEG0RANu3JqKEACCz5CGk73OJROBw==";
};
};
"@babel/plugin-proposal-class-properties-7.14.5" = {
@@ -679,13 +688,13 @@ let
sha512 = "q/PLpv5Ko4dVc1LYMpCY7RVAAO4uk55qPwrIuJ5QJ8c6cVuAmhu7I/49JOppXL6gXf7ZHzpRVEUZdYoPLM04Gg==";
};
};
- "@babel/plugin-proposal-class-static-block-7.14.5" = {
+ "@babel/plugin-proposal-class-static-block-7.15.4" = {
name = "_at_babel_slash_plugin-proposal-class-static-block";
packageName = "@babel/plugin-proposal-class-static-block";
- version = "7.14.5";
+ version = "7.15.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.14.5.tgz";
- sha512 = "KBAH5ksEnYHCegqseI5N9skTdxgJdmDoAOc0uXa+4QMYKeZD0w5IARh4FMlTNtaHhbB8v+KzMdTgxMMzsIy6Yg==";
+ url = "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.15.4.tgz";
+ sha512 = "M682XWrrLNk3chXCjoPUQWOyYsB93B9z3mRyjtqqYJWDf2mfCdIYgDrA11cgNVhAQieaq6F2fn2f3wI0U4aTjA==";
};
};
"@babel/plugin-proposal-dynamic-import-7.14.5" = {
@@ -796,13 +805,13 @@ let
sha512 = "838DkdUA1u+QTCplatfq4B7+1lnDa/+QMI89x5WZHBcnNv+47N8QEj2k9I2MUU9xIv8XJ4XvPCviM/Dj7Uwt9g==";
};
};
- "@babel/plugin-proposal-private-property-in-object-7.14.5" = {
+ "@babel/plugin-proposal-private-property-in-object-7.15.4" = {
name = "_at_babel_slash_plugin-proposal-private-property-in-object";
packageName = "@babel/plugin-proposal-private-property-in-object";
- version = "7.14.5";
+ version = "7.15.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.14.5.tgz";
- sha512 = "62EyfyA3WA0mZiF2e2IV9mc9Ghwxcg8YTu8BS4Wss4Y3PY725OmS9M0qLORbJwLqFtGh+jiE4wAmocK2CTUK2Q==";
+ url = "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.15.4.tgz";
+ sha512 = "X0UTixkLf0PCCffxgu5/1RQyGGbgZuKoI+vXP4iSbJSYwPb7hu06omsFGBvQ9lJEvwgrxHdS8B5nbfcd8GyUNA==";
};
};
"@babel/plugin-proposal-unicode-property-regex-7.14.5" = {
@@ -1039,13 +1048,13 @@ let
sha512 = "nBAzfZwZb4DkaGtOes1Up1nOAp9TDRRFw4XBzBBSG9QK7KVFmYzgj9o9sbPv7TX5ofL4Auq4wZnxCoPnI/lz2Q==";
};
};
- "@babel/plugin-transform-classes-7.14.9" = {
+ "@babel/plugin-transform-classes-7.15.4" = {
name = "_at_babel_slash_plugin-transform-classes";
packageName = "@babel/plugin-transform-classes";
- version = "7.14.9";
+ version = "7.15.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.14.9.tgz";
- sha512 = "NfZpTcxU3foGWbl4wxmZ35mTsYJy8oQocbeIMoDAGGFarAmSQlL+LWMkDx/tj6pNotpbX3rltIA4dprgAPOq5A==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.15.4.tgz";
+ sha512 = "Yjvhex8GzBmmPQUvpXRPWQ9WnxXgAFuZSrqOK/eJlOGIXwvv8H3UEdUigl1gb/bnjTrln+e8bkZUYCBt/xYlBg==";
};
};
"@babel/plugin-transform-computed-properties-7.14.5" = {
@@ -1102,13 +1111,13 @@ let
sha512 = "KhcolBKfXbvjwI3TV7r7TkYm8oNXHNBqGOy6JDVwtecFaRoKYsUUqJdS10q0YDKW1c6aZQgO+Ys3LfGkox8pXA==";
};
};
- "@babel/plugin-transform-for-of-7.14.5" = {
+ "@babel/plugin-transform-for-of-7.15.4" = {
name = "_at_babel_slash_plugin-transform-for-of";
packageName = "@babel/plugin-transform-for-of";
- version = "7.14.5";
+ version = "7.15.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.14.5.tgz";
- sha512 = "CfmqxSUZzBl0rSjpoQSFoR9UEj3HzbGuGNL21/iFTmjb5gFggJp3ph0xR1YBhexmLoKRHzgxuFvty2xdSt6gTA==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.15.4.tgz";
+ sha512 = "DRTY9fA751AFBDh2oxydvVm4SYevs5ILTWLs6xKXps4Re/KG5nfUkr+TdHCrRWB8C69TlzVgA9b3RmGWmgN9LA==";
};
};
"@babel/plugin-transform-function-name-7.14.5" = {
@@ -1147,22 +1156,22 @@ let
sha512 = "3lpOU8Vxmp3roC4vzFpSdEpGUWSMsHFreTWOMMLzel2gNGfHE5UWIh/LN6ghHs2xurUp4jRFYMUIZhuFbody1g==";
};
};
- "@babel/plugin-transform-modules-commonjs-7.15.0" = {
+ "@babel/plugin-transform-modules-commonjs-7.15.4" = {
name = "_at_babel_slash_plugin-transform-modules-commonjs";
packageName = "@babel/plugin-transform-modules-commonjs";
- version = "7.15.0";
+ version = "7.15.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.15.0.tgz";
- sha512 = "3H/R9s8cXcOGE8kgMlmjYYC9nqr5ELiPkJn4q0mypBrjhYQoc+5/Maq69vV4xRPWnkzZuwJPf5rArxpB/35Cig==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.15.4.tgz";
+ sha512 = "qg4DPhwG8hKp4BbVDvX1s8cohM8a6Bvptu4l6Iingq5rW+yRUAhe/YRup/YcW2zCOlrysEWVhftIcKzrEZv3sA==";
};
};
- "@babel/plugin-transform-modules-systemjs-7.14.5" = {
+ "@babel/plugin-transform-modules-systemjs-7.15.4" = {
name = "_at_babel_slash_plugin-transform-modules-systemjs";
packageName = "@babel/plugin-transform-modules-systemjs";
- version = "7.14.5";
+ version = "7.15.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.14.5.tgz";
- sha512 = "mNMQdvBEE5DcMQaL5LbzXFMANrQjd2W7FPzg34Y4yEz7dBgdaC+9B84dSO+/1Wba98zoDbInctCDo4JGxz1VYA==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.15.4.tgz";
+ sha512 = "fJUnlQrl/mezMneR72CKCgtOoahqGJNVKpompKwzv3BrEXdlPspTcyxrZ1XmDTIr9PpULrgEQo3qNKp6dW7ssw==";
};
};
"@babel/plugin-transform-modules-umd-7.14.5" = {
@@ -1210,13 +1219,13 @@ let
sha512 = "MKfOBWzK0pZIrav9z/hkRqIk/2bTv9qvxHzPQc12RcVkMOzpIKnFCNYJip00ssKWYkd8Sf5g0Wr7pqJ+cmtuFg==";
};
};
- "@babel/plugin-transform-parameters-7.14.5" = {
+ "@babel/plugin-transform-parameters-7.15.4" = {
name = "_at_babel_slash_plugin-transform-parameters";
packageName = "@babel/plugin-transform-parameters";
- version = "7.14.5";
+ version = "7.15.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.14.5.tgz";
- sha512 = "Tl7LWdr6HUxTmzQtzuU14SqbgrSKmaR77M0OKyq4njZLQTPfOvzblNKyNkGwOfEFCEx7KeYHQHDI0P3F02IVkA==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.15.4.tgz";
+ sha512 = "9WB/GUTO6lvJU3XQsSr6J/WKvBC2hcs4Pew8YxZagi6GkTdniyqp8On5kqdK8MN0LMeu0mGbhPN+O049NV/9FQ==";
};
};
"@babel/plugin-transform-property-literals-7.14.5" = {
@@ -1354,13 +1363,13 @@ let
sha512 = "lXzLD30ffCWseTbMQzrvDWqljvZlHkXU+CnseMhkMNqU1sASnCsz3tSzAaH3vCUXb9PHeUb90ZT1BdFTm1xxJw==";
};
};
- "@babel/plugin-transform-typescript-7.15.0" = {
+ "@babel/plugin-transform-typescript-7.15.4" = {
name = "_at_babel_slash_plugin-transform-typescript";
packageName = "@babel/plugin-transform-typescript";
- version = "7.15.0";
+ version = "7.15.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.15.0.tgz";
- sha512 = "WIIEazmngMEEHDaPTx0IZY48SaAmjVWe3TRSX7cmJXn0bEv9midFzAjxiruOWYIVf5iQ10vFx7ASDpgEO08L5w==";
+ url = "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.15.4.tgz";
+ sha512 = "sM1/FEjwYjXvMwu1PJStH11kJ154zd/lpY56NQJ5qH2D0mabMv1CAy/kdvS9RP4Xgfj9fBBA3JiSLdDHgXdzOA==";
};
};
"@babel/plugin-transform-unicode-escapes-7.14.5" = {
@@ -1381,13 +1390,13 @@ let
sha512 = "UygduJpC5kHeCiRw/xDVzC+wj8VaYSoKl5JNVmbP7MadpNinAm3SvZCxZ42H37KZBKztz46YC73i9yV34d0Tzw==";
};
};
- "@babel/preset-env-7.15.0" = {
+ "@babel/preset-env-7.15.4" = {
name = "_at_babel_slash_preset-env";
packageName = "@babel/preset-env";
- version = "7.15.0";
+ version = "7.15.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.15.0.tgz";
- sha512 = "FhEpCNFCcWW3iZLg0L2NPE9UerdtsCR6ZcsGHUX6Om6kbCQeL5QZDqFDmeNHC6/fy6UH3jEge7K4qG5uC9In0Q==";
+ url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.15.4.tgz";
+ sha512 = "4f2nLw+q6ht8gl3sHCmNhmA5W6b1ItLzbH3UrKuJxACHr2eCpk96jwjrAfCAaXaaVwTQGnyUYHY2EWXJGt7TUQ==";
};
};
"@babel/preset-flow-7.14.5" = {
@@ -1462,13 +1471,13 @@ let
sha512 = "aY2kU+xgJ3dJ1eU6FMB9EH8dIe8dmusF1xEku52joLvw6eAFN0AI+WxCLDnpev2LEejWBAy2sBvBOBAjI3zmvA==";
};
};
- "@babel/runtime-7.15.3" = {
+ "@babel/runtime-7.15.4" = {
name = "_at_babel_slash_runtime";
packageName = "@babel/runtime";
- version = "7.15.3";
+ version = "7.15.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.15.3.tgz";
- sha512 = "OvwMLqNXkCXSz1kSm58sEsNuhqOx/fKpnUnKnFB5v8uDda5bLNEHNgKPvhDN6IU0LDcnHQ90LlJ0Q6jnyBSIBA==";
+ url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.15.4.tgz";
+ sha512 = "99catp6bHCaxr4sJ/DbTGgHS4+Rs2RVd2g7iOap6SLGPDknRK9ztKNsE/Fg6QhSeh1FGE5f6gHGQmvvn3I3xhw==";
};
};
"@babel/runtime-7.9.0" = {
@@ -1480,40 +1489,40 @@ let
sha512 = "cTIudHnzuWLS56ik4DnRnqqNf8MkdUzV4iFFI1h7Jo9xvrpQROYaAnaSd2mHLQAzzZAPfATynX5ord6YlNYNMA==";
};
};
- "@babel/runtime-corejs3-7.15.3" = {
+ "@babel/runtime-corejs3-7.15.4" = {
name = "_at_babel_slash_runtime-corejs3";
packageName = "@babel/runtime-corejs3";
- version = "7.15.3";
+ version = "7.15.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.15.3.tgz";
- sha512 = "30A3lP+sRL6ml8uhoJSs+8jwpKzbw8CqBvDc1laeptxPm5FahumJxirigcbD2qTs71Sonvj1cyZB0OKGAmxQ+A==";
+ url = "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.15.4.tgz";
+ sha512 = "lWcAqKeB624/twtTc3w6w/2o9RqJPaNBhPGK6DKLSiwuVWC7WFkypWyNg+CpZoyJH0jVzv1uMtXZ/5/lQOLtCg==";
};
};
- "@babel/standalone-7.15.3" = {
+ "@babel/standalone-7.15.5" = {
name = "_at_babel_slash_standalone";
packageName = "@babel/standalone";
- version = "7.15.3";
+ version = "7.15.5";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/standalone/-/standalone-7.15.3.tgz";
- sha512 = "Bst2YWEyQ2ROyO0+jxPVnnkSmUh44/x54+LSbe5M4N5LGfOkxpajEUKVE4ndXtIVrLlHCyuiqCPwv3eC1ItnCg==";
+ url = "https://registry.npmjs.org/@babel/standalone/-/standalone-7.15.5.tgz";
+ sha512 = "rho2fzDGLrdYVbl0S71I8z6AREWnVvADzv7Gb4TLKhqpE6cJAvno0ALMuF253+wqhN8futx4ELWQpBYMxi4jmA==";
};
};
- "@babel/template-7.14.5" = {
+ "@babel/template-7.15.4" = {
name = "_at_babel_slash_template";
packageName = "@babel/template";
- version = "7.14.5";
+ version = "7.15.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/template/-/template-7.14.5.tgz";
- sha512 = "6Z3Po85sfxRGachLULUhOmvAaOo7xCvqGQtxINai2mEGPFm6pQ4z5QInFnUrRpfoSV60BnjyF5F3c+15fxFV1g==";
+ url = "https://registry.npmjs.org/@babel/template/-/template-7.15.4.tgz";
+ sha512 = "UgBAfEa1oGuYgDIPM2G+aHa4Nlo9Lh6mGD2bDBGMTbYnc38vulXPuC1MGjYILIEmlwl6Rd+BPR9ee3gm20CBtg==";
};
};
- "@babel/traverse-7.15.0" = {
+ "@babel/traverse-7.15.4" = {
name = "_at_babel_slash_traverse";
packageName = "@babel/traverse";
- version = "7.15.0";
+ version = "7.15.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.15.0.tgz";
- sha512 = "392d8BN0C9eVxVWd8H6x9WfipgVH5IaIoLp23334Sc1vbKKWINnvwRpb4us0xtPaCumlwbTtIYNA0Dv/32sVFw==";
+ url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.15.4.tgz";
+ sha512 = "W6lQD8l4rUbQR/vYgSuCAE75ADyyQvOpFVsvPPdkhf6lATXAsQIG9YdtOcu8BB1dZ0LKu+Zo3c1wEcbKeuhdlA==";
};
};
"@babel/types-7.13.12" = {
@@ -1525,40 +1534,40 @@ let
sha512 = "K4nY2xFN4QMvQwkQ+zmBDp6ANMbVNw6BbxWmYA4qNjhR9W+Lj/8ky5MEY2Me5r+B2c6/v6F53oMndG+f9s3IiA==";
};
};
- "@babel/types-7.15.0" = {
+ "@babel/types-7.15.4" = {
name = "_at_babel_slash_types";
packageName = "@babel/types";
- version = "7.15.0";
+ version = "7.15.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@babel/types/-/types-7.15.0.tgz";
- sha512 = "OBvfqnllOIdX4ojTHpwZbpvz4j3EWyjkZEdmjH0/cgsd6QOdSgU8rLSk6ard/pcW7rlmjdVSX/AWOaORR1uNOQ==";
+ url = "https://registry.npmjs.org/@babel/types/-/types-7.15.4.tgz";
+ sha512 = "0f1HJFuGmmbrKTCZtbm3cU+b/AqdEYk5toj5iQur58xkVMlS0JWaKxTBSmCXd47uiN7vbcozAupm6Mvs80GNhw==";
};
};
- "@blueprintjs/colors-1.0.0" = {
+ "@blueprintjs/colors-3.0.0" = {
name = "_at_blueprintjs_slash_colors";
packageName = "@blueprintjs/colors";
- version = "1.0.0";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@blueprintjs/colors/-/colors-1.0.0.tgz";
- sha512 = "eJh111ucz8HYxLBON6ADkAGQQBACqdbX6Zws/GpuiTkeCFJ3IAjZdBpk7IM7/Y5XuGuSS1ujwjnLDOEtyywtKw==";
+ url = "https://registry.npmjs.org/@blueprintjs/colors/-/colors-3.0.0.tgz";
+ sha512 = "8rRkIcnnOwMEMAGDciKFdVQ3dZXvCkSGcgEzVR2ijopCvLZrrHf+ySzn8v7Y2d60A2Q2A3Of8NDrYbV32sBssg==";
};
};
- "@blueprintjs/core-3.48.0" = {
+ "@blueprintjs/core-3.49.1" = {
name = "_at_blueprintjs_slash_core";
packageName = "@blueprintjs/core";
- version = "3.48.0";
+ version = "3.49.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@blueprintjs/core/-/core-3.48.0.tgz";
- sha512 = "tuAL3dZrNaTq36RRy6O86wjmkiLt8LwHkleZ1zUcn/DC3cXsM3dSsRpV3f662bcEiAXMPeGemSC3tqv6uZCeLg==";
+ url = "https://registry.npmjs.org/@blueprintjs/core/-/core-3.49.1.tgz";
+ sha512 = "H6UAYZeBZcGDQb24vEkFps0eKlkyKvy/B/OJ2elZjHC1B1Regv7TwIDjju9wgzZvzKCcCVZzUg9OqtH43V+1yA==";
};
};
- "@blueprintjs/icons-3.28.0" = {
+ "@blueprintjs/icons-3.29.0" = {
name = "_at_blueprintjs_slash_icons";
packageName = "@blueprintjs/icons";
- version = "3.28.0";
+ version = "3.29.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@blueprintjs/icons/-/icons-3.28.0.tgz";
- sha512 = "gDvvU2ljV4NXsY5ofKcs1ChXAgmqNp/DIMu2uJIJmXhSXfP6JDd4qbnbGMsP3FmLTaqQP3E9oBZqAG/FRB8VmQ==";
+ url = "https://registry.npmjs.org/@blueprintjs/icons/-/icons-3.29.0.tgz";
+ sha512 = "FDpPsEBwzsFBsxDXNsea+u+bU+iFWcVTbKH05+jtGEpvDEOrpOsOwUYvkBvVaReR0DORREVye2/NL0/uvLCRrg==";
};
};
"@braintree/sanitize-url-3.1.0" = {
@@ -1642,22 +1651,13 @@ let
sha512 = "3E4/6sCLEcoPUk6FJHOpLGqBNSE2AHrIrErXKRFU3je/MZotxvWrfrZY3IsENJgjJ69Zv0dxMxTZo/l+BVNa3w==";
};
};
- "@chemzqm/neovim-5.3.5" = {
+ "@chemzqm/neovim-5.4.0" = {
name = "_at_chemzqm_slash_neovim";
packageName = "@chemzqm/neovim";
- version = "5.3.5";
+ version = "5.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@chemzqm/neovim/-/neovim-5.3.5.tgz";
- sha512 = "khqF4y0Z1WLPJR3LPJRgTAAZHQYTxHFXw3Nzr799aRsKXummSX85SS7ZLnVDyDjzd3x4yonYdWk89K2ZpJslnQ==";
- };
- };
- "@chinachu/aribts-1.3.5-mirakurun.3" = {
- name = "_at_chinachu_slash_aribts";
- packageName = "@chinachu/aribts";
- version = "1.3.5-mirakurun.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/@chinachu/aribts/-/aribts-1.3.5-mirakurun.3.tgz";
- sha512 = "JQPzfaYF7swQwKp2OsoRGZEjyrIo2muHQbwCKhfigqQrA3gCyGf3run+xCjNqKlI4wF9qjfgJpxfc1J56aIvog==";
+ url = "https://registry.npmjs.org/@chemzqm/neovim/-/neovim-5.4.0.tgz";
+ sha512 = "BjOAR5sliE2kp3EGZsyUmrYwTMRrxvXe6WBQTxL0m5uRIvfxShRaWyKOGbqoe0+sHCfgT67QsMevUAjB1Ovskw==";
};
};
"@cnakazawa/watch-1.0.4" = {
@@ -1930,166 +1930,166 @@ let
sha512 = "Fxt+AfXgjMoin2maPIYzFZnQjAXjAL0PHscM5pRTtatFqB+vZxAM9tLp2Optnuw3QOQC40jTNeGYFOMvyf7v9g==";
};
};
- "@electron-forge/async-ora-6.0.0-beta.59" = {
+ "@electron-forge/async-ora-6.0.0-beta.60" = {
name = "_at_electron-forge_slash_async-ora";
packageName = "@electron-forge/async-ora";
- version = "6.0.0-beta.59";
+ version = "6.0.0-beta.60";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/async-ora/-/async-ora-6.0.0-beta.59.tgz";
- sha512 = "vF60XyjHCyoyXHgkDi/tZy+OB9K6oSBio2at7B4pwZLO6nqstofkeAB+Gz/XUsVj9Nim+vHKtyXPzE0BTXQkZQ==";
+ url = "https://registry.npmjs.org/@electron-forge/async-ora/-/async-ora-6.0.0-beta.60.tgz";
+ sha512 = "MGRAfcxHkBVstgoZl/vk35IufNCu+xEYyZwaBk94w7NicIcW69z2VnP/W/v35sP3ekhqjpDCc0QGSQP5S1Zmuw==";
};
};
- "@electron-forge/core-6.0.0-beta.59" = {
+ "@electron-forge/core-6.0.0-beta.60" = {
name = "_at_electron-forge_slash_core";
packageName = "@electron-forge/core";
- version = "6.0.0-beta.59";
+ version = "6.0.0-beta.60";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/core/-/core-6.0.0-beta.59.tgz";
- sha512 = "DRls31VQdVqGlna9EviHGKPchTkcbYPsRjOHSTrpksyOBQGck7for/hD1sxFREQ0r1qfKMR4xtmXbpXqzD8AyQ==";
+ url = "https://registry.npmjs.org/@electron-forge/core/-/core-6.0.0-beta.60.tgz";
+ sha512 = "JOUcO+PNdSeA623Y38zBJYvGnR6eIGNs+GA15ba9X/BKwX4zNjXDubc2tct+tiMNudTdSIAA/dwlzCJw9hTF9g==";
};
};
- "@electron-forge/installer-base-6.0.0-beta.59" = {
+ "@electron-forge/installer-base-6.0.0-beta.60" = {
name = "_at_electron-forge_slash_installer-base";
packageName = "@electron-forge/installer-base";
- version = "6.0.0-beta.59";
+ version = "6.0.0-beta.60";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/installer-base/-/installer-base-6.0.0-beta.59.tgz";
- sha512 = "rmayhhJXj5aXed8xrkqOPTGF4J1DqZdTGo05RAVKoCmXv0iGBPUp0VvkiQinOvoBopr/5XorZTzCxgqps0UC6w==";
+ url = "https://registry.npmjs.org/@electron-forge/installer-base/-/installer-base-6.0.0-beta.60.tgz";
+ sha512 = "WnU7LEw98Lew1/5Kv/DzvqW19BNPPXxPTtTfpHnhOybm5g9uJ2sEjol4We5bgK0UFbCCORmwgbZYZsMCN/mx4A==";
};
};
- "@electron-forge/installer-darwin-6.0.0-beta.59" = {
+ "@electron-forge/installer-darwin-6.0.0-beta.60" = {
name = "_at_electron-forge_slash_installer-darwin";
packageName = "@electron-forge/installer-darwin";
- version = "6.0.0-beta.59";
+ version = "6.0.0-beta.60";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/installer-darwin/-/installer-darwin-6.0.0-beta.59.tgz";
- sha512 = "2bssItA6CWgdL0G0/opG5usUdpCurCptdrA1bC8el6hlgv/v+hhRxalkPX9A38cWTB3w8VMhesDti+PpEYnniw==";
+ url = "https://registry.npmjs.org/@electron-forge/installer-darwin/-/installer-darwin-6.0.0-beta.60.tgz";
+ sha512 = "qAbPhr5Dt+aALmwC47cjNKR70hj+spNKRkMYSJMxD6tpbG4JDS+UQaHeuQAWY50XGgBWdialN6Hvr+y+d+QgGg==";
};
};
- "@electron-forge/installer-deb-6.0.0-beta.59" = {
+ "@electron-forge/installer-deb-6.0.0-beta.60" = {
name = "_at_electron-forge_slash_installer-deb";
packageName = "@electron-forge/installer-deb";
- version = "6.0.0-beta.59";
+ version = "6.0.0-beta.60";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/installer-deb/-/installer-deb-6.0.0-beta.59.tgz";
- sha512 = "z2095DHbNm81gClIn+fkid/Z8FKlBnAySIodDRFKNjNDaGcWcg2Wurv3vV32Xq4kBlsHRduhxA31IqnGY1zOvA==";
+ url = "https://registry.npmjs.org/@electron-forge/installer-deb/-/installer-deb-6.0.0-beta.60.tgz";
+ sha512 = "Wma/FqochMopLeQTxW2/3uRt69JkkL7xq91P5PDJzIgEXEjlU0SyR8LKvNC8VMPQ7/cBDHowpI79cMBVjif25g==";
};
};
- "@electron-forge/installer-dmg-6.0.0-beta.59" = {
+ "@electron-forge/installer-dmg-6.0.0-beta.60" = {
name = "_at_electron-forge_slash_installer-dmg";
packageName = "@electron-forge/installer-dmg";
- version = "6.0.0-beta.59";
+ version = "6.0.0-beta.60";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/installer-dmg/-/installer-dmg-6.0.0-beta.59.tgz";
- sha512 = "QAYJ0H31hVMiTQDQ9ngBkAFBbSTb9Okj3mKNsym+Yw4RlQJQEc9XWWOmiTjPHCB1LR/NmaescT06sJ6Kh0wtQw==";
+ url = "https://registry.npmjs.org/@electron-forge/installer-dmg/-/installer-dmg-6.0.0-beta.60.tgz";
+ sha512 = "N0rXYeMA4qcsDH9WadJU4RT/HmveO8ggNw3zDVmuvvV1y0nt1OGU3kHaJuslDYAUY6DNpwdHoz6wd7XLsBzDrw==";
};
};
- "@electron-forge/installer-exe-6.0.0-beta.59" = {
+ "@electron-forge/installer-exe-6.0.0-beta.60" = {
name = "_at_electron-forge_slash_installer-exe";
packageName = "@electron-forge/installer-exe";
- version = "6.0.0-beta.59";
+ version = "6.0.0-beta.60";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/installer-exe/-/installer-exe-6.0.0-beta.59.tgz";
- sha512 = "FJ0vu65K6wBz8gY5RJNfLanXJEGMs2w/WrawSLh5xGH5GzOkWwq3RRD5AdN1CFRrkXSCBbgkdF6x+F1kdwH7OQ==";
+ url = "https://registry.npmjs.org/@electron-forge/installer-exe/-/installer-exe-6.0.0-beta.60.tgz";
+ sha512 = "YZ8V5DGTRgKB1+97t9wOtJh1T7yo7ea9CWK899yodGxYmFh1Xtc4hwfszOhnnXCoy5LyQhjvnrHWA3lRffOInA==";
};
};
- "@electron-forge/installer-linux-6.0.0-beta.59" = {
+ "@electron-forge/installer-linux-6.0.0-beta.60" = {
name = "_at_electron-forge_slash_installer-linux";
packageName = "@electron-forge/installer-linux";
- version = "6.0.0-beta.59";
+ version = "6.0.0-beta.60";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/installer-linux/-/installer-linux-6.0.0-beta.59.tgz";
- sha512 = "dB1A8j6oubCnAOQQzmtFWQWTMMSijeiClaGMricNOlC0wC2U3BHiBwrU2jJqxvy4M401kfgR9UiMs6mQNSPdPg==";
+ url = "https://registry.npmjs.org/@electron-forge/installer-linux/-/installer-linux-6.0.0-beta.60.tgz";
+ sha512 = "yi78aQvFtpyOe0WynsuJOOIXh2BSwrHPoufVgQpqicyAF8Ql/cteL5bZAbP7YNapWRBC/dI7XjxhUl5MbbEGTg==";
};
};
- "@electron-forge/installer-rpm-6.0.0-beta.59" = {
+ "@electron-forge/installer-rpm-6.0.0-beta.60" = {
name = "_at_electron-forge_slash_installer-rpm";
packageName = "@electron-forge/installer-rpm";
- version = "6.0.0-beta.59";
+ version = "6.0.0-beta.60";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/installer-rpm/-/installer-rpm-6.0.0-beta.59.tgz";
- sha512 = "h/S5uMl8Vvg+Euv5xIhynjB8Q6biaBauJJoPtlALxSgSNuKnWWIuc4edwqY5F0cBIw3WO4tnmA/CE6gVWgGJMg==";
+ url = "https://registry.npmjs.org/@electron-forge/installer-rpm/-/installer-rpm-6.0.0-beta.60.tgz";
+ sha512 = "JKP2ZefoC4mi3nCFXt6Md82QdEFn0A2WEW5q5R1xTOLbYm0SuYYX34S0Mo+6EZgBQYqot2ExA/l6C0beq1+GRQ==";
};
};
- "@electron-forge/installer-zip-6.0.0-beta.59" = {
+ "@electron-forge/installer-zip-6.0.0-beta.60" = {
name = "_at_electron-forge_slash_installer-zip";
packageName = "@electron-forge/installer-zip";
- version = "6.0.0-beta.59";
+ version = "6.0.0-beta.60";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/installer-zip/-/installer-zip-6.0.0-beta.59.tgz";
- sha512 = "sTYv2NR0liFUUa9snpQs+SCWPMOUddVNK/sNBNkwU1q5jrO+ZjfTF22u5C5RawIWKgTrwxc3dFUYDYXh8753og==";
+ url = "https://registry.npmjs.org/@electron-forge/installer-zip/-/installer-zip-6.0.0-beta.60.tgz";
+ sha512 = "MMnCESVjn1nCVBGHHd1fD+4pBEgKj/aKCwAxYP9VmZdR/EcxpcFo+yjYEHtf39gFXHAKtVtJTO/FF7m7peUz+g==";
};
};
- "@electron-forge/maker-base-6.0.0-beta.59" = {
+ "@electron-forge/maker-base-6.0.0-beta.60" = {
name = "_at_electron-forge_slash_maker-base";
packageName = "@electron-forge/maker-base";
- version = "6.0.0-beta.59";
+ version = "6.0.0-beta.60";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/maker-base/-/maker-base-6.0.0-beta.59.tgz";
- sha512 = "S/Qdu2kwio5PdZgoDDxZPo6JSf2YwcuXi3sy9Tw2Qj58+ZT9nOHn0C+JBHI8sREv3IRK52Axu1/RYkwtX9+V8w==";
+ url = "https://registry.npmjs.org/@electron-forge/maker-base/-/maker-base-6.0.0-beta.60.tgz";
+ sha512 = "z31j1tWMQunHpy9tCvbwEIFaF8/3ip13NAerTOSdABj1ngH1Wj+wdGm05iIeRQVcCrGSn/IIj/u7RGZ5CIRE6g==";
};
};
- "@electron-forge/plugin-base-6.0.0-beta.59" = {
+ "@electron-forge/plugin-base-6.0.0-beta.60" = {
name = "_at_electron-forge_slash_plugin-base";
packageName = "@electron-forge/plugin-base";
- version = "6.0.0-beta.59";
+ version = "6.0.0-beta.60";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/plugin-base/-/plugin-base-6.0.0-beta.59.tgz";
- sha512 = "S30s/hfuIjKhCI2U4DwChjTx1ulGouqyorXpkHn3hlyfIXiC35T6fJ4Baw4Ng1W4BJrnZTmkVnglEHriFyV+Lg==";
+ url = "https://registry.npmjs.org/@electron-forge/plugin-base/-/plugin-base-6.0.0-beta.60.tgz";
+ sha512 = "tNRGBmh/kFr/S/EXLvuyIRZYeu8axwt4IhJem/26rSe7byJ4ynjDYvhWBhT4S+//3w/fMmuJJX47cPKPfHxjgg==";
};
};
- "@electron-forge/publisher-base-6.0.0-beta.59" = {
+ "@electron-forge/publisher-base-6.0.0-beta.60" = {
name = "_at_electron-forge_slash_publisher-base";
packageName = "@electron-forge/publisher-base";
- version = "6.0.0-beta.59";
+ version = "6.0.0-beta.60";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/publisher-base/-/publisher-base-6.0.0-beta.59.tgz";
- sha512 = "W+fKf8ehtHU6GQLZnpnyy1XS+9o2dw8PJcRBU+pQNEUcbFqBxcAJhLkfh6cGE2tQQ/rN+N77RMWEnLh9GjZMCQ==";
+ url = "https://registry.npmjs.org/@electron-forge/publisher-base/-/publisher-base-6.0.0-beta.60.tgz";
+ sha512 = "x7Zm/mukxPnvrJzP8mvhT1hohaIrAnGrDx4AKR8P2wxvz/lejU4VOJ6uRo+7w3OIi07IYJIrG52qhSyipEspqQ==";
};
};
- "@electron-forge/shared-types-6.0.0-beta.59" = {
+ "@electron-forge/shared-types-6.0.0-beta.60" = {
name = "_at_electron-forge_slash_shared-types";
packageName = "@electron-forge/shared-types";
- version = "6.0.0-beta.59";
+ version = "6.0.0-beta.60";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/shared-types/-/shared-types-6.0.0-beta.59.tgz";
- sha512 = "3tRCgfHqn5/8LijlVZsLb2xHm9W3qgzQ+KZNWXdYhb0Wj1+h6/sXn8rlxw10Mmb2mlYJEBW/NvIhpUDHgrGPXA==";
+ url = "https://registry.npmjs.org/@electron-forge/shared-types/-/shared-types-6.0.0-beta.60.tgz";
+ sha512 = "ZAD7Aj+FpdKSrVvxnY54G8GsZKQYIbFtYmVljOgwV9hRaSt70uCMME60yBv6gbKeX+FYk0UopiU5Txrna2EeKA==";
};
};
- "@electron-forge/template-base-6.0.0-beta.59" = {
+ "@electron-forge/template-base-6.0.0-beta.60" = {
name = "_at_electron-forge_slash_template-base";
packageName = "@electron-forge/template-base";
- version = "6.0.0-beta.59";
+ version = "6.0.0-beta.60";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/template-base/-/template-base-6.0.0-beta.59.tgz";
- sha512 = "PHPSHlJ72fYlk8hrEj6+6ok0Xlxz3EeFkn2DSO4ol7fjFJI7cqbaSdNuDL55CmsWsWr/3RUqk/44pn5ywmvoOg==";
+ url = "https://registry.npmjs.org/@electron-forge/template-base/-/template-base-6.0.0-beta.60.tgz";
+ sha512 = "+/BM7QMljccaBFVq5wGUuf6vi1/UJt9gJq32TRlc4srZGjKarwmr393agedXYUkej85ns2dXK3mexF2ehIh4qQ==";
};
};
- "@electron-forge/template-typescript-6.0.0-beta.59" = {
+ "@electron-forge/template-typescript-6.0.0-beta.60" = {
name = "_at_electron-forge_slash_template-typescript";
packageName = "@electron-forge/template-typescript";
- version = "6.0.0-beta.59";
+ version = "6.0.0-beta.60";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/template-typescript/-/template-typescript-6.0.0-beta.59.tgz";
- sha512 = "GD+KyNv9y1ga6RbbXwlTNVsBeg055E/92Q5+1Y/dM+f2LLx0El0whXEwBf8eJ1+AXzrBsD0JQzAFkAIFyECLkQ==";
+ url = "https://registry.npmjs.org/@electron-forge/template-typescript/-/template-typescript-6.0.0-beta.60.tgz";
+ sha512 = "FN0mbNg4jyRSbrr1+hpx7JV6wyWwclDjB6X9vItrTc9IXz+xCWWrvTDvEfziwm5GMqNZ7u7/yWyJZnehre2k6A==";
};
};
- "@electron-forge/template-typescript-webpack-6.0.0-beta.59" = {
+ "@electron-forge/template-typescript-webpack-6.0.0-beta.60" = {
name = "_at_electron-forge_slash_template-typescript-webpack";
packageName = "@electron-forge/template-typescript-webpack";
- version = "6.0.0-beta.59";
+ version = "6.0.0-beta.60";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/template-typescript-webpack/-/template-typescript-webpack-6.0.0-beta.59.tgz";
- sha512 = "OPYA8eVbkFZFIpXCVTmDJntPTatzgaESyF2+eKwN1f6/j00kvHCbREL9zbXbji3gryt0a59bT+GKigWXldln5g==";
+ url = "https://registry.npmjs.org/@electron-forge/template-typescript-webpack/-/template-typescript-webpack-6.0.0-beta.60.tgz";
+ sha512 = "UKGeLuq9Ds9/DBsu3c/99q8/6aBpFNENPjZI6kZ5CWq1wXXg+6QZaZLD+D6JAEYs3QJgAVT2bYMyvjysLglNoQ==";
};
};
- "@electron-forge/template-webpack-6.0.0-beta.59" = {
+ "@electron-forge/template-webpack-6.0.0-beta.60" = {
name = "_at_electron-forge_slash_template-webpack";
packageName = "@electron-forge/template-webpack";
- version = "6.0.0-beta.59";
+ version = "6.0.0-beta.60";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/template-webpack/-/template-webpack-6.0.0-beta.59.tgz";
- sha512 = "ScPVUQ//zqqnpr53/WY8pVygs6KVTpXsPlAoo0ZeYfOjuTRh2uSMPN0+2UnUUD5FGjLm3hkpIibUH4ZMtLu8aw==";
+ url = "https://registry.npmjs.org/@electron-forge/template-webpack/-/template-webpack-6.0.0-beta.60.tgz";
+ sha512 = "RyYLOzuQXKQ2mFV2d2DiUObWVe99rHXZ+d+PmOcysJWnNHjuEuLc8OOQQskRjFBy1pUkVCuv530Q1d1ufwY8lg==";
};
};
"@electron/get-1.13.0" = {
@@ -2416,15 +2416,6 @@ let
sha512 = "o8iU1VIY+QsqVRWARKiky29fh4KR1xaKSgMClXIi65qkt8EDDhjmlzL0KVDEoDA2GWukwb/1PpaVCWDg4v3cUQ==";
};
};
- "@fluentui/date-time-utilities-8.2.2" = {
- name = "_at_fluentui_slash_date-time-utilities";
- packageName = "@fluentui/date-time-utilities";
- version = "8.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/@fluentui/date-time-utilities/-/date-time-utilities-8.2.2.tgz";
- sha512 = "djHrX/38ty+F93qLQjzmRzPzK598CW9g/RPhQH6GyrFBLPSWM1swYKB5TP6E7FrIf+fT4pVqrNUSYZhgi2rrOQ==";
- };
- };
"@fluentui/dom-utilities-1.1.2" = {
name = "_at_fluentui_slash_dom-utilities";
packageName = "@fluentui/dom-utilities";
@@ -2434,33 +2425,6 @@ let
sha512 = "XqPS7l3YoMwxdNlaYF6S2Mp0K3FmVIOIy2K3YkMc+eRxu9wFK6emr2Q/3rBhtG5u/On37NExRT7/5CTLnoi9gw==";
};
};
- "@fluentui/dom-utilities-2.1.4" = {
- name = "_at_fluentui_slash_dom-utilities";
- packageName = "@fluentui/dom-utilities";
- version = "2.1.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/@fluentui/dom-utilities/-/dom-utilities-2.1.4.tgz";
- sha512 = "+gsAnEjgoKB37o+tsMdSLtgqZ9z2PzpvnHx/2IqhRWjQQd7Xc7MbQsbZaQ5qfkioFHLnWGc/+WORpqKPy/sWrg==";
- };
- };
- "@fluentui/font-icons-mdl2-8.1.10" = {
- name = "_at_fluentui_slash_font-icons-mdl2";
- packageName = "@fluentui/font-icons-mdl2";
- version = "8.1.10";
- src = fetchurl {
- url = "https://registry.npmjs.org/@fluentui/font-icons-mdl2/-/font-icons-mdl2-8.1.10.tgz";
- sha512 = "oxAErjUx8xqlk81lxClEqdpF05Fy+5tKndYKm27k7cRD0f6CKLjT5Hu5oWDLwcYqa1eScXZV1I5IVHKjChsBSA==";
- };
- };
- "@fluentui/foundation-legacy-8.1.10" = {
- name = "_at_fluentui_slash_foundation-legacy";
- packageName = "@fluentui/foundation-legacy";
- version = "8.1.10";
- src = fetchurl {
- url = "https://registry.npmjs.org/@fluentui/foundation-legacy/-/foundation-legacy-8.1.10.tgz";
- sha512 = "IhDS3OajyHHi+QmZlOhlXbVGFQ5TJNt2HFV6sy005jxw0xiBghG1niqjKjB09n3MfcmMdWNEkOFDpQuuyRWDjg==";
- };
- };
"@fluentui/keyboard-key-0.2.17" = {
name = "_at_fluentui_slash_keyboard-key";
packageName = "@fluentui/keyboard-key";
@@ -2470,67 +2434,22 @@ let
sha512 = "iT1bU56rKrKEOfODoW6fScY11qj3iaYrZ+z11T6fo5+TDm84UGkkXjLXJTE57ZJzg0/gbccHQWYv+chY7bJN8Q==";
};
};
- "@fluentui/keyboard-key-0.3.4" = {
- name = "_at_fluentui_slash_keyboard-key";
- packageName = "@fluentui/keyboard-key";
- version = "0.3.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/@fluentui/keyboard-key/-/keyboard-key-0.3.4.tgz";
- sha512 = "pVY2m3IC5+LLmMzsaPApX9eKTzpOzdgQwrR3FNTE6mGx3N/+QWYM7fdF+T1ldZQt87dCRSeQnmAo5kqjtxeA/w==";
- };
- };
- "@fluentui/merge-styles-8.1.5" = {
- name = "_at_fluentui_slash_merge-styles";
- packageName = "@fluentui/merge-styles";
- version = "8.1.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/@fluentui/merge-styles/-/merge-styles-8.1.5.tgz";
- sha512 = "hmEb5LnOxCTpM/6oJQJI0w5AlYzwrceozPgsMdOF5BuT5MkXPlXLK3L2auzXGNYHkoGiouH61ImsS/TSM0mV/g==";
- };
- };
- "@fluentui/react-7.174.1" = {
+ "@fluentui/react-7.175.2" = {
name = "_at_fluentui_slash_react";
packageName = "@fluentui/react";
- version = "7.174.1";
+ version = "7.175.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@fluentui/react/-/react-7.174.1.tgz";
- sha512 = "c6OF4iMImss6a+8NODme85Ekrvq6AV1jzW6BUGJ3Gc11pMuvxJsQwg5NCHzy8cXWsK7DbPP11JAM1cFNU2kG8w==";
+ url = "https://registry.npmjs.org/@fluentui/react/-/react-7.175.2.tgz";
+ sha512 = "jikYyizEWUEkXISiYKA5/bmV0Am1480rmct2nTMQZgWxnZGh00NG8jTPpr+rQKRENTyBvvpE8wZVp4/f5XKzAg==";
};
};
- "@fluentui/react-8.27.0" = {
- name = "_at_fluentui_slash_react";
- packageName = "@fluentui/react";
- version = "8.27.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@fluentui/react/-/react-8.27.0.tgz";
- sha512 = "5LSh5XVU3qy6nY949jxS3BwF7UZA6jGjcH9JOTosgtxuHZUIXkzfZlT7fyt5xp+27B1B5ro9K9u2pDjItDHVHg==";
- };
- };
- "@fluentui/react-focus-7.17.6" = {
+ "@fluentui/react-focus-7.18.0" = {
name = "_at_fluentui_slash_react-focus";
packageName = "@fluentui/react-focus";
- version = "7.17.6";
+ version = "7.18.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@fluentui/react-focus/-/react-focus-7.17.6.tgz";
- sha512 = "JkLWNDe567lhvbnIhbYv9nUWYDIVN06utc3krs0UZBI+A0YZtQmftBtY0ghXo4PSjgozZocdu9sYkkgZOgyRLg==";
- };
- };
- "@fluentui/react-focus-8.2.1" = {
- name = "_at_fluentui_slash_react-focus";
- packageName = "@fluentui/react-focus";
- version = "8.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@fluentui/react-focus/-/react-focus-8.2.1.tgz";
- sha512 = "kPGlyc8sj/1OjY/juaOG/CATc0GPsAkbFj8JNbPGPkcxdSkr1hVN4AQq34E8ddVe5d/t+Nevftl9kkYAAxfnoA==";
- };
- };
- "@fluentui/react-hooks-8.3.1" = {
- name = "_at_fluentui_slash_react-hooks";
- packageName = "@fluentui/react-hooks";
- version = "8.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@fluentui/react-hooks/-/react-hooks-8.3.1.tgz";
- sha512 = "fgkL4/4m8ds7dK6+o6qfk9Ok1ssbTV3dA7k1w5xZgw/FE4AWTt6zfLx9HhGpxF71l0X+R0DCWWb6W/LqE7+Ylg==";
+ url = "https://registry.npmjs.org/@fluentui/react-focus/-/react-focus-7.18.0.tgz";
+ sha512 = "+ykERyl/Cah9ixBqYtA4DWG5UDg61oNd0T78xKZ/ZeKzAUk2LanEQd2QQ/VX6/UFqWrHsK3IiEUFmZCQhp4wfQ==";
};
};
"@fluentui/react-window-provider-1.0.2" = {
@@ -2542,33 +2461,6 @@ let
sha512 = "fGSgL3Vp/+6t1Ysfz21FWZmqsU+iFVxOigvHnm5uKVyyRPwtaabv/F6kQ2y5isLMI2YmJaUd2i0cDJKu8ggrvw==";
};
};
- "@fluentui/react-window-provider-2.1.4" = {
- name = "_at_fluentui_slash_react-window-provider";
- packageName = "@fluentui/react-window-provider";
- version = "2.1.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/@fluentui/react-window-provider/-/react-window-provider-2.1.4.tgz";
- sha512 = "RztmJ7ol2eMDr3NCs2OcAA1cQjZdPPUEa4aurgh4Aq+JM/BiY0aK6S4SeFtVD7F8Q7PBOz/xwOG4HlnSMQtlsg==";
- };
- };
- "@fluentui/set-version-8.1.4" = {
- name = "_at_fluentui_slash_set-version";
- packageName = "@fluentui/set-version";
- version = "8.1.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/@fluentui/set-version/-/set-version-8.1.4.tgz";
- sha512 = "2otMyJ+s+W+hjBD4BKjwYKKinJUDeIKYKz93qKrrJS0i3fKfftNroy9dHFlIblZ7n747L334plLi3bzQO1bnvA==";
- };
- };
- "@fluentui/style-utilities-8.3.1" = {
- name = "_at_fluentui_slash_style-utilities";
- packageName = "@fluentui/style-utilities";
- version = "8.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@fluentui/style-utilities/-/style-utilities-8.3.1.tgz";
- sha512 = "EEaol+tIgTwEI8iHQfJHA7w2xtl7B+ofkheyMIK/97ONVqD4onf42p5r34rmuBhgIo4pXQsEQDPb5b5ClSzDFw==";
- };
- };
"@fluentui/theme-1.7.4" = {
name = "_at_fluentui_slash_theme";
packageName = "@fluentui/theme";
@@ -2578,24 +2470,6 @@ let
sha512 = "o4eo7lstLxxXl1g2RR9yz18Yt8yjQO/LbQuZjsiAfv/4Bf0CRnb+3j1F7gxIdBWAchKj9gzaMpIFijfI98pvYQ==";
};
};
- "@fluentui/theme-2.3.1" = {
- name = "_at_fluentui_slash_theme";
- packageName = "@fluentui/theme";
- version = "2.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@fluentui/theme/-/theme-2.3.1.tgz";
- sha512 = "S+AM8+Jg5/KMQYcxcN6LcZPA51pXVVapnkk1eMGKQYDdJ4KS4r50L2OkIPVfbFn3uiW8VZOesHMsvBTnvZfdng==";
- };
- };
- "@fluentui/utilities-8.3.1" = {
- name = "_at_fluentui_slash_utilities";
- packageName = "@fluentui/utilities";
- version = "8.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@fluentui/utilities/-/utilities-8.3.1.tgz";
- sha512 = "V/6bokboB7J1di6XWnS2AuT1A2x0N8BvfCbdaTqvrmCarmViaY/3cawO8shV91d+ahiR2ZzN0CqOMkIDvjr4tA==";
- };
- };
"@gar/promisify-1.1.2" = {
name = "_at_gar_slash_promisify";
packageName = "@gar/promisify";
@@ -2695,13 +2569,13 @@ let
sha512 = "5k2SNz0W87tDcymhEMZMkd6/vs6QawDyjQXWtqkuLTBF3vxjxPD1I4dwHoxgWPIjjANhXybvulD7E+St/7s9TQ==";
};
};
- "@graphql-tools/import-6.3.1" = {
+ "@graphql-tools/import-6.4.0" = {
name = "_at_graphql-tools_slash_import";
packageName = "@graphql-tools/import";
- version = "6.3.1";
+ version = "6.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@graphql-tools/import/-/import-6.3.1.tgz";
- sha512 = "1szR19JI6WPibjYurMLdadHKZoG9C//8I/FZ0Dt4vJSbrMdVNp8WFxg4QnZrDeMG4MzZc90etsyF5ofKjcC+jw==";
+ url = "https://registry.npmjs.org/@graphql-tools/import/-/import-6.4.0.tgz";
+ sha512 = "jfE01oPcmc4vzAcYLs6xT7XC4jJWrM1HNtIwc7HyyHTxrC3nf36XrF3txEZ2l20GT53+OWnMgYx1HhauLGdJmA==";
};
};
"@graphql-tools/json-file-loader-6.2.6" = {
@@ -2740,22 +2614,22 @@ let
sha512 = "G5YrOew39fZf16VIrc49q3c8dBqQDD0ax5LYPiNja00xsXDi0T9zsEWVt06ApjtSdSF6HDddlu5S12QjeN8Tow==";
};
};
- "@graphql-tools/merge-8.0.3" = {
+ "@graphql-tools/merge-8.1.2" = {
name = "_at_graphql-tools_slash_merge";
packageName = "@graphql-tools/merge";
- version = "8.0.3";
+ version = "8.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.0.3.tgz";
- sha512 = "lVMyW9cREs+nQYbUvMaaqSl+pRCezl2RafNMFi/04akjvOtjVefdi7n3pArpSqPhLHPJDyQRlI8CK8cmOZ9jTA==";
+ url = "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.1.2.tgz";
+ sha512 = "kFLd4kKNJXYXnKIhM8q9zgGAtbLmsy3WmGdDxYq3YHBJUogucAxnivQYyRIseUq37KGmSAIWu3pBQ23TKGsGOw==";
};
};
- "@graphql-tools/mock-8.2.2" = {
+ "@graphql-tools/mock-8.3.1" = {
name = "_at_graphql-tools_slash_mock";
packageName = "@graphql-tools/mock";
- version = "8.2.2";
+ version = "8.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@graphql-tools/mock/-/mock-8.2.2.tgz";
- sha512 = "3cUJi14UHW1/8mebbXlAqfZl78IxeKzF2QlcJV5PSRQe27Dp/UnkHyid1UH/iwBdA98J7l0uw8NU1MRRVjhjIA==";
+ url = "https://registry.npmjs.org/@graphql-tools/mock/-/mock-8.3.1.tgz";
+ sha512 = "iJ3GeQ10Vqa0Tg4QJHiulxUUI4r84RAvltM3Sc+XPj07QlrLzMHOHO/goO7FC4TN2/HVncj7pWHwrmLPT9du/Q==";
};
};
"@graphql-tools/schema-7.1.5" = {
@@ -2767,13 +2641,13 @@ let
sha512 = "uyn3HSNSckf4mvQSq0Q07CPaVZMNFCYEVxroApOaw802m9DcZPgf9XVPy/gda5GWj9AhbijfRYVTZQgHnJ4CXA==";
};
};
- "@graphql-tools/schema-8.1.2" = {
+ "@graphql-tools/schema-8.2.0" = {
name = "_at_graphql-tools_slash_schema";
packageName = "@graphql-tools/schema";
- version = "8.1.2";
+ version = "8.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@graphql-tools/schema/-/schema-8.1.2.tgz";
- sha512 = "rX2pg42a0w7JLVYT+f/yeEKpnoZL5PpLq68TxC3iZ8slnNBNjfVfvzzOn8Q8Q6Xw3t17KP9QespmJEDfuQe4Rg==";
+ url = "https://registry.npmjs.org/@graphql-tools/schema/-/schema-8.2.0.tgz";
+ sha512 = "ufmI5mJQa8NJczzfkh0pUttKvspqDcT5LLakA3jUmOrrE4d4NVj6onZlazdTzF5sAepSNqanFnwhrxZpCAJMKg==";
};
};
"@graphql-tools/url-loader-6.10.1" = {
@@ -2812,13 +2686,13 @@ let
sha512 = "gzkavMOgbhnwkHJYg32Adv6f+LxjbQmmbdD5Hty0+CWxvaiuJq+nU6tzb/7VSU4cwhbNLx/lGu2jbCPEW1McZQ==";
};
};
- "@graphql-tools/utils-8.1.2" = {
+ "@graphql-tools/utils-8.2.2" = {
name = "_at_graphql-tools_slash_utils";
packageName = "@graphql-tools/utils";
- version = "8.1.2";
+ version = "8.2.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.1.2.tgz";
- sha512 = "3G+NIBR5mHjPm78jAD0l07JRE0XH+lr9m7yL/wl69jAzK0Jr/H+/Ok4ljEolI70iglz+ZhIShVPAwyesF6rnFg==";
+ url = "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.2.2.tgz";
+ sha512 = "29FFY5U4lpXuBiW9dRvuWnBVwGhWbGLa2leZcAMU/Pz47Cr/QLZGVgpLBV9rt+Gbs7wyIJM7t7EuksPs0RDm3g==";
};
};
"@graphql-tools/wrap-7.0.8" = {
@@ -3271,22 +3145,22 @@ let
sha512 = "fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==";
};
};
- "@joplin/fork-htmlparser2-4.1.33" = {
+ "@joplin/fork-htmlparser2-4.1.34" = {
name = "_at_joplin_slash_fork-htmlparser2";
packageName = "@joplin/fork-htmlparser2";
- version = "4.1.33";
+ version = "4.1.34";
src = fetchurl {
- url = "https://registry.npmjs.org/@joplin/fork-htmlparser2/-/fork-htmlparser2-4.1.33.tgz";
- sha512 = "Q5GR6mVKS/1JgNTHtS0hc08YexfVZIq9RAj9j33Zm9SXEDstXn0WP4UpULCWLYOen3ffJ2z4uv9a2vLKcvbbIg==";
+ url = "https://registry.npmjs.org/@joplin/fork-htmlparser2/-/fork-htmlparser2-4.1.34.tgz";
+ sha512 = "1/tQZEDnI36RaEJte0eumw1/c8OhmJOpgFyW+Nxsk2u/vvcgnEvjFjauiH2ZxtO5FTJB3BMQ4M23+Y5dw2cnnw==";
};
};
- "@joplin/fork-sax-1.2.37" = {
+ "@joplin/fork-sax-1.2.38" = {
name = "_at_joplin_slash_fork-sax";
packageName = "@joplin/fork-sax";
- version = "1.2.37";
+ version = "1.2.38";
src = fetchurl {
- url = "https://registry.npmjs.org/@joplin/fork-sax/-/fork-sax-1.2.37.tgz";
- sha512 = "3S71WcFLsZQ4tlZ7LNZRBoEE0LJJL8gxhqwAKZXKYTF5syShZDNWwSpntB4AoFWry3L0I+HnjXm2psQfQzo15Q==";
+ url = "https://registry.npmjs.org/@joplin/fork-sax/-/fork-sax-1.2.38.tgz";
+ sha512 = "XRwYieoXtTdjwOT4J1FpWVnOZe1f2KSNK2KXe7s4UiLxhVKQWPQrqgP8xoNyHH5/Y78fqwajU4pYvRgctNqdfw==";
};
};
"@joplin/lib-2.3.1" = {
@@ -3307,22 +3181,22 @@ let
sha512 = "wOxuScEao2f3kIs+A0qroWe6CiWs1LeZqwBz/w869Qi8MW8wvy2aeyirpnb7yEYh9aCevfiQcUMUvYZ9ekMskg==";
};
};
- "@joplin/turndown-4.0.55" = {
+ "@joplin/turndown-4.0.56" = {
name = "_at_joplin_slash_turndown";
packageName = "@joplin/turndown";
- version = "4.0.55";
+ version = "4.0.56";
src = fetchurl {
- url = "https://registry.npmjs.org/@joplin/turndown/-/turndown-4.0.55.tgz";
- sha512 = "9IgtCAQXzCtkXNE+/4q6dWnbt90kvZIefTLFXLxE+w/gLbBDxSmTCfhCCFPzUA1ORp3LkAJZIiE710fRM0O3gg==";
+ url = "https://registry.npmjs.org/@joplin/turndown/-/turndown-4.0.56.tgz";
+ sha512 = "5odtgBk4u1c+IehuvS7/C3yxCY96UMiUdVdoSpyk5m11nLupEr5LA1oQ1JAJTehUk5cuJR+rofD67m+XgZt+tQ==";
};
};
- "@joplin/turndown-plugin-gfm-1.0.37" = {
+ "@joplin/turndown-plugin-gfm-1.0.38" = {
name = "_at_joplin_slash_turndown-plugin-gfm";
packageName = "@joplin/turndown-plugin-gfm";
- version = "1.0.37";
+ version = "1.0.38";
src = fetchurl {
- url = "https://registry.npmjs.org/@joplin/turndown-plugin-gfm/-/turndown-plugin-gfm-1.0.37.tgz";
- sha512 = "LRiIezmtnJSdczIT3mPuCvUIdFT01lDYTBDdSNGwBheNt7R9tYIj0nh87OnpBGztktIIsOH/66nbB8KQjVtisQ==";
+ url = "https://registry.npmjs.org/@joplin/turndown-plugin-gfm/-/turndown-plugin-gfm-1.0.38.tgz";
+ sha512 = "STRS9Y1YkxmKO2pEEkbUAp8KxLW+41rm3Dom0uGMw4kAYLDcxbOscu6XScLRvRtleftU6YS7aZd+4/9SBx75Zw==";
};
};
"@josephg/resolvable-1.0.1" = {
@@ -4135,13 +4009,13 @@ let
sha512 = "W6CLUJ2eBMw3Rec70qrsEW0jOm/3twwJv21mrmj2yORiaVmVYGS4sSS5yUwvQc1ZlDLYGPnClVWmUUMagKNsfA==";
};
};
- "@microsoft/load-themed-styles-1.10.203" = {
+ "@microsoft/load-themed-styles-1.10.207" = {
name = "_at_microsoft_slash_load-themed-styles";
packageName = "@microsoft/load-themed-styles";
- version = "1.10.203";
+ version = "1.10.207";
src = fetchurl {
- url = "https://registry.npmjs.org/@microsoft/load-themed-styles/-/load-themed-styles-1.10.203.tgz";
- sha512 = "9UV+1kIAEdV1a8JI58iOpDc7mmFdgTW5qI4pAyL4Drk468ZCPmg/tHPbgAM/Pg8EtkWyIJm5E6KVofo+meavQQ==";
+ url = "https://registry.npmjs.org/@microsoft/load-themed-styles/-/load-themed-styles-1.10.207.tgz";
+ sha512 = "ZFLYVCBn59Rh7JUVRZd3zjiH/dM7LAItGchC2Xs66XQnDhyq8dwuuIxmJmeozhQcklcLt3SnRHQPENDjb5w03w==";
};
};
"@mitmaro/errors-1.0.0" = {
@@ -4189,22 +4063,13 @@ let
sha512 = "Vwhc3ObxmDZmA5hY8mfsau2rJ4vGPvzbj20QSZ2/E1GDPF61QVyjLfNHak9xmel6pW4heRt3v1fHa6np9Ehfeg==";
};
};
- "@msgpack/msgpack-2.7.0" = {
+ "@msgpack/msgpack-2.7.1" = {
name = "_at_msgpack_slash_msgpack";
packageName = "@msgpack/msgpack";
- version = "2.7.0";
+ version = "2.7.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@msgpack/msgpack/-/msgpack-2.7.0.tgz";
- sha512 = "mlRYq9FSsOd4m+3wZWatemn3hGFZPWNJ4JQOdrir4rrMK2PyIk26idKBoUWrqF3HJJHl+5GpRU+M0wEruJwecg==";
- };
- };
- "@napi-rs/triples-1.0.3" = {
- name = "_at_napi-rs_slash_triples";
- packageName = "@napi-rs/triples";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/@napi-rs/triples/-/triples-1.0.3.tgz";
- sha512 = "jDJTpta+P4p1NZTFVLHJ/TLFVYVcOqv6l8xwOeBKNPMgY/zDYH/YH7SJbvrr/h1RcS9GzbPcLKGzpuK9cV56UA==";
+ url = "https://registry.npmjs.org/@msgpack/msgpack/-/msgpack-2.7.1.tgz";
+ sha512 = "ApwiSL2c9ObewdOE/sqt788P1C5lomBOHyO8nUBCr4ofErBCnYQ003NtJ8lS9OQZc11ximkbmgAZJjB8y6cCdA==";
};
};
"@nestjs/schematics-8.0.3" = {
@@ -4225,13 +4090,13 @@ let
sha512 = "b+MGNyP9/LXkapreJzNUzcvuzZslj/RGgdVVJ16P2wSlYatfLycPObImqVJSmNAdyeShvNeM/pl3sVZsObFueg==";
};
};
- "@netlify/build-18.6.0" = {
+ "@netlify/build-18.8.0" = {
name = "_at_netlify_slash_build";
packageName = "@netlify/build";
- version = "18.6.0";
+ version = "18.8.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@netlify/build/-/build-18.6.0.tgz";
- sha512 = "rUkJp68Q7Of6nWflbVRKhD/ZqAu3LGcxSYPX28Y94Q6LVnvz27dwF0gufkdDJX6cQk8P5OvIZJVYzfPQITfYow==";
+ url = "https://registry.npmjs.org/@netlify/build/-/build-18.8.0.tgz";
+ sha512 = "6xU3mGfkSPJlhK5r0y9fMgBRmQFzs6UxPB4MLQ6hmufL/Tj4vFx56hCXX5+fADpThe0uMw+ubNbMr0L44b5gzQ==";
};
};
"@netlify/cache-utils-2.0.3" = {
@@ -4243,13 +4108,13 @@ let
sha512 = "820dYhacTHXKxpYm81VlmCJ48ySGj+6GZi1oPLevdTSkMXGM1BphBKUjM/r9+GUE1ocGOh8Vdt3PsDp8f7gS4w==";
};
};
- "@netlify/config-15.5.0" = {
+ "@netlify/config-15.6.0" = {
name = "_at_netlify_slash_config";
packageName = "@netlify/config";
- version = "15.5.0";
+ version = "15.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@netlify/config/-/config-15.5.0.tgz";
- sha512 = "c+ICajSGQ7gD6O1V0wsl9SFxSC+owzg5JQyW9SBKV68nDxQBMwn31QHOHijopWeDPMQnp+gIHc2/wgwwtQ2YMQ==";
+ url = "https://registry.npmjs.org/@netlify/config/-/config-15.6.0.tgz";
+ sha512 = "PqCWAnxR5jI7VyyG8MH58ZjIzGaUfIbuvf4jPnlMwvyXfUaIBf5iZPNumPm2hNZSMeNWtkJa9juGsCw+2cu7mg==";
};
};
"@netlify/esbuild-0.13.6" = {
@@ -4423,13 +4288,13 @@ let
sha512 = "tFb7J6+YEtZP0OYpS/b9Rjp1lm02XfhAQR6KRHAaeRlHp98/zgd0hhubfwXUCppP2BLfn+imkeVS0FnANh5B3g==";
};
};
- "@netlify/plugins-list-3.5.0" = {
+ "@netlify/plugins-list-3.6.0" = {
name = "_at_netlify_slash_plugins-list";
packageName = "@netlify/plugins-list";
- version = "3.5.0";
+ version = "3.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@netlify/plugins-list/-/plugins-list-3.5.0.tgz";
- sha512 = "qBJC80fWY1T/UrvOsr/54ftfBoL2uybjzWuTZY8uYG2DnlJ4OaWjM3O9Srf7LXxHL3pdwV7kfdr9fQ6gbmARKg==";
+ url = "https://registry.npmjs.org/@netlify/plugins-list/-/plugins-list-3.6.0.tgz";
+ sha512 = "yRgsmBw8Wzk6/I/afcerhC+3XtVxXUF0xrSMOYgxV0bmaKJmB/0StJG4FY9TOAmb/IzCp82mR/63ZpzwIvpVzw==";
};
};
"@netlify/routing-local-proxy-0.31.0" = {
@@ -4459,184 +4324,58 @@ let
sha512 = "+wo8rupUJbrfw/lEBPccVP+GhFEJEbzx7M67eSEWxqwQkUKtZIHbBc6Ile+iVXqFnLyM2ryfxLTcSIm1pc797g==";
};
};
- "@node-red/editor-api-2.0.5" = {
+ "@node-red/editor-api-2.0.6" = {
name = "_at_node-red_slash_editor-api";
packageName = "@node-red/editor-api";
- version = "2.0.5";
+ version = "2.0.6";
src = fetchurl {
- url = "https://registry.npmjs.org/@node-red/editor-api/-/editor-api-2.0.5.tgz";
- sha512 = "efiWLuNk/lwpIULt4Bu8WycW9+v6xVx0VHAK+j1y8Kl5S6u6sbfkTlmDDpaN2NqPHGdMT+roF9EHKHISTmVN9g==";
+ url = "https://registry.npmjs.org/@node-red/editor-api/-/editor-api-2.0.6.tgz";
+ sha512 = "jSC00TetcU1sQHR5SNo+R8IxEKbJWmBAeCcHd0EWDMb4ikcN1wwteQfYPOr2ID8HnsSEIBlpN8K3Hrezo3+KcQ==";
};
};
- "@node-red/editor-client-2.0.5" = {
+ "@node-red/editor-client-2.0.6" = {
name = "_at_node-red_slash_editor-client";
packageName = "@node-red/editor-client";
- version = "2.0.5";
+ version = "2.0.6";
src = fetchurl {
- url = "https://registry.npmjs.org/@node-red/editor-client/-/editor-client-2.0.5.tgz";
- sha512 = "C/Vu7NZX3VGTU/LEXxDUTxEEDu/NFIbAOCAJAcvJKdNPEL4InwTF75PRRiWsfeDu8DhBnvFqFe9XTS4fr+nrPA==";
+ url = "https://registry.npmjs.org/@node-red/editor-client/-/editor-client-2.0.6.tgz";
+ sha512 = "uhQJcKGX7Ypa1eaebrWM6rneEkn4FniEo3zZqTzwD+VZf4rAwNeE0ZV7Z85DL4xmmPKfUmuA4Fte7TYcjqk80g==";
};
};
- "@node-red/nodes-2.0.5" = {
+ "@node-red/nodes-2.0.6" = {
name = "_at_node-red_slash_nodes";
packageName = "@node-red/nodes";
- version = "2.0.5";
+ version = "2.0.6";
src = fetchurl {
- url = "https://registry.npmjs.org/@node-red/nodes/-/nodes-2.0.5.tgz";
- sha512 = "o9hdie+2YtjoMFFe+vAcIkkHPJIO5pkPrRUNQcx7EHzXPEMP0uxhhr/DpC/J6AQ0tOlfS6shWKge0E4bBKfJDQ==";
+ url = "https://registry.npmjs.org/@node-red/nodes/-/nodes-2.0.6.tgz";
+ sha512 = "KBUEUdJ89zRb1v1x+ZGrAv3MWfDJx+b+ClH83h1Ibqn2haJ+jfTBE1kZUEJaNP0Dm0CC/n4Ll9lrWnEoSSI8aQ==";
};
};
- "@node-red/registry-2.0.5" = {
+ "@node-red/registry-2.0.6" = {
name = "_at_node-red_slash_registry";
packageName = "@node-red/registry";
- version = "2.0.5";
+ version = "2.0.6";
src = fetchurl {
- url = "https://registry.npmjs.org/@node-red/registry/-/registry-2.0.5.tgz";
- sha512 = "UVM1UFuyNGtyLIL3Fjme67uvlxiiQlYVrabFwzUa0u2zHWf0YpzIQgcwtFY9kIuj3h0rVIN+EzuPZIbQZVISNw==";
+ url = "https://registry.npmjs.org/@node-red/registry/-/registry-2.0.6.tgz";
+ sha512 = "EhxxmUnCpYXztMlalVYkzaIi5eRGMM1rJvdFgQBIx5WWUkZ1h40a4KgnbbJ/VUthKaQLqbq62P0SX5ZU8RCtww==";
};
};
- "@node-red/runtime-2.0.5" = {
+ "@node-red/runtime-2.0.6" = {
name = "_at_node-red_slash_runtime";
packageName = "@node-red/runtime";
- version = "2.0.5";
+ version = "2.0.6";
src = fetchurl {
- url = "https://registry.npmjs.org/@node-red/runtime/-/runtime-2.0.5.tgz";
- sha512 = "eK55TQ+iTX0xZy8k4eW3JJCHywgnxpszuKg1aXurKD1sBURGa9qNztB/IW+0T0upnRYgQSTTI8j//msG6s76LQ==";
+ url = "https://registry.npmjs.org/@node-red/runtime/-/runtime-2.0.6.tgz";
+ sha512 = "AdEYjEKl4wVFjV2Xhx2BBJCDVZVMer/9PmSaUQJVFjYKkn7ouazGjtHPxowcSeAYF0WpRfb66ceRe7ZHaRbqXw==";
};
};
- "@node-red/util-2.0.5" = {
+ "@node-red/util-2.0.6" = {
name = "_at_node-red_slash_util";
packageName = "@node-red/util";
- version = "2.0.5";
+ version = "2.0.6";
src = fetchurl {
- url = "https://registry.npmjs.org/@node-red/util/-/util-2.0.5.tgz";
- sha512 = "+RF8i+LxgyXcAIKjKyht3rRZFBEhrvgXKN2/HlkMWerADwiDTNfBL8JjQZoMKlFKl1cgapp8vp4P1Xf3glH+fQ==";
- };
- };
- "@node-rs/crc32-1.2.1" = {
- name = "_at_node-rs_slash_crc32";
- packageName = "@node-rs/crc32";
- version = "1.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@node-rs/crc32/-/crc32-1.2.1.tgz";
- sha512 = "Hw9QJPisg1ZR9Rj6w3sQLcEZkPanu1RLb4yk0Wq0cT4RNYssw35RtOkN/x/tW9iIMLq2YjHUyb6tun82dLVTPQ==";
- };
- };
- "@node-rs/crc32-android-arm64-1.2.1" = {
- name = "_at_node-rs_slash_crc32-android-arm64";
- packageName = "@node-rs/crc32-android-arm64";
- version = "1.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@node-rs/crc32-android-arm64/-/crc32-android-arm64-1.2.1.tgz";
- sha512 = "SWz9X44WQzZqzURYz4DY3DccB97T+aKJl+i6rvREwf1Y5suWiPdxU4xqg9zZ66aG6XeE3ts+WeqKH26bVbZTQA==";
- };
- };
- "@node-rs/crc32-darwin-arm64-1.2.1" = {
- name = "_at_node-rs_slash_crc32-darwin-arm64";
- packageName = "@node-rs/crc32-darwin-arm64";
- version = "1.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@node-rs/crc32-darwin-arm64/-/crc32-darwin-arm64-1.2.1.tgz";
- sha512 = "JKKYEc5YKrZZ0CQ0nXSLCraU+6b9SldGU3/Wf3s4WCzYGkkB4XtMwjx3t7bGZAGmZ2ZcRy9M2EGJ8tUfV8cOOg==";
- };
- };
- "@node-rs/crc32-darwin-x64-1.2.1" = {
- name = "_at_node-rs_slash_crc32-darwin-x64";
- packageName = "@node-rs/crc32-darwin-x64";
- version = "1.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@node-rs/crc32-darwin-x64/-/crc32-darwin-x64-1.2.1.tgz";
- sha512 = "BaWeOdzJ73MyrChWQqQkJEKM9jRUjb19tE7PbFhG8cZPVxBFyxgTFNuBrR0xHOByCHI4QXSBvNCLEfawHbsscQ==";
- };
- };
- "@node-rs/crc32-freebsd-x64-1.2.1" = {
- name = "_at_node-rs_slash_crc32-freebsd-x64";
- packageName = "@node-rs/crc32-freebsd-x64";
- version = "1.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@node-rs/crc32-freebsd-x64/-/crc32-freebsd-x64-1.2.1.tgz";
- sha512 = "ZzAJS9EwUwvclfhvDT6vn0CYpU4CAvDYpPjXb+e0bsFbvqoh8mQcXvzK1myU3fSjjKUU47Pp5wLe68vW+2Q0Pw==";
- };
- };
- "@node-rs/crc32-linux-arm-gnueabihf-1.2.1" = {
- name = "_at_node-rs_slash_crc32-linux-arm-gnueabihf";
- packageName = "@node-rs/crc32-linux-arm-gnueabihf";
- version = "1.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@node-rs/crc32-linux-arm-gnueabihf/-/crc32-linux-arm-gnueabihf-1.2.1.tgz";
- sha512 = "6nRDyFgGsLc9bqaiK21KANqAdeh+9ZOHf3MY9HWvZoGQnxj2/LwvSHyaeG9ut+TvkL+Ic2hMtjLDNYYBaUcImw==";
- };
- };
- "@node-rs/crc32-linux-arm64-gnu-1.2.1" = {
- name = "_at_node-rs_slash_crc32-linux-arm64-gnu";
- packageName = "@node-rs/crc32-linux-arm64-gnu";
- version = "1.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@node-rs/crc32-linux-arm64-gnu/-/crc32-linux-arm64-gnu-1.2.1.tgz";
- sha512 = "ZNluh2Wse68JgLGRl75fkLmVkAPSb1LE/2OdPXKZ85ExGYB5/3el2nE1CnysbqxqzL/Cc6kJ7UnsI/cxSe/D4Q==";
- };
- };
- "@node-rs/crc32-linux-arm64-musl-1.2.1" = {
- name = "_at_node-rs_slash_crc32-linux-arm64-musl";
- packageName = "@node-rs/crc32-linux-arm64-musl";
- version = "1.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@node-rs/crc32-linux-arm64-musl/-/crc32-linux-arm64-musl-1.2.1.tgz";
- sha512 = "e490eNo9GB57koS4gabDeZ+f7wB3/SNtPbdXPk7bBNSFAB0gPdrqxiVUzLkY6AALVPR/juQGRb+geJOp1Oja/g==";
- };
- };
- "@node-rs/crc32-linux-x64-gnu-1.2.1" = {
- name = "_at_node-rs_slash_crc32-linux-x64-gnu";
- packageName = "@node-rs/crc32-linux-x64-gnu";
- version = "1.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@node-rs/crc32-linux-x64-gnu/-/crc32-linux-x64-gnu-1.2.1.tgz";
- sha512 = "laJ7cAzYfNk+h3OOSwYsDdxfp1bXnpWqXVObXvylwHZQwIqUqTC5GCOa6kMMz2ElzJ9gDBgVvLplI8QX7BQnwA==";
- };
- };
- "@node-rs/crc32-linux-x64-musl-1.2.1" = {
- name = "_at_node-rs_slash_crc32-linux-x64-musl";
- packageName = "@node-rs/crc32-linux-x64-musl";
- version = "1.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@node-rs/crc32-linux-x64-musl/-/crc32-linux-x64-musl-1.2.1.tgz";
- sha512 = "d6DyJMgIg4E2E+GHeIYMImqDd+iaGQjwGrzLDqO1TaC08yE63chlvCMNNoQ5k2c8mzdWH2VX72IapWT5nArR0A==";
- };
- };
- "@node-rs/crc32-win32-arm64-msvc-1.2.1" = {
- name = "_at_node-rs_slash_crc32-win32-arm64-msvc";
- packageName = "@node-rs/crc32-win32-arm64-msvc";
- version = "1.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@node-rs/crc32-win32-arm64-msvc/-/crc32-win32-arm64-msvc-1.2.1.tgz";
- sha512 = "qwDzpv/9oZcK6SrFomALjYDMkEhtjfxNmjhCYKDgeXvAkTAdwzpVdj+8PDyyBN63afpVndDnBqGhSEwHJPB6aQ==";
- };
- };
- "@node-rs/crc32-win32-ia32-msvc-1.2.1" = {
- name = "_at_node-rs_slash_crc32-win32-ia32-msvc";
- packageName = "@node-rs/crc32-win32-ia32-msvc";
- version = "1.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@node-rs/crc32-win32-ia32-msvc/-/crc32-win32-ia32-msvc-1.2.1.tgz";
- sha512 = "g/3UVw8LBmsTn+DUD39WDhfcL+S0pILBz/3+HM9QxbY2ptPxI8QtEK0sTIBAKTcRjq6dS8MmtcDWBFsDTs+/mQ==";
- };
- };
- "@node-rs/crc32-win32-x64-msvc-1.2.1" = {
- name = "_at_node-rs_slash_crc32-win32-x64-msvc";
- packageName = "@node-rs/crc32-win32-x64-msvc";
- version = "1.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@node-rs/crc32-win32-x64-msvc/-/crc32-win32-x64-msvc-1.2.1.tgz";
- sha512 = "BGTEFRdIk6Vq9BSC3VuBVYKadZXOhhtPT8LUfz4s9cK3k8ba6nFzKIbOm5UsPIUSz2lRqlWdHQQWVaCoGAAvbQ==";
- };
- };
- "@node-rs/helper-1.2.1" = {
- name = "_at_node-rs_slash_helper";
- packageName = "@node-rs/helper";
- version = "1.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/@node-rs/helper/-/helper-1.2.1.tgz";
- sha512 = "R5wEmm8nbuQU0YGGmYVjEc0OHtYsuXdpRG+Ut/3wZ9XAvQWyThN08bTh2cBJgoZxHQUPtvRfeQuxcAgLuiBISg==";
+ url = "https://registry.npmjs.org/@node-red/util/-/util-2.0.6.tgz";
+ sha512 = "ZyUIAyZwtxdBOFiFRIBQZieP+ahviAGfXZowA9KOWTFp3BRZIq3OLWldlS/tQk29PaqZmt8MK94/DSqEsZNN0A==";
};
};
"@nodelib/fs.scandir-2.1.5" = {
@@ -4675,13 +4414,13 @@ let
sha512 = "oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==";
};
};
- "@npmcli/arborist-2.8.2" = {
+ "@npmcli/arborist-2.8.3" = {
name = "_at_npmcli_slash_arborist";
packageName = "@npmcli/arborist";
- version = "2.8.2";
+ version = "2.8.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@npmcli/arborist/-/arborist-2.8.2.tgz";
- sha512 = "6E1XJ0YXBaI9J+25gcTF110MGNx3jv6npr4Rz1U0UAqkuVV7bbDznVJvNqi6F0p8vgrE+Smf9jDTn1DR+7uBjQ==";
+ url = "https://registry.npmjs.org/@npmcli/arborist/-/arborist-2.8.3.tgz";
+ sha512 = "miFcxbZjmQqeFTeRSLLh+lc/gxIKDO5L4PVCp+dp+kmcwJmYsEJmF7YvHR2yi3jF+fxgvLf3CCFzboPIXAuabg==";
};
};
"@npmcli/ci-detect-1.3.0" = {
@@ -4819,13 +4558,13 @@ let
sha512 = "Lmfuf6ubjQ4ifC/9bz1fSCHc6F6E653oyaRXxg+lgT4+bYf9bk+nqrUpAbrXyABkCqgIBiFr3J4zR/kiFdE1PA==";
};
};
- "@oclif/core-0.5.32" = {
+ "@oclif/core-0.5.35" = {
name = "_at_oclif_slash_core";
packageName = "@oclif/core";
- version = "0.5.32";
+ version = "0.5.35";
src = fetchurl {
- url = "https://registry.npmjs.org/@oclif/core/-/core-0.5.32.tgz";
- sha512 = "ZRGh/9IccLT/iyJ9FiTK2KdqPmxewkCkdFXkNhTVgtzQXI3ZFhDba3pFjxfI+nbhbrVRLfGzTnHXV6c4rka6pw==";
+ url = "https://registry.npmjs.org/@oclif/core/-/core-0.5.35.tgz";
+ sha512 = "5nTd+lOcDh1QPa9mM74qFChmApp5oHnP3EqYGYwqhfA3ad4qIfyYEn8pKxf0MlrYoPA8j2PrmceuRZThstKssA==";
};
};
"@oclif/errors-1.3.5" = {
@@ -4936,22 +4675,22 @@ let
sha512 = "lF3puPwkQWGfkMClXb4k/eUT/nZKQfxinRWJrdZaJO85Dqwo/G0yOC434Jr2ojwafWJMYqFGFa5ms4jJUgujdA==";
};
};
- "@octokit/graphql-4.6.4" = {
+ "@octokit/graphql-4.8.0" = {
name = "_at_octokit_slash_graphql";
packageName = "@octokit/graphql";
- version = "4.6.4";
+ version = "4.8.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@octokit/graphql/-/graphql-4.6.4.tgz";
- sha512 = "SWTdXsVheRmlotWNjKzPOb6Js6tjSqA2a8z9+glDJng0Aqjzti8MEWOtuT8ZSu6wHnci7LZNuarE87+WJBG4vg==";
+ url = "https://registry.npmjs.org/@octokit/graphql/-/graphql-4.8.0.tgz";
+ sha512 = "0gv+qLSBLKF0z8TKaSKTsS39scVKF9dbMxJpj3U0vC7wjNWFuIpL/z76Qe2fiuCbDRcJSavkXsVtMS6/dtQQsg==";
};
};
- "@octokit/openapi-types-9.7.0" = {
+ "@octokit/openapi-types-10.1.1" = {
name = "_at_octokit_slash_openapi-types";
packageName = "@octokit/openapi-types";
- version = "9.7.0";
+ version = "10.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-9.7.0.tgz";
- sha512 = "TUJ16DJU8mekne6+KVcMV5g6g/rJlrnIKn7aALG9QrNpnEipFc1xjoarh0PKaAWf2Hf+HwthRKYt+9mCm5RsRg==";
+ url = "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-10.1.1.tgz";
+ sha512 = "ygp/6r25Ezb1CJuVMnFfOsScEtPF0zosdTJDZ7mZ+I8IULl7DP1BS5ZvPRwglcarGPXOvS5sHdR0bjnVDDfQdQ==";
};
};
"@octokit/plugin-enterprise-rest-6.0.1" = {
@@ -4963,13 +4702,13 @@ let
sha512 = "93uGjlhUD+iNg1iWhUENAtJata6w5nE+V4urXOAlIXdco6xNZtUSfYY8dzp3Udy74aqO/B5UZL80x/YMa5PKRw==";
};
};
- "@octokit/plugin-paginate-rest-2.15.1" = {
+ "@octokit/plugin-paginate-rest-2.16.0" = {
name = "_at_octokit_slash_plugin-paginate-rest";
packageName = "@octokit/plugin-paginate-rest";
- version = "2.15.1";
+ version = "2.16.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-2.15.1.tgz";
- sha512 = "47r52KkhQDkmvUKZqXzA1lKvcyJEfYh3TKAIe5+EzMeyDM3d+/s5v11i2gTk8/n6No6DPi3k5Ind6wtDbo/AEg==";
+ url = "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-2.16.0.tgz";
+ sha512 = "8YYzALPMvEZ35kgy5pdYvQ22Roz+BIuEaedO575GwE2vb/ACDqQn0xQrTJR4tnZCJn7pi8+AWPVjrFDaERIyXQ==";
};
};
"@octokit/plugin-request-log-1.0.4" = {
@@ -4981,13 +4720,13 @@ let
sha512 = "mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==";
};
};
- "@octokit/plugin-rest-endpoint-methods-5.8.0" = {
+ "@octokit/plugin-rest-endpoint-methods-5.10.0" = {
name = "_at_octokit_slash_plugin-rest-endpoint-methods";
packageName = "@octokit/plugin-rest-endpoint-methods";
- version = "5.8.0";
+ version = "5.10.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-5.8.0.tgz";
- sha512 = "qeLZZLotNkoq+it6F+xahydkkbnvSK0iDjlXFo3jNTB+Ss0qIbYQb9V/soKLMkgGw8Q2sHjY5YEXiA47IVPp4A==";
+ url = "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-5.10.0.tgz";
+ sha512 = "HiUZliq5wNg15cevJlTo9zDnPXAD0BMRhLxbRNPnq9J3HELKesDTOiou56ax2jC/rECUkK/uJTugrizYKSo/jg==";
};
};
"@octokit/request-5.6.1" = {
@@ -5008,22 +4747,22 @@ let
sha512 = "1VIvgXxs9WHSjicsRwq8PlR2LR2x6DwsJAaFgzdi0JfJoGSO8mYI/cHJQ+9FbN21aa+DrgNLnwObmyeSC8Rmpg==";
};
};
- "@octokit/rest-18.9.1" = {
+ "@octokit/rest-18.10.0" = {
name = "_at_octokit_slash_rest";
packageName = "@octokit/rest";
- version = "18.9.1";
+ version = "18.10.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@octokit/rest/-/rest-18.9.1.tgz";
- sha512 = "idZ3e5PqXVWOhtZYUa546IDHTHjkGZbj3tcJsN0uhCy984KD865e8GB2WbYDc2ZxFuJRiyd0AftpL2uPNhF+UA==";
+ url = "https://registry.npmjs.org/@octokit/rest/-/rest-18.10.0.tgz";
+ sha512 = "esHR5OKy38bccL/sajHqZudZCvmv4yjovMJzyXlphaUo7xykmtOdILGJ3aAm0mFHmMLmPFmDMJXf39cAjNJsrw==";
};
};
- "@octokit/types-6.25.0" = {
+ "@octokit/types-6.27.0" = {
name = "_at_octokit_slash_types";
packageName = "@octokit/types";
- version = "6.25.0";
+ version = "6.27.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@octokit/types/-/types-6.25.0.tgz";
- sha512 = "bNvyQKfngvAd/08COlYIN54nRgxskmejgywodizQNyiKoXmWRAjKup2/LYwm+T9V0gsKH6tuld1gM0PzmOiB4Q==";
+ url = "https://registry.npmjs.org/@octokit/types/-/types-6.27.0.tgz";
+ sha512 = "ha27f8DToxXBPEJdzHCCuqpw7AgKfjhWGdNf3yIlBAhAsaexBXTfWw36zNSsncALXGvJq4EjLy1p3Wz45Aqb4A==";
};
};
"@opencensus/core-0.0.8" = {
@@ -5053,13 +4792,13 @@ let
sha512 = "PffXX2AL8Sh0VHQ52jJC4u3T0H6wDK6N/4bg7xh4ngMYOIi13aR1kzVvX1sVDBgfGwDOkMbl4c54Xm3tlPx/+A==";
};
};
- "@opentelemetry/api-1.0.2" = {
+ "@opentelemetry/api-1.0.3" = {
name = "_at_opentelemetry_slash_api";
packageName = "@opentelemetry/api";
- version = "1.0.2";
+ version = "1.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@opentelemetry/api/-/api-1.0.2.tgz";
- sha512 = "DCF9oC89ao8/EJUqrp/beBlDR8Bp2R43jqtzayqCoomIvkwTuPfLcHdVhIGRR69GFlkykFjcDW+V92t0AS7Tww==";
+ url = "https://registry.npmjs.org/@opentelemetry/api/-/api-1.0.3.tgz";
+ sha512 = "puWxACExDe9nxbBB3lOymQFrLYml2dVOrd7USiVRnSbgXE+KwBu+HxFvxrzfqsiSda9IWsXJG1ef7C1O2/GmKQ==";
};
};
"@opentelemetry/semantic-conventions-0.24.0" = {
@@ -5611,13 +5350,13 @@ let
sha512 = "tU8fQs0D76ZKhJ2cWtnfQthWqiZgGBx0gH0+5D8JvaBEBaqA8foPPBt3Nonwr3ygyv5xrw2IzKWgIY86BlGs+w==";
};
};
- "@redocly/openapi-core-1.0.0-beta.55" = {
+ "@redocly/openapi-core-1.0.0-beta.58" = {
name = "_at_redocly_slash_openapi-core";
packageName = "@redocly/openapi-core";
- version = "1.0.0-beta.55";
+ version = "1.0.0-beta.58";
src = fetchurl {
- url = "https://registry.npmjs.org/@redocly/openapi-core/-/openapi-core-1.0.0-beta.55.tgz";
- sha512 = "n/uukofKgqLdF1RyaqIOz+QneonKudV77M8j8SnGxP+bg7ujn+lmjcLy96ECtLvom0+BTbbzSMQpJeEix6MGuQ==";
+ url = "https://registry.npmjs.org/@redocly/openapi-core/-/openapi-core-1.0.0-beta.58.tgz";
+ sha512 = "aHohzi5PCBJd47cXXLD1sigVWEs4Xs9E5MOMq2RZ3FNmufiRxY+u1b4oPYGfcr4n3mBnG2qH1mFiTue6Levq7w==";
};
};
"@redocly/react-dropdown-aria-2.0.12" = {
@@ -5710,13 +5449,13 @@ let
sha512 = "c/qwwcHyafOQuVQJj0IlBjf5yYgBI7YPJ77k4fOJYesb41jio65eaJODRUmfYKhTOFBrIZ66kgvGPlNbjuoRdQ==";
};
};
- "@schematics/angular-12.2.3" = {
+ "@schematics/angular-12.2.4" = {
name = "_at_schematics_slash_angular";
packageName = "@schematics/angular";
- version = "12.2.3";
+ version = "12.2.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@schematics/angular/-/angular-12.2.3.tgz";
- sha512 = "MyInM0/Dg1geP5eYx370IX6l70ZTtGq7QIt9CFBViHlX4BWNmXq5bbJIPYJ/FWwT+zhSK7zp5AcyDKg6PWqh/Q==";
+ url = "https://registry.npmjs.org/@schematics/angular/-/angular-12.2.4.tgz";
+ sha512 = "JPyjoTQMiVnaFmaEgACm7dzRMp7WMq78abeVaAg/xy8z2apMeDhTBXoSSLhXpQNtFvzLmfM4ovC6sCwn9esU9A==";
};
};
"@segment/loosely-validate-event-2.0.0" = {
@@ -5746,13 +5485,13 @@ let
sha512 = "lOUyRopNTKJYVEU9T6stp2irwlTDsYMmUKBOUjnMcwGveuUfIJqrCOtFLtIPPj3XJlbZy5F68l4KP9rZ8Ipang==";
};
};
- "@serverless/components-3.16.0" = {
+ "@serverless/components-3.17.0" = {
name = "_at_serverless_slash_components";
packageName = "@serverless/components";
- version = "3.16.0";
+ version = "3.17.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@serverless/components/-/components-3.16.0.tgz";
- sha512 = "vgsfR0V4dierB97GKgtfFp/s5XN3zmEQlhRfshWLHjoXvJe2HvWOZXy5Bqyzb1WMr6S0dp/wXQzcnVStbiyBaw==";
+ url = "https://registry.npmjs.org/@serverless/components/-/components-3.17.0.tgz";
+ sha512 = "F0ReVFmwnbSDyH9PaifjrxvR0HvnKS37VyoEOCagj/31vGrksyrvuwI8BxC0YwPReRDb4n99+CtGkDsdGb9AQg==";
};
};
"@serverless/core-1.1.2" = {
@@ -5791,13 +5530,13 @@ let
sha512 = "q2CMqCkKeBaKA/UwfJAZLkdUsbghSbiYPvAX4rl9rsR5APm4KWtjKQP9CTOtVO5JRMWYoysK6jF0d5VJOABRzQ==";
};
};
- "@serverless/platform-client-china-2.2.3" = {
+ "@serverless/platform-client-china-2.2.6" = {
name = "_at_serverless_slash_platform-client-china";
packageName = "@serverless/platform-client-china";
- version = "2.2.3";
+ version = "2.2.6";
src = fetchurl {
- url = "https://registry.npmjs.org/@serverless/platform-client-china/-/platform-client-china-2.2.3.tgz";
- sha512 = "MoDxI0d3HMesHwdyk7gzwLNU0wuJk/ovL9+XD/gAZgnrdZpFFq9kwnJAm2midL7jdhpnEFu/aoGJ0eE+xtQJ7w==";
+ url = "https://registry.npmjs.org/@serverless/platform-client-china/-/platform-client-china-2.2.6.tgz";
+ sha512 = "CRQi3vi1iqWF8qeMNjU5lq+V7ztdVY3pUf6qNhCwcxM1TAOFncM3lsbIc4yf9gsKkOThHDmltf686u/KqDGgJg==";
};
};
"@serverless/template-1.1.4" = {
@@ -5827,13 +5566,13 @@ let
sha512 = "cl5uPaGg72z0sCUpF0zsOhwYYUV72Gxc1FwFfxltO8hSvMeFDvwD7JrNE4kHcIcKRjwPGbSH0fdVPUpErZ8Mog==";
};
};
- "@serverless/utils-5.7.0" = {
+ "@serverless/utils-5.8.1" = {
name = "_at_serverless_slash_utils";
packageName = "@serverless/utils";
- version = "5.7.0";
+ version = "5.8.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@serverless/utils/-/utils-5.7.0.tgz";
- sha512 = "4/9lTag4NNMtgoK7qRSoP//VplnKUTqgKMJ5pjvuXHFTBNoGYbdi5Cr1UmbHwnG8FfYBUy95jNUHjSEeUXDqgg==";
+ url = "https://registry.npmjs.org/@serverless/utils/-/utils-5.8.1.tgz";
+ sha512 = "tUOvlGq9xpLrq6dguH4bjAJqycoOUx7aVJIjbX4T7MZxuovxg/x2ZXc+Hrfqq0t+jRKVm78ZjHCjCASJDxbYPA==";
};
};
"@serverless/utils-china-1.1.4" = {
@@ -6403,13 +6142,13 @@ let
sha512 = "pkPtJUUY+Vwv6B1inAz55rQvivClHJxc9aVEPPmaq2cbyeMLCiDpbKpcKyX4LAwpNGi+SHBv0tHv6+0gXv0P2A==";
};
};
- "@types/babel__core-7.1.15" = {
+ "@types/babel__core-7.1.16" = {
name = "_at_types_slash_babel__core";
packageName = "@types/babel__core";
- version = "7.1.15";
+ version = "7.1.16";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.15.tgz";
- sha512 = "bxlMKPDbY8x5h6HBwVzEOk2C8fb6SLfYQ5Jw3uBYuYF1lfWk/kbLd81la82vrIkBb0l+JdmrZaDikPrNxpS/Ew==";
+ url = "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.16.tgz";
+ sha512 = "EAEHtisTMM+KaKwfWdC3oyllIqswlznXCIVCt7/oRNrh+DhgT4UEBNC/jlADNjvw7UnfbcdkGQcPVZ1xYiLcrQ==";
};
};
"@types/babel__generator-7.6.3" = {
@@ -6763,15 +6502,6 @@ let
sha512 = "mQjDxyOM1Cpocd+vm1kZBP7smwKZ4TNokFeds9LV7OZibmPJFEzY3+xZMrKfUdNT71lv8GoCPD6upKwHxubClw==";
};
};
- "@types/fast-json-stable-stringify-2.1.0" = {
- name = "_at_types_slash_fast-json-stable-stringify";
- packageName = "@types/fast-json-stable-stringify";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@types/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz";
- sha512 = "IyNhGHu71jH1jCXTHmafuoAAdsbBON3kDh7u/UUhLmjYgN5TYB54e1R8ckTCiIevl2UuZaCsi9XRxineY5yUjw==";
- };
- };
"@types/fs-capacitor-2.0.0" = {
name = "_at_types_slash_fs-capacitor";
packageName = "@types/fs-capacitor";
@@ -7006,13 +6736,13 @@ let
sha512 = "GJhpTepz2udxGexqos8wgaBx4I/zWIDPh/KOGEwAqtuGDkOUJu5eFvwmdBX4AmB8Odsr+9pHCQqiAqDL/yKMKw==";
};
};
- "@types/keyv-3.1.2" = {
+ "@types/keyv-3.1.3" = {
name = "_at_types_slash_keyv";
packageName = "@types/keyv";
- version = "3.1.2";
+ version = "3.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/keyv/-/keyv-3.1.2.tgz";
- sha512 = "/FvAK2p4jQOaJ6CGDHJTqZcUtbZe820qIeTg7o0Shg7drB4JHeL+V/dhSaly7NXx6u8eSee+r7coT+yuJEvDLg==";
+ url = "https://registry.npmjs.org/@types/keyv/-/keyv-3.1.3.tgz";
+ sha512 = "FXCJgyyN3ivVgRoml4h94G/p3kY+u/B86La+QptcqJaWtBWtmc6TtkNfS40n9bIvyLteHh7zXOtgbobORKPbDg==";
};
};
"@types/koa-2.13.4" = {
@@ -7213,13 +6943,13 @@ let
sha512 = "oTQgnd0hblfLsJ6BvJzzSL+Inogp3lq9fGgqRkMB/ziKMgEUaFl801OncOzUmalfzt14N0oPHMK47ipl+wbTIw==";
};
};
- "@types/node-14.17.12" = {
+ "@types/node-14.17.15" = {
name = "_at_types_slash_node";
packageName = "@types/node";
- version = "14.17.12";
+ version = "14.17.15";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-14.17.12.tgz";
- sha512 = "vhUqgjJR1qxwTWV5Ps5txuy2XMdf7Fw+OrdChRboy8BmWUPkckOhphaohzFG6b8DW7CrxaBMdrdJ47SYFq1okw==";
+ url = "https://registry.npmjs.org/@types/node/-/node-14.17.15.tgz";
+ sha512 = "D1sdW0EcSCmNdLKBGMYb38YsHUS6JcM7yQ6sLQ9KuZ35ck7LYCKE7kYFHOO59ayFOY3zobWVZxf4KXhYHcHYFA==";
};
};
"@types/node-15.12.5" = {
@@ -7267,13 +6997,31 @@ let
sha512 = "Sr7BhXEAer9xyGuCN3Ek9eg9xPviCF2gfu9kTfuU2HkTVAMYSDeX40fvpmo72n5nansg3nsBjuQBrsS28r+NUw==";
};
};
- "@types/node-16.7.2" = {
+ "@types/node-16.7.13" = {
name = "_at_types_slash_node";
packageName = "@types/node";
- version = "16.7.2";
+ version = "16.7.13";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-16.7.2.tgz";
- sha512 = "TbG4TOx9hng8FKxaVrCisdaxKxqEwJ3zwHoCWXZ0Jw6mnvTInpaB99/2Cy4+XxpXtjNv9/TgfGSvZFyfV/t8Fw==";
+ url = "https://registry.npmjs.org/@types/node/-/node-16.7.13.tgz";
+ sha512 = "pLUPDn+YG3FYEt/pHI74HmnJOWzeR+tOIQzUx93pi9M7D8OE7PSLr97HboXwk5F+JS+TLtWuzCOW97AHjmOXXA==";
+ };
+ };
+ "@types/node-16.7.3" = {
+ name = "_at_types_slash_node";
+ packageName = "@types/node";
+ version = "16.7.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/node/-/node-16.7.3.tgz";
+ sha512 = "S6gm2sm9xIRWTxD7Ttj8N1ZrYfqdqZEU38Nwnrhd6krk7zf8vdgMgzz8hpAX9CfmXaJfP+Vqy2EhJpVavNEocg==";
+ };
+ };
+ "@types/node-16.7.6" = {
+ name = "_at_types_slash_node";
+ packageName = "@types/node";
+ version = "16.7.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/node/-/node-16.7.6.tgz";
+ sha512 = "VESVNFoa/ahYA62xnLBjo5ur6gPsgEE5cNRy8SrdnkZ2nwJSW0kJ4ufbFr2zuU9ALtHM8juY53VcRoTA7htXSg==";
};
};
"@types/node-6.14.13" = {
@@ -7420,13 +7168,13 @@ let
sha512 = "eEQ6Hq0K0VShe00iDzG1DKxA5liTsk7jgcR5eDZ5d5cnivLjPqqcDgqurS5NlQJNfgTNg51dp7zFGWHomr5NJQ==";
};
};
- "@types/react-16.14.14" = {
+ "@types/react-16.14.15" = {
name = "_at_types_slash_react";
packageName = "@types/react";
- version = "16.14.14";
+ version = "16.14.15";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/react/-/react-16.14.14.tgz";
- sha512 = "uwIWDYW8LznHzEMJl7ag9St1RsK0gw/xaFZ5+uI1ZM1HndwUgmPH3/wQkSb87GkOVg7shUxnpNW8DcN0AzvG5Q==";
+ url = "https://registry.npmjs.org/@types/react/-/react-16.14.15.tgz";
+ sha512 = "jOxlBV9RGZhphdeqJTCv35VZOkjY+XIEY2owwSk84BNDdDv2xS6Csj6fhi+B/q30SR9Tz8lDNt/F2Z5RF3TrRg==";
};
};
"@types/react-dom-16.9.14" = {
@@ -7681,15 +7429,6 @@ let
sha512 = "KtQLad12+4T/NfSxpoDhmr22+fig3T7/08QCgmutYA6QSznSRmEtuL95GrhVV40/0otTEdFc+etRcCTqhh1q5Q==";
};
};
- "@types/uuid-3.4.10" = {
- name = "_at_types_slash_uuid";
- packageName = "@types/uuid";
- version = "3.4.10";
- src = fetchurl {
- url = "https://registry.npmjs.org/@types/uuid/-/uuid-3.4.10.tgz";
- sha512 = "BgeaZuElf7DEYZhWYDTc/XcLZXdVgFkVSTa13BqKvbnmUrxr3TJFKofUxCtDO9UQOdhnV+HPOESdHiHKZOJV1A==";
- };
- };
"@types/vfile-3.0.2" = {
name = "_at_types_slash_vfile";
packageName = "@types/vfile";
@@ -7708,22 +7447,22 @@ let
sha512 = "GpTIuDpb9u4zIO165fUy9+fXcULdD8HFRNli04GehoMVbeNq7D6OBnqSmg3lxZnC+UvgUhEWKxdKiwYUkGltIw==";
};
};
- "@types/vinyl-2.0.5" = {
+ "@types/vinyl-2.0.6" = {
name = "_at_types_slash_vinyl";
packageName = "@types/vinyl";
- version = "2.0.5";
+ version = "2.0.6";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/vinyl/-/vinyl-2.0.5.tgz";
- sha512 = "1m6uReH8R/RuLVQGvTT/4LlWq67jZEUxp+FBHt0hYv2BT7TUwFbKI0wa7JZVEU/XtlcnX1QcTuZ36es4rGj7jg==";
+ url = "https://registry.npmjs.org/@types/vinyl/-/vinyl-2.0.6.tgz";
+ sha512 = "ayJ0iOCDNHnKpKTgBG6Q6JOnHTj9zFta+3j2b8Ejza0e4cvRyMn0ZoLEmbPrTHe5YYRlDYPvPWVdV4cTaRyH7g==";
};
};
- "@types/vscode-1.59.0" = {
+ "@types/vscode-1.60.0" = {
name = "_at_types_slash_vscode";
packageName = "@types/vscode";
- version = "1.59.0";
+ version = "1.60.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/vscode/-/vscode-1.59.0.tgz";
- sha512 = "Zg38rusx2nU6gy6QdF7v4iqgxNfxzlBlDhrRCjOiPQp+sfaNrp3f9J6OHIhpGNN1oOAca4+9Hq0+8u3jwzPMlQ==";
+ url = "https://registry.npmjs.org/@types/vscode/-/vscode-1.60.0.tgz";
+ sha512 = "wZt3VTmzYrgZ0l/3QmEbCq4KAJ71K3/hmMQ/nfpv84oH8e81KKwPEoQ5v8dNCxfHFVJ1JabHKmCvqdYOoVm1Ow==";
};
};
"@types/webpack-4.41.30" = {
@@ -7753,15 +7492,6 @@ let
sha512 = "B5m9aq7cbbD/5/jThEr33nUY8WEfVi6A2YKCTOvw5Ldy7mtsOkqRvGjnzy6g7iMMDsgu7xREuCzqATLDLQVKcQ==";
};
};
- "@types/ws-6.0.4" = {
- name = "_at_types_slash_ws";
- packageName = "@types/ws";
- version = "6.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/@types/ws/-/ws-6.0.4.tgz";
- sha512 = "PpPrX7SZW9re6+Ha8ojZG4Se8AZXgf0GK6zmfqEuCsY49LFDNXO3SByp44X3dFEqtB73lkCDAdUazhAjVPiNwg==";
- };
- };
"@types/ws-7.4.4" = {
name = "_at_types_slash_ws";
packageName = "@types/ws";
@@ -7834,13 +7564,13 @@ let
sha512 = "S9q47ByT2pPvD65IvrWp7qppVMpk9WGMbVq9wbWZOHg6tnXSD4vyhao6nOSBwwfDdV2p3Kx9evA9vI+XWTfDvw==";
};
};
- "@typescript-eslint/eslint-plugin-4.29.3" = {
+ "@typescript-eslint/eslint-plugin-4.31.0" = {
name = "_at_typescript-eslint_slash_eslint-plugin";
packageName = "@typescript-eslint/eslint-plugin";
- version = "4.29.3";
+ version = "4.31.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.29.3.tgz";
- sha512 = "tBgfA3K/3TsZY46ROGvoRxQr1wBkclbVqRQep97MjVHJzcRBURRY3sNFqLk0/Xr//BY5hM9H2p/kp+6qim85SA==";
+ url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.31.0.tgz";
+ sha512 = "iPKZTZNavAlOhfF4gymiSuUkgLne/nh5Oz2/mdiUmuZVD42m9PapnCnzjxuDsnpnbH3wT5s2D8bw6S39TC6GNw==";
};
};
"@typescript-eslint/experimental-utils-3.10.1" = {
@@ -7852,13 +7582,13 @@ let
sha512 = "DewqIgscDzmAfd5nOGe4zm6Bl7PKtMG2Ad0KG8CUZAHlXfAKTF9Ol5PXhiMh39yRL2ChRH1cuuUGOcVyyrhQIw==";
};
};
- "@typescript-eslint/experimental-utils-4.29.3" = {
+ "@typescript-eslint/experimental-utils-4.31.0" = {
name = "_at_typescript-eslint_slash_experimental-utils";
packageName = "@typescript-eslint/experimental-utils";
- version = "4.29.3";
+ version = "4.31.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.29.3.tgz";
- sha512 = "ffIvbytTVWz+3keg+Sy94FG1QeOvmV9dP2YSdLFHw/ieLXWCa3U1TYu8IRCOpMv2/SPS8XqhM1+ou1YHsdzKrg==";
+ url = "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.31.0.tgz";
+ sha512 = "Hld+EQiKLMppgKKkdUsLeVIeEOrwKc2G983NmznY/r5/ZtZCDvIOXnXtwqJIgYz/ymsy7n7RGvMyrzf1WaSQrw==";
};
};
"@typescript-eslint/parser-3.10.1" = {
@@ -7870,22 +7600,22 @@ let
sha512 = "Ug1RcWcrJP02hmtaXVS3axPPTTPnZjupqhgj+NnZ6BCkwSImWk/283347+x9wN+lqOdK9Eo3vsyiyDHgsmiEJw==";
};
};
- "@typescript-eslint/parser-4.29.3" = {
+ "@typescript-eslint/parser-4.31.0" = {
name = "_at_typescript-eslint_slash_parser";
packageName = "@typescript-eslint/parser";
- version = "4.29.3";
+ version = "4.31.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.29.3.tgz";
- sha512 = "jrHOV5g2u8ROghmspKoW7pN8T/qUzk0+DITun0MELptvngtMrwUJ1tv5zMI04CYVEUsSrN4jV7AKSv+I0y0EfQ==";
+ url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.31.0.tgz";
+ sha512 = "oWbzvPh5amMuTmKaf1wp0ySxPt2ZXHnFQBN2Szu1O//7LmOvgaKTCIDNLK2NvzpmVd5A2M/1j/rujBqO37hj3w==";
};
};
- "@typescript-eslint/scope-manager-4.29.3" = {
+ "@typescript-eslint/scope-manager-4.31.0" = {
name = "_at_typescript-eslint_slash_scope-manager";
packageName = "@typescript-eslint/scope-manager";
- version = "4.29.3";
+ version = "4.31.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.29.3.tgz";
- sha512 = "x+w8BLXO7iWPkG5mEy9bA1iFRnk36p/goVlYobVWHyDw69YmaH9q6eA+Fgl7kYHmFvWlebUTUfhtIg4zbbl8PA==";
+ url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.31.0.tgz";
+ sha512 = "LJ+xtl34W76JMRLjbaQorhR0hfRAlp3Lscdiz9NeI/8i+q0hdBZ7BsiYieLoYWqy+AnRigaD3hUwPFugSzdocg==";
};
};
"@typescript-eslint/types-3.10.1" = {
@@ -7897,13 +7627,13 @@ let
sha512 = "+3+FCUJIahE9q0lDi1WleYzjCwJs5hIsbugIgnbB+dSCYUxl8L6PwmsyOPFZde2hc1DlTo/xnkOgiTLSyAbHiQ==";
};
};
- "@typescript-eslint/types-4.29.3" = {
+ "@typescript-eslint/types-4.31.0" = {
name = "_at_typescript-eslint_slash_types";
packageName = "@typescript-eslint/types";
- version = "4.29.3";
+ version = "4.31.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.29.3.tgz";
- sha512 = "s1eV1lKNgoIYLAl1JUba8NhULmf+jOmmeFO1G5MN/RBCyyzg4TIOfIOICVNC06lor+Xmy4FypIIhFiJXOknhIg==";
+ url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.31.0.tgz";
+ sha512 = "9XR5q9mk7DCXgXLS7REIVs+BaAswfdHhx91XqlJklmqWpTALGjygWVIb/UnLh4NWhfwhR5wNe1yTyCInxVhLqQ==";
};
};
"@typescript-eslint/typescript-estree-3.10.1" = {
@@ -7915,13 +7645,13 @@ let
sha512 = "QbcXOuq6WYvnB3XPsZpIwztBoquEYLXh2MtwVU+kO8jgYCiv4G5xrSP/1wg4tkvrEE+esZVquIPX/dxPlePk1w==";
};
};
- "@typescript-eslint/typescript-estree-4.29.3" = {
+ "@typescript-eslint/typescript-estree-4.31.0" = {
name = "_at_typescript-eslint_slash_typescript-estree";
packageName = "@typescript-eslint/typescript-estree";
- version = "4.29.3";
+ version = "4.31.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.29.3.tgz";
- sha512 = "45oQJA0bxna4O5TMwz55/TpgjX1YrAPOI/rb6kPgmdnemRZx/dB0rsx+Ku8jpDvqTxcE1C/qEbVHbS3h0hflag==";
+ url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.31.0.tgz";
+ sha512 = "QHl2014t3ptg+xpmOSSPn5hm4mY8D4s97ftzyk9BZ8RxYQ3j73XcwuijnJ9cMa6DO4aLXeo8XS3z1omT9LA/Eg==";
};
};
"@typescript-eslint/visitor-keys-3.10.1" = {
@@ -7933,31 +7663,31 @@ let
sha512 = "9JgC82AaQeglebjZMgYR5wgmfUdUc+EitGUUMW8u2nDckaeimzW+VsoLV6FoimPv2id3VQzfjwBxEMVz08ameQ==";
};
};
- "@typescript-eslint/visitor-keys-4.29.3" = {
+ "@typescript-eslint/visitor-keys-4.31.0" = {
name = "_at_typescript-eslint_slash_visitor-keys";
packageName = "@typescript-eslint/visitor-keys";
- version = "4.29.3";
+ version = "4.31.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.29.3.tgz";
- sha512 = "MGGfJvXT4asUTeVs0Q2m+sY63UsfnA+C/FDgBKV3itLBmM9H0u+URcneePtkd0at1YELmZK6HSolCqM4Fzs6yA==";
+ url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.31.0.tgz";
+ sha512 = "HUcRp2a9I+P21+O21yu3ezv3GEPGjyGiXoEUQwZXjR8UxRApGeLyWH4ZIIUSalE28aG4YsV6GjtaAVB3QKOu0w==";
};
};
- "@uifabric/foundation-7.9.26" = {
+ "@uifabric/foundation-7.10.0" = {
name = "_at_uifabric_slash_foundation";
packageName = "@uifabric/foundation";
- version = "7.9.26";
+ version = "7.10.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@uifabric/foundation/-/foundation-7.9.26.tgz";
- sha512 = "1FLTb+jlH/Tuel2L9wT/zLl5ZW6W4Lbjrs5VUVjv81vWxzznvPnTf8+Ew0qkzaH7xDuMNMl7okswhV0IfJyheg==";
+ url = "https://registry.npmjs.org/@uifabric/foundation/-/foundation-7.10.0.tgz";
+ sha512 = "rUVRSNvzWPUpWPJINpogsk01m4dzIDf9CbIbJNAq+SLsVvxk9yRoLfnPwX0ZYVpFqUQxYxnII8lmWdEQzoExmQ==";
};
};
- "@uifabric/icons-7.5.23" = {
+ "@uifabric/icons-7.6.0" = {
name = "_at_uifabric_slash_icons";
packageName = "@uifabric/icons";
- version = "7.5.23";
+ version = "7.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@uifabric/icons/-/icons-7.5.23.tgz";
- sha512 = "eIvUbH0EWgFgdfgFfINgqS2ZVZTyJ/9n5nR4bmcyAe75wsKxm4ser4WIT9IvaBF6+HFVfjUF/v6+VMD7y2LBng==";
+ url = "https://registry.npmjs.org/@uifabric/icons/-/icons-7.6.0.tgz";
+ sha512 = "Xx+CVMYOafJDijllYYkgE22lvKpKaodrB9XUgVSI77QveGcOV+x9z5FVa5CzwERb6Zjoafyj7q7SmH/EOi+AZw==";
};
};
"@uifabric/merge-styles-7.19.2" = {
@@ -7987,13 +7717,13 @@ let
sha512 = "t0Pt21dRqdC707/ConVJC0WvcQ/KF7tKLU8AZY7YdjgJpMHi1c0C427DB4jfUY19I92f60LOQyhJ4efH+KpFEg==";
};
};
- "@uifabric/styling-7.19.0" = {
+ "@uifabric/styling-7.19.1" = {
name = "_at_uifabric_slash_styling";
packageName = "@uifabric/styling";
- version = "7.19.0";
+ version = "7.19.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@uifabric/styling/-/styling-7.19.0.tgz";
- sha512 = "fXComDtGV7dHF4rP4cLHwI6fC+1f/nvPavpMBz4IQdySwixta9TVMKbzt0OA6i0mJztqZCVAd27F/sl9R/JmcQ==";
+ url = "https://registry.npmjs.org/@uifabric/styling/-/styling-7.19.1.tgz";
+ sha512 = "1yvfVJ9HSB7TVUKocjs/ij3bsVHtfBRbhnhDtdMS9Fw13abf1IBOpwx8LPMGMt1nbeAmWbzlBI+Deoyij9lstA==";
};
};
"@uifabric/utilities-7.33.5" = {
@@ -8122,31 +7852,31 @@ let
sha512 = "B6PedV/H2kcGEAgnqncwjHe3E8fqUNXCLv1BsrNwkHHWQJXkDN7dFeuEB4oaucBOVbjhH7KGLJ6JAiXPE3S7xA==";
};
};
- "@vue/compiler-core-3.2.6" = {
+ "@vue/compiler-core-3.2.10" = {
name = "_at_vue_slash_compiler-core";
packageName = "@vue/compiler-core";
- version = "3.2.6";
+ version = "3.2.10";
src = fetchurl {
- url = "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.2.6.tgz";
- sha512 = "vbwnz7+OhtLO5p5i630fTuQCL+MlUpEMTKHuX+RfetQ+3pFCkItt2JUH+9yMaBG2Hkz6av+T9mwN/acvtIwpbw==";
+ url = "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.2.10.tgz";
+ sha512 = "KKFxveRE0zm9Je7vlutHOF59JRytUROYBXDuoOpiDOId7kVQWdeIzc1TondASsXUgzDjbYrWkRHXiHAzKFfsHA==";
};
};
- "@vue/compiler-dom-3.2.6" = {
+ "@vue/compiler-dom-3.2.10" = {
name = "_at_vue_slash_compiler-dom";
packageName = "@vue/compiler-dom";
- version = "3.2.6";
+ version = "3.2.10";
src = fetchurl {
- url = "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.2.6.tgz";
- sha512 = "+a/3oBAzFIXhHt8L5IHJOTP4a5egzvpXYyi13jR7CUYOR1S+Zzv7vBWKYBnKyJLwnrxTZnTQVjeHCgJq743XKg==";
+ url = "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.2.10.tgz";
+ sha512 = "WFOWBj9dvIz5ktReYwvw2GMQ8YHtY//cOGTyCw5XSQw58sKm4JCQGe1HXfuEVDmRRI1s4L/gOFR2NgbRfGCtMw==";
};
};
- "@vue/shared-3.2.6" = {
+ "@vue/shared-3.2.10" = {
name = "_at_vue_slash_shared";
packageName = "@vue/shared";
- version = "3.2.6";
+ version = "3.2.10";
src = fetchurl {
- url = "https://registry.npmjs.org/@vue/shared/-/shared-3.2.6.tgz";
- sha512 = "uwX0Qs2e6kdF+WmxwuxJxOnKs/wEkMArtYpHSm7W+VY/23Tl8syMRyjnzEeXrNCAP0/8HZxEGkHJsjPEDNRuHw==";
+ url = "https://registry.npmjs.org/@vue/shared/-/shared-3.2.10.tgz";
+ sha512 = "Z5hbCx5jqAK0kscWcsVBpEeS0LfuSjgnkCBewQfsdBRyvHdJWKRUnCAJ7GqJO/iJtjSZHBFJYNoYyP7a/goh2A==";
};
};
"@webassemblyjs/ast-1.11.1" = {
@@ -8707,22 +8437,265 @@ let
sha512 = "WwB53ikYudh9pIorgxrkHKrQZcCqNM/Q/bDzZBffEaGUKGuHrRb3zZUT9Sh2qw9yogC7SsdRmQ1ER0pqvd3bfw==";
};
};
- "@xmldom/xmldom-0.7.2" = {
+ "@xmldom/xmldom-0.7.4" = {
name = "_at_xmldom_slash_xmldom";
packageName = "@xmldom/xmldom";
- version = "0.7.2";
+ version = "0.7.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.7.2.tgz";
- sha512 = "t/Zqo0ewes3iq6zGqEqJNUWI27Acr3jkmSUNp6E3nl0Z2XbtqAG5XYqPNLdYonILmhcxANsIidh69tHzjXtuRg==";
+ url = "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.7.4.tgz";
+ sha512 = "wdxC79cvO7PjSM34jATd/RYZuYWQ8y/R7MidZl1NYYlbpFn1+spfjkiR3ZsJfcaTs2IyslBN7VwBBJwrYKM+zw==";
};
};
- "@xstate/fsm-1.6.1" = {
+ "@xmpp/base64-0.12.1" = {
+ name = "_at_xmpp_slash_base64";
+ packageName = "@xmpp/base64";
+ version = "0.12.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@xmpp/base64/-/base64-0.12.1.tgz";
+ sha512 = "CpPQdhEAveROH5q7GkCMryCMsqIDu4RJOaYi5GJ7oxyrWpgv6bi5225hAD50kAOC4q+NWyksWiLnUwf2+C3kDA==";
+ };
+ };
+ "@xmpp/client-0.12.1" = {
+ name = "_at_xmpp_slash_client";
+ packageName = "@xmpp/client";
+ version = "0.12.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@xmpp/client/-/client-0.12.1.tgz";
+ sha512 = "M9VsUd3wnZHrskHCGAPUbabH+6zIVAqlE5gmV1gTgzM+TwXY3Sz6q3k9Yfz0ERWF9qbOT6+hY3G7spNs9NNVyw==";
+ };
+ };
+ "@xmpp/client-core-0.12.1" = {
+ name = "_at_xmpp_slash_client-core";
+ packageName = "@xmpp/client-core";
+ version = "0.12.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@xmpp/client-core/-/client-core-0.12.1.tgz";
+ sha512 = "Gml+Z4qlWgHfFVB2ALfhOkKr9YD5X7NT8JgwXq0xk+P8TbUleGgmrkAaX2fzQbnntuG6puFk3+9C2a7Q71pwXQ==";
+ };
+ };
+ "@xmpp/connection-0.12.1" = {
+ name = "_at_xmpp_slash_connection";
+ packageName = "@xmpp/connection";
+ version = "0.12.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@xmpp/connection/-/connection-0.12.1.tgz";
+ sha512 = "AdOt/fMjuCT+ru6v6tYKdvP42AH2P+pqyL4M71VI9kprifDV03L/Ud8jzCqSVpJUEXDFEAukDG1KNwUkBEIaXw==";
+ };
+ };
+ "@xmpp/connection-tcp-0.12.1" = {
+ name = "_at_xmpp_slash_connection-tcp";
+ packageName = "@xmpp/connection-tcp";
+ version = "0.12.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@xmpp/connection-tcp/-/connection-tcp-0.12.1.tgz";
+ sha512 = "axoxsyyDifNEaKK3gVoVMsCtKm1VsXOdzbGwtvMHwRxiArlbSxLpHLFWv6hjH63BJvNSet1txzHt/0+rrVLWVg==";
+ };
+ };
+ "@xmpp/debug-0.12.1" = {
+ name = "_at_xmpp_slash_debug";
+ packageName = "@xmpp/debug";
+ version = "0.12.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@xmpp/debug/-/debug-0.12.1.tgz";
+ sha512 = "nQ9w+lkholzAvDKBvPTbKLDAyq5LhTjQ5Qf7vWPqgP56JHvDDAFdQ/YPRJVOFFB5L08/c3+/6AjEz0TD8iSXYA==";
+ };
+ };
+ "@xmpp/error-0.12.1" = {
+ name = "_at_xmpp_slash_error";
+ packageName = "@xmpp/error";
+ version = "0.12.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@xmpp/error/-/error-0.12.1.tgz";
+ sha512 = "n5UyU25Pl6x1GMAX5tuJPmY9I+cM03iQF06ENOPxPHHLf3TBnoCtpJRP/oONHXK84vpxU9uJBuMAMHWIaWprrQ==";
+ };
+ };
+ "@xmpp/events-0.12.1" = {
+ name = "_at_xmpp_slash_events";
+ packageName = "@xmpp/events";
+ version = "0.12.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@xmpp/events/-/events-0.12.1.tgz";
+ sha512 = "8kSwhY4ZxuXVG9QCAdQZijJvde0+/VBHZJw0Ase1ZcrBjlL46UfRwVNpru7SBZMIZB8CLav4AaArzlTFDRJljg==";
+ };
+ };
+ "@xmpp/id-0.12.1" = {
+ name = "_at_xmpp_slash_id";
+ packageName = "@xmpp/id";
+ version = "0.12.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@xmpp/id/-/id-0.12.1.tgz";
+ sha512 = "tIPSDyYn1Ah2JPmaD9gSHqHYG3nWKzxISGJf0EMeAQ1Hd4pldNv4pKv+mO2ZVrHQie0oc3KC409QASmYfVP7xA==";
+ };
+ };
+ "@xmpp/iq-0.12.1" = {
+ name = "_at_xmpp_slash_iq";
+ packageName = "@xmpp/iq";
+ version = "0.12.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@xmpp/iq/-/iq-0.12.1.tgz";
+ sha512 = "XlYnbCUWS6CgWrLUb9aWl0IJ7FfHbTxSlBybQb9zsOJEHb9J3FBV6SZwNUgmtnTwYtgIt6RTSvZtpGDX7Q5Xcw==";
+ };
+ };
+ "@xmpp/jid-0.12.1" = {
+ name = "_at_xmpp_slash_jid";
+ packageName = "@xmpp/jid";
+ version = "0.12.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@xmpp/jid/-/jid-0.12.1.tgz";
+ sha512 = "PdXJy17Os5ADr03I+JXIWYLExEZjTW7AH23CwvbS8kLQh/CNrfhbFynW9krUZ4Lf4YAFn88oOsFsQRNgsAj/Vw==";
+ };
+ };
+ "@xmpp/middleware-0.12.1" = {
+ name = "_at_xmpp_slash_middleware";
+ packageName = "@xmpp/middleware";
+ version = "0.12.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@xmpp/middleware/-/middleware-0.12.1.tgz";
+ sha512 = "XZTXKuV3xre9tQe2X2bX20jChagp4hrL83LRgpRHsp3V4SzKsiBWDXb+0rNmyhKrWAeJOxUNPZ7HlV/1ZD5fvA==";
+ };
+ };
+ "@xmpp/reconnect-0.12.1" = {
+ name = "_at_xmpp_slash_reconnect";
+ packageName = "@xmpp/reconnect";
+ version = "0.12.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@xmpp/reconnect/-/reconnect-0.12.1.tgz";
+ sha512 = "uORfO/iY2VC4ZK3/dJSd4meU0j96+qeybj62K7sexxJtcw/qM8GAFfpWDsIu/6MhQZ0dOweQ2iZn3gSk66WjMg==";
+ };
+ };
+ "@xmpp/resolve-0.12.1" = {
+ name = "_at_xmpp_slash_resolve";
+ packageName = "@xmpp/resolve";
+ version = "0.12.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@xmpp/resolve/-/resolve-0.12.1.tgz";
+ sha512 = "1enBxGpt/0frifKjwkHxsVHOCKC3B1BdcFbrQCc+FQEcVLIsFgAKLAFOp18p0Y1pxqT+O/4IZ4CUUqNFpfyXKg==";
+ };
+ };
+ "@xmpp/resource-binding-0.12.1" = {
+ name = "_at_xmpp_slash_resource-binding";
+ packageName = "@xmpp/resource-binding";
+ version = "0.12.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@xmpp/resource-binding/-/resource-binding-0.12.1.tgz";
+ sha512 = "AV3NGIyNBnArvwShNYdsTVHcLPDDXDzDoRk07ZxztN/D5sYQAzhbHK/5BIIkIEOeR91h4qXpSv69QLEYmWj0Ug==";
+ };
+ };
+ "@xmpp/sasl-0.12.1" = {
+ name = "_at_xmpp_slash_sasl";
+ packageName = "@xmpp/sasl";
+ version = "0.12.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@xmpp/sasl/-/sasl-0.12.1.tgz";
+ sha512 = "KuxuiEX2bhZCB9aYYJjVpVT1MmQHv8BPZGEyRA6YjVqhWCQUSP+OtKV9zy6hLBDBVfd45ybYVC+sMM0i9Y2R9Q==";
+ };
+ };
+ "@xmpp/sasl-anonymous-0.12.1" = {
+ name = "_at_xmpp_slash_sasl-anonymous";
+ packageName = "@xmpp/sasl-anonymous";
+ version = "0.12.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@xmpp/sasl-anonymous/-/sasl-anonymous-0.12.1.tgz";
+ sha512 = "9A5y9FdwhT8cmTEVkJGl6UV+iYmgPqgbitnFI6DdkS4HzTLQVjV7SjXayrLoOjVniKHnxHOBEbjcQG/H5iHW4w==";
+ };
+ };
+ "@xmpp/sasl-plain-0.12.1" = {
+ name = "_at_xmpp_slash_sasl-plain";
+ packageName = "@xmpp/sasl-plain";
+ version = "0.12.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@xmpp/sasl-plain/-/sasl-plain-0.12.1.tgz";
+ sha512 = "Ym6qCPA86vssLVvt/noiA/YgT6T/IxA5281xinOsZP9wtP/csqbjcBDRD7pk3HAmHhEGwUH61eydbIKHHw7o5w==";
+ };
+ };
+ "@xmpp/sasl-scram-sha-1-0.12.1" = {
+ name = "_at_xmpp_slash_sasl-scram-sha-1";
+ packageName = "@xmpp/sasl-scram-sha-1";
+ version = "0.12.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@xmpp/sasl-scram-sha-1/-/sasl-scram-sha-1-0.12.1.tgz";
+ sha512 = "h9OenKiaJDYZCxv2FyMBpoTdmYu2oxy/FIM8FXMgnPJrCru7kBepksIb8lOfcyTyFxbQJk/Vrf8zyBUdAm6Jyg==";
+ };
+ };
+ "@xmpp/session-establishment-0.12.1" = {
+ name = "_at_xmpp_slash_session-establishment";
+ packageName = "@xmpp/session-establishment";
+ version = "0.12.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@xmpp/session-establishment/-/session-establishment-0.12.1.tgz";
+ sha512 = "6+uffTA/Wy5JmoZIs3uk0oPKuLrb4MEzwo6J6QZYPHC5pwKH9dYaQ+Xjw03qaac8i73HREhK5p2cA5zpxPZoRw==";
+ };
+ };
+ "@xmpp/starttls-0.12.1" = {
+ name = "_at_xmpp_slash_starttls";
+ packageName = "@xmpp/starttls";
+ version = "0.12.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@xmpp/starttls/-/starttls-0.12.1.tgz";
+ sha512 = "AZPXppxar9n1J1IOG39xkZf/eoPQXhq3y5/tVOEyeG+WRcJGddeYJleXUm4Jwol+PTc0l0F6tlThPlhrIt/8vA==";
+ };
+ };
+ "@xmpp/stream-features-0.12.1" = {
+ name = "_at_xmpp_slash_stream-features";
+ packageName = "@xmpp/stream-features";
+ version = "0.12.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@xmpp/stream-features/-/stream-features-0.12.1.tgz";
+ sha512 = "OautwK8DMSZSeAU9YFt6wdmHutbi7I/Gy5bzR12UYgtjFcgZ2FUNhj4kYOFcwOhCG8hKyGgMvv0V7/0iDr40QA==";
+ };
+ };
+ "@xmpp/stream-management-0.12.1" = {
+ name = "_at_xmpp_slash_stream-management";
+ packageName = "@xmpp/stream-management";
+ version = "0.12.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@xmpp/stream-management/-/stream-management-0.12.1.tgz";
+ sha512 = "3fsSGFAKZ+SpdvQQ+cgPUdZcekI66rpMeUMDJMiWG5hGTicp2PfoDVjAvlPlgsTmIudm2UdNVW62MMZxnRnjbQ==";
+ };
+ };
+ "@xmpp/tcp-0.12.1" = {
+ name = "_at_xmpp_slash_tcp";
+ packageName = "@xmpp/tcp";
+ version = "0.12.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@xmpp/tcp/-/tcp-0.12.1.tgz";
+ sha512 = "sILbQli4EpqfsTmeVj/INlhA0ZYUYdRkp9wtKbDaIv53QAUaD62L37TYXFCUEnyIxOpxdecNAMbgpnarv15bcg==";
+ };
+ };
+ "@xmpp/tls-0.12.1" = {
+ name = "_at_xmpp_slash_tls";
+ packageName = "@xmpp/tls";
+ version = "0.12.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@xmpp/tls/-/tls-0.12.1.tgz";
+ sha512 = "KMMEzRQCdSTN7uCL2CmRcxvlfKcRSGwHrqKuGflvYAzvuQEJaRS2vAzvXmP2derEnJzG1Jb4Fle888MRjifWbg==";
+ };
+ };
+ "@xmpp/websocket-0.12.1" = {
+ name = "_at_xmpp_slash_websocket";
+ packageName = "@xmpp/websocket";
+ version = "0.12.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@xmpp/websocket/-/websocket-0.12.1.tgz";
+ sha512 = "r1R2uzqSc5uFEImWZCI43oduha0jZqTS8iCmryB4aSDsaevQgeZgOOSpv8y4Jui5v5C1asnQzFb7H164SUcGkw==";
+ };
+ };
+ "@xmpp/xml-0.12.1" = {
+ name = "_at_xmpp_slash_xml";
+ packageName = "@xmpp/xml";
+ version = "0.12.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@xmpp/xml/-/xml-0.12.1.tgz";
+ sha512 = "3SIr/jmyHDMkCzOtcH03YG9qTAJeE7auPg/V7e9tJrhiW329hNMhg8+VAO72Tp1AOi5bMhma09ACRS2Y9bMOKA==";
+ };
+ };
+ "@xstate/fsm-1.6.2" = {
name = "_at_xstate_slash_fsm";
packageName = "@xstate/fsm";
- version = "1.6.1";
+ version = "1.6.2";
src = fetchurl {
- url = "https://registry.npmjs.org/@xstate/fsm/-/fsm-1.6.1.tgz";
- sha512 = "xYKDNuPR36/fUK+jmhM+oauBmbdUAfuJKnDjg3/7NbN+Pj03TX7e94LXnzkwGgAR+U/HWoMqM5UPTuGIYfIx9g==";
+ url = "https://registry.npmjs.org/@xstate/fsm/-/fsm-1.6.2.tgz";
+ sha512 = "vOfiFVQu9mQceA8oJ3PcA4vwhtyo/j/mbVDVIlHDOh3iuiTqMnp805zZ3QsouRdO2Ie3B7n3jMw8BntI74fZxg==";
};
};
"@xtuc/ieee754-1.2.0" = {
@@ -9004,6 +8977,15 @@ let
sha512 = "asabaBSkEKosYKMITunzX177CXxQ4Q8BSSzMTKD+FefUhipQC70gfW5SiUDhYQ3vk8G+81HqQk7Fv9OXwwn9KA==";
};
};
+ "acorn-8.5.0" = {
+ name = "acorn";
+ packageName = "acorn";
+ version = "8.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/acorn/-/acorn-8.5.0.tgz";
+ sha512 = "yXbYeFy+jUuYd3/CDcg2NkIYE991XYX/bje7LmjJigUciaeO1JR4XxXgCIV1/Zc/dRuFEyw1L0pbA+qynJkW5Q==";
+ };
+ };
"acorn-globals-1.0.9" = {
name = "acorn-globals";
packageName = "acorn-globals";
@@ -9706,6 +9688,15 @@ let
sha1 = "813584021962a9e9e6fd039f940d12f56ca7859e";
};
};
+ "ansi-html-community-0.0.8" = {
+ name = "ansi-html-community";
+ packageName = "ansi-html-community";
+ version = "0.0.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz";
+ sha512 = "1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==";
+ };
+ };
"ansi-red-0.1.1" = {
name = "ansi-red";
packageName = "ansi-red";
@@ -10336,13 +10327,22 @@ let
sha1 = "f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40";
};
};
- "are-we-there-yet-1.1.5" = {
+ "are-we-there-yet-1.1.7" = {
name = "are-we-there-yet";
packageName = "are-we-there-yet";
- version = "1.1.5";
+ version = "1.1.7";
src = fetchurl {
- url = "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz";
- sha512 = "5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w==";
+ url = "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.7.tgz";
+ sha512 = "nxwy40TuMiUGqMyRHgCSWZ9FM4VAoRP4xUYSTv5ImRog+h9yISPbVH7H8fASCIzYn9wlEv4zvFL7uKDMCFQm3g==";
+ };
+ };
+ "are-we-there-yet-2.0.0" = {
+ name = "are-we-there-yet";
+ packageName = "are-we-there-yet";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz";
+ sha512 = "Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==";
};
};
"arg-2.0.0" = {
@@ -11281,13 +11281,13 @@ let
sha512 = "zVWTmAnxxHaeB2B1te84oecI8zTDJ/8G49aVBblRX6be0oq6pAybNcUSxwfgVOmOjSCvN4aYZAqwtyNI8e1YGw==";
};
};
- "async-mutex-0.3.1" = {
+ "async-mutex-0.3.2" = {
name = "async-mutex";
packageName = "async-mutex";
- version = "0.3.1";
+ version = "0.3.2";
src = fetchurl {
- url = "https://registry.npmjs.org/async-mutex/-/async-mutex-0.3.1.tgz";
- sha512 = "vRfQwcqBnJTLzVQo72Sf7KIUbcSUP5hNchx6udI1U6LuPQpfePgdjJzlCe76yFZ8pxlLjn9lwcl/Ya0TSOv0Tw==";
+ url = "https://registry.npmjs.org/async-mutex/-/async-mutex-0.3.2.tgz";
+ sha512 = "HuTK7E7MT7jZEh1P9GtRW9+aTWiDWWi9InbZ5hjxrnRa39KS4BW04+xLBhYNS2aXhHUIKZSw3gj4Pn1pj+qGAA==";
};
};
"async-retry-1.3.3" = {
@@ -11497,13 +11497,13 @@ let
sha512 = "XrvP4VVHdRBCdX1S3WXVD8+RyG9qeb1D5Sn1DeLiG2xfSpzellk5k54xbUERJ3M5DggQxes39UGOTP8CFrEGbg==";
};
};
- "available-typed-arrays-1.0.4" = {
+ "available-typed-arrays-1.0.5" = {
name = "available-typed-arrays";
packageName = "available-typed-arrays";
- version = "1.0.4";
+ version = "1.0.5";
src = fetchurl {
- url = "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.4.tgz";
- sha512 = "SA5mXJWrId1TaQjfxUYghbqQ/hYioKmLJvPJyDuYRtXXenFNMjj4hSSt1Cf1xsuXSXrtxrVC5Ot4eU6cOtBDdA==";
+ url = "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz";
+ sha512 = "DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==";
};
};
"await-lock-2.1.0" = {
@@ -11542,22 +11542,13 @@ let
sha512 = "tbMZ/Y2rRo6R6TTBODJXTiil+MXaoT6Qzotws3yvI1IWGpYxKo7N/3L06XB8ul8tCG0TigxIOY70SMICM70Ppg==";
};
};
- "aws-sdk-2.976.0" = {
+ "aws-sdk-2.984.0" = {
name = "aws-sdk";
packageName = "aws-sdk";
- version = "2.976.0";
+ version = "2.984.0";
src = fetchurl {
- url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.976.0.tgz";
- sha512 = "LWVh3nko6yGDfGcDW9nIClaukthkTueq7I/dXVNv4g9kuy2VOl5fVTPMACgTibWINAM29wZCM+gVQSSZu/Veow==";
- };
- };
- "aws-sdk-2.977.0" = {
- name = "aws-sdk";
- packageName = "aws-sdk";
- version = "2.977.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.977.0.tgz";
- sha512 = "LU0ityBR3w28Ewwr+V0xu4KyQr8i4C1ypafmBNttYm3FHVUDDPQ/hLHASnGq1zGp6rBxBxO1ZE6meFqpKXIaug==";
+ url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.984.0.tgz";
+ sha512 = "wFwNKhlO03V7UnpIge2qT/gYOMvGUlmVuFgF2gQRIkt6lWYvnf8/QDTCKZLhGBpC8/mml10m0CM3khMNwU1KVQ==";
};
};
"aws-sign2-0.6.0" = {
@@ -11605,6 +11596,15 @@ let
sha512 = "dKQiRHxGD9PPRIUNIWvZhPTPpl1rf/OxTYKsqKUDjBwYylTvV7SjSHJb9ratfyzM6wCdLCOYLzs73qpg5c4iGA==";
};
};
+ "axios-0.21.4" = {
+ name = "axios";
+ packageName = "axios";
+ version = "0.21.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz";
+ sha512 = "ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==";
+ };
+ };
"axios-retry-3.1.9" = {
name = "axios-retry";
packageName = "axios-retry";
@@ -11785,6 +11785,15 @@ let
sha512 = "u+/W+WAjMlvoocYGTwthAiQSxDcJAyHpQ6oWlHdFZaaN+Rlk8Q7iiwDPg2lN/FyJtAYnKjFxbn7xus4HCFkg5g==";
};
};
+ "babel-plugin-jsx-pragmatic-1.0.2" = {
+ name = "babel-plugin-jsx-pragmatic";
+ packageName = "babel-plugin-jsx-pragmatic";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/babel-plugin-jsx-pragmatic/-/babel-plugin-jsx-pragmatic-1.0.2.tgz";
+ sha1 = "41e2beb8642235f34b2a7ab12ca39e07201b8e59";
+ };
+ };
"babel-plugin-macros-2.8.0" = {
name = "babel-plugin-macros";
packageName = "babel-plugin-macros";
@@ -12271,6 +12280,15 @@ let
sha1 = "780a99c84e7d600260361511c4877613bf24f6bb";
};
};
+ "base-64-1.0.0" = {
+ name = "base-64";
+ packageName = "base-64";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/base-64/-/base-64-1.0.0.tgz";
+ sha512 = "kwDPIFCGx0NZHog36dj+tHiwP4QMzsZ3AgMViUBKI0+V5n4U0ufTCUMhnQ04diaRI8EX/QcPfql7zlhZ7j4zgg==";
+ };
+ };
"base-x-3.0.8" = {
name = "base-x";
packageName = "base-x";
@@ -12946,13 +12964,13 @@ let
sha512 = "SrLwMzrpETJDiH9z12EMcqtApgcQo9XsPi+S9Aodezu53ALcGjBBQ7+C+IWbsSCBlSvNEec8sqfh3itO/j/QUw==";
};
};
- "bit-field-1.5.2" = {
+ "bit-field-1.5.3" = {
name = "bit-field";
packageName = "bit-field";
- version = "1.5.2";
+ version = "1.5.3";
src = fetchurl {
- url = "https://registry.npmjs.org/bit-field/-/bit-field-1.5.2.tgz";
- sha512 = "CYS3HRGgIlm7A6/zqGFd/KPSUIv4EoEQVQ8mWcvBEdlf0db1q3j/fj5W/PXJasBfsvN2jM0Tzw3w1C7HUoR/fg==";
+ url = "https://registry.npmjs.org/bit-field/-/bit-field-1.5.3.tgz";
+ sha512 = "bSrkdGpRwPWWi9WOrrMV9xcF1PQAKGG5HnNgVUntIaL1OFND2n7LBM4p1VGXF6OYMKap0vB/OmzOhneDfSgIpg==";
};
};
"bitcoin-ops-1.4.1" = {
@@ -13063,13 +13081,22 @@ let
sha1 = "ffd2eabc141d36ed5c1817df7e992f91fd7fc65c";
};
};
- "bittorrent-tracker-9.18.0" = {
+ "bittorrent-tracker-9.18.2" = {
name = "bittorrent-tracker";
packageName = "bittorrent-tracker";
- version = "9.18.0";
+ version = "9.18.2";
src = fetchurl {
- url = "https://registry.npmjs.org/bittorrent-tracker/-/bittorrent-tracker-9.18.0.tgz";
- sha512 = "bZhW94TOExkRhn9g67SLWjGfT6seSlT//+oG7+AFve0wQP6DMNSnu7ued6McsTMaL+XivNFCE9YVWPbQ4moTYA==";
+ url = "https://registry.npmjs.org/bittorrent-tracker/-/bittorrent-tracker-9.18.2.tgz";
+ sha512 = "r4v+gIi/aQP4h0rvx7WVjnEFvu7Vw2ePPFzoyQjdPfyoJaV/JTdD3kFTZBaVO/Egj5y2O2Y+bTCdPIgD2MzT+A==";
+ };
+ };
+ "bitwise-xor-0.0.0" = {
+ name = "bitwise-xor";
+ packageName = "bitwise-xor";
+ version = "0.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/bitwise-xor/-/bitwise-xor-0.0.0.tgz";
+ sha1 = "040a8172b5bb8cc562b0b7119f230b2a1a780e3d";
};
};
"bl-1.2.3" = {
@@ -13171,13 +13198,13 @@ let
sha512 = "S3jE7riCbWnAK8OT+ta4Z8RX/X6nfISxzn0SDIMFYuY90qUwqx7w7e9fIsc2m2ODwma7dFcXNwGSjyayfKd1DQ==";
};
};
- "blgr-0.1.8" = {
+ "blgr-0.1.9" = {
name = "blgr";
packageName = "blgr";
- version = "0.1.8";
+ version = "0.1.9";
src = fetchurl {
- url = "https://registry.npmjs.org/blgr/-/blgr-0.1.8.tgz";
- sha512 = "9AvDK+lc92q//63S8cHtkaB060YOZqoqd0DkMwn35mR1SrcY0FXnCHePHZFx6Oe1d/6wj8Lw7mKEGoShCUf3Yw==";
+ url = "https://registry.npmjs.org/blgr/-/blgr-0.1.9.tgz";
+ sha512 = "ikJQoiQlhbJVIqcJ+CZxXXLD/et4bQ47/pdGpjdTq1p43qF5jfXtbWygZyWm05MInFruUicnw+U0oaoDgLx3PA==";
};
};
"blob-0.0.2" = {
@@ -13801,15 +13828,6 @@ let
sha512 = "TkOR1cQGdmXU9zW4YukWzWVSJwrxmNdADFbqbE3HFgQWe5wqZmOawqZ7J/8MPCwk/W8yY7Y0h+7mOtcZxLP23g==";
};
};
- "browserify-17.0.0" = {
- name = "browserify";
- packageName = "browserify";
- version = "17.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/browserify/-/browserify-17.0.0.tgz";
- sha512 = "SaHqzhku9v/j6XsQMRxPyBrSP3gnwmE27gLJYZgMT2GeK3J0+0toN+MnuNYDfHwVGQfLiMZ7KSNSIXHemy905w==";
- };
- };
"browserify-aes-1.2.0" = {
name = "browserify-aes";
packageName = "browserify-aes";
@@ -13918,13 +13936,13 @@ let
sha512 = "HI4lPveGKUR0x2StIz+2FXfDk9SfVMrxn6PLh1JeGUwcuoDkdKZebWiyLRJ68iIPDpMI4JLVDf7S7XzslgWOhw==";
};
};
- "browserslist-4.16.8" = {
+ "browserslist-4.17.0" = {
name = "browserslist";
packageName = "browserslist";
- version = "4.16.8";
+ version = "4.17.0";
src = fetchurl {
- url = "https://registry.npmjs.org/browserslist/-/browserslist-4.16.8.tgz";
- sha512 = "sc2m9ohR/49sWEbPj14ZSSZqp+kbi16aLao42Hmn3Z8FpjuMaq2xCA2l4zl9ITfyzvnvyE0hcg62YkIGKxgaNQ==";
+ url = "https://registry.npmjs.org/browserslist/-/browserslist-4.17.0.tgz";
+ sha512 = "g2BJ2a0nEYvEFQC208q8mVAhfNwpZ5Mu8BwgtCdZKO3qx98HChmeg448fPdUzld8aFmfLgVh7yymqV+q1lJZ5g==";
};
};
"brq-0.1.8" = {
@@ -14423,13 +14441,13 @@ let
sha512 = "GtKwd/4etuk1hNeprXoESBO1RSeRYJMXKf+O0qHmWdUomLT8ysNEfX/4bZFXr3BK6eukpHiEnhY2uMtEHDM2ng==";
};
};
- "bull-3.29.1" = {
+ "bull-3.29.2" = {
name = "bull";
packageName = "bull";
- version = "3.29.1";
+ version = "3.29.2";
src = fetchurl {
- url = "https://registry.npmjs.org/bull/-/bull-3.29.1.tgz";
- sha512 = "ASNnorakKCV4hmgHABfn8Ir+gy24a4gaGnXH/0bm1Msq+djOnNfM5XW7Igzsa5iTjpboWXhY9dHFVjiWRKsSGw==";
+ url = "https://registry.npmjs.org/bull/-/bull-3.29.2.tgz";
+ sha512 = "zWHyza/ElwVvJUqIEDJdUhGKd1V9EHjituUL7sJAmJoxS9Z7QMhYcMOWcgbUlWPgtiKN1g9ZlOtFAoq7C4/SQw==";
};
};
"bunyan-1.5.1" = {
@@ -14936,13 +14954,13 @@ let
sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==";
};
};
- "caniuse-lite-1.0.30001252" = {
+ "caniuse-lite-1.0.30001255" = {
name = "caniuse-lite";
packageName = "caniuse-lite";
- version = "1.0.30001252";
+ version = "1.0.30001255";
src = fetchurl {
- url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001252.tgz";
- sha512 = "I56jhWDGMtdILQORdusxBOH+Nl/KgQSdDmpJezYddnAkVOmnoU8zwjTV9xAjMIYxr0iPreEAVylCGcmHCjfaOw==";
+ url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001255.tgz";
+ sha512 = "F+A3N9jTZL882f/fg/WWVnKSu6IOo3ueLz4zwaOPbPYHNmM/ZaDUyzyJwS1mZhX7Ex5jqTyW599Gdelh5PDYLQ==";
};
};
"canvas-2.8.0" = {
@@ -15350,6 +15368,15 @@ let
sha512 = "mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==";
};
};
+ "chardet-1.3.0" = {
+ name = "chardet";
+ packageName = "chardet";
+ version = "1.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/chardet/-/chardet-1.3.0.tgz";
+ sha512 = "cyTQGGptIjIT+CMGT5J/0l9c6Fb+565GCFjjeUTKxUO7w3oR+FcNCMEKTn5xtVKaLFmladN7QF68IiQsv5Fbdw==";
+ };
+ };
"charenc-0.0.2" = {
name = "charenc";
packageName = "charenc";
@@ -16043,6 +16070,15 @@ let
sha512 = "J0uW2u06pWI0tMKCbcCiMOZd8TbWj4EpuYgPo4Jiwih/FfGbd4dbLcJieO0Ior1pY1HBrnmCuHFk6GB9azE4pg==";
};
};
+ "cli-progress-footer-2.0.0" = {
+ name = "cli-progress-footer";
+ packageName = "cli-progress-footer";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cli-progress-footer/-/cli-progress-footer-2.0.0.tgz";
+ sha512 = "+MWvSb0KGFOetUptNubegAYWj9NyDwI1XPrfvYE+YWOsufBinF/M7G3VLMjBEGvqSnLYM2nnAX76cHHh0eXsBg==";
+ };
+ };
"cli-spinner-0.2.10" = {
name = "cli-spinner";
packageName = "cli-spinner";
@@ -16070,6 +16106,15 @@ let
sha512 = "t+4/y50K/+4xcCRosKkA7W4gTr1MySvLV0q+PxmG7FJ5g+66ChKurYjxBCjHggHH3HA5Hh9cy+lcUGWDqVH+4Q==";
};
};
+ "cli-sprintf-format-1.1.0" = {
+ name = "cli-sprintf-format";
+ packageName = "cli-sprintf-format";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cli-sprintf-format/-/cli-sprintf-format-1.1.0.tgz";
+ sha512 = "t3LcCdPvrypZovStadWdRS4a186gsq9aoHJYTIer55VY20YdVjGVHDV4uPWcWCXTw1tPjfwlRGE7zKMWJ663Sw==";
+ };
+ };
"cli-table-0.3.6" = {
name = "cli-table";
packageName = "cli-table";
@@ -16790,6 +16835,15 @@ let
sha512 = "ecORCqbSFP7Wm8Y6lyqMJjexBQqXSF7SSeaTyGGphogUjBlFP9m9o08wy86HL2uB7fMTxtOUzLMk7ogKcxMg1w==";
};
};
+ "colorette-1.4.0" = {
+ name = "colorette";
+ packageName = "colorette";
+ version = "1.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/colorette/-/colorette-1.4.0.tgz";
+ sha512 = "Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==";
+ };
+ };
"colornames-1.1.1" = {
name = "colornames";
packageName = "colornames";
@@ -17672,13 +17726,13 @@ let
sha1 = "c20b96d8c617748aaf1c16021760cd27fcb8cb75";
};
};
- "constructs-3.3.133" = {
+ "constructs-3.3.147" = {
name = "constructs";
packageName = "constructs";
- version = "3.3.133";
+ version = "3.3.147";
src = fetchurl {
- url = "https://registry.npmjs.org/constructs/-/constructs-3.3.133.tgz";
- sha512 = "f0HgM9tmmR66A9XrzDXS7kXRbB9Gazb+KPldP9RRIkrFGhHuGeII+2YyTxxzY15cDgU58NrLrac+gynhrLy6Uw==";
+ url = "https://registry.npmjs.org/constructs/-/constructs-3.3.147.tgz";
+ sha512 = "xTSA87W5hscsHdFC2NcbJWALeMt8QWoCvVXRHPIuoBDDXdvBuNoqL2a5kY1yEWSMLQvBPnrDyinfz3twTX6dAw==";
};
};
"consume-http-header-1.0.0" = {
@@ -17754,22 +17808,22 @@ let
sha1 = "0e790b3abfef90f6ecb77ae8585db9099caf7578";
};
};
- "contentful-management-7.33.0" = {
+ "contentful-management-7.36.2" = {
name = "contentful-management";
packageName = "contentful-management";
- version = "7.33.0";
+ version = "7.36.2";
src = fetchurl {
- url = "https://registry.npmjs.org/contentful-management/-/contentful-management-7.33.0.tgz";
- sha512 = "Q6Y0peBdmZUkQyrKP5rRuv2IbVpt5LflYfRdWstTQ9sERyAOgYJWBtvDCupXKw3g1oBXUxLXXU7vZY2M5jnTpQ==";
+ url = "https://registry.npmjs.org/contentful-management/-/contentful-management-7.36.2.tgz";
+ sha512 = "pOyHyIuOygqQPDfF9C1MQKTAKAJcounClp4R5afhKkXDdh8jUPc34Ej9BACCtseo99Q9BftLQn49nmk9xJHylQ==";
};
};
- "contentful-sdk-core-6.8.0" = {
+ "contentful-sdk-core-6.8.5" = {
name = "contentful-sdk-core";
packageName = "contentful-sdk-core";
- version = "6.8.0";
+ version = "6.8.5";
src = fetchurl {
- url = "https://registry.npmjs.org/contentful-sdk-core/-/contentful-sdk-core-6.8.0.tgz";
- sha512 = "X45uNrcbQ2qY2p4G/Wx2EFUdnLnoDXjw29i+d0JVTUXqCG58p3q4GHuAPzTX+uafJL4h0ZY2xPOn4nvJ83eRBQ==";
+ url = "https://registry.npmjs.org/contentful-sdk-core/-/contentful-sdk-core-6.8.5.tgz";
+ sha512 = "Efmv/Jf0zeTdRNqCW6y+iMsNbDa/+KpxYOaYYz0z1qVd4q88qtZDJrvLdjPHtYvrcrvkhYtucVRFr9oe2b+cAA==";
};
};
"continuable-1.1.8" = {
@@ -18267,31 +18321,31 @@ let
sha512 = "5+5VxRFmSf97nM8Jr2wzOwLqRo6zphH2aX+7KsAUONObyzakDNq2G/bgbhinxB4PoV9L3aXQYhiDKyIKWd2c8g==";
};
};
- "core-js-3.16.3" = {
+ "core-js-3.17.2" = {
name = "core-js";
packageName = "core-js";
- version = "3.16.3";
+ version = "3.17.2";
src = fetchurl {
- url = "https://registry.npmjs.org/core-js/-/core-js-3.16.3.tgz";
- sha512 = "lM3GftxzHNtPNUJg0v4pC2RC6puwMd6VZA7vXUczi+SKmCWSf4JwO89VJGMqbzmB7jlK7B5hr3S64PqwFL49cA==";
+ url = "https://registry.npmjs.org/core-js/-/core-js-3.17.2.tgz";
+ sha512 = "XkbXqhcXeMHPRk2ItS+zQYliAMilea2euoMsnpRRdDad6b2VY6CQQcwz1K8AnWesfw4p165RzY0bTnr3UrbYiA==";
};
};
- "core-js-compat-3.16.3" = {
+ "core-js-compat-3.17.2" = {
name = "core-js-compat";
packageName = "core-js-compat";
- version = "3.16.3";
+ version = "3.17.2";
src = fetchurl {
- url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.16.3.tgz";
- sha512 = "A/OtSfSJQKLAFRVd4V0m6Sep9lPdjD8bpN8v3tCCGwE0Tmh0hOiVDm9tw6mXmWOKOSZIyr3EkywPo84cJjGvIQ==";
+ url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.17.2.tgz";
+ sha512 = "lHnt7A1Oqplebl5i0MrQyFv/yyEzr9p29OjlkcsFRDDgHwwQyVckfRGJ790qzXhkwM8ba4SFHHa2sO+T5f1zGg==";
};
};
- "core-js-pure-3.16.3" = {
+ "core-js-pure-3.17.2" = {
name = "core-js-pure";
packageName = "core-js-pure";
- version = "3.16.3";
+ version = "3.17.2";
src = fetchurl {
- url = "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.16.3.tgz";
- sha512 = "6In+2RwN0FT5yK0ZnhDP5rco/NnuuFZhHauQizZiHo5lDnqAvq8Phxcpy3f+prJOqtKodt/cftBl/GTOW0kiqQ==";
+ url = "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.17.2.tgz";
+ sha512 = "2VV7DlIbooyTI7Bh+yzOOWL9tGwLnQKHno7qATE+fqZzDKYr6llVjVQOzpD/QLZFgXDPb8T71pJokHEZHEYJhQ==";
};
};
"core-util-is-1.0.2" = {
@@ -18303,6 +18357,15 @@ let
sha1 = "b5fd54220aa2bc5ab57aab7140c940754503c1a7";
};
};
+ "core-util-is-1.0.3" = {
+ name = "core-util-is";
+ packageName = "core-util-is";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz";
+ sha512 = "ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==";
+ };
+ };
"core_d-3.2.0" = {
name = "core_d";
packageName = "core_d";
@@ -18528,13 +18591,13 @@ let
sha1 = "06be7abef947a3f14a30fd610671d401bca8b7b6";
};
};
- "create-gatsby-1.12.0" = {
+ "create-gatsby-1.13.0" = {
name = "create-gatsby";
packageName = "create-gatsby";
- version = "1.12.0";
+ version = "1.13.0";
src = fetchurl {
- url = "https://registry.npmjs.org/create-gatsby/-/create-gatsby-1.12.0.tgz";
- sha512 = "d8wlwgNgKrmd6J+cr4z1Hsis+sCwr9LoxnqSFqFzXcWowlODS5NP8gUZdCZ54hHd+0qIuAA77Wp67GAyhkFlCA==";
+ url = "https://registry.npmjs.org/create-gatsby/-/create-gatsby-1.13.0.tgz";
+ sha512 = "ypJeb+nj5uZybFeic+ab5myxGh21oZQ+OeCRkKHPL9NPZbzcvQE/y5lWXgVXHqy2/xf2IBnotkImrmiQiqPOxg==";
};
};
"create-graphback-1.0.1" = {
@@ -19203,13 +19266,13 @@ let
sha1 = "d1cfd8743c2f849a0abb2fd544db56695d19a490";
};
};
- "csv-parse-4.16.0" = {
+ "csv-parse-4.16.3" = {
name = "csv-parse";
packageName = "csv-parse";
- version = "4.16.0";
+ version = "4.16.3";
src = fetchurl {
- url = "https://registry.npmjs.org/csv-parse/-/csv-parse-4.16.0.tgz";
- sha512 = "Zb4tGPANH4SW0LgC9+s9Mnequs9aqn7N3/pCqNbVjs2XhEF6yWNU2Vm4OGl1v2Go9nw8rXt87Cm2QN/o6Vpqgg==";
+ url = "https://registry.npmjs.org/csv-parse/-/csv-parse-4.16.3.tgz";
+ sha512 = "cO1I/zmz4w2dcKHVvpCr7JVRu8/FymG5OEpmvsZYlccYolPBLoVGKUHgNoc4ZGkFeFlWGEDmMyBM+TTqRdW/wg==";
};
};
"csv-parser-1.12.1" = {
@@ -20949,13 +21012,13 @@ let
sha1 = "9ced65ea0bc0b09f42a6d79c1b1903f9d913cc18";
};
};
- "deep-is-0.1.3" = {
+ "deep-is-0.1.4" = {
name = "deep-is";
packageName = "deep-is";
- version = "0.1.3";
+ version = "0.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz";
- sha1 = "b369d6fb5dbc13eecf524f91b070feedc357cf34";
+ url = "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz";
+ sha512 = "oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==";
};
};
"deepcopy-2.1.0" = {
@@ -21768,13 +21831,13 @@ let
sha512 = "Hq8o7+6GaZeoFjtpgvRBUknSXNeJiCx7V9Fr94ZMljNiCr9n9L8H8aJqgWOQiDDGdyn29fRNcDdRVJ5fdyihfg==";
};
};
- "diff2html-3.4.9" = {
+ "diff2html-3.4.11" = {
name = "diff2html";
packageName = "diff2html";
- version = "3.4.9";
+ version = "3.4.11";
src = fetchurl {
- url = "https://registry.npmjs.org/diff2html/-/diff2html-3.4.9.tgz";
- sha512 = "33x45h6Xgfasjt49e0ldfLnUdCjLjHIdablpAlrKnQyyG1RA7w+4cbp9+bUfNLxfFj584BookXqh5KJEt4+MLA==";
+ url = "https://registry.npmjs.org/diff2html/-/diff2html-3.4.11.tgz";
+ sha512 = "FBW74QVkbVqbqM36NbSsmStU3mAovluM3Zg6QuuPtn26nzdfoVgnG2axKnbEbiHffM+CCQwrcpCBcDZhkN9VSw==";
};
};
"diff3-0.0.3" = {
@@ -22047,31 +22110,31 @@ let
sha512 = "2FFKzmLGOnD+Y378bRKH+gTjRMuSpH7OKgPy31KjjfCoKZx7tU8Dmqfd/3fhG2d/4bppuN8/KtWMUZBAcUCRnQ==";
};
};
- "dockerfile-ast-0.3.0" = {
+ "dockerfile-ast-0.3.1" = {
name = "dockerfile-ast";
packageName = "dockerfile-ast";
- version = "0.3.0";
+ version = "0.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/dockerfile-ast/-/dockerfile-ast-0.3.0.tgz";
- sha512 = "wEbFtqeHZffyOYP2pMfMLQ0m2wdHUzty0UTDoAMNa6/nvLfDRSEaPkszIWFy86tuWwHucBtcczIHQlFATJ54eA==";
+ url = "https://registry.npmjs.org/dockerfile-ast/-/dockerfile-ast-0.3.1.tgz";
+ sha512 = "sxFv+wY4TNC68+JkbZ4kPn3pAfnfvbFBUcvYAA9KFg7Es58FgWr+trskeDRWFkCFeuM1QIXeBC5exMeiAeW96Q==";
};
};
- "dockerfile-language-service-0.4.0" = {
+ "dockerfile-language-service-0.5.0" = {
name = "dockerfile-language-service";
packageName = "dockerfile-language-service";
- version = "0.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/dockerfile-language-service/-/dockerfile-language-service-0.4.0.tgz";
- sha512 = "P4yj9in7PMLeN3StBn5e+Ofiju+nfs5ZdDv4EqfK91mYx/+U7wm8QipyP05iUXaVKFh6I9tn9Qmi1tpt5jj2hw==";
- };
- };
- "dockerfile-utils-0.5.0" = {
- name = "dockerfile-utils";
- packageName = "dockerfile-utils";
version = "0.5.0";
src = fetchurl {
- url = "https://registry.npmjs.org/dockerfile-utils/-/dockerfile-utils-0.5.0.tgz";
- sha512 = "a12B6qAwLpl7D9Y6Zxt0AhW74g0k5NarpWF+NUb66A6la5vs1igI/KfdXZbFoQtpTOsv1T+OfKmhlE982Ars1w==";
+ url = "https://registry.npmjs.org/dockerfile-language-service/-/dockerfile-language-service-0.5.0.tgz";
+ sha512 = "63B8rASoOz69NI4a3ftC64mVTDnQhd6xXdu5J6PN53+2wEm6vhO+zf6R4A5/ssxB3nSnckV25OtHCdBX2CYluQ==";
+ };
+ };
+ "dockerfile-utils-0.7.0" = {
+ name = "dockerfile-utils";
+ packageName = "dockerfile-utils";
+ version = "0.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dockerfile-utils/-/dockerfile-utils-0.7.0.tgz";
+ sha512 = "27Qh1oT1yjbAPbV/VheDZICoSOYfb9pEgkZSiQMbGQOXw0a4ZObDRNxqYQ2o9udVOTbb/HS4y/hm+reCpz8i9g==";
};
};
"doctoc-2.0.1" = {
@@ -22110,13 +22173,13 @@ let
sha1 = "ea80b106a87538774e8a3a4a5afe293de489e0a9";
};
};
- "doipjs-0.11.2" = {
+ "doipjs-0.13.0" = {
name = "doipjs";
packageName = "doipjs";
- version = "0.11.2";
+ version = "0.13.0";
src = fetchurl {
- url = "https://registry.npmjs.org/doipjs/-/doipjs-0.11.2.tgz";
- sha512 = "UZJegmUvMBJS5luh2a64JOVMGO80KdkGY7I9noxr5rmwuiSNzhSy5571DY1z2vacYOrZ1xpxUnlzB0bC9+NiNg==";
+ url = "https://registry.npmjs.org/doipjs/-/doipjs-0.13.0.tgz";
+ sha512 = "PgLmVcrSAfIZk/Tb9xvmDQ2S9dkHd+o7i2NBI0mEI0rTWk6p2TvpWSPyrupaPeAmNDSbKwmmBmXH/+ThdWqHMg==";
};
};
"dom-converter-0.2.0" = {
@@ -22308,13 +22371,13 @@ let
sha512 = "J1C5rIANUbuYK+FuFL98650rihynUOEzRLxW+90bKZRWB6A1X1Tf82GxR1qAWLyfNPRvjqfip3Q5tdYlmAa9lA==";
};
};
- "domhandler-4.2.0" = {
+ "domhandler-4.2.2" = {
name = "domhandler";
packageName = "domhandler";
- version = "4.2.0";
+ version = "4.2.2";
src = fetchurl {
- url = "https://registry.npmjs.org/domhandler/-/domhandler-4.2.0.tgz";
- sha512 = "zk7sgt970kzPks2Bf+dwT/PLzghLnsivb9CcxkvR8Mzr66Olr0Ofd8neSbglHJHaHa2MadfoSdNlKYAaafmWfA==";
+ url = "https://registry.npmjs.org/domhandler/-/domhandler-4.2.2.tgz";
+ sha512 = "PzE9aBMsdZO8TK4BnuJwH0QT41wgMbRzuZrHUcpYncEjmQazq8QEaBWgLG7ZyC/DAZKEgglpIA6j4Qn/HmxS3w==";
};
};
"domino-2.1.6" = {
@@ -22362,13 +22425,13 @@ let
sha512 = "Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==";
};
};
- "domutils-2.7.0" = {
+ "domutils-2.8.0" = {
name = "domutils";
packageName = "domutils";
- version = "2.7.0";
+ version = "2.8.0";
src = fetchurl {
- url = "https://registry.npmjs.org/domutils/-/domutils-2.7.0.tgz";
- sha512 = "8eaHa17IwJUPAiB+SoTYBo5mCdeMgdcAoXJ59m6DT1vw+5iLS3gNoqYaRowaBKtGVrOF1Jz4yDTgYKLK2kvfJg==";
+ url = "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz";
+ sha512 = "w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==";
};
};
"dot-case-3.0.4" = {
@@ -22812,22 +22875,22 @@ let
sha512 = "9lt9Zse4hPucPkoP7FHDF0LQAlGyF9JVpnClFLFH3aSSbxmyoqINRpp/9wePWJTUl4KOQwRL72Iw3InHPDkoGw==";
};
};
- "electron-13.2.2" = {
+ "electron-13.3.0" = {
name = "electron";
packageName = "electron";
- version = "13.2.2";
+ version = "13.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/electron/-/electron-13.2.2.tgz";
- sha512 = "thGq2YaZqQWK1HexRghxdb26a8hA7ZSebukUSHlnHrY9+Sx9rW7e3uEHbibk/seRXVoXO76HndjKdHyObP9/Kw==";
+ url = "https://registry.npmjs.org/electron/-/electron-13.3.0.tgz";
+ sha512 = "d/BvOLDjI4i7yf9tqCuLL2fFGA2TrM/D9PyRpua+rJolG0qrwp/FohP02L0m+44kmPpofIo4l3NPwLmzyKKimA==";
};
};
- "electron-notarize-1.1.0" = {
+ "electron-notarize-1.1.1" = {
name = "electron-notarize";
packageName = "electron-notarize";
- version = "1.1.0";
+ version = "1.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/electron-notarize/-/electron-notarize-1.1.0.tgz";
- sha512 = "Dmp/jm2y3PTcjmjVe+jCT0sjsbBfbNuk7GOPtduZce2iae1hgAPnlNErk6x70TalsGIL5Ip3liSryqde/6eB5w==";
+ url = "https://registry.npmjs.org/electron-notarize/-/electron-notarize-1.1.1.tgz";
+ sha512 = "kufsnqh86CTX89AYNG3NCPoboqnku/+32RxeJ2+7A4Rbm4bbOx0Nc7XTy3/gAlBfpj9xPAxHfhZLOHgfi6cJVw==";
};
};
"electron-osx-sign-0.5.0" = {
@@ -22848,22 +22911,22 @@ let
sha512 = "PHcykXinmjPyJcYoNGbOWNsOU25nIbMLHBAfg4caazWzYELFL14FshDZEqqrvVOMEUnqjx/Ktc1NmMIN5ZRomQ==";
};
};
- "electron-rebuild-2.3.5" = {
+ "electron-rebuild-3.2.3" = {
name = "electron-rebuild";
packageName = "electron-rebuild";
- version = "2.3.5";
+ version = "3.2.3";
src = fetchurl {
- url = "https://registry.npmjs.org/electron-rebuild/-/electron-rebuild-2.3.5.tgz";
- sha512 = "1sQ1DRtQGpglFhc3urD4olMJzt/wxlbnAAsf+WY2xHf5c50ZovivZvCXSpVgTOP9f4TzOMvelWyspyfhxQKHzQ==";
+ url = "https://registry.npmjs.org/electron-rebuild/-/electron-rebuild-3.2.3.tgz";
+ sha512 = "9oxNmKlDCaf651c+yJWCDIBpF6A9aY+wQtasLEeR5AsPYPuOKEX6xHnC2+WgCLOC94JEpCZznecyC84fbwZq4A==";
};
};
- "electron-to-chromium-1.3.818" = {
+ "electron-to-chromium-1.3.832" = {
name = "electron-to-chromium";
packageName = "electron-to-chromium";
- version = "1.3.818";
+ version = "1.3.832";
src = fetchurl {
- url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.818.tgz";
- sha512 = "c/Z9gIr+jDZAR9q+mn40hEc1NharBT+8ejkarjbCDnBNFviI6hvcC5j2ezkAXru//bTnQp5n6iPi0JA83Tla1Q==";
+ url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.832.tgz";
+ sha512 = "x7lO8tGoW0CyV53qON4Lb5Rok9ipDelNdBIAiYUZ03dqy4u9vohMM1qV047+s/hiyJiqUWX/3PNwkX3kexX5ig==";
};
};
"electrum-client-git://github.com/janoside/electrum-client" = {
@@ -23219,6 +23282,15 @@ let
sha512 = "aMWot7H5aC8L4/T8qMYbLdvKlZOdJTH54FxfdFunTGvhMx1BHkJOntWArsVfgAZVwAO9LC2sryPWRcEeUzCe5w==";
};
};
+ "engine.io-5.2.0" = {
+ name = "engine.io";
+ packageName = "engine.io";
+ version = "5.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/engine.io/-/engine.io-5.2.0.tgz";
+ sha512 = "d1DexkQx87IFr1FLuV+0f5kAm1Hk1uOVijLOb+D1sDO2QMb7YjE02VHtZtxo7xIXMgcWLb+vl3HRT0rI9tr4jQ==";
+ };
+ };
"engine.io-client-1.3.1" = {
name = "engine.io-client";
packageName = "engine.io-client";
@@ -23264,13 +23336,13 @@ let
sha512 = "x+dN/fBH8Ro8TFwJ+rkB2AmuVw9Yu2mockR/p3W8f8YtExwFgDvBDi0GWyb4ZLkpahtDGZgtr3zLovanJghPqg==";
};
};
- "engine.io-parser-4.0.2" = {
+ "engine.io-parser-4.0.3" = {
name = "engine.io-parser";
packageName = "engine.io-parser";
- version = "4.0.2";
+ version = "4.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-4.0.2.tgz";
- sha512 = "sHfEQv6nmtJrq6TKuIz5kyEKH/qSdK56H/A+7DnAuUPWosnIZAS2NHNcPLmyjtY3cGS/MqJdZbUjW97JU72iYg==";
+ url = "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-4.0.3.tgz";
+ sha512 = "xEAAY0msNnESNPc00e19y5heTPX4y/TJ36gr8t1voOaNmTojP9b3oK3BbJLFufW2XFPQaaijpFewm2g2Um3uqA==";
};
};
"enhanced-resolve-2.3.0" = {
@@ -23525,13 +23597,13 @@ let
sha512 = "rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A==";
};
};
- "es-abstract-1.18.5" = {
+ "es-abstract-1.18.6" = {
name = "es-abstract";
packageName = "es-abstract";
- version = "1.18.5";
+ version = "1.18.6";
src = fetchurl {
- url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.5.tgz";
- sha512 = "DDggyJLoS91CkJjgauM5c0yZMjiD1uK3KcaCeAmffGwZ+ODWzOkPN4QwRbsK5DOFf06fywmyLci3ZD8jLGhVYA==";
+ url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.6.tgz";
+ sha512 = "kAeIT4cku5eNLNuUKhlmtuk1/TRZvQoYccn6TO0cSVdf1kzB0T7+dYuVK9MWM7l+/53W2Q8M7N2c6MQvhXFcUQ==";
};
};
"es-get-iterator-1.1.2" = {
@@ -23903,13 +23975,13 @@ let
sha512 = "Nhc+oVAHm0uz/PkJAWscwIT4ijTrK5fqNqz9QB1D35SbbuMG1uB6Yr5AJpvPSWg+WOw7nYNswerYh0kOk64gqQ==";
};
};
- "eslint-plugin-vue-7.16.0" = {
+ "eslint-plugin-vue-7.17.0" = {
name = "eslint-plugin-vue";
packageName = "eslint-plugin-vue";
- version = "7.16.0";
+ version = "7.17.0";
src = fetchurl {
- url = "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-7.16.0.tgz";
- sha512 = "0E2dVvVC7I2Xm1HXyx+ZwPj9CNX4NJjs4K4r+GVsHWyt5Pew3JLD4fI7A91b2jeL0TXE7LlszrwLSTJU9eqehw==";
+ url = "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-7.17.0.tgz";
+ sha512 = "Rq5R2QetDCgC+kBFQw1+aJ5B93tQ4xqZvoCUxuIzwTonngNArsdP8ChM8PowIzsJvRtWl4ltGh/bZcN3xhFWSw==";
};
};
"eslint-scope-3.7.3" = {
@@ -24884,15 +24956,6 @@ let
sha512 = "64YwTWpxgVGnwoLi4zvKaQ5RWIV0dkxVE4GGkBF7D89RI0/I6gTRUDL25Il4AK3cUqyLtxnX2X5BZ2YRvRx5uQ==";
};
};
- "express-openapi-8.0.0" = {
- name = "express-openapi";
- packageName = "express-openapi";
- version = "8.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/express-openapi/-/express-openapi-8.0.0.tgz";
- sha512 = "MUntG3qQKdU5eRG51WLglaUfIXrVagQHNmStwl44lzu6XKiMj4TBDm/cIbubO49HAMCqNkX5BaiKCOK6pvP5Wg==";
- };
- };
"express-session-1.17.2" = {
name = "express-session";
packageName = "express-session";
@@ -24920,6 +24983,15 @@ let
sha1 = "f5fc2f9fa9e9a8578634f10e86ba5a4346b96f4f";
};
};
+ "express-validator-6.12.1" = {
+ name = "express-validator";
+ packageName = "express-validator";
+ version = "6.12.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/express-validator/-/express-validator-6.12.1.tgz";
+ sha512 = "olpTAv0ZB5IhNuDQ2rodKAuJsewgFgLIsczJMAWD6T0Yvxsa+j/Hk61jl8e26lAq+oJr6hUqPRjdlOBKhFlWeQ==";
+ };
+ };
"express-ws-2.0.0" = {
name = "express-ws";
packageName = "express-ws";
@@ -25388,13 +25460,13 @@ let
sha1 = "a45aff345196006d406ca6cdcd05f69051ef35b8";
};
};
- "fast-redact-3.0.1" = {
+ "fast-redact-3.0.2" = {
name = "fast-redact";
packageName = "fast-redact";
- version = "3.0.1";
+ version = "3.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/fast-redact/-/fast-redact-3.0.1.tgz";
- sha512 = "kYpn4Y/valC9MdrISg47tZOpYBNoTXKgT9GYXFpHN/jYFs+lFkPoisY+LcBODdKVMY96ATzvzsWv+ES/4Kmufw==";
+ url = "https://registry.npmjs.org/fast-redact/-/fast-redact-3.0.2.tgz";
+ sha512 = "YN+CYfCVRVMUZOUPeinHNKgytM1wPI/C/UCLEi56EsY2dwwvI00kIJHJoI7pMVqGoMew8SMZ2SSfHKHULHXDsg==";
};
};
"fast-safe-stringify-1.2.3" = {
@@ -25406,13 +25478,22 @@ let
sha512 = "QJYT/i0QYoiZBQ71ivxdyTqkwKkQ0oxACXHYxH2zYHJEgzi2LsbjgvtzTbLi1SZcF190Db2YP7I7eTsU2egOlw==";
};
};
- "fast-safe-stringify-2.0.8" = {
+ "fast-safe-stringify-2.1.0" = {
name = "fast-safe-stringify";
packageName = "fast-safe-stringify";
- version = "2.0.8";
+ version = "2.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-2.0.8.tgz";
- sha512 = "lXatBjf3WPjmWD6DpIZxkeSsCOwqI0maYMpgDlx8g4U2qi4lbjA9oH/HD2a87G+KfsUmo5WbJFmqBZlPxtptag==";
+ url = "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-2.1.0.tgz";
+ sha512 = "xHSIyDJTOVQjtMBGcUokl3tpaOKgTyVTjlHj255V4Q4J1oho3cnrWrf5sCx8z1jq7gzNMv8y0PH53pYYuZUFPQ==";
+ };
+ };
+ "fast-safe-stringify-2.1.1" = {
+ name = "fast-safe-stringify";
+ packageName = "fast-safe-stringify";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-2.1.1.tgz";
+ sha512 = "W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==";
};
};
"fast-text-encoding-1.0.3" = {
@@ -25487,13 +25568,13 @@ let
sha512 = "CJ0HCB5tL5fYTEA7ToAq5+kTwd++Borf1/bifxd9iT70QcXr4MRrO3Llf8Ifs70q+SJcGHFtnIE/Nw6giCtECA==";
};
};
- "faunadb-4.3.0" = {
+ "faunadb-4.4.1" = {
name = "faunadb";
packageName = "faunadb";
- version = "4.3.0";
+ version = "4.4.1";
src = fetchurl {
- url = "https://registry.npmjs.org/faunadb/-/faunadb-4.3.0.tgz";
- sha512 = "H5ZnInUNLAvrjqDHYXmYX+S55HP8Ib85QbF/UK1fV/bz125unl7J7LbjqKvMGcREYqOvIrpQCaniK1LwAkXHTw==";
+ url = "https://registry.npmjs.org/faunadb/-/faunadb-4.4.1.tgz";
+ sha512 = "1V2ve22T4Q45C3PBB+LD7Fpk4lVajbtxDXDpENsujC+LMe88LqBQ9brl5v5uB3sCTSVAX0fsGtuZ+N5x15vdoQ==";
};
};
"faye-websocket-0.10.0" = {
@@ -25910,13 +25991,13 @@ let
sha512 = "mjFIpOHC4jbfcTfoh4rkWpI31mF7viw9ikj/JyLoKzqlwG/YsefKfvYlYhdYdg/9mtK2z1AzgN/0LvVQ3zdlSQ==";
};
};
- "filesize-7.0.0" = {
+ "filesize-8.0.0" = {
name = "filesize";
packageName = "filesize";
- version = "7.0.0";
+ version = "8.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/filesize/-/filesize-7.0.0.tgz";
- sha512 = "Wsstw+O1lZ9gVmOI1thyeQvODsaoId2qw14lCqIzUhoHKXX7T2hVpB7BR6SvgodMBgWccrx/y2eyV8L7tDmY6A==";
+ url = "https://registry.npmjs.org/filesize/-/filesize-8.0.0.tgz";
+ sha512 = "sb690gQx3y/5KZIztgWAKM/r4Hf1V3R8mkAE0OhasMw2FDYduFTYCji8YN9BVpsGoMxrHPFvia1BMxwfLHX+fQ==";
};
};
"filestream-5.0.0" = {
@@ -26018,13 +26099,13 @@ let
sha512 = "Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==";
};
};
- "find-cache-dir-3.3.1" = {
+ "find-cache-dir-3.3.2" = {
name = "find-cache-dir";
packageName = "find-cache-dir";
- version = "3.3.1";
+ version = "3.3.2";
src = fetchurl {
- url = "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.1.tgz";
- sha512 = "t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ==";
+ url = "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz";
+ sha512 = "wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==";
};
};
"find-replace-1.0.3" = {
@@ -26360,13 +26441,13 @@ let
sha512 = "jlbUu0XkbpXeXhan5xyTqVK1jmEKNxE8hpzznI3TThHTr76GiFwK0iRzhDo4KNy+S9h/KxHaqVhTP86vA6wHCg==";
};
};
- "flow-parser-0.158.0" = {
+ "flow-parser-0.159.0" = {
name = "flow-parser";
packageName = "flow-parser";
- version = "0.158.0";
+ version = "0.159.0";
src = fetchurl {
- url = "https://registry.npmjs.org/flow-parser/-/flow-parser-0.158.0.tgz";
- sha512 = "0hMsPkBTRrkII/0YiG9ehOxFXy4gOWdk8RSRze5WbfeKAQpL5kC2K4BmumyTfU9o5gr7/llgElF3UpSSrjzQAA==";
+ url = "https://registry.npmjs.org/flow-parser/-/flow-parser-0.159.0.tgz";
+ sha512 = "/AFSLMSbqictmgPm+vrXBD0rLTsVRrlKfiGRoDjt/WhhUxqy5ZMuLVHbRD/g3C3JRnJgDrKSb3+piQoM1dzVGw==";
};
};
"fluent-ffmpeg-2.1.2" = {
@@ -26531,13 +26612,13 @@ let
sha512 = "VjAQdSLsl6AkpZNyrQJfO7BXLo4chnStqb055bumZMbRUPpVuPN3a4ktsnRCmrFZjtMlYLkyXiR5rAs4WOpC4Q==";
};
};
- "follow-redirects-1.14.2" = {
+ "follow-redirects-1.14.3" = {
name = "follow-redirects";
packageName = "follow-redirects";
- version = "1.14.2";
+ version = "1.14.3";
src = fetchurl {
- url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.2.tgz";
- sha512 = "yLR6WaE2lbF0x4K2qE2p9PEXKLDjUjnR/xmjS3wHAYxtlsI9MLLBJUZirAHKzUZDGLxje7w/cXR49WOUo4rbsA==";
+ url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.3.tgz";
+ sha512 = "3MkHxknWMUtb23apkgz/83fDoe+y+qr0TdgacGIA7bew+QLBo3vdgEN2xEsuXNivpFy4CyDhBBZnNZOtalmenw==";
};
};
"follow-redirects-1.5.10" = {
@@ -27125,15 +27206,6 @@ let
sha512 = "kSAfx/P8oLSi5+tblecTETcJJ/Q+qL+xzGx4hns/+gHXMkTOZEzG73/2dBDW1FFy5+ZW080XoMaBAN2kCN55aQ==";
};
};
- "fs-routes-8.0.0" = {
- name = "fs-routes";
- packageName = "fs-routes";
- version = "8.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/fs-routes/-/fs-routes-8.0.0.tgz";
- sha512 = "EezW71GPu+VK2ZOnX0Aljaref63+mvhkkz55DqUp5xryV/mJraA2t/XFmBxNMwgRq6tFUOYuQOlr+RQh4nq5kQ==";
- };
- };
"fs-write-stream-atomic-1.0.10" = {
name = "fs-write-stream-atomic";
packageName = "fs-write-stream-atomic";
@@ -27341,31 +27413,31 @@ let
sha1 = "cbed2d20a40c1f5679a35908e2b9415733e78db9";
};
};
- "gatsby-core-utils-2.12.0" = {
+ "gatsby-core-utils-2.13.0" = {
name = "gatsby-core-utils";
packageName = "gatsby-core-utils";
- version = "2.12.0";
+ version = "2.13.0";
src = fetchurl {
- url = "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-2.12.0.tgz";
- sha512 = "aN9fub3XX/uEqAstxG3mr8BH6hMGhTmAzANZH3HSV4tyG1Y4a4FKisZA0ggmy/dKOy5cyeuoMHmzAr8+qtHcAw==";
+ url = "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-2.13.0.tgz";
+ sha512 = "fkMAxiWFY8N26Iui/Wq8yfE2FY2b31bGJVtlIlSwLgfsoO7fpta64lxeivRtfpNLbAoywmWY/L8TC74GFlnuWg==";
};
};
- "gatsby-recipes-0.23.0" = {
+ "gatsby-recipes-0.24.0" = {
name = "gatsby-recipes";
packageName = "gatsby-recipes";
- version = "0.23.0";
+ version = "0.24.0";
src = fetchurl {
- url = "https://registry.npmjs.org/gatsby-recipes/-/gatsby-recipes-0.23.0.tgz";
- sha512 = "dR/u2mFiWhPf+0O8MuFfnl5JTbjOChYKG9+CIhubLwAjJN0cDbvleSJEQ7K32quKd56dqNf1psXqpZ+UUlx8vA==";
+ url = "https://registry.npmjs.org/gatsby-recipes/-/gatsby-recipes-0.24.0.tgz";
+ sha512 = "azDY4tnOCy5/CK+Kv53CBIgzmEroAGe/mLaiW2PuizTQIdhoY3lg63ZXK6kPQHAq1F4qAYHGkBM4ECgSfaq5HA==";
};
};
- "gatsby-telemetry-2.12.0" = {
+ "gatsby-telemetry-2.13.0" = {
name = "gatsby-telemetry";
packageName = "gatsby-telemetry";
- version = "2.12.0";
+ version = "2.13.0";
src = fetchurl {
- url = "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-2.12.0.tgz";
- sha512 = "W27oKt7/ThrNz12lPiclb9J7v/Q6ZM5Eh+JQ5w/TRFs4vqLOsfJZxmYG2HzFvAZtoFUB1JsbvmHZDMxUtR84Uw==";
+ url = "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-2.13.0.tgz";
+ sha512 = "PN9kKbZd0i2QkoVvHyCa3VjuRVIvBwjXTyZHwL+se5yrbYufZQXoyMiMMXFV48FvxMgE53ON1U2vtzeRvE8U2w==";
};
};
"gauge-1.2.7" = {
@@ -27395,13 +27467,13 @@ let
sha512 = "6STz6KdQgxO4S/ko+AbjlFGGdGcknluoqU+79GOFCDqqyYj5OanQf9AjxwN0jCidtT+ziPMmPSt9E4hfQ0CwIQ==";
};
};
- "gaxios-4.3.0" = {
+ "gaxios-4.3.1" = {
name = "gaxios";
packageName = "gaxios";
- version = "4.3.0";
+ version = "4.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/gaxios/-/gaxios-4.3.0.tgz";
- sha512 = "pHplNbslpwCLMyII/lHPWFQbJWOX0B3R1hwBEOvzYi1GmdKZruuEHK4N9V6f7tf1EaPYyF80mui1+344p6SmLg==";
+ url = "https://registry.npmjs.org/gaxios/-/gaxios-4.3.1.tgz";
+ sha512 = "9qXV7yrMCGzTrphl9/YGMVH41oSg0rhn1j3wJWed4Oqk45/hXDD2wBT5J1NjQcqTCcv4g3nFnyQ7reSRHNgBgw==";
};
};
"gaze-1.1.3" = {
@@ -27422,13 +27494,13 @@ let
sha512 = "4FcCj9e8j8rCjvLkqRpGZBLgTC/xr9XEf5By3x77cDucWWB3pJK6FEwXZCTCbb4z8xdaOoi4owBNrvn3ciDdxA==";
};
};
- "gcp-metadata-4.3.0" = {
+ "gcp-metadata-4.3.1" = {
name = "gcp-metadata";
packageName = "gcp-metadata";
- version = "4.3.0";
+ version = "4.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/gcp-metadata/-/gcp-metadata-4.3.0.tgz";
- sha512 = "L9XQUpvKJCM76YRSmcxrR4mFPzPGsgZUH+GgHMxAET8qc6+BhRJq63RLhWakgEO2KKVgeSDVfyiNjkGSADwNTA==";
+ url = "https://registry.npmjs.org/gcp-metadata/-/gcp-metadata-4.3.1.tgz";
+ sha512 = "x850LS5N7V1F3UcV7PoupzGsyD6iVwTVvsh3tbXfkctZnBnjW5yu5z1/3k3SehF7TyoTIe78rJs02GMMy+LF+A==";
};
};
"gelf-stream-1.1.1" = {
@@ -27593,13 +27665,13 @@ let
sha512 = "pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==";
};
};
- "get-pkg-repo-4.1.2" = {
+ "get-pkg-repo-4.2.0" = {
name = "get-pkg-repo";
packageName = "get-pkg-repo";
- version = "4.1.2";
+ version = "4.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/get-pkg-repo/-/get-pkg-repo-4.1.2.tgz";
- sha512 = "/FjamZL9cBYllEbReZkxF2IMh80d8TJoC4e3bmLNif8ibHw95aj0N/tzqK0kZz9eU/3w3dL6lF4fnnX/sDdW3A==";
+ url = "https://registry.npmjs.org/get-pkg-repo/-/get-pkg-repo-4.2.0.tgz";
+ sha512 = "eiSexNxIsij+l+IZzkqT52t4Lh+0ChN9l6Z3oennXLQT8OaJNvp9ecoXpmZ220lPYMwwM1KDal4w4ZA+smVLHA==";
};
};
"get-port-3.2.0" = {
@@ -27728,6 +27800,15 @@ let
sha512 = "ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==";
};
};
+ "get-symbol-description-1.0.0" = {
+ name = "get-symbol-description";
+ packageName = "get-symbol-description";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz";
+ sha512 = "2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==";
+ };
+ };
"get-uri-3.0.2" = {
name = "get-uri";
packageName = "get-uri";
@@ -27935,13 +28016,13 @@ let
sha512 = "YUvVDg/vX3d0syBsk/CKUTib0srcQME0JyHkL5BaYdwLsiCslPWmDSi8PUMo9pXYjrryMcmsCoCgsTpSCJEQaA==";
};
};
- "git-url-parse-11.5.0" = {
+ "git-url-parse-11.6.0" = {
name = "git-url-parse";
packageName = "git-url-parse";
- version = "11.5.0";
+ version = "11.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/git-url-parse/-/git-url-parse-11.5.0.tgz";
- sha512 = "TZYSMDeM37r71Lqg1mbnMlOqlHd7BSij9qN7XwTkRqSAYFMihGLGhfHwgqQob3GUhEneKnV4nskN9rbQw2KGxA==";
+ url = "https://registry.npmjs.org/git-url-parse/-/git-url-parse-11.6.0.tgz";
+ sha512 = "WWUxvJs5HsyHL6L08wOusa/IXYtMuCAhrMmnTjQPpBU0TTHyDhnOATNH3xNQz7YOQUsqIIPTGr4xiVti1Hsk5g==";
};
};
"gitconfiglocal-1.0.0" = {
@@ -28512,6 +28593,15 @@ let
sha512 = "TDwMwK7j0vU/aOlQIkL6WqrYoFBOAYnJ9l2ueK3d60IHspycYKPyO9yBaX1bzsaS7nBH5YjuXBYncZK+12TSZQ==";
};
};
+ "goldengate-10.4.0" = {
+ name = "goldengate";
+ packageName = "goldengate";
+ version = "10.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/goldengate/-/goldengate-10.4.0.tgz";
+ sha512 = "GWQgk3aaev6LVJbaRHZVWKSE7l+mAkcN9dMwdWgC1LU36CdA7Z/5n2LmdZvkmi2M47+Eog3/4rQfnK1r1I0vQA==";
+ };
+ };
"gonzales-pe-4.3.0" = {
name = "gonzales-pe";
packageName = "gonzales-pe";
@@ -28530,13 +28620,13 @@ let
sha512 = "Q+ZjUEvLQj/lrVHF/IQwRo6p3s8Nc44Zk/DALsN+ac3T4HY/g/3rrufkgtl+nZ1TW7DNAw5cTChdVp4apUXVgQ==";
};
};
- "google-auth-library-7.6.2" = {
+ "google-auth-library-7.9.1" = {
name = "google-auth-library";
packageName = "google-auth-library";
- version = "7.6.2";
+ version = "7.9.1";
src = fetchurl {
- url = "https://registry.npmjs.org/google-auth-library/-/google-auth-library-7.6.2.tgz";
- sha512 = "yvEnwVsvgH8RXTtpf6e84e7dqIdUEKJhmQvTJwzYP+RDdHjLrDp9sk2u2ZNDJPLKZ7DJicx/+AStcQspJiq+Qw==";
+ url = "https://registry.npmjs.org/google-auth-library/-/google-auth-library-7.9.1.tgz";
+ sha512 = "cWGykH2WBR+UuYPGRnGVZ6Cjq2ftQiEIFjQWNIRIauZH7hUWoYTr/lkKUqLTYt5dex77nlWWVQ8aPV80mhfp5w==";
};
};
"google-closure-compiler-js-20170910.0.1" = {
@@ -28548,13 +28638,13 @@ let
sha512 = "Vric7QFWxzHFxITZ10bmlG1H/5rhODb7hJuWyKWMD8GflpQzRmbMVqkFp3fKvN+U9tPwZItGVhkiOR+84PX3ew==";
};
};
- "google-gax-2.24.2" = {
+ "google-gax-2.25.0" = {
name = "google-gax";
packageName = "google-gax";
- version = "2.24.2";
+ version = "2.25.0";
src = fetchurl {
- url = "https://registry.npmjs.org/google-gax/-/google-gax-2.24.2.tgz";
- sha512 = "4OtyEIt/KAXRX5o2W/6DGf8MnMs1lMXwcGoPHR4PwXfTUVKjK7ywRe2/yRIMkYEDzAwu/kppPgfpX+kCG2rWfw==";
+ url = "https://registry.npmjs.org/google-gax/-/google-gax-2.25.0.tgz";
+ sha512 = "s2V5UA/M5or7PFMpsp159X1FrWgIJZ2TSp+k57giUsiS+idMTtKoVgZ+LI59+UyOkFuDg7IBLRcBwZ1TgavEBw==";
};
};
"google-p12-pem-3.1.2" = {
@@ -28755,13 +28845,13 @@ let
sha512 = "h5mJWgZXpuZQzBAMWhVIOluGNIYUP043eh7BHcecRWhSkD4eiZAh+uM4XX2rGL1vig9XQ3JVYl9gmK+ajy+JPA==";
};
};
- "graphology-types-0.19.3" = {
+ "graphology-types-0.19.4" = {
name = "graphology-types";
packageName = "graphology-types";
- version = "0.19.3";
+ version = "0.19.4";
src = fetchurl {
- url = "https://registry.npmjs.org/graphology-types/-/graphology-types-0.19.3.tgz";
- sha512 = "N9zuoXkhoEhx/7FaMlMTgHqPl17Mcub67YHLk0d+i8mOSsxpD9kLzvUwUo5v39xeoOUqRb3rC0Y2h9zTssZUGg==";
+ url = "https://registry.npmjs.org/graphology-types/-/graphology-types-0.19.4.tgz";
+ sha512 = "jBRgWBKCVzoSMmQh7I5KsPQcOai4FJLNdhPBtSTRfVcyafGZHxwt80z5EftRB6ZSyTiBqiolzu7n1CZEnRkAHA==";
};
};
"graphql-0.11.7" = {
@@ -28800,13 +28890,13 @@ let
sha512 = "GTCJtzJmkFLWRfFJuoo9RWWa/FfamUHgiFosxi/X1Ani4AVWbeyBenZTNX6dM+7WSbbFfTo/25eh0LLkwHMw2w==";
};
};
- "graphql-15.5.1" = {
+ "graphql-15.5.3" = {
name = "graphql";
packageName = "graphql";
- version = "15.5.1";
+ version = "15.5.3";
src = fetchurl {
- url = "https://registry.npmjs.org/graphql/-/graphql-15.5.1.tgz";
- sha512 = "FeTRX67T3LoE3LWAxxOlW2K3Bz+rMYAC18rRguK4wgXaTZMiJwSUwDmPFo3UadAKbzirKIg5Qy+sNJXbpPRnQw==";
+ url = "https://registry.npmjs.org/graphql/-/graphql-15.5.3.tgz";
+ sha512 = "sM+jXaO5KinTui6lbK/7b7H/Knj9BpjGxZ+Ki35v7YbUJxxdBCUqNM0h3CRVU1ZF9t5lNiBzvBCSYPvIwxPOQA==";
};
};
"graphql-compose-7.25.1" = {
@@ -29232,6 +29322,15 @@ let
sha1 = "34f5049ce1ecdf2b0649af3ef24e45ed35416d91";
};
};
+ "has-ansi-4.0.1" = {
+ name = "has-ansi";
+ packageName = "has-ansi";
+ version = "4.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/has-ansi/-/has-ansi-4.0.1.tgz";
+ sha512 = "Qr4RtTm30xvEdqUXbSBVWDu+PrTokJOwe/FU+VdfJPk+MXAPoeOzKpRyrDTnZIJwAkQ4oBLTU53nu0HrkF/Z2A==";
+ };
+ };
"has-bigints-1.0.1" = {
name = "has-bigints";
packageName = "has-bigints";
@@ -30601,13 +30700,13 @@ let
sha512 = "yozWXZx3yXVprf/MM9WqMt5WY60Im8k6ELJDNFGfyMeO+UieITbDmkvVwMnKQA3ptWqUK8fPf/tEGgklWh7Weg==";
};
};
- "hyperbee-1.6.2" = {
+ "hyperbee-1.6.3" = {
name = "hyperbee";
packageName = "hyperbee";
- version = "1.6.2";
+ version = "1.6.3";
src = fetchurl {
- url = "https://registry.npmjs.org/hyperbee/-/hyperbee-1.6.2.tgz";
- sha512 = "0pn4srJRD8edAOfJpSsdYGO9bwteD+A9OzHjjZZrfIdWZXXwtg862Wi/6L6JZhJ9ITfhlkEZTYJnOwi+wNwWqA==";
+ url = "https://registry.npmjs.org/hyperbee/-/hyperbee-1.6.3.tgz";
+ sha512 = "Jn3i5IUrW/8Qv6xKCIJI38omFSZFhv8xnPk7YTlW90zBQJtwfA8qx3NSK27idrl11iXtmCAETnZRDZrmjlMywQ==";
};
};
"hypercore-7.7.1" = {
@@ -30619,13 +30718,13 @@ let
sha512 = "boEiPCK848pNGACW1j111tJApu530e/UPpwbHytJZlrVf3YdgUIP1KL3aSi5xJFLUnuO8GLGl4lIsSeH8TaQQA==";
};
};
- "hypercore-9.10.0" = {
+ "hypercore-9.11.0" = {
name = "hypercore";
packageName = "hypercore";
- version = "9.10.0";
+ version = "9.11.0";
src = fetchurl {
- url = "https://registry.npmjs.org/hypercore/-/hypercore-9.10.0.tgz";
- sha512 = "vMaUNcYvtiiXbnjjhj3YbBK/KZEofXfrajiJxJ8rlWVXSyh2fIJcyxTJewfh58IW5bVYNrBPui/CpPyBZiXuZQ==";
+ url = "https://registry.npmjs.org/hypercore/-/hypercore-9.11.0.tgz";
+ sha512 = "/HwisY6gwkdMkEtn0vHkxrdJt6C0TK2YrnN59fCjSL3msfGLWOJ4lQxG39n0Ehd1dRdDWCj27MaTMI8krLU/Cw==";
};
};
"hypercore-byte-stream-1.0.12" = {
@@ -31897,13 +31996,13 @@ let
sha512 = "UnU0bS3+cMA2UvYrF5RXp/Hm7v/nYiA3F0GVCOeRmDiZmXAt/eO7KdqyRzewopvhBlev7F7t7GZzRRYY1XE3xg==";
};
};
- "ioredis-4.27.8" = {
+ "ioredis-4.27.9" = {
name = "ioredis";
packageName = "ioredis";
- version = "4.27.8";
+ version = "4.27.9";
src = fetchurl {
- url = "https://registry.npmjs.org/ioredis/-/ioredis-4.27.8.tgz";
- sha512 = "AcMEevap2wKxNcYEybZ/Qp+MR2HbNNUwGjG4sVCC3cAJ/zR9HXKAkolXOuR6YcOGPf7DHx9mWb/JKtAGujyPow==";
+ url = "https://registry.npmjs.org/ioredis/-/ioredis-4.27.9.tgz";
+ sha512 = "hAwrx9F+OQ0uIvaJefuS3UTqW+ByOLyLIV+j0EH8ClNVxvFyH9Vmb08hCL4yje6mDYT5zMquShhypkd50RRzkg==";
};
};
"iota-array-1.0.0" = {
@@ -32014,6 +32113,15 @@ let
sha512 = "6ZMWB3JnCWT0gISUkzChcUEkJS6+LpGRU3h10f9Mfc0usVmyIcbcTN9+QPMg29gLOY8WtaKFbM5ME8qNySoh8g==";
};
};
+ "irc-colors-1.5.0" = {
+ name = "irc-colors";
+ packageName = "irc-colors";
+ version = "1.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/irc-colors/-/irc-colors-1.5.0.tgz";
+ sha512 = "HtszKchBQTcqw1DC09uD7i7vvMayHGM1OCo6AHt5pkgZEyo99ClhHTMJdf+Ezc9ovuNNxcH89QfyclGthjZJOw==";
+ };
+ };
"irc-framework-4.9.0" = {
name = "irc-framework";
packageName = "irc-framework";
@@ -32032,6 +32140,15 @@ let
sha1 = "5bf4125fb6ec0f3929a89647b26e653232942b79";
};
};
+ "irc-upd-0.11.0" = {
+ name = "irc-upd";
+ packageName = "irc-upd";
+ version = "0.11.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/irc-upd/-/irc-upd-0.11.0.tgz";
+ sha512 = "A1hV5cUkl5HZsKWRYcszD2Usfz33hB8igSSox8dEmrMyfy8/Ra6T/o4jwzs7jYMZ7ljLquSIWzcvSZHZ/bEAZA==";
+ };
+ };
"irregular-plurals-1.4.0" = {
name = "irregular-plurals";
packageName = "irregular-plurals";
@@ -33256,13 +33373,13 @@ let
sha1 = "4e1aa0fb51bfbcb3e92688001397202c1775b66e";
};
};
- "is-typed-array-1.1.7" = {
+ "is-typed-array-1.1.8" = {
name = "is-typed-array";
packageName = "is-typed-array";
- version = "1.1.7";
+ version = "1.1.8";
src = fetchurl {
- url = "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.7.tgz";
- sha512 = "VxlpTBGknhQ3o7YiVjIhdLU6+oD8dPz/79vvvH4F+S/c8608UCVa9fgDpa1kZgFoUST2DCgacc70UszKgzKuvA==";
+ url = "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.8.tgz";
+ sha512 = "HqH41TNZq2fgtGT8WHVFVJhBVGuY3AnP3Q36K8JKXUxSxRgk/d+7NjmwG2vo2mYmXK8UYZKu0qH8bVP5gEisjA==";
};
};
"is-typedarray-1.0.0" = {
@@ -33886,13 +34003,13 @@ let
sha512 = "KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==";
};
};
- "jest-worker-27.0.6" = {
+ "jest-worker-27.1.0" = {
name = "jest-worker";
packageName = "jest-worker";
- version = "27.0.6";
+ version = "27.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/jest-worker/-/jest-worker-27.0.6.tgz";
- sha512 = "qupxcj/dRuA3xHPMUd40gr2EaAurFbkwzOh7wfPaeE9id7hyjURRQoqNfHifHK3XjJU6YJJUQKILGUnwGPEOCA==";
+ url = "https://registry.npmjs.org/jest-worker/-/jest-worker-27.1.0.tgz";
+ sha512 = "mO4PHb2QWLn9yRXGp7rkvXLAYuxwhq1ZYUo0LoDhg8wqvv4QizP1ZWEJOeolgbEgAWZLIEU0wsku8J+lGWfBhg==";
};
};
"jimp-compact-0.16.1" = {
@@ -34039,13 +34156,13 @@ let
sha512 = "pZe//GGmwJndub7ZghVHz7vjb2LgC1m8B07Au3eYqeqv9emhESByMXxaEgkUkEqJe87oBbSniGYoQNIBklc7IQ==";
};
};
- "js-base64-3.6.1" = {
+ "js-base64-3.6.2" = {
name = "js-base64";
packageName = "js-base64";
- version = "3.6.1";
+ version = "3.6.2";
src = fetchurl {
- url = "https://registry.npmjs.org/js-base64/-/js-base64-3.6.1.tgz";
- sha512 = "Frdq2+tRRGLQUIQOgsIGSCd1VePCS2fsddTG5dTCqR0JHgltXWfsxnY0gIXPoMeRmdom6Oyq+UMOFg5suduOjQ==";
+ url = "https://registry.npmjs.org/js-base64/-/js-base64-3.6.2.tgz";
+ sha512 = "9xRCVqFwEuPH1SmwknrCRfGjcaUCt+boLjGZt5g/aAr98K8OtR9cI8K89U3cPT8xatgmzWQnJwgRQTd5tq2EOg==";
};
};
"js-beautify-1.14.0" = {
@@ -34354,13 +34471,13 @@ let
sha512 = "GOGAy5b+zCGeyYziBoNVXgamL2CEZKMj5moeemkyN4AUHUqugNk3fSul2Zdbxs2S13Suk0D9iYAgChDxew0bOw==";
};
};
- "jsii-srcmak-0.1.335" = {
+ "jsii-srcmak-0.1.341" = {
name = "jsii-srcmak";
packageName = "jsii-srcmak";
- version = "0.1.335";
+ version = "0.1.341";
src = fetchurl {
- url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.335.tgz";
- sha512 = "9Htj62cspqqlxHw961LxHKL9YQv2+11BRXf8nQkxURWlRqbH+73iXzy8LaUvBTA52ZgEJffY38FuDjHv9gqhCw==";
+ url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.341.tgz";
+ sha512 = "G8BUBXJDTXYsqpv5CWMSwYuGz21WdY1TRJZZVp+CIPTEbxCBc2nEJ41Ihsa1u8MCs9D1ddWGrX3JmZwqvMqUxw==";
};
};
"json-bigint-1.0.0" = {
@@ -34651,13 +34768,13 @@ let
sha512 = "0/4Lv6IenJV0qj2oBdgPIAmFiKKnh8qh7bmLFJ+/ZZHLjSeiL3fKKGX3UryvKPbxFbhV+JcYo9KUC19GJ/Z/4A==";
};
};
- "json2jsii-0.2.7" = {
+ "json2jsii-0.2.17" = {
name = "json2jsii";
packageName = "json2jsii";
- version = "0.2.7";
+ version = "0.2.17";
src = fetchurl {
- url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.2.7.tgz";
- sha512 = "cOfUWGFat3g6v1cWJ6+yPDFkV9O802hp8AcJfPgp16FWeDMNgnIsaavSw+i3IPFns3Fap1O+Oj/8g6s1+NwCJg==";
+ url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.2.17.tgz";
+ sha512 = "dU28KQ5UBvyGcc4QaQey98a2uTwwsnh+bP4EI6wnJjsCKjMKxSLFot1jwSCA/olaWIpJFGCIYif2IJ/0Dy5a8w==";
};
};
"json3-3.2.6" = {
@@ -34723,13 +34840,13 @@ let
sha512 = "oDPf7b6nFDKcX2qt5OLI/ZwGwH43qS/g2Z98UWo8ChoNtVMYdGa3Y48WHvjPqvNKnTUa2fOanvHFeE7ZxkiboQ==";
};
};
- "jsonata-1.8.4" = {
+ "jsonata-1.8.5" = {
name = "jsonata";
packageName = "jsonata";
- version = "1.8.4";
+ version = "1.8.5";
src = fetchurl {
- url = "https://registry.npmjs.org/jsonata/-/jsonata-1.8.4.tgz";
- sha512 = "OqzmM5IICtm/687zckG5BROZzInGCEuKojpYs48H8RnkII8Np+o912ryvhnYwsRrSI24TQRG/qqrSwBuaneDbg==";
+ url = "https://registry.npmjs.org/jsonata/-/jsonata-1.8.5.tgz";
+ sha512 = "ilDyTBkg6qhNoNVr8PUPzz5GYvRK+REKOM5MdOGzH2y6V4yvPRMegSvbZLpbTtI0QAgz09QM7drDhSHUlwp9pA==";
};
};
"jsonc-parser-1.0.3" = {
@@ -34858,15 +34975,6 @@ let
sha512 = "CXcRvMyTlnR53xMcKnuMzfCA5i/nfblTnnr74CZb6C4vG39eu6w51t7nKmU5MfLfbTgGItliNyjO/ciNPDqClg==";
};
};
- "jsonrpc2-ws-1.0.0-beta9" = {
- name = "jsonrpc2-ws";
- packageName = "jsonrpc2-ws";
- version = "1.0.0-beta9";
- src = fetchurl {
- url = "https://registry.npmjs.org/jsonrpc2-ws/-/jsonrpc2-ws-1.0.0-beta9.tgz";
- sha512 = "0KA+ufhSy7gN2/jGXagXLz4V5m+vymmNTI5IpNBIUiunday45P6dspdaOO0wwt2JJyrACC/BKMH154OqsuB80w==";
- };
- };
"jsonschema-1.4.0" = {
name = "jsonschema";
packageName = "jsonschema";
@@ -35210,13 +35318,13 @@ let
sha512 = "dD2ga5gLcQhsq1yNoQdy1MU4x4z7YnXM5bcG9SdQuiNr5KKuAmXixH1Mggwdah5o7EfholFbcNDPSVA6BIfaug==";
};
};
- "katex-0.13.13" = {
+ "katex-0.13.18" = {
name = "katex";
packageName = "katex";
- version = "0.13.13";
+ version = "0.13.18";
src = fetchurl {
- url = "https://registry.npmjs.org/katex/-/katex-0.13.13.tgz";
- sha512 = "cCMcil4jwMm7behpXGiQfXJA29sko/Gd/26iCsr53Dv5Jn2iHbHyEb14dm9uVrIijUXx6Zz1WhlFhHE6DckvkQ==";
+ url = "https://registry.npmjs.org/katex/-/katex-0.13.18.tgz";
+ sha512 = "a3dC4NSVSDU3O1WZbTnOiA8rVNJ2lSiomOl0kmckCIGObccIHXof7gAseIY0o1gjEspe+34ZeSEX2D1ChFKIvA==";
};
};
"kdbush-3.0.0" = {
@@ -35462,6 +35570,15 @@ let
sha512 = "LOS0CoS8zcZnB1EjLw4LLqDXw8nvt3AGH5dXLQP3D9O1nLLA+9GC5GnPl5mmF+JiQAtSX4VyZC7KvEtcA4kUtA==";
};
};
+ "koa-compose-4.2.0" = {
+ name = "koa-compose";
+ packageName = "koa-compose";
+ version = "4.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/koa-compose/-/koa-compose-4.2.0.tgz";
+ sha512 = "/Io2dpt3uU/wWkn2pkRBj3vudzsi6hMssGkREZCxLIczAIvLWy5Jw9PW7ctTxvcfXKCisbgsMLsgE1BvSZB6Kw==";
+ };
+ };
"kuler-1.0.1" = {
name = "kuler";
packageName = "kuler";
@@ -36074,6 +36191,24 @@ let
sha512 = "ngS2829bxBMgK/MFanm6jypvpIbxzxBX/vFbUKyFrj3MxcSKvMQzr1sXRppYxZXHwOuqyiN91QnaKNg3upQ9sg==";
};
};
+ "lightning-4.1.3" = {
+ name = "lightning";
+ packageName = "lightning";
+ version = "4.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lightning/-/lightning-4.1.3.tgz";
+ sha512 = "DI21mqAdwBM/Os3pcAnBrpUCoaKQzJFTEv2c+DEJUzPBnpxRGGKGurlT5FDz9QZSTag7YgBb5ghsqtjQ2MlFWg==";
+ };
+ };
+ "lightning-4.2.1" = {
+ name = "lightning";
+ packageName = "lightning";
+ version = "4.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lightning/-/lightning-4.2.1.tgz";
+ sha512 = "ltYLcoJcGjL9yuBpoZfi8tLZ+SwInX3l/BrZIK1d14Wlk0dAu8jhLPClPDm0kt91HULpnynl/xxeOPVdQqdsHA==";
+ };
+ };
"lilconfig-2.0.3" = {
name = "lilconfig";
packageName = "lilconfig";
@@ -36218,13 +36353,13 @@ let
sha512 = "04PDPqSlsqIOaaaGZ+41vq5FejI9auqTInicFRndCBgE3bXG8D6W1I+mWhk+1nqbHmyhla/6BUrd5OSiHwKRXw==";
};
};
- "ln-accounting-5.0.0" = {
+ "ln-accounting-5.0.1" = {
name = "ln-accounting";
packageName = "ln-accounting";
- version = "5.0.0";
+ version = "5.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/ln-accounting/-/ln-accounting-5.0.0.tgz";
- sha512 = "iKvNJI8qRv5O7rI3m7ARXTg9fergI3AEx2RqnB3A/dTo80zt78+x57zyBw7WmqE/BiV5eJ4kyOw1lIx1N0eC1g==";
+ url = "https://registry.npmjs.org/ln-accounting/-/ln-accounting-5.0.1.tgz";
+ sha512 = "5hHO3/ZdKwVicDpgU0ElDnSqKSrqx9Cz7eD6r/3STjqLnLuOjj9/ILzPOgY3lPyD7j3gHifzuJg5dUx2Bxh0sg==";
};
};
"ln-service-51.8.2" = {
@@ -36254,6 +36389,24 @@ let
sha512 = "ETL/rpidWMS7nCsZoRb3/0vU5nk7RE1PRtn3YBnmUWJcdhjREPhQRLHm7/vZ+JFRdAwvW7V/lqCvOkDZXCKo6w==";
};
};
+ "ln-service-52.0.3" = {
+ name = "ln-service";
+ packageName = "ln-service";
+ version = "52.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ln-service/-/ln-service-52.0.3.tgz";
+ sha512 = "upswAJU9Mrfh3l+q46rvmRu8Pf7iYR2vkKyq16dgiBgxKw7fzvI8aL2Xi0xrtyoRUOUODOyEzO7/MRRhNKcvMA==";
+ };
+ };
+ "ln-service-52.1.0" = {
+ name = "ln-service";
+ packageName = "ln-service";
+ version = "52.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ln-service/-/ln-service-52.1.0.tgz";
+ sha512 = "xB+Si8fQoHpmJWQDA3JFVxs/xV/c26OU2NsnkIRcbNQagwQtSKV08fcwbfKs3tpZLHQiyzmKos4XF82TfYtzeA==";
+ };
+ };
"ln-sync-0.4.7" = {
name = "ln-sync";
packageName = "ln-sync";
@@ -37604,13 +37757,13 @@ let
sha1 = "ec6662e4896408ed4ab6c542a3990b72cc080020";
};
};
- "log-6.0.0" = {
+ "log-6.1.0" = {
name = "log";
packageName = "log";
- version = "6.0.0";
+ version = "6.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/log/-/log-6.0.0.tgz";
- sha512 = "sxChESNYJ/EcQv8C7xpmxhtTOngoXuMEqGDAkhXBEmt3MAzM3SM/TmIBOqnMEVdrOv1+VgZoYbo6U2GemQiU4g==";
+ url = "https://registry.npmjs.org/log/-/log-6.1.0.tgz";
+ sha512 = "ZulFTrSNfKd8AlMNhl2sQ/jphhTReGeYYsB/ABV1u3jADp2wedQ7+uhSaXlBdu3VMM5PS0ribMFb0UJMesaGng==";
};
};
"log-driver-1.2.7" = {
@@ -37622,6 +37775,15 @@ let
sha512 = "U7KCmLdqsGHBLeWqYlFA0V0Sl6P08EE1ZrmA9cxjUE0WVqT9qnyVDPz1kzpFEP0jdJuFnasWIfSd7fsaNXkpbg==";
};
};
+ "log-node-8.0.0" = {
+ name = "log-node";
+ packageName = "log-node";
+ version = "8.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/log-node/-/log-node-8.0.0.tgz";
+ sha512 = "ogrmq+slTOCXG6TMgXxZ2lkfm00CrnO8LLgvqpvEzDhzJ/DmOCGj2AlSjEClk36k7S4k1HNw3WLwF2nqx15SKQ==";
+ };
+ };
"log-process-errors-6.3.0" = {
name = "log-process-errors";
packageName = "log-process-errors";
@@ -38090,6 +38252,15 @@ let
sha1 = "f35ca91c493f7b73da0e07495304f17b31f87ee5";
};
};
+ "ltx-2.10.0" = {
+ name = "ltx";
+ packageName = "ltx";
+ version = "2.10.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ltx/-/ltx-2.10.0.tgz";
+ sha512 = "RB4zR6Mrp/0wTNS9WxMvpgfht/7u/8QAC9DpPD19opL/4OASPa28uoliFqeDkLUU8pQ4aeAfATBZmz1aSAHkMw==";
+ };
+ };
"lunr-2.3.9" = {
name = "lunr";
packageName = "lunr";
@@ -38108,13 +38279,13 @@ let
sha512 = "ZRioYLCgRHrtTORaZX1mx+jtxKtKuI5ZDvHNAmqpUzGqSrR+tL4FVLn/CUGMA3h0+AKD1MAxGI5GnCqR5txNqg==";
};
};
- "lzma-native-6.0.1" = {
+ "lzma-native-8.0.1" = {
name = "lzma-native";
packageName = "lzma-native";
- version = "6.0.1";
+ version = "8.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/lzma-native/-/lzma-native-6.0.1.tgz";
- sha512 = "O6oWF0xe1AFvOCjU8uOZBZ/lhjaMNwHfVNaqVMqmoQXlRwBcFWpCAToiZOdXcKVMdo/5s/D0a2QgA5laMErxHQ==";
+ url = "https://registry.npmjs.org/lzma-native/-/lzma-native-8.0.1.tgz";
+ sha512 = "Ryr9X3yDVZhRYOxR8QhUBCNe6GdEfy9BvFDIFtUvEkocvSvnrYt9lRm6FR1z0eQn0QSMenrgrDIJRMgUf9zsKQ==";
};
};
"macaroon-3.0.4" = {
@@ -39296,13 +39467,13 @@ let
sha512 = "QKFbPwGCh1ypmc2H8BUYpbapwT/x2AOCYZQogzSui4rUNes7WVMagQXsirPIfp18EarX0SSY9Fpg426nSjew4Q==";
};
};
- "memfs-3.2.2" = {
+ "memfs-3.2.4" = {
name = "memfs";
packageName = "memfs";
- version = "3.2.2";
+ version = "3.2.4";
src = fetchurl {
- url = "https://registry.npmjs.org/memfs/-/memfs-3.2.2.tgz";
- sha512 = "RE0CwmIM3CEvpcdK3rZ19BC4E6hv9kADkMN5rPduRak58cNArWLi/9jFLsa4rhsjfVxMP3v0jO7FHXq7SvFY5Q==";
+ url = "https://registry.npmjs.org/memfs/-/memfs-3.2.4.tgz";
+ sha512 = "2mDCPhuduRPOxlfgsXF9V+uqC6Jgz8zt/bNe4d4W7d5f6pCzHrWkxLNr17jKGXd4+j2kQNsAG2HARPnt74sqVQ==";
};
};
"memoize-one-5.2.1" = {
@@ -39566,13 +39737,13 @@ let
sha512 = "TIurLf/ustQNMXi5foClGTcEsRvH6DCvxeAKu68OrwHMOSM/M1pgPXb7qe52Svk1ClvmZuAVpLtP5FWKzPr/sw==";
};
};
- "mermaid-8.12.0" = {
+ "mermaid-8.12.1" = {
name = "mermaid";
packageName = "mermaid";
- version = "8.12.0";
+ version = "8.12.1";
src = fetchurl {
- url = "https://registry.npmjs.org/mermaid/-/mermaid-8.12.0.tgz";
- sha512 = "YegtLgtdpnd+y7J9gfSfFkD7T3G7cXQ6orOL7x4jAx6SWyJSMAQIb34JBKuhagXNsi34nK6gpfHbv63Br7246g==";
+ url = "https://registry.npmjs.org/mermaid/-/mermaid-8.12.1.tgz";
+ sha512 = "0UCcSF0FLoNcPBsRF4f9OIV32t41fV18//z8o3S+FDz2PbDA1CRGKdQF9IX84VP4Tv9kcgJI/oqJdcBEtB/GPA==";
};
};
"meros-1.1.4" = {
@@ -40286,13 +40457,13 @@ let
sha512 = "6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==";
};
};
- "minipass-fetch-1.3.4" = {
+ "minipass-fetch-1.4.1" = {
name = "minipass-fetch";
packageName = "minipass-fetch";
- version = "1.3.4";
+ version = "1.4.1";
src = fetchurl {
- url = "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-1.3.4.tgz";
- sha512 = "TielGogIzbUEtd1LsjZFs47RWuHHfhl6TiCx1InVxApBAmQ8bL0dL5ilkLGcRvuyW/A9nE+Lvn855Ewz8S0PnQ==";
+ url = "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-1.4.1.tgz";
+ sha512 = "CGH1eblLq26Y15+Azk7ey4xh0J/XfJfrCox5LDJiKqI2Q2iwOLOKrlmIaODiSQS8d18jalF6y2K2ePUm0CmShw==";
};
};
"minipass-flush-1.0.5" = {
@@ -40493,13 +40664,13 @@ let
sha512 = "sdqtiFt3lkOaYvTXSRIUjkIdPTcxgv5+fgqYE/5qgwdw12cOrAuzzgzvVExIkH/ul1oeHN3bCLOWSG3XOqbKKw==";
};
};
- "mobx-6.3.2" = {
+ "mobx-6.3.3" = {
name = "mobx";
packageName = "mobx";
- version = "6.3.2";
+ version = "6.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/mobx/-/mobx-6.3.2.tgz";
- sha512 = "xGPM9dIE1qkK9Nrhevp0gzpsmELKU4MFUJRORW/jqxVFIHHWIoQrjDjL8vkwoJYY3C2CeVJqgvl38hgKTalTWg==";
+ url = "https://registry.npmjs.org/mobx/-/mobx-6.3.3.tgz";
+ sha512 = "JoNU50rO6d1wHwKPJqKq4rmUMbYnI9CsJmBo+Cu4exBYenFvIN77LWrZENpzW6reZPADtXMmB1DicbDSfy8Clw==";
};
};
"mobx-react-7.2.0" = {
@@ -40511,13 +40682,13 @@ let
sha512 = "KHUjZ3HBmZlNnPd1M82jcdVsQRDlfym38zJhZEs33VxyVQTvL77hODCArq6+C1P1k/6erEeo2R7rpE7ZeOL7dg==";
};
};
- "mobx-react-lite-3.2.0" = {
+ "mobx-react-lite-3.2.1" = {
name = "mobx-react-lite";
packageName = "mobx-react-lite";
- version = "3.2.0";
+ version = "3.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/mobx-react-lite/-/mobx-react-lite-3.2.0.tgz";
- sha512 = "q5+UHIqYCOpBoFm/PElDuOhbcatvTllgRp3M1s+Hp5j0Z6XNgDbgqxawJ0ZAUEyKM8X1zs70PCuhAIzX1f4Q/g==";
+ url = "https://registry.npmjs.org/mobx-react-lite/-/mobx-react-lite-3.2.1.tgz";
+ sha512 = "hwURgfmP2apX3HQrB55V9DN47kuN3C6KlQvI5UIfJRibXma72C/JudcNt2r9dWjAdFMrcZoz1ivvtXMCkJ2aQA==";
};
};
"mocha-2.5.3" = {
@@ -40547,13 +40718,13 @@ let
sha512 = "hJaO0mwDXmZS4ghXsvPVriOhsxQ7ofcpQdm8dE+jISUOKopitvnXFQmpRR7jd2K6VBG6E26gU3IAbXXGIbu4sQ==";
};
};
- "mocha-9.1.0" = {
+ "mocha-9.1.1" = {
name = "mocha";
packageName = "mocha";
- version = "9.1.0";
+ version = "9.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/mocha/-/mocha-9.1.0.tgz";
- sha512 = "Kjg/XxYOFFUi0h/FwMOeb6RoroiZ+P1yOfya6NK7h3dNhahrJx1r2XIT3ge4ZQvJM86mdjNA+W5phqRQh7DwCg==";
+ url = "https://registry.npmjs.org/mocha/-/mocha-9.1.1.tgz";
+ sha512 = "0wE74YMgOkCgBUj8VyIDwmLUjTsS13WV1Pg7l0SHea2qzZzlq7MDnfbPsHKcELBRk3+izEVkRofjmClpycudCA==";
};
};
"mock-require-3.0.3" = {
@@ -40610,13 +40781,13 @@ let
sha1 = "114c949673e2a8a35e9d35788527aa37b679da2b";
};
};
- "moize-6.0.3" = {
+ "moize-6.1.0" = {
name = "moize";
packageName = "moize";
- version = "6.0.3";
+ version = "6.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/moize/-/moize-6.0.3.tgz";
- sha512 = "7Jz9TSiqW9G2u8HwUWnaBQMFMPLblrWKEiWN4BA/GPOfQlsnfQqq0yRnTGHckGPlKApA9Eu1HPb/eTqvK9EtKg==";
+ url = "https://registry.npmjs.org/moize/-/moize-6.1.0.tgz";
+ sha512 = "WrMcM+C2Jy+qyOC/UMhA3BCHGowxV34dhDZnDNfxsREW/8N+33SFjmc23Q61Xv1WUthUA1vYopTitP1sZ5jkeg==";
};
};
"mold-source-map-0.4.0" = {
@@ -41708,13 +41879,13 @@ let
sha512 = "4Hnwzr3mi5L97hMYeNl8wRW/Onhy4nUKR/lVemJ8gJedxxUyBLm9kkrDColJvoSfwi0jCNhD+xCdOtiGDQiRZg==";
};
};
- "needle-2.9.0" = {
+ "needle-2.9.1" = {
name = "needle";
packageName = "needle";
- version = "2.9.0";
+ version = "2.9.1";
src = fetchurl {
- url = "https://registry.npmjs.org/needle/-/needle-2.9.0.tgz";
- sha512 = "UBLC4P8w9to3rAhWOQYXIXzTUio9yVnDzIeKxfGbF+Hngy+2bXTqqFK+6nF42EAQKfJdezXK6vzMsefUa1Y3ag==";
+ url = "https://registry.npmjs.org/needle/-/needle-2.9.1.tgz";
+ sha512 = "6R9fqJ5Zcmf+uYaFgdIHmLwNldn5HbK8L5ybn7Uz+ylX/rnOsSp1AHcvQSrCaFN+qNM1wpymHqD7mVasEOlHGQ==";
};
};
"negotiator-0.3.0" = {
@@ -42042,13 +42213,13 @@ let
sha512 = "0L9FvHG3nfnnmaEQPjT9xhfN4ISk0A8/2j4M37Np4mcDesJjHgEUfgPhdCyZuFI954tjokaIj/A3NdpFNdEh4Q==";
};
};
- "node-abi-2.30.0" = {
+ "node-abi-2.30.1" = {
name = "node-abi";
packageName = "node-abi";
- version = "2.30.0";
+ version = "2.30.1";
src = fetchurl {
- url = "https://registry.npmjs.org/node-abi/-/node-abi-2.30.0.tgz";
- sha512 = "g6bZh3YCKQRdwuO/tSZZYJAw622SjsRfJ2X0Iy4sSOHZ34/sPPdVBn8fev2tj7njzLwuqPw9uMtGsGkO5kIQvg==";
+ url = "https://registry.npmjs.org/node-abi/-/node-abi-2.30.1.tgz";
+ sha512 = "/2D0wOQPgaUWzVSVgRMx+trKJRC2UG4SUc4oCJoXx9Uxjtp0Vy3/kt7zcbxHF8+Z/pK3UloLWzBISg72brfy1w==";
};
};
"node-addon-api-1.7.2" = {
@@ -42096,6 +42267,15 @@ let
sha512 = "mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==";
};
};
+ "node-api-version-0.1.4" = {
+ name = "node-api-version";
+ packageName = "node-api-version";
+ version = "0.1.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-api-version/-/node-api-version-0.1.4.tgz";
+ sha512 = "KGXihXdUChwJAOHO53bv9/vXcLmdUsZ6jIptbvYvkpKfth+r7jw44JkVxQFA3kX5nQjzjmGu1uAu/xNNLNlI5g==";
+ };
+ };
"node-appc-1.1.2" = {
name = "node-appc";
packageName = "node-appc";
@@ -42232,6 +42412,15 @@ let
sha512 = "V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw==";
};
};
+ "node-fetch-2.6.2" = {
+ name = "node-fetch";
+ packageName = "node-fetch";
+ version = "2.6.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.2.tgz";
+ sha512 = "aLoxToI6RfZ+0NOjmWAgn9+LEd30YCkJKFSyWacNZdEKTit/ZMcKjGkTRo8uWEsnIb/hfKecNPEbln02PdWbcA==";
+ };
+ };
"node-fetch-h2-2.3.0" = {
name = "node-fetch-h2";
packageName = "node-fetch-h2";
@@ -43141,13 +43330,13 @@ let
sha512 = "2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==";
};
};
- "npmlog-5.0.0" = {
+ "npmlog-5.0.1" = {
name = "npmlog";
packageName = "npmlog";
- version = "5.0.0";
+ version = "5.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/npmlog/-/npmlog-5.0.0.tgz";
- sha512 = "ftpIiLjerL2tUg3dCqN8pOSoB90gqZlzv/gaZoxHaKjeLClrfJIEQ1Pdxi6qSzflz916Bljdy8dTWQ4J7hAFSQ==";
+ url = "https://registry.npmjs.org/npmlog/-/npmlog-5.0.1.tgz";
+ sha512 = "AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==";
};
};
"nprogress-0.2.0" = {
@@ -43511,6 +43700,15 @@ let
sha512 = "jgSbThcoR/s+XumvGMTMf81QVBmah+/Q7K7YduKeKVWL7N111unR2d6pZZarSk6kY/caeNxUDyxOvMWyzoU2eg==";
};
};
+ "object-path-0.11.7" = {
+ name = "object-path";
+ packageName = "object-path";
+ version = "0.11.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/object-path/-/object-path-0.11.7.tgz";
+ sha512 = "T4evaK9VfGGQskXBDILcn6F90ZD+WO3OwRFFQ2rmZdUH4vQeDBpiolTpVlPY2yj5xSepyILTjDyM6UvbbdHMZw==";
+ };
+ };
"object-to-arguments-0.0.8" = {
name = "object-to-arguments";
packageName = "object-to-arguments";
@@ -43709,13 +43907,13 @@ let
sha512 = "0HGaSR/E/seIhSzFxLkh0QqckuNSre4iGqSElZRUv1hVHH2YgrZ7xtQL9McwL8o1fh6HqkzykjUx0Iy2haVIUg==";
};
};
- "office-ui-fabric-react-7.174.1" = {
+ "office-ui-fabric-react-7.175.2" = {
name = "office-ui-fabric-react";
packageName = "office-ui-fabric-react";
- version = "7.174.1";
+ version = "7.175.2";
src = fetchurl {
- url = "https://registry.npmjs.org/office-ui-fabric-react/-/office-ui-fabric-react-7.174.1.tgz";
- sha512 = "zRUpUqZtVncvb+Tt+5SVNEcI3MfpwTLU+v2u7ZdF9ukPbD+UBKJSkIbydyO0P2S5jVizgdqioSOarfUA70ICvw==";
+ url = "https://registry.npmjs.org/office-ui-fabric-react/-/office-ui-fabric-react-7.175.2.tgz";
+ sha512 = "8D57MG+F4m8aTbV4M9oeFQNdu8NNYSV8yI9wSL20FmdeYSCddqhrxW/JqivJMiDBn1Y4+dnjXLRahudUbePBQQ==";
};
};
"omggif-1.0.10" = {
@@ -43988,15 +44186,6 @@ let
sha512 = "wRqgsLfZB3LXx8l3RfKo8icdDPDucnrRD2EkygTMiUv5W1/OdZJmo1ChgD6FjQUZH/7U67IxEjnXPEWfnu+dRw==";
};
};
- "openapi-default-setter-8.0.0" = {
- name = "openapi-default-setter";
- packageName = "openapi-default-setter";
- version = "8.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/openapi-default-setter/-/openapi-default-setter-8.0.0.tgz";
- sha512 = "Ro0hg8w+lTPe18r5noVUjHgYMXZ3mPe5evW6fA0hdahqLns444wR/Cuvcykb/FHteqaq0WooQrsoKObO4lIHWA==";
- };
- };
"openapi-framework-0.26.0" = {
name = "openapi-framework";
packageName = "openapi-framework";
@@ -44015,15 +44204,6 @@ let
sha512 = "t+sGVNMs2apX6d/rf5oq/3S6tCyBTgCjgFY0EDEIKKWepO4v3wM+kjy/Ve9iU92Ui5GeWbGR6ceFKY6VP/OKfQ==";
};
};
- "openapi-framework-8.0.0" = {
- name = "openapi-framework";
- packageName = "openapi-framework";
- version = "8.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/openapi-framework/-/openapi-framework-8.0.0.tgz";
- sha512 = "T9rP8onTa5xU+7+FCiiBO/p0DLjbHlcfhu+8yUEWFlmlCyihqjbsH0YiH7cCQYNOLgKZUCQZOaxJDiYBlVIaQQ==";
- };
- };
"openapi-jsonschema-parameters-1.2.0" = {
name = "openapi-jsonschema-parameters";
packageName = "openapi-jsonschema-parameters";
@@ -44042,15 +44222,6 @@ let
sha512 = "hnhuSbyB0gwA2KrDmMve0A+XC3rqhiQwlvOpZ+kGDz9nWqgLgFJA582LpA4V1W+nI3WruS0nEkAvfG8EHKD+qQ==";
};
};
- "openapi-jsonschema-parameters-8.0.0" = {
- name = "openapi-jsonschema-parameters";
- packageName = "openapi-jsonschema-parameters";
- version = "8.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/openapi-jsonschema-parameters/-/openapi-jsonschema-parameters-8.0.0.tgz";
- sha512 = "yBBShgxPyo1M33q6RHNAvhTH6AydMDyDl7e89YUA/VkAf1wrU2HO/7Nok65R0vGbZFF43yml4i8sIak3GGnqVA==";
- };
- };
"openapi-request-coercer-2.4.0" = {
name = "openapi-request-coercer";
packageName = "openapi-request-coercer";
@@ -44069,15 +44240,6 @@ let
sha512 = "wvrh3xSEpmgKaHiAnVhPxL6Yp9IXW+NEI192z6X5RiU6xe+jszn6A3v8vJcceyNsvDBA4tkm4I3mFndDlhc6Zw==";
};
};
- "openapi-request-coercer-8.0.0" = {
- name = "openapi-request-coercer";
- packageName = "openapi-request-coercer";
- version = "8.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/openapi-request-coercer/-/openapi-request-coercer-8.0.0.tgz";
- sha512 = "CTWZJT6rAPiLO7kvBpN9CJ7TXbCTlZzE7Z/Id/gegK/5FlxYIoB+ybx4tYC4IwJEjfm/lxY7Xv2CRp6RLJfKPw==";
- };
- };
"openapi-request-validator-4.2.0" = {
name = "openapi-request-validator";
packageName = "openapi-request-validator";
@@ -44096,15 +44258,6 @@ let
sha512 = "0rnslY82Btw5nM6rUEuXkvupav4ujvP+e9WziZvcMrE+VZ6IxRGDP8F7w0XmtPBwMS2nJGgt/J7BnRXAFTx5tw==";
};
};
- "openapi-request-validator-8.0.0" = {
- name = "openapi-request-validator";
- packageName = "openapi-request-validator";
- version = "8.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/openapi-request-validator/-/openapi-request-validator-8.0.0.tgz";
- sha512 = "7gqNp4MvYu+pbdbq8Pw0qMsKqlhWQeYdKCHiu1OeOgBG8YkjlNGGeTuX028TsBEB/jGw7PgMCggaHuMl/W3bmQ==";
- };
- };
"openapi-response-validator-4.0.0" = {
name = "openapi-response-validator";
packageName = "openapi-response-validator";
@@ -44123,15 +44276,6 @@ let
sha512 = "Su8jA45PhegUgJnEAT15DYt2spPJgvjyTtXqg+Lw5AtGePfcQskV6ACEzsL0XPoAXIFf09Vx6sBor9pek+tl+Q==";
};
};
- "openapi-response-validator-8.0.0" = {
- name = "openapi-response-validator";
- packageName = "openapi-response-validator";
- version = "8.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/openapi-response-validator/-/openapi-response-validator-8.0.0.tgz";
- sha512 = "h41hcEIgT7ldowLafcWlaE2m3+ss9IgRRrBfEzTtdBab2SyefYeXBV5keicL/muC1msmhT2p2rftjQnvfQN2jA==";
- };
- };
"openapi-sampler-1.1.0" = {
name = "openapi-sampler";
packageName = "openapi-sampler";
@@ -44159,15 +44303,6 @@ let
sha512 = "XT8NM5e/zBBa/cydTS1IeYkCPzJp9oixvt9Y1lEx+2gsCTOooNxw9x/KEivtWMSokne7X1aR+VtsYHQtNNOSyA==";
};
};
- "openapi-schema-validator-8.0.0" = {
- name = "openapi-schema-validator";
- packageName = "openapi-schema-validator";
- version = "8.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/openapi-schema-validator/-/openapi-schema-validator-8.0.0.tgz";
- sha512 = "cxacCVE/pIhlfzDPjhMREEVgWsFFUxU/+bKU258LKDmgXcdbbajtWtRT63VarXPnQ0sS4Bhl3V4ZKWxdJMiOXA==";
- };
- };
"openapi-security-handler-2.0.4" = {
name = "openapi-security-handler";
packageName = "openapi-security-handler";
@@ -44186,15 +44321,6 @@ let
sha512 = "6wC2MXUv/FOy6uK6kkvPx1Pmh4WI3rpj7fsA1jwKCIPMwVcaJQA7/4Cfw3VWMNF0mVz7Nlxt9/aiziXHSOfiLg==";
};
};
- "openapi-security-handler-8.0.0" = {
- name = "openapi-security-handler";
- packageName = "openapi-security-handler";
- version = "8.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/openapi-security-handler/-/openapi-security-handler-8.0.0.tgz";
- sha512 = "XWD15AQSZA3OQFS1gqupC9KoxOuUacyG8PUEna91sihPvZdO5lVcAfqHkJ1tqOKcn5k8Y8EsSoCwlr0d5njCaw==";
- };
- };
"openapi-to-graphql-2.2.5" = {
name = "openapi-to-graphql";
packageName = "openapi-to-graphql";
@@ -44240,15 +44366,6 @@ let
sha512 = "olbaNxz12R27+mTyJ/ZAFEfUruauHH27AkeQHDHRq5AF0LdNkK1SSV7EourXQDK+4aX7dv2HtyirAGK06WMAsA==";
};
};
- "openapi-types-8.0.0" = {
- name = "openapi-types";
- packageName = "openapi-types";
- version = "8.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/openapi-types/-/openapi-types-8.0.0.tgz";
- sha512 = "dcHYyCDOAy4QQTrur5Sn1L3lPVspB7rd04Rw/Q7AsMvfV797IiWgmKziFCbq8VhnBoREU/SPPSBDxtK9Biwa1g==";
- };
- };
"openapi3-ts-2.0.1" = {
name = "openapi3-ts";
packageName = "openapi3-ts";
@@ -46688,13 +46805,13 @@ let
sha1 = "084b5093ddc92506e259f874b8d9b1afb8c79593";
};
};
- "plist-3.0.3" = {
+ "plist-3.0.4" = {
name = "plist";
packageName = "plist";
- version = "3.0.3";
+ version = "3.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/plist/-/plist-3.0.3.tgz";
- sha512 = "ghdOKN99hh1oEmAlwBmPYo4L+tSQ7O3jRpkhWqOrMz86CWotpVzMevvQ+czo7oPDpOZyA6K06Ci7QVHpoh9gaA==";
+ url = "https://registry.npmjs.org/plist/-/plist-3.0.4.tgz";
+ sha512 = "ksrr8y9+nXOxQB2osVNqrgvX/XQPOXaU4BQMKjYq8PvaY1U18mo+fKgBSwzK+luSyinOuPae956lSVcBwxlAMg==";
};
};
"plist-with-patches-0.5.1" = {
@@ -49587,13 +49704,13 @@ let
sha1 = "15931d3cd967ade52206f523aa7331aef7d43af7";
};
};
- "pyright-1.1.163" = {
+ "pyright-1.1.166" = {
name = "pyright";
packageName = "pyright";
- version = "1.1.163";
+ version = "1.1.166";
src = fetchurl {
- url = "https://registry.npmjs.org/pyright/-/pyright-1.1.163.tgz";
- sha512 = "CU0WPzr+6ZKIqCqqVrOtxMFWdzdOV18zKmC7dVBzp3snuun8JafnnmUzNJpO8IJLN/bQNSLb3riLtXFM/8Xxbg==";
+ url = "https://registry.npmjs.org/pyright/-/pyright-1.1.166.tgz";
+ sha512 = "mO+iPT2dhHzlplAV3iKE6u4gUstGZxxLyMSRd1PKZqWhwhTCCGjn3/7VqbAwUt4fuhY8g0V+SAsu+MPT4H3FvQ==";
};
};
"q-0.9.7" = {
@@ -50388,13 +50505,13 @@ let
sha512 = "dx0LvIGHcOPtKbeiSUM4jqpBl3TcY7CDjZdfOIcKeznE7BWr9dg0iPG90G5yfVQ+p/rGNMXdbfStvzQZEVEi4A==";
};
};
- "react-devtools-core-4.17.0" = {
+ "react-devtools-core-4.18.0" = {
name = "react-devtools-core";
packageName = "react-devtools-core";
- version = "4.17.0";
+ version = "4.18.0";
src = fetchurl {
- url = "https://registry.npmjs.org/react-devtools-core/-/react-devtools-core-4.17.0.tgz";
- sha512 = "+9/aF7Gc8gswkAsoyUyQdIrhKHY/hOaMdK0oPIHuxzckJC5Cd4R1Mx75DKaqn84znwrYvXQ65kAseA+X44jMTw==";
+ url = "https://registry.npmjs.org/react-devtools-core/-/react-devtools-core-4.18.0.tgz";
+ sha512 = "Kg/LhDkdt9J0ned1D1RfeuSdX4cKW83/valJLYswGdsYc0g2msmD0kfYozsaRacjDoZwcKlxGOES1wrkET5O6Q==";
};
};
"react-dom-16.14.0" = {
@@ -50667,13 +50784,13 @@ let
sha512 = "aLcPqxovhJTVJcsnROuuzQvv6oziQx4zd3JvG0vGCL5MjTONUc4uJ90zCBC6R7W7oUKBNoR/F8pkyfVwlbxqng==";
};
};
- "read-package-json-4.0.1" = {
+ "read-package-json-4.1.1" = {
name = "read-package-json";
packageName = "read-package-json";
- version = "4.0.1";
+ version = "4.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/read-package-json/-/read-package-json-4.0.1.tgz";
- sha512 = "czqCcYfkEl6sIFJVOND/5/Goseu7cVw1rcDUATq6ED0jLGjMm9/HOPmFmEZMvRu9yl272YERaMUcOlvcNU9InQ==";
+ url = "https://registry.npmjs.org/read-package-json/-/read-package-json-4.1.1.tgz";
+ sha512 = "P82sbZJ3ldDrWCOSKxJT0r/CXMWR0OR3KRh55SgKo3p91GSIEEC32v3lSHAvO/UcH3/IoL7uqhOFBduAnwdldw==";
};
};
"read-package-json-fast-2.0.3" = {
@@ -52323,6 +52440,15 @@ let
sha512 = "fimzjIVw506FBZLspTAXHdpvgvQebyjpNyLRd0e6drPPRq7gcrROeGWRyF81wLqFg5ijPgnOQbmfck5wdTqpSA==";
};
};
+ "request-light-0.5.4" = {
+ name = "request-light";
+ packageName = "request-light";
+ version = "0.5.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/request-light/-/request-light-0.5.4.tgz";
+ sha512 = "t3566CMweOFlUk7Y1DJMu5OrtpoZEb6aSTsLQVT3wtrIEJ5NhcY9G/Oqxvjllzl4a15zXfFlcr9q40LbLVQJqw==";
+ };
+ };
"request-progress-2.0.1" = {
name = "request-progress";
packageName = "request-progress";
@@ -52530,13 +52656,13 @@ let
sha512 = "W8LucSynKUIDu9ylraa7ueVZ7hc0uAgJBxVsQSKOXOyle8a93qXhcz+XAXZ8bIq2d6i4Ehddn6Evt+0/UwKk6Q==";
};
};
- "resolve-alpn-1.2.0" = {
+ "resolve-alpn-1.2.1" = {
name = "resolve-alpn";
packageName = "resolve-alpn";
- version = "1.2.0";
+ version = "1.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.2.0.tgz";
- sha512 = "e4FNQs+9cINYMO5NMFc6kOUCdohjqFPSgMuwuZAOUWqrfWsen+Yjy5qZFkV5K7VO7tFSLKcUL97olkED7sCBHA==";
+ url = "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.2.1.tgz";
+ sha512 = "0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==";
};
};
"resolve-cwd-2.0.0" = {
@@ -53628,13 +53754,49 @@ let
sha512 = "y/52Mcy7aw3gRm7IrcGDFx/bCk4AhRh2eI9luHOQM86nZsqwiRkkq2GekHXBBD+SmPidc8i2PqtYZl+pWJ8Oeg==";
};
};
- "sass-1.38.1" = {
+ "sasl-anonymous-0.1.0" = {
+ name = "sasl-anonymous";
+ packageName = "sasl-anonymous";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sasl-anonymous/-/sasl-anonymous-0.1.0.tgz";
+ sha1 = "f544c7e824df2a40d9ad4733829572cc8d9ed5a5";
+ };
+ };
+ "sasl-plain-0.1.0" = {
+ name = "sasl-plain";
+ packageName = "sasl-plain";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sasl-plain/-/sasl-plain-0.1.0.tgz";
+ sha1 = "cf145e7c02222b64d60c0806d9cd2ae5380426cc";
+ };
+ };
+ "sasl-scram-sha-1-1.2.1" = {
+ name = "sasl-scram-sha-1";
+ packageName = "sasl-scram-sha-1";
+ version = "1.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sasl-scram-sha-1/-/sasl-scram-sha-1-1.2.1.tgz";
+ sha1 = "d88d51feaa0ff320d8eb1d6fc75657653f9dcd4b";
+ };
+ };
+ "saslmechanisms-0.1.1" = {
+ name = "saslmechanisms";
+ packageName = "saslmechanisms";
+ version = "0.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/saslmechanisms/-/saslmechanisms-0.1.1.tgz";
+ sha1 = "478be1429500fcfaa780be88b3343ced7d2a9182";
+ };
+ };
+ "sass-1.39.0" = {
name = "sass";
packageName = "sass";
- version = "1.38.1";
+ version = "1.39.0";
src = fetchurl {
- url = "https://registry.npmjs.org/sass/-/sass-1.38.1.tgz";
- sha512 = "Lj8nPaSYOuRhgqdyShV50fY5jKnvaRmikUNalMPmbH+tKMGgEKVkltI/lP30PEfO2T1t6R9yc2QIBLgOc3uaFw==";
+ url = "https://registry.npmjs.org/sass/-/sass-1.39.0.tgz";
+ sha512 = "F4o+RhJkNOIG0b6QudYU8c78ZADKZjKDk5cyrf8XTKWfrgbtyVVXImFstJrc+1pkQDCggyidIOytq6gS4gCCZg==";
};
};
"sax-0.5.8" = {
@@ -54789,13 +54951,13 @@ let
sha512 = "rohCHmEjD/ESXFLxF4bVeqgdb4Awc65ZyyuCKl3f7BvgMbZOBa/Ye3HN/GFnvruiUOAWWNupxhz3Rz5/3vJLTg==";
};
};
- "simple-git-2.44.0" = {
+ "simple-git-2.45.1" = {
name = "simple-git";
packageName = "simple-git";
- version = "2.44.0";
+ version = "2.45.1";
src = fetchurl {
- url = "https://registry.npmjs.org/simple-git/-/simple-git-2.44.0.tgz";
- sha512 = "wIjcAmymhzgdaM0Y/a+XxmNGlivvHQTPZDYXVmyHMShVDwdeVqu3+OOyDbYu0DnfVzqLs2EOxRTgMNbC3YquwQ==";
+ url = "https://registry.npmjs.org/simple-git/-/simple-git-2.45.1.tgz";
+ sha512 = "NmEoThiLTJxl26WNtZxtJTue18ReTcSrf3so5vJG/O8KY9uMxH+yAhXV/DElBJyOYZrrBbVsH8JOFxgENdc9Xg==";
};
};
"simple-handshake-3.0.0" = {
@@ -54807,13 +54969,13 @@ let
sha512 = "8Te0vlxvhpNCMgwnWFTbRR6Re2l8hq8wyXQc3lY9dPYXFxYwVkh79LhDQHFCOWRavmbiOdfqq1l5HT/73Rn2/w==";
};
};
- "simple-hypercore-protocol-2.1.1" = {
+ "simple-hypercore-protocol-2.1.2" = {
name = "simple-hypercore-protocol";
packageName = "simple-hypercore-protocol";
- version = "2.1.1";
+ version = "2.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/simple-hypercore-protocol/-/simple-hypercore-protocol-2.1.1.tgz";
- sha512 = "xKuomRCfDDf+r6PDOD3RD88cjOLcbJ0E3Iz9Z+daB4Sq3FVv6efKYsOytgzTfSZMzkszF9EpYHGIILdVI669qA==";
+ url = "https://registry.npmjs.org/simple-hypercore-protocol/-/simple-hypercore-protocol-2.1.2.tgz";
+ sha512 = "zCwEMw/Evd5iDPkVEjO+1T3OJqbuDukJSuZtMZ7A7Wfn0RxmaJFbwngfUnDNyQFbPMxiINNxGBMD85fFJF8ghA==";
};
};
"simple-markdown-0.4.4" = {
@@ -55140,15 +55302,6 @@ let
sha512 = "FkMq+MQc5hzYgM86nLuHI98Acwi3p4wX+a5BO9Hhw4JdK4L7WueIiZ4tXEobImPqBz2sVcV0+Mu3GRB30IGang==";
};
};
- "smart-buffer-1.1.15" = {
- name = "smart-buffer";
- packageName = "smart-buffer";
- version = "1.1.15";
- src = fetchurl {
- url = "https://registry.npmjs.org/smart-buffer/-/smart-buffer-1.1.15.tgz";
- sha1 = "7f114b5b65fab3e2a35aa775bb12f0d1c649bf16";
- };
- };
"smart-buffer-4.2.0" = {
name = "smart-buffer";
packageName = "smart-buffer";
@@ -55338,13 +55491,13 @@ let
sha512 = "+vDov/aTsLjViYTwS9fPy5pEtTkrbEKsw2M+oVSoFGw6OD1IpvlV1VPhUzNbofCQ8oyMbdYJqDtGdmHQK6TdPg==";
};
};
- "socket.io-adapter-2.3.1" = {
+ "socket.io-adapter-2.3.2" = {
name = "socket.io-adapter";
packageName = "socket.io-adapter";
- version = "2.3.1";
+ version = "2.3.2";
src = fetchurl {
- url = "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.3.1.tgz";
- sha512 = "8cVkRxI8Nt2wadkY6u60Y4rpW3ejA1rxgcK2JuyIhmF+RMNpTy1QRtkHIDUOf3B4HlQwakMsWbKftMv/71VMmw==";
+ url = "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.3.2.tgz";
+ sha512 = "PBZpxUPYjmoogY0aoaTmo1643JelsaS1CiAwNjRVdrI0X9Seuc19Y2Wife8k88avW6haG8cznvwbubAZwH4Mtg==";
};
};
"socket.io-client-1.0.6" = {
@@ -55455,15 +55608,6 @@ let
sha512 = "ZzRxPBISQE7RpzlH4tKJMQbHM9pabHluk0WBaxAQ+wm/UieeBVBou0p4wVnSQGN9QmpAZygQ0cDIypWuqOFmFQ==";
};
};
- "socks-1.1.10" = {
- name = "socks";
- packageName = "socks";
- version = "1.1.10";
- src = fetchurl {
- url = "https://registry.npmjs.org/socks/-/socks-1.1.10.tgz";
- sha1 = "5b8b7fc7c8f341c53ed056e929b7bf4de8ba7b5a";
- };
- };
"socks-2.6.1" = {
name = "socks";
packageName = "socks";
@@ -56598,13 +56742,13 @@ let
sha512 = "zZ/Q1M+9ZWlrchgh4QauD/MEUFa6eC6H6FYq6T8Of/y82JqsQBLwN6YlzbO09evE7Rx6x0oliXDCnQSjwGwQRA==";
};
};
- "sscaff-1.2.54" = {
+ "sscaff-1.2.63" = {
name = "sscaff";
packageName = "sscaff";
- version = "1.2.54";
+ version = "1.2.63";
src = fetchurl {
- url = "https://registry.npmjs.org/sscaff/-/sscaff-1.2.54.tgz";
- sha512 = "092MKLW//UTJIFc8dnugvXKMgGsyiY/PP2C6MP1ThFRtwg58vH6TOfkVYo2OMxFqP7yBWJsc7VyIkzl8EiXpdQ==";
+ url = "https://registry.npmjs.org/sscaff/-/sscaff-1.2.63.tgz";
+ sha512 = "7T/JlrjNIc7kD+3mBvfE3JEpOAV0qstAEbCy3WOrMHWcgROAOESA9llkqQPcDQZB9bRV8JLqQIAgqVtpwljFOw==";
};
};
"ssh-config-1.1.6" = {
@@ -58272,13 +58416,13 @@ let
sha512 = "mDAmaltQl6e5zU2VEtoWEf7eLTfuOTGr9zt+BpA3AGHo8MIhKiNSPE9OLTCTOMgj0vj/uL9QBbaNmpG4G1CgIA==";
};
};
- "svelte-preprocess-4.8.0" = {
+ "svelte-preprocess-4.9.2" = {
name = "svelte-preprocess";
packageName = "svelte-preprocess";
- version = "4.8.0";
+ version = "4.9.2";
src = fetchurl {
- url = "https://registry.npmjs.org/svelte-preprocess/-/svelte-preprocess-4.8.0.tgz";
- sha512 = "i9Z17cwGlp+kuSSv3kJWdAdAP2L26A5yMzHHdDj8YL+86sN64Yz5/gfjQp3Xb6fiaToo4sB+wTpid/23Gz0yvw==";
+ url = "https://registry.npmjs.org/svelte-preprocess/-/svelte-preprocess-4.9.2.tgz";
+ sha512 = "Eu/09bEpcBD8a9pGxcILEAZssXifnWoi5ad5GgUAgoT4alblNikOIpKrWDFkepMqjgioXciWbIZOROoTX3ZLdA==";
};
};
"svelte2tsx-0.4.5" = {
@@ -58434,15 +58578,6 @@ let
sha512 = "xk5CMbwoQVI53rTq9o/iMojAqXP5NT4/+TMeTP4uXWDIH18pB9AXgO5Olqt0RXuf3jH032DA4DS4qzem6XdXAw==";
};
};
- "swagger-ui-dist-3.51.2" = {
- name = "swagger-ui-dist";
- packageName = "swagger-ui-dist";
- version = "3.51.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/swagger-ui-dist/-/swagger-ui-dist-3.51.2.tgz";
- sha512 = "7aDfpvGrya61WQN4Eb6x5TELvYb5+7SRJQNYySkKUDGiRIwj1A8B2PNsXs4xMD0/5t8uNi4zW58KSofutcBdhw==";
- };
- };
"swagger2openapi-7.0.8" = {
name = "swagger2openapi";
packageName = "swagger2openapi";
@@ -58578,13 +58713,13 @@ let
sha512 = "33+lQwlLxXoxy0o9WLOgw8OjbXeS3Jv+pSl+nxKc2AOClBI28HsdRPpH0u9Xa9OVjHLT9vonnOMw1ug7YXI0dA==";
};
};
- "systeminformation-5.8.6" = {
+ "systeminformation-5.8.7" = {
name = "systeminformation";
packageName = "systeminformation";
- version = "5.8.6";
+ version = "5.8.7";
src = fetchurl {
- url = "https://registry.npmjs.org/systeminformation/-/systeminformation-5.8.6.tgz";
- sha512 = "R37NZR9f6OejKvERiatjh1vK49xkJ/MOgFpwpCw2h0NoD+1nKAgGzxkyjNX7bsf6ADaKzyAZ2SFK1mXddytIaA==";
+ url = "https://registry.npmjs.org/systeminformation/-/systeminformation-5.8.7.tgz";
+ sha512 = "e7b47PXn+GvPHLZm7FxC+IgPs5lqqsrmw7xtdxrr0U8aivYZO6V3CawMqCy5bfGB/ghZh/7AWlJEoXUPLyH3iw==";
};
};
"table-3.8.3" = {
@@ -58813,15 +58948,6 @@ let
sha512 = "an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==";
};
};
- "tar-6.1.2" = {
- name = "tar";
- packageName = "tar";
- version = "6.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/tar/-/tar-6.1.2.tgz";
- sha512 = "EwKEgqJ7nJoS+s8QfLYVGMDmAsj+StbI2AM/RTHeUSsOw6Z8bwNBRv5z3CY0m7laC5qUAqruLX5AhMuc5deY3Q==";
- };
- };
"tar-fs-1.16.3" = {
name = "tar-fs";
packageName = "tar-fs";
@@ -59173,13 +59299,13 @@ let
sha512 = "3qAQpykRTD5DReLu5/cwpsg7EZFzP3Q0Hp2XUWJUw2mpq2jfgOKTZr8IZKKnNieRVVo1UauROTdhbQJZveGKtQ==";
};
};
- "terser-webpack-plugin-5.1.4" = {
+ "terser-webpack-plugin-5.2.3" = {
name = "terser-webpack-plugin";
packageName = "terser-webpack-plugin";
- version = "5.1.4";
+ version = "5.2.3";
src = fetchurl {
- url = "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.1.4.tgz";
- sha512 = "C2WkFwstHDhVEmsmlCxrXUtVklS+Ir1A7twrYzrDrQQOIMOaVAYykaoo/Aq1K0QRkMoY2hhvDQY1cm4jnIMFwA==";
+ url = "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.2.3.tgz";
+ sha512 = "eDbuaDlXhVaaoKuLD3DTNTozKqln6xOG6Us0SzlKG5tNlazG+/cdl8pm9qiF1Di89iWScTI0HcO+CDcf2dkXiw==";
};
};
"test-exclude-6.0.0" = {
@@ -59758,13 +59884,13 @@ let
sha512 = "OyCLAKU1HzBjL6Ev3gxUeraJNlbNingmi8IrHHEsYH8LTmEuhvYfqvhn2F/je+mjf4N58UmZ96OMEy1JanSCpA==";
};
};
- "tmpl-1.0.4" = {
+ "tmpl-1.0.5" = {
name = "tmpl";
packageName = "tmpl";
- version = "1.0.4";
+ version = "1.0.5";
src = fetchurl {
- url = "https://registry.npmjs.org/tmpl/-/tmpl-1.0.4.tgz";
- sha1 = "23640dd7b42d00433911140820e5cf440e521dd1";
+ url = "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz";
+ sha512 = "3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==";
};
};
"to-absolute-glob-2.0.2" = {
@@ -60100,13 +60226,13 @@ let
sha1 = "2d17d82cf669ada7f9dfe75db4b31f7034b71e29";
};
};
- "torrent-discovery-9.4.4" = {
+ "torrent-discovery-9.4.6" = {
name = "torrent-discovery";
packageName = "torrent-discovery";
- version = "9.4.4";
+ version = "9.4.6";
src = fetchurl {
- url = "https://registry.npmjs.org/torrent-discovery/-/torrent-discovery-9.4.4.tgz";
- sha512 = "psD/QcqSevMouHFbPKz4V9X5u2HuR/SaxeIp2T/JAduHKmDoq/pgxMQiAe/4DlhDgSCIAYWEB2xKP0dUTInBpQ==";
+ url = "https://registry.npmjs.org/torrent-discovery/-/torrent-discovery-9.4.6.tgz";
+ sha512 = "11FlrGmDvgD3RJhZLrC749yyqS7tKx3gXWbYN7xayVYsAcc6f8lQRQQIOF7TBgJE4f0e+ZS8dsct++aOlxFjRw==";
};
};
"torrent-piece-1.1.2" = {
@@ -60289,13 +60415,13 @@ let
sha512 = "L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==";
};
};
- "tree-kit-0.7.0" = {
+ "tree-kit-0.7.1" = {
name = "tree-kit";
packageName = "tree-kit";
- version = "0.7.0";
+ version = "0.7.1";
src = fetchurl {
- url = "https://registry.npmjs.org/tree-kit/-/tree-kit-0.7.0.tgz";
- sha512 = "MAqFo2oJJ39zmxq3xETx0nMAgZw2z6pnJPjIAehEcrDaeePDhBBTshAlyhCDtezMDTIu1Av+vGE501xN3Sh8VA==";
+ url = "https://registry.npmjs.org/tree-kit/-/tree-kit-0.7.1.tgz";
+ sha512 = "7v5c7ipKxUBR0J3P+WCGg6WqbFV/2glYmTuibgQtyna1DaNJk5mSM3oxPC2AZ/xQN1dTbFWvih4aSbwSBDfx4Q==";
};
};
"tree-sitter-0.17.2" = {
@@ -61018,13 +61144,13 @@ let
sha512 = "TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==";
};
};
- "typed-rest-client-1.8.5" = {
+ "typed-rest-client-1.8.6" = {
name = "typed-rest-client";
packageName = "typed-rest-client";
- version = "1.8.5";
+ version = "1.8.6";
src = fetchurl {
- url = "https://registry.npmjs.org/typed-rest-client/-/typed-rest-client-1.8.5.tgz";
- sha512 = "952/Aegu3lTqUAI1anbDLbewojnF/gh8at9iy1CIrfS1h/+MtNjB1Y9z6ZF5n2kZd+97em56lZ9uu7Zz3y/pwg==";
+ url = "https://registry.npmjs.org/typed-rest-client/-/typed-rest-client-1.8.6.tgz";
+ sha512 = "xcQpTEAJw2DP7GqVNECh4dD+riS+C1qndXLfBCJ3xk0kqprtGN491P5KlmrDbKdtuW8NEcP/5ChxiJI3S9WYTA==";
};
};
"typed-styles-0.0.7" = {
@@ -61162,6 +61288,15 @@ let
sha512 = "DqQgihaQ9cUrskJo9kIyW/+g0Vxsk8cDtZ52a3NGh0YNTfpUSArXSohyUGnvbPazEPLu398C0UxmKSOrPumUzA==";
};
};
+ "typescript-4.4.2" = {
+ name = "typescript";
+ packageName = "typescript";
+ version = "4.4.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/typescript/-/typescript-4.4.2.tgz";
+ sha512 = "gzP+t5W4hdy4c+68bfcv0t400HVJMMd2+H9B7gae1nQlBzCqvrXX+6GL/b3GAgyTH966pzrZ70/fRjwAtZksSQ==";
+ };
+ };
"typescript-eslint-parser-16.0.1" = {
name = "typescript-eslint-parser";
packageName = "typescript-eslint-parser";
@@ -61252,15 +61387,6 @@ let
sha1 = "29c5733148057bb4e1f75df35b7a9cb72e6a59dd";
};
};
- "uglify-js-3.13.10" = {
- name = "uglify-js";
- packageName = "uglify-js";
- version = "3.13.10";
- src = fetchurl {
- url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.13.10.tgz";
- sha512 = "57H3ACYFXeo1IaZ1w02sfA71wI60MGco/IQFjOqK+WtKoprh7Go2/yvd2HPtoJILO2Or84ncLccI4xoHMTSbGg==";
- };
- };
"uglify-js-3.14.1" = {
name = "uglify-js";
packageName = "uglify-js";
@@ -61270,6 +61396,15 @@ let
sha512 = "JhS3hmcVaXlp/xSo3PKY5R0JqKs5M3IV+exdLHW99qKvKivPO4Z8qbej6mte17SOPqAOVMjt/XGgWacnFSzM3g==";
};
};
+ "uglify-js-3.14.2" = {
+ name = "uglify-js";
+ packageName = "uglify-js";
+ version = "3.14.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.14.2.tgz";
+ sha512 = "rtPMlmcO4agTUfz10CbgJ1k6UAoXM2gWb3GoMPPZB/+/Ackf8lNWk11K4rYi2D0apgoFRLtQOZhb+/iGNJq26A==";
+ };
+ };
"uglify-js-3.4.10" = {
name = "uglify-js";
packageName = "uglify-js";
@@ -62629,13 +62764,13 @@ let
sha1 = "23f89069a6c62f46cf3a1d3b00169cefb90be0c6";
};
};
- "usb-1.7.1" = {
+ "usb-1.7.2" = {
name = "usb";
packageName = "usb";
- version = "1.7.1";
+ version = "1.7.2";
src = fetchurl {
- url = "https://registry.npmjs.org/usb/-/usb-1.7.1.tgz";
- sha512 = "HTCfx6NnNRhv5y98t04Y8j2+A8dmQnEGxCMY2/zN/0gkiioLYfTZ5w/PEKlWRVUY+3qLe9xwRv9pHLkjQYNw/g==";
+ url = "https://registry.npmjs.org/usb/-/usb-1.7.2.tgz";
+ sha512 = "SfVSItgsD9+YfEpcK1UZ8tQ7e8GdxQ0xoQtB773omNBKTVj3IuFJNKjwSnpE58FGcV4tUoKLHmBMc018RUY5SA==";
};
};
"use-3.1.1" = {
@@ -62999,15 +63134,6 @@ let
sha512 = "+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==";
};
};
- "uws-9.148.0" = {
- name = "uws";
- packageName = "uws";
- version = "9.148.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/uws/-/uws-9.148.0.tgz";
- sha512 = "vWt+e8dOdwLM4neb1xIeZuQ7ZUN3l7n0qTKrOUtU1EZrV4BpmrSnsEL30d062/ocqRMGtLpwzVFsLKFgXomA9g==";
- };
- };
"v8-compile-cache-2.3.0" = {
name = "v8-compile-cache";
packageName = "v8-compile-cache";
@@ -63098,6 +63224,15 @@ let
sha512 = "X/p3UZerAIsbBfN/IwahhYaBbY68EN/UQBWHtsbXGT5bfrH/p4NQzUCG1kF/rtKaNpnJ7jAu6NGTdSNtyNIXMw==";
};
};
+ "validator-13.6.0" = {
+ name = "validator";
+ packageName = "validator";
+ version = "13.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/validator/-/validator-13.6.0.tgz";
+ sha512 = "gVgKbdbHgtxpRyR8K0O6oFZPhhB5tT1jeEHZR0Znr9Svg03U0+r9DXWMrnRAB+HtCStDQKlaIZm42tVsVjqtjg==";
+ };
+ };
"validator-5.7.0" = {
name = "validator";
packageName = "validator";
@@ -63908,13 +64043,13 @@ let
sha512 = "FS5ou3G+WRnPPr/tWVs8b/jVzeDacgZHy/y7/QQW7maSPFEAmRt2bFGUJtJVEUDLBqtDm/3VGMJ7D31cF2U1tw==";
};
};
- "vsce-1.96.1" = {
+ "vsce-1.97.0" = {
name = "vsce";
packageName = "vsce";
- version = "1.96.1";
+ version = "1.97.0";
src = fetchurl {
- url = "https://registry.npmjs.org/vsce/-/vsce-1.96.1.tgz";
- sha512 = "KnEVqjfc1dXrpZsbJ8J7B9VQ7GAAx8o5RqBNk42Srv1KF9+e2/aXchQHe9QZxeUs/FiliHoMGpGvnHTXwKIT2A==";
+ url = "https://registry.npmjs.org/vsce/-/vsce-1.97.0.tgz";
+ sha512 = "5Rxj6qO0dN4FnzVS9G94osstx8R3r1OQP39G7WYERpoO9X+OSodVVkRhFDapPNjekfUNo+d5Qn7W1EtNQVoLCg==";
};
};
"vscode-css-languageservice-3.0.13" = {
@@ -64124,6 +64259,15 @@ let
sha512 = "dEmliPZGbSyIcEeKRGzosCy7y7zsc8FXg1l5BBOGgMUbemlo3vUnsa2GFqpILJwJvlbvkRcF2QASNwIlKe9J7g==";
};
};
+ "vscode-jsonrpc-8.0.0-next.2" = {
+ name = "vscode-jsonrpc";
+ packageName = "vscode-jsonrpc";
+ version = "8.0.0-next.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-8.0.0-next.2.tgz";
+ sha512 = "gxUyTBAjmwGkiHW/UaRScre2s4i98P8M7gnc3VB4DrVQUm3vQ0idi2cN9nbkfcjATx+uEt8C22j+MLN/8UzsJA==";
+ };
+ };
"vscode-languageclient-4.0.1" = {
name = "vscode-languageclient";
packageName = "vscode-languageclient";
@@ -64223,6 +64367,15 @@ let
sha512 = "/65lxR/CuLJoOdzTjOTYUPWS7k5qzaWese4PObnWc6jwLryUrSa7DslYfaRXigh5/xr1nlaUZCcJwkpgM0wFvw==";
};
};
+ "vscode-languageserver-8.0.0-next.2" = {
+ name = "vscode-languageserver";
+ packageName = "vscode-languageserver";
+ version = "8.0.0-next.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-8.0.0-next.2.tgz";
+ sha512 = "7qCEXTeGZKkI8BGvlKh0JPXTY7BaWoiwQYKCcGaUgnMs34wt6F/yaKcxoC3XIouBBVyRxiI6Ml/JdztM3XYEaA==";
+ };
+ };
"vscode-languageserver-protocol-3.14.1" = {
name = "vscode-languageserver-protocol";
packageName = "vscode-languageserver-protocol";
@@ -64277,6 +64430,15 @@ let
sha512 = "f1kGsoOpISB5jSqQNeMDl2446enxVahyux2e5vZap6pu/TC+2UlvPT4DCR0gPph95KOQZweL9zq1SzLoPdqhuA==";
};
};
+ "vscode-languageserver-protocol-3.17.0-next.8" = {
+ name = "vscode-languageserver-protocol";
+ packageName = "vscode-languageserver-protocol";
+ version = "3.17.0-next.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.17.0-next.8.tgz";
+ sha512 = "P89vSuJ+FA5JzFmcOoZN13Ig1yd6LsiPOig0O5m5BSGuO/rplQegCd9J0wKpaTy7trf/SYHRoypnbUBdzy14sg==";
+ };
+ };
"vscode-languageserver-protocol-3.5.1" = {
name = "vscode-languageserver-protocol";
packageName = "vscode-languageserver-protocol";
@@ -64376,6 +64538,15 @@ let
sha512 = "L5S2kNLCgYJMVWgsZjBaorMM/6+itAfvOyl6Kv1bgFzDNaUKm9HsnUlehjpWPdV5DqnfJhJ5E03Z+/3Mw8ii+Q==";
};
};
+ "vscode-languageserver-types-3.17.0-next.3" = {
+ name = "vscode-languageserver-types";
+ packageName = "vscode-languageserver-types";
+ version = "3.17.0-next.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.17.0-next.3.tgz";
+ sha512 = "VQcXnhKYxUW6OiRMhG++SzmZYMJwusXknJGd+FfdOnS1yHAo734OHyR0e2eEHDlv0/oWc8RZPgx/VKSKyondVg==";
+ };
+ };
"vscode-languageserver-types-3.5.0" = {
name = "vscode-languageserver-types";
packageName = "vscode-languageserver-types";
@@ -64538,13 +64709,13 @@ let
sha512 = "8FdXi0gieEwh1IprIBafpiJWcApwrU+l2FEj8c1HtHFdNXMd0+2jUSjBVmcQYohf/E72irwAXEXLga6TQcB3FA==";
};
};
- "vue-eslint-parser-7.10.0" = {
+ "vue-eslint-parser-7.11.0" = {
name = "vue-eslint-parser";
packageName = "vue-eslint-parser";
- version = "7.10.0";
+ version = "7.11.0";
src = fetchurl {
- url = "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-7.10.0.tgz";
- sha512 = "7tc/ewS9Vq9Bn741pvpg8op2fWJPH3k32aL+jcIcWGCTzh/zXSdh7pZ5FV3W2aJancP9+ftPAv292zY5T5IPCg==";
+ url = "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-7.11.0.tgz";
+ sha512 = "qh3VhDLeh773wjgNTl7ss0VejY9bMMa0GoDG2fQVyDzRFdiU3L7fw74tWZDHNQXdZqxO3EveQroa9ct39D2nqg==";
};
};
"vue-onsenui-helper-json-1.0.2" = {
@@ -64772,13 +64943,13 @@ let
sha512 = "tB0F+ccobsfw5jTWBinWJKyd/YdCdRbKj+CFSnsJeEgFYysOULvWFYyeCxn9KuQvG/3UF1t3cTAcJzBec5LCWA==";
};
};
- "web-streams-polyfill-3.1.0" = {
+ "web-streams-polyfill-3.1.1" = {
name = "web-streams-polyfill";
packageName = "web-streams-polyfill";
- version = "3.1.0";
+ version = "3.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.1.0.tgz";
- sha512 = "wO9r1YnYe7kFBLHyyVEhV1H8VRWoNiNnuP+v/HUUmSTaRF8F93Kmd3JMrETx0f11GXxRek6OcL2QtjFIdc5WYw==";
+ url = "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.1.1.tgz";
+ sha512 = "Czi3fG883e96T4DLEPRvufrF2ydhOOW1+1a6c3gNjH2aIh50DNFBdfwh2AKoOf1rXvpvavAoA11Qdq9+BKjE0Q==";
};
};
"web-tree-sitter-0.17.1" = {
@@ -64898,13 +65069,13 @@ let
sha512 = "68VT2ZgG9EHs6h6UxfV2SEYewA9BA3SOLSnC2NEbJJiEwbAiueDL033R1xX0jzjmXvMh0oSeKnKgbO2bDXIEyQ==";
};
};
- "webpack-5.51.1" = {
+ "webpack-5.52.0" = {
name = "webpack";
packageName = "webpack";
- version = "5.51.1";
+ version = "5.52.0";
src = fetchurl {
- url = "https://registry.npmjs.org/webpack/-/webpack-5.51.1.tgz";
- sha512 = "xsn3lwqEKoFvqn4JQggPSRxE4dhsRcysWTqYABAZlmavcoTmwlOb9b1N36Inbt/eIispSkuHa80/FJkDTPos1A==";
+ url = "https://registry.npmjs.org/webpack/-/webpack-5.52.0.tgz";
+ sha512 = "yRZOat8jWGwBwHpco3uKQhVU7HYaNunZiJ4AkAVQkPCUGoZk/tiIXiwG+8HIy/F+qsiZvSOa+GLQOj3q5RKRYg==";
};
};
"webpack-bundle-analyzer-3.9.0" = {
@@ -65114,13 +65285,13 @@ let
sha512 = "OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==";
};
};
- "webtorrent-1.5.4" = {
+ "webtorrent-1.5.5" = {
name = "webtorrent";
packageName = "webtorrent";
- version = "1.5.4";
+ version = "1.5.5";
src = fetchurl {
- url = "https://registry.npmjs.org/webtorrent/-/webtorrent-1.5.4.tgz";
- sha512 = "XXvOHlCskDgDjFoId0YrTebQQ/11rIJIm0MQqkBPctSA+RPrRDDooJa8yHAsVP+Aa2PtoxrKPSHr9RFDq+46aQ==";
+ url = "https://registry.npmjs.org/webtorrent/-/webtorrent-1.5.5.tgz";
+ sha512 = "YAEtWZxxf8N6DvdLgt79fQlIXSJU0G61YEkcWyBA+aopQGV0vCAMp1N/ifKIFt760pgKV+qzwRSbVP+/lBJ08g==";
};
};
"well-known-symbols-2.0.0" = {
@@ -65312,13 +65483,13 @@ let
sha1 = "20b721df05b35b706176ffa10b0909aba4603035";
};
};
- "which-typed-array-1.1.6" = {
+ "which-typed-array-1.1.7" = {
name = "which-typed-array";
packageName = "which-typed-array";
- version = "1.1.6";
+ version = "1.1.7";
src = fetchurl {
- url = "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.6.tgz";
- sha512 = "DdY984dGD5sQ7Tf+x1CkXzdg85b9uEel6nr4UkFg1LoE9OXv3uRuZhe5CoWdawhGACeFpEZXH8fFLQnDhbpm/Q==";
+ url = "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.7.tgz";
+ sha512 = "vjxaB4nfDqwKI0ws7wZpxIlde1XrLX5uB0ZjpfshgmapJMD7jJWhZI+yToJTqaFByF0eNBcYxbjmCzoRP7CfEw==";
};
};
"wide-align-1.1.3" = {
@@ -65933,13 +66104,13 @@ let
sha512 = "2c6faOUH/nhoQN6abwMloF7Iyl0ZS2E9HGtsiLrWn0zOOMWlhtDmdf/uihDt6jnuCxgtwGBNy6Onsoy2s2O2Ow==";
};
};
- "ws-7.5.3" = {
+ "ws-7.5.4" = {
name = "ws";
packageName = "ws";
- version = "7.5.3";
+ version = "7.5.4";
src = fetchurl {
- url = "https://registry.npmjs.org/ws/-/ws-7.5.3.tgz";
- sha512 = "kQ/dHIzuLrS6Je9+uv81ueZomEwH0qVYstcAQ4/Z93K8zeko9gtAbttJWzoC5ukqXY1PpoouV3+VSOqEAFt5wg==";
+ url = "https://registry.npmjs.org/ws/-/ws-7.5.4.tgz";
+ sha512 = "zP9z6GXm6zC27YtspwH99T3qTG7bBFv2VIkeHstMLrLlDJuzA7tQ5ls3OJ1hOGGCzTQPniNJoHXIAOS0Jljohg==";
};
};
"ws-8.1.0" = {
@@ -65960,6 +66131,15 @@ let
sha512 = "uYhVJ/m9oXwEI04iIVmgLmugh2qrZihkywG9y5FfZV2ATeLIzHf93qs+tUNqlttbQK957/VX3mtwAS+UfIwA4g==";
};
};
+ "ws-8.2.1" = {
+ name = "ws";
+ packageName = "ws";
+ version = "8.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ws/-/ws-8.2.1.tgz";
+ sha512 = "XkgWpJU3sHU7gX8f13NqTn6KQ85bd1WU7noBHTT8fSohx7OS1TPY8k+cyRPCzFkia7C4mM229yeHr1qK9sM4JQ==";
+ };
+ };
"x-default-browser-0.3.1" = {
name = "x-default-browser";
packageName = "x-default-browser";
@@ -66447,13 +66627,13 @@ let
sha512 = "2t7FahYnGJys6DpHLhajusId7R0Pm2yTmuL0GV9+mV0ZlaLSnb2toBmppATfg5sWIhZQGlsTLoecSzya+l4EAQ==";
};
};
- "xstate-4.23.1" = {
+ "xstate-4.23.4" = {
name = "xstate";
packageName = "xstate";
- version = "4.23.1";
+ version = "4.23.4";
src = fetchurl {
- url = "https://registry.npmjs.org/xstate/-/xstate-4.23.1.tgz";
- sha512 = "8ZoCe8d6wDSPfkep+GBgi+fKAdMyXcaizoNf5FKceEhlso4+9n1TeK6oviaDsXZ3Z5O8xKkJOxXPNuD4cA9LCw==";
+ url = "https://registry.npmjs.org/xstate/-/xstate-4.23.4.tgz";
+ sha512 = "lWaUvyrd0HGhosyKnf8i9wBlszVaS+/uIs0EfnuPYNsZIh1BW9ed4bZ64P57wVYk2uln7v3u+Mv98FC+r8xrxQ==";
};
};
"xstream-11.14.0" = {
@@ -67059,13 +67239,13 @@ let
sha512 = "Yj3yXweRc8LdRMrCC8nIc4kkjWecPAUVh0TI0OUrWXx6aX790vLcDlWca6I4vsyCGH3LpWxq0dJRcMOFoVqmeg==";
};
};
- "zen-observable-ts-1.2.0" = {
+ "zen-observable-ts-1.2.2" = {
name = "zen-observable-ts";
packageName = "zen-observable-ts";
- version = "1.2.0";
+ version = "1.2.2";
src = fetchurl {
- url = "https://registry.npmjs.org/zen-observable-ts/-/zen-observable-ts-1.2.0.tgz";
- sha512 = "3IklmJSChXaqAD2gPz6yKHThAnZL46D51x5EPpN/MHuPjrepVdSg3qI7f5fh1RT8Y+K46Owo9fpVuJiuJXLMMA==";
+ url = "https://registry.npmjs.org/zen-observable-ts/-/zen-observable-ts-1.2.2.tgz";
+ sha512 = "o15G3luGAPoWD2//djCQsnC7886KpgQETAvTwnDPMN33RS+XACoFR46fm5e3tC/WNTF0uzHPL91Yyakc280Xiw==";
};
};
"zeromq-5.2.8" = {
@@ -67155,15 +67335,15 @@ in
"@angular/cli" = nodeEnv.buildNodePackage {
name = "_at_angular_slash_cli";
packageName = "@angular/cli";
- version = "12.2.3";
+ version = "12.2.4";
src = fetchurl {
- url = "https://registry.npmjs.org/@angular/cli/-/cli-12.2.3.tgz";
- sha512 = "QBudMbLc+m/Z7GZTskeStk8PUAIPYVYRDq+9dQyKmill56t4MdmTU/m8eteVUXWpQFdRwhqIz6L9hlsfJXzP6A==";
+ url = "https://registry.npmjs.org/@angular/cli/-/cli-12.2.4.tgz";
+ sha512 = "oUpUKnFyunUMaWXF/5mXgM4r2Yav0ucysNN5rIhqtKPwGePGMALIuBWAhgsuIyT+SrmF9HIp1dVC5+sGA1WzYQ==";
};
dependencies = [
- sources."@angular-devkit/architect-0.1202.3"
- sources."@angular-devkit/core-12.2.3"
- sources."@angular-devkit/schematics-12.2.3"
+ sources."@angular-devkit/architect-0.1202.4"
+ sources."@angular-devkit/core-12.2.4"
+ sources."@angular-devkit/schematics-12.2.4"
sources."@gar/promisify-1.1.2"
sources."@npmcli/fs-1.0.0"
sources."@npmcli/git-2.1.0"
@@ -67172,7 +67352,7 @@ in
sources."@npmcli/node-gyp-1.0.2"
sources."@npmcli/promise-spawn-1.3.2"
sources."@npmcli/run-script-1.8.6"
- sources."@schematics/angular-12.2.3"
+ sources."@schematics/angular-12.2.4"
sources."@tootallnate/once-1.1.2"
sources."@yarnpkg/lockfile-1.1.0"
sources."abbrev-1.1.1"
@@ -67186,7 +67366,7 @@ in
sources."ansi-regex-5.0.0"
sources."ansi-styles-4.3.0"
sources."aproba-1.2.0"
- (sources."are-we-there-yet-1.1.5" // {
+ (sources."are-we-there-yet-1.1.7" // {
dependencies = [
sources."readable-stream-2.3.7"
sources."safe-buffer-5.1.2"
@@ -67221,7 +67401,7 @@ in
sources."combined-stream-1.0.8"
sources."concat-map-0.0.1"
sources."console-control-strings-1.1.0"
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."dashdash-1.14.1"
sources."debug-4.3.2"
sources."defaults-1.0.3"
@@ -67323,7 +67503,7 @@ in
sources."minimatch-3.0.4"
sources."minipass-3.1.3"
sources."minipass-collect-1.0.2"
- sources."minipass-fetch-1.3.4"
+ sources."minipass-fetch-1.4.1"
sources."minipass-flush-1.0.5"
sources."minipass-json-stream-1.0.1"
sources."minipass-pipeline-1.2.4"
@@ -67407,7 +67587,11 @@ in
sources."util-deprecate-1.0.2"
sources."uuid-8.3.2"
sources."validate-npm-package-name-3.0.0"
- sources."verror-1.10.0"
+ (sources."verror-1.10.0" // {
+ dependencies = [
+ sources."core-util-is-1.0.2"
+ ];
+ })
sources."wcwidth-1.0.1"
sources."which-2.0.2"
(sources."wide-align-1.1.3" // {
@@ -67543,7 +67727,7 @@ in
];
})
sources."convict-6.0.1"
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."crc-32-1.2.0"
sources."decamelize-1.2.0"
sources."decompress-response-4.2.1"
@@ -67747,7 +67931,7 @@ in
];
})
sources."to-utf8-0.0.1"
- sources."uglify-js-3.14.1"
+ sources."uglify-js-3.14.2"
sources."unc-path-regex-0.1.2"
sources."unique-stream-2.3.1"
sources."universalify-0.1.2"
@@ -67795,7 +67979,7 @@ in
dependencies = [
sources."@tootallnate/once-1.1.2"
sources."abab-2.0.5"
- sources."acorn-8.4.1"
+ sources."acorn-8.5.0"
(sources."acorn-globals-6.0.0" // {
dependencies = [
sources."acorn-7.4.1"
@@ -67827,7 +68011,7 @@ in
sources."data-urls-2.0.0"
sources."debug-4.3.2"
sources."decimal.js-10.3.1"
- sources."deep-is-0.1.3"
+ sources."deep-is-0.1.4"
sources."define-lazy-prop-2.0.0"
sources."delayed-stream-1.0.0"
(sources."domexception-2.0.1" // {
@@ -67871,7 +68055,7 @@ in
sources."mimic-fn-2.1.0"
sources."ms-2.1.2"
sources."mute-stream-0.0.8"
- sources."node-fetch-2.6.1"
+ sources."node-fetch-2.6.2"
sources."node-forge-0.10.0"
sources."nwsapi-2.2.0"
sources."onetime-5.1.2"
@@ -67916,7 +68100,7 @@ in
sources."whatwg-mimetype-2.3.0"
sources."whatwg-url-8.7.0"
sources."word-wrap-1.2.3"
- sources."ws-7.5.3"
+ sources."ws-7.5.4"
sources."xml-name-validator-3.0.0"
sources."xmlchars-2.2.0"
sources."zxcvbn-4.4.2"
@@ -68172,7 +68356,7 @@ in
sources."@hyperswarm/hypersign-2.1.1"
sources."@hyperswarm/network-2.1.0"
sources."@leichtgewicht/ip-codec-2.0.3"
- sources."@types/node-16.7.2"
+ sources."@types/node-16.7.13"
sources."abstract-extension-3.1.1"
sources."abstract-leveldown-6.2.3"
sources."ansi-colors-3.2.3"
@@ -68250,7 +68434,7 @@ in
sources."readable-stream-3.6.0"
];
})
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."corestore-5.8.2"
sources."count-trailing-zeros-1.0.1"
sources."cross-spawn-async-2.2.5"
@@ -68277,7 +68461,7 @@ in
sources."encoding-down-6.3.0"
sources."end-of-stream-1.4.4"
sources."errno-0.1.8"
- (sources."es-abstract-1.18.5" // {
+ (sources."es-abstract-1.18.6" // {
dependencies = [
sources."object.assign-4.1.2"
];
@@ -68305,6 +68489,7 @@ in
sources."generate-object-property-1.2.0"
sources."get-caller-file-2.0.5"
sources."get-intrinsic-1.1.1"
+ sources."get-symbol-description-1.0.0"
sources."glob-7.1.3"
sources."glob-parent-5.1.2"
sources."growl-1.10.5"
@@ -68321,8 +68506,8 @@ in
sources."hrpc-2.2.0"
sources."hrpc-runtime-2.1.1"
sources."hyperbeam-1.1.3"
- sources."hyperbee-1.6.2"
- sources."hypercore-9.10.0"
+ sources."hyperbee-1.6.3"
+ sources."hypercore-9.11.0"
(sources."hypercore-byte-stream-1.0.12" // {
dependencies = [
sources."readable-stream-3.6.0"
@@ -68536,7 +68721,7 @@ in
sources."nanoassert-2.0.0"
];
})
- sources."simple-hypercore-protocol-2.1.1"
+ sources."simple-hypercore-protocol-2.1.2"
sources."simple-message-channels-1.2.1"
(sources."siphash24-1.2.0" // {
dependencies = [
@@ -68679,15 +68864,15 @@ in
sources."@octokit/auth-token-2.4.5"
sources."@octokit/core-3.5.1"
sources."@octokit/endpoint-6.0.12"
- sources."@octokit/graphql-4.6.4"
- sources."@octokit/openapi-types-9.7.0"
- sources."@octokit/plugin-paginate-rest-2.15.1"
+ sources."@octokit/graphql-4.8.0"
+ sources."@octokit/openapi-types-10.1.1"
+ sources."@octokit/plugin-paginate-rest-2.16.0"
sources."@octokit/plugin-request-log-1.0.4"
- sources."@octokit/plugin-rest-endpoint-methods-5.8.0"
+ sources."@octokit/plugin-rest-endpoint-methods-5.10.0"
sources."@octokit/request-5.6.1"
sources."@octokit/request-error-2.1.0"
- sources."@octokit/rest-18.9.1"
- sources."@octokit/types-6.25.0"
+ sources."@octokit/rest-18.10.0"
+ sources."@octokit/types-6.27.0"
sources."@sideway/address-4.1.2"
sources."@sideway/formula-3.0.0"
sources."@sideway/pinpoint-2.0.0"
@@ -68731,7 +68916,7 @@ in
sources."mimic-fn-2.1.0"
sources."ms-2.1.2"
sources."netrc-0.1.4"
- sources."node-fetch-2.6.1"
+ sources."node-fetch-2.6.2"
sources."node-version-1.2.0"
sources."once-1.4.0"
sources."onetime-5.1.2"
@@ -68743,7 +68928,7 @@ in
sources."restore-cursor-3.1.0"
sources."safe-buffer-5.2.1"
sources."signal-exit-3.0.3"
- sources."simple-git-2.44.0"
+ sources."simple-git-2.45.1"
sources."sprintf-js-1.0.3"
sources."string_decoder-1.3.0"
sources."strip-ansi-6.0.0"
@@ -68810,7 +68995,7 @@ in
sources."@types/eslint-scope-3.7.1"
sources."@types/estree-0.0.50"
sources."@types/json-schema-7.0.9"
- sources."@types/node-16.7.2"
+ sources."@types/node-16.7.13"
sources."@types/parse-json-4.0.0"
sources."@webassemblyjs/ast-1.11.1"
sources."@webassemblyjs/floating-point-hex-parser-1.11.1"
@@ -68829,7 +69014,7 @@ in
sources."@webassemblyjs/wast-printer-1.11.1"
sources."@xtuc/ieee754-1.2.0"
sources."@xtuc/long-4.2.2"
- sources."acorn-8.4.1"
+ sources."acorn-8.5.0"
sources."ajv-8.6.0"
sources."ajv-formats-2.1.0"
sources."ajv-keywords-3.5.2"
@@ -68845,11 +69030,11 @@ in
sources."bl-4.1.0"
sources."brace-expansion-1.1.11"
sources."braces-3.0.2"
- sources."browserslist-4.16.8"
+ sources."browserslist-4.17.0"
sources."buffer-5.7.1"
sources."buffer-from-1.1.2"
sources."callsites-3.1.0"
- sources."caniuse-lite-1.0.30001252"
+ sources."caniuse-lite-1.0.30001255"
sources."chalk-3.0.0"
sources."chardet-0.7.0"
sources."chokidar-3.5.2"
@@ -68868,7 +69053,7 @@ in
sources."clone-1.0.4"
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
- sources."colorette-1.3.0"
+ sources."colorette-1.4.0"
sources."colors-1.4.0"
sources."commander-4.1.1"
sources."concat-map-0.0.1"
@@ -68876,7 +69061,7 @@ in
sources."cross-spawn-7.0.3"
sources."deepmerge-4.2.2"
sources."defaults-1.0.3"
- sources."electron-to-chromium-1.3.818"
+ sources."electron-to-chromium-1.3.832"
sources."emoji-regex-8.0.0"
sources."end-of-stream-1.4.4"
(sources."enhanced-resolve-5.8.2" // {
@@ -68943,7 +69128,7 @@ in
sources."is-stream-2.0.1"
sources."is-unicode-supported-0.1.0"
sources."isexe-2.0.0"
- (sources."jest-worker-27.0.6" // {
+ (sources."jest-worker-27.1.0" // {
dependencies = [
sources."supports-color-8.1.1"
];
@@ -68967,7 +69152,7 @@ in
sources."lru-cache-6.0.0"
sources."macos-release-2.5.0"
sources."magic-string-0.25.7"
- sources."memfs-3.2.2"
+ sources."memfs-3.2.4"
sources."merge-stream-2.0.0"
sources."mime-db-1.49.0"
sources."mime-types-2.1.32"
@@ -69047,7 +69232,7 @@ in
sources."commander-2.20.3"
];
})
- (sources."terser-webpack-plugin-5.1.4" // {
+ (sources."terser-webpack-plugin-5.2.3" // {
dependencies = [
sources."ajv-6.12.6"
sources."json-schema-traverse-0.4.1"
@@ -69149,7 +69334,7 @@ in
sources."util-deprecate-1.0.2"
sources."wasm-feature-detect-1.2.11"
sources."wcwidth-1.0.1"
- sources."web-streams-polyfill-3.1.0"
+ sources."web-streams-polyfill-3.1.1"
];
buildInputs = globalBuildInputs;
meta = {
@@ -69181,38 +69366,38 @@ in
sources."@apollographql/graphql-upload-8-fork-8.1.3"
sources."@babel/code-frame-7.14.5"
sources."@babel/compat-data-7.15.0"
- sources."@babel/core-7.15.0"
- sources."@babel/generator-7.15.0"
- sources."@babel/helper-annotate-as-pure-7.14.5"
- sources."@babel/helper-builder-binary-assignment-operator-visitor-7.14.5"
- sources."@babel/helper-compilation-targets-7.15.0"
- sources."@babel/helper-create-class-features-plugin-7.15.0"
+ sources."@babel/core-7.15.5"
+ sources."@babel/generator-7.15.4"
+ sources."@babel/helper-annotate-as-pure-7.15.4"
+ sources."@babel/helper-builder-binary-assignment-operator-visitor-7.15.4"
+ sources."@babel/helper-compilation-targets-7.15.4"
+ sources."@babel/helper-create-class-features-plugin-7.15.4"
sources."@babel/helper-create-regexp-features-plugin-7.14.5"
sources."@babel/helper-define-polyfill-provider-0.2.3"
- sources."@babel/helper-explode-assignable-expression-7.14.5"
- sources."@babel/helper-function-name-7.14.5"
- sources."@babel/helper-get-function-arity-7.14.5"
- sources."@babel/helper-hoist-variables-7.14.5"
- sources."@babel/helper-member-expression-to-functions-7.15.0"
- sources."@babel/helper-module-imports-7.14.5"
- sources."@babel/helper-module-transforms-7.15.0"
- sources."@babel/helper-optimise-call-expression-7.14.5"
+ sources."@babel/helper-explode-assignable-expression-7.15.4"
+ sources."@babel/helper-function-name-7.15.4"
+ sources."@babel/helper-get-function-arity-7.15.4"
+ sources."@babel/helper-hoist-variables-7.15.4"
+ sources."@babel/helper-member-expression-to-functions-7.15.4"
+ sources."@babel/helper-module-imports-7.15.4"
+ sources."@babel/helper-module-transforms-7.15.4"
+ sources."@babel/helper-optimise-call-expression-7.15.4"
sources."@babel/helper-plugin-utils-7.14.5"
- sources."@babel/helper-remap-async-to-generator-7.14.5"
- sources."@babel/helper-replace-supers-7.15.0"
- sources."@babel/helper-simple-access-7.14.8"
- sources."@babel/helper-skip-transparent-expression-wrappers-7.14.5"
- sources."@babel/helper-split-export-declaration-7.14.5"
+ sources."@babel/helper-remap-async-to-generator-7.15.4"
+ sources."@babel/helper-replace-supers-7.15.4"
+ sources."@babel/helper-simple-access-7.15.4"
+ sources."@babel/helper-skip-transparent-expression-wrappers-7.15.4"
+ sources."@babel/helper-split-export-declaration-7.15.4"
sources."@babel/helper-validator-identifier-7.14.9"
sources."@babel/helper-validator-option-7.14.5"
- sources."@babel/helper-wrap-function-7.14.5"
- sources."@babel/helpers-7.15.3"
+ sources."@babel/helper-wrap-function-7.15.4"
+ sources."@babel/helpers-7.15.4"
sources."@babel/highlight-7.14.5"
- sources."@babel/parser-7.15.3"
- sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.14.5"
- sources."@babel/plugin-proposal-async-generator-functions-7.14.9"
+ sources."@babel/parser-7.15.5"
+ sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.15.4"
+ sources."@babel/plugin-proposal-async-generator-functions-7.15.4"
sources."@babel/plugin-proposal-class-properties-7.14.5"
- sources."@babel/plugin-proposal-class-static-block-7.14.5"
+ sources."@babel/plugin-proposal-class-static-block-7.15.4"
sources."@babel/plugin-proposal-dynamic-import-7.14.5"
sources."@babel/plugin-proposal-export-namespace-from-7.14.5"
sources."@babel/plugin-proposal-json-strings-7.14.5"
@@ -69223,7 +69408,7 @@ in
sources."@babel/plugin-proposal-optional-catch-binding-7.14.5"
sources."@babel/plugin-proposal-optional-chaining-7.14.5"
sources."@babel/plugin-proposal-private-methods-7.14.5"
- sources."@babel/plugin-proposal-private-property-in-object-7.14.5"
+ sources."@babel/plugin-proposal-private-property-in-object-7.15.4"
sources."@babel/plugin-proposal-unicode-property-regex-7.14.5"
sources."@babel/plugin-syntax-async-generators-7.8.4"
sources."@babel/plugin-syntax-class-properties-7.12.13"
@@ -69245,25 +69430,25 @@ in
sources."@babel/plugin-transform-async-to-generator-7.14.5"
sources."@babel/plugin-transform-block-scoped-functions-7.14.5"
sources."@babel/plugin-transform-block-scoping-7.15.3"
- sources."@babel/plugin-transform-classes-7.14.9"
+ sources."@babel/plugin-transform-classes-7.15.4"
sources."@babel/plugin-transform-computed-properties-7.14.5"
sources."@babel/plugin-transform-destructuring-7.14.7"
sources."@babel/plugin-transform-dotall-regex-7.14.5"
sources."@babel/plugin-transform-duplicate-keys-7.14.5"
sources."@babel/plugin-transform-exponentiation-operator-7.14.5"
sources."@babel/plugin-transform-flow-strip-types-7.14.5"
- sources."@babel/plugin-transform-for-of-7.14.5"
+ sources."@babel/plugin-transform-for-of-7.15.4"
sources."@babel/plugin-transform-function-name-7.14.5"
sources."@babel/plugin-transform-literals-7.14.5"
sources."@babel/plugin-transform-member-expression-literals-7.14.5"
sources."@babel/plugin-transform-modules-amd-7.14.5"
- sources."@babel/plugin-transform-modules-commonjs-7.15.0"
- sources."@babel/plugin-transform-modules-systemjs-7.14.5"
+ sources."@babel/plugin-transform-modules-commonjs-7.15.4"
+ sources."@babel/plugin-transform-modules-systemjs-7.15.4"
sources."@babel/plugin-transform-modules-umd-7.14.5"
sources."@babel/plugin-transform-named-capturing-groups-regex-7.14.9"
sources."@babel/plugin-transform-new-target-7.14.5"
sources."@babel/plugin-transform-object-super-7.14.5"
- sources."@babel/plugin-transform-parameters-7.14.5"
+ sources."@babel/plugin-transform-parameters-7.15.4"
sources."@babel/plugin-transform-property-literals-7.14.5"
sources."@babel/plugin-transform-regenerator-7.14.5"
sources."@babel/plugin-transform-reserved-words-7.14.5"
@@ -69272,10 +69457,10 @@ in
sources."@babel/plugin-transform-sticky-regex-7.14.5"
sources."@babel/plugin-transform-template-literals-7.14.5"
sources."@babel/plugin-transform-typeof-symbol-7.14.5"
- sources."@babel/plugin-transform-typescript-7.15.0"
+ sources."@babel/plugin-transform-typescript-7.15.4"
sources."@babel/plugin-transform-unicode-escapes-7.14.5"
sources."@babel/plugin-transform-unicode-regex-7.14.5"
- sources."@babel/preset-env-7.15.0"
+ sources."@babel/preset-env-7.15.4"
sources."@babel/preset-flow-7.14.5"
sources."@babel/preset-modules-0.1.4"
sources."@babel/preset-typescript-7.15.0"
@@ -69286,10 +69471,10 @@ in
sources."semver-5.7.1"
];
})
- sources."@babel/runtime-7.15.3"
- sources."@babel/template-7.14.5"
- sources."@babel/traverse-7.15.0"
- sources."@babel/types-7.15.0"
+ sources."@babel/runtime-7.15.4"
+ sources."@babel/template-7.15.4"
+ sources."@babel/traverse-7.15.4"
+ sources."@babel/types-7.15.4"
sources."@hapi/address-2.1.4"
sources."@hapi/bourne-1.3.2"
sources."@hapi/hoek-8.5.1"
@@ -69342,7 +69527,7 @@ in
sources."@types/long-4.0.1"
sources."@types/mime-1.3.2"
sources."@types/minimatch-3.0.5"
- sources."@types/node-16.7.2"
+ sources."@types/node-16.7.13"
sources."@types/normalize-package-data-2.4.1"
sources."@types/qs-6.9.7"
sources."@types/range-parser-1.2.4"
@@ -69357,13 +69542,13 @@ in
})
sources."@vue/cli-ui-addon-webpack-4.5.13"
sources."@vue/cli-ui-addon-widgets-4.5.13"
- (sources."@vue/compiler-core-3.2.6" // {
+ (sources."@vue/compiler-core-3.2.10" // {
dependencies = [
sources."source-map-0.6.1"
];
})
- sources."@vue/compiler-dom-3.2.6"
- sources."@vue/shared-3.2.6"
+ sources."@vue/compiler-dom-3.2.10"
+ sources."@vue/shared-3.2.10"
sources."@wry/equality-0.1.11"
sources."accepts-1.3.7"
sources."aggregate-error-3.1.0"
@@ -69465,7 +69650,7 @@ in
})
sources."brace-expansion-1.1.11"
sources."braces-2.3.2"
- sources."browserslist-4.16.8"
+ sources."browserslist-4.17.0"
sources."buffer-5.7.1"
sources."buffer-alloc-1.2.0"
sources."buffer-alloc-unsafe-1.1.0"
@@ -69485,7 +69670,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.30001252"
+ sources."caniuse-lite-1.0.30001255"
sources."caseless-0.12.0"
sources."caw-2.0.1"
sources."chalk-2.4.2"
@@ -69520,7 +69705,7 @@ in
sources."collection-visit-1.0.0"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
- sources."colorette-1.3.0"
+ sources."colorette-1.4.0"
sources."colors-1.4.0"
sources."combined-stream-1.0.8"
sources."commander-2.20.3"
@@ -69542,12 +69727,12 @@ in
sources."cookie-0.4.0"
sources."cookie-signature-1.0.6"
sources."copy-descriptor-0.1.1"
- (sources."core-js-compat-3.16.3" // {
+ (sources."core-js-compat-3.17.2" // {
dependencies = [
sources."semver-7.0.0"
];
})
- sources."core-js-pure-3.16.3"
+ sources."core-js-pure-3.17.2"
sources."core-util-is-1.0.2"
sources."cors-2.8.5"
(sources."cross-spawn-6.0.5" // {
@@ -69613,14 +69798,14 @@ in
sources."ecc-jsbn-0.1.2"
sources."ee-first-1.1.1"
sources."ejs-2.7.4"
- sources."electron-to-chromium-1.3.818"
+ sources."electron-to-chromium-1.3.832"
sources."emoji-regex-7.0.3"
sources."encodeurl-1.0.2"
sources."end-of-stream-1.4.4"
sources."entities-2.2.0"
sources."envinfo-7.8.1"
sources."error-ex-1.3.2"
- sources."es-abstract-1.18.5"
+ sources."es-abstract-1.18.6"
sources."es-to-primitive-1.2.1"
sources."escalade-3.1.1"
sources."escape-html-1.0.3"
@@ -69696,7 +69881,7 @@ in
})
sources."find-up-3.0.0"
sources."fkill-6.2.0"
- sources."flow-parser-0.158.0"
+ sources."flow-parser-0.159.0"
sources."for-each-0.3.3"
sources."for-in-1.0.2"
sources."forever-agent-0.6.1"
@@ -69719,6 +69904,7 @@ in
sources."get-intrinsic-1.1.1"
sources."get-proxy-2.1.0"
sources."get-stream-4.1.0"
+ sources."get-symbol-description-1.0.0"
sources."get-value-2.0.6"
sources."getpass-0.1.7"
sources."git-clone-0.1.0"
@@ -69937,7 +70123,7 @@ in
sources."neo-async-2.6.2"
sources."nice-try-1.0.5"
sources."node-dir-0.1.17"
- sources."node-fetch-2.6.1"
+ sources."node-fetch-2.6.2"
sources."node-ipc-9.2.1"
sources."node-modules-regexp-1.0.0"
(sources."node-notifier-9.0.1" // {
@@ -69979,7 +70165,7 @@ in
})
sources."object-inspect-1.11.0"
sources."object-keys-1.1.1"
- sources."object-path-0.11.5"
+ sources."object-path-0.11.7"
sources."object-visit-1.0.1"
sources."object.assign-4.1.2"
sources."object.getownpropertydescriptors-2.1.2"
@@ -70356,7 +70542,7 @@ in
})
sources."wrappy-1.0.2"
sources."write-file-atomic-2.4.3"
- sources."ws-7.5.3"
+ sources."ws-7.5.4"
sources."xml2js-0.4.23"
sources."xmlbuilder-11.0.1"
sources."xss-1.0.9"
@@ -70509,12 +70695,12 @@ in
};
dependencies = [
sources."@babel/code-frame-7.14.5"
- sources."@babel/generator-7.15.0"
+ sources."@babel/generator-7.15.4"
sources."@babel/helper-validator-identifier-7.14.9"
sources."@babel/highlight-7.14.5"
- sources."@babel/parser-7.15.3"
- sources."@babel/template-7.14.5"
- sources."@babel/types-7.15.0"
+ sources."@babel/parser-7.15.5"
+ sources."@babel/template-7.15.4"
+ sources."@babel/types-7.15.4"
sources."@webassemblyjs/ast-1.11.1"
sources."@webassemblyjs/floating-point-hex-parser-1.11.1"
sources."@webassemblyjs/helper-api-error-1.11.1"
@@ -70590,54 +70776,54 @@ in
dependencies = [
sources."@babel/code-frame-7.14.5"
sources."@babel/compat-data-7.15.0"
- (sources."@babel/core-7.15.0" // {
+ (sources."@babel/core-7.15.5" // {
dependencies = [
sources."source-map-0.5.7"
];
})
- (sources."@babel/generator-7.15.0" // {
+ (sources."@babel/generator-7.15.4" // {
dependencies = [
sources."source-map-0.5.7"
];
})
- sources."@babel/helper-compilation-targets-7.15.0"
- sources."@babel/helper-function-name-7.14.5"
- sources."@babel/helper-get-function-arity-7.14.5"
- sources."@babel/helper-hoist-variables-7.14.5"
- sources."@babel/helper-member-expression-to-functions-7.15.0"
- sources."@babel/helper-module-imports-7.14.5"
- sources."@babel/helper-module-transforms-7.15.0"
- sources."@babel/helper-optimise-call-expression-7.14.5"
- sources."@babel/helper-replace-supers-7.15.0"
- sources."@babel/helper-simple-access-7.14.8"
- sources."@babel/helper-split-export-declaration-7.14.5"
+ sources."@babel/helper-compilation-targets-7.15.4"
+ sources."@babel/helper-function-name-7.15.4"
+ sources."@babel/helper-get-function-arity-7.15.4"
+ sources."@babel/helper-hoist-variables-7.15.4"
+ sources."@babel/helper-member-expression-to-functions-7.15.4"
+ sources."@babel/helper-module-imports-7.15.4"
+ sources."@babel/helper-module-transforms-7.15.4"
+ sources."@babel/helper-optimise-call-expression-7.15.4"
+ sources."@babel/helper-replace-supers-7.15.4"
+ sources."@babel/helper-simple-access-7.15.4"
+ sources."@babel/helper-split-export-declaration-7.15.4"
sources."@babel/helper-validator-identifier-7.14.9"
sources."@babel/helper-validator-option-7.14.5"
- sources."@babel/helpers-7.15.3"
+ sources."@babel/helpers-7.15.4"
sources."@babel/highlight-7.14.5"
- sources."@babel/parser-7.15.3"
- sources."@babel/template-7.14.5"
- sources."@babel/traverse-7.15.0"
- sources."@babel/types-7.15.0"
+ sources."@babel/parser-7.15.5"
+ sources."@babel/template-7.15.4"
+ sources."@babel/traverse-7.15.4"
+ sources."@babel/types-7.15.4"
sources."JSV-4.0.2"
sources."ansi-styles-3.2.1"
sources."array-unique-0.3.2"
sources."async-3.2.1"
sources."balanced-match-1.0.2"
sources."brace-expansion-1.1.11"
- sources."browserslist-4.16.8"
- sources."caniuse-lite-1.0.30001252"
+ sources."browserslist-4.17.0"
+ sources."caniuse-lite-1.0.30001255"
sources."chalk-2.4.2"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
- sources."colorette-1.3.0"
+ sources."colorette-1.4.0"
sources."colors-1.4.0"
sources."commander-8.1.0"
sources."concat-map-0.0.1"
sources."convert-source-map-1.8.0"
sources."debug-4.3.2"
sources."ejs-3.1.6"
- sources."electron-to-chromium-1.3.818"
+ sources."electron-to-chromium-1.3.832"
sources."ensure-posix-path-1.1.1"
sources."escalade-3.1.1"
sources."escape-string-regexp-1.0.5"
@@ -70731,7 +70917,7 @@ in
dependencies = [
sources."@types/glob-7.1.4"
sources."@types/minimatch-3.0.5"
- sources."@types/node-16.7.2"
+ sources."@types/node-16.7.13"
sources."balanced-match-1.0.2"
sources."brace-expansion-1.1.11"
sources."chromium-pickle-js-0.2.0"
@@ -70759,16 +70945,16 @@ in
autoprefixer = nodeEnv.buildNodePackage {
name = "autoprefixer";
packageName = "autoprefixer";
- version = "10.3.3";
+ version = "10.3.4";
src = fetchurl {
- url = "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.3.3.tgz";
- sha512 = "yRzjxfnggrP/+qVHlUuZz5FZzEbkT+Yt0/Df6ScEMnbbZBLzYB2W0KLxoQCW+THm1SpOsM1ZPcTHAwuvmibIsQ==";
+ url = "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.3.4.tgz";
+ sha512 = "EKjKDXOq7ug+jagLzmnoTRpTT0q1KVzEJqrJd0hCBa7FiG0WbFOBCcJCy2QkW1OckpO3qgttA1aWjVbeIPAecw==";
};
dependencies = [
- sources."browserslist-4.16.8"
- sources."caniuse-lite-1.0.30001252"
- sources."colorette-1.3.0"
- sources."electron-to-chromium-1.3.818"
+ sources."browserslist-4.17.0"
+ sources."caniuse-lite-1.0.30001255"
+ sources."colorette-1.4.0"
+ sources."electron-to-chromium-1.3.832"
sources."escalade-3.1.1"
sources."fraction.js-4.1.1"
sources."node-releases-1.1.75"
@@ -70795,14 +70981,14 @@ in
};
dependencies = [
sources."@tootallnate/once-1.1.2"
- sources."@types/node-16.7.2"
+ sources."@types/node-16.7.13"
sources."@types/yauzl-2.9.2"
sources."agent-base-6.0.2"
sources."ansi-escapes-4.3.2"
sources."ansi-regex-5.0.0"
sources."ansi-styles-4.3.0"
sources."ast-types-0.13.4"
- (sources."aws-sdk-2.976.0" // {
+ (sources."aws-sdk-2.984.0" // {
dependencies = [
sources."uuid-3.3.2"
];
@@ -70833,20 +71019,20 @@ in
sources."color-name-1.1.4"
sources."commander-8.1.0"
sources."concat-map-0.0.1"
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."css-select-4.1.3"
sources."css-what-5.0.1"
sources."data-uri-to-buffer-3.0.1"
sources."debug-4.3.2"
- sources."deep-is-0.1.3"
+ sources."deep-is-0.1.4"
sources."defaults-1.0.3"
sources."degenerator-2.2.0"
sources."depd-1.1.2"
sources."devtools-protocol-0.0.901419"
sources."dom-serializer-1.3.2"
sources."domelementtype-2.2.0"
- sources."domhandler-4.2.0"
- sources."domutils-2.7.0"
+ sources."domhandler-4.2.2"
+ sources."domutils-2.8.0"
sources."emoji-regex-8.0.0"
sources."end-of-stream-1.4.4"
sources."entities-2.2.0"
@@ -71006,10 +71192,10 @@ in
balanceofsatoshis = nodeEnv.buildNodePackage {
name = "balanceofsatoshis";
packageName = "balanceofsatoshis";
- version = "10.9.2";
+ version = "10.12.0";
src = fetchurl {
- url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-10.9.2.tgz";
- sha512 = "tFjaQXQZ2Zu7Kz1ETOab3mnmjH1LYKJS3oeSVhT0tmQGF7MPFAoSghcjFz0vDmMxrQxIzBWXWjlRLOyTtGdWUw==";
+ url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-10.12.0.tgz";
+ sha512 = "G8UVRAfWYPQSJwLiw1eqh61jfDSFKt0cDEfNbTzgv9Z5X+WnaGvk/0XzHCpoqNfHqRxRO2Zf9KHkFXS007bm5A==";
};
dependencies = [
sources."@alexbosworth/html2unicode-1.1.5"
@@ -71017,7 +71203,7 @@ in
sources."@cto.af/textdecoder-0.0.0"
(sources."@grpc/grpc-js-1.3.7" // {
dependencies = [
- sources."@types/node-16.7.2"
+ sources."@types/node-16.7.13"
];
})
sources."@grpc/proto-loader-0.6.4"
@@ -71065,7 +71251,7 @@ in
sources."ansi-escapes-1.4.0"
sources."ansi-regex-3.0.0"
sources."ansi-styles-2.2.1"
- (sources."are-we-there-yet-1.1.5" // {
+ (sources."are-we-there-yet-1.1.7" // {
dependencies = [
sources."readable-stream-2.3.7"
sources."safe-buffer-5.1.2"
@@ -71193,13 +71379,13 @@ in
sources."content-type-1.0.4"
sources."cookie-0.4.0"
sources."cookie-signature-1.0.6"
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."cors-2.8.5"
sources."create-hash-1.2.0"
sources."create-hmac-1.1.7"
sources."crypto-js-4.1.1"
sources."crypto-random-string-2.0.0"
- sources."csv-parse-4.16.0"
+ sources."csv-parse-4.16.3"
sources."cycle-1.0.3"
sources."debug-2.6.9"
sources."decompress-response-3.3.0"
@@ -71245,10 +71431,11 @@ in
sources."get-caller-file-2.0.5"
sources."get-stream-4.1.0"
sources."global-dirs-3.0.0"
- (sources."goldengate-10.3.0" // {
+ (sources."goldengate-10.4.0" // {
dependencies = [
sources."bech32-2.0.0"
sources."bn.js-5.2.0"
+ sources."ln-service-52.0.3"
];
})
sources."got-9.6.0"
@@ -71334,14 +71521,21 @@ in
sources."keyv-3.1.0"
sources."kind-of-6.0.3"
sources."latest-version-5.1.0"
- (sources."lightning-4.1.0" // {
+ (sources."lightning-4.1.3" // {
dependencies = [
- sources."@types/node-16.6.1"
+ sources."@types/node-16.7.3"
sources."bn.js-5.2.0"
];
})
- sources."ln-accounting-5.0.0"
- sources."ln-service-52.0.1"
+ sources."ln-accounting-5.0.1"
+ (sources."ln-service-52.1.0" // {
+ dependencies = [
+ sources."@types/node-16.7.6"
+ sources."bn.js-5.2.0"
+ sources."lightning-4.2.1"
+ sources."ws-8.2.1"
+ ];
+ })
(sources."ln-sync-0.4.7" // {
dependencies = [
sources."@grpc/grpc-js-1.3.6"
@@ -71355,7 +71549,17 @@ in
sources."nofilter-2.0.3"
];
})
- sources."ln-telegram-3.2.11"
+ (sources."ln-telegram-3.2.11" // {
+ dependencies = [
+ sources."@types/node-16.6.1"
+ sources."bech32-2.0.0"
+ sources."bn.js-5.2.0"
+ sources."goldengate-10.3.0"
+ sources."lightning-4.1.0"
+ sources."ln-service-52.0.1"
+ sources."ws-8.1.0"
+ ];
+ })
sources."lodash-4.17.21"
sources."lodash.camelcase-4.3.0"
sources."lodash.clonedeep-4.5.0"
@@ -71487,7 +71691,7 @@ in
sources."process-nextick-args-2.0.1"
(sources."protobufjs-6.11.2" // {
dependencies = [
- sources."@types/node-16.7.2"
+ sources."@types/node-16.7.13"
];
})
sources."proxy-addr-2.0.7"
@@ -71642,7 +71846,7 @@ in
})
sources."wrappy-1.0.2"
sources."write-file-atomic-3.0.3"
- sources."ws-8.1.0"
+ sources."ws-8.2.0"
sources."xdg-basedir-4.0.0"
sources."y18n-5.0.8"
sources."yallist-4.0.0"
@@ -71707,7 +71911,7 @@ in
sources."whatwg-url-7.1.0"
];
})
- sources."deep-is-0.1.3"
+ sources."deep-is-0.1.4"
sources."delayed-stream-1.0.0"
sources."domexception-1.0.1"
sources."ecc-jsbn-0.1.2"
@@ -71820,7 +72024,7 @@ in
sources."anchor-markdown-header-0.5.7"
sources."ansi-regex-2.1.1"
sources."aproba-1.2.0"
- sources."are-we-there-yet-1.1.5"
+ sources."are-we-there-yet-1.1.7"
sources."bail-1.0.5"
sources."base64-js-1.5.1"
(sources."bl-4.1.0" // {
@@ -71838,7 +72042,7 @@ in
sources."collapse-white-space-1.0.6"
sources."commander-6.2.1"
sources."console-control-strings-1.1.0"
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."debug-4.3.2"
sources."decompress-response-4.2.1"
sources."deep-extend-0.6.0"
@@ -71847,14 +72051,14 @@ in
sources."doctoc-2.0.1"
(sources."dom-serializer-1.3.2" // {
dependencies = [
- sources."domhandler-4.2.0"
+ sources."domhandler-4.2.2"
];
})
sources."domelementtype-2.2.0"
sources."domhandler-3.3.0"
- (sources."domutils-2.7.0" // {
+ (sources."domutils-2.8.0" // {
dependencies = [
- sources."domhandler-4.2.0"
+ sources."domhandler-4.2.2"
];
})
sources."emoji-regex-6.1.3"
@@ -71889,7 +72093,7 @@ in
sources."ms-2.1.2"
sources."nan-2.15.0"
sources."napi-build-utils-1.0.2"
- sources."node-abi-2.30.0"
+ sources."node-abi-2.30.1"
sources."noop-logger-0.1.1"
sources."npmlog-4.1.2"
sources."number-is-nan-1.0.1"
@@ -72144,7 +72348,7 @@ in
sources."util-0.10.3"
];
})
- sources."available-typed-arrays-1.0.4"
+ sources."available-typed-arrays-1.0.5"
sources."balanced-match-1.0.2"
sources."base64-js-1.5.1"
sources."bn.js-5.2.0"
@@ -72175,7 +72379,7 @@ in
sources."console-browserify-1.2.0"
sources."constants-browserify-1.0.0"
sources."convert-source-map-1.1.3"
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
(sources."create-ecdh-4.0.4" // {
dependencies = [
sources."bn.js-4.12.0"
@@ -72202,16 +72406,17 @@ in
sources."bn.js-4.12.0"
];
})
- sources."es-abstract-1.18.5"
+ sources."es-abstract-1.18.6"
sources."es-to-primitive-1.2.1"
sources."events-3.3.0"
sources."evp_bytestokey-1.0.3"
- sources."fast-safe-stringify-2.0.8"
+ sources."fast-safe-stringify-2.1.0"
sources."foreach-2.0.5"
sources."fs.realpath-1.0.0"
sources."function-bind-1.1.1"
sources."get-assigned-identifiers-1.2.0"
sources."get-intrinsic-1.1.1"
+ sources."get-symbol-description-1.0.0"
sources."glob-7.1.7"
sources."has-1.0.3"
sources."has-bigints-1.0.1"
@@ -72245,7 +72450,7 @@ in
sources."is-regex-1.1.4"
sources."is-string-1.0.7"
sources."is-symbol-1.0.4"
- sources."is-typed-array-1.1.7"
+ sources."is-typed-array-1.1.8"
sources."isarray-1.0.0"
sources."jsonparse-1.3.1"
sources."labeled-stream-splicer-2.0.2"
@@ -72339,7 +72544,7 @@ in
sources."util-deprecate-1.0.2"
sources."vm-browserify-1.1.2"
sources."which-boxed-primitive-1.0.2"
- sources."which-typed-array-1.1.6"
+ sources."which-typed-array-1.1.7"
sources."wrappy-1.0.2"
sources."xtend-4.0.2"
];
@@ -72365,8 +72570,8 @@ in
sources."@babel/code-frame-7.14.5"
sources."@babel/helper-validator-identifier-7.14.9"
sources."@babel/highlight-7.14.5"
- sources."@babel/parser-7.15.3"
- sources."@babel/types-7.15.0"
+ sources."@babel/parser-7.15.5"
+ sources."@babel/types-7.15.4"
sources."@kwsites/file-exists-1.1.1"
sources."@kwsites/promise-deferred-1.1.1"
sources."@types/minimist-1.2.2"
@@ -72389,7 +72594,7 @@ in
sources."asynckit-0.4.0"
sources."aws-sign2-0.7.0"
sources."aws4-1.11.0"
- sources."axios-0.21.1"
+ sources."axios-0.21.4"
sources."babel-walk-3.0.0-canary-5"
sources."balanced-match-1.0.2"
sources."base-x-3.0.8"
@@ -72529,7 +72734,7 @@ in
];
})
sources."find-up-4.1.0"
- sources."follow-redirects-1.14.2"
+ sources."follow-redirects-1.14.3"
sources."forever-agent-0.6.1"
sources."form-data-2.3.3"
sources."forwarded-0.2.0"
@@ -72737,7 +72942,7 @@ in
sources."set-blocking-2.0.0"
sources."setprototypeof-1.1.1"
sources."sha.js-2.4.11"
- sources."simple-git-2.44.0"
+ sources."simple-git-2.45.1"
sources."spdx-correct-3.1.1"
sources."spdx-exceptions-2.3.0"
sources."spdx-expression-parse-3.0.1"
@@ -72827,7 +73032,7 @@ in
sources."@protobufjs/pool-1.1.0"
sources."@protobufjs/utf8-1.1.0"
sources."@types/long-4.0.1"
- sources."@types/node-16.7.2"
+ sources."@types/node-16.7.13"
sources."addr-to-ip-port-1.5.4"
sources."airplay-js-0.2.16"
sources."ajv-6.12.6"
@@ -72898,7 +73103,7 @@ in
sources."string_decoder-1.3.0"
];
})
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."currently-unhandled-0.4.1"
sources."cyclist-0.1.1"
sources."dashdash-1.14.1"
@@ -73069,7 +73274,7 @@ in
sources."supports-color-0.2.0"
];
})
- sources."plist-3.0.3"
+ sources."plist-3.0.4"
sources."process-nextick-args-2.0.1"
sources."promiscuous-0.6.0"
sources."protobufjs-6.11.2"
@@ -73194,7 +73399,11 @@ in
sources."utp-0.0.7"
sources."uuid-3.4.0"
sources."validate-npm-package-license-3.0.4"
- sources."verror-1.10.0"
+ (sources."verror-1.10.0" // {
+ dependencies = [
+ sources."core-util-is-1.0.2"
+ ];
+ })
sources."voc-1.2.0"
sources."ware-1.3.0"
sources."windows-no-runnable-0.0.6"
@@ -73212,7 +73421,6 @@ in
];
})
sources."xmlbuilder-9.0.7"
- sources."xmldom-0.6.0"
sources."xspfr-0.3.1"
sources."xtend-4.0.2"
];
@@ -73229,20 +73437,20 @@ in
cdk8s-cli = nodeEnv.buildNodePackage {
name = "cdk8s-cli";
packageName = "cdk8s-cli";
- version = "1.0.0-beta.45";
+ version = "1.0.0-beta.49";
src = fetchurl {
- url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-1.0.0-beta.45.tgz";
- sha512 = "4ixIu+0Fm5gv6nQ+cNhIHu5heJ95yC5HgVTU/Ad4hg5g0zWQLQcOn7s6znqgpFMDtrpH1v4RTMNp/jv10+FPiw==";
+ url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-1.0.0-beta.49.tgz";
+ sha512 = "ny1PfLC72UR7wwguONBmPvcJ3MwXCdK4iOU5xC47iToG3nLbofSf8WXdJAzLesk68vv/mFWKQwg4MMlSaTUQvQ==";
};
dependencies = [
sources."@jsii/check-node-1.34.0"
sources."@jsii/spec-1.34.0"
sources."@types/node-10.17.60"
- sources."@xmldom/xmldom-0.7.2"
+ sources."@xmldom/xmldom-0.7.4"
sources."ansi-regex-5.0.0"
sources."ansi-styles-4.3.0"
sources."at-least-node-1.0.0"
- sources."available-typed-arrays-1.0.4"
+ sources."available-typed-arrays-1.0.5"
sources."call-bind-1.0.2"
sources."camelcase-6.2.0"
sources."case-1.6.3"
@@ -73260,7 +73468,7 @@ in
sources."color-name-1.1.4"
sources."colors-1.4.0"
sources."commonmark-0.30.0"
- sources."constructs-3.3.133"
+ sources."constructs-3.3.147"
sources."date-format-3.0.0"
sources."debug-4.3.2"
sources."decamelize-5.0.0"
@@ -73271,7 +73479,7 @@ in
sources."dot-case-3.0.4"
sources."emoji-regex-8.0.0"
sources."entities-2.0.3"
- sources."es-abstract-1.18.5"
+ sources."es-abstract-1.18.6"
sources."es-get-iterator-1.1.2"
sources."es-to-primitive-1.2.1"
sources."escalade-3.1.1"
@@ -73288,6 +73496,7 @@ in
sources."function-bind-1.1.1"
sources."get-caller-file-2.0.5"
sources."get-intrinsic-1.1.1"
+ sources."get-symbol-description-1.0.0"
sources."graceful-fs-4.2.8"
sources."has-1.0.3"
sources."has-bigints-1.0.1"
@@ -73308,7 +73517,7 @@ in
sources."is-set-2.0.2"
sources."is-string-1.0.7"
sources."is-symbol-1.0.4"
- sources."is-typed-array-1.1.7"
+ sources."is-typed-array-1.1.8"
sources."is-weakmap-2.0.1"
sources."is-weakset-2.0.1"
sources."isarray-2.0.5"
@@ -73336,13 +73545,13 @@ in
sources."yargs-16.2.0"
];
})
- (sources."jsii-srcmak-0.1.335" // {
+ (sources."jsii-srcmak-0.1.341" // {
dependencies = [
sources."fs-extra-9.1.0"
];
})
sources."json-schema-0.3.0"
- sources."json2jsii-0.2.7"
+ sources."json2jsii-0.2.17"
sources."jsonfile-6.1.0"
sources."jsonschema-1.4.0"
sources."locate-path-5.0.0"
@@ -73378,7 +73587,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.54"
+ sources."sscaff-1.2.63"
(sources."streamroller-2.2.4" // {
dependencies = [
sources."date-format-2.1.0"
@@ -73397,7 +73606,7 @@ in
sources."which-boxed-primitive-1.0.2"
sources."which-collection-1.0.1"
sources."which-module-2.0.0"
- sources."which-typed-array-1.1.6"
+ sources."which-typed-array-1.1.7"
sources."wrap-ansi-7.0.0"
sources."xmlbuilder-15.1.1"
sources."y18n-5.0.8"
@@ -73433,7 +73642,7 @@ in
sha512 = "53HldFlYJdptaQ9yZyx8xuN0pxmBwI7yaVImmPwGmauoOYWsO89YrAjyPIiAaR+GWI8avbQeg3jz5Z1Q+MoIGA==";
};
dependencies = [
- sources."@apollo/client-3.4.9"
+ sources."@apollo/client-3.4.10"
(sources."@apollo/protobufjs-1.2.2" // {
dependencies = [
sources."@types/node-10.17.60"
@@ -73447,16 +73656,16 @@ in
];
})
sources."@babel/code-frame-7.14.5"
- sources."@babel/generator-7.15.0"
+ sources."@babel/generator-7.15.4"
sources."@babel/helper-validator-identifier-7.14.9"
(sources."@babel/highlight-7.14.5" // {
dependencies = [
sources."chalk-2.4.2"
];
})
- sources."@babel/parser-7.15.3"
- sources."@babel/template-7.14.5"
- sources."@babel/types-7.15.0"
+ sources."@babel/parser-7.15.5"
+ sources."@babel/template-7.15.4"
+ sources."@babel/types-7.15.4"
sources."@cdktf/hcl2cdk-0.5.0"
sources."@cdktf/hcl2json-0.5.0"
(sources."@graphql-tools/graphql-file-loader-6.2.7" // {
@@ -73464,11 +73673,7 @@ in
sources."tslib-2.1.0"
];
})
- (sources."@graphql-tools/import-6.3.1" // {
- dependencies = [
- sources."tslib-2.2.0"
- ];
- })
+ sources."@graphql-tools/import-6.4.0"
(sources."@graphql-tools/load-6.2.8" // {
dependencies = [
sources."tslib-2.2.0"
@@ -73479,15 +73684,15 @@ in
sources."@graphql-tools/utils-8.0.2"
];
})
- (sources."@graphql-tools/mock-8.2.2" // {
+ (sources."@graphql-tools/mock-8.3.1" // {
dependencies = [
- sources."@graphql-tools/utils-8.1.2"
+ sources."@graphql-tools/utils-8.2.2"
];
})
- (sources."@graphql-tools/schema-8.1.2" // {
+ (sources."@graphql-tools/schema-8.2.0" // {
dependencies = [
- sources."@graphql-tools/merge-8.0.3"
- sources."@graphql-tools/utils-8.1.2"
+ sources."@graphql-tools/merge-8.1.2"
+ sources."@graphql-tools/utils-8.2.2"
];
})
(sources."@graphql-tools/utils-7.10.0" // {
@@ -73522,7 +73727,7 @@ in
sources."@types/express-serve-static-core-4.17.24"
sources."@types/long-4.0.1"
sources."@types/mime-1.3.2"
- sources."@types/node-14.17.12"
+ sources."@types/node-14.17.15"
sources."@types/node-fetch-2.5.12"
sources."@types/qs-6.9.7"
sources."@types/range-parser-1.2.4"
@@ -73532,7 +73737,7 @@ in
sources."@wry/context-0.6.1"
sources."@wry/equality-0.5.2"
sources."@wry/trie-0.3.1"
- sources."@xmldom/xmldom-0.7.2"
+ sources."@xmldom/xmldom-0.7.4"
sources."accepts-1.3.7"
sources."address-1.1.2"
(sources."ansi-escapes-4.3.2" // {
@@ -73553,7 +73758,7 @@ in
sources."apollo-server-caching-3.1.0"
(sources."apollo-server-core-3.3.0" // {
dependencies = [
- sources."@graphql-tools/utils-8.1.2"
+ sources."@graphql-tools/utils-8.2.2"
];
})
sources."apollo-server-env-4.0.3"
@@ -73577,8 +73782,8 @@ in
sources."asynckit-0.4.0"
sources."at-least-node-1.0.0"
sources."auto-bind-4.0.0"
- sources."available-typed-arrays-1.0.4"
- sources."axios-0.21.1"
+ sources."available-typed-arrays-1.0.5"
+ sources."axios-0.21.4"
sources."backo2-1.0.2"
sources."balanced-match-1.0.2"
sources."base64-js-1.5.1"
@@ -73641,7 +73846,7 @@ in
];
})
sources."concat-map-0.0.1"
- sources."constructs-3.3.133"
+ sources."constructs-3.3.147"
(sources."content-disposition-0.5.3" // {
dependencies = [
sources."safe-buffer-5.1.2"
@@ -73651,12 +73856,16 @@ in
sources."convert-to-spaces-1.0.2"
sources."cookie-0.4.0"
sources."cookie-signature-1.0.6"
- sources."core-js-pure-3.16.3"
- sources."core-util-is-1.0.2"
+ sources."core-js-pure-3.17.2"
+ sources."core-util-is-1.0.3"
sources."cors-2.8.5"
sources."crc-32-1.2.0"
sources."crc32-stream-4.0.2"
- sources."cross-fetch-3.1.4"
+ (sources."cross-fetch-3.1.4" // {
+ dependencies = [
+ sources."node-fetch-2.6.1"
+ ];
+ })
sources."cross-spawn-7.0.3"
sources."cssfilter-0.0.10"
sources."date-fns-2.23.0"
@@ -73683,7 +73892,7 @@ in
sources."encodeurl-1.0.2"
sources."end-of-stream-1.4.4"
sources."entities-2.0.3"
- sources."es-abstract-1.18.5"
+ sources."es-abstract-1.18.6"
(sources."es-get-iterator-1.1.2" // {
dependencies = [
sources."isarray-2.0.5"
@@ -73720,7 +73929,7 @@ in
sources."finalhandler-1.1.2"
sources."find-up-4.1.0"
sources."flatted-2.0.2"
- sources."follow-redirects-1.14.2"
+ sources."follow-redirects-1.14.3"
sources."foreach-2.0.5"
sources."form-data-3.0.1"
sources."forwarded-0.2.0"
@@ -73738,13 +73947,14 @@ in
sources."get-caller-file-2.0.5"
sources."get-intrinsic-1.1.1"
sources."get-stream-6.0.1"
+ sources."get-symbol-description-1.0.0"
sources."glob-7.1.7"
sources."glob-parent-5.1.2"
sources."globby-11.0.3"
sources."graceful-fs-4.2.8"
sources."graphology-0.20.0"
- sources."graphology-types-0.19.3"
- sources."graphql-15.5.1"
+ sources."graphology-types-0.19.4"
+ sources."graphql-15.5.3"
sources."graphql-subscriptions-1.2.1"
sources."graphql-tag-2.12.5"
sources."has-1.0.3"
@@ -73802,7 +74012,7 @@ in
sources."is-stream-2.0.1"
sources."is-string-1.0.7"
sources."is-symbol-1.0.4"
- sources."is-typed-array-1.1.7"
+ sources."is-typed-array-1.1.8"
sources."is-unicode-supported-0.1.0"
sources."is-valid-domain-0.1.2"
sources."is-weakmap-2.0.1"
@@ -73841,7 +74051,7 @@ in
sources."yargs-16.2.0"
];
})
- (sources."jsii-srcmak-0.1.335" // {
+ (sources."jsii-srcmak-0.1.341" // {
dependencies = [
sources."fs-extra-9.1.0"
];
@@ -73894,7 +74104,7 @@ in
sources."ncp-2.0.0"
sources."negotiator-0.6.2"
sources."no-case-3.0.4"
- sources."node-fetch-2.6.1"
+ sources."node-fetch-2.6.2"
sources."normalize-path-2.1.1"
sources."npm-run-path-4.0.1"
sources."object-assign-4.1.1"
@@ -73942,7 +74152,7 @@ in
sources."range-parser-1.2.1"
sources."raw-body-2.4.0"
sources."react-16.14.0"
- sources."react-devtools-core-4.17.0"
+ sources."react-devtools-core-4.18.0"
sources."react-is-16.13.1"
sources."react-reconciler-0.24.0"
sources."readable-stream-3.6.0"
@@ -73999,7 +74209,7 @@ in
sources."sort-json-2.0.0"
sources."source-map-0.5.7"
sources."spdx-license-list-6.4.0"
- sources."sscaff-1.2.54"
+ sources."sscaff-1.2.63"
(sources."stack-utils-2.0.3" // {
dependencies = [
sources."escape-string-regexp-2.0.0"
@@ -74059,7 +74269,7 @@ in
sources."which-boxed-primitive-1.0.2"
sources."which-collection-1.0.1"
sources."which-module-2.0.0"
- sources."which-typed-array-1.1.6"
+ sources."which-typed-array-1.1.7"
sources."widest-line-3.1.0"
(sources."wrap-ansi-7.0.0" // {
dependencies = [
@@ -74069,7 +74279,7 @@ in
];
})
sources."wrappy-1.0.2"
- sources."ws-7.5.3"
+ sources."ws-7.5.4"
sources."xmlbuilder-15.1.1"
sources."xss-1.0.9"
sources."y18n-5.0.8"
@@ -74092,7 +74302,7 @@ in
sources."yocto-queue-0.1.0"
sources."yoga-layout-prebuilt-1.10.0"
sources."zen-observable-0.8.15"
- sources."zen-observable-ts-1.2.0"
+ sources."zen-observable-ts-1.2.2"
sources."zip-stream-4.1.0"
sources."zod-1.11.17"
];
@@ -74305,10 +74515,10 @@ in
coc-clangd = nodeEnv.buildNodePackage {
name = "coc-clangd";
packageName = "coc-clangd";
- version = "0.14.0";
+ version = "0.14.1";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-clangd/-/coc-clangd-0.14.0.tgz";
- sha512 = "CxeuK0gr5GKnswwuTKgWmRm3/KEmzeH0T8sV1AIRYuB/vZ61kBMplgb9fRvrNI540pKDR2xqWs5XZk6NyitPgA==";
+ url = "https://registry.npmjs.org/coc-clangd/-/coc-clangd-0.14.1.tgz";
+ sha512 = "VhEqQMIWrFtF+qzA03kLfwU7fX9f3qIVWltTk4Gc3QLqcIM0qtmpqnSRS7x/jRtbh/kLk2ckuwupQE59sTigCQ==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -74417,10 +74627,10 @@ in
coc-explorer = nodeEnv.buildNodePackage {
name = "coc-explorer";
packageName = "coc-explorer";
- version = "0.18.16";
+ version = "0.18.17";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-explorer/-/coc-explorer-0.18.16.tgz";
- sha512 = "sFk/5y7v/ITvuIeLia4VYRvQvD4fXgOI/Z3iS+1etkxuhiQo5fDwkRACWL6B4kRn6SWIn2scHyt49ePx1LURNg==";
+ url = "https://registry.npmjs.org/coc-explorer/-/coc-explorer-0.18.17.tgz";
+ sha512 = "RTbiCTMpRwlBS/fysJ0hUp9FsQJoCt6VMBF1sodkuOGR79Ha9I+XbyhnnxhVOnjUG4N4b4/OOfw8O0vBmWmMCQ==";
};
dependencies = [
sources."@sindresorhus/df-3.1.1"
@@ -74528,7 +74738,7 @@ in
};
dependencies = [
sources."isexe-2.0.0"
- sources."node-fetch-2.6.1"
+ sources."node-fetch-2.6.2"
sources."tslib-2.3.1"
sources."vscode-languageserver-textdocument-1.0.1"
sources."vscode-uri-3.0.2"
@@ -74569,7 +74779,7 @@ in
sha512 = "7SHQYzpRKPrpaLcTm1UUk1zu9VvFEJKFqxwDIuqv/CL0cBTtEvlsfpVh9DOaMHlZPu8U8Lgyf04bHV/sFS1zJw==";
};
dependencies = [
- sources."typescript-4.3.5"
+ sources."typescript-4.4.2"
];
buildInputs = globalBuildInputs;
meta = {
@@ -74714,13 +74924,13 @@ in
coc-metals = nodeEnv.buildNodePackage {
name = "coc-metals";
packageName = "coc-metals";
- version = "1.0.7";
+ version = "1.0.8";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-metals/-/coc-metals-1.0.7.tgz";
- sha512 = "EiD4lpcGW2WyzxEDpRMYPrjxAa0FhG69SzDoc1KbDht2Do/vgnRzvrtIsufPT14dALAesieN3kVVMCCfA9S6jA==";
+ url = "https://registry.npmjs.org/coc-metals/-/coc-metals-1.0.8.tgz";
+ sha512 = "ruCWV8SWSngpJFZrwghzi2yVVZ+Pa0o0vsNN106GlhMFgjtV+YudjVsPw7gH9NLBU77Zlpya4vtxP3AhgGfQ2w==";
};
dependencies = [
- sources."@chemzqm/neovim-5.3.5"
+ sources."@chemzqm/neovim-5.4.0"
sources."@tootallnate/once-1.1.2"
sources."agent-base-6.0.2"
sources."arch-2.2.0"
@@ -74742,7 +74952,7 @@ in
sources."coc.nvim-0.0.79"
sources."concat-map-0.0.1"
sources."content-disposition-0.5.3"
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
(sources."cross-spawn-6.0.5" // {
dependencies = [
sources."semver-5.7.1"
@@ -74756,14 +74966,14 @@ in
sources."define-properties-1.1.3"
sources."duplexer2-0.1.4"
sources."end-of-stream-1.4.4"
- sources."es-abstract-1.18.5"
+ sources."es-abstract-1.18.6"
sources."es-to-primitive-1.2.1"
sources."event-lite-0.1.2"
sources."execa-1.0.0"
sources."fast-diff-1.2.0"
sources."fb-watchman-2.0.1"
sources."flatted-2.0.2"
- sources."follow-redirects-1.14.2"
+ sources."follow-redirects-1.14.3"
sources."fp-ts-2.11.1"
sources."fs-extra-8.1.0"
sources."fs-minipass-2.1.0"
@@ -74777,6 +74987,7 @@ in
sources."function-bind-1.1.1"
sources."get-intrinsic-1.1.1"
sources."get-stream-4.1.0"
+ sources."get-symbol-description-1.0.0"
sources."glob-7.1.7"
sources."graceful-fs-4.2.8"
sources."has-1.0.3"
@@ -74834,7 +75045,7 @@ in
})
sources."ncp-2.0.0"
sources."nice-try-1.0.5"
- sources."node-fetch-2.6.1"
+ sources."node-fetch-2.6.2"
sources."node-int64-0.4.0"
sources."npm-run-path-2.0.2"
sources."object-inspect-1.11.0"
@@ -75009,7 +75220,7 @@ in
sources."callsites-3.1.0"
sources."camelcase-2.1.1"
sources."camelcase-keys-2.1.0"
- sources."caniuse-lite-1.0.30001252"
+ sources."caniuse-lite-1.0.30001255"
sources."capture-stack-trace-1.0.1"
sources."ccount-1.1.0"
(sources."chalk-4.1.2" // {
@@ -75071,7 +75282,7 @@ in
];
})
sources."copy-descriptor-0.1.1"
- sources."core-js-3.16.3"
+ sources."core-js-3.17.2"
sources."cosmiconfig-3.1.0"
sources."create-error-class-3.0.2"
sources."cross-spawn-7.0.3"
@@ -75082,7 +75293,7 @@ in
sources."decamelize-keys-1.1.0"
sources."decode-uri-component-0.2.0"
sources."deep-extend-0.6.0"
- sources."deep-is-0.1.3"
+ sources."deep-is-0.1.4"
(sources."define-property-2.0.2" // {
dependencies = [
sources."isobject-3.0.1"
@@ -75107,7 +75318,7 @@ in
sources."domutils-1.7.0"
sources."dot-prop-5.3.0"
sources."duplexer3-0.1.4"
- sources."electron-to-chromium-1.3.818"
+ sources."electron-to-chromium-1.3.832"
sources."emoji-regex-8.0.0"
sources."end-of-stream-1.4.4"
sources."enquirer-2.3.6"
@@ -75906,13 +76117,13 @@ in
coc-pyright = nodeEnv.buildNodePackage {
name = "coc-pyright";
packageName = "coc-pyright";
- version = "1.1.164";
+ version = "1.1.166";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-pyright/-/coc-pyright-1.1.164.tgz";
- sha512 = "7j+xroHX57poXJ9T+1OVYIx3NlTTKk6d0eoqLorv8BPFtjF0g+cTCLG67PNgpmfunBaF2g47aUoebli1x0fuKg==";
+ url = "https://registry.npmjs.org/coc-pyright/-/coc-pyright-1.1.166.tgz";
+ sha512 = "ler5AiK0fE5BbQ+RlkQYO+qzGUfFRmQW0XrSPFPCWgjvTfL20qXx7DU+lSZKRUJUQo3wXXHbnBnv7HHIOhokSw==";
};
dependencies = [
- sources."pyright-1.1.163"
+ sources."pyright-1.1.166"
];
buildInputs = globalBuildInputs;
meta = {
@@ -75986,10 +76197,10 @@ in
coc-rust-analyzer = nodeEnv.buildNodePackage {
name = "coc-rust-analyzer";
packageName = "coc-rust-analyzer";
- version = "0.50.0";
+ version = "0.52.0";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-rust-analyzer/-/coc-rust-analyzer-0.50.0.tgz";
- sha512 = "IqZL5m/fWXmUEF6xWXY1FA2sXJiCLQgi68Znm/Nz5sG+Hrl+OFCfaVCel6jr6xlshjmnnxtb8MoQlGbtChhKyg==";
+ url = "https://registry.npmjs.org/coc-rust-analyzer/-/coc-rust-analyzer-0.52.0.tgz";
+ sha512 = "mT9Y7bzuhvHDj+Cv2+EbEUTGwdkulKpiGwyJ0Hm0/8+i3fM8zsoAuLM8l/A3TSIYlbt10Ru3dV5ilHwdt0MZkg==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -76064,31 +76275,31 @@ in
dependencies = [
sources."@babel/code-frame-7.14.5"
sources."@babel/compat-data-7.15.0"
- sources."@babel/core-7.15.0"
- sources."@babel/generator-7.15.0"
- sources."@babel/helper-compilation-targets-7.15.0"
- sources."@babel/helper-function-name-7.14.5"
- sources."@babel/helper-get-function-arity-7.14.5"
- sources."@babel/helper-hoist-variables-7.14.5"
- sources."@babel/helper-member-expression-to-functions-7.15.0"
- sources."@babel/helper-module-imports-7.14.5"
- sources."@babel/helper-module-transforms-7.15.0"
- sources."@babel/helper-optimise-call-expression-7.14.5"
- sources."@babel/helper-replace-supers-7.15.0"
- sources."@babel/helper-simple-access-7.14.8"
- sources."@babel/helper-split-export-declaration-7.14.5"
+ sources."@babel/core-7.15.5"
+ sources."@babel/generator-7.15.4"
+ sources."@babel/helper-compilation-targets-7.15.4"
+ sources."@babel/helper-function-name-7.15.4"
+ sources."@babel/helper-get-function-arity-7.15.4"
+ sources."@babel/helper-hoist-variables-7.15.4"
+ sources."@babel/helper-member-expression-to-functions-7.15.4"
+ sources."@babel/helper-module-imports-7.15.4"
+ sources."@babel/helper-module-transforms-7.15.4"
+ sources."@babel/helper-optimise-call-expression-7.15.4"
+ sources."@babel/helper-replace-supers-7.15.4"
+ sources."@babel/helper-simple-access-7.15.4"
+ sources."@babel/helper-split-export-declaration-7.15.4"
sources."@babel/helper-validator-identifier-7.14.9"
sources."@babel/helper-validator-option-7.14.5"
- sources."@babel/helpers-7.15.3"
+ sources."@babel/helpers-7.15.4"
(sources."@babel/highlight-7.14.5" // {
dependencies = [
sources."chalk-2.4.2"
];
})
- sources."@babel/parser-7.15.3"
- sources."@babel/template-7.14.5"
- sources."@babel/traverse-7.15.0"
- sources."@babel/types-7.15.0"
+ sources."@babel/parser-7.15.5"
+ sources."@babel/template-7.15.4"
+ sources."@babel/traverse-7.15.4"
+ sources."@babel/types-7.15.4"
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
@@ -76114,11 +76325,11 @@ in
];
})
sources."braces-3.0.2"
- sources."browserslist-4.16.8"
+ sources."browserslist-4.17.0"
sources."callsites-3.1.0"
sources."camelcase-5.3.1"
sources."camelcase-keys-6.2.2"
- sources."caniuse-lite-1.0.30001252"
+ sources."caniuse-lite-1.0.30001255"
(sources."chalk-4.1.2" // {
dependencies = [
sources."ansi-styles-4.3.0"
@@ -76134,7 +76345,7 @@ in
sources."clone-regexp-2.2.0"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
- sources."colorette-1.3.0"
+ sources."colorette-1.4.0"
sources."concat-map-0.0.1"
sources."convert-source-map-1.8.0"
sources."cosmiconfig-7.0.1"
@@ -76156,7 +76367,7 @@ in
sources."domelementtype-1.3.1"
sources."domhandler-2.4.2"
sources."domutils-1.7.0"
- sources."electron-to-chromium-1.3.818"
+ sources."electron-to-chromium-1.3.832"
sources."emoji-regex-8.0.0"
sources."entities-1.1.2"
sources."error-ex-1.3.2"
@@ -76536,7 +76747,7 @@ in
sha512 = "RTet29nZNYrOWEuquBOAv3yFtWyHPE7xGbsHjRdNbTP6g9PF+2nV2TnDO+c/T5HAk/1J0lKKZBu6hZTnEJ2f4w==";
};
dependencies = [
- sources."typescript-4.3.5"
+ sources."typescript-4.4.2"
];
buildInputs = globalBuildInputs;
meta = {
@@ -76595,14 +76806,14 @@ in
sources."concat-map-0.0.1"
sources."cross-spawn-7.0.3"
sources."debug-4.3.2"
- sources."deep-is-0.1.3"
+ sources."deep-is-0.1.4"
sources."diff-4.0.2"
sources."doctrine-3.0.0"
sources."emoji-regex-8.0.0"
sources."enquirer-2.3.6"
sources."escape-string-regexp-4.0.0"
sources."eslint-7.32.0"
- (sources."eslint-plugin-vue-7.16.0" // {
+ (sources."eslint-plugin-vue-7.17.0" // {
dependencies = [
sources."semver-6.3.0"
];
@@ -76719,11 +76930,11 @@ in
sources."tsutils-2.29.0"
sources."type-check-0.4.0"
sources."type-fest-0.20.2"
- sources."typescript-4.3.5"
+ sources."typescript-4.4.2"
sources."uri-js-4.4.1"
sources."v8-compile-cache-2.3.0"
sources."vls-0.7.4"
- (sources."vue-eslint-parser-7.10.0" // {
+ (sources."vue-eslint-parser-7.11.0" // {
dependencies = [
sources."eslint-visitor-keys-1.3.0"
sources."espree-6.2.1"
@@ -76747,10 +76958,10 @@ in
coc-vimlsp = nodeEnv.buildNodePackage {
name = "coc-vimlsp";
packageName = "coc-vimlsp";
- version = "0.12.3";
+ version = "0.12.4";
src = fetchurl {
- url = "https://registry.npmjs.org/coc-vimlsp/-/coc-vimlsp-0.12.3.tgz";
- sha512 = "mq6V4fQmcQSiGvilJ0j1pbbj5EHeS8QC6ThuLVBJ+2wRqO8fiTkPYJrXPDUQDcICV9hUjdTBE8klaFYlK6oviA==";
+ url = "https://registry.npmjs.org/coc-vimlsp/-/coc-vimlsp-0.12.4.tgz";
+ sha512 = "P4S+opRqtCXh2XqE5uj1u45+Jk3jCRIQl6/hdyCTSj8mMVR/BWf3xV2LjOuYoWIe0vIpYroYrxiU7ZvRYLRUrQ==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -76879,7 +77090,7 @@ in
sha512 = "uPhR9IKtN1z6gt9mpRH5OAdYjJQgQq7CCQpm5VmCpLe2QdGDzi4xfB3ybXGaBRX+UN4whtz3pZvgZssJvBwcqQ==";
};
dependencies = [
- sources."@xstate/fsm-1.6.1"
+ sources."@xstate/fsm-1.6.2"
sources."ansi-styles-3.2.1"
sources."balanced-match-1.0.2"
sources."base64-js-1.5.1"
@@ -76899,7 +77110,7 @@ in
sources."commander-5.1.0"
sources."concat-map-0.0.1"
sources."config-chain-1.1.13"
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."create-error-class-3.0.2"
sources."cross-spawn-6.0.5"
sources."decompress-4.2.1"
@@ -76982,7 +77193,7 @@ in
sources."pify-2.3.0"
sources."pinkie-2.0.4"
sources."pinkie-promise-2.0.1"
- sources."plist-3.0.3"
+ sources."plist-3.0.4"
sources."prepend-http-1.0.4"
sources."process-nextick-args-2.0.1"
sources."proto-list-1.2.4"
@@ -77031,7 +77242,6 @@ in
sources."wrappy-1.0.2"
sources."xmlbuilder-9.0.7"
sources."xmlcreate-2.0.3"
- sources."xmldom-0.6.0"
sources."xtend-4.0.2"
sources."yauzl-2.10.0"
];
@@ -77073,7 +77283,7 @@ in
dependencies = [
sources."ansi-regex-3.0.0"
sources."ansi-styles-3.2.1"
- sources."axios-0.21.1"
+ sources."axios-0.21.4"
sources."chalk-2.4.2"
sources."cli-cursor-2.1.0"
sources."cli-spinners-1.3.1"
@@ -77083,7 +77293,7 @@ in
sources."colors-1.4.0"
sources."commander-2.20.3"
sources."escape-string-regexp-1.0.5"
- sources."follow-redirects-1.14.2"
+ sources."follow-redirects-1.14.3"
sources."has-flag-3.0.0"
sources."is-fullwidth-code-point-2.0.0"
sources."log-symbols-2.2.0"
@@ -77126,13 +77336,13 @@ in
sources."colors-1.4.0"
sources."colorspace-1.1.2"
sources."commander-8.0.0"
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."enabled-2.0.0"
sources."eventemitter3-4.0.7"
- sources."fast-safe-stringify-2.0.8"
+ sources."fast-safe-stringify-2.1.0"
sources."fecha-4.2.1"
sources."fn.name-1.1.0"
- sources."follow-redirects-1.14.2"
+ sources."follow-redirects-1.14.3"
sources."http-proxy-1.18.1"
sources."inherits-2.0.4"
sources."is-arrayish-0.3.2"
@@ -77191,14 +77401,22 @@ in
sources."@types/normalize-package-data-2.4.1"
sources."JSONStream-1.3.5"
sources."add-stream-1.0.0"
- sources."ansi-styles-3.2.1"
+ sources."ansi-regex-5.0.0"
+ sources."ansi-styles-4.3.0"
sources."array-ify-1.0.0"
sources."arrify-1.0.1"
sources."camelcase-5.3.1"
sources."camelcase-keys-6.2.2"
- sources."chalk-2.4.2"
- sources."color-convert-1.9.3"
- sources."color-name-1.1.3"
+ (sources."chalk-2.4.2" // {
+ dependencies = [
+ sources."ansi-styles-3.2.1"
+ sources."color-convert-1.9.3"
+ sources."color-name-1.1.3"
+ ];
+ })
+ sources."cliui-7.0.4"
+ 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-angular-5.0.12"
@@ -77215,7 +77433,7 @@ in
sources."conventional-changelog-writer-5.0.0"
sources."conventional-commits-filter-2.0.7"
sources."conventional-commits-parser-3.2.1"
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."dargs-7.0.0"
sources."dateformat-3.0.3"
sources."decamelize-1.2.0"
@@ -77225,31 +77443,17 @@ in
];
})
sources."dot-prop-5.3.0"
+ sources."emoji-regex-8.0.0"
sources."error-ex-1.3.2"
+ sources."escalade-3.1.1"
sources."escape-string-regexp-1.0.5"
- sources."find-up-4.1.0"
+ sources."find-up-2.1.0"
sources."function-bind-1.1.1"
- (sources."get-pkg-repo-4.1.2" // {
+ sources."get-caller-file-2.0.5"
+ (sources."get-pkg-repo-4.2.0" // {
dependencies = [
- sources."meow-7.1.1"
- (sources."normalize-package-data-2.5.0" // {
- dependencies = [
- sources."hosted-git-info-2.8.9"
- ];
- })
- (sources."read-pkg-5.2.0" // {
- dependencies = [
- sources."type-fest-0.6.0"
- ];
- })
- (sources."read-pkg-up-7.0.1" // {
- dependencies = [
- sources."type-fest-0.8.1"
- ];
- })
sources."readable-stream-2.3.7"
sources."safe-buffer-5.1.2"
- sources."semver-5.7.1"
sources."string_decoder-1.1.1"
sources."through2-2.0.5"
];
@@ -77269,6 +77473,7 @@ in
sources."ini-1.3.8"
sources."is-arrayish-0.2.1"
sources."is-core-module-2.6.0"
+ sources."is-fullwidth-code-point-3.0.0"
sources."is-obj-2.0.0"
sources."is-plain-obj-1.1.0"
sources."is-text-path-1.0.1"
@@ -77282,18 +77487,24 @@ in
sources."lines-and-columns-1.1.6"
(sources."load-json-file-4.0.0" // {
dependencies = [
- sources."parse-json-4.0.0"
sources."pify-3.0.0"
];
})
- sources."locate-path-5.0.0"
+ sources."locate-path-2.0.0"
sources."lodash-4.17.21"
sources."lodash.ismatch-4.4.0"
sources."lru-cache-6.0.0"
sources."map-obj-4.2.1"
(sources."meow-8.1.2" // {
dependencies = [
+ sources."find-up-4.1.0"
sources."hosted-git-info-2.8.9"
+ sources."locate-path-5.0.0"
+ sources."p-limit-2.3.0"
+ sources."p-locate-4.1.0"
+ sources."p-try-2.2.0"
+ sources."parse-json-5.2.0"
+ sources."path-exists-4.0.0"
(sources."read-pkg-5.2.0" // {
dependencies = [
sources."normalize-package-data-2.5.0"
@@ -77306,8 +77517,6 @@ in
];
})
sources."semver-5.7.1"
- sources."type-fest-0.18.1"
- sources."yargs-parser-20.2.9"
];
})
sources."min-indent-1.0.1"
@@ -77320,11 +77529,11 @@ in
sources."semver-7.3.5"
];
})
- sources."p-limit-2.3.0"
- sources."p-locate-4.1.0"
- sources."p-try-2.2.0"
- sources."parse-json-5.2.0"
- sources."path-exists-4.0.0"
+ sources."p-limit-1.3.0"
+ sources."p-locate-2.0.0"
+ sources."p-try-1.0.0"
+ sources."parse-json-4.0.0"
+ sources."path-exists-3.0.0"
sources."path-parse-1.0.7"
(sources."path-type-3.0.0" // {
dependencies = [
@@ -77342,18 +77551,10 @@ in
sources."semver-5.7.1"
];
})
- (sources."read-pkg-up-3.0.0" // {
- dependencies = [
- sources."find-up-2.1.0"
- sources."locate-path-2.0.0"
- sources."p-limit-1.3.0"
- sources."p-locate-2.0.0"
- sources."p-try-1.0.0"
- sources."path-exists-3.0.0"
- ];
- })
+ sources."read-pkg-up-3.0.0"
sources."readable-stream-3.6.0"
sources."redent-3.0.0"
+ sources."require-directory-2.1.1"
sources."resolve-1.20.0"
sources."safe-buffer-5.2.1"
sources."semver-6.3.0"
@@ -77364,7 +77565,9 @@ in
sources."spdx-license-ids-3.0.10"
sources."split-1.0.1"
sources."split2-3.2.2"
+ sources."string-width-4.2.2"
sources."string_decoder-1.3.0"
+ sources."strip-ansi-6.0.0"
sources."strip-bom-3.0.0"
sources."strip-indent-3.0.0"
sources."supports-color-5.5.0"
@@ -77375,15 +77578,18 @@ in
sources."through2-4.0.2"
sources."trim-newlines-3.0.1"
sources."trim-off-newlines-1.0.1"
- sources."type-fest-0.13.1"
- sources."uglify-js-3.14.1"
+ sources."type-fest-0.18.1"
+ sources."uglify-js-3.14.2"
sources."util-deprecate-1.0.2"
sources."uuid-3.4.0"
sources."validate-npm-package-license-3.0.4"
sources."wordwrap-1.0.0"
+ sources."wrap-ansi-7.0.0"
sources."xtend-4.0.2"
+ sources."y18n-5.0.8"
sources."yallist-4.0.0"
- sources."yargs-parser-18.1.3"
+ sources."yargs-17.1.1"
+ sources."yargs-parser-20.2.9"
];
buildInputs = globalBuildInputs;
meta = {
@@ -77438,7 +77644,7 @@ in
sources."ansi-regex-2.1.1"
sources."ansi-styles-4.3.0"
sources."aproba-1.2.0"
- sources."are-we-there-yet-1.1.5"
+ sources."are-we-there-yet-1.1.7"
sources."array-find-index-1.0.2"
sources."array-flatten-1.1.1"
sources."array-union-2.1.0"
@@ -77536,7 +77742,7 @@ in
];
})
sources."cordova-serve-4.0.0"
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."cross-spawn-7.0.3"
sources."crypto-random-string-2.0.0"
sources."currently-unhandled-0.4.1"
@@ -77763,7 +77969,7 @@ in
sources."minimist-1.2.5"
sources."minipass-3.1.3"
sources."minipass-collect-1.0.2"
- sources."minipass-fetch-1.3.4"
+ sources."minipass-fetch-1.4.1"
sources."minipass-flush-1.0.5"
sources."minipass-json-stream-1.0.1"
sources."minipass-pipeline-1.2.4"
@@ -77838,7 +78044,7 @@ in
sources."picomatch-2.3.0"
sources."pify-4.0.1"
sources."pkg-up-2.0.0"
- sources."plist-3.0.3"
+ sources."plist-3.0.4"
sources."prepend-http-2.0.0"
sources."process-nextick-args-2.0.1"
sources."promise-inflight-1.0.1"
@@ -77959,7 +78165,11 @@ in
sources."validate-npm-package-license-3.0.4"
sources."validate-npm-package-name-3.0.0"
sources."vary-1.1.2"
- sources."verror-1.10.0"
+ (sources."verror-1.10.0" // {
+ dependencies = [
+ sources."core-util-is-1.0.2"
+ ];
+ })
sources."which-2.0.2"
sources."wide-align-1.1.3"
(sources."widest-line-3.1.0" // {
@@ -77990,7 +78200,6 @@ in
sources."write-file-atomic-3.0.3"
sources."xdg-basedir-4.0.0"
sources."xmlbuilder-9.0.7"
- sources."xmldom-0.6.0"
sources."yallist-4.0.0"
];
buildInputs = globalBuildInputs;
@@ -78020,7 +78229,7 @@ in
sources."@types/glob-7.1.4"
sources."@types/minimatch-3.0.5"
sources."@types/minimist-1.2.2"
- sources."@types/node-16.7.2"
+ sources."@types/node-16.7.13"
sources."@types/normalize-package-data-2.4.1"
sources."aggregate-error-3.1.0"
sources."ansi-styles-3.2.1"
@@ -78391,7 +78600,7 @@ in
sources."@cycle/run-3.4.0"
sources."@cycle/time-0.10.1"
sources."@types/cookiejar-2.1.2"
- sources."@types/node-16.7.2"
+ sources."@types/node-16.7.13"
sources."@types/superagent-3.8.2"
sources."ansi-escapes-3.2.0"
sources."ansi-regex-2.1.1"
@@ -78413,7 +78622,7 @@ in
sources."combined-stream-1.0.8"
sources."component-emitter-1.3.0"
sources."cookiejar-2.1.2"
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."cross-spawn-5.1.0"
sources."cssauron-1.4.0"
sources."custom-error-instance-2.1.1"
@@ -78560,7 +78769,7 @@ in
sources."color-name-1.1.4"
sources."commander-4.1.1"
sources."concat-map-0.0.1"
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."cross-spawn-7.0.3"
sources."debug-2.6.9"
sources."duplexer2-0.0.2"
@@ -78796,7 +79005,7 @@ in
sources."connections-1.4.2"
sources."content-types-0.1.0"
sources."copy-descriptor-0.1.1"
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."corsify-2.1.0"
sources."count-trailing-zeros-1.0.1"
sources."create-error-class-3.0.2"
@@ -79313,7 +79522,11 @@ in
})
sources."uuid-3.4.0"
sources."varint-3.0.1"
- sources."verror-1.10.0"
+ (sources."verror-1.10.0" // {
+ dependencies = [
+ sources."core-util-is-1.0.2"
+ ];
+ })
sources."which-1.3.1"
sources."widest-line-2.0.1"
(sources."winston-2.4.5" // {
@@ -79366,46 +79579,46 @@ in
dependencies = [
sources."@babel/code-frame-7.14.5"
sources."@babel/compat-data-7.15.0"
- (sources."@babel/core-7.15.0" // {
+ (sources."@babel/core-7.15.5" // {
dependencies = [
sources."source-map-0.5.7"
];
})
- (sources."@babel/generator-7.15.0" // {
+ (sources."@babel/generator-7.15.4" // {
dependencies = [
sources."source-map-0.5.7"
];
})
- sources."@babel/helper-annotate-as-pure-7.14.5"
- sources."@babel/helper-builder-binary-assignment-operator-visitor-7.14.5"
- sources."@babel/helper-compilation-targets-7.15.0"
- sources."@babel/helper-create-class-features-plugin-7.15.0"
+ sources."@babel/helper-annotate-as-pure-7.15.4"
+ sources."@babel/helper-builder-binary-assignment-operator-visitor-7.15.4"
+ sources."@babel/helper-compilation-targets-7.15.4"
+ sources."@babel/helper-create-class-features-plugin-7.15.4"
sources."@babel/helper-create-regexp-features-plugin-7.14.5"
sources."@babel/helper-define-polyfill-provider-0.2.3"
- sources."@babel/helper-explode-assignable-expression-7.14.5"
- sources."@babel/helper-function-name-7.14.5"
- sources."@babel/helper-get-function-arity-7.14.5"
- sources."@babel/helper-hoist-variables-7.14.5"
- sources."@babel/helper-member-expression-to-functions-7.15.0"
- sources."@babel/helper-module-imports-7.14.5"
- sources."@babel/helper-module-transforms-7.15.0"
- sources."@babel/helper-optimise-call-expression-7.14.5"
+ sources."@babel/helper-explode-assignable-expression-7.15.4"
+ sources."@babel/helper-function-name-7.15.4"
+ sources."@babel/helper-get-function-arity-7.15.4"
+ sources."@babel/helper-hoist-variables-7.15.4"
+ sources."@babel/helper-member-expression-to-functions-7.15.4"
+ sources."@babel/helper-module-imports-7.15.4"
+ sources."@babel/helper-module-transforms-7.15.4"
+ sources."@babel/helper-optimise-call-expression-7.15.4"
sources."@babel/helper-plugin-utils-7.14.5"
- sources."@babel/helper-remap-async-to-generator-7.14.5"
- sources."@babel/helper-replace-supers-7.15.0"
- sources."@babel/helper-simple-access-7.14.8"
- sources."@babel/helper-skip-transparent-expression-wrappers-7.14.5"
- sources."@babel/helper-split-export-declaration-7.14.5"
+ sources."@babel/helper-remap-async-to-generator-7.15.4"
+ sources."@babel/helper-replace-supers-7.15.4"
+ sources."@babel/helper-simple-access-7.15.4"
+ sources."@babel/helper-skip-transparent-expression-wrappers-7.15.4"
+ sources."@babel/helper-split-export-declaration-7.15.4"
sources."@babel/helper-validator-identifier-7.14.9"
sources."@babel/helper-validator-option-7.14.5"
- sources."@babel/helper-wrap-function-7.14.5"
- sources."@babel/helpers-7.15.3"
+ sources."@babel/helper-wrap-function-7.15.4"
+ sources."@babel/helpers-7.15.4"
sources."@babel/highlight-7.14.5"
- sources."@babel/parser-7.15.3"
- sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.14.5"
- sources."@babel/plugin-proposal-async-generator-functions-7.14.9"
+ sources."@babel/parser-7.15.5"
+ sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.15.4"
+ sources."@babel/plugin-proposal-async-generator-functions-7.15.4"
sources."@babel/plugin-proposal-class-properties-7.14.5"
- sources."@babel/plugin-proposal-class-static-block-7.14.5"
+ sources."@babel/plugin-proposal-class-static-block-7.15.4"
sources."@babel/plugin-proposal-dynamic-import-7.14.5"
sources."@babel/plugin-proposal-export-namespace-from-7.14.5"
sources."@babel/plugin-proposal-json-strings-7.14.5"
@@ -79416,7 +79629,7 @@ in
sources."@babel/plugin-proposal-optional-catch-binding-7.14.5"
sources."@babel/plugin-proposal-optional-chaining-7.14.5"
sources."@babel/plugin-proposal-private-methods-7.14.5"
- sources."@babel/plugin-proposal-private-property-in-object-7.14.5"
+ sources."@babel/plugin-proposal-private-property-in-object-7.15.4"
sources."@babel/plugin-proposal-unicode-property-regex-7.14.5"
sources."@babel/plugin-syntax-async-generators-7.8.4"
sources."@babel/plugin-syntax-class-properties-7.12.13"
@@ -79437,24 +79650,24 @@ in
sources."@babel/plugin-transform-async-to-generator-7.14.5"
sources."@babel/plugin-transform-block-scoped-functions-7.14.5"
sources."@babel/plugin-transform-block-scoping-7.15.3"
- sources."@babel/plugin-transform-classes-7.14.9"
+ sources."@babel/plugin-transform-classes-7.15.4"
sources."@babel/plugin-transform-computed-properties-7.14.5"
sources."@babel/plugin-transform-destructuring-7.14.7"
sources."@babel/plugin-transform-dotall-regex-7.14.5"
sources."@babel/plugin-transform-duplicate-keys-7.14.5"
sources."@babel/plugin-transform-exponentiation-operator-7.14.5"
- sources."@babel/plugin-transform-for-of-7.14.5"
+ sources."@babel/plugin-transform-for-of-7.15.4"
sources."@babel/plugin-transform-function-name-7.14.5"
sources."@babel/plugin-transform-literals-7.14.5"
sources."@babel/plugin-transform-member-expression-literals-7.14.5"
sources."@babel/plugin-transform-modules-amd-7.14.5"
- sources."@babel/plugin-transform-modules-commonjs-7.15.0"
- sources."@babel/plugin-transform-modules-systemjs-7.14.5"
+ sources."@babel/plugin-transform-modules-commonjs-7.15.4"
+ sources."@babel/plugin-transform-modules-systemjs-7.15.4"
sources."@babel/plugin-transform-modules-umd-7.14.5"
sources."@babel/plugin-transform-named-capturing-groups-regex-7.14.9"
sources."@babel/plugin-transform-new-target-7.14.5"
sources."@babel/plugin-transform-object-super-7.14.5"
- sources."@babel/plugin-transform-parameters-7.14.5"
+ sources."@babel/plugin-transform-parameters-7.15.4"
sources."@babel/plugin-transform-property-literals-7.14.5"
sources."@babel/plugin-transform-react-display-name-7.15.1"
sources."@babel/plugin-transform-react-jsx-7.14.9"
@@ -79469,16 +79682,16 @@ in
sources."@babel/plugin-transform-typeof-symbol-7.14.5"
sources."@babel/plugin-transform-unicode-escapes-7.14.5"
sources."@babel/plugin-transform-unicode-regex-7.14.5"
- sources."@babel/preset-env-7.15.0"
+ sources."@babel/preset-env-7.15.4"
sources."@babel/preset-modules-0.1.4"
sources."@babel/preset-react-7.14.5"
- sources."@babel/runtime-7.15.3"
- sources."@babel/template-7.14.5"
- sources."@babel/traverse-7.15.0"
- sources."@babel/types-7.15.0"
- sources."@blueprintjs/colors-1.0.0"
- sources."@blueprintjs/core-3.48.0"
- sources."@blueprintjs/icons-3.28.0"
+ sources."@babel/runtime-7.15.4"
+ sources."@babel/template-7.15.4"
+ sources."@babel/traverse-7.15.4"
+ sources."@babel/types-7.15.4"
+ sources."@blueprintjs/colors-3.0.0"
+ sources."@blueprintjs/core-3.49.1"
+ sources."@blueprintjs/icons-3.29.0"
sources."@electron/get-1.13.0"
sources."@hypnosphi/create-react-context-0.3.1"
sources."@mapbox/extent-0.4.0"
@@ -79503,11 +79716,11 @@ in
sources."@types/geojson-7946.0.8"
sources."@types/mapbox-gl-0.54.5"
sources."@types/mime-types-2.1.1"
- sources."@types/node-14.17.12"
+ sources."@types/node-14.17.15"
sources."@types/node-fetch-2.5.12"
sources."@types/prop-types-15.7.4"
sources."@types/rc-1.2.0"
- sources."@types/react-16.14.14"
+ sources."@types/react-16.14.15"
sources."@types/react-dom-16.9.14"
sources."@types/react-virtualized-9.21.13"
sources."@types/scheduler-0.16.2"
@@ -79549,7 +79762,7 @@ in
sources."extend-shallow-2.0.1"
];
})
- sources."browserslist-4.16.8"
+ sources."browserslist-4.17.0"
sources."buffer-crc32-0.2.13"
sources."buffer-from-1.1.2"
sources."cache-base-1.0.1"
@@ -79560,7 +79773,7 @@ in
];
})
sources."call-bind-1.0.2"
- sources."caniuse-lite-1.0.30001252"
+ sources."caniuse-lite-1.0.30001255"
sources."chalk-2.4.2"
sources."chokidar-2.1.8"
(sources."class-utils-0.3.6" // {
@@ -79586,7 +79799,7 @@ in
sources."collection-visit-1.0.0"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
- sources."colorette-1.3.0"
+ sources."colorette-1.4.0"
sources."combined-stream-1.0.8"
sources."component-emitter-1.3.0"
(sources."concat-stream-1.6.2" // {
@@ -79603,13 +79816,13 @@ in
];
})
sources."copy-descriptor-0.1.1"
- sources."core-js-3.16.3"
- (sources."core-js-compat-3.16.3" // {
+ sources."core-js-3.17.2"
+ (sources."core-js-compat-3.17.2" // {
dependencies = [
sources."semver-7.0.0"
];
})
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."crypto-random-string-1.0.0"
sources."csscolorparser-1.0.3"
sources."csstype-3.0.8"
@@ -79629,8 +79842,8 @@ in
sources."dom4-2.1.6"
sources."duplexer3-0.1.4"
sources."earcut-2.2.3"
- sources."electron-13.2.2"
- sources."electron-to-chromium-1.3.818"
+ sources."electron-13.3.0"
+ sources."electron-to-chromium-1.3.832"
sources."emoji-js-clean-4.0.0"
sources."emoji-mart-3.0.1"
sources."emoji-regex-9.2.2"
@@ -79806,7 +80019,7 @@ in
sources."nan-2.15.0"
sources."nanomatch-1.2.13"
sources."napi-macros-2.0.0"
- sources."node-fetch-2.6.1"
+ sources."node-fetch-2.6.2"
sources."node-gyp-build-4.2.3"
sources."node-releases-1.1.75"
sources."normalize-path-3.0.0"
@@ -79909,7 +80122,7 @@ in
sources."rw-0.1.4"
sources."safe-buffer-5.2.1"
sources."safe-regex-1.1.0"
- (sources."sass-1.38.1" // {
+ (sources."sass-1.39.0" // {
dependencies = [
sources."anymatch-3.1.2"
sources."binary-extensions-2.2.0"
@@ -80170,32 +80383,20 @@ in
dockerfile-language-server-nodejs = nodeEnv.buildNodePackage {
name = "dockerfile-language-server-nodejs";
packageName = "dockerfile-language-server-nodejs";
- version = "0.5.0";
+ version = "0.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/dockerfile-language-server-nodejs/-/dockerfile-language-server-nodejs-0.5.0.tgz";
- sha512 = "aDwANs1c1xIh5lQTbMlsGx8tMDk1k+sjsYbIXYjWvGY9Ff2e40MQ6RgALItVVij1dj1049FkG9MOHLFqekxZoA==";
+ url = "https://registry.npmjs.org/dockerfile-language-server-nodejs/-/dockerfile-language-server-nodejs-0.6.0.tgz";
+ sha512 = "+5bTaLsYJ+sb9bOzV7i6374Bb61jKlE3eh0mMlaLKwG9ZJO8r/pTMbsRNt9vXipkcJEvc9N8xZJyDs2EYnyfPA==";
};
dependencies = [
- (sources."dockerfile-ast-0.3.0" // {
- dependencies = [
- sources."vscode-languageserver-types-3.16.0"
- ];
- })
- sources."dockerfile-language-service-0.4.0"
- (sources."dockerfile-utils-0.5.0" // {
- dependencies = [
- sources."vscode-languageserver-types-3.16.0"
- ];
- })
- sources."vscode-jsonrpc-6.0.0"
- sources."vscode-languageserver-7.0.0"
- (sources."vscode-languageserver-protocol-3.16.0" // {
- dependencies = [
- sources."vscode-languageserver-types-3.16.0"
- ];
- })
+ sources."dockerfile-ast-0.3.1"
+ sources."dockerfile-language-service-0.5.0"
+ sources."dockerfile-utils-0.7.0"
+ sources."vscode-jsonrpc-8.0.0-next.2"
+ sources."vscode-languageserver-8.0.0-next.2"
+ sources."vscode-languageserver-protocol-3.17.0-next.8"
sources."vscode-languageserver-textdocument-1.0.1"
- sources."vscode-languageserver-types-3.17.0-next.1"
+ sources."vscode-languageserver-types-3.17.0-next.3"
];
buildInputs = globalBuildInputs;
meta = {
@@ -80218,7 +80419,7 @@ in
dependencies = [
sources."@fast-csv/format-4.3.5"
sources."@fast-csv/parse-4.3.6"
- sources."@types/node-14.17.12"
+ sources."@types/node-14.17.15"
sources."JSONStream-1.3.5"
sources."ajv-6.12.6"
sources."asn1-0.2.4"
@@ -80356,30 +80557,30 @@ in
"@electron-forge/cli" = nodeEnv.buildNodePackage {
name = "_at_electron-forge_slash_cli";
packageName = "@electron-forge/cli";
- version = "6.0.0-beta.59";
+ version = "6.0.0-beta.60";
src = fetchurl {
- url = "https://registry.npmjs.org/@electron-forge/cli/-/cli-6.0.0-beta.59.tgz";
- sha512 = "cFYnr5LKi+Hg+rzhL2OZq5S7vlqzNS8rlQzXiYtv4Ft6BY27CTJ8mz76nAxgjRFv0/rDUyKTY2NZUOPeztziMQ==";
+ url = "https://registry.npmjs.org/@electron-forge/cli/-/cli-6.0.0-beta.60.tgz";
+ sha512 = "bbppliO8kl54MHwe7hCNapzmaqP0RNUONFcK/fd9Od917+ib23KqRAgbrN4ukwKjXzIfzLfoAsEY06UgL0DvIg==";
};
dependencies = [
- sources."@electron-forge/async-ora-6.0.0-beta.59"
- sources."@electron-forge/core-6.0.0-beta.59"
- sources."@electron-forge/installer-base-6.0.0-beta.59"
- sources."@electron-forge/installer-darwin-6.0.0-beta.59"
- sources."@electron-forge/installer-deb-6.0.0-beta.59"
- sources."@electron-forge/installer-dmg-6.0.0-beta.59"
- sources."@electron-forge/installer-exe-6.0.0-beta.59"
- sources."@electron-forge/installer-linux-6.0.0-beta.59"
- sources."@electron-forge/installer-rpm-6.0.0-beta.59"
- sources."@electron-forge/installer-zip-6.0.0-beta.59"
- sources."@electron-forge/maker-base-6.0.0-beta.59"
- sources."@electron-forge/plugin-base-6.0.0-beta.59"
- sources."@electron-forge/publisher-base-6.0.0-beta.59"
- sources."@electron-forge/shared-types-6.0.0-beta.59"
- sources."@electron-forge/template-base-6.0.0-beta.59"
- sources."@electron-forge/template-typescript-6.0.0-beta.59"
- sources."@electron-forge/template-typescript-webpack-6.0.0-beta.59"
- sources."@electron-forge/template-webpack-6.0.0-beta.59"
+ sources."@electron-forge/async-ora-6.0.0-beta.60"
+ sources."@electron-forge/core-6.0.0-beta.60"
+ sources."@electron-forge/installer-base-6.0.0-beta.60"
+ sources."@electron-forge/installer-darwin-6.0.0-beta.60"
+ sources."@electron-forge/installer-deb-6.0.0-beta.60"
+ sources."@electron-forge/installer-dmg-6.0.0-beta.60"
+ sources."@electron-forge/installer-exe-6.0.0-beta.60"
+ sources."@electron-forge/installer-linux-6.0.0-beta.60"
+ sources."@electron-forge/installer-rpm-6.0.0-beta.60"
+ sources."@electron-forge/installer-zip-6.0.0-beta.60"
+ sources."@electron-forge/maker-base-6.0.0-beta.60"
+ sources."@electron-forge/plugin-base-6.0.0-beta.60"
+ sources."@electron-forge/publisher-base-6.0.0-beta.60"
+ sources."@electron-forge/shared-types-6.0.0-beta.60"
+ sources."@electron-forge/template-base-6.0.0-beta.60"
+ sources."@electron-forge/template-typescript-6.0.0-beta.60"
+ sources."@electron-forge/template-typescript-webpack-6.0.0-beta.60"
+ sources."@electron-forge/template-webpack-6.0.0-beta.60"
(sources."@electron/get-1.13.0" // {
dependencies = [
sources."@sindresorhus/is-0.14.0"
@@ -80406,21 +80607,28 @@ in
sources."universalify-0.1.2"
];
})
+ sources."@gar/promisify-1.1.2"
sources."@malept/cross-spawn-promise-2.0.0"
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
+ sources."@npmcli/fs-1.0.0"
+ sources."@npmcli/move-file-1.1.2"
sources."@sindresorhus/is-4.0.1"
sources."@szmarczak/http-timer-4.0.6"
+ sources."@tootallnate/once-1.1.2"
sources."@types/cacheable-request-6.0.2"
sources."@types/glob-7.1.4"
sources."@types/http-cache-semantics-4.0.1"
- sources."@types/keyv-3.1.2"
+ sources."@types/keyv-3.1.3"
sources."@types/minimatch-3.0.5"
- sources."@types/node-16.7.2"
+ sources."@types/node-16.7.13"
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."aggregate-error-3.1.0"
sources."ajv-6.12.6"
(sources."ansi-escapes-4.3.2" // {
dependencies = [
@@ -80430,7 +80638,7 @@ in
sources."ansi-regex-5.0.0"
sources."ansi-styles-4.3.0"
sources."aproba-1.2.0"
- (sources."are-we-there-yet-1.1.5" // {
+ (sources."are-we-there-yet-1.1.7" // {
dependencies = [
sources."readable-stream-2.3.7"
sources."safe-buffer-5.1.2"
@@ -80464,6 +80672,7 @@ in
sources."buffer-crc32-0.2.13"
sources."buffer-fill-1.0.0"
sources."buffer-from-1.1.2"
+ sources."cacache-15.3.0"
sources."cacheable-lookup-5.0.4"
sources."cacheable-request-7.0.2"
sources."camelcase-2.1.1"
@@ -80471,8 +80680,9 @@ in
sources."caseless-0.12.0"
sources."chalk-4.1.2"
sources."chardet-0.7.0"
- sources."chownr-1.1.4"
+ sources."chownr-2.0.0"
sources."chromium-pickle-js-0.2.0"
+ sources."clean-stack-2.2.0"
sources."cli-cursor-3.1.0"
sources."cli-spinners-2.6.0"
sources."cli-width-3.0.0"
@@ -80494,8 +80704,8 @@ in
sources."concat-map-0.0.1"
sources."config-chain-1.1.13"
sources."console-control-strings-1.1.0"
- sources."core-js-3.16.3"
- sources."core-util-is-1.0.2"
+ sources."core-js-3.17.2"
+ sources."core-util-is-1.0.3"
sources."cross-spawn-7.0.3"
(sources."cross-spawn-windows-exe-1.2.0" // {
dependencies = [
@@ -80515,7 +80725,6 @@ in
sources."mimic-response-3.1.0"
];
})
- sources."deep-extend-0.6.0"
sources."defaults-1.0.3"
sources."defer-to-connect-2.0.1"
sources."define-lazy-prop-2.0.0"
@@ -80526,11 +80735,12 @@ in
})
sources."delayed-stream-1.0.0"
sources."delegates-1.0.0"
+ sources."depd-1.1.2"
sources."detect-libc-1.0.3"
sources."detect-node-2.1.0"
sources."duplexer3-0.1.4"
sources."ecc-jsbn-0.1.2"
- (sources."electron-notarize-1.1.0" // {
+ (sources."electron-notarize-1.1.1" // {
dependencies = [
sources."fs-extra-9.1.0"
];
@@ -80545,16 +80755,13 @@ in
sources."fs-extra-9.1.0"
];
})
- (sources."electron-rebuild-2.3.5" // {
- dependencies = [
- sources."@malept/cross-spawn-promise-1.1.1"
- sources."fs-extra-9.1.0"
- ];
- })
+ sources."electron-rebuild-3.2.3"
sources."emoji-regex-8.0.0"
sources."encodeurl-1.0.2"
+ sources."encoding-0.1.13"
sources."end-of-stream-1.4.4"
sources."env-paths-2.2.1"
+ sources."err-code-2.0.3"
sources."error-ex-1.3.2"
sources."es6-error-4.1.1"
sources."escalade-3.1.1"
@@ -80572,7 +80779,11 @@ in
})
sources."expand-tilde-2.0.2"
sources."extend-3.0.2"
- sources."external-editor-3.1.0"
+ (sources."external-editor-3.1.0" // {
+ dependencies = [
+ sources."iconv-lite-0.4.24"
+ ];
+ })
sources."extract-zip-2.0.1"
sources."extsprintf-1.3.0"
sources."fast-deep-equal-3.1.3"
@@ -80602,7 +80813,7 @@ in
sources."forever-agent-0.6.1"
sources."form-data-2.3.3"
sources."fs-extra-10.0.0"
- sources."fs-minipass-1.2.7"
+ sources."fs-minipass-2.1.0"
sources."fs.realpath-1.0.0"
sources."function-bind-1.1.1"
(sources."galactus-0.2.1" // {
@@ -80651,12 +80862,16 @@ in
sources."homedir-polyfill-1.0.3"
sources."hosted-git-info-2.8.9"
sources."http-cache-semantics-4.1.0"
+ sources."http-proxy-agent-4.0.1"
sources."http-signature-1.2.0"
sources."http2-wrapper-1.0.3"
- sources."iconv-lite-0.4.24"
+ sources."https-proxy-agent-5.0.0"
+ sources."humanize-ms-1.2.1"
+ sources."iconv-lite-0.6.3"
sources."ieee754-1.2.1"
- sources."ignore-walk-3.0.4"
- sources."indent-string-2.1.0"
+ sources."imurmurhash-0.1.4"
+ sources."indent-string-4.0.0"
+ sources."infer-owner-1.0.4"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
sources."ini-1.3.8"
@@ -80666,6 +80881,7 @@ in
sources."string-width-4.2.2"
];
})
+ sources."ip-1.1.5"
sources."is-arrayish-0.2.1"
sources."is-core-module-2.6.0"
sources."is-docker-2.2.1"
@@ -80674,6 +80890,7 @@ in
sources."is-fullwidth-code-point-1.0.0"
sources."is-glob-4.0.1"
sources."is-interactive-1.0.0"
+ sources."is-lambda-1.0.1"
sources."is-number-7.0.0"
sources."is-stream-1.1.0"
sources."is-typedarray-1.0.0"
@@ -80701,18 +80918,9 @@ in
sources."log-symbols-4.1.0"
sources."loud-rejection-1.6.0"
sources."lowercase-keys-2.0.0"
- (sources."lru-cache-6.0.0" // {
- dependencies = [
- sources."yallist-4.0.0"
- ];
- })
- (sources."lzma-native-6.0.1" // {
- dependencies = [
- sources."readable-stream-2.3.7"
- sources."safe-buffer-5.1.2"
- sources."string_decoder-1.1.1"
- ];
- })
+ sources."lru-cache-6.0.0"
+ sources."lzma-native-8.0.1"
+ sources."make-fetch-happen-8.0.14"
sources."map-age-cleaner-0.1.3"
sources."map-obj-1.0.1"
(sources."matcher-3.0.0" // {
@@ -80740,52 +80948,39 @@ in
sources."mimic-response-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."minipass-3.1.3"
+ sources."minipass-collect-1.0.2"
+ sources."minipass-fetch-1.4.1"
+ sources."minipass-flush-1.0.5"
+ sources."minipass-pipeline-1.2.4"
+ sources."minipass-sized-1.0.3"
+ sources."minizlib-2.1.2"
+ sources."mkdirp-1.0.4"
sources."ms-2.0.0"
sources."mute-stream-0.0.8"
- (sources."needle-2.9.0" // {
- dependencies = [
- sources."debug-3.2.7"
- sources."ms-2.1.3"
- ];
- })
sources."nice-try-1.0.5"
- (sources."node-abi-2.30.0" // {
+ (sources."node-abi-2.30.1" // {
dependencies = [
sources."semver-5.7.1"
];
})
- sources."node-addon-api-1.7.2"
- sources."node-fetch-2.6.1"
- (sources."node-gyp-7.1.2" // {
- dependencies = [
- sources."nopt-5.0.0"
- sources."rimraf-3.0.2"
- ];
- })
- (sources."node-pre-gyp-0.11.0" // {
- dependencies = [
- sources."semver-5.7.1"
- sources."tar-4.4.19"
- ];
- })
- sources."nopt-4.0.3"
+ sources."node-addon-api-3.2.1"
+ sources."node-api-version-0.1.4"
+ sources."node-fetch-2.6.2"
+ sources."node-gyp-8.2.0"
+ sources."node-gyp-build-4.2.3"
+ sources."nopt-5.0.0"
(sources."normalize-package-data-2.5.0" // {
dependencies = [
sources."semver-5.7.1"
];
})
sources."normalize-url-6.1.0"
- sources."npm-bundled-1.1.2"
(sources."npm-conf-1.1.3" // {
dependencies = [
sources."pify-3.0.0"
];
})
- sources."npm-normalize-package-bin-1.0.1"
- sources."npm-packlist-1.4.8"
(sources."npm-run-path-2.0.2" // {
dependencies = [
sources."path-key-2.0.1"
@@ -80805,15 +81000,14 @@ in
sources."onetime-5.1.2"
sources."open-8.2.1"
sources."ora-5.4.1"
- 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-defer-1.0.0"
sources."p-finally-1.0.0"
sources."p-is-promise-2.1.0"
sources."p-limit-1.3.0"
sources."p-locate-2.0.0"
+ sources."p-map-4.0.0"
sources."p-try-1.0.0"
sources."parse-author-2.0.0"
sources."parse-json-2.2.0"
@@ -80840,13 +81034,15 @@ in
sources."path-exists-4.0.0"
];
})
- sources."plist-3.0.3"
+ sources."plist-3.0.4"
sources."prepend-http-2.0.0"
sources."pretty-bytes-1.0.4"
sources."pretty-ms-7.0.1"
sources."process-nextick-args-2.0.1"
sources."progress-2.0.3"
sources."progress-stream-1.2.0"
+ sources."promise-inflight-1.0.1"
+ sources."promise-retry-2.0.1"
sources."proto-list-1.2.4"
sources."psl-1.8.0"
sources."pump-3.0.0"
@@ -80854,7 +81050,6 @@ in
sources."qs-6.5.2"
sources."queue-microtask-1.2.3"
sources."quick-lru-5.1.1"
- sources."rc-1.2.8"
sources."rcedit-3.0.1"
sources."read-pkg-2.0.0"
(sources."read-pkg-up-2.0.0" // {
@@ -80863,25 +81058,29 @@ in
];
})
sources."readable-stream-3.6.0"
- sources."redent-1.0.0"
+ (sources."redent-1.0.0" // {
+ dependencies = [
+ sources."indent-string-2.1.0"
+ ];
+ })
sources."repeating-2.0.1"
sources."request-2.88.2"
sources."require-directory-2.1.1"
sources."resolve-1.20.0"
- sources."resolve-alpn-1.2.0"
+ sources."resolve-alpn-1.2.1"
sources."resolve-dir-1.0.1"
sources."resolve-package-1.0.1"
sources."responselike-2.0.0"
sources."restore-cursor-3.1.0"
+ sources."retry-0.12.0"
sources."reusify-1.0.4"
- sources."rimraf-2.7.1"
+ sources."rimraf-3.0.2"
sources."roarr-2.15.4"
sources."run-async-2.4.1"
sources."run-parallel-1.2.0"
sources."rxjs-7.3.0"
sources."safe-buffer-5.2.1"
sources."safer-buffer-2.1.2"
- sources."sax-1.2.4"
sources."semver-7.3.5"
sources."semver-compare-1.0.0"
sources."serialize-error-7.0.1"
@@ -80890,6 +81089,9 @@ in
sources."shebang-regex-3.0.0"
sources."signal-exit-3.0.3"
sources."single-line-log-1.1.2"
+ sources."smart-buffer-4.2.0"
+ sources."socks-2.6.1"
+ sources."socks-proxy-agent-5.0.1"
sources."source-map-0.6.1"
sources."source-map-support-0.5.19"
sources."spdx-correct-3.1.1"
@@ -80899,6 +81101,7 @@ in
sources."speedometer-0.1.4"
sources."sprintf-js-1.1.2"
sources."sshpk-1.16.1"
+ sources."ssri-8.0.1"
(sources."string-width-1.0.2" // {
dependencies = [
sources."ansi-regex-2.1.1"
@@ -80910,21 +81113,11 @@ in
sources."strip-bom-3.0.0"
sources."strip-eof-1.0.0"
sources."strip-indent-1.0.1"
- sources."strip-json-comments-2.0.1"
sources."strip-outer-1.0.1"
sources."sudo-prompt-9.2.1"
sources."sumchecker-3.0.1"
sources."supports-color-7.2.0"
- (sources."tar-6.1.11" // {
- dependencies = [
- sources."chownr-2.0.0"
- sources."fs-minipass-2.1.0"
- sources."minipass-3.1.3"
- sources."minizlib-2.1.2"
- sources."mkdirp-1.0.4"
- sources."yallist-4.0.0"
- ];
- })
+ sources."tar-6.1.11"
sources."throttleit-0.0.2"
sources."through-2.3.8"
(sources."through2-0.2.3" // {
@@ -80945,6 +81138,8 @@ in
sources."tunnel-agent-0.6.0"
sources."tweetnacl-0.14.5"
sources."type-fest-0.13.1"
+ sources."unique-filename-1.1.1"
+ sources."unique-slug-2.0.2"
sources."universalify-2.0.0"
sources."uri-js-4.4.1"
sources."url-parse-lax-3.0.0"
@@ -80952,7 +81147,11 @@ in
sources."util-deprecate-1.0.2"
sources."uuid-3.4.0"
sources."validate-npm-package-license-3.0.4"
- sources."verror-1.10.0"
+ (sources."verror-1.10.0" // {
+ dependencies = [
+ sources."core-util-is-1.0.2"
+ ];
+ })
sources."wcwidth-1.0.1"
sources."which-2.0.2"
sources."wide-align-1.1.3"
@@ -80964,11 +81163,10 @@ in
})
sources."wrappy-1.0.2"
sources."xmlbuilder-9.0.7"
- sources."xmldom-0.6.0"
sources."xtend-2.1.2"
sources."y18n-5.0.8"
- sources."yallist-3.1.1"
- (sources."yargs-16.2.0" // {
+ sources."yallist-4.0.0"
+ (sources."yargs-17.1.1" // {
dependencies = [
sources."is-fullwidth-code-point-3.0.0"
sources."string-width-4.2.2"
@@ -81019,60 +81217,53 @@ in
emoj = nodeEnv.buildNodePackage {
name = "emoj";
packageName = "emoj";
- version = "3.1.0";
+ version = "3.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/emoj/-/emoj-3.1.0.tgz";
- sha512 = "ohjlUXM2v39rDqGIrlyxdcn9ql+4b+X1u90CXNWjYw5wX6C3wTHRfqFfeV8jajYD6Xc+ufn2X1QeZZWhRBXTlA==";
+ url = "https://registry.npmjs.org/emoj/-/emoj-3.2.0.tgz";
+ sha512 = "ceJSyC2s1VCIqyzGkHeJkWBq/85QXaHM+0rZ1lRRtmcK9CsfRDyLSIZ7KJDZhPdIRUXBgBkdcOAW3AIu/yO/ew==";
};
dependencies = [
sources."@babel/code-frame-7.14.5"
sources."@babel/compat-data-7.15.0"
- (sources."@babel/core-7.15.0" // {
+ (sources."@babel/core-7.15.5" // {
dependencies = [
sources."semver-6.3.0"
];
})
- sources."@babel/generator-7.15.0"
- sources."@babel/helper-annotate-as-pure-7.14.5"
- (sources."@babel/helper-compilation-targets-7.15.0" // {
+ sources."@babel/generator-7.15.4"
+ sources."@babel/helper-annotate-as-pure-7.15.4"
+ (sources."@babel/helper-compilation-targets-7.15.4" // {
dependencies = [
sources."semver-6.3.0"
];
})
- sources."@babel/helper-function-name-7.14.5"
- sources."@babel/helper-get-function-arity-7.14.5"
- sources."@babel/helper-hoist-variables-7.14.5"
- sources."@babel/helper-member-expression-to-functions-7.15.0"
- sources."@babel/helper-module-imports-7.14.5"
- sources."@babel/helper-module-transforms-7.15.0"
- sources."@babel/helper-optimise-call-expression-7.14.5"
+ sources."@babel/helper-function-name-7.15.4"
+ sources."@babel/helper-get-function-arity-7.15.4"
+ sources."@babel/helper-hoist-variables-7.15.4"
+ sources."@babel/helper-member-expression-to-functions-7.15.4"
+ sources."@babel/helper-module-imports-7.15.4"
+ sources."@babel/helper-module-transforms-7.15.4"
+ sources."@babel/helper-optimise-call-expression-7.15.4"
sources."@babel/helper-plugin-utils-7.14.5"
- sources."@babel/helper-replace-supers-7.15.0"
- sources."@babel/helper-simple-access-7.14.8"
- sources."@babel/helper-split-export-declaration-7.14.5"
+ sources."@babel/helper-replace-supers-7.15.4"
+ sources."@babel/helper-simple-access-7.15.4"
+ sources."@babel/helper-split-export-declaration-7.15.4"
sources."@babel/helper-validator-identifier-7.14.9"
sources."@babel/helper-validator-option-7.14.5"
- sources."@babel/helpers-7.15.3"
+ sources."@babel/helpers-7.15.4"
sources."@babel/highlight-7.14.5"
- sources."@babel/parser-7.15.3"
+ sources."@babel/parser-7.15.5"
sources."@babel/plugin-proposal-object-rest-spread-7.14.7"
sources."@babel/plugin-syntax-jsx-7.14.5"
sources."@babel/plugin-syntax-object-rest-spread-7.8.3"
sources."@babel/plugin-transform-destructuring-7.14.7"
- sources."@babel/plugin-transform-parameters-7.14.5"
+ sources."@babel/plugin-transform-parameters-7.15.4"
sources."@babel/plugin-transform-react-jsx-7.14.9"
- sources."@babel/template-7.14.5"
- sources."@babel/traverse-7.15.0"
- sources."@babel/types-7.15.0"
- sources."@sindresorhus/is-4.0.1"
- sources."@szmarczak/http-timer-4.0.6"
- sources."@types/cacheable-request-6.0.2"
- sources."@types/http-cache-semantics-4.0.1"
- sources."@types/keyv-3.1.2"
+ sources."@babel/template-7.15.4"
+ sources."@babel/traverse-7.15.4"
+ sources."@babel/types-7.15.4"
sources."@types/minimist-1.2.2"
- sources."@types/node-16.7.2"
sources."@types/normalize-package-data-2.4.1"
- sources."@types/responselike-1.0.0"
sources."@types/yoga-layout-1.9.2"
sources."ajv-6.12.6"
(sources."ansi-escapes-4.3.2" // {
@@ -81089,34 +81280,23 @@ in
sources."auto-bind-4.0.0"
sources."balanced-match-1.0.2"
sources."brace-expansion-1.1.11"
- sources."browserslist-4.16.8"
- sources."cacheable-lookup-5.0.4"
- (sources."cacheable-request-7.0.2" // {
- dependencies = [
- sources."get-stream-5.2.0"
- ];
- })
+ sources."browserslist-4.17.0"
sources."caller-callsite-2.0.0"
sources."caller-path-2.0.0"
sources."callsites-2.0.0"
sources."camelcase-5.3.1"
- (sources."camelcase-keys-6.2.2" // {
- dependencies = [
- sources."quick-lru-4.0.1"
- ];
- })
- sources."caniuse-lite-1.0.30001252"
+ sources."camelcase-keys-6.2.2"
+ sources."caniuse-lite-1.0.30001255"
sources."chalk-2.4.2"
sources."ci-info-2.0.0"
sources."cli-boxes-2.2.1"
sources."cli-cursor-3.1.0"
sources."cli-truncate-2.1.0"
sources."clipboardy-2.3.0"
- sources."clone-response-1.0.2"
sources."code-excerpt-3.0.0"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
- sources."colorette-1.3.0"
+ sources."colorette-1.4.0"
sources."commondir-1.0.1"
sources."concat-map-0.0.1"
(sources."conf-7.1.2" // {
@@ -81135,14 +81315,8 @@ in
sources."map-obj-1.0.1"
];
})
- (sources."decompress-response-6.0.0" // {
- dependencies = [
- sources."mimic-response-3.1.0"
- ];
- })
- sources."defer-to-connect-2.0.1"
sources."dot-prop-5.3.0"
- sources."electron-to-chromium-1.3.818"
+ sources."electron-to-chromium-1.3.832"
sources."emoji-regex-8.0.0"
sources."emojilib-2.4.0"
sources."end-of-stream-1.4.4"
@@ -81153,7 +81327,7 @@ in
sources."execa-1.0.0"
sources."fast-deep-equal-3.1.3"
sources."fast-json-stable-stringify-2.1.0"
- sources."find-cache-dir-3.3.1"
+ sources."find-cache-dir-3.3.2"
sources."find-up-3.0.0"
sources."fs.realpath-1.0.0"
sources."function-bind-1.1.1"
@@ -81161,13 +81335,10 @@ in
sources."get-stream-4.1.0"
sources."glob-7.1.7"
sources."globals-11.12.0"
- sources."got-11.8.2"
sources."hard-rejection-2.1.0"
sources."has-1.0.3"
sources."has-flag-3.0.0"
sources."hosted-git-info-2.8.9"
- sources."http-cache-semantics-4.1.0"
- sources."http2-wrapper-1.0.3"
sources."import-jsx-4.0.0"
sources."indent-string-4.0.0"
sources."inflight-1.0.6"
@@ -81205,18 +81376,15 @@ in
sources."isexe-2.0.0"
sources."js-tokens-4.0.0"
sources."jsesc-2.5.2"
- sources."json-buffer-3.0.1"
sources."json-parse-even-better-errors-2.3.1"
sources."json-schema-traverse-0.4.1"
sources."json-schema-typed-7.0.3"
sources."json5-2.2.0"
- sources."keyv-4.0.3"
sources."kind-of-6.0.3"
sources."lines-and-columns-1.1.6"
sources."locate-path-3.0.0"
sources."lodash-4.17.21"
sources."loose-envify-1.4.0"
- sources."lowercase-keys-2.0.0"
sources."lru-cache-6.0.0"
(sources."make-dir-3.1.0" // {
dependencies = [
@@ -81232,7 +81400,6 @@ in
];
})
sources."mimic-fn-3.1.0"
- sources."mimic-response-1.0.1"
sources."min-indent-1.0.1"
sources."minimatch-3.0.4"
sources."minimist-1.2.5"
@@ -81241,7 +81408,6 @@ in
sources."nice-try-1.0.5"
sources."node-releases-1.1.75"
sources."normalize-package-data-2.5.0"
- sources."normalize-url-6.1.0"
sources."npm-run-path-2.0.2"
sources."object-assign-4.1.1"
sources."once-1.4.0"
@@ -81250,7 +81416,6 @@ in
sources."mimic-fn-2.1.0"
];
})
- sources."p-cancelable-2.1.1"
sources."p-defer-1.0.0"
sources."p-finally-1.0.0"
sources."p-limit-2.3.0"
@@ -81274,9 +81439,9 @@ in
sources."prop-types-15.7.2"
sources."pump-3.0.0"
sources."punycode-2.1.1"
- sources."quick-lru-5.1.1"
+ sources."quick-lru-4.0.1"
sources."react-16.14.0"
- sources."react-devtools-core-4.17.0"
+ sources."react-devtools-core-4.18.0"
sources."react-is-16.13.1"
sources."react-reconciler-0.24.0"
(sources."read-pkg-5.2.0" // {
@@ -81295,9 +81460,7 @@ in
})
sources."redent-3.0.0"
sources."resolve-1.20.0"
- sources."resolve-alpn-1.2.0"
sources."resolve-from-3.0.0"
- sources."responselike-2.0.0"
sources."restore-cursor-3.1.0"
sources."rimraf-3.0.2"
sources."safe-buffer-5.1.2"
@@ -81346,7 +81509,7 @@ in
];
})
sources."wrappy-1.0.2"
- sources."ws-7.5.3"
+ sources."ws-7.5.4"
sources."yallist-4.0.0"
sources."yargs-parser-18.1.3"
sources."yoga-layout-prebuilt-1.10.0"
@@ -81396,8 +81559,8 @@ in
sources."@fluentui/date-time-utilities-7.9.1"
sources."@fluentui/dom-utilities-1.1.2"
sources."@fluentui/keyboard-key-0.2.17"
- sources."@fluentui/react-7.174.1"
- sources."@fluentui/react-focus-7.17.6"
+ sources."@fluentui/react-7.175.2"
+ sources."@fluentui/react-focus-7.18.0"
sources."@fluentui/react-window-provider-1.0.2"
sources."@fluentui/theme-1.7.4"
sources."@gar/promisify-1.1.2"
@@ -81411,7 +81574,7 @@ in
sources."normalize-path-2.1.1"
];
})
- sources."@microsoft/load-themed-styles-1.10.203"
+ sources."@microsoft/load-themed-styles-1.10.207"
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
@@ -81461,12 +81624,12 @@ in
sources."@types/sqlite3-3.1.6"
sources."@types/tough-cookie-4.0.1"
sources."@types/url-join-4.0.0"
- sources."@uifabric/foundation-7.9.26"
- sources."@uifabric/icons-7.5.23"
+ sources."@uifabric/foundation-7.10.0"
+ sources."@uifabric/icons-7.6.0"
sources."@uifabric/merge-styles-7.19.2"
sources."@uifabric/react-hooks-7.14.0"
sources."@uifabric/set-version-7.0.24"
- sources."@uifabric/styling-7.19.0"
+ sources."@uifabric/styling-7.19.1"
sources."@uifabric/utilities-7.33.5"
sources."@webassemblyjs/ast-1.9.0"
sources."@webassemblyjs/floating-point-hex-parser-1.9.0"
@@ -81530,7 +81693,7 @@ in
sources."append-field-1.0.0"
sources."aproba-1.2.0"
sources."archy-1.0.0"
- (sources."are-we-there-yet-1.1.5" // {
+ (sources."are-we-there-yet-1.1.7" // {
dependencies = [
sources."isarray-1.0.0"
sources."readable-stream-2.3.7"
@@ -81771,7 +81934,7 @@ in
];
})
sources."core-js-2.6.12"
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."crc-3.8.0"
(sources."create-ecdh-4.0.4" // {
dependencies = [
@@ -81954,7 +82117,7 @@ in
sources."file-uri-to-path-1.0.0"
sources."fill-range-7.0.1"
sources."finalhandler-1.1.2"
- sources."find-cache-dir-3.3.1"
+ sources."find-cache-dir-3.3.2"
sources."find-up-1.1.2"
(sources."findup-sync-3.0.0" // {
dependencies = [
@@ -82364,7 +82527,7 @@ in
})
sources."nan-2.15.0"
sources."nanomatch-1.2.13"
- (sources."needle-2.9.0" // {
+ (sources."needle-2.9.1" // {
dependencies = [
sources."debug-3.2.7"
sources."ms-2.1.3"
@@ -82439,7 +82602,7 @@ in
sources."object.map-1.0.1"
sources."object.pick-1.3.0"
sources."object.reduce-1.0.1"
- sources."office-ui-fabric-react-7.174.1"
+ sources."office-ui-fabric-react-7.175.2"
sources."on-finished-2.3.0"
sources."on-headers-1.0.2"
sources."once-1.4.0"
@@ -82666,7 +82829,7 @@ in
sources."safe-buffer-5.1.2"
sources."safe-regex-1.1.0"
sources."safer-buffer-2.1.2"
- (sources."sass-1.38.1" // {
+ (sources."sass-1.39.0" // {
dependencies = [
sources."anymatch-3.1.2"
sources."binary-extensions-2.2.0"
@@ -82952,7 +83115,11 @@ in
sources."validate-npm-package-license-3.0.4"
sources."value-or-function-3.0.0"
sources."vary-1.1.2"
- sources."verror-1.10.0"
+ (sources."verror-1.10.0" // {
+ dependencies = [
+ sources."core-util-is-1.0.2"
+ ];
+ })
sources."vinyl-2.2.1"
(sources."vinyl-fs-3.0.3" // {
dependencies = [
@@ -83037,7 +83204,7 @@ in
];
})
sources."wrappy-1.0.2"
- sources."ws-7.5.3"
+ sources."ws-7.5.4"
sources."xmlhttprequest-ssl-1.5.5"
sources."xtend-4.0.2"
sources."y18n-3.2.2"
@@ -83125,7 +83292,7 @@ in
sources."concat-map-0.0.1"
sources."cross-spawn-7.0.3"
sources."debug-4.3.2"
- sources."deep-is-0.1.3"
+ sources."deep-is-0.1.4"
sources."doctrine-3.0.0"
sources."emoji-regex-8.0.0"
sources."enquirer-2.3.6"
@@ -83244,10 +83411,10 @@ in
eslint_d = nodeEnv.buildNodePackage {
name = "eslint_d";
packageName = "eslint_d";
- version = "10.1.3";
+ version = "11.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/eslint_d/-/eslint_d-10.1.3.tgz";
- sha512 = "B8ESWH1KrLNgV0CR9r/Mc4lbgArnbWIuHnHrJlmuWx+02UriPXNnk4+nNFakzXHRh/sTHeCA4LiArkSfIqsfsw==";
+ url = "https://registry.npmjs.org/eslint_d/-/eslint_d-11.0.0.tgz";
+ sha512 = "eR6yaJepLQ8hMGIfW2Bj41e4ZnxbsbMZvYjDxWl98YnUlqn46qoUi20N3VB0xq9mv1IKsOO+Rqfnjov5Y93zLg==";
};
dependencies = [
sources."@babel/code-frame-7.12.11"
@@ -83288,7 +83455,7 @@ in
sources."core_d-3.2.0"
sources."cross-spawn-7.0.3"
sources."debug-4.3.2"
- sources."deep-is-0.1.3"
+ sources."deep-is-0.1.4"
sources."doctrine-3.0.0"
sources."emoji-regex-8.0.0"
sources."enquirer-2.3.6"
@@ -83434,51 +83601,51 @@ in
dependencies = [
sources."@babel/code-frame-7.10.4"
sources."@babel/compat-data-7.15.0"
- (sources."@babel/core-7.15.0" // {
+ (sources."@babel/core-7.15.5" // {
dependencies = [
sources."@babel/code-frame-7.14.5"
sources."json5-2.2.0"
sources."semver-6.3.0"
];
})
- sources."@babel/generator-7.15.0"
- sources."@babel/helper-annotate-as-pure-7.14.5"
- sources."@babel/helper-builder-binary-assignment-operator-visitor-7.14.5"
- (sources."@babel/helper-compilation-targets-7.15.0" // {
+ sources."@babel/generator-7.15.4"
+ sources."@babel/helper-annotate-as-pure-7.15.4"
+ sources."@babel/helper-builder-binary-assignment-operator-visitor-7.15.4"
+ (sources."@babel/helper-compilation-targets-7.15.4" // {
dependencies = [
- sources."browserslist-4.16.8"
+ sources."browserslist-4.17.0"
sources."semver-6.3.0"
];
})
- sources."@babel/helper-create-class-features-plugin-7.15.0"
+ sources."@babel/helper-create-class-features-plugin-7.15.4"
sources."@babel/helper-create-regexp-features-plugin-7.14.5"
(sources."@babel/helper-define-polyfill-provider-0.2.3" // {
dependencies = [
sources."semver-6.3.0"
];
})
- sources."@babel/helper-explode-assignable-expression-7.14.5"
- sources."@babel/helper-function-name-7.14.5"
- sources."@babel/helper-get-function-arity-7.14.5"
- sources."@babel/helper-hoist-variables-7.14.5"
- sources."@babel/helper-member-expression-to-functions-7.15.0"
- sources."@babel/helper-module-imports-7.14.5"
- sources."@babel/helper-module-transforms-7.15.0"
- sources."@babel/helper-optimise-call-expression-7.14.5"
+ sources."@babel/helper-explode-assignable-expression-7.15.4"
+ sources."@babel/helper-function-name-7.15.4"
+ sources."@babel/helper-get-function-arity-7.15.4"
+ sources."@babel/helper-hoist-variables-7.15.4"
+ sources."@babel/helper-member-expression-to-functions-7.15.4"
+ sources."@babel/helper-module-imports-7.15.4"
+ sources."@babel/helper-module-transforms-7.15.4"
+ sources."@babel/helper-optimise-call-expression-7.15.4"
sources."@babel/helper-plugin-utils-7.14.5"
- sources."@babel/helper-replace-supers-7.15.0"
- sources."@babel/helper-simple-access-7.14.8"
- sources."@babel/helper-skip-transparent-expression-wrappers-7.14.5"
- sources."@babel/helper-split-export-declaration-7.14.5"
+ sources."@babel/helper-replace-supers-7.15.4"
+ sources."@babel/helper-simple-access-7.15.4"
+ sources."@babel/helper-skip-transparent-expression-wrappers-7.15.4"
+ sources."@babel/helper-split-export-declaration-7.15.4"
sources."@babel/helper-validator-identifier-7.14.9"
sources."@babel/helper-validator-option-7.14.5"
- sources."@babel/helpers-7.15.3"
+ sources."@babel/helpers-7.15.4"
(sources."@babel/highlight-7.14.5" // {
dependencies = [
sources."chalk-2.4.2"
];
})
- sources."@babel/parser-7.15.3"
+ sources."@babel/parser-7.15.5"
sources."@babel/plugin-proposal-class-properties-7.14.5"
sources."@babel/plugin-proposal-export-default-from-7.14.5"
sources."@babel/plugin-proposal-nullish-coalescing-operator-7.14.5"
@@ -83498,19 +83665,19 @@ in
sources."@babel/plugin-transform-arrow-functions-7.14.5"
sources."@babel/plugin-transform-block-scoped-functions-7.14.5"
sources."@babel/plugin-transform-block-scoping-7.15.3"
- sources."@babel/plugin-transform-classes-7.14.9"
+ sources."@babel/plugin-transform-classes-7.15.4"
sources."@babel/plugin-transform-computed-properties-7.14.5"
sources."@babel/plugin-transform-destructuring-7.14.7"
sources."@babel/plugin-transform-exponentiation-operator-7.14.5"
sources."@babel/plugin-transform-flow-strip-types-7.14.5"
- sources."@babel/plugin-transform-for-of-7.14.5"
+ sources."@babel/plugin-transform-for-of-7.15.4"
sources."@babel/plugin-transform-function-name-7.14.5"
sources."@babel/plugin-transform-literals-7.14.5"
sources."@babel/plugin-transform-member-expression-literals-7.14.5"
- sources."@babel/plugin-transform-modules-commonjs-7.15.0"
+ sources."@babel/plugin-transform-modules-commonjs-7.15.4"
sources."@babel/plugin-transform-object-assign-7.14.5"
sources."@babel/plugin-transform-object-super-7.14.5"
- sources."@babel/plugin-transform-parameters-7.14.5"
+ sources."@babel/plugin-transform-parameters-7.15.4"
sources."@babel/plugin-transform-property-literals-7.14.5"
sources."@babel/plugin-transform-react-display-name-7.15.1"
sources."@babel/plugin-transform-react-jsx-7.14.9"
@@ -83526,20 +83693,20 @@ in
sources."@babel/plugin-transform-spread-7.14.6"
sources."@babel/plugin-transform-sticky-regex-7.14.5"
sources."@babel/plugin-transform-template-literals-7.14.5"
- sources."@babel/plugin-transform-typescript-7.15.0"
+ sources."@babel/plugin-transform-typescript-7.15.4"
sources."@babel/plugin-transform-unicode-regex-7.14.5"
sources."@babel/runtime-7.9.0"
- (sources."@babel/template-7.14.5" // {
+ (sources."@babel/template-7.15.4" // {
dependencies = [
sources."@babel/code-frame-7.14.5"
];
})
- (sources."@babel/traverse-7.15.0" // {
+ (sources."@babel/traverse-7.15.4" // {
dependencies = [
sources."@babel/code-frame-7.14.5"
];
})
- sources."@babel/types-7.15.0"
+ sources."@babel/types-7.15.4"
sources."@dabh/diagnostics-2.0.2"
sources."@expo/apple-utils-0.0.0-alpha.25"
sources."@expo/bunyan-4.0.0"
@@ -83692,7 +83859,7 @@ in
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.2"
+ sources."@types/keyv-3.1.3"
sources."@types/minimatch-3.0.5"
sources."@types/node-9.6.61"
sources."@types/q-1.5.5"
@@ -83736,7 +83903,7 @@ in
sources."@webassemblyjs/wast-parser-1.9.0"
sources."@webassemblyjs/wast-printer-1.9.0"
sources."@wry/equality-0.1.11"
- sources."@xmldom/xmldom-0.7.2"
+ sources."@xmldom/xmldom-0.7.4"
sources."@xtuc/ieee754-1.2.0"
sources."@xtuc/long-4.2.2"
sources."abbrev-1.1.1"
@@ -83777,7 +83944,7 @@ in
sources."apollo-utilities-1.3.4"
sources."application-config-path-0.1.0"
sources."aproba-1.2.0"
- sources."are-we-there-yet-1.1.5"
+ sources."are-we-there-yet-1.1.7"
sources."argparse-2.0.1"
sources."arr-diff-4.0.0"
sources."arr-flatten-1.1.0"
@@ -83893,7 +84060,7 @@ in
sources."buffer-xor-1.0.3"
sources."builtin-status-codes-3.0.0"
sources."builtins-1.0.3"
- (sources."bull-3.29.1" // {
+ (sources."bull-3.29.2" // {
dependencies = [
sources."get-port-5.1.1"
sources."p-timeout-3.2.0"
@@ -83922,7 +84089,7 @@ in
})
sources."camelcase-6.2.0"
sources."caniuse-api-3.0.0"
- sources."caniuse-lite-1.0.30001252"
+ sources."caniuse-lite-1.0.30001255"
sources."caseless-0.12.0"
(sources."chalk-4.1.2" // {
dependencies = [
@@ -83999,7 +84166,7 @@ in
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
sources."color-string-1.6.0"
- sources."colorette-1.3.0"
+ sources."colorette-1.4.0"
sources."colors-1.4.0"
sources."colorspace-1.1.2"
sources."combined-stream-1.0.8"
@@ -84043,7 +84210,7 @@ in
sources."copy-descriptor-0.1.1"
(sources."copy-webpack-plugin-6.0.4" // {
dependencies = [
- sources."find-cache-dir-3.3.1"
+ sources."find-cache-dir-3.3.2"
sources."find-up-4.1.0"
sources."locate-path-5.0.0"
sources."make-dir-3.1.0"
@@ -84057,14 +84224,14 @@ in
sources."serialize-javascript-4.0.0"
];
})
- sources."core-js-3.16.3"
- (sources."core-js-compat-3.16.3" // {
+ sources."core-js-3.17.2"
+ (sources."core-js-compat-3.17.2" // {
dependencies = [
- sources."browserslist-4.16.8"
+ sources."browserslist-4.17.0"
sources."semver-7.0.0"
];
})
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."cosmiconfig-5.2.1"
(sources."create-ecdh-4.0.4" // {
dependencies = [
@@ -84093,7 +84260,7 @@ in
})
(sources."css-select-4.1.3" // {
dependencies = [
- sources."domhandler-4.2.0"
+ sources."domhandler-4.2.2"
];
})
sources."css-select-base-adapter-0.1.1"
@@ -84171,16 +84338,16 @@ in
sources."dom-converter-0.2.0"
(sources."dom-serializer-1.3.2" // {
dependencies = [
- sources."domhandler-4.2.0"
+ sources."domhandler-4.2.2"
];
})
sources."domain-browser-1.2.0"
sources."domelementtype-2.2.0"
sources."domhandler-3.3.0"
sources."domino-2.1.6"
- (sources."domutils-2.7.0" // {
+ (sources."domutils-2.8.0" // {
dependencies = [
- sources."domhandler-4.2.0"
+ sources."domhandler-4.2.2"
];
})
(sources."dot-case-3.0.4" // {
@@ -84194,7 +84361,7 @@ in
sources."duplexify-3.7.1"
sources."ecc-jsbn-0.1.2"
sources."ee-first-1.1.1"
- sources."electron-to-chromium-1.3.818"
+ sources."electron-to-chromium-1.3.832"
(sources."elliptic-6.5.4" // {
dependencies = [
sources."bn.js-4.12.0"
@@ -84228,7 +84395,7 @@ in
];
})
sources."errorhandler-1.5.1"
- sources."es-abstract-1.18.5"
+ sources."es-abstract-1.18.6"
sources."es-to-primitive-1.2.1"
sources."escalade-3.1.1"
sources."escape-html-1.0.3"
@@ -84300,7 +84467,7 @@ in
sources."fast-deep-equal-3.1.3"
sources."fast-glob-3.2.7"
sources."fast-json-stable-stringify-2.1.0"
- sources."fast-safe-stringify-2.0.8"
+ sources."fast-safe-stringify-2.1.0"
sources."fastq-1.12.0"
sources."faye-websocket-0.10.0"
sources."fecha-4.2.1"
@@ -84321,7 +84488,7 @@ in
sources."find-yarn-workspace-root-2.0.0"
sources."flush-write-stream-1.1.1"
sources."fn.name-1.1.0"
- sources."follow-redirects-1.14.2"
+ sources."follow-redirects-1.14.3"
sources."for-each-0.3.3"
sources."for-in-1.0.2"
sources."forever-agent-0.6.1"
@@ -84377,6 +84544,7 @@ in
sources."get-intrinsic-1.1.1"
sources."get-port-3.2.0"
sources."get-stream-5.2.0"
+ sources."get-symbol-description-1.0.0"
sources."get-value-2.0.6"
sources."getenv-1.0.0"
sources."getpass-0.1.7"
@@ -84506,7 +84674,7 @@ in
sources."internal-ip-4.3.0"
sources."internal-slot-1.0.3"
sources."invariant-2.2.4"
- (sources."ioredis-4.27.8" // {
+ (sources."ioredis-4.27.9" // {
dependencies = [
sources."p-map-2.1.0"
];
@@ -84737,7 +84905,7 @@ in
sources."minipass-3.1.3"
];
})
- (sources."minipass-fetch-1.3.4" // {
+ (sources."minipass-fetch-1.4.1" // {
dependencies = [
sources."minipass-3.1.3"
];
@@ -84789,7 +84957,7 @@ in
sources."nan-2.15.0"
sources."nanomatch-1.2.13"
sources."ncp-2.0.0"
- (sources."needle-2.9.0" // {
+ (sources."needle-2.9.1" // {
dependencies = [
sources."debug-3.2.7"
];
@@ -84804,7 +84972,7 @@ in
];
})
sources."nocache-2.1.0"
- sources."node-fetch-2.6.1"
+ sources."node-fetch-2.6.2"
sources."node-forge-0.10.0"
(sources."node-gyp-7.1.2" // {
dependencies = [
@@ -85006,7 +85174,7 @@ in
sources."path-exists-3.0.0"
];
})
- sources."plist-3.0.3"
+ sources."plist-3.0.4"
sources."pngjs-3.4.0"
sources."pnp-webpack-plugin-1.7.0"
(sources."portfinder-1.0.28" // {
@@ -85243,7 +85411,7 @@ in
(sources."renderkid-2.0.7" // {
dependencies = [
sources."ansi-regex-2.1.1"
- sources."domhandler-4.2.0"
+ sources."domhandler-4.2.2"
sources."htmlparser2-6.1.0"
sources."strip-ansi-3.0.1"
];
@@ -85266,7 +85434,7 @@ in
})
sources."requires-port-1.0.0"
sources."resolve-1.20.0"
- sources."resolve-alpn-1.2.0"
+ sources."resolve-alpn-1.2.1"
(sources."resolve-cwd-2.0.0" // {
dependencies = [
sources."resolve-from-3.0.0"
@@ -85509,7 +85677,7 @@ in
})
(sources."terser-webpack-plugin-3.1.0" // {
dependencies = [
- sources."find-cache-dir-3.3.1"
+ sources."find-cache-dir-3.3.2"
sources."find-up-4.1.0"
sources."locate-path-5.0.0"
sources."make-dir-3.1.0"
@@ -85561,7 +85729,7 @@ in
sources."type-fest-0.3.1"
sources."type-is-1.6.18"
sources."typedarray-0.0.6"
- sources."uglify-js-3.14.1"
+ sources."uglify-js-3.14.2"
sources."ultron-1.1.1"
sources."unbox-primitive-1.0.1"
sources."unicode-canonical-property-names-ecmascript-1.0.4"
@@ -85624,7 +85792,11 @@ in
sources."validate-npm-package-name-3.0.0"
sources."vary-1.1.2"
sources."vendors-1.0.4"
- sources."verror-1.10.0"
+ (sources."verror-1.10.0" // {
+ dependencies = [
+ sources."core-util-is-1.0.2"
+ ];
+ })
sources."vlq-1.0.1"
sources."vm-browserify-1.1.2"
sources."watchpack-1.7.5"
@@ -85832,7 +86004,6 @@ in
];
})
sources."xmlbuilder-9.0.7"
- sources."xmldom-0.6.0"
sources."xtend-4.0.2"
sources."y18n-4.0.3"
sources."yallist-4.0.0"
@@ -85878,37 +86049,37 @@ in
dependencies = [
sources."@babel/code-frame-7.14.5"
sources."@babel/compat-data-7.15.0"
- sources."@babel/core-7.15.0"
- sources."@babel/generator-7.15.0"
- sources."@babel/helper-annotate-as-pure-7.14.5"
- sources."@babel/helper-compilation-targets-7.15.0"
- sources."@babel/helper-function-name-7.14.5"
- sources."@babel/helper-get-function-arity-7.14.5"
- sources."@babel/helper-hoist-variables-7.14.5"
- sources."@babel/helper-member-expression-to-functions-7.15.0"
- sources."@babel/helper-module-imports-7.14.5"
- sources."@babel/helper-module-transforms-7.15.0"
- sources."@babel/helper-optimise-call-expression-7.14.5"
+ sources."@babel/core-7.15.5"
+ sources."@babel/generator-7.15.4"
+ sources."@babel/helper-annotate-as-pure-7.15.4"
+ sources."@babel/helper-compilation-targets-7.15.4"
+ sources."@babel/helper-function-name-7.15.4"
+ sources."@babel/helper-get-function-arity-7.15.4"
+ sources."@babel/helper-hoist-variables-7.15.4"
+ sources."@babel/helper-member-expression-to-functions-7.15.4"
+ sources."@babel/helper-module-imports-7.15.4"
+ sources."@babel/helper-module-transforms-7.15.4"
+ sources."@babel/helper-optimise-call-expression-7.15.4"
sources."@babel/helper-plugin-utils-7.14.5"
- sources."@babel/helper-replace-supers-7.15.0"
- sources."@babel/helper-simple-access-7.14.8"
- sources."@babel/helper-split-export-declaration-7.14.5"
+ sources."@babel/helper-replace-supers-7.15.4"
+ sources."@babel/helper-simple-access-7.15.4"
+ sources."@babel/helper-split-export-declaration-7.15.4"
sources."@babel/helper-validator-identifier-7.14.9"
sources."@babel/helper-validator-option-7.14.5"
- sources."@babel/helpers-7.15.3"
+ sources."@babel/helpers-7.15.4"
sources."@babel/highlight-7.14.5"
- sources."@babel/parser-7.15.3"
+ sources."@babel/parser-7.15.5"
sources."@babel/plugin-proposal-object-rest-spread-7.14.7"
sources."@babel/plugin-syntax-jsx-7.14.5"
sources."@babel/plugin-syntax-object-rest-spread-7.8.3"
sources."@babel/plugin-transform-destructuring-7.14.7"
- sources."@babel/plugin-transform-parameters-7.14.5"
+ sources."@babel/plugin-transform-parameters-7.15.4"
sources."@babel/plugin-transform-react-jsx-7.14.9"
- sources."@babel/template-7.14.5"
- sources."@babel/traverse-7.15.0"
- sources."@babel/types-7.15.0"
+ sources."@babel/template-7.15.4"
+ sources."@babel/traverse-7.15.4"
+ sources."@babel/types-7.15.4"
sources."@types/minimist-1.2.2"
- sources."@types/node-16.7.2"
+ sources."@types/node-16.7.13"
sources."@types/normalize-package-data-2.4.1"
sources."@types/yauzl-2.9.2"
sources."@types/yoga-layout-1.9.2"
@@ -85927,7 +86098,7 @@ in
sources."base64-js-1.5.1"
sources."bl-4.1.0"
sources."brace-expansion-1.1.11"
- sources."browserslist-4.16.8"
+ sources."browserslist-4.17.0"
sources."buffer-5.7.1"
sources."buffer-crc32-0.2.13"
sources."caller-callsite-2.0.0"
@@ -85935,7 +86106,7 @@ in
sources."callsites-2.0.0"
sources."camelcase-5.3.1"
sources."camelcase-keys-6.2.2"
- sources."caniuse-lite-1.0.30001252"
+ sources."caniuse-lite-1.0.30001255"
sources."chalk-2.4.2"
sources."chownr-1.1.4"
sources."ci-info-2.0.0"
@@ -85946,7 +86117,7 @@ in
sources."code-excerpt-3.0.0"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
- sources."colorette-1.3.0"
+ sources."colorette-1.4.0"
sources."commondir-1.0.1"
sources."concat-map-0.0.1"
sources."convert-source-map-1.8.0"
@@ -85960,7 +86131,7 @@ in
})
sources."delay-5.0.0"
sources."devtools-protocol-0.0.869402"
- sources."electron-to-chromium-1.3.818"
+ sources."electron-to-chromium-1.3.832"
sources."emoji-regex-8.0.0"
sources."end-of-stream-1.4.4"
sources."error-ex-1.3.2"
@@ -85968,7 +86139,7 @@ in
sources."escape-string-regexp-1.0.5"
sources."extract-zip-2.0.1"
sources."fd-slicer-1.1.0"
- sources."find-cache-dir-3.3.1"
+ sources."find-cache-dir-3.3.2"
sources."find-up-4.1.0"
sources."fs-constants-1.0.0"
sources."fs.realpath-1.0.0"
@@ -86027,7 +86198,7 @@ in
sources."minimist-options-4.1.0"
sources."mkdirp-classic-0.5.3"
sources."ms-2.1.2"
- sources."node-fetch-2.6.1"
+ sources."node-fetch-2.6.2"
sources."node-releases-1.1.75"
(sources."normalize-package-data-3.0.3" // {
dependencies = [
@@ -86054,7 +86225,7 @@ in
sources."puppeteer-9.1.1"
sources."quick-lru-4.0.1"
sources."react-16.14.0"
- sources."react-devtools-core-4.17.0"
+ sources."react-devtools-core-4.18.0"
sources."react-is-16.13.1"
sources."react-reconciler-0.24.0"
(sources."read-pkg-5.2.0" // {
@@ -86125,7 +86296,7 @@ in
];
})
sources."wrappy-1.0.2"
- sources."ws-7.5.3"
+ sources."ws-7.5.4"
sources."yallist-4.0.0"
sources."yargs-parser-20.2.9"
sources."yauzl-2.10.0"
@@ -86175,7 +86346,7 @@ in
sources."tslib-2.3.1"
];
})
- (sources."@oclif/core-0.5.32" // {
+ (sources."@oclif/core-0.5.35" // {
dependencies = [
sources."chalk-4.1.2"
(sources."cli-ux-5.6.3" // {
@@ -86348,8 +86519,12 @@ in
sources."component-emitter-1.3.0"
sources."concat-map-0.0.1"
sources."copy-descriptor-0.1.1"
- sources."core-util-is-1.0.2"
- sources."cross-fetch-3.1.4"
+ sources."core-util-is-1.0.3"
+ (sources."cross-fetch-3.1.4" // {
+ dependencies = [
+ sources."node-fetch-2.6.1"
+ ];
+ })
(sources."cross-spawn-6.0.5" // {
dependencies = [
sources."semver-5.7.1"
@@ -86359,7 +86534,7 @@ in
sources."debug-4.3.2"
sources."decode-uri-component-0.2.0"
sources."decompress-response-3.3.0"
- sources."deep-is-0.1.3"
+ sources."deep-is-0.1.4"
sources."defaults-1.0.3"
sources."define-property-2.0.2"
sources."delayed-stream-1.0.0"
@@ -86415,7 +86590,7 @@ in
sources."fast-json-stable-stringify-2.1.0"
sources."fast-levenshtein-2.0.6"
sources."fastq-1.12.0"
- (sources."faunadb-4.3.0" // {
+ (sources."faunadb-4.4.1" // {
dependencies = [
sources."chalk-4.1.2"
sources."has-flag-4.0.0"
@@ -86594,7 +86769,7 @@ in
];
})
sources."nice-try-1.0.5"
- sources."node-fetch-2.6.1"
+ sources."node-fetch-2.6.2"
sources."normalize-url-2.0.1"
sources."npm-run-path-2.0.2"
sources."oauth-sign-0.9.0"
@@ -86799,7 +86974,11 @@ in
sources."use-3.1.1"
sources."util-deprecate-1.0.2"
sources."uuid-3.4.0"
- sources."verror-1.10.0"
+ (sources."verror-1.10.0" // {
+ dependencies = [
+ sources."core-util-is-1.0.2"
+ ];
+ })
sources."wcwidth-1.0.1"
sources."which-1.3.1"
sources."widest-line-3.1.0"
@@ -86821,10 +87000,10 @@ in
firebase-tools = nodeEnv.buildNodePackage {
name = "firebase-tools";
packageName = "firebase-tools";
- version = "9.16.6";
+ version = "9.17.0";
src = fetchurl {
- url = "https://registry.npmjs.org/firebase-tools/-/firebase-tools-9.16.6.tgz";
- sha512 = "bW4rT+pTE6n8892rXd5ier9H1snXUZIXrL3WKzuVWXSUqDjUbx6SIgXhjp1++GIdkiMGnfDY5EJR4nV/YrTO5A==";
+ url = "https://registry.npmjs.org/firebase-tools/-/firebase-tools-9.17.0.tgz";
+ sha512 = "+srVeGz6w3ouR567ELHe33Nm0nwhhVvu5IHuQOaH0qQvDzX8LgBGqCpatqgYToUmPgDMGG34f1d+aa8vQ0pEBw==";
};
dependencies = [
(sources."@apidevtools/json-schema-ref-parser-9.0.9" // {
@@ -86840,7 +87019,7 @@ in
sources."@google-cloud/promisify-2.0.3"
(sources."@google-cloud/pubsub-2.17.0" // {
dependencies = [
- sources."google-auth-library-7.6.2"
+ sources."google-auth-library-7.9.1"
];
})
sources."@grpc/grpc-js-1.3.7"
@@ -86856,7 +87035,7 @@ in
sources."mkdirp-1.0.4"
];
})
- sources."@opentelemetry/api-1.0.2"
+ sources."@opentelemetry/api-1.0.3"
sources."@opentelemetry/semantic-conventions-0.24.0"
sources."@protobufjs/aspromise-1.1.2"
sources."@protobufjs/base64-1.1.2"
@@ -86877,7 +87056,7 @@ in
sources."@types/json-schema-7.0.9"
sources."@types/long-4.0.1"
sources."@types/minimatch-3.0.5"
- sources."@types/node-16.7.2"
+ sources."@types/node-16.7.13"
sources."JSONStream-1.3.5"
sources."abbrev-1.1.1"
sources."abort-controller-3.0.0"
@@ -86909,7 +87088,7 @@ in
sources."string_decoder-1.1.1"
];
})
- (sources."are-we-there-yet-1.1.5" // {
+ (sources."are-we-there-yet-1.1.7" // {
dependencies = [
sources."readable-stream-2.3.7"
sources."safe-buffer-5.1.2"
@@ -87049,7 +87228,7 @@ in
sources."content-type-1.0.4"
sources."cookie-0.4.0"
sources."cookie-signature-1.0.6"
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."cors-2.8.5"
sources."crc-32-1.2.0"
sources."crc32-stream-4.0.2"
@@ -87075,7 +87254,7 @@ in
sources."decompress-response-3.3.0"
sources."deep-extend-0.6.0"
sources."deep-freeze-0.0.1"
- sources."deep-is-0.1.3"
+ sources."deep-is-0.1.4"
sources."defaults-1.0.3"
sources."defer-to-connect-1.1.3"
sources."degenerator-2.2.0"
@@ -87151,7 +87330,7 @@ in
sources."fast-deep-equal-3.1.3"
sources."fast-json-stable-stringify-2.1.0"
sources."fast-levenshtein-2.0.6"
- sources."fast-safe-stringify-2.0.8"
+ sources."fast-safe-stringify-2.1.0"
sources."fast-text-encoding-1.0.3"
(sources."fast-url-parser-1.1.3" // {
dependencies = [
@@ -87210,8 +87389,8 @@ in
sources."strip-ansi-3.0.1"
];
})
- sources."gaxios-4.3.0"
- sources."gcp-metadata-4.3.0"
+ sources."gaxios-4.3.1"
+ sources."gcp-metadata-4.3.1"
sources."get-caller-file-2.0.5"
sources."get-stream-4.1.0"
(sources."get-uri-3.0.2" // {
@@ -87226,9 +87405,9 @@ in
sources."glob-slasher-1.0.1"
sources."global-dirs-2.1.0"
sources."google-auth-library-6.1.6"
- (sources."google-gax-2.24.2" // {
+ (sources."google-gax-2.25.0" // {
dependencies = [
- sources."google-auth-library-7.6.2"
+ sources."google-auth-library-7.9.1"
];
})
sources."google-p12-pem-3.1.2"
@@ -87403,7 +87582,7 @@ in
sources."minimist-1.2.5"
sources."minipass-3.1.3"
sources."minipass-collect-1.0.2"
- sources."minipass-fetch-1.3.4"
+ sources."minipass-fetch-1.4.1"
sources."minipass-flush-1.0.5"
sources."minipass-pipeline-1.2.4"
sources."minipass-sized-1.0.3"
@@ -87429,7 +87608,7 @@ in
sources."next-tick-1.0.0"
sources."nice-try-1.0.5"
sources."node-emoji-1.11.0"
- sources."node-fetch-2.6.1"
+ sources."node-fetch-2.6.2"
sources."node-forge-0.10.0"
(sources."node-gyp-8.2.0" // {
dependencies = [
@@ -87699,7 +87878,11 @@ in
sources."uuid-3.4.0"
sources."valid-url-1.0.9"
sources."vary-1.1.2"
- sources."verror-1.10.0"
+ (sources."verror-1.10.0" // {
+ dependencies = [
+ sources."core-util-is-1.0.2"
+ ];
+ })
sources."wcwidth-1.0.1"
sources."which-1.3.1"
(sources."wide-align-1.1.3" // {
@@ -87723,7 +87906,7 @@ in
sources."wrap-ansi-7.0.0"
sources."wrappy-1.0.2"
sources."write-file-atomic-3.0.3"
- sources."ws-7.5.3"
+ sources."ws-7.5.4"
sources."xdg-basedir-4.0.0"
sources."xregexp-2.0.0"
sources."xtend-4.0.2"
@@ -87983,7 +88166,7 @@ in
dependencies = [
sources."@types/atob-2.1.2"
sources."@types/inquirer-6.5.0"
- sources."@types/node-16.7.2"
+ sources."@types/node-16.7.13"
sources."@types/through-0.0.30"
sources."ajv-6.12.6"
sources."ansi-escapes-4.3.2"
@@ -88092,7 +88275,7 @@ in
sources."mkdirp-0.5.5"
sources."mute-stream-0.0.8"
sources."nedb-1.8.0"
- sources."node-fetch-2.6.1"
+ sources."node-fetch-2.6.2"
(sources."number-to-bn-1.7.0" // {
dependencies = [
sources."bn.js-4.11.6"
@@ -88218,7 +88401,7 @@ in
sources."async-1.5.2"
sources."async-each-1.0.3"
sources."atob-2.1.2"
- sources."available-typed-arrays-1.0.4"
+ sources."available-typed-arrays-1.0.5"
sources."balanced-match-1.0.2"
(sources."base-0.11.2" // {
dependencies = [
@@ -88275,7 +88458,7 @@ in
sources."concat-map-0.0.1"
sources."configstore-4.0.0"
sources."copy-descriptor-0.1.1"
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."crypto-random-string-1.0.0"
sources."cycle-1.0.3"
sources."debug-2.6.9"
@@ -88287,7 +88470,7 @@ in
sources."director-1.2.7"
sources."dot-prop-4.2.1"
sources."duplexer-0.1.2"
- sources."es-abstract-1.18.5"
+ sources."es-abstract-1.18.6"
sources."es-get-iterator-1.1.2"
sources."es-to-primitive-1.2.1"
sources."event-stream-3.3.4"
@@ -88337,6 +88520,7 @@ in
sources."fsevents-1.2.13"
sources."function-bind-1.1.1"
sources."get-intrinsic-1.1.1"
+ sources."get-symbol-description-1.0.0"
sources."get-value-2.0.6"
sources."glob-7.1.7"
(sources."glob-parent-3.1.0" // {
@@ -88388,7 +88572,7 @@ in
sources."is-set-2.0.2"
sources."is-string-1.0.7"
sources."is-symbol-1.0.4"
- sources."is-typed-array-1.1.7"
+ sources."is-typed-array-1.1.8"
sources."is-weakmap-2.0.1"
sources."is-weakset-2.0.1"
sources."is-windows-1.0.2"
@@ -88592,7 +88776,7 @@ in
})
sources."which-boxed-primitive-1.0.2"
sources."which-collection-1.0.1"
- sources."which-typed-array-1.1.6"
+ sources."which-typed-array-1.1.7"
(sources."winston-0.8.3" // {
dependencies = [
sources."async-0.2.10"
@@ -88668,10 +88852,10 @@ in
gatsby-cli = nodeEnv.buildNodePackage {
name = "gatsby-cli";
packageName = "gatsby-cli";
- version = "3.12.0";
+ version = "3.13.0";
src = fetchurl {
- url = "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-3.12.0.tgz";
- sha512 = "Yf2Xa1mLbRi0yjtIRwklRCuTJB+DEKx5jl/2jFKKZkAdIHU8mXizBEkh4Pf0zeERv/22OjsfeCixjBcAw7WbHA==";
+ url = "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-3.13.0.tgz";
+ sha512 = "QTJZUY4wPwXLuK4aP3GCqBpklruV2hv/jtf65ED5zfeF2YnZlFvrJXt40n9o1ptc5XYe/FF6yFBxu1Lwbt9qtg==";
};
dependencies = [
(sources."@ardatan/aggregate-error-0.0.6" // {
@@ -88681,56 +88865,56 @@ in
})
sources."@babel/code-frame-7.14.5"
sources."@babel/compat-data-7.15.0"
- (sources."@babel/core-7.15.0" // {
+ (sources."@babel/core-7.15.5" // {
dependencies = [
sources."semver-6.3.0"
sources."source-map-0.5.7"
];
})
- (sources."@babel/generator-7.15.0" // {
+ (sources."@babel/generator-7.15.4" // {
dependencies = [
sources."source-map-0.5.7"
];
})
- sources."@babel/helper-annotate-as-pure-7.14.5"
- (sources."@babel/helper-compilation-targets-7.15.0" // {
+ sources."@babel/helper-annotate-as-pure-7.15.4"
+ (sources."@babel/helper-compilation-targets-7.15.4" // {
dependencies = [
sources."semver-6.3.0"
];
})
- sources."@babel/helper-function-name-7.14.5"
- sources."@babel/helper-get-function-arity-7.14.5"
- sources."@babel/helper-hoist-variables-7.14.5"
- sources."@babel/helper-member-expression-to-functions-7.15.0"
- sources."@babel/helper-module-imports-7.14.5"
- sources."@babel/helper-module-transforms-7.15.0"
- sources."@babel/helper-optimise-call-expression-7.14.5"
+ sources."@babel/helper-function-name-7.15.4"
+ sources."@babel/helper-get-function-arity-7.15.4"
+ sources."@babel/helper-hoist-variables-7.15.4"
+ sources."@babel/helper-member-expression-to-functions-7.15.4"
+ sources."@babel/helper-module-imports-7.15.4"
+ sources."@babel/helper-module-transforms-7.15.4"
+ sources."@babel/helper-optimise-call-expression-7.15.4"
sources."@babel/helper-plugin-utils-7.14.5"
- sources."@babel/helper-replace-supers-7.15.0"
- sources."@babel/helper-simple-access-7.14.8"
- sources."@babel/helper-skip-transparent-expression-wrappers-7.14.5"
- sources."@babel/helper-split-export-declaration-7.14.5"
+ sources."@babel/helper-replace-supers-7.15.4"
+ sources."@babel/helper-simple-access-7.15.4"
+ sources."@babel/helper-skip-transparent-expression-wrappers-7.15.4"
+ sources."@babel/helper-split-export-declaration-7.15.4"
sources."@babel/helper-validator-identifier-7.14.9"
sources."@babel/helper-validator-option-7.14.5"
- sources."@babel/helpers-7.15.3"
+ sources."@babel/helpers-7.15.4"
(sources."@babel/highlight-7.14.5" // {
dependencies = [
sources."chalk-2.4.2"
];
})
- sources."@babel/parser-7.15.3"
+ sources."@babel/parser-7.15.5"
sources."@babel/plugin-proposal-object-rest-spread-7.10.4"
sources."@babel/plugin-proposal-optional-chaining-7.14.5"
sources."@babel/plugin-syntax-jsx-7.14.5"
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.14.5"
+ sources."@babel/plugin-transform-parameters-7.15.4"
sources."@babel/plugin-transform-react-jsx-7.14.9"
- sources."@babel/runtime-7.15.3"
- sources."@babel/standalone-7.15.3"
- sources."@babel/template-7.14.5"
- sources."@babel/traverse-7.15.0"
- sources."@babel/types-7.15.0"
+ sources."@babel/runtime-7.15.4"
+ sources."@babel/standalone-7.15.5"
+ sources."@babel/template-7.15.4"
+ sources."@babel/traverse-7.15.4"
+ sources."@babel/types-7.15.4"
sources."@graphql-tools/schema-7.1.5"
sources."@graphql-tools/utils-7.10.0"
sources."@hapi/address-2.1.4"
@@ -88766,14 +88950,14 @@ in
sources."@types/istanbul-lib-report-3.0.0"
sources."@types/istanbul-reports-1.1.2"
sources."@types/json-patch-0.0.30"
- sources."@types/node-16.7.2"
+ sources."@types/node-16.7.13"
sources."@types/node-fetch-2.5.12"
sources."@types/unist-2.0.6"
sources."@types/yargs-15.0.14"
sources."@types/yargs-parser-20.2.1"
sources."@types/yoga-layout-1.9.2"
sources."accepts-1.3.7"
- sources."acorn-8.4.1"
+ sources."acorn-8.5.0"
sources."acorn-jsx-5.3.2"
sources."address-1.1.2"
(sources."ansi-align-3.0.0" // {
@@ -88781,11 +88965,7 @@ in
sources."string-width-3.1.0"
];
})
- (sources."ansi-escapes-4.3.2" // {
- dependencies = [
- sources."type-fest-0.21.3"
- ];
- })
+ sources."ansi-escapes-4.3.2"
sources."ansi-regex-5.0.0"
sources."ansi-styles-3.2.1"
sources."anymatch-3.1.2"
@@ -88793,7 +88973,7 @@ in
sources."array-flatten-1.1.1"
sources."async-retry-ng-2.0.1"
sources."asynckit-0.4.0"
- sources."axios-0.21.1"
+ sources."axios-0.21.4"
sources."bail-1.0.5"
sources."balanced-match-1.0.2"
sources."better-opn-2.1.1"
@@ -88821,7 +89001,7 @@ in
})
sources."brace-expansion-1.1.11"
sources."braces-3.0.2"
- sources."browserslist-4.16.8"
+ sources."browserslist-4.17.0"
sources."bytes-3.1.0"
(sources."cacheable-request-6.1.0" // {
dependencies = [
@@ -88833,7 +89013,7 @@ in
sources."call-bind-1.0.2"
sources."camel-case-4.1.2"
sources."camelcase-5.3.1"
- sources."caniuse-lite-1.0.30001252"
+ sources."caniuse-lite-1.0.30001255"
sources."ccount-1.1.0"
(sources."chalk-4.1.2" // {
dependencies = [
@@ -88872,7 +89052,7 @@ in
sources."collapse-white-space-1.0.6"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
- sources."colorette-1.3.0"
+ sources."colorette-1.4.0"
sources."combined-stream-1.0.8"
sources."common-tags-1.8.0"
sources."concat-map-0.0.1"
@@ -88883,8 +89063,8 @@ in
];
})
sources."content-type-1.0.4"
- sources."contentful-management-7.33.0"
- sources."contentful-sdk-core-6.8.0"
+ sources."contentful-management-7.36.2"
+ sources."contentful-sdk-core-6.8.5"
sources."convert-hrtime-3.0.0"
(sources."convert-source-map-1.8.0" // {
dependencies = [
@@ -88894,7 +89074,7 @@ in
sources."cookie-0.4.0"
sources."cookie-signature-1.0.6"
sources."cors-2.8.5"
- sources."create-gatsby-1.12.0"
+ sources."create-gatsby-1.13.0"
(sources."cross-spawn-6.0.5" // {
dependencies = [
sources."semver-5.7.1"
@@ -88923,13 +89103,13 @@ in
sources."dom-converter-0.2.0"
sources."dom-serializer-1.3.2"
sources."domelementtype-2.2.0"
- sources."domhandler-4.2.0"
- sources."domutils-2.7.0"
+ sources."domhandler-4.2.2"
+ sources."domutils-2.8.0"
sources."dot-prop-5.3.0"
sources."dotenv-8.6.0"
sources."duplexer3-0.1.4"
sources."ee-first-1.1.1"
- sources."electron-to-chromium-1.3.818"
+ sources."electron-to-chromium-1.3.832"
sources."emoji-regex-7.0.3"
sources."encodeurl-1.0.2"
sources."end-of-stream-1.4.4"
@@ -88991,7 +89171,7 @@ in
];
})
sources."find-up-4.1.0"
- sources."follow-redirects-1.14.2"
+ sources."follow-redirects-1.14.3"
sources."form-data-3.0.1"
sources."forwarded-0.2.0"
sources."fresh-0.5.2"
@@ -89000,13 +89180,13 @@ in
sources."fs.realpath-1.0.0"
sources."fsevents-2.3.2"
sources."function-bind-1.1.1"
- sources."gatsby-core-utils-2.12.0"
- (sources."gatsby-recipes-0.23.0" // {
+ sources."gatsby-core-utils-2.13.0"
+ (sources."gatsby-recipes-0.24.0" // {
dependencies = [
sources."strip-ansi-6.0.0"
];
})
- sources."gatsby-telemetry-2.12.0"
+ sources."gatsby-telemetry-2.13.0"
sources."gensync-1.0.0-beta.2"
sources."get-caller-file-2.0.5"
sources."get-intrinsic-1.1.1"
@@ -89019,7 +89199,7 @@ in
sources."globals-11.12.0"
sources."got-9.6.0"
sources."graceful-fs-4.2.8"
- sources."graphql-15.5.1"
+ sources."graphql-15.5.3"
sources."graphql-compose-7.25.1"
sources."graphql-subscriptions-1.2.1"
sources."graphql-type-json-0.3.2"
@@ -89164,7 +89344,7 @@ in
sources."nice-try-1.0.5"
sources."no-case-3.0.4"
sources."node-eta-0.9.0"
- sources."node-fetch-2.6.1"
+ sources."node-fetch-2.6.2"
sources."node-object-hash-2.3.9"
sources."node-releases-1.1.75"
sources."normalize-path-3.0.0"
@@ -89345,7 +89525,7 @@ in
sources."trim-trailing-lines-1.1.4"
sources."trough-1.0.5"
sources."tslib-2.2.0"
- sources."type-fest-0.20.2"
+ sources."type-fest-0.21.3"
sources."type-is-1.6.18"
sources."typedarray-to-buffer-3.1.5"
sources."unherit-1.1.3"
@@ -89372,6 +89552,7 @@ in
dependencies = [
sources."boxen-5.0.1"
sources."camelcase-6.2.0"
+ sources."type-fest-0.20.2"
];
})
sources."url-parse-lax-3.0.0"
@@ -89397,9 +89578,9 @@ in
})
sources."wrappy-1.0.2"
sources."write-file-atomic-3.0.3"
- sources."ws-7.5.3"
+ sources."ws-7.5.4"
sources."xdg-basedir-4.0.0"
- sources."xstate-4.23.1"
+ sources."xstate-4.23.4"
sources."xtend-4.0.2"
sources."y18n-4.0.3"
sources."yallist-4.0.0"
@@ -89426,10 +89607,10 @@ in
generator-code = nodeEnv.buildNodePackage {
name = "generator-code";
packageName = "generator-code";
- version = "1.5.5";
+ version = "1.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/generator-code/-/generator-code-1.5.5.tgz";
- sha512 = "KxmZfEzhV0JYIonYtKBihZAFFVt0tqKoGL1OAbW8RdFQAgR/Yt5H0zF5K/7q7/M446JRcHCrI/pn9dmWmCXiDA==";
+ url = "https://registry.npmjs.org/generator-code/-/generator-code-1.6.0.tgz";
+ sha512 = "AZQg3krSIoySkTfHUhcWdDAALT5rIRvlFI8EcbrFMjIgedYZk04HdxYtq8FGdsWD9D/3F2zQN++iuWXowQw8Ig==";
};
dependencies = [
sources."@babel/code-frame-7.14.5"
@@ -89447,17 +89628,16 @@ in
sources."@octokit/auth-token-2.4.5"
sources."@octokit/core-3.5.1"
sources."@octokit/endpoint-6.0.12"
- sources."@octokit/graphql-4.6.4"
- sources."@octokit/openapi-types-9.7.0"
- sources."@octokit/plugin-paginate-rest-2.15.1"
+ sources."@octokit/graphql-4.8.0"
+ sources."@octokit/openapi-types-10.1.1"
+ sources."@octokit/plugin-paginate-rest-2.16.0"
sources."@octokit/plugin-request-log-1.0.4"
- sources."@octokit/plugin-rest-endpoint-methods-5.8.0"
+ sources."@octokit/plugin-rest-endpoint-methods-5.10.0"
sources."@octokit/request-5.6.1"
sources."@octokit/request-error-2.1.0"
- sources."@octokit/rest-18.9.1"
- sources."@octokit/types-6.25.0"
+ sources."@octokit/rest-18.10.0"
+ sources."@octokit/types-6.27.0"
sources."@types/normalize-package-data-2.4.1"
- sources."agent-base-4.3.0"
sources."ansi-regex-2.1.1"
sources."ansi-styles-4.3.0"
sources."balanced-match-1.0.2"
@@ -89471,12 +89651,10 @@ in
sources."concat-map-0.0.1"
sources."cross-spawn-7.0.3"
sources."dargs-7.0.0"
- sources."debug-3.1.0"
+ sources."debug-4.3.2"
sources."deprecation-2.3.1"
sources."end-of-stream-1.4.4"
sources."error-ex-1.3.2"
- sources."es6-promise-4.2.8"
- sources."es6-promisify-5.0.0"
sources."escape-string-regexp-1.0.5"
sources."execa-4.1.0"
sources."fast-plist-0.1.2"
@@ -89491,8 +89669,6 @@ in
sources."has-ansi-2.0.0"
sources."has-flag-4.0.0"
sources."hosted-git-info-2.8.9"
- sources."http-proxy-agent-2.1.0"
- sources."https-proxy-agent-2.2.4"
sources."human-signals-1.1.1"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
@@ -89513,8 +89689,8 @@ in
sources."mimic-fn-2.1.0"
sources."minimatch-3.0.4"
sources."minimist-1.2.5"
- sources."ms-2.0.0"
- sources."node-fetch-2.6.1"
+ sources."ms-2.1.2"
+ sources."node-fetch-2.6.2"
(sources."normalize-package-data-2.5.0" // {
dependencies = [
sources."semver-5.7.1"
@@ -89541,7 +89717,7 @@ in
})
sources."read-pkg-up-7.0.1"
sources."rechoir-0.6.2"
- sources."request-light-0.4.0"
+ sources."request-light-0.5.4"
sources."resolve-1.20.0"
sources."run-async-2.4.1"
sources."sanitize-filename-1.6.3"
@@ -89570,7 +89746,6 @@ in
sources."universal-user-agent-6.0.0"
sources."utf8-byte-length-1.0.4"
sources."validate-npm-package-license-3.0.4"
- sources."vscode-nls-4.1.2"
sources."which-2.0.2"
(sources."wrap-ansi-2.1.0" // {
dependencies = [
@@ -89580,12 +89755,7 @@ in
})
sources."wrappy-1.0.2"
sources."yallist-4.0.0"
- (sources."yeoman-generator-5.4.2" // {
- dependencies = [
- sources."debug-4.3.2"
- sources."ms-2.1.2"
- ];
- })
+ sources."yeoman-generator-5.4.2"
(sources."yosay-2.0.2" // {
dependencies = [
sources."ansi-styles-3.2.1"
@@ -89628,7 +89798,7 @@ in
sources."has-flag-3.0.0"
sources."iterall-1.3.0"
sources."minimist-1.2.5"
- sources."node-fetch-2.6.1"
+ sources."node-fetch-2.6.2"
sources."supports-color-5.5.0"
];
buildInputs = globalBuildInputs;
@@ -89841,7 +90011,7 @@ in
sources."tweetnacl-0.14.5"
sources."tweetnacl-auth-0.3.1"
sources."typedarray-to-buffer-4.0.0"
- sources."ws-7.5.3"
+ sources."ws-7.5.4"
sources."xtend-4.0.2"
];
buildInputs = globalBuildInputs;
@@ -89875,10 +90045,10 @@ in
gitmoji-cli = nodeEnv.buildNodePackage {
name = "gitmoji-cli";
packageName = "gitmoji-cli";
- version = "4.5.1";
+ version = "4.6.1";
src = fetchurl {
- url = "https://registry.npmjs.org/gitmoji-cli/-/gitmoji-cli-4.5.1.tgz";
- sha512 = "jKet1JrZa/pxV1JePwm6Asd3ZnyqIQG8FN3caTjd9hM+LygssW2NLSFOpnlrvblNXzhpwLxNxcvIv4RoU1Impw==";
+ url = "https://registry.npmjs.org/gitmoji-cli/-/gitmoji-cli-4.6.1.tgz";
+ sha512 = "B2wwKFTFDPrs0vESTIsU2jJXlqvq8PCC6aTkOS+1qPsATPkepeYC0PHw/CZpjx1o77aoTCkbmitb1dP8hVs8Gw==";
};
dependencies = [
sources."@babel/code-frame-7.14.5"
@@ -89951,7 +90121,7 @@ in
sources."dot-prop-5.3.0"
];
})
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."cross-spawn-7.0.3"
sources."crypto-random-string-2.0.0"
sources."data-uri-to-buffer-3.0.1"
@@ -89965,7 +90135,7 @@ in
})
sources."decompress-response-3.3.0"
sources."deep-extend-0.6.0"
- sources."deep-is-0.1.3"
+ sources."deep-is-0.1.4"
sources."defaults-1.0.3"
sources."defer-to-connect-1.1.3"
sources."degenerator-3.0.1"
@@ -90088,7 +90258,7 @@ in
sources."ms-2.1.2"
sources."mute-stream-0.0.8"
sources."netmask-2.0.2"
- sources."node-fetch-2.6.1"
+ sources."node-fetch-2.6.2"
sources."normalize-package-data-3.0.3"
sources."normalize-url-4.5.1"
sources."npm-run-path-4.0.1"
@@ -90283,9 +90453,9 @@ in
sources."tslib-2.1.0"
];
})
- (sources."@graphql-tools/import-6.3.1" // {
+ (sources."@graphql-tools/import-6.4.0" // {
dependencies = [
- sources."tslib-2.2.0"
+ sources."tslib-2.3.1"
];
})
(sources."@graphql-tools/json-file-loader-6.2.6" // {
@@ -90309,10 +90479,10 @@ in
sources."tslib-2.3.1"
];
})
- (sources."@graphql-tools/schema-8.1.2" // {
+ (sources."@graphql-tools/schema-8.2.0" // {
dependencies = [
- sources."@graphql-tools/merge-8.0.3"
- sources."@graphql-tools/utils-8.1.2"
+ sources."@graphql-tools/merge-8.1.2"
+ sources."@graphql-tools/utils-8.2.2"
sources."tslib-2.3.1"
];
})
@@ -90343,7 +90513,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-16.7.2"
+ sources."@types/node-16.7.13"
sources."@types/parse-json-4.0.0"
sources."@types/websocket-1.0.2"
sources."abort-controller-3.0.0"
@@ -90362,7 +90532,7 @@ in
sources."assert-plus-1.0.0"
sources."asynckit-0.4.0"
sources."at-least-node-1.0.0"
- sources."available-typed-arrays-1.0.4"
+ sources."available-typed-arrays-1.0.5"
sources."aws-sign2-0.7.0"
sources."aws4-1.11.0"
sources."backo2-1.0.2"
@@ -90437,7 +90607,7 @@ in
sources."emoji-regex-8.0.0"
sources."end-of-stream-1.4.4"
sources."error-ex-1.3.2"
- sources."es-abstract-1.18.5"
+ sources."es-abstract-1.18.6"
sources."es-get-iterator-1.1.2"
sources."es-to-primitive-1.2.1"
sources."es6-promise-3.3.1"
@@ -90458,7 +90628,7 @@ in
sources."fast-deep-equal-3.1.3"
sources."fast-glob-3.2.7"
sources."fast-json-stable-stringify-2.1.0"
- sources."fast-safe-stringify-2.0.8"
+ sources."fast-safe-stringify-2.1.0"
sources."fastq-1.12.0"
sources."figlet-1.5.0"
sources."figures-3.2.0"
@@ -90476,6 +90646,7 @@ in
sources."get-caller-file-2.0.5"
sources."get-intrinsic-1.1.1"
sources."get-stream-4.1.0"
+ sources."get-symbol-description-1.0.0"
sources."getpass-0.1.7"
sources."glob-7.1.7"
sources."glob-parent-5.1.2"
@@ -90550,7 +90721,7 @@ in
sources."is-stream-1.1.0"
sources."is-string-1.0.7"
sources."is-symbol-1.0.4"
- sources."is-typed-array-1.1.7"
+ sources."is-typed-array-1.1.8"
sources."is-typedarray-1.0.0"
sources."is-unicode-supported-0.1.0"
sources."is-weakmap-2.0.1"
@@ -90776,7 +90947,7 @@ in
sources."which-1.3.1"
sources."which-boxed-primitive-1.0.2"
sources."which-collection-1.0.1"
- sources."which-typed-array-1.1.6"
+ sources."which-typed-array-1.1.7"
(sources."wrap-ansi-7.0.0" // {
dependencies = [
sources."ansi-regex-5.0.0"
@@ -91044,7 +91215,7 @@ in
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
sources."colors-1.0.3"
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."drawille-blessed-contrib-1.0.0"
sources."drawille-canvas-blessed-contrib-0.1.3"
sources."escape-string-regexp-1.0.5"
@@ -91089,7 +91260,7 @@ in
sources."supports-color-7.2.0"
];
})
- sources."systeminformation-5.8.6"
+ sources."systeminformation-5.8.7"
sources."term-canvas-0.0.5"
sources."type-fest-0.21.3"
sources."wordwrap-0.0.3"
@@ -91212,7 +91383,7 @@ in
sources."is-plain-object-5.0.0"
];
})
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."d-1.0.1"
sources."debug-2.6.9"
sources."decamelize-1.2.0"
@@ -91634,7 +91805,7 @@ in
sources."concat-stream-1.6.2"
sources."copy-descriptor-0.1.1"
sources."copy-props-2.0.5"
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."d-1.0.1"
sources."debug-2.6.9"
sources."decamelize-1.2.0"
@@ -91985,7 +92156,7 @@ in
sources."param-case-2.1.1"
sources."relateurl-0.2.7"
sources."source-map-0.6.1"
- sources."uglify-js-3.14.1"
+ sources."uglify-js-3.14.2"
sources."upper-case-1.1.3"
];
buildInputs = globalBuildInputs;
@@ -92108,7 +92279,7 @@ in
sources."corser-2.0.1"
sources."debug-3.2.7"
sources."eventemitter3-4.0.7"
- sources."follow-redirects-1.14.2"
+ sources."follow-redirects-1.14.3"
sources."function-bind-1.1.1"
sources."get-intrinsic-1.1.1"
sources."has-1.0.3"
@@ -92159,7 +92330,7 @@ in
sources."bfilter-1.0.5"
sources."bheep-0.1.5"
sources."binet-0.3.6"
- sources."blgr-0.1.8"
+ sources."blgr-0.1.9"
sources."blru-0.1.6"
sources."blst-0.1.5"
sources."bmutex-0.1.6"
@@ -92368,7 +92539,7 @@ in
sources."uuid-2.0.3"
];
})
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."css-select-1.0.0"
sources."css-what-1.0.0"
sources."csso-2.0.0"
@@ -92526,7 +92697,11 @@ in
sources."uri-js-4.4.1"
sources."util-deprecate-1.0.2"
sources."uuid-3.4.0"
- sources."verror-1.10.0"
+ (sources."verror-1.10.0" // {
+ dependencies = [
+ sources."core-util-is-1.0.2"
+ ];
+ })
sources."whet.extend-0.9.9"
sources."window-size-0.1.0"
sources."wordwrap-0.0.2"
@@ -92560,7 +92735,7 @@ in
sources."bunyan-1.8.15"
sources."colors-0.6.2"
sources."concat-map-0.0.1"
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."cycle-1.0.3"
sources."dtrace-provider-0.8.8"
sources."eyes-0.1.8"
@@ -92620,7 +92795,7 @@ in
sources."async-limiter-1.0.1"
sources."chrome-remote-interface-0.27.2"
sources."commander-2.11.0"
- sources."node-fetch-2.6.1"
+ sources."node-fetch-2.6.2"
sources."semver-5.7.1"
sources."source-map-0.7.3"
sources."ws-6.2.2"
@@ -92762,11 +92937,11 @@ in
sources."component-emitter-1.3.0"
sources."concat-map-0.0.1"
sources."cookiejar-2.1.2"
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."cross-spawn-7.0.3"
sources."data-uri-to-buffer-3.0.1"
sources."debug-4.3.2"
- sources."deep-is-0.1.3"
+ sources."deep-is-0.1.4"
sources."degenerator-2.2.0"
sources."delayed-stream-1.0.0"
sources."depd-1.1.2"
@@ -93004,7 +93179,7 @@ in
})
sources."wrappy-1.0.2"
sources."write-file-atomic-3.0.3"
- sources."ws-7.5.3"
+ sources."ws-7.5.4"
sources."xregexp-2.0.0"
sources."yallist-3.1.1"
];
@@ -93029,7 +93204,7 @@ in
};
dependencies = [
sources."@iarna/toml-2.2.5"
- sources."@msgpack/msgpack-2.7.0"
+ sources."@msgpack/msgpack-2.7.1"
sources."@ot-builder/bin-composite-types-1.1.0"
sources."@ot-builder/bin-util-1.1.0"
(sources."@ot-builder/cli-help-shower-1.1.0" // {
@@ -93074,7 +93249,7 @@ in
sources."@ot-builder/var-store-1.1.0"
sources."@ot-builder/variance-1.1.0"
sources."@unicode/unicode-13.0.0-1.2.0"
- sources."@xmldom/xmldom-0.7.2"
+ sources."@xmldom/xmldom-0.7.4"
sources."aglfn-1.0.2"
sources."amdefine-1.0.1"
sources."ansi-regex-5.0.0"
@@ -93097,7 +93272,7 @@ in
sources."css-parse-2.0.0"
sources."debug-3.1.0"
sources."decode-uri-component-0.2.0"
- sources."deep-is-0.1.3"
+ sources."deep-is-0.1.4"
sources."ejs-3.1.6"
sources."emoji-regex-8.0.0"
sources."escalade-3.1.1"
@@ -93366,8 +93541,8 @@ in
dependencies = [
sources."@braintree/sanitize-url-3.1.0"
sources."@cronvel/get-pixels-3.4.0"
- sources."@joplin/fork-htmlparser2-4.1.33"
- sources."@joplin/fork-sax-1.2.37"
+ sources."@joplin/fork-htmlparser2-4.1.34"
+ sources."@joplin/fork-sax-1.2.38"
sources."@joplin/lib-2.3.1"
(sources."@joplin/renderer-2.3.1" // {
dependencies = [
@@ -93376,12 +93551,12 @@ in
sources."uslug-git+https://github.com/laurent22/uslug.git#emoji-support"
];
})
- (sources."@joplin/turndown-4.0.55" // {
+ (sources."@joplin/turndown-4.0.56" // {
dependencies = [
sources."css-2.2.4"
];
})
- sources."@joplin/turndown-plugin-gfm-1.0.37"
+ sources."@joplin/turndown-plugin-gfm-1.0.38"
sources."abab-2.0.5"
sources."abbrev-1.1.1"
sources."acorn-7.4.1"
@@ -93406,7 +93581,7 @@ in
})
sources."anymatch-3.1.2"
sources."aproba-1.2.0"
- sources."are-we-there-yet-1.1.5"
+ sources."are-we-there-yet-1.1.7"
(sources."argparse-1.0.10" // {
dependencies = [
sources."sprintf-js-1.0.3"
@@ -93421,7 +93596,7 @@ in
sources."async-mutex-0.1.4"
sources."asynckit-0.4.0"
sources."atob-2.1.2"
- (sources."aws-sdk-2.977.0" // {
+ (sources."aws-sdk-2.984.0" // {
dependencies = [
sources."sax-1.2.1"
sources."uuid-3.3.2"
@@ -93487,88 +93662,48 @@ in
];
})
sources."cwise-compiler-1.1.3"
- sources."d3-7.0.1"
- sources."d3-array-3.0.2"
- sources."d3-axis-3.0.0"
- sources."d3-brush-3.0.0"
- sources."d3-chord-3.0.1"
+ sources."d3-5.16.0"
+ sources."d3-array-1.2.4"
+ sources."d3-axis-1.0.12"
+ sources."d3-brush-1.1.6"
+ sources."d3-chord-1.0.6"
sources."d3-collection-1.0.7"
- sources."d3-color-3.0.1"
- sources."d3-contour-3.0.1"
- sources."d3-delaunay-6.0.2"
- sources."d3-dispatch-3.0.1"
- sources."d3-drag-3.0.0"
- (sources."d3-dsv-3.0.1" // {
- dependencies = [
- sources."commander-7.2.0"
- sources."iconv-lite-0.6.3"
- ];
- })
- sources."d3-ease-3.0.1"
- sources."d3-fetch-3.0.1"
- sources."d3-force-3.0.0"
- sources."d3-format-3.0.1"
- sources."d3-geo-3.0.1"
- sources."d3-hierarchy-3.0.1"
- sources."d3-interpolate-3.0.1"
- sources."d3-path-3.0.1"
- sources."d3-polygon-3.0.1"
- sources."d3-quadtree-3.0.1"
- sources."d3-random-3.0.1"
- sources."d3-scale-4.0.0"
- sources."d3-scale-chromatic-3.0.0"
- sources."d3-selection-3.0.0"
- sources."d3-shape-3.0.1"
- sources."d3-time-3.0.0"
- sources."d3-time-format-4.0.0"
- sources."d3-timer-3.0.1"
- sources."d3-transition-3.0.1"
+ sources."d3-color-1.4.1"
+ sources."d3-contour-1.3.2"
+ sources."d3-dispatch-1.0.6"
+ sources."d3-drag-1.2.5"
+ sources."d3-dsv-1.2.0"
+ sources."d3-ease-1.0.7"
+ sources."d3-fetch-1.2.0"
+ sources."d3-force-1.2.1"
+ sources."d3-format-1.4.5"
+ sources."d3-geo-1.12.1"
+ sources."d3-hierarchy-1.1.9"
+ sources."d3-interpolate-1.4.0"
+ sources."d3-path-1.0.9"
+ sources."d3-polygon-1.0.6"
+ sources."d3-quadtree-1.0.7"
+ sources."d3-random-1.1.2"
+ sources."d3-scale-2.2.2"
+ sources."d3-scale-chromatic-1.5.0"
+ sources."d3-selection-1.4.2"
+ sources."d3-shape-1.3.7"
+ sources."d3-time-1.1.0"
+ sources."d3-time-format-2.3.0"
+ sources."d3-timer-1.0.10"
+ sources."d3-transition-1.3.2"
sources."d3-voronoi-1.1.4"
- sources."d3-zoom-3.0.0"
+ sources."d3-zoom-1.8.3"
sources."dagre-0.8.5"
- (sources."dagre-d3-0.6.4" // {
- dependencies = [
- sources."d3-5.16.0"
- sources."d3-array-1.2.4"
- sources."d3-axis-1.0.12"
- sources."d3-brush-1.1.6"
- sources."d3-chord-1.0.6"
- sources."d3-color-1.4.1"
- sources."d3-contour-1.3.2"
- sources."d3-dispatch-1.0.6"
- sources."d3-drag-1.2.5"
- sources."d3-dsv-1.2.0"
- sources."d3-ease-1.0.7"
- sources."d3-fetch-1.2.0"
- sources."d3-force-1.2.1"
- sources."d3-format-1.4.5"
- sources."d3-geo-1.12.1"
- sources."d3-hierarchy-1.1.9"
- sources."d3-interpolate-1.4.0"
- sources."d3-path-1.0.9"
- sources."d3-polygon-1.0.6"
- sources."d3-quadtree-1.0.7"
- sources."d3-random-1.1.2"
- sources."d3-scale-2.2.2"
- sources."d3-scale-chromatic-1.5.0"
- sources."d3-selection-1.4.2"
- sources."d3-shape-1.3.7"
- sources."d3-time-1.1.0"
- sources."d3-time-format-2.3.0"
- sources."d3-timer-1.0.10"
- sources."d3-transition-1.3.2"
- sources."d3-zoom-1.8.3"
- ];
- })
+ sources."dagre-d3-0.6.4"
sources."dashdash-1.14.1"
sources."data-urls-1.1.0"
sources."debug-3.2.7"
sources."decode-uri-component-0.2.0"
sources."decompress-response-4.2.1"
sources."deep-extend-0.6.0"
- sources."deep-is-0.1.3"
+ sources."deep-is-0.1.4"
sources."deepmerge-2.2.1"
- sources."delaunator-5.0.0"
sources."delayed-stream-1.0.0"
sources."delegates-1.0.0"
sources."depd-1.1.2"
@@ -93576,16 +93711,16 @@ in
sources."diff-match-patch-1.0.5"
(sources."dom-serializer-1.3.2" // {
dependencies = [
- sources."domhandler-4.2.0"
+ sources."domhandler-4.2.2"
];
})
sources."domelementtype-2.2.0"
sources."domexception-1.0.1"
sources."domhandler-3.3.0"
sources."dompurify-2.3.1"
- (sources."domutils-2.7.0" // {
+ (sources."domutils-2.8.0" // {
dependencies = [
- sources."domhandler-4.2.0"
+ sources."domhandler-4.2.2"
];
})
sources."ecc-jsbn-0.1.2"
@@ -93623,7 +93758,7 @@ in
sources."file-uri-to-path-1.0.0"
sources."fill-range-7.0.1"
sources."find-up-2.1.0"
- sources."follow-redirects-1.14.2"
+ sources."follow-redirects-1.14.3"
sources."font-awesome-filetypes-2.1.0"
sources."for-each-property-0.0.4"
sources."for-each-property-deep-0.0.3"
@@ -93705,7 +93840,6 @@ in
sources."split-skip-0.0.1"
];
})
- sources."internmap-2.0.1"
sources."iota-array-1.0.0"
sources."ip-regex-2.1.0"
sources."is-absolute-0.2.6"
@@ -93742,7 +93876,7 @@ in
sources."json-stringify-safe-5.0.1"
sources."jsonfile-2.4.0"
sources."jsprim-1.4.1"
- (sources."katex-0.13.13" // {
+ (sources."katex-0.13.18" // {
dependencies = [
sources."commander-6.2.1"
];
@@ -93796,7 +93930,7 @@ in
sources."md5-2.3.0"
sources."md5-file-4.0.0"
sources."mdurl-1.0.1"
- sources."mermaid-8.12.0"
+ sources."mermaid-8.12.1"
sources."mime-db-1.49.0"
sources."mime-types-2.1.32"
sources."mimic-response-2.1.0"
@@ -93819,10 +93953,10 @@ in
sources."napi-build-utils-1.0.2"
sources."ndarray-1.0.19"
sources."ndarray-pack-1.2.1"
- sources."needle-2.9.0"
+ sources."needle-2.9.1"
sources."nextgen-events-1.5.2"
sources."no-case-2.3.2"
- (sources."node-abi-2.30.0" // {
+ (sources."node-abi-2.30.1" // {
dependencies = [
sources."semver-5.7.1"
];
@@ -93931,7 +94065,6 @@ in
sources."resolve-url-0.2.1"
sources."retry-0.10.1"
sources."rimraf-2.7.1"
- sources."robust-predicates-3.0.1"
sources."rw-1.3.3"
sources."safe-buffer-5.2.1"
sources."safer-buffer-2.1.2"
@@ -94035,7 +94168,7 @@ in
sources."toidentifier-1.0.0"
sources."tough-cookie-3.0.1"
sources."tr46-1.0.1"
- sources."tree-kit-0.7.0"
+ sources."tree-kit-0.7.1"
sources."tunnel-agent-0.6.0"
sources."tweetnacl-0.14.5"
sources."type-check-0.3.2"
@@ -94084,7 +94217,7 @@ in
];
})
sources."wrappy-1.0.2"
- sources."ws-7.5.3"
+ sources."ws-7.5.4"
sources."xml-name-validator-3.0.0"
sources."xml2js-0.4.23"
sources."xmlbuilder-11.0.1"
@@ -94175,7 +94308,7 @@ in
sha512 = "sxKt7h0vzCd+3Y81Ey2qinupL6DpRSZJclS04ugHDNmRUXGzqicMJ6iwayhSA0S0DwwX30c5ozyUthr1QKF6uw==";
};
dependencies = [
- sources."@babel/parser-7.15.3"
+ sources."@babel/parser-7.15.5"
sources."argparse-1.0.10"
sources."bluebird-3.7.2"
sources."catharsis-0.9.0"
@@ -94223,7 +94356,7 @@ in
sources."cli-1.0.1"
sources."concat-map-0.0.1"
sources."console-browserify-1.1.0"
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."date-now-0.1.4"
(sources."dom-serializer-0.2.2" // {
dependencies = [
@@ -94320,7 +94453,7 @@ in
sources."commander-4.1.1"
sources."component-emitter-1.3.0"
sources."cookiejar-2.1.2"
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."debug-3.2.7"
sources."delayed-stream-1.0.0"
sources."esprima-4.0.1"
@@ -94730,7 +94863,7 @@ in
sources."cookie-0.4.0"
sources."cookie-signature-1.0.6"
sources."copy-descriptor-0.1.1"
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."cors-2.8.5"
sources."create-error-class-3.0.2"
sources."dashdash-1.14.1"
@@ -95173,7 +95306,11 @@ in
sources."uuid-3.4.0"
sources."validate-npm-package-license-3.0.4"
sources."vary-1.1.2"
- sources."verror-1.10.0"
+ (sources."verror-1.10.0" // {
+ dependencies = [
+ sources."core-util-is-1.0.2"
+ ];
+ })
sources."which-module-1.0.0"
sources."widest-line-1.0.0"
sources."window-size-0.2.0"
@@ -95216,7 +95353,7 @@ in
sources."tslib-2.3.1"
];
})
- (sources."@oclif/core-0.5.32" // {
+ (sources."@oclif/core-0.5.35" // {
dependencies = [
sources."fs-extra-9.1.0"
sources."jsonfile-6.1.0"
@@ -95239,7 +95376,7 @@ in
sources."@oclif/screen-1.0.4"
(sources."@putdotio/api-client-8.17.0" // {
dependencies = [
- sources."axios-0.21.1"
+ sources."axios-0.21.4"
];
})
sources."ajv-6.12.6"
@@ -95326,7 +95463,7 @@ in
})
sources."fill-range-7.0.1"
sources."find-up-3.0.0"
- sources."follow-redirects-1.14.2"
+ sources."follow-redirects-1.14.3"
sources."form-data-3.0.1"
sources."fs-extra-8.1.0"
sources."function-bind-1.1.1"
@@ -95454,10 +95591,10 @@ in
katex = nodeEnv.buildNodePackage {
name = "katex";
packageName = "katex";
- version = "0.13.13";
+ version = "0.13.18";
src = fetchurl {
- url = "https://registry.npmjs.org/katex/-/katex-0.13.13.tgz";
- sha512 = "cCMcil4jwMm7behpXGiQfXJA29sko/Gd/26iCsr53Dv5Jn2iHbHyEb14dm9uVrIijUXx6Zz1WhlFhHE6DckvkQ==";
+ url = "https://registry.npmjs.org/katex/-/katex-0.13.18.tgz";
+ sha512 = "a3dC4NSVSDU3O1WZbTnOiA8rVNJ2lSiomOl0kmckCIGObccIHXof7gAseIY0o1gjEspe+34ZeSEX2D1ChFKIvA==";
};
dependencies = [
sources."commander-6.2.1"
@@ -95484,7 +95621,7 @@ in
sources."@types/component-emitter-1.2.10"
sources."@types/cookie-0.4.1"
sources."@types/cors-2.8.12"
- sources."@types/node-16.7.2"
+ sources."@types/node-16.7.13"
sources."accepts-1.3.7"
sources."ansi-regex-5.0.0"
sources."ansi-styles-4.3.0"
@@ -95523,7 +95660,7 @@ in
sources."ms-2.1.2"
];
})
- sources."engine.io-parser-4.0.2"
+ sources."engine.io-parser-4.0.3"
sources."ent-2.2.0"
sources."escalade-3.1.1"
sources."escape-html-1.0.3"
@@ -95532,7 +95669,7 @@ in
sources."fill-range-7.0.1"
sources."finalhandler-1.1.2"
sources."flatted-2.0.2"
- sources."follow-redirects-1.14.2"
+ sources."follow-redirects-1.14.3"
sources."fs-extra-8.1.0"
sources."fs.realpath-1.0.0"
sources."fsevents-2.3.2"
@@ -95638,262 +95775,404 @@ in
keyoxide = nodeEnv.buildNodePackage {
name = "keyoxide";
packageName = "keyoxide";
- version = "0.3.0";
+ version = "0.4.2";
src = fetchurl {
- url = "https://registry.npmjs.org/keyoxide/-/keyoxide-0.3.0.tgz";
- sha512 = "LTy8I1D5hkQptMCy7XdSEY7GB5QG8TzOgp28D9B/XNt/wKKr2hRwrcW1eLGzazJQkMrdVg2AASLpgmFzPpVPrw==";
+ url = "https://registry.npmjs.org/keyoxide/-/keyoxide-0.4.2.tgz";
+ sha512 = "JErcr+qnJbmS7ZwHlm5mFKzM162WtALhxaTdkr1SDhi8oS+hSVAniGACqIFfMNvGhODGh6iBipOpMVykAYKfNw==";
};
dependencies = [
- sources."JSONStream-1.3.5"
- sources."acorn-7.4.1"
- sources."acorn-node-1.8.2"
+ sources."@babel/cli-7.15.4"
+ sources."@babel/code-frame-7.14.5"
+ sources."@babel/compat-data-7.15.0"
+ (sources."@babel/core-7.15.5" // {
+ dependencies = [
+ sources."semver-6.3.0"
+ ];
+ })
+ sources."@babel/generator-7.15.4"
+ sources."@babel/helper-annotate-as-pure-7.15.4"
+ (sources."@babel/helper-compilation-targets-7.15.4" // {
+ dependencies = [
+ sources."semver-6.3.0"
+ ];
+ })
+ sources."@babel/helper-function-name-7.15.4"
+ sources."@babel/helper-get-function-arity-7.15.4"
+ sources."@babel/helper-hoist-variables-7.15.4"
+ sources."@babel/helper-member-expression-to-functions-7.15.4"
+ sources."@babel/helper-module-imports-7.15.4"
+ sources."@babel/helper-module-transforms-7.15.4"
+ sources."@babel/helper-optimise-call-expression-7.15.4"
+ sources."@babel/helper-plugin-utils-7.14.5"
+ sources."@babel/helper-replace-supers-7.15.4"
+ sources."@babel/helper-simple-access-7.15.4"
+ sources."@babel/helper-split-export-declaration-7.15.4"
+ sources."@babel/helper-validator-identifier-7.14.9"
+ sources."@babel/helper-validator-option-7.14.5"
+ sources."@babel/helpers-7.15.4"
+ sources."@babel/highlight-7.14.5"
+ sources."@babel/node-7.15.4"
+ sources."@babel/parser-7.15.5"
+ sources."@babel/plugin-syntax-jsx-7.14.5"
+ sources."@babel/plugin-transform-react-jsx-7.14.9"
+ sources."@babel/register-7.15.3"
+ sources."@babel/template-7.15.4"
+ sources."@babel/traverse-7.15.4"
+ sources."@babel/types-7.15.4"
+ sources."@tootallnate/once-1.1.2"
+ sources."@xmpp/base64-0.12.1"
+ sources."@xmpp/client-0.12.1"
+ sources."@xmpp/client-core-0.12.1"
+ sources."@xmpp/connection-0.12.1"
+ sources."@xmpp/connection-tcp-0.12.1"
+ sources."@xmpp/debug-0.12.1"
+ sources."@xmpp/error-0.12.1"
+ sources."@xmpp/events-0.12.1"
+ sources."@xmpp/id-0.12.1"
+ sources."@xmpp/iq-0.12.1"
+ sources."@xmpp/jid-0.12.1"
+ sources."@xmpp/middleware-0.12.1"
+ sources."@xmpp/reconnect-0.12.1"
+ sources."@xmpp/resolve-0.12.1"
+ sources."@xmpp/resource-binding-0.12.1"
+ sources."@xmpp/sasl-0.12.1"
+ sources."@xmpp/sasl-anonymous-0.12.1"
+ sources."@xmpp/sasl-plain-0.12.1"
+ sources."@xmpp/sasl-scram-sha-1-0.12.1"
+ sources."@xmpp/session-establishment-0.12.1"
+ sources."@xmpp/starttls-0.12.1"
+ sources."@xmpp/stream-features-0.12.1"
+ sources."@xmpp/stream-management-0.12.1"
+ sources."@xmpp/tcp-0.12.1"
+ sources."@xmpp/tls-0.12.1"
+ sources."@xmpp/websocket-0.12.1"
+ sources."@xmpp/xml-0.12.1"
+ sources."abab-2.0.5"
+ sources."accepts-1.3.7"
+ sources."acorn-8.5.0"
+ (sources."acorn-globals-6.0.0" // {
+ dependencies = [
+ sources."acorn-7.4.1"
+ ];
+ })
sources."acorn-walk-7.2.0"
+ sources."agent-base-6.0.2"
sources."ansi-colors-4.1.1"
sources."ansi-regex-5.0.0"
- sources."ansi-styles-4.3.0"
- (sources."asn1.js-5.4.1" // {
- dependencies = [
- sources."bn.js-4.12.0"
- ];
- })
- (sources."assert-1.5.0" // {
- dependencies = [
- sources."inherits-2.0.1"
- sources."util-0.10.3"
- ];
- })
- sources."available-typed-arrays-1.0.4"
+ sources."ansi-styles-3.2.1"
+ sources."array-flatten-1.1.1"
+ sources."asn1.js-5.4.1"
+ sources."asynckit-0.4.0"
+ sources."babel-plugin-jsx-pragmatic-1.0.2"
+ sources."babel-plugin-syntax-jsx-6.18.0"
sources."balanced-match-1.0.2"
- sources."base64-js-1.5.1"
+ sources."base-64-1.0.0"
sources."bent-7.3.12"
- sources."bn.js-5.2.0"
- sources."brace-expansion-1.1.11"
- sources."brorand-1.1.0"
- sources."browser-pack-6.1.0"
- sources."browser-resolve-2.0.0"
- sources."browserify-17.0.0"
- sources."browserify-aes-1.2.0"
- sources."browserify-cipher-1.0.1"
- sources."browserify-des-1.0.2"
- sources."browserify-rsa-4.1.0"
- (sources."browserify-sign-4.2.1" // {
+ sources."bitwise-xor-0.0.0"
+ sources."bn.js-4.12.0"
+ (sources."body-parser-1.19.0" // {
dependencies = [
- sources."readable-stream-3.6.0"
+ sources."debug-2.6.9"
+ sources."ms-2.0.0"
];
})
- sources."browserify-zlib-0.2.0"
- sources."buffer-5.2.1"
+ sources."brace-expansion-1.1.11"
+ sources."browser-or-node-1.3.0"
+ sources."browser-process-hrtime-1.0.0"
+ sources."browserslist-4.17.0"
sources."buffer-from-1.1.2"
- sources."buffer-xor-1.0.3"
- sources."builtin-status-codes-3.0.0"
+ sources."bytes-3.1.0"
sources."bytesish-0.4.4"
- sources."cached-path-relative-1.0.2"
sources."call-bind-1.0.2"
+ sources."caniuse-lite-1.0.30001255"
sources."caseless-0.12.0"
+ sources."chalk-2.4.2"
+ sources."chardet-1.3.0"
sources."cipher-base-1.0.4"
sources."cliui-7.0.4"
- sources."color-convert-2.0.1"
- sources."color-name-1.1.4"
- sources."combine-source-map-0.8.0"
+ sources."clone-deep-4.0.1"
+ sources."color-convert-1.9.3"
+ sources."color-name-1.1.3"
+ sources."colorette-1.4.0"
+ sources."combined-stream-1.0.8"
+ sources."commander-4.1.1"
+ sources."commondir-1.0.1"
sources."concat-map-0.0.1"
- sources."concat-stream-1.6.2"
- sources."console-browserify-1.2.0"
- sources."constants-browserify-1.0.0"
- sources."convert-source-map-1.1.3"
- sources."core-util-is-1.0.2"
- (sources."create-ecdh-4.0.4" // {
- dependencies = [
- sources."bn.js-4.12.0"
- ];
- })
+ sources."content-disposition-0.5.3"
+ sources."content-type-1.0.4"
+ sources."convert-source-map-1.8.0"
+ sources."cookie-0.4.0"
+ sources."cookie-signature-1.0.6"
+ sources."core-js-3.17.2"
+ sources."cors-2.8.5"
sources."create-hash-1.2.0"
sources."create-hmac-1.1.7"
- sources."crypto-browserify-3.12.0"
- sources."dash-ast-1.0.0"
+ sources."cssom-0.4.4"
+ (sources."cssstyle-2.3.0" // {
+ dependencies = [
+ sources."cssom-0.3.8"
+ ];
+ })
+ sources."data-urls-2.0.0"
+ sources."debug-4.3.2"
+ sources."decimal.js-10.3.1"
sources."decode-uri-component-0.2.0"
+ sources."deep-is-0.1.4"
sources."define-properties-1.1.3"
- sources."defined-1.0.0"
- sources."deps-sort-2.0.1"
- sources."des.js-1.0.1"
- sources."detective-5.2.0"
- (sources."diffie-hellman-5.0.3" // {
+ sources."delayed-stream-1.0.0"
+ sources."depd-1.1.2"
+ sources."destroy-1.0.4"
+ sources."doipjs-0.13.0"
+ (sources."domexception-2.0.1" // {
dependencies = [
- sources."bn.js-4.12.0"
- ];
- })
- sources."doipjs-0.11.2"
- sources."domain-browser-1.2.0"
- sources."duplexer2-0.1.4"
- (sources."elliptic-6.5.4" // {
- dependencies = [
- sources."bn.js-4.12.0"
+ sources."webidl-conversions-5.0.0"
];
})
+ sources."dotenv-8.6.0"
+ sources."ee-first-1.1.1"
+ sources."electron-to-chromium-1.3.832"
sources."emoji-regex-8.0.0"
+ sources."encodeurl-1.0.2"
sources."enquirer-2.3.6"
- sources."es-abstract-1.18.5"
+ sources."es-abstract-1.18.6"
sources."es-to-primitive-1.2.1"
sources."escalade-3.1.1"
+ sources."escape-html-1.0.3"
+ sources."escape-string-regexp-1.0.5"
+ (sources."escodegen-2.0.0" // {
+ dependencies = [
+ sources."source-map-0.6.1"
+ ];
+ })
+ sources."esprima-4.0.1"
+ sources."estraverse-5.2.0"
+ sources."esutils-2.0.3"
+ sources."etag-1.8.1"
sources."events-3.3.0"
- sources."evp_bytestokey-1.0.3"
- sources."fast-safe-stringify-2.0.8"
+ (sources."express-4.17.1" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ sources."ms-2.0.0"
+ ];
+ })
+ sources."express-validator-6.12.1"
+ sources."fast-levenshtein-2.0.6"
sources."filter-obj-1.1.0"
- sources."foreach-2.0.5"
+ (sources."finalhandler-1.1.2" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ sources."ms-2.0.0"
+ ];
+ })
+ sources."find-cache-dir-2.1.0"
+ sources."find-up-3.0.0"
+ sources."form-data-3.0.1"
+ sources."forwarded-0.2.0"
+ sources."fresh-0.5.2"
+ sources."fs-readdir-recursive-1.1.0"
sources."fs.realpath-1.0.0"
sources."function-bind-1.1.1"
- sources."get-assigned-identifiers-1.2.0"
+ sources."gensync-1.0.0-beta.2"
sources."get-caller-file-2.0.5"
sources."get-intrinsic-1.1.1"
+ sources."get-symbol-description-1.0.0"
sources."glob-7.1.7"
+ sources."globals-11.12.0"
sources."graceful-fs-4.2.8"
sources."has-1.0.3"
sources."has-bigints-1.0.1"
+ sources."has-flag-3.0.0"
sources."has-symbols-1.0.2"
sources."has-tostringtag-1.0.0"
(sources."hash-base-3.1.0" // {
dependencies = [
- sources."readable-stream-3.6.0"
+ sources."safe-buffer-5.2.1"
];
})
- sources."hash.js-1.1.7"
- sources."hmac-drbg-1.0.1"
- sources."htmlescape-1.1.1"
- sources."https-browserify-1.0.0"
- sources."ieee754-1.2.1"
+ 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-proxy-agent-4.0.1"
+ sources."https-proxy-agent-5.0.0"
+ sources."iconv-lite-0.4.24"
sources."imurmurhash-0.1.4"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
- sources."inline-source-map-0.6.2"
- sources."insert-module-globals-7.2.1"
sources."internal-slot-1.0.3"
- sources."is-arguments-1.1.1"
+ sources."ipaddr.js-1.9.1"
+ sources."irc-colors-1.5.0"
+ (sources."irc-upd-0.11.0" // {
+ dependencies = [
+ sources."iconv-lite-0.6.3"
+ ];
+ })
sources."is-bigint-1.0.4"
sources."is-boolean-object-1.1.2"
- sources."is-buffer-1.1.6"
sources."is-callable-1.2.4"
- sources."is-core-module-2.6.0"
sources."is-date-object-1.0.5"
sources."is-fullwidth-code-point-3.0.0"
- sources."is-generator-function-1.0.10"
sources."is-negative-zero-2.0.1"
sources."is-number-object-1.0.6"
sources."is-plain-obj-2.1.0"
+ sources."is-plain-object-2.0.4"
+ sources."is-potential-custom-element-name-1.0.1"
sources."is-regex-1.1.4"
sources."is-stream-2.0.1"
sources."is-string-1.0.7"
sources."is-symbol-1.0.4"
- sources."is-typed-array-1.1.7"
- sources."isarray-1.0.0"
- sources."jsonparse-1.3.1"
- sources."labeled-stream-splicer-2.0.2"
- sources."lodash.memoize-3.0.4"
- sources."md5.js-1.3.5"
- sources."merge-options-3.0.4"
- (sources."miller-rabin-4.0.1" // {
+ sources."isobject-3.0.1"
+ sources."js-tokens-4.0.0"
+ (sources."jsdom-16.7.0" // {
dependencies = [
- sources."bn.js-4.12.0"
+ sources."ws-7.5.4"
];
})
+ sources."jsesc-2.5.2"
+ sources."json5-2.2.0"
+ sources."kind-of-6.0.3"
+ sources."koa-compose-4.2.0"
+ sources."levn-0.3.0"
+ sources."locate-path-3.0.0"
+ sources."lodash-4.17.21"
+ sources."ltx-2.10.0"
+ sources."make-dir-2.1.0"
+ sources."md5.js-1.3.5"
+ sources."media-typer-0.3.0"
+ sources."merge-descriptors-1.0.1"
+ sources."merge-options-3.0.4"
+ sources."methods-1.1.2"
+ sources."mime-1.6.0"
+ sources."mime-db-1.49.0"
+ sources."mime-types-2.1.32"
sources."minimalistic-assert-1.0.1"
- sources."minimalistic-crypto-utils-1.0.1"
sources."minimatch-3.0.4"
sources."minimist-1.2.5"
- sources."mkdirp-classic-0.5.3"
- sources."module-deps-6.2.3"
- sources."node-fetch-2.6.1"
+ sources."ms-2.1.2"
+ sources."negotiator-0.6.2"
+ sources."node-environment-flags-1.0.6"
+ sources."node-fetch-2.6.2"
sources."node-localstorage-1.3.1"
+ sources."node-modules-regexp-1.0.0"
+ sources."node-releases-1.1.75"
+ sources."nwsapi-2.2.0"
sources."object-assign-4.1.1"
sources."object-inspect-1.11.0"
sources."object-keys-1.1.1"
sources."object.assign-4.1.2"
+ sources."object.getownpropertydescriptors-2.1.2"
+ sources."on-finished-2.3.0"
sources."once-1.4.0"
sources."openpgp-4.10.10"
- sources."os-browserify-0.3.0"
- sources."pako-1.0.11"
- sources."parents-1.0.1"
- sources."parse-asn1-5.1.6"
- sources."path-browserify-1.0.1"
+ sources."optionator-0.8.3"
+ sources."p-limit-2.3.0"
+ sources."p-locate-3.0.0"
+ sources."p-try-2.2.0"
+ sources."parse-passwd-1.0.0"
+ sources."parse5-6.0.1"
+ sources."parseurl-1.3.3"
+ sources."path-exists-3.0.0"
sources."path-is-absolute-1.0.1"
- sources."path-parse-1.0.7"
- sources."path-platform-0.11.15"
- sources."pbkdf2-3.1.2"
- sources."prettier-2.3.2"
- sources."process-0.11.10"
- sources."process-nextick-args-2.0.1"
- (sources."public-encrypt-4.0.3" // {
- dependencies = [
- sources."bn.js-4.12.0"
- ];
- })
- sources."punycode-1.4.1"
+ sources."path-to-regexp-0.1.7"
+ sources."pify-4.0.1"
+ sources."pirates-4.0.1"
+ sources."pkg-dir-3.0.0"
+ sources."prelude-ls-1.1.2"
+ sources."proxy-addr-2.0.7"
+ sources."psl-1.8.0"
+ sources."punycode-2.1.1"
+ sources."qs-6.7.0"
sources."query-string-6.14.1"
- sources."querystring-0.2.0"
- sources."querystring-es3-0.2.1"
sources."randombytes-2.1.0"
- sources."randomfill-1.0.4"
- sources."read-only-stream-2.0.0"
- (sources."readable-stream-2.3.7" // {
+ sources."range-parser-1.2.1"
+ sources."raw-body-2.4.0"
+ sources."readable-stream-3.6.0"
+ sources."regenerator-runtime-0.13.9"
+ sources."require-directory-2.1.1"
+ sources."ripemd160-2.0.2"
+ sources."safe-buffer-5.1.2"
+ sources."safer-buffer-2.1.2"
+ sources."sasl-anonymous-0.1.0"
+ sources."sasl-plain-0.1.0"
+ sources."sasl-scram-sha-1-1.2.1"
+ sources."saslmechanisms-0.1.1"
+ sources."saxes-5.0.1"
+ sources."semver-5.7.1"
+ (sources."send-0.17.1" // {
dependencies = [
- sources."safe-buffer-5.1.2"
- sources."string_decoder-1.1.1"
+ (sources."debug-2.6.9" // {
+ dependencies = [
+ sources."ms-2.0.0"
+ ];
+ })
+ sources."ms-2.1.1"
];
})
- sources."require-directory-2.1.1"
- sources."resolve-1.20.0"
- sources."ripemd160-2.0.2"
- sources."safe-buffer-5.2.1"
- sources."safer-buffer-2.1.2"
+ sources."serve-static-1.14.1"
+ sources."setprototypeof-1.1.1"
sources."sha.js-2.4.11"
- sources."shasum-object-1.0.0"
- sources."shell-quote-1.7.2"
+ sources."shallow-clone-3.0.1"
sources."side-channel-1.0.4"
- sources."simple-concat-1.0.1"
+ sources."slash-2.0.0"
sources."slide-1.1.6"
sources."source-map-0.5.7"
+ (sources."source-map-support-0.5.19" // {
+ dependencies = [
+ sources."source-map-0.6.1"
+ ];
+ })
sources."split-on-first-1.1.0"
- (sources."stream-browserify-3.0.0" // {
- dependencies = [
- sources."readable-stream-3.6.0"
- ];
- })
- sources."stream-combiner2-1.1.1"
- (sources."stream-http-3.2.0" // {
- dependencies = [
- sources."readable-stream-3.6.0"
- ];
- })
- sources."stream-splicer-2.0.1"
+ sources."statuses-1.5.0"
sources."strict-uri-encode-2.0.0"
sources."string-width-4.2.2"
sources."string.prototype.trimend-1.0.4"
sources."string.prototype.trimstart-1.0.4"
- sources."string_decoder-1.3.0"
- sources."strip-ansi-6.0.0"
- sources."subarg-1.0.0"
- sources."syntax-error-1.4.0"
- sources."through-2.3.8"
- sources."through2-2.0.5"
- sources."timers-browserify-1.4.2"
- sources."tty-browserify-0.0.1"
- sources."typedarray-0.0.6"
- sources."umd-3.0.3"
- sources."unbox-primitive-1.0.1"
- sources."undeclared-identifiers-1.1.3"
- (sources."url-0.11.0" // {
+ (sources."string_decoder-1.3.0" // {
dependencies = [
- sources."punycode-1.3.2"
+ sources."safe-buffer-5.2.1"
];
})
- sources."util-0.12.4"
+ sources."strip-ansi-6.0.0"
+ 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."tough-cookie-4.0.0"
+ sources."tr46-2.1.0"
+ sources."type-check-0.3.2"
+ sources."type-is-1.6.18"
+ sources."unbox-primitive-1.0.1"
+ sources."universalify-0.1.2"
+ sources."unpipe-1.0.0"
sources."util-deprecate-1.0.2"
+ sources."utils-merge-1.0.1"
+ sources."v8flags-3.2.0"
sources."valid-url-1.0.9"
- sources."vm-browserify-1.1.2"
+ sources."validator-13.6.0"
+ sources."vary-1.1.2"
+ sources."w3c-hr-time-1.0.2"
+ sources."w3c-xmlserializer-2.0.0"
+ sources."webidl-conversions-6.1.0"
+ sources."whatwg-encoding-1.0.5"
+ sources."whatwg-mimetype-2.3.0"
+ sources."whatwg-url-8.7.0"
sources."which-boxed-primitive-1.0.2"
- sources."which-typed-array-1.1.6"
- sources."wrap-ansi-7.0.0"
+ sources."word-wrap-1.2.3"
+ (sources."wrap-ansi-7.0.0" // {
+ dependencies = [
+ sources."ansi-styles-4.3.0"
+ sources."color-convert-2.0.1"
+ sources."color-name-1.1.4"
+ ];
+ })
sources."wrappy-1.0.2"
sources."write-file-atomic-1.3.4"
- sources."xtend-4.0.2"
+ sources."ws-8.2.1"
+ sources."xml-name-validator-3.0.0"
+ sources."xmlchars-2.2.0"
sources."y18n-5.0.8"
sources."yargs-16.2.0"
sources."yargs-parser-20.2.9"
@@ -95928,7 +96207,7 @@ in
sources."cloneable-readable-1.1.3"
sources."concat-map-0.0.1"
sources."convert-source-map-1.8.0"
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."define-properties-1.1.3"
sources."duplexify-3.7.1"
sources."end-of-stream-1.4.4"
@@ -96044,7 +96323,7 @@ in
sources."colors-1.4.0"
sources."combined-stream-1.0.8"
sources."concat-map-0.0.1"
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."cross-spawn-6.0.5"
sources."css-select-1.2.0"
sources."css-what-2.1.3"
@@ -96054,7 +96333,7 @@ in
sources."dashdash-1.14.1"
sources."decamelize-1.2.0"
sources."deep-equal-0.2.2"
- sources."deep-is-0.1.3"
+ sources."deep-is-0.1.4"
sources."defaults-1.0.3"
sources."delayed-stream-1.0.0"
sources."dom-serializer-0.1.1"
@@ -96214,7 +96493,11 @@ in
];
})
sources."uuid-3.4.0"
- sources."verror-1.10.0"
+ (sources."verror-1.10.0" // {
+ dependencies = [
+ sources."core-util-is-1.0.2"
+ ];
+ })
sources."wcwidth-1.0.1"
sources."webidl-conversions-2.0.1"
sources."whatwg-url-compat-0.6.5"
@@ -96301,7 +96584,7 @@ in
sources."colors-1.4.0"
sources."combined-stream-1.0.8"
sources."concat-map-0.0.1"
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."css-select-1.2.0"
sources."css-what-2.1.3"
sources."cssom-0.3.8"
@@ -96310,7 +96593,7 @@ in
sources."dashdash-1.14.1"
sources."decamelize-1.2.0"
sources."deep-equal-0.2.2"
- sources."deep-is-0.1.3"
+ sources."deep-is-0.1.4"
sources."defaults-1.0.3"
sources."delayed-stream-1.0.0"
sources."dom-serializer-0.1.1"
@@ -96450,7 +96733,11 @@ in
];
})
sources."uuid-3.4.0"
- sources."verror-1.10.0"
+ (sources."verror-1.10.0" // {
+ dependencies = [
+ sources."core-util-is-1.0.2"
+ ];
+ })
sources."wcwidth-1.0.1"
sources."webidl-conversions-2.0.1"
sources."whatwg-url-compat-0.6.5"
@@ -96634,20 +96921,20 @@ in
sources."is-plain-object-5.0.0"
];
})
- sources."@octokit/graphql-4.6.4"
- sources."@octokit/openapi-types-9.7.0"
+ sources."@octokit/graphql-4.8.0"
+ sources."@octokit/openapi-types-10.1.1"
sources."@octokit/plugin-enterprise-rest-6.0.1"
- sources."@octokit/plugin-paginate-rest-2.15.1"
+ sources."@octokit/plugin-paginate-rest-2.16.0"
sources."@octokit/plugin-request-log-1.0.4"
- sources."@octokit/plugin-rest-endpoint-methods-5.8.0"
+ sources."@octokit/plugin-rest-endpoint-methods-5.10.0"
(sources."@octokit/request-5.6.1" // {
dependencies = [
sources."is-plain-object-5.0.0"
];
})
sources."@octokit/request-error-2.1.0"
- sources."@octokit/rest-18.9.1"
- sources."@octokit/types-6.25.0"
+ sources."@octokit/rest-18.10.0"
+ sources."@octokit/types-6.27.0"
sources."@tootallnate/once-1.1.2"
sources."@types/minimatch-3.0.5"
sources."@types/minimist-1.2.2"
@@ -96668,7 +96955,7 @@ in
sources."ansi-regex-2.1.1"
sources."ansi-styles-4.3.0"
sources."aproba-2.0.0"
- (sources."are-we-there-yet-1.1.5" // {
+ (sources."are-we-there-yet-1.1.7" // {
dependencies = [
sources."readable-stream-2.3.7"
sources."safe-buffer-5.1.2"
@@ -96780,7 +97067,7 @@ in
sources."envinfo-7.8.1"
sources."err-code-2.0.3"
sources."error-ex-1.3.2"
- sources."es-abstract-1.18.5"
+ sources."es-abstract-1.18.6"
sources."es-to-primitive-1.2.1"
sources."escalade-3.1.1"
sources."escape-string-regexp-1.0.5"
@@ -96816,29 +97103,18 @@ in
})
sources."get-caller-file-2.0.5"
sources."get-intrinsic-1.1.1"
- (sources."get-pkg-repo-4.1.2" // {
+ (sources."get-pkg-repo-4.2.0" // {
dependencies = [
- sources."meow-7.1.1"
- (sources."read-pkg-5.2.0" // {
- dependencies = [
- sources."type-fest-0.6.0"
- ];
- })
- (sources."read-pkg-up-7.0.1" // {
- dependencies = [
- sources."type-fest-0.8.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."type-fest-0.13.1"
- sources."yargs-parser-18.1.3"
+ sources."yargs-17.1.1"
];
})
sources."get-port-5.1.1"
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-remote-origin-url-2.0.0" // {
@@ -96852,7 +97128,7 @@ in
];
})
sources."git-up-4.0.5"
- sources."git-url-parse-11.5.0"
+ sources."git-url-parse-11.6.0"
sources."gitconfiglocal-1.0.0"
sources."glob-7.1.7"
sources."glob-parent-5.1.2"
@@ -96893,7 +97169,7 @@ in
(sources."init-package-json-2.0.4" // {
dependencies = [
sources."normalize-package-data-3.0.3"
- sources."read-package-json-4.0.1"
+ sources."read-package-json-4.1.1"
];
})
(sources."inquirer-7.3.3" // {
@@ -97004,7 +97280,7 @@ in
})
sources."minipass-3.1.3"
sources."minipass-collect-1.0.2"
- sources."minipass-fetch-1.3.4"
+ sources."minipass-fetch-1.4.1"
sources."minipass-flush-1.0.5"
sources."minipass-json-stream-1.0.1"
sources."minipass-pipeline-1.2.4"
@@ -97018,7 +97294,7 @@ in
sources."mute-stream-0.0.8"
sources."negotiator-0.6.2"
sources."neo-async-2.6.2"
- sources."node-fetch-2.6.1"
+ sources."node-fetch-2.6.2"
sources."node-gyp-7.1.2"
sources."nopt-5.0.0"
(sources."normalize-package-data-2.5.0" // {
@@ -97211,7 +97487,7 @@ in
sources."type-fest-0.4.1"
sources."typedarray-0.0.6"
sources."typedarray-to-buffer-3.1.5"
- sources."uglify-js-3.14.1"
+ sources."uglify-js-3.14.2"
sources."uid-number-0.0.6"
sources."umask-1.1.0"
sources."unbox-primitive-1.0.1"
@@ -97300,7 +97576,7 @@ in
sources."make-dir-2.1.0"
sources."mime-1.6.0"
sources."ms-2.1.3"
- sources."needle-2.9.0"
+ sources."needle-2.9.1"
sources."parse-node-version-1.0.1"
sources."pify-4.0.1"
sources."prr-1.0.1"
@@ -97408,7 +97684,7 @@ in
sources."component-emitter-1.3.0"
sources."connect-3.7.0"
sources."copy-descriptor-0.1.1"
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."cors-2.8.5"
sources."debug-2.6.9"
sources."decode-uri-component-0.2.0"
@@ -97754,7 +98030,7 @@ in
sources."cookie-0.4.0"
sources."cookie-signature-1.0.6"
sources."copy-descriptor-0.1.1"
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."dashdash-1.14.1"
sources."debug-2.6.9"
sources."decode-uri-component-0.2.0"
@@ -98156,7 +98432,11 @@ in
sources."utils-merge-1.0.1"
sources."uuid-3.4.0"
sources."vary-1.1.2"
- sources."verror-1.10.0"
+ (sources."verror-1.10.0" // {
+ dependencies = [
+ sources."core-util-is-1.0.2"
+ ];
+ })
sources."ws-7.4.6"
sources."xmlhttprequest-ssl-1.6.3"
sources."yeast-0.1.2"
@@ -98179,43 +98459,43 @@ in
dependencies = [
sources."@babel/code-frame-7.14.5"
sources."@babel/compat-data-7.15.0"
- sources."@babel/core-7.15.0"
- sources."@babel/generator-7.15.0"
- sources."@babel/helper-annotate-as-pure-7.14.5"
- sources."@babel/helper-builder-binary-assignment-operator-visitor-7.14.5"
- sources."@babel/helper-compilation-targets-7.15.0"
- sources."@babel/helper-create-class-features-plugin-7.15.0"
+ sources."@babel/core-7.15.5"
+ sources."@babel/generator-7.15.4"
+ sources."@babel/helper-annotate-as-pure-7.15.4"
+ sources."@babel/helper-builder-binary-assignment-operator-visitor-7.15.4"
+ sources."@babel/helper-compilation-targets-7.15.4"
+ sources."@babel/helper-create-class-features-plugin-7.15.4"
sources."@babel/helper-create-regexp-features-plugin-7.14.5"
sources."@babel/helper-define-polyfill-provider-0.2.3"
- sources."@babel/helper-explode-assignable-expression-7.14.5"
- sources."@babel/helper-function-name-7.14.5"
- sources."@babel/helper-get-function-arity-7.14.5"
- sources."@babel/helper-hoist-variables-7.14.5"
- sources."@babel/helper-member-expression-to-functions-7.15.0"
- sources."@babel/helper-module-imports-7.14.5"
- sources."@babel/helper-module-transforms-7.15.0"
- sources."@babel/helper-optimise-call-expression-7.14.5"
+ sources."@babel/helper-explode-assignable-expression-7.15.4"
+ sources."@babel/helper-function-name-7.15.4"
+ sources."@babel/helper-get-function-arity-7.15.4"
+ sources."@babel/helper-hoist-variables-7.15.4"
+ sources."@babel/helper-member-expression-to-functions-7.15.4"
+ sources."@babel/helper-module-imports-7.15.4"
+ sources."@babel/helper-module-transforms-7.15.4"
+ sources."@babel/helper-optimise-call-expression-7.15.4"
sources."@babel/helper-plugin-utils-7.14.5"
- sources."@babel/helper-remap-async-to-generator-7.14.5"
- sources."@babel/helper-replace-supers-7.15.0"
- sources."@babel/helper-simple-access-7.14.8"
- sources."@babel/helper-skip-transparent-expression-wrappers-7.14.5"
- sources."@babel/helper-split-export-declaration-7.14.5"
+ sources."@babel/helper-remap-async-to-generator-7.15.4"
+ sources."@babel/helper-replace-supers-7.15.4"
+ sources."@babel/helper-simple-access-7.15.4"
+ sources."@babel/helper-skip-transparent-expression-wrappers-7.15.4"
+ sources."@babel/helper-split-export-declaration-7.15.4"
sources."@babel/helper-validator-identifier-7.14.9"
sources."@babel/helper-validator-option-7.14.5"
- sources."@babel/helper-wrap-function-7.14.5"
- sources."@babel/helpers-7.15.3"
+ sources."@babel/helper-wrap-function-7.15.4"
+ sources."@babel/helpers-7.15.4"
(sources."@babel/highlight-7.14.5" // {
dependencies = [
sources."chalk-2.4.2"
];
})
- sources."@babel/parser-7.15.3"
- sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.14.5"
+ sources."@babel/parser-7.15.5"
+ sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.15.4"
sources."@babel/plugin-external-helpers-7.8.3"
- sources."@babel/plugin-proposal-async-generator-functions-7.14.9"
+ sources."@babel/plugin-proposal-async-generator-functions-7.15.4"
sources."@babel/plugin-proposal-class-properties-7.14.5"
- sources."@babel/plugin-proposal-class-static-block-7.14.5"
+ sources."@babel/plugin-proposal-class-static-block-7.15.4"
sources."@babel/plugin-proposal-dynamic-import-7.14.5"
sources."@babel/plugin-proposal-export-namespace-from-7.14.5"
sources."@babel/plugin-proposal-json-strings-7.14.5"
@@ -98226,7 +98506,7 @@ in
sources."@babel/plugin-proposal-optional-catch-binding-7.14.5"
sources."@babel/plugin-proposal-optional-chaining-7.14.5"
sources."@babel/plugin-proposal-private-methods-7.14.5"
- sources."@babel/plugin-proposal-private-property-in-object-7.14.5"
+ sources."@babel/plugin-proposal-private-property-in-object-7.15.4"
sources."@babel/plugin-proposal-unicode-property-regex-7.14.5"
sources."@babel/plugin-syntax-async-generators-7.8.4"
sources."@babel/plugin-syntax-bigint-7.8.3"
@@ -98248,24 +98528,24 @@ in
sources."@babel/plugin-transform-async-to-generator-7.14.5"
sources."@babel/plugin-transform-block-scoped-functions-7.14.5"
sources."@babel/plugin-transform-block-scoping-7.15.3"
- sources."@babel/plugin-transform-classes-7.14.9"
+ sources."@babel/plugin-transform-classes-7.15.4"
sources."@babel/plugin-transform-computed-properties-7.14.5"
sources."@babel/plugin-transform-destructuring-7.14.7"
sources."@babel/plugin-transform-dotall-regex-7.14.5"
sources."@babel/plugin-transform-duplicate-keys-7.14.5"
sources."@babel/plugin-transform-exponentiation-operator-7.14.5"
- sources."@babel/plugin-transform-for-of-7.14.5"
+ sources."@babel/plugin-transform-for-of-7.15.4"
sources."@babel/plugin-transform-function-name-7.14.5"
sources."@babel/plugin-transform-literals-7.14.5"
sources."@babel/plugin-transform-member-expression-literals-7.14.5"
sources."@babel/plugin-transform-modules-amd-7.14.5"
- sources."@babel/plugin-transform-modules-commonjs-7.15.0"
- sources."@babel/plugin-transform-modules-systemjs-7.14.5"
+ sources."@babel/plugin-transform-modules-commonjs-7.15.4"
+ sources."@babel/plugin-transform-modules-systemjs-7.15.4"
sources."@babel/plugin-transform-modules-umd-7.14.5"
sources."@babel/plugin-transform-named-capturing-groups-regex-7.14.9"
sources."@babel/plugin-transform-new-target-7.14.5"
sources."@babel/plugin-transform-object-super-7.14.5"
- sources."@babel/plugin-transform-parameters-7.14.5"
+ sources."@babel/plugin-transform-parameters-7.15.4"
sources."@babel/plugin-transform-property-literals-7.14.5"
sources."@babel/plugin-transform-regenerator-7.14.5"
sources."@babel/plugin-transform-reserved-words-7.14.5"
@@ -98277,13 +98557,13 @@ in
sources."@babel/plugin-transform-typeof-symbol-7.14.5"
sources."@babel/plugin-transform-unicode-escapes-7.14.5"
sources."@babel/plugin-transform-unicode-regex-7.14.5"
- sources."@babel/preset-env-7.15.0"
+ sources."@babel/preset-env-7.15.4"
sources."@babel/preset-modules-0.1.4"
sources."@babel/preset-stage-2-7.8.3"
- sources."@babel/runtime-7.15.3"
- sources."@babel/template-7.14.5"
- sources."@babel/traverse-7.15.0"
- sources."@babel/types-7.15.0"
+ sources."@babel/runtime-7.15.4"
+ sources."@babel/template-7.15.4"
+ sources."@babel/traverse-7.15.4"
+ sources."@babel/types-7.15.4"
sources."@cnakazawa/watch-1.0.4"
sources."@comandeer/babel-plugin-banner-5.0.0"
sources."@istanbuljs/load-nyc-config-1.1.0"
@@ -98294,7 +98574,7 @@ in
];
})
sources."@jest/types-25.5.0"
- sources."@types/babel__core-7.1.15"
+ sources."@types/babel__core-7.1.16"
sources."@types/babel__generator-7.6.3"
sources."@types/babel__template-7.4.1"
sources."@types/babel__traverse-7.14.2"
@@ -98304,7 +98584,7 @@ in
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-16.7.2"
+ sources."@types/node-16.7.13"
sources."@types/normalize-package-data-2.4.1"
sources."@types/resolve-0.0.8"
sources."@types/yargs-15.0.14"
@@ -98461,7 +98741,7 @@ in
];
})
sources."browserify-zlib-0.2.0"
- sources."browserslist-4.16.8"
+ sources."browserslist-4.17.0"
sources."bser-2.1.1"
sources."buffer-5.2.1"
sources."buffer-from-1.1.2"
@@ -98477,7 +98757,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.30001252"
+ sources."caniuse-lite-1.0.30001255"
sources."capture-exit-2.0.0"
sources."caseless-0.12.0"
(sources."chalk-3.0.0" // {
@@ -98526,7 +98806,7 @@ in
sources."collection-visit-1.0.0"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
- sources."colorette-1.3.0"
+ sources."colorette-1.4.0"
sources."colors-1.4.0"
(sources."combine-source-map-0.8.0" // {
dependencies = [
@@ -98549,12 +98829,12 @@ in
})
sources."copy-descriptor-0.1.1"
sources."core-js-2.6.12"
- (sources."core-js-compat-3.16.3" // {
+ (sources."core-js-compat-3.17.2" // {
dependencies = [
sources."semver-7.0.0"
];
})
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
(sources."create-ecdh-4.0.4" // {
dependencies = [
sources."bn.js-4.12.0"
@@ -98601,7 +98881,7 @@ in
sources."duplexer2-0.1.4"
sources."duplexify-3.7.1"
sources."ecc-jsbn-0.1.2"
- sources."electron-to-chromium-1.3.818"
+ sources."electron-to-chromium-1.3.832"
(sources."elliptic-6.5.4" // {
dependencies = [
sources."bn.js-4.12.0"
@@ -98670,7 +98950,7 @@ in
sources."extsprintf-1.3.0"
sources."fast-deep-equal-3.1.3"
sources."fast-json-stable-stringify-2.1.0"
- sources."fast-safe-stringify-2.0.8"
+ sources."fast-safe-stringify-2.1.0"
sources."fb-watchman-2.0.1"
sources."figgy-pudding-3.5.2"
sources."file-uri-to-path-1.0.0"
@@ -98679,7 +98959,7 @@ in
sources."extend-shallow-2.0.1"
];
})
- sources."find-cache-dir-3.3.1"
+ sources."find-cache-dir-3.3.2"
sources."find-up-4.1.0"
(sources."findup-sync-3.0.0" // {
dependencies = [
@@ -98889,7 +99169,7 @@ in
sources."ncp-2.0.0"
sources."neo-async-2.6.2"
sources."nice-try-1.0.5"
- sources."node-fetch-2.6.1"
+ sources."node-fetch-2.6.2"
sources."node-int64-0.4.0"
(sources."node-libs-browser-2.2.1" // {
dependencies = [
@@ -99185,7 +99465,7 @@ in
sources."through-2.3.8"
sources."through2-2.0.5"
sources."timers-browserify-1.4.2"
- sources."tmpl-1.0.4"
+ sources."tmpl-1.0.5"
sources."to-arraybuffer-1.0.1"
sources."to-fast-properties-2.0.0"
(sources."to-object-path-0.3.0" // {
@@ -99239,7 +99519,11 @@ in
sources."uuid-3.4.0"
sources."v8-compile-cache-2.3.0"
sources."validate-npm-package-license-3.0.4"
- sources."verror-1.10.0"
+ (sources."verror-1.10.0" // {
+ dependencies = [
+ sources."core-util-is-1.0.2"
+ ];
+ })
sources."vinyl-2.2.1"
sources."vm-browserify-1.1.2"
sources."walker-1.0.7"
@@ -99541,14 +99825,14 @@ in
sources."combined-stream-1.0.8"
sources."concat-map-0.0.1"
sources."concat-stream-1.6.2"
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."d-1.0.1"
sources."dashdash-1.14.1"
sources."dateformat-2.2.0"
sources."deasync-0.1.20"
sources."debug-2.6.9"
sources."deep-extend-0.5.1"
- sources."deep-is-0.1.3"
+ sources."deep-is-0.1.4"
sources."delayed-stream-1.0.0"
sources."doctrine-2.1.0"
(sources."duplexer2-0.0.2" // {
@@ -99765,7 +100049,11 @@ in
sources."user-home-2.0.0"
sources."util-deprecate-1.0.2"
sources."uuid-3.4.0"
- sources."verror-1.10.0"
+ (sources."verror-1.10.0" // {
+ dependencies = [
+ sources."core-util-is-1.0.2"
+ ];
+ })
sources."vinyl-0.5.3"
sources."word-wrap-1.2.3"
sources."wrappy-1.0.2"
@@ -99842,14 +100130,14 @@ in
"@mermaid-js/mermaid-cli" = nodeEnv.buildNodePackage {
name = "_at_mermaid-js_slash_mermaid-cli";
packageName = "@mermaid-js/mermaid-cli";
- version = "8.11.5";
+ version = "8.12.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@mermaid-js/mermaid-cli/-/mermaid-cli-8.11.5.tgz";
- sha512 = "kvOJ9VkabUFEASC0yE7KiWT7e8t2OBb6cw4YOXctXRJtbxSubLSANpfSxuy+MuaR9JJCMWcqD6sYy8FmdaPiaQ==";
+ url = "https://registry.npmjs.org/@mermaid-js/mermaid-cli/-/mermaid-cli-8.12.1.tgz";
+ sha512 = "cgs55tY9sLgtt9/67J7rfDLN/IM5BbobduO3FrKXBKVVanXbMubeTztcpVTtIRYEfJLmn+c+nfmnkNKruN3k0w==";
};
dependencies = [
sources."@braintree/sanitize-url-3.1.0"
- sources."@types/node-16.7.2"
+ sources."@types/node-16.7.13"
sources."@types/yauzl-2.9.2"
sources."agent-base-6.0.2"
sources."ansi-styles-4.3.0"
@@ -99865,82 +100153,45 @@ in
sources."color-name-1.1.4"
sources."commander-8.1.0"
sources."concat-map-0.0.1"
- sources."d3-7.0.1"
- sources."d3-array-3.0.2"
- sources."d3-axis-3.0.0"
- sources."d3-brush-3.0.0"
- sources."d3-chord-3.0.1"
+ sources."d3-5.16.0"
+ sources."d3-array-1.2.4"
+ sources."d3-axis-1.0.12"
+ sources."d3-brush-1.1.6"
+ sources."d3-chord-1.0.6"
sources."d3-collection-1.0.7"
- sources."d3-color-3.0.1"
- sources."d3-contour-3.0.1"
- sources."d3-delaunay-6.0.2"
- sources."d3-dispatch-3.0.1"
- sources."d3-drag-3.0.0"
- (sources."d3-dsv-3.0.1" // {
- dependencies = [
- sources."commander-7.2.0"
- ];
- })
- sources."d3-ease-3.0.1"
- sources."d3-fetch-3.0.1"
- sources."d3-force-3.0.0"
- sources."d3-format-3.0.1"
- sources."d3-geo-3.0.1"
- sources."d3-hierarchy-3.0.1"
- sources."d3-interpolate-3.0.1"
- sources."d3-path-3.0.1"
- sources."d3-polygon-3.0.1"
- sources."d3-quadtree-3.0.1"
- sources."d3-random-3.0.1"
- sources."d3-scale-4.0.0"
- sources."d3-scale-chromatic-3.0.0"
- sources."d3-selection-3.0.0"
- sources."d3-shape-3.0.1"
- sources."d3-time-3.0.0"
- sources."d3-time-format-4.0.0"
- sources."d3-timer-3.0.1"
- sources."d3-transition-3.0.1"
- sources."d3-voronoi-1.1.4"
- sources."d3-zoom-3.0.0"
- sources."dagre-0.8.5"
- (sources."dagre-d3-0.6.4" // {
+ sources."d3-color-1.4.1"
+ sources."d3-contour-1.3.2"
+ sources."d3-dispatch-1.0.6"
+ sources."d3-drag-1.2.5"
+ (sources."d3-dsv-1.2.0" // {
dependencies = [
sources."commander-2.20.3"
- sources."d3-5.16.0"
- sources."d3-array-1.2.4"
- sources."d3-axis-1.0.12"
- sources."d3-brush-1.1.6"
- sources."d3-chord-1.0.6"
- sources."d3-color-1.4.1"
- sources."d3-contour-1.3.2"
- sources."d3-dispatch-1.0.6"
- sources."d3-drag-1.2.5"
- sources."d3-dsv-1.2.0"
- sources."d3-ease-1.0.7"
- sources."d3-fetch-1.2.0"
- sources."d3-force-1.2.1"
- sources."d3-format-1.4.5"
- sources."d3-geo-1.12.1"
- sources."d3-hierarchy-1.1.9"
- sources."d3-interpolate-1.4.0"
- sources."d3-path-1.0.9"
- sources."d3-polygon-1.0.6"
- sources."d3-quadtree-1.0.7"
- sources."d3-random-1.1.2"
- sources."d3-scale-2.2.2"
- sources."d3-scale-chromatic-1.5.0"
- sources."d3-selection-1.4.2"
- sources."d3-shape-1.3.7"
- sources."d3-time-1.1.0"
- sources."d3-time-format-2.3.0"
- sources."d3-timer-1.0.10"
- sources."d3-transition-1.3.2"
- sources."d3-zoom-1.8.3"
- sources."iconv-lite-0.4.24"
];
})
+ sources."d3-ease-1.0.7"
+ sources."d3-fetch-1.2.0"
+ sources."d3-force-1.2.1"
+ sources."d3-format-1.4.5"
+ sources."d3-geo-1.12.1"
+ sources."d3-hierarchy-1.1.9"
+ sources."d3-interpolate-1.4.0"
+ sources."d3-path-1.0.9"
+ sources."d3-polygon-1.0.6"
+ sources."d3-quadtree-1.0.7"
+ sources."d3-random-1.1.2"
+ sources."d3-scale-2.2.2"
+ sources."d3-scale-chromatic-1.5.0"
+ sources."d3-selection-1.4.2"
+ sources."d3-shape-1.3.7"
+ sources."d3-time-1.1.0"
+ sources."d3-time-format-2.3.0"
+ sources."d3-timer-1.0.10"
+ sources."d3-transition-1.3.2"
+ sources."d3-voronoi-1.1.4"
+ sources."d3-zoom-1.8.3"
+ sources."dagre-0.8.5"
+ sources."dagre-d3-0.6.4"
sources."debug-4.3.1"
- sources."delaunator-5.0.0"
sources."devtools-protocol-0.0.901419"
sources."dompurify-2.3.1"
sources."end-of-stream-1.4.4"
@@ -99954,15 +100205,14 @@ in
sources."graphlib-2.1.8"
sources."has-flag-4.0.0"
sources."https-proxy-agent-5.0.0"
- sources."iconv-lite-0.6.3"
+ sources."iconv-lite-0.4.24"
sources."ieee754-1.2.1"
sources."inflight-1.0.6"
sources."inherits-2.0.4"
- sources."internmap-2.0.1"
sources."khroma-1.4.1"
sources."locate-path-5.0.0"
sources."lodash-4.17.21"
- sources."mermaid-8.12.0"
+ sources."mermaid-8.12.1"
sources."minimatch-3.0.4"
sources."minimist-1.2.5"
sources."mkdirp-0.5.5"
@@ -99983,7 +100233,6 @@ in
sources."puppeteer-10.2.0"
sources."readable-stream-3.6.0"
sources."rimraf-3.0.2"
- sources."robust-predicates-3.0.1"
sources."rw-1.3.3"
sources."safe-buffer-5.2.1"
sources."safer-buffer-2.1.2"
@@ -100009,360 +100258,13 @@ in
bypassCache = true;
reconstructLock = true;
};
- mirakurun = nodeEnv.buildNodePackage {
- name = "mirakurun";
- packageName = "mirakurun";
- version = "3.9.0-beta.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/mirakurun/-/mirakurun-3.9.0-beta.2.tgz";
- sha512 = "67eI8su/4N6KvHKveYHYuimSIdk5gZug4mGPPkeSib+y9IHCnHK6LUwN28NMvsYQPYRVRfhk8Y76TfPV4dpzwQ==";
- };
- dependencies = [
- sources."@chinachu/aribts-1.3.5-mirakurun.3"
- sources."@fluentui/date-time-utilities-8.2.2"
- sources."@fluentui/dom-utilities-2.1.4"
- sources."@fluentui/font-icons-mdl2-8.1.10"
- sources."@fluentui/foundation-legacy-8.1.10"
- sources."@fluentui/keyboard-key-0.3.4"
- sources."@fluentui/merge-styles-8.1.5"
- sources."@fluentui/react-8.27.0"
- sources."@fluentui/react-focus-8.2.1"
- sources."@fluentui/react-hooks-8.3.1"
- sources."@fluentui/react-window-provider-2.1.4"
- sources."@fluentui/set-version-8.1.4"
- sources."@fluentui/style-utilities-8.3.1"
- sources."@fluentui/theme-2.3.1"
- sources."@fluentui/utilities-8.3.1"
- sources."@microsoft/load-themed-styles-1.10.203"
- sources."@napi-rs/triples-1.0.3"
- sources."@node-rs/crc32-1.2.1"
- sources."@node-rs/crc32-android-arm64-1.2.1"
- sources."@node-rs/crc32-darwin-arm64-1.2.1"
- sources."@node-rs/crc32-darwin-x64-1.2.1"
- sources."@node-rs/crc32-freebsd-x64-1.2.1"
- sources."@node-rs/crc32-linux-arm-gnueabihf-1.2.1"
- sources."@node-rs/crc32-linux-arm64-gnu-1.2.1"
- sources."@node-rs/crc32-linux-arm64-musl-1.2.1"
- sources."@node-rs/crc32-linux-x64-gnu-1.2.1"
- sources."@node-rs/crc32-linux-x64-musl-1.2.1"
- sources."@node-rs/crc32-win32-arm64-msvc-1.2.1"
- sources."@node-rs/crc32-win32-ia32-msvc-1.2.1"
- sources."@node-rs/crc32-win32-x64-msvc-1.2.1"
- sources."@node-rs/helper-1.2.1"
- sources."@sindresorhus/is-0.14.0"
- sources."@szmarczak/http-timer-1.1.2"
- sources."@types/node-16.7.2"
- sources."@types/uuid-3.4.10"
- sources."@types/ws-6.0.4"
- sources."accepts-1.3.7"
- sources."ajv-6.12.6"
- sources."ansi-escapes-1.4.0"
- sources."ansi-regex-2.1.1"
- sources."ansi-styles-2.2.1"
- sources."argparse-1.0.10"
- sources."array-flatten-1.1.1"
- sources."async-limiter-1.0.1"
- sources."babel-polyfill-6.23.0"
- (sources."babel-runtime-6.26.0" // {
- dependencies = [
- sources."regenerator-runtime-0.11.1"
- ];
- })
- sources."backo2-1.0.2"
- sources."balanced-match-1.0.2"
- sources."basic-auth-2.0.1"
- (sources."body-parser-1.19.0" // {
- dependencies = [
- sources."iconv-lite-0.4.24"
- ];
- })
- sources."brace-expansion-1.1.11"
- sources."buffer-from-1.1.2"
- sources."bufferutil-4.0.3"
- sources."builtin-status-codes-3.0.0"
- 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."chalk-1.1.3"
- sources."chardet-0.4.2"
- sources."cli-cursor-2.1.0"
- sources."cli-width-2.2.1"
- sources."clone-response-1.0.2"
- sources."colors-1.4.0"
- sources."concat-map-0.0.1"
- 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-2.6.12"
- sources."cors-2.8.5"
- sources."debug-2.6.9"
- sources."decompress-response-3.3.0"
- sources."deep-extend-0.6.0"
- sources."defer-to-connect-1.1.3"
- sources."depd-1.1.2"
- sources."destroy-1.0.4"
- sources."difunc-0.0.4"
- sources."dotenv-8.6.0"
- sources."duplexer3-0.1.4"
- sources."ee-first-1.1.1"
- sources."encodeurl-1.0.2"
- sources."encoding-0.1.13"
- sources."end-of-stream-1.4.4"
- sources."escape-html-1.0.3"
- sources."escape-string-regexp-1.0.5"
- sources."esprima-4.0.1"
- sources."etag-1.8.1"
- sources."eventemitter3-4.0.7"
- sources."express-4.17.1"
- sources."express-normalize-query-params-middleware-0.5.1"
- (sources."express-openapi-8.0.0" // {
- dependencies = [
- sources."openapi-types-8.0.0"
- ];
- })
- (sources."external-editor-2.2.0" // {
- dependencies = [
- sources."iconv-lite-0.4.24"
- ];
- })
- sources."fast-deep-equal-3.1.3"
- sources."fast-json-stable-stringify-2.1.0"
- sources."figures-2.0.0"
- sources."finalhandler-1.1.2"
- sources."forwarded-0.2.0"
- sources."fresh-0.5.2"
- sources."fs-routes-8.0.0"
- sources."fs.realpath-1.0.0"
- sources."get-stream-4.1.0"
- sources."glob-7.1.7"
- sources."got-9.6.0"
- sources."has-ansi-2.0.0"
- sources."http-cache-semantics-4.1.0"
- sources."http-errors-1.7.2"
- sources."iconv-lite-0.6.3"
- sources."inflight-1.0.6"
- sources."inherits-2.0.3"
- sources."ini-1.3.8"
- sources."inquirer-3.0.6"
- sources."ip-1.1.5"
- sources."ipaddr.js-1.9.1"
- sources."is-dir-1.0.0"
- sources."is-fullwidth-code-point-2.0.0"
- sources."is-stream-1.1.0"
- sources."isomorphic-ws-4.0.1"
- sources."js-tokens-4.0.0"
- (sources."js-yaml-4.1.0" // {
- dependencies = [
- sources."argparse-2.0.1"
- ];
- })
- sources."json-buffer-3.0.0"
- sources."json-schema-traverse-0.4.1"
- (sources."jsonrpc2-ws-1.0.0-beta9" // {
- dependencies = [
- sources."eventemitter3-3.1.2"
- ];
- })
- sources."keyv-3.1.0"
- sources."latest-version-5.1.0"
- sources."lodash-4.17.21"
- sources."lodash.merge-4.6.2"
- sources."loose-envify-1.4.0"
- sources."lowercase-keys-1.0.1"
- sources."lru-cache-6.0.0"
- sources."media-typer-0.3.0"
- sources."merge-descriptors-1.0.1"
- sources."methods-1.1.2"
- sources."mime-1.6.0"
- sources."mime-db-1.49.0"
- sources."mime-types-2.1.32"
- sources."mimic-fn-1.2.0"
- sources."mimic-response-1.0.1"
- sources."minimatch-3.0.4"
- sources."minimist-1.2.5"
- (sources."morgan-1.10.0" // {
- dependencies = [
- sources."depd-2.0.0"
- ];
- })
- sources."ms-2.0.0"
- sources."mute-stream-0.0.7"
- sources."negotiator-0.6.2"
- sources."node-fetch-1.6.3"
- sources."node-gyp-build-4.2.3"
- sources."normalize-url-4.5.1"
- sources."object-assign-4.1.1"
- sources."on-finished-2.3.0"
- sources."on-headers-1.0.2"
- sources."once-1.4.0"
- sources."onetime-2.0.1"
- (sources."openapi-default-setter-8.0.0" // {
- dependencies = [
- sources."openapi-types-8.0.0"
- ];
- })
- (sources."openapi-framework-8.0.0" // {
- dependencies = [
- sources."js-yaml-3.14.1"
- sources."openapi-types-8.0.0"
- ];
- })
- (sources."openapi-jsonschema-parameters-8.0.0" // {
- dependencies = [
- sources."openapi-types-8.0.0"
- ];
- })
- (sources."openapi-request-coercer-8.0.0" // {
- dependencies = [
- sources."openapi-types-8.0.0"
- ];
- })
- (sources."openapi-request-validator-8.0.0" // {
- dependencies = [
- sources."openapi-types-8.0.0"
- ];
- })
- (sources."openapi-response-validator-8.0.0" // {
- dependencies = [
- sources."openapi-types-8.0.0"
- ];
- })
- (sources."openapi-schema-validator-8.0.0" // {
- dependencies = [
- sources."openapi-types-8.0.0"
- ];
- })
- (sources."openapi-security-handler-8.0.0" // {
- dependencies = [
- sources."openapi-types-8.0.0"
- ];
- })
- sources."openapi-types-7.2.3"
- (sources."opencollective-1.0.3" // {
- dependencies = [
- sources."minimist-1.2.0"
- ];
- })
- sources."opencollective-postinstall-2.0.3"
- sources."opn-4.0.2"
- sources."os-tmpdir-1.0.2"
- sources."p-cancelable-1.1.0"
- (sources."package-json-6.5.0" // {
- dependencies = [
- sources."semver-6.3.0"
- ];
- })
- sources."parseurl-1.3.3"
- sources."path-is-absolute-1.0.1"
- sources."path-to-regexp-0.1.7"
- sources."pinkie-2.0.4"
- sources."pinkie-promise-2.0.1"
- sources."prepend-http-2.0.0"
- sources."promise-queue-2.2.5"
- sources."proxy-addr-2.0.7"
- sources."pump-3.0.0"
- sources."punycode-2.1.1"
- sources."qs-6.7.0"
- sources."range-parser-1.2.1"
- (sources."raw-body-2.4.0" // {
- dependencies = [
- sources."iconv-lite-0.4.24"
- ];
- })
- sources."rc-1.2.8"
- sources."react-17.0.2"
- sources."react-dom-17.0.2"
- sources."readable-stream-3.6.0"
- sources."regenerator-runtime-0.10.5"
- sources."registry-auth-token-4.2.1"
- sources."registry-url-5.1.0"
- sources."responselike-1.0.2"
- sources."restore-cursor-2.0.0"
- sources."rfdc-1.3.0"
- sources."run-async-2.4.1"
- sources."rx-4.1.0"
- sources."safe-buffer-5.1.2"
- sources."safer-buffer-2.1.2"
- sources."scheduler-0.20.2"
- sources."semver-7.3.5"
- (sources."send-0.17.1" // {
- dependencies = [
- sources."ms-2.1.1"
- ];
- })
- sources."serve-static-1.14.1"
- sources."setprototypeof-1.1.1"
- sources."sift-7.0.1"
- sources."signal-exit-3.0.3"
- sources."source-map-0.6.1"
- sources."source-map-support-0.5.19"
- sources."sprintf-js-1.0.3"
- sources."statuses-1.5.0"
- (sources."stream-http-3.2.0" // {
- dependencies = [
- sources."inherits-2.0.4"
- ];
- })
- (sources."string-width-2.1.1" // {
- dependencies = [
- sources."ansi-regex-3.0.0"
- sources."strip-ansi-4.0.0"
- ];
- })
- (sources."string_decoder-1.3.0" // {
- dependencies = [
- sources."safe-buffer-5.2.1"
- ];
- })
- sources."strip-ansi-3.0.1"
- sources."strip-json-comments-2.0.1"
- sources."supports-color-2.0.0"
- sources."swagger-schema-official-2.0.0-bab6bed"
- sources."swagger-ui-dist-3.51.2"
- sources."tail-2.2.3"
- sources."through-2.3.8"
- sources."tmp-0.0.33"
- sources."to-readable-stream-1.0.0"
- sources."toidentifier-1.0.0"
- sources."ts-log-2.2.3"
- sources."tslib-2.3.1"
- sources."type-is-1.6.18"
- sources."unpipe-1.0.0"
- sources."uri-js-4.4.1"
- sources."url-parse-lax-3.0.0"
- sources."utf-8-validate-5.0.5"
- sources."util-deprecate-1.0.2"
- sources."utils-merge-1.0.1"
- sources."uuid-3.4.0"
- sources."uws-9.148.0"
- sources."vary-1.1.2"
- sources."wrappy-1.0.2"
- sources."ws-6.2.2"
- sources."xtend-4.0.2"
- sources."yallist-4.0.0"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "Japanese DTV Tuner Server Service.";
- homepage = "https://github.com/Chinachu/Mirakurun";
- license = "Apache-2.0";
- };
- production = true;
- bypassCache = true;
- reconstructLock = true;
- };
mocha = nodeEnv.buildNodePackage {
name = "mocha";
packageName = "mocha";
- version = "9.1.0";
+ version = "9.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/mocha/-/mocha-9.1.0.tgz";
- sha512 = "Kjg/XxYOFFUi0h/FwMOeb6RoroiZ+P1yOfya6NK7h3dNhahrJx1r2XIT3ge4ZQvJM86mdjNA+W5phqRQh7DwCg==";
+ url = "https://registry.npmjs.org/mocha/-/mocha-9.1.1.tgz";
+ sha512 = "0wE74YMgOkCgBUj8VyIDwmLUjTsS13WV1Pg7l0SHea2qzZzlq7MDnfbPsHKcELBRk3+izEVkRofjmClpycudCA==";
};
dependencies = [
sources."@ungap/promise-all-settled-1.1.2"
@@ -100499,7 +100401,7 @@ in
sources."commander-2.20.3"
sources."component-emitter-1.3.0"
sources."cookiejar-2.1.2"
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."debug-3.2.7"
sources."delayed-stream-1.0.0"
sources."esprima-4.0.1"
@@ -100593,7 +100495,7 @@ in
sources."log-symbols-4.1.0"
sources."mimic-fn-2.1.0"
sources."mute-stream-0.0.8"
- sources."node-fetch-2.6.1"
+ sources."node-fetch-2.6.2"
sources."onetime-5.1.2"
sources."ora-5.4.1"
sources."os-tmpdir-1.0.2"
@@ -100644,11 +100546,11 @@ in
sources."colornames-1.1.1"
sources."colors-1.4.0"
sources."colorspace-1.1.2"
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."diagnostics-1.1.1"
sources."enabled-1.0.2"
sources."env-variable-0.0.6"
- sources."fast-safe-stringify-2.0.8"
+ sources."fast-safe-stringify-2.1.0"
sources."fecha-2.3.3"
sources."inherits-2.0.4"
sources."is-arrayish-0.3.2"
@@ -100689,52 +100591,52 @@ in
netlify-cli = nodeEnv.buildNodePackage {
name = "netlify-cli";
packageName = "netlify-cli";
- version = "6.7.6";
+ version = "6.8.8";
src = fetchurl {
- url = "https://registry.npmjs.org/netlify-cli/-/netlify-cli-6.7.6.tgz";
- sha512 = "yGdBrNqFPHRrIEcyRXseYt8NOPj7XWeMZiQ6ZGO4Zgkju6nSPnaI9Cxm0rBi7+92c9xU7yhtqY1Z+rs69jaLRw==";
+ url = "https://registry.npmjs.org/netlify-cli/-/netlify-cli-6.8.8.tgz";
+ sha512 = "yJeroGBn98WDbrl+Af1NUgOjFjEU+AYrHIlenEAytS4asfAX0PumF+/2qRlLegnVkLpr9iIMqUppcriCoMpiXQ==";
};
dependencies = [
sources."@babel/code-frame-7.14.5"
sources."@babel/compat-data-7.15.0"
- (sources."@babel/core-7.15.0" // {
+ (sources."@babel/core-7.15.5" // {
dependencies = [
sources."semver-6.3.0"
];
})
- sources."@babel/generator-7.15.0"
- sources."@babel/helper-annotate-as-pure-7.14.5"
- sources."@babel/helper-builder-binary-assignment-operator-visitor-7.14.5"
- (sources."@babel/helper-compilation-targets-7.15.0" // {
+ sources."@babel/generator-7.15.4"
+ sources."@babel/helper-annotate-as-pure-7.15.4"
+ sources."@babel/helper-builder-binary-assignment-operator-visitor-7.15.4"
+ (sources."@babel/helper-compilation-targets-7.15.4" // {
dependencies = [
sources."semver-6.3.0"
];
})
- sources."@babel/helper-create-class-features-plugin-7.15.0"
+ sources."@babel/helper-create-class-features-plugin-7.15.4"
sources."@babel/helper-create-regexp-features-plugin-7.14.5"
(sources."@babel/helper-define-polyfill-provider-0.2.3" // {
dependencies = [
sources."semver-6.3.0"
];
})
- sources."@babel/helper-explode-assignable-expression-7.14.5"
- sources."@babel/helper-function-name-7.14.5"
- sources."@babel/helper-get-function-arity-7.14.5"
- sources."@babel/helper-hoist-variables-7.14.5"
- sources."@babel/helper-member-expression-to-functions-7.15.0"
- sources."@babel/helper-module-imports-7.14.5"
- sources."@babel/helper-module-transforms-7.15.0"
- sources."@babel/helper-optimise-call-expression-7.14.5"
+ sources."@babel/helper-explode-assignable-expression-7.15.4"
+ sources."@babel/helper-function-name-7.15.4"
+ sources."@babel/helper-get-function-arity-7.15.4"
+ sources."@babel/helper-hoist-variables-7.15.4"
+ sources."@babel/helper-member-expression-to-functions-7.15.4"
+ sources."@babel/helper-module-imports-7.15.4"
+ sources."@babel/helper-module-transforms-7.15.4"
+ sources."@babel/helper-optimise-call-expression-7.15.4"
sources."@babel/helper-plugin-utils-7.14.5"
- sources."@babel/helper-remap-async-to-generator-7.14.5"
- sources."@babel/helper-replace-supers-7.15.0"
- sources."@babel/helper-simple-access-7.14.8"
- sources."@babel/helper-skip-transparent-expression-wrappers-7.14.5"
- sources."@babel/helper-split-export-declaration-7.14.5"
+ sources."@babel/helper-remap-async-to-generator-7.15.4"
+ sources."@babel/helper-replace-supers-7.15.4"
+ sources."@babel/helper-simple-access-7.15.4"
+ sources."@babel/helper-skip-transparent-expression-wrappers-7.15.4"
+ sources."@babel/helper-split-export-declaration-7.15.4"
sources."@babel/helper-validator-identifier-7.14.9"
sources."@babel/helper-validator-option-7.14.5"
- sources."@babel/helper-wrap-function-7.14.5"
- sources."@babel/helpers-7.15.3"
+ sources."@babel/helper-wrap-function-7.15.4"
+ sources."@babel/helpers-7.15.4"
(sources."@babel/highlight-7.14.5" // {
dependencies = [
sources."ansi-styles-3.2.1"
@@ -100745,11 +100647,11 @@ in
sources."supports-color-5.5.0"
];
})
- sources."@babel/parser-7.15.3"
- sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.14.5"
- sources."@babel/plugin-proposal-async-generator-functions-7.14.9"
+ sources."@babel/parser-7.15.5"
+ sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.15.4"
+ sources."@babel/plugin-proposal-async-generator-functions-7.15.4"
sources."@babel/plugin-proposal-class-properties-7.14.5"
- sources."@babel/plugin-proposal-class-static-block-7.14.5"
+ sources."@babel/plugin-proposal-class-static-block-7.15.4"
sources."@babel/plugin-proposal-dynamic-import-7.14.5"
sources."@babel/plugin-proposal-export-namespace-from-7.14.5"
sources."@babel/plugin-proposal-json-strings-7.14.5"
@@ -100760,7 +100662,7 @@ in
sources."@babel/plugin-proposal-optional-catch-binding-7.14.5"
sources."@babel/plugin-proposal-optional-chaining-7.14.5"
sources."@babel/plugin-proposal-private-methods-7.14.5"
- sources."@babel/plugin-proposal-private-property-in-object-7.14.5"
+ sources."@babel/plugin-proposal-private-property-in-object-7.15.4"
sources."@babel/plugin-proposal-unicode-property-regex-7.14.5"
sources."@babel/plugin-syntax-async-generators-7.8.4"
sources."@babel/plugin-syntax-class-properties-7.12.13"
@@ -100780,24 +100682,24 @@ in
sources."@babel/plugin-transform-async-to-generator-7.14.5"
sources."@babel/plugin-transform-block-scoped-functions-7.14.5"
sources."@babel/plugin-transform-block-scoping-7.15.3"
- sources."@babel/plugin-transform-classes-7.14.9"
+ sources."@babel/plugin-transform-classes-7.15.4"
sources."@babel/plugin-transform-computed-properties-7.14.5"
sources."@babel/plugin-transform-destructuring-7.14.7"
sources."@babel/plugin-transform-dotall-regex-7.14.5"
sources."@babel/plugin-transform-duplicate-keys-7.14.5"
sources."@babel/plugin-transform-exponentiation-operator-7.14.5"
- sources."@babel/plugin-transform-for-of-7.14.5"
+ sources."@babel/plugin-transform-for-of-7.15.4"
sources."@babel/plugin-transform-function-name-7.14.5"
sources."@babel/plugin-transform-literals-7.14.5"
sources."@babel/plugin-transform-member-expression-literals-7.14.5"
sources."@babel/plugin-transform-modules-amd-7.14.5"
- sources."@babel/plugin-transform-modules-commonjs-7.15.0"
- sources."@babel/plugin-transform-modules-systemjs-7.14.5"
+ sources."@babel/plugin-transform-modules-commonjs-7.15.4"
+ sources."@babel/plugin-transform-modules-systemjs-7.15.4"
sources."@babel/plugin-transform-modules-umd-7.14.5"
sources."@babel/plugin-transform-named-capturing-groups-regex-7.14.9"
sources."@babel/plugin-transform-new-target-7.14.5"
sources."@babel/plugin-transform-object-super-7.14.5"
- sources."@babel/plugin-transform-parameters-7.14.5"
+ sources."@babel/plugin-transform-parameters-7.15.4"
sources."@babel/plugin-transform-property-literals-7.14.5"
sources."@babel/plugin-transform-regenerator-7.14.5"
sources."@babel/plugin-transform-reserved-words-7.14.5"
@@ -100808,16 +100710,16 @@ in
sources."@babel/plugin-transform-typeof-symbol-7.14.5"
sources."@babel/plugin-transform-unicode-escapes-7.14.5"
sources."@babel/plugin-transform-unicode-regex-7.14.5"
- (sources."@babel/preset-env-7.15.0" // {
+ (sources."@babel/preset-env-7.15.4" // {
dependencies = [
sources."semver-6.3.0"
];
})
sources."@babel/preset-modules-0.1.4"
- sources."@babel/runtime-7.15.3"
- sources."@babel/template-7.14.5"
- sources."@babel/traverse-7.15.0"
- sources."@babel/types-7.15.0"
+ sources."@babel/runtime-7.15.4"
+ sources."@babel/template-7.15.4"
+ sources."@babel/traverse-7.15.4"
+ sources."@babel/types-7.15.4"
sources."@bugsnag/browser-7.11.0"
sources."@bugsnag/core-7.11.0"
sources."@bugsnag/cuid-3.0.0"
@@ -100827,7 +100729,7 @@ in
sources."@dabh/diagnostics-2.0.2"
sources."@jest/types-26.6.2"
sources."@mrmlnc/readdir-enhanced-2.2.1"
- (sources."@netlify/build-18.6.0" // {
+ (sources."@netlify/build-18.8.0" // {
dependencies = [
sources."resolve-2.0.0-next.3"
];
@@ -100839,7 +100741,7 @@ in
sources."slash-3.0.0"
];
})
- (sources."@netlify/config-15.5.0" // {
+ (sources."@netlify/config-15.6.0" // {
dependencies = [
sources."dot-prop-5.3.0"
];
@@ -100872,10 +100774,10 @@ in
sources."@netlify/open-api-2.5.0"
(sources."@netlify/plugin-edge-handlers-1.11.22" // {
dependencies = [
- sources."@types/node-14.17.12"
+ sources."@types/node-14.17.15"
];
})
- sources."@netlify/plugins-list-3.5.0"
+ sources."@netlify/plugins-list-3.6.0"
sources."@netlify/routing-local-proxy-0.31.0"
sources."@netlify/run-utils-2.0.1"
(sources."@netlify/zip-it-and-ship-it-4.20.0" // {
@@ -100939,7 +100841,7 @@ in
sources."tslib-2.3.1"
];
})
- (sources."@oclif/core-0.5.32" // {
+ (sources."@oclif/core-0.5.35" // {
dependencies = [
sources."@nodelib/fs.stat-2.0.5"
sources."ansi-styles-4.3.0"
@@ -101015,19 +100917,19 @@ in
sources."is-plain-object-5.0.0"
];
})
- sources."@octokit/graphql-4.6.4"
- sources."@octokit/openapi-types-9.7.0"
- sources."@octokit/plugin-paginate-rest-2.15.1"
+ sources."@octokit/graphql-4.8.0"
+ sources."@octokit/openapi-types-10.1.1"
+ sources."@octokit/plugin-paginate-rest-2.16.0"
sources."@octokit/plugin-request-log-1.0.4"
- sources."@octokit/plugin-rest-endpoint-methods-5.8.0"
+ sources."@octokit/plugin-rest-endpoint-methods-5.10.0"
(sources."@octokit/request-5.6.1" // {
dependencies = [
sources."is-plain-object-5.0.0"
];
})
sources."@octokit/request-error-2.1.0"
- sources."@octokit/rest-18.9.1"
- sources."@octokit/types-6.25.0"
+ sources."@octokit/rest-18.10.0"
+ sources."@octokit/types-6.27.0"
sources."@rollup/plugin-babel-5.3.0"
(sources."@rollup/plugin-commonjs-18.1.0" // {
dependencies = [
@@ -101039,14 +100941,14 @@ in
sources."@rollup/plugin-node-resolve-11.2.1"
sources."@rollup/pluginutils-3.1.0"
sources."@samverschueren/stream-to-observable-0.3.1"
- sources."@sindresorhus/is-0.14.0"
+ sources."@sindresorhus/is-2.1.1"
sources."@sindresorhus/slugify-1.1.2"
(sources."@sindresorhus/transliterate-0.1.2" // {
dependencies = [
sources."escape-string-regexp-2.0.0"
];
})
- sources."@szmarczak/http-timer-1.1.2"
+ sources."@szmarczak/http-timer-4.0.6"
sources."@types/cacheable-request-6.0.2"
sources."@types/decompress-4.2.4"
sources."@types/download-8.0.1"
@@ -101058,9 +100960,9 @@ in
sources."@types/istanbul-lib-coverage-2.0.3"
sources."@types/istanbul-lib-report-3.0.0"
sources."@types/istanbul-reports-3.0.1"
- sources."@types/keyv-3.1.2"
+ sources."@types/keyv-3.1.3"
sources."@types/minimatch-3.0.5"
- sources."@types/node-16.7.2"
+ sources."@types/node-16.7.13"
sources."@types/node-fetch-2.5.12"
sources."@types/normalize-package-data-2.4.1"
sources."@types/resolve-1.17.1"
@@ -101068,8 +100970,8 @@ in
sources."@types/semver-7.3.8"
sources."@types/yargs-15.0.14"
sources."@types/yargs-parser-20.2.1"
- sources."@typescript-eslint/types-4.29.3"
- (sources."@typescript-eslint/typescript-estree-4.29.3" // {
+ sources."@typescript-eslint/types-4.31.0"
+ (sources."@typescript-eslint/typescript-estree-4.31.0" // {
dependencies = [
sources."@nodelib/fs.stat-2.0.5"
sources."array-union-2.1.0"
@@ -101086,10 +100988,10 @@ in
sources."to-regex-range-5.0.1"
];
})
- sources."@typescript-eslint/visitor-keys-4.29.3"
+ sources."@typescript-eslint/visitor-keys-4.31.0"
sources."@ungap/from-entries-0.2.1"
sources."accepts-1.3.7"
- sources."acorn-8.4.1"
+ sources."acorn-8.5.0"
sources."agent-base-6.0.2"
(sources."aggregate-error-3.1.0" // {
dependencies = [
@@ -101196,7 +101098,7 @@ in
sources."extend-shallow-2.0.1"
];
})
- sources."browserslist-4.16.8"
+ sources."browserslist-4.17.0"
sources."buffer-5.7.1"
sources."buffer-alloc-1.2.0"
sources."buffer-alloc-unsafe-1.1.0"
@@ -101209,16 +101111,10 @@ in
sources."byline-5.0.0"
sources."bytes-3.1.0"
sources."cache-base-1.0.1"
- (sources."cacheable-lookup-2.0.1" // {
- dependencies = [
- sources."json-buffer-3.0.1"
- sources."keyv-4.0.3"
- ];
- })
- (sources."cacheable-request-6.1.0" // {
+ sources."cacheable-lookup-2.0.1"
+ (sources."cacheable-request-7.0.2" // {
dependencies = [
sources."get-stream-5.2.0"
- sources."lowercase-keys-2.0.0"
];
})
sources."cachedir-2.3.0"
@@ -101226,7 +101122,7 @@ in
sources."call-me-maybe-1.0.1"
sources."callsite-1.0.0"
sources."camelcase-6.2.0"
- sources."caniuse-lite-1.0.30001252"
+ sources."caniuse-lite-1.0.30001255"
sources."cardinal-2.1.1"
(sources."chalk-4.1.2" // {
dependencies = [
@@ -101295,7 +101191,11 @@ in
sources."cli-width-2.2.1"
sources."cliui-6.0.0"
sources."clone-1.0.4"
- sources."clone-response-1.0.2"
+ (sources."clone-response-1.0.2" // {
+ dependencies = [
+ sources."mimic-response-1.0.1"
+ ];
+ })
sources."code-point-at-1.1.0"
sources."collection-visit-1.0.0"
(sources."color-3.0.0" // {
@@ -101307,7 +101207,7 @@ in
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
sources."color-string-1.6.0"
- sources."colorette-1.3.0"
+ sources."colorette-1.4.0"
sources."colors-1.4.0"
sources."colorspace-1.1.2"
sources."combined-stream-1.0.8"
@@ -101336,12 +101236,12 @@ in
sources."readdirp-2.2.1"
];
})
- (sources."core-js-compat-3.16.3" // {
+ (sources."core-js-compat-3.17.2" // {
dependencies = [
sources."semver-7.0.0"
];
})
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."cp-file-7.0.0"
(sources."cpy-8.1.2" // {
dependencies = [
@@ -101374,7 +101274,7 @@ in
sources."pify-2.3.0"
];
})
- sources."decompress-response-3.3.0"
+ sources."decompress-response-5.0.0"
(sources."decompress-tar-4.1.1" // {
dependencies = [
sources."bl-1.2.3"
@@ -101404,10 +101304,10 @@ in
];
})
sources."deep-extend-0.6.0"
- sources."deep-is-0.1.3"
+ sources."deep-is-0.1.4"
sources."deepmerge-4.2.2"
sources."defaults-1.0.3"
- sources."defer-to-connect-1.1.3"
+ sources."defer-to-connect-2.0.1"
sources."define-properties-1.1.3"
sources."define-property-2.0.2"
(sources."del-6.0.0" // {
@@ -101458,8 +101358,10 @@ in
(sources."cacheable-request-2.1.4" // {
dependencies = [
sources."get-stream-3.0.0"
+ sources."lowercase-keys-1.0.0"
];
})
+ sources."decompress-response-3.3.0"
sources."get-stream-4.1.0"
(sources."got-8.3.2" // {
dependencies = [
@@ -101469,19 +101371,22 @@ in
})
sources."http-cache-semantics-3.8.1"
sources."is-plain-obj-1.1.0"
+ sources."json-buffer-3.0.0"
sources."keyv-3.0.0"
- sources."lowercase-keys-1.0.0"
+ sources."lowercase-keys-1.0.1"
sources."make-dir-2.1.0"
+ sources."mimic-response-1.0.1"
sources."normalize-url-2.0.1"
sources."p-cancelable-0.4.1"
sources."p-event-2.3.1"
+ sources."responselike-1.0.2"
sources."semver-5.7.1"
sources."sort-keys-2.0.0"
];
})
sources."duplexer3-0.1.4"
sources."ee-first-1.1.1"
- sources."electron-to-chromium-1.3.818"
+ sources."electron-to-chromium-1.3.832"
sources."elegant-spinner-1.0.1"
sources."elf-cam-0.1.1"
sources."emoji-regex-8.0.0"
@@ -101564,7 +101469,7 @@ in
sources."fast-equals-2.0.3"
sources."fast-glob-2.2.7"
sources."fast-levenshtein-2.0.6"
- sources."fast-safe-stringify-2.0.8"
+ sources."fast-safe-stringify-2.1.0"
sources."fastq-1.12.0"
sources."fd-slicer-1.1.0"
sources."fecha-4.2.1"
@@ -101575,16 +101480,9 @@ in
sources."chalk-3.0.0"
];
})
- sources."@sindresorhus/is-2.1.1"
- sources."@szmarczak/http-timer-4.0.6"
sources."@types/istanbul-reports-1.1.2"
sources."ansi-styles-4.3.0"
- sources."cacheable-request-7.0.2"
sources."camelcase-5.3.1"
- sources."decompress-response-5.0.0"
- sources."defer-to-connect-2.0.1"
- sources."get-stream-5.2.0"
- sources."got-10.7.0"
sources."has-flag-4.0.0"
sources."jest-get-type-25.2.6"
(sources."jest-validate-25.5.0" // {
@@ -101592,17 +101490,9 @@ in
sources."chalk-3.0.0"
];
})
- sources."json-buffer-3.0.1"
- sources."keyv-4.0.3"
- sources."lowercase-keys-2.0.0"
- sources."mimic-response-2.1.0"
- sources."normalize-url-6.1.0"
- sources."p-cancelable-2.1.1"
sources."pretty-format-25.5.0"
sources."react-is-16.13.1"
- sources."responselike-2.0.0"
sources."supports-color-7.2.0"
- sources."type-fest-0.10.0"
];
})
(sources."figures-3.2.0" // {
@@ -101630,7 +101520,7 @@ in
sources."flush-write-stream-2.0.0"
sources."fn.name-1.1.0"
sources."folder-walker-3.2.0"
- sources."follow-redirects-1.14.2"
+ sources."follow-redirects-1.14.3"
sources."for-in-1.0.2"
sources."form-data-3.0.1"
sources."forwarded-0.2.0"
@@ -101690,10 +101580,10 @@ in
];
})
sources."gonzales-pe-4.3.0"
- (sources."got-9.6.0" // {
+ (sources."got-10.7.0" // {
dependencies = [
- sources."get-stream-4.1.0"
- sources."to-readable-stream-1.0.0"
+ sources."get-stream-5.2.0"
+ sources."type-fest-0.10.0"
];
})
sources."graceful-fs-4.2.8"
@@ -101852,7 +101742,7 @@ in
sources."js-tokens-4.0.0"
sources."js-yaml-4.1.0"
sources."jsesc-2.5.2"
- sources."json-buffer-3.0.0"
+ sources."json-buffer-3.0.1"
sources."json-parse-better-errors-1.0.2"
sources."json-parse-even-better-errors-2.3.1"
sources."json-schema-traverse-1.0.0"
@@ -101861,7 +101751,7 @@ in
sources."junk-3.1.0"
sources."jwt-decode-3.1.2"
sources."keep-func-props-3.0.1"
- sources."keyv-3.1.0"
+ sources."keyv-4.0.3"
sources."kind-of-6.0.3"
sources."kuler-2.0.0"
(sources."lambda-local-2.0.0" // {
@@ -101947,7 +101837,7 @@ in
sources."ms-2.1.3"
];
})
- sources."lowercase-keys-1.0.1"
+ sources."lowercase-keys-2.0.0"
sources."lru-cache-6.0.0"
sources."macos-release-2.5.0"
sources."magic-string-0.25.7"
@@ -101984,7 +101874,7 @@ in
sources."mime-db-1.49.0"
sources."mime-types-2.1.32"
sources."mimic-fn-3.1.0"
- sources."mimic-response-1.0.1"
+ sources."mimic-response-2.1.0"
sources."minimatch-3.0.4"
sources."minimist-1.2.5"
(sources."mixin-deep-1.3.2" // {
@@ -101994,7 +101884,7 @@ in
})
sources."mkdirp-0.5.5"
sources."module-definition-3.3.1"
- sources."moize-6.0.3"
+ sources."moize-6.1.0"
sources."move-file-2.1.0"
sources."ms-2.0.0"
(sources."multiparty-4.2.2" // {
@@ -102019,7 +101909,7 @@ in
sources."netlify-redirect-parser-11.0.2"
sources."netlify-redirector-0.2.1"
sources."nice-try-1.0.5"
- sources."node-fetch-2.6.1"
+ sources."node-fetch-2.6.2"
sources."node-releases-1.1.75"
sources."node-source-walk-4.2.0"
(sources."node-version-alias-1.0.1" // {
@@ -102059,7 +101949,7 @@ in
];
})
sources."normalize-path-3.0.0"
- sources."normalize-url-4.5.1"
+ sources."normalize-url-6.1.0"
sources."npm-normalize-package-bin-1.0.1"
sources."npm-run-path-4.0.1"
sources."number-is-nan-1.0.1"
@@ -102118,7 +102008,7 @@ in
sources."p-map-2.1.0"
];
})
- sources."p-cancelable-1.1.0"
+ sources."p-cancelable-2.1.1"
(sources."p-event-4.2.0" // {
dependencies = [
sources."p-timeout-3.2.0"
@@ -102149,7 +102039,27 @@ in
})
(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."mimic-response-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."to-readable-stream-1.0.0"
];
})
(sources."parallel-transform-1.2.0" // {
@@ -102265,7 +102175,7 @@ in
sources."requires-port-1.0.0"
sources."resolve-1.20.0"
sources."resolve-url-0.2.1"
- sources."responselike-1.0.2"
+ sources."responselike-2.0.0"
(sources."restore-cursor-2.0.0" // {
dependencies = [
sources."mimic-fn-1.2.0"
@@ -102500,7 +102410,7 @@ in
sources."type-fest-0.21.3"
sources."type-is-1.6.18"
sources."typedarray-to-buffer-3.1.5"
- sources."typescript-4.3.5"
+ sources."typescript-4.4.2"
sources."uid-safe-2.1.5"
sources."unbzip2-stream-1.4.3"
sources."unicode-canonical-property-names-ecmascript-1.0.4"
@@ -102649,7 +102559,7 @@ in
sources."aggregate-error-3.1.0"
sources."ansi-regex-2.1.1"
sources."aproba-1.2.0"
- sources."are-we-there-yet-1.1.5"
+ sources."are-we-there-yet-1.1.7"
sources."balanced-match-1.0.2"
sources."brace-expansion-1.1.11"
sources."cacache-15.3.0"
@@ -102658,7 +102568,7 @@ in
sources."code-point-at-1.1.0"
sources."concat-map-0.0.1"
sources."console-control-strings-1.1.0"
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."debug-4.3.2"
sources."delegates-1.0.0"
sources."depd-1.1.2"
@@ -102691,7 +102601,7 @@ in
sources."minimatch-3.0.4"
sources."minipass-3.1.3"
sources."minipass-collect-1.0.2"
- sources."minipass-fetch-1.3.4"
+ sources."minipass-fetch-1.4.1"
sources."minipass-flush-1.0.5"
sources."minipass-pipeline-1.2.4"
sources."minipass-sized-1.0.3"
@@ -102775,7 +102685,7 @@ in
sources."ajv-4.11.8"
sources."ansi-regex-2.1.1"
sources."aproba-1.2.0"
- sources."are-we-there-yet-1.1.5"
+ sources."are-we-there-yet-1.1.7"
sources."array-find-index-1.0.2"
sources."array-flatten-1.1.1"
sources."asn1-0.2.4"
@@ -102809,7 +102719,7 @@ in
sources."content-type-1.0.4"
sources."cookie-0.4.0"
sources."cookie-signature-1.0.6"
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."cryptiles-2.0.5"
sources."currently-unhandled-0.4.1"
(sources."dashdash-1.14.1" // {
@@ -103025,6 +102935,7 @@ in
(sources."verror-1.10.0" // {
dependencies = [
sources."assert-plus-1.0.0"
+ sources."core-util-is-1.0.2"
];
})
sources."which-1.3.1"
@@ -103070,14 +102981,14 @@ in
sources."abbrev-1.1.1"
sources."ansi-regex-2.1.1"
sources."aproba-1.2.0"
- sources."are-we-there-yet-1.1.5"
+ sources."are-we-there-yet-1.1.7"
sources."balanced-match-1.0.2"
sources."brace-expansion-1.1.11"
sources."chownr-1.1.4"
sources."code-point-at-1.1.0"
sources."concat-map-0.0.1"
sources."console-control-strings-1.1.0"
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."debug-3.2.7"
sources."deep-extend-0.6.0"
sources."delegates-1.0.0"
@@ -103100,7 +103011,7 @@ in
sources."minizlib-1.3.3"
sources."mkdirp-0.5.5"
sources."ms-2.1.3"
- sources."needle-2.9.0"
+ sources."needle-2.9.1"
sources."nopt-4.0.3"
sources."npm-bundled-1.1.2"
sources."npm-normalize-package-bin-1.0.1"
@@ -103150,17 +103061,17 @@ in
node-red = nodeEnv.buildNodePackage {
name = "node-red";
packageName = "node-red";
- version = "2.0.5";
+ version = "2.0.6";
src = fetchurl {
- url = "https://registry.npmjs.org/node-red/-/node-red-2.0.5.tgz";
- sha512 = "S3vhm/EqQwEvHDBw/375j4f5vVT9YknfTEeQjbA/Fa2XAK0WLCC+ENLV+4HzkpSAIi+9hmrF3TpdhjVLksmk1A==";
+ url = "https://registry.npmjs.org/node-red/-/node-red-2.0.6.tgz";
+ sha512 = "UdQPwnciQMcFIXjldFhP9XfqBHcFYtAIXDt3be8kp+OZPxRqjxSDI5EuIfxY8QnUK1YVqwDV+5CKDhh97+dA0w==";
};
dependencies = [
- sources."@babel/runtime-7.15.3"
+ sources."@babel/runtime-7.15.4"
sources."@mapbox/node-pre-gyp-1.0.5"
- sources."@node-red/editor-api-2.0.5"
- sources."@node-red/editor-client-2.0.5"
- (sources."@node-red/nodes-2.0.5" // {
+ sources."@node-red/editor-api-2.0.6"
+ sources."@node-red/editor-client-2.0.6"
+ (sources."@node-red/nodes-2.0.6" // {
dependencies = [
sources."http-errors-1.7.3"
sources."iconv-lite-0.6.3"
@@ -103173,15 +103084,15 @@ in
})
];
})
- sources."@node-red/registry-2.0.5"
- sources."@node-red/runtime-2.0.5"
- sources."@node-red/util-2.0.5"
+ sources."@node-red/registry-2.0.6"
+ sources."@node-red/runtime-2.0.6"
+ sources."@node-red/util-2.0.6"
sources."@sindresorhus/is-4.0.1"
sources."@szmarczak/http-timer-4.0.6"
sources."@types/cacheable-request-6.0.2"
sources."@types/http-cache-semantics-4.0.1"
- sources."@types/keyv-3.1.2"
- sources."@types/node-16.7.2"
+ sources."@types/keyv-3.1.3"
+ sources."@types/node-16.7.13"
sources."@types/responselike-1.0.0"
sources."abbrev-1.1.1"
sources."accepts-1.3.7"
@@ -103193,12 +103104,12 @@ in
sources."ms-2.1.2"
];
})
- sources."ajv-8.6.0"
+ sources."ajv-8.6.2"
sources."ansi-colors-4.1.1"
sources."ansi-regex-2.1.1"
sources."append-field-1.0.0"
sources."aproba-1.2.0"
- (sources."are-we-there-yet-1.1.5" // {
+ (sources."are-we-there-yet-1.1.7" // {
dependencies = [
sources."isarray-1.0.0"
sources."readable-stream-2.3.7"
@@ -103209,7 +103120,7 @@ in
sources."argparse-1.0.10"
sources."array-flatten-1.1.1"
sources."async-0.1.22"
- sources."async-mutex-0.3.1"
+ sources."async-mutex-0.3.2"
sources."asynckit-0.4.0"
sources."axios-0.21.1"
sources."balanced-match-1.0.2"
@@ -103270,7 +103181,7 @@ in
];
})
sources."cookie-signature-1.0.6"
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."cors-2.8.5"
sources."cronosjs-1.7.1"
sources."css-select-4.1.3"
@@ -103291,8 +103202,8 @@ in
sources."dicer-0.2.5"
sources."dom-serializer-1.3.2"
sources."domelementtype-2.2.0"
- sources."domhandler-4.2.0"
- sources."domutils-2.7.0"
+ sources."domhandler-4.2.2"
+ sources."domutils-2.8.0"
(sources."duplexify-4.1.2" // {
dependencies = [
sources."readable-stream-3.6.0"
@@ -103320,7 +103231,7 @@ in
})
sources."fast-deep-equal-3.1.3"
sources."finalhandler-1.1.2"
- sources."follow-redirects-1.14.2"
+ sources."follow-redirects-1.14.3"
sources."form-data-4.0.0"
sources."forwarded-0.2.0"
sources."fresh-0.5.2"
@@ -103369,7 +103280,7 @@ in
sources."json-buffer-3.0.1"
sources."json-schema-traverse-1.0.0"
sources."json-stringify-safe-5.0.1"
- sources."jsonata-1.8.4"
+ sources."jsonata-1.8.5"
(sources."jsonfile-6.1.0" // {
dependencies = [
sources."universalify-2.0.0"
@@ -103429,12 +103340,12 @@ in
];
})
sources."ms-2.0.0"
- sources."multer-1.4.2"
+ sources."multer-1.4.3"
sources."mustache-4.2.0"
sources."mute-stream-0.0.8"
sources."negotiator-0.6.2"
sources."node-addon-api-3.2.1"
- sources."node-fetch-2.6.1"
+ sources."node-fetch-2.6.2"
sources."node-red-admin-2.2.0"
sources."nopt-5.0.0"
sources."normalize-url-6.1.0"
@@ -103473,7 +103384,7 @@ in
sources."regenerator-runtime-0.13.9"
sources."reinterval-1.1.0"
sources."require-from-string-2.0.2"
- sources."resolve-alpn-1.2.0"
+ sources."resolve-alpn-1.2.1"
sources."responselike-2.0.0"
sources."retry-0.6.1"
sources."rimraf-3.0.2"
@@ -103509,7 +103420,7 @@ in
sources."string-width-1.0.2"
sources."string_decoder-0.10.31"
sources."strip-ansi-3.0.1"
- (sources."tar-6.1.2" // {
+ (sources."tar-6.1.11" // {
dependencies = [
sources."mkdirp-1.0.4"
sources."yallist-4.0.0"
@@ -103520,7 +103431,7 @@ in
sources."tslib-2.3.1"
sources."type-is-1.6.18"
sources."typedarray-0.0.6"
- sources."uglify-js-3.13.10"
+ sources."uglify-js-3.14.1"
sources."uid-safe-2.1.5"
sources."uid2-0.0.4"
sources."universalify-0.1.2"
@@ -103561,7 +103472,7 @@ in
sources."ajv-6.12.6"
sources."ansi-regex-2.1.1"
sources."aproba-1.2.0"
- sources."are-we-there-yet-1.1.5"
+ sources."are-we-there-yet-1.1.7"
sources."asn1-0.2.4"
sources."assert-plus-1.0.0"
sources."asynckit-0.4.0"
@@ -103581,7 +103492,7 @@ in
sources."concat-stream-1.6.2"
sources."config-chain-1.1.13"
sources."console-control-strings-1.1.0"
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."dashdash-1.14.1"
sources."delayed-stream-1.0.0"
sources."delegates-1.0.0"
@@ -103726,7 +103637,11 @@ in
sources."uuid-3.4.0"
sources."validate-npm-package-license-3.0.4"
sources."validate-npm-package-name-3.0.0"
- sources."verror-1.10.0"
+ (sources."verror-1.10.0" // {
+ dependencies = [
+ sources."core-util-is-1.0.2"
+ ];
+ })
sources."walk-2.3.14"
sources."wide-align-1.1.3"
sources."wrappy-1.0.2"
@@ -103939,9 +103854,9 @@ in
sources."@szmarczak/http-timer-4.0.6"
sources."@types/cacheable-request-6.0.2"
sources."@types/http-cache-semantics-4.0.1"
- sources."@types/keyv-3.1.2"
+ sources."@types/keyv-3.1.3"
sources."@types/minimist-1.2.2"
- sources."@types/node-16.7.2"
+ sources."@types/node-16.7.13"
sources."@types/normalize-package-data-2.4.1"
sources."@types/parse-json-4.0.0"
sources."@types/responselike-1.0.0"
@@ -104445,10 +104360,10 @@ in
npm = nodeEnv.buildNodePackage {
name = "npm";
packageName = "npm";
- version = "7.21.0";
+ version = "7.22.0";
src = fetchurl {
- url = "https://registry.npmjs.org/npm/-/npm-7.21.0.tgz";
- sha512 = "OYSQykXItCDXYGb9U8o85Snhmbe0k/nwVK6CmUNmgtOcfPevVB5ZXwA44eWOCvM+WdWYQsJAJoA7eCHKImQt8g==";
+ url = "https://registry.npmjs.org/npm/-/npm-7.22.0.tgz";
+ sha512 = "HJnjTCrGGnacPMCSnrxuHGf2H4VdrY7hwTAK1RwByg0K96KIuTR4QNioFW+bnc/pW0uwpk9lLsDf4BeEQhTv2Q==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -104463,10 +104378,10 @@ in
npm-check-updates = nodeEnv.buildNodePackage {
name = "npm-check-updates";
packageName = "npm-check-updates";
- version = "11.8.3";
+ version = "11.8.5";
src = fetchurl {
- url = "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-11.8.3.tgz";
- sha512 = "NslIB6Af7GagVrN+bvBkObLyawIZfOnDnl8n9MHE+dFt0aChRYtvR6T2BLJKzOPIepCLmmh0NRR/qha0ExAELQ==";
+ url = "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-11.8.5.tgz";
+ sha512 = "IYSHjlWe8UEugDy7X0qjBeJwcni4DlcWdBK4QQEbwgkNlEDlXyd4yQJYWFumKaJzrp/n5/EcvaboXsBD1Er/pw==";
};
dependencies = [
sources."@gar/promisify-1.1.2"
@@ -104499,7 +104414,7 @@ in
sources."ansi-regex-2.1.1"
sources."ansi-styles-4.3.0"
sources."aproba-1.2.0"
- sources."are-we-there-yet-1.1.5"
+ sources."are-we-there-yet-1.1.7"
sources."argparse-2.0.1"
sources."array-union-2.1.0"
sources."asn1-0.2.4"
@@ -104547,7 +104462,7 @@ in
sources."concat-map-0.0.1"
sources."configstore-5.0.1"
sources."console-control-strings-1.1.0"
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."crypto-random-string-2.0.0"
sources."dashdash-1.14.1"
sources."debug-4.3.2"
@@ -104677,7 +104592,7 @@ in
sources."minimist-1.2.5"
sources."minipass-3.1.3"
sources."minipass-collect-1.0.2"
- sources."minipass-fetch-1.3.4"
+ sources."minipass-fetch-1.4.1"
sources."minipass-flush-1.0.5"
sources."minipass-json-stream-1.0.1"
sources."minipass-pipeline-1.2.4"
@@ -104785,7 +104700,11 @@ in
sources."util-deprecate-1.0.2"
sources."uuid-3.4.0"
sources."validate-npm-package-name-3.0.0"
- sources."verror-1.10.0"
+ (sources."verror-1.10.0" // {
+ dependencies = [
+ sources."core-util-is-1.0.2"
+ ];
+ })
sources."which-2.0.2"
sources."wide-align-1.1.3"
(sources."widest-line-3.1.0" // {
@@ -104854,7 +104773,7 @@ in
sources."ajv-6.12.6"
sources."ansi-regex-3.0.0"
sources."aproba-2.0.0"
- sources."are-we-there-yet-1.1.5"
+ sources."are-we-there-yet-2.0.0"
sources."argparse-0.1.15"
sources."asn1-0.2.4"
sources."assert-plus-1.0.0"
@@ -104917,7 +104836,6 @@ in
sources."ini-1.1.0"
sources."is-fullwidth-code-point-2.0.0"
sources."is-typedarray-1.0.0"
- sources."isarray-1.0.0"
sources."isstream-0.1.2"
sources."jsbn-0.1.1"
sources."json-schema-0.2.3"
@@ -104945,23 +104863,18 @@ in
sources."semver-2.3.2"
];
})
- sources."npmlog-5.0.0"
+ sources."npmlog-5.0.1"
sources."oauth-sign-0.9.0"
sources."object-assign-4.1.1"
sources."once-1.4.0"
sources."osenv-0.0.3"
sources."path-is-absolute-1.0.1"
sources."performance-now-2.1.0"
- sources."process-nextick-args-2.0.1"
sources."proto-list-1.2.4"
sources."psl-1.8.0"
sources."punycode-2.1.1"
sources."qs-6.5.2"
- (sources."readable-stream-2.3.7" // {
- dependencies = [
- sources."safe-buffer-5.1.2"
- ];
- })
+ sources."readable-stream-3.6.0"
sources."request-2.88.2"
sources."retry-0.6.0"
sources."rimraf-2.7.1"
@@ -104973,11 +104886,7 @@ in
sources."slide-1.1.6"
sources."sshpk-1.16.1"
sources."string-width-2.1.1"
- (sources."string_decoder-1.1.1" // {
- dependencies = [
- sources."safe-buffer-5.1.2"
- ];
- })
+ sources."string_decoder-1.3.0"
sources."strip-ansi-4.0.0"
(sources."tar-0.1.17" // {
dependencies = [
@@ -105065,56 +104974,56 @@ in
dependencies = [
sources."@babel/code-frame-7.14.5"
sources."@babel/compat-data-7.15.0"
- (sources."@babel/core-7.15.0" // {
+ (sources."@babel/core-7.15.5" // {
dependencies = [
sources."json5-2.2.0"
sources."semver-6.3.0"
sources."source-map-0.5.7"
];
})
- (sources."@babel/generator-7.15.0" // {
+ (sources."@babel/generator-7.15.4" // {
dependencies = [
sources."source-map-0.5.7"
];
})
- sources."@babel/helper-annotate-as-pure-7.14.5"
- sources."@babel/helper-builder-binary-assignment-operator-visitor-7.14.5"
- (sources."@babel/helper-compilation-targets-7.15.0" // {
+ sources."@babel/helper-annotate-as-pure-7.15.4"
+ sources."@babel/helper-builder-binary-assignment-operator-visitor-7.15.4"
+ (sources."@babel/helper-compilation-targets-7.15.4" // {
dependencies = [
sources."semver-6.3.0"
];
})
- sources."@babel/helper-create-class-features-plugin-7.15.0"
+ sources."@babel/helper-create-class-features-plugin-7.15.4"
sources."@babel/helper-create-regexp-features-plugin-7.14.5"
(sources."@babel/helper-define-polyfill-provider-0.2.3" // {
dependencies = [
sources."semver-6.3.0"
];
})
- sources."@babel/helper-explode-assignable-expression-7.14.5"
- sources."@babel/helper-function-name-7.14.5"
- sources."@babel/helper-get-function-arity-7.14.5"
- sources."@babel/helper-hoist-variables-7.14.5"
- sources."@babel/helper-member-expression-to-functions-7.15.0"
- sources."@babel/helper-module-imports-7.14.5"
- sources."@babel/helper-module-transforms-7.15.0"
- sources."@babel/helper-optimise-call-expression-7.14.5"
+ sources."@babel/helper-explode-assignable-expression-7.15.4"
+ sources."@babel/helper-function-name-7.15.4"
+ sources."@babel/helper-get-function-arity-7.15.4"
+ sources."@babel/helper-hoist-variables-7.15.4"
+ sources."@babel/helper-member-expression-to-functions-7.15.4"
+ sources."@babel/helper-module-imports-7.15.4"
+ sources."@babel/helper-module-transforms-7.15.4"
+ sources."@babel/helper-optimise-call-expression-7.15.4"
sources."@babel/helper-plugin-utils-7.14.5"
- sources."@babel/helper-remap-async-to-generator-7.14.5"
- sources."@babel/helper-replace-supers-7.15.0"
- sources."@babel/helper-simple-access-7.14.8"
- sources."@babel/helper-skip-transparent-expression-wrappers-7.14.5"
- sources."@babel/helper-split-export-declaration-7.14.5"
+ sources."@babel/helper-remap-async-to-generator-7.15.4"
+ sources."@babel/helper-replace-supers-7.15.4"
+ sources."@babel/helper-simple-access-7.15.4"
+ sources."@babel/helper-skip-transparent-expression-wrappers-7.15.4"
+ sources."@babel/helper-split-export-declaration-7.15.4"
sources."@babel/helper-validator-identifier-7.14.9"
sources."@babel/helper-validator-option-7.14.5"
- sources."@babel/helper-wrap-function-7.14.5"
- sources."@babel/helpers-7.15.3"
+ sources."@babel/helper-wrap-function-7.15.4"
+ sources."@babel/helpers-7.15.4"
sources."@babel/highlight-7.14.5"
- sources."@babel/parser-7.15.3"
- sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.14.5"
- sources."@babel/plugin-proposal-async-generator-functions-7.14.9"
+ sources."@babel/parser-7.15.5"
+ sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.15.4"
+ sources."@babel/plugin-proposal-async-generator-functions-7.15.4"
sources."@babel/plugin-proposal-class-properties-7.14.5"
- sources."@babel/plugin-proposal-class-static-block-7.14.5"
+ sources."@babel/plugin-proposal-class-static-block-7.15.4"
sources."@babel/plugin-proposal-dynamic-import-7.14.5"
sources."@babel/plugin-proposal-export-namespace-from-7.14.5"
sources."@babel/plugin-proposal-json-strings-7.14.5"
@@ -105125,7 +105034,7 @@ in
sources."@babel/plugin-proposal-optional-catch-binding-7.14.5"
sources."@babel/plugin-proposal-optional-chaining-7.14.5"
sources."@babel/plugin-proposal-private-methods-7.14.5"
- sources."@babel/plugin-proposal-private-property-in-object-7.14.5"
+ sources."@babel/plugin-proposal-private-property-in-object-7.15.4"
sources."@babel/plugin-proposal-unicode-property-regex-7.14.5"
sources."@babel/plugin-syntax-async-generators-7.8.4"
sources."@babel/plugin-syntax-class-properties-7.12.13"
@@ -105147,25 +105056,25 @@ in
sources."@babel/plugin-transform-async-to-generator-7.14.5"
sources."@babel/plugin-transform-block-scoped-functions-7.14.5"
sources."@babel/plugin-transform-block-scoping-7.15.3"
- sources."@babel/plugin-transform-classes-7.14.9"
+ sources."@babel/plugin-transform-classes-7.15.4"
sources."@babel/plugin-transform-computed-properties-7.14.5"
sources."@babel/plugin-transform-destructuring-7.14.7"
sources."@babel/plugin-transform-dotall-regex-7.14.5"
sources."@babel/plugin-transform-duplicate-keys-7.14.5"
sources."@babel/plugin-transform-exponentiation-operator-7.14.5"
sources."@babel/plugin-transform-flow-strip-types-7.14.5"
- sources."@babel/plugin-transform-for-of-7.14.5"
+ sources."@babel/plugin-transform-for-of-7.15.4"
sources."@babel/plugin-transform-function-name-7.14.5"
sources."@babel/plugin-transform-literals-7.14.5"
sources."@babel/plugin-transform-member-expression-literals-7.14.5"
sources."@babel/plugin-transform-modules-amd-7.14.5"
- sources."@babel/plugin-transform-modules-commonjs-7.15.0"
- sources."@babel/plugin-transform-modules-systemjs-7.14.5"
+ sources."@babel/plugin-transform-modules-commonjs-7.15.4"
+ sources."@babel/plugin-transform-modules-systemjs-7.15.4"
sources."@babel/plugin-transform-modules-umd-7.14.5"
sources."@babel/plugin-transform-named-capturing-groups-regex-7.14.9"
sources."@babel/plugin-transform-new-target-7.14.5"
sources."@babel/plugin-transform-object-super-7.14.5"
- sources."@babel/plugin-transform-parameters-7.14.5"
+ sources."@babel/plugin-transform-parameters-7.15.4"
sources."@babel/plugin-transform-property-literals-7.14.5"
sources."@babel/plugin-transform-react-jsx-7.14.9"
sources."@babel/plugin-transform-regenerator-7.14.5"
@@ -105177,16 +105086,16 @@ in
sources."@babel/plugin-transform-typeof-symbol-7.14.5"
sources."@babel/plugin-transform-unicode-escapes-7.14.5"
sources."@babel/plugin-transform-unicode-regex-7.14.5"
- (sources."@babel/preset-env-7.15.0" // {
+ (sources."@babel/preset-env-7.15.4" // {
dependencies = [
sources."semver-6.3.0"
];
})
sources."@babel/preset-modules-0.1.4"
- sources."@babel/runtime-7.15.3"
- sources."@babel/template-7.14.5"
- sources."@babel/traverse-7.15.0"
- sources."@babel/types-7.15.0"
+ sources."@babel/runtime-7.15.4"
+ sources."@babel/template-7.15.4"
+ sources."@babel/traverse-7.15.4"
+ sources."@babel/types-7.15.4"
sources."@iarna/toml-2.2.5"
sources."@mrmlnc/readdir-enhanced-2.2.1"
sources."@nodelib/fs.stat-1.1.3"
@@ -105291,7 +105200,7 @@ in
sources."pako-1.0.11"
];
})
- sources."browserslist-4.16.8"
+ sources."browserslist-4.17.0"
(sources."buffer-4.9.2" // {
dependencies = [
sources."isarray-1.0.0"
@@ -105308,7 +105217,7 @@ in
sources."caller-path-2.0.0"
sources."callsites-2.0.0"
sources."caniuse-api-3.0.0"
- sources."caniuse-lite-1.0.30001252"
+ sources."caniuse-lite-1.0.30001255"
sources."caseless-0.12.0"
sources."chalk-2.4.2"
sources."chokidar-2.1.8"
@@ -105323,7 +105232,7 @@ in
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
sources."color-string-1.6.0"
- sources."colorette-1.3.0"
+ sources."colorette-1.4.0"
sources."combined-stream-1.0.8"
sources."command-exists-1.2.9"
sources."commander-2.20.3"
@@ -105335,12 +105244,12 @@ 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.16.3" // {
+ (sources."core-js-compat-3.17.2" // {
dependencies = [
sources."semver-7.0.0"
];
})
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."cosmiconfig-5.2.1"
(sources."create-ecdh-4.0.4" // {
dependencies = [
@@ -105394,7 +105303,7 @@ in
sources."deasync-0.1.23"
sources."debug-4.3.2"
sources."decode-uri-component-0.2.0"
- sources."deep-is-0.1.3"
+ sources."deep-is-0.1.4"
(sources."defaults-1.0.3" // {
dependencies = [
sources."clone-1.0.4"
@@ -105434,7 +105343,7 @@ in
sources."domain-browser-1.2.0"
sources."domelementtype-1.3.1"
sources."domexception-1.0.1"
- (sources."domhandler-4.2.0" // {
+ (sources."domhandler-4.2.2" // {
dependencies = [
sources."domelementtype-2.2.0"
];
@@ -105446,7 +105355,7 @@ in
sources."duplexer2-0.1.4"
sources."ecc-jsbn-0.1.2"
sources."ee-first-1.1.1"
- sources."electron-to-chromium-1.3.818"
+ sources."electron-to-chromium-1.3.832"
(sources."elliptic-6.5.4" // {
dependencies = [
sources."bn.js-4.12.0"
@@ -105456,7 +105365,7 @@ in
sources."entities-2.2.0"
sources."envinfo-7.8.1"
sources."error-ex-1.3.2"
- (sources."es-abstract-1.18.5" // {
+ (sources."es-abstract-1.18.6" // {
dependencies = [
sources."object-inspect-1.11.0"
];
@@ -105507,6 +105416,7 @@ in
sources."gensync-1.0.0-beta.2"
sources."get-intrinsic-1.1.1"
sources."get-port-3.2.0"
+ sources."get-symbol-description-1.0.0"
sources."get-value-2.0.6"
sources."getpass-0.1.7"
sources."glob-7.1.7"
@@ -105562,7 +105472,7 @@ in
dependencies = [
sources."dom-serializer-1.3.2"
sources."domelementtype-2.2.0"
- sources."domutils-2.7.0"
+ sources."domutils-2.8.0"
];
})
sources."http-errors-1.7.3"
@@ -106045,7 +105955,11 @@ in
sources."uuid-3.4.0"
sources."v8-compile-cache-2.3.0"
sources."vendors-1.0.4"
- sources."verror-1.10.0"
+ (sources."verror-1.10.0" // {
+ dependencies = [
+ sources."core-util-is-1.0.2"
+ ];
+ })
sources."vlq-0.2.3"
sources."vm-browserify-1.1.2"
sources."w3c-hr-time-1.0.2"
@@ -106325,7 +106239,7 @@ in
sources."tunnel-agent-0.6.0"
sources."tweetnacl-0.14.5"
sources."type-is-1.6.18"
- sources."uglify-js-3.14.1"
+ sources."uglify-js-3.14.2"
sources."unix-dgram-2.0.4"
sources."unpipe-1.0.0"
sources."uri-js-4.4.1"
@@ -106499,7 +106413,7 @@ in
sources."concat-stream-1.6.2"
sources."consume-http-header-1.0.0"
sources."consume-until-1.0.0"
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."currently-unhandled-0.4.1"
sources."cyclist-0.1.1"
sources."debug-2.6.9"
@@ -106825,7 +106739,7 @@ in
sources."content-type-1.0.4"
sources."cookie-0.4.0"
sources."cookie-signature-1.0.6"
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."crc-3.8.0"
sources."crc32-stream-3.0.1"
sources."cyclist-0.1.1"
@@ -107092,7 +107006,11 @@ in
sources."utp-0.0.7"
sources."uuid-3.4.0"
sources."vary-1.1.2"
- sources."verror-1.10.0"
+ (sources."verror-1.10.0" // {
+ dependencies = [
+ sources."core-util-is-1.0.2"
+ ];
+ })
sources."which-1.3.1"
sources."wrappy-1.0.2"
sources."ws-7.4.6"
@@ -107130,7 +107048,7 @@ in
sources."ansi-regex-5.0.0"
sources."ansi-styles-4.3.0"
sources."aproba-1.2.0"
- sources."are-we-there-yet-1.1.5"
+ sources."are-we-there-yet-1.1.7"
sources."array-union-2.1.0"
sources."at-least-node-1.0.0"
sources."base64-js-1.5.1"
@@ -107148,11 +107066,11 @@ in
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
sources."console-control-strings-1.1.0"
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."debug-4.3.2"
sources."decompress-response-4.2.1"
sources."deep-extend-0.6.0"
- sources."deep-is-0.1.3"
+ sources."deep-is-0.1.4"
sources."delegates-1.0.0"
sources."detect-libc-1.0.3"
sources."dir-glob-3.0.1"
@@ -107216,12 +107134,12 @@ in
];
})
sources."napi-build-utils-1.0.2"
- (sources."node-abi-2.30.0" // {
+ (sources."node-abi-2.30.1" // {
dependencies = [
sources."semver-5.7.1"
];
})
- sources."node-fetch-2.6.1"
+ sources."node-fetch-2.6.2"
sources."noop-logger-0.1.1"
sources."npmlog-4.1.2"
sources."number-is-nan-1.0.1"
@@ -107358,7 +107276,7 @@ in
sources."semver-5.7.1"
];
})
- sources."axios-0.21.1"
+ sources."axios-0.21.4"
sources."balanced-match-1.0.2"
sources."binary-extensions-2.2.0"
sources."blessed-0.1.81"
@@ -107376,13 +107294,13 @@ in
sources."commander-2.15.1"
sources."concat-map-0.0.1"
sources."continuation-local-storage-3.2.1"
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."cron-1.8.2"
sources."culvert-0.1.2"
sources."data-uri-to-buffer-3.0.1"
sources."dayjs-1.8.36"
sources."debug-4.3.2"
- sources."deep-is-0.1.3"
+ sources."deep-is-0.1.4"
sources."degenerator-2.2.0"
sources."depd-1.1.2"
sources."emitter-listener-1.1.2"
@@ -107398,7 +107316,7 @@ in
sources."fclone-1.0.11"
sources."file-uri-to-path-2.0.0"
sources."fill-range-7.0.1"
- sources."follow-redirects-1.14.2"
+ sources."follow-redirects-1.14.3"
sources."fs-extra-8.1.0"
sources."fs.realpath-1.0.0"
sources."fsevents-2.3.2"
@@ -107499,7 +107417,7 @@ in
sources."statuses-1.5.0"
sources."string_decoder-0.10.31"
sources."supports-color-7.2.0"
- sources."systeminformation-5.8.6"
+ sources."systeminformation-5.8.7"
sources."to-regex-range-5.0.1"
sources."toidentifier-1.0.0"
sources."tslib-2.3.1"
@@ -107534,10 +107452,10 @@ in
pnpm = nodeEnv.buildNodePackage {
name = "pnpm";
packageName = "pnpm";
- version = "6.14.3";
+ version = "6.14.7";
src = fetchurl {
- url = "https://registry.npmjs.org/pnpm/-/pnpm-6.14.3.tgz";
- sha512 = "9fU65+uSa2kB5+/b2crLT3lLcauExf9v6vPkDa4javQVnrz3/HDa6TLEshgo5BXXks3wThq+eCrDlVvD7AUwOQ==";
+ url = "https://registry.npmjs.org/pnpm/-/pnpm-6.14.7.tgz";
+ sha512 = "/pjz4Eod3Heyxw/QCGLYpkZR8YNuzTTblgcVC+qvvYCtX0Wb5J9jVcbHoSRqC2jeo4ldtg8H9dssPlHlH50I7w==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -107586,7 +107504,7 @@ in
sha512 = "wG1cc/JhRgdqB6WHEuyLTedf3KIRuD0hG6ldkFEZNCjRxiC+3i6kkWUUbiJQayP28iwG35cEmAbe98585BYV0A==";
};
dependencies = [
- sources."colorette-1.3.0"
+ sources."colorette-1.4.0"
sources."nanoid-3.1.25"
sources."source-map-js-0.6.2"
];
@@ -107624,7 +107542,7 @@ in
sources."cliui-7.0.4"
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
- sources."colorette-1.3.0"
+ sources."colorette-1.4.0"
sources."dependency-graph-0.9.0"
sources."dir-glob-3.0.1"
sources."emoji-regex-8.0.0"
@@ -107844,7 +107762,7 @@ in
sources."console-browserify-1.2.0"
sources."constants-browserify-1.0.0"
sources."convert-source-map-1.1.3"
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
(sources."create-ecdh-4.0.4" // {
dependencies = [
sources."bn.js-4.12.0"
@@ -107873,7 +107791,7 @@ in
sources."es6-promise-3.3.1"
sources."events-2.1.0"
sources."evp_bytestokey-1.0.3"
- sources."fast-safe-stringify-2.0.8"
+ sources."fast-safe-stringify-2.1.0"
sources."fs.realpath-1.0.0"
sources."function-bind-1.1.1"
sources."gaze-1.1.3"
@@ -108040,10 +107958,10 @@ in
purescript-language-server = nodeEnv.buildNodePackage {
name = "purescript-language-server";
packageName = "purescript-language-server";
- version = "0.15.4";
+ version = "0.15.5";
src = fetchurl {
- url = "https://registry.npmjs.org/purescript-language-server/-/purescript-language-server-0.15.4.tgz";
- sha512 = "llUv605I8yvraO98rb5RmmqPdpWBno7IpIlgNlX3Nq3Q4lvB7G0OxGK89JuAoVZ8T/xkTzhjyuzw0sty0DoY3Q==";
+ url = "https://registry.npmjs.org/purescript-language-server/-/purescript-language-server-0.15.5.tgz";
+ sha512 = "Km6LOus92Rab315/OhnILwslCseXbl8s53m0T8te0SYeYgNfUnxVh4/m/r217PAApicemaT3ZMdnXrtAZJ5U6Q==";
};
dependencies = [
sources."isexe-2.0.0"
@@ -108114,11 +108032,22 @@ in
dependencies = [
sources."@sindresorhus/is-0.14.0"
sources."@szmarczak/http-timer-1.1.2"
+ sources."@ungap/promise-all-settled-1.1.2"
sources."agent-base-6.0.2"
+ sources."ansi-colors-4.1.1"
+ sources."ansi-regex-3.0.0"
+ sources."ansi-styles-4.3.0"
+ sources."anymatch-3.1.2"
sources."appdata-path-1.0.0"
+ sources."argparse-2.0.1"
sources."at-least-node-1.0.0"
- sources."axios-0.21.1"
+ sources."axios-0.21.4"
+ sources."balanced-match-1.0.2"
+ sources."binary-extensions-2.2.0"
sources."blueimp-md5-2.18.0"
+ sources."brace-expansion-1.1.11"
+ sources."braces-3.0.2"
+ sources."browser-stdout-1.3.1"
(sources."cacheable-request-6.1.0" // {
dependencies = [
sources."get-stream-5.2.0"
@@ -108126,72 +108055,172 @@ in
];
})
sources."call-bind-1.0.2"
+ sources."camelcase-6.2.0"
+ (sources."chalk-4.1.2" // {
+ dependencies = [
+ sources."supports-color-7.2.0"
+ ];
+ })
+ sources."chokidar-3.5.1"
+ (sources."cliui-7.0.4" // {
+ dependencies = [
+ sources."ansi-regex-5.0.0"
+ sources."is-fullwidth-code-point-3.0.0"
+ sources."string-width-4.2.2"
+ sources."strip-ansi-6.0.0"
+ ];
+ })
sources."clone-response-1.0.2"
+ sources."color-convert-2.0.1"
+ sources."color-name-1.1.4"
sources."colors-1.4.0"
sources."commander-5.1.0"
sources."compare-versions-3.6.0"
+ sources."concat-map-0.0.1"
sources."debug-4.3.2"
+ sources."decamelize-4.0.0"
sources."decompress-response-3.3.0"
sources."deep-extend-0.6.0"
sources."defer-to-connect-1.1.3"
+ sources."diff-5.0.0"
sources."duplexer3-0.1.4"
+ sources."emoji-regex-8.0.0"
sources."end-of-stream-1.4.4"
- sources."follow-redirects-1.14.2"
+ sources."escalade-3.1.1"
+ sources."escape-string-regexp-4.0.0"
+ sources."fill-range-7.0.1"
+ sources."find-up-5.0.0"
+ sources."flat-5.0.2"
+ sources."follow-redirects-1.14.3"
sources."fs-extra-9.1.0"
+ sources."fs.realpath-1.0.0"
+ sources."fsevents-2.3.2"
sources."function-bind-1.1.1"
+ sources."get-caller-file-2.0.5"
sources."get-intrinsic-1.1.1"
sources."get-stream-4.1.0"
+ sources."glob-7.1.6"
+ sources."glob-parent-5.1.2"
sources."got-9.6.0"
sources."graceful-fs-4.2.8"
+ sources."growl-1.10.5"
sources."has-1.0.3"
+ sources."has-flag-4.0.0"
sources."has-symbols-1.0.2"
+ sources."he-1.2.0"
sources."http-cache-semantics-4.1.0"
sources."https-proxy-agent-5.0.0"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.4"
sources."ini-1.3.8"
sources."ip-1.1.5"
+ sources."is-binary-path-2.1.0"
sources."is-docker-2.2.1"
+ sources."is-extglob-2.1.1"
+ sources."is-fullwidth-code-point-2.0.0"
+ sources."is-glob-4.0.1"
+ sources."is-number-7.0.0"
+ sources."is-plain-obj-2.1.0"
sources."is-wsl-2.2.0"
- sources."js-base64-3.6.1"
+ sources."isexe-2.0.0"
+ sources."js-base64-3.6.2"
+ sources."js-yaml-4.0.0"
sources."json-buffer-3.0.0"
sources."jsonfile-6.1.0"
sources."keyv-3.1.0"
sources."kleur-3.0.3"
sources."latest-version-5.1.0"
+ sources."locate-path-6.0.0"
sources."lodash.flatmap-4.5.0"
+ sources."log-symbols-4.0.0"
sources."lowercase-keys-1.0.1"
sources."mimic-response-1.0.1"
+ sources."minimatch-3.0.4"
sources."minimist-1.2.5"
+ (sources."mocha-8.4.0" // {
+ dependencies = [
+ (sources."debug-4.3.1" // {
+ dependencies = [
+ sources."ms-2.1.2"
+ ];
+ })
+ sources."ms-2.1.3"
+ ];
+ })
sources."moment-2.29.1"
sources."ms-2.1.2"
+ sources."nanoid-3.1.20"
+ sources."normalize-path-3.0.0"
sources."normalize-url-4.5.1"
sources."object-inspect-1.11.0"
sources."once-1.4.0"
sources."open-7.4.2"
sources."p-cancelable-1.1.0"
+ sources."p-limit-3.1.0"
+ sources."p-locate-5.0.0"
sources."package-json-6.5.0"
+ sources."path-exists-4.0.0"
+ sources."path-is-absolute-1.0.1"
+ sources."picomatch-2.3.0"
sources."pixiv-api-client-0.25.0"
sources."prepend-http-2.0.0"
sources."prompts-2.4.1"
sources."pump-3.0.0"
sources."qs-6.10.1"
- sources."rc-1.2.8"
+ sources."randombytes-2.1.0"
+ (sources."rc-1.2.8" // {
+ dependencies = [
+ sources."strip-json-comments-2.0.1"
+ ];
+ })
+ sources."readdirp-3.5.0"
sources."readline-sync-1.4.10"
sources."register-protocol-win32-1.1.0"
sources."registry-auth-token-4.2.1"
sources."registry-url-5.1.0"
+ sources."require-directory-2.1.1"
sources."responselike-1.0.2"
+ sources."safe-buffer-5.2.1"
sources."semver-6.3.0"
+ sources."serialize-javascript-5.0.1"
sources."side-channel-1.0.4"
sources."sisteransi-1.0.5"
sources."smart-buffer-4.2.0"
sources."socks-2.6.1"
sources."socks-proxy-agent-5.0.1"
- sources."strip-json-comments-2.0.1"
+ sources."string-width-2.1.1"
+ sources."strip-ansi-4.0.0"
+ sources."strip-json-comments-3.1.1"
+ sources."supports-color-8.1.1"
sources."to-readable-stream-1.0.0"
+ sources."to-regex-range-5.0.1"
sources."universalify-2.0.0"
sources."url-parse-lax-3.0.0"
+ sources."which-2.0.2"
+ sources."wide-align-1.1.3"
sources."winreg-1.2.4"
+ sources."workerpool-6.1.0"
+ (sources."wrap-ansi-7.0.0" // {
+ dependencies = [
+ sources."ansi-regex-5.0.0"
+ sources."is-fullwidth-code-point-3.0.0"
+ sources."string-width-4.2.2"
+ sources."strip-ansi-6.0.0"
+ ];
+ })
sources."wrappy-1.0.2"
+ sources."y18n-5.0.8"
+ (sources."yargs-16.2.0" // {
+ dependencies = [
+ sources."ansi-regex-5.0.0"
+ sources."is-fullwidth-code-point-3.0.0"
+ sources."string-width-4.2.2"
+ sources."strip-ansi-6.0.0"
+ ];
+ })
+ sources."yargs-parser-20.2.4"
+ sources."yargs-unparser-2.0.0"
+ sources."yocto-queue-0.1.0"
];
buildInputs = globalBuildInputs;
meta = {
@@ -108206,10 +108235,10 @@ in
pyright = nodeEnv.buildNodePackage {
name = "pyright";
packageName = "pyright";
- version = "1.1.163";
+ version = "1.1.166";
src = fetchurl {
- url = "https://registry.npmjs.org/pyright/-/pyright-1.1.163.tgz";
- sha512 = "CU0WPzr+6ZKIqCqqVrOtxMFWdzdOV18zKmC7dVBzp3snuun8JafnnmUzNJpO8IJLN/bQNSLb3riLtXFM/8Xxbg==";
+ url = "https://registry.npmjs.org/pyright/-/pyright-1.1.166.tgz";
+ sha512 = "mO+iPT2dhHzlplAV3iKE6u4gUstGZxxLyMSRd1PKZqWhwhTCCGjn3/7VqbAwUt4fuhY8g0V+SAsu+MPT4H3FvQ==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -108254,11 +108283,11 @@ in
sources."concat-map-0.0.1"
sources."concat-stream-1.6.2"
sources."convert-source-map-1.8.0"
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."cross-spawn-6.0.5"
sources."decamelize-1.2.0"
sources."deep-extend-0.6.0"
- sources."deep-is-0.1.3"
+ sources."deep-is-0.1.4"
sources."duplexer2-0.1.4"
sources."encoding-0.1.13"
sources."end-of-stream-1.4.4"
@@ -108322,7 +108351,7 @@ in
sources."minimist-1.2.5"
sources."moment-2.29.1"
sources."nice-try-1.0.5"
- sources."node-fetch-2.6.1"
+ sources."node-fetch-2.6.2"
sources."npm-run-path-2.0.2"
sources."number-is-nan-1.0.1"
sources."object-inspect-1.4.1"
@@ -108458,7 +108487,7 @@ in
sources."ansi-regex-2.1.1"
sources."ansi-styles-2.2.1"
sources."async-0.2.10"
- sources."available-typed-arrays-1.0.4"
+ sources."available-typed-arrays-1.0.5"
sources."balanced-match-1.0.2"
sources."brace-expansion-1.1.11"
sources."call-bind-1.0.2"
@@ -108468,7 +108497,7 @@ in
sources."cycle-1.0.3"
sources."deep-equal-2.0.5"
sources."define-properties-1.1.3"
- sources."es-abstract-1.18.5"
+ sources."es-abstract-1.18.6"
sources."es-get-iterator-1.1.2"
sources."es-to-primitive-1.2.1"
sources."escape-string-regexp-1.0.5"
@@ -108477,6 +108506,7 @@ in
sources."fs.realpath-1.0.0"
sources."function-bind-1.1.1"
sources."get-intrinsic-1.1.1"
+ sources."get-symbol-description-1.0.0"
sources."glob-7.1.7"
sources."has-1.0.3"
sources."has-ansi-2.0.0"
@@ -108499,7 +108529,7 @@ in
sources."is-set-2.0.2"
sources."is-string-1.0.7"
sources."is-symbol-1.0.4"
- sources."is-typed-array-1.1.7"
+ sources."is-typed-array-1.1.8"
sources."is-weakmap-2.0.1"
sources."is-weakset-2.0.1"
sources."isarray-2.0.5"
@@ -108532,7 +108562,7 @@ in
sources."utile-0.2.1"
sources."which-boxed-primitive-1.0.2"
sources."which-collection-1.0.1"
- sources."which-typed-array-1.1.6"
+ sources."which-typed-array-1.1.7"
(sources."winston-0.8.3" // {
dependencies = [
sources."pkginfo-0.3.1"
@@ -108559,53 +108589,53 @@ in
sha512 = "coA9MuNPfN+8TyFj7aOycw2e5W9t+sSgFOUyK30oDrh2MWWWHLjY0I4V1puyCconC2arggfDE2GYXvqOTCGv9Q==";
};
dependencies = [
- sources."@babel/cli-7.14.8"
+ sources."@babel/cli-7.15.4"
sources."@babel/code-frame-7.14.5"
sources."@babel/compat-data-7.15.0"
- (sources."@babel/core-7.15.0" // {
+ (sources."@babel/core-7.15.5" // {
dependencies = [
sources."semver-6.3.0"
];
})
- sources."@babel/generator-7.15.0"
- sources."@babel/helper-annotate-as-pure-7.14.5"
- sources."@babel/helper-builder-binary-assignment-operator-visitor-7.14.5"
- (sources."@babel/helper-compilation-targets-7.15.0" // {
+ sources."@babel/generator-7.15.4"
+ sources."@babel/helper-annotate-as-pure-7.15.4"
+ sources."@babel/helper-builder-binary-assignment-operator-visitor-7.15.4"
+ (sources."@babel/helper-compilation-targets-7.15.4" // {
dependencies = [
sources."semver-6.3.0"
];
})
- sources."@babel/helper-create-class-features-plugin-7.15.0"
+ sources."@babel/helper-create-class-features-plugin-7.15.4"
sources."@babel/helper-create-regexp-features-plugin-7.14.5"
(sources."@babel/helper-define-polyfill-provider-0.2.3" // {
dependencies = [
sources."semver-6.3.0"
];
})
- sources."@babel/helper-explode-assignable-expression-7.14.5"
- sources."@babel/helper-function-name-7.14.5"
- sources."@babel/helper-get-function-arity-7.14.5"
- sources."@babel/helper-hoist-variables-7.14.5"
- sources."@babel/helper-member-expression-to-functions-7.15.0"
- sources."@babel/helper-module-imports-7.14.5"
- sources."@babel/helper-module-transforms-7.15.0"
- sources."@babel/helper-optimise-call-expression-7.14.5"
+ sources."@babel/helper-explode-assignable-expression-7.15.4"
+ sources."@babel/helper-function-name-7.15.4"
+ sources."@babel/helper-get-function-arity-7.15.4"
+ sources."@babel/helper-hoist-variables-7.15.4"
+ sources."@babel/helper-member-expression-to-functions-7.15.4"
+ sources."@babel/helper-module-imports-7.15.4"
+ sources."@babel/helper-module-transforms-7.15.4"
+ sources."@babel/helper-optimise-call-expression-7.15.4"
sources."@babel/helper-plugin-utils-7.14.5"
- sources."@babel/helper-remap-async-to-generator-7.14.5"
- sources."@babel/helper-replace-supers-7.15.0"
- sources."@babel/helper-simple-access-7.14.8"
- sources."@babel/helper-skip-transparent-expression-wrappers-7.14.5"
- sources."@babel/helper-split-export-declaration-7.14.5"
+ sources."@babel/helper-remap-async-to-generator-7.15.4"
+ sources."@babel/helper-replace-supers-7.15.4"
+ sources."@babel/helper-simple-access-7.15.4"
+ sources."@babel/helper-skip-transparent-expression-wrappers-7.15.4"
+ sources."@babel/helper-split-export-declaration-7.15.4"
sources."@babel/helper-validator-identifier-7.14.9"
sources."@babel/helper-validator-option-7.14.5"
- sources."@babel/helper-wrap-function-7.14.5"
- sources."@babel/helpers-7.15.3"
+ sources."@babel/helper-wrap-function-7.15.4"
+ sources."@babel/helpers-7.15.4"
sources."@babel/highlight-7.14.5"
- sources."@babel/parser-7.15.3"
- sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.14.5"
- sources."@babel/plugin-proposal-async-generator-functions-7.14.9"
+ sources."@babel/parser-7.15.5"
+ sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.15.4"
+ sources."@babel/plugin-proposal-async-generator-functions-7.15.4"
sources."@babel/plugin-proposal-class-properties-7.14.5"
- sources."@babel/plugin-proposal-class-static-block-7.14.5"
+ sources."@babel/plugin-proposal-class-static-block-7.15.4"
sources."@babel/plugin-proposal-dynamic-import-7.14.5"
sources."@babel/plugin-proposal-export-default-from-7.14.5"
sources."@babel/plugin-proposal-export-namespace-from-7.14.5"
@@ -108617,7 +108647,7 @@ in
sources."@babel/plugin-proposal-optional-catch-binding-7.14.5"
sources."@babel/plugin-proposal-optional-chaining-7.14.5"
sources."@babel/plugin-proposal-private-methods-7.14.5"
- sources."@babel/plugin-proposal-private-property-in-object-7.14.5"
+ sources."@babel/plugin-proposal-private-property-in-object-7.15.4"
sources."@babel/plugin-proposal-unicode-property-regex-7.14.5"
sources."@babel/plugin-syntax-async-generators-7.8.4"
sources."@babel/plugin-syntax-class-properties-7.12.13"
@@ -108639,24 +108669,24 @@ in
sources."@babel/plugin-transform-async-to-generator-7.14.5"
sources."@babel/plugin-transform-block-scoped-functions-7.14.5"
sources."@babel/plugin-transform-block-scoping-7.15.3"
- sources."@babel/plugin-transform-classes-7.14.9"
+ sources."@babel/plugin-transform-classes-7.15.4"
sources."@babel/plugin-transform-computed-properties-7.14.5"
sources."@babel/plugin-transform-destructuring-7.14.7"
sources."@babel/plugin-transform-dotall-regex-7.14.5"
sources."@babel/plugin-transform-duplicate-keys-7.14.5"
sources."@babel/plugin-transform-exponentiation-operator-7.14.5"
- sources."@babel/plugin-transform-for-of-7.14.5"
+ sources."@babel/plugin-transform-for-of-7.15.4"
sources."@babel/plugin-transform-function-name-7.14.5"
sources."@babel/plugin-transform-literals-7.14.5"
sources."@babel/plugin-transform-member-expression-literals-7.14.5"
sources."@babel/plugin-transform-modules-amd-7.14.5"
- sources."@babel/plugin-transform-modules-commonjs-7.15.0"
- sources."@babel/plugin-transform-modules-systemjs-7.14.5"
+ sources."@babel/plugin-transform-modules-commonjs-7.15.4"
+ sources."@babel/plugin-transform-modules-systemjs-7.15.4"
sources."@babel/plugin-transform-modules-umd-7.14.5"
sources."@babel/plugin-transform-named-capturing-groups-regex-7.14.9"
sources."@babel/plugin-transform-new-target-7.14.5"
sources."@babel/plugin-transform-object-super-7.14.5"
- sources."@babel/plugin-transform-parameters-7.14.5"
+ sources."@babel/plugin-transform-parameters-7.15.4"
sources."@babel/plugin-transform-property-literals-7.14.5"
sources."@babel/plugin-transform-react-display-name-7.15.1"
sources."@babel/plugin-transform-react-jsx-7.14.9"
@@ -108676,7 +108706,7 @@ in
sources."@babel/plugin-transform-typeof-symbol-7.14.5"
sources."@babel/plugin-transform-unicode-escapes-7.14.5"
sources."@babel/plugin-transform-unicode-regex-7.14.5"
- (sources."@babel/preset-env-7.15.0" // {
+ (sources."@babel/preset-env-7.15.4" // {
dependencies = [
sources."semver-6.3.0"
];
@@ -108685,16 +108715,16 @@ in
sources."@babel/preset-react-7.14.5"
sources."@babel/preset-stage-0-7.8.3"
sources."@babel/register-7.15.3"
- sources."@babel/runtime-7.15.3"
- sources."@babel/template-7.14.5"
- sources."@babel/traverse-7.15.0"
- sources."@babel/types-7.15.0"
+ sources."@babel/runtime-7.15.4"
+ sources."@babel/template-7.15.4"
+ sources."@babel/traverse-7.15.4"
+ sources."@babel/types-7.15.4"
sources."@reach/router-1.3.4"
sources."@sindresorhus/is-0.7.0"
sources."@types/glob-7.1.4"
sources."@types/json-schema-7.0.9"
sources."@types/minimatch-3.0.5"
- sources."@types/node-16.7.2"
+ sources."@types/node-16.7.13"
sources."@types/parse-json-4.0.0"
sources."@types/q-1.5.5"
sources."@webassemblyjs/ast-1.9.0"
@@ -108767,11 +108797,11 @@ in
sources."async-limiter-1.0.1"
sources."atob-2.1.2"
sources."autoprefixer-9.8.6"
- sources."axios-0.21.1"
+ sources."axios-0.21.4"
sources."babel-core-7.0.0-bridge.0"
(sources."babel-loader-8.2.2" // {
dependencies = [
- sources."find-cache-dir-3.3.1"
+ sources."find-cache-dir-3.3.2"
sources."find-up-4.1.0"
sources."locate-path-5.0.0"
sources."make-dir-3.1.0"
@@ -108848,7 +108878,7 @@ in
];
})
sources."browserify-zlib-0.1.4"
- sources."browserslist-4.16.8"
+ sources."browserslist-4.17.0"
sources."buffer-5.7.1"
sources."buffer-alloc-1.2.0"
sources."buffer-alloc-unsafe-1.1.0"
@@ -108882,7 +108912,7 @@ in
sources."camel-case-3.0.0"
sources."camelcase-5.3.1"
sources."caniuse-api-3.0.0"
- sources."caniuse-lite-1.0.30001252"
+ sources."caniuse-lite-1.0.30001255"
sources."case-sensitive-paths-webpack-plugin-2.4.0"
sources."caw-2.0.1"
(sources."chalk-2.4.2" // {
@@ -108940,7 +108970,7 @@ in
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
sources."color-string-1.6.0"
- sources."colorette-1.3.0"
+ sources."colorette-1.4.0"
sources."commander-4.1.1"
sources."commondir-1.0.1"
sources."component-bind-1.0.0"
@@ -108967,12 +108997,12 @@ in
sources."copy-concurrently-1.0.5"
sources."copy-descriptor-0.1.1"
sources."core-js-2.6.12"
- (sources."core-js-compat-3.16.3" // {
+ (sources."core-js-compat-3.17.2" // {
dependencies = [
sources."semver-7.0.0"
];
})
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."cors-2.8.5"
sources."cosmiconfig-6.0.0"
(sources."create-ecdh-4.0.4" // {
@@ -109092,7 +109122,7 @@ in
})
sources."domain-browser-1.2.0"
sources."domelementtype-1.3.1"
- (sources."domhandler-4.2.0" // {
+ (sources."domhandler-4.2.2" // {
dependencies = [
sources."domelementtype-2.2.0"
];
@@ -109111,7 +109141,7 @@ in
sources."duplexify-3.7.1"
sources."ee-first-1.1.1"
sources."ejs-2.7.4"
- sources."electron-to-chromium-1.3.818"
+ sources."electron-to-chromium-1.3.832"
(sources."elliptic-6.5.4" // {
dependencies = [
sources."bn.js-4.12.0"
@@ -109142,7 +109172,7 @@ in
sources."entities-2.2.0"
sources."errno-0.1.8"
sources."error-ex-1.3.2"
- sources."es-abstract-1.18.5"
+ sources."es-abstract-1.18.6"
sources."es-to-primitive-1.2.1"
sources."escalade-3.1.1"
sources."escape-html-1.0.3"
@@ -109245,7 +109275,7 @@ in
sources."find-cache-dir-2.1.0"
sources."find-up-3.0.0"
sources."flush-write-stream-1.1.1"
- sources."follow-redirects-1.14.2"
+ sources."follow-redirects-1.14.3"
sources."for-in-1.0.2"
sources."forwarded-0.2.0"
sources."fragment-cache-0.2.1"
@@ -109263,6 +109293,7 @@ in
sources."get-intrinsic-1.1.1"
sources."get-proxy-2.1.0"
sources."get-stream-3.0.0"
+ sources."get-symbol-description-1.0.0"
sources."get-value-2.0.6"
sources."git-clone-0.1.0"
sources."git-promise-1.0.0"
@@ -109341,7 +109372,7 @@ in
dependencies = [
sources."dom-serializer-1.3.2"
sources."domelementtype-2.2.0"
- sources."domutils-2.7.0"
+ sources."domutils-2.8.0"
];
})
sources."http-cache-semantics-3.8.1"
@@ -109848,7 +109879,7 @@ in
sources."css-what-5.0.1"
sources."dom-serializer-1.3.2"
sources."domelementtype-2.2.0"
- sources."domutils-2.7.0"
+ sources."domutils-2.8.0"
sources."nth-check-2.0.0"
sources."strip-ansi-3.0.1"
];
@@ -110371,7 +110402,7 @@ in
sources."@mozilla/readability-0.4.1"
sources."@tootallnate/once-1.1.2"
sources."abab-2.0.5"
- sources."acorn-8.4.1"
+ sources."acorn-8.5.0"
(sources."acorn-globals-6.0.0" // {
dependencies = [
sources."acorn-7.4.1"
@@ -110396,7 +110427,7 @@ in
sources."data-urls-2.0.0"
sources."debug-4.3.2"
sources."decimal.js-10.3.1"
- sources."deep-is-0.1.3"
+ sources."deep-is-0.1.4"
sources."delayed-stream-1.0.0"
(sources."domexception-2.0.1" // {
dependencies = [
@@ -110450,7 +110481,7 @@ in
sources."whatwg-url-8.7.0"
sources."word-wrap-1.2.3"
sources."wrap-ansi-7.0.0"
- sources."ws-7.5.3"
+ sources."ws-7.5.4"
sources."xml-name-validator-3.0.0"
sources."xmlchars-2.2.0"
sources."y18n-5.0.8"
@@ -110477,33 +110508,33 @@ in
};
dependencies = [
sources."@babel/code-frame-7.14.5"
- (sources."@babel/generator-7.15.0" // {
+ (sources."@babel/generator-7.15.4" // {
dependencies = [
sources."source-map-0.5.7"
];
})
- sources."@babel/helper-annotate-as-pure-7.14.5"
- sources."@babel/helper-function-name-7.14.5"
- sources."@babel/helper-get-function-arity-7.14.5"
- sources."@babel/helper-hoist-variables-7.14.5"
- sources."@babel/helper-module-imports-7.14.5"
- sources."@babel/helper-split-export-declaration-7.14.5"
+ sources."@babel/helper-annotate-as-pure-7.15.4"
+ sources."@babel/helper-function-name-7.15.4"
+ sources."@babel/helper-get-function-arity-7.15.4"
+ sources."@babel/helper-hoist-variables-7.15.4"
+ sources."@babel/helper-module-imports-7.15.4"
+ sources."@babel/helper-split-export-declaration-7.15.4"
sources."@babel/helper-validator-identifier-7.14.9"
sources."@babel/highlight-7.14.5"
- sources."@babel/parser-7.15.3"
- sources."@babel/runtime-7.15.3"
- sources."@babel/template-7.14.5"
- sources."@babel/traverse-7.15.0"
- sources."@babel/types-7.15.0"
+ sources."@babel/parser-7.15.5"
+ sources."@babel/runtime-7.15.4"
+ sources."@babel/template-7.15.4"
+ sources."@babel/traverse-7.15.4"
+ sources."@babel/types-7.15.4"
sources."@emotion/is-prop-valid-0.8.8"
sources."@emotion/memoize-0.7.4"
sources."@emotion/stylis-0.8.5"
sources."@emotion/unitless-0.7.5"
sources."@exodus/schemasafe-1.0.0-rc.4"
sources."@redocly/ajv-8.6.2"
- (sources."@redocly/openapi-core-1.0.0-beta.55" // {
+ (sources."@redocly/openapi-core-1.0.0-beta.58" // {
dependencies = [
- sources."@types/node-14.17.12"
+ sources."@types/node-14.17.15"
];
})
sources."@redocly/react-dropdown-aria-2.0.12"
@@ -110560,11 +110591,11 @@ in
sources."clsx-1.1.1"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
- sources."colorette-1.3.0"
+ sources."colorette-1.4.0"
sources."concat-map-0.0.1"
sources."console-browserify-1.2.0"
sources."constants-browserify-1.0.0"
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
(sources."create-ecdh-4.0.4" // {
dependencies = [
sources."bn.js-4.12.0"
@@ -110600,7 +110631,7 @@ in
sources."events-3.3.0"
sources."evp_bytestokey-1.0.3"
sources."fast-deep-equal-3.1.3"
- sources."fast-safe-stringify-2.0.8"
+ sources."fast-safe-stringify-2.1.1"
sources."fill-range-7.0.1"
sources."foreach-2.0.5"
sources."fsevents-2.3.2"
@@ -110656,12 +110687,12 @@ in
sources."minimatch-3.0.4"
sources."minimist-1.2.5"
sources."mkdirp-1.0.4"
- sources."mobx-6.3.2"
+ sources."mobx-6.3.3"
sources."mobx-react-7.2.0"
- sources."mobx-react-lite-3.2.0"
+ sources."mobx-react-lite-3.2.1"
sources."ms-2.1.2"
sources."neo-async-2.6.2"
- sources."node-fetch-2.6.1"
+ sources."node-fetch-2.6.2"
sources."node-fetch-h2-2.3.0"
sources."node-libs-browser-2.2.1"
sources."node-readfiles-0.2.0"
@@ -110748,7 +110779,7 @@ in
sources."to-fast-properties-2.0.0"
sources."to-regex-range-5.0.1"
sources."tty-browserify-0.0.0"
- sources."uglify-js-3.14.1"
+ sources."uglify-js-3.14.2"
(sources."uri-js-4.4.1" // {
dependencies = [
sources."punycode-2.1.1"
@@ -111005,7 +111036,7 @@ in
"rust-analyzer-build-deps-../../misc/vscode-extensions/rust-analyzer/build-deps" = nodeEnv.buildNodePackage {
name = "rust-analyzer";
packageName = "rust-analyzer";
- version = "0.2.727";
+ version = "0.2.735";
src = ../../misc/vscode-extensions/rust-analyzer/build-deps;
dependencies = [
sources."@babel/code-frame-7.12.11"
@@ -111032,16 +111063,16 @@ in
sources."@types/json-schema-7.0.9"
sources."@types/minimatch-3.0.5"
sources."@types/mocha-8.2.3"
- sources."@types/node-14.17.12"
+ sources."@types/node-14.17.15"
sources."@types/node-fetch-2.5.12"
- sources."@types/vscode-1.59.0"
- sources."@typescript-eslint/eslint-plugin-4.29.3"
- sources."@typescript-eslint/experimental-utils-4.29.3"
- sources."@typescript-eslint/parser-4.29.3"
- sources."@typescript-eslint/scope-manager-4.29.3"
- sources."@typescript-eslint/types-4.29.3"
- sources."@typescript-eslint/typescript-estree-4.29.3"
- sources."@typescript-eslint/visitor-keys-4.29.3"
+ sources."@types/vscode-1.60.0"
+ sources."@typescript-eslint/eslint-plugin-4.31.0"
+ sources."@typescript-eslint/experimental-utils-4.31.0"
+ sources."@typescript-eslint/parser-4.31.0"
+ sources."@typescript-eslint/scope-manager-4.31.0"
+ sources."@typescript-eslint/types-4.31.0"
+ sources."@typescript-eslint/typescript-estree-4.31.0"
+ sources."@typescript-eslint/visitor-keys-4.31.0"
sources."@ungap/promise-all-settled-1.1.2"
sources."acorn-7.4.1"
sources."acorn-jsx-5.3.2"
@@ -111091,7 +111122,7 @@ in
sources."commander-7.2.0"
sources."commandpost-1.4.0"
sources."concat-map-0.0.1"
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."cross-spawn-7.0.3"
sources."css-select-4.1.3"
sources."css-what-5.0.1"
@@ -111143,7 +111174,7 @@ in
sources."d3-zoom-3.0.0"
sources."debug-4.3.2"
sources."decamelize-4.0.0"
- sources."deep-is-0.1.3"
+ sources."deep-is-0.1.4"
sources."delaunator-5.0.0"
sources."delayed-stream-1.0.0"
sources."denodeify-1.2.1"
@@ -111152,8 +111183,8 @@ in
sources."doctrine-3.0.0"
sources."dom-serializer-1.3.2"
sources."domelementtype-2.2.0"
- sources."domhandler-4.2.0"
- sources."domutils-2.7.0"
+ sources."domhandler-4.2.2"
+ sources."domutils-2.8.0"
sources."duplexer2-0.1.4"
(sources."editorconfig-0.15.3" // {
dependencies = [
@@ -111281,7 +111312,7 @@ in
sources."minimatch-3.0.4"
sources."minimist-1.2.5"
sources."mkdirp-0.5.5"
- (sources."mocha-9.1.0" // {
+ (sources."mocha-9.1.1" // {
dependencies = [
sources."argparse-2.0.1"
(sources."debug-4.3.1" // {
@@ -111299,7 +111330,7 @@ in
sources."mute-stream-0.0.8"
sources."nanoid-3.1.23"
sources."natural-compare-1.4.0"
- sources."node-fetch-2.6.1"
+ sources."node-fetch-2.6.2"
sources."normalize-path-3.0.0"
sources."nth-check-2.0.0"
sources."object-inspect-1.11.0"
@@ -111394,8 +111425,8 @@ in
sources."tunnel-0.0.6"
sources."type-check-0.4.0"
sources."type-fest-0.20.2"
- sources."typed-rest-client-1.8.5"
- sources."typescript-4.3.5"
+ sources."typed-rest-client-1.8.6"
+ sources."typescript-4.4.2"
sources."typescript-formatter-7.2.2"
sources."uc.micro-1.0.6"
sources."underscore-1.13.1"
@@ -111404,7 +111435,7 @@ in
sources."url-join-1.1.0"
sources."util-deprecate-1.0.2"
sources."v8-compile-cache-2.3.0"
- (sources."vsce-1.96.1" // {
+ (sources."vsce-1.97.0" // {
dependencies = [
sources."chalk-2.4.2"
sources."commander-6.2.1"
@@ -111462,7 +111493,7 @@ in
};
dependencies = [
sources."aws-sdk-1.18.0"
- sources."axios-0.21.1"
+ sources."axios-0.21.4"
sources."buffer-crc32-0.2.1"
sources."bytes-0.2.1"
sources."call-bind-1.0.2"
@@ -111475,7 +111506,7 @@ in
})
sources."cookie-0.1.0"
sources."cookie-signature-1.0.1"
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."crc-0.2.0"
sources."crypto-0.0.3"
sources."debug-4.3.2"
@@ -111497,7 +111528,7 @@ in
sources."commander-1.3.2"
];
})
- sources."follow-redirects-1.14.2"
+ sources."follow-redirects-1.14.3"
sources."formidable-1.0.11"
sources."fresh-0.2.0"
sources."function-bind-1.1.1"
@@ -111551,10 +111582,10 @@ in
sass = nodeEnv.buildNodePackage {
name = "sass";
packageName = "sass";
- version = "1.38.1";
+ version = "1.39.0";
src = fetchurl {
- url = "https://registry.npmjs.org/sass/-/sass-1.38.1.tgz";
- sha512 = "Lj8nPaSYOuRhgqdyShV50fY5jKnvaRmikUNalMPmbH+tKMGgEKVkltI/lP30PEfO2T1t6R9yc2QIBLgOc3uaFw==";
+ url = "https://registry.npmjs.org/sass/-/sass-1.39.0.tgz";
+ sha512 = "F4o+RhJkNOIG0b6QudYU8c78ZADKZjKDk5cyrf8XTKWfrgbtyVVXImFstJrc+1pkQDCggyidIOytq6gS4gCCZg==";
};
dependencies = [
sources."anymatch-3.1.2"
@@ -111724,10 +111755,10 @@ in
serverless = nodeEnv.buildNodePackage {
name = "serverless";
packageName = "serverless";
- version = "2.56.0";
+ version = "2.57.0";
src = fetchurl {
- url = "https://registry.npmjs.org/serverless/-/serverless-2.56.0.tgz";
- sha512 = "/nmD1aLe+rXZpTmnxzHogCt5qGGBrE+wce7LcLV1yNne+aymyCcL8vcLj2Ib2ukTXweWpr8MxAgdXVtbwY4EGA==";
+ url = "https://registry.npmjs.org/serverless/-/serverless-2.57.0.tgz";
+ sha512 = "/gLzaqdisNlymMiQJMkFoACy7NXkOd7E67sbcOrENXuVb48QAS4PTT8VPkMNu6eQonlphGagbKhpqVmKzHJDmQ==";
};
dependencies = [
sources."2-thenable-1.0.0"
@@ -111760,7 +111791,7 @@ in
];
})
sources."@serverless/component-metrics-1.0.8"
- (sources."@serverless/components-3.16.0" // {
+ (sources."@serverless/components-3.17.0" // {
dependencies = [
(sources."@serverless/utils-4.1.0" // {
dependencies = [
@@ -111795,16 +111826,19 @@ in
sources."jwt-decode-2.2.0"
];
})
- (sources."@serverless/platform-client-china-2.2.3" // {
+ (sources."@serverless/platform-client-china-2.2.6" // {
dependencies = [
sources."dotenv-8.6.0"
sources."js-yaml-3.14.1"
];
})
sources."@serverless/template-1.1.4"
- (sources."@serverless/utils-5.7.0" // {
+ (sources."@serverless/utils-5.8.1" // {
dependencies = [
+ sources."cli-progress-footer-2.0.0"
sources."get-stream-6.0.1"
+ sources."has-flag-4.0.0"
+ sources."supports-color-8.1.1"
sources."write-file-atomic-3.0.3"
];
})
@@ -111816,10 +111850,10 @@ in
sources."@types/cacheable-request-6.0.2"
sources."@types/caseless-0.12.2"
sources."@types/http-cache-semantics-4.0.1"
- sources."@types/keyv-3.1.2"
+ sources."@types/keyv-3.1.3"
sources."@types/lodash-4.14.172"
sources."@types/long-4.0.1"
- sources."@types/node-16.7.2"
+ sources."@types/node-16.7.13"
sources."@types/request-2.48.7"
sources."@types/request-promise-native-1.0.18"
sources."@types/responselike-1.0.0"
@@ -111865,7 +111899,7 @@ in
sources."string_decoder-1.1.1"
];
})
- (sources."are-we-there-yet-1.1.5" // {
+ (sources."are-we-there-yet-1.1.7" // {
dependencies = [
sources."readable-stream-2.3.7"
sources."safe-buffer-5.1.2"
@@ -111880,7 +111914,7 @@ in
sources."async-2.6.3"
sources."asynckit-0.4.0"
sources."at-least-node-1.0.0"
- (sources."aws-sdk-2.977.0" // {
+ (sources."aws-sdk-2.984.0" // {
dependencies = [
sources."buffer-4.9.2"
sources."ieee754-1.1.13"
@@ -111890,7 +111924,7 @@ in
})
sources."aws-sign2-0.7.0"
sources."aws4-1.11.0"
- sources."axios-0.21.1"
+ sources."axios-0.21.4"
sources."backo2-1.0.2"
sources."balanced-match-1.0.2"
sources."base64-arraybuffer-0.1.4"
@@ -111977,6 +112011,12 @@ in
sources."process-utils-2.6.0"
];
})
+ (sources."cli-sprintf-format-1.1.0" // {
+ dependencies = [
+ sources."ansi-regex-2.1.1"
+ sources."cli-color-1.4.0"
+ ];
+ })
sources."cli-width-3.0.0"
sources."clone-response-1.0.2"
sources."code-point-at-1.1.0"
@@ -112103,7 +112143,7 @@ in
sources."fast-deep-equal-3.1.3"
sources."fast-glob-3.2.7"
sources."fast-json-stable-stringify-2.1.0"
- sources."fast-safe-stringify-2.0.8"
+ sources."fast-safe-stringify-2.1.1"
sources."fastest-levenshtein-1.0.12"
sources."fastq-1.12.0"
sources."fd-slicer-1.1.0"
@@ -112113,11 +112153,11 @@ in
sources."file-uri-to-path-1.0.0"
sources."filename-reserved-regex-2.0.0"
sources."filenamify-4.3.0"
- sources."filesize-7.0.0"
+ sources."filesize-8.0.0"
sources."fill-range-7.0.1"
sources."find-requires-1.0.0"
sources."flat-5.0.2"
- sources."follow-redirects-1.14.2"
+ sources."follow-redirects-1.14.3"
sources."forever-agent-0.6.1"
sources."form-data-2.5.1"
sources."formidable-1.2.2"
@@ -112166,6 +112206,7 @@ in
sources."graphlib-2.1.8"
sources."har-schema-2.0.0"
sources."har-validator-5.1.5"
+ sources."has-ansi-4.0.1"
(sources."has-binary2-1.0.3" // {
dependencies = [
sources."isarray-2.0.1"
@@ -112267,9 +112308,11 @@ in
sources."lodash.flatten-4.4.0"
sources."lodash.isplainobject-4.0.6"
sources."lodash.union-4.6.0"
- (sources."log-6.0.0" // {
+ sources."log-6.1.0"
+ (sources."log-node-8.0.0" // {
dependencies = [
- sources."type-1.2.0"
+ sources."has-flag-4.0.0"
+ sources."supports-color-8.1.1"
];
})
(sources."logform-2.2.0" // {
@@ -112315,13 +112358,13 @@ in
sources."nested-error-stacks-2.1.0"
sources."next-tick-1.0.0"
sources."nice-try-1.0.5"
- (sources."node-abi-2.30.0" // {
+ (sources."node-abi-2.30.1" // {
dependencies = [
sources."semver-5.7.1"
];
})
sources."node-dir-0.1.17"
- sources."node-fetch-2.6.1"
+ sources."node-fetch-2.6.2"
sources."noop-logger-0.1.1"
sources."normalize-path-3.0.0"
sources."normalize-url-4.5.1"
@@ -112403,7 +112446,7 @@ in
})
sources."request-promise-core-1.1.4"
sources."request-promise-native-1.0.9"
- sources."resolve-alpn-1.2.0"
+ sources."resolve-alpn-1.2.1"
sources."responselike-1.0.2"
sources."restore-cursor-3.1.0"
sources."retry-0.10.1"
@@ -112425,7 +112468,7 @@ in
sources."signal-exit-3.0.3"
sources."simple-concat-1.0.1"
sources."simple-get-2.8.1"
- (sources."simple-git-2.44.0" // {
+ (sources."simple-git-2.45.1" // {
dependencies = [
sources."debug-4.3.2"
sources."ms-2.1.2"
@@ -112586,7 +112629,7 @@ in
})
sources."wrappy-1.0.2"
sources."write-file-atomic-2.4.3"
- sources."ws-7.5.3"
+ sources."ws-7.5.4"
sources."xml2js-0.4.19"
sources."xmlbuilder-9.0.7"
sources."xmlhttprequest-ssl-1.6.3"
@@ -112649,7 +112692,7 @@ in
sources."content-type-1.0.4"
sources."cookie-0.4.0"
sources."cookie-signature-1.0.6"
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."dashdash-1.14.1"
sources."debug-2.6.9"
sources."delayed-stream-1.0.0"
@@ -112822,7 +112865,11 @@ in
sources."utils-merge-1.0.1"
sources."uuid-3.4.0"
sources."vary-1.1.2"
- sources."verror-1.10.0"
+ (sources."verror-1.10.0" // {
+ dependencies = [
+ sources."core-util-is-1.0.2"
+ ];
+ })
(sources."ws-0.4.31" // {
dependencies = [
sources."commander-0.6.1"
@@ -112890,7 +112937,7 @@ in
sources."commander-2.9.0"
sources."component-emitter-1.3.0"
sources."copy-descriptor-0.1.1"
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."debug-2.6.9"
sources."decode-uri-component-0.2.0"
sources."define-property-2.0.2"
@@ -113235,10 +113282,10 @@ in
snyk = nodeEnv.buildNodePackage {
name = "snyk";
packageName = "snyk";
- version = "1.692.0";
+ version = "1.698.0";
src = fetchurl {
- url = "https://registry.npmjs.org/snyk/-/snyk-1.692.0.tgz";
- sha512 = "N/hfiyccrQRwiU1fFzG1uxKU0ODRTi7UtcZJhtRidE/DT3Vs35pWU/y4vVfXP/OegtihAwGjEirxNeL8o632mQ==";
+ url = "https://registry.npmjs.org/snyk/-/snyk-1.698.0.tgz";
+ sha512 = "ivOZ1VCRwGvtOG6c3etxLPdwRjjnXvg9aSXRP7oOSZDQvEWouKDh9HpvkTHm8mZgFACw6hU1cmBseHyMfpYnkw==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -113253,16 +113300,16 @@ in
"socket.io" = nodeEnv.buildNodePackage {
name = "socket.io";
packageName = "socket.io";
- version = "4.1.3";
+ version = "4.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/socket.io/-/socket.io-4.1.3.tgz";
- sha512 = "tLkaY13RcO4nIRh1K2hT5iuotfTaIQw7cVIe0FUykN3SuQi0cm7ALxuyT5/CtDswOMWUzMGTibxYNx/gU7In+Q==";
+ url = "https://registry.npmjs.org/socket.io/-/socket.io-4.2.0.tgz";
+ sha512 = "sjlGfMmnaWvTRVxGRGWyhd9ctpg4APxWAxu85O/SxekkxHhfxmePWZbaYCkeX5QQX0z1YEnKOlNt6w82E4Nzug==";
};
dependencies = [
sources."@types/component-emitter-1.2.10"
sources."@types/cookie-0.4.1"
sources."@types/cors-2.8.12"
- sources."@types/node-16.7.2"
+ sources."@types/node-16.7.13"
sources."accepts-1.3.7"
sources."base64-arraybuffer-0.1.4"
sources."base64id-2.0.0"
@@ -113270,14 +113317,14 @@ in
sources."cookie-0.4.1"
sources."cors-2.8.5"
sources."debug-4.3.2"
- sources."engine.io-5.1.1"
- sources."engine.io-parser-4.0.2"
+ sources."engine.io-5.2.0"
+ sources."engine.io-parser-4.0.3"
sources."mime-db-1.49.0"
sources."mime-types-2.1.32"
sources."ms-2.1.2"
sources."negotiator-0.6.2"
sources."object-assign-4.1.1"
- sources."socket.io-adapter-2.3.1"
+ sources."socket.io-adapter-2.3.2"
sources."socket.io-parser-4.0.4"
sources."vary-1.1.2"
sources."ws-7.4.6"
@@ -113530,7 +113577,7 @@ in
sources."atomic-file-1.1.5"
sources."atomic-file-rw-0.2.2"
sources."attach-ware-1.1.1"
- sources."available-typed-arrays-1.0.4"
+ sources."available-typed-arrays-1.0.5"
sources."bail-1.0.5"
sources."balanced-match-1.0.2"
(sources."base-0.11.2" // {
@@ -113616,7 +113663,7 @@ in
sources."continuable-para-1.2.0"
sources."continuable-series-1.2.0"
sources."copy-descriptor-0.1.1"
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."cpu-percentage-1.0.3"
sources."crc-3.6.0"
sources."cross-spawn-6.0.5"
@@ -113651,7 +113698,7 @@ in
})
sources."epidemic-broadcast-trees-7.0.0"
sources."errno-0.1.8"
- sources."es-abstract-1.18.5"
+ sources."es-abstract-1.18.6"
(sources."es-get-iterator-1.1.2" // {
dependencies = [
sources."isarray-2.0.5"
@@ -113721,6 +113768,7 @@ in
sources."fsevents-1.2.13"
sources."function-bind-1.1.1"
sources."get-intrinsic-1.1.1"
+ sources."get-symbol-description-1.0.0"
sources."get-value-2.0.6"
sources."glob-6.0.4"
sources."glob-base-0.3.0"
@@ -113814,7 +113862,7 @@ in
sources."is-set-2.0.2"
sources."is-string-1.0.7"
sources."is-symbol-1.0.4"
- sources."is-typed-array-1.1.7"
+ sources."is-typed-array-1.1.8"
sources."is-typedarray-1.0.0"
sources."is-valid-domain-0.0.20"
sources."is-weakmap-2.0.1"
@@ -114384,11 +114432,11 @@ in
sources."which-1.3.1"
sources."which-boxed-primitive-1.0.2"
sources."which-collection-1.0.1"
- sources."which-typed-array-1.1.6"
+ sources."which-typed-array-1.1.7"
sources."word-wrap-1.2.3"
sources."wrap-fn-0.1.5"
sources."wrappy-1.0.2"
- sources."ws-7.5.3"
+ sources."ws-7.5.4"
sources."xtend-4.0.2"
sources."zerr-1.0.4"
];
@@ -114488,14 +114536,14 @@ in
sources."async-1.5.2"
sources."async-limiter-1.0.1"
sources."asynckit-0.4.0"
- (sources."aws-sdk-2.977.0" // {
+ (sources."aws-sdk-2.984.0" // {
dependencies = [
sources."uuid-3.3.2"
];
})
sources."aws-sign2-0.6.0"
sources."aws4-1.11.0"
- sources."axios-0.21.1"
+ sources."axios-0.21.4"
sources."babel-runtime-6.26.0"
sources."babel-types-6.26.0"
sources."babylon-6.18.0"
@@ -114673,7 +114721,7 @@ in
sources."fd-slicer-1.1.0"
sources."finalhandler-1.1.2"
sources."find-up-3.0.0"
- sources."follow-redirects-1.14.2"
+ sources."follow-redirects-1.14.3"
sources."forever-agent-0.6.1"
sources."form-data-2.1.4"
sources."formidable-1.2.2"
@@ -115273,31 +115321,31 @@ in
dependencies = [
sources."@babel/code-frame-7.14.5"
sources."@babel/compat-data-7.15.0"
- sources."@babel/core-7.15.0"
- sources."@babel/generator-7.15.0"
- sources."@babel/helper-compilation-targets-7.15.0"
- sources."@babel/helper-function-name-7.14.5"
- sources."@babel/helper-get-function-arity-7.14.5"
- sources."@babel/helper-hoist-variables-7.14.5"
- sources."@babel/helper-member-expression-to-functions-7.15.0"
- sources."@babel/helper-module-imports-7.14.5"
- sources."@babel/helper-module-transforms-7.15.0"
- sources."@babel/helper-optimise-call-expression-7.14.5"
- sources."@babel/helper-replace-supers-7.15.0"
- sources."@babel/helper-simple-access-7.14.8"
- sources."@babel/helper-split-export-declaration-7.14.5"
+ sources."@babel/core-7.15.5"
+ sources."@babel/generator-7.15.4"
+ sources."@babel/helper-compilation-targets-7.15.4"
+ sources."@babel/helper-function-name-7.15.4"
+ sources."@babel/helper-get-function-arity-7.15.4"
+ sources."@babel/helper-hoist-variables-7.15.4"
+ sources."@babel/helper-member-expression-to-functions-7.15.4"
+ sources."@babel/helper-module-imports-7.15.4"
+ sources."@babel/helper-module-transforms-7.15.4"
+ sources."@babel/helper-optimise-call-expression-7.15.4"
+ sources."@babel/helper-replace-supers-7.15.4"
+ sources."@babel/helper-simple-access-7.15.4"
+ sources."@babel/helper-split-export-declaration-7.15.4"
sources."@babel/helper-validator-identifier-7.14.9"
sources."@babel/helper-validator-option-7.14.5"
- sources."@babel/helpers-7.15.3"
+ sources."@babel/helpers-7.15.4"
(sources."@babel/highlight-7.14.5" // {
dependencies = [
sources."chalk-2.4.2"
];
})
- sources."@babel/parser-7.15.3"
- sources."@babel/template-7.14.5"
- sources."@babel/traverse-7.15.0"
- sources."@babel/types-7.15.0"
+ sources."@babel/parser-7.15.5"
+ sources."@babel/template-7.15.4"
+ sources."@babel/traverse-7.15.4"
+ sources."@babel/types-7.15.4"
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
@@ -115323,11 +115371,11 @@ in
];
})
sources."braces-3.0.2"
- sources."browserslist-4.16.8"
+ sources."browserslist-4.17.0"
sources."callsites-3.1.0"
sources."camelcase-5.3.1"
sources."camelcase-keys-6.2.2"
- sources."caniuse-lite-1.0.30001252"
+ sources."caniuse-lite-1.0.30001255"
(sources."chalk-4.1.2" // {
dependencies = [
sources."ansi-styles-4.3.0"
@@ -115343,7 +115391,7 @@ in
sources."clone-regexp-2.2.0"
sources."color-convert-1.9.3"
sources."color-name-1.1.3"
- sources."colorette-1.3.0"
+ sources."colorette-1.4.0"
sources."concat-map-0.0.1"
sources."convert-source-map-1.8.0"
sources."cosmiconfig-7.0.1"
@@ -115365,7 +115413,7 @@ in
sources."domelementtype-1.3.1"
sources."domhandler-2.4.2"
sources."domutils-1.7.0"
- sources."electron-to-chromium-1.3.818"
+ sources."electron-to-chromium-1.3.832"
sources."emoji-regex-8.0.0"
sources."entities-1.1.2"
sources."error-ex-1.3.2"
@@ -115604,7 +115652,7 @@ in
sha512 = "EstDoqxjqWStWELh7Z0qytqUDl/ikdNEr21dveNc4fUDnhnqO2F2jHEufqoNnC3GfBji3GIUHvoXsp/I5lMbCg==";
};
dependencies = [
- sources."@types/node-16.7.2"
+ sources."@types/node-16.7.13"
sources."@types/pug-2.0.5"
sources."@types/sass-1.16.1"
sources."ansi-styles-4.3.0"
@@ -115613,6 +115661,7 @@ in
sources."binary-extensions-2.2.0"
sources."brace-expansion-1.1.11"
sources."braces-3.0.2"
+ sources."buffer-crc32-0.2.13"
sources."callsites-3.1.0"
sources."chalk-4.1.2"
sources."chokidar-3.5.2"
@@ -115620,11 +115669,13 @@ in
sources."color-name-1.1.4"
sources."concat-map-0.0.1"
sources."detect-indent-6.1.0"
+ sources."es6-promise-3.3.1"
sources."fill-range-7.0.1"
sources."fs.realpath-1.0.0"
sources."fsevents-2.3.2"
sources."glob-7.1.7"
sources."glob-parent-5.1.2"
+ sources."graceful-fs-4.2.8"
sources."has-flag-4.0.0"
sources."import-fresh-3.3.0"
sources."inflight-1.0.6"
@@ -115633,9 +115684,11 @@ in
sources."is-extglob-2.1.1"
sources."is-glob-4.0.1"
sources."is-number-7.0.0"
+ sources."magic-string-0.25.7"
sources."min-indent-1.0.1"
sources."minimatch-3.0.4"
sources."minimist-1.2.5"
+ sources."mkdirp-0.5.5"
sources."mri-1.1.6"
sources."normalize-path-3.0.0"
sources."once-1.4.0"
@@ -115644,13 +115697,17 @@ in
sources."picomatch-2.3.0"
sources."readdirp-3.6.0"
sources."resolve-from-4.0.0"
+ sources."rimraf-2.7.1"
sources."sade-1.7.4"
+ 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.8.0"
+ sources."svelte-preprocess-4.9.2"
sources."to-regex-range-5.0.1"
- sources."typescript-4.3.5"
+ sources."typescript-4.4.2"
sources."wrappy-1.0.2"
];
buildInputs = globalBuildInputs;
@@ -115675,7 +115732,7 @@ in
sources."@emmetio/abbreviation-2.2.2"
sources."@emmetio/css-abbreviation-2.1.4"
sources."@emmetio/scanner-1.0.0"
- sources."@types/node-16.7.2"
+ sources."@types/node-16.7.13"
sources."@types/pug-2.0.5"
sources."@types/sass-1.16.1"
sources."anymatch-3.1.2"
@@ -115721,7 +115778,7 @@ in
sources."svelte2tsx-0.4.5"
sources."to-regex-range-5.0.1"
sources."tslib-2.3.1"
- sources."typescript-4.3.5"
+ sources."typescript-4.4.2"
sources."vscode-css-languageservice-5.0.0"
sources."vscode-emmet-helper-2.1.2"
sources."vscode-html-languageservice-4.0.0"
@@ -115751,15 +115808,15 @@ in
svgo = nodeEnv.buildNodePackage {
name = "svgo";
packageName = "svgo";
- version = "2.4.0";
+ version = "2.5.0";
src = fetchurl {
- url = "https://registry.npmjs.org/svgo/-/svgo-2.4.0.tgz";
- sha512 = "W25S1UUm9Lm9VnE0TvCzL7aso/NCzDEaXLaElCUO/KaVitw0+IBicSVfM1L1c0YHK5TOFh73yQ2naCpVHEQ/OQ==";
+ url = "https://registry.npmjs.org/svgo/-/svgo-2.5.0.tgz";
+ sha512 = "FSdBOOo271VyF/qZnOn1PgwCdt1v4Dx0Sey+U1jgqm1vqRYjPGdip0RGrFW6ItwtkBB8rHgHk26dlVr0uCs82Q==";
};
dependencies = [
sources."@trysound/sax-0.1.1"
sources."boolbase-1.0.0"
- sources."colorette-1.3.0"
+ sources."colorette-1.4.0"
sources."commander-7.2.0"
sources."css-select-4.1.3"
sources."css-tree-1.1.3"
@@ -115767,8 +115824,8 @@ in
sources."csso-4.2.0"
sources."dom-serializer-1.3.2"
sources."domelementtype-2.2.0"
- sources."domhandler-4.2.0"
- sources."domutils-2.7.0"
+ sources."domhandler-4.2.2"
+ sources."domutils-2.8.0"
sources."entities-2.2.0"
sources."mdn-data-2.0.14"
sources."nth-check-2.0.0"
@@ -115901,7 +115958,7 @@ in
sources."cookiejar-2.1.2"
sources."copy-descriptor-0.1.1"
sources."core-js-2.6.12"
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."create-error-class-3.0.2"
(sources."cross-spawn-5.1.0" // {
dependencies = [
@@ -116369,7 +116426,7 @@ in
sources."truncate-utf8-bytes-1.0.2"
sources."type-is-1.6.18"
sources."typedarray-0.0.6"
- sources."uglify-js-3.14.1"
+ sources."uglify-js-3.14.2"
sources."undefsafe-2.0.3"
(sources."union-value-1.0.1" // {
dependencies = [
@@ -116496,7 +116553,7 @@ in
sources."module-alias-2.2.2"
sources."moment-2.29.1"
sources."ms-2.1.2"
- sources."node-fetch-2.6.1"
+ sources."node-fetch-2.6.2"
sources."oauth-sign-0.9.0"
sources."p-limit-2.3.0"
sources."p-locate-3.0.0"
@@ -116560,7 +116617,7 @@ in
dependencies = [
sources."ansi-regex-2.1.1"
sources."aproba-1.2.0"
- sources."are-we-there-yet-1.1.5"
+ sources."are-we-there-yet-1.1.7"
sources."base64-js-1.5.1"
sources."bindings-1.5.0"
(sources."bl-4.1.0" // {
@@ -116572,7 +116629,7 @@ in
sources."chownr-1.1.4"
sources."code-point-at-1.1.0"
sources."console-control-strings-1.1.0"
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."decompress-response-4.2.1"
sources."deep-extend-0.6.0"
sources."delegates-1.0.0"
@@ -116593,7 +116650,7 @@ in
sources."minimist-1.2.5"
sources."mkdirp-classic-0.5.3"
sources."napi-build-utils-1.0.2"
- sources."node-abi-2.30.0"
+ sources."node-abi-2.30.1"
sources."node-addon-api-3.0.2"
sources."noop-logger-0.1.1"
sources."npmlog-4.1.2"
@@ -116623,7 +116680,7 @@ in
];
})
sources."tunnel-agent-0.6.0"
- sources."usb-1.7.1"
+ sources."usb-1.7.2"
sources."util-deprecate-1.0.2"
sources."which-pm-runs-1.0.0"
sources."wide-align-1.1.3"
@@ -116654,7 +116711,7 @@ in
sources."balanced-match-1.0.2"
sources."brace-expansion-1.1.11"
sources."concat-map-0.0.1"
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."enhanced-resolve-2.3.0"
sources."errno-0.1.8"
sources."fs.realpath-1.0.0"
@@ -116771,7 +116828,7 @@ in
sources."crypt-0.0.2"
sources."debug-4.3.2"
sources."deep-equal-1.1.1"
- sources."deep-is-0.1.3"
+ sources."deep-is-0.1.4"
sources."define-properties-1.1.3"
sources."diff-4.0.2"
sources."emoji-regex-8.0.0"
@@ -117035,7 +117092,7 @@ in
sources."@types/normalize-package-data-2.4.1"
sources."@types/parse5-5.0.3"
sources."@types/unist-2.0.6"
- sources."acorn-8.4.1"
+ sources."acorn-8.5.0"
sources."acorn-jsx-5.3.2"
sources."alex-9.1.0"
(sources."ansi-align-3.0.0" // {
@@ -117095,7 +117152,7 @@ in
];
})
sources."configstore-5.0.1"
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."crypto-random-string-2.0.0"
sources."cuss-1.21.0"
sources."debug-4.3.2"
@@ -117505,7 +117562,7 @@ in
sources."boundary-1.0.1"
sources."buffer-from-1.1.2"
sources."concat-stream-1.6.2"
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."inherits-2.0.4"
sources."isarray-1.0.0"
sources."object-assign-4.1.1"
@@ -117642,10 +117699,11 @@ in
sources."define-properties-1.1.3"
sources."emoji-regex-6.5.1"
sources."end-with-1.0.2"
- sources."es-abstract-1.18.5"
+ sources."es-abstract-1.18.6"
sources."es-to-primitive-1.2.1"
sources."function-bind-1.1.1"
sources."get-intrinsic-1.1.1"
+ sources."get-symbol-description-1.0.0"
sources."has-1.0.3"
sources."has-bigints-1.0.1"
sources."has-symbols-1.0.2"
@@ -117751,10 +117809,11 @@ in
sources."array-includes-3.1.3"
sources."call-bind-1.0.2"
sources."define-properties-1.1.3"
- sources."es-abstract-1.18.5"
+ sources."es-abstract-1.18.6"
sources."es-to-primitive-1.2.1"
sources."function-bind-1.1.1"
sources."get-intrinsic-1.1.1"
+ sources."get-symbol-description-1.0.0"
sources."has-1.0.3"
sources."has-bigints-1.0.1"
sources."has-symbols-1.0.2"
@@ -117839,8 +117898,8 @@ in
sources."@tokenizer/token-0.3.0"
sources."@types/cacheable-request-6.0.2"
sources."@types/http-cache-semantics-4.0.1"
- sources."@types/keyv-3.1.2"
- sources."@types/node-16.7.2"
+ sources."@types/keyv-3.1.3"
+ sources."@types/node-16.7.13"
sources."@types/responselike-1.0.0"
sources."abbrev-1.1.1"
sources."abstract-logging-2.0.1"
@@ -117856,7 +117915,7 @@ in
sources."ansi-regex-2.1.1"
sources."ansi-styles-4.3.0"
sources."aproba-1.2.0"
- (sources."are-we-there-yet-1.1.5" // {
+ (sources."are-we-there-yet-1.1.7" // {
dependencies = [
sources."isarray-1.0.0"
sources."readable-stream-2.3.7"
@@ -117916,7 +117975,7 @@ in
sources."content-type-1.0.4"
sources."cookie-0.4.0"
sources."cookie-signature-1.0.6"
- sources."core-js-3.16.3"
+ sources."core-js-3.17.2"
sources."core-util-is-1.0.2"
sources."css-select-1.2.0"
sources."css-what-2.1.3"
@@ -118071,7 +118130,7 @@ in
sources."mkdirp-0.5.5"
sources."ms-2.0.0"
sources."mute-stream-0.0.8"
- (sources."needle-2.9.0" // {
+ (sources."needle-2.9.1" // {
dependencies = [
sources."debug-3.2.7"
sources."ms-2.1.3"
@@ -118168,7 +118227,7 @@ in
sources."uuid-3.4.0"
];
})
- sources."resolve-alpn-1.2.0"
+ sources."resolve-alpn-1.2.1"
sources."responselike-2.0.0"
sources."rimraf-2.7.1"
sources."safe-buffer-5.2.1"
@@ -118260,7 +118319,7 @@ in
sources."wide-align-1.1.3"
sources."with-open-file-0.1.7"
sources."wrappy-1.0.2"
- sources."ws-7.5.3"
+ sources."ws-7.5.4"
sources."xmlhttprequest-ssl-1.5.5"
sources."yallist-3.1.1"
sources."yarn-1.22.4"
@@ -118279,10 +118338,10 @@ in
three = nodeEnv.buildNodePackage {
name = "three";
packageName = "three";
- version = "0.132.0";
+ version = "0.132.2";
src = fetchurl {
- url = "https://registry.npmjs.org/three/-/three-0.132.0.tgz";
- sha512 = "kv4WeP3O5/8mcHyuGYnqBQYdEfzSz9kEkq4H/9J966epNlGSVJ8gYC3SwT9qIITdgC0OvLr3zPltCS4dUyg2eg==";
+ url = "https://registry.npmjs.org/three/-/three-0.132.2.tgz";
+ sha512 = "0wcR7LxxkXMn6Gi58gEs3QvY8WpTVXA31L2VOvpjm4ZPYFRHCZC13UqynheFoS5OXDYgtBneN0dhbaNBE8iLhQ==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -118460,7 +118519,7 @@ in
];
})
sources."concat-map-0.0.1"
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
(sources."dashdash-1.14.1" // {
dependencies = [
sources."assert-plus-1.0.0"
@@ -118604,6 +118663,7 @@ in
(sources."verror-1.10.0" // {
dependencies = [
sources."assert-plus-1.0.0"
+ sources."core-util-is-1.0.2"
sources."extsprintf-1.4.0"
];
})
@@ -118706,10 +118766,10 @@ in
typescript = nodeEnv.buildNodePackage {
name = "typescript";
packageName = "typescript";
- version = "4.3.5";
+ version = "4.4.2";
src = fetchurl {
- url = "https://registry.npmjs.org/typescript/-/typescript-4.3.5.tgz";
- sha512 = "DqQgihaQ9cUrskJo9kIyW/+g0Vxsk8cDtZ52a3NGh0YNTfpUSArXSohyUGnvbPazEPLu398C0UxmKSOrPumUzA==";
+ url = "https://registry.npmjs.org/typescript/-/typescript-4.4.2.tgz";
+ sha512 = "gzP+t5W4hdy4c+68bfcv0t400HVJMMd2+H9B7gae1nQlBzCqvrXX+6GL/b3GAgyTH966pzrZ70/fRjwAtZksSQ==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -118724,10 +118784,10 @@ in
typescript-language-server = nodeEnv.buildNodePackage {
name = "typescript-language-server";
packageName = "typescript-language-server";
- version = "0.6.1";
+ version = "0.6.2";
src = fetchurl {
- url = "https://registry.npmjs.org/typescript-language-server/-/typescript-language-server-0.6.1.tgz";
- sha512 = "ZqqD4XK1EgITEoW1SaOnNe473K5EMr7vSYwFeqK4Fe37TjNyEwB+2vXuqW01kPujiw7tRpv3teDAl7WtP9AmIw==";
+ url = "https://registry.npmjs.org/typescript-language-server/-/typescript-language-server-0.6.2.tgz";
+ sha512 = "JiLQ5G7CWlswUFhBhudoX4jbfgyo/CIIED3CIrrlwcl/QSTt1gDZX+3sx1H/yTwzJRhnKgKS/AnbzbU9tgSVEA==";
};
dependencies = [
sources."@nodelib/fs.scandir-2.1.5"
@@ -118805,10 +118865,10 @@ in
uglify-js = nodeEnv.buildNodePackage {
name = "uglify-js";
packageName = "uglify-js";
- version = "3.14.1";
+ version = "3.14.2";
src = fetchurl {
- url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.14.1.tgz";
- sha512 = "JhS3hmcVaXlp/xSo3PKY5R0JqKs5M3IV+exdLHW99qKvKivPO4Z8qbej6mte17SOPqAOVMjt/XGgWacnFSzM3g==";
+ url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.14.2.tgz";
+ sha512 = "rtPMlmcO4agTUfz10CbgJ1k6UAoXM2gWb3GoMPPZB/+/Ackf8lNWk11K4rYi2D0apgoFRLtQOZhb+/iGNJq26A==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -118854,7 +118914,7 @@ in
sources."@types/component-emitter-1.2.10"
sources."@types/cookie-0.4.1"
sources."@types/cors-2.8.12"
- sources."@types/node-14.17.12"
+ sources."@types/node-14.17.15"
sources."abbrev-1.1.1"
sources."accepts-1.3.7"
sources."ansi-regex-5.0.0"
@@ -118896,7 +118956,7 @@ in
sources."cookie-0.4.0"
sources."cookie-parser-1.4.5"
sources."cookie-signature-1.0.6"
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."cors-2.8.5"
sources."crossroads-0.12.2"
sources."debug-2.6.9"
@@ -118907,7 +118967,7 @@ in
sources."depd-1.1.2"
sources."destroy-1.0.4"
sources."diff-5.0.0"
- sources."diff2html-3.4.9"
+ sources."diff2html-3.4.11"
sources."dnd-page-scroll-0.0.4"
sources."duplexer3-0.1.4"
sources."ee-first-1.1.1"
@@ -118922,7 +118982,7 @@ in
sources."ms-2.1.2"
];
})
- sources."engine.io-parser-4.0.2"
+ sources."engine.io-parser-4.0.3"
sources."escalade-3.1.1"
sources."escape-html-1.0.3"
sources."etag-1.8.1"
@@ -118935,7 +118995,7 @@ in
sources."safe-buffer-5.2.1"
];
})
- sources."fast-safe-stringify-2.0.8"
+ sources."fast-safe-stringify-2.1.1"
sources."fecha-4.2.1"
sources."finalhandler-1.1.2"
sources."fn.name-1.1.0"
@@ -119067,7 +119127,7 @@ in
sources."ms-2.1.2"
];
})
- sources."socket.io-adapter-2.3.1"
+ sources."socket.io-adapter-2.3.2"
(sources."socket.io-parser-4.0.4" // {
dependencies = [
sources."debug-4.3.2"
@@ -119135,7 +119195,7 @@ in
sha512 = "N+ENrder8z9zJQF9UM7K3/1LcfVW60omqeyaQsu6GN1BGdCgPm8gdHssn7WRD7vx+ABKc82IE1+pJyHOPkwe+w==";
};
dependencies = [
- sources."@types/node-16.7.2"
+ sources."@types/node-16.7.13"
sources."@types/unist-2.0.6"
sources."@types/vfile-3.0.2"
sources."@types/vfile-message-2.0.0"
@@ -119292,7 +119352,7 @@ in
sources."ansi-regex-2.1.1"
sources."ansi-styles-4.3.0"
sources."aproba-1.2.0"
- sources."are-we-there-yet-1.1.5"
+ sources."are-we-there-yet-1.1.7"
sources."balanced-match-1.0.2"
sources."brace-expansion-1.1.11"
sources."canvas-2.8.0"
@@ -119311,7 +119371,7 @@ in
sources."commander-2.20.3"
sources."concat-map-0.0.1"
sources."console-control-strings-1.1.0"
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."d3-array-2.12.1"
sources."d3-color-2.0.0"
sources."d3-delaunay-5.3.0"
@@ -119366,7 +119426,7 @@ in
sources."mkdirp-1.0.4"
sources."ms-2.1.2"
sources."nan-2.15.0"
- sources."node-fetch-2.6.1"
+ sources."node-fetch-2.6.2"
sources."nopt-5.0.0"
sources."npmlog-4.1.2"
sources."number-is-nan-1.0.1"
@@ -119458,14 +119518,13 @@ in
vega-lite = nodeEnv.buildNodePackage {
name = "vega-lite";
packageName = "vega-lite";
- version = "5.1.0";
+ version = "5.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/vega-lite/-/vega-lite-5.1.0.tgz";
- sha512 = "HEyf0iHnCNmWkWFIbEmMphcJwZpcBnfnU8v+Ojrndr7ihDueojHMOSikoyz/GNpdkai+QFxLboA6DDCTtFv9iQ==";
+ url = "https://registry.npmjs.org/vega-lite/-/vega-lite-5.1.1.tgz";
+ sha512 = "V085gNkbgbmcVC/Q3dJjmIioxcDicxMHvH0FIKOPxdplzt+qU9xGIhQy7scj0tSMYnmAPCayB5oLkkQXFb6w1w==";
};
dependencies = [
sources."@types/clone-2.1.1"
- sources."@types/fast-json-stable-stringify-2.1.0"
sources."ansi-regex-5.0.0"
sources."ansi-styles-4.3.0"
sources."array-flat-polyfill-1.0.1"
@@ -119483,13 +119542,13 @@ in
sources."require-directory-2.1.1"
sources."string-width-4.2.2"
sources."strip-ansi-6.0.0"
- sources."tslib-2.2.0"
+ sources."tslib-2.3.1"
sources."vega-event-selector-2.0.6"
sources."vega-expression-4.0.1"
sources."vega-util-1.16.1"
sources."wrap-ansi-7.0.0"
sources."y18n-5.0.8"
- sources."yargs-16.2.0"
+ sources."yargs-17.1.1"
sources."yargs-parser-20.2.9"
];
buildInputs = globalBuildInputs;
@@ -119513,7 +119572,7 @@ in
dependencies = [
sources."@sindresorhus/is-0.14.0"
sources."@szmarczak/http-timer-1.1.2"
- sources."@types/node-16.7.2"
+ sources."@types/node-16.7.13"
sources."@vercel/build-utils-2.12.2"
sources."@vercel/go-1.2.3"
sources."@vercel/node-1.12.1"
@@ -119634,10 +119693,10 @@ in
vim-language-server = nodeEnv.buildNodePackage {
name = "vim-language-server";
packageName = "vim-language-server";
- version = "2.2.4";
+ version = "2.2.5";
src = fetchurl {
- url = "https://registry.npmjs.org/vim-language-server/-/vim-language-server-2.2.4.tgz";
- sha512 = "MHbdFNU9C7pwXMY7UvzjdslNBRwFazy+wDe7Kv30L1Hl6BiMpkOAQ4RgvevYQAjm/NpS6gvMz7N0FFKr2qjKsw==";
+ url = "https://registry.npmjs.org/vim-language-server/-/vim-language-server-2.2.5.tgz";
+ sha512 = "893GcGS5oFjBK2Dakdl4I0x8rtkgI+TOi44M9PmFU6YV+kwoLIRAxIcoF55rGiHFESCq98C+yjWn1OXznWgm7A==";
};
buildInputs = globalBuildInputs;
meta = {
@@ -119696,14 +119755,14 @@ in
sources."concat-map-0.0.1"
sources."cross-spawn-7.0.3"
sources."debug-4.3.2"
- sources."deep-is-0.1.3"
+ sources."deep-is-0.1.4"
sources."diff-4.0.2"
sources."doctrine-3.0.0"
sources."emoji-regex-8.0.0"
sources."enquirer-2.3.6"
sources."escape-string-regexp-4.0.0"
sources."eslint-7.32.0"
- (sources."eslint-plugin-vue-7.16.0" // {
+ (sources."eslint-plugin-vue-7.17.0" // {
dependencies = [
sources."semver-6.3.0"
];
@@ -119820,10 +119879,10 @@ in
sources."tsutils-2.29.0"
sources."type-check-0.4.0"
sources."type-fest-0.20.2"
- sources."typescript-4.3.5"
+ sources."typescript-4.4.2"
sources."uri-js-4.4.1"
sources."v8-compile-cache-2.3.0"
- (sources."vue-eslint-parser-7.10.0" // {
+ (sources."vue-eslint-parser-7.11.0" // {
dependencies = [
sources."eslint-visitor-keys-1.3.0"
sources."espree-6.2.1"
@@ -120024,7 +120083,7 @@ in
sources."vscode-nls-4.1.2"
];
})
- sources."typescript-4.3.5"
+ sources."typescript-4.4.2"
sources."vscode-css-languageservice-5.1.4"
sources."vscode-html-languageservice-4.0.7"
sources."vscode-json-languageservice-4.1.7"
@@ -120059,7 +120118,7 @@ in
sources."@types/json-schema-7.0.9"
sources."@types/mocha-7.0.2"
sources."@types/node-8.10.66"
- sources."@types/vscode-1.59.0"
+ sources."@types/vscode-1.60.0"
sources."@types/yauzl-2.9.2"
sources."@ungap/promise-all-settled-1.1.2"
sources."@webassemblyjs/ast-1.11.1"
@@ -120082,7 +120141,7 @@ in
sources."@webpack-cli/serve-1.5.2"
sources."@xtuc/ieee754-1.2.0"
sources."@xtuc/long-4.2.2"
- sources."acorn-8.4.1"
+ sources."acorn-8.5.0"
sources."acorn-import-assertions-1.7.6"
sources."ajv-6.12.6"
sources."ajv-keywords-3.5.2"
@@ -120099,12 +120158,12 @@ in
sources."brace-expansion-1.1.11"
sources."braces-3.0.2"
sources."browser-stdout-1.3.1"
- sources."browserslist-4.16.8"
+ sources."browserslist-4.17.0"
sources."buffer-crc32-0.2.13"
sources."buffer-from-1.1.2"
sources."call-bind-1.0.2"
sources."camelcase-6.2.0"
- sources."caniuse-lite-1.0.30001252"
+ sources."caniuse-lite-1.0.30001255"
(sources."chalk-4.1.2" // {
dependencies = [
sources."supports-color-7.2.0"
@@ -120125,10 +120184,10 @@ in
sources."clone-deep-4.0.1"
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
- sources."colorette-1.3.0"
+ sources."colorette-1.4.0"
sources."commander-6.2.1"
sources."concat-map-0.0.1"
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."cross-spawn-7.0.3"
sources."css-select-4.1.3"
sources."css-what-5.0.1"
@@ -120142,9 +120201,9 @@ in
sources."diff-5.0.0"
sources."dom-serializer-1.3.2"
sources."domelementtype-2.2.0"
- sources."domhandler-4.2.0"
- sources."domutils-2.7.0"
- sources."electron-to-chromium-1.3.818"
+ sources."domhandler-4.2.2"
+ sources."domutils-2.8.0"
+ sources."electron-to-chromium-1.3.832"
sources."emoji-regex-8.0.0"
sources."emojis-list-3.0.0"
sources."enhanced-resolve-5.8.2"
@@ -120203,7 +120262,7 @@ in
sources."isarray-0.0.1"
sources."isexe-2.0.0"
sources."isobject-3.0.1"
- sources."jest-worker-27.0.6"
+ sources."jest-worker-27.1.0"
sources."js-yaml-4.0.0"
sources."json-parse-better-errors-1.0.2"
sources."json-schema-traverse-0.4.1"
@@ -120315,7 +120374,7 @@ in
sources."source-map-0.7.3"
];
})
- (sources."terser-webpack-plugin-5.1.4" // {
+ (sources."terser-webpack-plugin-5.2.3" // {
dependencies = [
sources."serialize-javascript-6.0.0"
];
@@ -120331,8 +120390,8 @@ in
})
sources."tslib-2.3.1"
sources."tunnel-0.0.6"
- sources."typed-rest-client-1.8.5"
- sources."typescript-4.3.5"
+ sources."typed-rest-client-1.8.6"
+ sources."typescript-4.4.2"
sources."uc.micro-1.0.6"
sources."underscore-1.13.1"
sources."uri-js-4.4.1"
@@ -120353,7 +120412,7 @@ in
sources."vscode-debugadapter-testsupport-1.49.0"
sources."vscode-debugprotocol-1.49.0"
sources."watchpack-2.2.0"
- sources."webpack-5.51.1"
+ sources."webpack-5.52.0"
(sources."webpack-cli-4.8.0" // {
dependencies = [
sources."commander-7.2.0"
@@ -120458,7 +120517,7 @@ in
sources."concat-map-0.0.1"
sources."config-chain-1.1.13"
sources."consolidate-0.14.5"
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."create-error-class-3.0.2"
sources."dashdash-1.14.1"
sources."decompress-4.2.1"
@@ -120651,7 +120710,7 @@ in
sources."tslib-1.14.1"
sources."tunnel-agent-0.6.0"
sources."tweetnacl-0.14.5"
- sources."uglify-js-3.14.1"
+ sources."uglify-js-3.14.2"
sources."uid-0.0.2"
sources."unbzip2-stream-1.4.3"
sources."unyield-0.0.1"
@@ -120663,7 +120722,11 @@ in
sources."util-deprecate-1.0.2"
sources."uuid-3.4.0"
sources."validate-npm-package-name-3.0.0"
- sources."verror-1.10.0"
+ (sources."verror-1.10.0" // {
+ dependencies = [
+ sources."core-util-is-1.0.2"
+ ];
+ })
sources."ware-1.3.0"
sources."win-fork-1.1.1"
sources."wordwrap-1.0.0"
@@ -120710,7 +120773,7 @@ in
sources."@starptech/rehype-webparser-0.10.0"
sources."@starptech/webparser-0.10.0"
sources."@szmarczak/http-timer-1.1.2"
- sources."@types/node-16.7.2"
+ sources."@types/node-16.7.13"
sources."@types/unist-2.0.6"
sources."@types/vfile-3.0.2"
sources."@types/vfile-message-2.0.0"
@@ -120859,7 +120922,7 @@ in
sources."configstore-4.0.0"
sources."copy-descriptor-0.1.1"
sources."core-js-2.6.12"
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."cross-spawn-5.1.0"
sources."crypto-random-string-1.0.0"
(sources."css-2.2.4" // {
@@ -120879,7 +120942,7 @@ in
sources."decode-uri-component-0.2.0"
sources."decompress-response-3.3.0"
sources."deep-extend-0.6.0"
- sources."deep-is-0.1.3"
+ sources."deep-is-0.1.4"
sources."defaults-1.0.3"
sources."defer-to-connect-1.1.3"
sources."define-property-2.0.2"
@@ -120910,7 +120973,7 @@ in
sources."eslint-scope-5.1.1"
sources."espree-6.2.1"
sources."ms-2.1.2"
- (sources."vue-eslint-parser-7.10.0" // {
+ (sources."vue-eslint-parser-7.11.0" // {
dependencies = [
sources."semver-6.3.0"
];
@@ -121633,13 +121696,13 @@ in
sha512 = "uhSNGU27KDT2e2v51l/NqMc59O7X0DG7CHonZOwsnvMHLvyudCLZgXCU8Rw4T8gpqg2asn50vfPHq7l3DGlN5w==";
};
dependencies = [
- sources."@babel/runtime-corejs3-7.15.3"
+ sources."@babel/runtime-corejs3-7.15.4"
sources."@mapbox/node-pre-gyp-1.0.5"
sources."@tootallnate/once-1.1.2"
sources."@types/raf-3.4.0"
sources."abab-2.0.5"
sources."abbrev-1.1.1"
- sources."acorn-8.4.1"
+ sources."acorn-8.5.0"
(sources."acorn-globals-6.0.0" // {
dependencies = [
sources."acorn-7.4.1"
@@ -121650,12 +121713,12 @@ in
sources."ansi-regex-2.1.1"
sources."ansi-styles-4.3.0"
sources."aproba-1.2.0"
- sources."are-we-there-yet-1.1.5"
+ sources."are-we-there-yet-1.1.7"
sources."asynckit-0.4.0"
sources."at-least-node-1.0.0"
sources."atob-2.1.2"
sources."balanced-match-1.0.2"
- (sources."bit-field-1.5.2" // {
+ (sources."bit-field-1.5.3" // {
dependencies = [
sources."ansi-regex-5.0.0"
sources."fs-extra-10.0.0"
@@ -121685,8 +121748,8 @@ in
sources."combined-stream-1.0.8"
sources."concat-map-0.0.1"
sources."console-control-strings-1.1.0"
- sources."core-js-pure-3.16.3"
- sources."core-util-is-1.0.2"
+ sources."core-js-pure-3.17.2"
+ sources."core-util-is-1.0.3"
sources."cssom-0.4.4"
(sources."cssstyle-2.3.0" // {
dependencies = [
@@ -121697,7 +121760,7 @@ in
sources."debug-4.3.2"
sources."decimal.js-10.3.1"
sources."decompress-response-4.2.1"
- sources."deep-is-0.1.3"
+ sources."deep-is-0.1.4"
sources."delayed-stream-1.0.0"
sources."delegates-1.0.0"
sources."detect-libc-1.0.3"
@@ -121753,7 +121816,7 @@ in
sources."mkdirp-1.0.4"
sources."ms-2.1.2"
sources."nan-2.15.0"
- sources."node-fetch-2.6.1"
+ sources."node-fetch-2.6.2"
sources."nopt-5.0.0"
sources."npmlog-4.1.2"
sources."number-is-nan-1.0.1"
@@ -121821,7 +121884,7 @@ in
];
})
sources."wrappy-1.0.2"
- sources."ws-7.5.3"
+ sources."ws-7.5.4"
sources."xml-name-validator-3.0.0"
sources."xmlchars-2.2.0"
sources."y18n-5.0.8"
@@ -121891,7 +121954,7 @@ in
sources."@sindresorhus/is-0.14.0"
sources."@szmarczak/http-timer-1.1.2"
sources."@types/minimatch-3.0.5"
- sources."@types/node-16.7.2"
+ sources."@types/node-16.7.13"
sources."@types/yauzl-2.9.1"
sources."acorn-7.4.1"
sources."acorn-jsx-5.3.2"
@@ -121968,7 +122031,7 @@ in
sources."clone-response-1.0.2"
sources."color-convert-2.0.1"
sources."color-name-1.1.4"
- sources."colorette-1.3.0"
+ sources."colorette-1.4.0"
sources."columnify-1.5.4"
sources."combined-stream-1.0.8"
sources."commander-2.20.3"
@@ -121989,7 +122052,7 @@ in
sources."decompress-response-3.3.0"
sources."deep-equal-1.1.1"
sources."deep-extend-0.6.0"
- sources."deep-is-0.1.3"
+ sources."deep-is-0.1.4"
sources."deepcopy-2.1.0"
sources."deepmerge-4.2.2"
sources."defaults-1.0.3"
@@ -122005,8 +122068,8 @@ in
sources."doctrine-3.0.0"
sources."dom-serializer-1.3.2"
sources."domelementtype-2.2.0"
- sources."domhandler-4.2.0"
- sources."domutils-2.7.0"
+ sources."domhandler-4.2.2"
+ sources."domutils-2.8.0"
sources."dot-prop-5.3.0"
sources."dtrace-provider-0.8.8"
sources."duplexer3-0.1.4"
@@ -122046,7 +122109,7 @@ in
sources."eslint-visitor-keys-3.0.0"
(sources."espree-8.0.0" // {
dependencies = [
- sources."acorn-8.4.1"
+ sources."acorn-8.5.0"
];
})
sources."esprima-4.0.1"
@@ -122074,8 +122137,8 @@ in
})
sources."fast-json-stable-stringify-2.1.0"
sources."fast-levenshtein-2.0.6"
- sources."fast-redact-3.0.1"
- sources."fast-safe-stringify-2.0.8"
+ sources."fast-redact-3.0.2"
+ sources."fast-safe-stringify-2.1.1"
sources."fd-slicer-1.1.0"
sources."file-entry-cache-6.0.1"
(sources."firefox-profile-4.2.0" // {
@@ -122452,17 +122515,17 @@ in
webpack = nodeEnv.buildNodePackage {
name = "webpack";
packageName = "webpack";
- version = "5.51.1";
+ version = "5.52.0";
src = fetchurl {
- url = "https://registry.npmjs.org/webpack/-/webpack-5.51.1.tgz";
- sha512 = "xsn3lwqEKoFvqn4JQggPSRxE4dhsRcysWTqYABAZlmavcoTmwlOb9b1N36Inbt/eIispSkuHa80/FJkDTPos1A==";
+ url = "https://registry.npmjs.org/webpack/-/webpack-5.52.0.tgz";
+ sha512 = "yRZOat8jWGwBwHpco3uKQhVU7HYaNunZiJ4AkAVQkPCUGoZk/tiIXiwG+8HIy/F+qsiZvSOa+GLQOj3q5RKRYg==";
};
dependencies = [
sources."@types/eslint-7.28.0"
sources."@types/eslint-scope-3.7.1"
sources."@types/estree-0.0.50"
sources."@types/json-schema-7.0.9"
- sources."@types/node-16.7.2"
+ sources."@types/node-16.7.13"
sources."@webassemblyjs/ast-1.11.1"
sources."@webassemblyjs/floating-point-hex-parser-1.11.1"
sources."@webassemblyjs/helper-api-error-1.11.1"
@@ -122480,17 +122543,17 @@ in
sources."@webassemblyjs/wast-printer-1.11.1"
sources."@xtuc/ieee754-1.2.0"
sources."@xtuc/long-4.2.2"
- sources."acorn-8.4.1"
+ sources."acorn-8.5.0"
sources."acorn-import-assertions-1.7.6"
sources."ajv-6.12.6"
sources."ajv-keywords-3.5.2"
- sources."browserslist-4.16.8"
+ sources."browserslist-4.17.0"
sources."buffer-from-1.1.2"
- sources."caniuse-lite-1.0.30001252"
+ sources."caniuse-lite-1.0.30001255"
sources."chrome-trace-event-1.0.3"
- sources."colorette-1.3.0"
+ sources."colorette-1.4.0"
sources."commander-2.20.3"
- sources."electron-to-chromium-1.3.818"
+ sources."electron-to-chromium-1.3.832"
sources."enhanced-resolve-5.8.2"
sources."es-module-lexer-0.7.1"
sources."escalade-3.1.1"
@@ -122507,7 +122570,7 @@ in
sources."glob-to-regexp-0.4.1"
sources."graceful-fs-4.2.8"
sources."has-flag-4.0.0"
- sources."jest-worker-27.0.6"
+ sources."jest-worker-27.1.0"
sources."json-parse-better-errors-1.0.2"
sources."json-schema-traverse-0.4.1"
sources."loader-runner-4.2.0"
@@ -122531,7 +122594,7 @@ in
sources."source-map-0.7.3"
];
})
- sources."terser-webpack-plugin-5.1.4"
+ sources."terser-webpack-plugin-5.2.3"
sources."uri-js-4.4.1"
sources."watchpack-2.2.0"
sources."webpack-sources-3.2.0"
@@ -122561,7 +122624,7 @@ in
sources."@webpack-cli/info-1.3.0"
sources."@webpack-cli/serve-1.5.2"
sources."clone-deep-4.0.1"
- sources."colorette-1.3.0"
+ sources."colorette-1.4.0"
sources."commander-7.2.0"
sources."cross-spawn-7.0.3"
sources."envinfo-7.8.1"
@@ -122619,10 +122682,10 @@ in
webpack-dev-server = nodeEnv.buildNodePackage {
name = "webpack-dev-server";
packageName = "webpack-dev-server";
- version = "4.0.0";
+ version = "4.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.0.0.tgz";
- sha512 = "ya5cjoBSf3LqrshZn2HMaRZQx8YRNBE+tx+CQNFGaLLHrvs4Y1aik0sl5SFhLz2cW1O9/NtyaZhthc+8UiuvkQ==";
+ url = "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.1.1.tgz";
+ sha512 = "Kl1mnCEw8Cy1Kw173gCxLIB242LfPKEOj9WoKhKz/MbryZTNrILzOJTk8kiczw/YUEPzn3gcltCQv6hDsLudRg==";
};
dependencies = [
sources."@nodelib/fs.scandir-2.1.5"
@@ -122630,13 +122693,13 @@ in
sources."@nodelib/fs.walk-1.2.8"
sources."@types/http-proxy-1.17.7"
sources."@types/json-schema-7.0.9"
- sources."@types/node-16.7.2"
+ sources."@types/node-16.7.13"
sources."@types/retry-0.12.1"
sources."accepts-1.3.7"
sources."aggregate-error-3.1.0"
sources."ajv-6.12.6"
sources."ajv-keywords-3.5.2"
- sources."ansi-html-0.0.7"
+ sources."ansi-html-community-0.0.8"
sources."ansi-regex-6.0.0"
sources."anymatch-3.1.2"
sources."array-flatten-2.1.2"
@@ -122658,7 +122721,7 @@ in
sources."call-bind-1.0.2"
sources."chokidar-3.5.2"
sources."clean-stack-2.2.0"
- sources."colorette-1.3.0"
+ sources."colorette-1.4.0"
sources."compressible-2.0.18"
(sources."compression-1.7.4" // {
dependencies = [
@@ -122675,7 +122738,7 @@ in
sources."content-type-1.0.4"
sources."cookie-0.4.0"
sources."cookie-signature-1.0.6"
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."cross-spawn-7.0.3"
sources."debug-2.6.9"
sources."deep-equal-1.1.1"
@@ -122709,7 +122772,7 @@ in
sources."faye-websocket-0.11.4"
sources."fill-range-7.0.1"
sources."finalhandler-1.1.2"
- sources."follow-redirects-1.14.2"
+ sources."follow-redirects-1.14.3"
sources."forwarded-0.2.0"
sources."fresh-0.5.2"
sources."fs-monkey-1.0.3"
@@ -122781,7 +122844,7 @@ in
sources."mimic-fn-3.1.0"
];
})
- sources."memfs-3.2.2"
+ sources."memfs-3.2.4"
sources."merge-descriptors-1.0.1"
sources."merge-stream-2.0.0"
sources."merge2-1.4.1"
@@ -122917,7 +122980,7 @@ in
sources."websocket-extensions-0.1.4"
sources."which-2.0.2"
sources."wrappy-1.0.2"
- sources."ws-8.2.0"
+ sources."ws-8.2.1"
];
buildInputs = globalBuildInputs;
meta = {
@@ -123013,7 +123076,7 @@ in
sources."@protobufjs/pool-1.1.0"
sources."@protobufjs/utf8-1.1.0"
sources."@types/long-4.0.1"
- sources."@types/node-16.7.2"
+ sources."@types/node-16.7.13"
sources."addr-to-ip-port-1.5.4"
sources."airplay-js-0.3.0"
sources."ansi-regex-5.0.0"
@@ -123043,7 +123106,7 @@ in
sources."ms-2.1.2"
];
})
- (sources."bittorrent-tracker-9.18.0" // {
+ (sources."bittorrent-tracker-9.18.2" // {
dependencies = [
sources."debug-4.3.2"
sources."decompress-response-6.0.0"
@@ -123097,7 +123160,7 @@ in
sources."string_decoder-1.1.1"
];
})
- sources."core-util-is-1.0.2"
+ sources."core-util-is-1.0.3"
sources."cpus-1.0.3"
sources."create-torrent-5.0.1"
sources."debug-2.6.9"
@@ -123261,8 +123324,8 @@ in
sources."ms-2.1.2"
];
})
- sources."smart-buffer-1.1.15"
- sources."socks-1.1.10"
+ sources."smart-buffer-4.2.0"
+ sources."socks-2.6.1"
sources."speed-limiter-1.0.2"
sources."speedometer-1.1.0"
sources."split-1.0.1"
@@ -123280,7 +123343,7 @@ in
sources."thunky-0.1.0"
sources."timeout-refresh-1.0.3"
sources."to-arraybuffer-1.0.1"
- (sources."torrent-discovery-9.4.4" // {
+ (sources."torrent-discovery-9.4.6" // {
dependencies = [
sources."debug-4.3.2"
sources."ms-2.1.2"
@@ -123307,7 +123370,7 @@ in
sources."utp-native-2.5.3"
sources."videostream-3.2.2"
sources."vlc-command-1.2.0"
- (sources."webtorrent-1.5.4" // {
+ (sources."webtorrent-1.5.5" // {
dependencies = [
sources."debug-4.3.2"
sources."decompress-response-6.0.0"
@@ -123319,7 +123382,7 @@ in
sources."winreg-1.2.4"
sources."wrap-ansi-7.0.0"
sources."wrappy-1.0.2"
- sources."ws-7.5.3"
+ sources."ws-7.5.4"
sources."xml2js-0.4.23"
sources."xmlbuilder-11.0.1"
sources."xmldom-0.1.31"
@@ -123514,12 +123577,12 @@ in
sha512 = "0V5CpR62BY1EOevIxXq5BL84YJeIunEzRsFlqb00tc7D77I51/0bvgdGRZhEwhNI2rFxKZ1i77eoisT56gfMTQ==";
};
dependencies = [
- sources."@babel/runtime-7.15.3"
+ sources."@babel/runtime-7.15.4"
sources."@gar/promisify-1.1.2"
sources."@nodelib/fs.scandir-2.1.5"
sources."@nodelib/fs.stat-2.0.5"
sources."@nodelib/fs.walk-1.2.8"
- (sources."@npmcli/arborist-2.8.2" // {
+ (sources."@npmcli/arborist-2.8.3" // {
dependencies = [
sources."mkdirp-1.0.4"
sources."semver-7.3.5"
@@ -123559,7 +123622,7 @@ in
sources."@types/expect-1.20.4"
sources."@types/minimatch-3.0.5"
sources."@types/node-15.14.9"
- sources."@types/vinyl-2.0.5"
+ sources."@types/vinyl-2.0.6"
sources."abbrev-1.1.1"
(sources."agent-base-6.0.2" // {
dependencies = [
@@ -123581,7 +123644,7 @@ in
sources."ansi-regex-3.0.0"
sources."ansi-styles-3.2.1"
sources."aproba-1.2.0"
- sources."are-we-there-yet-1.1.5"
+ sources."are-we-there-yet-1.1.7"
(sources."argparse-1.0.10" // {
dependencies = [
sources."sprintf-js-1.0.3"
@@ -123674,8 +123737,8 @@ in
sources."config-chain-1.1.13"
sources."configstore-3.1.5"
sources."console-control-strings-1.1.0"
- sources."core-js-3.16.3"
- sources."core-util-is-1.0.2"
+ sources."core-js-3.17.2"
+ sources."core-util-is-1.0.3"
sources."create-error-class-3.0.2"
sources."cross-spawn-6.0.5"
sources."crypto-random-string-1.0.0"
@@ -123936,7 +123999,7 @@ in
sources."minimist-1.2.5"
sources."minipass-3.1.3"
sources."minipass-collect-1.0.2"
- sources."minipass-fetch-1.3.4"
+ sources."minipass-fetch-1.4.1"
sources."minipass-flush-1.0.5"
sources."minipass-json-stream-1.0.1"
sources."minipass-pipeline-1.2.4"
@@ -124310,7 +124373,11 @@ in
sources."uuid-3.4.0"
sources."validate-npm-package-license-3.0.4"
sources."validate-npm-package-name-3.0.0"
- sources."verror-1.10.0"
+ (sources."verror-1.10.0" // {
+ dependencies = [
+ sources."core-util-is-1.0.2"
+ ];
+ })
(sources."vinyl-2.2.1" // {
dependencies = [
sources."clone-2.1.2"
@@ -124439,10 +124506,10 @@ in
zx = nodeEnv.buildNodePackage {
name = "zx";
packageName = "zx";
- version = "3.1.0";
+ version = "4.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/zx/-/zx-3.1.0.tgz";
- sha512 = "Dwm75vWiWPsZhZXRUmneeZQlMbRXJBDLMy+QGDyKDID2+Dkp6LCzlXTrW7VOmU66K1/w8dEcJ5r3zFCDW0kx1Q==";
+ url = "https://registry.npmjs.org/zx/-/zx-4.2.0.tgz";
+ sha512 = "/4f7FaJecA9I655KXKXIHO3CFNYjAz2uSmTz6v2eNlKdrQKyz4VyF3RjqFuP6nQG+Hd3+NjOvrVNBkv8Ne9d4Q==";
};
dependencies = [
sources."@nodelib/fs.scandir-2.1.5"
@@ -124450,7 +124517,7 @@ in
sources."@nodelib/fs.walk-1.2.8"
sources."@types/fs-extra-9.0.12"
sources."@types/minimist-1.2.2"
- sources."@types/node-16.7.2"
+ sources."@types/node-16.7.13"
sources."@types/node-fetch-2.5.12"
sources."ansi-styles-4.3.0"
sources."array-union-3.0.1"
@@ -124462,10 +124529,13 @@ in
sources."combined-stream-1.0.8"
sources."delayed-stream-1.0.0"
sources."dir-glob-3.0.1"
+ sources."duplexer-0.1.2"
+ sources."event-stream-3.3.4"
sources."fast-glob-3.2.7"
sources."fastq-1.12.0"
sources."fill-range-7.0.1"
sources."form-data-3.0.1"
+ sources."from-0.1.7"
sources."fs-extra-10.0.0"
sources."glob-parent-5.1.2"
sources."globby-12.0.2"
@@ -124477,19 +124547,25 @@ in
sources."is-number-7.0.0"
sources."isexe-2.0.0"
sources."jsonfile-6.1.0"
+ sources."map-stream-0.1.0"
sources."merge2-1.4.1"
sources."micromatch-4.0.4"
sources."mime-db-1.49.0"
sources."mime-types-2.1.32"
sources."minimist-1.2.5"
- sources."node-fetch-2.6.1"
+ sources."node-fetch-2.6.2"
sources."path-type-4.0.0"
+ sources."pause-stream-0.0.11"
sources."picomatch-2.3.0"
+ sources."ps-tree-1.2.0"
sources."queue-microtask-1.2.3"
sources."reusify-1.0.4"
sources."run-parallel-1.2.0"
sources."slash-4.0.0"
+ sources."split-0.3.3"
+ sources."stream-combiner-0.0.4"
sources."supports-color-7.2.0"
+ sources."through-2.3.8"
sources."to-regex-range-5.0.1"
sources."universalify-2.0.0"
sources."which-2.0.2"
diff --git a/pkgs/development/python-modules/denonavr/default.nix b/pkgs/development/python-modules/denonavr/default.nix
index e4e36a196fe0..94d3f73950f5 100644
--- a/pkgs/development/python-modules/denonavr/default.nix
+++ b/pkgs/development/python-modules/denonavr/default.nix
@@ -15,14 +15,14 @@
buildPythonPackage rec {
pname = "denonavr";
- version = "0.10.8";
+ version = "0.10.9";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "scarface-4711";
repo = pname;
rev = version;
- sha256 = "02q76mbmg2rkm4shy2apwbw9pvicy9j5v4zgpjwzxif9yf7m8aqk";
+ sha256 = "sha256-Y0sFRKnKZAdP95EyE3h1g92AJeT0Xkshjjwfv/vnfW8=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/dnachisel/default.nix b/pkgs/development/python-modules/dnachisel/default.nix
index 12f81d644a8e..0f30113ba2ff 100644
--- a/pkgs/development/python-modules/dnachisel/default.nix
+++ b/pkgs/development/python-modules/dnachisel/default.nix
@@ -15,13 +15,13 @@
buildPythonPackage rec {
pname = "dnachisel";
- version = "3.2.7";
+ version = "3.2.8";
src = fetchFromGitHub {
owner = "Edinburgh-Genome-Foundry";
repo = "DnaChisel";
rev = "v${version}";
- sha256 = "1zhq7cai47649njjp3m8zaglsv9ci6ci855dymyip8qx5ppnkfj0";
+ sha256 = "17jldscmsq5lwp3pnjlxg56k3vfpr7rj4qbcbzkzhphifrfgm729";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/elementpath/default.nix b/pkgs/development/python-modules/elementpath/default.nix
index ab09f0edf360..538de4ba7de9 100644
--- a/pkgs/development/python-modules/elementpath/default.nix
+++ b/pkgs/development/python-modules/elementpath/default.nix
@@ -1,15 +1,20 @@
-{ lib, buildPythonPackage, fetchFromGitHub, isPy27 }:
+{ lib
+, buildPythonPackage
+, fetchFromGitHub
+, pythonOlder
+}:
buildPythonPackage rec {
- version = "2.3.0";
+ version = "2.3.1";
pname = "elementpath";
- disabled = isPy27; # uses incompatible class syntax
+
+ disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "sissaschool";
repo = "elementpath";
rev = "v${version}";
- sha256 = "1zghj0v1s03ahynx7sczag7iaam757ypwl1lm0ym6j37dnq8vnxk";
+ sha256 = "1imjilhmbw08469irlbr3am5zksbg327n7mznxfixrigq9d65qx6";
};
# avoid circular dependency with xmlschema which directly depends on this
diff --git a/pkgs/development/python-modules/google-cloud-asset/default.nix b/pkgs/development/python-modules/google-cloud-asset/default.nix
index 4e1dbf8c465a..d2132533c84c 100644
--- a/pkgs/development/python-modules/google-cloud-asset/default.nix
+++ b/pkgs/development/python-modules/google-cloud-asset/default.nix
@@ -17,11 +17,11 @@
buildPythonPackage rec {
pname = "google-cloud-asset";
- version = "3.4.0";
+ version = "3.5.0";
src = fetchPypi {
inherit pname version;
- sha256 = "bd1fe84efd2e45042d95c7e5713e0a0365ec8138df062c07fab761233202ab6f";
+ sha256 = "7d7218ffdd17d64184e1de69ef016f1f070bb0c888785510c4731948b078067d";
};
postPatch = ''
diff --git a/pkgs/development/python-modules/google-resumable-media/default.nix b/pkgs/development/python-modules/google-resumable-media/default.nix
index 67ee4cb22d4c..077fc45526c7 100644
--- a/pkgs/development/python-modules/google-resumable-media/default.nix
+++ b/pkgs/development/python-modules/google-resumable-media/default.nix
@@ -12,11 +12,11 @@
buildPythonPackage rec {
pname = "google-resumable-media";
- version = "2.0.1";
+ version = "2.0.2";
src = fetchPypi {
inherit pname version;
- sha256 = "cac55be7802e3424b8f022d8a572a8349327e7ce8494eee5e0f4df02458b1813";
+ sha256 = "36d682161fdcbfa29681212c210fabecbf6849a505a0cbc54b7f70a10a5278a2";
};
propagatedBuildInputs = [ google-auth google-crc32c requests ];
diff --git a/pkgs/development/python-modules/grpcio-tools/default.nix b/pkgs/development/python-modules/grpcio-tools/default.nix
index 0e095126676d..eb27a5596bc2 100644
--- a/pkgs/development/python-modules/grpcio-tools/default.nix
+++ b/pkgs/development/python-modules/grpcio-tools/default.nix
@@ -2,11 +2,11 @@
buildPythonPackage rec {
pname = "grpcio-tools";
- version = "1.39.0";
+ version = "1.40.0";
src = fetchPypi {
inherit pname version;
- sha256 = "39dfe7415bc0d3860fdb8dd90607594b046b88b57dbe64284efa4820f951c805";
+ sha256 = "d440f2bc089ff628618c536904d5bc39d0b44f7afdda4c4c1ecd15fcf385bfba";
};
outputs = [ "out" "dev" ];
diff --git a/pkgs/development/python-modules/karton-core/default.nix b/pkgs/development/python-modules/karton-core/default.nix
index b05c6bd343fa..07f317a8aba5 100644
--- a/pkgs/development/python-modules/karton-core/default.nix
+++ b/pkgs/development/python-modules/karton-core/default.nix
@@ -8,13 +8,13 @@
buildPythonPackage rec {
pname = "karton-core";
- version = "4.2.0";
+ version = "4.3.0";
src = fetchFromGitHub {
owner = "CERT-Polska";
repo = "karton";
rev = "v${version}";
- sha256 = "08j1bm9g58576sswcrpfczaki24nlqqaypp7qv1rxxwsyp5pq6h6";
+ sha256 = "sha256-pIYDY+pie4xqH11UHBal7/+MVmJDgNCFVpSD9we9ZPA=";
};
propagatedBuildInputs = [ minio redis ];
diff --git a/pkgs/development/python-modules/mediafile/default.nix b/pkgs/development/python-modules/mediafile/default.nix
index 5d11d253b6d9..eb7fc8ca60ff 100644
--- a/pkgs/development/python-modules/mediafile/default.nix
+++ b/pkgs/development/python-modules/mediafile/default.nix
@@ -1,8 +1,5 @@
{ buildPythonPackage
-, enum34
-, fetchpatch
, fetchPypi
-, isPy27
, lib
, mutagen
, six
@@ -10,30 +7,14 @@
buildPythonPackage rec {
pname = "mediafile";
- version = "0.6.0";
+ version = "0.8.0";
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-o/tSAHu8FTr6LZoMHvegr9uCZovNLHS9KkP2U9y4uko=";
+ sha256 = "sha256-19K5DZMstRWu/6+N/McEdM1swedI5qr15kmnIAMA60Y=";
};
- propagatedBuildInputs = [ mutagen six ] ++ lib.optional isPy27 enum34;
-
- # NB: Remove in the next release
- patches = [
- (fetchpatch {
- url = "https://github.com/beetbox/mediafile/commit/0ff753d493a1a7f406cb3378545ffe2c85a9afa3.patch";
- sha256 = "sha256-AQ7YedoYPmLqt4a/odgghIKOY61i9YfA0To0RVFqlk8=";
- })
- (fetchpatch {
- url = "https://github.com/beetbox/mediafile/commit/f0fb4e5111d9dfaa3b38d196ec41fcd237d97953.patch";
- sha256 = "sha256-5O6RiAqkQEz3Bvqjwwv/LOS33nSIBnT2H/vasGGVrpI=";
- })
- (fetchpatch {
- url = "https://github.com/beetbox/mediafile/commit/d2fc3b59f77c515b02dfe7ad936f89264375d2b4.patch";
- sha256 = "sha256-SMH0XhCaKLDNB4M8VmZWfGuuelfY5xladZyQYtXtP18=";
- })
- ];
+ propagatedBuildInputs = [ mutagen six ];
meta = with lib; {
description = "MediaFile is a simple interface to the metadata tags for many audio file formats.";
diff --git a/pkgs/development/python-modules/mysql-connector/0001-Revert-Fix-MacOS-wheels-platform-tag.patch b/pkgs/development/python-modules/mysql-connector/0001-Revert-Fix-MacOS-wheels-platform-tag.patch
new file mode 100644
index 000000000000..4356052d8715
--- /dev/null
+++ b/pkgs/development/python-modules/mysql-connector/0001-Revert-Fix-MacOS-wheels-platform-tag.patch
@@ -0,0 +1,36 @@
+From c5d32ef5d656b0aa4b2c1fc61c901d40bf2fb96a Mon Sep 17 00:00:00 2001
+From: Alexander Ben Nasrallah
+Date: Mon, 19 Jul 2021 17:24:41 +0200
+Subject: [PATCH] Revert "Fix MacOS wheels platform tag"
+
+This reverts commit d1e89fd3d7391084cdf35b0806cb5d2a4b413654.
+---
+ cpydist/__init__.py | 5 +----
+ 1 file changed, 1 insertion(+), 4 deletions(-)
+
+diff --git a/cpydist/__init__.py b/cpydist/__init__.py
+index 0e7f341..2619d7a 100644
+--- a/cpydist/__init__.py
++++ b/cpydist/__init__.py
+@@ -41,7 +41,7 @@ from distutils.command.install import install
+ from distutils.command.install_lib import install_lib
+ from distutils.core import Command
+ from distutils.dir_util import mkpath, remove_tree
+-from distutils.sysconfig import get_config_vars, get_python_version
++from distutils.sysconfig import get_python_version
+ from distutils.version import LooseVersion
+ from subprocess import check_call, Popen, PIPE
+
+@@ -57,9 +57,6 @@ version_py = os.path.join("lib", "mysql", "connector", "version.py")
+ with open(version_py, "rb") as fp:
+ exec(compile(fp.read(), version_py, "exec"))
+
+-if "MACOSX_DEPLOYMENT_TARGET" in get_config_vars():
+- get_config_vars()["MACOSX_DEPLOYMENT_TARGET"] = "11.0"
+-
+ COMMON_USER_OPTIONS = [
+ ("byte-code-only", None,
+ "remove Python .py files; leave byte code .pyc only"),
+--
+2.31.1
+
diff --git a/pkgs/development/python-modules/mysql-connector/default.nix b/pkgs/development/python-modules/mysql-connector/default.nix
index 0856b30758dc..211bdec41fe0 100644
--- a/pkgs/development/python-modules/mysql-connector/default.nix
+++ b/pkgs/development/python-modules/mysql-connector/default.nix
@@ -13,6 +13,15 @@ in buildPythonPackage rec {
sha256 = "1zb5wf65rnpbk0lw31i4piy0bq09hqa62gx7bh241zc5310zccc7";
};
+ patches = [
+ # mysql-connector overrides MACOSX_DEPLOYMENT_TARGET to 11.
+ # This makes the installation with nixpkgs fail. I suspect, that's
+ # because stdenv.targetPlatform.darwinSdkVersion is (currently) set to
+ # 10.12. The patch reverts
+ # https://github.com/mysql/mysql-connector-python/commit/d1e89fd3d7391084cdf35b0806cb5d2a4b413654
+ ./0001-Revert-Fix-MacOS-wheels-platform-tag.patch
+ ];
+
propagatedBuildInputs = with py.pkgs; [ protobuf dnspython ];
# Tests are failing (TODO: unknown reason)
@@ -31,6 +40,6 @@ in buildPythonPackage rec {
homepage = "https://github.com/mysql/mysql-connector-python";
changelog = "https://raw.githubusercontent.com/mysql/mysql-connector-python/${version}/CHANGES.txt";
license = [ lib.licenses.gpl2Only ];
- maintainers = with lib.maintainers; [ ];
+ maintainers = with lib.maintainers; [ neosimsim turion ];
};
}
diff --git a/pkgs/development/python-modules/numpy-stl/default.nix b/pkgs/development/python-modules/numpy-stl/default.nix
index 040c34ee8006..312170ee36c2 100644
--- a/pkgs/development/python-modules/numpy-stl/default.nix
+++ b/pkgs/development/python-modules/numpy-stl/default.nix
@@ -11,11 +11,11 @@
buildPythonPackage rec {
pname = "numpy-stl";
- version = "2.16.2";
+ version = "2.16.3";
src = fetchPypi {
inherit pname version;
- sha256 = "3e635b6fb6112a3c5e00e9e20eedab93b9b0c45ff1cc34eb7bdc0b3e922e2d77";
+ sha256 = "95890627001efb2cb8d17418730cdc1bdd64b8dbb9862b01a8e0359d79fe863e";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/pomegranate/default.nix b/pkgs/development/python-modules/pomegranate/default.nix
index 518840d415a9..cb87f352154c 100644
--- a/pkgs/development/python-modules/pomegranate/default.nix
+++ b/pkgs/development/python-modules/pomegranate/default.nix
@@ -31,7 +31,11 @@ buildPythonPackage rec {
url = "https://github.com/jmschrei/pomegranate/commit/42d14bebc44ffd4a778b2a6430aa845591b7c3b7.patch";
sha256 = "0f9cx0fj9xkr3hch7jyrn76zjypilh5bqw734caaw6g2m49lvbff";
})
- ];
+ ] ++ [
+ # Likely an upstream test bug and not a real problem:
+ # https://github.com/jmschrei/pomegranate/issues/939
+ ./disable-failed-on-nextworkx-2.6.patch
+ ] ;
propagatedBuildInputs = [ numpy scipy cython networkx joblib pyyaml ];
diff --git a/pkgs/development/python-modules/pomegranate/disable-failed-on-nextworkx-2.6.patch b/pkgs/development/python-modules/pomegranate/disable-failed-on-nextworkx-2.6.patch
new file mode 100644
index 000000000000..484ca4f9cbc8
--- /dev/null
+++ b/pkgs/development/python-modules/pomegranate/disable-failed-on-nextworkx-2.6.patch
@@ -0,0 +1,26 @@
+Test started failing after upgrading networkx 2.5.1 -> 2.6.2:
+ https://github.com/jmschrei/pomegranate/issues/939
+
+Failures look benigh.
+--- a/tests/test_bayesian_network.py
++++ b/tests/test_bayesian_network.py
+@@ -1057,7 +1057,8 @@ def test_exact_structure_learning_exclude_edges():
+ assert_not_equal(model.structure[-2], (d-1,))
+ assert_equal(model.structure[-2], (1,))
+
+-def test_exact_dp_structure_learning_exclude_edges():
++# disabled for https://github.com/jmschrei/pomegranate/issues/939
++def disabled_exact_dp_structure_learning_exclude_edges():
+ for X in datasets:
+ X = X.copy()
+ X[:,1] = X[:,-1]
+@@ -1139,7 +1140,8 @@ def test_constrained_parents_structure_learning_exclude_edges():
+ assert_equal(model.structure[7], (2,))
+ assert_equal(model.structure[4], (0,))
+
+-def test_constrained_slap_structure_learning_exclude_edges():
++# disabled for https://github.com/jmschrei/pomegranate/issues/939
++def disabled_constrained_slap_structure_learning_exclude_edges():
+ for X in datasets:
+ X = X.copy()
+ X[:,1] = X[:,-1]
diff --git a/pkgs/development/python-modules/pubnub/default.nix b/pkgs/development/python-modules/pubnub/default.nix
index a6af74b3e4e9..a374a5bef9c1 100644
--- a/pkgs/development/python-modules/pubnub/default.nix
+++ b/pkgs/development/python-modules/pubnub/default.nix
@@ -13,13 +13,13 @@
buildPythonPackage rec {
pname = "pubnub";
- version = "5.2.0";
+ version = "5.2.1";
src = fetchFromGitHub {
owner = pname;
repo = "python";
rev = "v${version}";
- sha256 = "1jd3rr8dydfaxz5g8idpwacp4bnbmhg74dwz7qwmzn34336s4ji6";
+ sha256 = "151f9vhgjlr3maniry3vin8vxvz7h8kxnfby9zgsrlvjs4nfgdf9";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/pyfma/default.nix b/pkgs/development/python-modules/pyfma/default.nix
index e41d51c17719..2e26cee84da4 100644
--- a/pkgs/development/python-modules/pyfma/default.nix
+++ b/pkgs/development/python-modules/pyfma/default.nix
@@ -10,14 +10,14 @@
buildPythonPackage rec {
pname = "pyfma";
- version = "0.1.4";
+ version = "0.1.6";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "nschloe";
repo = pname;
- rev = "v${version}";
- sha256 = "1wkcl41j2d1yflc5dl30ys1yxx68w9zn3vj8brwkm1ar9jnfmg4h";
+ rev = version;
+ sha256 = "12i68jj9n1qj9phjnj6f0kmfhlsd3fqjlk9p6d4gs008azw5m8yn";
};
format = "pyproject";
diff --git a/pkgs/development/python-modules/pymazda/default.nix b/pkgs/development/python-modules/pymazda/default.nix
index 66ab62d927b3..3065fbc14587 100644
--- a/pkgs/development/python-modules/pymazda/default.nix
+++ b/pkgs/development/python-modules/pymazda/default.nix
@@ -8,12 +8,12 @@
buildPythonPackage rec {
pname = "pymazda";
- version = "0.2.0";
+ version = "0.2.1";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
- sha256 = "sha256-tEe70gvEglxqECiPjS3k29zZi70OSGMv6JxhrXqPhnY=";
+ sha256 = "sha256-Dg7oVNEjKZB6zksm1We2JGBW+cGkOOQOP3bS4CNL4q8=";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/python-nomad/default.nix b/pkgs/development/python-modules/python-nomad/default.nix
index 1cbb3a3de9d5..6d6c5c90fdfe 100644
--- a/pkgs/development/python-modules/python-nomad/default.nix
+++ b/pkgs/development/python-modules/python-nomad/default.nix
@@ -2,11 +2,11 @@
buildPythonPackage rec {
pname = "python-nomad";
- version = "1.3.0";
+ version = "1.4.1";
src = fetchPypi {
inherit pname version;
- sha256 = "67731d050472923581c43a39a8f01567468e8b3c8e83465b762c99eb0e5e23bc";
+ sha256 = "087a7d5d2af9fd8ce5da70d29e4b456c6b8b0ea3cd16613ed50f6eb8ad6cdba6";
};
propagatedBuildInputs = [ requests ];
diff --git a/pkgs/development/python-modules/trezor/default.nix b/pkgs/development/python-modules/trezor/default.nix
index 3015e8d7ebb9..137d67124458 100644
--- a/pkgs/development/python-modules/trezor/default.nix
+++ b/pkgs/development/python-modules/trezor/default.nix
@@ -24,13 +24,13 @@
buildPythonPackage rec {
pname = "trezor";
- version = "0.12.3";
+ version = "0.12.4";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
- sha256 = "02c39c333435b8f6dc62cc79bb5bf35fc7f0eb144a1a748be3b7c065ee3e85ae";
+ sha256 = "3e180d9f9f8b69176b5ef36311b6161f5b793b538eb2dfd4babbb4d3fb1e374e";
};
nativeBuildInputs = [ installShellFiles ];
diff --git a/pkgs/development/python-modules/xmlschema/default.nix b/pkgs/development/python-modules/xmlschema/default.nix
index 960dd227388d..a2bd27d9f1d8 100644
--- a/pkgs/development/python-modules/xmlschema/default.nix
+++ b/pkgs/development/python-modules/xmlschema/default.nix
@@ -1,34 +1,48 @@
-{ lib, buildPythonPackage, fetchFromGitHub
+{ lib
+, buildPythonPackage
+, fetchFromGitHub
, elementpath
, lxml
-, pytest
+, pytestCheckHook
+, pythonOlder
}:
buildPythonPackage rec {
- version = "1.7.0";
+ version = "1.7.1";
pname = "xmlschema";
+ disabled = pythonOlder "3.6";
+
src = fetchFromGitHub {
owner = "sissaschool";
repo = "xmlschema";
rev = "v${version}";
- sha256 = "0vf0gj1sbv9f7gjm3zbyl0b8pkrn00yzx57ddff0h2kazv8jlpwi";
+ sha256 = "124wq44aqzxrh92ylm44rry9dsyb68drgzbhzacrm511n1j0ziww";
};
- propagatedBuildInputs = [ elementpath ];
+ propagatedBuildInputs = [
+ elementpath
+ ];
- checkInputs = [ lxml pytest ];
+ checkInputs = [
+ lxml
+ pytestCheckHook
+ ];
# Ignore broken fixtures, and tests for files which don't exist.
# For darwin, we need to explicity say we can't reach network
- checkPhase = ''
- pytest tests \
- --ignore=tests/test_factory.py \
- --ignore=tests/test_schemas.py \
- --ignore=tests/test_memory.py \
- --ignore=tests/test_validation.py \
- -k 'not element_tree_import_script and not export_remote'
- '';
+ disabledTests = [
+ "export_remote"
+ "element_tree_import_script"
+ ];
+
+ disabledTestPaths = [
+ "tests/test_schemas.py"
+ "tests/test_memory.py"
+ "tests/test_validation.py"
+ ];
+
+ pythonImportsCheck = [ "xmlschema" ];
meta = with lib; {
description = "XML Schema validator and data conversion library for Python";
diff --git a/pkgs/development/tools/build-managers/rocm-cmake/default.nix b/pkgs/development/tools/build-managers/rocm-cmake/default.nix
index 68cd3d449cad..31f4265597fe 100644
--- a/pkgs/development/tools/build-managers/rocm-cmake/default.nix
+++ b/pkgs/development/tools/build-managers/rocm-cmake/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "rocm-cmake";
- version = "4.1.0";
+ version = "4.3.1";
src = fetchFromGitHub {
owner = "RadeonOpenCompute";
repo = "rocm-cmake";
rev = "rocm-${version}";
- hash = "sha256-uK060F7d7/pTCNbGqdKCzxgPrPPbGjNwuUOt176z7EM=";
+ hash = "sha256-BhpYOL7+IlBpkzeFjfy6KLO7ail472KQWFfQX/sXLGo=";
};
nativeBuildInputs = [ cmake ];
diff --git a/pkgs/development/tools/continuous-integration/drone-cli/default.nix b/pkgs/development/tools/continuous-integration/drone-cli/default.nix
index 4ee5870e47cd..6eac6d52b799 100644
--- a/pkgs/development/tools/continuous-integration/drone-cli/default.nix
+++ b/pkgs/development/tools/continuous-integration/drone-cli/default.nix
@@ -21,7 +21,7 @@ buildGoModule rec {
};
meta = with lib; {
- maintainers = with maintainers; [ bricewge ];
+ maintainers = with maintainers; [ ];
license = licenses.asl20;
description = "Command line client for the Drone continuous integration server";
};
diff --git a/pkgs/development/tools/htmlq/default.nix b/pkgs/development/tools/htmlq/default.nix
new file mode 100644
index 000000000000..2dedd39e9419
--- /dev/null
+++ b/pkgs/development/tools/htmlq/default.nix
@@ -0,0 +1,26 @@
+{ lib, stdenv, fetchFromGitHub, rustPlatform, Security }:
+
+rustPlatform.buildRustPackage rec {
+ pname = "htmlq";
+ version = "0.2.0";
+
+ src = fetchFromGitHub {
+ owner = "mgdm";
+ repo = "htmlq";
+ rev = "v${version}";
+ sha256 = "sha256-Q2zjrHKFWowx2yB1cdGxPnNnc8yQJz65HaX0yIqbHks=";
+ };
+
+ cargoSha256 = "sha256-pPtKPVSdEtEPmQPpNRJ4uyguDRAW0YvKgdUw5OAtbjA=";
+
+ buildInputs = lib.optionals stdenv.isDarwin [ Security ];
+
+ doCheck = false;
+
+ meta = with lib; {
+ description = "Like jq, but for HTML";
+ homepage = "https://github.com/mgdm/htmlq";
+ license = licenses.mit;
+ maintainers = with maintainers; [ siraben nerdypepper ];
+ };
+}
diff --git a/pkgs/development/tools/luaformatter/default.nix b/pkgs/development/tools/luaformatter/default.nix
index 5fb82b0fb4c9..00d96a687a63 100644
--- a/pkgs/development/tools/luaformatter/default.nix
+++ b/pkgs/development/tools/luaformatter/default.nix
@@ -27,6 +27,7 @@ stdenv.mkDerivation rec {
description = "Code formatter for Lua";
homepage = "https://github.com/Koihik/LuaFormatter";
license = licenses.asl20;
+ platforms = platforms.all;
maintainers = with maintainers; [ figsoda SuperSandro2000 ];
mainProgram = "lua-format";
};
diff --git a/pkgs/development/tools/ocaml/dune/2.nix b/pkgs/development/tools/ocaml/dune/2.nix
index 3945389e8cd1..00d593f75107 100644
--- a/pkgs/development/tools/ocaml/dune/2.nix
+++ b/pkgs/development/tools/ocaml/dune/2.nix
@@ -6,11 +6,11 @@ else
stdenv.mkDerivation rec {
pname = "dune";
- version = "2.9.0";
+ version = "2.9.1";
src = fetchurl {
url = "https://github.com/ocaml/dune/releases/download/${version}/dune-${version}.tbz";
- sha256 = "07m476kgagpd6kzm3jq30yfxqspr2hychah0xfqs14z82zxpq8dv";
+ sha256 = "09lzq04b642iy0ljp59p32lgk3q8iphjh8fkdp69q29l5frgwx5k";
};
buildInputs = [ ocaml findlib ];
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
meta = {
homepage = "https://dune.build/";
description = "A composable build system";
- changelog = "https://github.com/ocaml/dune/blob/${version}/CHANGES.md";
+ changelog = "https://github.com/ocaml/dune/raw/${version}/CHANGES.md";
maintainers = [ lib.maintainers.vbgl lib.maintainers.marsam ];
license = lib.licenses.mit;
inherit (ocaml.meta) platforms;
diff --git a/pkgs/development/tools/rocminfo/default.nix b/pkgs/development/tools/rocminfo/default.nix
new file mode 100644
index 000000000000..bf95e15873fa
--- /dev/null
+++ b/pkgs/development/tools/rocminfo/default.nix
@@ -0,0 +1,38 @@
+{ stdenv, lib, fetchFromGitHub, fetchpatch, cmake, rocm-runtime, python3, rocm-cmake, busybox, gnugrep
+ # rocminfo requires that the calling user have a password and be in
+ # the video group. If we let rocm_agent_enumerator rely upon
+ # rocminfo's output, then it, too, has those requirements. Instead,
+ # we can specify the GPU targets for this system (e.g. "gfx803" for
+ # Polaris) such that no system call is needed for downstream
+ # compilers to determine the desired target.
+, defaultTargets ? []}:
+stdenv.mkDerivation rec {
+ version = "4.3.1";
+ pname = "rocminfo";
+ src = fetchFromGitHub {
+ owner = "RadeonOpenCompute";
+ repo = "rocminfo";
+ rev = "rocm-${version}";
+ sha256 = "sha256-n80tiSVaPTFl4imZvoFENM4KhPLxgDKz5VlOvhEYlV0=";
+ };
+
+ enableParallelBuilding = true;
+ buildInputs = [ cmake rocm-cmake rocm-runtime ];
+ cmakeFlags = [
+ "-DROCM_DIR=${rocm-runtime}"
+ "-DROCRTST_BLD_TYPE=Release"
+ ];
+
+ prePatch = ''
+ sed 's,#!/usr/bin/env python3,#!${python3}/bin/python,' -i rocm_agent_enumerator
+ sed 's,lsmod | grep ,${busybox}/bin/lsmod | ${gnugrep}/bin/grep ,' -i rocminfo.cc
+ '';
+
+ installPhase = ''
+ mkdir -p $out/bin
+ cp rocminfo $out/bin
+ cp rocm_agent_enumerator $out/bin
+ '' + lib.optionalString (defaultTargets != []) ''
+ echo '${lib.concatStringsSep "\n" defaultTargets}' > $out/bin/target.lst
+ '';
+}
diff --git a/pkgs/development/tools/rust/rust-analyzer/default.nix b/pkgs/development/tools/rust/rust-analyzer/default.nix
index fc70238ada08..7fc5c2b5b527 100644
--- a/pkgs/development/tools/rust/rust-analyzer/default.nix
+++ b/pkgs/development/tools/rust/rust-analyzer/default.nix
@@ -6,14 +6,14 @@
rustPlatform.buildRustPackage rec {
pname = "rust-analyzer-unwrapped";
- version = "2021-08-30";
- cargoSha256 = "sha256-ba/4mQSBJin3yoIZjzFTiEIRY2eWFQI2pY1dOCZ1ALw=";
+ version = "2021-09-06";
+ cargoSha256 = "sha256-CTCDSoViyVMHxUKQz8fE+r3rkXf7yRgzZ90fZmMtcNM=";
src = fetchFromGitHub {
owner = "rust-analyzer";
repo = "rust-analyzer";
rev = version;
- sha256 = "sha256-mgwoJfvO3W4MYk6ikgck14e+hMjA2D+4lpnkAEeLEWA=";
+ sha256 = "sha256-TacpTVvHAIs4kZ5vibj8luy/kryYwxY+OXFNPnqiXP0=";
};
patches = [
diff --git a/pkgs/development/web/nodejs/v16.nix b/pkgs/development/web/nodejs/v16.nix
index 805e62be8d62..c2f1f02ee378 100644
--- a/pkgs/development/web/nodejs/v16.nix
+++ b/pkgs/development/web/nodejs/v16.nix
@@ -8,7 +8,7 @@ let
in
buildNodejs {
inherit enableNpm;
- version = "16.8.0";
- sha256 = "14k3njj382im3q4k6dhsxdk07gs81hw2k0nrixfvlw1964k04ydq";
+ version = "16.9.0";
+ sha256 = "0vv6igmnz4fkr4i8gczxxw2qgcvydkpy71w3lskah8zw1lh69rqs";
patches = [ ./disable-darwin-v8-system-instrumentation.patch ];
}
diff --git a/pkgs/misc/vim-plugins/generated.nix b/pkgs/misc/vim-plugins/generated.nix
index cb35276ed962..c1050f394805 100644
--- a/pkgs/misc/vim-plugins/generated.nix
+++ b/pkgs/misc/vim-plugins/generated.nix
@@ -3106,6 +3106,18 @@ final: prev:
meta.homepage = "https://github.com/wfxr/minimap.vim/";
};
+ minsnip-nvim = buildVimPluginFrom2Nix {
+ pname = "minsnip.nvim";
+ version = "2021-09-06";
+ src = fetchFromGitHub {
+ owner = "jose-elias-alvarez";
+ repo = "minsnip.nvim";
+ rev = "0bcc73cb716b07d4286ef714f5a07d94204d484c";
+ sha256 = "0k6dmqmw52scvwfr5w8dg7388cy95vdvgfw3f4prwyls60i9x55w";
+ };
+ meta.homepage = "https://github.com/jose-elias-alvarez/minsnip.nvim/";
+ };
+
mkdx = buildVimPluginFrom2Nix {
pname = "mkdx";
version = "2021-07-05";
@@ -3482,12 +3494,12 @@ final: prev:
pname = "neorg";
version = "2021-09-05";
src = fetchFromGitHub {
- owner = "vhyrro";
+ owner = "nvim-neorg";
repo = "neorg";
rev = "47a0a3d91ddde94488ccd03d38b5beeb296d3148";
sha256 = "0n8scyjy3wx2l3anl3dyipx7rlayrjb5dlri2r81dr1s77vkch83";
};
- meta.homepage = "https://github.com/vhyrro/neorg/";
+ meta.homepage = "https://github.com/nvim-neorg/neorg/";
};
neoscroll-nvim = buildVimPluginFrom2Nix {
@@ -4114,6 +4126,18 @@ final: prev:
meta.homepage = "https://github.com/ishan9299/nvim-solarized-lua/";
};
+ nvim-spectre = buildVimPluginFrom2Nix {
+ pname = "nvim-spectre";
+ version = "2021-09-05";
+ src = fetchFromGitHub {
+ owner = "windwp";
+ repo = "nvim-spectre";
+ rev = "0f10e9fe2553cb8c0a1512924a2639035559e0bd";
+ sha256 = "15bahq0gspjl263bjlpd199brf3ns126j2mrlfxsqzlcnc53y7za";
+ };
+ meta.homepage = "https://github.com/windwp/nvim-spectre/";
+ };
+
nvim-terminal-lua = buildVimPluginFrom2Nix {
pname = "nvim-terminal.lua";
version = "2019-10-17";
diff --git a/pkgs/misc/vim-plugins/overrides.nix b/pkgs/misc/vim-plugins/overrides.nix
index f4263d12161f..40c3012f1bbe 100644
--- a/pkgs/misc/vim-plugins/overrides.nix
+++ b/pkgs/misc/vim-plugins/overrides.nix
@@ -431,6 +431,10 @@ self: super: {
dependencies = with self; [ popfix ];
});
+ nvim-spectre = super.nvim-spectre.overrideAttrs (old: {
+ dependencies = with self; [ plenary-nvim ];
+ });
+
# Usage:
# pkgs.vimPlugins.nvim-treesitter.withPlugins (p: [ p.tree-sitter-c p.tree-sitter-java ... ])
# or for all grammars:
diff --git a/pkgs/misc/vim-plugins/vim-plugin-names b/pkgs/misc/vim-plugins/vim-plugin-names
index a2c2dd5b1267..dbf82db2ec9b 100644
--- a/pkgs/misc/vim-plugins/vim-plugin-names
+++ b/pkgs/misc/vim-plugins/vim-plugin-names
@@ -283,6 +283,7 @@ joonty/vim-xdebug
joosepalviste/nvim-ts-context-commentstring@main
josa42/coc-lua
josa42/vim-lightline-coc
+jose-elias-alvarez/minsnip.nvim@main
jose-elias-alvarez/null-ls.nvim@main
joshdick/onedark.vim@main
jpalardy/vim-slime@main
@@ -511,6 +512,7 @@ nvim-lua/lsp-status.nvim
nvim-lua/lsp_extensions.nvim
nvim-lua/plenary.nvim
nvim-lua/popup.nvim
+nvim-neorg/neorg@main
nvim-telescope/telescope-dap.nvim
nvim-telescope/telescope-frecency.nvim
nvim-telescope/telescope-fzf-native.nvim@main
@@ -789,7 +791,6 @@ urbit/hoon.vim
Valloric/MatchTagAlways
Valodim/deoplete-notmuch
vhda/verilog_systemverilog.vim
-vhyrro/neorg@main
vigoux/LanguageTool.nvim
vim-airline/vim-airline
vim-airline/vim-airline-themes
@@ -858,6 +859,7 @@ wincent/command-t
wincent/ferret
wincent/terminus
windwp/nvim-autopairs
+windwp/nvim-spectre
winston0410/cmd-parser.nvim
winston0410/range-highlight.nvim
wlangstroth/vim-racket
diff --git a/pkgs/misc/vscode-extensions/rust-analyzer/build-deps/package.json b/pkgs/misc/vscode-extensions/rust-analyzer/build-deps/package.json
index 5c68fec3f120..a2216a58bee6 100644
--- a/pkgs/misc/vscode-extensions/rust-analyzer/build-deps/package.json
+++ b/pkgs/misc/vscode-extensions/rust-analyzer/build-deps/package.json
@@ -1,6 +1,6 @@
{
"name": "rust-analyzer",
- "version": "0.2.727",
+ "version": "0.2.735",
"dependencies": {
"https-proxy-agent": "^5.0.0",
"node-fetch": "^2.6.1",
diff --git a/pkgs/os-specific/linux/bbswitch/default.nix b/pkgs/os-specific/linux/bbswitch/default.nix
index 837906fb5549..a64e1297ea01 100644
--- a/pkgs/os-specific/linux/bbswitch/default.nix
+++ b/pkgs/os-specific/linux/bbswitch/default.nix
@@ -59,5 +59,6 @@ stdenv.mkDerivation {
platforms = [ "x86_64-linux" "i686-linux" ];
homepage = "https://github.com/Bumblebee-Project/bbswitch";
maintainers = with maintainers; [ abbradar ];
+ license = licenses.gpl2Plus;
};
}
diff --git a/pkgs/os-specific/linux/ddcci/default.nix b/pkgs/os-specific/linux/ddcci/default.nix
index 92c33077d684..5ee5eafb0207 100644
--- a/pkgs/os-specific/linux/ddcci/default.nix
+++ b/pkgs/os-specific/linux/ddcci/default.nix
@@ -36,7 +36,7 @@ stdenv.mkDerivation rec {
description = "Kernel module driver for DDC/CI monitors";
homepage = "https://gitlab.com/ddcci-driver-linux/ddcci-driver-linux";
license = licenses.gpl2Plus;
- maintainers = with maintainers; [ bricewge ];
+ maintainers = with maintainers; [ ];
platforms = platforms.linux;
broken = kernel.kernelOlder "5.1";
};
diff --git a/pkgs/os-specific/linux/kernel/linux-libre.nix b/pkgs/os-specific/linux/kernel/linux-libre.nix
index 3642dfe442d0..d9f8912416a5 100644
--- a/pkgs/os-specific/linux/kernel/linux-libre.nix
+++ b/pkgs/os-specific/linux/kernel/linux-libre.nix
@@ -1,8 +1,8 @@
{ stdenv, lib, fetchsvn, linux
, scripts ? fetchsvn {
url = "https://www.fsfla.org/svn/fsfla/software/linux-libre/releases/branches/";
- rev = "18298";
- sha256 = "027fp6h7295cc9m5g46phqd6hixcnvihpfsyrnzvsxz6pkvjzpw4";
+ rev = "18314";
+ sha256 = "0fic073zafwdsw7i0j4z57a4aknk8kpgnbrxpbi181n5axdlm99k";
}
, ...
}:
diff --git a/pkgs/os-specific/linux/perf-tools/default.nix b/pkgs/os-specific/linux/perf-tools/default.nix
index 7d5d6d59ea84..113cceb50a45 100644
--- a/pkgs/os-specific/linux/perf-tools/default.nix
+++ b/pkgs/os-specific/linux/perf-tools/default.nix
@@ -39,6 +39,6 @@ stdenv.mkDerivation {
homepage = "https://github.com/brendangregg/perf-tools";
description = "Performance analysis tools based on Linux perf_events (aka perf) and ftrace";
maintainers = [ maintainers.eelco ];
- license = licenses.gpl2;
+ license = licenses.gpl2Plus;
};
}
diff --git a/pkgs/os-specific/linux/upower/default.nix b/pkgs/os-specific/linux/upower/default.nix
index 08bebefed136..d2f17c6666a8 100644
--- a/pkgs/os-specific/linux/upower/default.nix
+++ b/pkgs/os-specific/linux/upower/default.nix
@@ -1,4 +1,5 @@
-{ lib, stdenv
+{ lib
+, stdenv
, fetchurl
, pkg-config
, libxslt
@@ -16,13 +17,13 @@
stdenv.mkDerivation {
pname = "upower";
- version = "0.99.11";
+ version = "0.99.13";
outputs = [ "out" "dev" ];
src = fetchurl {
- url = "https://gitlab.freedesktop.org/upower/upower/uploads/93cfe7c8d66ed486001c4f3f55399b7a/upower-0.99.11.tar.xz";
- sha256 = "1vxxvmz2cxb1qy6ibszaz5bskqdy9nd9fxspj9fv3gfmrjzzzdb4";
+ url = "https://gitlab.freedesktop.org/upower/upower/uploads/177df5b9f9b76f25a2ad9da41aa0c1fa/upower-0.99.13.tar.xz";
+ sha256 = "sha256-XK1w+RVAzH3BIcsX4K1kXl5mPIaC9gp75C7jjNeyPXo=";
};
nativeBuildInputs = [
diff --git a/pkgs/servers/matrix-synapse/default.nix b/pkgs/servers/matrix-synapse/default.nix
index e94b05edf9d3..9b7cd567a77c 100644
--- a/pkgs/servers/matrix-synapse/default.nix
+++ b/pkgs/servers/matrix-synapse/default.nix
@@ -12,11 +12,11 @@ let
in
buildPythonApplication rec {
pname = "matrix-synapse";
- version = "1.41.1";
+ version = "1.42.0";
src = fetchPypi {
inherit pname version;
- sha256 = "1vaym6mxnwg2xdqjcigi2sb0kkdi0ly5d5ghakfsysxcfn08d1z8";
+ sha256 = "sha256-wJFjjm9apRqjk5eN/kIEgecHgm/XLbtwXHEpM2pmvO8=";
};
patches = [
diff --git a/pkgs/servers/monitoring/grafana/default.nix b/pkgs/servers/monitoring/grafana/default.nix
index 379a50770447..a297dd0eea95 100644
--- a/pkgs/servers/monitoring/grafana/default.nix
+++ b/pkgs/servers/monitoring/grafana/default.nix
@@ -2,7 +2,7 @@
buildGoModule rec {
pname = "grafana";
- version = "8.1.2";
+ version = "8.1.3";
excludedPackages = "\\(alert_webhook_listener\\|clean-swagger\\|release_publisher\\|slow_proxy\\|slow_proxy_mac\\|macaron\\)";
@@ -10,12 +10,12 @@ buildGoModule rec {
rev = "v${version}";
owner = "grafana";
repo = "grafana";
- sha256 = "sha256-xlERuPkhPEHbfX7bVoc9CjqYe/P0Miiyu5c067LLS1M=";
+ sha256 = "sha256-gJO21qTTiP6/8Oln0w89UYEYWb6pIlXvKfiALAUAjnM=";
};
srcStatic = fetchurl {
url = "https://dl.grafana.com/oss/release/grafana-${version}.linux-amd64.tar.gz";
- sha256 = "sha256-0fzCwkVHrBFiSKxvyTK0Xu8wHpyo58u+a9c7daaUCc0=";
+ sha256 = "sha256-1ZZMZEErt/OD55mEu/mF2XrsZcDVk700jRkTcYK14rE=";
};
vendorSha256 = "sha256-DFD6orsM5oDOLgHbCbrD+zNKVGbQT3Izm1VtNCZO40I=";
diff --git a/pkgs/servers/sql/postgresql/ext/pgvector.nix b/pkgs/servers/sql/postgresql/ext/pgvector.nix
index 53dfee7d0326..2c67b65d7609 100644
--- a/pkgs/servers/sql/postgresql/ext/pgvector.nix
+++ b/pkgs/servers/sql/postgresql/ext/pgvector.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "pgvector";
- version = "0.1.7";
+ version = "0.1.8";
src = fetchFromGitHub {
owner = "ankane";
repo = pname;
rev = "v${version}";
- sha256 = "07m1nn640by5q22q2s1nlmjp14q5ffbyib28kjzlss0mq8acb439";
+ sha256 = "0kq28k96y5r0k6nhz78c3frqzhf8d1af54dqbpayn7fgvdl0vlm2";
};
buildInputs = [ postgresql ];
diff --git a/pkgs/shells/zsh/oh-my-zsh/default.nix b/pkgs/shells/zsh/oh-my-zsh/default.nix
index e78c208b56fe..98e599893365 100644
--- a/pkgs/shells/zsh/oh-my-zsh/default.nix
+++ b/pkgs/shells/zsh/oh-my-zsh/default.nix
@@ -5,15 +5,15 @@
, git, nix, nixfmt, jq, coreutils, gnused, curl, cacert }:
stdenv.mkDerivation rec {
- version = "2021-08-27";
+ version = "2021-09-07";
pname = "oh-my-zsh";
- rev = "190325049ef93731ab28295dbedf36d44ab33d7a";
+ rev = "450acc0113b114352ce3b94870fe63fc461844bd";
src = fetchFromGitHub {
inherit rev;
owner = "ohmyzsh";
repo = "ohmyzsh";
- sha256 = "x+cGlYjTgs7Esb4NNSBcKhoDb1SuEQxONt/sSHeVj0M=";
+ sha256 = "SWUr+EJ4tfzj0bVstSexMOdN3fv37PuRUmbB1C7YRlI=";
};
installPhase = ''
diff --git a/pkgs/tools/audio/beets/plugins/extrafiles.nix b/pkgs/tools/audio/beets/plugins/extrafiles.nix
index 9118765cc1be..0d3ccc0d7a71 100644
--- a/pkgs/tools/audio/beets/plugins/extrafiles.nix
+++ b/pkgs/tools/audio/beets/plugins/extrafiles.nix
@@ -14,6 +14,7 @@ pythonPackages.buildPythonApplication rec {
postPatch = ''
sed -i -e '/install_requires/,/\]/{/beets/d}' setup.py
sed -i -e '/namespace_packages/d' setup.py
+ sed -i -e 's/mediafile~=0.6.0/mediafile>=0.6.0/' setup.py
'';
nativeBuildInputs = [ beets ];
diff --git a/pkgs/tools/backup/mylvmbackup/default.nix b/pkgs/tools/backup/mylvmbackup/default.nix
index ba25c56c28fe..6c87fca05672 100644
--- a/pkgs/tools/backup/mylvmbackup/default.nix
+++ b/pkgs/tools/backup/mylvmbackup/default.nix
@@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
version = "0.16";
src = fetchurl {
- url = "${meta.homepage}/${pname}-${version}.tar.gz";
+ url = "https://www.lenzg.net/mylvmbackup/${pname}-${version}.tar.gz";
sha256 = "sha256-vb7M3EPIrxIz6jUwm241fzaEz2czqdCObrFgSOSgJRU=";
};
diff --git a/pkgs/tools/misc/diffoscope/default.nix b/pkgs/tools/misc/diffoscope/default.nix
index 09f27a0c22cb..bf5d4601475a 100644
--- a/pkgs/tools/misc/diffoscope/default.nix
+++ b/pkgs/tools/misc/diffoscope/default.nix
@@ -9,11 +9,11 @@
# Note: when upgrading this package, please run the list-missing-tools.sh script as described below!
python3Packages.buildPythonApplication rec {
pname = "diffoscope";
- version = "182";
+ version = "183";
src = fetchurl {
url = "https://diffoscope.org/archive/diffoscope-${version}.tar.bz2";
- sha256 = "sha256-atWyVMewm+I/SDdE9+z1JYLLVOFDsgps2BL9WgZLlVA=";
+ sha256 = "sha256-XFFrRmCpE2UvZRCELfPaotLklyjLiCDWkyFWkISOHZM=";
};
outputs = [ "out" "man" ];
diff --git a/pkgs/tools/misc/etcher/default.nix b/pkgs/tools/misc/etcher/default.nix
index 6834179cfe9a..1e5fefaf6451 100644
--- a/pkgs/tools/misc/etcher/default.nix
+++ b/pkgs/tools/misc/etcher/default.nix
@@ -10,7 +10,7 @@
let
sha256 = {
- "x86_64-linux" = "sha256-FRZTUOlOK1bIbrHdR9yQv45zMhby3tWbMPpaPPq3L9s=";
+ "x86_64-linux" = "sha256-Tasynkzyy8UIalQn6qhIuPWDflf4pL76D2czgEijrPw=";
"i686-linux" = "0z6y45sz086njpywg7f0jn6n02qynb1qbi889g2kcgwbfjvmcpm1";
}."${stdenv.system}";
@@ -25,7 +25,7 @@ in
stdenv.mkDerivation rec {
pname = "etcher";
- version = "1.5.121";
+ version = "1.5.122";
src = fetchurl {
url = "https://github.com/balena-io/etcher/releases/download/v${version}/balena-etcher-electron_${version}_${arch}.deb";
diff --git a/pkgs/tools/networking/ipv6calc/default.nix b/pkgs/tools/networking/ipv6calc/default.nix
index 158a979fb40c..bb0d7e698f21 100644
--- a/pkgs/tools/networking/ipv6calc/default.nix
+++ b/pkgs/tools/networking/ipv6calc/default.nix
@@ -1,20 +1,33 @@
-{ lib, stdenv, fetchurl, getopt, ip2location-c, openssl, perl
-, libmaxminddb ? null, geolite-legacy ? null }:
+{ lib
+, stdenv
+, fetchFromGitHub
+, getopt
+, ip2location-c
+, openssl
+, perl
+, libmaxminddb ? null
+, geolite-legacy ? null
+}:
stdenv.mkDerivation rec {
pname = "ipv6calc";
- version = "2.2.0";
+ version = "3.2.0";
- src = fetchurl {
- urls = [
- "https://www.deepspace6.net/ftp/pub/ds6/sources/ipv6calc/${pname}-${version}.tar.gz"
- "ftp://ftp.deepspace6.net/pub/ds6/sources/ipv6calc/${pname}-${version}.tar.gz"
- "ftp://ftp.bieringer.de/pub/linux/IPv6/ipv6calc/${pname}-${version}.tar.gz"
- ];
- sha256 = "18acy0sy3n6jcjjwpxskysinw06czyayx1q4rqc7zc3ic4pkad8r";
+ src = fetchFromGitHub {
+ owner = "pbiering";
+ repo = pname;
+ rev = version;
+ sha256 = "1iis7qw803k9z52j30hn9sv8c3b0xyr9v7kb4fvcyiry1iaxcgfk";
};
- buildInputs = [ libmaxminddb geolite-legacy getopt ip2location-c openssl perl ];
+ buildInputs = [
+ libmaxminddb
+ geolite-legacy
+ getopt
+ ip2location-c
+ openssl
+ perl
+ ];
postPatch = ''
patchShebangs *.sh */*.sh
@@ -30,9 +43,13 @@ stdenv.mkDerivation rec {
"--disable-bundled-md5"
"--disable-dynamic-load"
"--enable-shared"
- ] ++ lib.optional (libmaxminddb != null) "--enable-mmdb"
- ++ lib.optional (geolite-legacy != null) "--with-geoip-db=${geolite-legacy}/share/GeoIP"
- ++ lib.optional (ip2location-c != null) "--enable-ip2location";
+ ] ++ lib.optional (libmaxminddb != null) [
+ "--enable-mmdb"
+ ] ++ lib.optional (geolite-legacy != null) [
+ "--with-geoip-db=${geolite-legacy}/share/GeoIP"
+ ] ++ lib.optional (ip2location-c != null) [
+ "--enable-ip2location"
+ ];
enableParallelBuilding = true;
@@ -47,7 +64,8 @@ stdenv.mkDerivation rec {
Now only one utiltity is needed to do a lot.
'';
homepage = "http://www.deepspace6.net/projects/ipv6calc.html";
- license = licenses.gpl2;
+ license = licenses.gpl2Only;
+ maintainers = with maintainers; [ ];
platforms = platforms.linux;
};
}
diff --git a/pkgs/tools/networking/spoof-mac/default.nix b/pkgs/tools/networking/spoof-mac/default.nix
new file mode 100644
index 000000000000..fdd282fa8b5f
--- /dev/null
+++ b/pkgs/tools/networking/spoof-mac/default.nix
@@ -0,0 +1,26 @@
+{ lib, buildPythonPackage, fetchFromGitHub, docopt }:
+
+buildPythonPackage rec {
+ pname = "spoof-mac";
+ version = "unstable-2018-01-27";
+
+ src = fetchFromGitHub {
+ owner = "feross";
+ repo = "SpoofMAC";
+ rev = "2cfc796150ef48009e9b765fe733e37d82c901e0";
+ sha256 = "sha256-Qiu0URjUyx8QDVQQUFGxPax0J80e2m4+bPJeqFoKxX8=";
+ };
+
+ propagatedBuildInputs = [ docopt ];
+
+ # No tests
+ doCheck = false;
+
+ meta = with lib; {
+ description = "Change your MAC address for debugging purposes";
+ homepage = "https://github.com/feross/SpoofMAC";
+ license = licenses.mit;
+ maintainers = with maintainers; [ siraben ];
+ platforms = platforms.unix;
+ };
+}
diff --git a/pkgs/tools/security/age/default.nix b/pkgs/tools/security/age/default.nix
index cff4630dd5db..fd59f9534fe7 100644
--- a/pkgs/tools/security/age/default.nix
+++ b/pkgs/tools/security/age/default.nix
@@ -1,4 +1,4 @@
-{ lib, buildGoModule, fetchFromGitHub }:
+{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
buildGoModule rec {
pname = "age";
@@ -13,9 +13,15 @@ buildGoModule rec {
};
ldflags = [
- "-X main.Version=${version}"
+ "-s" "-w" "-X main.Version=${version}"
];
+ nativeBuildInputs = [ installShellFiles ];
+
+ preInstall = ''
+ installManPage doc/*.1
+ '';
+
doInstallCheck = true;
installCheckPhase = ''
if [[ "$("$out/bin/${pname}" --version)" == "${version}" ]]; then
diff --git a/pkgs/tools/system/foreman/Gemfile.lock b/pkgs/tools/system/foreman/Gemfile.lock
index a2a7824f7aa8..1bafc658cbc0 100644
--- a/pkgs/tools/system/foreman/Gemfile.lock
+++ b/pkgs/tools/system/foreman/Gemfile.lock
@@ -1,15 +1,13 @@
GEM
remote: https://rubygems.org/
specs:
- foreman (0.78.0)
- thor (~> 0.19.1)
- thor (0.19.1)
+ foreman (0.87.2)
PLATFORMS
- ruby
+ x86_64-linux
DEPENDENCIES
foreman
BUNDLED WITH
- 2.1.4
+ 2.2.20
diff --git a/pkgs/tools/system/foreman/gemset.nix b/pkgs/tools/system/foreman/gemset.nix
index f747a2b0634a..d5b053daf4c0 100644
--- a/pkgs/tools/system/foreman/gemset.nix
+++ b/pkgs/tools/system/foreman/gemset.nix
@@ -1,18 +1,12 @@
{
- thor = {
- version = "0.19.1";
- source = {
- type = "gem";
- remotes = ["https://rubygems.org"];
- sha256 = "08p5gx18yrbnwc6xc0mxvsfaxzgy2y9i78xq7ds0qmdm67q39y4z";
- };
- };
foreman = {
- version = "0.78.0";
+ groups = ["default"];
+ platforms = [];
source = {
- type = "gem";
remotes = ["https://rubygems.org"];
- sha256 = "1caz8mi7gq1hs4l1flcyyw1iw1bdvdbhppsvy12akr01k3s17xaq";
+ sha256 = "0szgxvnzwkzrfbq5dkwa98mig78aqglfy6irdsvq1gq045pbq9r7";
+ type = "gem";
};
+ version = "0.87.2";
};
}
diff --git a/pkgs/tools/system/gdu/default.nix b/pkgs/tools/system/gdu/default.nix
index 9db56026e07e..630cc66da0ef 100644
--- a/pkgs/tools/system/gdu/default.nix
+++ b/pkgs/tools/system/gdu/default.nix
@@ -7,16 +7,16 @@
buildGoModule rec {
pname = "gdu";
- version = "5.6.2";
+ version = "5.7.0";
src = fetchFromGitHub {
owner = "dundee";
repo = pname;
rev = "v${version}";
- sha256 = "sha256-9Qdl+5BvzYbBw90+9V5bKBrikxlxMt7UxMQ54XwgbTk=";
+ sha256 = "sha256-zotCn8J6zQtHd/YDT87l6Vh4Xh51tOJENBCdxZ5rqWU=";
};
- vendorSha256 = "sha256-TxtYsM1qtpvI5IbkM3vicCgJ0+EqelFJ8Vc6+Ff5wd8=";
+ vendorSha256 = "sha256-TBWhF2YmlJPNFr3sKSFhuzoBD0Hp1tnYAMJDUwO/QFM=";
nativeBuildInputs = [ installShellFiles ];
diff --git a/pkgs/tools/system/rocm-smi/default.nix b/pkgs/tools/system/rocm-smi/default.nix
index de9afdae2940..bbee315e9c70 100644
--- a/pkgs/tools/system/rocm-smi/default.nix
+++ b/pkgs/tools/system/rocm-smi/default.nix
@@ -1,17 +1,17 @@
-{ lib, stdenv, fetchFromGitHub, cmake, python3 }:
+{ lib, stdenv, fetchFromGitHub, cmake, wrapPython }:
stdenv.mkDerivation rec {
pname = "rocm-smi";
- version = "4.1.0";
+ version = "4.3.1";
src = fetchFromGitHub {
owner = "RadeonOpenCompute";
repo = "rocm_smi_lib";
rev = "rocm-${version}";
- hash = "sha256-LEaC1XhmyoVWrpL05MhgN02LVT2rLKdnw9g2QdfM/uE=";
+ hash = "sha256-Ckno73Otkc9rHEUkSgNoOui+6ZHGUF+B9iAoe0NQH0c=";
};
- nativeBuildInputs = [ cmake python3.pkgs.wrapPython ];
+ nativeBuildInputs = [ cmake wrapPython ];
postPatch = ''
# Upstream ROCm is installed in an /opt directory. For this reason,
@@ -46,7 +46,7 @@ stdenv.mkDerivation rec {
description = "System management interface for AMD GPUs supported by ROCm";
homepage = "https://github.com/RadeonOpenCompute/ROC-smi";
license = with licenses; [ mit ];
- maintainers = with maintainers; [ ];
+ maintainers = with maintainers; [ lovesegfault ];
platforms = [ "x86_64-linux" ];
};
}
diff --git a/pkgs/tools/text/difftastic/default.nix b/pkgs/tools/text/difftastic/default.nix
index 3a32f855c0c5..bfe430957484 100644
--- a/pkgs/tools/text/difftastic/default.nix
+++ b/pkgs/tools/text/difftastic/default.nix
@@ -2,22 +2,22 @@
rustPlatform.buildRustPackage rec {
pname = "difftastic";
- version = "0.6";
+ version = "0.8";
src = fetchFromGitHub {
owner = "wilfred";
repo = pname;
rev = version;
- sha256 = "WFvxdRCbTBW1RGn2SvAo2iXn82OO/Z06cZQkIu4eiew=";
+ sha256 = "0103py4v4v7xqv85yiczhd9w9h1aa54svhhdibvbl6x4b35y2mk5";
};
- cargoSha256 = "2hRUfIxNVs4uSrEESas3wvvVsZHVocP8aiO7K0NZ+mY=";
+ cargoSha256 = "1k0d7yadicfzfc2m1aqs4c4a2k3srb54fpwarc3kwn26v3vfjai1";
meta = with lib; {
description = "A syntax-aware diff";
homepage = "https://github.com/Wilfred/difftastic";
+ changelog = "https://github.com/Wilfred/difftastic/raw/${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ ethancedwards8 ];
- platforms = platforms.unix;
};
}
diff --git a/pkgs/tools/text/hck/default.nix b/pkgs/tools/text/hck/default.nix
index 46c786693a8e..271e4d9b7168 100644
--- a/pkgs/tools/text/hck/default.nix
+++ b/pkgs/tools/text/hck/default.nix
@@ -10,16 +10,16 @@
rustPlatform.buildRustPackage rec {
pname = "hck";
- version = "0.6.2";
+ version = "0.6.3";
src = fetchFromGitHub {
owner = "sstadick";
repo = pname;
rev = "v${version}";
- sha256 = "1xjp56asfn37kr0fsrjkil20nf372q70cijqb5ll2sq2zwjnyyzn";
+ sha256 = "02yvpgvzdprysg0spa0abn7d3vjj5spzc3528rwbpl4cw2yx8j6w";
};
- cargoSha256 = "12n33gwxcym5z5n762wmzcck4zmmn42kh04nwpdb3az4apghdp3z";
+ cargoSha256 = "0n6wywb1xyaxkbr0fs39992dfv55wzvp05i1vk9mxgnsim9s7aw8";
nativeBuildInputs = [ cmake ];
diff --git a/pkgs/tools/virtualization/linode-cli/default.nix b/pkgs/tools/virtualization/linode-cli/default.nix
index c815f6fcf6d5..e5f98df3f010 100644
--- a/pkgs/tools/virtualization/linode-cli/default.nix
+++ b/pkgs/tools/virtualization/linode-cli/default.nix
@@ -22,13 +22,13 @@ in
buildPythonApplication rec {
pname = "linode-cli";
- version = "5.8.1";
+ version = "5.8.2";
src = fetchFromGitHub {
owner = "linode";
repo = pname;
rev = version;
- sha256 = "19lfnwgm09gxk0mcikwl7v4hw2ai2k9lkdjlalz8fsswf81my7h6";
+ sha256 = "sha256-JlWbhElgRDeFMjtPPy7Sk69SMlpQYfnZ3AjAfl2SRyI=";
};
# remove need for git history
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index a14f3af33ba4..4623a99e7b7f 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -5978,6 +5978,10 @@ with pkgs;
html-proofer = callPackage ../tools/misc/html-proofer { };
+ htmlq = callPackage ../development/tools/htmlq {
+ inherit (pkgs.darwin.apple_sdk.frameworks) Security;
+ };
+
htpdate = callPackage ../tools/networking/htpdate { };
http-prompt = callPackage ../tools/networking/http-prompt { };
@@ -9081,6 +9085,8 @@ with pkgs;
spicy = callPackage ../development/tools/spicy { };
+ spoof-mac = python3Packages.callPackage ../tools/networking/spoof-mac { };
+
ssh-askpass-fullscreen = callPackage ../tools/networking/ssh-askpass-fullscreen { };
sshguard = callPackage ../tools/security/sshguard {};
@@ -12168,11 +12174,14 @@ with pkgs;
inherit (llvmPackages_rocm) clang;
};
+ hip = callPackage ../development/compilers/hip {
+ inherit (llvmPackages_rocm) clang clang-unwrapped compiler-rt lld llvm;
+ };
+
rocm-cmake = callPackage ../development/tools/build-managers/rocm-cmake { };
rocm-comgr = callPackage ../development/libraries/rocm-comgr {
inherit (llvmPackages_rocm) clang lld llvm;
- device-libs = rocm-device-libs;
};
rocm-device-libs = callPackage ../development/libraries/rocm-device-libs {
@@ -12189,11 +12198,12 @@ with pkgs;
inherit (llvmPackages_rocm) clang-unwrapped llvm;
};
- # Python >= 3.8 still gives a bunch of warnings.
- rocm-smi = python37.pkgs.callPackage ../tools/system/rocm-smi { };
+ rocm-smi = python3Packages.callPackage ../tools/system/rocm-smi { };
rocm-thunk = callPackage ../development/libraries/rocm-thunk { };
+ rocminfo = callPackage ../development/tools/rocminfo { };
+
rtags = callPackage ../development/tools/rtags {
inherit (darwin) apple_sdk;
};
@@ -14178,7 +14188,7 @@ with pkgs;
luaformatter = callPackage ../development/tools/luaformatter
(lib.optionalAttrs stdenv.isDarwin {
- stdenv = overrideCC stdenv llvmPackages_latest.clang;
+ stdenv = overrideCC stdenv llvmPackages_9.clang;
});
malt = callPackage ../development/tools/profiling/malt {};
@@ -17424,6 +17434,8 @@ with pkgs;
libspiro = callPackage ../development/libraries/libspiro {};
+ libspng = callPackage ../development/libraries/libspng { };
+
libssh = callPackage ../development/libraries/libssh { };
libssh2 = callPackage ../development/libraries/libssh2 { };
@@ -21701,6 +21713,9 @@ with pkgs;
linuxPackages_5_10_hardened = recurseIntoAttrs (hardenedLinuxPackagesFor pkgs.linux_5_10 { });
linux_5_10_hardened = linuxPackages_5_10_hardened.kernel;
+ linuxPackages_5_13_hardened = recurseIntoAttrs (hardenedLinuxPackagesFor pkgs.linux_5_13 { });
+ linux_5_13_hardened = linuxPackages_5_13_hardened.kernel;
+
# Hardkernel (Odroid) kernels.
linuxPackages_hardkernel_4_14 = recurseIntoAttrs (linuxPackagesFor pkgs.linux_hardkernel_4_14);
linuxPackages_hardkernel_latest = linuxPackages_hardkernel_4_14;
@@ -24259,6 +24274,8 @@ with pkgs;
evilpixie = libsForQt5.callPackage ../applications/graphics/evilpixie { };
+ exaile = callPackage ../applications/audio/exaile { };
+
exercism = callPackage ../applications/misc/exercism { };
expenses = callPackage ../applications/misc/expenses { };
diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix
index 02f67b652ad6..c37f5d8fe587 100644
--- a/pkgs/top-level/perl-packages.nix
+++ b/pkgs/top-level/perl-packages.nix
@@ -1221,6 +1221,26 @@ let
};
};
+ BarcodeZBar = buildPerlPackage {
+ pname = "Barcode-ZBar";
+ version = "0.04pre";
+ # The meta::cpan version of this module has been unmaintained from 2009
+ # This uses an updated version from the ZBar repo that works with the current ZBar library
+ src = "${pkgs.zbar.src}/perl";
+ postPatch = ''
+ substituteInPlace Makefile.PL --replace "-lzbar" "-L${pkgs.zbar.lib}/lib -lzbar"
+ rm t/Processor.t
+ '';
+ buildInputs =[ ExtUtilsMakeMaker ];
+ propagatedBuildInputs = [ pkgs.zbar PerlMagick ];
+ perlPreHook = lib.optionalString stdenv.isDarwin "export LD=$CC";
+ meta = {
+ homepage = "https://github.com/mchehab/zbar/tree/master/perl";
+ description = "Perl interface to the ZBar Barcode Reader";
+ license = with lib.licenses; [ gpl2Plus ];
+ };
+ };
+
BC = buildPerlPackage {
pname = "B-C";
version = "1.57";
@@ -5009,6 +5029,21 @@ let
buildInputs = [ TestFailWarnings ];
};
+ DataSectionSimple = buildPerlPackage {
+ pname = "Data-Section-Simple";
+ version = "0.07";
+ src = fetchurl {
+ url = "mirror://cpan/authors/id/M/MI/MIYAGAWA/Data-Section-Simple-0.07.tar.gz";
+ sha256 = "0b3035ffdb909aa1f7ded6b608fa9d894421c82c097d51e7171170d67579a9cb";
+ };
+ buildInputs = [ TestRequires ];
+ meta = {
+ homepage = "https://github.com/miyagawa/Data-Section-Simple";
+ description = "Read data from __DATA__";
+ license = with lib.licenses; [ artistic1 gpl1Plus ];
+ };
+ };
+
DataSerializer = buildPerlModule {
pname = "Data-Serializer";
version = "0.65";
@@ -21742,6 +21777,21 @@ let
};
};
+ TestSnapshot = buildPerlPackage {
+ pname = "Test-Snapshot";
+ version = "0.06";
+ src = fetchurl {
+ url = "mirror://cpan/authors/id/E/ET/ETJ/Test-Snapshot-0.06.tar.gz";
+ sha256 = "f4dd7a9a55baa2247540ae34210cd05a04f9d1061befec97a1c90eda95bfae45";
+ };
+ buildInputs = [ CaptureTiny ];
+ propagatedBuildInputs = [ TextDiff ];
+ meta = {
+ description = "Test against data stored in automatically-named file";
+ license = lib.licenses.artistic2;
+ };
+ };
+
TestSpec = buildPerlPackage {
pname = "Test-Spec";
version = "0.54";