diff --git a/nixos/modules/services/networking/znc/default.nix b/nixos/modules/services/networking/znc/default.nix
index 938d217c94d7..aa79ed27dcef 100644
--- a/nixos/modules/services/networking/znc/default.nix
+++ b/nixos/modules/services/networking/znc/default.nix
@@ -299,9 +299,8 @@ in
# Ensure essential files exist.
if [[ ! -f ${cfg.dataDir}/configs/znc.conf ]]; then
echo "No znc.conf file found in ${cfg.dataDir}. Creating one now."
- cp --no-clobber ${cfg.configFile} ${cfg.dataDir}/configs/znc.conf
+ cp --no-preserve=ownership --no-clobber ${cfg.configFile} ${cfg.dataDir}/configs/znc.conf
chmod u+rw ${cfg.dataDir}/configs/znc.conf
- chown ${cfg.user} ${cfg.dataDir}/configs/znc.conf
fi
if [[ ! -f ${cfg.dataDir}/znc.pem ]]; then
diff --git a/nixos/modules/services/web-apps/keycloak.nix b/nixos/modules/services/web-apps/keycloak.nix
index e2e6df41dfaa..f0b9e60116dd 100644
--- a/nixos/modules/services/web-apps/keycloak.nix
+++ b/nixos/modules/services/web-apps/keycloak.nix
@@ -54,6 +54,7 @@ in
frontendUrl = lib.mkOption {
type = lib.types.str;
+ apply = x: if lib.hasSuffix "/" x then x else x + "/";
example = "keycloak.example.com/auth";
description = ''
The public URL used as base for all frontend requests. Should
@@ -84,113 +85,128 @@ in
'';
};
- certificatePrivateKeyBundle = lib.mkOption {
+ sslCertificate = lib.mkOption {
type = lib.types.nullOr lib.types.path;
default = null;
example = "/run/keys/ssl_cert";
description = ''
- The path to a PEM formatted bundle of the private key and
- certificate to use for TLS connections.
+ The path to a PEM formatted certificate to use for TLS/SSL
+ connections.
This should be a string, not a Nix path, since Nix paths are
copied into the world-readable Nix store.
'';
};
- databaseType = lib.mkOption {
- type = lib.types.enum [ "mysql" "postgresql" ];
- default = "postgresql";
- example = "mysql";
- description = ''
- The type of database Keycloak should connect to.
- '';
- };
-
- databaseHost = lib.mkOption {
- type = lib.types.str;
- default = "localhost";
- description = ''
- Hostname of the database to connect to.
- '';
- };
-
- databasePort =
- let
- dbPorts = {
- postgresql = 5432;
- mysql = 3306;
- };
- in
- lib.mkOption {
- type = lib.types.port;
- default = dbPorts.${cfg.databaseType};
- description = ''
- Port of the database to connect to.
- '';
- };
-
- databaseUseSSL = lib.mkOption {
- type = lib.types.bool;
- default = cfg.databaseHost != "localhost";
- description = ''
- Whether the database connection should be secured by SSL /
- TLS.
- '';
- };
-
- databaseCaCert = lib.mkOption {
+ sslCertificateKey = lib.mkOption {
type = lib.types.nullOr lib.types.path;
default = null;
+ example = "/run/keys/ssl_key";
description = ''
- The SSL / TLS CA certificate that verifies the identity of the
- database server.
-
- Required when PostgreSQL is used and SSL is turned on.
-
- For MySQL, if left at null, the default
- Java keystore is used, which should suffice if the server
- certificate is issued by an official CA.
- '';
- };
-
- databaseCreateLocally = lib.mkOption {
- type = lib.types.bool;
- default = true;
- description = ''
- Whether a database should be automatically created on the
- local host. Set this to false if you plan on provisioning a
- local database yourself. This has no effect if
- services.keycloak.databaseHost is customized.
- '';
- };
-
- databaseUsername = lib.mkOption {
- type = lib.types.str;
- default = "keycloak";
- description = ''
- Username to use when connecting to an external or manually
- provisioned database; has no effect when a local database is
- automatically provisioned.
-
- To use this with a local database, set to
- false and create the database and user
- manually. The database should be called
- keycloak.
- '';
- };
-
- databasePasswordFile = lib.mkOption {
- type = lib.types.path;
- example = "/run/keys/db_password";
- description = ''
- File containing the database password.
+ The path to a PEM formatted private key to use for TLS/SSL
+ connections.
This should be a string, not a Nix path, since Nix paths are
copied into the world-readable Nix store.
'';
};
+ database = {
+ type = lib.mkOption {
+ type = lib.types.enum [ "mysql" "postgresql" ];
+ default = "postgresql";
+ example = "mysql";
+ description = ''
+ The type of database Keycloak should connect to.
+ '';
+ };
+
+ host = lib.mkOption {
+ type = lib.types.str;
+ default = "localhost";
+ description = ''
+ Hostname of the database to connect to.
+ '';
+ };
+
+ port =
+ let
+ dbPorts = {
+ postgresql = 5432;
+ mysql = 3306;
+ };
+ in
+ lib.mkOption {
+ type = lib.types.port;
+ default = dbPorts.${cfg.database.type};
+ description = ''
+ Port of the database to connect to.
+ '';
+ };
+
+ useSSL = lib.mkOption {
+ type = lib.types.bool;
+ default = cfg.database.host != "localhost";
+ description = ''
+ Whether the database connection should be secured by SSL /
+ TLS.
+ '';
+ };
+
+ caCert = lib.mkOption {
+ type = lib.types.nullOr lib.types.path;
+ default = null;
+ description = ''
+ The SSL / TLS CA certificate that verifies the identity of the
+ database server.
+
+ Required when PostgreSQL is used and SSL is turned on.
+
+ For MySQL, if left at null, the default
+ Java keystore is used, which should suffice if the server
+ certificate is issued by an official CA.
+ '';
+ };
+
+ createLocally = lib.mkOption {
+ type = lib.types.bool;
+ default = true;
+ description = ''
+ Whether a database should be automatically created on the
+ local host. Set this to false if you plan on provisioning a
+ local database yourself. This has no effect if
+ services.keycloak.database.host is customized.
+ '';
+ };
+
+ username = lib.mkOption {
+ type = lib.types.str;
+ default = "keycloak";
+ description = ''
+ Username to use when connecting to an external or manually
+ provisioned database; has no effect when a local database is
+ automatically provisioned.
+
+ To use this with a local database, set to
+ false and create the database and user
+ manually. The database should be called
+ keycloak.
+ '';
+ };
+
+ passwordFile = lib.mkOption {
+ type = lib.types.path;
+ example = "/run/keys/db_password";
+ description = ''
+ File containing the database password.
+
+ This should be a string, not a Nix path, since Nix paths are
+ copied into the world-readable Nix store.
+ '';
+ };
+ };
+
package = lib.mkOption {
type = lib.types.package;
default = pkgs.keycloak;
@@ -261,12 +277,12 @@ in
config =
let
# We only want to create a database if we're actually going to connect to it.
- databaseActuallyCreateLocally = cfg.databaseCreateLocally && cfg.databaseHost == "localhost";
- createLocalPostgreSQL = databaseActuallyCreateLocally && cfg.databaseType == "postgresql";
- createLocalMySQL = databaseActuallyCreateLocally && cfg.databaseType == "mysql";
+ databaseActuallyCreateLocally = cfg.database.createLocally && cfg.database.host == "localhost";
+ createLocalPostgreSQL = databaseActuallyCreateLocally && cfg.database.type == "postgresql";
+ createLocalMySQL = databaseActuallyCreateLocally && cfg.database.type == "mysql";
mySqlCaKeystore = pkgs.runCommandNoCC "mysql-ca-keystore" {} ''
- ${pkgs.jre}/bin/keytool -importcert -trustcacerts -alias MySQLCACert -file ${cfg.databaseCaCert} -keystore $out -storepass notsosecretpassword -noprompt
+ ${pkgs.jre}/bin/keytool -importcert -trustcacerts -alias MySQLCACert -file ${cfg.database.caCert} -keystore $out -storepass notsosecretpassword -noprompt
'';
keycloakConfig' = builtins.foldl' lib.recursiveUpdate {
@@ -282,11 +298,11 @@ in
};
"subsystem=datasources"."data-source=KeycloakDS" = {
max-pool-size = "20";
- user-name = if databaseActuallyCreateLocally then "keycloak" else cfg.databaseUsername;
+ user-name = if databaseActuallyCreateLocally then "keycloak" else cfg.database.username;
password = "@db-password@";
};
} [
- (lib.optionalAttrs (cfg.databaseType == "postgresql") {
+ (lib.optionalAttrs (cfg.database.type == "postgresql") {
"subsystem=datasources" = {
"jdbc-driver=postgresql" = {
driver-module-name = "org.postgresql";
@@ -294,16 +310,16 @@ in
driver-xa-datasource-class-name = "org.postgresql.xa.PGXADataSource";
};
"data-source=KeycloakDS" = {
- connection-url = "jdbc:postgresql://${cfg.databaseHost}:${builtins.toString cfg.databasePort}/keycloak";
+ connection-url = "jdbc:postgresql://${cfg.database.host}:${builtins.toString cfg.database.port}/keycloak";
driver-name = "postgresql";
- "connection-properties=ssl".value = lib.boolToString cfg.databaseUseSSL;
- } // (lib.optionalAttrs (cfg.databaseCaCert != null) {
- "connection-properties=sslrootcert".value = cfg.databaseCaCert;
+ "connection-properties=ssl".value = lib.boolToString cfg.database.useSSL;
+ } // (lib.optionalAttrs (cfg.database.caCert != null) {
+ "connection-properties=sslrootcert".value = cfg.database.caCert;
"connection-properties=sslmode".value = "verify-ca";
});
};
})
- (lib.optionalAttrs (cfg.databaseType == "mysql") {
+ (lib.optionalAttrs (cfg.database.type == "mysql") {
"subsystem=datasources" = {
"jdbc-driver=mysql" = {
driver-module-name = "com.mysql";
@@ -311,22 +327,22 @@ in
driver-class-name = "com.mysql.jdbc.Driver";
};
"data-source=KeycloakDS" = {
- connection-url = "jdbc:mysql://${cfg.databaseHost}:${builtins.toString cfg.databasePort}/keycloak";
+ connection-url = "jdbc:mysql://${cfg.database.host}:${builtins.toString cfg.database.port}/keycloak";
driver-name = "mysql";
- "connection-properties=useSSL".value = lib.boolToString cfg.databaseUseSSL;
- "connection-properties=requireSSL".value = lib.boolToString cfg.databaseUseSSL;
- "connection-properties=verifyServerCertificate".value = lib.boolToString cfg.databaseUseSSL;
+ "connection-properties=useSSL".value = lib.boolToString cfg.database.useSSL;
+ "connection-properties=requireSSL".value = lib.boolToString cfg.database.useSSL;
+ "connection-properties=verifyServerCertificate".value = lib.boolToString cfg.database.useSSL;
"connection-properties=characterEncoding".value = "UTF-8";
valid-connection-checker-class-name = "org.jboss.jca.adapters.jdbc.extensions.mysql.MySQLValidConnectionChecker";
validate-on-match = true;
exception-sorter-class-name = "org.jboss.jca.adapters.jdbc.extensions.mysql.MySQLExceptionSorter";
- } // (lib.optionalAttrs (cfg.databaseCaCert != null) {
+ } // (lib.optionalAttrs (cfg.database.caCert != null) {
"connection-properties=trustCertificateKeyStoreUrl".value = "file:${mySqlCaKeystore}";
"connection-properties=trustCertificateKeyStorePassword".value = "notsosecretpassword";
});
};
})
- (lib.optionalAttrs (cfg.certificatePrivateKeyBundle != null) {
+ (lib.optionalAttrs (cfg.sslCertificate != null && cfg.sslCertificateKey != null) {
"socket-binding-group=standard-sockets"."socket-binding=https".port = cfg.httpsPort;
"core-service=management"."security-realm=UndertowRealm"."server-identity=ssl" = {
keystore-path = "/run/keycloak/ssl/certificate_private_key_bundle.p12";
@@ -537,7 +553,9 @@ in
jbossCliScript = pkgs.writeText "jboss-cli-script" (mkJbossScript keycloakConfig');
- keycloakConfig = pkgs.runCommandNoCC "keycloak-config" {} ''
+ keycloakConfig = pkgs.runCommandNoCC "keycloak-config" {
+ nativeBuildInputs = [ cfg.package ];
+ } ''
export JBOSS_BASE_DIR="$(pwd -P)";
export JBOSS_MODULEPATH="${cfg.package}/modules";
export JBOSS_LOG_DIR="$JBOSS_BASE_DIR/log";
@@ -547,11 +565,11 @@ in
mkdir -p {deployments,ssl}
- "${cfg.package}/bin/standalone.sh"&
+ standalone.sh&
attempt=1
max_attempts=30
- while ! ${cfg.package}/bin/jboss-cli.sh --connect ':read-attribute(name=server-state)'; do
+ while ! jboss-cli.sh --connect ':read-attribute(name=server-state)'; do
if [[ "$attempt" == "$max_attempts" ]]; then
echo "ERROR: Could not connect to Keycloak after $attempt attempts! Failing.." >&2
exit 1
@@ -561,7 +579,7 @@ in
(( attempt++ ))
done
- ${cfg.package}/bin/jboss-cli.sh --connect --file=${jbossCliScript} --echo-command
+ jboss-cli.sh --connect --file=${jbossCliScript} --echo-command
cp configuration/standalone.xml $out
'';
@@ -570,8 +588,8 @@ in
assertions = [
{
- assertion = (cfg.databaseUseSSL && cfg.databaseType == "postgresql") -> (cfg.databaseCaCert != null);
- message = "A CA certificate must be specified (in 'services.keycloak.databaseCaCert') when PostgreSQL is used with SSL";
+ assertion = (cfg.database.useSSL && cfg.database.type == "postgresql") -> (cfg.database.caCert != null);
+ message = "A CA certificate must be specified (in 'services.keycloak.database.caCert') when PostgreSQL is used with SSL";
}
];
@@ -581,6 +599,7 @@ in
after = [ "postgresql.service" ];
before = [ "keycloak.service" ];
bindsTo = [ "postgresql.service" ];
+ path = [ config.services.postgresql.package ];
serviceConfig = {
Type = "oneshot";
RemainAfterExit = true;
@@ -588,13 +607,15 @@ in
Group = "postgres";
};
script = ''
- set -eu
+ set -o errexit -o pipefail -o nounset -o errtrace
+ shopt -s inherit_errexit
- PSQL=${config.services.postgresql.package}/bin/psql
+ create_role="$(mktemp)"
+ trap 'rm -f "$create_role"' ERR EXIT
- db_password="$(<'${cfg.databasePasswordFile}')"
- $PSQL -tAc "SELECT 1 FROM pg_roles WHERE rolname='keycloak'" | grep -q 1 || $PSQL -tAc "CREATE ROLE keycloak WITH LOGIN PASSWORD '$db_password' CREATEDB"
- $PSQL -tAc "SELECT 1 FROM pg_database WHERE datname = 'keycloak'" | grep -q 1 || $PSQL -tAc 'CREATE DATABASE "keycloak" OWNER "keycloak"'
+ echo "CREATE ROLE keycloak WITH LOGIN PASSWORD '$(<'${cfg.database.passwordFile}')' CREATEDB" > "$create_role"
+ psql -tAc "SELECT 1 FROM pg_roles WHERE rolname='keycloak'" | grep -q 1 || psql -tA --file="$create_role"
+ psql -tAc "SELECT 1 FROM pg_database WHERE datname = 'keycloak'" | grep -q 1 || psql -tAc 'CREATE DATABASE "keycloak" OWNER "keycloak"'
'';
};
@@ -602,6 +623,7 @@ in
after = [ "mysql.service" ];
before = [ "keycloak.service" ];
bindsTo = [ "mysql.service" ];
+ path = [ config.services.mysql.package ];
serviceConfig = {
Type = "oneshot";
RemainAfterExit = true;
@@ -609,13 +631,14 @@ in
Group = config.services.mysql.group;
};
script = ''
- set -eu
+ set -o errexit -o pipefail -o nounset -o errtrace
+ shopt -s inherit_errexit
- db_password="$(<'${cfg.databasePasswordFile}')"
+ db_password="$(<'${cfg.database.passwordFile}')"
( echo "CREATE USER IF NOT EXISTS 'keycloak'@'localhost' IDENTIFIED BY '$db_password';"
echo "CREATE DATABASE keycloak CHARACTER SET utf8 COLLATE utf8_unicode_ci;"
echo "GRANT ALL PRIVILEGES ON keycloak.* TO 'keycloak'@'localhost';"
- ) | ${config.services.mysql.package}/bin/mysql -N
+ ) | mysql -N
'';
};
@@ -634,6 +657,8 @@ in
bindsTo = databaseServices;
wantedBy = [ "multi-user.target" ];
path = with pkgs; [
+ cfg.package
+ openssl
replace-secret
];
environment = {
@@ -644,14 +669,21 @@ in
serviceConfig = {
ExecStartPre = let
startPreFullPrivileges = ''
- set -eu
+ set -o errexit -o pipefail -o nounset -o errtrace
+ shopt -s inherit_errexit
- install -T -m 0400 -o keycloak -g keycloak '${cfg.databasePasswordFile}' /run/keycloak/secrets/db_password
- '' + lib.optionalString (cfg.certificatePrivateKeyBundle != null) ''
- install -T -m 0400 -o keycloak -g keycloak '${cfg.certificatePrivateKeyBundle}' /run/keycloak/secrets/ssl_cert_pk_bundle
+ umask u=rwx,g=,o=
+
+ install -T -m 0400 -o keycloak -g keycloak '${cfg.database.passwordFile}' /run/keycloak/secrets/db_password
+ '' + lib.optionalString (cfg.sslCertificate != null && cfg.sslCertificateKey != null) ''
+ install -T -m 0400 -o keycloak -g keycloak '${cfg.sslCertificate}' /run/keycloak/secrets/ssl_cert
+ install -T -m 0400 -o keycloak -g keycloak '${cfg.sslCertificateKey}' /run/keycloak/secrets/ssl_key
'';
startPre = ''
- set -eu
+ set -o errexit -o pipefail -o nounset -o errtrace
+ shopt -s inherit_errexit
+
+ umask u=rwx,g=,o=
install -m 0600 ${cfg.package}/standalone/configuration/*.properties /run/keycloak/configuration
install -T -m 0600 ${keycloakConfig} /run/keycloak/configuration/standalone.xml
@@ -659,13 +691,16 @@ in
replace-secret '@db-password@' '/run/keycloak/secrets/db_password' /run/keycloak/configuration/standalone.xml
export JAVA_OPTS=-Djboss.server.config.user.dir=/run/keycloak/configuration
- ${cfg.package}/bin/add-user-keycloak.sh -u admin -p '${cfg.initialAdminPassword}'
- '' + lib.optionalString (cfg.certificatePrivateKeyBundle != null) ''
+ add-user-keycloak.sh -u admin -p '${cfg.initialAdminPassword}'
+ '' + lib.optionalString (cfg.sslCertificate != null && cfg.sslCertificateKey != null) ''
pushd /run/keycloak/ssl/
- cat /run/keycloak/secrets/ssl_cert_pk_bundle <(echo) /etc/ssl/certs/ca-certificates.crt > allcerts.pem
- ${pkgs.openssl}/bin/openssl pkcs12 -export -in /run/keycloak/secrets/ssl_cert_pk_bundle -chain \
- -name "${cfg.frontendUrl}" -out certificate_private_key_bundle.p12 \
- -CAfile allcerts.pem -passout pass:notsosecretpassword
+ cat /run/keycloak/secrets/ssl_cert <(echo) \
+ /run/keycloak/secrets/ssl_key <(echo) \
+ /etc/ssl/certs/ca-certificates.crt \
+ > allcerts.pem
+ openssl pkcs12 -export -in /run/keycloak/secrets/ssl_cert -inkey /run/keycloak/secrets/ssl_key -chain \
+ -name "${cfg.frontendUrl}" -out certificate_private_key_bundle.p12 \
+ -CAfile allcerts.pem -passout pass:notsosecretpassword
popd
'';
in [
@@ -697,4 +732,5 @@ in
};
meta.doc = ./keycloak.xml;
+ meta.maintainers = [ lib.maintainers.talyz ];
}
diff --git a/nixos/modules/services/web-apps/keycloak.xml b/nixos/modules/services/web-apps/keycloak.xml
index ca5e223eee46..7ba656c20f16 100644
--- a/nixos/modules/services/web-apps/keycloak.xml
+++ b/nixos/modules/services/web-apps/keycloak.xml
@@ -41,31 +41,31 @@
PostgreSQL or
MySQL. Which one is used can be
configured in . The selected
+ linkend="opt-services.keycloak.database.type" />. The selected
database will automatically be enabled and a database and role
created unless is changed from
+ linkend="opt-services.keycloak.database.host" /> is changed from
its default of localhost or is set
+ linkend="opt-services.keycloak.database.createLocally" /> is set
to false.
External database access can also be configured by setting
- , , and as
+ , , and as
appropriate. Note that you need to manually create a database
called keycloak and allow the configured
database user full access to it.
-
+
must be set to the path to a file containing the password used
- to log in to the database. If
- and
+ to log in to the database. If
+ and
are kept at their defaults, the database role
keycloak with that password is provisioned
on the local database instance.
@@ -115,17 +115,17 @@
- For HTTPS support, a TLS certificate and private key is
- required. They should be PEM
- formatted and concatenated into a single file. The path
- to this file should be configured in
- .
+ formatted. Their paths should be set through and .
- The path should be provided as a string, not a Nix path,
+ The paths should be provided as a strings, not a Nix paths,
since Nix paths are copied into the world readable Nix store.
@@ -195,8 +195,9 @@ services.keycloak = {
initialAdminPassword = "e6Wcm0RrtegMEHl"; # change on first login
frontendUrl = "https://keycloak.example.com/auth";
forceBackendUrlToFrontendUrl = true;
- certificatePrivateKeyBundle = "/run/keys/ssl_cert";
- databasePasswordFile = "/run/keys/db_password";
+ sslCertificate = "/run/keys/ssl_cert";
+ sslCertificateKey = "/run/keys/ssl_key";
+ database.passwordFile = "/run/keys/db_password";
};
diff --git a/nixos/modules/services/web-apps/mastodon.nix b/nixos/modules/services/web-apps/mastodon.nix
index af46f4e1927f..5e24bd06ffdb 100644
--- a/nixos/modules/services/web-apps/mastodon.nix
+++ b/nixos/modules/services/web-apps/mastodon.nix
@@ -448,10 +448,10 @@ in {
join pg_namespace s on s.oid = c.relnamespace \
where s.nspname not in ('pg_catalog', 'pg_toast', 'information_schema') \
and s.nspname not like 'pg_temp%';" | sed -n 3p` -eq 0 ]; then
- SAFETY_ASSURED=1 rake db:schema:load
- rake db:seed
+ SAFETY_ASSURED=1 rails db:schema:load
+ rails db:seed
else
- rake db:migrate
+ rails db:migrate
fi
'';
path = [ cfg.package pkgs.postgresql ];
diff --git a/nixos/tests/keycloak.nix b/nixos/tests/keycloak.nix
index 136e83b3e021..fc321b8902f1 100644
--- a/nixos/tests/keycloak.nix
+++ b/nixos/tests/keycloak.nix
@@ -3,7 +3,8 @@
# client using their Keycloak login.
let
- frontendUrl = "http://keycloak/auth";
+ certs = import ./common/acme/server/snakeoil-certs.nix;
+ frontendUrl = "https://${certs.domain}/auth";
initialAdminPassword = "h4IhoJFnt2iQIR9";
keycloakTest = import ./make-test-python.nix (
@@ -17,12 +18,27 @@ let
nodes = {
keycloak = { ... }: {
virtualisation.memorySize = 1024;
+
+ security.pki.certificateFiles = [
+ certs.ca.cert
+ ];
+
+ networking.extraHosts = ''
+ 127.0.0.1 ${certs.domain}
+ '';
+
services.keycloak = {
enable = true;
- inherit frontendUrl databaseType initialAdminPassword;
- databaseUsername = "bogus";
- databasePasswordFile = pkgs.writeText "dbPassword" "wzf6vOCbPp6cqTH";
+ inherit frontendUrl initialAdminPassword;
+ sslCertificate = certs.${certs.domain}.cert;
+ sslCertificateKey = certs.${certs.domain}.key;
+ database = {
+ type = databaseType;
+ username = "bogus";
+ passwordFile = pkgs.writeText "dbPassword" "wzf6vOCbPp6cqTH";
+ };
};
+
environment.systemPackages = with pkgs; [
xmlstarlet
libtidy
diff --git a/pkgs/applications/audio/clementine/default.nix b/pkgs/applications/audio/clementine/default.nix
index 0b82bbd8d848..4184f0eea8cb 100644
--- a/pkgs/applications/audio/clementine/default.nix
+++ b/pkgs/applications/audio/clementine/default.nix
@@ -1,8 +1,49 @@
-{ lib, mkDerivation, fetchFromGitHub, fetchpatch, boost, cmake, chromaprint, gettext, gst_all_1, liblastfm
-, qtbase, qtx11extras, qttools
-, taglib, fftw, glew, qjson, sqlite, libgpod, libplist, usbmuxd, libmtp
-, libpulseaudio, gvfs, libcdio, libechonest, libspotify, pcre, projectm, protobuf
-, qca2, pkg-config, sparsehash, config, makeWrapper, gst_plugins }:
+{ lib
+, mkDerivation
+, fetchFromGitHub
+, fetchpatch
+, boost
+, cmake
+, chromaprint
+, gettext
+, gst_all_1
+, liblastfm
+, qtbase
+, qtx11extras
+, qttools
+, taglib
+, fftw
+, glew
+, qjson
+, sqlite
+, libgpod
+, libplist
+, usbmuxd
+, libmtp
+, libpulseaudio
+, gvfs
+, libcdio
+, libechonest
+, libspotify
+, pcre
+, projectm
+, protobuf
+, qca2
+, pkg-config
+, sparsehash
+, config
+, makeWrapper
+, gst_plugins
+
+, util-linux
+, libunwind
+, libselinux
+, elfutils
+, libsepol
+, orc
+
+, alsaLib
+}:
let
withIpod = config.clementine.ipod or false;
@@ -22,9 +63,26 @@ let
patches = [
./clementine-spotify-blob.patch
+ (fetchpatch {
+ # "short-term" fix for execution on wayland (1.4.0rc1-131-g2179027a6)
+ # for https://github.com/clementine-player/Clementine/issues/6587
+ url = "https://github.com/clementine-player/Clementine/commit/2179027a6d97530c857e43be873baacd696ff332.patch";
+ sha256 = "0344bfcyvjim5ph8w4km6zkg96rj5g9ybp9x14qgyw2gkdksimn6";
+ })
];
- nativeBuildInputs = [ cmake pkg-config makeWrapper ];
+ nativeBuildInputs = [
+ cmake
+ pkg-config
+ makeWrapper
+
+ util-linux
+ libunwind
+ libselinux
+ elfutils
+ libsepol
+ orc
+ ];
buildInputs = [
boost
@@ -48,11 +106,13 @@ let
qttools
sqlite
taglib
+
+ alsaLib
]
- ++ lib.optionals (withIpod) [libgpod libplist usbmuxd]
- ++ lib.optionals (withMTP) [libmtp]
- ++ lib.optionals (withCD) [libcdio]
- ++ lib.optionals (withCloud) [sparsehash];
+ ++ lib.optionals (withIpod) [ libgpod libplist usbmuxd ]
+ ++ lib.optionals (withMTP) [ libmtp ]
+ ++ lib.optionals (withCD) [ libcdio ]
+ ++ lib.optionals (withCloud) [ sparsehash ];
postPatch = ''
sed -i src/CMakeLists.txt \
@@ -132,4 +192,5 @@ let
};
};
-in free
+in
+free
diff --git a/pkgs/applications/backup/pika-backup/default.nix b/pkgs/applications/backup/pika-backup/default.nix
index f64fbd15ae1b..63f197dd9c84 100644
--- a/pkgs/applications/backup/pika-backup/default.nix
+++ b/pkgs/applications/backup/pika-backup/default.nix
@@ -19,20 +19,20 @@
stdenv.mkDerivation rec {
pname = "pika-backup";
- version = "0.3.0";
+ version = "0.3.1";
src = fetchFromGitLab {
domain = "gitlab.gnome.org";
owner = "World";
repo = "pika-backup";
rev = "v${version}";
- sha256 = "sha256-k9kl6cSohWx+MB/9jyVcTgpv02gsVwAk5KDSNqQrmzI=";
+ sha256 = "0cr3axfp15nzwmsqyz6j781qhr2gsn9p69m0jfzy89pl83d6vcz0";
};
cargoDeps = rustPlatform.fetchCargoTarball {
inherit src;
name = "${pname}-${version}";
- sha256 = "0r6nbffik5j82bi82cmc00b17xv9m7xn3w3sarzwfxz0h43lal8a";
+ sha256 = "1z0cbrkhxyzwf7vjjsvdppb7zhflpkw4m5cy90a2315nbll3hpbp";
};
patches = [
diff --git a/pkgs/applications/networking/cluster/nomad/1.0.nix b/pkgs/applications/networking/cluster/nomad/1.0.nix
index f4551d1e823c..9e7341e55bf1 100644
--- a/pkgs/applications/networking/cluster/nomad/1.0.nix
+++ b/pkgs/applications/networking/cluster/nomad/1.0.nix
@@ -6,6 +6,6 @@
callPackage ./generic.nix {
inherit buildGoPackage nvidia_x11 nvidiaGpuSupport;
- version = "1.0.5";
- sha256 = "06l56fi4fhplvl8v0i88q18yh1hwwd12fngnrflb91janbyk6p4l";
+ version = "1.0.6";
+ sha256 = "1nzaw4014bndxv042dkxdj492b21r5v5f06vav2kr1azk4m9sf07";
}
diff --git a/pkgs/applications/networking/cluster/nomad/1.1.nix b/pkgs/applications/networking/cluster/nomad/1.1.nix
new file mode 100644
index 000000000000..9e2966856eb7
--- /dev/null
+++ b/pkgs/applications/networking/cluster/nomad/1.1.nix
@@ -0,0 +1,11 @@
+{ callPackage
+, buildGoPackage
+, nvidia_x11
+, nvidiaGpuSupport
+}:
+
+callPackage ./generic.nix {
+ inherit buildGoPackage nvidia_x11 nvidiaGpuSupport;
+ version = "1.1.0";
+ sha256 = "0sz6blyxyxi5iq170s9v4nndb1hpz603z5ps2cxkdkaafal39767";
+}
diff --git a/pkgs/applications/networking/nextcloud-client/default.nix b/pkgs/applications/networking/nextcloud-client/default.nix
index 4567f26224a3..0b837c55398a 100644
--- a/pkgs/applications/networking/nextcloud-client/default.nix
+++ b/pkgs/applications/networking/nextcloud-client/default.nix
@@ -20,13 +20,13 @@
mkDerivation rec {
pname = "nextcloud-client";
- version = "3.2.0";
+ version = "3.2.1";
src = fetchFromGitHub {
owner = "nextcloud";
repo = "desktop";
rev = "v${version}";
- sha256 = "1nklsa2lx9ayjp8rk1mycjysqqmnq47djig0wygzna5mycl3ji06";
+ sha256 = "sha256-I31w79GDZxSGlT6YPKSpq0aiyGnJiJBVdTyWI+DUoz4=";
};
patches = [
diff --git a/pkgs/development/python-modules/internetarchive/default.nix b/pkgs/development/python-modules/internetarchive/default.nix
index 0d1fb08e2a4e..20e7986188c5 100644
--- a/pkgs/development/python-modules/internetarchive/default.nix
+++ b/pkgs/development/python-modules/internetarchive/default.nix
@@ -19,11 +19,11 @@
buildPythonPackage rec {
pname = "internetarchive";
- version = "2.0.2";
+ version = "2.0.3";
src = fetchPypi {
inherit pname version;
- sha256 = "515e6646a2b917c15f2241670d21f14a014b9c67dc509aef4d4aca5a59cdda65";
+ sha256 = "2ce0ab89fea37e5b2311bc7d163955e84f73f6beeac3942e17e9d51ad7cc9ffa";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/tools/continuous-integration/gitlab-runner/default.nix b/pkgs/development/tools/continuous-integration/gitlab-runner/default.nix
index d03d59edb1fc..5e0b8845bd8b 100644
--- a/pkgs/development/tools/continuous-integration/gitlab-runner/default.nix
+++ b/pkgs/development/tools/continuous-integration/gitlab-runner/default.nix
@@ -1,16 +1,16 @@
{ lib, buildGoPackage, fetchFromGitLab, fetchurl }:
let
- version = "13.11.0";
+ version = "13.12.0";
# Gitlab runner embeds some docker images these are prebuilt for arm and x86_64
docker_x86_64 = fetchurl {
url = "https://gitlab-runner-downloads.s3.amazonaws.com/v${version}/helper-images/prebuilt-x86_64.tar.xz";
- sha256 = "1vmj7vxz1a4js9kqz7mm6xgnkmb37c1jbx2lwsq2qkrybkxfcw8k";
+ sha256 = "0m0r295520jy45wn8jw3jzhiixl4c6yrfx7gvgbd4c1v4y8ivrci";
};
docker_arm = fetchurl {
url = "https://gitlab-runner-downloads.s3.amazonaws.com/v${version}/helper-images/prebuilt-arm.tar.xz";
- sha256 = "1c1pywz7ylaysplvq1m15v7rf1sgdkh9scbqklzcm55fjk128lif";
+ sha256 = "0syfggplp19bbmhhpyc17h0f1dii9hc6n04q483l0xdk7sv39fwx";
};
in
buildGoPackage rec {
@@ -30,7 +30,7 @@ buildGoPackage rec {
owner = "gitlab-org";
repo = "gitlab-runner";
rev = "v${version}";
- sha256 = "07jqsxac50xwmhlv0nbnn098290nkpsmrxw872yh67n1s9gqfd27";
+ sha256 = "0jh5ghjyzr7srl3xjsklv9yskq8k88kmylpiigjir0mkbn43fgzq";
};
patches = [ ./fix-shell-path.patch ];
diff --git a/pkgs/development/tools/kind/default.nix b/pkgs/development/tools/kind/default.nix
index 47b23ae2342d..d0ce0c83c90b 100644
--- a/pkgs/development/tools/kind/default.nix
+++ b/pkgs/development/tools/kind/default.nix
@@ -4,16 +4,16 @@ with lib;
buildGoModule rec {
pname = "kind";
- version = "0.10.0";
+ version = "0.11.0";
src = fetchFromGitHub {
rev = "v${version}";
owner = "kubernetes-sigs";
repo = "kind";
- sha256 = "1pp2x4bfqsd15siahyv9xkdyswsipmp9n86iwavrd0xhliqxlsa7";
+ sha256 = "020s1fr92lv9yiy5kbnrfb8n0lpslriwyh5z31aym3x44qpc6jaj";
};
- vendorSha256 = "0c0j4s8kfzk2b3hy0d2g5bp1zr60l6vnwnpynsg6ksv8spwnpl5m";
+ vendorSha256 = "08cjvhk587f3aar4drn0hq9q1zlsnl4p7by4j38jzb4r8ix5s98y";
doCheck = false;
diff --git a/pkgs/development/tools/kubie/default.nix b/pkgs/development/tools/kubie/default.nix
index 0d8f82e48be3..6fc254153d16 100644
--- a/pkgs/development/tools/kubie/default.nix
+++ b/pkgs/development/tools/kubie/default.nix
@@ -2,16 +2,16 @@
rustPlatform.buildRustPackage rec {
pname = "kubie";
- version = "0.13.4";
+ version = "0.14.1";
src = fetchFromGitHub {
rev = "v${version}";
owner = "sbstp";
repo = "kubie";
- sha256 = "sha256-ZD63Xtnw7qzTrzFxzzZ37N177/PnRaMEzBbhz7h/zCY=";
+ sha256 = "0mhm2j3i2ql7dz5vx0mwab8h8zr05ar5lfzdacgnrc293g1c01aq";
};
- cargoSha256 = "sha256-WSjIN7YVX61V5nEei2iZfasIcBLjXxlZP6ZUj9nDnpo=";
+ cargoSha256 = "1rfqk7dmcz5zfq9fm9kvxf5718m0v0yfjm5a8718d40zzzvam7sy";
nativeBuildInputs = [ installShellFiles ];
diff --git a/pkgs/development/tools/misc/hydra/default.nix b/pkgs/development/tools/misc/hydra/default.nix
index 142322eb59d4..a124b4a5c6e2 100644
--- a/pkgs/development/tools/misc/hydra/default.nix
+++ b/pkgs/development/tools/misc/hydra/default.nix
@@ -1,4 +1,4 @@
-{ fetchFromGitHub, nixStable, callPackage, nixFlakes, nixosTests }:
+{ fetchFromGitHub, nixStable, callPackage, nixUnstable, nixosTests }:
{
hydra-unstable = callPackage ./common.nix {
@@ -9,7 +9,7 @@
rev = "886e6f85e45a1f757e9b77d2a9e4539fbde29468";
sha256 = "t7Qb57Xjc0Ou+VDGC1N5u9AmeODW6MVOwKSrYRJq5f0=";
};
- nix = nixFlakes;
+ nix = nixUnstable;
tests = {
basic = nixosTests.hydra.hydra-unstable;
diff --git a/pkgs/servers/mastodon/default.nix b/pkgs/servers/mastodon/default.nix
index 1abedead87d8..e863451bb5e0 100644
--- a/pkgs/servers/mastodon/default.nix
+++ b/pkgs/servers/mastodon/default.nix
@@ -1,5 +1,5 @@
{ lib, stdenv, nodejs-slim, mkYarnPackage, fetchFromGitHub, bundlerEnv
-, yarn, callPackage, imagemagick, ffmpeg, file, ruby_2_7, writeShellScript
+, yarn, callPackage, imagemagick, ffmpeg, file, ruby_3_0, writeShellScript
# Allow building a fork or custom version of Mastodon:
, pname ? "mastodon"
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
mastodon-gems = bundlerEnv {
name = "${pname}-gems-${version}";
inherit version;
- ruby = ruby_2_7;
+ ruby = ruby_3_0;
gemdir = src;
gemset = dependenciesDir + "/gemset.nix";
# This fix (copied from https://github.com/NixOS/nixpkgs/pull/76765) replaces the gem
diff --git a/pkgs/servers/mastodon/gemset.nix b/pkgs/servers/mastodon/gemset.nix
index 07aeb0bc9c4b..20ae2a8f5c80 100644
--- a/pkgs/servers/mastodon/gemset.nix
+++ b/pkgs/servers/mastodon/gemset.nix
@@ -1,25 +1,36 @@
{
actioncable = {
- dependencies = ["actionpack" "nio4r" "websocket-driver"];
+ dependencies = ["actionpack" "activesupport" "nio4r" "websocket-driver"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0yvrnxvdzx3yvgkxwzffhkr8m4w19h97lyyj030g1q4xjii5a1kr";
+ sha256 = "15r6ab17iwhhq92by4ah9z4wwvjbr07qn16x8pn2ypgqwvfy74h7";
type = "gem";
};
- version = "5.2.4.4";
+ version = "6.1.3.2";
+ };
+ actionmailbox = {
+ dependencies = ["actionpack" "activejob" "activerecord" "activestorage" "activesupport" "mail"];
+ groups = ["default"];
+ platforms = [];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "1q1r3x9fbq5wlgn4xhqw48la09q7f97zna7ld5fglk3jpmh973x5";
+ type = "gem";
+ };
+ version = "6.1.3.2";
};
actionmailer = {
- dependencies = ["actionpack" "actionview" "activejob" "mail" "rails-dom-testing"];
+ dependencies = ["actionpack" "actionview" "activejob" "activesupport" "mail" "rails-dom-testing"];
groups = ["default" "development"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1nhslq95il78h7qv7w7h7i9fx3znc5hxmqbnws0sl9w7am7zkl8x";
+ sha256 = "1nqdaykzgib8fsldkxdkw0w44jzz4grvb028crzg0qpwvv03g2wp";
type = "gem";
};
- version = "5.2.4.4";
+ version = "6.1.3.2";
};
actionpack = {
dependencies = ["actionview" "activesupport" "rack" "rack-test" "rails-dom-testing" "rails-html-sanitizer"];
@@ -27,10 +38,21 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0d8gxymshjhva5fyv33iy2hzp4jm3i44asdbma9pv9wzpl5fwhn0";
+ sha256 = "1wdgv5llgbl4nayx5j78lfvhhjssrzfmypb45mjy37mgm8z5l5m5";
type = "gem";
};
- version = "5.2.4.4";
+ version = "6.1.3.2";
+ };
+ actiontext = {
+ dependencies = ["actionpack" "activerecord" "activestorage" "activesupport" "nokogiri"];
+ groups = ["default"];
+ platforms = [];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "1zfrkcnp9wy1dm4b6iqf29858dp04a62asfmldainqmv4a7931q7";
+ type = "gem";
+ };
+ version = "6.1.3.2";
};
actionview = {
dependencies = ["activesupport" "builder" "erubi" "rails-dom-testing" "rails-html-sanitizer"];
@@ -38,10 +60,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0k8dgkplqj76i3q1f8897m8svj2xggd1knhy3bcwfl4nh7998kw6";
+ sha256 = "1r6db2g3fsrca1hp9kbyvjx9psipsxw0g306qharkcblxl8h1ysn";
type = "gem";
};
- version = "5.2.4.4";
+ version = "6.1.3.2";
};
active_model_serializers = {
dependencies = ["actionpack" "activemodel" "case_transform" "jsonapi-renderer"];
@@ -49,10 +71,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1p8rhy2bw86d0l3d0l97zj179yqzl338v7r5pvl8mdagcrp2fw9i";
+ sha256 = "1jjkmrx82rn0d2bhpi6kz2h1s4w7rpk5pj2vcssyc1a2ys12vyhj";
type = "gem";
};
- version = "0.10.10";
+ version = "0.10.12";
};
active_record_query_trace = {
groups = ["development"];
@@ -70,10 +92,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0w32z0s111cr95mwpdb3fnlzaf1vdz0ag3l2gah9m95kfa2pb2kv";
+ sha256 = "0p80rbahcxhxlkxgf4bh580hbifn9q4gr5g9fy8fd0z5g6gr9xxq";
type = "gem";
};
- version = "5.2.4.4";
+ version = "6.1.3.2";
};
activemodel = {
dependencies = ["activesupport"];
@@ -81,43 +103,43 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1g79l7v0ddpxcj5r2s9kii6h4r4nbpy5bksbqi5lxvivrb3pkz1m";
+ sha256 = "1gpd3hh4ryyr84drj6m0b5sy6929nyf50bfgksw1hpc594542nal";
type = "gem";
};
- version = "5.2.4.4";
+ version = "6.1.3.2";
};
activerecord = {
- dependencies = ["activemodel" "activesupport" "arel"];
+ dependencies = ["activemodel" "activesupport"];
groups = ["default" "development"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "05b9l85a31cq6g7v4b4ifrj798q49rlidcvvfasmb3bk412wlp03";
+ sha256 = "0fg58qma2zgrz0gr61p61qcz8c3h88fd5lbdrkpkm96aq5shwh68";
type = "gem";
};
- version = "5.2.4.4";
+ version = "6.1.3.2";
};
activestorage = {
- dependencies = ["actionpack" "activerecord" "marcel"];
+ dependencies = ["actionpack" "activejob" "activerecord" "activesupport" "marcel" "mini_mime"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1yzig9p9qb2wx91y0d0vs7bz23hli6djwwf4cawxh6b93bycbcci";
+ sha256 = "0sbpkk3r8qi47bd0ilznq4gpfyfwm2bwvxqb5z0wc75h3zj1jhqg";
type = "gem";
};
- version = "5.2.4.4";
+ version = "6.1.3.2";
};
activesupport = {
- dependencies = ["concurrent-ruby" "i18n" "minitest" "tzinfo"];
+ dependencies = ["concurrent-ruby" "i18n" "minitest" "tzinfo" "zeitwerk"];
groups = ["default" "development" "pam_authentication" "production" "test"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0dpnk20s754fz6jfz9sp3ri49hn46ksw4hf6ycnlw7s3hsdxqgcd";
+ sha256 = "1csxddyhl6k773ycxjvmyshyr4g9jb1icbs3pnm7crnavqs4h1yr";
type = "gem";
};
- version = "5.2.4.4";
+ version = "6.1.3.2";
};
addressable = {
dependencies = ["public_suffix"];
@@ -162,25 +184,15 @@
};
version = "3.1.1";
};
- arel = {
- groups = ["default" "development"];
- platforms = [];
- source = {
- remotes = ["https://rubygems.org"];
- sha256 = "1jk7wlmkr61f6g36w9s2sn46nmdg6wn2jfssrhbhirv5x9n95nk0";
- type = "gem";
- };
- version = "9.0.0";
- };
ast = {
groups = ["default" "development" "test"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1l3468czzjmxl93ap40hp7z94yxp4nbag0bxqs789bm30md90m2a";
+ sha256 = "04nc8x27hlzlrr5c2gn7mar4vdr0apw5xg22wp6m8dx3wqr04a0y";
type = "gem";
};
- version = "2.4.1";
+ version = "2.4.2";
};
attr_encrypted = {
dependencies = ["encryptor"];
@@ -193,17 +205,6 @@
};
version = "3.1.0";
};
- av = {
- dependencies = ["cocaine"];
- groups = ["default"];
- platforms = [];
- source = {
- remotes = ["https://rubygems.org"];
- sha256 = "1swakpybf6g0nzfdn6q4s9c97ysc3i4ffk84dw8v2321fpvc8gqq";
- type = "gem";
- };
- version = "0.9.0";
- };
awrence = {
groups = ["default"];
platforms = [];
@@ -219,20 +220,20 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0r0pn66yqrdkrfdin7qdim0yj2x75miyg4wp6mijckhzhrjb7cv5";
+ sha256 = "0jfki5ikfr8ln5cdgv4iv1643kax0bjpp29jh78chzy713274jh3";
type = "gem";
};
- version = "1.1.0";
+ version = "1.1.1";
};
aws-partitions = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1pqgnc4pcwdvvxlclmyjwcaf0vmlciy0l9y1yab5f1f0fjn969fs";
+ sha256 = "0dsmmsk913b50rs4ihk8pafc1gp1i1k1fnbf63ki0j5xdknpli55";
type = "gem";
};
- version = "1.397.0";
+ version = "1.452.0";
};
aws-sdk-core = {
dependencies = ["aws-eventstream" "aws-partitions" "aws-sigv4" "jmespath"];
@@ -240,10 +241,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0m8w8qqrmx91ngw9b8dr1zx2h2g071kjd1973w9fk2486gs0n44f";
+ sha256 = "09asbdcg96l165kq4hrks0hsk4hwr16h1qx22az4m7ld0ylvz3jc";
type = "gem";
};
- version = "3.109.3";
+ version = "3.114.0";
};
aws-sdk-kms = {
dependencies = ["aws-sdk-core" "aws-sigv4"];
@@ -251,10 +252,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0ly1m631qm2ciif7sysbzrgczjvz95ga3g6w6vrzvfdv31jjnl9a";
+ sha256 = "01pd0f4srsa65zl4zq4014p9j5yrr2yy9h9ab17g3w9d0qqm2vsh";
type = "gem";
};
- version = "1.39.0";
+ version = "1.43.0";
};
aws-sdk-s3 = {
dependencies = ["aws-sdk-core" "aws-sdk-kms" "aws-sigv4"];
@@ -262,10 +263,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1ak4kz8x7l0qfadx4p09iky1gbf6ka3wa66rnvc7rn3sf1k80zjm";
+ sha256 = "0803g2c1hhdk6fbliww12in4czsxj47fip9dpl35hbqsnrpjc4y9";
type = "gem";
};
- version = "1.85.0";
+ version = "1.94.1";
};
aws-sigv4 = {
dependencies = ["aws-eventstream"];
@@ -273,10 +274,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1ll9382c1x2hp750cilh01h1cycgyhdr4cmmgx23k94hyyb8chv5";
+ sha256 = "1d9zhmi3mpfzkkpg7yw7s9r1dwk157kh9875j3c7gh6cy95lmmaw";
type = "gem";
};
- version = "1.2.2";
+ version = "1.2.3";
};
bcrypt = {
groups = ["default" "pam_authentication"];
@@ -315,10 +316,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "05syqlks7463zsy1jdfbbdravdhj9hpj5pv2m74blqpv8bq4vv5g";
+ sha256 = "078n2dkpgsivcf0pr50981w95nfc2bsrp3wpf9wnxz1qsp8jbb9s";
type = "gem";
};
- version = "0.8.0";
+ version = "1.0.0";
};
blurhash = {
dependencies = ["ffi"];
@@ -326,10 +327,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "04halkacf3pd030s3bqfjd59vbj47lchrhp9zvwsn4c6sdrfjdd4";
+ sha256 = "04a4na1z36z4gplcyz3avi313c3jq6whqi5sx2clj512la3ccd2x";
type = "gem";
};
- version = "0.1.4";
+ version = "0.1.5";
};
bootsnap = {
dependencies = ["msgpack"];
@@ -337,20 +338,20 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1qx1f729bgh391agsqb4ngzn22wdn4cc6mkp0cipf0d5hsg9cpaq";
+ sha256 = "0jkh8qrsz3nhz759jwlfa20xkizn63yxym2db0c8ayjxzldyc77z";
type = "gem";
};
- version = "1.5.1";
+ version = "1.6.0";
};
brakeman = {
groups = ["development"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1pbr3drisii8j8wdvxhvd7kmpqwcgzayl99kzkjnpl1p27vpvvvv";
+ sha256 = "0cdlfdaj3p9s1mck8zax35g524szs1danjrah8da3z7c8xvpq6sc";
type = "gem";
};
- version = "4.10.0";
+ version = "5.0.1";
};
browser = {
groups = ["default"];
@@ -362,6 +363,17 @@
};
version = "4.2.0";
};
+ brpoplpush-redis_script = {
+ dependencies = ["concurrent-ruby" "redis"];
+ groups = ["default"];
+ platforms = [];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "0rjm184dhlw35ymi8ifpl5155vwl6wfzdc5qjvzv634gc365yz9j";
+ type = "gem";
+ };
+ version = "0.1.2";
+ };
builder = {
groups = ["default" "development" "pam_authentication" "production" "test"];
platforms = [];
@@ -378,10 +390,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "18ifwnvn13755qkfigapyj5bflpby3phxzbb7x5336d0kzv5k7d9";
+ sha256 = "0r8d3vh1xjfx46qlv75228rkshzgqxpmf491vxzpicpqi1xad5ni";
type = "gem";
};
- version = "6.1.0";
+ version = "6.1.4";
};
bundler-audit = {
dependencies = ["thor"];
@@ -389,10 +401,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "04l9rs56rlvihbr2ybkrigjajgd3swa98lxvmdl8iylj1g5m7n0j";
+ sha256 = "00l8rs7cna0j3yh4s9sza0r88x7kjc7j4gp9yl378422k7i0r73v";
type = "gem";
};
- version = "0.7.0.1";
+ version = "0.8.0";
};
byebug = {
groups = ["default" "development" "test"];
@@ -410,10 +422,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "13k2k29y8idcacr0r4ycixpb7mvv2v88dilwzdmaw9r08wc8y9bl";
+ sha256 = "1jw01z2rawipnkprxy4c2sbdna3k9pxl3gzq3y92l3i1xy5x7ax3";
type = "gem";
};
- version = "3.14.1";
+ version = "3.16.0";
};
capistrano-bundler = {
dependencies = ["capistrano"];
@@ -465,10 +477,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0ji9kyb01dpnjbvpyb0c481cpnisd6wx6div6rywi9fihk66627w";
+ sha256 = "1viqcpsngy9fqjd68932m43ad6xj656d1x33nx9565q57chgi29k";
type = "gem";
};
- version = "3.33.0";
+ version = "3.35.3";
};
case_transform = {
dependencies = ["activesupport"];
@@ -507,20 +519,20 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0dczmxh09s0s8d2l111zdb49s0c6wa1s09dslh8prqms6r4n544f";
+ sha256 = "1l8r8wdghw09clkgyk91d80lvav7ngl8j7gmrgb7m2bh8nyia54m";
type = "gem";
};
- version = "5.1.0";
+ version = "5.2.0";
};
chunky_png = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0av5km25hxz21zkbnvac1g8hjskwhr1gvb3rhlcnjvhqq8cvz2lj";
+ sha256 = "1znw5x86hmm9vfhidwdsijz8m38pqgmv98l9ryilvky0aldv7mc9";
type = "gem";
};
- version = "1.3.12";
+ version = "1.4.0";
};
cld3 = {
dependencies = ["ffi"];
@@ -528,10 +540,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "04hwr44m7x7vv55lc4vk5zcd6zq98c2asvzl3dh2adg1fhpk29nr";
+ sha256 = "1y04ig8p9rparhff5dh3781pwf1xlirgq8p0fzvggjjpx761bvra";
type = "gem";
};
- version = "3.3.0";
+ version = "3.4.2";
};
climate_control = {
groups = ["test"];
@@ -543,17 +555,6 @@
};
version = "0.2.0";
};
- cocaine = {
- dependencies = ["climate_control"];
- groups = ["default"];
- platforms = [];
- source = {
- remotes = ["https://rubygems.org"];
- sha256 = "01kk5xd7lspbkdvn6nyj0y51zhvia3z6r4nalbdcqw5fbsywwi7d";
- type = "gem";
- };
- version = "0.5.8";
- };
coderay = {
groups = ["default" "development" "test"];
platforms = [];
@@ -579,20 +580,20 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1vnxrbhi7cq3p4y2v9iwd10v1c7l15is4var14hwnb2jip4fyjzz";
+ sha256 = "0mr23wq0szj52xnj0zcn1k0c7j4v79wlwbijkpfcscqww3l6jlg3";
type = "gem";
};
- version = "1.1.7";
+ version = "1.1.8";
};
connection_pool = {
groups = ["default" "test"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1qikl4av1z8kqnk5ba18136dpqzw8wjawc2w9b4zb5psdd5z8nwf";
+ sha256 = "0ffdxhgirgc86qb42yvmfj6v1v0x4lvi0pxn9zhghkff44wzra0k";
type = "gem";
};
- version = "2.2.3";
+ version = "2.2.5";
};
cose = {
dependencies = ["cbor" "openssl-signature_algorithm"];
@@ -606,14 +607,15 @@
version = "1.0.0";
};
crack = {
+ dependencies = ["rexml"];
groups = ["default" "test"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1awi8jy4jn0f7vxpdvz3xvn1zzjbjh33n28lfkijh77dla5zb7lc";
+ sha256 = "1cr1kfpw3vkhysvkk3wg7c54m75kd68mbm9rs5azdjdq57xid13r";
type = "gem";
};
- version = "0.4.4";
+ version = "0.4.5";
};
crass = {
groups = ["default" "development" "pam_authentication" "production" "test"];
@@ -641,10 +643,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0vxr0xa1mfbkfcrn71n7c4f2dj7la5hvphn904vh20j3x4j5lrx0";
+ sha256 = "1lswmjwxf1clzaimikhiwd9s1n07qkyz7a9xwng64j4fxsajykqp";
type = "gem";
};
- version = "0.0.3";
+ version = "1.0.0";
};
devise = {
dependencies = ["bcrypt" "orm_adapter" "railties" "responders" "warden"];
@@ -652,10 +654,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0syqkh0q9mcdgj68m2cf1innpxb8fv6xsayk1kgsdmq539rkv3ic";
+ sha256 = "0ag0skzk3h7bhmf1n2zwa7cg6kx5k5inxmq0kf5qpm7917ffm0mz";
type = "gem";
};
- version = "4.7.3";
+ version = "4.8.0";
};
devise-two-factor = {
dependencies = ["activesupport" "attr_encrypted" "devise" "railties" "rotp"];
@@ -663,10 +665,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0gzk7phrryxlq4k3jrcxm8faifmbqrbfxq7jx089ncsixwd69bn4";
+ sha256 = "148pfr6g8dwikdq3994gsid2a3n6p5h4z1a1dzh1898shr5f9znc";
type = "gem";
};
- version = "3.1.0";
+ version = "4.0.0";
};
devise_pam_authenticatable2 = {
dependencies = ["devise" "rpam2"];
@@ -705,10 +707,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0qrwiyagxzl8zlx3dafb0ay8l14ib7imb2rsmx70i5cp420v8gif";
+ sha256 = "0wi81lynfdvbwhrc4ws746g3j8761vian4m9gxamdj9rjwj9jhls";
type = "gem";
};
- version = "1.3.2";
+ version = "1.3.4";
};
domain_name = {
dependencies = ["unf"];
@@ -727,10 +729,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "105yr9gy60z0pyh85pbc6gazanm6jmb5c6agd7p1mzrc21hmrzrk";
+ sha256 = "1l2ma30gkmrny47zn4i8kmak8iykra1npx1cmpax8y43c88kkv7l";
type = "gem";
};
- version = "5.4.0";
+ version = "5.5.1";
};
dotenv = {
groups = ["default"];
@@ -779,10 +781,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1qkabj3hd0f9yf6l42xls78vzsbihziqw3zqrmjj91l0w1d1abkk";
+ sha256 = "02liwd003fify7cpg1z8szwfnncn33h5kkvgnbpi0bpqznb64l87";
type = "gem";
};
- version = "7.9.0";
+ version = "7.10.1";
};
elasticsearch-api = {
dependencies = ["multi_json"];
@@ -790,10 +792,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0nsk9p816x3rck1xklmzbbhfp18w0i32qb0qaxvrx8jlgwvd3y7z";
+ sha256 = "1ya398pcmin9l44m5z5wsh3zqz47dhrj5h2lxkpr3pa0vcacd9ig";
type = "gem";
};
- version = "7.9.0";
+ version = "7.10.1";
};
elasticsearch-dsl = {
groups = ["default"];
@@ -811,10 +813,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1ic87n4772an00nq6z2znd8wmyhpgdcmjbvrzfqj51xi4q627x0a";
+ sha256 = "0q45s9d4id0l35924vxmysb9s2raiixcsf7il6j5bl2z8dgfwfhs";
type = "gem";
};
- version = "7.9.0";
+ version = "7.10.1";
};
encryptor = {
groups = ["default"];
@@ -831,10 +833,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1nwzxnqhr31fn7nbqmffcysvxjdfl3bhxi0bld5qqhcnfc1xd13x";
+ sha256 = "09l8lz3j00m898li0yfsnb6ihc63rdvhw3k5xczna5zrjk104f2l";
type = "gem";
};
- version = "1.9.0";
+ version = "1.10.0";
};
et-orbi = {
dependencies = ["tzinfo"];
@@ -862,10 +864,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1pdrl55xf76pbc5kjzp7diawxxvgbk2cm38532in6df823431n6z";
+ sha256 = "1a1zv94hcss44n1b04w0rg0swg8npigrj3nva9h0y2f1iflj124k";
type = "gem";
};
- version = "2.21.1";
+ version = "2.22.0";
};
faker = {
dependencies = ["i18n"];
@@ -873,18 +875,28 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "06sh8492k03p9lsfzv5zifzn51ilb4734vrvwl30vzmzg1apzml6";
+ sha256 = "0z3d4y6xg8prn3zdjw1qpqrnziq1d3zigqil4sxjj0pbr46gc1d6";
type = "gem";
};
- version = "2.14.0";
+ version = "2.17.0";
};
faraday = {
- dependencies = ["multipart-post"];
+ dependencies = ["faraday-net_http" "multipart-post" "ruby2_keywords"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0wwks9652xwgjm7yszcq5xr960pjypc07ivwzbjzpvy9zh2fw6iq";
+ sha256 = "1hmssd8pj4n7yq4kz834ylkla8ryyvhaap6q9nzymp93m1xq21kz";
+ type = "gem";
+ };
+ version = "1.3.0";
+ };
+ faraday-net_http = {
+ groups = ["default"];
+ platforms = [];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "1fi8sda5hc54v1w3mqfl5yz09nhx35kglyx72w7b8xxvdr0cwi9j";
type = "gem";
};
version = "1.0.1";
@@ -904,20 +916,20 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "11ny2pj0j6pljszrf1w3iqdv2pcl2iwwghjbgcjlizy424zbh0hb";
+ sha256 = "0lgr0vs9kg5622qaf2l3f37b238dncs037fisiygvkbq8sg11i68";
type = "gem";
};
- version = "2.2.0";
+ version = "2.2.3";
};
ffi = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0j8pzj8raxbir5w5k6s7a042sb5k02pg0f8s4na1r5lan901j00p";
+ sha256 = "0nq1fb3vbfylccwba64zblxy96qznxbys5900wd7gm9bpplmf432";
type = "gem";
};
- version = "1.10.0";
+ version = "1.15.0";
};
ffi-compiler = {
dependencies = ["ffi" "rake"];
@@ -990,10 +1002,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "090sx0ck194am6v3hwfld2ijvldd0mjwplqz8r36p34l4p8z9d79";
+ sha256 = "1028vn7j3kc5qqwswrf3has3qm4j9xva70xmzb3n29i89f0afwmj";
type = "gem";
};
- version = "2.5.0";
+ version = "2.5.1";
};
globalid = {
dependencies = ["activesupport"];
@@ -1059,19 +1071,6 @@
};
version = "4.1.0";
};
- health_check = {
- dependencies = ["rails"];
- groups = ["default"];
- platforms = [];
- source = {
- fetchSubmodules = false;
- rev = "0b799ead604f900ed50685e9b2d469cd2befba5b";
- sha256 = "0yz4axwkynsnng8xswrg2ysxlkjwfw0v4padvqwm4xal7nri172d";
- type = "git";
- url = "https://github.com/ianheggie/health_check";
- };
- version = "4.0.0.pre";
- };
highline = {
groups = ["default" "development" "test"];
platforms = [];
@@ -1182,10 +1181,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "153sx77p16vawrs4qpkv7qlzf9v5fks4g7xqcj1dwk40i6g7rfzk";
+ sha256 = "0g2fnag935zn2ggm5cn6k4s4xvv53v2givj1j90szmvavlpya96a";
type = "gem";
};
- version = "1.8.5";
+ version = "1.8.10";
};
i18n-tasks = {
dependencies = ["activesupport" "ast" "erubi" "highline" "i18n" "parser" "rails-i18n" "rainbow" "terminal-table"];
@@ -1193,10 +1192,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "04am9452ihm8fcq2si44bba0msz0014wfg50ksxs5dpb2l065abg";
+ sha256 = "0lxccbhv91mbj7h3iy9xp1nhj5hrk4dyrglp2xv2qp71h129h37h";
type = "gem";
};
- version = "0.9.31";
+ version = "0.9.34";
};
idn-ruby = {
groups = ["default"];
@@ -1243,20 +1242,20 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "158fawfwmv2sq4whqqaksfykkiad2xxrrj0nmpnc6vnlzi1bp7iz";
+ sha256 = "0lrirj0gw420kw71bjjlqkqhqbrplla61gbv1jzgsz6bv90qr3ci";
type = "gem";
};
- version = "2.3.1";
+ version = "2.5.1";
};
json-canonicalization = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "014lc8am17m2amfkzdfc9ksaafnwpb7zzr8l7382r60zkkgpkljg";
+ sha256 = "0x6rd52dy6d75v21nzvkgpslhjsf5s3s6s4646yc34rdh6icq2ip";
type = "gem";
};
- version = "0.2.0";
+ version = "0.2.1";
};
json-ld = {
dependencies = ["htmlentities" "json-canonicalization" "link_header" "multi_json" "rack" "rdf"];
@@ -1264,10 +1263,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1q9sg8a719sai53gjpznf9r78l035xry0pk1yrag34pb50k2l05l";
+ sha256 = "1j9rj3qqdp312lbwgpxkqzbhf18nxaf6pvillql6p05l4av4717w";
type = "gem";
};
- version = "3.1.5";
+ version = "3.1.9";
};
json-ld-preloaded = {
dependencies = ["json-ld" "rdf"];
@@ -1275,10 +1274,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0f8vham63wy689d4jp2j9rani0n10h40dpymgishf3na8cjj0lix";
+ sha256 = "01i36aja495wvhc3259iawc7dp0ar1yglnxcv5vi3rmrdm03cviz";
type = "gem";
};
- version = "3.1.3";
+ version = "3.1.5";
};
jsonapi-renderer = {
groups = ["default"];
@@ -1403,10 +1402,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1alz1x6rkhbw10qpszr384299rf52rcyasn0619a9p50vzs8vczq";
+ sha256 = "1w9mbii8515p28xd4k72f3ab2g6xiyq15497ys5r8jn6m355lgi7";
type = "gem";
};
- version = "2.7.0";
+ version = "2.9.1";
};
mail = {
dependencies = ["mini_mime"];
@@ -1425,21 +1424,20 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "01n90s1jcc05dc9a70k3c3aa4gc9j49k9iv56n2k4jm949dacms6";
+ sha256 = "0d6r7df919jwj0xwmr95xqjqp7937djysrq2v3qvwhddhx7mfpkv";
type = "gem";
};
- version = "0.4.1";
+ version = "0.5.0";
};
marcel = {
- dependencies = ["mimemagic"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1nxbjmcyg8vlw6zwagf17l9y2mwkagmmkg95xybpn4bmf3rfnksx";
+ sha256 = "0bp001p687nsa4a8sp3q1iv8pfhs24w7s3avychjp64sdkg6jxq3";
type = "gem";
};
- version = "0.3.3";
+ version = "1.0.1";
};
mario-redis-lock = {
dependencies = ["redis"];
@@ -1457,10 +1455,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "04ivhv1bilwqm33jv28gar2vwzsichb5nipaq395d3axabv8qmfy";
+ sha256 = "0s8qaf19yr4lhvdxk3cy3ifc47cgxdz2jybg6hzxsy9gh88c1f7v";
type = "gem";
};
- version = "0.9.14";
+ version = "1.0.0";
};
method_source = {
groups = ["default" "development" "pam_authentication" "production" "test"];
@@ -1478,10 +1476,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1wdyxr22qzw9ri5gzng3a4wqj6a25vq4dhbhd9synk2hjg5pfgvq";
+ sha256 = "115bs94zqkgb248c7xafflpkv2vckpd0ykyfcfggj72kjpqyshyz";
type = "gem";
};
- version = "4.2.1";
+ version = "4.3.1";
};
mime-types = {
dependencies = ["mime-types-data"];
@@ -1505,54 +1503,55 @@
version = "3.2020.0512";
};
mimemagic = {
+ dependencies = ["nokogiri" "rake"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1qfqb9w76kmpb48frbzbyvjc0dfxh5qiw1kxdbv2y2kp6fxpa1kf";
+ sha256 = "0cqm9n9122qpksn9v6mp0gn3lrzxhh72lwl7yb6j75gykdan6h41";
type = "gem";
};
- version = "0.3.5";
+ version = "0.3.10";
};
mini_mime = {
groups = ["default" "development" "test"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1axm0rxyx3ss93wbmfkm78a6x03l8y4qy60rhkkiq0aza0vwq3ha";
+ sha256 = "1np6srnyagghhh2w4nyv09sz47v0i6ri3q6blicj94vgxqp12c94";
type = "gem";
};
- version = "1.0.2";
+ version = "1.0.3";
};
mini_portile2 = {
groups = ["default" "development" "pam_authentication" "production" "test"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "15zplpfw3knqifj9bpf604rb3wc1vhq6363pd6lvhayng8wql5vy";
+ sha256 = "0xg1x4708a4pn2wk8qs2d8kfzzdyv9kjjachg2f1phsx62ap2rx2";
type = "gem";
};
- version = "2.4.0";
+ version = "2.5.1";
};
minitest = {
groups = ["default" "development" "pam_authentication" "production" "test"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "170y2cvx51gm3cm3nhdf7j36sxnkh6vv8ls36p90ric7w8w16h4v";
+ sha256 = "19z7wkhg59y8abginfrm2wzplz7py3va8fyngiigngqvsws6cwgl";
type = "gem";
};
- version = "5.14.2";
+ version = "5.14.4";
};
msgpack = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1lva6bkvb4mfa0m3bqn4lm4s4gi81c40jvdcsrxr6vng49q9daih";
+ sha256 = "06iajjyhx0rvpn4yr3h1hc4w4w3k59bdmfhxnjzzh76wsrdxxrc6";
type = "gem";
};
- version = "1.3.3";
+ version = "1.4.2";
};
multi_json = {
groups = ["default"];
@@ -1579,10 +1578,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "13lh6qizxi8fza8py73b2dvjp9p010dvbaq7diagir9nh8plsinv";
+ sha256 = "1j19yxrz7h3hj7kiiln13c7bz7hvpdqr31bwi88dj64zifr7896n";
type = "gem";
};
- version = "0.16.3";
+ version = "0.17.0";
};
net-scp = {
dependencies = ["net-ssh"];
@@ -1605,38 +1604,26 @@
};
version = "6.1.0";
};
- nilsimsa = {
- groups = ["default"];
- platforms = [];
- source = {
- fetchSubmodules = false;
- rev = "fd184883048b922b176939f851338d0a4971a532";
- sha256 = "0fds01pr220kg6g3g0rphrkg1fc6py1pnf546pnsb76wd9c0c5il";
- type = "git";
- url = "https://github.com/witgo/nilsimsa";
- };
- version = "1.1.2";
- };
nio4r = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1cbwp1kbv6b2qfxv8sarv0d0ilb257jihlvdqj8f5pdm0ksq1sgk";
+ sha256 = "00fwz0qq7agd2xkdz02i8li236qvwhma3p0jdn5bdvc21b7ydzd5";
type = "gem";
};
- version = "2.5.4";
+ version = "2.5.7";
};
nokogiri = {
- dependencies = ["mini_portile2"];
+ dependencies = ["mini_portile2" "racc"];
groups = ["default" "development" "pam_authentication" "production" "test"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0xmf60nj5kg9vaj5bysy308687sgmkasgx06vbbnf94p52ih7si2";
+ sha256 = "19d78mdg2lbz9jb4ph6nk783c9jbsdm8rnllwhga6pd53xffp6x0";
type = "gem";
};
- version = "1.10.10";
+ version = "1.11.3";
};
nokogumbo = {
dependencies = ["nokogiri"];
@@ -1644,10 +1631,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0sxjnpjvrn10gdmfw2dimhch861lz00f28hvkkz0b1gc2rb65k9s";
+ sha256 = "0pxm7hx2lhmanm8kljd39f1j1742kl0a31zx98jsjiwrkfb5hhc6";
type = "gem";
};
- version = "2.0.2";
+ version = "2.0.4";
};
nsa = {
dependencies = ["activesupport" "concurrent-ruby" "sidekiq" "statsd-ruby"];
@@ -1655,20 +1642,20 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1i1bhmvs49yv70pgl41lx1lr8x6whg52szb8ic1jb6wmmxr2ylcz";
+ sha256 = "1jzs1n71pi6najhs9h8jx156gzgk3h9bwjr60vazizwdz3mm69ia";
type = "gem";
};
- version = "0.2.7";
+ version = "0.2.8";
};
oj = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1xqmzqldi9a0wpilwx87yh61xd7647gg8ffammg4ava0bsx375g2";
+ sha256 = "1cnadm83qwnmbpyild9whb9bgf9r7gs046ydxypclb2l756gcnva";
type = "gem";
};
- version = "3.10.16";
+ version = "3.11.5";
};
omniauth = {
dependencies = ["hashie" "rack"];
@@ -1749,10 +1736,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0nd301vsf3k4pl0aa6gkng12yxfdf5s490v65ky2vz8lainaw16q";
+ sha256 = "00k4l70dlbnqylng27023wz1c5hph32vwv2nwpfxdx9ip1vn4lx1";
type = "gem";
};
- version = "2.13.4";
+ version = "2.14.4";
};
paperclip = {
dependencies = ["activemodel" "activesupport" "mime-types" "mimemagic" "terrapin"];
@@ -1765,17 +1752,6 @@
};
version = "6.0.0";
};
- paperclip-av-transcoder = {
- dependencies = ["av" "paperclip"];
- groups = ["default"];
- platforms = [];
- source = {
- remotes = ["https://rubygems.org"];
- sha256 = "1gcnp3fpdb5lqilcij4yqga6397nb7zyyf9lzxnqpbp7cvc18lhf";
- type = "gem";
- };
- version = "0.6.4";
- };
parallel = {
groups = ["default" "development" "test"];
platforms = [];
@@ -1792,10 +1768,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1mvdk8vgzqjv2pvadxwc8w2vf8dmiw145rjf47c36nn6l5hh02j6";
+ sha256 = "1vrd24lg1pqxvp63664hrndywpdyn8i38j4gfvqk8zjl1mxy9840";
type = "gem";
};
- version = "3.4.0";
+ version = "3.7.0";
};
parser = {
dependencies = ["ast"];
@@ -1803,10 +1779,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1f7gmm60yla325wlnd3qkxs59qm2y0aan8ljpg6k18rwzrrfil6z";
+ sha256 = "1pxsi1i5z506xfzhiyavlasf8777h55ab40phvp7pfv9npmd5pnj";
type = "gem";
};
- version = "2.7.2.0";
+ version = "3.0.1.1";
};
parslet = {
groups = ["default"];
@@ -1845,31 +1821,20 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0lb858gpz8919in51pgxbk9v5m4qppd136gpag2plzs24rv5hg3s";
+ sha256 = "0abfdw301acfnq2h4zccwzd32i6mh9wp6qya2l0fsy0mmn14j405";
type = "gem";
};
- version = "2.7.2";
+ version = "2.8.1";
};
pkg-config = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "068sf963n2zk47kqcckj624g5pxmk68mm76h02piphfyh9x4zmi3";
+ sha256 = "1mjjy1grxr64znkffxsvprcckbrrnm40b6gbllnbm7jxslbr3gjl";
type = "gem";
};
- version = "1.4.4";
- };
- pluck_each = {
- dependencies = ["activerecord" "activesupport"];
- groups = ["default"];
- platforms = [];
- source = {
- remotes = ["https://rubygems.org"];
- sha256 = "1b7g0ggjsbca81qwvpayj1c5qy65p5zq19lb7fiy1v0yb48pzvhp";
- type = "gem";
- };
- version = "0.1.3";
+ version = "1.4.6";
};
posix-spawn = {
groups = ["default"];
@@ -1962,10 +1927,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0mkmfbf4qyiknwi9bb5432cpbbz06r855gknxb8grn24gmgs4d9i";
+ sha256 = "1q34mqihyg7i46z0pbbkyw58fwmkq7a7315apaqmj41zp6akyjf1";
type = "gem";
};
- version = "5.0.4";
+ version = "5.3.0";
};
pundit = {
dependencies = ["activesupport"];
@@ -1988,6 +1953,16 @@
};
version = "1.3.3";
};
+ racc = {
+ groups = ["default" "development" "pam_authentication" "production" "test"];
+ platforms = [];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "178k7r0xn689spviqzhvazzvxfq6fyjldxb3ywjbgipbfi4s8j1g";
+ type = "gem";
+ };
+ version = "1.5.2";
+ };
rack = {
groups = ["default" "development" "pam_authentication" "production" "test"];
platforms = [];
@@ -2004,10 +1979,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0zzyiiif9w67v43rv0hg7nxbwp1ish1f02x61kx0rmz8sy1j7wnn";
+ sha256 = "0kiixzpazjqgljjy1ngfz1by5vz6kjx0d4mf1fq7b3ywpfjf80lq";
type = "gem";
};
- version = "6.3.1";
+ version = "6.5.0";
};
rack-cors = {
dependencies = ["rack"];
@@ -2043,15 +2018,15 @@
version = "1.1.0";
};
rails = {
- dependencies = ["actioncable" "actionmailer" "actionpack" "actionview" "activejob" "activemodel" "activerecord" "activestorage" "activesupport" "railties" "sprockets-rails"];
+ dependencies = ["actioncable" "actionmailbox" "actionmailer" "actionpack" "actiontext" "actionview" "activejob" "activemodel" "activerecord" "activestorage" "activesupport" "railties" "sprockets-rails"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0b5g3h5sbbncks44w8vjnx0zp145ygphrsspy4ay7xsls92xynq0";
+ sha256 = "0flnpli87b9j0zvb3c4l5addjbznbpkbmp1wzfjc1gh8qxlhcs1n";
type = "gem";
};
- version = "5.2.4.4";
+ version = "6.1.3.2";
};
rails-controller-testing = {
dependencies = ["actionpack" "actionview" "activesupport"];
@@ -2092,10 +2067,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "02kdlm7jgwvwnnc1amy8md2vl0f2jkfr6rr36vybclr9qm4fb80f";
+ sha256 = "05mcgv748vppnm3fnml37wjy3dw61wj8vfw14ldaj1yx1bmkhb07";
type = "gem";
};
- version = "5.1.3";
+ version = "6.0.0";
};
rails-settings-cached = {
dependencies = ["rails"];
@@ -2114,10 +2089,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "089kiwmv8fxyfk0zp57q74nyd5i6d5x5ihlrzbzwl041v94s2zx9";
+ sha256 = "17r1pr8d467vh3zkciw4wmrcixj9zjrvd11nxn2z091bkzf66xq2";
type = "gem";
};
- version = "5.2.4.4";
+ version = "6.1.3.2";
};
rainbow = {
groups = ["default" "development" "test"];
@@ -2134,10 +2109,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0w6qza25bq1s825faaglkx1k6d59aiyjjk3yw3ip5sb463mhhai9";
+ sha256 = "1iik52mf9ky4cgs38fp2m8r6skdkq1yz23vh18lk95fhbcxb6a67";
type = "gem";
};
- version = "13.0.1";
+ version = "13.0.3";
};
rdf = {
dependencies = ["hamster" "link_header"];
@@ -2145,10 +2120,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "109c355wj2a74v2yrwgqpzhgnxchkm5dakcacqx9fk2i98f7m7d8";
+ sha256 = "0mn0q6a8cx32kz01pd8byhyhghi30dc6rbazislp2fw3wphvx553";
type = "gem";
};
- version = "3.1.7";
+ version = "3.1.13";
};
rdf-normalize = {
dependencies = ["rdf"];
@@ -2162,7 +2137,7 @@
version = "0.4.0";
};
redis = {
- groups = ["default" "production" "test"];
+ groups = ["default" "test"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
@@ -2171,81 +2146,26 @@
};
version = "4.2.5";
};
- redis-actionpack = {
- dependencies = ["actionpack" "redis-rack" "redis-store"];
- groups = ["default" "production"];
- platforms = [];
- source = {
- remotes = ["https://rubygems.org"];
- sha256 = "0c2276zzc0044zh37a8frx1v7hnra7z7k126154ps7njbqngfdv3";
- type = "gem";
- };
- version = "5.2.0";
- };
- redis-activesupport = {
- dependencies = ["activesupport" "redis-store"];
- groups = ["default" "production"];
- platforms = [];
- source = {
- remotes = ["https://rubygems.org"];
- sha256 = "14a3z8810j02ysvg53f3mvcfb4rw34m91yfd19zy9y5lb3yv2g59";
- type = "gem";
- };
- version = "5.2.0";
- };
redis-namespace = {
dependencies = ["redis"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "05i6s898z5w31z385cba1683pgg5nnmj4m686cbravg7j4pgbcgv";
+ sha256 = "0k65fr7f8ciq7d9nwc5ziw1d32zsxilgmqdlj3359rz5jgb0f5y8";
type = "gem";
};
- version = "1.8.0";
- };
- redis-rack = {
- dependencies = ["rack" "redis-store"];
- groups = ["default" "production"];
- platforms = [];
- source = {
- remotes = ["https://rubygems.org"];
- sha256 = "1nblbxg1f051dn83jp92lz3lc1wxm18nviglrabv2l0vz6rd0pkb";
- type = "gem";
- };
- version = "2.1.3";
- };
- redis-rails = {
- dependencies = ["redis-actionpack" "redis-activesupport" "redis-store"];
- groups = ["production"];
- platforms = [];
- source = {
- remotes = ["https://rubygems.org"];
- sha256 = "0hjvkyaw5hgz7v6fgwdk8pb966z44h1gv8jarmb0gwhkqmjnsh40";
- type = "gem";
- };
- version = "5.0.2";
- };
- redis-store = {
- dependencies = ["redis"];
- groups = ["default" "production"];
- platforms = [];
- source = {
- remotes = ["https://rubygems.org"];
- sha256 = "0cpzbf2svnk4j5awb24ncl0mih45zkbdrd7q23jdg1r8k3q7mdg6";
- type = "gem";
- };
- version = "1.9.0";
+ version = "1.8.1";
};
regexp_parser = {
groups = ["default" "development" "test"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0x4s82lgf0l71y3xc9gp4qxkrgx1kv8f6avdqd68l46ijbyvicdm";
+ sha256 = "0vg7imjnfcqjx7kw94ccj5r78j4g190cqzi1i59sh4a0l940b9cr";
type = "gem";
};
- version = "1.8.2";
+ version = "2.1.1";
};
request_store = {
dependencies = ["rack"];
@@ -2258,6 +2178,16 @@
};
version = "1.5.0";
};
+ resolv = {
+ groups = ["default"];
+ platforms = [];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "1a23805sa3ip589id3npq39wyzgqz2qzx0dcsa1z91rxfax7fllz";
+ type = "gem";
+ };
+ version = "0.1.0";
+ };
responders = {
dependencies = ["actionpack" "railties"];
groups = ["default" "pam_authentication"];
@@ -2270,24 +2200,24 @@
version = "3.0.1";
};
rexml = {
- groups = ["default" "development"];
+ groups = ["default" "development" "test"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1mkvkcw9fhpaizrhca0pdgjcrbns48rlz4g6lavl5gjjq3rk2sq3";
+ sha256 = "08ximcyfjy94pm1rhcx04ny1vx2sk0x4y185gzn86yfsbzwkng53";
type = "gem";
};
- version = "3.2.4";
+ version = "3.2.5";
};
rotp = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1w8d6svhq3y9y952r8cqirxvdx12zlkb7zxjb44bcbidb2sisy4d";
+ sha256 = "11q7rkjx40yi6lpylgl2jkpy162mjw7mswrcgcax86vgpbpjx6i3";
type = "gem";
};
- version = "2.1.2";
+ version = "6.2.0";
};
rpam2 = {
groups = ["default" "pam_authentication"];
@@ -2305,20 +2235,20 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "06lw8b6wfshxd61xw98xyp1a0zsz6av4nls2c9fwb7q59wb05sci";
+ sha256 = "073w0qgjydkqpsqsb9yr8qg0mhvwlzx6z53hqr2b5zifvb9wzh02";
type = "gem";
};
- version = "1.1.2";
+ version = "2.0.0";
};
rqrcode_core = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "071jqmhk3hf0grsvi0jx5sl449pf82p40ls5b3likbq4q516zc0j";
+ sha256 = "1djrfpzdy19c336nlzxdsm9qkrgqnm1himdawflsjsmxpq4j826c";
type = "gem";
};
- version = "0.1.2";
+ version = "1.0.0";
};
rspec-core = {
dependencies = ["rspec-support"];
@@ -2326,10 +2256,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0b8891149l4rdlaz58k1dprc09rhpvq98bblk4qpd3dvcvqklkvh";
+ sha256 = "0wwnfhxxvrlxlk1a3yxlb82k2f9lm0yn0598x7lk8fksaz4vv6mc";
type = "gem";
};
- version = "3.9.3";
+ version = "3.10.1";
};
rspec-expectations = {
dependencies = ["diff-lcs" "rspec-support"];
@@ -2337,10 +2267,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1bxkv25qmy39jqrdx35bfgw00g24qkssail9jlljm7hywbqvr9bb";
+ sha256 = "1sz9bj4ri28adsklnh257pnbq4r5ayziw02qf67wry0kvzazbb17";
type = "gem";
};
- version = "3.9.2";
+ version = "3.10.1";
};
rspec-mocks = {
dependencies = ["diff-lcs" "rspec-support"];
@@ -2348,10 +2278,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "19vmdqym1v2g1zbdnq37zwmyj87y9yc9ijwc8js55igvbb9hx0mr";
+ sha256 = "1d13g6kipqqc9lmwz5b244pdwc97z15vcbnbq6n9rlf32bipdz4k";
type = "gem";
};
- version = "3.9.1";
+ version = "3.10.2";
};
rspec-rails = {
dependencies = ["actionpack" "activesupport" "railties" "rspec-core" "rspec-expectations" "rspec-mocks" "rspec-support"];
@@ -2359,10 +2289,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0lzik01ziaskgpdpy8knffpw0fsy9151f5lfigyhb89wq4q45hfs";
+ sha256 = "1pj2a9vrkp2xzlq0810q90sdc2zcqc7k92n57hxzhri2vcspy7n6";
type = "gem";
};
- version = "4.0.1";
+ version = "5.0.1";
};
rspec-sidekiq = {
dependencies = ["rspec-core" "sidekiq"];
@@ -2380,10 +2310,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0dandh2fy1dfkjk8jf9v4azbbma6968bhh06hddv0yqqm8108jir";
+ sha256 = "15j52parvb8cgvl6s0pbxi2ywxrv6x0764g222kz5flz0s4mycbl";
type = "gem";
};
- version = "3.9.3";
+ version = "3.10.2";
};
rspec_junit_formatter = {
dependencies = ["rspec-core"];
@@ -2402,10 +2332,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1cganc8j8zq7x81bmkav39dhbqydxhqyfs98z2g4g7ld6scywm20";
+ sha256 = "0chjr6i0g7frbp7dhi4d83ppf7akkdaw7mcgcwbxd6a9mairafpp";
type = "gem";
};
- version = "1.3.1";
+ version = "1.14.0";
};
rubocop-ast = {
dependencies = ["parser"];
@@ -2413,10 +2343,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "15jxn0aqxgalpl9zlrqyk2kk41qcp4sn1yys55qif5f787b3nrij";
+ sha256 = "0hx4im1a2qpiwipvsl3fma358ixjp4h0mhj56ichq15xrq709qlf";
type = "gem";
};
- version = "1.1.1";
+ version = "1.5.0";
};
rubocop-rails = {
dependencies = ["activesupport" "rack" "rubocop"];
@@ -2424,20 +2354,20 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "14g703lv0cbqw504cdjsv0yydrsnm61rwg0n0mql4zl5hw1n7lfh";
+ sha256 = "1h8k2i6qgl7pdvb8bnh1w43zqdxqg3kglyxy9b2vdh2w7q5rrl5y";
type = "gem";
};
- version = "2.8.1";
+ version = "2.10.1";
};
ruby-progressbar = {
groups = ["default" "development" "test"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1k77i0d4wsn23ggdd2msrcwfy0i376cglfqypkk2q77r2l3408zf";
+ sha256 = "02nmaw7yx9kl7rbaan5pl8x5nn0y4j5954mzrkzi9i3dhsrps4nc";
type = "gem";
};
- version = "1.10.1";
+ version = "1.11.0";
};
ruby-saml = {
dependencies = ["nokogiri"];
@@ -2450,6 +2380,16 @@
};
version = "1.11.0";
};
+ ruby2_keywords = {
+ groups = ["default"];
+ platforms = [];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "15wfcqxyfgka05v2a7kpg64x57gl1y4xzvnc9lh60bqx5sf1iqrs";
+ type = "gem";
+ };
+ version = "0.0.4";
+ };
rufus-scheduler = {
dependencies = ["fugit"];
groups = ["default"];
@@ -2478,10 +2418,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "18m3zcf207gcrmghx288w3n2kpphc22lbmbc1wdx1nzcn8g2yddh";
+ sha256 = "0xi2c9vbfjs0gk4i9y4mrlb3xx6g5lj22hlg5cx6hyc88ri7j4bc";
type = "gem";
};
- version = "5.2.1";
+ version = "5.2.3";
};
scenic = {
dependencies = ["activerecord" "railties"];
@@ -2509,10 +2449,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "150wq0y749rags4pm0g3zljd575vk17nwdzp0m0q04s62977rd24";
+ sha256 = "1dlp97vg95plrsaaqj7x8l7z9vsjbhnqk4rw1l30gy26lmxpfrih";
type = "gem";
};
- version = "2.3.0";
+ version = "3.0.0";
};
sidekiq = {
dependencies = ["connection_pool" "rack" "redis"];
@@ -2520,10 +2460,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0mjxrxppv08a1hwqi8gpg6n168cxqhp7c2r2jwc4rbz9j5k41vcw";
+ sha256 = "1ac57q6lnqg9h9lsj49wlwhgsfqfr83lgka1c1srk6g8vghhz662";
type = "gem";
};
- version = "6.1.2";
+ version = "6.2.1";
};
sidekiq-bulk = {
dependencies = ["sidekiq"];
@@ -2548,15 +2488,15 @@
version = "3.0.1";
};
sidekiq-unique-jobs = {
- dependencies = ["concurrent-ruby" "sidekiq" "thor"];
+ dependencies = ["brpoplpush-redis_script" "concurrent-ruby" "sidekiq" "thor"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0lw2hgq28wd97kkp2897gy1yf0fx0yz6l23gdgjl8i2pas7d5wxd";
+ sha256 = "0dzwz30gr2mjdr70gnz2mmplhfqldz0jhdw1n3ric0y3yj81m02d";
type = "gem";
};
- version = "6.0.25";
+ version = "7.0.9";
};
simple-navigation = {
dependencies = ["activesupport"];
@@ -2575,21 +2515,21 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0jj4fcs2r5sm3gjsmygcs2fi2ai18az5ynq1cqp1w0j3aajdian7";
+ sha256 = "09raw1gw0db9hfddgvzjwpk4hj1ng4dfq3igak80jkvhg4jdg7jp";
type = "gem";
};
- version = "5.0.3";
+ version = "5.1.0";
};
simplecov = {
- dependencies = ["docile" "simplecov-html"];
+ dependencies = ["docile" "simplecov-html" "simplecov_json_formatter"];
groups = ["test"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "00xwb0mizvbm9s04a6h5ycwn2zpdxjb3wxaawq6ypjjbvxszihcq";
+ sha256 = "1hrv046jll6ad1s964gsmcq4hvkr3zzr6jc7z1mns22mvfpbc3cr";
type = "gem";
};
- version = "0.19.1";
+ version = "0.21.2";
};
simplecov-html = {
groups = ["default" "test"];
@@ -2601,6 +2541,16 @@
};
version = "0.12.3";
};
+ simplecov_json_formatter = {
+ groups = ["default" "test"];
+ platforms = [];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "0cl3j7p3b5q7sxsx1va63c8imc5x6g99xablz08qrmqhpi0d6g6j";
+ type = "gem";
+ };
+ version = "0.1.2";
+ };
sprockets = {
dependencies = ["concurrent-ruby" "rack"];
groups = ["default"];
@@ -2629,30 +2579,30 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1gfglybqjw6g6hccqvh2yjfqlvdy4hwad8mcjdc7zjm5swncfxwz";
+ sha256 = "1szshiw7bzizi380z1hkdbwhjdaixb5bgbx7c3wf7970mjdashkd";
type = "gem";
};
- version = "1.21.0";
+ version = "1.21.2";
};
stackprof = {
groups = ["development"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "147rb66p3n062vc433afqhkd99iazvkrqnghxgh871r62yhha93f";
+ sha256 = "06lz70k8c0r7fyxk1nc3idh14x7nvsr21ydm1bsmbj00jyhmfzsn";
type = "gem";
};
- version = "0.2.16";
+ version = "0.2.17";
};
statsd-ruby = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0djig5dnqjgww6wrw3f1mvnnjllznahlchvk4lvs4wx9qjsqpysr";
+ sha256 = "028136c463nbravckxb1qi5c5nnv9r6vh2cyhiry423lac4xz79n";
type = "gem";
};
- version = "1.4.0";
+ version = "1.5.0";
};
stoplight = {
groups = ["default"];
@@ -2664,27 +2614,16 @@
};
version = "2.2.1";
};
- streamio-ffmpeg = {
- dependencies = ["multi_json"];
- groups = ["default"];
- platforms = [];
- source = {
- remotes = ["https://rubygems.org"];
- sha256 = "1nnxizc0371vwh0k6gqjj1b7fjszydpqfz549n6qn2q1pza3894z";
- type = "gem";
- };
- version = "3.0.2";
- };
strong_migrations = {
dependencies = ["activerecord"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0sdijc2nc9lx6kga216rg4yfmyv4g7slbpcrlfjx20psbn54d7jd";
+ sha256 = "1dv55gbazp96w27yhvikm2xa6ny51q88aim2by11crc0jwr5agvk";
type = "gem";
};
- version = "0.7.2";
+ version = "0.7.6";
};
temple = {
groups = ["default"];
@@ -2702,10 +2641,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1512cngw35hsmhvw4c05rscihc59mnj09m249sm9p3pik831ydqk";
+ sha256 = "1dlaadjnx8aw8lhr0z8jpy2gyi7az3mks6f49d3fllilhps9ayi8";
type = "gem";
};
- version = "1.8.0";
+ version = "3.0.0";
};
terrapin = {
dependencies = ["climate_control"];
@@ -2723,20 +2662,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1xbhkmyhlxwzshaqa7swy2bx6vd64mm0wrr8g3jywvxy7hg0cwkm";
+ sha256 = "18yhlvmfya23cs3pvhr1qy38y41b6mhr5q9vwv5lrgk16wmf3jna";
type = "gem";
};
- version = "1.0.1";
- };
- thread_safe = {
- groups = ["default" "development" "pam_authentication" "production" "test"];
- platforms = [];
- source = {
- remotes = ["https://rubygems.org"];
- sha256 = "0nmhcgq6cgz44srylra07bmaw99f5271l0dpsvl5f75m44l0gmwy";
- type = "gem";
- };
- version = "0.3.6";
+ version = "1.1.0";
};
thwait = {
dependencies = ["e2mmap"];
@@ -2775,10 +2704,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "12vcxmn3lj405rs0fxcki7jwpkrx8y55x8jwjf9v6yvnx2y5kga3";
+ sha256 = "0aik4kmhwwrmkysha7qibi2nyzb4c8kp42bd5vxnf8sf7b53g73g";
type = "gem";
};
- version = "0.5.2";
+ version = "0.6.0";
};
tty-cursor = {
groups = ["default"];
@@ -2796,10 +2725,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "170y0imsmzav5xgaav6xhzlz879fq2zv25ryk8y3qc2kqaz7x657";
+ sha256 = "1j4y8ik82azjxshgd4i1v4wwhsv3g9cngpygxqkkz69qaa8cxnzw";
type = "gem";
};
- version = "0.22.0";
+ version = "0.23.1";
};
tty-reader = {
dependencies = ["tty-cursor" "tty-screen" "wisper"];
@@ -2807,10 +2736,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "078rlqbdw72jjgp597yn5psasgf4508qdw9g3prxgbcgpcdcsd0r";
+ sha256 = "1cf2k7w7d84hshg4kzrjvk9pkyc2g1m3nx2n1rpmdcf0hp4p4af6";
type = "gem";
};
- version = "0.8.0";
+ version = "0.9.0";
};
tty-screen = {
groups = ["default"];
@@ -2823,26 +2752,26 @@
version = "0.8.1";
};
twitter-text = {
- dependencies = ["unf"];
+ dependencies = ["idn-ruby" "unf"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1732h7hy1k152w8wfvjsx7b79alk45i5imwd37ia4qcx8hfm3gvg";
+ sha256 = "1dnmp0bj3l01nbb52zby2c7hrazcdwfg846knkrjdfl0yfmv793z";
type = "gem";
};
- version = "1.14.7";
+ version = "3.1.0";
};
tzinfo = {
- dependencies = ["thread_safe"];
+ dependencies = ["concurrent-ruby"];
groups = ["default" "development" "pam_authentication" "production" "test"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1i3jh086w1kbdj3k5l60lc3nwbanmzdf8yjj3mlrx9b2gjjxhi9r";
+ sha256 = "10qp5x7f9hvlc0psv9gsfbxg4a7s0485wsbq1kljkxq94in91l4z";
type = "gem";
};
- version = "1.2.7";
+ version = "2.0.4";
};
tzinfo-data = {
dependencies = ["tzinfo"];
@@ -2850,10 +2779,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "02anabncgfjwsqn07ra9jdqvmi0a4yngzp6dfiz2yxb1m9qpdm4a";
+ sha256 = "0ik16lnsyr2739jzwl4r5sz8q639lqw8f9s68iszwhm2pcq8p4w2";
type = "gem";
};
- version = "1.2020.4";
+ version = "1.2021.1";
};
unf = {
dependencies = ["unf_ext"];
@@ -2891,10 +2820,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0vm4aix8jmv42s1x58m3lj3xwkbxyn9qn6lzhhig0d1j8fv6j30c";
+ sha256 = "05f81da1x7jh9xfsn8gsw6cfn42l0ldpg7zckrv875h4swknyffy";
type = "gem";
};
- version = "1.13.0";
+ version = "1.14.1";
};
warden = {
dependencies = ["rack"];
@@ -2924,10 +2853,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0wbdjagk2qpr76k3zw2gmkfp5aqlrc1a4qrpjv7sq1q39qbn8xax";
+ sha256 = "038igpmkpmn0nw0k7s4db8x88af1nwcy7wzh9m9c9q4p74h7rii0";
type = "gem";
};
- version = "3.10.0";
+ version = "3.12.2";
};
webpacker = {
dependencies = ["activesupport" "rack-proxy" "railties" "semantic_range"];
@@ -2935,10 +2864,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1xgyv5ppljw3yq71nbrw2hj6hq9y8qbdavjrn53nsccpy7801wdx";
+ sha256 = "0xpjdbcnsapk9y1hbryxan3a0yks37j59l3ifpmlfrqfxp08anvr";
type = "gem";
};
- version = "5.2.1";
+ version = "5.3.0";
};
webpush = {
dependencies = ["hkdf" "jwt"];
@@ -3003,4 +2932,15 @@
};
version = "3.2.0";
};
+ zeitwerk = {
+ groups = ["default" "development" "pam_authentication" "production" "test"];
+ platforms = [];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "1746czsjarixq0x05f7p3hpzi38ldg6wxnxxw74kbjzh1sdjgmpl";
+ type = "gem";
+ };
+ version = "2.4.2";
+ };
}
+
diff --git a/pkgs/servers/mastodon/package.json b/pkgs/servers/mastodon/package.json
index 498d4b63723e..be41b4d59254 100644
--- a/pkgs/servers/mastodon/package.json
+++ b/pkgs/servers/mastodon/package.json
@@ -1,9 +1,9 @@
{
- "version": "3.3.0",
+ "version": "3.4.0",
"name": "@tootsuite/mastodon",
"license": "AGPL-3.0-or-later",
"engines": {
- "node": ">=10.13"
+ "node": ">=12"
},
"scripts": {
"postversion": "git push --tags",
@@ -23,7 +23,7 @@
},
"browserslist": [
"last 2 versions",
- "IE >= 11",
+ "not IE 11",
"iOS >= 9",
"not dead"
],
@@ -60,37 +60,35 @@
},
"private": true,
"dependencies": {
- "@babel/core": "^7.12.7",
- "@babel/plugin-proposal-class-properties": "^7.8.3",
- "@babel/plugin-proposal-decorators": "^7.12.1",
- "@babel/plugin-transform-react-inline-elements": "^7.12.1",
- "@babel/plugin-transform-runtime": "^7.12.1",
- "@babel/preset-env": "^7.12.7",
- "@babel/preset-react": "^7.12.7",
- "@babel/runtime": "^7.12.5",
- "@clusterws/cws": "^3.0.0",
+ "@babel/core": "^7.14.0",
+ "@babel/plugin-proposal-decorators": "^7.13.15",
+ "@babel/plugin-transform-react-inline-elements": "^7.12.13",
+ "@babel/plugin-transform-runtime": "^7.13.15",
+ "@babel/preset-env": "^7.14.1",
+ "@babel/preset-react": "^7.13.13",
+ "@babel/runtime": "^7.14.0",
"@gamestdio/websocket": "^0.3.2",
"@github/webauthn-json": "^0.5.7",
- "@rails/ujs": "^6.0.3",
- "array-includes": "^3.1.1",
+ "@rails/ujs": "^6.1.3",
+ "array-includes": "^3.1.3",
"arrow-key-navigation": "^1.2.0",
"autoprefixer": "^9.8.6",
- "axios": "^0.21.0",
- "babel-loader": "^8.2.1",
+ "axios": "^0.21.1",
+ "babel-loader": "^8.2.2",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-preval": "^5.0.0",
"babel-plugin-react-intl": "^6.2.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"babel-runtime": "^6.26.0",
"blurhash": "^1.1.3",
- "classnames": "^2.2.5",
- "color-blend": "^3.0.0",
+ "classnames": "^2.3.1",
+ "color-blend": "^3.0.1",
"compression-webpack-plugin": "^6.1.1",
- "cross-env": "^7.0.2",
- "css-loader": "^5.0.1",
- "cssnano": "^4.1.10",
- "detect-passive-events": "^2.0.1",
- "dotenv": "^8.2.0",
+ "cross-env": "^7.0.3",
+ "css-loader": "^5.2.4",
+ "cssnano": "^4.1.11",
+ "detect-passive-events": "^2.0.3",
+ "dotenv": "^9.0.1",
"emoji-mart": "Gargron/emoji-mart#build",
"es6-symbol": "^3.1.3",
"escape-html": "^1.0.3",
@@ -98,29 +96,29 @@
"express": "^4.17.1",
"file-loader": "^6.2.0",
"font-awesome": "^4.7.0",
- "glob": "^7.1.6",
+ "glob": "^7.1.7",
"history": "^4.10.1",
"http-link-header": "^1.0.3",
"immutable": "^3.8.2",
"imports-loader": "^1.2.0",
- "intersection-observer": "^0.11.0",
+ "intersection-observer": "^0.12.0",
"intl": "^1.2.5",
"intl-messageformat": "^2.2.0",
"intl-relativeformat": "^6.4.3",
- "is-nan": "^1.3.0",
- "js-yaml": "^3.13.1",
- "lodash": "^4.17.19",
+ "is-nan": "^1.3.2",
+ "js-yaml": "^4.1.0",
+ "lodash": "^4.17.21",
"mark-loader": "^0.1.6",
- "marky": "^1.2.1",
- "mini-css-extract-plugin": "^1.3.1",
+ "marky": "^1.2.2",
+ "mini-css-extract-plugin": "^1.6.0",
"mkdirp": "^1.0.4",
"npmlog": "^4.1.2",
"object-assign": "^4.1.1",
"object-fit-images": "^3.2.3",
- "object.values": "^1.1.1",
+ "object.values": "^1.1.3",
"offline-plugin": "^5.0.7",
"path-complete-extname": "^1.0.0",
- "pg": "^6.4.0",
+ "pg": "^8.5.0",
"postcss-loader": "^3.0.0",
"postcss-object-fit-images": "^1.1.2",
"promise.prototype.finally": "^3.1.2",
@@ -135,18 +133,18 @@
"react-masonry-infinite": "^1.2.2",
"react-motion": "^0.5.2",
"react-notification": "^6.8.5",
- "react-overlays": "^0.9.2",
- "react-redux": "^7.2.2",
+ "react-overlays": "^0.9.3",
+ "react-redux": "^7.2.4",
"react-redux-loading-bar": "^4.0.8",
"react-router-dom": "^4.1.1",
"react-router-scroll-4": "^1.0.0-beta.1",
- "react-select": "^3.1.0",
+ "react-select": "^4.3.0",
"react-sparklines": "^1.7.0",
"react-swipeable-views": "^0.13.9",
- "react-textarea-autosize": "^8.3.0",
- "react-toggle": "^4.1.1",
- "redis": "^3.0.2",
- "redux": "^4.0.5",
+ "react-textarea-autosize": "^8.3.2",
+ "react-toggle": "^4.1.2",
+ "redis": "^3.1.2",
+ "redux": "^4.1.0",
"redux-immutable": "^4.0.0",
"redux-thunk": "^2.2.0",
"regenerator-runtime": "^0.13.7",
@@ -154,8 +152,8 @@
"requestidlecallback": "^0.3.0",
"reselect": "^4.0.0",
"rimraf": "^3.0.2",
- "sass": "^1.29.0",
- "sass-loader": "^10.1.0",
+ "sass": "^1.32.12",
+ "sass-loader": "^10.1.1",
"stacktrace-js": "^2.0.2",
"stringz": "^2.1.0",
"substring-trie": "^1.0.2",
@@ -163,31 +161,37 @@
"tesseract.js": "^2.1.1",
"throng": "^4.0.0",
"tiny-queue": "^0.2.1",
+ "twitter-text": "3.1.0",
"uuid": "^8.3.1",
- "webpack": "^4.44.2",
- "webpack-assets-manifest": "^3.1.1",
- "webpack-bundle-analyzer": "^4.1.0",
+ "webpack": "^4.46.0",
+ "webpack-assets-manifest": "^4.0.6",
+ "webpack-bundle-analyzer": "^4.4.1",
"webpack-cli": "^3.3.12",
- "webpack-merge": "^5.4.0",
- "wicg-inert": "^3.1.0",
+ "webpack-merge": "^5.7.3",
+ "wicg-inert": "^3.1.1",
+ "ws": "^7.4.5",
"kind-of": "^6.0.3"
},
"devDependencies": {
- "@testing-library/jest-dom": "^5.11.6",
- "@testing-library/react": "^11.2.2",
+ "@testing-library/jest-dom": "^5.12.0",
+ "@testing-library/react": "^11.2.6",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
- "eslint": "^7.14.0",
+ "eslint": "^7.26.0",
"eslint-plugin-import": "~2.22.1",
"eslint-plugin-jsx-a11y": "~6.4.1",
- "eslint-plugin-promise": "~4.2.1",
- "eslint-plugin-react": "~7.21.5",
+ "eslint-plugin-promise": "~5.1.0",
+ "eslint-plugin-react": "~7.23.2",
"jest": "^26.6.3",
"raf": "^3.4.1",
"react-intl-translations-manager": "^5.0.3",
"react-test-renderer": "^16.14.0",
"sass-lint": "^1.13.1",
- "webpack-dev-server": "^3.11.0",
- "yargs": "^16.1.1"
+ "webpack-dev-server": "^3.11.2",
+ "yargs": "^17.0.1"
+ },
+ "optionalDependencies": {
+ "bufferutil": "^4.0.3",
+ "utf-8-validate": "^5.0.5"
}
}
diff --git a/pkgs/servers/mastodon/resolutions.patch b/pkgs/servers/mastodon/resolutions.patch
index 4cde0ba8dfe9..4160647123f7 100644
--- a/pkgs/servers/mastodon/resolutions.patch
+++ b/pkgs/servers/mastodon/resolutions.patch
@@ -1,31 +1,32 @@
diff --git a/package.json b/package.json
-index 7b8f49dd8..24cdd3498 100644
+index 5bc1f6bf3..8cc22a403 100644
--- a/package.json
+++ b/package.json
@@ -168,7 +168,8 @@
- "webpack-bundle-analyzer": "^4.1.0",
"webpack-cli": "^3.3.12",
- "webpack-merge": "^5.4.0",
-- "wicg-inert": "^3.1.0"
-+ "wicg-inert": "^3.1.0",
+ "webpack-merge": "^5.7.3",
+ "wicg-inert": "^3.1.1",
+- "ws": "^7.4.5"
++ "ws": "^7.4.5",
+ "kind-of": "^6.0.3"
},
"devDependencies": {
- "@testing-library/jest-dom": "^5.11.6",
-@@ -187,8 +188,5 @@
- "sass-lint": "^1.13.1",
- "webpack-dev-server": "^3.11.0",
- "yargs": "^16.1.1"
-- },
+ "@testing-library/jest-dom": "^5.12.0",
+@@ -188,9 +189,6 @@
+ "webpack-dev-server": "^3.11.2",
+ "yargs": "^17.0.1"
+ },
- "resolutions": {
- "kind-of": "^6.0.3"
- }
- }
+- },
+ "optionalDependencies": {
+ "bufferutil": "^4.0.3",
+ "utf-8-validate": "^5.0.5"
diff --git a/yarn.lock b/yarn.lock
-index 4aa8f6380..68d2fd8b5 100644
+index 6c8bcf549..bda3adbe8 100644
--- a/yarn.lock
+++ b/yarn.lock
-@@ -5689,6 +5689,11 @@ is-binary-path@~2.1.0:
+@@ -5833,6 +5833,11 @@ is-binary-path@~2.1.0:
dependencies:
binary-extensions "^2.0.0"
@@ -37,7 +38,7 @@ index 4aa8f6380..68d2fd8b5 100644
is-callable@^1.1.4, is-callable@^1.2.2:
version "1.2.2"
resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.2.tgz#c7c6715cd22d4ddb48d3e19970223aceabb080d9"
-@@ -6639,7 +6644,26 @@ killable@^1.0.1:
+@@ -6769,7 +6774,26 @@ killable@^1.0.1:
resolved "https://registry.yarnpkg.com/killable/-/killable-1.0.1.tgz#4c8ce441187a061c7474fb87ca08e2a638194892"
integrity sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==
diff --git a/pkgs/servers/mastodon/source.nix b/pkgs/servers/mastodon/source.nix
index 57eff626ee49..e7e8135bef2b 100644
--- a/pkgs/servers/mastodon/source.nix
+++ b/pkgs/servers/mastodon/source.nix
@@ -2,8 +2,8 @@
{ fetchgit, applyPatches }: let
src = fetchgit {
url = "https://github.com/tootsuite/mastodon.git";
- rev = "v3.3.0";
- sha256 = "17wvggvy5mmyf3f1i5v1hgvh6wjdhg9hb3wiyfaydx0slsg03qba";
+ rev = "v3.4.0";
+ sha256 = "0wa1j4iin6nlb1p5lxzgldzgr0vhrmm835gj2zqadw37vpsxdis3";
};
in applyPatches {
inherit src;
diff --git a/pkgs/servers/mastodon/version.nix b/pkgs/servers/mastodon/version.nix
index b577fbf1969b..9aa1e187187b 100644
--- a/pkgs/servers/mastodon/version.nix
+++ b/pkgs/servers/mastodon/version.nix
@@ -1 +1 @@
-"3.3.0"
+"3.4.0"
diff --git a/pkgs/servers/mastodon/version.patch b/pkgs/servers/mastodon/version.patch
index c1449e413272..eb0bd3937356 100644
--- a/pkgs/servers/mastodon/version.patch
+++ b/pkgs/servers/mastodon/version.patch
@@ -3,7 +3,7 @@ diff -Naur --label a/package.json --label b/package.json a/package.json b/packag
+++ b/package.json
@@ -1,4 +1,5 @@
{
-+ "version": "3.3.0",
++ "version": "3.4.0",
"name": "@tootsuite/mastodon",
"license": "AGPL-3.0-or-later",
"engines": {
diff --git a/pkgs/servers/mastodon/yarn.nix b/pkgs/servers/mastodon/yarn.nix
index 9c3b844bcccd..9d22eb6bd5af 100644
--- a/pkgs/servers/mastodon/yarn.nix
+++ b/pkgs/servers/mastodon/yarn.nix
@@ -2,35 +2,43 @@
offline_cache = linkFarm "offline" packages;
packages = [
{
- name = "_babel_code_frame___code_frame_7.10.4.tgz";
+ name = "_babel_code_frame___code_frame_7.12.11.tgz";
path = fetchurl {
- name = "_babel_code_frame___code_frame_7.10.4.tgz";
- url = "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.10.4.tgz";
- sha1 = "168da1a36e90da68ae8d49c0f1b48c7c6249213a";
+ name = "_babel_code_frame___code_frame_7.12.11.tgz";
+ url = "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.11.tgz";
+ sha1 = "f4ad435aa263db935b8f10f2c552d23fb716a63f";
};
}
{
- name = "_babel_compat_data___compat_data_7.12.7.tgz";
+ name = "_babel_code_frame___code_frame_7.12.13.tgz";
path = fetchurl {
- name = "_babel_compat_data___compat_data_7.12.7.tgz";
- url = "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.12.7.tgz";
- sha1 = "9329b4782a7d6bbd7eef57e11addf91ee3ef1e41";
+ name = "_babel_code_frame___code_frame_7.12.13.tgz";
+ url = "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.13.tgz";
+ sha1 = "dcfc826beef65e75c50e21d3837d7d95798dd658";
};
}
{
- name = "_babel_core___core_7.12.7.tgz";
+ name = "_babel_compat_data___compat_data_7.14.0.tgz";
path = fetchurl {
- name = "_babel_core___core_7.12.7.tgz";
- url = "https://registry.yarnpkg.com/@babel/core/-/core-7.12.7.tgz";
- sha1 = "bf55363c08c8352a37691f7216ec30090bf7e3bf";
+ name = "_babel_compat_data___compat_data_7.14.0.tgz";
+ url = "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.14.0.tgz";
+ sha1 = "a901128bce2ad02565df95e6ecbf195cf9465919";
};
}
{
- name = "_babel_generator___generator_7.12.5.tgz";
+ name = "_babel_core___core_7.14.0.tgz";
path = fetchurl {
- name = "_babel_generator___generator_7.12.5.tgz";
- url = "https://registry.yarnpkg.com/@babel/generator/-/generator-7.12.5.tgz";
- sha1 = "a2c50de5c8b6d708ab95be5e6053936c1884a4de";
+ name = "_babel_core___core_7.14.0.tgz";
+ url = "https://registry.yarnpkg.com/@babel/core/-/core-7.14.0.tgz";
+ sha1 = "47299ff3ec8d111b493f1a9d04bf88c04e728d88";
+ };
+ }
+ {
+ name = "_babel_generator___generator_7.14.0.tgz";
+ path = fetchurl {
+ name = "_babel_generator___generator_7.14.0.tgz";
+ url = "https://registry.yarnpkg.com/@babel/generator/-/generator-7.14.0.tgz";
+ sha1 = "0f35d663506c43e4f10898fbda0d752ec75494be";
};
}
{
@@ -42,163 +50,195 @@
};
}
{
- name = "_babel_helper_builder_binary_assignment_operator_visitor___helper_builder_binary_assignment_operator_visitor_7.10.4.tgz";
+ name = "_babel_helper_annotate_as_pure___helper_annotate_as_pure_7.12.13.tgz";
path = fetchurl {
- name = "_babel_helper_builder_binary_assignment_operator_visitor___helper_builder_binary_assignment_operator_visitor_7.10.4.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.10.4.tgz";
- sha1 = "bb0b75f31bf98cbf9ff143c1ae578b87274ae1a3";
+ name = "_babel_helper_annotate_as_pure___helper_annotate_as_pure_7.12.13.tgz";
+ url = "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.12.13.tgz";
+ sha1 = "0f58e86dfc4bb3b1fcd7db806570e177d439b6ab";
};
}
{
- name = "_babel_helper_builder_react_jsx_experimental___helper_builder_react_jsx_experimental_7.12.4.tgz";
+ name = "_babel_helper_builder_binary_assignment_operator_visitor___helper_builder_binary_assignment_operator_visitor_7.12.13.tgz";
path = fetchurl {
- name = "_babel_helper_builder_react_jsx_experimental___helper_builder_react_jsx_experimental_7.12.4.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx-experimental/-/helper-builder-react-jsx-experimental-7.12.4.tgz";
- sha1 = "55fc1ead5242caa0ca2875dcb8eed6d311e50f48";
+ name = "_babel_helper_builder_binary_assignment_operator_visitor___helper_builder_binary_assignment_operator_visitor_7.12.13.tgz";
+ url = "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.12.13.tgz";
+ sha1 = "6bc20361c88b0a74d05137a65cac8d3cbf6f61fc";
};
}
{
- name = "_babel_helper_builder_react_jsx___helper_builder_react_jsx_7.10.4.tgz";
+ name = "_babel_helper_builder_react_jsx___helper_builder_react_jsx_7.12.13.tgz";
path = fetchurl {
- name = "_babel_helper_builder_react_jsx___helper_builder_react_jsx_7.10.4.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.10.4.tgz";
- sha1 = "8095cddbff858e6fa9c326daee54a2f2732c1d5d";
+ name = "_babel_helper_builder_react_jsx___helper_builder_react_jsx_7.12.13.tgz";
+ url = "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.12.13.tgz";
+ sha1 = "df6a76fb83feb6b8e6dcfb46bb49010098cb51f0";
};
}
{
- name = "_babel_helper_compilation_targets___helper_compilation_targets_7.12.5.tgz";
+ name = "_babel_helper_compilation_targets___helper_compilation_targets_7.13.16.tgz";
path = fetchurl {
- name = "_babel_helper_compilation_targets___helper_compilation_targets_7.12.5.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.12.5.tgz";
- sha1 = "cb470c76198db6a24e9dbc8987275631e5d29831";
+ name = "_babel_helper_compilation_targets___helper_compilation_targets_7.13.16.tgz";
+ url = "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.13.16.tgz";
+ sha1 = "6e91dccf15e3f43e5556dffe32d860109887563c";
};
}
{
- name = "_babel_helper_create_class_features_plugin___helper_create_class_features_plugin_7.12.1.tgz";
+ name = "_babel_helper_create_class_features_plugin___helper_create_class_features_plugin_7.13.11.tgz";
path = fetchurl {
- name = "_babel_helper_create_class_features_plugin___helper_create_class_features_plugin_7.12.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.12.1.tgz";
- sha1 = "3c45998f431edd4a9214c5f1d3ad1448a6137f6e";
+ name = "_babel_helper_create_class_features_plugin___helper_create_class_features_plugin_7.13.11.tgz";
+ url = "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.13.11.tgz";
+ sha1 = "30d30a005bca2c953f5653fc25091a492177f4f6";
};
}
{
- name = "_babel_helper_create_regexp_features_plugin___helper_create_regexp_features_plugin_7.12.1.tgz";
+ name = "_babel_helper_create_class_features_plugin___helper_create_class_features_plugin_7.14.0.tgz";
path = fetchurl {
- name = "_babel_helper_create_regexp_features_plugin___helper_create_regexp_features_plugin_7.12.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.12.1.tgz";
- sha1 = "18b1302d4677f9dc4740fe8c9ed96680e29d37e8";
+ name = "_babel_helper_create_class_features_plugin___helper_create_class_features_plugin_7.14.0.tgz";
+ url = "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.14.0.tgz";
+ sha1 = "38367d3dab125b12f94273de418f4df23a11a15e";
};
}
{
- name = "_babel_helper_define_map___helper_define_map_7.10.4.tgz";
+ name = "_babel_helper_create_regexp_features_plugin___helper_create_regexp_features_plugin_7.12.13.tgz";
path = fetchurl {
- name = "_babel_helper_define_map___helper_define_map_7.10.4.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.10.4.tgz";
- sha1 = "f037ad794264f729eda1889f4ee210b870999092";
+ name = "_babel_helper_create_regexp_features_plugin___helper_create_regexp_features_plugin_7.12.13.tgz";
+ url = "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.12.13.tgz";
+ sha1 = "0996d370a92896c612ae41a4215544bd152579c0";
};
}
{
- name = "_babel_helper_explode_assignable_expression___helper_explode_assignable_expression_7.10.4.tgz";
+ name = "_babel_helper_define_polyfill_provider___helper_define_polyfill_provider_0.2.0.tgz";
path = fetchurl {
- name = "_babel_helper_explode_assignable_expression___helper_explode_assignable_expression_7.10.4.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.10.4.tgz";
- sha1 = "40a1cd917bff1288f699a94a75b37a1a2dbd8c7c";
+ name = "_babel_helper_define_polyfill_provider___helper_define_polyfill_provider_0.2.0.tgz";
+ url = "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.2.0.tgz";
+ sha1 = "a640051772045fedaaecc6f0c6c69f02bdd34bf1";
};
}
{
- name = "_babel_helper_function_name___helper_function_name_7.10.4.tgz";
+ name = "_babel_helper_explode_assignable_expression___helper_explode_assignable_expression_7.12.13.tgz";
path = fetchurl {
- name = "_babel_helper_function_name___helper_function_name_7.10.4.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz";
- sha1 = "d2d3b20c59ad8c47112fa7d2a94bc09d5ef82f1a";
+ name = "_babel_helper_explode_assignable_expression___helper_explode_assignable_expression_7.12.13.tgz";
+ url = "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.12.13.tgz";
+ sha1 = "0e46990da9e271502f77507efa4c9918d3d8634a";
};
}
{
- name = "_babel_helper_get_function_arity___helper_get_function_arity_7.10.4.tgz";
+ name = "_babel_helper_function_name___helper_function_name_7.12.13.tgz";
path = fetchurl {
- name = "_babel_helper_get_function_arity___helper_get_function_arity_7.10.4.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz";
- sha1 = "98c1cbea0e2332f33f9a4661b8ce1505b2c19ba2";
+ name = "_babel_helper_function_name___helper_function_name_7.12.13.tgz";
+ url = "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.12.13.tgz";
+ sha1 = "93ad656db3c3c2232559fd7b2c3dbdcbe0eb377a";
};
}
{
- name = "_babel_helper_hoist_variables___helper_hoist_variables_7.10.4.tgz";
+ name = "_babel_helper_get_function_arity___helper_get_function_arity_7.12.13.tgz";
path = fetchurl {
- name = "_babel_helper_hoist_variables___helper_hoist_variables_7.10.4.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.10.4.tgz";
- sha1 = "d49b001d1d5a68ca5e6604dda01a6297f7c9381e";
+ name = "_babel_helper_get_function_arity___helper_get_function_arity_7.12.13.tgz";
+ url = "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.13.tgz";
+ sha1 = "bc63451d403a3b3082b97e1d8b3fe5bd4091e583";
};
}
{
- name = "_babel_helper_member_expression_to_functions___helper_member_expression_to_functions_7.12.1.tgz";
+ name = "_babel_helper_hoist_variables___helper_hoist_variables_7.13.0.tgz";
path = fetchurl {
- name = "_babel_helper_member_expression_to_functions___helper_member_expression_to_functions_7.12.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.1.tgz";
- sha1 = "fba0f2fcff3fba00e6ecb664bb5e6e26e2d6165c";
+ name = "_babel_helper_hoist_variables___helper_hoist_variables_7.13.0.tgz";
+ url = "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.13.0.tgz";
+ sha1 = "5d5882e855b5c5eda91e0cadc26c6e7a2c8593d8";
};
}
{
- name = "_babel_helper_module_imports___helper_module_imports_7.12.5.tgz";
+ name = "_babel_helper_member_expression_to_functions___helper_member_expression_to_functions_7.12.13.tgz";
path = fetchurl {
- name = "_babel_helper_module_imports___helper_module_imports_7.12.5.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz";
- sha1 = "1bfc0229f794988f76ed0a4d4e90860850b54dfb";
+ name = "_babel_helper_member_expression_to_functions___helper_member_expression_to_functions_7.12.13.tgz";
+ url = "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.13.tgz";
+ sha1 = "c5715695b4f8bab32660dbdcdc2341dec7e3df40";
};
}
{
- name = "_babel_helper_module_transforms___helper_module_transforms_7.12.1.tgz";
+ name = "_babel_helper_member_expression_to_functions___helper_member_expression_to_functions_7.13.0.tgz";
path = fetchurl {
- name = "_babel_helper_module_transforms___helper_module_transforms_7.12.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.12.1.tgz";
- sha1 = "7954fec71f5b32c48e4b303b437c34453fd7247c";
+ name = "_babel_helper_member_expression_to_functions___helper_member_expression_to_functions_7.13.0.tgz";
+ url = "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.13.0.tgz";
+ sha1 = "6aa4bb678e0f8c22f58cdb79451d30494461b091";
};
}
{
- name = "_babel_helper_optimise_call_expression___helper_optimise_call_expression_7.10.4.tgz";
+ name = "_babel_helper_member_expression_to_functions___helper_member_expression_to_functions_7.13.12.tgz";
path = fetchurl {
- name = "_babel_helper_optimise_call_expression___helper_optimise_call_expression_7.10.4.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.10.4.tgz";
- sha1 = "50dc96413d594f995a77905905b05893cd779673";
+ name = "_babel_helper_member_expression_to_functions___helper_member_expression_to_functions_7.13.12.tgz";
+ url = "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.13.12.tgz";
+ sha1 = "dfe368f26d426a07299d8d6513821768216e6d72";
};
}
{
- name = "_babel_helper_plugin_utils___helper_plugin_utils_7.10.4.tgz";
+ name = "_babel_helper_module_imports___helper_module_imports_7.13.12.tgz";
path = fetchurl {
- name = "_babel_helper_plugin_utils___helper_plugin_utils_7.10.4.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz";
- sha1 = "2f75a831269d4f677de49986dff59927533cf375";
+ name = "_babel_helper_module_imports___helper_module_imports_7.13.12.tgz";
+ url = "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.13.12.tgz";
+ sha1 = "c6a369a6f3621cb25da014078684da9196b61977";
};
}
{
- name = "_babel_helper_regex___helper_regex_7.10.4.tgz";
+ name = "_babel_helper_module_transforms___helper_module_transforms_7.14.0.tgz";
path = fetchurl {
- name = "_babel_helper_regex___helper_regex_7.10.4.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.10.4.tgz";
- sha1 = "59b373daaf3458e5747dece71bbaf45f9676af6d";
+ name = "_babel_helper_module_transforms___helper_module_transforms_7.14.0.tgz";
+ url = "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.14.0.tgz";
+ sha1 = "8fcf78be220156f22633ee204ea81f73f826a8ad";
};
}
{
- name = "_babel_helper_remap_async_to_generator___helper_remap_async_to_generator_7.12.1.tgz";
+ name = "_babel_helper_optimise_call_expression___helper_optimise_call_expression_7.12.13.tgz";
path = fetchurl {
- name = "_babel_helper_remap_async_to_generator___helper_remap_async_to_generator_7.12.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.12.1.tgz";
- sha1 = "8c4dbbf916314f6047dc05e6a2217074238347fd";
+ name = "_babel_helper_optimise_call_expression___helper_optimise_call_expression_7.12.13.tgz";
+ url = "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.13.tgz";
+ sha1 = "5c02d171b4c8615b1e7163f888c1c81c30a2aaea";
};
}
{
- name = "_babel_helper_replace_supers___helper_replace_supers_7.12.1.tgz";
+ name = "_babel_helper_plugin_utils___helper_plugin_utils_7.13.0.tgz";
path = fetchurl {
- name = "_babel_helper_replace_supers___helper_replace_supers_7.12.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.12.1.tgz";
- sha1 = "f15c9cc897439281891e11d5ce12562ac0cf3fa9";
+ name = "_babel_helper_plugin_utils___helper_plugin_utils_7.13.0.tgz";
+ url = "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz";
+ sha1 = "806526ce125aed03373bc416a828321e3a6a33af";
};
}
{
- name = "_babel_helper_simple_access___helper_simple_access_7.12.1.tgz";
+ name = "_babel_helper_remap_async_to_generator___helper_remap_async_to_generator_7.13.0.tgz";
path = fetchurl {
- name = "_babel_helper_simple_access___helper_simple_access_7.12.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.12.1.tgz";
- sha1 = "32427e5aa61547d38eb1e6eaf5fd1426fdad9136";
+ name = "_babel_helper_remap_async_to_generator___helper_remap_async_to_generator_7.13.0.tgz";
+ url = "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.13.0.tgz";
+ sha1 = "376a760d9f7b4b2077a9dd05aa9c3927cadb2209";
+ };
+ }
+ {
+ name = "_babel_helper_replace_supers___helper_replace_supers_7.12.13.tgz";
+ path = fetchurl {
+ name = "_babel_helper_replace_supers___helper_replace_supers_7.12.13.tgz";
+ url = "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.12.13.tgz";
+ sha1 = "00ec4fb6862546bd3d0aff9aac56074277173121";
+ };
+ }
+ {
+ name = "_babel_helper_replace_supers___helper_replace_supers_7.13.0.tgz";
+ path = fetchurl {
+ name = "_babel_helper_replace_supers___helper_replace_supers_7.13.0.tgz";
+ url = "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.13.0.tgz";
+ sha1 = "6034b7b51943094cb41627848cb219cb02be1d24";
+ };
+ }
+ {
+ name = "_babel_helper_replace_supers___helper_replace_supers_7.13.12.tgz";
+ path = fetchurl {
+ name = "_babel_helper_replace_supers___helper_replace_supers_7.13.12.tgz";
+ url = "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.13.12.tgz";
+ sha1 = "6442f4c1ad912502481a564a7386de0c77ff3804";
+ };
+ }
+ {
+ name = "_babel_helper_simple_access___helper_simple_access_7.13.12.tgz";
+ path = fetchurl {
+ name = "_babel_helper_simple_access___helper_simple_access_7.13.12.tgz";
+ url = "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.13.12.tgz";
+ sha1 = "dd6c538afb61819d205a012c31792a39c7a5eaf6";
};
}
{
@@ -210,179 +250,203 @@
};
}
{
- name = "_babel_helper_split_export_declaration___helper_split_export_declaration_7.10.4.tgz";
+ name = "_babel_helper_split_export_declaration___helper_split_export_declaration_7.12.13.tgz";
path = fetchurl {
- name = "_babel_helper_split_export_declaration___helper_split_export_declaration_7.10.4.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.10.4.tgz";
- sha1 = "2c70576eaa3b5609b24cb99db2888cc3fc4251d1";
+ name = "_babel_helper_split_export_declaration___helper_split_export_declaration_7.12.13.tgz";
+ url = "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.13.tgz";
+ sha1 = "e9430be00baf3e88b0e13e6f9d4eaf2136372b05";
};
}
{
- name = "_babel_helper_split_export_declaration___helper_split_export_declaration_7.11.0.tgz";
+ name = "_babel_helper_validator_identifier___helper_validator_identifier_7.12.11.tgz";
path = fetchurl {
- name = "_babel_helper_split_export_declaration___helper_split_export_declaration_7.11.0.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz";
- sha1 = "f8a491244acf6a676158ac42072911ba83ad099f";
+ name = "_babel_helper_validator_identifier___helper_validator_identifier_7.12.11.tgz";
+ url = "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz";
+ sha1 = "c9a1f021917dcb5ccf0d4e453e399022981fc9ed";
};
}
{
- name = "_babel_helper_validator_identifier___helper_validator_identifier_7.10.4.tgz";
+ name = "_babel_helper_validator_identifier___helper_validator_identifier_7.14.0.tgz";
path = fetchurl {
- name = "_babel_helper_validator_identifier___helper_validator_identifier_7.10.4.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz";
- sha1 = "a78c7a7251e01f616512d31b10adcf52ada5e0d2";
+ name = "_babel_helper_validator_identifier___helper_validator_identifier_7.14.0.tgz";
+ url = "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.0.tgz";
+ sha1 = "d26cad8a47c65286b15df1547319a5d0bcf27288";
};
}
{
- name = "_babel_helper_validator_option___helper_validator_option_7.12.1.tgz";
+ name = "_babel_helper_validator_option___helper_validator_option_7.12.17.tgz";
path = fetchurl {
- name = "_babel_helper_validator_option___helper_validator_option_7.12.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.12.1.tgz";
- sha1 = "175567380c3e77d60ff98a54bb015fe78f2178d9";
+ name = "_babel_helper_validator_option___helper_validator_option_7.12.17.tgz";
+ url = "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.12.17.tgz";
+ sha1 = "d1fbf012e1a79b7eebbfdc6d270baaf8d9eb9831";
};
}
{
- name = "_babel_helper_wrap_function___helper_wrap_function_7.10.4.tgz";
+ name = "_babel_helper_wrap_function___helper_wrap_function_7.13.0.tgz";
path = fetchurl {
- name = "_babel_helper_wrap_function___helper_wrap_function_7.10.4.tgz";
- url = "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.10.4.tgz";
- sha1 = "8a6f701eab0ff39f765b5a1cfef409990e624b87";
+ name = "_babel_helper_wrap_function___helper_wrap_function_7.13.0.tgz";
+ url = "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.13.0.tgz";
+ sha1 = "bdb5c66fda8526ec235ab894ad53a1235c79fcc4";
};
}
{
- name = "_babel_helpers___helpers_7.12.5.tgz";
+ name = "_babel_helpers___helpers_7.14.0.tgz";
path = fetchurl {
- name = "_babel_helpers___helpers_7.12.5.tgz";
- url = "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.12.5.tgz";
- sha1 = "1a1ba4a768d9b58310eda516c449913fe647116e";
+ name = "_babel_helpers___helpers_7.14.0.tgz";
+ url = "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.14.0.tgz";
+ sha1 = "ea9b6be9478a13d6f961dbb5f36bf75e2f3b8f62";
};
}
{
- name = "_babel_highlight___highlight_7.10.4.tgz";
+ name = "_babel_highlight___highlight_7.12.13.tgz";
path = fetchurl {
- name = "_babel_highlight___highlight_7.10.4.tgz";
- url = "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.10.4.tgz";
- sha1 = "7d1bdfd65753538fabe6c38596cdb76d9ac60143";
+ name = "_babel_highlight___highlight_7.12.13.tgz";
+ url = "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.12.13.tgz";
+ sha1 = "8ab538393e00370b26271b01fa08f7f27f2e795c";
};
}
{
- name = "_babel_parser___parser_7.12.7.tgz";
+ name = "_babel_parser___parser_7.14.0.tgz";
path = fetchurl {
- name = "_babel_parser___parser_7.12.7.tgz";
- url = "https://registry.yarnpkg.com/@babel/parser/-/parser-7.12.7.tgz";
- sha1 = "fee7b39fe809d0e73e5b25eecaf5780ef3d73056";
+ name = "_babel_parser___parser_7.14.0.tgz";
+ url = "https://registry.yarnpkg.com/@babel/parser/-/parser-7.14.0.tgz";
+ sha1 = "2f0ebfed92bcddcc8395b91f1895191ce2760380";
};
}
{
- name = "_babel_plugin_proposal_async_generator_functions___plugin_proposal_async_generator_functions_7.12.1.tgz";
+ name = "_babel_plugin_bugfix_v8_spread_parameters_in_optional_chaining___plugin_bugfix_v8_spread_parameters_in_optional_chaining_7.13.12.tgz";
path = fetchurl {
- name = "_babel_plugin_proposal_async_generator_functions___plugin_proposal_async_generator_functions_7.12.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.12.1.tgz";
- sha1 = "dc6c1170e27d8aca99ff65f4925bd06b1c90550e";
+ name = "_babel_plugin_bugfix_v8_spread_parameters_in_optional_chaining___plugin_bugfix_v8_spread_parameters_in_optional_chaining_7.13.12.tgz";
+ url = "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.13.12.tgz";
+ sha1 = "a3484d84d0b549f3fc916b99ee4783f26fabad2a";
};
}
{
- name = "_babel_plugin_proposal_class_properties___plugin_proposal_class_properties_7.12.1.tgz";
+ name = "_babel_plugin_proposal_async_generator_functions___plugin_proposal_async_generator_functions_7.13.15.tgz";
path = fetchurl {
- name = "_babel_plugin_proposal_class_properties___plugin_proposal_class_properties_7.12.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.12.1.tgz";
- sha1 = "a082ff541f2a29a4821065b8add9346c0c16e5de";
+ name = "_babel_plugin_proposal_async_generator_functions___plugin_proposal_async_generator_functions_7.13.15.tgz";
+ url = "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.13.15.tgz";
+ sha1 = "80e549df273a3b3050431b148c892491df1bcc5b";
};
}
{
- name = "_babel_plugin_proposal_decorators___plugin_proposal_decorators_7.12.1.tgz";
+ name = "_babel_plugin_proposal_class_properties___plugin_proposal_class_properties_7.13.0.tgz";
path = fetchurl {
- name = "_babel_plugin_proposal_decorators___plugin_proposal_decorators_7.12.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.12.1.tgz";
- sha1 = "59271439fed4145456c41067450543aee332d15f";
+ name = "_babel_plugin_proposal_class_properties___plugin_proposal_class_properties_7.13.0.tgz";
+ url = "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.13.0.tgz";
+ sha1 = "146376000b94efd001e57a40a88a525afaab9f37";
};
}
{
- name = "_babel_plugin_proposal_dynamic_import___plugin_proposal_dynamic_import_7.12.1.tgz";
+ name = "_babel_plugin_proposal_class_static_block___plugin_proposal_class_static_block_7.13.11.tgz";
path = fetchurl {
- name = "_babel_plugin_proposal_dynamic_import___plugin_proposal_dynamic_import_7.12.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.12.1.tgz";
- sha1 = "43eb5c2a3487ecd98c5c8ea8b5fdb69a2749b2dc";
+ name = "_babel_plugin_proposal_class_static_block___plugin_proposal_class_static_block_7.13.11.tgz";
+ url = "https://registry.yarnpkg.com/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.13.11.tgz";
+ sha1 = "6fcbba4a962702c17e5371a0c7b39afde186d703";
};
}
{
- name = "_babel_plugin_proposal_export_namespace_from___plugin_proposal_export_namespace_from_7.12.1.tgz";
+ name = "_babel_plugin_proposal_decorators___plugin_proposal_decorators_7.13.15.tgz";
path = fetchurl {
- name = "_babel_plugin_proposal_export_namespace_from___plugin_proposal_export_namespace_from_7.12.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.12.1.tgz";
- sha1 = "8b9b8f376b2d88f5dd774e4d24a5cc2e3679b6d4";
+ name = "_babel_plugin_proposal_decorators___plugin_proposal_decorators_7.13.15.tgz";
+ url = "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.13.15.tgz";
+ sha1 = "e91ccfef2dc24dd5bd5dcc9fc9e2557c684ecfb8";
};
}
{
- name = "_babel_plugin_proposal_json_strings___plugin_proposal_json_strings_7.12.1.tgz";
+ name = "_babel_plugin_proposal_dynamic_import___plugin_proposal_dynamic_import_7.13.8.tgz";
path = fetchurl {
- name = "_babel_plugin_proposal_json_strings___plugin_proposal_json_strings_7.12.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.12.1.tgz";
- sha1 = "d45423b517714eedd5621a9dfdc03fa9f4eb241c";
+ name = "_babel_plugin_proposal_dynamic_import___plugin_proposal_dynamic_import_7.13.8.tgz";
+ url = "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.13.8.tgz";
+ sha1 = "876a1f6966e1dec332e8c9451afda3bebcdf2e1d";
};
}
{
- name = "_babel_plugin_proposal_logical_assignment_operators___plugin_proposal_logical_assignment_operators_7.12.1.tgz";
+ name = "_babel_plugin_proposal_export_namespace_from___plugin_proposal_export_namespace_from_7.12.13.tgz";
path = fetchurl {
- name = "_babel_plugin_proposal_logical_assignment_operators___plugin_proposal_logical_assignment_operators_7.12.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.12.1.tgz";
- sha1 = "f2c490d36e1b3c9659241034a5d2cd50263a2751";
+ name = "_babel_plugin_proposal_export_namespace_from___plugin_proposal_export_namespace_from_7.12.13.tgz";
+ url = "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.12.13.tgz";
+ sha1 = "393be47a4acd03fa2af6e3cde9b06e33de1b446d";
};
}
{
- name = "_babel_plugin_proposal_nullish_coalescing_operator___plugin_proposal_nullish_coalescing_operator_7.12.1.tgz";
+ name = "_babel_plugin_proposal_json_strings___plugin_proposal_json_strings_7.13.8.tgz";
path = fetchurl {
- name = "_babel_plugin_proposal_nullish_coalescing_operator___plugin_proposal_nullish_coalescing_operator_7.12.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.12.1.tgz";
- sha1 = "3ed4fff31c015e7f3f1467f190dbe545cd7b046c";
+ name = "_babel_plugin_proposal_json_strings___plugin_proposal_json_strings_7.13.8.tgz";
+ url = "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.13.8.tgz";
+ sha1 = "bf1fb362547075afda3634ed31571c5901afef7b";
};
}
{
- name = "_babel_plugin_proposal_numeric_separator___plugin_proposal_numeric_separator_7.12.7.tgz";
+ name = "_babel_plugin_proposal_logical_assignment_operators___plugin_proposal_logical_assignment_operators_7.13.8.tgz";
path = fetchurl {
- name = "_babel_plugin_proposal_numeric_separator___plugin_proposal_numeric_separator_7.12.7.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.7.tgz";
- sha1 = "8bf253de8139099fea193b297d23a9d406ef056b";
+ name = "_babel_plugin_proposal_logical_assignment_operators___plugin_proposal_logical_assignment_operators_7.13.8.tgz";
+ url = "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.13.8.tgz";
+ sha1 = "93fa78d63857c40ce3c8c3315220fd00bfbb4e1a";
};
}
{
- name = "_babel_plugin_proposal_object_rest_spread___plugin_proposal_object_rest_spread_7.12.1.tgz";
+ name = "_babel_plugin_proposal_nullish_coalescing_operator___plugin_proposal_nullish_coalescing_operator_7.13.8.tgz";
path = fetchurl {
- name = "_babel_plugin_proposal_object_rest_spread___plugin_proposal_object_rest_spread_7.12.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.12.1.tgz";
- sha1 = "def9bd03cea0f9b72283dac0ec22d289c7691069";
+ name = "_babel_plugin_proposal_nullish_coalescing_operator___plugin_proposal_nullish_coalescing_operator_7.13.8.tgz";
+ url = "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.13.8.tgz";
+ sha1 = "3730a31dafd3c10d8ccd10648ed80a2ac5472ef3";
};
}
{
- name = "_babel_plugin_proposal_optional_catch_binding___plugin_proposal_optional_catch_binding_7.12.1.tgz";
+ name = "_babel_plugin_proposal_numeric_separator___plugin_proposal_numeric_separator_7.12.13.tgz";
path = fetchurl {
- name = "_babel_plugin_proposal_optional_catch_binding___plugin_proposal_optional_catch_binding_7.12.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.12.1.tgz";
- sha1 = "ccc2421af64d3aae50b558a71cede929a5ab2942";
+ name = "_babel_plugin_proposal_numeric_separator___plugin_proposal_numeric_separator_7.12.13.tgz";
+ url = "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.13.tgz";
+ sha1 = "bd9da3188e787b5120b4f9d465a8261ce67ed1db";
};
}
{
- name = "_babel_plugin_proposal_optional_chaining___plugin_proposal_optional_chaining_7.12.7.tgz";
+ name = "_babel_plugin_proposal_object_rest_spread___plugin_proposal_object_rest_spread_7.13.8.tgz";
path = fetchurl {
- name = "_babel_plugin_proposal_optional_chaining___plugin_proposal_optional_chaining_7.12.7.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.12.7.tgz";
- sha1 = "e02f0ea1b5dc59d401ec16fb824679f683d3303c";
+ name = "_babel_plugin_proposal_object_rest_spread___plugin_proposal_object_rest_spread_7.13.8.tgz";
+ url = "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.13.8.tgz";
+ sha1 = "5d210a4d727d6ce3b18f9de82cc99a3964eed60a";
};
}
{
- name = "_babel_plugin_proposal_private_methods___plugin_proposal_private_methods_7.12.1.tgz";
+ name = "_babel_plugin_proposal_optional_catch_binding___plugin_proposal_optional_catch_binding_7.13.8.tgz";
path = fetchurl {
- name = "_babel_plugin_proposal_private_methods___plugin_proposal_private_methods_7.12.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.12.1.tgz";
- sha1 = "86814f6e7a21374c980c10d38b4493e703f4a389";
+ name = "_babel_plugin_proposal_optional_catch_binding___plugin_proposal_optional_catch_binding_7.13.8.tgz";
+ url = "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.13.8.tgz";
+ sha1 = "3ad6bd5901506ea996fc31bdcf3ccfa2bed71107";
};
}
{
- name = "_babel_plugin_proposal_unicode_property_regex___plugin_proposal_unicode_property_regex_7.12.1.tgz";
+ name = "_babel_plugin_proposal_optional_chaining___plugin_proposal_optional_chaining_7.13.12.tgz";
path = fetchurl {
- name = "_babel_plugin_proposal_unicode_property_regex___plugin_proposal_unicode_property_regex_7.12.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.12.1.tgz";
- sha1 = "2a183958d417765b9eae334f47758e5d6a82e072";
+ name = "_babel_plugin_proposal_optional_chaining___plugin_proposal_optional_chaining_7.13.12.tgz";
+ url = "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.13.12.tgz";
+ sha1 = "ba9feb601d422e0adea6760c2bd6bbb7bfec4866";
+ };
+ }
+ {
+ name = "_babel_plugin_proposal_private_methods___plugin_proposal_private_methods_7.13.0.tgz";
+ path = fetchurl {
+ name = "_babel_plugin_proposal_private_methods___plugin_proposal_private_methods_7.13.0.tgz";
+ url = "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.13.0.tgz";
+ sha1 = "04bd4c6d40f6e6bbfa2f57e2d8094bad900ef787";
+ };
+ }
+ {
+ name = "_babel_plugin_proposal_private_property_in_object___plugin_proposal_private_property_in_object_7.14.0.tgz";
+ path = fetchurl {
+ name = "_babel_plugin_proposal_private_property_in_object___plugin_proposal_private_property_in_object_7.14.0.tgz";
+ url = "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.14.0.tgz";
+ sha1 = "b1a1f2030586b9d3489cc26179d2eb5883277636";
+ };
+ }
+ {
+ name = "_babel_plugin_proposal_unicode_property_regex___plugin_proposal_unicode_property_regex_7.12.13.tgz";
+ path = fetchurl {
+ name = "_babel_plugin_proposal_unicode_property_regex___plugin_proposal_unicode_property_regex_7.12.13.tgz";
+ url = "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.12.13.tgz";
+ sha1 = "bebde51339be829c17aaaaced18641deb62b39ba";
};
}
{
@@ -402,19 +466,27 @@
};
}
{
- name = "_babel_plugin_syntax_class_properties___plugin_syntax_class_properties_7.12.1.tgz";
+ name = "_babel_plugin_syntax_class_properties___plugin_syntax_class_properties_7.12.13.tgz";
path = fetchurl {
- name = "_babel_plugin_syntax_class_properties___plugin_syntax_class_properties_7.12.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.1.tgz";
- sha1 = "bcb297c5366e79bebadef509549cd93b04f19978";
+ name = "_babel_plugin_syntax_class_properties___plugin_syntax_class_properties_7.12.13.tgz";
+ url = "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz";
+ sha1 = "b5c987274c4a3a82b89714796931a6b53544ae10";
};
}
{
- name = "_babel_plugin_syntax_decorators___plugin_syntax_decorators_7.12.1.tgz";
+ name = "_babel_plugin_syntax_class_static_block___plugin_syntax_class_static_block_7.12.13.tgz";
path = fetchurl {
- name = "_babel_plugin_syntax_decorators___plugin_syntax_decorators_7.12.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.12.1.tgz";
- sha1 = "81a8b535b284476c41be6de06853a8802b98c5dd";
+ name = "_babel_plugin_syntax_class_static_block___plugin_syntax_class_static_block_7.12.13.tgz";
+ url = "https://registry.yarnpkg.com/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.12.13.tgz";
+ sha1 = "8e3d674b0613e67975ceac2776c97b60cafc5c9c";
+ };
+ }
+ {
+ name = "_babel_plugin_syntax_decorators___plugin_syntax_decorators_7.12.13.tgz";
+ path = fetchurl {
+ name = "_babel_plugin_syntax_decorators___plugin_syntax_decorators_7.12.13.tgz";
+ url = "https://registry.yarnpkg.com/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.12.13.tgz";
+ sha1 = "fac829bf3c7ef4a1bc916257b403e58c6bdaf648";
};
}
{
@@ -450,11 +522,11 @@
};
}
{
- name = "_babel_plugin_syntax_jsx___plugin_syntax_jsx_7.12.1.tgz";
+ name = "_babel_plugin_syntax_jsx___plugin_syntax_jsx_7.12.13.tgz";
path = fetchurl {
- name = "_babel_plugin_syntax_jsx___plugin_syntax_jsx_7.12.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.1.tgz";
- sha1 = "9d9d357cc818aa7ae7935917c1257f67677a0926";
+ name = "_babel_plugin_syntax_jsx___plugin_syntax_jsx_7.12.13.tgz";
+ url = "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.13.tgz";
+ sha1 = "044fb81ebad6698fe62c478875575bcbb9b70f15";
};
}
{
@@ -506,243 +578,235 @@
};
}
{
- name = "_babel_plugin_syntax_top_level_await___plugin_syntax_top_level_await_7.12.1.tgz";
+ name = "_babel_plugin_syntax_private_property_in_object___plugin_syntax_private_property_in_object_7.14.0.tgz";
path = fetchurl {
- name = "_babel_plugin_syntax_top_level_await___plugin_syntax_top_level_await_7.12.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.1.tgz";
- sha1 = "dd6c0b357ac1bb142d98537450a319625d13d2a0";
+ name = "_babel_plugin_syntax_private_property_in_object___plugin_syntax_private_property_in_object_7.14.0.tgz";
+ url = "https://registry.yarnpkg.com/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.0.tgz";
+ sha1 = "762a4babec61176fec6c88480dec40372b140c0b";
};
}
{
- name = "_babel_plugin_transform_arrow_functions___plugin_transform_arrow_functions_7.12.1.tgz";
+ name = "_babel_plugin_syntax_top_level_await___plugin_syntax_top_level_await_7.12.13.tgz";
path = fetchurl {
- name = "_babel_plugin_transform_arrow_functions___plugin_transform_arrow_functions_7.12.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.12.1.tgz";
- sha1 = "8083ffc86ac8e777fbe24b5967c4b2521f3cb2b3";
+ name = "_babel_plugin_syntax_top_level_await___plugin_syntax_top_level_await_7.12.13.tgz";
+ url = "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.13.tgz";
+ sha1 = "c5f0fa6e249f5b739727f923540cf7a806130178";
};
}
{
- name = "_babel_plugin_transform_async_to_generator___plugin_transform_async_to_generator_7.12.1.tgz";
+ name = "_babel_plugin_transform_arrow_functions___plugin_transform_arrow_functions_7.13.0.tgz";
path = fetchurl {
- name = "_babel_plugin_transform_async_to_generator___plugin_transform_async_to_generator_7.12.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.12.1.tgz";
- sha1 = "3849a49cc2a22e9743cbd6b52926d30337229af1";
+ name = "_babel_plugin_transform_arrow_functions___plugin_transform_arrow_functions_7.13.0.tgz";
+ url = "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.13.0.tgz";
+ sha1 = "10a59bebad52d637a027afa692e8d5ceff5e3dae";
};
}
{
- name = "_babel_plugin_transform_block_scoped_functions___plugin_transform_block_scoped_functions_7.12.1.tgz";
+ name = "_babel_plugin_transform_async_to_generator___plugin_transform_async_to_generator_7.13.0.tgz";
path = fetchurl {
- name = "_babel_plugin_transform_block_scoped_functions___plugin_transform_block_scoped_functions_7.12.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.12.1.tgz";
- sha1 = "f2a1a365bde2b7112e0a6ded9067fdd7c07905d9";
+ name = "_babel_plugin_transform_async_to_generator___plugin_transform_async_to_generator_7.13.0.tgz";
+ url = "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.13.0.tgz";
+ sha1 = "8e112bf6771b82bf1e974e5e26806c5c99aa516f";
};
}
{
- name = "_babel_plugin_transform_block_scoping___plugin_transform_block_scoping_7.12.1.tgz";
+ name = "_babel_plugin_transform_block_scoped_functions___plugin_transform_block_scoped_functions_7.12.13.tgz";
path = fetchurl {
- name = "_babel_plugin_transform_block_scoping___plugin_transform_block_scoping_7.12.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.12.1.tgz";
- sha1 = "f0ee727874b42a208a48a586b84c3d222c2bbef1";
+ name = "_babel_plugin_transform_block_scoped_functions___plugin_transform_block_scoped_functions_7.12.13.tgz";
+ url = "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.12.13.tgz";
+ sha1 = "a9bf1836f2a39b4eb6cf09967739de29ea4bf4c4";
};
}
{
- name = "_babel_plugin_transform_classes___plugin_transform_classes_7.12.1.tgz";
+ name = "_babel_plugin_transform_block_scoping___plugin_transform_block_scoping_7.14.1.tgz";
path = fetchurl {
- name = "_babel_plugin_transform_classes___plugin_transform_classes_7.12.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.12.1.tgz";
- sha1 = "65e650fcaddd3d88ddce67c0f834a3d436a32db6";
+ name = "_babel_plugin_transform_block_scoping___plugin_transform_block_scoping_7.14.1.tgz";
+ url = "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.14.1.tgz";
+ sha1 = "ac1b3a8e3d8cbb31efc6b9be2f74eb9823b74ab2";
};
}
{
- name = "_babel_plugin_transform_computed_properties___plugin_transform_computed_properties_7.12.1.tgz";
+ name = "_babel_plugin_transform_classes___plugin_transform_classes_7.13.0.tgz";
path = fetchurl {
- name = "_babel_plugin_transform_computed_properties___plugin_transform_computed_properties_7.12.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.12.1.tgz";
- sha1 = "d68cf6c9b7f838a8a4144badbe97541ea0904852";
+ name = "_babel_plugin_transform_classes___plugin_transform_classes_7.13.0.tgz";
+ url = "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.13.0.tgz";
+ sha1 = "0265155075c42918bf4d3a4053134176ad9b533b";
};
}
{
- name = "_babel_plugin_transform_destructuring___plugin_transform_destructuring_7.12.1.tgz";
+ name = "_babel_plugin_transform_computed_properties___plugin_transform_computed_properties_7.13.0.tgz";
path = fetchurl {
- name = "_babel_plugin_transform_destructuring___plugin_transform_destructuring_7.12.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.12.1.tgz";
- sha1 = "b9a570fe0d0a8d460116413cb4f97e8e08b2f847";
+ name = "_babel_plugin_transform_computed_properties___plugin_transform_computed_properties_7.13.0.tgz";
+ url = "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.13.0.tgz";
+ sha1 = "845c6e8b9bb55376b1fa0b92ef0bdc8ea06644ed";
};
}
{
- name = "_babel_plugin_transform_dotall_regex___plugin_transform_dotall_regex_7.12.1.tgz";
+ name = "_babel_plugin_transform_destructuring___plugin_transform_destructuring_7.13.17.tgz";
path = fetchurl {
- name = "_babel_plugin_transform_dotall_regex___plugin_transform_dotall_regex_7.12.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.12.1.tgz";
- sha1 = "a1d16c14862817b6409c0a678d6f9373ca9cd975";
+ name = "_babel_plugin_transform_destructuring___plugin_transform_destructuring_7.13.17.tgz";
+ url = "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.13.17.tgz";
+ sha1 = "678d96576638c19d5b36b332504d3fd6e06dea27";
};
}
{
- name = "_babel_plugin_transform_duplicate_keys___plugin_transform_duplicate_keys_7.12.1.tgz";
+ name = "_babel_plugin_transform_dotall_regex___plugin_transform_dotall_regex_7.12.13.tgz";
path = fetchurl {
- name = "_babel_plugin_transform_duplicate_keys___plugin_transform_duplicate_keys_7.12.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.12.1.tgz";
- sha1 = "745661baba295ac06e686822797a69fbaa2ca228";
+ name = "_babel_plugin_transform_dotall_regex___plugin_transform_dotall_regex_7.12.13.tgz";
+ url = "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.12.13.tgz";
+ sha1 = "3f1601cc29905bfcb67f53910f197aeafebb25ad";
};
}
{
- name = "_babel_plugin_transform_exponentiation_operator___plugin_transform_exponentiation_operator_7.12.1.tgz";
+ name = "_babel_plugin_transform_duplicate_keys___plugin_transform_duplicate_keys_7.12.13.tgz";
path = fetchurl {
- name = "_babel_plugin_transform_exponentiation_operator___plugin_transform_exponentiation_operator_7.12.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.12.1.tgz";
- sha1 = "b0f2ed356ba1be1428ecaf128ff8a24f02830ae0";
+ name = "_babel_plugin_transform_duplicate_keys___plugin_transform_duplicate_keys_7.12.13.tgz";
+ url = "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.12.13.tgz";
+ sha1 = "6f06b87a8b803fd928e54b81c258f0a0033904de";
};
}
{
- name = "_babel_plugin_transform_for_of___plugin_transform_for_of_7.12.1.tgz";
+ name = "_babel_plugin_transform_exponentiation_operator___plugin_transform_exponentiation_operator_7.12.13.tgz";
path = fetchurl {
- name = "_babel_plugin_transform_for_of___plugin_transform_for_of_7.12.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.12.1.tgz";
- sha1 = "07640f28867ed16f9511c99c888291f560921cfa";
+ name = "_babel_plugin_transform_exponentiation_operator___plugin_transform_exponentiation_operator_7.12.13.tgz";
+ url = "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.12.13.tgz";
+ sha1 = "4d52390b9a273e651e4aba6aee49ef40e80cd0a1";
};
}
{
- name = "_babel_plugin_transform_function_name___plugin_transform_function_name_7.12.1.tgz";
+ name = "_babel_plugin_transform_for_of___plugin_transform_for_of_7.13.0.tgz";
path = fetchurl {
- name = "_babel_plugin_transform_function_name___plugin_transform_function_name_7.12.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.12.1.tgz";
- sha1 = "2ec76258c70fe08c6d7da154003a480620eba667";
+ name = "_babel_plugin_transform_for_of___plugin_transform_for_of_7.13.0.tgz";
+ url = "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.13.0.tgz";
+ sha1 = "c799f881a8091ac26b54867a845c3e97d2696062";
};
}
{
- name = "_babel_plugin_transform_literals___plugin_transform_literals_7.12.1.tgz";
+ name = "_babel_plugin_transform_function_name___plugin_transform_function_name_7.12.13.tgz";
path = fetchurl {
- name = "_babel_plugin_transform_literals___plugin_transform_literals_7.12.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.12.1.tgz";
- sha1 = "d73b803a26b37017ddf9d3bb8f4dc58bfb806f57";
+ name = "_babel_plugin_transform_function_name___plugin_transform_function_name_7.12.13.tgz";
+ url = "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.12.13.tgz";
+ sha1 = "bb024452f9aaed861d374c8e7a24252ce3a50051";
};
}
{
- name = "_babel_plugin_transform_member_expression_literals___plugin_transform_member_expression_literals_7.12.1.tgz";
+ name = "_babel_plugin_transform_literals___plugin_transform_literals_7.12.13.tgz";
path = fetchurl {
- name = "_babel_plugin_transform_member_expression_literals___plugin_transform_member_expression_literals_7.12.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.12.1.tgz";
- sha1 = "496038602daf1514a64d43d8e17cbb2755e0c3ad";
+ name = "_babel_plugin_transform_literals___plugin_transform_literals_7.12.13.tgz";
+ url = "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.12.13.tgz";
+ sha1 = "2ca45bafe4a820197cf315794a4d26560fe4bdb9";
};
}
{
- name = "_babel_plugin_transform_modules_amd___plugin_transform_modules_amd_7.12.1.tgz";
+ name = "_babel_plugin_transform_member_expression_literals___plugin_transform_member_expression_literals_7.12.13.tgz";
path = fetchurl {
- name = "_babel_plugin_transform_modules_amd___plugin_transform_modules_amd_7.12.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.12.1.tgz";
- sha1 = "3154300b026185666eebb0c0ed7f8415fefcf6f9";
+ name = "_babel_plugin_transform_member_expression_literals___plugin_transform_member_expression_literals_7.12.13.tgz";
+ url = "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.12.13.tgz";
+ sha1 = "5ffa66cd59b9e191314c9f1f803b938e8c081e40";
};
}
{
- name = "_babel_plugin_transform_modules_commonjs___plugin_transform_modules_commonjs_7.12.1.tgz";
+ name = "_babel_plugin_transform_modules_amd___plugin_transform_modules_amd_7.14.0.tgz";
path = fetchurl {
- name = "_babel_plugin_transform_modules_commonjs___plugin_transform_modules_commonjs_7.12.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.12.1.tgz";
- sha1 = "fa403124542636c786cf9b460a0ffbb48a86e648";
+ name = "_babel_plugin_transform_modules_amd___plugin_transform_modules_amd_7.14.0.tgz";
+ url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.14.0.tgz";
+ sha1 = "589494b5b290ff76cf7f59c798011f6d77026553";
};
}
{
- name = "_babel_plugin_transform_modules_systemjs___plugin_transform_modules_systemjs_7.12.1.tgz";
+ name = "_babel_plugin_transform_modules_commonjs___plugin_transform_modules_commonjs_7.14.0.tgz";
path = fetchurl {
- name = "_babel_plugin_transform_modules_systemjs___plugin_transform_modules_systemjs_7.12.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.12.1.tgz";
- sha1 = "663fea620d593c93f214a464cd399bf6dc683086";
+ name = "_babel_plugin_transform_modules_commonjs___plugin_transform_modules_commonjs_7.14.0.tgz";
+ url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.14.0.tgz";
+ sha1 = "52bc199cb581e0992edba0f0f80356467587f161";
};
}
{
- name = "_babel_plugin_transform_modules_umd___plugin_transform_modules_umd_7.12.1.tgz";
+ name = "_babel_plugin_transform_modules_systemjs___plugin_transform_modules_systemjs_7.13.8.tgz";
path = fetchurl {
- name = "_babel_plugin_transform_modules_umd___plugin_transform_modules_umd_7.12.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.12.1.tgz";
- sha1 = "eb5a218d6b1c68f3d6217b8fa2cc82fec6547902";
+ name = "_babel_plugin_transform_modules_systemjs___plugin_transform_modules_systemjs_7.13.8.tgz";
+ url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.13.8.tgz";
+ sha1 = "6d066ee2bff3c7b3d60bf28dec169ad993831ae3";
};
}
{
- name = "_babel_plugin_transform_named_capturing_groups_regex___plugin_transform_named_capturing_groups_regex_7.12.1.tgz";
+ name = "_babel_plugin_transform_modules_umd___plugin_transform_modules_umd_7.14.0.tgz";
path = fetchurl {
- name = "_babel_plugin_transform_named_capturing_groups_regex___plugin_transform_named_capturing_groups_regex_7.12.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.12.1.tgz";
- sha1 = "b407f5c96be0d9f5f88467497fa82b30ac3e8753";
+ name = "_babel_plugin_transform_modules_umd___plugin_transform_modules_umd_7.14.0.tgz";
+ url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.14.0.tgz";
+ sha1 = "2f8179d1bbc9263665ce4a65f305526b2ea8ac34";
};
}
{
- name = "_babel_plugin_transform_new_target___plugin_transform_new_target_7.12.1.tgz";
+ name = "_babel_plugin_transform_named_capturing_groups_regex___plugin_transform_named_capturing_groups_regex_7.12.13.tgz";
path = fetchurl {
- name = "_babel_plugin_transform_new_target___plugin_transform_new_target_7.12.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.12.1.tgz";
- sha1 = "80073f02ee1bb2d365c3416490e085c95759dec0";
+ name = "_babel_plugin_transform_named_capturing_groups_regex___plugin_transform_named_capturing_groups_regex_7.12.13.tgz";
+ url = "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.12.13.tgz";
+ sha1 = "2213725a5f5bbbe364b50c3ba5998c9599c5c9d9";
};
}
{
- name = "_babel_plugin_transform_object_super___plugin_transform_object_super_7.12.1.tgz";
+ name = "_babel_plugin_transform_new_target___plugin_transform_new_target_7.12.13.tgz";
path = fetchurl {
- name = "_babel_plugin_transform_object_super___plugin_transform_object_super_7.12.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.12.1.tgz";
- sha1 = "4ea08696b8d2e65841d0c7706482b048bed1066e";
+ name = "_babel_plugin_transform_new_target___plugin_transform_new_target_7.12.13.tgz";
+ url = "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.12.13.tgz";
+ sha1 = "e22d8c3af24b150dd528cbd6e685e799bf1c351c";
};
}
{
- name = "_babel_plugin_transform_parameters___plugin_transform_parameters_7.12.1.tgz";
+ name = "_babel_plugin_transform_object_super___plugin_transform_object_super_7.12.13.tgz";
path = fetchurl {
- name = "_babel_plugin_transform_parameters___plugin_transform_parameters_7.12.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.12.1.tgz";
- sha1 = "d2e963b038771650c922eff593799c96d853255d";
+ name = "_babel_plugin_transform_object_super___plugin_transform_object_super_7.12.13.tgz";
+ url = "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.12.13.tgz";
+ sha1 = "b4416a2d63b8f7be314f3d349bd55a9c1b5171f7";
};
}
{
- name = "_babel_plugin_transform_property_literals___plugin_transform_property_literals_7.12.1.tgz";
+ name = "_babel_plugin_transform_parameters___plugin_transform_parameters_7.13.0.tgz";
path = fetchurl {
- name = "_babel_plugin_transform_property_literals___plugin_transform_property_literals_7.12.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.12.1.tgz";
- sha1 = "41bc81200d730abb4456ab8b3fbd5537b59adecd";
+ name = "_babel_plugin_transform_parameters___plugin_transform_parameters_7.13.0.tgz";
+ url = "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.13.0.tgz";
+ sha1 = "8fa7603e3097f9c0b7ca1a4821bc2fb52e9e5007";
};
}
{
- name = "_babel_plugin_transform_react_display_name___plugin_transform_react_display_name_7.12.1.tgz";
+ name = "_babel_plugin_transform_property_literals___plugin_transform_property_literals_7.12.13.tgz";
path = fetchurl {
- name = "_babel_plugin_transform_react_display_name___plugin_transform_react_display_name_7.12.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.12.1.tgz";
- sha1 = "1cbcd0c3b1d6648c55374a22fc9b6b7e5341c00d";
+ name = "_babel_plugin_transform_property_literals___plugin_transform_property_literals_7.12.13.tgz";
+ url = "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.12.13.tgz";
+ sha1 = "4e6a9e37864d8f1b3bc0e2dce7bf8857db8b1a81";
};
}
{
- name = "_babel_plugin_transform_react_inline_elements___plugin_transform_react_inline_elements_7.12.1.tgz";
+ name = "_babel_plugin_transform_react_display_name___plugin_transform_react_display_name_7.12.13.tgz";
path = fetchurl {
- name = "_babel_plugin_transform_react_inline_elements___plugin_transform_react_inline_elements_7.12.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-react-inline-elements/-/plugin-transform-react-inline-elements-7.12.1.tgz";
- sha1 = "f7d507200923adbbdacb107feec7ad09cefae631";
+ name = "_babel_plugin_transform_react_display_name___plugin_transform_react_display_name_7.12.13.tgz";
+ url = "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.12.13.tgz";
+ sha1 = "c28effd771b276f4647411c9733dbb2d2da954bd";
};
}
{
- name = "_babel_plugin_transform_react_jsx_development___plugin_transform_react_jsx_development_7.12.7.tgz";
+ name = "_babel_plugin_transform_react_inline_elements___plugin_transform_react_inline_elements_7.12.13.tgz";
path = fetchurl {
- name = "_babel_plugin_transform_react_jsx_development___plugin_transform_react_jsx_development_7.12.7.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.12.7.tgz";
- sha1 = "4c2a647de79c7e2b16bfe4540677ba3121e82a08";
+ name = "_babel_plugin_transform_react_inline_elements___plugin_transform_react_inline_elements_7.12.13.tgz";
+ url = "https://registry.yarnpkg.com/@babel/plugin-transform-react-inline-elements/-/plugin-transform-react-inline-elements-7.12.13.tgz";
+ sha1 = "0a9e1496e51c9e9cf8751165a23c79bd753dba7d";
};
}
{
- name = "_babel_plugin_transform_react_jsx_self___plugin_transform_react_jsx_self_7.12.1.tgz";
+ name = "_babel_plugin_transform_react_jsx_development___plugin_transform_react_jsx_development_7.12.17.tgz";
path = fetchurl {
- name = "_babel_plugin_transform_react_jsx_self___plugin_transform_react_jsx_self_7.12.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.12.1.tgz";
- sha1 = "ef43cbca2a14f1bd17807dbe4376ff89d714cf28";
+ name = "_babel_plugin_transform_react_jsx_development___plugin_transform_react_jsx_development_7.12.17.tgz";
+ url = "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.12.17.tgz";
+ sha1 = "f510c0fa7cd7234153539f9a362ced41a5ca1447";
};
}
{
- name = "_babel_plugin_transform_react_jsx_source___plugin_transform_react_jsx_source_7.12.1.tgz";
+ name = "_babel_plugin_transform_react_jsx___plugin_transform_react_jsx_7.13.12.tgz";
path = fetchurl {
- name = "_babel_plugin_transform_react_jsx_source___plugin_transform_react_jsx_source_7.12.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.12.1.tgz";
- sha1 = "d07de6863f468da0809edcf79a1aa8ce2a82a26b";
- };
- }
- {
- name = "_babel_plugin_transform_react_jsx___plugin_transform_react_jsx_7.12.7.tgz";
- path = fetchurl {
- name = "_babel_plugin_transform_react_jsx___plugin_transform_react_jsx_7.12.7.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.12.7.tgz";
- sha1 = "8b14d45f6eccd41b7f924bcb65c021e9f0a06f7f";
+ name = "_babel_plugin_transform_react_jsx___plugin_transform_react_jsx_7.13.12.tgz";
+ url = "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.13.12.tgz";
+ sha1 = "1df5dfaf0f4b784b43e96da6f28d630e775f68b3";
};
}
{
@@ -754,107 +818,107 @@
};
}
{
- name = "_babel_plugin_transform_regenerator___plugin_transform_regenerator_7.12.1.tgz";
+ name = "_babel_plugin_transform_regenerator___plugin_transform_regenerator_7.13.15.tgz";
path = fetchurl {
- name = "_babel_plugin_transform_regenerator___plugin_transform_regenerator_7.12.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.12.1.tgz";
- sha1 = "5f0a28d842f6462281f06a964e88ba8d7ab49753";
+ name = "_babel_plugin_transform_regenerator___plugin_transform_regenerator_7.13.15.tgz";
+ url = "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.13.15.tgz";
+ sha1 = "e5eb28945bf8b6563e7f818945f966a8d2997f39";
};
}
{
- name = "_babel_plugin_transform_reserved_words___plugin_transform_reserved_words_7.12.1.tgz";
+ name = "_babel_plugin_transform_reserved_words___plugin_transform_reserved_words_7.12.13.tgz";
path = fetchurl {
- name = "_babel_plugin_transform_reserved_words___plugin_transform_reserved_words_7.12.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.12.1.tgz";
- sha1 = "6fdfc8cc7edcc42b36a7c12188c6787c873adcd8";
+ name = "_babel_plugin_transform_reserved_words___plugin_transform_reserved_words_7.12.13.tgz";
+ url = "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.12.13.tgz";
+ sha1 = "7d9988d4f06e0fe697ea1d9803188aa18b472695";
};
}
{
- name = "_babel_plugin_transform_runtime___plugin_transform_runtime_7.12.1.tgz";
+ name = "_babel_plugin_transform_runtime___plugin_transform_runtime_7.13.15.tgz";
path = fetchurl {
- name = "_babel_plugin_transform_runtime___plugin_transform_runtime_7.12.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.12.1.tgz";
- sha1 = "04b792057eb460389ff6a4198e377614ea1e7ba5";
+ name = "_babel_plugin_transform_runtime___plugin_transform_runtime_7.13.15.tgz";
+ url = "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.13.15.tgz";
+ sha1 = "2eddf585dd066b84102517e10a577f24f76a9cd7";
};
}
{
- name = "_babel_plugin_transform_shorthand_properties___plugin_transform_shorthand_properties_7.12.1.tgz";
+ name = "_babel_plugin_transform_shorthand_properties___plugin_transform_shorthand_properties_7.12.13.tgz";
path = fetchurl {
- name = "_babel_plugin_transform_shorthand_properties___plugin_transform_shorthand_properties_7.12.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.12.1.tgz";
- sha1 = "0bf9cac5550fce0cfdf043420f661d645fdc75e3";
+ name = "_babel_plugin_transform_shorthand_properties___plugin_transform_shorthand_properties_7.12.13.tgz";
+ url = "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.12.13.tgz";
+ sha1 = "db755732b70c539d504c6390d9ce90fe64aff7ad";
};
}
{
- name = "_babel_plugin_transform_spread___plugin_transform_spread_7.12.1.tgz";
+ name = "_babel_plugin_transform_spread___plugin_transform_spread_7.13.0.tgz";
path = fetchurl {
- name = "_babel_plugin_transform_spread___plugin_transform_spread_7.12.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.12.1.tgz";
- sha1 = "527f9f311be4ec7fdc2b79bb89f7bf884b3e1e1e";
+ name = "_babel_plugin_transform_spread___plugin_transform_spread_7.13.0.tgz";
+ url = "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.13.0.tgz";
+ sha1 = "84887710e273c1815ace7ae459f6f42a5d31d5fd";
};
}
{
- name = "_babel_plugin_transform_sticky_regex___plugin_transform_sticky_regex_7.12.7.tgz";
+ name = "_babel_plugin_transform_sticky_regex___plugin_transform_sticky_regex_7.12.13.tgz";
path = fetchurl {
- name = "_babel_plugin_transform_sticky_regex___plugin_transform_sticky_regex_7.12.7.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.7.tgz";
- sha1 = "560224613ab23987453948ed21d0b0b193fa7fad";
+ name = "_babel_plugin_transform_sticky_regex___plugin_transform_sticky_regex_7.12.13.tgz";
+ url = "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.13.tgz";
+ sha1 = "760ffd936face73f860ae646fb86ee82f3d06d1f";
};
}
{
- name = "_babel_plugin_transform_template_literals___plugin_transform_template_literals_7.12.1.tgz";
+ name = "_babel_plugin_transform_template_literals___plugin_transform_template_literals_7.13.0.tgz";
path = fetchurl {
- name = "_babel_plugin_transform_template_literals___plugin_transform_template_literals_7.12.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.12.1.tgz";
- sha1 = "b43ece6ed9a79c0c71119f576d299ef09d942843";
+ name = "_babel_plugin_transform_template_literals___plugin_transform_template_literals_7.13.0.tgz";
+ url = "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.13.0.tgz";
+ sha1 = "a36049127977ad94438dee7443598d1cefdf409d";
};
}
{
- name = "_babel_plugin_transform_typeof_symbol___plugin_transform_typeof_symbol_7.12.1.tgz";
+ name = "_babel_plugin_transform_typeof_symbol___plugin_transform_typeof_symbol_7.12.13.tgz";
path = fetchurl {
- name = "_babel_plugin_transform_typeof_symbol___plugin_transform_typeof_symbol_7.12.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.12.1.tgz";
- sha1 = "9ca6be343d42512fbc2e68236a82ae64bc7af78a";
+ name = "_babel_plugin_transform_typeof_symbol___plugin_transform_typeof_symbol_7.12.13.tgz";
+ url = "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.12.13.tgz";
+ sha1 = "785dd67a1f2ea579d9c2be722de8c84cb85f5a7f";
};
}
{
- name = "_babel_plugin_transform_unicode_escapes___plugin_transform_unicode_escapes_7.12.1.tgz";
+ name = "_babel_plugin_transform_unicode_escapes___plugin_transform_unicode_escapes_7.12.13.tgz";
path = fetchurl {
- name = "_babel_plugin_transform_unicode_escapes___plugin_transform_unicode_escapes_7.12.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.12.1.tgz";
- sha1 = "5232b9f81ccb07070b7c3c36c67a1b78f1845709";
+ name = "_babel_plugin_transform_unicode_escapes___plugin_transform_unicode_escapes_7.12.13.tgz";
+ url = "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.12.13.tgz";
+ sha1 = "840ced3b816d3b5127dd1d12dcedc5dead1a5e74";
};
}
{
- name = "_babel_plugin_transform_unicode_regex___plugin_transform_unicode_regex_7.12.1.tgz";
+ name = "_babel_plugin_transform_unicode_regex___plugin_transform_unicode_regex_7.12.13.tgz";
path = fetchurl {
- name = "_babel_plugin_transform_unicode_regex___plugin_transform_unicode_regex_7.12.1.tgz";
- url = "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.12.1.tgz";
- sha1 = "cc9661f61390db5c65e3febaccefd5c6ac3faecb";
+ name = "_babel_plugin_transform_unicode_regex___plugin_transform_unicode_regex_7.12.13.tgz";
+ url = "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.12.13.tgz";
+ sha1 = "b52521685804e155b1202e83fc188d34bb70f5ac";
};
}
{
- name = "_babel_preset_env___preset_env_7.12.7.tgz";
+ name = "_babel_preset_env___preset_env_7.14.1.tgz";
path = fetchurl {
- name = "_babel_preset_env___preset_env_7.12.7.tgz";
- url = "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.12.7.tgz";
- sha1 = "54ea21dbe92caf6f10cb1a0a576adc4ebf094b55";
+ name = "_babel_preset_env___preset_env_7.14.1.tgz";
+ url = "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.14.1.tgz";
+ sha1 = "b55914e2e68885ea03f69600b2d3537e54574a93";
};
}
{
- name = "_babel_preset_modules___preset_modules_0.1.3.tgz";
+ name = "_babel_preset_modules___preset_modules_0.1.4.tgz";
path = fetchurl {
- name = "_babel_preset_modules___preset_modules_0.1.3.tgz";
- url = "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.3.tgz";
- sha1 = "13242b53b5ef8c883c3cf7dddd55b36ce80fbc72";
+ name = "_babel_preset_modules___preset_modules_0.1.4.tgz";
+ url = "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.4.tgz";
+ sha1 = "362f2b68c662842970fdb5e254ffc8fc1c2e415e";
};
}
{
- name = "_babel_preset_react___preset_react_7.12.7.tgz";
+ name = "_babel_preset_react___preset_react_7.13.13.tgz";
path = fetchurl {
- name = "_babel_preset_react___preset_react_7.12.7.tgz";
- url = "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.12.7.tgz";
- sha1 = "36d61d83223b07b6ac4ec55cf016abb0f70be83b";
+ name = "_babel_preset_react___preset_react_7.13.13.tgz";
+ url = "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.13.13.tgz";
+ sha1 = "fa6895a96c50763fe693f9148568458d5a839761";
};
}
{
@@ -874,35 +938,35 @@
};
}
{
- name = "_babel_runtime___runtime_7.12.5.tgz";
+ name = "_babel_runtime___runtime_7.14.0.tgz";
path = fetchurl {
- name = "_babel_runtime___runtime_7.12.5.tgz";
- url = "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.12.5.tgz";
- sha1 = "410e7e487441e1b360c29be715d870d9b985882e";
+ name = "_babel_runtime___runtime_7.14.0.tgz";
+ url = "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.14.0.tgz";
+ sha1 = "46794bc20b612c5f75e62dd071e24dfd95f1cbe6";
};
}
{
- name = "_babel_template___template_7.12.7.tgz";
+ name = "_babel_template___template_7.12.13.tgz";
path = fetchurl {
- name = "_babel_template___template_7.12.7.tgz";
- url = "https://registry.yarnpkg.com/@babel/template/-/template-7.12.7.tgz";
- sha1 = "c817233696018e39fbb6c491d2fb684e05ed43bc";
+ name = "_babel_template___template_7.12.13.tgz";
+ url = "https://registry.yarnpkg.com/@babel/template/-/template-7.12.13.tgz";
+ sha1 = "530265be8a2589dbb37523844c5bcb55947fb327";
};
}
{
- name = "_babel_traverse___traverse_7.12.7.tgz";
+ name = "_babel_traverse___traverse_7.14.0.tgz";
path = fetchurl {
- name = "_babel_traverse___traverse_7.12.7.tgz";
- url = "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.12.7.tgz";
- sha1 = "572a722408681cef17d6b0bef69ef2e728ca69f1";
+ name = "_babel_traverse___traverse_7.14.0.tgz";
+ url = "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.14.0.tgz";
+ sha1 = "cea0dc8ae7e2b1dec65f512f39f3483e8cc95aef";
};
}
{
- name = "_babel_types___types_7.12.7.tgz";
+ name = "_babel_types___types_7.14.1.tgz";
path = fetchurl {
- name = "_babel_types___types_7.12.7.tgz";
- url = "https://registry.yarnpkg.com/@babel/types/-/types-7.12.7.tgz";
- sha1 = "6039ff1e242640a29452c9ae572162ec9a8f5d13";
+ name = "_babel_types___types_7.14.1.tgz";
+ url = "https://registry.yarnpkg.com/@babel/types/-/types-7.14.1.tgz";
+ sha1 = "095bd12f1c08ab63eff6e8f7745fa7c9cc15a9db";
};
}
{
@@ -913,14 +977,6 @@
sha1 = "75a2e8b51cb758a7553d6804a5932d7aace75c39";
};
}
- {
- name = "_clusterws_cws___cws_3.0.0.tgz";
- path = fetchurl {
- name = "_clusterws_cws___cws_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/@clusterws/cws/-/cws-3.0.0.tgz";
- sha1 = "518fc8e7d9066e220f6f6aef3158cc14d5a1e98e";
- };
- }
{
name = "_cnakazawa_watch___watch_1.0.4.tgz";
path = fetchurl {
@@ -930,27 +986,11 @@
};
}
{
- name = "_emotion_cache___cache_10.0.19.tgz";
+ name = "_emotion_cache___cache_11.1.3.tgz";
path = fetchurl {
- name = "_emotion_cache___cache_10.0.19.tgz";
- url = "https://registry.yarnpkg.com/@emotion/cache/-/cache-10.0.19.tgz";
- sha1 = "d258d94d9c707dcadaf1558def968b86bb87ad71";
- };
- }
- {
- name = "_emotion_core___core_10.0.17.tgz";
- path = fetchurl {
- name = "_emotion_core___core_10.0.17.tgz";
- url = "https://registry.yarnpkg.com/@emotion/core/-/core-10.0.17.tgz";
- sha1 = "3367376709721f4ee2068cff54ba581d362789d8";
- };
- }
- {
- name = "_emotion_css___css_10.0.14.tgz";
- path = fetchurl {
- name = "_emotion_css___css_10.0.14.tgz";
- url = "https://registry.yarnpkg.com/@emotion/css/-/css-10.0.14.tgz";
- sha1 = "95dacabdd0e22845d1a1b0b5968d9afa34011139";
+ name = "_emotion_cache___cache_11.1.3.tgz";
+ url = "https://registry.yarnpkg.com/@emotion/cache/-/cache-11.1.3.tgz";
+ sha1 = "c7683a9484bcd38d5562f2b9947873cf66829afd";
};
}
{
@@ -962,35 +1002,35 @@
};
}
{
- name = "_emotion_memoize___memoize_0.7.4.tgz";
+ name = "_emotion_memoize___memoize_0.7.5.tgz";
path = fetchurl {
- name = "_emotion_memoize___memoize_0.7.4.tgz";
- url = "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.7.4.tgz";
- sha1 = "19bf0f5af19149111c40d98bb0cf82119f5d9eeb";
+ name = "_emotion_memoize___memoize_0.7.5.tgz";
+ url = "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.7.5.tgz";
+ sha1 = "2c40f81449a4e554e9fc6396910ed4843ec2be50";
};
}
{
- name = "_emotion_serialize___serialize_0.11.16.tgz";
+ name = "_emotion_react___react_11.1.4.tgz";
path = fetchurl {
- name = "_emotion_serialize___serialize_0.11.16.tgz";
- url = "https://registry.yarnpkg.com/@emotion/serialize/-/serialize-0.11.16.tgz";
- sha1 = "dee05f9e96ad2fb25a5206b6d759b2d1ed3379ad";
+ name = "_emotion_react___react_11.1.4.tgz";
+ url = "https://registry.yarnpkg.com/@emotion/react/-/react-11.1.4.tgz";
+ sha1 = "ddee4247627ff7dd7d0c6ae52f1cfd6b420357d2";
};
}
{
- name = "_emotion_sheet___sheet_0.9.3.tgz";
+ name = "_emotion_serialize___serialize_1.0.0.tgz";
path = fetchurl {
- name = "_emotion_sheet___sheet_0.9.3.tgz";
- url = "https://registry.yarnpkg.com/@emotion/sheet/-/sheet-0.9.3.tgz";
- sha1 = "689f135ecf87d3c650ed0c4f5ddcbe579883564a";
+ name = "_emotion_serialize___serialize_1.0.0.tgz";
+ url = "https://registry.yarnpkg.com/@emotion/serialize/-/serialize-1.0.0.tgz";
+ sha1 = "1a61f4f037cf39995c97fc80ebe99abc7b191ca9";
};
}
{
- name = "_emotion_stylis___stylis_0.8.4.tgz";
+ name = "_emotion_sheet___sheet_1.0.1.tgz";
path = fetchurl {
- name = "_emotion_stylis___stylis_0.8.4.tgz";
- url = "https://registry.yarnpkg.com/@emotion/stylis/-/stylis-0.8.4.tgz";
- sha1 = "6c51afdf1dd0d73666ba09d2eb6c25c220d6fe4c";
+ name = "_emotion_sheet___sheet_1.0.1.tgz";
+ url = "https://registry.yarnpkg.com/@emotion/sheet/-/sheet-1.0.1.tgz";
+ sha1 = "245f54abb02dfd82326e28689f34c27aa9b2a698";
};
}
{
@@ -1002,35 +1042,27 @@
};
}
{
- name = "_emotion_utils___utils_0.11.2.tgz";
+ name = "_emotion_utils___utils_1.0.0.tgz";
path = fetchurl {
- name = "_emotion_utils___utils_0.11.2.tgz";
- url = "https://registry.yarnpkg.com/@emotion/utils/-/utils-0.11.2.tgz";
- sha1 = "713056bfdffb396b0a14f1c8f18e7b4d0d200183";
+ name = "_emotion_utils___utils_1.0.0.tgz";
+ url = "https://registry.yarnpkg.com/@emotion/utils/-/utils-1.0.0.tgz";
+ sha1 = "abe06a83160b10570816c913990245813a2fd6af";
};
}
{
- name = "_emotion_utils___utils_0.11.3.tgz";
+ name = "_emotion_weak_memoize___weak_memoize_0.2.5.tgz";
path = fetchurl {
- name = "_emotion_utils___utils_0.11.3.tgz";
- url = "https://registry.yarnpkg.com/@emotion/utils/-/utils-0.11.3.tgz";
- sha1 = "a759863867befa7e583400d322652a3f44820924";
+ name = "_emotion_weak_memoize___weak_memoize_0.2.5.tgz";
+ url = "https://registry.yarnpkg.com/@emotion/weak-memoize/-/weak-memoize-0.2.5.tgz";
+ sha1 = "8eed982e2ee6f7f4e44c253e12962980791efd46";
};
}
{
- name = "_emotion_weak_memoize___weak_memoize_0.2.4.tgz";
+ name = "_eslint_eslintrc___eslintrc_0.4.1.tgz";
path = fetchurl {
- name = "_emotion_weak_memoize___weak_memoize_0.2.4.tgz";
- url = "https://registry.yarnpkg.com/@emotion/weak-memoize/-/weak-memoize-0.2.4.tgz";
- sha1 = "622a72bebd1e3f48d921563b4b60a762295a81fc";
- };
- }
- {
- name = "_eslint_eslintrc___eslintrc_0.2.1.tgz";
- path = fetchurl {
- name = "_eslint_eslintrc___eslintrc_0.2.1.tgz";
- url = "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.2.1.tgz";
- sha1 = "f72069c330461a06684d119384435e12a5d76e3c";
+ name = "_eslint_eslintrc___eslintrc_0.4.1.tgz";
+ url = "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.4.1.tgz";
+ sha1 = "442763b88cecbe3ee0ec7ca6d6dd6168550cbf14";
};
}
{
@@ -1186,11 +1218,19 @@
};
}
{
- name = "_rails_ujs___ujs_6.0.3.tgz";
+ name = "_polka_url___url_1.0.0_next.11.tgz";
path = fetchurl {
- name = "_rails_ujs___ujs_6.0.3.tgz";
- url = "https://registry.yarnpkg.com/@rails/ujs/-/ujs-6.0.3.tgz";
- sha1 = "e68a03278e30daea6a110aac5dfa33c60c53055d";
+ name = "_polka_url___url_1.0.0_next.11.tgz";
+ url = "https://registry.yarnpkg.com/@polka/url/-/url-1.0.0-next.11.tgz";
+ sha1 = "aeb16f50649a91af79dbe36574b66d0f9e4d9f71";
+ };
+ }
+ {
+ name = "_rails_ujs___ujs_6.1.3.tgz";
+ path = fetchurl {
+ name = "_rails_ujs___ujs_6.1.3.tgz";
+ url = "https://registry.yarnpkg.com/@rails/ujs/-/ujs-6.1.3.tgz";
+ sha1 = "90ef26caa0925492b1a3b1495db09cfbe49e745e";
};
}
{
@@ -1218,19 +1258,19 @@
};
}
{
- name = "_testing_library_jest_dom___jest_dom_5.11.6.tgz";
+ name = "_testing_library_jest_dom___jest_dom_5.12.0.tgz";
path = fetchurl {
- name = "_testing_library_jest_dom___jest_dom_5.11.6.tgz";
- url = "https://registry.yarnpkg.com/@testing-library/jest-dom/-/jest-dom-5.11.6.tgz";
- sha1 = "782940e82e5cd17bc0a36f15156ba16f3570ac81";
+ name = "_testing_library_jest_dom___jest_dom_5.12.0.tgz";
+ url = "https://registry.yarnpkg.com/@testing-library/jest-dom/-/jest-dom-5.12.0.tgz";
+ sha1 = "6a5d340b092c44b7bce17a4791b47d9bc2c61443";
};
}
{
- name = "_testing_library_react___react_11.2.2.tgz";
+ name = "_testing_library_react___react_11.2.6.tgz";
path = fetchurl {
- name = "_testing_library_react___react_11.2.2.tgz";
- url = "https://registry.yarnpkg.com/@testing-library/react/-/react-11.2.2.tgz";
- sha1 = "099c6c195140ff069211143cb31c0f8337bdb7b7";
+ name = "_testing_library_react___react_11.2.6.tgz";
+ url = "https://registry.yarnpkg.com/@testing-library/react/-/react-11.2.6.tgz";
+ sha1 = "586a23adc63615985d85be0c903f374dab19200b";
};
}
{
@@ -1313,6 +1353,14 @@
sha1 = "039af35fe26bec35003e8d86d2ee9c586354348f";
};
}
+ {
+ name = "_types_hoist_non_react_statics___hoist_non_react_statics_3.3.1.tgz";
+ path = fetchurl {
+ name = "_types_hoist_non_react_statics___hoist_non_react_statics_3.3.1.tgz";
+ url = "https://registry.yarnpkg.com/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.1.tgz";
+ sha1 = "1124aafe5118cb591977aeb1ceaaed1070eb039f";
+ };
+ }
{
name = "_types_istanbul_lib_coverage___istanbul_lib_coverage_2.0.3.tgz";
path = fetchurl {
@@ -1409,6 +1457,14 @@
sha1 = "5bb52ee68d0f8efa9cc0099920e56be6cc4e37f3";
};
}
+ {
+ name = "_types_prop_types___prop_types_15.7.3.tgz";
+ path = fetchurl {
+ name = "_types_prop_types___prop_types_15.7.3.tgz";
+ url = "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.3.tgz";
+ sha1 = "2ab0d5da2e5815f94b0b9d4b95d1e5f243ab2ca7";
+ };
+ }
{
name = "_types_q___q_1.5.2.tgz";
path = fetchurl {
@@ -1417,6 +1473,30 @@
sha1 = "690a1475b84f2a884fd07cd797c00f5f31356ea8";
};
}
+ {
+ name = "_types_react_redux___react_redux_7.1.16.tgz";
+ path = fetchurl {
+ name = "_types_react_redux___react_redux_7.1.16.tgz";
+ url = "https://registry.yarnpkg.com/@types/react-redux/-/react-redux-7.1.16.tgz";
+ sha1 = "0fbd04c2500c12105494c83d4a3e45c084e3cb21";
+ };
+ }
+ {
+ name = "_types_react___react_17.0.3.tgz";
+ path = fetchurl {
+ name = "_types_react___react_17.0.3.tgz";
+ url = "https://registry.yarnpkg.com/@types/react/-/react-17.0.3.tgz";
+ sha1 = "ba6e215368501ac3826951eef2904574c262cc79";
+ };
+ }
+ {
+ name = "_types_scheduler___scheduler_0.16.1.tgz";
+ path = fetchurl {
+ name = "_types_scheduler___scheduler_0.16.1.tgz";
+ url = "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.1.tgz";
+ sha1 = "18845205e86ff0038517aab7a18a62a6b9f71275";
+ };
+ }
{
name = "_types_schema_utils___schema_utils_1.0.0.tgz";
path = fetchurl {
@@ -1650,11 +1730,11 @@
};
}
{
- name = "acorn_jsx___acorn_jsx_5.2.0.tgz";
+ name = "acorn_jsx___acorn_jsx_5.3.1.tgz";
path = fetchurl {
- name = "acorn_jsx___acorn_jsx_5.2.0.tgz";
- url = "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.2.0.tgz";
- sha1 = "4c66069173d6fdd68ed85239fc256226182b2ebe";
+ name = "acorn_jsx___acorn_jsx_5.3.1.tgz";
+ url = "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.1.tgz";
+ sha1 = "fc8661e11b7ac1539c47dbfea2e72b3af34d267b";
};
}
{
@@ -1905,6 +1985,14 @@
sha1 = "bcd6791ea5ae09725e17e5ad988134cd40b3d911";
};
}
+ {
+ name = "argparse___argparse_2.0.1.tgz";
+ path = fetchurl {
+ name = "argparse___argparse_2.0.1.tgz";
+ url = "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz";
+ sha1 = "246f50f3ca78a3240f6c997e8a9bd1eac49e4b38";
+ };
+ }
{
name = "aria_query___aria_query_4.2.2.tgz";
path = fetchurl {
@@ -1954,11 +2042,11 @@
};
}
{
- name = "array_includes___array_includes_3.1.1.tgz";
+ name = "array_includes___array_includes_3.1.3.tgz";
path = fetchurl {
- name = "array_includes___array_includes_3.1.1.tgz";
- url = "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.1.tgz";
- sha1 = "cdd67e6852bdf9c1215460786732255ed2459348";
+ name = "array_includes___array_includes_3.1.3.tgz";
+ url = "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.3.tgz";
+ sha1 = "c7f619b382ad2afaf5326cddfdc0afc61af7690a";
};
}
{
@@ -1994,11 +2082,11 @@
};
}
{
- name = "array.prototype.flatmap___array.prototype.flatmap_1.2.3.tgz";
+ name = "array.prototype.flatmap___array.prototype.flatmap_1.2.4.tgz";
path = fetchurl {
- name = "array.prototype.flatmap___array.prototype.flatmap_1.2.3.tgz";
- url = "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.2.3.tgz";
- sha1 = "1c13f84a178566042dd63de4414440db9222e443";
+ name = "array.prototype.flatmap___array.prototype.flatmap_1.2.4.tgz";
+ url = "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.2.4.tgz";
+ sha1 = "94cfd47cc1556ec0747d97f7c7738c58122004c9";
};
}
{
@@ -2058,11 +2146,11 @@
};
}
{
- name = "astral_regex___astral_regex_1.0.0.tgz";
+ name = "astral_regex___astral_regex_2.0.0.tgz";
path = fetchurl {
- name = "astral_regex___astral_regex_1.0.0.tgz";
- url = "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz";
- sha1 = "6c8c3fb827dd43ee3918f27b82782ab7658a6fd9";
+ name = "astral_regex___astral_regex_2.0.0.tgz";
+ url = "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz";
+ sha1 = "483143c567aeed4785759c0865786dc77d7d2e31";
};
}
{
@@ -2081,14 +2169,6 @@
sha1 = "dd379e94f0db8310b08291f9d64c3209766617fd";
};
}
- {
- name = "async___async_0.9.2.tgz";
- path = fetchurl {
- name = "async___async_0.9.2.tgz";
- url = "https://registry.yarnpkg.com/async/-/async-0.9.2.tgz";
- sha1 = "aea74d5e61c1f899613bf64bda66d4c78f2fd17d";
- };
- }
{
name = "async___async_2.6.3.tgz";
path = fetchurl {
@@ -2146,11 +2226,11 @@
};
}
{
- name = "axios___axios_0.21.0.tgz";
+ name = "axios___axios_0.21.1.tgz";
path = fetchurl {
- name = "axios___axios_0.21.0.tgz";
- url = "https://registry.yarnpkg.com/axios/-/axios-0.21.0.tgz";
- sha1 = "26df088803a2350dff2c27f96fef99fe49442aca";
+ name = "axios___axios_0.21.1.tgz";
+ url = "https://registry.yarnpkg.com/axios/-/axios-0.21.1.tgz";
+ sha1 = "22563481962f4d6bde9a76d516ef0e5d3c09b2b8";
};
}
{
@@ -2178,11 +2258,11 @@
};
}
{
- name = "babel_loader___babel_loader_8.2.1.tgz";
+ name = "babel_loader___babel_loader_8.2.2.tgz";
path = fetchurl {
- name = "babel_loader___babel_loader_8.2.1.tgz";
- url = "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.2.1.tgz";
- sha1 = "e53313254677e86f27536f5071d807e01d24ec00";
+ name = "babel_loader___babel_loader_8.2.2.tgz";
+ url = "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.2.2.tgz";
+ sha1 = "9363ce84c10c9a40e6c753748e1441b60c8a0b81";
};
}
{
@@ -2193,14 +2273,6 @@
sha1 = "84fda19c976ec5c6defef57f9427b3def66e17a3";
};
}
- {
- name = "babel_plugin_emotion___babel_plugin_emotion_10.0.33.tgz";
- path = fetchurl {
- name = "babel_plugin_emotion___babel_plugin_emotion_10.0.33.tgz";
- url = "https://registry.yarnpkg.com/babel-plugin-emotion/-/babel-plugin-emotion-10.0.33.tgz";
- sha1 = "ce1155dcd1783bbb9286051efee53f4e2be63e03";
- };
- }
{
name = "babel_plugin_istanbul___babel_plugin_istanbul_6.0.0.tgz";
path = fetchurl {
@@ -2233,6 +2305,30 @@
sha1 = "0f958a7cc6556b1e65344465d99111a1e5e10138";
};
}
+ {
+ name = "babel_plugin_polyfill_corejs2___babel_plugin_polyfill_corejs2_0.2.0.tgz";
+ path = fetchurl {
+ name = "babel_plugin_polyfill_corejs2___babel_plugin_polyfill_corejs2_0.2.0.tgz";
+ url = "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.2.0.tgz";
+ sha1 = "686775bf9a5aa757e10520903675e3889caeedc4";
+ };
+ }
+ {
+ name = "babel_plugin_polyfill_corejs3___babel_plugin_polyfill_corejs3_0.2.0.tgz";
+ path = fetchurl {
+ name = "babel_plugin_polyfill_corejs3___babel_plugin_polyfill_corejs3_0.2.0.tgz";
+ url = "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.2.0.tgz";
+ sha1 = "f4b4bb7b19329827df36ff56f6e6d367026cb7a2";
+ };
+ }
+ {
+ name = "babel_plugin_polyfill_regenerator___babel_plugin_polyfill_regenerator_0.2.0.tgz";
+ path = fetchurl {
+ name = "babel_plugin_polyfill_regenerator___babel_plugin_polyfill_regenerator_0.2.0.tgz";
+ url = "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.2.0.tgz";
+ sha1 = "853f5f5716f4691d98c84f8069c7636ea8da7ab8";
+ };
+ }
{
name = "babel_plugin_preval___babel_plugin_preval_5.0.0.tgz";
path = fetchurl {
@@ -2249,14 +2345,6 @@
sha1 = "ac51ca757f318938792fc91e1747515e9225386a";
};
}
- {
- name = "babel_plugin_syntax_jsx___babel_plugin_syntax_jsx_6.18.0.tgz";
- path = fetchurl {
- name = "babel_plugin_syntax_jsx___babel_plugin_syntax_jsx_6.18.0.tgz";
- url = "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz";
- sha1 = "0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946";
- };
- }
{
name = "babel_plugin_transform_react_remove_prop_types___babel_plugin_transform_react_remove_prop_types_0.4.24.tgz";
path = fetchurl {
@@ -2394,11 +2482,11 @@
};
}
{
- name = "bn.js___bn.js_4.11.9.tgz";
+ name = "bn.js___bn.js_4.12.0.tgz";
path = fetchurl {
- name = "bn.js___bn.js_4.11.9.tgz";
- url = "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.9.tgz";
- sha1 = "26d556829458f9d1e81fc48952493d0ba3507828";
+ name = "bn.js___bn.js_4.12.0.tgz";
+ url = "https://registry.yarnpkg.com/bn.js/-/bn.js-4.12.0.tgz";
+ sha1 = "775b3f278efbb9718eec7361f483fb36fbbfea88";
};
}
{
@@ -2545,6 +2633,14 @@
sha1 = "c071c1b3622c1c2e790799a37bb09473a4351cb6";
};
}
+ {
+ name = "browserslist___browserslist_4.16.3.tgz";
+ path = fetchurl {
+ name = "browserslist___browserslist_4.16.3.tgz";
+ url = "https://registry.yarnpkg.com/browserslist/-/browserslist-4.16.3.tgz";
+ sha1 = "340aa46940d7db878748567c5dea24a48ddf3717";
+ };
+ }
{
name = "bser___bser_2.1.1.tgz";
path = fetchurl {
@@ -2570,11 +2666,11 @@
};
}
{
- name = "buffer_writer___buffer_writer_1.0.1.tgz";
+ name = "buffer_writer___buffer_writer_2.0.0.tgz";
path = fetchurl {
- name = "buffer_writer___buffer_writer_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/buffer-writer/-/buffer-writer-1.0.1.tgz";
- sha1 = "22a936901e3029afcd7547eb4487ceb697a3bf08";
+ name = "buffer_writer___buffer_writer_2.0.0.tgz";
+ url = "https://registry.yarnpkg.com/buffer-writer/-/buffer-writer-2.0.0.tgz";
+ sha1 = "ce7eb81a38f7829db09c873f2fbb792c0c98ec04";
};
}
{
@@ -2593,6 +2689,14 @@
sha1 = "230ead344002988644841ab0244af8c44bbe3ef8";
};
}
+ {
+ name = "bufferutil___bufferutil_4.0.3.tgz";
+ path = fetchurl {
+ name = "bufferutil___bufferutil_4.0.3.tgz";
+ url = "https://registry.yarnpkg.com/bufferutil/-/bufferutil-4.0.3.tgz";
+ sha1 = "66724b756bed23cd7c28c4d306d7994f9943cc6b";
+ };
+ }
{
name = "builtin_status_codes___builtin_status_codes_3.0.0.tgz";
path = fetchurl {
@@ -2641,6 +2745,14 @@
sha1 = "0a7f46416831c8b662ee36fe4e7c59d76f666ab2";
};
}
+ {
+ name = "call_bind___call_bind_1.0.2.tgz";
+ path = fetchurl {
+ name = "call_bind___call_bind_1.0.2.tgz";
+ url = "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz";
+ sha1 = "b1d4e89e688119c3c9a903ad30abb2f6a919be3c";
+ };
+ }
{
name = "caller_callsite___caller_callsite_2.0.0.tgz";
path = fetchurl {
@@ -2729,6 +2841,14 @@
sha1 = "bebde28f893fa9594dadcaa7d6b8e2aa0299df20";
};
}
+ {
+ name = "caniuse_lite___caniuse_lite_1.0.30001191.tgz";
+ path = fetchurl {
+ name = "caniuse_lite___caniuse_lite_1.0.30001191.tgz";
+ url = "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001191.tgz";
+ sha1 = "bacb432b6701f690c8c5f7c680166b9a9f0843d9";
+ };
+ }
{
name = "capture_exit___capture_exit_2.0.0.tgz";
path = fetchurl {
@@ -2786,11 +2906,11 @@
};
}
{
- name = "chokidar___chokidar_3.4.1.tgz";
+ name = "chokidar___chokidar_3.5.1.tgz";
path = fetchurl {
- name = "chokidar___chokidar_3.4.1.tgz";
- url = "https://registry.yarnpkg.com/chokidar/-/chokidar-3.4.1.tgz";
- sha1 = "e905bdecf10eaa0a0b1db0c664481cc4cbc22ba1";
+ name = "chokidar___chokidar_3.5.1.tgz";
+ url = "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.1.tgz";
+ sha1 = "ee9ce7bbebd2b79f49f304799d5468e31e14e68a";
};
}
{
@@ -2866,11 +2986,11 @@
};
}
{
- name = "classnames___classnames_2.2.6.tgz";
+ name = "classnames___classnames_2.3.1.tgz";
path = fetchurl {
- name = "classnames___classnames_2.2.6.tgz";
- url = "https://registry.yarnpkg.com/classnames/-/classnames-2.2.6.tgz";
- sha1 = "43935bffdd291f326dad0a205309b38d00f650ce";
+ name = "classnames___classnames_2.3.1.tgz";
+ url = "https://registry.yarnpkg.com/classnames/-/classnames-2.3.1.tgz";
+ sha1 = "dfcfa3891e306ec1dad105d0e88f4417b8535e8e";
};
}
{
@@ -2970,11 +3090,11 @@
};
}
{
- name = "color_blend___color_blend_3.0.0.tgz";
+ name = "color_blend___color_blend_3.0.1.tgz";
path = fetchurl {
- name = "color_blend___color_blend_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/color-blend/-/color-blend-3.0.0.tgz";
- sha1 = "077073ee59ebce15e084f00590c5bf7577899cb5";
+ name = "color_blend___color_blend_3.0.1.tgz";
+ url = "https://registry.yarnpkg.com/color-blend/-/color-blend-3.0.1.tgz";
+ sha1 = "3882ed1190ca18760ffe11570d8537960171172b";
};
}
{
@@ -3033,6 +3153,14 @@
sha1 = "4d0b921325c14faf92633086a536db6e89564b1b";
};
}
+ {
+ name = "colorette___colorette_1.2.2.tgz";
+ path = fetchurl {
+ name = "colorette___colorette_1.2.2.tgz";
+ url = "https://registry.yarnpkg.com/colorette/-/colorette-1.2.2.tgz";
+ sha1 = "cbcc79d5e99caea2dbf10eb3a26fd8b3e6acfa94";
+ };
+ }
{
name = "combined_stream___combined_stream_1.0.8.tgz";
path = fetchurl {
@@ -3210,11 +3338,11 @@
};
}
{
- name = "core_js_compat___core_js_compat_3.7.0.tgz";
+ name = "core_js_compat___core_js_compat_3.10.1.tgz";
path = fetchurl {
- name = "core_js_compat___core_js_compat_3.7.0.tgz";
- url = "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.7.0.tgz";
- sha1 = "8479c5d3d672d83f1f5ab94cf353e57113e065ed";
+ name = "core_js_compat___core_js_compat_3.10.1.tgz";
+ url = "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.10.1.tgz";
+ sha1 = "62183a3a77ceeffcc420d907a3e6fc67d9b27f1c";
};
}
{
@@ -3233,6 +3361,14 @@
sha1 = "38831469f9922bded8ee21c9dc46985e0399308c";
};
}
+ {
+ name = "core_js___core_js_2.6.12.tgz";
+ path = fetchurl {
+ name = "core_js___core_js_2.6.12.tgz";
+ url = "https://registry.yarnpkg.com/core-js/-/core-js-2.6.12.tgz";
+ sha1 = "d9333dfa7b065e347cc5682219d6f690859cc2ec";
+ };
+ }
{
name = "core_util_is___core_util_is_1.0.2.tgz";
path = fetchurl {
@@ -3282,11 +3418,11 @@
};
}
{
- name = "cross_env___cross_env_7.0.2.tgz";
+ name = "cross_env___cross_env_7.0.3.tgz";
path = fetchurl {
- name = "cross_env___cross_env_7.0.2.tgz";
- url = "https://registry.yarnpkg.com/cross-env/-/cross-env-7.0.2.tgz";
- sha1 = "bd5ed31339a93a3418ac4f3ca9ca3403082ae5f9";
+ name = "cross_env___cross_env_7.0.3.tgz";
+ url = "https://registry.yarnpkg.com/cross-env/-/cross-env-7.0.3.tgz";
+ sha1 = "865264b29677dc015ba8418918965dd232fc54cf";
};
}
{
@@ -3378,11 +3514,11 @@
};
}
{
- name = "css_loader___css_loader_5.0.1.tgz";
+ name = "css_loader___css_loader_5.2.4.tgz";
path = fetchurl {
- name = "css_loader___css_loader_5.0.1.tgz";
- url = "https://registry.yarnpkg.com/css-loader/-/css-loader-5.0.1.tgz";
- sha1 = "9e4de0d6636a6266a585bd0900b422c85539d25f";
+ name = "css_loader___css_loader_5.2.4.tgz";
+ url = "https://registry.yarnpkg.com/css-loader/-/css-loader-5.2.4.tgz";
+ sha1 = "e985dcbce339812cb6104ef3670f08f9893a1536";
};
}
{
@@ -3458,11 +3594,11 @@
};
}
{
- name = "cssnano_preset_default___cssnano_preset_default_4.0.7.tgz";
+ name = "cssnano_preset_default___cssnano_preset_default_4.0.8.tgz";
path = fetchurl {
- name = "cssnano_preset_default___cssnano_preset_default_4.0.7.tgz";
- url = "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-4.0.7.tgz";
- sha1 = "51ec662ccfca0f88b396dcd9679cdb931be17f76";
+ name = "cssnano_preset_default___cssnano_preset_default_4.0.8.tgz";
+ url = "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-4.0.8.tgz";
+ sha1 = "920622b1fc1e95a34e8838203f1397a504f2d3ff";
};
}
{
@@ -3498,11 +3634,11 @@
};
}
{
- name = "cssnano___cssnano_4.1.10.tgz";
+ name = "cssnano___cssnano_4.1.11.tgz";
path = fetchurl {
- name = "cssnano___cssnano_4.1.10.tgz";
- url = "https://registry.yarnpkg.com/cssnano/-/cssnano-4.1.10.tgz";
- sha1 = "0ac41f0b13d13d465487e111b778d42da631b8b2";
+ name = "cssnano___cssnano_4.1.11.tgz";
+ url = "https://registry.yarnpkg.com/cssnano/-/cssnano-4.1.11.tgz";
+ sha1 = "c7b5f5b81da269cb1fd982cb960c1200910c9a99";
};
}
{
@@ -3545,6 +3681,14 @@
sha1 = "a6893015b90e84dd6e85d0e3b442a1e84f2dbe0f";
};
}
+ {
+ name = "csstype___csstype_3.0.6.tgz";
+ path = fetchurl {
+ name = "csstype___csstype_3.0.6.tgz";
+ url = "https://registry.yarnpkg.com/csstype/-/csstype-3.0.6.tgz";
+ sha1 = "865d0b5833d7d8d40f4e5b8a6d76aea3de4725ef";
+ };
+ }
{
name = "cyclist___cyclist_1.0.1.tgz";
path = fetchurl {
@@ -3594,11 +3738,11 @@
};
}
{
- name = "debug___debug_3.2.6.tgz";
+ name = "debug___debug_3.2.7.tgz";
path = fetchurl {
- name = "debug___debug_3.2.6.tgz";
- url = "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz";
- sha1 = "e83d17de16d8a7efb7717edbe5fb10135eee629b";
+ name = "debug___debug_3.2.7.tgz";
+ url = "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz";
+ sha1 = "72580b7e9145fb39b6676f9c5e5fb100b934179a";
};
}
{
@@ -3730,11 +3874,11 @@
};
}
{
- name = "denque___denque_1.4.1.tgz";
+ name = "denque___denque_1.5.0.tgz";
path = fetchurl {
- name = "denque___denque_1.4.1.tgz";
- url = "https://registry.yarnpkg.com/denque/-/denque-1.4.1.tgz";
- sha1 = "6744ff7641c148c3f8a69c307e51235c1f4a37cf";
+ name = "denque___denque_1.5.0.tgz";
+ url = "https://registry.yarnpkg.com/denque/-/denque-1.5.0.tgz";
+ sha1 = "773de0686ff2d8ec2ff92914316a47b73b1c73de";
};
}
{
@@ -3769,6 +3913,14 @@
sha1 = "f0d66d03672a825cb1b73bdb3fe62310c8e552b7";
};
}
+ {
+ name = "detect_it___detect_it_4.0.1.tgz";
+ path = fetchurl {
+ name = "detect_it___detect_it_4.0.1.tgz";
+ url = "https://registry.yarnpkg.com/detect-it/-/detect-it-4.0.1.tgz";
+ sha1 = "3f8de6b8330f5086270571251bedf10aec049e18";
+ };
+ }
{
name = "detect_newline___detect_newline_3.1.0.tgz";
path = fetchurl {
@@ -3786,11 +3938,11 @@
};
}
{
- name = "detect_passive_events___detect_passive_events_2.0.1.tgz";
+ name = "detect_passive_events___detect_passive_events_2.0.3.tgz";
path = fetchurl {
- name = "detect_passive_events___detect_passive_events_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/detect-passive-events/-/detect-passive-events-2.0.1.tgz";
- sha1 = "fdbd6f6dd5e6ac10c6189a4cb26ab264d41c0835";
+ name = "detect_passive_events___detect_passive_events_2.0.3.tgz";
+ url = "https://registry.yarnpkg.com/detect-passive-events/-/detect-passive-events-2.0.3.tgz";
+ sha1 = "1f75ebf80660a66c615d8be23c3241cdda6977e0";
};
}
{
@@ -3946,11 +4098,11 @@
};
}
{
- name = "dotenv___dotenv_8.2.0.tgz";
+ name = "dotenv___dotenv_9.0.1.tgz";
path = fetchurl {
- name = "dotenv___dotenv_8.2.0.tgz";
- url = "https://registry.yarnpkg.com/dotenv/-/dotenv-8.2.0.tgz";
- sha1 = "97e619259ada750eea3e4ea3e26bceea5424b16a";
+ name = "dotenv___dotenv_9.0.1.tgz";
+ url = "https://registry.yarnpkg.com/dotenv/-/dotenv-9.0.1.tgz";
+ sha1 = "a889a28a3a515812dde1e7f8183ef5cdf3186b97";
};
}
{
@@ -3993,14 +4145,6 @@
sha1 = "48661287573dcc53e366c7a1ae52c3a120eec9ba";
};
}
- {
- name = "ejs___ejs_3.1.5.tgz";
- path = fetchurl {
- name = "ejs___ejs_3.1.5.tgz";
- url = "https://registry.yarnpkg.com/ejs/-/ejs-3.1.5.tgz";
- sha1 = "aed723844dc20acb4b170cd9ab1017e476a0d93b";
- };
- }
{
name = "electron_to_chromium___electron_to_chromium_1.3.574.tgz";
path = fetchurl {
@@ -4018,11 +4162,19 @@
};
}
{
- name = "elliptic___elliptic_6.5.3.tgz";
+ name = "electron_to_chromium___electron_to_chromium_1.3.672.tgz";
path = fetchurl {
- name = "elliptic___elliptic_6.5.3.tgz";
- url = "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.3.tgz";
- sha1 = "cb59eb2efdaf73a0bd78ccd7015a62ad6e0f93d6";
+ name = "electron_to_chromium___electron_to_chromium_1.3.672.tgz";
+ url = "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.672.tgz";
+ sha1 = "3a6e335016dab4bc584d5292adc4f98f54541f6a";
+ };
+ }
+ {
+ name = "elliptic___elliptic_6.5.4.tgz";
+ path = fetchurl {
+ name = "elliptic___elliptic_6.5.4.tgz";
+ url = "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.4.tgz";
+ sha1 = "da37cebd31e79a1367e941b592ed1fbebd58abbb";
};
}
{
@@ -4098,11 +4250,11 @@
};
}
{
- name = "enhanced_resolve___enhanced_resolve_4.3.0.tgz";
+ name = "enhanced_resolve___enhanced_resolve_4.5.0.tgz";
path = fetchurl {
- name = "enhanced_resolve___enhanced_resolve_4.3.0.tgz";
- url = "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-4.3.0.tgz";
- sha1 = "3b806f3bfafc1ec7de69551ef93cca46c1704126";
+ name = "enhanced_resolve___enhanced_resolve_4.5.0.tgz";
+ url = "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz";
+ sha1 = "2f3cfd84dbe3b487f18f2db2ef1e064a571ca5ec";
};
}
{
@@ -4154,11 +4306,11 @@
};
}
{
- name = "es_abstract___es_abstract_1.18.0_next.1.tgz";
+ name = "es_abstract___es_abstract_1.18.0_next.2.tgz";
path = fetchurl {
- name = "es_abstract___es_abstract_1.18.0_next.1.tgz";
- url = "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.0-next.1.tgz";
- sha1 = "6e3a0a4bda717e5023ab3b8e90bec36108d22c68";
+ name = "es_abstract___es_abstract_1.18.0_next.2.tgz";
+ url = "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.0-next.2.tgz";
+ sha1 = "088101a55f0541f595e7e057199e27ddc8f3a5c2";
};
}
{
@@ -4306,19 +4458,19 @@
};
}
{
- name = "eslint_plugin_promise___eslint_plugin_promise_4.2.1.tgz";
+ name = "eslint_plugin_promise___eslint_plugin_promise_5.1.0.tgz";
path = fetchurl {
- name = "eslint_plugin_promise___eslint_plugin_promise_4.2.1.tgz";
- url = "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-4.2.1.tgz";
- sha1 = "845fd8b2260ad8f82564c1222fce44ad71d9418a";
+ name = "eslint_plugin_promise___eslint_plugin_promise_5.1.0.tgz";
+ url = "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-5.1.0.tgz";
+ sha1 = "fb2188fb734e4557993733b41aa1a688f46c6f24";
};
}
{
- name = "eslint_plugin_react___eslint_plugin_react_7.21.5.tgz";
+ name = "eslint_plugin_react___eslint_plugin_react_7.23.2.tgz";
path = fetchurl {
- name = "eslint_plugin_react___eslint_plugin_react_7.21.5.tgz";
- url = "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.21.5.tgz";
- sha1 = "50b21a412b9574bfe05b21db176e8b7b3b15bff3";
+ name = "eslint_plugin_react___eslint_plugin_react_7.23.2.tgz";
+ url = "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.23.2.tgz";
+ sha1 = "2d2291b0f95c03728b55869f01102290e792d494";
};
}
{
@@ -4370,11 +4522,11 @@
};
}
{
- name = "eslint___eslint_7.14.0.tgz";
+ name = "eslint___eslint_7.26.0.tgz";
path = fetchurl {
- name = "eslint___eslint_7.14.0.tgz";
- url = "https://registry.yarnpkg.com/eslint/-/eslint-7.14.0.tgz";
- sha1 = "2d2cac1d28174c510a97b377f122a5507958e344";
+ name = "eslint___eslint_7.26.0.tgz";
+ url = "https://registry.yarnpkg.com/eslint/-/eslint-7.26.0.tgz";
+ sha1 = "d416fdcdcb3236cd8f282065312813f8c13982f6";
};
}
{
@@ -4386,11 +4538,11 @@
};
}
{
- name = "espree___espree_7.3.0.tgz";
+ name = "espree___espree_7.3.1.tgz";
path = fetchurl {
- name = "espree___espree_7.3.0.tgz";
- url = "https://registry.yarnpkg.com/espree/-/espree-7.3.0.tgz";
- sha1 = "dc30437cf67947cf576121ebd780f15eeac72348";
+ name = "espree___espree_7.3.1.tgz";
+ url = "https://registry.yarnpkg.com/espree/-/espree-7.3.1.tgz";
+ sha1 = "f2df330b752c6f55019f8bd89b7660039c1bbbb6";
};
}
{
@@ -4402,11 +4554,11 @@
};
}
{
- name = "esquery___esquery_1.3.1.tgz";
+ name = "esquery___esquery_1.4.0.tgz";
path = fetchurl {
- name = "esquery___esquery_1.3.1.tgz";
- url = "https://registry.yarnpkg.com/esquery/-/esquery-1.3.1.tgz";
- sha1 = "b78b5828aa8e214e29fb74c4d5b752e1c033da57";
+ name = "esquery___esquery_1.4.0.tgz";
+ url = "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz";
+ sha1 = "2148ffc38b82e8c7057dfed48425b3e61f0f24a5";
};
}
{
@@ -4649,14 +4801,6 @@
sha1 = "3d8a5c66883a16a30ca8643e851f19baa7797917";
};
}
- {
- name = "faye_websocket___faye_websocket_0.10.0.tgz";
- path = fetchurl {
- name = "faye_websocket___faye_websocket_0.10.0.tgz";
- url = "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.10.0.tgz";
- sha1 = "4e492f8d04dfb6f89003507f6edbf2d501e7c6f4";
- };
- }
{
name = "faye_websocket___faye_websocket_0.11.3.tgz";
path = fetchurl {
@@ -4698,11 +4842,11 @@
};
}
{
- name = "file_entry_cache___file_entry_cache_5.0.1.tgz";
+ name = "file_entry_cache___file_entry_cache_6.0.1.tgz";
path = fetchurl {
- name = "file_entry_cache___file_entry_cache_5.0.1.tgz";
- url = "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-5.0.1.tgz";
- sha1 = "ca0f6efa6dd3d561333fb14515065c2fafdf439c";
+ name = "file_entry_cache___file_entry_cache_6.0.1.tgz";
+ url = "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz";
+ sha1 = "211b2dd9659cb0394b073e7323ac3c933d522027";
};
}
{
@@ -4729,22 +4873,6 @@
sha1 = "553a7b8446ff6f684359c445f1e37a05dacc33dd";
};
}
- {
- name = "filelist___filelist_1.0.1.tgz";
- path = fetchurl {
- name = "filelist___filelist_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/filelist/-/filelist-1.0.1.tgz";
- sha1 = "f10d1a3ae86c1694808e8f20906f43d4c9132dbb";
- };
- }
- {
- name = "filesize___filesize_6.1.0.tgz";
- path = fetchurl {
- name = "filesize___filesize_6.1.0.tgz";
- url = "https://registry.yarnpkg.com/filesize/-/filesize-6.1.0.tgz";
- sha1 = "e81bdaa780e2451d714d71c0d7a4f3238d37ad00";
- };
- }
{
name = "fill_range___fill_range_4.0.0.tgz";
path = fetchurl {
@@ -4785,14 +4913,6 @@
sha1 = "89b33fad4a4670daa94f855f7fbe31d6d84fe880";
};
}
- {
- name = "find_root___find_root_1.1.0.tgz";
- path = fetchurl {
- name = "find_root___find_root_1.1.0.tgz";
- url = "https://registry.yarnpkg.com/find-root/-/find-root-1.1.0.tgz";
- sha1 = "abcfc8ba76f708c42a97b3d685b7e9450bfb9ce4";
- };
- }
{
name = "find_up___find_up_2.1.0.tgz";
path = fetchurl {
@@ -4834,19 +4954,19 @@
};
}
{
- name = "flat_cache___flat_cache_2.0.1.tgz";
+ name = "flat_cache___flat_cache_3.0.4.tgz";
path = fetchurl {
- name = "flat_cache___flat_cache_2.0.1.tgz";
- url = "https://registry.yarnpkg.com/flat-cache/-/flat-cache-2.0.1.tgz";
- sha1 = "5d296d6f04bda44a4630a301413bdbc2ec085ec0";
+ name = "flat_cache___flat_cache_3.0.4.tgz";
+ url = "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz";
+ sha1 = "61b0338302b2fe9f957dcc32fc2a87f1c3048b11";
};
}
{
- name = "flatted___flatted_2.0.2.tgz";
+ name = "flatted___flatted_3.1.0.tgz";
path = fetchurl {
- name = "flatted___flatted_2.0.2.tgz";
- url = "https://registry.yarnpkg.com/flatted/-/flatted-2.0.2.tgz";
- sha1 = "4575b21e2bcee7434aa9be662f4b7b5f9c2b5138";
+ name = "flatted___flatted_3.1.0.tgz";
+ url = "https://registry.yarnpkg.com/flatted/-/flatted-3.1.0.tgz";
+ sha1 = "a5d06b4a8b01e3a63771daa5cb7a1903e2e57067";
};
}
{
@@ -4993,6 +5113,14 @@
sha1 = "fb738703ae8d2f9fe900c33836ddebee8b97f23e";
};
}
+ {
+ name = "fsevents___fsevents_2.3.2.tgz";
+ path = fetchurl {
+ name = "fsevents___fsevents_2.3.2.tgz";
+ url = "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz";
+ sha1 = "8a526f78b8fdf4623b709e0b975c52c24c02fd1a";
+ };
+ }
{
name = "function_bind___function_bind_1.1.1.tgz";
path = fetchurl {
@@ -5034,19 +5162,11 @@
};
}
{
- name = "generic_pool___generic_pool_2.4.3.tgz";
+ name = "gensync___gensync_1.0.0_beta.2.tgz";
path = fetchurl {
- name = "generic_pool___generic_pool_2.4.3.tgz";
- url = "https://registry.yarnpkg.com/generic-pool/-/generic-pool-2.4.3.tgz";
- sha1 = "780c36f69dfad05a5a045dd37be7adca11a4f6ff";
- };
- }
- {
- name = "gensync___gensync_1.0.0_beta.1.tgz";
- path = fetchurl {
- name = "gensync___gensync_1.0.0_beta.1.tgz";
- url = "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.1.tgz";
- sha1 = "58f4361ff987e5ff6e1e7a210827aa371eaac269";
+ name = "gensync___gensync_1.0.0_beta.2.tgz";
+ url = "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz";
+ sha1 = "32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0";
};
}
{
@@ -5057,6 +5177,14 @@
sha1 = "4f94412a82db32f36e3b0b9741f8a97feb031f7e";
};
}
+ {
+ name = "get_intrinsic___get_intrinsic_1.1.1.tgz";
+ path = fetchurl {
+ name = "get_intrinsic___get_intrinsic_1.1.1.tgz";
+ url = "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.1.tgz";
+ sha1 = "15f59f376f855c446963948f0d24cd3637b4abc6";
+ };
+ }
{
name = "get_package_type___get_package_type_0.1.0.tgz";
path = fetchurl {
@@ -5114,11 +5242,11 @@
};
}
{
- name = "glob___glob_7.1.6.tgz";
+ name = "glob___glob_7.1.7.tgz";
path = fetchurl {
- name = "glob___glob_7.1.6.tgz";
- url = "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz";
- sha1 = "141f33b81a7c2492e125594307480c46679278a6";
+ name = "glob___glob_7.1.7.tgz";
+ url = "https://registry.yarnpkg.com/glob/-/glob-7.1.7.tgz";
+ sha1 = "3b193e9233f01d42d0b3f78294bbeeb418f94a90";
};
}
{
@@ -5169,6 +5297,14 @@
sha1 = "1e564ee5c4dded2ab098b0f88f24702a3c56be13";
};
}
+ {
+ name = "globals___globals_13.6.0.tgz";
+ path = fetchurl {
+ name = "globals___globals_13.6.0.tgz";
+ url = "https://registry.yarnpkg.com/globals/-/globals-13.6.0.tgz";
+ sha1 = "d77138e53738567bb96a3916ff6f6b487af20ef7";
+ };
+ }
{
name = "globals___globals_9.18.0.tgz";
path = fetchurl {
@@ -5218,11 +5354,11 @@
};
}
{
- name = "gzip_size___gzip_size_5.1.1.tgz";
+ name = "gzip_size___gzip_size_6.0.0.tgz";
path = fetchurl {
- name = "gzip_size___gzip_size_5.1.1.tgz";
- url = "https://registry.yarnpkg.com/gzip-size/-/gzip-size-5.1.1.tgz";
- sha1 = "cb9bee692f87c0612b232840a873904e4c135274";
+ name = "gzip_size___gzip_size_6.0.0.tgz";
+ url = "https://registry.yarnpkg.com/gzip-size/-/gzip-size-6.0.0.tgz";
+ sha1 = "065367fd50c239c0671cbcbad5be3e2eeb10e462";
};
}
{
@@ -5410,11 +5546,11 @@
};
}
{
- name = "hosted_git_info___hosted_git_info_2.8.8.tgz";
+ name = "hosted_git_info___hosted_git_info_2.8.9.tgz";
path = fetchurl {
- name = "hosted_git_info___hosted_git_info_2.8.8.tgz";
- url = "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.8.tgz";
- sha1 = "7539bd4bc1e0e0a895815a2e0262420b12858488";
+ name = "hosted_git_info___hosted_git_info_2.8.9.tgz";
+ url = "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz";
+ sha1 = "dffc0bf9a21c02209090f2aa69429e1414daf3f9";
};
}
{
@@ -5441,14 +5577,6 @@
sha1 = "c1ce7a3168c8c6614033a4b5f7877f3b225f9c38";
};
}
- {
- name = "html_comment_regex___html_comment_regex_1.1.2.tgz";
- path = fetchurl {
- name = "html_comment_regex___html_comment_regex_1.1.2.tgz";
- url = "https://registry.yarnpkg.com/html-comment-regex/-/html-comment-regex-1.1.2.tgz";
- sha1 = "97d4688aeb5c81886a364faa0cad1dda14d433a7";
- };
- }
{
name = "html_encoding_sniffer___html_encoding_sniffer_2.0.1.tgz";
path = fetchurl {
@@ -5521,6 +5649,14 @@
sha1 = "92c9c1374c35085f75db359ec56cc257cbb93fa4";
};
}
+ {
+ name = "http_parser_js___http_parser_js_0.5.3.tgz";
+ path = fetchurl {
+ name = "http_parser_js___http_parser_js_0.5.3.tgz";
+ url = "https://registry.yarnpkg.com/http-parser-js/-/http-parser-js-0.5.3.tgz";
+ sha1 = "01d2709c79d41698bb01d4decc5e9da4e4a033d9";
+ };
+ }
{
name = "http_proxy_middleware___http_proxy_middleware_0.19.1.tgz";
path = fetchurl {
@@ -5570,11 +5706,11 @@
};
}
{
- name = "icss_utils___icss_utils_5.0.0.tgz";
+ name = "icss_utils___icss_utils_5.1.0.tgz";
path = fetchurl {
- name = "icss_utils___icss_utils_5.0.0.tgz";
- url = "https://registry.yarnpkg.com/icss-utils/-/icss-utils-5.0.0.tgz";
- sha1 = "03ed56c3accd32f9caaf1752ebf64ef12347bb84";
+ name = "icss_utils___icss_utils_5.1.0.tgz";
+ url = "https://registry.yarnpkg.com/icss-utils/-/icss-utils-5.1.0.tgz";
+ sha1 = "c6be6858abd013d768e98366ae47e25d5887b1ae";
};
}
{
@@ -5770,11 +5906,11 @@
};
}
{
- name = "internal_slot___internal_slot_1.0.2.tgz";
+ name = "internal_slot___internal_slot_1.0.3.tgz";
path = fetchurl {
- name = "internal_slot___internal_slot_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.2.tgz";
- sha1 = "9c2e9fb3cd8e5e4256c6f45fe310067fcfa378a3";
+ name = "internal_slot___internal_slot_1.0.3.tgz";
+ url = "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.3.tgz";
+ sha1 = "7347e307deeea2faac2ac6205d4bc7d34967f59c";
};
}
{
@@ -5786,11 +5922,11 @@
};
}
{
- name = "intersection_observer___intersection_observer_0.11.0.tgz";
+ name = "intersection_observer___intersection_observer_0.12.0.tgz";
path = fetchurl {
- name = "intersection_observer___intersection_observer_0.11.0.tgz";
- url = "https://registry.yarnpkg.com/intersection-observer/-/intersection-observer-0.11.0.tgz";
- sha1 = "f4ea067070326f68393ee161cc0a2ca4c0040c6f";
+ name = "intersection_observer___intersection_observer_0.12.0.tgz";
+ url = "https://registry.yarnpkg.com/intersection-observer/-/intersection-observer-0.12.0.tgz";
+ sha1 = "6c84628f67ce8698e5f9ccf857d97718745837aa";
};
}
{
@@ -5986,11 +6122,11 @@
};
}
{
- name = "is_core_module___is_core_module_2.1.0.tgz";
+ name = "is_core_module___is_core_module_2.2.0.tgz";
path = fetchurl {
- name = "is_core_module___is_core_module_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.1.0.tgz";
- sha1 = "a4cc031d9b1aca63eecbd18a650e13cb4eeab946";
+ name = "is_core_module___is_core_module_2.2.0.tgz";
+ url = "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.2.0.tgz";
+ sha1 = "97037ef3d52224d85163f5597b2b63d9afed981a";
};
}
{
@@ -6146,19 +6282,19 @@
};
}
{
- name = "is_nan___is_nan_1.3.0.tgz";
+ name = "is_nan___is_nan_1.3.2.tgz";
path = fetchurl {
- name = "is_nan___is_nan_1.3.0.tgz";
- url = "https://registry.yarnpkg.com/is-nan/-/is-nan-1.3.0.tgz";
- sha1 = "85d1f5482f7051c2019f5673ccebdb06f3b0db03";
+ name = "is_nan___is_nan_1.3.2.tgz";
+ url = "https://registry.yarnpkg.com/is-nan/-/is-nan-1.3.2.tgz";
+ sha1 = "043a54adea31748b55b6cd4e09aadafa69bd9e1d";
};
}
{
- name = "is_negative_zero___is_negative_zero_2.0.0.tgz";
+ name = "is_negative_zero___is_negative_zero_2.0.1.tgz";
path = fetchurl {
- name = "is_negative_zero___is_negative_zero_2.0.0.tgz";
- url = "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.0.tgz";
- sha1 = "9553b121b0fac28869da9ed459e20c7543788461";
+ name = "is_negative_zero___is_negative_zero_2.0.1.tgz";
+ url = "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.1.tgz";
+ sha1 = "3de746c18dda2319241a53675908d8f766f11c24";
};
}
{
@@ -6281,14 +6417,6 @@
sha1 = "40493ed198ef3ff477b8c7f92f644ec82a5cd3a6";
};
}
- {
- name = "is_svg___is_svg_3.0.0.tgz";
- path = fetchurl {
- name = "is_svg___is_svg_3.0.0.tgz";
- url = "https://registry.yarnpkg.com/is-svg/-/is-svg-3.0.0.tgz";
- sha1 = "9321dbd29c212e5ca99c4fa9794c714bcafa2f75";
- };
- }
{
name = "is_symbol___is_symbol_1.0.3.tgz";
path = fetchurl {
@@ -6425,14 +6553,6 @@
sha1 = "d593210e5000683750cb09fc0644e4b6e27fd53b";
};
}
- {
- name = "jake___jake_10.8.2.tgz";
- path = fetchurl {
- name = "jake___jake_10.8.2.tgz";
- url = "https://registry.yarnpkg.com/jake/-/jake-10.8.2.tgz";
- sha1 = "ebc9de8558160a66d82d0eadc6a2e58fbc500a7b";
- };
- }
{
name = "jest_changed_files___jest_changed_files_26.6.2.tgz";
path = fetchurl {
@@ -6689,14 +6809,6 @@
sha1 = "f4e686c5de1ea1f867dbcad3d46d969428df98c4";
};
}
- {
- name = "js_string_escape___js_string_escape_1.0.1.tgz";
- path = fetchurl {
- name = "js_string_escape___js_string_escape_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/js-string-escape/-/js-string-escape-1.0.1.tgz";
- sha1 = "e2625badbc0d67c7533e9edc1068c587ae4137ef";
- };
- }
{
name = "js_tokens___js_tokens_4.0.0.tgz";
path = fetchurl {
@@ -6706,11 +6818,19 @@
};
}
{
- name = "js_yaml___js_yaml_3.14.0.tgz";
+ name = "js_yaml___js_yaml_3.14.1.tgz";
path = fetchurl {
- name = "js_yaml___js_yaml_3.14.0.tgz";
- url = "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.0.tgz";
- sha1 = "a7a34170f26a21bb162424d8adacb4113a69e482";
+ name = "js_yaml___js_yaml_3.14.1.tgz";
+ url = "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz";
+ sha1 = "dae812fdb3825fa306609a8717383c50c36a0537";
+ };
+ }
+ {
+ name = "js_yaml___js_yaml_4.1.0.tgz";
+ path = fetchurl {
+ name = "js_yaml___js_yaml_4.1.0.tgz";
+ url = "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz";
+ sha1 = "c1fb65f8f5017901cdd2c951864ba18458a10602";
};
}
{
@@ -6993,14 +7113,6 @@
sha1 = "ae4562c007473b932a6200d403268dd2fffc6ade";
};
}
- {
- name = "line_column___line_column_1.0.2.tgz";
- path = fetchurl {
- name = "line_column___line_column_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/line-column/-/line-column-1.0.2.tgz";
- sha1 = "d25af2936b6f4849172b312e4792d1d987bc34a2";
- };
- }
{
name = "lines_and_columns___lines_and_columns_1.1.6.tgz";
path = fetchurl {
@@ -7073,6 +7185,14 @@
sha1 = "1afba396afd676a6d42504d0a67a3a7eb9f62aa0";
};
}
+ {
+ name = "lockfile___lockfile_1.0.4.tgz";
+ path = fetchurl {
+ name = "lockfile___lockfile_1.0.4.tgz";
+ url = "https://registry.yarnpkg.com/lockfile/-/lockfile-1.0.4.tgz";
+ sha1 = "07f819d25ae48f87e538e6578b6964a4981a5609";
+ };
+ }
{
name = "lodash.capitalize___lodash.capitalize_4.2.1.tgz";
path = fetchurl {
@@ -7081,6 +7201,14 @@
sha1 = "f826c9b4e2a8511d84e3aca29db05e1a4f3b72a9";
};
}
+ {
+ name = "lodash.debounce___lodash.debounce_4.0.8.tgz";
+ path = fetchurl {
+ name = "lodash.debounce___lodash.debounce_4.0.8.tgz";
+ url = "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz";
+ sha1 = "82d79bff30a67c4005ffd5e2515300ad9ca4d7af";
+ };
+ }
{
name = "lodash.defaults___lodash.defaults_4.2.0.tgz";
path = fetchurl {
@@ -7162,11 +7290,11 @@
};
}
{
- name = "lodash___lodash_4.17.20.tgz";
+ name = "lodash___lodash_4.17.21.tgz";
path = fetchurl {
- name = "lodash___lodash_4.17.20.tgz";
- url = "https://registry.yarnpkg.com/lodash/-/lodash-4.17.20.tgz";
- sha1 = "b44a9b6297bcb698f1c51a3545a2b3b368d59c52";
+ name = "lodash___lodash_4.17.21.tgz";
+ url = "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz";
+ sha1 = "679591c564c3bffaae8454cf0b3df370c3d6911c";
};
}
{
@@ -7258,11 +7386,11 @@
};
}
{
- name = "marky___marky_1.2.1.tgz";
+ name = "marky___marky_1.2.2.tgz";
path = fetchurl {
- name = "marky___marky_1.2.1.tgz";
- url = "https://registry.yarnpkg.com/marky/-/marky-1.2.1.tgz";
- sha1 = "a3fcf82ffd357756b8b8affec9fdbf3a30dc1b02";
+ name = "marky___marky_1.2.2.tgz";
+ url = "https://registry.yarnpkg.com/marky/-/marky-1.2.2.tgz";
+ sha1 = "4456765b4de307a13d263a69b0c79bf226e68323";
};
}
{
@@ -7401,6 +7529,14 @@
sha1 = "32cd9e5c64553bd58d19a568af452acff04981b1";
};
}
+ {
+ name = "mime___mime_2.4.7.tgz";
+ path = fetchurl {
+ name = "mime___mime_2.4.7.tgz";
+ url = "https://registry.yarnpkg.com/mime/-/mime-2.4.7.tgz";
+ sha1 = "962aed9be0ed19c91fd7dc2ece5d7f4e89a90d74";
+ };
+ }
{
name = "mime___mime_2.4.4.tgz";
path = fetchurl {
@@ -7426,11 +7562,11 @@
};
}
{
- name = "mini_css_extract_plugin___mini_css_extract_plugin_1.3.1.tgz";
+ name = "mini_css_extract_plugin___mini_css_extract_plugin_1.6.0.tgz";
path = fetchurl {
- name = "mini_css_extract_plugin___mini_css_extract_plugin_1.3.1.tgz";
- url = "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-1.3.1.tgz";
- sha1 = "1375c88b2bc2a9d197670a55761edcd1b5d72f21";
+ name = "mini_css_extract_plugin___mini_css_extract_plugin_1.6.0.tgz";
+ url = "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-1.6.0.tgz";
+ sha1 = "b4db2525af2624899ed64a23b0016e0036411893";
};
}
{
@@ -7618,11 +7754,11 @@
};
}
{
- name = "nanoid___nanoid_3.1.16.tgz";
+ name = "nanoid___nanoid_3.1.22.tgz";
path = fetchurl {
- name = "nanoid___nanoid_3.1.16.tgz";
- url = "https://registry.yarnpkg.com/nanoid/-/nanoid-3.1.16.tgz";
- sha1 = "b21f0a7d031196faf75314d7c65d36352beeef64";
+ name = "nanoid___nanoid_3.1.22.tgz";
+ url = "https://registry.yarnpkg.com/nanoid/-/nanoid-3.1.22.tgz";
+ sha1 = "b35f8fb7d151990a8aebd5aa5015c03cf726f844";
};
}
{
@@ -7689,6 +7825,14 @@
sha1 = "32dea2afb3e9926f02ee5ce8794902691a676bf3";
};
}
+ {
+ name = "node_gyp_build___node_gyp_build_4.2.3.tgz";
+ path = fetchurl {
+ name = "node_gyp_build___node_gyp_build_4.2.3.tgz";
+ url = "https://registry.yarnpkg.com/node-gyp-build/-/node-gyp-build-4.2.3.tgz";
+ sha1 = "ce6277f853835f718829efb47db20f3e4d9c4739";
+ };
+ }
{
name = "node_int64___node_int64_0.4.0.tgz";
path = fetchurl {
@@ -7737,6 +7881,14 @@
sha1 = "28ebfcccd0baa6aad8e8d4d8fe4cbc49ae239c12";
};
}
+ {
+ name = "node_releases___node_releases_1.1.71.tgz";
+ path = fetchurl {
+ name = "node_releases___node_releases_1.1.71.tgz";
+ url = "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.71.tgz";
+ sha1 = "cb1334b179896b1c89ecfdd4b725fb7bbdfc7dbb";
+ };
+ }
{
name = "normalize_package_data___normalize_package_data_2.5.0.tgz";
path = fetchurl {
@@ -7841,14 +7993,6 @@
sha1 = "47a7b016baa68b5fa0ecf3dee08a85c679ac6455";
};
}
- {
- name = "object_assign___object_assign_4.1.0.tgz";
- path = fetchurl {
- name = "object_assign___object_assign_4.1.0.tgz";
- url = "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.0.tgz";
- sha1 = "7a3b3d0e98063d43f4c03f2e8ae6cd51a86883a0";
- };
- }
{
name = "object_assign___object_assign_4.1.1.tgz";
path = fetchurl {
@@ -7881,6 +8025,14 @@
sha1 = "df807e5ecf53a609cc6bfe93eac3cc7be5b3a9d0";
};
}
+ {
+ name = "object_inspect___object_inspect_1.9.0.tgz";
+ path = fetchurl {
+ name = "object_inspect___object_inspect_1.9.0.tgz";
+ url = "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.9.0.tgz";
+ sha1 = "c90521d74e1127b67266ded3394ad6116986533a";
+ };
+ }
{
name = "object_is___object_is_1.1.3.tgz";
path = fetchurl {
@@ -7914,19 +8066,27 @@
};
}
{
- name = "object.entries___object.entries_1.1.2.tgz";
+ name = "object.assign___object.assign_4.1.2.tgz";
path = fetchurl {
- name = "object.entries___object.entries_1.1.2.tgz";
- url = "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.2.tgz";
- sha1 = "bc73f00acb6b6bb16c203434b10f9a7e797d3add";
+ name = "object.assign___object.assign_4.1.2.tgz";
+ url = "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz";
+ sha1 = "0ed54a342eceb37b38ff76eb831a0e788cb63940";
};
}
{
- name = "object.fromentries___object.fromentries_2.0.2.tgz";
+ name = "object.entries___object.entries_1.1.3.tgz";
path = fetchurl {
- name = "object.fromentries___object.fromentries_2.0.2.tgz";
- url = "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.2.tgz";
- sha1 = "4a09c9b9bb3843dd0f89acdb517a794d4f355ac9";
+ name = "object.entries___object.entries_1.1.3.tgz";
+ url = "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.3.tgz";
+ sha1 = "c601c7f168b62374541a07ddbd3e2d5e4f7711a6";
+ };
+ }
+ {
+ name = "object.fromentries___object.fromentries_2.0.4.tgz";
+ path = fetchurl {
+ name = "object.fromentries___object.fromentries_2.0.4.tgz";
+ url = "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.4.tgz";
+ sha1 = "26e1ba5c4571c5c6f0890cef4473066456a120b8";
};
}
{
@@ -7946,11 +8106,11 @@
};
}
{
- name = "object.values___object.values_1.1.1.tgz";
+ name = "object.values___object.values_1.1.3.tgz";
path = fetchurl {
- name = "object.values___object.values_1.1.1.tgz";
- url = "https://registry.yarnpkg.com/object.values/-/object.values-1.1.1.tgz";
- sha1 = "68a99ecde356b7e9295a3c5e0ce31dc8c953de5e";
+ name = "object.values___object.values_1.1.3.tgz";
+ url = "https://registry.yarnpkg.com/object.values/-/object.values-1.1.3.tgz";
+ sha1 = "eaa8b1e17589f02f698db093f7c62ee1699742ee";
};
}
{
@@ -8178,11 +8338,11 @@
};
}
{
- name = "packet_reader___packet_reader_0.3.1.tgz";
+ name = "packet_reader___packet_reader_1.0.0.tgz";
path = fetchurl {
- name = "packet_reader___packet_reader_0.3.1.tgz";
- url = "https://registry.yarnpkg.com/packet-reader/-/packet-reader-0.3.1.tgz";
- sha1 = "cd62e60af8d7fea8a705ec4ff990871c46871f27";
+ name = "packet_reader___packet_reader_1.0.0.tgz";
+ url = "https://registry.yarnpkg.com/packet-reader/-/packet-reader-1.0.0.tgz";
+ sha1 = "9238e5480dedabacfe1fe3f2771063f164157d74";
};
}
{
@@ -8418,11 +8578,11 @@
};
}
{
- name = "pg_connection_string___pg_connection_string_0.1.3.tgz";
+ name = "pg_connection_string___pg_connection_string_2.4.0.tgz";
path = fetchurl {
- name = "pg_connection_string___pg_connection_string_0.1.3.tgz";
- url = "https://registry.yarnpkg.com/pg-connection-string/-/pg-connection-string-0.1.3.tgz";
- sha1 = "da1847b20940e42ee1492beaf65d49d91b245df7";
+ name = "pg_connection_string___pg_connection_string_2.4.0.tgz";
+ url = "https://registry.yarnpkg.com/pg-connection-string/-/pg-connection-string-2.4.0.tgz";
+ sha1 = "c979922eb47832999a204da5dbe1ebf2341b6a10";
};
}
{
@@ -8434,35 +8594,43 @@
};
}
{
- name = "pg_pool___pg_pool_1.8.0.tgz";
+ name = "pg_pool___pg_pool_3.2.2.tgz";
path = fetchurl {
- name = "pg_pool___pg_pool_1.8.0.tgz";
- url = "https://registry.yarnpkg.com/pg-pool/-/pg-pool-1.8.0.tgz";
- sha1 = "f7ec73824c37a03f076f51bfdf70e340147c4f37";
+ name = "pg_pool___pg_pool_3.2.2.tgz";
+ url = "https://registry.yarnpkg.com/pg-pool/-/pg-pool-3.2.2.tgz";
+ sha1 = "a560e433443ed4ad946b84d774b3f22452694dff";
};
}
{
- name = "pg_types___pg_types_1.13.0.tgz";
+ name = "pg_protocol___pg_protocol_1.4.0.tgz";
path = fetchurl {
- name = "pg_types___pg_types_1.13.0.tgz";
- url = "https://registry.yarnpkg.com/pg-types/-/pg-types-1.13.0.tgz";
- sha1 = "75f490b8a8abf75f1386ef5ec4455ecf6b345c63";
+ name = "pg_protocol___pg_protocol_1.4.0.tgz";
+ url = "https://registry.yarnpkg.com/pg-protocol/-/pg-protocol-1.4.0.tgz";
+ sha1 = "43a71a92f6fe3ac559952555aa3335c8cb4908be";
};
}
{
- name = "pg___pg_6.4.2.tgz";
+ name = "pg_types___pg_types_2.2.0.tgz";
path = fetchurl {
- name = "pg___pg_6.4.2.tgz";
- url = "https://registry.yarnpkg.com/pg/-/pg-6.4.2.tgz";
- sha1 = "c364011060eac7a507a2ae063eb857ece910e27f";
+ name = "pg_types___pg_types_2.2.0.tgz";
+ url = "https://registry.yarnpkg.com/pg-types/-/pg-types-2.2.0.tgz";
+ sha1 = "2d0250d636454f7cfa3b6ae0382fdfa8063254a3";
};
}
{
- name = "pgpass___pgpass_1.0.2.tgz";
+ name = "pg___pg_8.5.1.tgz";
path = fetchurl {
- name = "pgpass___pgpass_1.0.2.tgz";
- url = "https://registry.yarnpkg.com/pgpass/-/pgpass-1.0.2.tgz";
- sha1 = "2a7bb41b6065b67907e91da1b07c1847c877b306";
+ name = "pg___pg_8.5.1.tgz";
+ url = "https://registry.yarnpkg.com/pg/-/pg-8.5.1.tgz";
+ sha1 = "34dcb15f6db4a29c702bf5031ef2e1e25a06a120";
+ };
+ }
+ {
+ name = "pgpass___pgpass_1.0.4.tgz";
+ path = fetchurl {
+ name = "pgpass___pgpass_1.0.4.tgz";
+ url = "https://registry.yarnpkg.com/pgpass/-/pgpass-1.0.4.tgz";
+ sha1 = "85eb93a83800b20f8057a2b029bf05abaf94ea9c";
};
}
{
@@ -8842,11 +9010,11 @@
};
}
{
- name = "postcss_svgo___postcss_svgo_4.0.2.tgz";
+ name = "postcss_svgo___postcss_svgo_4.0.3.tgz";
path = fetchurl {
- name = "postcss_svgo___postcss_svgo_4.0.2.tgz";
- url = "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-4.0.2.tgz";
- sha1 = "17b997bc711b333bab143aaed3b8d3d6e3d38258";
+ name = "postcss_svgo___postcss_svgo_4.0.3.tgz";
+ url = "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-4.0.3.tgz";
+ sha1 = "343a2cdbac9505d416243d496f724f38894c941e";
};
}
{
@@ -8890,19 +9058,19 @@
};
}
{
- name = "postcss___postcss_8.1.6.tgz";
+ name = "postcss___postcss_8.2.10.tgz";
path = fetchurl {
- name = "postcss___postcss_8.1.6.tgz";
- url = "https://registry.yarnpkg.com/postcss/-/postcss-8.1.6.tgz";
- sha1 = "b022ba2cfb8701da234d073ed3128c5a384c35ff";
+ name = "postcss___postcss_8.2.10.tgz";
+ url = "https://registry.yarnpkg.com/postcss/-/postcss-8.2.10.tgz";
+ sha1 = "ca7a042aa8aff494b334d0ff3e9e77079f6f702b";
};
}
{
- name = "postgres_array___postgres_array_1.0.3.tgz";
+ name = "postgres_array___postgres_array_2.0.0.tgz";
path = fetchurl {
- name = "postgres_array___postgres_array_1.0.3.tgz";
- url = "https://registry.yarnpkg.com/postgres-array/-/postgres-array-1.0.3.tgz";
- sha1 = "c561fc3b266b21451fc6555384f4986d78ec80f5";
+ name = "postgres_array___postgres_array_2.0.0.tgz";
+ url = "https://registry.yarnpkg.com/postgres-array/-/postgres-array-2.0.0.tgz";
+ sha1 = "48f8fce054fbc69671999329b8834b772652d82e";
};
}
{
@@ -9258,11 +9426,11 @@
};
}
{
- name = "react_input_autosize___react_input_autosize_2.2.2.tgz";
+ name = "react_input_autosize___react_input_autosize_3.0.0.tgz";
path = fetchurl {
- name = "react_input_autosize___react_input_autosize_2.2.2.tgz";
- url = "https://registry.yarnpkg.com/react-input-autosize/-/react-input-autosize-2.2.2.tgz";
- sha1 = "fcaa7020568ec206bc04be36f4eb68e647c4d8c2";
+ name = "react_input_autosize___react_input_autosize_3.0.0.tgz";
+ url = "https://registry.yarnpkg.com/react-input-autosize/-/react-input-autosize-3.0.0.tgz";
+ sha1 = "6b5898c790d4478d69420b55441fcc31d5c50a85";
};
}
{
@@ -9330,11 +9498,11 @@
};
}
{
- name = "react_overlays___react_overlays_0.9.2.tgz";
+ name = "react_overlays___react_overlays_0.9.3.tgz";
path = fetchurl {
- name = "react_overlays___react_overlays_0.9.2.tgz";
- url = "https://registry.yarnpkg.com/react-overlays/-/react-overlays-0.9.2.tgz";
- sha1 = "51ab1c62ded5af4d279bd3b943999531bbd648da";
+ name = "react_overlays___react_overlays_0.9.3.tgz";
+ url = "https://registry.yarnpkg.com/react-overlays/-/react-overlays-0.9.3.tgz";
+ sha1 = "5bac8c1e9e7e057a125181dee2d784864dd62902";
};
}
{
@@ -9346,11 +9514,11 @@
};
}
{
- name = "react_redux___react_redux_7.2.2.tgz";
+ name = "react_redux___react_redux_7.2.4.tgz";
path = fetchurl {
- name = "react_redux___react_redux_7.2.2.tgz";
- url = "https://registry.yarnpkg.com/react-redux/-/react-redux-7.2.2.tgz";
- sha1 = "03862e803a30b6b9ef8582dadcc810947f74b736";
+ name = "react_redux___react_redux_7.2.4.tgz";
+ url = "https://registry.yarnpkg.com/react-redux/-/react-redux-7.2.4.tgz";
+ sha1 = "1ebb474032b72d806de2e0519cd07761e222e225";
};
}
{
@@ -9378,11 +9546,11 @@
};
}
{
- name = "react_select___react_select_3.1.0.tgz";
+ name = "react_select___react_select_4.3.0.tgz";
path = fetchurl {
- name = "react_select___react_select_3.1.0.tgz";
- url = "https://registry.yarnpkg.com/react-select/-/react-select-3.1.0.tgz";
- sha1 = "ab098720b2e9fe275047c993f0d0caf5ded17c27";
+ name = "react_select___react_select_4.3.0.tgz";
+ url = "https://registry.yarnpkg.com/react-select/-/react-select-4.3.0.tgz";
+ sha1 = "6bde634ae7a378b49f3833c85c126f533483fa2e";
};
}
{
@@ -9426,19 +9594,19 @@
};
}
{
- name = "react_textarea_autosize___react_textarea_autosize_8.3.0.tgz";
+ name = "react_textarea_autosize___react_textarea_autosize_8.3.2.tgz";
path = fetchurl {
- name = "react_textarea_autosize___react_textarea_autosize_8.3.0.tgz";
- url = "https://registry.yarnpkg.com/react-textarea-autosize/-/react-textarea-autosize-8.3.0.tgz";
- sha1 = "e6e2fd186d9f61bb80ac6e2dcb4c55504f93c2fa";
+ name = "react_textarea_autosize___react_textarea_autosize_8.3.2.tgz";
+ url = "https://registry.yarnpkg.com/react-textarea-autosize/-/react-textarea-autosize-8.3.2.tgz";
+ sha1 = "4f9374d357b0a6f6469956726722549124a1b2db";
};
}
{
- name = "react_toggle___react_toggle_4.1.1.tgz";
+ name = "react_toggle___react_toggle_4.1.2.tgz";
path = fetchurl {
- name = "react_toggle___react_toggle_4.1.1.tgz";
- url = "https://registry.yarnpkg.com/react-toggle/-/react-toggle-4.1.1.tgz";
- sha1 = "2317f67bf918ea3508a96b09dd383efd9da572af";
+ name = "react_toggle___react_toggle_4.1.2.tgz";
+ url = "https://registry.yarnpkg.com/react-toggle/-/react-toggle-4.1.2.tgz";
+ sha1 = "b00500832f925ad524356d909821821ae39f6c52";
};
}
{
@@ -9522,11 +9690,11 @@
};
}
{
- name = "readdirp___readdirp_3.4.0.tgz";
+ name = "readdirp___readdirp_3.5.0.tgz";
path = fetchurl {
- name = "readdirp___readdirp_3.4.0.tgz";
- url = "https://registry.yarnpkg.com/readdirp/-/readdirp-3.4.0.tgz";
- sha1 = "9fdccdf9e9155805449221ac645e8303ab5b9ada";
+ name = "readdirp___readdirp_3.5.0.tgz";
+ url = "https://registry.yarnpkg.com/readdirp/-/readdirp-3.5.0.tgz";
+ sha1 = "9ba74c019b15d365278d2e91bb8c48d7b4d42c9e";
};
}
{
@@ -9546,11 +9714,11 @@
};
}
{
- name = "redis_commands___redis_commands_1.6.0.tgz";
+ name = "redis_commands___redis_commands_1.7.0.tgz";
path = fetchurl {
- name = "redis_commands___redis_commands_1.6.0.tgz";
- url = "https://registry.yarnpkg.com/redis-commands/-/redis-commands-1.6.0.tgz";
- sha1 = "36d4ca42ae9ed29815cdb30ad9f97982eba1ce23";
+ name = "redis_commands___redis_commands_1.7.0.tgz";
+ url = "https://registry.yarnpkg.com/redis-commands/-/redis-commands-1.7.0.tgz";
+ sha1 = "15a6fea2d58281e27b1cd1acfb4b293e278c3a89";
};
}
{
@@ -9570,11 +9738,11 @@
};
}
{
- name = "redis___redis_3.0.2.tgz";
+ name = "redis___redis_3.1.2.tgz";
path = fetchurl {
- name = "redis___redis_3.0.2.tgz";
- url = "https://registry.yarnpkg.com/redis/-/redis-3.0.2.tgz";
- sha1 = "bd47067b8a4a3e6a2e556e57f71cc82c7360150a";
+ name = "redis___redis_3.1.2.tgz";
+ url = "https://registry.yarnpkg.com/redis/-/redis-3.1.2.tgz";
+ sha1 = "766851117e80653d23e0ed536254677ab647638c";
};
}
{
@@ -9594,11 +9762,11 @@
};
}
{
- name = "redux___redux_4.0.5.tgz";
+ name = "redux___redux_4.1.0.tgz";
path = fetchurl {
- name = "redux___redux_4.0.5.tgz";
- url = "https://registry.yarnpkg.com/redux/-/redux-4.0.5.tgz";
- sha1 = "4db5de5816e17891de8a80c424232d06f051d93f";
+ name = "redux___redux_4.1.0.tgz";
+ url = "https://registry.yarnpkg.com/redux/-/redux-4.1.0.tgz";
+ sha1 = "eb049679f2f523c379f1aff345c8612f294c88d4";
};
}
{
@@ -9665,6 +9833,14 @@
sha1 = "7aba89b3c13a64509dabcf3ca8d9fbb9bdf5cb75";
};
}
+ {
+ name = "regexp.prototype.flags___regexp.prototype.flags_1.3.1.tgz";
+ path = fetchurl {
+ name = "regexp.prototype.flags___regexp.prototype.flags_1.3.1.tgz";
+ url = "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.3.1.tgz";
+ sha1 = "7ef352ae8d159e758c0eadca6f8fcb4eef07be26";
+ };
+ }
{
name = "regexpp___regexpp_3.1.0.tgz";
path = fetchurl {
@@ -9898,11 +10074,19 @@
};
}
{
- name = "resolve___resolve_1.19.0.tgz";
+ name = "resolve___resolve_1.20.0.tgz";
path = fetchurl {
- name = "resolve___resolve_1.19.0.tgz";
- url = "https://registry.yarnpkg.com/resolve/-/resolve-1.19.0.tgz";
- sha1 = "1af5bf630409734a067cae29318aac7fa29a267c";
+ name = "resolve___resolve_1.20.0.tgz";
+ url = "https://registry.yarnpkg.com/resolve/-/resolve-1.20.0.tgz";
+ sha1 = "629a013fb3f70755d6f0b7935cc1c2c5378b1975";
+ };
+ }
+ {
+ name = "resolve___resolve_2.0.0_next.3.tgz";
+ path = fetchurl {
+ name = "resolve___resolve_2.0.0_next.3.tgz";
+ url = "https://registry.yarnpkg.com/resolve/-/resolve-2.0.0-next.3.tgz";
+ sha1 = "d41016293d4a8586a39ca5d9b5f15cbea1f55e46";
};
}
{
@@ -9945,14 +10129,6 @@
sha1 = "43374e2e2ca0968b0ef1523460b7d730ff22eeb3";
};
}
- {
- name = "rimraf___rimraf_2.6.3.tgz";
- path = fetchurl {
- name = "rimraf___rimraf_2.6.3.tgz";
- url = "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz";
- sha1 = "b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab";
- };
- }
{
name = "rimraf___rimraf_2.7.1.tgz";
path = fetchurl {
@@ -9969,6 +10145,14 @@
sha1 = "f1a5402ba6220ad52cc1282bac1ae3aa49fd061a";
};
}
+ {
+ name = "rimraf___rimraf_2.6.3.tgz";
+ path = fetchurl {
+ name = "rimraf___rimraf_2.6.3.tgz";
+ url = "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz";
+ sha1 = "b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab";
+ };
+ }
{
name = "ripemd160___ripemd160_2.0.2.tgz";
path = fetchurl {
@@ -10058,19 +10242,19 @@
};
}
{
- name = "sass_loader___sass_loader_10.1.0.tgz";
+ name = "sass_loader___sass_loader_10.1.1.tgz";
path = fetchurl {
- name = "sass_loader___sass_loader_10.1.0.tgz";
- url = "https://registry.yarnpkg.com/sass-loader/-/sass-loader-10.1.0.tgz";
- sha1 = "1727fcc0c32ab3eb197cda61d78adf4e9174a4b3";
+ name = "sass_loader___sass_loader_10.1.1.tgz";
+ url = "https://registry.yarnpkg.com/sass-loader/-/sass-loader-10.1.1.tgz";
+ sha1 = "4ddd5a3d7638e7949065dd6e9c7c04037f7e663d";
};
}
{
- name = "sass___sass_1.29.0.tgz";
+ name = "sass___sass_1.32.12.tgz";
path = fetchurl {
- name = "sass___sass_1.29.0.tgz";
- url = "https://registry.yarnpkg.com/sass/-/sass-1.29.0.tgz";
- sha1 = "ec4e1842c146d8ea9258c28c141b8c2b7c6ab7f1";
+ name = "sass___sass_1.32.12.tgz";
+ url = "https://registry.yarnpkg.com/sass/-/sass-1.32.12.tgz";
+ sha1 = "a2a47ad0f1c168222db5206444a30c12457abb9f";
};
}
{
@@ -10153,14 +10337,6 @@
sha1 = "a954f931aeba508d307bbf069eff0c01c96116f7";
};
}
- {
- name = "semver___semver_4.3.2.tgz";
- path = fetchurl {
- name = "semver___semver_4.3.2.tgz";
- url = "https://registry.yarnpkg.com/semver/-/semver-4.3.2.tgz";
- sha1 = "c7a07158a80bedd052355b770d82d6640f803be7";
- };
- }
{
name = "semver___semver_7.0.0.tgz";
path = fetchurl {
@@ -10178,11 +10354,11 @@
};
}
{
- name = "semver___semver_7.3.4.tgz";
+ name = "semver___semver_7.3.5.tgz";
path = fetchurl {
- name = "semver___semver_7.3.4.tgz";
- url = "https://registry.yarnpkg.com/semver/-/semver-7.3.4.tgz";
- sha1 = "27aaa7d2e4ca76452f98d3add093a72c943edc97";
+ name = "semver___semver_7.3.5.tgz";
+ url = "https://registry.yarnpkg.com/semver/-/semver-7.3.5.tgz";
+ sha1 = "0b621c879348d8998e4b0e4be94b3f12e6018ef7";
};
}
{
@@ -10338,11 +10514,11 @@
};
}
{
- name = "side_channel___side_channel_1.0.3.tgz";
+ name = "side_channel___side_channel_1.0.4.tgz";
path = fetchurl {
- name = "side_channel___side_channel_1.0.3.tgz";
- url = "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.3.tgz";
- sha1 = "cdc46b057550bbab63706210838df5d4c19519c3";
+ name = "side_channel___side_channel_1.0.4.tgz";
+ url = "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz";
+ sha1 = "efce5c8fdc104ee751b25c58d4290011fa5ea2cf";
};
}
{
@@ -10361,6 +10537,14 @@
sha1 = "a4da6b635ffcccca33f70d17cb92592de95e557a";
};
}
+ {
+ name = "sirv___sirv_1.0.10.tgz";
+ path = fetchurl {
+ name = "sirv___sirv_1.0.10.tgz";
+ url = "https://registry.yarnpkg.com/sirv/-/sirv-1.0.10.tgz";
+ sha1 = "3e591f5a9ae2520f50d5830f5fae38d97e7be194";
+ };
+ }
{
name = "sisteransi___sisteransi_1.0.5.tgz";
path = fetchurl {
@@ -10394,11 +10578,11 @@
};
}
{
- name = "slice_ansi___slice_ansi_2.1.0.tgz";
+ name = "slice_ansi___slice_ansi_4.0.0.tgz";
path = fetchurl {
- name = "slice_ansi___slice_ansi_2.1.0.tgz";
- url = "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-2.1.0.tgz";
- sha1 = "cacd7693461a637a5788d92a7dd4fba068e81636";
+ name = "slice_ansi___slice_ansi_4.0.0.tgz";
+ url = "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-4.0.0.tgz";
+ sha1 = "500e8dd0fd55b05815086255b3195adf2a45fe6b";
};
}
{
@@ -10426,19 +10610,19 @@
};
}
{
- name = "sockjs_client___sockjs_client_1.4.0.tgz";
+ name = "sockjs_client___sockjs_client_1.5.0.tgz";
path = fetchurl {
- name = "sockjs_client___sockjs_client_1.4.0.tgz";
- url = "https://registry.yarnpkg.com/sockjs-client/-/sockjs-client-1.4.0.tgz";
- sha1 = "c9f2568e19c8fd8173b4997ea3420e0bb306c7d5";
+ name = "sockjs_client___sockjs_client_1.5.0.tgz";
+ url = "https://registry.yarnpkg.com/sockjs-client/-/sockjs-client-1.5.0.tgz";
+ sha1 = "2f8ff5d4b659e0d092f7aba0b7c386bd2aa20add";
};
}
{
- name = "sockjs___sockjs_0.3.20.tgz";
+ name = "sockjs___sockjs_0.3.21.tgz";
path = fetchurl {
- name = "sockjs___sockjs_0.3.20.tgz";
- url = "https://registry.yarnpkg.com/sockjs/-/sockjs-0.3.20.tgz";
- sha1 = "b26a283ec562ef8b2687b44033a4eeceac75d855";
+ name = "sockjs___sockjs_0.3.21.tgz";
+ url = "https://registry.yarnpkg.com/sockjs/-/sockjs-0.3.21.tgz";
+ sha1 = "b34ffb98e796930b60a0cfa11904d6a339a7d417";
};
}
{
@@ -10570,11 +10754,11 @@
};
}
{
- name = "split___split_1.0.1.tgz";
+ name = "split2___split2_3.2.2.tgz";
path = fetchurl {
- name = "split___split_1.0.1.tgz";
- url = "https://registry.yarnpkg.com/split/-/split-1.0.1.tgz";
- sha1 = "605bd9be303aa59fb35f9229fbea0ddec9ea07d9";
+ name = "split2___split2_3.2.2.tgz";
+ url = "https://registry.yarnpkg.com/split2/-/split2-3.2.2.tgz";
+ sha1 = "bf2cf2a37d838312c249c89206fd7a17dd12365f";
};
}
{
@@ -10594,11 +10778,11 @@
};
}
{
- name = "ssri___ssri_6.0.1.tgz";
+ name = "ssri___ssri_6.0.2.tgz";
path = fetchurl {
- name = "ssri___ssri_6.0.1.tgz";
- url = "https://registry.yarnpkg.com/ssri/-/ssri-6.0.1.tgz";
- sha1 = "2a3c41b28dd45b62b63676ecb74001265ae9edd8";
+ name = "ssri___ssri_6.0.2.tgz";
+ url = "https://registry.yarnpkg.com/ssri/-/ssri-6.0.2.tgz";
+ sha1 = "157939134f20464e7301ddba3e90ffa8f7728ac5";
};
}
{
@@ -10754,11 +10938,11 @@
};
}
{
- name = "string.prototype.matchall___string.prototype.matchall_4.0.2.tgz";
+ name = "string.prototype.matchall___string.prototype.matchall_4.0.4.tgz";
path = fetchurl {
- name = "string.prototype.matchall___string.prototype.matchall_4.0.2.tgz";
- url = "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.2.tgz";
- sha1 = "48bb510326fb9fdeb6a33ceaa81a6ea04ef7648e";
+ name = "string.prototype.matchall___string.prototype.matchall_4.0.4.tgz";
+ url = "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.4.tgz";
+ sha1 = "608f255e93e072107f5de066f81a2dfb78cf6b29";
};
}
{
@@ -10769,6 +10953,14 @@
sha1 = "85812a6b847ac002270f5808146064c995fb6913";
};
}
+ {
+ name = "string.prototype.trimend___string.prototype.trimend_1.0.4.tgz";
+ path = fetchurl {
+ name = "string.prototype.trimend___string.prototype.trimend_1.0.4.tgz";
+ url = "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz";
+ sha1 = "e75ae90c2942c63504686c18b287b4a0b1a45f80";
+ };
+ }
{
name = "string.prototype.trimstart___string.prototype.trimstart_1.0.1.tgz";
path = fetchurl {
@@ -10777,6 +10969,14 @@
sha1 = "14af6d9f34b053f7cfc89b72f8f2ee14b9039a54";
};
}
+ {
+ name = "string.prototype.trimstart___string.prototype.trimstart_1.0.4.tgz";
+ path = fetchurl {
+ name = "string.prototype.trimstart___string.prototype.trimstart_1.0.4.tgz";
+ url = "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz";
+ sha1 = "b36399af4ab2999b4c9c648bd7a3fb2bb26feeed";
+ };
+ }
{
name = "string_decoder___string_decoder_1.3.0.tgz";
path = fetchurl {
@@ -10905,6 +11105,14 @@
sha1 = "6718fcaf4d1e07d8a1318690881e8d96726a71d5";
};
}
+ {
+ name = "stylis___stylis_4.0.6.tgz";
+ path = fetchurl {
+ name = "stylis___stylis_4.0.6.tgz";
+ url = "https://registry.yarnpkg.com/stylis/-/stylis-4.0.6.tgz";
+ sha1 = "0d8b97b6bc4748bea46f68602b6df27641b3c548";
+ };
+ }
{
name = "substring_trie___substring_trie_1.0.2.tgz";
path = fetchurl {
@@ -10969,14 +11177,6 @@
sha1 = "b6dc511c063346c9e415b81e43401145b96d4167";
};
}
- {
- name = "symbol_observable___symbol_observable_1.2.0.tgz";
- path = fetchurl {
- name = "symbol_observable___symbol_observable_1.2.0.tgz";
- url = "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.2.0.tgz";
- sha1 = "c22688aed4eab3cdc2dfeacbb561660560a00804";
- };
- }
{
name = "symbol_tree___symbol_tree_3.2.4.tgz";
path = fetchurl {
@@ -10994,11 +11194,11 @@
};
}
{
- name = "table___table_5.4.1.tgz";
+ name = "table___table_6.0.4.tgz";
path = fetchurl {
- name = "table___table_5.4.1.tgz";
- url = "https://registry.yarnpkg.com/table/-/table-5.4.1.tgz";
- sha1 = "0691ae2ebe8259858efb63e550b6d5f9300171e8";
+ name = "table___table_6.0.4.tgz";
+ url = "https://registry.yarnpkg.com/table/-/table-6.0.4.tgz";
+ sha1 = "c523dd182177e926c723eb20e1b341238188aa0d";
};
}
{
@@ -11241,6 +11441,14 @@
sha1 = "7e1be3470f1e77948bc43d94a3c8f4d7752ba553";
};
}
+ {
+ name = "totalist___totalist_1.1.0.tgz";
+ path = fetchurl {
+ name = "totalist___totalist_1.1.0.tgz";
+ url = "https://registry.yarnpkg.com/totalist/-/totalist-1.1.0.tgz";
+ sha1 = "a4d65a3e546517701e3e5c37a47a70ac97fe56df";
+ };
+ }
{
name = "tough_cookie___tough_cookie_2.5.0.tgz";
path = fetchurl {
@@ -11313,6 +11521,22 @@
sha1 = "5ae68177f192d4456269d108afa93ff8743f4f64";
};
}
+ {
+ name = "twemoji_parser___twemoji_parser_11.0.2.tgz";
+ path = fetchurl {
+ name = "twemoji_parser___twemoji_parser_11.0.2.tgz";
+ url = "https://registry.yarnpkg.com/twemoji-parser/-/twemoji-parser-11.0.2.tgz";
+ sha1 = "24e87c2008abe8544c962f193b88b331de32b446";
+ };
+ }
+ {
+ name = "twitter_text___twitter_text_3.1.0.tgz";
+ path = fetchurl {
+ name = "twitter_text___twitter_text_3.1.0.tgz";
+ url = "https://registry.yarnpkg.com/twitter-text/-/twitter-text-3.1.0.tgz";
+ sha1 = "798e932b289f506efe2a1f03fe917ba30627f125";
+ };
+ }
{
name = "type_check___type_check_0.4.0.tgz";
path = fetchurl {
@@ -11345,6 +11569,14 @@
sha1 = "97abf0872310fed88a5c466b25681576145e33f1";
};
}
+ {
+ name = "type_fest___type_fest_0.20.2.tgz";
+ path = fetchurl {
+ name = "type_fest___type_fest_0.20.2.tgz";
+ url = "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz";
+ sha1 = "1bf207f4b28f91583666cb5fbd327887301cd5f4";
+ };
+ }
{
name = "type_fest___type_fest_0.6.0.tgz";
path = fetchurl {
@@ -11530,11 +11762,11 @@
};
}
{
- name = "url_parse___url_parse_1.4.7.tgz";
+ name = "url_parse___url_parse_1.5.1.tgz";
path = fetchurl {
- name = "url_parse___url_parse_1.4.7.tgz";
- url = "https://registry.yarnpkg.com/url-parse/-/url-parse-1.4.7.tgz";
- sha1 = "a8a83535e8c00a316e403a5db4ac1b9b853ae278";
+ name = "url_parse___url_parse_1.5.1.tgz";
+ url = "https://registry.yarnpkg.com/url-parse/-/url-parse-1.5.1.tgz";
+ sha1 = "d5fa9890af8a5e1f274a2c98376510f6425f6e3b";
};
}
{
@@ -11585,6 +11817,14 @@
sha1 = "9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f";
};
}
+ {
+ name = "utf_8_validate___utf_8_validate_5.0.5.tgz";
+ path = fetchurl {
+ name = "utf_8_validate___utf_8_validate_5.0.5.tgz";
+ url = "https://registry.yarnpkg.com/utf-8-validate/-/utf-8-validate-5.0.5.tgz";
+ sha1 = "dd32c2e82c72002dc9f02eb67ba6761f43456ca1";
+ };
+ }
{
name = "util_deprecate___util_deprecate_1.0.2.tgz";
path = fetchurl {
@@ -11802,19 +12042,19 @@
};
}
{
- name = "webpack_assets_manifest___webpack_assets_manifest_3.1.1.tgz";
+ name = "webpack_assets_manifest___webpack_assets_manifest_4.0.6.tgz";
path = fetchurl {
- name = "webpack_assets_manifest___webpack_assets_manifest_3.1.1.tgz";
- url = "https://registry.yarnpkg.com/webpack-assets-manifest/-/webpack-assets-manifest-3.1.1.tgz";
- sha1 = "39bbc3bf2ee57fcd8ba07cda51c9ba4a3c6ae1de";
+ name = "webpack_assets_manifest___webpack_assets_manifest_4.0.6.tgz";
+ url = "https://registry.yarnpkg.com/webpack-assets-manifest/-/webpack-assets-manifest-4.0.6.tgz";
+ sha1 = "cb8cfd2d2d8d129228cea645c832448380c21ae0";
};
}
{
- name = "webpack_bundle_analyzer___webpack_bundle_analyzer_4.1.0.tgz";
+ name = "webpack_bundle_analyzer___webpack_bundle_analyzer_4.4.1.tgz";
path = fetchurl {
- name = "webpack_bundle_analyzer___webpack_bundle_analyzer_4.1.0.tgz";
- url = "https://registry.yarnpkg.com/webpack-bundle-analyzer/-/webpack-bundle-analyzer-4.1.0.tgz";
- sha1 = "31f9e5e187ee32fae2392b21806582cc6fe74cf9";
+ name = "webpack_bundle_analyzer___webpack_bundle_analyzer_4.4.1.tgz";
+ url = "https://registry.yarnpkg.com/webpack-bundle-analyzer/-/webpack-bundle-analyzer-4.4.1.tgz";
+ sha1 = "c71fb2eaffc10a4754d7303b224adb2342069da1";
};
}
{
@@ -11834,11 +12074,11 @@
};
}
{
- name = "webpack_dev_server___webpack_dev_server_3.11.0.tgz";
+ name = "webpack_dev_server___webpack_dev_server_3.11.2.tgz";
path = fetchurl {
- name = "webpack_dev_server___webpack_dev_server_3.11.0.tgz";
- url = "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-3.11.0.tgz";
- sha1 = "8f154a3bce1bcfd1cc618ef4e703278855e7ff8c";
+ name = "webpack_dev_server___webpack_dev_server_3.11.2.tgz";
+ url = "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-3.11.2.tgz";
+ sha1 = "695ebced76a4929f0d5de7fd73fafe185fe33708";
};
}
{
@@ -11850,11 +12090,11 @@
};
}
{
- name = "webpack_merge___webpack_merge_5.4.0.tgz";
+ name = "webpack_merge___webpack_merge_5.7.3.tgz";
path = fetchurl {
- name = "webpack_merge___webpack_merge_5.4.0.tgz";
- url = "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-5.4.0.tgz";
- sha1 = "81bef0a7d23fc1e6c24b06ad8bf22ddeb533a3a3";
+ name = "webpack_merge___webpack_merge_5.7.3.tgz";
+ url = "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-5.7.3.tgz";
+ sha1 = "2a0754e1877a25a8bbab3d2475ca70a052708213";
};
}
{
@@ -11866,19 +12106,11 @@
};
}
{
- name = "webpack___webpack_4.44.2.tgz";
+ name = "webpack___webpack_4.46.0.tgz";
path = fetchurl {
- name = "webpack___webpack_4.44.2.tgz";
- url = "https://registry.yarnpkg.com/webpack/-/webpack-4.44.2.tgz";
- sha1 = "6bfe2b0af055c8b2d1e90ed2cd9363f841266b72";
- };
- }
- {
- name = "websocket_driver___websocket_driver_0.6.5.tgz";
- path = fetchurl {
- name = "websocket_driver___websocket_driver_0.6.5.tgz";
- url = "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.6.5.tgz";
- sha1 = "5cb2556ceb85f4373c6d8238aa691c8454e13a36";
+ name = "webpack___webpack_4.46.0.tgz";
+ url = "https://registry.yarnpkg.com/webpack/-/webpack-4.46.0.tgz";
+ sha1 = "bf9b4404ea20a073605e0a011d188d77cb6ad542";
};
}
{
@@ -11889,6 +12121,14 @@
sha1 = "a2d4e0d4f4f116f1e6297eba58b05d430100e9f9";
};
}
+ {
+ name = "websocket_driver___websocket_driver_0.7.4.tgz";
+ path = fetchurl {
+ name = "websocket_driver___websocket_driver_0.7.4.tgz";
+ url = "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.7.4.tgz";
+ sha1 = "89ad5295bbf64b480abcba31e4953aca706f5760";
+ };
+ }
{
name = "websocket_extensions___websocket_extensions_0.1.4.tgz";
path = fetchurl {
@@ -11946,11 +12186,11 @@
};
}
{
- name = "wicg_inert___wicg_inert_3.1.0.tgz";
+ name = "wicg_inert___wicg_inert_3.1.1.tgz";
path = fetchurl {
- name = "wicg_inert___wicg_inert_3.1.0.tgz";
- url = "https://registry.yarnpkg.com/wicg-inert/-/wicg-inert-3.1.0.tgz";
- sha1 = "6525f12db188b83f0051bed2ddcf6c1aa5b17590";
+ name = "wicg_inert___wicg_inert_3.1.1.tgz";
+ url = "https://registry.yarnpkg.com/wicg-inert/-/wicg-inert-3.1.1.tgz";
+ sha1 = "b033fd4fbfb9e3fd709e5d84becbdf2e06e5c229";
};
}
{
@@ -12025,14 +12265,6 @@
sha1 = "56bd5c5a5c70481cd19c571bd39ab965a5de56e8";
};
}
- {
- name = "write___write_1.0.3.tgz";
- path = fetchurl {
- name = "write___write_1.0.3.tgz";
- url = "https://registry.yarnpkg.com/write/-/write-1.0.3.tgz";
- sha1 = "0800e14523b923a387e415123c865616aae0f5c3";
- };
- }
{
name = "write___write_0.2.1.tgz";
path = fetchurl {
@@ -12050,11 +12282,11 @@
};
}
{
- name = "ws___ws_7.4.0.tgz";
+ name = "ws___ws_7.4.5.tgz";
path = fetchurl {
- name = "ws___ws_7.4.0.tgz";
- url = "https://registry.yarnpkg.com/ws/-/ws-7.4.0.tgz";
- sha1 = "a5dd76a24197940d4a8bb9e0e152bb4503764da7";
+ name = "ws___ws_7.4.5.tgz";
+ url = "https://registry.yarnpkg.com/ws/-/ws-7.4.5.tgz";
+ sha1 = "a484dd851e9beb6fdb420027e3885e8ce48986c1";
};
}
{
@@ -12162,11 +12394,11 @@
};
}
{
- name = "yargs___yargs_16.1.1.tgz";
+ name = "yargs___yargs_17.0.1.tgz";
path = fetchurl {
- name = "yargs___yargs_16.1.1.tgz";
- url = "https://registry.yarnpkg.com/yargs/-/yargs-16.1.1.tgz";
- sha1 = "5a4a095bd1ca806b0a50d0c03611d38034d219a1";
+ name = "yargs___yargs_17.0.1.tgz";
+ url = "https://registry.yarnpkg.com/yargs/-/yargs-17.0.1.tgz";
+ sha1 = "6a1ced4ed5ee0b388010ba9fd67af83b9362e0bb";
};
}
{
diff --git a/pkgs/tools/misc/nix-direnv/default.nix b/pkgs/tools/misc/nix-direnv/default.nix
index 61078e7edfe9..94ce54a2a9ac 100644
--- a/pkgs/tools/misc/nix-direnv/default.nix
+++ b/pkgs/tools/misc/nix-direnv/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchFromGitHub, gnugrep, nixFlakes }:
+{ lib, stdenv, fetchFromGitHub, gnugrep, nixUnstable }:
stdenv.mkDerivation rec {
pname = "nix-direnv";
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
# Substitute instead of wrapping because the resulting file is
# getting sourced, not executed:
postPatch = ''
- sed -i "1a NIX_BIN_PREFIX=${nixFlakes}/bin/" direnvrc
+ sed -i "1a NIX_BIN_PREFIX=${nixUnstable}/bin/" direnvrc
substituteInPlace direnvrc --replace "grep" "${gnugrep}/bin/grep"
'';
diff --git a/pkgs/tools/package-management/nix-update/default.nix b/pkgs/tools/package-management/nix-update/default.nix
index 296f3be49cc9..c205550b267d 100644
--- a/pkgs/tools/package-management/nix-update/default.nix
+++ b/pkgs/tools/package-management/nix-update/default.nix
@@ -1,7 +1,7 @@
{ lib
, buildPythonApplication
, fetchFromGitHub
-, nixFlakes
+, nixUnstable
, nix-prefetch
, nixpkgs-fmt
, nixpkgs-review
@@ -19,7 +19,7 @@ buildPythonApplication rec {
};
makeWrapperArgs = [
- "--prefix" "PATH" ":" (lib.makeBinPath [ nixFlakes nix-prefetch nixpkgs-fmt nixpkgs-review ])
+ "--prefix" "PATH" ":" (lib.makeBinPath [ nixUnstable nix-prefetch nixpkgs-fmt nixpkgs-review ])
];
checkPhase = ''
diff --git a/pkgs/tools/package-management/nix/default.nix b/pkgs/tools/package-management/nix/default.nix
index ec5099c5f6ee..159fc5b39c12 100644
--- a/pkgs/tools/package-management/nix/default.nix
+++ b/pkgs/tools/package-management/nix/default.nix
@@ -227,12 +227,4 @@ in rec {
];
});
- nixExperimental = nixUnstable.overrideAttrs (prev: {
- patches = (prev.patches or []) ++ [ ./enable-all-experimental.patch ];
- });
-
- nixFlakes = nixUnstable.overrideAttrs (prev: {
- patches = (prev.patches or []) ++ [ ./enable-flakes.patch ];
- });
-
}
diff --git a/pkgs/tools/package-management/nix/enable-all-experimental.patch b/pkgs/tools/package-management/nix/enable-all-experimental.patch
deleted file mode 100644
index 1712b7295a5e..000000000000
--- a/pkgs/tools/package-management/nix/enable-all-experimental.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-diff --git a/src/libstore/globals.cc b/src/libstore/globals.cc
-index d3b27d7be..e7d002e1d 100644
---- a/src/libstore/globals.cc
-+++ b/src/libstore/globals.cc
-@@ -172,8 +172,7 @@ MissingExperimentalFeature::MissingExperimentalFeature(std::string feature)
-
- void Settings::requireExperimentalFeature(const std::string & name)
- {
-- if (!isExperimentalFeatureEnabled(name))
-- throw MissingExperimentalFeature(name);
-+ return;
- }
-
- bool Settings::isWSL1()
diff --git a/pkgs/tools/package-management/nix/enable-flakes.patch b/pkgs/tools/package-management/nix/enable-flakes.patch
deleted file mode 100644
index 998067449b7f..000000000000
--- a/pkgs/tools/package-management/nix/enable-flakes.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-diff --git a/src/libstore/globals.hh b/src/libstore/globals.hh
-index 3e4ead76c..81d407236 100644
---- a/src/libstore/globals.hh
-+++ b/src/libstore/globals.hh
-@@ -923,7 +923,8 @@ public:
- value.
- )"};
-
-- Setting experimentalFeatures{this, {}, "experimental-features",
-+ Setting experimentalFeatures{
-+ this, {"flakes", "nix-command"}, "experimental-features",
- "Experimental Nix features to enable."};
-
- bool isExperimentalFeatureEnabled(const std::string & name);
diff --git a/pkgs/tools/package-management/nixpkgs-review/default.nix b/pkgs/tools/package-management/nixpkgs-review/default.nix
index 2229e0c6a1de..3bfb89fe1050 100644
--- a/pkgs/tools/package-management/nixpkgs-review/default.nix
+++ b/pkgs/tools/package-management/nixpkgs-review/default.nix
@@ -1,7 +1,7 @@
{ lib
, python3
, fetchFromGitHub
-, nixFlakes
+, nixUnstable
, git
}:
@@ -17,7 +17,7 @@ python3.pkgs.buildPythonApplication rec {
};
makeWrapperArgs = [
- "--prefix" "PATH" ":" (lib.makeBinPath [ nixFlakes git ])
+ "--prefix" "PATH" ":" (lib.makeBinPath [ nixUnstable git ])
];
doCheck = false;
diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix
index a275fbd80575..6fddebdfc557 100644
--- a/pkgs/top-level/aliases.nix
+++ b/pkgs/top-level/aliases.nix
@@ -492,6 +492,7 @@ mapAliases ({
nginxUnstable = nginxMainline; # added 2018-04-25
nilfs_utils = nilfs-utils; # added 2018-04-25
nix-review = nixpkgs-review; # added 2019-12-22
+ nixFlakes = nixUnstable; # added 2021-05-21
nmap_graphical = nmap-graphical; # added 2017-01-19
nologin = shadow; # added 2018-04-25
nxproxy = nx-libs; # added 2019-02-15
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 48a68ee18591..938ec3369951 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -7092,6 +7092,11 @@ in
inherit (linuxPackages) nvidia_x11;
nvidiaGpuSupport = config.cudaSupport or false;
};
+ nomad_1_1 = callPackage ../applications/networking/cluster/nomad/1.1.nix {
+ buildGoPackage = buildGo116Package;
+ inherit (linuxPackages) nvidia_x11;
+ nvidiaGpuSupport = config.cudaSupport or false;
+ };
nomad-driver-podman = callPackage ../applications/networking/cluster/nomad-driver-podman { };
@@ -19086,11 +19091,7 @@ in
mailman-web = with python3.pkgs; toPythonApplication mailman-web;
- mastodon = callPackage ../servers/mastodon {
- # With nodejs v14 the streaming endpoint breaks. Need migrate to uWebSockets.js or similar.
- # https://github.com/tootsuite/mastodon/issues/15184
- nodejs-slim = nodejs-slim-12_x;
- };
+ mastodon = callPackage ../servers/mastodon { };
materialize = callPackage ../servers/sql/materialize {
inherit (buildPackages.darwin) bootstrap_cmds;
@@ -30420,9 +30421,7 @@ in
})
nix
nixStable
- nixUnstable
- nixFlakes
- nixExperimental;
+ nixUnstable;
nixStatic = pkgsStatic.nix;