From fd7f7bd0ca8dea073dccee53fffc1b6002dda950 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 28 Sep 2021 16:56:14 +0200 Subject: [PATCH 01/59] time-decode: init at 3.2.0 --- pkgs/tools/misc/time-decode/default.nix | 33 +++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 35 insertions(+) create mode 100644 pkgs/tools/misc/time-decode/default.nix diff --git a/pkgs/tools/misc/time-decode/default.nix b/pkgs/tools/misc/time-decode/default.nix new file mode 100644 index 000000000000..6dbb694770c8 --- /dev/null +++ b/pkgs/tools/misc/time-decode/default.nix @@ -0,0 +1,33 @@ +{ lib +, fetchFromGitHub +, python3 +}: + +python3.pkgs.buildPythonApplication rec { + pname = "time-decode"; + version = "3.2.0"; + + src = fetchFromGitHub { + owner = "digitalsleuth"; + repo = "time_decode"; + rev = "v${version}"; + sha256 = "1iwqdq1ail04hs8pkb6rxan4ng2jl2iar6pk72skj41xh4qhlyg6"; + }; + + propagatedBuildInputs = with python3.pkgs; [ + colorama + python-dateutil + ]; + + # Project has no tests + doCheck = false; + + pythonImportsCheck = [ "time_decode" ]; + + meta = with lib; { + description = "Timestamp and date decoder"; + homepage = "https://github.com/digitalsleuth/time_decode"; + license = with licenses; [ mit ]; + maintainers = with maintainers; [ fab ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index cd63e7444fcb..d1431d75ae8f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -9662,6 +9662,8 @@ with pkgs; tinyproxy = callPackage ../tools/networking/tinyproxy { }; + time-decode = callPackage ../tools/misc/time-decode { }; + tio = callPackage ../tools/misc/tio { }; tiv = callPackage ../applications/misc/tiv { }; From 45db7e6b541b499f51074765d000264a31a1806b Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 28 Sep 2021 21:32:56 +0200 Subject: [PATCH 02/59] volatility3: init at 1.0.1 --- pkgs/tools/security/volatility3/default.nix | 46 +++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 2 files changed, 48 insertions(+) create mode 100644 pkgs/tools/security/volatility3/default.nix diff --git a/pkgs/tools/security/volatility3/default.nix b/pkgs/tools/security/volatility3/default.nix new file mode 100644 index 000000000000..d6a99dd71072 --- /dev/null +++ b/pkgs/tools/security/volatility3/default.nix @@ -0,0 +1,46 @@ +{ lib +, fetchFromGitHub +, python3 +}: + +python3.pkgs.buildPythonApplication rec { + pname = "volatility3"; + version = "1.0.1"; + + disabled = python3.pythonOlder "3.6"; + + src = fetchFromGitHub { + owner = "volatilityfoundation"; + repo = pname; + rev = "v${version}"; + sha256 = "1k56izgkla9mrjrkp1saavajdx9x1wkqpwmbpvxv9rw5k80m5a4a"; + }; + + propagatedBuildInputs = with python3.pkgs; [ + capstone + jsonschema + pefile + pycryptodome + yara-python + ]; + + preBuild = '' + export HOME=$(mktemp -d); + ''; + + # Project has no tests + doCheck = false; + + pythonImportsCheck = [ "volatility3" ]; + + meta = with lib; { + description = "Volatile memory extraction frameworks"; + homepage = "https://www.volatilityfoundation.org/"; + license = { + # Volatility Software License 1.0 + free = false; + url = "https://www.volatilityfoundation.org/license/vsl-v1.0"; + }; + maintainers = with maintainers; [ fab ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index add6df83af21..90f429b5d56f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -9975,6 +9975,8 @@ with pkgs; volatility = callPackage ../tools/security/volatility { }; + volatility3 = callPackage ../tools/security/volatility3 { }; + vbetool = callPackage ../tools/system/vbetool { }; vcsi = callPackage ../tools/video/vcsi { }; From 5a5c73cae68717ca6a9bc29475264762c847ccca Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 30 Sep 2021 22:07:11 +0200 Subject: [PATCH 03/59] python3Packages.herepy: 3.5.3 -> 3.5.4 --- pkgs/development/python-modules/herepy/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/herepy/default.nix b/pkgs/development/python-modules/herepy/default.nix index 9b1a50a532fa..4b1d5913f7f8 100644 --- a/pkgs/development/python-modules/herepy/default.nix +++ b/pkgs/development/python-modules/herepy/default.nix @@ -9,7 +9,7 @@ buildPythonPackage rec { pname = "herepy"; - version = "3.5.3"; + version = "3.5.4"; disabled = pythonOlder "3.5"; @@ -17,7 +17,7 @@ buildPythonPackage rec { owner = "abdullahselek"; repo = "HerePy"; rev = version; - sha256 = "sha256-05x3EQoyv38j4UcixN0sf5BI2oTjfasAIQyZqQSjdPM="; + sha256 = "0wnkyrzpahxg7yh2qf149fzgs4x2jx3lf458syzz3crm7qix2hsk"; }; postPatch = '' From b095376aab546e95092da6b05a81e8f565e5e791 Mon Sep 17 00:00:00 2001 From: 0x4A6F <0x4A6F@users.noreply.github.com> Date: Thu, 30 Sep 2021 22:46:39 +0200 Subject: [PATCH 04/59] promscale: 0.5.1 -> 0.6.0 --- pkgs/servers/monitoring/prometheus/promscale.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/servers/monitoring/prometheus/promscale.nix b/pkgs/servers/monitoring/prometheus/promscale.nix index 546bfbb7e28c..255cc2523eee 100644 --- a/pkgs/servers/monitoring/prometheus/promscale.nix +++ b/pkgs/servers/monitoring/prometheus/promscale.nix @@ -5,16 +5,16 @@ buildGoModule rec { pname = "promscale"; - version = "0.5.1"; + version = "0.6.0"; src = fetchFromGitHub { owner = "timescale"; repo = pname; rev = version; - sha256 = "sha256-u9qlABTuQ4EWEfyei6nN/AZ7j9QJXQ61GvyhP8wEmK0="; + sha256 = "sha256-2zbvibnmYAUyl7zkwcRgJKP24mid8/IUIUwfy7yaCzM="; }; - vendorSha256 = "sha256-DFDTYT7UK1cYwGeCgeQcJmrCoqGPDzicusRPPUbH0Gs="; + vendorSha256 = "sha256-o7vRSCEEqzhruHEnRPuxC1e4NzCl8Br4vvqg0pwGIgA="; ldflags = [ "-s" "-w" "-X github.com/timescale/promscale/pkg/version.Version=${version}" "-X github.com/timescale/promscale/pkg/version.CommitHash=${src.rev}" ]; From 8b08997383edea7a62fbf2f4a441c522fb6ca625 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 1 Oct 2021 08:15:40 +0200 Subject: [PATCH 05/59] python3Packages.aionanoleaf: init at 0.0.2 --- .../python-modules/aionanoleaf/default.nix | 37 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 39 insertions(+) create mode 100644 pkgs/development/python-modules/aionanoleaf/default.nix diff --git a/pkgs/development/python-modules/aionanoleaf/default.nix b/pkgs/development/python-modules/aionanoleaf/default.nix new file mode 100644 index 000000000000..96c0270566c1 --- /dev/null +++ b/pkgs/development/python-modules/aionanoleaf/default.nix @@ -0,0 +1,37 @@ +{ lib +, aiohttp +, buildPythonPackage +, fetchFromGitHub +, pythonOlder +, pytestCheckHook +}: + +buildPythonPackage rec { + pname = "aionanoleaf"; + version = "0.0.2"; + + disabled = pythonOlder "3.8"; + + src = fetchFromGitHub { + owner = "milanmeu"; + repo = pname; + rev = "v${version}"; + sha256 = "1fmzmbsmfsa1ixxcz8vckg8qmsip8y7gih1j23jrlfbjm9s5jf5p"; + }; + + propagatedBuildInputs = [ + aiohttp + ]; + + # Project has no tests + doCheck = false; + + pythonImportsCheck = [ "aionanoleaf" ]; + + meta = with lib; { + description = "Python wrapper for the Nanoleaf API"; + homepage = "https://github.com/milanmeu/aionanoleaf"; + license = licenses.lgpl3Plus; + maintainers = with maintainers; [ fab ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 648a94ff4211..b6dfb72db45e 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -341,6 +341,8 @@ in { aiomysql = callPackage ../development/python-modules/aiomysql { }; + aionanoleaf = callPackage ../development/python-modules/aionanoleaf { }; + aionotify = callPackage ../development/python-modules/aionotify { }; aionotion = callPackage ../development/python-modules/aionotion { }; From 3d38f81b08ba25dd738662f488c39025b4231090 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 1 Oct 2021 08:33:21 +0200 Subject: [PATCH 06/59] python3Packages.aioserial: init at 1.3.0 --- .../python-modules/aioserial/default.nix | 34 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 36 insertions(+) create mode 100644 pkgs/development/python-modules/aioserial/default.nix diff --git a/pkgs/development/python-modules/aioserial/default.nix b/pkgs/development/python-modules/aioserial/default.nix new file mode 100644 index 000000000000..c8c521edbe65 --- /dev/null +++ b/pkgs/development/python-modules/aioserial/default.nix @@ -0,0 +1,34 @@ +{ lib +, buildPythonPackage +, fetchPypi +, pyserial +, pythonOlder +}: + +buildPythonPackage rec { + pname = "aioserial"; + version = "1.3.0"; + + disabled = pythonOlder "3.6"; + + src = fetchPypi { + inherit pname version; + sha256 = "080j3ws3j2arj2f16mzqn1qliy0bzmb0gzk5jvm5ldkhsf1s061h"; + }; + + propagatedBuildInputs = [ + pyserial + ]; + + # Project has no tests + doCheck = false; + + pythonImportsCheck = [ "aioserial" ]; + + meta = with lib; { + description = "Python module for async serial communication"; + homepage = "https://github.com/changyuheng/aioserial"; + license = licenses.mpl20; + maintainers = with maintainers; [ fab ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 648a94ff4211..06c8d01c4c73 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -367,6 +367,8 @@ in { aiorun = callPackage ../development/python-modules/aiorun { }; + aioserial = callPackage ../development/python-modules/aioserial { }; + aioshelly = callPackage ../development/python-modules/aioshelly { }; aiosignal = callPackage ../development/python-modules/aiosignal { }; From fc39a32aa1322d8eec8f7224261c005cbf339549 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 1 Oct 2021 08:36:24 +0200 Subject: [PATCH 07/59] python3Packages.phone-modem: init at 0.1.1 --- .../python-modules/phone-modem/default.nix | 35 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 37 insertions(+) create mode 100644 pkgs/development/python-modules/phone-modem/default.nix diff --git a/pkgs/development/python-modules/phone-modem/default.nix b/pkgs/development/python-modules/phone-modem/default.nix new file mode 100644 index 000000000000..969978b4884e --- /dev/null +++ b/pkgs/development/python-modules/phone-modem/default.nix @@ -0,0 +1,35 @@ +{ lib +, aioserial +, buildPythonPackage +, fetchPypi +, pythonOlder +}: + +buildPythonPackage rec { + pname = "phone-modem"; + version = "0.1.1"; + + disabled = pythonOlder "3.6"; + + src = fetchPypi { + pname = "phone_modem"; + inherit version; + sha256 = "0kqa1ky5hjs9zdp3dnd8s9mz5p6z0al3hxxlgqdq9vnnpnv0lafy"; + }; + + propagatedBuildInputs = [ + aioserial + ]; + + # Project has no tests + doCheck = false; + + pythonImportsCheck = [ "phone_modem" ]; + + meta = with lib; { + description = "Python module for receiving caller ID and call rejection"; + homepage = "https://github.com/tkdrob/phone_modem"; + license = licenses.mit; + maintainers = with maintainers; [ fab ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 06c8d01c4c73..fbabfaa9c37a 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -5477,6 +5477,8 @@ in { phik = callPackage ../development/python-modules/phik { }; + phone-modem = callPackage ../development/python-modules/phone-modem { }; + phonenumbers = callPackage ../development/python-modules/phonenumbers { }; micloud = callPackage ../development/python-modules/micloud { }; From 35841653e1f3571bab5f61ec32a7dc0c67c21965 Mon Sep 17 00:00:00 2001 From: rnhmjoj Date: Fri, 1 Oct 2021 21:23:34 +0200 Subject: [PATCH 08/59] lib/tests/maintainers: add matrix option --- lib/tests/maintainers.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/tests/maintainers.nix b/lib/tests/maintainers.nix index 2408a20af4b7..3cbfba569481 100644 --- a/lib/tests/maintainers.nix +++ b/lib/tests/maintainers.nix @@ -16,6 +16,10 @@ let email = lib.mkOption { type = types.str; }; + matrix = lib.mkOption { + type = types.nullOr types.str; + default = null; + }; github = lib.mkOption { type = types.nullOr types.str; default = null; From 3e85813580ea9f118d873dd20046a8703614b52a Mon Sep 17 00:00:00 2001 From: ilkecan Date: Fri, 1 Oct 2021 22:49:49 +0300 Subject: [PATCH 09/59] ghidra-bin: wrap launcher instead of the binary --- pkgs/tools/security/ghidra/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/tools/security/ghidra/default.nix b/pkgs/tools/security/ghidra/default.nix index 835f607206ff..3b3f5ed44e70 100644 --- a/pkgs/tools/security/ghidra/default.nix +++ b/pkgs/tools/security/ghidra/default.nix @@ -62,7 +62,9 @@ in stdenv.mkDerivation rec { postFixup = '' mkdir -p "$out/bin" - makeWrapper "${pkg_path}/ghidraRun" "$out/bin/ghidra" \ + ln -s "${pkg_path}/ghidraRun" "$out/bin/ghidra" + + wrapProgram "${pkg_path}/support/launch.sh" \ --prefix PATH : ${lib.makeBinPath [ openjdk11 ]} ''; From 2a8eebc8064227a3bfde4eba145b3233e0e13f49 Mon Sep 17 00:00:00 2001 From: Sergei Trofimovich Date: Wed, 29 Sep 2021 23:21:54 +0100 Subject: [PATCH 10/59] ocl-icd: update homepage, switch to github releases A prerequisite step for version update --- .../development/libraries/ocl-icd/default.nix | 24 ++++++++++++++----- 1 file changed, 18 insertions(+), 6 deletions(-) diff --git a/pkgs/development/libraries/ocl-icd/default.nix b/pkgs/development/libraries/ocl-icd/default.nix index b84aa6a146d7..acd45c5bc6ef 100644 --- a/pkgs/development/libraries/ocl-icd/default.nix +++ b/pkgs/development/libraries/ocl-icd/default.nix @@ -1,15 +1,27 @@ -{lib, stdenv, fetchurl, ruby, opencl-headers, addOpenGLRunpath }: +{ lib +, stdenv +, fetchFromGitHub +, ruby +, opencl-headers +, addOpenGLRunpath +, autoreconfHook +}: stdenv.mkDerivation rec { pname = "ocl-icd"; version = "2.2.10"; - src = fetchurl { - url = "https://forge.imag.fr/frs/download.php/810/${pname}-${version}.tar.gz"; - sha256 = "0f14gpa13sdm0kzqv5yycp4pschbmi6n5fj7wl4ilspzsrqcgqr2"; + src = fetchFromGitHub { + owner = "OCL-dev"; + repo = "ocl-icd"; + rev = "v${version}"; + sha256 = "1cvay1lif71v60hhgyicc25ysy9ifh3da1gp12ri5klyvx4jj3ji"; }; - nativeBuildInputs = [ ruby ]; + nativeBuildInputs = [ + autoreconfHook + ruby + ]; buildInputs = [ opencl-headers ]; @@ -19,7 +31,7 @@ stdenv.mkDerivation rec { meta = with lib; { description = "OpenCL ICD Loader for ${opencl-headers.name}"; - homepage = "https://forge.imag.fr/projects/ocl-icd/"; + homepage = "https://github.com/OCL-dev/ocl-icd"; license = licenses.bsd2; platforms = platforms.linux; }; From 0c0bb2d6e37e82ce777030183ab1fc971d5770c3 Mon Sep 17 00:00:00 2001 From: Sergei Trofimovich Date: Fri, 1 Oct 2021 22:43:22 +0100 Subject: [PATCH 11/59] ocl-icd: 2.2.10 -> 2.3.1 --- pkgs/development/libraries/ocl-icd/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/ocl-icd/default.nix b/pkgs/development/libraries/ocl-icd/default.nix index acd45c5bc6ef..75dd5ecd541f 100644 --- a/pkgs/development/libraries/ocl-icd/default.nix +++ b/pkgs/development/libraries/ocl-icd/default.nix @@ -9,13 +9,13 @@ stdenv.mkDerivation rec { pname = "ocl-icd"; - version = "2.2.10"; + version = "2.3.1"; src = fetchFromGitHub { owner = "OCL-dev"; repo = "ocl-icd"; rev = "v${version}"; - sha256 = "1cvay1lif71v60hhgyicc25ysy9ifh3da1gp12ri5klyvx4jj3ji"; + sha256 = "1km2rqc9pw6xxkqp77a22pxfsb5kgw95w9zd15l5jgvyjb6rqqad"; }; nativeBuildInputs = [ From 955c9bcf5c27d4ad3ab14ab7c86616759e89afc5 Mon Sep 17 00:00:00 2001 From: Luflosi Date: Fri, 1 Oct 2021 22:31:05 +0200 Subject: [PATCH 12/59] ipfs: 0.9.1 -> 0.10.0 https://github.com/ipfs/go-ipfs/releases/tag/v0.10.0 --- pkgs/applications/networking/ipfs/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/ipfs/default.nix b/pkgs/applications/networking/ipfs/default.nix index 2823b84d473e..c90353a18455 100644 --- a/pkgs/applications/networking/ipfs/default.nix +++ b/pkgs/applications/networking/ipfs/default.nix @@ -2,13 +2,13 @@ buildGoModule rec { pname = "ipfs"; - version = "0.9.1"; + version = "0.10.0"; rev = "v${version}"; # go-ipfs makes changes to it's source tarball that don't match the git source. src = fetchurl { url = "https://github.com/ipfs/go-ipfs/releases/download/${rev}/go-ipfs-source.tar.gz"; - sha256 = "sha256-RliyIEtNgwzbLVwl6T38VIbhc12CZMBc3LZ6T/llaHc="; + sha256 = "sha256-okfIxNoFoJZx1WCWe/6NcYhwU+ZzOyn01g8BGtXO3UQ="; }; # tarball contains multiple files/directories From 3dce389e9ed29432fd1226e6cdf26c50f1176e4d Mon Sep 17 00:00:00 2001 From: Zack A Date: Fri, 1 Oct 2021 20:19:07 -0700 Subject: [PATCH 13/59] atom,atom-beta: 1.57.0 -> 1.58.0, 1.58.0-beta0 -> 1.59.0-beta0 --- pkgs/applications/editors/atom/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/editors/atom/default.nix b/pkgs/applications/editors/atom/default.nix index 03a46479871f..84704e71cea8 100644 --- a/pkgs/applications/editors/atom/default.nix +++ b/pkgs/applications/editors/atom/default.nix @@ -3,14 +3,14 @@ let versions = { atom = { - version = "1.57.0"; - sha256 = "1jzxjvaljk8p3gzjvs5bn3d128x37pcgn6by7srhs9qclc5j2664"; + version = "1.58.0"; + sha256 = "sha256-QxDhr4gwlS9O/lk0nfqsw5sFiPckSTFL15XtRpQh0tU="; }; atom-beta = { - version = "1.58.0"; + version = "1.59.0"; beta = 0; - sha256 = "0amhilmpiwn2jfn0nrcrhzminqdp3xm5p3w3ldc3qk761pn3lbpd"; + sha256 = "sha256-s1XHR2e4JPywdLiIcjTqMRILARDthHxBeTQOCIkhmXE="; broken = true; }; }; From b55e71ba9a95713d5454b77e9a39f2d086010acd Mon Sep 17 00:00:00 2001 From: Pierre Bourdon Date: Sat, 2 Oct 2021 05:28:35 +0200 Subject: [PATCH 14/59] libb64: 1.2 -> 2.0.0.1 --- pkgs/development/libraries/libb64/default.nix | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pkgs/development/libraries/libb64/default.nix b/pkgs/development/libraries/libb64/default.nix index d1f942a3498b..605faaebf696 100644 --- a/pkgs/development/libraries/libb64/default.nix +++ b/pkgs/development/libraries/libb64/default.nix @@ -1,16 +1,16 @@ -{ lib, stdenv, fetchurl, unzip }: +{ lib, stdenv, fetchFromGitHub }: stdenv.mkDerivation rec { pname = "libb64"; - version = "1.2"; + version = "2.0.0.1"; - src = fetchurl { - url = "http://download.draios.com/dependencies/libb64-1.2.src.zip"; - sha256 = "1lxzi6v10qsl2r6633dx0zwqyvy0j19nmwclfd0d7qybqmhqsg9l"; + src = fetchFromGitHub { + owner = "libb64"; + repo = "libb64"; + rev = "v${version}"; + sha256 = "sha256-9loDftr769qnIi00MueO86kjha2EiG9pnCLogp0Iq3c="; }; - nativeBuildInputs = [ unzip ]; - installPhase = '' mkdir -p $out $out/lib $out/bin $out/include cp -r include/* $out/include/ From 778f67d5e0becb734057ef155f37a09414bcdd18 Mon Sep 17 00:00:00 2001 From: poultryghast Date: Sat, 2 Oct 2021 00:57:29 -0400 Subject: [PATCH 15/59] ultimate-oldschool-pc-font-pack: link to changelog --- pkgs/data/fonts/ultimate-oldschool-pc-font-pack/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/data/fonts/ultimate-oldschool-pc-font-pack/default.nix b/pkgs/data/fonts/ultimate-oldschool-pc-font-pack/default.nix index b1da06ccd8b4..d34ebaf6d8f3 100644 --- a/pkgs/data/fonts/ultimate-oldschool-pc-font-pack/default.nix +++ b/pkgs/data/fonts/ultimate-oldschool-pc-font-pack/default.nix @@ -16,6 +16,7 @@ fetchzip { meta = with lib; { description = "The Ultimate Oldschool PC Font Pack (TTF Fonts)"; homepage = "https://int10h.org/oldschool-pc-fonts/"; + changelog = "https://int10h.org/oldschool-pc-fonts/readme/#history"; license = licenses.cc-by-sa-40; maintainers = [ maintainers.endgame ]; }; From b40932d3f350569539d9ebc3122c0150ca572b9c Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sat, 2 Oct 2021 05:37:48 +0000 Subject: [PATCH 16/59] python38Packages.enamlx: 0.4.6 -> 0.5.0 --- pkgs/development/python-modules/enamlx/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/enamlx/default.nix b/pkgs/development/python-modules/enamlx/default.nix index 947076dfc423..21cc4512386f 100644 --- a/pkgs/development/python-modules/enamlx/default.nix +++ b/pkgs/development/python-modules/enamlx/default.nix @@ -8,13 +8,13 @@ buildPythonPackage rec { pname = "enamlx"; - version = "0.4.6"; + version = "0.5.0"; src = fetchFromGitHub { owner = "frmdstryr"; repo = pname; rev = "v${version}"; - sha256 = "144bsh6lfrrjk6dygrbc2bfhlv742avj53awxnhgai04hab0214r"; + sha256 = "1fwfh5h1l68zwkjayf71dmxrhjbscsh87p4mskzkwwaj5cxsva90"; }; propagatedBuildInputs = [ From 0266137e319343aa85bcd2e94b61cc0a3c9bc34f Mon Sep 17 00:00:00 2001 From: xrelkd <46590321+xrelkd@users.noreply.github.com> Date: Sat, 18 Sep 2021 17:27:57 +0800 Subject: [PATCH 17/59] eksctl: 0.66.0 -> 0.68.0 --- pkgs/tools/admin/eksctl/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/admin/eksctl/default.nix b/pkgs/tools/admin/eksctl/default.nix index 9dcdfef17e78..79e0559eaaa8 100644 --- a/pkgs/tools/admin/eksctl/default.nix +++ b/pkgs/tools/admin/eksctl/default.nix @@ -2,16 +2,16 @@ buildGoModule rec { pname = "eksctl"; - version = "0.66.0"; + version = "0.68.0"; src = fetchFromGitHub { owner = "weaveworks"; repo = pname; rev = version; - sha256 = "sha256-taKLOL3bdKFdLc6WbF7Q1vCqkRvv/X1NTvSSaYRYHyU="; + sha256 = "sha256-J4suRGr00mdgZv6q9Ar9x4HFZxk4gtUFF1TE3WyNlvE="; }; - vendorSha256 = "sha256-AHkMFuL1zWnv6Z4kCnKsZdqZZaYsQ8AIDmMOLQ+HvkI="; + vendorSha256 = "sha256-cUo+tcHhnbJbn3HS/I8lnkvfv+6+htIs1dMtKuEArQg="; doCheck = false; From 0e4095c8dc3c5175a1e9ebf1e1106b4ea6bd6561 Mon Sep 17 00:00:00 2001 From: Romanos Skiadas Date: Sat, 2 Oct 2021 11:03:55 +0300 Subject: [PATCH 18/59] mopidy-iris: 3.58.2 -> 3.59.0 --- pkgs/applications/audio/mopidy/iris.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/mopidy/iris.nix b/pkgs/applications/audio/mopidy/iris.nix index c4e231ad4099..d02ca3d747eb 100644 --- a/pkgs/applications/audio/mopidy/iris.nix +++ b/pkgs/applications/audio/mopidy/iris.nix @@ -2,11 +2,11 @@ python3Packages.buildPythonApplication rec { pname = "Mopidy-Iris"; - version = "3.58.2"; + version = "3.59.0"; src = python3Packages.fetchPypi { inherit pname version; - sha256 = "1cni9dd1c97bp92crjhsbwml12z8i6wkmj79zz8qvk46k8ixy3vp"; + sha256 = "0llvn0khl07ni34jvb3a1r6rnkf0ljizhpqrs5bdishfhpwyhm0j"; }; propagatedBuildInputs = [ From bc9fe44e7f11f121e193e065fe7d9b5f9b76da20 Mon Sep 17 00:00:00 2001 From: flexagoon Date: Fri, 1 Oct 2021 22:30:34 +0300 Subject: [PATCH 19/59] hover: 0.46.3 -> 0.46.6 --- pkgs/development/tools/hover/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/tools/hover/default.nix b/pkgs/development/tools/hover/default.nix index d3e72811db8b..9b3a222723bf 100644 --- a/pkgs/development/tools/hover/default.nix +++ b/pkgs/development/tools/hover/default.nix @@ -18,7 +18,7 @@ let pname = "hover"; - version = "0.46.3"; + version = "0.46.6"; libs = with xorg; [ libX11.dev @@ -41,18 +41,18 @@ let homepage = "https://github.com/go-flutter-desktop/hover"; license = licenses.bsd3; platforms = platforms.linux; - maintainers = [ maintainers.ericdallo maintainers.thiagokokada]; + maintainers = with maintainers; [ ericdallo thiagokokada flexagoon ]; }; subPackages = [ "." ]; - vendorSha256 = "sha256-qTBGmONlcFJcN+9bMZbVY+6kOQ97JmJWWvgmNeDWBL0="; + vendorSha256 = "0b4h7sr9ldvgaq2rz8hyzqv1b5gk8gkc9yxc8m3yzh2fxzznkr87"; src = fetchFromGitHub { rev = "v${version}"; owner = "go-flutter-desktop"; repo = pname; - sha256 = "sha256-0qzbRzpqoZcAt3k52+omqZ3Fq1KdS++wPpQkBkG1p6o="; + sha256 = "127hz08rvskl6hayn7dwd78g9lz83w7bmhdamk1fhwvay396q9qk"; }; nativeBuildInputs = [ addOpenGLRunpath makeWrapper ]; From a6951b22dd12aa9813dc106121b3a0d9210ce54f Mon Sep 17 00:00:00 2001 From: 0x4A6F <0x4A6F@users.noreply.github.com> Date: Sat, 2 Oct 2021 13:47:11 +0200 Subject: [PATCH 20/59] chrysalis: 0.8.5 -> 0.8.6 --- pkgs/applications/misc/chrysalis/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/chrysalis/default.nix b/pkgs/applications/misc/chrysalis/default.nix index 3332a08f2288..058a0f656fb5 100644 --- a/pkgs/applications/misc/chrysalis/default.nix +++ b/pkgs/applications/misc/chrysalis/default.nix @@ -2,7 +2,7 @@ let pname = "chrysalis"; - version = "0.8.5"; + version = "0.8.6"; in appimageTools.wrapAppImage rec { name = "${pname}-${version}-binary"; @@ -10,7 +10,7 @@ in appimageTools.wrapAppImage rec { inherit name; src = fetchurl { url = "https://github.com/keyboardio/${pname}/releases/download/v${version}/${pname}-${version}.AppImage"; - sha256 = "1vgymc99nci8rdq8hd7i98x77x45jnpcmhgb8v7fzsz3br6raxcm"; + sha256 = "17wv475w4m4fg6ky9wf7ygxm98nmsmydks14vh3an85xv0fhj8h9"; }; }; From 6598122426b9703ef4f6963839d1723e71734d20 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sat, 2 Oct 2021 12:40:46 +0000 Subject: [PATCH 21/59] python38Packages.mypy-boto3-s3: 1.18.51 -> 1.18.53 --- pkgs/development/python-modules/mypy-boto3-s3/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/mypy-boto3-s3/default.nix b/pkgs/development/python-modules/mypy-boto3-s3/default.nix index 9bcb20595e0c..b5c061a6ba48 100644 --- a/pkgs/development/python-modules/mypy-boto3-s3/default.nix +++ b/pkgs/development/python-modules/mypy-boto3-s3/default.nix @@ -8,12 +8,12 @@ buildPythonPackage rec { pname = "mypy-boto3-s3"; - version = "1.18.51"; + version = "1.18.53"; disabled = pythonOlder "3.6"; src = fetchPypi { inherit pname version; - sha256 = "3e932af8f4b400df54f93ec48da31c365d2068b31e4e8d04705510f787e6a5f6"; + sha256 = "4579f837aa87b439014c8aa40ff0cf2510a6d01dcb370179a19c5c45c8aecb9c"; }; propagatedBuildInputs = [ From df4a3239d18e94ab7662005669d3ebfbef4a2404 Mon Sep 17 00:00:00 2001 From: fortuneteller2k Date: Sat, 2 Oct 2021 23:44:04 +0800 Subject: [PATCH 22/59] scientifica: 2.2 -> 2.3 --- pkgs/data/fonts/scientifica/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/data/fonts/scientifica/default.nix b/pkgs/data/fonts/scientifica/default.nix index d8eda3e92326..bf5b887cc771 100644 --- a/pkgs/data/fonts/scientifica/default.nix +++ b/pkgs/data/fonts/scientifica/default.nix @@ -1,7 +1,7 @@ { lib, fetchurl }: let - version = "2.2"; + version = "2.3"; in fetchurl rec { name = "scientifica-${version}"; @@ -11,7 +11,7 @@ in fetchurl rec { recursiveHash = true; - sha256 = "sha256-mkZnuW+CB20t6MEpEeQR1CWkIUtqgVwrKN4sezQRaB4="; + sha256 = "sha256-pVWkj/2lFpmWk0PPDrIMU4Gey7/m/9tzUsuD3ZDUAdc="; postFetch = '' tar xf $downloadedFile From 4e5362765cad7b9df243f0ef7cee3b2473a996b8 Mon Sep 17 00:00:00 2001 From: fortuneteller2k Date: Sat, 2 Oct 2021 23:49:12 +0800 Subject: [PATCH 23/59] polybar: 3.5.6 -> 3.5.7 --- pkgs/applications/misc/polybar/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/polybar/default.nix b/pkgs/applications/misc/polybar/default.nix index b3b71d87608e..3660b0d7e0b1 100644 --- a/pkgs/applications/misc/polybar/default.nix +++ b/pkgs/applications/misc/polybar/default.nix @@ -43,13 +43,13 @@ stdenv.mkDerivation rec { pname = "polybar"; - version = "3.5.6"; + version = "3.5.7"; src = fetchFromGitHub { owner = pname; repo = pname; rev = version; - sha256 = "sha256-Uvj9V2M/uQxyziTx1hecrcaQZECijlpVmWcUeT+PqrI="; + sha256 = "sha256-h12VW3IY4do4cKz2Fd/QgVTBk+zJO+qXuRUCQUyO/x0="; fetchSubmodules = true; }; From 0e75ba72b3df57ecb48155b566325b4b15bf6fb4 Mon Sep 17 00:00:00 2001 From: fortuneteller2k Date: Sat, 2 Oct 2021 23:55:53 +0800 Subject: [PATCH 24/59] river, kile-wl: update --- pkgs/applications/misc/kile-wl/default.nix | 8 ++++---- pkgs/applications/window-managers/river/default.nix | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/pkgs/applications/misc/kile-wl/default.nix b/pkgs/applications/misc/kile-wl/default.nix index f517bfe3f4c1..0da4889ebdf3 100644 --- a/pkgs/applications/misc/kile-wl/default.nix +++ b/pkgs/applications/misc/kile-wl/default.nix @@ -2,20 +2,20 @@ rustPlatform.buildRustPackage rec { pname = "kile-wl"; - version = "unstable-2021-09-02"; + version = "unstable-2021-09-30"; src = fetchFromGitLab { owner = "snakedye"; repo = "kile"; - rev = "acd61f7e59cc34091c976b0cdc3067dd35b53cae"; - sha256 = "sha256-O5sdPw9tR3GFPmJmb/QDmdBc7yeSGui4k+yn4Xo016A="; + rev = "b543d435b92498b72609a05048bc368837a7b455"; + sha256 = "sha256-+SjdhSRT6TGbwvgZti8t9wYJx8LEtY3pleDZx/AEkio="; }; passthru.updateScript = unstableGitUpdater { url = "https://gitlab.com/snakedye/kile.git"; }; - cargoSha256 = "sha256-2QCv5fk0AH4sv0QJ/16zniHfg3HZLoHB7dl6vSfkxpE="; + cargoSha256 = "sha256-W7rq42Pz+l4TSsR/h2teRTbl3A1zjOcIx6wqgnwyQNA="; nativeBuildInputs = [ scdoc ]; diff --git a/pkgs/applications/window-managers/river/default.nix b/pkgs/applications/window-managers/river/default.nix index 24acb2664e5d..8cf72adbf85a 100644 --- a/pkgs/applications/window-managers/river/default.nix +++ b/pkgs/applications/window-managers/river/default.nix @@ -19,13 +19,13 @@ stdenv.mkDerivation rec { pname = "river"; - version = "unstable-2021-08-19"; + version = "unstable-2021-09-30"; src = fetchFromGitHub { owner = "ifreund"; repo = pname; - rev = "e59c2a73d72853cb54f55eecc446f337c94cda24"; - sha256 = "sha256-R/Wg8KLh4v3ccX1Uh0Q+7026tRH7XLxHpX9/BgsGGdA="; + rev = "e6bb373240bc08668c8e6e14996a3f8765941158"; + sha256 = "sha256-dYruRpsud2XYrVY2f4f2dkRRSh1oU9rn2GRwAkJqW3A="; fetchSubmodules = true; }; From 358659d668d5740384b165ff38ff721cfe62aeec Mon Sep 17 00:00:00 2001 From: Kid <44045911+kidonng@users.noreply.github.com> Date: Sun, 3 Oct 2021 06:41:19 +0000 Subject: [PATCH 25/59] yarn: 1.22.11 -> 1.22.15 --- pkgs/development/tools/yarn/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/yarn/default.nix b/pkgs/development/tools/yarn/default.nix index 10012e552ced..518b98021079 100644 --- a/pkgs/development/tools/yarn/default.nix +++ b/pkgs/development/tools/yarn/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { pname = "yarn"; - version = "1.22.11"; + version = "1.22.15"; src = fetchzip { url = "https://github.com/yarnpkg/yarn/releases/download/v${version}/yarn-v${version}.tar.gz"; - sha256 = "0gmk46b9gd6q0zi3a2adgf8c1y05c2lf34k5wrw7alnlwy8iqvvp"; + sha256 = "1xw9z55wvij6x0dns6z0xydywvlc80kgvsh3w4xxkq9cbiman1v6"; }; buildInputs = [ nodejs ]; From 2b0a7ef8f2e234470315e89c43765cb2258b2afe Mon Sep 17 00:00:00 2001 From: Guillaume Girol Date: Sun, 3 Oct 2021 12:00:00 +0000 Subject: [PATCH 26/59] nixos/hqplayerd: do not make manual depend on (unfree) hqplayerd --- nixos/modules/services/audio/hqplayerd.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/audio/hqplayerd.nix b/nixos/modules/services/audio/hqplayerd.nix index d549ac77e0e5..416d12ce2172 100644 --- a/nixos/modules/services/audio/hqplayerd.nix +++ b/nixos/modules/services/audio/hqplayerd.nix @@ -63,7 +63,7 @@ in description = '' HQplayer daemon configuration, written to /etc/hqplayer/hqplayerd.xml. - Refer to ${pkg}/share/doc/hqplayerd/readme.txt for possible values. + Refer to share/doc/hqplayerd/readme.txt in the hqplayerd derivation for possible values. ''; }; }; From 404ece99f21859dd973c4e2693d25c9fa339d836 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sun, 3 Oct 2021 15:52:37 +0000 Subject: [PATCH 27/59] asciinema: 2.0.2 -> 2.1.0 --- pkgs/tools/misc/asciinema/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/asciinema/default.nix b/pkgs/tools/misc/asciinema/default.nix index 67c324d4aeed..e08d0b5d3f70 100644 --- a/pkgs/tools/misc/asciinema/default.nix +++ b/pkgs/tools/misc/asciinema/default.nix @@ -2,13 +2,13 @@ python3Packages.buildPythonApplication rec { pname = "asciinema"; - version = "2.0.2"; + version = "2.1.0"; src = fetchFromGitHub { owner = "asciinema"; repo = "asciinema"; rev = "v${version}"; - sha256 = "1a2pysxnp6icyd08mgf66xr6f6j0irnfxdpf3fmzcz31ix7l9kc4"; + sha256 = "1alcz018jrrpasrmgs8nw775a6pf62xq2xgs54c4mb396prdqy4x"; }; checkInputs = [ glibcLocales python3Packages.nose ]; From 9a8c64a2f608c305b38137f793afc1e7865a00c3 Mon Sep 17 00:00:00 2001 From: figsoda Date: Sun, 3 Oct 2021 12:58:45 -0400 Subject: [PATCH 28/59] rslint: init at 0.3.0 --- pkgs/development/tools/rslint/default.nix | 27 +++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 29 insertions(+) create mode 100644 pkgs/development/tools/rslint/default.nix diff --git a/pkgs/development/tools/rslint/default.nix b/pkgs/development/tools/rslint/default.nix new file mode 100644 index 000000000000..11ed2349e600 --- /dev/null +++ b/pkgs/development/tools/rslint/default.nix @@ -0,0 +1,27 @@ +{ lib, rustPlatform, fetchFromGitHub }: + +rustPlatform.buildRustPackage rec { + pname = "rslint"; + version = "0.3.0"; + + src = fetchFromGitHub { + owner = "rslint"; + repo = pname; + rev = "v${version}"; + sha256 = "12329x39zqmgl8zf228msdcdjfv3h11dmfha1kiwq71jvfga2v10"; + }; + + cargoSha256 = "sha256-/pZ6jQ/IdLLFdFTvmbXZKCw9HhnTkSSh6q79Rpbtfz8="; + + cargoBuildFlags = [ + "-p" "rslint_cli" + "-p" "rslint_lsp" + ]; + + meta = with lib; { + description = "A fast, customizable, and easy to use JavaScript and TypeScript linter"; + homepage = "https://rslint.org"; + license = licenses.mit; + maintainers = with maintainers; [ figsoda ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 9538749c5fa4..ae5aa52f9b38 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8869,6 +8869,8 @@ with pkgs; rsibreak = libsForQt5.callPackage ../applications/misc/rsibreak { }; + rslint = callPackage ../development/tools/rslint { }; + rss-bridge-cli = callPackage ../applications/misc/rss-bridge-cli { }; rss2email = callPackage ../applications/networking/feedreaders/rss2email { From 8067021ee7c637cae2d7597f64e7436e803b0b04 Mon Sep 17 00:00:00 2001 From: James Hillyerd Date: Sun, 19 Sep 2021 15:24:16 -0700 Subject: [PATCH 29/59] chezmoi: 2.1.6 -> 2.3.0 --- pkgs/tools/misc/chezmoi/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/misc/chezmoi/default.nix b/pkgs/tools/misc/chezmoi/default.nix index a60a84475b06..8568c6b488c7 100644 --- a/pkgs/tools/misc/chezmoi/default.nix +++ b/pkgs/tools/misc/chezmoi/default.nix @@ -2,16 +2,16 @@ buildGoModule rec { pname = "chezmoi"; - version = "2.1.6"; + version = "2.3.0"; src = fetchFromGitHub { owner = "twpayne"; repo = "chezmoi"; rev = "v${version}"; - sha256 = "sha256-6BzocbG7I3ZHlPGZ2GRY/n9ezRF2OER9BFaoIq0yBro="; + sha256 = "sha256-hKWajx4cAs6rP536Xnz7zg2LPg36EwDDUBzpQkQLVoE="; }; - vendorSha256 = "sha256-i20Zt1ZP1ij1Qp4moNZqUTQOHPlchonFF7ag5qjMoqg="; + vendorSha256 = "sha256-ECdsuKvBVyzRo9XviVldHnD4nND9P1v4esLz0+L+c7o="; doCheck = false; From 785d49fb982cc2e9d579f8fffa4f848ea5336679 Mon Sep 17 00:00:00 2001 From: rnhmjoj Date: Sun, 3 Oct 2021 19:13:58 +0200 Subject: [PATCH 30/59] rewritefs: 2020-02-21 -> 2021-10-03 --- pkgs/os-specific/linux/rewritefs/default.nix | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/pkgs/os-specific/linux/rewritefs/default.nix b/pkgs/os-specific/linux/rewritefs/default.nix index f7c79106c41d..1525fa8f0044 100644 --- a/pkgs/os-specific/linux/rewritefs/default.nix +++ b/pkgs/os-specific/linux/rewritefs/default.nix @@ -1,21 +1,18 @@ -{ lib, stdenv, fetchFromGitHub, pkg-config, fuse3, fuse, pcre }: +{ lib, stdenv, fetchFromGitHub, pkg-config, fuse3, pcre }: stdenv.mkDerivation { pname = "rewritefs"; - version = "2020-02-21"; + version = "2021-10-03"; src = fetchFromGitHub { owner = "sloonz"; repo = "rewritefs"; - rev = "bc241c7f81e626766786b56cf71d32c1a6ad510c"; - sha256 = "0zj2560hcbg5az0r8apnv0zz9b22i9r9w6rlih0rbrn673xp7q2i"; + rev = "3a56de8b5a2d44968b8bc3885c7d661d46367306"; + sha256 = "1w2rik0lhqm3wr68x51zs45gqfx79l7fi4p0sqznlfq7sz5s8xxn"; }; nativeBuildInputs = [ pkg-config ]; - # Note: fuse is needed solely because (unlike fuse3) it exports ulockmgr.h. - # This library was removed in fuse 3 to be distributed separately, but - # apparently it's not. - buildInputs = [ fuse3 fuse pcre ]; + buildInputs = [ fuse3 pcre ]; prePatch = '' # do not set sticky bit in nix store From ebebfb4bf0ec3ef0590021cdf598cb0c110b74d9 Mon Sep 17 00:00:00 2001 From: figsoda Date: Sun, 3 Oct 2021 13:24:22 -0400 Subject: [PATCH 31/59] gobang: fix darwin build --- .../development/tools/database/gobang/default.nix | 15 ++++++++++++++- pkgs/top-level/all-packages.nix | 4 +++- 2 files changed, 17 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/database/gobang/default.nix b/pkgs/development/tools/database/gobang/default.nix index dc861337c252..b3611169996c 100644 --- a/pkgs/development/tools/database/gobang/default.nix +++ b/pkgs/development/tools/database/gobang/default.nix @@ -1,4 +1,11 @@ -{ lib, rustPlatform, fetchFromGitHub }: +{ lib +, rustPlatform +, fetchFromGitHub +, stdenv +, CoreFoundation +, Security +, SystemConfiguration +}: rustPlatform.buildRustPackage rec { pname = "gobang"; @@ -13,6 +20,12 @@ rustPlatform.buildRustPackage rec { cargoSha256 = "sha256-Tiefet5gLpiuYY6Scg5fjnaPiZfVl5Gy2oZFdhgNRxY="; + buildInputs = lib.optionals stdenv.isDarwin [ + CoreFoundation + Security + SystemConfiguration + ]; + meta = with lib; { description = "A cross-platform TUI database management tool written in Rust"; homepage = "https://github.com/tako8ki/gobang"; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 9538749c5fa4..61d09f96e9d6 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11796,7 +11796,9 @@ with pkgs; go-junit-report = callPackage ../development/tools/go-junit-report { }; - gobang = callPackage ../development/tools/database/gobang { }; + gobang = callPackage ../development/tools/database/gobang { + inherit (darwin.apple_sdk.frameworks) CoreFoundation Security SystemConfiguration; + }; gogetdoc = callPackage ../development/tools/gogetdoc { }; From a0f20138a4323764ead04e7ffda25dbc15dd81c6 Mon Sep 17 00:00:00 2001 From: Ryan Horiguchi Date: Sat, 2 Oct 2021 18:08:12 +0200 Subject: [PATCH 32/59] gnomeExtensions.unite: remove manually packaging and use extension overrides --- .../gnome/extensions/extensionOverrides.nix | 14 ++++-- .../gnome/extensions/manuallyPackaged.nix | 1 - .../gnome/extensions/unite/default.nix | 43 ------------------- 3 files changed, 10 insertions(+), 48 deletions(-) delete mode 100644 pkgs/desktops/gnome/extensions/unite/default.nix diff --git a/pkgs/desktops/gnome/extensions/extensionOverrides.nix b/pkgs/desktops/gnome/extensions/extensionOverrides.nix index 182bdf6ecdfb..17fec38a6efd 100644 --- a/pkgs/desktops/gnome/extensions/extensionOverrides.nix +++ b/pkgs/desktops/gnome/extensions/extensionOverrides.nix @@ -1,7 +1,7 @@ -{ - lib, - ddcutil, - gjs, +{ lib +, ddcutil +, gjs +, xprop }: # A set of overrides for automatically packaged extensions that require some small fixes. # The input must be an attribute set with the extensions' UUIDs as keys and the extension @@ -29,4 +29,10 @@ super: super // { ''; }); + "unite@hardpixel.eu" = super."unite@hardpixel.eu".overrideAttrs (old: { + buildInputs = [ xprop ]; + + meta.maintainers = with lib.maintainers; [ rhoriguchi ]; + }); + } diff --git a/pkgs/desktops/gnome/extensions/manuallyPackaged.nix b/pkgs/desktops/gnome/extensions/manuallyPackaged.nix index 3e99f3143d24..19d9861565fa 100644 --- a/pkgs/desktops/gnome/extensions/manuallyPackaged.nix +++ b/pkgs/desktops/gnome/extensions/manuallyPackaged.nix @@ -21,6 +21,5 @@ "taskwhisperer-extension@infinicode.de" = callPackage ./taskwhisperer { }; "tilingnome@rliang.github.com" = callPackage ./tilingnome { }; "TopIcons@phocean.net" = callPackage ./topicons-plus { }; - "unite@hardpixel.eu" = callPackage ./unite { }; "window-corner-preview@fabiomereu.it" = callPackage ./window-corner-preview { }; } diff --git a/pkgs/desktops/gnome/extensions/unite/default.nix b/pkgs/desktops/gnome/extensions/unite/default.nix deleted file mode 100644 index e73e43dd392e..000000000000 --- a/pkgs/desktops/gnome/extensions/unite/default.nix +++ /dev/null @@ -1,43 +0,0 @@ -{ lib, stdenv, gnome, fetchFromGitHub, xprop, glib }: - -stdenv.mkDerivation rec { - pname = "gnome-shell-extension-unite"; - version = "55"; - - src = fetchFromGitHub { - owner = "hardpixel"; - repo = "unite-shell"; - rev = "v${version}"; - sha256 = "0bav4vzky3p7np2gphxc6bw38c697kalmaibaar9vi0ip3xkkavk"; - }; - - passthru = { - extensionUuid = "unite@hardpixel.eu"; - extensionPortalSlug = "unite"; - }; - - nativeBuildInputs = [ glib ]; - - buildInputs = [ xprop ]; - - buildPhase = '' - runHook preBuild - glib-compile-schemas --strict --targetdir="unite@hardpixel.eu/schemas/" "unite@hardpixel.eu/schemas" - runHook postBuild - ''; - - installPhase = '' - runHook preInstall - mkdir -p $out/share/gnome-shell/extensions - cp -r "unite@hardpixel.eu" $out/share/gnome-shell/extensions - runHook postInstall - ''; - - meta = with lib; { - description = "Unite is a GNOME Shell extension which makes a few layout tweaks to the top panel and removes window decorations to make it look like Ubuntu Unity Shell"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ rhoriguchi ]; - homepage = "https://github.com/hardpixel/unite-shell"; - broken = versionOlder gnome.gnome-shell.version "3.32"; - }; -} From b7cec1d27d7aee0a22d7a8a52a7f0b72b50f832e Mon Sep 17 00:00:00 2001 From: figsoda Date: Sun, 3 Oct 2021 13:49:08 -0400 Subject: [PATCH 33/59] selene: init at 0.14.0 --- pkgs/development/tools/selene/default.nix | 40 +++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 4 +++ 2 files changed, 44 insertions(+) create mode 100644 pkgs/development/tools/selene/default.nix diff --git a/pkgs/development/tools/selene/default.nix b/pkgs/development/tools/selene/default.nix new file mode 100644 index 000000000000..810eee56cd19 --- /dev/null +++ b/pkgs/development/tools/selene/default.nix @@ -0,0 +1,40 @@ +{ lib +, rustPlatform +, fetchFromGitHub +, robloxSupport ? true +, pkg-config +, openssl +, stdenv +, Security +}: + +rustPlatform.buildRustPackage rec { + pname = "selene"; + version = "0.14.0"; + + src = fetchFromGitHub { + owner = "kampfkarren"; + repo = pname; + rev = version; + sha256 = "0c228aakwf679wyxir0jwry3khv7phlaf77w675gn1wr4fxdg5gr"; + }; + + cargoSha256 = "sha256-5GODuqjVo3b1SzRgXVBIKec2tSS335EAUAmRlcpbClE="; + + nativeBuildInputs = lib.optional robloxSupport pkg-config; + + buildInputs = lib.optional robloxSupport openssl + ++ lib.optional (robloxSupport && stdenv.isDarwin) Security; + + cargoBuildFlags = lib.optional (!robloxSupport) "--no-default-features"; + + cargoTestFlags = cargoBuildFlags; + + meta = with lib; { + description = "A blazing-fast modern Lua linter written in Rust"; + homepage = "https://github.com/kampfkarren/selene"; + changelog = "https://github.com/kampfkarren/selene/blob/${version}/CHANGELOG.md"; + license = licenses.mpl20; + maintainers = with maintainers; [ figsoda ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 9538749c5fa4..738d9299fb69 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -14775,6 +14775,10 @@ with pkgs; segger-ozone = callPackage ../development/tools/misc/segger-ozone { }; + selene = callPackage ../development/tools/selene { + inherit (darwin.apple_sdk.frameworks) Security; + }; + shadowenv = callPackage ../tools/misc/shadowenv { inherit (darwin.apple_sdk.frameworks) Security; }; From fecc5d7bfff23a211278cb1e1fc2a9c2dbfb43ea Mon Sep 17 00:00:00 2001 From: Shamrock Lee <44064051+ShamrockLee@users.noreply.github.com> Date: Mon, 4 Oct 2021 01:08:14 +0800 Subject: [PATCH 34/59] treewide: pkgs/**.nix: remove trailing whitespaces Manually remove trailing white spaces in `pkgs/**.nix` with the help of an editor Auto-generated nix expressions containing trailing whitespaces: * pkgs/development/haskell-modules/hackage-packages.nix * See issue https://github.com/NixOS/cabal2nix/issues/208 * pkgs/**/eggs.nix * I don't know how they are generated, but they seems to be Python-related. --- .../upstream-updater/attrset-to-dir.nix | 3 +- .../libraries/languagemachines/test.nix | 2 +- .../science/math/clmagma/default.nix | 32 +++++++-------- pkgs/top-level/emscripten-packages.nix | 41 +++++++++---------- 4 files changed, 38 insertions(+), 40 deletions(-) diff --git a/pkgs/build-support/upstream-updater/attrset-to-dir.nix b/pkgs/build-support/upstream-updater/attrset-to-dir.nix index 24f7b735c2e2..006537278dae 100644 --- a/pkgs/build-support/upstream-updater/attrset-to-dir.nix +++ b/pkgs/build-support/upstream-updater/attrset-to-dir.nix @@ -1,8 +1,7 @@ -a : +a : a.stdenv.mkDerivation { buildCommand = '' mkdir -p "$out/attributes" - '' + (a.lib.concatStrings (map (n: '' ln -s "${a.writeTextFile {name=n; text=builtins.getAttr n a.theAttrSet;}}" $out/attributes/${n}; diff --git a/pkgs/development/libraries/languagemachines/test.nix b/pkgs/development/libraries/languagemachines/test.nix index 48c41ac52f22..26fff825a151 100644 --- a/pkgs/development/libraries/languagemachines/test.nix +++ b/pkgs/development/libraries/languagemachines/test.nix @@ -5,7 +5,7 @@ runCommand "frog-test" {} '' ${languageMachines.frog}/bin/frog >$out <&1 | grep 0bar + echo "Using node to execute the test which basically outputs an error on stderr which we grep for" + ${pkgs.nodejs}/bin/node ./xmllint.test.js --noout test/xmlid/id_err1.xml 2>&1 | grep 0bar set +x if [ $? -ne 0 ]; then @@ -77,8 +77,8 @@ rec { fi echo "================= /testing libxml2 using node =================" ''; - }); - + }); + xmlmirror = pkgs.buildEmscriptenPackage rec { pname = "xmlmirror"; version = "unstable-2016-06-05"; @@ -91,7 +91,7 @@ rec { rev = "4fd7e86f7c9526b8f4c1733e5c8b45175860a8fd"; sha256 = "1jasdqnbdnb83wbcnyrp32f36w3xwhwp0wq8lwwmhqagxrij1r4b"; }; - + configurePhase = '' rm -f fastXmlLint.js* # a fix for ERROR:root:For asm.js, TOTAL_MEMORY must be a multiple of 16MB, was 234217728 @@ -103,18 +103,18 @@ rec { # https://gitlab.com/odfplugfest/xmlmirror/issues/11 sed -e "s/-o fastXmlLint.js/-s EXTRA_EXPORTED_RUNTIME_METHODS='[\"ccall\", \"cwrap\"]' -o fastXmlLint.js/g" -i Makefile.emEnv ''; - + buildPhase = '' HOME=$TMPDIR make -f Makefile.emEnv ''; - + outputs = [ "out" "doc" ]; - + installPhase = '' mkdir -p $out/share mkdir -p $doc/share/${pname} - + cp Demo* $out/share cp -R codemirror-5.12 $out/share cp fastXmlLint.js* $out/share @@ -127,14 +127,13 @@ rec { cp README.md $doc/share/${pname} ''; checkPhase = '' - ''; - }; + }; zlib = (pkgs.zlib.override { stdenv = pkgs.emscriptenStdenv; }).overrideDerivation - (old: { + (old: { buildInputs = old.buildInputs ++ [ pkg-config ]; # we need to reset this setting! NIX_CFLAGS_COMPILE=""; @@ -165,7 +164,7 @@ rec { -L. libz.so.${old.version} -I . -o example.js echo "Using node to execute the test" - ${pkgs.nodejs}/bin/node ./example.js + ${pkgs.nodejs}/bin/node ./example.js set +x if [ $? -ne 0 ]; then @@ -183,6 +182,6 @@ rec { --replace 'AR="libtool"' 'AR="ar"' \ --replace 'ARFLAGS="-o"' 'ARFLAGS="-r"' ''; - }); - + }); + } From 0cb3c776cf796c27d535a28b7e0592a05b101e48 Mon Sep 17 00:00:00 2001 From: Marcos Benevides Date: Sun, 3 Oct 2021 15:20:32 -0300 Subject: [PATCH 35/59] pulumi-bin: 3.12.0 -> 3.13.2 --- pkgs/tools/admin/pulumi/data.nix | 534 +++++++++++++++--------------- pkgs/tools/admin/pulumi/update.sh | 68 ++-- 2 files changed, 309 insertions(+), 293 deletions(-) diff --git a/pkgs/tools/admin/pulumi/data.nix b/pkgs/tools/admin/pulumi/data.nix index 0bf1359bc272..d703c584b7cb 100644 --- a/pkgs/tools/admin/pulumi/data.nix +++ b/pkgs/tools/admin/pulumi/data.nix @@ -1,96 +1,96 @@ # DO NOT EDIT! This file is generated automatically by update.sh { }: { - version = "3.12.0"; + version = "3.13.2"; pulumiPkgs = { x86_64-linux = [ { - url = "https://get.pulumi.com/releases/sdk/pulumi-v3.12.0-linux-x64.tar.gz"; - sha256 = "19b8yndff9ziilrw1lrwjjcxl1lpn9q52z5swjc41rr0j751v8b0"; + url = "https://get.pulumi.com/releases/sdk/pulumi-v3.13.2-linux-x64.tar.gz"; + sha256 = "0xdxdyl9vlg5zgayqgx35gyhgqv31ljkf46qbarisyczj5vin7v5"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-auth0-v2.2.0-linux-amd64.tar.gz"; - sha256 = "0d88xfi7zzmpyrnvakwxsyavdx6d5hmfrcf4jhmd53mni0m0551l"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-kubernetes-v3.7.3-linux-amd64.tar.gz"; + sha256 = "0k599nlif46zf7l2mf3r8sr6fbdkx25gvkgm6ij36ysx8xr2nv5q"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v4.19.0-linux-amd64.tar.gz"; - sha256 = "10hgsnab1472dzdb2qrx90mx1xaq8zifcnrsgqqvilzfjnfrd9ka"; - } - { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v3.5.0-linux-amd64.tar.gz"; - sha256 = "0rk1irqnmlxzdwx1jnls30xmsrkdn7qin561waqwxq9qrm5012i5"; - } - { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-consul-v3.3.0-linux-amd64.tar.gz"; - sha256 = "1f995sg2p1hpqagygsvyfq97gcmy4a925274p96vhy517568d5jg"; - } - { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-datadog-v4.1.0-linux-amd64.tar.gz"; - sha256 = "1hz4w44c31wyi3vbr9sbph1007rj65vwwbhwrrzyhxy0i75r3igq"; - } - { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.6.1-linux-amd64.tar.gz"; - sha256 = "1divf2nga5kc60mf0cjmyzyghpkkbw44jakfwc7fjiq6j4j0g2ia"; - } - { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v3.1.0-linux-amd64.tar.gz"; - sha256 = "0ffqah4anhdacmfb8n3hdq17jhqq0qclc0l0cq77hvhvgn39yy4r"; - } - { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-equinix-metal-v2.0.0-linux-amd64.tar.gz"; - sha256 = "0yhdcjscdkvvai95z2v6xabvvsfvaqi38ngpqrb73ahlwqhz3nys"; - } - { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v5.18.0-linux-amd64.tar.gz"; - sha256 = "1vryq0ki5iimqwxpnvc53m15641p1a1cdbf1xzn0ps4xdsg4xz7j"; - } - { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v4.3.0-linux-amd64.tar.gz"; - sha256 = "1k7zd2cir6844awf1kpj7pifwvw74yfnrk78j0pall2jwmnf2zaa"; - } - { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gitlab-v4.2.0-linux-amd64.tar.gz"; - sha256 = "1h5159y7xlslnijs8lpi4vqgvj2px6whxk9m17p9n7wiyqbmd5na"; - } - { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-hcloud-v1.4.0-linux-amd64.tar.gz"; - sha256 = "0g6h9j64aqj64slp8707kn6dwg32nyqy06xgwycz8ywcw5b2llqp"; - } - { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-kubernetes-v3.7.0-linux-amd64.tar.gz"; - sha256 = "0n7vlja8s854nba209sq2pwkd8jnmnmzya65ncqpb0aa9kn9lc2j"; - } - { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-linode-v3.3.2-linux-amd64.tar.gz"; - sha256 = "07zmx5gdwqsrhzm50fj3y9q435ygwmb2j1r2pvpv0i1s66g92kij"; - } - { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mailgun-v3.1.0-linux-amd64.tar.gz"; - sha256 = "0g392a6zyycdijjn0nswf2x5h31x1hcffgwwkmbjr304n2ycbb50"; - } - { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mysql-v3.0.0-linux-amd64.tar.gz"; - sha256 = "04gaimdzh04v7f11xw1b7p95rbb142kbnix1zqas68wd6vpw9kyp"; - } - { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-openstack-v3.3.0-linux-amd64.tar.gz"; - sha256 = "0rpf48snjm5n1xn7s6lnda6ny1gjgmfsqmbibw6w7h7la0ff78jp"; - } - { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-packet-v3.2.2-linux-amd64.tar.gz"; - sha256 = "0glbjhgrb2hiyhd6kwmy7v384j8zw641pw9737g1fczv3x16a3s3"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v4.4.0-linux-amd64.tar.gz"; + sha256 = "18mfln9iz838rqjhx39ncih7ndbbkj22w1m9gx1n2wszsgm3477b"; } { url = "https://api.pulumi.com/releases/plugins/pulumi-resource-postgresql-v3.2.0-linux-amd64.tar.gz"; sha256 = "1lmy0dmpspzflc9z8p4w1cz47lbqnbkq8dng3v40lpbs75pnprvs"; } + { + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-linode-v3.4.0-linux-amd64.tar.gz"; + sha256 = "0jmbfy6y0l7zpzwndz6xj6jv20ax9rbg8nbqwcadjf96a3zglwhf"; + } + { + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v4.0.0-linux-amd64.tar.gz"; + sha256 = "1p21963qr8rdl5jp7f05j02yq0ab3flybvzjn7xadcl7m85mkyxh"; + } + { + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gitlab-v4.2.0-linux-amd64.tar.gz"; + sha256 = "1h5159y7xlslnijs8lpi4vqgvj2px6whxk9m17p9n7wiyqbmd5na"; + } + { + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v4.22.1-linux-amd64.tar.gz"; + sha256 = "14dk4m7963q9n1q4sq25zdjdnk4la5fxw7yhbw18krdy7ps0p6sr"; + } { url = "https://api.pulumi.com/releases/plugins/pulumi-resource-random-v4.2.0-linux-amd64.tar.gz"; sha256 = "02g59jaifyjfcx185ir79d8lqic38dgaa9cb8dpi3xhvv32z0b0q"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vault-v4.4.0-linux-amd64.tar.gz"; - sha256 = "1lmhsvzhryj9sl3v51dgq6rby3q5m169mc3dg1jbx1fvgwglmhqb"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-consul-v3.3.0-linux-amd64.tar.gz"; + sha256 = "1f995sg2p1hpqagygsvyfq97gcmy4a925274p96vhy517568d5jg"; + } + { + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mailgun-v3.1.0-linux-amd64.tar.gz"; + sha256 = "0g392a6zyycdijjn0nswf2x5h31x1hcffgwwkmbjr304n2ycbb50"; + } + { + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-openstack-v3.3.0-linux-amd64.tar.gz"; + sha256 = "0rpf48snjm5n1xn7s6lnda6ny1gjgmfsqmbibw6w7h7la0ff78jp"; + } + { + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-hcloud-v1.5.0-linux-amd64.tar.gz"; + sha256 = "194kym832zfnf58z44y5n789xsvqp2dr3jy5sffqqhfrgcgabvr2"; + } + { + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-datadog-v4.2.0-linux-amd64.tar.gz"; + sha256 = "057h706kl0c1qq5x0iprikpglllcrb4bfixf5vv3jk8q9s44qbwj"; + } + { + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v3.1.0-linux-amd64.tar.gz"; + sha256 = "0ffqah4anhdacmfb8n3hdq17jhqq0qclc0l0cq77hvhvgn39yy4r"; + } + { + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.6.1-linux-amd64.tar.gz"; + sha256 = "1divf2nga5kc60mf0cjmyzyghpkkbw44jakfwc7fjiq6j4j0g2ia"; + } + { + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-packet-v3.2.2-linux-amd64.tar.gz"; + sha256 = "0glbjhgrb2hiyhd6kwmy7v384j8zw641pw9737g1fczv3x16a3s3"; + } + { + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-equinix-metal-v3.0.0-linux-amd64.tar.gz"; + sha256 = "0bp7ki3slszmy1vh4a5d4y4fhbvafrazj1cjf081xv91gi99xxz6"; + } + { + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v5.21.0-linux-amd64.tar.gz"; + sha256 = "1r5cq4zmnp17n161n2npgxvy6y3bgq5b089mkm4yd7ck88sv2811"; + } + { + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mysql-v3.0.0-linux-amd64.tar.gz"; + sha256 = "04gaimdzh04v7f11xw1b7p95rbb142kbnix1zqas68wd6vpw9kyp"; + } + { + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-auth0-v2.2.0-linux-amd64.tar.gz"; + sha256 = "0d88xfi7zzmpyrnvakwxsyavdx6d5hmfrcf4jhmd53mni0m0551l"; + } + { + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vault-v4.5.0-linux-amd64.tar.gz"; + sha256 = "06cgd7zd2cs88xych7rf0k0mfdh1f61mxj0194lbjs366lxi3bgj"; } { url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vsphere-v4.0.1-linux-amd64.tar.gz"; @@ -99,92 +99,92 @@ ]; x86_64-darwin = [ { - url = "https://get.pulumi.com/releases/sdk/pulumi-v3.12.0-darwin-x64.tar.gz"; - sha256 = "1dlgcap861a5fljbadqikn0lm9gz6f1rdn0qhf1f9vyrj1jmwcqf"; + url = "https://get.pulumi.com/releases/sdk/pulumi-v3.13.2-darwin-x64.tar.gz"; + sha256 = "0hh5vq60klczgwahmi1yli3yliik1xf110cp9prxv9s4aqjzm2ga"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-auth0-v2.2.0-darwin-amd64.tar.gz"; - sha256 = "12mkr0xczdnp21k0k7qn4r3swkaq3pr6v2z853p1db7ksz5kds23"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-kubernetes-v3.7.3-darwin-amd64.tar.gz"; + sha256 = "1c42fi5sqj9hnlr20mv0dil6wl4qw4j7zdnr7sln21h5hxxj65wx"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v4.19.0-darwin-amd64.tar.gz"; - sha256 = "18n729y5r827ahaybz01q61r3cv5grxpnfqb0m8fzh2bd41izg4s"; - } - { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v3.5.0-darwin-amd64.tar.gz"; - sha256 = "05z8zkbhpj0xsi7ffzd51j83sxx92k10r28gpznn43plnv1v5cjs"; - } - { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-consul-v3.3.0-darwin-amd64.tar.gz"; - sha256 = "12nba4xjcrh4g9iy3mqalk56bga4l3izqm9rj0fg3cyivr9fffvr"; - } - { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-datadog-v4.1.0-darwin-amd64.tar.gz"; - sha256 = "0xknmx3d6083qvp3v2v8qwjlfihj35r8gzhmhbh759ccjf1d6h4h"; - } - { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.6.1-darwin-amd64.tar.gz"; - sha256 = "00m9nn0mrjdqg0ijkv86376df9kpfd9alk8h2ynk53s6nbz9ff4b"; - } - { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v3.1.0-darwin-amd64.tar.gz"; - sha256 = "0j8ysk4wh78xhk3nv6c1dvvyw5ihs7amwlyqicch52yc6jq3v5a6"; - } - { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-equinix-metal-v2.0.0-darwin-amd64.tar.gz"; - sha256 = "1dpsbq3b0fz86355jy7rz4kcsa1lnw4azn25vzlis89ay1ncbblc"; - } - { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v5.18.0-darwin-amd64.tar.gz"; - sha256 = "1cfxnshmc7b1ax819bvic4ih0gc1mi6rij1pp52nklzgby4zad6y"; - } - { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v4.3.0-darwin-amd64.tar.gz"; - sha256 = "0fabb3zi5p24xfgsc0jn8ynavd1g0qrlm1yqifxv12zr5id4vcvk"; - } - { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gitlab-v4.2.0-darwin-amd64.tar.gz"; - sha256 = "0r2ykjwam5m2mfiibhq993s8n5pzmks837cwb57jwgwx8lc3ra4x"; - } - { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-hcloud-v1.4.0-darwin-amd64.tar.gz"; - sha256 = "03r5jxgjyrrpx082z785x2yxz3l4ja4al9yh2zhkvdcnjip88r35"; - } - { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-kubernetes-v3.7.0-darwin-amd64.tar.gz"; - sha256 = "0l1wxnkik28y9y257jdxiq3m3njmfq1awxajp152k11izddxs05i"; - } - { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-linode-v3.3.2-darwin-amd64.tar.gz"; - sha256 = "0s8aaac55kdsid0ay2dm0if9irc55pslmy6lhf7v5bfpcb17i36w"; - } - { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mailgun-v3.1.0-darwin-amd64.tar.gz"; - sha256 = "0awksrbsmvkgfszdsxfv8wfs1m16y1551jnz0rf51dq0cn9963hq"; - } - { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mysql-v3.0.0-darwin-amd64.tar.gz"; - sha256 = "18vrp0zzi92x4l5nkjszvd0zr7pk6nl6s3h5a3hvsz5qrj2830q3"; - } - { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-openstack-v3.3.0-darwin-amd64.tar.gz"; - sha256 = "0jlvdnvcmml009a84lfa6745qwjsifa9zmdrv4gqy9p76iydfs1n"; - } - { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-packet-v3.2.2-darwin-amd64.tar.gz"; - sha256 = "0621njipng32x43lw8n49mapq10lnvibg8vlvgciqsfvrbpz1yp5"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v4.4.0-darwin-amd64.tar.gz"; + sha256 = "0plqrh20mxl92achdmx7srg6rqrvzprlawy4q9f9xwn77618wx0b"; } { url = "https://api.pulumi.com/releases/plugins/pulumi-resource-postgresql-v3.2.0-darwin-amd64.tar.gz"; sha256 = "1j7z5dbqzsdq1q8ks9g5pwzyc3ml6avhhp6xj94dzdhskl6pd8w5"; } + { + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-linode-v3.4.0-darwin-amd64.tar.gz"; + sha256 = "0vd527sx49shr3mpbm5bs4sspmm6vsjli6zlbl5w61y85jp2as1m"; + } + { + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v4.0.0-darwin-amd64.tar.gz"; + sha256 = "1idvdcmbbia0cwkw5v7zp7695p1a6sfmrgsfmzn0r9p8lyg66k8w"; + } + { + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gitlab-v4.2.0-darwin-amd64.tar.gz"; + sha256 = "0r2ykjwam5m2mfiibhq993s8n5pzmks837cwb57jwgwx8lc3ra4x"; + } + { + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v4.22.1-darwin-amd64.tar.gz"; + sha256 = "02irygvxhbisxyxaqhrd67rxp5dx3ralyjrgr16qz2v64mhmqxqx"; + } { url = "https://api.pulumi.com/releases/plugins/pulumi-resource-random-v4.2.0-darwin-amd64.tar.gz"; sha256 = "0gd3xnl31892qp8ilz9lc1zdps77nf07jgvh0k37mink8f0ppy2z"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vault-v4.4.0-darwin-amd64.tar.gz"; - sha256 = "01rrmj95lhvwxi8f338f50l2zspnin41j8hi2j9pjsjwfayhpq93"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-consul-v3.3.0-darwin-amd64.tar.gz"; + sha256 = "12nba4xjcrh4g9iy3mqalk56bga4l3izqm9rj0fg3cyivr9fffvr"; + } + { + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mailgun-v3.1.0-darwin-amd64.tar.gz"; + sha256 = "0awksrbsmvkgfszdsxfv8wfs1m16y1551jnz0rf51dq0cn9963hq"; + } + { + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-openstack-v3.3.0-darwin-amd64.tar.gz"; + sha256 = "0jlvdnvcmml009a84lfa6745qwjsifa9zmdrv4gqy9p76iydfs1n"; + } + { + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-hcloud-v1.5.0-darwin-amd64.tar.gz"; + sha256 = "1gf83dv5wqvmx8ll7my3c8biklrddjrv069g97d3n510m0k7w85w"; + } + { + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-datadog-v4.2.0-darwin-amd64.tar.gz"; + sha256 = "0sss5mjjwwgvayqjvk7j4wpsrwmk8yzx3phnjxvq2mb7c4d25why"; + } + { + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v3.1.0-darwin-amd64.tar.gz"; + sha256 = "0j8ysk4wh78xhk3nv6c1dvvyw5ihs7amwlyqicch52yc6jq3v5a6"; + } + { + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.6.1-darwin-amd64.tar.gz"; + sha256 = "00m9nn0mrjdqg0ijkv86376df9kpfd9alk8h2ynk53s6nbz9ff4b"; + } + { + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-packet-v3.2.2-darwin-amd64.tar.gz"; + sha256 = "0621njipng32x43lw8n49mapq10lnvibg8vlvgciqsfvrbpz1yp5"; + } + { + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-equinix-metal-v3.0.0-darwin-amd64.tar.gz"; + sha256 = "1i73sxh6vf6adg6as1q1mab3fcjm7ma7gixj2b0y0d2a5d78lhpa"; + } + { + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v5.21.0-darwin-amd64.tar.gz"; + sha256 = "0pdiiz0hqms1jaqnqzz33hzscn07imjv7p5akx1hars5kdbk3g8y"; + } + { + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mysql-v3.0.0-darwin-amd64.tar.gz"; + sha256 = "18vrp0zzi92x4l5nkjszvd0zr7pk6nl6s3h5a3hvsz5qrj2830q3"; + } + { + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-auth0-v2.2.0-darwin-amd64.tar.gz"; + sha256 = "12mkr0xczdnp21k0k7qn4r3swkaq3pr6v2z853p1db7ksz5kds23"; + } + { + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vault-v4.5.0-darwin-amd64.tar.gz"; + sha256 = "112gyxfa5h4cchnzzxf6kzhr9wrs0xssm3ivaipimdh402mgib8g"; } { url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vsphere-v4.0.1-darwin-amd64.tar.gz"; @@ -193,89 +193,89 @@ ]; aarch64-linux = [ { - url = "https://get.pulumi.com/releases/sdk/pulumi-v3.12.0-linux-arm64.tar.gz"; - sha256 = "1hzm80ajndaqchxrxdpg0fvc5rqqagbhd5zs8msw166xyanavl9p"; + url = "https://get.pulumi.com/releases/sdk/pulumi-v3.13.2-linux-arm64.tar.gz"; + sha256 = "1v93g2q5g5p4yvv4s4dhhx1lxxigdbnx5x3pd38cawzzbadvcqyg"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-auth0-v2.2.0-linux-arm64.tar.gz"; - sha256 = "1l7zpvacq6kyzj8n82drs9gdfa16k4j945w8nsd0z33byrswxr3w"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-kubernetes-v3.7.3-linux-arm64.tar.gz"; + sha256 = "1x73f24jwajj4c3plphbx2ia4i082w5m72z8annpcm11cx1k5130"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v4.19.0-linux-arm64.tar.gz"; - sha256 = "1d67npimg49lx1g9adds32gfpwwv0ikk52qz1kyzfbz10hz62xyx"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v4.4.0-linux-arm64.tar.gz"; + sha256 = "168zsb14ndvj2f66xwsbrjf5bn9fz8d70lzyqym1yblmqa2k7b6f"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v3.5.0-linux-arm64.tar.gz"; - sha256 = "0fh4zrpmgg16jhzdmqihwq8k39bjlchd54mbkd50fphw1w2xw2jz"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-postgresql-v3.2.0-linux-arm64.tar.gz"; + sha256 = "0mddv37k87wiygh6x9bnxpcr721qbmbqf6l5zk3xl61n56j8qyb1"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-consul-v3.3.0-linux-arm64.tar.gz"; - sha256 = "1pjvrhmci1fbakx74yndjhkvxxy4yfnwrwbk12dyb3mxc07iycfj"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-linode-v3.4.0-linux-arm64.tar.gz"; + sha256 = "0ybw5cbiw64zmaqjwlfk5b73h5sy0pk40f15hq41d9rdkc0sypxi"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-datadog-v4.1.0-linux-arm64.tar.gz"; - sha256 = "07c34x3g31f0bvwfwgxnnikqp5wzyn97hxzwlidvr6g1w7srj0qn"; - } - { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.6.1-linux-arm64.tar.gz"; - sha256 = "1l1p5gqnxd3rb9107m9wi76k8d57ak9w86dniiwys3dqbwxjn1ix"; - } - { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v3.1.0-linux-arm64.tar.gz"; - sha256 = "1lh1g90ab4blqmvx0yfp516hfsd6n1y751ab7fzhv7hcajf3klvi"; - } - { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-equinix-metal-v2.0.0-linux-arm64.tar.gz"; - sha256 = "0xibm242vjv1jr2c2v5a1ndlafybq66iqfdmdghys3fa4csb5d4s"; - } - { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v5.18.0-linux-arm64.tar.gz"; - sha256 = "18as1qkqz0b4cminqf9czd5lx04nr8da7w3g0dbp6bpr7biakra0"; - } - { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v4.3.0-linux-arm64.tar.gz"; - sha256 = "0pwcn2hlfj5nh5fyql8nk4rzfpsrp6ph5kd3r62872z6kz4fr1f8"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v4.0.0-linux-arm64.tar.gz"; + sha256 = "0k4yi9xqrmd5m99lr27h672ycwyh138d9jhh3wvgpmnjpdxy28jm"; } { url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gitlab-v4.2.0-linux-arm64.tar.gz"; sha256 = "1sc8rf930cz6nkyhqn6p0h7450iqzdsrlw2smhp8yyjjvcjmsksf"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-hcloud-v1.4.0-linux-arm64.tar.gz"; - sha256 = "0bz4i7bga2vy4pki9k93f7q6zfcy9yg17xz0j4wfyqmlaanfz8r0"; - } - { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-kubernetes-v3.7.0-linux-arm64.tar.gz"; - sha256 = "1vkfrgk6lk3v7fgs10ygaw3x3srp3mncr0wna1xdzf7s1gsz8m09"; - } - { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-linode-v3.3.2-linux-arm64.tar.gz"; - sha256 = "1nyy1is8i9jx9ig1v01l5sbhp4xal1vklmfjnqhr8v8h5kjwkm4v"; - } - { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mailgun-v3.1.0-linux-arm64.tar.gz"; - sha256 = "1hicy131pj6z4ni074f34qhvjyycjxl0024iir5021g1scm3hp7w"; - } - { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mysql-v3.0.0-linux-arm64.tar.gz"; - sha256 = "1slrl020xl092hjfr92zjf8i2ys8vzr3nxqh65fhnl0fzfsllvn0"; - } - { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-openstack-v3.3.0-linux-arm64.tar.gz"; - sha256 = "1cpr53shxap4s25pw3xd9vnbwh4jbmp1x0qfqz46i9af0isa10i8"; - } - # pulumi-resource-packet skipped (does not exist on remote) - { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-postgresql-v3.2.0-linux-arm64.tar.gz"; - sha256 = "0mddv37k87wiygh6x9bnxpcr721qbmbqf6l5zk3xl61n56j8qyb1"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v4.22.1-linux-arm64.tar.gz"; + sha256 = "0l3infk8mj77dqazj7f2k6rshnmd8kcdxqvy9l23imvi75nqb6ws"; } { url = "https://api.pulumi.com/releases/plugins/pulumi-resource-random-v4.2.0-linux-arm64.tar.gz"; sha256 = "0y7wysd4j1dp73hrbydzj2bfvpgv8vxiza5m6dbg7nl66w9ng0rc"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vault-v4.4.0-linux-arm64.tar.gz"; - sha256 = "0fa295br09w7392mb62qw31ia2116dqs15f4r634zcachb0ad93g"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-consul-v3.3.0-linux-arm64.tar.gz"; + sha256 = "1pjvrhmci1fbakx74yndjhkvxxy4yfnwrwbk12dyb3mxc07iycfj"; + } + { + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mailgun-v3.1.0-linux-arm64.tar.gz"; + sha256 = "1hicy131pj6z4ni074f34qhvjyycjxl0024iir5021g1scm3hp7w"; + } + { + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-openstack-v3.3.0-linux-arm64.tar.gz"; + sha256 = "1cpr53shxap4s25pw3xd9vnbwh4jbmp1x0qfqz46i9af0isa10i8"; + } + { + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-hcloud-v1.5.0-linux-arm64.tar.gz"; + sha256 = "0ap4izb3507rw965qvww1nd2h9jz7ilav92fjdhhvf33g44r6r8y"; + } + { + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-datadog-v4.2.0-linux-arm64.tar.gz"; + sha256 = "06xdcm0cg3sh92fvwy8l4c0k91fah7hdxjb6mjchas2wk4q32vhq"; + } + { + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v3.1.0-linux-arm64.tar.gz"; + sha256 = "1lh1g90ab4blqmvx0yfp516hfsd6n1y751ab7fzhv7hcajf3klvi"; + } + { + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.6.1-linux-arm64.tar.gz"; + sha256 = "1l1p5gqnxd3rb9107m9wi76k8d57ak9w86dniiwys3dqbwxjn1ix"; + } + # pulumi-resource-packet skipped (does not exist on remote) + { + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-equinix-metal-v3.0.0-linux-arm64.tar.gz"; + sha256 = "0mwpbvv62k8fg07447wwfigs4li4n78fswpzwi4alsjrkqlmw9dj"; + } + { + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v5.21.0-linux-arm64.tar.gz"; + sha256 = "1jsbn967x73z0hhh5kfq791xs3zsrccg8ci3s3607jd8gzv98n9w"; + } + { + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mysql-v3.0.0-linux-arm64.tar.gz"; + sha256 = "1slrl020xl092hjfr92zjf8i2ys8vzr3nxqh65fhnl0fzfsllvn0"; + } + { + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-auth0-v2.2.0-linux-arm64.tar.gz"; + sha256 = "1l7zpvacq6kyzj8n82drs9gdfa16k4j945w8nsd0z33byrswxr3w"; + } + { + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vault-v4.5.0-linux-arm64.tar.gz"; + sha256 = "1zxrab7vz910v5p8rmi9ycmw36a77p46pkv415kzyy1vbwx3was1"; } { url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vsphere-v4.0.1-linux-arm64.tar.gz"; @@ -284,89 +284,89 @@ ]; aarch64-darwin = [ { - url = "https://get.pulumi.com/releases/sdk/pulumi-v3.12.0-darwin-arm64.tar.gz"; - sha256 = "1sasxi57ga7gazjmni4sksyih5dw1qx0bhcmh5f5xyznsb9flk4v"; + url = "https://get.pulumi.com/releases/sdk/pulumi-v3.13.2-darwin-arm64.tar.gz"; + sha256 = "0zhznqbm3bq8v0j9xbakryc02iybzdaic6pca2r842nbaj7ffcg9"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-auth0-v2.2.0-darwin-arm64.tar.gz"; - sha256 = "1rmvc2kgjmb978sfmlga6xy4i0f629lk1l95i30wg0rmj1hx3dag"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-kubernetes-v3.7.3-darwin-arm64.tar.gz"; + sha256 = "1zwlygvrglsna6y7wv61zb663vqzjcgvmm1ni4x4jk1xxmqd75yx"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v4.19.0-darwin-arm64.tar.gz"; - sha256 = "0hw0x8bxj0rdkxchlsa30phkglgcln14xv2capx67vpdp9qg8iyi"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v4.4.0-darwin-arm64.tar.gz"; + sha256 = "03m85545rl4m1rz9vvziibd60xc2za826zp4wpap9lf0y5glijv5"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v3.5.0-darwin-arm64.tar.gz"; - sha256 = "125mb2qmxb5cwnvqwckiaih9gq84azfb0qbrw2vmz338967sfz2c"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-postgresql-v3.2.0-darwin-arm64.tar.gz"; + sha256 = "0fj1ai1kv8xgmsvfbmy5gsinxag70rx9a9gkifqgcpn3r9mj48ks"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-consul-v3.3.0-darwin-arm64.tar.gz"; - sha256 = "0p7hmdax7bzn93mv6l79g3g38fh1axnryyq8sg3h16wj8gcc8kq5"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-linode-v3.4.0-darwin-arm64.tar.gz"; + sha256 = "1iyc67r551bi1h20lfb2qp5b2ds8kf09gklbaz73k90hcrf0g9la"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-datadog-v4.1.0-darwin-arm64.tar.gz"; - sha256 = "1aijk67byw9nwlsdvmw7fiks6ih6wlcbvqpmijchzn86qxikppcq"; - } - { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.6.1-darwin-arm64.tar.gz"; - sha256 = "1smg4r1aijl42hv28v2gjvbmlrhmcs5p4w4pzngv7wsgsm5y6lzm"; - } - { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v3.1.0-darwin-arm64.tar.gz"; - sha256 = "1z0gd0fagv55dl3ki340h0ljw7dqj8818w4072pc5xxy5id90gb0"; - } - { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-equinix-metal-v2.0.0-darwin-arm64.tar.gz"; - sha256 = "1170s85p6d850czb0amzk06d3bcyzyp14p49sgqvpa099jyvs4mm"; - } - { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v5.18.0-darwin-arm64.tar.gz"; - sha256 = "0hvsprzznj0incv60lhxxh4jsx67h7l49v65288ic0x0nsgibn4x"; - } - { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-github-v4.3.0-darwin-arm64.tar.gz"; - sha256 = "0qjpay735gff28xdvippm11lh8gk2xsvh2mcil679ybgpk6kypw2"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-cloudflare-v4.0.0-darwin-arm64.tar.gz"; + sha256 = "0fsmmgq0hvzyrw6vrdf3pppxjcj94fxxp52dl73r4f5wjkays33c"; } { url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gitlab-v4.2.0-darwin-arm64.tar.gz"; sha256 = "1c3pchbnk6dsnxsl02ypq7s4mmkxdgxszdhql1klpx5js7i1lv8k"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-hcloud-v1.4.0-darwin-arm64.tar.gz"; - sha256 = "1fcxgbqw6fpn202hza4yyq370r9vbfy8pw220g7yihg8vy9wb1dk"; - } - { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-kubernetes-v3.7.0-darwin-arm64.tar.gz"; - sha256 = "0h35d4j6s22sxgf579b6f0v14qp49z5rqzcb30pi4grsk8zkqrrr"; - } - { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-linode-v3.3.2-darwin-arm64.tar.gz"; - sha256 = "0sg73w6h94w0mj9q45av9k2sw251k2a7lnh52ndkbc2phqx3rshh"; - } - { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mailgun-v3.1.0-darwin-arm64.tar.gz"; - sha256 = "118kszs5y3ajh702dyy4wivwdima30s3spbr3cdm9g7aabqhl5l6"; - } - { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mysql-v3.0.0-darwin-arm64.tar.gz"; - sha256 = "10a2f5kdgk3jcd1441zbfcfnrl5zj6ks832jjmbyym33by7scvgc"; - } - { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-openstack-v3.3.0-darwin-arm64.tar.gz"; - sha256 = "17imdik9gb3bhqh71b82h12sx6rn13iann9dlbdxy3zj3g59k3ri"; - } - # pulumi-resource-packet skipped (does not exist on remote) - { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-postgresql-v3.2.0-darwin-arm64.tar.gz"; - sha256 = "0fj1ai1kv8xgmsvfbmy5gsinxag70rx9a9gkifqgcpn3r9mj48ks"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-aws-v4.22.1-darwin-arm64.tar.gz"; + sha256 = "01kq2bx0ps92wb61jh6g3nvdvl4ia0bnn4h971lb0rgka39cb39y"; } { url = "https://api.pulumi.com/releases/plugins/pulumi-resource-random-v4.2.0-darwin-arm64.tar.gz"; sha256 = "0waf4apw5bzn276s34yaxvm3xyk5333l3zcz2j52c56wkadzxvpg"; } { - url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vault-v4.4.0-darwin-arm64.tar.gz"; - sha256 = "1ywy4zv96k5x85j0fw36q331p11ka1fpg9x18d9ijwl424c7669j"; + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-consul-v3.3.0-darwin-arm64.tar.gz"; + sha256 = "0p7hmdax7bzn93mv6l79g3g38fh1axnryyq8sg3h16wj8gcc8kq5"; + } + { + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mailgun-v3.1.0-darwin-arm64.tar.gz"; + sha256 = "118kszs5y3ajh702dyy4wivwdima30s3spbr3cdm9g7aabqhl5l6"; + } + { + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-openstack-v3.3.0-darwin-arm64.tar.gz"; + sha256 = "17imdik9gb3bhqh71b82h12sx6rn13iann9dlbdxy3zj3g59k3ri"; + } + { + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-hcloud-v1.5.0-darwin-arm64.tar.gz"; + sha256 = "1y0wc1279ka05ng7wq6skmwyrmp1sb2sc64wiqx52napxvzjpv9r"; + } + { + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-datadog-v4.2.0-darwin-arm64.tar.gz"; + sha256 = "0sg5c85dd0gvy9977igj1b06pdy2my62208fcfy11xf6bf1wqqvi"; + } + { + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-docker-v3.1.0-darwin-arm64.tar.gz"; + sha256 = "1z0gd0fagv55dl3ki340h0ljw7dqj8818w4072pc5xxy5id90gb0"; + } + { + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-digitalocean-v4.6.1-darwin-arm64.tar.gz"; + sha256 = "1smg4r1aijl42hv28v2gjvbmlrhmcs5p4w4pzngv7wsgsm5y6lzm"; + } + # pulumi-resource-packet skipped (does not exist on remote) + { + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-equinix-metal-v3.0.0-darwin-arm64.tar.gz"; + sha256 = "1hzhlxbwji4p8apx4rnqllsgf1k11w49rplz0syzmzb2fxpkif75"; + } + { + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-gcp-v5.21.0-darwin-arm64.tar.gz"; + sha256 = "1nn7j9ig30dk8lhyfqjpjm3l9clk0d1ipa6iy2qxvz8dgh0yx6wd"; + } + { + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-mysql-v3.0.0-darwin-arm64.tar.gz"; + sha256 = "10a2f5kdgk3jcd1441zbfcfnrl5zj6ks832jjmbyym33by7scvgc"; + } + { + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-auth0-v2.2.0-darwin-arm64.tar.gz"; + sha256 = "1rmvc2kgjmb978sfmlga6xy4i0f629lk1l95i30wg0rmj1hx3dag"; + } + { + url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vault-v4.5.0-darwin-arm64.tar.gz"; + sha256 = "1k794xxyz7q50yw5lmznb0v2jjdqfi0dsc208fk9lgwchkn72x44"; } { url = "https://api.pulumi.com/releases/plugins/pulumi-resource-vsphere-v4.0.1-darwin-arm64.tar.gz"; diff --git a/pkgs/tools/admin/pulumi/update.sh b/pkgs/tools/admin/pulumi/update.sh index 756dce6b8eea..817d161292a5 100755 --- a/pkgs/tools/admin/pulumi/update.sh +++ b/pkgs/tools/admin/pulumi/update.sh @@ -1,37 +1,53 @@ #!/usr/bin/env bash # Bash 3 compatible for Darwin +# For getting the latest version of plugins automatically +API_URL="https://api.github.com/repos/pulumi" + # Version of Pulumi from # https://www.pulumi.com/docs/get-started/install/versions/ -VERSION="3.12.0" +VERSION="3.13.2" -# Grab latest release ${VERSION} from -# https://github.com/pulumi/pulumi-${NAME}/releases -plugins=( - "auth0=2.2.0" - "aws=4.19.0" - "cloudflare=3.5.0" - "consul=3.3.0" - "datadog=4.1.0" - "digitalocean=4.6.1" - "docker=3.1.0" - "equinix-metal=2.0.0" - "gcp=5.18.0" - "github=4.3.0" - "gitlab=4.2.0" - "hcloud=1.4.0" - "kubernetes=3.7.0" - "linode=3.3.2" - "mailgun=3.1.0" - "mysql=3.0.0" - "openstack=3.3.0" - "packet=3.2.2" - "postgresql=3.2.0" - "random=4.2.0" - "vault=4.4.0" - "vsphere=4.0.1" +# A hashmap containing a plugin's name and it's respective repository inside +# Pulumi's Github organization + +declare -A pulumi_repos +pulumi_repos=( + ["auth0"]="pulumi-auth0" + ["aws"]="pulumi-aws" + ["cloudflare"]="pulumi-cloudflare" + ["consul"]="pulumi-consul" + ["datadog"]="pulumi-datadog" + ["digitalocean"]="pulumi-digitalocean" + ["docker"]="pulumi-docker" + ["equinix-metal"]="pulumi-equinix-metal" + ["gcp"]="pulumi-gcp" + ["github"]="pulumi-github" + ["gitlab"]="pulumi-gitlab" + ["hcloud"]="pulumi-hcloud" + ["kubernetes"]="pulumi-kubernetes" + ["linode"]="pulumi-linode" + ["mailgun"]="pulumi-mailgun" + ["mysql"]="pulumi-mysql" + ["openstack"]="pulumi-openstack" + ["packet"]="pulumi-packet" + ["postgresql"]="pulumi-postgresql" + ["random"]="pulumi-random" + ["vault"]="pulumi-vault" + ["vsphere"]="pulumi-vsphere" ) +# Contains latest release ${VERSION} from +# https://github.com/pulumi/pulumi-${NAME}/releases + +# Dynamically builds the plugin array, using the hashmap's key/values and the +# API for getting the latest version. +plugins=() +for key in "${!pulumi_repos[@]}"; do + plugins+=("${key}=$(curl -s ${API_URL}/${pulumi_repos[${key}]}/releases/latest | jq -M -r .tag_name | sed 's/v//g')") + sleep 1 +done + function genMainSrc() { local url="https://get.pulumi.com/releases/sdk/pulumi-v${VERSION}-${1}-${2}.tar.gz" local sha256 From 6c07b4a3f8d803f78d76d19126f5d0340205327a Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 3 Oct 2021 20:21:49 +0200 Subject: [PATCH 36/59] python3Packages.rapidfuzz: 1.7.0 -> 1.7.1 --- pkgs/development/python-modules/rapidfuzz/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/rapidfuzz/default.nix b/pkgs/development/python-modules/rapidfuzz/default.nix index 27e79d9d157e..3f26fa4a15dd 100644 --- a/pkgs/development/python-modules/rapidfuzz/default.nix +++ b/pkgs/development/python-modules/rapidfuzz/default.nix @@ -10,7 +10,7 @@ buildPythonPackage rec { pname = "rapidfuzz"; - version = "1.7.0"; + version = "1.7.1"; disabled = pythonOlder "3.5"; @@ -19,7 +19,7 @@ buildPythonPackage rec { repo = "RapidFuzz"; rev = "v${version}"; fetchSubmodules = true; - sha256 = "sha256-vK2MnFdZOAO+0WNM20w2vz5Yh2buI+fl7teHQqwuiUk="; + sha256 = "sha256-41Ga8BeqVMC9XI+R+ajonUcQ5R3wtizJFzHy9Rqm+DM="; }; propagatedBuildInputs = [ From 5667c1fc3f1235e4a55a283d76cfed0ee3cfb04f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mihai-Drosi=20C=C3=A2ju?= Date: Fri, 1 Oct 2021 23:06:07 +0300 Subject: [PATCH 37/59] libglibutil: Init at 1.0.55 --- .../libraries/libglibutil/default.nix | 45 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 2 files changed, 47 insertions(+) create mode 100644 pkgs/development/libraries/libglibutil/default.nix diff --git a/pkgs/development/libraries/libglibutil/default.nix b/pkgs/development/libraries/libglibutil/default.nix new file mode 100644 index 000000000000..1e813b625fe4 --- /dev/null +++ b/pkgs/development/libraries/libglibutil/default.nix @@ -0,0 +1,45 @@ +{ stdenv, lib, fetchFromGitLab, pkg-config, glib }: + +stdenv.mkDerivation rec { + pname = "libglibutil"; + version = "1.0.55"; + + src = fetchFromGitLab { + domain = "git.sailfishos.org"; + owner = "mer-core"; + repo = pname; + rev = version; + sha256 = "0zrxccpyfz4jf14zr6fj9b88p340s66lw5cnqkapfa72kl1rnp4q"; + }; + + outputs = [ "out" "dev" ]; + + nativeBuildInputs = [ + pkg-config + ]; + + buildInputs = [ + glib + ]; + + makeFlags = [ + "LIBDIR=$(out)/lib" + "INSTALL_INCLUDE_DIR=$(dev)/include/gutil" + "INSTALL_PKGCONFIG_DIR=$(dev)/lib/pkgconfig" + ]; + + installTargets = [ "install" "install-dev" ]; + + postInstall = '' + sed -i -e "s@includedir=/usr@includedir=$dev@g" $dev/lib/pkgconfig/$pname.pc + sed -i -e "s@Cflags: @Cflags: $($PKG_CONFIG --cflags glib-2.0) @g" $dev/lib/pkgconfig/$pname.pc + ''; + + meta = with lib; { + description = "Library of glib utilities."; + homepage = "https://git.sailfishos.org/mer-core/libglibutil"; + license = licenses.bsd3; + platforms = platforms.linux; + maintainers = with maintainers; [ mcaju ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 0a4d06d73eb5..5deb24aa9743 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -17071,6 +17071,8 @@ with pkgs; libgig = callPackage ../development/libraries/libgig { }; + libglibutil = callPackage ../development/libraries/libglibutil { }; + libgnome-keyring = callPackage ../development/libraries/libgnome-keyring { }; libgnome-keyring3 = gnome.libgnome-keyring; From 0aeb28e566eddfca126f19cec70eb12bca4771d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mihai-Drosi=20C=C3=A2ju?= Date: Fri, 1 Oct 2021 23:09:53 +0300 Subject: [PATCH 38/59] libgbinder: Init at 1.1.12 --- .../libraries/libgbinder/default.nix | 45 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 2 files changed, 47 insertions(+) create mode 100644 pkgs/development/libraries/libgbinder/default.nix diff --git a/pkgs/development/libraries/libgbinder/default.nix b/pkgs/development/libraries/libgbinder/default.nix new file mode 100644 index 000000000000..374a316abba7 --- /dev/null +++ b/pkgs/development/libraries/libgbinder/default.nix @@ -0,0 +1,45 @@ +{ stdenv, lib, fetchFromGitHub, pkg-config, glib, libglibutil }: + +stdenv.mkDerivation rec { + pname = "libgbinder"; + version = "1.1.12"; + + src = fetchFromGitHub { + owner = "mer-hybris"; + repo = pname; + rev = version; + sha256 = "03p5ala9lnfcizh7832ax5phdvfzrdxw6acw8zib8wj0s133wyhb"; + }; + + outputs = [ "out" "dev" ]; + + nativeBuildInputs = [ + pkg-config + ]; + + buildInputs = [ + glib + libglibutil + ]; + + makeFlags = [ + "LIBDIR=$(out)/lib" + "INSTALL_INCLUDE_DIR=$(dev)/include/gbinder" + "INSTALL_PKGCONFIG_DIR=$(dev)/lib/pkgconfig" + ]; + + installTargets = [ "install" "install-dev" ]; + + postInstall = '' + sed -i -e "s@includedir=/usr@includedir=$dev@g" $dev/lib/pkgconfig/$pname.pc + sed -i -e "s@Cflags: @Cflags: $($PKG_CONFIG --cflags libglibutil) @g" $dev/lib/pkgconfig/$pname.pc + ''; + + meta = with lib; { + description = "GLib-style interface to binder"; + homepage = "https://github.com/mer-hybris/libgbinder"; + license = licenses.bsd3; + platforms = platforms.linux; + maintainers = with maintainers; [ mcaju ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 5deb24aa9743..6bbc3adfba4c 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -17057,6 +17057,8 @@ with pkgs; libgadu = callPackage ../development/libraries/libgadu { }; + libgbinder = callPackage ../development/libraries/libgbinder { }; + libgda = callPackage ../development/libraries/libgda { }; libgda6 = callPackage ../development/libraries/libgda/6.x.nix { }; From 7f9f26f942f651111cc3472b1fe35a8e3ec1a174 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mihai-Drosi=20C=C3=A2ju?= Date: Fri, 1 Oct 2021 23:13:09 +0300 Subject: [PATCH 39/59] python3Packages.gbinder-python: Init at 1.0.0 --- .../python-modules/gbinder-python/default.nix | 39 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 41 insertions(+) create mode 100644 pkgs/development/python-modules/gbinder-python/default.nix diff --git a/pkgs/development/python-modules/gbinder-python/default.nix b/pkgs/development/python-modules/gbinder-python/default.nix new file mode 100644 index 000000000000..caa848a19a39 --- /dev/null +++ b/pkgs/development/python-modules/gbinder-python/default.nix @@ -0,0 +1,39 @@ +{ stdenv +, lib +, fetchFromGitHub +, buildPythonPackage +, cython +, pkg-config +, libgbinder +}: + +buildPythonPackage rec { + pname = "gbinder-python"; + version = "1.0.0"; + + src = fetchFromGitHub { + owner = "erfanoabdi"; + repo = pname; + rev = version; + sha256 = "0jgblzakjgsy0cj93bmh5gr7qnl2xgsrm0wzc6xjvzry9lrbs360"; + }; + + buildInputs = [ + libgbinder + ]; + + nativeBuildInputs = [ + cython + pkg-config + ]; + + setupPyGlobalFlags = [ "--cython" ]; + + meta = with lib; { + description = "Python bindings for libgbinder"; + homepage = "https://github.com/erfanoabdi/gbinder-python"; + license = licenses.gpl3; + maintainers = with maintainers; [ mcaju ]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 648a94ff4211..4376b63c2eca 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -2882,6 +2882,8 @@ in { garages-amsterdam = callPackage ../development/python-modules/garages-amsterdam { }; + gbinder-python = callPackage ../development/python-modules/gbinder-python { }; + gcovr = callPackage ../development/python-modules/gcovr { }; gcsfs = callPackage ../development/python-modules/gcsfs { }; From 6d8cab0b537bf768d044f1789a868261f45803fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mihai-Drosi=20C=C3=A2ju?= Date: Fri, 1 Oct 2021 23:16:36 +0300 Subject: [PATCH 40/59] waydroid: Init at 1.1.1 --- pkgs/os-specific/linux/waydroid/default.nix | 58 +++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 2 files changed, 60 insertions(+) create mode 100644 pkgs/os-specific/linux/waydroid/default.nix diff --git a/pkgs/os-specific/linux/waydroid/default.nix b/pkgs/os-specific/linux/waydroid/default.nix new file mode 100644 index 000000000000..708237e5184c --- /dev/null +++ b/pkgs/os-specific/linux/waydroid/default.nix @@ -0,0 +1,58 @@ +{ stdenv +, lib +, fetchFromGitHub +, python3Packages +, dnsmasq +, lxc +, nftables +, python +}: + +python3Packages.buildPythonApplication rec { + pname = "waydroid"; + version = "1.1.1"; + + src = fetchFromGitHub { + owner = pname; + repo = pname; + rev = version; + sha256 = "0cabh7rysh2v15wrxg250370mw26s5d073yxmczxsarbp4ri2pl4"; + }; + + propagatedBuildInputs = with python3Packages; [ + gbinder-python + pygobject3 + ]; + + dontUseSetuptoolsBuild = true; + dontUsePipInstall = true; + dontUseSetuptoolsCheck = true; + dontWrapPythonPrograms = true; + + installPhase = '' + mkdir -p $out/${python3Packages.python.sitePackages} + + cp -ra tools $out/${python3Packages.python.sitePackages}/tools + + cp -ra data $out/${python3Packages.python.sitePackages}/data + wrapProgram $out/${python3Packages.python.sitePackages}/data/scripts/waydroid-net.sh \ + --prefix PATH ":" ${lib.makeBinPath [ dnsmasq nftables ]} + + mkdir -p $out/share/waydroid/gbinder.d + cp gbinder/anbox.conf $out/share/waydroid/gbinder.d/anbox.conf + + mkdir $out/bin + cp -a waydroid.py $out/${python3Packages.python.sitePackages}/waydroid.py + ln -s $out/${python3Packages.python.sitePackages}/waydroid.py $out/bin/waydroid + + wrapPythonProgramsIn $out/${python3Packages.python.sitePackages} "$out ${python3Packages.gbinder-python} ${python3Packages.pygobject3} ${lxc}" + ''; + + meta = with lib; { + description = "Waydroid is a container-based approach to boot a full Android system on a regular GNU/Linux system like Ubuntu."; + homepage = "https://github.com/waydroid/waydroid"; + license = licenses.gpl3; + platforms = platforms.linux; + maintainers = with maintainers; [ mcaju ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 6bbc3adfba4c..b0cda1f625d3 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1828,6 +1828,8 @@ with pkgs; inherit (darwin.apple_sdk.frameworks) Carbon; }; + waydroid = callPackage ../os-specific/linux/waydroid { }; + wiiload = callPackage ../development/tools/wiiload { }; wiimms-iso-tools = callPackage ../tools/filesystems/wiimms-iso-tools { }; From 52be208f205b3e4ae40f1ce912c29d9db1273c65 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 3 Oct 2021 20:55:48 +0200 Subject: [PATCH 41/59] python3Packages.toposort: 1.6 -> 1.7 --- pkgs/development/python-modules/toposort/default.nix | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/toposort/default.nix b/pkgs/development/python-modules/toposort/default.nix index 540835c7e310..e72ed9294e84 100644 --- a/pkgs/development/python-modules/toposort/default.nix +++ b/pkgs/development/python-modules/toposort/default.nix @@ -5,19 +5,23 @@ buildPythonPackage rec { pname = "toposort"; - version = "1.6"; + version = "1.7"; + format = "pyproject"; src = fetchPypi { inherit pname version; - sha256 = "a7428f56ef844f5055bb9e9e44b343983773ae6dce0fe5b101e08e27ffbd50ac"; + sha256 = "sha256-3cIYLEKRKkQFEb1/9dPmocq8Osy8Z0oyWMjEHL+7ISU="; }; + pythonImportsCheck = [ + "toposort" + ]; + meta = with lib; { description = "A topological sort algorithm"; - homepage = "https://pypi.python.org/pypi/toposort/1.1"; + homepage = "https://pypi.python.org/pypi/toposort/"; maintainers = with maintainers; [ tstrobel ]; platforms = platforms.unix; license = licenses.asl20; }; - } From d5735ae18defec17313b82d8002b99ca40dd314e Mon Sep 17 00:00:00 2001 From: iceman-p <71475156+iceman-p@users.noreply.github.com> Date: Sun, 3 Oct 2021 15:02:27 -0400 Subject: [PATCH 42/59] erigon: 2021.09.02 -> 2021.09.04 (#139646) Co-authored-by: Iceman Co-authored-by: Sandro --- pkgs/applications/blockchains/erigon.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/blockchains/erigon.nix b/pkgs/applications/blockchains/erigon.nix index 241a9b3f870e..3258aec6c30c 100644 --- a/pkgs/applications/blockchains/erigon.nix +++ b/pkgs/applications/blockchains/erigon.nix @@ -2,16 +2,16 @@ buildGoModule rec { pname = "erigon"; - version = "2021.09.02"; + version = "2021.09.04"; src = fetchFromGitHub { owner = "ledgerwatch"; repo = pname; rev = "v${version}"; - sha256 = "sha256-0rWyDlZjfsZMOqAXs+mgmgz0m4oIN6bZ6Z9U4jWgR0E="; + sha256 = "0l0w1badhvlh1rgqzvlmy5k7xhb1nf4f5dmhkl935a5ila08aak3"; }; - vendorSha256 = "sha256-ardr+6Tz9IzSJPo9/kk7XV+2pIu6ZK3YYlp1zC/7Bno="; + vendorSha256 = "1hbfmq76zm50zwmlh3jblriwq2k1mp99d8lg8xzxwy56hncgfj8k"; runVend = true; # Build errors in mdbx when format hardening is enabled: From 27c05093234894f3eb98e05f41ea37073a5cdfe9 Mon Sep 17 00:00:00 2001 From: montag451 Date: Sun, 3 Oct 2021 21:03:21 +0200 Subject: [PATCH 43/59] webcat: init at unstable-2021-09-06 --- pkgs/tools/misc/webcat/default.nix | 30 ++++++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 32 insertions(+) create mode 100644 pkgs/tools/misc/webcat/default.nix diff --git a/pkgs/tools/misc/webcat/default.nix b/pkgs/tools/misc/webcat/default.nix new file mode 100644 index 000000000000..d67c02a40217 --- /dev/null +++ b/pkgs/tools/misc/webcat/default.nix @@ -0,0 +1,30 @@ +{ lib, buildGoModule, fetchFromGitea, asciidoctor, installShellFiles }: + +buildGoModule rec { + pname = "webcat"; + version = "unstable-2021-09-06"; + + src = fetchFromGitea { + domain = "codeberg.org"; + owner = "rumpelsepp"; + repo = "webcat"; + rev = "57a65558f0affac0b2f8f4831c52964eb9ad5386"; + sha256 = "15c62sjr15l5hwkvc4xarfn76341wi16pjv9qbr1agaz1vqgr6rd"; + }; + + vendorSha256 = "1apnra58mqrazbq53f0qlqnyyhjdvvdz995yridxva0fxmwpwcjy"; + + nativeBuildInputs = [ asciidoctor installShellFiles ]; + + postInstall = '' + make -C man man + installManPage man/webcat.1 + ''; + + meta = with lib; { + homepage = "https://rumpelsepp.org/blog/ssh-through-websocket/"; + description = "The lightweight swiss army knife for websockets"; + license = licenses.gpl3Only; + maintainers = with maintainers; [ montag451 ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 0a4d06d73eb5..c6881cc43da0 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -31587,6 +31587,8 @@ with pkgs; inherit (darwin.apple_sdk.frameworks) Security; }; + webcat = callPackage ../tools/misc/webcat { }; + websocat = callPackage ../tools/misc/websocat { inherit (darwin.apple_sdk.frameworks) Security; }; From a21f4b7a76d1984d10cce20ef02076710155a0d4 Mon Sep 17 00:00:00 2001 From: lunik1 Date: Sun, 3 Oct 2021 20:06:20 +0100 Subject: [PATCH 44/59] =?UTF-8?q?iosevka:=2010.0.0=20=E2=86=92=2010.3.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../node-packages/node-packages.json | 2 +- .../node-packages/node-packages.nix | 2505 +++++++++-------- 2 files changed, 1287 insertions(+), 1220 deletions(-) diff --git a/pkgs/development/node-packages/node-packages.json b/pkgs/development/node-packages/node-packages.json index 0c9d1f261380..312c35c58192 100644 --- a/pkgs/development/node-packages/node-packages.json +++ b/pkgs/development/node-packages/node-packages.json @@ -143,7 +143,7 @@ , "indium" , "insect" , "ionic" -, {"iosevka": "https://github.com/be5invis/Iosevka/archive/v10.0.0.tar.gz"} +, {"iosevka": "https://github.com/be5invis/Iosevka/archive/v10.3.1.tar.gz"} , "jake" , "javascript-typescript-langserver" , "joplin" diff --git a/pkgs/development/node-packages/node-packages.nix b/pkgs/development/node-packages/node-packages.nix index 258958e254e5..813590cc824e 100644 --- a/pkgs/development/node-packages/node-packages.nix +++ b/pkgs/development/node-packages/node-packages.nix @@ -49,13 +49,13 @@ let sha512 = "o/xdK8b4P0t/xpCARgWXAeaiWeh9jeua6bP1jrcbfN39+Z4zC4x2jg4NysHNhz6spRG8dJFH3kJIUoIbs0Ckww=="; }; }; - "@angular-devkit/architect-0.1202.7" = { + "@angular-devkit/architect-0.1202.8" = { name = "_at_angular-devkit_slash_architect"; packageName = "@angular-devkit/architect"; - version = "0.1202.7"; + version = "0.1202.8"; src = fetchurl { - url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1202.7.tgz"; - sha512 = "zqqw3h8jMDYsRrXUNY1J8xtUl6wmBO++yTka+CoEIFetNdLdoWmb5VpaA81i0aSBhXBgnBUUFvqZGdiI7BbV8A=="; + url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1202.8.tgz"; + sha512 = "aPzwO3coRIuSjZa8FwFHy2y8OJarXG+afsqOk3muR6anvbdl+Av+m2RT8jjwj5J3D4N2eKZ7ob2q9HDUiHi4Pg=="; }; }; "@angular-devkit/core-12.0.5" = { @@ -67,15 +67,6 @@ let sha512 = "zVSQV+8/vjUjsUKGlj8Kf5LioA6AXJTGI0yhHW9q1dFX4dPpbW63k0R1UoIB2wJ0F/AbYVgpnPGPe9BBm2fvZA=="; }; }; - "@angular-devkit/core-12.1.4" = { - name = "_at_angular-devkit_slash_core"; - packageName = "@angular-devkit/core"; - version = "12.1.4"; - src = fetchurl { - url = "https://registry.npmjs.org/@angular-devkit/core/-/core-12.1.4.tgz"; - sha512 = "KOzGD8JbP/7EeUwPiU5x+fo3ZEQ5R4IVW5WoH92PaO3mdpqXC7UL2MWLct8PUe9il9nqJMvrBMldSSvP9PCT2w=="; - }; - }; "@angular-devkit/core-12.2.7" = { name = "_at_angular-devkit_slash_core"; packageName = "@angular-devkit/core"; @@ -85,6 +76,15 @@ let sha512 = "WeLlDZaudpx10OGDPfVcWu/CaEWiWzAaLTUQz0Ww/yM+01FxR/P8yeH1sYAV1MS6d6KHvXGw7Lpf8PV7IA/zHA=="; }; }; + "@angular-devkit/core-12.2.8" = { + name = "_at_angular-devkit_slash_core"; + packageName = "@angular-devkit/core"; + version = "12.2.8"; + src = fetchurl { + url = "https://registry.npmjs.org/@angular-devkit/core/-/core-12.2.8.tgz"; + sha512 = "N13N1Lm7qllBXSVZYz4Khw75rnQnS3lu5QiJqlsaNklWgVfVz8jt99AAeGGvNGSLEbmZjlr35YLxu8ugD267Ug=="; + }; + }; "@angular-devkit/schematics-12.0.5" = { name = "_at_angular-devkit_slash_schematics"; packageName = "@angular-devkit/schematics"; @@ -94,15 +94,6 @@ let sha512 = "iW3XuDHScr3TXuunlEjF5O01zBpwpLgfr1oEny8PvseFGDlHK4Nj8zNIoIn3Yg936aiFO4GJAC/UXsT8g5vKxQ=="; }; }; - "@angular-devkit/schematics-12.1.4" = { - name = "_at_angular-devkit_slash_schematics"; - packageName = "@angular-devkit/schematics"; - version = "12.1.4"; - src = fetchurl { - url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-12.1.4.tgz"; - sha512 = "yD3y3pK/K5piOgvALFoCCiPp4H8emNa3yZL+vlpEpewVLpF1MM55LeTxc0PI5s0uqtOGVnvcbA5wYgMm3YsUEA=="; - }; - }; "@angular-devkit/schematics-12.2.7" = { name = "_at_angular-devkit_slash_schematics"; packageName = "@angular-devkit/schematics"; @@ -112,13 +103,22 @@ let sha512 = "E0hCFyyfbixjerf0Okt4ynC6F1dsT2Wl7MwAePe+wzPTHCnKIRTa2PQTxJzdWeTlSkQMkSK6ft2iyWOD/FODng=="; }; }; - "@angular-devkit/schematics-cli-12.1.4" = { + "@angular-devkit/schematics-12.2.8" = { + name = "_at_angular-devkit_slash_schematics"; + packageName = "@angular-devkit/schematics"; + version = "12.2.8"; + src = fetchurl { + url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-12.2.8.tgz"; + sha512 = "SPiMFoCi1TpFXY6h1xGCakgdwT25gGHdbis1MuHE5yMcPLvhl/yr7EQVY1GY00/iMrgeslTHg/UPp4D6xHyQxA=="; + }; + }; + "@angular-devkit/schematics-cli-12.2.7" = { name = "_at_angular-devkit_slash_schematics-cli"; packageName = "@angular-devkit/schematics-cli"; - version = "12.1.4"; + version = "12.2.7"; src = fetchurl { - url = "https://registry.npmjs.org/@angular-devkit/schematics-cli/-/schematics-cli-12.1.4.tgz"; - sha512 = "BJiyZu7TaOJUnH4XH4OKz1LjW1364BLAhpwCBAueu11YkI7hghlsx/ogvvd5RYX9JmQL70iVOVkBsoYA7XVreg=="; + url = "https://registry.npmjs.org/@angular-devkit/schematics-cli/-/schematics-cli-12.2.7.tgz"; + sha512 = "dlHY+wD6eosbVbTShgVYskc4rCWn6m06t6TJkp8T0y51kVmjNHMiyBs/7z+YkO4rSDLiHhZmn1b0RUpoxxVw7Q=="; }; }; "@antora/asciidoc-loader-2.3.4" = { @@ -1543,13 +1543,13 @@ let sha512 = "BPU+7QhqNjmWyDO0/vitH/CuhpV8ZmK1wpKva8nuyNF5MJfuRNWMc+hc14+u9xT93kvykMdncrJT19h74uB1Ig=="; }; }; - "@blueprintjs/colors-4.0.0-alpha.1" = { + "@blueprintjs/colors-4.0.0-beta.0" = { name = "_at_blueprintjs_slash_colors"; packageName = "@blueprintjs/colors"; - version = "4.0.0-alpha.1"; + version = "4.0.0-beta.0"; src = fetchurl { - url = "https://registry.npmjs.org/@blueprintjs/colors/-/colors-4.0.0-alpha.1.tgz"; - sha512 = "i95xW/cAIijJAMIBDrXw1WLbGVXVaRDRG1Ga0CxOtMVwL20zvdXlQj7EMqhkgVEJo9LaKNIDliPI+jsh7h5Lag=="; + url = "https://registry.npmjs.org/@blueprintjs/colors/-/colors-4.0.0-beta.0.tgz"; + sha512 = "dC98U54yUC/20GON74ToqMYk9/PKdLuI7tFSNVscAtaexMV6ETqpOcJEXB8FNwh/pot0sBCdPPevQiZtXvHNmQ=="; }; }; "@blueprintjs/core-3.50.4" = { @@ -2254,13 +2254,13 @@ let sha512 = "Jz8kqbpdBBx01Pu00eXy/ZfEz7hTeaQRwRsyQndVdDIUYddb0R/NI/m1aCk+JdnIZv1Et5krgw/ADdDUwWz6kQ=="; }; }; - "@expo/dev-tools-0.13.116" = { + "@expo/dev-tools-0.13.117" = { name = "_at_expo_slash_dev-tools"; packageName = "@expo/dev-tools"; - version = "0.13.116"; + version = "0.13.117"; src = fetchurl { - url = "https://registry.npmjs.org/@expo/dev-tools/-/dev-tools-0.13.116.tgz"; - sha512 = "n+H/2JgFmYxPxiJJcpzKJDziJJ3omj0rROJAVrfMaZSHvrL6qf/nFDXm4UDaFQvw+oHSkrz9vJaSIKVYm6Gwow=="; + url = "https://registry.npmjs.org/@expo/dev-tools/-/dev-tools-0.13.117.tgz"; + sha512 = "VF1WUNz6HsdXAtLf/tBbFU9uIkN1ddeND2ixvKdkfsEKzq0R7y5jJwT5DCBjUX3m+P87BARxRiZOe9OQQS3+cA=="; }; }; "@expo/devcert-1.0.0" = { @@ -2443,13 +2443,13 @@ let sha512 = "iT1bU56rKrKEOfODoW6fScY11qj3iaYrZ+z11T6fo5+TDm84UGkkXjLXJTE57ZJzg0/gbccHQWYv+chY7bJN8Q=="; }; }; - "@fluentui/react-7.176.2" = { + "@fluentui/react-7.177.1" = { name = "_at_fluentui_slash_react"; packageName = "@fluentui/react"; - version = "7.176.2"; + version = "7.177.1"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/react/-/react-7.176.2.tgz"; - sha512 = "zlZ/TYaWkJvfydW684mbLkrBwLcZp4bCgrq+AV8TEZYq2MVRjBgv4z79oOUiejO6HmsVNL76rioZ+RCPyUc/eg=="; + url = "https://registry.npmjs.org/@fluentui/react/-/react-7.177.1.tgz"; + sha512 = "FdOnF8KwSOpLeDK8r9VIFUHD5kWIl/uH5zD4v4SpgA9xZSOzL3zpr9LMVdUEZ3PkQMbGarMoi4JVxomg/4+o0w=="; }; }; "@fluentui/react-focus-7.18.0" = { @@ -2578,13 +2578,13 @@ let sha512 = "5k2SNz0W87tDcymhEMZMkd6/vs6QawDyjQXWtqkuLTBF3vxjxPD1I4dwHoxgWPIjjANhXybvulD7E+St/7s9TQ=="; }; }; - "@graphql-tools/import-6.4.1" = { + "@graphql-tools/import-6.4.2" = { name = "_at_graphql-tools_slash_import"; packageName = "@graphql-tools/import"; - version = "6.4.1"; + version = "6.4.2"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/import/-/import-6.4.1.tgz"; - sha512 = "nFWo2dI9XXs0hsBscHnTSJNfgFq2gA1bw0qbCXyQga1PJclZViO8SxcHqCf2JmShRpTFsyzsDjKA8xGKDDs8PQ=="; + url = "https://registry.npmjs.org/@graphql-tools/import/-/import-6.4.2.tgz"; + sha512 = "FOiusunuS9STdF3mrnOTvNJauM/P85Sq3kVar8F0/OXyFL+AxuTCF/RKTXMUls2owSQN2VV53PCkzK9Rfg5S4A=="; }; }; "@graphql-tools/json-file-loader-6.2.6" = { @@ -2695,13 +2695,13 @@ let sha512 = "gzkavMOgbhnwkHJYg32Adv6f+LxjbQmmbdD5Hty0+CWxvaiuJq+nU6tzb/7VSU4cwhbNLx/lGu2jbCPEW1McZQ=="; }; }; - "@graphql-tools/utils-8.2.3" = { + "@graphql-tools/utils-8.2.4" = { name = "_at_graphql-tools_slash_utils"; packageName = "@graphql-tools/utils"; - version = "8.2.3"; + version = "8.2.4"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.2.3.tgz"; - sha512 = "RR+aiusf2gIfnPmrDIH1uA45QuPiHB54RD+BmWyMcl88tWAjeJtqZeWPqUTq/1EXrNeocJAJQqogHV4Fbbzx3A=="; + url = "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.2.4.tgz"; + sha512 = "uB+JL7CqTKJ2Q5zXA+a2la1cA8YYPcc0RHO/3mK54hxlZa2Z5/9k9XrNfMof4LZQefTaBM7M6QWtaxGklJln4A=="; }; }; "@graphql-tools/wrap-7.0.8" = { @@ -3145,58 +3145,58 @@ let sha512 = "fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ=="; }; }; - "@joplin/fork-htmlparser2-4.1.34" = { + "@joplin/fork-htmlparser2-4.1.36" = { name = "_at_joplin_slash_fork-htmlparser2"; packageName = "@joplin/fork-htmlparser2"; - version = "4.1.34"; + version = "4.1.36"; src = fetchurl { - url = "https://registry.npmjs.org/@joplin/fork-htmlparser2/-/fork-htmlparser2-4.1.34.tgz"; - sha512 = "1/tQZEDnI36RaEJte0eumw1/c8OhmJOpgFyW+Nxsk2u/vvcgnEvjFjauiH2ZxtO5FTJB3BMQ4M23+Y5dw2cnnw=="; + url = "https://registry.npmjs.org/@joplin/fork-htmlparser2/-/fork-htmlparser2-4.1.36.tgz"; + sha512 = "utKsPcJpU4dKQqdp7NfcCex3eTln7QHB90xJKNUOpCsfHsMjJ8qMdHEb6N3/iD+wjD16ZYaPoF7FfBWur2Ascg=="; }; }; - "@joplin/fork-sax-1.2.38" = { + "@joplin/fork-sax-1.2.40" = { name = "_at_joplin_slash_fork-sax"; packageName = "@joplin/fork-sax"; - version = "1.2.38"; + version = "1.2.40"; src = fetchurl { - url = "https://registry.npmjs.org/@joplin/fork-sax/-/fork-sax-1.2.38.tgz"; - sha512 = "XRwYieoXtTdjwOT4J1FpWVnOZe1f2KSNK2KXe7s4UiLxhVKQWPQrqgP8xoNyHH5/Y78fqwajU4pYvRgctNqdfw=="; + url = "https://registry.npmjs.org/@joplin/fork-sax/-/fork-sax-1.2.40.tgz"; + sha512 = "dmlgrm/Oj7VevER0U4pFqdZFcB38gcUdKqIm5EoL9a9hKOX+IKHHsvzSZima4iGwDrfiBEqC16p/dgvX1CJTwg=="; }; }; - "@joplin/lib-2.3.1" = { + "@joplin/lib-2.4.3" = { name = "_at_joplin_slash_lib"; packageName = "@joplin/lib"; - version = "2.3.1"; + version = "2.4.3"; src = fetchurl { - url = "https://registry.npmjs.org/@joplin/lib/-/lib-2.3.1.tgz"; - sha512 = "/OIyf4AdF/JLFf+ZTYsusrjl5XCDV20wwi0JnvxnySYgG9Y4GgNusDPI0/77+rj+KQA/E91FzGeWoSDc5XOUsA=="; + url = "https://registry.npmjs.org/@joplin/lib/-/lib-2.4.3.tgz"; + sha512 = "H1WmRhd8Eso07W3Dxaa+7LirNoQbXMVRbUhRzfoAgj8/ZfTrmHycbpoLKQKv9gS0QzPqR+ynnBfBRfAfb8mmkw=="; }; }; - "@joplin/renderer-2.3.1" = { + "@joplin/renderer-2.4.3" = { name = "_at_joplin_slash_renderer"; packageName = "@joplin/renderer"; - version = "2.3.1"; + version = "2.4.3"; src = fetchurl { - url = "https://registry.npmjs.org/@joplin/renderer/-/renderer-2.3.1.tgz"; - sha512 = "wOxuScEao2f3kIs+A0qroWe6CiWs1LeZqwBz/w869Qi8MW8wvy2aeyirpnb7yEYh9aCevfiQcUMUvYZ9ekMskg=="; + url = "https://registry.npmjs.org/@joplin/renderer/-/renderer-2.4.3.tgz"; + sha512 = "dxoDjBJwmzAyGBf2G2I/rGMK6MljTFB7OHxl6lAE5sIZ+xTPN8nKOCr9b5zJVde6G7DA9RsnfFdG51S5BGtPRA=="; }; }; - "@joplin/turndown-4.0.56" = { + "@joplin/turndown-4.0.58" = { name = "_at_joplin_slash_turndown"; packageName = "@joplin/turndown"; - version = "4.0.56"; + version = "4.0.58"; src = fetchurl { - url = "https://registry.npmjs.org/@joplin/turndown/-/turndown-4.0.56.tgz"; - sha512 = "5odtgBk4u1c+IehuvS7/C3yxCY96UMiUdVdoSpyk5m11nLupEr5LA1oQ1JAJTehUk5cuJR+rofD67m+XgZt+tQ=="; + url = "https://registry.npmjs.org/@joplin/turndown/-/turndown-4.0.58.tgz"; + sha512 = "4WUJTU3wt0PgiN+ezqz5tHf9EHNGZ5d1Hc6Oe33A2hgpYweKBQ8YMJ3CS3AEWjy2tM3HvwBwqhe7JurVJNsxWQ=="; }; }; - "@joplin/turndown-plugin-gfm-1.0.38" = { + "@joplin/turndown-plugin-gfm-1.0.40" = { name = "_at_joplin_slash_turndown-plugin-gfm"; packageName = "@joplin/turndown-plugin-gfm"; - version = "1.0.38"; + version = "1.0.40"; src = fetchurl { - url = "https://registry.npmjs.org/@joplin/turndown-plugin-gfm/-/turndown-plugin-gfm-1.0.38.tgz"; - sha512 = "STRS9Y1YkxmKO2pEEkbUAp8KxLW+41rm3Dom0uGMw4kAYLDcxbOscu6XScLRvRtleftU6YS7aZd+4/9SBx75Zw=="; + url = "https://registry.npmjs.org/@joplin/turndown-plugin-gfm/-/turndown-plugin-gfm-1.0.40.tgz"; + sha512 = "AhaCa3/tz6ceHnt5+NiJ0x77F3+FKpexIyeGMItrZV1qtHovIv1ntxEXzrl5RryHQD8/NK1uf3KbZPEasbDKTA=="; }; }; "@josephg/resolvable-1.0.1" = { @@ -4090,22 +4090,22 @@ let sha512 = "b+MGNyP9/LXkapreJzNUzcvuzZslj/RGgdVVJ16P2wSlYatfLycPObImqVJSmNAdyeShvNeM/pl3sVZsObFueg=="; }; }; - "@netlify/build-18.13.4" = { + "@netlify/build-18.13.6" = { name = "_at_netlify_slash_build"; packageName = "@netlify/build"; - version = "18.13.4"; + version = "18.13.6"; src = fetchurl { - url = "https://registry.npmjs.org/@netlify/build/-/build-18.13.4.tgz"; - sha512 = "p6lAfGhmlXKHY8SmLTql3A1D+pAkpgvnyTv5WU44H79HXidTE0W2zChWgZ0GtRvoMoKAwYpbY6y7lIn8qOYiDw=="; + url = "https://registry.npmjs.org/@netlify/build/-/build-18.13.6.tgz"; + sha512 = "lIdFvwbcYBfA+oqh5J/m5E1fQ7NqiL4YzEQ0nviK2nWKdKHZLqbGV53/V9aN/N00X2J8rqXKoWmpctnY1BQJ4A=="; }; }; - "@netlify/cache-utils-2.0.3" = { + "@netlify/cache-utils-2.0.4" = { name = "_at_netlify_slash_cache-utils"; packageName = "@netlify/cache-utils"; - version = "2.0.3"; + version = "2.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/@netlify/cache-utils/-/cache-utils-2.0.3.tgz"; - sha512 = "820dYhacTHXKxpYm81VlmCJ48ySGj+6GZi1oPLevdTSkMXGM1BphBKUjM/r9+GUE1ocGOh8Vdt3PsDp8f7gS4w=="; + url = "https://registry.npmjs.org/@netlify/cache-utils/-/cache-utils-2.0.4.tgz"; + sha512 = "P6tomPTt5tdyFrrYbBWHIGBHTwiuewrElxVRMnYW1W4GfTP4Me4+iV5lOyU/Yw9OuTPg7dPzah2J0GA6cA1YCw=="; }; }; "@netlify/config-15.6.3" = { @@ -4315,13 +4315,13 @@ let sha512 = "F1YcF2kje0Ttj+t5Cn5d6ojGQcKj4i/GMWgQuoZGVjQ31ToNcDXIbBm5SBKIkMMpNejtR1wF+1a0Q+aBPWiZVQ=="; }; }; - "@netlify/zip-it-and-ship-it-4.23.2" = { + "@netlify/zip-it-and-ship-it-4.23.3" = { name = "_at_netlify_slash_zip-it-and-ship-it"; packageName = "@netlify/zip-it-and-ship-it"; - version = "4.23.2"; + version = "4.23.3"; src = fetchurl { - url = "https://registry.npmjs.org/@netlify/zip-it-and-ship-it/-/zip-it-and-ship-it-4.23.2.tgz"; - sha512 = "paZR1lZqQCPQ11SPVvlb4k53kZayI4YD+QYRsbWo8C848z0CGZhXPbtT5K9Ze7MbKN1ZuDA51hydF/tlgBCVzg=="; + url = "https://registry.npmjs.org/@netlify/zip-it-and-ship-it/-/zip-it-and-ship-it-4.23.3.tgz"; + sha512 = "Va40JVTeisKb6ryLWWhLm5sEVjZlLoJZeoEZlUXfzMsncgwZZqY5sGcVxlk6b8iMS1A93jLR7qWbuiMqwo+WWg=="; }; }; "@node-red/editor-api-2.0.6" = { @@ -4414,13 +4414,13 @@ let sha512 = "oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg=="; }; }; - "@npmcli/arborist-2.9.0" = { + "@npmcli/arborist-2.10.0" = { name = "_at_npmcli_slash_arborist"; packageName = "@npmcli/arborist"; - version = "2.9.0"; + version = "2.10.0"; src = fetchurl { - url = "https://registry.npmjs.org/@npmcli/arborist/-/arborist-2.9.0.tgz"; - sha512 = "21DTow2xC0GlkowlE4zOu99UY21nSymW14fHZmB0yeAqhagmttJPmCUZXU+ngJmJ/Dwe5YP9QJUTgEVRLqnwcg=="; + url = "https://registry.npmjs.org/@npmcli/arborist/-/arborist-2.10.0.tgz"; + sha512 = "CLnD+zXG9oijEEzViimz8fbOoFVb7hoypiaf7p6giJhvYtrxLAyY3cZAMPIFQvsG731+02eMDp3LqVBNo7BaZA=="; }; }; "@npmcli/ci-detect-1.3.0" = { @@ -4558,13 +4558,13 @@ let sha512 = "Lmfuf6ubjQ4ifC/9bz1fSCHc6F6E653oyaRXxg+lgT4+bYf9bk+nqrUpAbrXyABkCqgIBiFr3J4zR/kiFdE1PA=="; }; }; - "@oclif/core-0.5.40" = { + "@oclif/core-0.5.41" = { name = "_at_oclif_slash_core"; packageName = "@oclif/core"; - version = "0.5.40"; + version = "0.5.41"; src = fetchurl { - url = "https://registry.npmjs.org/@oclif/core/-/core-0.5.40.tgz"; - sha512 = "wr7Svk4laXXUSIXOBrMpVYWwbBnUdL1a7nqIMOj0lA/i8uvVAM5LDxN8OENde1y2iPq04CAXehLEn3tKNvXDSw=="; + url = "https://registry.npmjs.org/@oclif/core/-/core-0.5.41.tgz"; + sha512 = "zEYbpxSQr80t7MkLMHOmZr8QCrCIbVrI7fLSZWlsvD2AEM0vvzuhWymjo9/kHy2/kNfxwu7NTI4i2a0zoHu11w=="; }; }; "@oclif/errors-1.3.5" = { @@ -4684,13 +4684,13 @@ let sha512 = "0gv+qLSBLKF0z8TKaSKTsS39scVKF9dbMxJpj3U0vC7wjNWFuIpL/z76Qe2fiuCbDRcJSavkXsVtMS6/dtQQsg=="; }; }; - "@octokit/openapi-types-10.6.1" = { + "@octokit/openapi-types-10.6.4" = { name = "_at_octokit_slash_openapi-types"; packageName = "@octokit/openapi-types"; - version = "10.6.1"; + version = "10.6.4"; src = fetchurl { - url = "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-10.6.1.tgz"; - sha512 = "53YKy8w8+sHQhUONhTiYt6MqNqPolejYr6rK/3VOevpORAIYGQEX2pmXnnhgdSsjHy176e5ZBgVt0ppOGziS7g=="; + url = "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-10.6.4.tgz"; + sha512 = "JVmwWzYTIs6jACYOwD6zu5rdrqGIYsiAsLzTCxdrWIPNKNVjEF6vPTL20shmgJ4qZsq7WPBcLXLsaQD+NLChfg=="; }; }; "@octokit/plugin-enterprise-rest-6.0.1" = { @@ -4702,13 +4702,13 @@ let sha512 = "93uGjlhUD+iNg1iWhUENAtJata6w5nE+V4urXOAlIXdco6xNZtUSfYY8dzp3Udy74aqO/B5UZL80x/YMa5PKRw=="; }; }; - "@octokit/plugin-paginate-rest-2.16.5" = { + "@octokit/plugin-paginate-rest-2.16.7" = { name = "_at_octokit_slash_plugin-paginate-rest"; packageName = "@octokit/plugin-paginate-rest"; - version = "2.16.5"; + version = "2.16.7"; src = fetchurl { - url = "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-2.16.5.tgz"; - sha512 = "2PfRGymdBypqRes4Xelu0BAZZRCV/Qg0xgo8UB10UKoghCM+zg640+T5WkRsRD0edwfLBPP3VsJgDyDTG4EIYg=="; + url = "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-2.16.7.tgz"; + sha512 = "TMlyVhMPx6La1Ud4PSY4YxqAvb9YPEMs/7R1nBSbsw4wNqG73aBqls0r0dRRCWe5Pm0ZUGS9a94N46iAxlOR8A=="; }; }; "@octokit/plugin-request-log-1.0.4" = { @@ -4720,13 +4720,13 @@ let sha512 = "mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA=="; }; }; - "@octokit/plugin-rest-endpoint-methods-5.11.3" = { + "@octokit/plugin-rest-endpoint-methods-5.11.4" = { name = "_at_octokit_slash_plugin-rest-endpoint-methods"; packageName = "@octokit/plugin-rest-endpoint-methods"; - version = "5.11.3"; + version = "5.11.4"; src = fetchurl { - url = "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-5.11.3.tgz"; - sha512 = "E19gqHqfP3uJa2/hx6Abhx2NrVP5tsNbst2/AeqGxlGM+eL4N8fRbzhd+NEIsGAB4y3R7e9kVE0y8OOghlXUXw=="; + url = "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-5.11.4.tgz"; + sha512 = "iS+GYTijrPUiEiLoDsGJhrbXIvOPfm2+schvr+FxNMs7PeE9Nl4bAMhE8ftfNX3Z1xLxSKwEZh0O7GbWurX5HQ=="; }; }; "@octokit/plugin-retry-3.0.9" = { @@ -4756,22 +4756,22 @@ let sha512 = "1VIvgXxs9WHSjicsRwq8PlR2LR2x6DwsJAaFgzdi0JfJoGSO8mYI/cHJQ+9FbN21aa+DrgNLnwObmyeSC8Rmpg=="; }; }; - "@octokit/rest-18.11.2" = { + "@octokit/rest-18.11.4" = { name = "_at_octokit_slash_rest"; packageName = "@octokit/rest"; - version = "18.11.2"; + version = "18.11.4"; src = fetchurl { - url = "https://registry.npmjs.org/@octokit/rest/-/rest-18.11.2.tgz"; - sha512 = "XZPD5HN0B8AfvXhdztFqoZxNVC6hRgQSZTWS1Eh0xHAoJvduVBwniWJ0t4DsdO9in+odZZ9EYAOFtQuaLVZ44Q=="; + url = "https://registry.npmjs.org/@octokit/rest/-/rest-18.11.4.tgz"; + sha512 = "QplypCyYxqMK05JdMSm/bDWZO8VWWaBdzQ9tbF9rEV9rIEiICh+v6q+Vu/Y5hdze8JJaxfUC+PBC7vrnEkZvZg=="; }; }; - "@octokit/types-6.31.1" = { + "@octokit/types-6.31.3" = { name = "_at_octokit_slash_types"; packageName = "@octokit/types"; - version = "6.31.1"; + version = "6.31.3"; src = fetchurl { - url = "https://registry.npmjs.org/@octokit/types/-/types-6.31.1.tgz"; - sha512 = "xkF46eaYcpT8ieO78mZWhMq3bt37zIsP5BUkN+zWgX+mTYDB7jOtUP1MOxcSF8hhJhsjjlB1YDgQAhX0z0oqPw=="; + url = "https://registry.npmjs.org/@octokit/types/-/types-6.31.3.tgz"; + sha512 = "IUG3uMpsLHrtEL6sCVXbxCgnbKcgpkS4K7gVEytLDvYYalkK3XcuMCHK1YPD8xJglSJAOAbL4MgXp47rS9G49w=="; }; }; "@opencensus/core-0.0.8" = { @@ -5377,13 +5377,13 @@ let sha512 = "tU8fQs0D76ZKhJ2cWtnfQthWqiZgGBx0gH0+5D8JvaBEBaqA8foPPBt3Nonwr3ygyv5xrw2IzKWgIY86BlGs+w=="; }; }; - "@redocly/openapi-core-1.0.0-beta.61" = { + "@redocly/openapi-core-1.0.0-beta.62" = { name = "_at_redocly_slash_openapi-core"; packageName = "@redocly/openapi-core"; - version = "1.0.0-beta.61"; + version = "1.0.0-beta.62"; src = fetchurl { - url = "https://registry.npmjs.org/@redocly/openapi-core/-/openapi-core-1.0.0-beta.61.tgz"; - sha512 = "/OgtozUxy7SvHVBZ3Iygu6brDTOFTOlkzpDQyykpa0lK2cPBeYjkJP5foBlHKeHl+TvxfPuzh1CSGSShSc+IBg=="; + url = "https://registry.npmjs.org/@redocly/openapi-core/-/openapi-core-1.0.0-beta.62.tgz"; + sha512 = "g4iPB7qpSNFCOpf/FgKiic+QCaCn4mdNQOWVEPuwpN7l72hlQ7J3YUa9cssJomkJXXxZ1zdP4h208s12LkhwVA=="; }; }; "@redocly/react-dropdown-aria-2.0.12" = { @@ -5476,13 +5476,13 @@ let sha512 = "c/qwwcHyafOQuVQJj0IlBjf5yYgBI7YPJ77k4fOJYesb41jio65eaJODRUmfYKhTOFBrIZ66kgvGPlNbjuoRdQ=="; }; }; - "@schematics/angular-12.2.7" = { + "@schematics/angular-12.2.8" = { name = "_at_schematics_slash_angular"; packageName = "@schematics/angular"; - version = "12.2.7"; + version = "12.2.8"; src = fetchurl { - url = "https://registry.npmjs.org/@schematics/angular/-/angular-12.2.7.tgz"; - sha512 = "wGqp0jC545Fwf0ydBkeoJHx9snFW+uqn40WwVqs/27Nh4AEHB5uzwzLY7Ykae95Zn802a61KPqSNWpez2fWWGA=="; + url = "https://registry.npmjs.org/@schematics/angular/-/angular-12.2.8.tgz"; + sha512 = "xkVcX6lTHC5JzDOjGdRAZutVVpxkRkT84vXtVlJwojyhNjAZg5dm/GC84+gVGfmVnO9vkUIYo/vGoN+/ydcSdA=="; }; }; "@segment/loosely-validate-event-2.0.0" = { @@ -5530,13 +5530,13 @@ let sha512 = "PY7gH+7aQ+MltcUD7SRDuQODJ9Sav9HhFJsgOiyf8IVo7XVD6FxZIsSnpMI6paSkptOB7n+0Jz03gNlEkKetQQ=="; }; }; - "@serverless/dashboard-plugin-5.4.4" = { + "@serverless/dashboard-plugin-5.4.5" = { name = "_at_serverless_slash_dashboard-plugin"; packageName = "@serverless/dashboard-plugin"; - version = "5.4.4"; + version = "5.4.5"; src = fetchurl { - url = "https://registry.npmjs.org/@serverless/dashboard-plugin/-/dashboard-plugin-5.4.4.tgz"; - sha512 = "1lLChYK/zwrF5SEAubVr9Oz/xGnq1Yjbw36X1iz0j/+jwbtpt1AeumksArA3UVAgDSecVOfaksxUta2cc10pRA=="; + url = "https://registry.npmjs.org/@serverless/dashboard-plugin/-/dashboard-plugin-5.4.5.tgz"; + sha512 = "/GC25lNFBcUQ/jK4ArDkx7yJk8a+QVXPHa7jakb8zXYDUy1s9XbXW5R8Lj0X1s1e8NG52+rCh6y1gy53hGqvbQ=="; }; }; "@serverless/event-mocks-1.1.1" = { @@ -5593,13 +5593,13 @@ let sha512 = "cl5uPaGg72z0sCUpF0zsOhwYYUV72Gxc1FwFfxltO8hSvMeFDvwD7JrNE4kHcIcKRjwPGbSH0fdVPUpErZ8Mog=="; }; }; - "@serverless/utils-5.16.0" = { + "@serverless/utils-5.17.0" = { name = "_at_serverless_slash_utils"; packageName = "@serverless/utils"; - version = "5.16.0"; + version = "5.17.0"; src = fetchurl { - url = "https://registry.npmjs.org/@serverless/utils/-/utils-5.16.0.tgz"; - sha512 = "oxxfpJ7BowcJZ9cQxf02bPbCViEaU78iT6fN15/6DGD1KAm+b6h0o/962DNg5g1+QSVLsM1iP2upypf5iTjEzA=="; + url = "https://registry.npmjs.org/@serverless/utils/-/utils-5.17.0.tgz"; + sha512 = "Xnkg1xPjXFCiXXvsIi+inl9lgWSyEyG6tUpGzaKbpPcPo16xruBUX+aRKtMd53QXe3WJVe7+1+MOzjiXbRzE1A=="; }; }; "@serverless/utils-china-1.1.4" = { @@ -6232,6 +6232,15 @@ let sha512 = "W3rv6J0IGlxqgE2eQ2pTb0gBjaGtejQpJ6uaCjz3UQ65+TFTPC5/lAE+POfx1YLdjtxvejJzsIAfd3MxWiVmfg=="; }; }; + "@types/bn.js-5.1.0" = { + name = "_at_types_slash_bn.js"; + packageName = "@types/bn.js"; + version = "5.1.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@types/bn.js/-/bn.js-5.1.0.tgz"; + sha512 = "QSSVYj7pYFN49kW77o2s9xTCwZ8F2xLbjLLSEVh8D2F4JUhZtPAGOFLTD+ffqksBx/u4cE/KImFjyhqCjn/LIA=="; + }; + }; "@types/body-parser-1.19.0" = { name = "_at_types_slash_body-parser"; packageName = "@types/body-parser"; @@ -6754,6 +6763,15 @@ let sha512 = "qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ=="; }; }; + "@types/json5-0.0.29" = { + name = "_at_types_slash_json5"; + packageName = "@types/json5"; + version = "0.0.29"; + src = fetchurl { + url = "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz"; + sha1 = "ee28707ae94e11d2b827bcbe5270bcea7f3e71ee"; + }; + }; "@types/keygrip-1.0.2" = { name = "_at_types_slash_keygrip"; packageName = "@types/keygrip"; @@ -6979,13 +6997,13 @@ let sha512 = "oTQgnd0hblfLsJ6BvJzzSL+Inogp3lq9fGgqRkMB/ziKMgEUaFl801OncOzUmalfzt14N0oPHMK47ipl+wbTIw=="; }; }; - "@types/node-14.17.19" = { + "@types/node-14.17.20" = { name = "_at_types_slash_node"; packageName = "@types/node"; - version = "14.17.19"; + version = "14.17.20"; src = fetchurl { - url = "https://registry.npmjs.org/@types/node/-/node-14.17.19.tgz"; - sha512 = "jjYI6NkyfXykucU6ELEoT64QyKOdvaA6enOqKtP4xUsGY0X0ZUZz29fUmrTRo+7v7c6TgDu82q3GHHaCEkqZwA=="; + url = "https://registry.npmjs.org/@types/node/-/node-14.17.20.tgz"; + sha512 = "gI5Sl30tmhXsqkNvopFydP7ASc4c2cLfGNQrVKN3X90ADFWFsPEsotm/8JHSUJQKTHbwowAHtcJPeyVhtKv0TQ=="; }; }; "@types/node-15.14.9" = { @@ -7006,13 +7024,13 @@ let sha512 = "7EIraBEyRHEe7CH+Fm1XvgqU6uwZN8Q7jppJGcqjROMT29qhAuuOxYB1uEY5UMYQKEmA5D+5tBnhdaPXSsLONA=="; }; }; - "@types/node-16.10.1" = { + "@types/node-16.10.2" = { name = "_at_types_slash_node"; packageName = "@types/node"; - version = "16.10.1"; + version = "16.10.2"; src = fetchurl { - url = "https://registry.npmjs.org/@types/node/-/node-16.10.1.tgz"; - sha512 = "4/Z9DMPKFexZj/Gn3LylFgamNKHm4K3QDi0gz9B26Uk0c8izYf97B5fxfpspMNkWlFupblKM/nV8+NA9Ffvr+w=="; + url = "https://registry.npmjs.org/@types/node/-/node-16.10.2.tgz"; + sha512 = "zCclL4/rx+W5SQTzFs9wyvvyCwoK9QtBpratqz2IYJ3O8Umrn0m3nsTv0wQBk9sRGpvUe9CwPDrQFB10f1FIjQ=="; }; }; "@types/node-16.6.1" = { @@ -7114,6 +7132,15 @@ let sha512 = "kUNnecmtkunAoQ3CnjmMkzNU/gtxG8guhi+Fk2U/kOpIKjIMKnXGp4IJCgQJrXSgMsWYimYG4TGjz/UzbGEBTw=="; }; }; + "@types/pbkdf2-3.1.0" = { + name = "_at_types_slash_pbkdf2"; + packageName = "@types/pbkdf2"; + version = "3.1.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@types/pbkdf2/-/pbkdf2-3.1.0.tgz"; + sha512 = "Cf63Rv7jCQ0LaL8tNXmEyqTHuIJxRdlS5vMh1mj5voN4+QFhVZnlZruezqpWYDiJ8UTzhP0VmeLXCmBk66YrMQ=="; + }; + }; "@types/pg-7.14.5" = { name = "_at_types_slash_pg"; packageName = "@types/pg"; @@ -7312,6 +7339,15 @@ let sha512 = "hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew=="; }; }; + "@types/secp256k1-4.0.3" = { + name = "_at_types_slash_secp256k1"; + packageName = "@types/secp256k1"; + version = "4.0.3"; + src = fetchurl { + url = "https://registry.npmjs.org/@types/secp256k1/-/secp256k1-4.0.3.tgz"; + sha512 = "Da66lEIFeIz9ltsdMZcpQvmrmmoqrfju8pm1BH8WbYjZSwUgCwXLb9C+9XYogwBITnbsSaMdVPb2ekf7TV+03w=="; + }; + }; "@types/semver-7.3.8" = { name = "_at_types_slash_semver"; packageName = "@types/semver"; @@ -9193,13 +9229,13 @@ let sha512 = "aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA=="; }; }; - "adm-zip-0.5.6" = { + "adm-zip-0.5.7" = { name = "adm-zip"; packageName = "adm-zip"; - version = "0.5.6"; + version = "0.5.7"; src = fetchurl { - url = "https://registry.npmjs.org/adm-zip/-/adm-zip-0.5.6.tgz"; - sha512 = "nUeYhBHLG08VFOkVwai0pLXge6NNlahH+ccwxXodvl+SLa5l9mXHjg40jRVzofRPz29goiTGze7vIKmCltKtSA=="; + url = "https://registry.npmjs.org/adm-zip/-/adm-zip-0.5.7.tgz"; + sha512 = "QLEo3eoC2B0i3+g/G5nNzKbGoVOjW2ingZ4TXl7/YeDM+FAl3SiHSNnokTZLFEuVHBn5CbZ42KJcIIsRji1EgQ=="; }; }; "adverb-where-0.2.5" = { @@ -9364,15 +9400,6 @@ let sha512 = "WSNGFuyWd//XO8n/m/EaOlNLtO0yL8EXT/74LqT4khdhpZjP7lkj/kT5uwRmGitKEVp/Oj7ZUHeGfPtgHhQ5CA=="; }; }; - "ajv-8.6.0" = { - name = "ajv"; - packageName = "ajv"; - version = "8.6.0"; - src = fetchurl { - url = "https://registry.npmjs.org/ajv/-/ajv-8.6.0.tgz"; - sha512 = "cnUG4NSBiM4YFBxgZIj/In3/6KX+rQ2l2YPRVcvAMQGWEPKuXoPIhxzwqh31jA3IPbI4qEOp/5ILI4ynioXsGQ=="; - }; - }; "ajv-8.6.2" = { name = "ajv"; packageName = "ajv"; @@ -10840,13 +10867,13 @@ let sha1 = "a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428"; }; }; - "array.prototype.find-2.1.1" = { + "array.prototype.find-2.1.2" = { name = "array.prototype.find"; packageName = "array.prototype.find"; - version = "2.1.1"; + version = "2.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/array.prototype.find/-/array.prototype.find-2.1.1.tgz"; - sha512 = "mi+MYNJYLTx2eNYy+Yh6raoQacCsNeeMUaspFPh9Y141lFSsWxxB8V9mM2ye+eqiRs917J6/pJ4M9ZPzenWckA=="; + url = "https://registry.npmjs.org/array.prototype.find/-/array.prototype.find-2.1.2.tgz"; + sha512 = "00S1O4ewO95OmmJW7EesWfQlrCrLEL8kZ40w3+GkLX2yTt0m2ggcePPa2uHPJ9KUmJvwRq+lCV9bD8Yim23x/Q=="; }; }; "arraybuffer.slice-0.0.6" = { @@ -11569,13 +11596,13 @@ let sha512 = "tbMZ/Y2rRo6R6TTBODJXTiil+MXaoT6Qzotws3yvI1IWGpYxKo7N/3L06XB8ul8tCG0TigxIOY70SMICM70Ppg=="; }; }; - "aws-sdk-2.996.0" = { + "aws-sdk-2.999.0" = { name = "aws-sdk"; packageName = "aws-sdk"; - version = "2.996.0"; + version = "2.999.0"; src = fetchurl { - url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.996.0.tgz"; - sha512 = "LZcus/r/36lwmGhRcwwllzQUucZ6sozDt3r78lXqdaQzZNbv44K44nXsqCPH2UpTcznrVUSJOW+o5s8yEbKFzg=="; + url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.999.0.tgz"; + sha512 = "OcnD7m+HCZv2qDzmS7TgABGf26mVPfIyah0Dgz7hHAxBtx78qFWi/s9U6BDxVBKWLg7OKWVHf0opiMG4ujteqg=="; }; }; "aws-sign2-0.6.0" = { @@ -14026,13 +14053,13 @@ let sha512 = "HI4lPveGKUR0x2StIz+2FXfDk9SfVMrxn6PLh1JeGUwcuoDkdKZebWiyLRJ68iIPDpMI4JLVDf7S7XzslgWOhw=="; }; }; - "browserslist-4.17.1" = { + "browserslist-4.17.2" = { name = "browserslist"; packageName = "browserslist"; - version = "4.17.1"; + version = "4.17.2"; src = fetchurl { - url = "https://registry.npmjs.org/browserslist/-/browserslist-4.17.1.tgz"; - sha512 = "aLD0ZMDSnF4lUt4ZDNgqi5BUn9BZ7YdQdI/cYlILrhdSSZJLU9aNZoD5/NBmM4SK34APB2e83MOsRt1EnkuyaQ=="; + url = "https://registry.npmjs.org/browserslist/-/browserslist-4.17.2.tgz"; + sha512 = "jSDZyqJmkKMEMi7SZAgX5UltFdR5NAO43vY0AwTpu4X3sGH7GLLQ83KiUomgrnvZRCeW0yPPnKqnxPqQOER9zQ=="; }; }; "brq-0.1.8" = { @@ -14405,15 +14432,6 @@ let sha1 = "3d253fe2f0ab70e851d728712e8cd6f914a8c002"; }; }; - "buffer-to-arraybuffer-0.0.5" = { - name = "buffer-to-arraybuffer"; - packageName = "buffer-to-arraybuffer"; - version = "0.0.5"; - src = fetchurl { - url = "https://registry.npmjs.org/buffer-to-arraybuffer/-/buffer-to-arraybuffer-0.0.5.tgz"; - sha1 = "6064a40fa76eb43c723aba9ef8f6e1216d10511a"; - }; - }; "buffer-writer-2.0.0" = { name = "buffer-writer"; packageName = "buffer-writer"; @@ -15071,13 +15089,13 @@ let sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw=="; }; }; - "caniuse-lite-1.0.30001261" = { + "caniuse-lite-1.0.30001263" = { name = "caniuse-lite"; packageName = "caniuse-lite"; - version = "1.0.30001261"; + version = "1.0.30001263"; src = fetchurl { - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001261.tgz"; - sha512 = "vM8D9Uvp7bHIN0fZ2KQ4wnmYFpJo/Etb4Vwsuc+ka0tfGDHvOPrFm6S/7CCNLSOkAUjenT2HnUPESdOIL91FaA=="; + url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001263.tgz"; + sha512 = "doiV5dft6yzWO1WwU19kt8Qz8R0/8DgEziz6/9n2FxUasteZNwNNYSmJO3GLBH8lCVE73AB1RPDPAeYbcO5Cvw=="; }; }; "canvas-2.8.0" = { @@ -15233,13 +15251,13 @@ let sha512 = "vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg=="; }; }; - "cdk8s-1.0.0-beta.53" = { + "cdk8s-1.0.0-beta.54" = { name = "cdk8s"; packageName = "cdk8s"; - version = "1.0.0-beta.53"; + version = "1.0.0-beta.54"; src = fetchurl { - url = "https://registry.npmjs.org/cdk8s/-/cdk8s-1.0.0-beta.53.tgz"; - sha512 = "+8x6XF3tlPYr0LGGLwvunGHy3JOJ7ogc9TlU8NaHdsg+ochGKaj76/mHlZNQqX+c2F50X7IX12i22K6K6YcirA=="; + url = "https://registry.npmjs.org/cdk8s/-/cdk8s-1.0.0-beta.54.tgz"; + sha512 = "m7rrz0zJPut/BUeVWnK19kBs3lcZZ+laVfBU731W9X86G8j1qqFliVxuVk95/xr0culGje0NH2CgXfUGrI90bA=="; }; }; "cdk8s-plus-22-1.0.0-beta.5" = { @@ -16034,13 +16052,13 @@ let sha512 = "VcMWDN54ZN/DS+g58HYL5/n4Zrqe8vHJpGA8KdgUXFU4fuP/aHNw8eld9SyEIyabIMJX/0RaY/fplOo5hYLSFA=="; }; }; - "clean-css-5.2.0" = { + "clean-css-5.2.1" = { name = "clean-css"; packageName = "clean-css"; - version = "5.2.0"; + version = "5.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/clean-css/-/clean-css-5.2.0.tgz"; - sha512 = "2639sWGa43EMmG7fn8mdVuBSs6HuWaSor+ZPoFWzenBc6oN+td8YhTfghWXZ25G1NiiSvz8bOFBS7PdSbTiqEA=="; + url = "https://registry.npmjs.org/clean-css/-/clean-css-5.2.1.tgz"; + sha512 = "ooQCa1/70oRfVdUUGjKpbHuxgMgm8BsDT5EBqBGvPxMoRoGXf4PNx5mMnkjzJ9Ptx4vvmDdha0QVh86QtYIk1g=="; }; }; "clean-deep-3.4.0" = { @@ -16214,13 +16232,13 @@ let sha512 = "1QL4544moEsDVH9T/l6Cemov/37iv1RtoKf7NJ04A60+4MREXNfx/QvavbH6QoGdsD4N4Mwy49cmaINR/o2mdg=="; }; }; - "cli-spinners-2.6.0" = { + "cli-spinners-2.6.1" = { name = "cli-spinners"; packageName = "cli-spinners"; - version = "2.6.0"; + version = "2.6.1"; src = fetchurl { - url = "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.6.0.tgz"; - sha512 = "t+4/y50K/+4xcCRosKkA7W4gTr1MySvLV0q+PxmG7FJ5g+66ChKurYjxBCjHggHH3HA5Hh9cy+lcUGWDqVH+4Q=="; + url = "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.6.1.tgz"; + sha512 = "x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g=="; }; }; "cli-sprintf-format-1.1.0" = { @@ -16943,6 +16961,15 @@ let sha512 = "lHID0PU+NtFzeNCwTL6JzUKdb6kDpyEjrwTD1H0cDZswTbsjLh2wTV2Eo2sNZLc0oSg0a5W1AI4Nj7bX4iIdjA=="; }; }; + "colorette-2.0.14" = { + name = "colorette"; + packageName = "colorette"; + version = "2.0.14"; + src = fetchurl { + url = "https://registry.npmjs.org/colorette/-/colorette-2.0.14.tgz"; + sha512 = "TLcu0rCLNjDIdKGLGqMtPEAOAZmavC1QCX4mEs3P0mrA/DDoU/tA+Y4UQK/862FkX2TTlbyVIkREZNbf7Y9YwA=="; + }; + }; "colorette-2.0.7" = { name = "colorette"; packageName = "colorette"; @@ -17934,13 +17961,13 @@ let sha512 = "JBpSdnG2F5rxjm/gmt1f9yy+HHoqKf+20kPMsSuuzsZ3czddoBjprIRzk8RFn2hInIBrcd3UCT/pFhnNg9TPTw=="; }; }; - "contentful-sdk-core-6.9.0" = { + "contentful-sdk-core-6.9.1" = { name = "contentful-sdk-core"; packageName = "contentful-sdk-core"; - version = "6.9.0"; + version = "6.9.1"; src = fetchurl { - url = "https://registry.npmjs.org/contentful-sdk-core/-/contentful-sdk-core-6.9.0.tgz"; - sha512 = "fLwE0avEf81iDdJGVFUB5nC8AzI1OPg+YY33V8aFBgHkKMXpHI6zNInWnQGUekXCl2OAGKk5QkVfEAjvpkFGig=="; + url = "https://registry.npmjs.org/contentful-sdk-core/-/contentful-sdk-core-6.9.1.tgz"; + sha512 = "5AV21J1evUa1Wi+ehSWUJVpZ/NUy4mQPEk73ORxbv/FYcPNtOXBo0CPmXZZHQ80SADhYXgiiLLUGH2+UIGwYMQ=="; }; }; "continuable-1.1.8" = { @@ -18294,13 +18321,13 @@ let sha1 = "0abf356ad00d1c5a219d88d44518046dd026acfe"; }; }; - "cookiejar-2.1.2" = { + "cookiejar-2.1.3" = { name = "cookiejar"; packageName = "cookiejar"; - version = "2.1.2"; + version = "2.1.3"; src = fetchurl { - url = "https://registry.npmjs.org/cookiejar/-/cookiejar-2.1.2.tgz"; - sha512 = "Mw+adcfzPxcPeI+0WlvRrr/3lGVO0bD75SxX6811cxSh1Wbxx7xZBGK1eVtDf6si8rg2lhnUjsVLMFMfbRIuwA=="; + url = "https://registry.npmjs.org/cookiejar/-/cookiejar-2.1.3.tgz"; + sha512 = "JxbCBUdrfr6AQjOXrxoTvAMJO4HBTUIlBzslcJPAz+/KT8yk53fXun51u+RenNYvad/+Vc2DIz5o9UxlCDymFQ=="; }; }; "cookies-0.8.0" = { @@ -19545,13 +19572,13 @@ let sha512 = "4PL5hHaHwX4m7Zr1UapXW23apo6pexCgdetdJ5kTmADpG/7T9Gkxw0M0tf/pjoB63ezCCm0u5UaFYy2aMt0Mcw=="; }; }; - "d3-7.0.4" = { + "d3-7.1.1" = { name = "d3"; packageName = "d3"; - version = "7.0.4"; + version = "7.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/d3/-/d3-7.0.4.tgz"; - sha512 = "ruRiyPYZEGeJBOOjVS5pHliNUZM2HAllEY7HKB2ff+9ENxOti4N+S+WZqo9ggUMr8tSPMm+riqKpJd1oYEDN5Q=="; + url = "https://registry.npmjs.org/d3/-/d3-7.1.1.tgz"; + sha512 = "8zkLMwSvUAnfN9pcJDfkuxU0Nvg4RLUD0A4BZN1KxJPtlnCGzMx3xM5cRl4m8fym/Vy8rlq52tl90UF3m91OnA=="; }; }; "d3-array-1.2.4" = { @@ -19572,13 +19599,13 @@ let sha512 = "B0ErZK/66mHtEsR1TkPEEkwdy+WDesimkM5gpZr5Dsg54BiTA5RXtYW5qTLIAcekaS9xfZrzBLF/OAkB3Qn1YQ=="; }; }; - "d3-array-3.0.4" = { + "d3-array-3.1.1" = { name = "d3-array"; packageName = "d3-array"; - version = "3.0.4"; + version = "3.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/d3-array/-/d3-array-3.0.4.tgz"; - sha512 = "ShFl90cxNqDaSynDF/Bik/kTzISqePqU3qo2fv6kSJEvF7y7tDCDpcU6WiT01rPO6zngZnrvJ/0j4q6Qg+5EQg=="; + url = "https://registry.npmjs.org/d3-array/-/d3-array-3.1.1.tgz"; + sha512 = "33qQ+ZoZlli19IFiQx4QEpf2CBEayMRzhlisJHSCsSUbDXv6ZishqS1x7uFVClKG4Wr7rZVHvaAttoLow6GqdQ=="; }; }; "d3-axis-1.0.12" = { @@ -20895,6 +20922,15 @@ let sha512 = "U75DcT5hrio3KNtvdULAWnLiAPbFUC4191ldxMmj4FA/mRuBnmDwU0boNfPyFRhnan+Jm+haLeSn3P0afcBn4w=="; }; }; + "decamelize-5.0.1" = { + name = "decamelize"; + packageName = "decamelize"; + version = "5.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/decamelize/-/decamelize-5.0.1.tgz"; + sha512 = "VfxadyCECXgQlkoEAjeghAr5gY3Hf+IKjKb+X8tGVDtveCjN+USwprd2q3QXBR9T1+x2DG0XZF5/w+7HAtSaXA=="; + }; + }; "decamelize-keys-1.1.0" = { name = "decamelize-keys"; packageName = "decamelize-keys"; @@ -21975,13 +22011,13 @@ let sha512 = "Hq8o7+6GaZeoFjtpgvRBUknSXNeJiCx7V9Fr94ZMljNiCr9n9L8H8aJqgWOQiDDGdyn29fRNcDdRVJ5fdyihfg=="; }; }; - "diff2html-3.4.11" = { + "diff2html-3.4.12" = { name = "diff2html"; packageName = "diff2html"; - version = "3.4.11"; + version = "3.4.12"; src = fetchurl { - url = "https://registry.npmjs.org/diff2html/-/diff2html-3.4.11.tgz"; - sha512 = "FBW74QVkbVqbqM36NbSsmStU3mAovluM3Zg6QuuPtn26nzdfoVgnG2axKnbEbiHffM+CCQwrcpCBcDZhkN9VSw=="; + url = "https://registry.npmjs.org/diff2html/-/diff2html-3.4.12.tgz"; + sha512 = "wBkttlsIQHwJxrikGQeU98SSv9QQZysyKo3uEDtXLA0Axfj4bPSFkx6g4WT3jSGRLY67jLp1wmFXwtEaHsxD4A=="; }; }; "diff3-0.0.3" = { @@ -23037,13 +23073,13 @@ let sha512 = "9lt9Zse4hPucPkoP7FHDF0LQAlGyF9JVpnClFLFH3aSSbxmyoqINRpp/9wePWJTUl4KOQwRL72Iw3InHPDkoGw=="; }; }; - "electron-13.5.0" = { + "electron-13.5.1" = { name = "electron"; packageName = "electron"; - version = "13.5.0"; + version = "13.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/electron/-/electron-13.5.0.tgz"; - sha512 = "s4+b1RFWkNKWp7WWrv2q60MuFljHUCbO7XAupBSCUz/NP1Hz4OenWbMPUt0H+fa8YZeN8CX3JDIA8Bet5uAJvw=="; + url = "https://registry.npmjs.org/electron/-/electron-13.5.1.tgz"; + sha512 = "ZyxhIhmdaeE3xiIGObf0zqEyCyuIDqZQBv9NKX8w5FNzGm87j4qR0H1+GQg6vz+cA1Nnv1x175Zvimzc0/UwEQ=="; }; }; "electron-notarize-1.1.1" = { @@ -23082,13 +23118,13 @@ let sha512 = "9oxNmKlDCaf651c+yJWCDIBpF6A9aY+wQtasLEeR5AsPYPuOKEX6xHnC2+WgCLOC94JEpCZznecyC84fbwZq4A=="; }; }; - "electron-to-chromium-1.3.853" = { + "electron-to-chromium-1.3.857" = { name = "electron-to-chromium"; packageName = "electron-to-chromium"; - version = "1.3.853"; + version = "1.3.857"; src = fetchurl { - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.853.tgz"; - sha512 = "W4U8n+U8I5/SUaFcqZgbKRmYZwcyEIQVBDf+j5QQK6xChjXnQD+wj248eGR9X4u+dDmDR//8vIfbu4PrdBBIoQ=="; + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.857.tgz"; + sha512 = "a5kIr2lajm4bJ5E4D3fp8Y/BRB0Dx2VOcCRE5Gtb679mXIME/OFhWler8Gy2ksrf8gFX+EFCSIGA33FB3gqYpg=="; }; }; "electrum-client-git://github.com/janoside/electrum-client" = { @@ -23786,13 +23822,13 @@ let sha512 = "rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A=="; }; }; - "es-abstract-1.18.7" = { + "es-abstract-1.19.1" = { name = "es-abstract"; packageName = "es-abstract"; - version = "1.18.7"; + version = "1.19.1"; src = fetchurl { - url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.7.tgz"; - sha512 = "uFG1gyVX91tZIiDWNmPsL8XNpiCk/6tkB7MZphoSJflS4w+KgWyQ2gjCVDnsPxFAo9WjRXG3eqONNYdfbJjAtw=="; + url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.19.1.tgz"; + sha512 = "2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w=="; }; }; "es-get-iterator-1.1.2" = { @@ -23813,13 +23849,13 @@ let sha512 = "MgtWFl5No+4S3TmhDmCz2ObFGm6lEpTnzbQi+Dd+pw4mlTIZTmM2iAs5gRlmx5zS9luzobCSBSI90JM/1/JgOw=="; }; }; - "es-module-lexer-0.9.1" = { + "es-module-lexer-0.9.2" = { name = "es-module-lexer"; packageName = "es-module-lexer"; - version = "0.9.1"; + version = "0.9.2"; src = fetchurl { - url = "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.1.tgz"; - sha512 = "17Ed9misDnpyNBJh63g1OhW3qUFecDgGOivI85JeZY/LGhDum8e+cltukbkSK8pcJnXXEkya56sp4vSS1nzoUw=="; + url = "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.2.tgz"; + sha512 = "YkAGWqxZq2B4FxQ5y687UwywDwvLQhIMCZ+SDU7ZW729SDHOEI6wVFXwTRecz+yiwJzCsVwC6V7bxyNbZSB1rg=="; }; }; "es-to-primitive-1.2.1" = { @@ -24533,15 +24569,6 @@ let sha1 = "41ae2eeb65efa62268aebfea83ac7d79299b0887"; }; }; - "eth-lib-0.2.8" = { - name = "eth-lib"; - packageName = "eth-lib"; - version = "0.2.8"; - src = fetchurl { - url = "https://registry.npmjs.org/eth-lib/-/eth-lib-0.2.8.tgz"; - sha512 = "ArJ7x1WcWOlSpzdoTBX8vkwlkSQ85CjjifSZtV4co64vWxSV8geWfPI9x4SVYu3DSxnX4yWFVTtGL+j9DUFLNw=="; - }; - }; "ethereum-bloom-filters-1.0.10" = { name = "ethereum-bloom-filters"; packageName = "ethereum-bloom-filters"; @@ -24551,6 +24578,24 @@ let sha512 = "rxJ5OFN3RwjQxDcFP2Z5+Q9ho4eIdEmSc2ht0fCu8Se9nbXjZ7/031uXoUYJ87KHCOdVeiUuwSnoS7hmYAGVHA=="; }; }; + "ethereum-cryptography-0.1.3" = { + name = "ethereum-cryptography"; + packageName = "ethereum-cryptography"; + version = "0.1.3"; + src = fetchurl { + url = "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-0.1.3.tgz"; + sha512 = "w8/4x1SGGzc+tO97TASLja6SLd3fRIK2tLVcV2Gx4IB21hE19atll5Cq9o3d0ZmAYC/8aw0ipieTSiekAea4SQ=="; + }; + }; + "ethereumjs-util-7.1.2" = { + name = "ethereumjs-util"; + packageName = "ethereumjs-util"; + version = "7.1.2"; + src = fetchurl { + url = "https://registry.npmjs.org/ethereumjs-util/-/ethereumjs-util-7.1.2.tgz"; + sha512 = "xCV3PTAhW8Q2k88XZn9VcO4OrjpeXAlDm5LQTaOLp81SjNSSY6+MwuGXrx6vafOMheWSmZGxIXUbue5e9UvUBw=="; + }; + }; "ethjs-unit-0.1.6" = { name = "ethjs-unit"; packageName = "ethjs-unit"; @@ -24560,6 +24605,15 @@ let sha1 = "c665921e476e87bce2a9d588a6fe0405b2c41699"; }; }; + "ethjs-util-0.1.6" = { + name = "ethjs-util"; + packageName = "ethjs-util"; + version = "0.1.6"; + src = fetchurl { + url = "https://registry.npmjs.org/ethjs-util/-/ethjs-util-0.1.6.tgz"; + sha512 = "CUnVOQq7gSpDHZVVrQW8ExxUETWrnrvXYvYz55wOU8Uj4VCgw56XC2B/fVqQN+f7gmrnRHSLVnFAwsCuNwji8w=="; + }; + }; "eve-0.5.4" = { name = "eve"; packageName = "eve"; @@ -26702,13 +26756,13 @@ let sha512 = "jlbUu0XkbpXeXhan5xyTqVK1jmEKNxE8hpzznI3TThHTr76GiFwK0iRzhDo4KNy+S9h/KxHaqVhTP86vA6wHCg=="; }; }; - "flow-parser-0.160.2" = { + "flow-parser-0.161.0" = { name = "flow-parser"; packageName = "flow-parser"; - version = "0.160.2"; + version = "0.161.0"; src = fetchurl { - url = "https://registry.npmjs.org/flow-parser/-/flow-parser-0.160.2.tgz"; - sha512 = "4QGORQvAkuYZH02gY9YRvOoV/BqXUEtMjTem/jxtxfLDp8BNW/LfyJxgksYnQoPIAT01CydkcKG03MTIDbqaFg=="; + url = "https://registry.npmjs.org/flow-parser/-/flow-parser-0.161.0.tgz"; + sha512 = "QRGREwIVspAeffxidkelrU6yPnEF/US4iYoGuf73+y4ZEXgCJUFje4jYfgE4g59TbSLHntdWfM69wiN9Y9swKw=="; }; }; "fluent-ffmpeg-2.1.2" = { @@ -26999,13 +27053,13 @@ let sha512 = "DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw=="; }; }; - "fork-ts-checker-webpack-plugin-6.3.1" = { + "fork-ts-checker-webpack-plugin-6.3.3" = { name = "fork-ts-checker-webpack-plugin"; packageName = "fork-ts-checker-webpack-plugin"; - version = "6.3.1"; + version = "6.3.3"; src = fetchurl { - url = "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.3.1.tgz"; - sha512 = "uxqlKTEeSJ5/JRr0zaCiw2U+kOV8F4/MhCnnRf6vbxj4ZU3Or0DLl/0CNtXro7uLWDssnuR7wUN7fU9w1I0REA=="; + url = "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.3.3.tgz"; + sha512 = "S3uMSg8IsIvs0H6VAfojtbf6RcnEXxEpDMT2Q41M2l0m20JO8eA1t4cCJybvrasC8SvvPEtK4B8ztxxfLljhNg=="; }; }; "form-data-1.0.0-rc3" = { @@ -28493,13 +28547,13 @@ let sha512 = "AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow=="; }; }; - "glob-parent-6.0.1" = { + "glob-parent-6.0.2" = { name = "glob-parent"; packageName = "glob-parent"; - version = "6.0.1"; + version = "6.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.1.tgz"; - sha512 = "kEVjS71mQazDBHKcsq4E9u/vUzaLcw1A8EtUeydawvIWQCJM0qQ08G1H7/XTjFUulla6XQiDOG6MXSaG0HDKog=="; + url = "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz"; + sha512 = "XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A=="; }; }; "glob-slash-1.0.0" = { @@ -28917,13 +28971,13 @@ let sha512 = "Vric7QFWxzHFxITZ10bmlG1H/5rhODb7hJuWyKWMD8GflpQzRmbMVqkFp3fKvN+U9tPwZItGVhkiOR+84PX3ew=="; }; }; - "google-gax-2.26.0" = { + "google-gax-2.27.0" = { name = "google-gax"; packageName = "google-gax"; - version = "2.26.0"; + version = "2.27.0"; src = fetchurl { - url = "https://registry.npmjs.org/google-gax/-/google-gax-2.26.0.tgz"; - sha512 = "D/8fjTydl9p3ejxuW3ZVHVZqKzz6zYaz5MMEucijsJonJ4RHqWAzHFKZMKSc7yyUiTEBGqG7nU2S8NUPUUYDEA=="; + url = "https://registry.npmjs.org/google-gax/-/google-gax-2.27.0.tgz"; + sha512 = "xcLCeNKCqNm/w0At7/vdZHV/zol/iRS+PSAZTu7i6xNGBra/kWI3cfn4M6ZLQXeUEGbTVLJ4zGm53TVc4lvbDA=="; }; }; "google-p12-pem-3.1.2" = { @@ -31942,15 +31996,6 @@ let sha512 = "ON8pEJPPCdyjxj+cxsYRe6XfCJepTxANdNnTebsTuQgXpRyZRRT9t4dJwjRubgmvn20CLSEnozRUayXyM9VTXA=="; }; }; - "inquirer-8.1.1" = { - name = "inquirer"; - packageName = "inquirer"; - version = "8.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/inquirer/-/inquirer-8.1.1.tgz"; - sha512 = "hUDjc3vBkh/uk1gPfMAD/7Z188Q8cvTGl0nxwaCdwSbzFh6ZKkZh+s2ozVxbE5G9ZNRyeY0+lgbAIOUFsFf98w=="; - }; - }; "inquirer-8.1.2" = { name = "inquirer"; packageName = "inquirer"; @@ -32986,13 +33031,13 @@ let sha512 = "5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg=="; }; }; - "is-glob-4.0.2" = { + "is-glob-4.0.3" = { name = "is-glob"; packageName = "is-glob"; - version = "4.0.2"; + version = "4.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/is-glob/-/is-glob-4.0.2.tgz"; - sha512 = "ZZTOjRcDjuAAAv2cTBQP/lL59ZTArx77+7UzHdWW/XB1mrfp7DEaVpKmZ0XIzx+M7AxfhKcqV+nMetUQmFifwg=="; + url = "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz"; + sha512 = "xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg=="; }; }; "is-gzip-1.0.0" = { @@ -33625,6 +33670,15 @@ let sha512 = "+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g=="; }; }; + "is-shared-array-buffer-1.0.1" = { + name = "is-shared-array-buffer"; + packageName = "is-shared-array-buffer"; + version = "1.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.1.tgz"; + sha512 = "IU0NmyknYZN0rChcKhRO1X8LYz5Isj/Fsqh8NJOSf+N/hCOTwy29F32Ik7a+QszE63IdvmwdTPDd6cZ5pg4cwA=="; + }; + }; "is-ssh-1.3.3" = { name = "is-ssh"; packageName = "is-ssh"; @@ -33814,6 +33868,15 @@ let sha512 = "NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA=="; }; }; + "is-weakref-1.0.1" = { + name = "is-weakref"; + packageName = "is-weakref"; + version = "1.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.1.tgz"; + sha512 = "b2jKc2pQZjaeFYWEf7ScFj+Be1I+PXmlu572Q8coTXZ+LD/QQZ7ShPMst8h16riVgyXTQwUsFEl74mDvc/3MHQ=="; + }; + }; "is-weakset-2.0.1" = { name = "is-weakset"; packageName = "is-weakset"; @@ -34336,13 +34399,13 @@ let sha512 = "KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ=="; }; }; - "jest-worker-27.2.3" = { + "jest-worker-27.2.4" = { name = "jest-worker"; packageName = "jest-worker"; - version = "27.2.3"; + version = "27.2.4"; src = fetchurl { - url = "https://registry.npmjs.org/jest-worker/-/jest-worker-27.2.3.tgz"; - sha512 = "ZwOvv4GCIPviL+Ie4pVguz4N5w/6IGbTaHBYOl3ZcsZZktaL7d8JOU0rmovoED7AJZKA8fvmLbBg8yg80u/tGA=="; + url = "https://registry.npmjs.org/jest-worker/-/jest-worker-27.2.4.tgz"; + sha512 = "Zq9A2Pw59KkVjBBKD1i3iE2e22oSjXhUKKuAK1HGX8flGwkm6NMozyEYzKd41hXc64dbd/0eWFeEEuxqXyhM+g=="; }; }; "jimp-compact-0.16.1" = { @@ -35705,6 +35768,15 @@ let sha512 = "hRkd6/XW4HTsA9vjVpY9tuXJYLSlelnkTmVFu4M9/7MIYQtFcHpbugAU7UbOfjOiVSVYl2fqgBuJ32JUmRo5Ew=="; }; }; + "keccak-3.0.2" = { + name = "keccak"; + packageName = "keccak"; + version = "3.0.2"; + src = fetchurl { + url = "https://registry.npmjs.org/keccak/-/keccak-3.0.2.tgz"; + sha512 = "PyKKjkH53wDMLGrvmRGSNWgmSxZOUqbnXwKL9tmgbFYA1iAYqW21kfR7mZXV0MlESiefxQQE9X9fTa3X+2MPDQ=="; + }; + }; "keep-alive-agent-0.0.1" = { name = "keep-alive-agent"; packageName = "keep-alive-agent"; @@ -36686,6 +36758,15 @@ let sha512 = "gDBO4aHNZS6coiZCKVhSNh43F9ioIL4JwRjLZPkoLIY4yZFwg264Y5lu2x6rb1Js42Gh6Yqm2f6L2AJcnkzinQ=="; }; }; + "linkify-it-3.0.3" = { + name = "linkify-it"; + packageName = "linkify-it"; + version = "3.0.3"; + src = fetchurl { + url = "https://registry.npmjs.org/linkify-it/-/linkify-it-3.0.3.tgz"; + sha512 = "ynTsyrFSdE5oZ/O9GEf00kPngmOfVwazR5GKDq6EYfhlpFug3J2zybX56a2PRRpc9P+FuSoGNAwjlbDs9jJBPQ=="; + }; + }; "listenercount-1.0.1" = { name = "listenercount"; packageName = "listenercount"; @@ -40223,13 +40304,13 @@ let sha512 = "TIurLf/ustQNMXi5foClGTcEsRvH6DCvxeAKu68OrwHMOSM/M1pgPXb7qe52Svk1ClvmZuAVpLtP5FWKzPr/sw=="; }; }; - "mermaid-8.13.0" = { + "mermaid-8.13.2" = { name = "mermaid"; packageName = "mermaid"; - version = "8.13.0"; + version = "8.13.2"; src = fetchurl { - url = "https://registry.npmjs.org/mermaid/-/mermaid-8.13.0.tgz"; - sha512 = "/b8tCqyGhb+yiCQQ5cwpGcaesAfZV057kRBaUx+g6LHctebWaMvo5WmIPN+/jMHfLtAgCJIaQDZ1EsECz7FJIQ=="; + url = "https://registry.npmjs.org/mermaid/-/mermaid-8.13.2.tgz"; + sha512 = "qTFI7MfC2d+x0Hft5gx063EH9tZg36lERG8o7Zq0Ag+MnO8CgVaMZEU6oA8gzTtTn9upMdy4UlYSLVmavu27cQ=="; }; }; "meros-1.1.4" = { @@ -40664,15 +40745,6 @@ let sha512 = "/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg=="; }; }; - "mime-db-1.49.0" = { - name = "mime-db"; - packageName = "mime-db"; - version = "1.49.0"; - src = fetchurl { - url = "https://registry.npmjs.org/mime-db/-/mime-db-1.49.0.tgz"; - sha512 = "CIc8j9URtOVApSFCQIF+VBkX1RwXp/oMMOrqdyXSBXq5RWNEsRfyj1kiRnQgmNXmHxPoFIxOroKA3zcU9P+nAA=="; - }; - }; "mime-db-1.50.0" = { name = "mime-db"; packageName = "mime-db"; @@ -40700,13 +40772,13 @@ let sha512 = "JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w=="; }; }; - "mime-types-2.1.32" = { + "mime-types-2.1.33" = { name = "mime-types"; packageName = "mime-types"; - version = "2.1.32"; + version = "2.1.33"; src = fetchurl { - url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.32.tgz"; - sha512 = "hJGaVS4G4c9TSMYh2n6SQAGrC4RnfU+daP8G7cSCmaqNjiOoUY0VHCMS42pxnQmVF1GWwFhbHWn3RIxCqTmZ9A=="; + url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.33.tgz"; + sha512 = "plLElXp7pRDd0bNZHw+nMd52vRYjLwQjygaNg7ddJ2uJtTlmnTCjWuPKxVu6//AdaRuME84SvLW91sIkBqGT0g=="; }; }; "mimic-fn-1.2.0" = { @@ -41600,13 +41672,13 @@ let sha512 = "+vZLrxhuAJFOl9EFUkFviYpz8nIOdoM3Hzq8Mzx0uJkaRWd61QxIp68wglTM8ZtABXYgE0YowD98XqthCRxSow=="; }; }; - "multiblob-http-1.0.0" = { + "multiblob-http-1.2.0" = { name = "multiblob-http"; packageName = "multiblob-http"; - version = "1.0.0"; + version = "1.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/multiblob-http/-/multiblob-http-1.0.0.tgz"; - sha512 = "wKsVFCi3lSR75peYpFMRDbWeGm86qgYfBe9Otm8j73rs+a1OltSLcg8fsTCO+pJTbYyIV92Iw5lnVYYTs7zMvg=="; + url = "https://registry.npmjs.org/multiblob-http/-/multiblob-http-1.2.0.tgz"; + sha512 = "bTW9D4NcgvWO/vFXakTUV5JN7p2fTG0o4Flg2zZFF44fDBUnq4FkZKbFNnkci+zkdfYAo9HqZPxvnMwS58mtjQ=="; }; }; "multicast-dns-4.0.1" = { @@ -43214,13 +43286,13 @@ let sha512 = "dBljNubVsolJkgfXUAF3KrCAO+hi5AXz+cftGjfHT76PyVB9pFUbAgTrkjZmKciC/B/14kEV5Ds+SwonqyTMfg=="; }; }; - "node-releases-1.1.76" = { + "node-releases-1.1.77" = { name = "node-releases"; packageName = "node-releases"; - version = "1.1.76"; + version = "1.1.77"; src = fetchurl { - url = "https://registry.npmjs.org/node-releases/-/node-releases-1.1.76.tgz"; - sha512 = "9/IECtNr8dXNmPWmFXepT0/7o5eolGesHUa3mtr0KlgnCvnZxwh2qensKL42JJY2vQKC3nIBXetFAqR+PW1CmA=="; + url = "https://registry.npmjs.org/node-releases/-/node-releases-1.1.77.tgz"; + sha512 = "rB1DUFUNAN4Gn9keO2K1efO35IDK7yKHCdCaIMvFO7yUYmmZYeDjnGKle26G4rwj+LKRQpjyUUvMkPglwGCYNQ=="; }; }; "node-source-walk-4.2.0" = { @@ -44448,13 +44520,13 @@ let sha512 = "0HGaSR/E/seIhSzFxLkh0QqckuNSre4iGqSElZRUv1hVHH2YgrZ7xtQL9McwL8o1fh6HqkzykjUx0Iy2haVIUg=="; }; }; - "office-ui-fabric-react-7.176.2" = { + "office-ui-fabric-react-7.177.1" = { name = "office-ui-fabric-react"; packageName = "office-ui-fabric-react"; - version = "7.176.2"; + version = "7.177.1"; src = fetchurl { - url = "https://registry.npmjs.org/office-ui-fabric-react/-/office-ui-fabric-react-7.176.2.tgz"; - sha512 = "ACOgx0ccx93NtRLWJBunJLwVdgIbsnzR/lbn6J+XYTINUrSR4DBZCuNoAzZVi8t1RYd6MnouLyyyEUWneNC9QQ=="; + url = "https://registry.npmjs.org/office-ui-fabric-react/-/office-ui-fabric-react-7.177.1.tgz"; + sha512 = "AEsXZTH7KDGYN8NCMac7KMJfmFtfzMP2IZ95iyawghgD5safzxNZzFMwLfzIGj5GxRnUMxZ8AwugxJCcBbYFEw=="; }; }; "omggif-1.0.10" = { @@ -50344,13 +50416,13 @@ let sha1 = "15931d3cd967ade52206f523aa7331aef7d43af7"; }; }; - "pyright-1.1.171" = { + "pyright-1.1.173" = { name = "pyright"; packageName = "pyright"; - version = "1.1.171"; + version = "1.1.173"; src = fetchurl { - url = "https://registry.npmjs.org/pyright/-/pyright-1.1.171.tgz"; - sha512 = "7otiFobpeaeO3pPy0XhFIUm7AWCy98AbOnY4K1QCQSOVwNZJ00YlA3Qt8hQ1wIcLN08TSQ+/S/Cqaa+G+8hZmg=="; + url = "https://registry.npmjs.org/pyright/-/pyright-1.1.173.tgz"; + sha512 = "ksprslKAgZSmvz0Ndbo6EfSzRzP2klB/o6NKPtSqNCRDyIyLWAVGP7hqdhepKBAVNRktLuatM7R9VEBGLC7duQ=="; }; }; "q-0.9.7" = { @@ -51154,13 +51226,13 @@ let sha512 = "dx0LvIGHcOPtKbeiSUM4jqpBl3TcY7CDjZdfOIcKeznE7BWr9dg0iPG90G5yfVQ+p/rGNMXdbfStvzQZEVEi4A=="; }; }; - "react-devtools-core-4.18.0" = { + "react-devtools-core-4.19.1" = { name = "react-devtools-core"; packageName = "react-devtools-core"; - version = "4.18.0"; + version = "4.19.1"; src = fetchurl { - url = "https://registry.npmjs.org/react-devtools-core/-/react-devtools-core-4.18.0.tgz"; - sha512 = "Kg/LhDkdt9J0ned1D1RfeuSdX4cKW83/valJLYswGdsYc0g2msmD0kfYozsaRacjDoZwcKlxGOES1wrkET5O6Q=="; + url = "https://registry.npmjs.org/react-devtools-core/-/react-devtools-core-4.19.1.tgz"; + sha512 = "2wJiGffPWK0KggBjVwnTaAk+Z3MSxKInHmdzPTrBh1mAarexsa93Kw+WMX88+XjN+TtYgAiLe9xeTqcO5FfJTw=="; }; }; "react-dom-16.14.0" = { @@ -53881,6 +53953,15 @@ let sha512 = "ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA=="; }; }; + "rlp-2.2.6" = { + name = "rlp"; + packageName = "rlp"; + version = "2.2.6"; + src = fetchurl { + url = "https://registry.npmjs.org/rlp/-/rlp-2.2.6.tgz"; + sha512 = "HAfAmL6SDYNWPUOJNrM500x4Thn4PZsEy5pijPh40U9WfNk0z15hUYzO9xVIMAdIHdFtD8CBDHd75Td1g36Mjg=="; + }; + }; "rndm-1.2.0" = { name = "rndm"; packageName = "rndm"; @@ -53926,13 +54007,13 @@ let sha512 = "/2HA0Ec70TvQnXdzynFffkjA6XN+1e2pEv/uKS5Ulca40g2L7KuOE3riasHoNVHOsFD5KKZgDsMk1CP3Tw9s+A=="; }; }; - "rollup-2.57.0" = { + "rollup-2.58.0" = { name = "rollup"; packageName = "rollup"; - version = "2.57.0"; + version = "2.58.0"; src = fetchurl { - url = "https://registry.npmjs.org/rollup/-/rollup-2.57.0.tgz"; - sha512 = "bKQIh1rWKofRee6mv8SrF2HdP6pea5QkwBZSMImJysFj39gQuiV8MEPBjXOCpzk3wSYp63M2v2wkWBmFC8O/rg=="; + url = "https://registry.npmjs.org/rollup/-/rollup-2.58.0.tgz"; + sha512 = "NOXpusKnaRpbS7ZVSzcEXqxcLDOagN6iFS8p45RkoiMqPHDLwJm758UF05KlMoCRbLBTZsPOIa887gZJ1AiXvw=="; }; }; "rollup-plugin-babel-4.4.0" = { @@ -54286,13 +54367,13 @@ let sha512 = "hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ=="; }; }; - "rxjs-7.3.0" = { + "rxjs-7.3.1" = { name = "rxjs"; packageName = "rxjs"; - version = "7.3.0"; + version = "7.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/rxjs/-/rxjs-7.3.0.tgz"; - sha512 = "p2yuGIg9S1epc3vrjKf6iVb3RCaAYjYskkO+jHIaV0IjOPlJop4UnodOoFb2xeNwlguqLYvGw1b1McillYb5Gw=="; + url = "https://registry.npmjs.org/rxjs/-/rxjs-7.3.1.tgz"; + sha512 = "vNenx7gqjPyeKpRnM6S5Ksm/oFTRijWWzYlRON04KaehZ3YjDwEmVjGUGo0TKWVjeNXOujVRlh0K1drUbcdPkw=="; }; }; "s3-stream-upload-2.0.2" = { @@ -54628,6 +54709,15 @@ let sha512 = "g3WxHrqSWCZHGHlSrF51VXFdjImhwvH8ZO/pryFH56Qi0cDsZfylQa/t0jCzVQFNbNvM00HfHjkDPEuarKDSWQ=="; }; }; + "scrypt-js-3.0.1" = { + name = "scrypt-js"; + packageName = "scrypt-js"; + version = "3.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/scrypt-js/-/scrypt-js-3.0.1.tgz"; + sha512 = "cdwTTnqPu0Hyvf5in5asVdZocVDTNRmR7XEcJuIzMjJeSHybHl7vpB66AzwTaIg6CLSbtjcxc8fqcySfnTkccA=="; + }; + }; "sdp-2.12.0" = { name = "sdp"; packageName = "sdp"; @@ -55573,13 +55663,13 @@ let sha512 = "/KVjGIMGN/8nbSTzpq3orQzYs4YhlYOZF8OkZuG8TSIBns8sUR2vlUNvcgvJPGdpNJkrlienwFDsO1UkbDij1w=="; }; }; - "signal-exit-3.0.4" = { + "signal-exit-3.0.5" = { name = "signal-exit"; packageName = "signal-exit"; - version = "3.0.4"; + version = "3.0.5"; src = fetchurl { - url = "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.4.tgz"; - sha512 = "rqYhcAnZ6d/vTPGghdrw7iumdcbXpsk1b8IG/rz+VWV51DM0p7XCtMoJ3qhPLIbp3tvyt3pKRbaaEMZYpHto8Q=="; + url = "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.5.tgz"; + sha512 = "KWcOiKeQj6ZyXx7zq4YxSMgHRlod4czeBQZrPb8OKcohcqAXShm7E20kEMle9WBt26hFcAf0qLOcp5zmY7kOqQ=="; }; }; "signals-1.0.0" = { @@ -55654,13 +55744,13 @@ let sha512 = "rohCHmEjD/ESXFLxF4bVeqgdb4Awc65ZyyuCKl3f7BvgMbZOBa/Ye3HN/GFnvruiUOAWWNupxhz3Rz5/3vJLTg=="; }; }; - "simple-git-2.45.1" = { + "simple-git-2.46.0" = { name = "simple-git"; packageName = "simple-git"; - version = "2.45.1"; + version = "2.46.0"; src = fetchurl { - url = "https://registry.npmjs.org/simple-git/-/simple-git-2.45.1.tgz"; - sha512 = "NmEoThiLTJxl26WNtZxtJTue18ReTcSrf3so5vJG/O8KY9uMxH+yAhXV/DElBJyOYZrrBbVsH8JOFxgENdc9Xg=="; + url = "https://registry.npmjs.org/simple-git/-/simple-git-2.46.0.tgz"; + sha512 = "6eumII1vfP4NpRqxZcVWCcIT5xHH6dRyvBZSjkH4dJRDRpv+0f75hrN5ysp++y23Mfr3AbRC/dO2NDbfj1lJpQ=="; }; }; "simple-handshake-3.0.0" = { @@ -57544,13 +57634,13 @@ let sha512 = "zZ/Q1M+9ZWlrchgh4QauD/MEUFa6eC6H6FYq6T8Of/y82JqsQBLwN6YlzbO09evE7Rx6x0oliXDCnQSjwGwQRA=="; }; }; - "sscaff-1.2.80" = { + "sscaff-1.2.84" = { name = "sscaff"; packageName = "sscaff"; - version = "1.2.80"; + version = "1.2.84"; src = fetchurl { - url = "https://registry.npmjs.org/sscaff/-/sscaff-1.2.80.tgz"; - sha512 = "BpfptEqal8Q2oi4XDQFOpiGgWWxrN1R1GqkkGTefbuM2qFouJv3LiUV0wE/mmYsRpUgQ2iVnPCVQQG0ob/U47g=="; + url = "https://registry.npmjs.org/sscaff/-/sscaff-1.2.84.tgz"; + sha512 = "M2CkfbEzeatkbSX65dkqeQ0FM47h3wdefyi+LY7MP7+hREQ7vr9eDz5xyXPwga/1P5c/UPikDZuoEjo2ZVJjtQ=="; }; }; "ssh-config-1.1.6" = { @@ -58939,6 +59029,15 @@ let sha512 = "vr54Or4BZ7pJafo2mpf0ZcwA74rpuYCZbxrHBsH8kbcXOwSfvBFwsRfpGO5OD5fhG5HDCFW737PKaawI7OqEAg=="; }; }; + "stylus-0.55.0" = { + name = "stylus"; + packageName = "stylus"; + version = "0.55.0"; + src = fetchurl { + url = "https://registry.npmjs.org/stylus/-/stylus-0.55.0.tgz"; + sha512 = "MuzIIVRSbc8XxHH7FjkvWqkIcr1BvoMZoR/oFuAJDlh7VSaNJzrB4uJ38GRQa+mWjLXODAMzeDe0xi9GYbGwnw=="; + }; + }; "stylus-supremacy-2.15.0" = { name = "stylus-supremacy"; packageName = "stylus-supremacy"; @@ -59245,22 +59344,22 @@ let sha512 = "mDAmaltQl6e5zU2VEtoWEf7eLTfuOTGr9zt+BpA3AGHo8MIhKiNSPE9OLTCTOMgj0vj/uL9QBbaNmpG4G1CgIA=="; }; }; - "svelte-preprocess-4.9.5" = { + "svelte-preprocess-4.9.8" = { name = "svelte-preprocess"; packageName = "svelte-preprocess"; - version = "4.9.5"; + version = "4.9.8"; src = fetchurl { - url = "https://registry.npmjs.org/svelte-preprocess/-/svelte-preprocess-4.9.5.tgz"; - sha512 = "RbJbtuwKbuZq9RyzlljZUmmFNaojrg/zUEyDrS8io7haTcuITQmE4NERx8qiqHreApo6cQst5Qtp4MxUwr58Ew=="; + url = "https://registry.npmjs.org/svelte-preprocess/-/svelte-preprocess-4.9.8.tgz"; + sha512 = "EQS/oRZzMtYdAprppZxY3HcysKh11w54MgA63ybtL+TAZ4hVqYOnhw41JVJjWN9dhPnNjjLzvbZ2tMhTsla1Og=="; }; }; - "svelte2tsx-0.4.6" = { + "svelte2tsx-0.4.7" = { name = "svelte2tsx"; packageName = "svelte2tsx"; - version = "0.4.6"; + version = "0.4.7"; src = fetchurl { - url = "https://registry.npmjs.org/svelte2tsx/-/svelte2tsx-0.4.6.tgz"; - sha512 = "flljgh/MbJDijo6Z1HhCfyzdRgn1Nd7QTuuxk9Oq5CzyBXZl/NJYh4otZZwUHnx5poy8k7Oxr2CBE3IBh89tmQ=="; + url = "https://registry.npmjs.org/svelte2tsx/-/svelte2tsx-0.4.7.tgz"; + sha512 = "1HqRb8+I8H0Gli0+w8nTmyZgbtO/jJE3g27cNKYFyN0GMdpOh0CRmiWuMH1k9N2JugkviI7wqETanqJTR0SI+A=="; }; }; "sver-compat-1.5.0" = { @@ -59596,6 +59695,15 @@ let sha512 = "ZGum47Yi6KOOFDE8m223td53ath2enHcYLgOCjGr5ngu8bdIARQk6mN/wRMv4yMRcHnCSnHbCEha4sobQx5yWg=="; }; }; + "table-6.7.2" = { + name = "table"; + packageName = "table"; + version = "6.7.2"; + src = fetchurl { + url = "https://registry.npmjs.org/table/-/table-6.7.2.tgz"; + sha512 = "UFZK67uvyNivLeQbVtkiUs8Uuuxv24aSL4/Vil2PJVtMgU8Lx0CYkP12uCGa3kjyQzOSgV1+z9Wkb82fCGsO0g=="; + }; + }; "table-layout-0.4.5" = { name = "table-layout"; packageName = "table-layout"; @@ -61523,13 +61631,13 @@ let sha512 = "csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw=="; }; }; - "tsconfig-paths-3.10.1" = { + "tsconfig-paths-3.11.0" = { name = "tsconfig-paths"; packageName = "tsconfig-paths"; - version = "3.10.1"; + version = "3.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.10.1.tgz"; - sha512 = "rETidPDgCpltxF7MjBZlAFPUHv5aHH2MymyPvh+vEyWAED4Eb/WeMbsnD/JDr4OKPOA1TssDHgIcpTN5Kh0p6Q=="; + url = "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.11.0.tgz"; + sha512 = "7ecdYDnIdmv639mmDwslG6KQg1Z9STTz1j7Gcz0xa+nshh/gKDAHcPxRbWOsA3SPp0tXP2leTcY9Kw+NAkfZzA=="; }; }; "tsconfig-paths-webpack-plugin-3.5.1" = { @@ -63575,15 +63683,6 @@ let sha1 = "16b5cafc07dbe3676c1b1999177823d6503acb0c"; }; }; - "url-set-query-1.0.0" = { - name = "url-set-query"; - packageName = "url-set-query"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/url-set-query/-/url-set-query-1.0.0.tgz"; - sha1 = "016e8cfd7c20ee05cafe7795e892bd0702faa339"; - }; - }; "url-template-2.0.8" = { name = "url-template"; packageName = "url-template"; @@ -65871,13 +65970,13 @@ let sha512 = "8G0xBj05hqZybCqBtW7RPZ/hWEtP3DiLTauQzGJZuZYfVRgw7qj7iaZ+8djNqJ4VPrdOO+pS2dR1JsTbsLxdYg=="; }; }; - "web3-utils-1.5.3" = { + "web3-utils-1.6.0" = { name = "web3-utils"; packageName = "web3-utils"; - version = "1.5.3"; + version = "1.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/web3-utils/-/web3-utils-1.5.3.tgz"; - sha512 = "56nRgA+Ad9SEyCv39g36rTcr5fpsd4L9LgV3FK0aB66nAMazLAA6Qz4lH5XrUKPDyBIPGJIR+kJsyRtwcu2q1Q=="; + url = "https://registry.npmjs.org/web3-utils/-/web3-utils-1.6.0.tgz"; + sha512 = "bgCAWAeQnJF035YTFxrcHJ5mGEfTi/McsjqldZiXRwlHK7L1PyOqvXiQLE053dlzvy1kdAxWl/sSSfLMyNUAXg=="; }; }; "webassemblyjs-1.11.1" = { @@ -65979,13 +66078,13 @@ let sha512 = "68VT2ZgG9EHs6h6UxfV2SEYewA9BA3SOLSnC2NEbJJiEwbAiueDL033R1xX0jzjmXvMh0oSeKnKgbO2bDXIEyQ=="; }; }; - "webpack-5.55.0" = { + "webpack-5.56.0" = { name = "webpack"; packageName = "webpack"; - version = "5.55.0"; + version = "5.56.0"; src = fetchurl { - url = "https://registry.npmjs.org/webpack/-/webpack-5.55.0.tgz"; - sha512 = "/1LyoAG+4+YRt+RLN3H2cz4dcw8+iO/GwKhL54GQDmqONCi0ZISXZF6aCCrCRDJFK685h+RGLCZd61Y+SEqdWQ=="; + url = "https://registry.npmjs.org/webpack/-/webpack-5.56.0.tgz"; + sha512 = "pJ7esw2AGkpZL0jqsEAKnDEfRZdrc9NVjAWA+d1mFkwj68ng9VQ6+Wnrl+kS5dlDHvrat5ASK5vd7wp6I7f53Q=="; }; }; "webpack-bundle-analyzer-3.9.0" = { @@ -67050,6 +67149,15 @@ let sha512 = "Q6B6H2oc8QY3llc3cB8kVmQ6pnJWVQbP7Q5algTcIxx7YEpc0oU4NBVHlztA7Ekzfhw2r0rPducMUiCGWKQRzw=="; }; }; + "ws-8.2.3" = { + name = "ws"; + packageName = "ws"; + version = "8.2.3"; + src = fetchurl { + url = "https://registry.npmjs.org/ws/-/ws-8.2.3.tgz"; + sha512 = "wBuoj1BDpC6ZQ1B7DWQBYVLphPWkm8i9Y0/3YdHjHKHiohOJ1ws+3OccDWtH+PoC9DZD5WOTrJvNbWvjS6JWaA=="; + }; + }; "x-default-browser-0.3.1" = { name = "x-default-browser"; packageName = "x-default-browser"; @@ -67131,13 +67239,13 @@ let sha512 = "N1XQngeqMBoj9wM4ZFadVV2MymImeiFfYD+fJrNlcVcOHsJFFQe7n3b+aBoTPwARuq2HQxukfzVpQmAk1gN4sQ=="; }; }; - "xdl-59.2.0" = { + "xdl-59.2.1" = { name = "xdl"; packageName = "xdl"; - version = "59.2.0"; + version = "59.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/xdl/-/xdl-59.2.0.tgz"; - sha512 = "jeG34Ul/cHtMv8ZTcRd5Hvgs6Udj83VVlJWodb+sH/K/arG8zKKW9/JhJqBrcI9paxB0Fn/1osFsvv4akKYsrg=="; + url = "https://registry.npmjs.org/xdl/-/xdl-59.2.1.tgz"; + sha512 = "dBLUs8rGnOnhZR9RRpX2Eby5fJVyqB4W/hj39RPn/s3BdqT63e+sNWv21u3skkctBvOuHnHM1BCIMxB2DQArkg=="; }; }; "xenvar-0.5.1" = { @@ -67158,24 +67266,6 @@ let sha512 = "/eCGLb5rxjx5e3mF1A7s+pLlR6CGyqWN91fv1JgER5mVWg1MZmlhBvy9kjcsOdRk8RrIujotWyJamfyrp+WIcA=="; }; }; - "xhr-request-1.1.0" = { - name = "xhr-request"; - packageName = "xhr-request"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/xhr-request/-/xhr-request-1.1.0.tgz"; - sha512 = "Y7qzEaR3FDtL3fP30k9wO/e+FBnBByZeybKOhASsGP30NIkRAAkKD/sCnLvgEfAIEC1rcmK7YG8f4oEnIrrWzA=="; - }; - }; - "xhr-request-promise-0.1.3" = { - name = "xhr-request-promise"; - packageName = "xhr-request-promise"; - version = "0.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/xhr-request-promise/-/xhr-request-promise-0.1.3.tgz"; - sha512 = "YUBytBsuwgitWtdRzXDDkWAXzhdGB8bYm0sSzMPZT7Z2MBjMSTHFsyCT1yCRATY+XC69DUrQraRAEgcoCRaIPg=="; - }; - }; "xml-1.0.1" = { name = "xml"; packageName = "xml"; @@ -67663,6 +67753,15 @@ let sha512 = "r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg=="; }; }; + "yaml-2.0.0-7" = { + name = "yaml"; + packageName = "yaml"; + version = "2.0.0-7"; + src = fetchurl { + url = "https://registry.npmjs.org/yaml/-/yaml-2.0.0-7.tgz"; + sha512 = "RbI2Tm3hl9AoHY4wWyWvGvJfFIbHOzuzaxum6ez1A0vve+uXgNor03Wys4t+2sgjJSVSe+B2xerd1/dnvqHlOA=="; + }; + }; "yaml-2.0.0-8" = { name = "yaml"; packageName = "yaml"; @@ -67726,6 +67825,15 @@ let sha512 = "GQ2eRE5GcKBK8XVKBIcMyOfC8WMZmEs6gogtVc6knLKE6pG+e5L/lOMfBxZzAt2lqye5itMggQ9+6stXAVhMsw=="; }; }; + "yaml-language-server-parser-0.1.3" = { + name = "yaml-language-server-parser"; + packageName = "yaml-language-server-parser"; + version = "0.1.3"; + src = fetchurl { + url = "https://registry.npmjs.org/yaml-language-server-parser/-/yaml-language-server-parser-0.1.3.tgz"; + sha512 = "xD2I+6M/vqQvcy4ded8JpXUaDHXmZMdhIO3OpuiFxstutwnW4whrfDzNcrsfXVdgMWqOUpdv3747Q081PFN1+g=="; + }; + }; "yamljs-0.3.0" = { name = "yamljs"; packageName = "yamljs"; @@ -68023,13 +68131,13 @@ let sha512 = "7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA=="; }; }; - "yarn-1.22.11" = { + "yarn-1.22.15" = { name = "yarn"; packageName = "yarn"; - version = "1.22.11"; + version = "1.22.15"; src = fetchurl { - url = "https://registry.npmjs.org/yarn/-/yarn-1.22.11.tgz"; - sha512 = "AWje4bzqO9RUn3sdnM5N8n4ZJ0BqCc/kqFJvpOI5/EVkINXui0yuvU7NDCEF//+WaxHuNay2uOHxA4+tq1P3cg=="; + url = "https://registry.npmjs.org/yarn/-/yarn-1.22.15.tgz"; + sha512 = "AzoEDxj256BOS/jqDXA3pjyhmi4FRBBUMgYoTHI4EIt2EhREkvH0soPVEtnD+DQIJfU5R9bKhcZ1H9l8zPWeoA=="; }; }; "yarn-1.22.4" = { @@ -68290,15 +68398,15 @@ in "@angular/cli" = nodeEnv.buildNodePackage { name = "_at_angular_slash_cli"; packageName = "@angular/cli"; - version = "12.2.7"; + version = "12.2.8"; src = fetchurl { - url = "https://registry.npmjs.org/@angular/cli/-/cli-12.2.7.tgz"; - sha512 = "FH34528+126Cxh/+1cBppBas8tExizKSJgbjpT3zgV6ijwHD7apT5zU9R1TyOhQPd6BhyaURo9Hnsjg49W4bRA=="; + url = "https://registry.npmjs.org/@angular/cli/-/cli-12.2.8.tgz"; + sha512 = "MkTVkQbI+58W1izHKpGdpj0YAFfQnf7oQIyMom13/8l83yuOJdNzFTG/Lt77hx19qaKemEdmqTqdEOOrzaqggw=="; }; dependencies = [ - sources."@angular-devkit/architect-0.1202.7" - sources."@angular-devkit/core-12.2.7" - sources."@angular-devkit/schematics-12.2.7" + sources."@angular-devkit/architect-0.1202.8" + sources."@angular-devkit/core-12.2.8" + sources."@angular-devkit/schematics-12.2.8" sources."@gar/promisify-1.1.2" sources."@npmcli/fs-1.0.0" sources."@npmcli/git-2.1.0" @@ -68307,7 +68415,7 @@ in sources."@npmcli/node-gyp-1.0.2" sources."@npmcli/promise-spawn-1.3.2" sources."@npmcli/run-script-1.8.6" - sources."@schematics/angular-12.2.7" + sources."@schematics/angular-12.2.8" sources."@tootallnate/once-1.1.2" sources."@yarnpkg/lockfile-1.1.0" sources."abbrev-1.1.1" @@ -68347,7 +68455,7 @@ in sources."chownr-2.0.0" sources."clean-stack-2.2.0" sources."cli-cursor-3.1.0" - sources."cli-spinners-2.6.0" + sources."cli-spinners-2.6.1" sources."cli-width-3.0.0" sources."clone-1.0.4" sources."code-point-at-1.1.0" @@ -68423,7 +68531,7 @@ in sources."ini-2.0.0" (sources."inquirer-8.1.2" // { dependencies = [ - sources."rxjs-7.3.0" + sources."rxjs-7.3.1" sources."tslib-2.1.0" ]; }) @@ -68452,8 +68560,8 @@ in sources."lru-cache-6.0.0" sources."magic-string-0.25.7" sources."make-fetch-happen-9.1.0" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."mimic-fn-2.1.0" sources."minimatch-3.0.4" sources."minipass-3.1.5" @@ -68515,7 +68623,7 @@ in sources."safer-buffer-2.1.2" sources."semver-7.3.5" sources."set-blocking-2.0.0" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."smart-buffer-4.2.0" sources."socks-2.6.1" sources."socks-proxy-agent-6.1.0" @@ -68796,8 +68904,8 @@ in sources."map-obj-4.3.0" sources."marky-1.2.2" sources."matcher-2.1.0" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."mimic-response-2.1.0" sources."minimatch-3.0.4" sources."minimatch-all-1.1.0" @@ -69005,8 +69113,8 @@ in sources."lodash-4.17.21" sources."lowdb-1.0.0" sources."lunr-2.3.9" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."mimic-fn-2.1.0" sources."ms-2.1.2" sources."mute-stream-0.0.8" @@ -69034,7 +69142,7 @@ in sources."rxjs-6.6.7" sources."safer-buffer-2.1.2" sources."saxes-5.0.1" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."source-map-0.6.1" sources."steno-0.4.4" sources."string-width-4.2.3" @@ -69239,7 +69347,7 @@ in sources."semver-7.3.5" sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."source-map-0.6.1" sources."source-map-support-0.5.20" sources."spdx-correct-3.1.1" @@ -69328,7 +69436,7 @@ in sources."@hyperswarm/hypersign-2.1.1" sources."@hyperswarm/network-2.1.0" sources."@leichtgewicht/ip-codec-2.0.3" - sources."@types/node-16.10.1" + sources."@types/node-16.10.2" sources."abstract-extension-3.1.1" sources."abstract-leveldown-6.2.3" sources."ansi-colors-3.2.3" @@ -69433,7 +69541,7 @@ in sources."encoding-down-6.3.0" sources."end-of-stream-1.4.4" sources."errno-0.1.8" - (sources."es-abstract-1.18.7" // { + (sources."es-abstract-1.19.1" // { dependencies = [ sources."object.assign-4.1.2" ]; @@ -69528,16 +69636,18 @@ in sources."is-date-object-1.0.5" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-2.0.0" - sources."is-glob-4.0.2" + sources."is-glob-4.0.3" sources."is-negative-zero-2.0.1" sources."is-number-7.0.0" sources."is-number-object-1.0.6" sources."is-options-1.0.1" sources."is-property-1.0.2" sources."is-regex-1.1.4" + sources."is-shared-array-buffer-1.0.1" sources."is-stream-1.1.0" sources."is-string-1.0.7" sources."is-symbol-1.0.4" + sources."is-weakref-1.0.1" sources."isarray-1.0.0" sources."isexe-2.0.0" sources."js-yaml-3.13.1" @@ -69823,10 +69933,10 @@ in "@nerdwallet/shepherd" = nodeEnv.buildNodePackage { name = "_at_nerdwallet_slash_shepherd"; packageName = "@nerdwallet/shepherd"; - version = "1.15.1"; + version = "1.15.5"; src = fetchurl { - url = "https://registry.npmjs.org/@nerdwallet/shepherd/-/shepherd-1.15.1.tgz"; - sha512 = "8IusD7fBMXdTcdsHBt4jZb3fu4VmN8NppnXEigNn6AxbhGepntGuUN2Ve9FGQX+xcpJKRZsRtsbUnXmf62G83g=="; + url = "https://registry.npmjs.org/@nerdwallet/shepherd/-/shepherd-1.15.5.tgz"; + sha512 = "1/Y4YtYQYBZLJJThAZbN4fz+9QfFcS3AvYAYTDYHL5ifMX358ZpQrqtdSSe1c3uGTPs6lQrT+gho/+Pk9dgNEQ=="; }; dependencies = [ sources."@hapi/hoek-9.2.1" @@ -69837,15 +69947,15 @@ in sources."@octokit/core-3.5.1" sources."@octokit/endpoint-6.0.12" sources."@octokit/graphql-4.8.0" - sources."@octokit/openapi-types-10.6.1" - sources."@octokit/plugin-paginate-rest-2.16.5" + sources."@octokit/openapi-types-10.6.4" + sources."@octokit/plugin-paginate-rest-2.16.7" sources."@octokit/plugin-request-log-1.0.4" - sources."@octokit/plugin-rest-endpoint-methods-5.11.3" + sources."@octokit/plugin-rest-endpoint-methods-5.11.4" sources."@octokit/plugin-retry-3.0.9" sources."@octokit/request-5.6.1" sources."@octokit/request-error-2.1.0" - sources."@octokit/rest-18.11.2" - sources."@octokit/types-6.31.1" + sources."@octokit/rest-18.11.4" + sources."@octokit/types-6.31.3" sources."@sideway/address-4.1.2" sources."@sideway/formula-3.0.0" sources."@sideway/pinpoint-2.0.0" @@ -69862,7 +69972,7 @@ in sources."chalk-4.1.2" sources."child-process-promise-2.2.1" sources."cli-cursor-3.1.0" - sources."cli-spinners-2.6.0" + sources."cli-spinners-2.6.1" sources."clone-1.0.4" sources."color-convert-2.0.1" sources."color-name-1.1.4" @@ -69901,8 +70011,8 @@ in sources."readable-stream-3.6.0" sources."restore-cursor-3.1.0" sources."safe-buffer-5.2.1" - sources."signal-exit-3.0.4" - sources."simple-git-2.45.1" + sources."signal-exit-3.0.5" + sources."simple-git-2.46.0" sources."sprintf-js-1.0.3" sources."string_decoder-1.3.0" sources."strip-ansi-6.0.1" @@ -69932,18 +70042,20 @@ in "@nestjs/cli" = nodeEnv.buildNodePackage { name = "_at_nestjs_slash_cli"; packageName = "@nestjs/cli"; - version = "8.1.1"; + version = "8.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/@nestjs/cli/-/cli-8.1.1.tgz"; - sha512 = "Jo/vYyrDHJhRIoFevO+A955KX7aLSAV6gn0sbIJBDTKiha1yxfgEbHOk8qP24gNFLwiDn2CKbwph2g6z0v/mNw=="; + url = "https://registry.npmjs.org/@nestjs/cli/-/cli-8.1.2.tgz"; + sha512 = "HzjCIyECFHNl+Vv1Sfq0SdenujvdfPPUny9XcPlZK75dmNhIOJmx7Wl/rG72qJ7sZzxoQ3h8r2+jp8ajx227HA=="; }; dependencies = [ - sources."@angular-devkit/core-12.1.4" - sources."@angular-devkit/schematics-12.1.4" - (sources."@angular-devkit/schematics-cli-12.1.4" // { + sources."@angular-devkit/core-12.2.7" + sources."@angular-devkit/schematics-12.2.7" + (sources."@angular-devkit/schematics-cli-12.2.7" // { dependencies = [ sources."chalk-4.1.2" - sources."inquirer-8.1.1" + sources."inquirer-8.1.2" + sources."rxjs-7.3.1" + sources."tslib-2.1.0" ]; }) sources."@babel/code-frame-7.14.5" @@ -69972,7 +70084,8 @@ in sources."@types/eslint-scope-3.7.1" sources."@types/estree-0.0.50" sources."@types/json-schema-7.0.9" - sources."@types/node-16.10.1" + sources."@types/json5-0.0.29" + sources."@types/node-16.10.2" sources."@types/parse-json-4.0.0" sources."@webassemblyjs/ast-1.11.1" sources."@webassemblyjs/floating-point-hex-parser-1.11.1" @@ -69992,7 +70105,7 @@ in sources."@xtuc/ieee754-1.2.0" sources."@xtuc/long-4.2.2" sources."acorn-8.5.0" - sources."ajv-8.6.0" + sources."ajv-8.6.2" sources."ajv-formats-2.1.0" sources."ajv-keywords-3.5.2" sources."ansi-colors-4.1.1" @@ -70007,17 +70120,17 @@ in sources."bl-4.1.0" sources."brace-expansion-1.1.11" sources."braces-3.0.2" - sources."browserslist-4.17.1" + sources."browserslist-4.17.2" sources."buffer-5.7.1" sources."buffer-from-1.1.2" sources."callsites-3.1.0" - sources."caniuse-lite-1.0.30001261" + sources."caniuse-lite-1.0.30001263" sources."chalk-3.0.0" sources."chardet-0.7.0" sources."chokidar-3.5.2" sources."chrome-trace-event-1.0.3" sources."cli-cursor-3.1.0" - sources."cli-spinners-2.6.0" + sources."cli-spinners-2.6.1" (sources."cli-table3-0.5.1" // { dependencies = [ sources."ansi-regex-3.0.0" @@ -70037,7 +70150,7 @@ in sources."cross-spawn-7.0.3" sources."deepmerge-4.2.2" sources."defaults-1.0.3" - sources."electron-to-chromium-1.3.853" + sources."electron-to-chromium-1.3.857" sources."emoji-regex-8.0.0" sources."end-of-stream-1.4.4" (sources."enhanced-resolve-5.8.3" // { @@ -70063,7 +70176,7 @@ in sources."fast-json-stable-stringify-2.1.0" sources."figures-3.2.0" sources."fill-range-7.0.1" - (sources."fork-ts-checker-webpack-plugin-6.3.1" // { + (sources."fork-ts-checker-webpack-plugin-6.3.3" // { dependencies = [ sources."chalk-4.1.2" sources."fs-extra-9.1.0" @@ -70098,13 +70211,13 @@ in sources."is-core-module-2.7.0" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" - sources."is-glob-4.0.2" + sources."is-glob-4.0.3" sources."is-interactive-1.0.0" sources."is-number-7.0.0" sources."is-stream-2.0.1" sources."is-unicode-supported-0.1.0" sources."isexe-2.0.0" - (sources."jest-worker-27.2.3" // { + (sources."jest-worker-27.2.4" // { dependencies = [ sources."supports-color-8.1.1" ]; @@ -70113,13 +70226,12 @@ in sources."json-parse-better-errors-1.0.2" sources."json-parse-even-better-errors-2.3.1" sources."json-schema-traverse-1.0.0" - sources."json5-2.2.0" + sources."json5-1.0.1" sources."jsonc-parser-3.0.0" sources."jsonfile-6.1.0" sources."lines-and-columns-1.1.6" sources."loader-runner-4.2.0" sources."lodash-4.17.21" - sources."lodash.toarray-4.4.0" (sources."log-symbols-4.1.0" // { dependencies = [ sources."chalk-4.1.2" @@ -70130,16 +70242,16 @@ in sources."magic-string-0.25.7" sources."memfs-3.3.0" sources."merge-stream-2.0.0" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."mimic-fn-2.1.0" sources."minimatch-3.0.4" sources."minimist-1.2.5" sources."mute-stream-0.0.8" - sources."nanocolors-0.1.12" + sources."nanocolors-0.2.12" sources."neo-async-2.6.2" - sources."node-emoji-1.10.0" - sources."node-releases-1.1.76" + sources."node-emoji-1.11.0" + sources."node-releases-1.1.77" sources."normalize-path-3.0.0" sources."npm-run-path-4.0.1" sources."object-assign-4.1.1" @@ -70187,10 +70299,10 @@ in sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" sources."shelljs-0.8.4" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."source-list-map-2.0.1" sources."source-map-0.7.3" - (sources."source-map-support-0.5.19" // { + (sources."source-map-support-0.5.20" // { dependencies = [ sources."source-map-0.6.1" ]; @@ -70207,11 +70319,6 @@ in (sources."terser-5.9.0" // { dependencies = [ sources."commander-2.20.3" - (sources."source-map-support-0.5.20" // { - dependencies = [ - sources."source-map-0.6.1" - ]; - }) ]; }) (sources."terser-webpack-plugin-5.2.4" // { @@ -70226,7 +70333,7 @@ in sources."tmp-0.0.33" sources."to-regex-range-5.0.1" sources."tree-kill-1.2.2" - sources."tsconfig-paths-3.10.1" + sources."tsconfig-paths-3.11.0" (sources."tsconfig-paths-webpack-plugin-3.5.1" // { dependencies = [ sources."chalk-4.1.2" @@ -70288,7 +70395,7 @@ in sources."buffer-5.7.1" sources."chalk-4.1.2" sources."cli-cursor-3.1.0" - sources."cli-spinners-2.6.0" + sources."cli-spinners-2.6.1" sources."clone-1.0.4" sources."color-convert-2.0.1" sources."color-name-1.1.4" @@ -70309,7 +70416,7 @@ in sources."readable-stream-3.6.0" sources."restore-cursor-3.1.0" sources."safe-buffer-5.2.1" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."string_decoder-1.3.0" sources."strip-ansi-6.0.1" sources."supports-color-7.2.0" @@ -70509,7 +70616,7 @@ in sources."@types/long-4.0.1" sources."@types/mime-1.3.2" sources."@types/minimatch-3.0.5" - sources."@types/node-16.10.1" + sources."@types/node-16.10.2" sources."@types/normalize-package-data-2.4.1" sources."@types/qs-6.9.7" sources."@types/range-parser-1.2.4" @@ -70627,7 +70734,7 @@ in }) sources."brace-expansion-1.1.11" sources."braces-2.3.2" - sources."browserslist-4.17.1" + sources."browserslist-4.17.2" sources."buffer-5.7.1" sources."buffer-alloc-1.2.0" sources."buffer-alloc-unsafe-1.1.0" @@ -70647,7 +70754,7 @@ in sources."call-bind-1.0.2" sources."call-me-maybe-1.0.1" sources."camelcase-5.3.1" - sources."caniuse-lite-1.0.30001261" + sources."caniuse-lite-1.0.30001263" sources."caseless-0.12.0" sources."caw-2.0.1" sources."chalk-2.4.2" @@ -70672,7 +70779,7 @@ in sources."clean-stack-2.2.0" sources."cli-boxes-2.2.1" sources."cli-cursor-2.1.0" - sources."cli-spinners-2.6.0" + sources."cli-spinners-2.6.1" sources."cli-width-3.0.0" sources."cliui-7.0.4" sources."clone-1.0.4" @@ -70774,14 +70881,14 @@ in sources."ecc-jsbn-0.1.2" sources."ee-first-1.1.1" sources."ejs-2.7.4" - sources."electron-to-chromium-1.3.853" + sources."electron-to-chromium-1.3.857" sources."emoji-regex-8.0.0" sources."encodeurl-1.0.2" sources."end-of-stream-1.4.4" sources."entities-2.2.0" sources."envinfo-7.8.1" sources."error-ex-1.3.2" - sources."es-abstract-1.18.7" + sources."es-abstract-1.19.1" sources."es-to-primitive-1.2.1" sources."escalade-3.1.1" sources."escape-html-1.0.3" @@ -70857,7 +70964,7 @@ in }) sources."find-up-3.0.0" sources."fkill-6.2.0" - sources."flow-parser-0.160.2" + sources."flow-parser-0.161.0" sources."for-each-0.3.3" sources."for-in-1.0.2" sources."forever-agent-0.6.1" @@ -70979,7 +71086,7 @@ in sources."is-extendable-0.1.1" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" - sources."is-glob-4.0.2" + sources."is-glob-4.0.3" sources."is-natural-number-4.0.1" sources."is-negative-zero-2.0.1" (sources."is-number-3.0.0" // { @@ -70995,10 +71102,12 @@ in sources."is-property-1.0.2" sources."is-regex-1.1.4" sources."is-retry-allowed-1.2.0" + sources."is-shared-array-buffer-1.0.1" sources."is-stream-1.1.0" sources."is-string-1.0.7" sources."is-symbol-1.0.4" sources."is-typedarray-1.0.0" + sources."is-weakref-1.0.1" sources."is-windows-1.0.2" sources."is-wsl-1.1.0" sources."isarray-1.0.0" @@ -71068,8 +71177,8 @@ in ]; }) sources."mime-1.6.0" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."mimic-fn-1.2.0" sources."mimic-response-1.0.1" sources."minimatch-3.0.4" @@ -71082,7 +71191,7 @@ in sources."mkdirp-0.5.5" sources."ms-2.0.0" sources."mute-stream-0.0.8" - sources."nanocolors-0.1.12" + sources."nanocolors-0.2.12" sources."nanoid-2.1.11" (sources."nanomatch-1.2.13" // { dependencies = [ @@ -71112,7 +71221,7 @@ in sources."which-2.0.2" ]; }) - sources."node-releases-1.1.76" + sources."node-releases-1.1.77" (sources."normalize-package-data-2.5.0" // { dependencies = [ sources."semver-5.7.1" @@ -71298,7 +71407,7 @@ in sources."shellwords-0.1.1" sources."shortid-2.2.16" sources."side-channel-1.0.4" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."slash-3.0.0" (sources."snapdragon-0.8.2" // { dependencies = [ @@ -71786,8 +71895,8 @@ in sources."async-3.2.1" sources."balanced-match-1.0.2" sources."brace-expansion-1.1.11" - sources."browserslist-4.17.1" - sources."caniuse-lite-1.0.30001261" + sources."browserslist-4.17.2" + sources."caniuse-lite-1.0.30001263" sources."chalk-2.4.2" sources."color-convert-1.9.3" sources."color-name-1.1.3" @@ -71797,7 +71906,7 @@ in sources."convert-source-map-1.8.0" sources."debug-4.3.2" sources."ejs-3.1.6" - sources."electron-to-chromium-1.3.853" + sources."electron-to-chromium-1.3.857" sources."ensure-posix-path-1.1.1" sources."escalade-3.1.1" sources."escape-string-regexp-1.0.5" @@ -71843,8 +71952,8 @@ in sources."minimist-1.2.5" sources."moment-2.29.1" sources."ms-2.1.2" - sources."nanocolors-0.1.12" - sources."node-releases-1.1.76" + sources."nanocolors-0.2.12" + sources."node-releases-1.1.77" sources."node.extend-2.0.2" (sources."nomnom-1.8.1" // { dependencies = [ @@ -71892,7 +72001,7 @@ in dependencies = [ sources."@types/glob-7.1.4" sources."@types/minimatch-3.0.5" - sources."@types/node-16.10.1" + sources."@types/node-16.10.2" sources."balanced-match-1.0.2" sources."brace-expansion-1.1.11" sources."chromium-pickle-js-0.2.0" @@ -71926,17 +72035,13 @@ in sha512 = "3bDjTfF0MfZntwVCSd18XAT2Zndufh3Mep+mafbzdIQEeWbncVRUVDjH8/EPANV9Hq40seJ24QcYAyhUsFz7gQ=="; }; dependencies = [ - (sources."browserslist-4.17.1" // { - dependencies = [ - sources."nanocolors-0.1.12" - ]; - }) - sources."caniuse-lite-1.0.30001261" - sources."electron-to-chromium-1.3.853" + sources."browserslist-4.17.2" + sources."caniuse-lite-1.0.30001263" + sources."electron-to-chromium-1.3.857" sources."escalade-3.1.1" sources."fraction.js-4.1.1" sources."nanocolors-0.2.12" - sources."node-releases-1.1.76" + sources."node-releases-1.1.77" sources."normalize-range-0.1.2" sources."postcss-value-parser-4.1.0" ]; @@ -71960,14 +72065,14 @@ in }; dependencies = [ sources."@tootallnate/once-1.1.2" - sources."@types/node-16.10.1" + sources."@types/node-16.10.2" sources."@types/yauzl-2.9.2" sources."agent-base-6.0.2" sources."ansi-escapes-4.3.2" sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" sources."ast-types-0.13.4" - (sources."aws-sdk-2.996.0" // { + (sources."aws-sdk-2.999.0" // { dependencies = [ sources."uuid-3.3.2" ]; @@ -71991,7 +72096,7 @@ in sources."cheerio-select-1.5.0" sources."chownr-1.1.4" sources."cli-cursor-3.1.0" - sources."cli-spinners-2.6.0" + sources."cli-spinners-2.6.1" sources."cli-width-3.0.0" sources."clone-1.0.4" sources."color-convert-2.0.1" @@ -72107,7 +72212,7 @@ in sources."restore-cursor-3.1.0" sources."rimraf-3.0.2" sources."run-async-2.4.1" - (sources."rxjs-7.3.0" // { + (sources."rxjs-7.3.1" // { dependencies = [ sources."tslib-2.1.0" ]; @@ -72116,7 +72221,7 @@ in sources."safer-buffer-2.1.2" sources."sax-1.2.1" sources."setprototypeof-1.1.1" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."smart-buffer-4.2.0" sources."socks-2.6.1" sources."socks-proxy-agent-5.0.1" @@ -72183,7 +72288,7 @@ in sources."@cto.af/textdecoder-0.0.0" (sources."@grpc/grpc-js-1.3.7" // { dependencies = [ - sources."@types/node-16.10.1" + sources."@types/node-16.10.2" ]; }) sources."@grpc/proto-loader-0.6.4" @@ -72327,7 +72432,7 @@ in sources."cipher-base-1.0.4" sources."cli-boxes-2.2.1" sources."cli-cursor-1.0.2" - sources."cli-spinners-2.6.0" + sources."cli-spinners-2.6.1" sources."cli-table3-0.5.1" sources."cli-width-2.2.1" (sources."cliui-7.0.4" // { @@ -72592,8 +72697,8 @@ in sources."methods-1.1.2" sources."micromist-1.1.0" sources."mime-1.6.0" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."mimic-fn-2.1.0" sources."mimic-response-1.0.1" sources."minimalistic-assert-1.0.1" @@ -72682,7 +72787,7 @@ in sources."process-nextick-args-2.0.1" (sources."protobufjs-6.11.2" // { dependencies = [ - sources."@types/node-16.10.1" + sources."@types/node-16.10.2" ]; }) sources."proxy-addr-2.0.7" @@ -72715,7 +72820,7 @@ in sources."ripemd160-2.0.2" sources."run-async-2.4.1" sources."rx-4.1.0" - sources."rxjs-7.3.0" + sources."rxjs-7.3.1" sources."safe-buffer-5.2.1" sources."safe-compare-1.1.4" sources."safer-buffer-2.1.2" @@ -72736,7 +72841,7 @@ in sources."serve-static-1.14.1" sources."setprototypeof-1.1.1" sources."sha.js-2.4.11" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."sjcl-1.0.8" (sources."slice-ansi-4.0.0" // { dependencies = [ @@ -72940,8 +73045,8 @@ in sources."levn-0.3.0" sources."lodash-4.17.21" sources."lodash.sortby-4.7.0" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."minimatch-3.0.4" sources."nwsapi-2.2.0" sources."oauth-sign-0.9.0" @@ -73104,7 +73209,7 @@ in sources."safe-buffer-5.1.2" sources."semver-5.7.1" sources."set-blocking-2.0.0" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."simple-concat-1.0.1" sources."simple-get-3.1.0" sources."state-toggle-1.0.3" @@ -73286,7 +73391,7 @@ in ]; }) sources."semver-5.7.1" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."sort-keys-1.1.2" sources."sort-keys-length-1.0.1" sources."spdx-correct-3.1.1" @@ -73397,7 +73502,7 @@ in sources."bn.js-4.12.0" ]; }) - sources."es-abstract-1.18.7" + sources."es-abstract-1.19.1" sources."es-to-primitive-1.2.1" sources."events-3.3.0" sources."evp_bytestokey-1.0.3" @@ -73439,9 +73544,11 @@ in sources."is-negative-zero-2.0.1" sources."is-number-object-1.0.6" sources."is-regex-1.1.4" + sources."is-shared-array-buffer-1.0.1" sources."is-string-1.0.7" sources."is-symbol-1.0.4" sources."is-typed-array-1.1.8" + sources."is-weakref-1.0.1" sources."isarray-1.0.0" sources."jsonparse-1.3.1" sources."labeled-stream-splicer-2.0.2" @@ -73658,7 +73765,7 @@ in sources."is-binary-path-2.1.0" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" - sources."is-glob-4.0.2" + sources."is-glob-4.0.3" sources."is-number-7.0.0" sources."is-number-like-1.0.8" sources."is-wsl-1.1.0" @@ -73677,8 +73784,8 @@ in sources."lodash.isfinite-3.3.2" sources."micromatch-4.0.4" sources."mime-1.4.1" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."minimatch-3.0.4" sources."mitt-1.2.0" sources."ms-2.0.0" @@ -74048,7 +74155,7 @@ in dependencies = [ sources."argparse-2.0.1" sources."entities-2.1.0" - sources."linkify-it-3.0.2" + sources."linkify-it-3.0.3" ]; }) sources."md5-2.3.0" @@ -74060,8 +74167,8 @@ in sources."merkle-lib-2.0.10" sources."methods-1.1.2" sources."mime-1.6.0" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."min-indent-1.0.1" sources."minimalistic-assert-1.0.1" sources."minimalistic-crypto-utils-1.0.1" @@ -74182,7 +74289,7 @@ in sources."set-blocking-2.0.0" sources."setprototypeof-1.1.1" sources."sha.js-2.4.11" - sources."simple-git-2.45.1" + sources."simple-git-2.46.0" sources."spdx-correct-3.1.1" sources."spdx-exceptions-2.3.0" sources."spdx-expression-parse-3.0.1" @@ -74272,7 +74379,7 @@ in sources."@protobufjs/pool-1.1.0" sources."@protobufjs/utf8-1.1.0" sources."@types/long-4.0.1" - sources."@types/node-16.10.1" + sources."@types/node-16.10.2" sources."addr-to-ip-port-1.5.4" sources."airplay-js-0.2.16" sources."ajv-6.12.6" @@ -74453,8 +74560,8 @@ in ]; }) sources."mime-1.6.0" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."mimic-response-1.0.1" sources."minimatch-3.0.4" sources."minimist-1.2.5" @@ -74569,7 +74676,7 @@ in sources."safer-buffer-2.1.2" sources."sax-1.2.4" sources."semver-5.7.1" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."simple-concat-1.0.1" sources."simple-get-2.8.1" (sources."simple-peer-6.4.4" // { @@ -74926,7 +75033,7 @@ in sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-2.0.0" sources."is-function-1.0.2" - sources."is-glob-4.0.2" + sources."is-glob-4.0.3" sources."is-installed-globally-0.1.0" sources."is-npm-1.0.0" (sources."is-number-3.0.0" // { @@ -75120,7 +75227,7 @@ in sources."setprototypeof-1.1.1" sources."shebang-command-1.2.0" sources."shebang-regex-1.0.0" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."slash-1.0.0" sources."slice-ansi-0.0.4" (sources."snapdragon-0.8.2" // { @@ -75275,10 +75382,10 @@ in cdk8s-cli = nodeEnv.buildNodePackage { name = "cdk8s-cli"; packageName = "cdk8s-cli"; - version = "1.0.0-beta.57"; + version = "1.0.0-beta.62"; src = fetchurl { - url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-1.0.0-beta.57.tgz"; - sha512 = "Qu6SSD9exbouyp5jYO50QbP+YWqnpabCK6EIICIFxlKMOf0uKUa+jTru2KjlWG1kEBT+2z34oQ+hdISXtZfKyQ=="; + url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-1.0.0-beta.62.tgz"; + sha512 = "BpSFLHSP+VNWzaUdeeLig/TDfLtQ+i62ugFwPy2T36w9KFizaOmUitHPaDKcRlPuifPOsP+UZEHmg39iG2N/QA=="; }; dependencies = [ sources."@jsii/check-node-1.35.0" @@ -75293,7 +75400,7 @@ in sources."call-bind-1.0.2" sources."camelcase-6.2.0" sources."case-1.6.3" - sources."cdk8s-1.0.0-beta.53" + sources."cdk8s-1.0.0-beta.54" sources."cdk8s-plus-22-1.0.0-beta.5" sources."chalk-4.1.2" sources."cliui-7.0.4" @@ -75310,7 +75417,7 @@ in sources."constructs-3.3.156" sources."date-format-3.0.0" sources."debug-4.3.2" - sources."decamelize-5.0.0" + sources."decamelize-5.0.1" sources."deep-equal-2.0.5" sources."define-properties-1.1.3" sources."detect-indent-5.0.0" @@ -75318,7 +75425,7 @@ in sources."dot-case-3.0.4" sources."emoji-regex-8.0.0" sources."entities-2.0.3" - sources."es-abstract-1.18.7" + sources."es-abstract-1.19.1" sources."es-get-iterator-1.1.2" sources."es-to-primitive-1.2.1" sources."escalade-3.1.1" @@ -75355,10 +75462,12 @@ in sources."is-number-object-1.0.6" sources."is-regex-1.1.4" sources."is-set-2.0.2" + sources."is-shared-array-buffer-1.0.1" sources."is-string-1.0.7" sources."is-symbol-1.0.4" sources."is-typed-array-1.1.8" sources."is-weakmap-2.0.1" + sources."is-weakref-1.0.1" sources."is-weakset-2.0.1" sources."isarray-2.0.5" (sources."jsii-1.35.0" // { @@ -75430,7 +75539,7 @@ in sources."snake-case-3.0.4" sources."sort-json-2.0.0" sources."spdx-license-list-6.4.0" - sources."sscaff-1.2.80" + sources."sscaff-1.2.84" (sources."streamroller-2.2.4" // { dependencies = [ sources."date-format-2.1.0" @@ -75517,7 +75626,7 @@ in sources."tslib-2.1.0" ]; }) - sources."@graphql-tools/import-6.4.1" + sources."@graphql-tools/import-6.4.2" (sources."@graphql-tools/load-6.2.8" // { dependencies = [ sources."tslib-2.2.0" @@ -75530,13 +75639,13 @@ in }) (sources."@graphql-tools/mock-8.4.0" // { dependencies = [ - sources."@graphql-tools/utils-8.2.3" + sources."@graphql-tools/utils-8.2.4" ]; }) (sources."@graphql-tools/schema-8.2.0" // { dependencies = [ sources."@graphql-tools/merge-8.1.2" - sources."@graphql-tools/utils-8.2.3" + sources."@graphql-tools/utils-8.2.4" ]; }) (sources."@graphql-tools/utils-7.10.0" // { @@ -75572,7 +75681,7 @@ in sources."@types/express-serve-static-core-4.17.24" sources."@types/long-4.0.1" sources."@types/mime-1.3.2" - sources."@types/node-14.17.19" + sources."@types/node-14.17.20" sources."@types/node-fetch-2.5.12" sources."@types/qs-6.9.7" sources."@types/range-parser-1.2.4" @@ -75604,7 +75713,7 @@ in sources."apollo-server-caching-3.1.0" (sources."apollo-server-core-3.3.0" // { dependencies = [ - sources."@graphql-tools/utils-8.2.3" + sources."@graphql-tools/utils-8.2.4" ]; }) sources."apollo-server-env-4.0.3" @@ -75669,7 +75778,7 @@ in sources."ci-info-2.0.0" sources."cli-boxes-2.2.1" sources."cli-cursor-3.1.0" - sources."cli-spinners-2.6.0" + sources."cli-spinners-2.6.1" sources."cli-truncate-2.1.0" sources."cli-width-3.0.0" sources."cliui-7.0.4" @@ -75738,7 +75847,7 @@ in sources."encodeurl-1.0.2" sources."end-of-stream-1.4.4" sources."entities-2.0.3" - sources."es-abstract-1.18.7" + sources."es-abstract-1.19.1" (sources."es-get-iterator-1.1.2" // { dependencies = [ sources."isarray-2.0.5" @@ -75855,6 +75964,7 @@ in sources."is-number-object-1.0.6" sources."is-regex-1.1.4" sources."is-set-2.0.2" + sources."is-shared-array-buffer-1.0.1" sources."is-stream-2.0.1" sources."is-string-1.0.7" sources."is-symbol-1.0.4" @@ -75862,6 +75972,7 @@ in sources."is-unicode-supported-0.1.0" sources."is-valid-domain-0.1.2" sources."is-weakmap-2.0.1" + sources."is-weakref-1.0.1" sources."is-weakset-2.0.1" sources."is-wsl-2.2.0" sources."isarray-1.0.0" @@ -75879,7 +75990,7 @@ in dependencies = [ sources."clone-2.1.2" sources."codemaker-1.35.0" - sources."decamelize-5.0.0" + sources."decamelize-5.0.1" sources."escape-string-regexp-4.0.0" sources."fs-extra-9.1.0" sources."yargs-16.2.0" @@ -75949,8 +76060,8 @@ in sources."methods-1.1.2" sources."micromatch-4.0.4" sources."mime-1.6.0" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."mimic-fn-2.1.0" sources."minimatch-3.0.4" sources."minimist-1.2.5" @@ -76007,7 +76118,7 @@ in sources."range-parser-1.2.1" sources."raw-body-2.4.0" sources."react-16.14.0" - sources."react-devtools-core-4.18.0" + sources."react-devtools-core-4.19.1" sources."react-is-16.13.1" sources."react-reconciler-0.24.0" sources."readable-stream-3.6.0" @@ -76025,7 +76136,7 @@ in sources."rfdc-1.3.0" sources."run-async-2.4.1" sources."run-parallel-1.2.0" - (sources."rxjs-7.3.0" // { + (sources."rxjs-7.3.1" // { dependencies = [ sources."tslib-2.1.0" ]; @@ -76052,7 +76163,7 @@ in sources."shebang-regex-3.0.0" sources."shell-quote-1.7.2" sources."side-channel-1.0.4" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."slash-3.0.0" (sources."slice-ansi-3.0.0" // { dependencies = [ @@ -76064,7 +76175,7 @@ in sources."sort-json-2.0.0" sources."source-map-0.5.7" sources."spdx-license-list-6.4.0" - sources."sscaff-1.2.80" + sources."sscaff-1.2.84" (sources."stack-utils-2.0.5" // { dependencies = [ sources."escape-string-regexp-2.0.0" @@ -76166,15 +76277,15 @@ in clean-css-cli = nodeEnv.buildNodePackage { name = "clean-css-cli"; packageName = "clean-css-cli"; - version = "5.3.3"; + version = "5.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/clean-css-cli/-/clean-css-cli-5.3.3.tgz"; - sha512 = "Reo/w25/3J2uRL4EFHvo92Tv97uhefyHranTpxXNqQ7iIRB8oxRNVlXC+Xcq8RWO2LjSyOofrb7AU6I6oXpPpA=="; + url = "https://registry.npmjs.org/clean-css-cli/-/clean-css-cli-5.4.1.tgz"; + sha512 = "LQLY8HKQP2d/M0FVbNfpoVbHMHh/ARIET2r80odAKuTN0RUOp8J8pU9eDlqMa1yezuUH3ipQxTVM/+vpunAhnA=="; }; dependencies = [ sources."balanced-match-1.0.2" sources."brace-expansion-1.1.11" - sources."clean-css-5.2.0" + sources."clean-css-5.2.1" sources."commander-7.2.0" sources."concat-map-0.0.1" sources."fs.realpath-1.0.0" @@ -76268,7 +76379,7 @@ in sources."semver-5.7.1" sources."shebang-command-1.2.0" sources."shebang-regex-1.0.0" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."spdx-correct-3.1.1" sources."spdx-exceptions-2.3.0" sources."spdx-expression-parse-3.0.1" @@ -76474,10 +76585,10 @@ in coc-explorer = nodeEnv.buildNodePackage { name = "coc-explorer"; packageName = "coc-explorer"; - version = "0.18.18"; + version = "0.18.19"; src = fetchurl { - url = "https://registry.npmjs.org/coc-explorer/-/coc-explorer-0.18.18.tgz"; - sha512 = "tP0AEEVR5/qQv/NA3OZAuPdrYBITpidYgBnlYtKW+BDBFrWbLwCnOQQlGORBDNimpIt4l+/yMeNxY9S6WLLYcg=="; + url = "https://registry.npmjs.org/coc-explorer/-/coc-explorer-0.18.19.tgz"; + sha512 = "Pxsf2EVaepuqr3yHe/6RZS/YIfJK84RQdaWUGFSpVE6621oUIhjw3M+vAl3HXBQGi8H68zLNivdht+X2ZJE1gA=="; }; dependencies = [ sources."@sindresorhus/df-3.1.1" @@ -76536,7 +76647,7 @@ in sources."semver-6.3.0" sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."slash-1.0.0" sources."strip-final-newline-2.0.0" sources."trash-7.2.0" @@ -76756,10 +76867,10 @@ in coc-markdownlint = nodeEnv.buildNodePackage { name = "coc-markdownlint"; packageName = "coc-markdownlint"; - version = "1.11.1"; + version = "1.12.3"; src = fetchurl { - url = "https://registry.npmjs.org/coc-markdownlint/-/coc-markdownlint-1.11.1.tgz"; - sha512 = "9tUMyH60l/jD8ebENGZfqlfkLrdZvavEc9UhX9E1c7+rwH5oaiCODYYh8Ffz1FyV+ZYQS2StQO1zmgDrqZhV7g=="; + url = "https://registry.npmjs.org/coc-markdownlint/-/coc-markdownlint-1.12.3.tgz"; + sha512 = "b/p24GkRScjkgejrxi/K8bqhK2nHjZgm2aCDi23mk7oWYb/o1M7W9IfC1zn2xR8PbbY3Zg2YT/y38AOD65tU6A=="; }; buildInputs = globalBuildInputs; meta = { @@ -76816,7 +76927,7 @@ in sources."define-properties-1.1.3" sources."duplexer2-0.1.4" sources."end-of-stream-1.4.4" - sources."es-abstract-1.18.7" + sources."es-abstract-1.19.1" sources."es-to-primitive-1.2.1" sources."event-lite-0.1.2" sources."execa-1.0.0" @@ -76860,9 +76971,11 @@ in sources."is-negative-zero-2.0.1" sources."is-number-object-1.0.6" sources."is-regex-1.1.4" + sources."is-shared-array-buffer-1.0.1" sources."is-stream-1.1.0" sources."is-string-1.0.7" sources."is-symbol-1.0.4" + sources."is-weakref-1.0.1" sources."is-wsl-2.2.0" sources."isarray-1.0.0" sources."isexe-2.0.0" @@ -76921,7 +77034,7 @@ in sources."shebang-regex-1.0.0" sources."shell-quote-1.7.2" sources."side-channel-1.0.4" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" (sources."streamroller-2.2.4" // { dependencies = [ sources."date-format-2.1.0" @@ -77073,7 +77186,7 @@ in sources."callsites-3.1.0" sources."camelcase-2.1.1" sources."camelcase-keys-2.1.0" - sources."caniuse-lite-1.0.30001261" + sources."caniuse-lite-1.0.30001263" sources."capture-stack-trace-1.0.1" sources."ccount-1.1.0" (sources."chalk-4.1.2" // { @@ -77171,7 +77284,7 @@ in sources."domutils-1.7.0" sources."dot-prop-5.3.0" sources."duplexer3-0.1.4" - sources."electron-to-chromium-1.3.853" + sources."electron-to-chromium-1.3.857" sources."emoji-regex-8.0.0" sources."end-of-stream-1.4.4" sources."enquirer-2.3.6" @@ -77388,7 +77501,7 @@ in sources."is-extglob-2.1.1" sources."is-finite-1.1.0" sources."is-fullwidth-code-point-3.0.0" - sources."is-glob-4.0.2" + sources."is-glob-4.0.3" sources."is-hexadecimal-1.0.4" sources."is-installed-globally-0.1.0" sources."is-npm-1.0.0" @@ -77723,7 +77836,7 @@ in }) sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."slash-1.0.0" (sources."slice-ansi-4.0.0" // { dependencies = [ @@ -77836,7 +77949,7 @@ in sources."sugarss-1.0.1" sources."supports-color-5.5.0" sources."svg-tags-1.0.0" - (sources."table-6.7.1" // { + (sources."table-6.7.2" // { dependencies = [ sources."ajv-8.6.3" sources."json-schema-traverse-1.0.0" @@ -77970,13 +78083,13 @@ in coc-pyright = nodeEnv.buildNodePackage { name = "coc-pyright"; packageName = "coc-pyright"; - version = "1.1.171"; + version = "1.1.172"; src = fetchurl { - url = "https://registry.npmjs.org/coc-pyright/-/coc-pyright-1.1.171.tgz"; - sha512 = "9IJoxR4CTJb2Eb/uVAtfZMKxTuotft34LVc851yg4svZU1glNxBm8AlHJOE2IpRpdH4kHYvOpidx5Ggq3J5RIQ=="; + url = "https://registry.npmjs.org/coc-pyright/-/coc-pyright-1.1.172.tgz"; + sha512 = "Wu+aAcy/8OR8Q7tE3039iSCe+Kc0BV36hssXinCbzLQoTpgWXjbPQpdkZFUgtzYOb9Xbx1kNGSd/XFHp2VM/dg=="; }; dependencies = [ - sources."pyright-1.1.171" + sources."pyright-1.1.173" ]; buildInputs = globalBuildInputs; meta = { @@ -78169,11 +78282,7 @@ in sources."array-union-2.1.0" sources."arrify-1.0.1" sources."astral-regex-2.0.0" - (sources."autoprefixer-9.8.7" // { - dependencies = [ - sources."nanocolors-0.2.12" - ]; - }) + sources."autoprefixer-9.8.7" sources."bail-1.0.5" sources."balanced-match-2.0.0" (sources."brace-expansion-1.1.11" // { @@ -78182,11 +78291,11 @@ in ]; }) sources."braces-3.0.2" - sources."browserslist-4.17.1" + sources."browserslist-4.17.2" sources."callsites-3.1.0" sources."camelcase-5.3.1" sources."camelcase-keys-6.2.2" - sources."caniuse-lite-1.0.30001261" + sources."caniuse-lite-1.0.30001263" (sources."chalk-4.1.2" // { dependencies = [ sources."ansi-styles-4.3.0" @@ -78223,7 +78332,7 @@ in sources."domelementtype-1.3.1" sources."domhandler-2.4.2" sources."domutils-1.7.0" - sources."electron-to-chromium-1.3.853" + sources."electron-to-chromium-1.3.857" sources."emoji-regex-8.0.0" sources."entities-1.1.2" sources."error-ex-1.3.2" @@ -78279,7 +78388,7 @@ in sources."is-decimal-1.0.4" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" - sources."is-glob-4.0.2" + sources."is-glob-4.0.3" sources."is-hexadecimal-1.0.4" sources."is-number-7.0.0" sources."is-plain-obj-2.1.0" @@ -78320,8 +78429,8 @@ in ]; }) sources."ms-2.1.2" - sources."nanocolors-0.1.12" - sources."node-releases-1.1.76" + sources."nanocolors-0.2.12" + sources."node-releases-1.1.77" (sources."normalize-package-data-3.0.3" // { dependencies = [ sources."semver-7.3.5" @@ -78345,7 +78454,6 @@ in sources."picomatch-2.3.0" (sources."postcss-7.0.38" // { dependencies = [ - sources."nanocolors-0.2.12" sources."source-map-0.6.1" ]; }) @@ -78389,7 +78497,7 @@ in sources."run-parallel-1.2.0" sources."safe-buffer-5.1.2" sources."semver-6.3.0" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."slash-3.0.0" (sources."slice-ansi-4.0.0" // { dependencies = [ @@ -78417,7 +78525,7 @@ in sources."sugarss-2.0.0" sources."supports-color-5.5.0" sources."svg-tags-1.0.0" - sources."table-6.7.1" + sources."table-6.7.2" sources."to-fast-properties-2.0.0" sources."to-regex-range-5.0.1" sources."trim-newlines-3.0.1" @@ -78717,7 +78825,7 @@ in sources."is-core-module-2.7.0" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" - sources."is-glob-4.0.2" + sources."is-glob-4.0.3" sources."isexe-2.0.0" sources."js-tokens-4.0.0" sources."js-yaml-3.14.1" @@ -78764,7 +78872,7 @@ in sources."strip-ansi-6.0.1" sources."strip-json-comments-3.1.1" sources."supports-color-5.5.0" - (sources."table-6.7.1" // { + (sources."table-6.7.2" // { dependencies = [ sources."ajv-8.6.3" sources."json-schema-traverse-1.0.0" @@ -79066,7 +79174,7 @@ in sources."semver-5.7.1" sources."shebang-command-1.2.0" sources."shebang-regex-1.0.0" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."slash-2.0.0" (sources."string_decoder-1.1.1" // { dependencies = [ @@ -79154,7 +79262,7 @@ in sources."onetime-2.0.1" sources."ora-1.4.0" sources."restore-cursor-2.0.0" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."string-width-2.1.1" sources."strip-ansi-4.0.0" sources."supports-color-5.5.0" @@ -79760,7 +79868,7 @@ in sources."is-docker-2.2.1" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-1.0.0" - sources."is-glob-4.0.2" + sources."is-glob-4.0.3" sources."is-installed-globally-0.3.2" sources."is-lambda-1.0.1" sources."is-npm-4.0.0" @@ -79811,8 +79919,8 @@ in sources."methods-1.1.2" sources."micromatch-4.0.4" sources."mime-1.6.0" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."mimic-fn-2.1.0" sources."mimic-response-1.0.1" sources."minimatch-3.0.4" @@ -79963,7 +80071,7 @@ in sources."setprototypeof-1.1.1" sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."slash-3.0.0" sources."smart-buffer-4.2.0" sources."socks-2.6.1" @@ -80078,7 +80186,7 @@ in sources."@types/glob-7.1.4" sources."@types/minimatch-3.0.5" sources."@types/minimist-1.2.2" - sources."@types/node-16.10.1" + sources."@types/node-16.10.2" sources."@types/normalize-package-data-2.4.1" sources."aggregate-error-3.1.0" sources."ansi-styles-3.2.1" @@ -80223,7 +80331,7 @@ in sources."is-descriptor-1.0.2" sources."is-extendable-0.1.1" sources."is-extglob-2.1.1" - sources."is-glob-4.0.2" + sources."is-glob-4.0.3" (sources."is-number-3.0.0" // { dependencies = [ sources."kind-of-3.2.2" @@ -80449,7 +80557,7 @@ in sources."@cycle/run-3.4.0" sources."@cycle/time-0.10.1" sources."@types/cookiejar-2.1.2" - sources."@types/node-16.10.1" + sources."@types/node-16.10.2" sources."@types/superagent-3.8.2" sources."ansi-escapes-3.2.0" sources."ansi-regex-2.1.1" @@ -80470,7 +80578,7 @@ in sources."combine-errors-3.0.3" sources."combined-stream-1.0.8" sources."component-emitter-1.3.0" - sources."cookiejar-2.1.2" + sources."cookiejar-2.1.3" sources."core-util-is-1.0.3" sources."cross-spawn-5.1.0" sources."cssauron-1.4.0" @@ -80530,8 +80638,8 @@ in sources."lru-cache-4.1.5" sources."methods-1.1.2" sources."mime-1.6.0" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."mimic-fn-1.2.0" sources."minimist-1.2.5" sources."ms-2.1.3" @@ -80559,7 +80667,7 @@ in sources."shebang-command-1.2.0" sources."shebang-regex-1.0.0" sources."side-channel-1.0.4" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."snabbdom-0.7.0" sources."snabbdom-selector-1.2.1" sources."sorted-immutable-list-1.1.0" @@ -81085,8 +81193,8 @@ in sources."merkle-tree-stream-3.0.3" sources."micromatch-3.1.10" sources."mime-2.5.2" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."mimic-response-2.1.0" sources."min-document-2.19.0" sources."minimatch-3.0.4" @@ -81209,7 +81317,7 @@ in }) sources."shebang-command-1.2.0" sources."shebang-regex-1.0.0" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" (sources."signed-varint-2.0.1" // { dependencies = [ sources."varint-5.0.2" @@ -81538,7 +81646,7 @@ in sources."@babel/template-7.15.4" sources."@babel/traverse-7.15.4" sources."@babel/types-7.15.6" - sources."@blueprintjs/colors-4.0.0-alpha.1" + sources."@blueprintjs/colors-4.0.0-beta.0" sources."@blueprintjs/core-3.50.4" sources."@blueprintjs/icons-3.30.2" sources."@electron/get-1.13.0" @@ -81564,7 +81672,7 @@ in sources."@types/geojson-7946.0.8" sources."@types/mapbox-gl-0.54.5" sources."@types/mime-types-2.1.1" - sources."@types/node-14.17.19" + sources."@types/node-14.17.20" sources."@types/node-fetch-2.5.12" sources."@types/prop-types-15.7.4" sources."@types/rc-1.2.0" @@ -81610,7 +81718,7 @@ in sources."extend-shallow-2.0.1" ]; }) - sources."browserslist-4.17.1" + sources."browserslist-4.17.2" sources."buffer-crc32-0.2.13" sources."buffer-from-1.1.2" sources."cache-base-1.0.1" @@ -81621,7 +81729,7 @@ in ]; }) sources."call-bind-1.0.2" - sources."caniuse-lite-1.0.30001261" + sources."caniuse-lite-1.0.30001263" sources."chalk-2.4.2" sources."chokidar-2.1.8" (sources."class-utils-0.3.6" // { @@ -81688,8 +81796,8 @@ in sources."dom4-2.1.6" sources."duplexer3-0.1.4" sources."earcut-2.2.3" - sources."electron-13.5.0" - sources."electron-to-chromium-1.3.853" + sources."electron-13.5.1" + sources."electron-to-chromium-1.3.857" sources."emoji-js-clean-4.0.0" sources."emoji-mart-3.0.1" sources."emoji-regex-9.2.2" @@ -81807,7 +81915,7 @@ in sources."is-descriptor-1.0.2" sources."is-extendable-0.1.1" sources."is-extglob-2.1.1" - sources."is-glob-4.0.2" + sources."is-glob-4.0.3" sources."is-negated-glob-1.0.0" (sources."is-number-3.0.0" // { dependencies = [ @@ -81850,8 +81958,8 @@ in }) sources."memoize-one-5.2.1" sources."micromatch-3.1.10" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."mimic-response-1.0.1" sources."minimist-1.2.5" (sources."mixin-deep-1.3.2" // { @@ -81864,12 +81972,12 @@ in sources."ms-2.1.2" sources."murmurhash-js-1.0.0" sources."nan-2.15.0" - sources."nanocolors-0.1.12" + sources."nanocolors-0.2.12" sources."nanomatch-1.2.13" sources."napi-macros-2.0.0" sources."node-fetch-2.6.5" sources."node-gyp-build-4.3.0" - sources."node-releases-1.1.76" + sources."node-releases-1.1.77" sources."normalize-path-3.0.0" sources."normalize-url-4.5.1" sources."normalize.css-8.0.1" @@ -82180,7 +82288,7 @@ in sources."inflight-1.0.6" sources."inherits-2.0.4" sources."is-extglob-2.1.1" - sources."is-glob-4.0.2" + sources."is-glob-4.0.3" sources."is-number-7.0.0" sources."is-path-cwd-2.2.0" sources."is-path-inside-3.0.3" @@ -82268,7 +82376,7 @@ in dependencies = [ sources."@fast-csv/format-4.3.5" sources."@fast-csv/parse-4.3.6" - sources."@types/node-14.17.19" + sources."@types/node-14.17.20" sources."JSONStream-1.3.5" sources."ajv-6.12.6" sources."asn1-0.2.4" @@ -82335,8 +82443,8 @@ in sources."lodash.uniq-4.5.0" sources."lossless-json-1.0.5" sources."method-missing-1.2.4" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."minimist-1.2.5" sources."oauth-sign-0.9.0" sources."p-finally-1.0.0" @@ -82471,7 +82579,7 @@ in sources."@types/http-cache-semantics-4.0.1" sources."@types/keyv-3.1.3" sources."@types/minimatch-3.0.5" - sources."@types/node-16.10.1" + sources."@types/node-16.10.2" sources."@types/responselike-1.0.0" sources."@types/yauzl-2.9.2" sources."abbrev-1.1.1" @@ -82533,7 +82641,7 @@ in sources."chromium-pickle-js-0.2.0" sources."clean-stack-2.2.0" sources."cli-cursor-3.1.0" - sources."cli-spinners-2.6.0" + sources."cli-spinners-2.6.1" sources."cli-width-3.0.0" (sources."cliui-7.0.4" // { dependencies = [ @@ -82737,7 +82845,7 @@ in sources."is-extglob-2.1.1" sources."is-finite-1.1.0" sources."is-fullwidth-code-point-1.0.0" - sources."is-glob-4.0.2" + sources."is-glob-4.0.3" sources."is-interactive-1.0.0" sources."is-lambda-1.0.1" sources."is-number-7.0.0" @@ -82791,8 +82899,8 @@ in }) sources."merge2-1.4.1" sources."micromatch-4.0.4" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."mimic-fn-2.1.0" sources."mimic-response-1.0.1" sources."minimatch-3.0.4" @@ -82927,7 +83035,7 @@ in sources."roarr-2.15.4" sources."run-async-2.4.1" sources."run-parallel-1.2.0" - sources."rxjs-7.3.0" + sources."rxjs-7.3.1" sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" sources."semver-7.3.5" @@ -82936,7 +83044,7 @@ in sources."set-blocking-2.0.0" sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."single-line-log-1.1.2" sources."smart-buffer-4.2.0" sources."socks-2.6.1" @@ -83132,13 +83240,13 @@ in sources."auto-bind-4.0.0" sources."balanced-match-1.0.2" sources."brace-expansion-1.1.11" - sources."browserslist-4.17.1" + sources."browserslist-4.17.2" sources."caller-callsite-2.0.0" sources."caller-path-2.0.0" sources."callsites-2.0.0" sources."camelcase-5.3.1" sources."camelcase-keys-6.2.2" - sources."caniuse-lite-1.0.30001261" + sources."caniuse-lite-1.0.30001263" sources."chalk-2.4.2" sources."ci-info-2.0.0" sources."cli-boxes-2.2.1" @@ -83167,7 +83275,7 @@ in ]; }) sources."dot-prop-5.3.0" - sources."electron-to-chromium-1.3.853" + sources."electron-to-chromium-1.3.857" sources."emoji-regex-8.0.0" sources."emojilib-2.4.0" sources."end-of-stream-1.4.4" @@ -83256,9 +83364,9 @@ in sources."minimist-1.2.5" sources."minimist-options-4.1.0" sources."ms-2.1.2" - sources."nanocolors-0.1.12" + sources."nanocolors-0.2.12" sources."nice-try-1.0.5" - sources."node-releases-1.1.76" + sources."node-releases-1.1.77" sources."normalize-package-data-2.5.0" sources."npm-run-path-2.0.2" sources."object-assign-4.1.1" @@ -83293,7 +83401,7 @@ in sources."punycode-2.1.1" sources."quick-lru-4.0.1" sources."react-16.14.0" - sources."react-devtools-core-4.18.0" + sources."react-devtools-core-4.19.1" sources."react-is-16.13.1" sources."react-reconciler-0.24.0" (sources."read-pkg-5.2.0" // { @@ -83321,7 +83429,7 @@ in sources."shebang-command-1.2.0" sources."shebang-regex-1.0.0" sources."shell-quote-1.7.2" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."skin-tone-1.0.0" (sources."slice-ansi-3.0.0" // { dependencies = [ @@ -83411,7 +83519,7 @@ in sources."@fluentui/date-time-utilities-7.9.1" sources."@fluentui/dom-utilities-1.1.2" sources."@fluentui/keyboard-key-0.2.17" - sources."@fluentui/react-7.176.2" + sources."@fluentui/react-7.177.1" sources."@fluentui/react-focus-7.18.0" sources."@fluentui/react-window-provider-1.0.2" sources."@fluentui/theme-1.7.4" @@ -84164,7 +84272,7 @@ in sources."is-extendable-0.1.1" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-2.0.0" - sources."is-glob-4.0.2" + sources."is-glob-4.0.3" sources."is-negated-glob-1.0.0" sources."is-number-7.0.0" sources."is-path-cwd-2.2.0" @@ -84288,8 +84396,8 @@ in ]; }) sources."mime-1.6.0" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."mimic-fn-1.2.0" sources."mimic-response-1.0.1" sources."minimalistic-assert-1.0.1" @@ -84454,7 +84562,7 @@ in sources."object.map-1.0.1" sources."object.pick-1.3.0" sources."object.reduce-1.0.1" - sources."office-ui-fabric-react-7.176.2" + sources."office-ui-fabric-react-7.177.1" sources."on-finished-2.3.0" sources."on-headers-1.0.2" sources."once-1.4.0" @@ -84713,7 +84821,7 @@ in sources."setprototypeof-1.1.1" sources."sha.js-2.4.11" sources."sift-7.0.1" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."slash-3.0.0" (sources."snapdragon-0.8.2" // { dependencies = [ @@ -85193,7 +85301,7 @@ in sources."inherits-2.0.4" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" - sources."is-glob-4.0.2" + sources."is-glob-4.0.3" sources."isexe-2.0.0" sources."js-tokens-4.0.0" sources."js-yaml-3.14.1" @@ -85234,7 +85342,7 @@ in sources."strip-ansi-6.0.1" sources."strip-json-comments-3.1.1" sources."supports-color-5.5.0" - (sources."table-6.7.1" // { + (sources."table-6.7.2" // { dependencies = [ sources."ajv-8.6.3" sources."json-schema-traverse-1.0.0" @@ -85357,7 +85465,7 @@ in sources."inherits-2.0.4" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" - sources."is-glob-4.0.2" + sources."is-glob-4.0.3" sources."isexe-2.0.0" sources."js-tokens-4.0.0" sources."js-yaml-3.14.1" @@ -85399,7 +85507,7 @@ in sources."strip-ansi-6.0.1" sources."strip-json-comments-3.1.1" sources."supports-color-8.1.1" - (sources."table-6.7.1" // { + (sources."table-6.7.2" // { dependencies = [ sources."ajv-8.6.3" sources."json-schema-traverse-1.0.0" @@ -85445,10 +85553,10 @@ in expo-cli = nodeEnv.buildNodePackage { name = "expo-cli"; packageName = "expo-cli"; - version = "4.12.0"; + version = "4.12.1"; src = fetchurl { - url = "https://registry.npmjs.org/expo-cli/-/expo-cli-4.12.0.tgz"; - sha512 = "cDRfs9blUWPPicoWQ9FCGn7XPzuHfz6oQ63KIpDLMBnerMxNqwEjSQ9jvH5RbclRgKFIQcbDiaBagSIkn07g5g=="; + url = "https://registry.npmjs.org/expo-cli/-/expo-cli-4.12.1.tgz"; + sha512 = "bA212xB4Luw10FGlqvCB472WZZzlIhXt2du3+YJPyAgkPJy18EmPEAMr498EV6egRSnEY5dMx0Bj3bjNOh80Xw=="; }; dependencies = [ sources."@babel/code-frame-7.10.4" @@ -85465,7 +85573,7 @@ in sources."@babel/helper-builder-binary-assignment-operator-visitor-7.15.4" (sources."@babel/helper-compilation-targets-7.15.4" // { dependencies = [ - sources."browserslist-4.17.1" + sources."browserslist-4.17.2" sources."semver-6.3.0" ]; }) @@ -85585,7 +85693,7 @@ in sources."temp-dir-2.0.0" ]; }) - sources."@expo/dev-tools-0.13.116" + sources."@expo/dev-tools-0.13.117" (sources."@expo/devcert-1.0.0" // { dependencies = [ sources."debug-3.2.7" @@ -85914,7 +86022,7 @@ in }) sources."camelcase-6.2.0" sources."caniuse-api-3.0.0" - sources."caniuse-lite-1.0.30001261" + sources."caniuse-lite-1.0.30001263" sources."caseless-0.12.0" (sources."chalk-4.1.2" // { dependencies = [ @@ -85965,7 +86073,7 @@ in }) sources."cli-boxes-2.2.1" sources."cli-cursor-2.1.0" - sources."cli-spinners-2.6.0" + sources."cli-spinners-2.6.1" sources."cli-table3-0.6.0" (sources."cliui-5.0.0" // { dependencies = [ @@ -86048,7 +86156,7 @@ in }) (sources."core-js-compat-3.18.1" // { dependencies = [ - sources."browserslist-4.17.1" + sources."browserslist-4.17.2" sources."semver-7.0.0" ]; }) @@ -86180,7 +86288,7 @@ in sources."duplexify-3.7.1" sources."ecc-jsbn-0.1.2" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.3.853" + sources."electron-to-chromium-1.3.857" (sources."elliptic-6.5.4" // { dependencies = [ sources."bn.js-4.12.0" @@ -86209,7 +86317,7 @@ in sources."errno-0.1.8" sources."error-ex-1.3.2" sources."errorhandler-1.5.1" - sources."es-abstract-1.18.7" + sources."es-abstract-1.19.1" sources."es-to-primitive-1.2.1" sources."escalade-3.1.1" sources."escape-html-1.0.3" @@ -86505,7 +86613,7 @@ in sources."is-extendable-0.1.1" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" - sources."is-glob-4.0.2" + sources."is-glob-4.0.3" (sources."is-invalid-path-0.1.0" // { dependencies = [ sources."is-extglob-1.0.0" @@ -86552,11 +86660,13 @@ in sources."is-regex-1.1.4" sources."is-resolvable-1.1.0" sources."is-root-2.1.0" + sources."is-shared-array-buffer-1.0.1" sources."is-stream-2.0.1" sources."is-string-1.0.7" sources."is-symbol-1.0.4" sources."is-typedarray-1.0.0" sources."is-valid-path-0.1.1" + sources."is-weakref-1.0.1" sources."is-windows-1.0.2" sources."is-wsl-2.2.0" sources."isarray-1.0.0" @@ -86677,8 +86787,8 @@ in ]; }) sources."mime-1.4.1" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."mimic-fn-1.2.0" sources."mimic-response-1.0.1" (sources."mini-css-extract-plugin-0.5.0" // { @@ -86749,7 +86859,7 @@ in sources."mv-2.1.1" sources."mz-2.7.0" sources."nan-2.15.0" - sources."nanocolors-0.1.12" + sources."nanocolors-0.2.12" sources."nanomatch-1.2.13" sources."ncp-2.0.0" (sources."needle-2.9.1" // { @@ -86782,7 +86892,7 @@ in ]; }) sources."node-modules-regexp-1.0.0" - sources."node-releases-1.1.76" + sources."node-releases-1.1.77" sources."nopt-5.0.0" sources."normalize-path-3.0.0" sources."normalize-url-6.1.0" @@ -86979,7 +87089,6 @@ in sources."posix-character-classes-0.1.1" (sources."postcss-7.0.38" // { dependencies = [ - sources."nanocolors-0.2.12" sources."source-map-0.6.1" ]; }) @@ -87284,7 +87393,7 @@ in sources."shebang-regex-1.0.0" sources."shell-quote-1.7.2" sources."side-channel-1.0.4" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."simple-plist-1.1.1" (sources."simple-swizzle-0.2.2" // { dependencies = [ @@ -87751,7 +87860,7 @@ in sources."uuid-7.0.3" ]; }) - (sources."xdl-59.2.0" // { + (sources."xdl-59.2.1" // { dependencies = [ sources."bplist-parser-0.3.0" sources."chownr-1.1.4" @@ -87846,7 +87955,7 @@ in sources."@babel/traverse-7.15.4" sources."@babel/types-7.15.6" sources."@types/minimist-1.2.2" - sources."@types/node-16.10.1" + sources."@types/node-16.10.2" sources."@types/normalize-package-data-2.4.1" sources."@types/yauzl-2.9.2" sources."@types/yoga-layout-1.9.2" @@ -87865,7 +87974,7 @@ in sources."base64-js-1.5.1" sources."bl-4.1.0" sources."brace-expansion-1.1.11" - sources."browserslist-4.17.1" + sources."browserslist-4.17.2" sources."buffer-5.7.1" sources."buffer-crc32-0.2.13" sources."caller-callsite-2.0.0" @@ -87873,13 +87982,13 @@ in sources."callsites-2.0.0" sources."camelcase-5.3.1" sources."camelcase-keys-6.2.2" - sources."caniuse-lite-1.0.30001261" + sources."caniuse-lite-1.0.30001263" sources."chalk-2.4.2" sources."chownr-1.1.4" sources."ci-info-2.0.0" sources."cli-boxes-2.2.1" sources."cli-cursor-3.1.0" - sources."cli-spinners-2.6.0" + sources."cli-spinners-2.6.1" sources."cli-truncate-2.1.0" sources."code-excerpt-3.0.0" sources."color-convert-1.9.3" @@ -87897,7 +88006,7 @@ in }) sources."delay-5.0.0" sources."devtools-protocol-0.0.869402" - sources."electron-to-chromium-1.3.853" + sources."electron-to-chromium-1.3.857" sources."emoji-regex-8.0.0" sources."end-of-stream-1.4.4" sources."error-ex-1.3.2" @@ -87964,9 +88073,9 @@ in sources."minimist-options-4.1.0" sources."mkdirp-classic-0.5.3" sources."ms-2.1.2" - sources."nanocolors-0.1.12" + sources."nanocolors-0.2.12" sources."node-fetch-2.6.5" - sources."node-releases-1.1.76" + sources."node-releases-1.1.77" (sources."normalize-package-data-3.0.3" // { dependencies = [ sources."semver-7.3.5" @@ -87992,7 +88101,7 @@ in sources."puppeteer-9.1.1" sources."quick-lru-4.0.1" sources."react-16.14.0" - sources."react-devtools-core-4.18.0" + sources."react-devtools-core-4.19.1" sources."react-is-16.13.1" sources."react-reconciler-0.24.0" (sources."read-pkg-5.2.0" // { @@ -88018,7 +88127,7 @@ in sources."scheduler-0.18.0" sources."semver-6.3.0" sources."shell-quote-1.7.2" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" (sources."slice-ansi-3.0.0" // { dependencies = [ sources."ansi-styles-4.3.0" @@ -88116,7 +88225,7 @@ in sources."tslib-2.3.1" ]; }) - (sources."@oclif/core-0.5.40" // { + (sources."@oclif/core-0.5.41" // { dependencies = [ sources."chalk-4.1.2" (sources."cli-ux-5.6.3" // { @@ -88245,7 +88354,7 @@ in sources."cli-boxes-2.2.1" sources."cli-cursor-3.1.0" sources."cli-progress-3.9.1" - sources."cli-spinners-2.6.0" + sources."cli-spinners-2.6.1" (sources."cli-table-0.3.6" // { dependencies = [ sources."colors-1.0.3" @@ -88465,7 +88574,7 @@ in sources."is-extendable-0.1.1" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" - sources."is-glob-4.0.2" + sources."is-glob-4.0.3" sources."is-interactive-1.0.0" sources."is-number-7.0.0" sources."is-object-1.0.2" @@ -88510,8 +88619,8 @@ in sources."map-visit-1.0.0" sources."merge2-1.4.1" sources."micromatch-4.0.4" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."mimic-fn-2.1.0" sources."mimic-response-1.0.1" sources."minimatch-3.0.4" @@ -88610,7 +88719,7 @@ in sources."reusify-1.0.4" sources."run-async-2.4.1" sources."run-parallel-1.2.0" - (sources."rxjs-7.3.0" // { + (sources."rxjs-7.3.1" // { dependencies = [ sources."tslib-2.1.0" ]; @@ -88626,7 +88735,7 @@ in }) sources."shebang-command-1.2.0" sources."shebang-regex-1.0.0" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."slash-3.0.0" (sources."snapdragon-0.8.2" // { dependencies = [ @@ -88765,10 +88874,10 @@ in firebase-tools = nodeEnv.buildNodePackage { name = "firebase-tools"; packageName = "firebase-tools"; - version = "9.18.0"; + version = "9.19.0"; src = fetchurl { - url = "https://registry.npmjs.org/firebase-tools/-/firebase-tools-9.18.0.tgz"; - sha512 = "yth3C6ZdzkXbQVKgmrIYn/NBvkCnstEfsTsqvLUL+Mo0s5Cq+JR8A8DKLJHyWBrWjKkT5R9VfefnkhHCUrjRNw=="; + url = "https://registry.npmjs.org/firebase-tools/-/firebase-tools-9.19.0.tgz"; + sha512 = "jo9IhtddYBXEwO5m99oPZ53H4KInfhyYWD5+j6LD1bCsT9M95u+hNx+oXnRBVNTJjbwvlv/stF+zDy1WrpU1FA=="; }; dependencies = [ (sources."@apidevtools/json-schema-ref-parser-9.0.9" // { @@ -88821,7 +88930,7 @@ in sources."@types/json-schema-7.0.9" sources."@types/long-4.0.1" sources."@types/minimatch-3.0.5" - sources."@types/node-16.10.1" + sources."@types/node-16.10.2" sources."JSONStream-1.3.5" sources."abbrev-1.1.1" sources."abort-controller-3.0.0" @@ -88937,7 +89046,7 @@ in ]; }) sources."cli-cursor-2.1.0" - sources."cli-spinners-2.6.0" + sources."cli-spinners-2.6.1" sources."cli-table-0.3.6" sources."cli-width-2.2.1" sources."cliui-7.0.4" @@ -89014,7 +89123,7 @@ in sources."deep-is-0.1.4" sources."defaults-1.0.3" sources."defer-to-connect-1.1.3" - sources."degenerator-2.2.0" + sources."degenerator-3.0.1" sources."delayed-stream-1.0.0" sources."delegates-1.0.0" sources."depd-1.1.2" @@ -89161,7 +89270,7 @@ in sources."glob-slasher-1.0.1" sources."global-dirs-2.1.0" sources."google-auth-library-6.1.6" - (sources."google-gax-2.26.0" // { + (sources."google-gax-2.27.0" // { dependencies = [ sources."google-auth-library-7.10.0" ]; @@ -89225,7 +89334,7 @@ in sources."is-ci-2.0.0" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" - sources."is-glob-4.0.2" + sources."is-glob-4.0.3" sources."is-installed-globally-0.3.2" sources."is-lambda-1.0.1" sources."is-npm-4.0.0" @@ -89330,8 +89439,8 @@ in sources."merge-descriptors-1.0.1" sources."methods-1.1.2" sources."mime-2.5.2" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."mimic-fn-1.2.0" sources."mimic-response-1.0.1" sources."minimatch-3.0.4" @@ -89400,8 +89509,8 @@ in sources."p-cancelable-1.1.0" sources."p-defer-3.0.0" sources."p-map-4.0.0" - sources."pac-proxy-agent-4.1.0" - sources."pac-resolver-4.2.0" + sources."pac-proxy-agent-5.0.0" + sources."pac-resolver-5.0.0" (sources."package-json-6.5.0" // { dependencies = [ sources."semver-6.3.0" @@ -89430,7 +89539,7 @@ in sources."proto3-json-serializer-0.1.4" sources."protobufjs-6.11.2" sources."proxy-addr-2.0.7" - (sources."proxy-agent-4.0.1" // { + (sources."proxy-agent-5.0.0" // { dependencies = [ sources."lru-cache-5.1.1" sources."yallist-3.1.1" @@ -89504,7 +89613,7 @@ in sources."setprototypeof-1.1.1" sources."shebang-command-1.2.0" sources."shebang-regex-1.0.0" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."simple-swizzle-0.2.2" sources."smart-buffer-4.2.0" sources."socks-2.6.1" @@ -89641,6 +89750,7 @@ in sources."core-util-is-1.0.2" ]; }) + sources."vm2-3.9.3" sources."wcwidth-1.0.1" sources."webidl-conversions-3.0.1" sources."whatwg-url-5.0.0" @@ -89876,7 +89986,7 @@ in sources."semver-7.3.5" sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."slice-ansi-3.0.0" sources."spdx-correct-3.1.1" sources."spdx-exceptions-2.3.0" @@ -89925,8 +90035,11 @@ in }; dependencies = [ sources."@types/atob-2.1.2" + sources."@types/bn.js-5.1.0" sources."@types/inquirer-6.5.0" - sources."@types/node-16.10.1" + sources."@types/node-16.10.2" + sources."@types/pbkdf2-3.1.0" + sources."@types/secp256k1-4.0.3" sources."@types/through-0.0.30" sources."ajv-6.12.6" sources."ansi-escapes-4.3.2" @@ -89941,16 +90054,22 @@ in sources."atob-2.1.2" sources."aws-sign2-0.7.0" sources."aws4-1.11.0" + sources."base-x-3.0.8" sources."bcrypt-pbkdf-1.0.2" sources."binary-search-tree-0.2.5" + sources."blakejs-1.1.1" sources."bluebird-3.7.2" sources."bn.js-4.12.0" sources."brorand-1.1.0" - sources."buffer-to-arraybuffer-0.0.5" + sources."browserify-aes-1.2.0" + sources."bs58-4.0.1" + sources."bs58check-2.1.2" + sources."buffer-xor-1.0.3" sources."camelcase-5.3.1" sources."caseless-0.12.0" sources."chalk-4.1.2" sources."chardet-0.7.0" + sources."cipher-base-1.0.4" sources."cli-cursor-3.1.0" sources."cli-width-3.0.0" sources."cliui-6.0.0" @@ -89960,25 +90079,31 @@ in sources."combined-stream-1.0.8" sources."command-exists-1.2.9" sources."core-util-is-1.0.2" + sources."create-hash-1.2.0" + sources."create-hmac-1.1.7" sources."dashdash-1.14.1" sources."decamelize-1.2.0" - sources."decode-uri-component-0.2.0" - sources."decompress-response-3.3.0" sources."delayed-stream-1.0.0" - sources."dom-walk-0.1.2" sources."dotenv-8.6.0" sources."ecc-jsbn-0.1.2" sources."elliptic-6.5.4" sources."emoji-regex-8.0.0" sources."escape-string-regexp-1.0.5" sources."esprima-4.0.1" - sources."eth-lib-0.2.8" sources."ethereum-bloom-filters-1.0.10" + sources."ethereum-cryptography-0.1.3" + (sources."ethereumjs-util-7.1.2" // { + dependencies = [ + sources."bn.js-5.2.0" + ]; + }) (sources."ethjs-unit-0.1.6" // { dependencies = [ sources."bn.js-4.11.6" ]; }) + sources."ethjs-util-0.1.6" + sources."evp_bytestokey-1.0.3" sources."extend-3.0.2" sources."external-editor-3.1.0" sources."extsprintf-1.3.0" @@ -89991,11 +90116,11 @@ in sources."fs-extra-9.1.0" sources."get-caller-file-2.0.5" sources."getpass-0.1.7" - sources."global-4.4.0" sources."graceful-fs-4.2.8" sources."har-schema-2.0.0" sources."har-validator-5.1.5" sources."has-flag-4.0.0" + sources."hash-base-3.1.0" sources."hash.js-1.1.7" sources."hmac-drbg-1.0.1" sources."http-signature-1.2.0" @@ -90006,7 +90131,6 @@ in sources."inversify-5.1.1" sources."is-docker-2.2.1" sources."is-fullwidth-code-point-3.0.0" - sources."is-function-1.0.2" sources."is-hex-prefixed-1.0.0" sources."is-typedarray-1.0.0" sources."is-wsl-2.2.0" @@ -90020,46 +90144,45 @@ in sources."jsonfile-6.1.0" sources."jsprim-1.4.1" sources."jwt-decode-2.2.0" + sources."keccak-3.0.2" sources."lie-3.1.1" sources."localforage-1.10.0" sources."locate-path-5.0.0" sources."lodash-4.17.21" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."md5.js-1.3.5" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."mimic-fn-2.1.0" - sources."mimic-response-1.0.1" - sources."min-document-2.19.0" sources."minimalistic-assert-1.0.1" sources."minimalistic-crypto-utils-1.0.1" sources."minimist-1.2.5" sources."mkdirp-0.5.5" sources."mute-stream-0.0.8" sources."nedb-1.8.0" + sources."node-addon-api-2.0.2" sources."node-fetch-2.6.5" + sources."node-gyp-build-4.3.0" (sources."number-to-bn-1.7.0" // { dependencies = [ sources."bn.js-4.11.6" ]; }) sources."oauth-sign-0.9.0" - sources."object-assign-4.1.1" - sources."once-1.4.0" sources."onetime-5.1.2" sources."open-7.4.2" sources."os-tmpdir-1.0.2" sources."p-limit-2.3.0" sources."p-locate-4.1.0" sources."p-try-2.2.0" - sources."parse-headers-2.0.4" sources."path-exists-4.0.0" + sources."pbkdf2-3.1.2" sources."performance-now-2.1.0" - sources."process-0.11.10" sources."psl-1.8.0" sources."punycode-2.1.1" sources."qs-6.5.2" - sources."query-string-5.1.1" sources."querystring-0.2.1" sources."randombytes-2.1.0" + sources."readable-stream-3.6.0" sources."reflect-metadata-0.1.13" sources."request-2.88.2" sources."request-promise-4.2.6" @@ -90067,24 +90190,27 @@ in sources."require-directory-2.1.1" sources."require-main-filename-2.0.0" sources."restore-cursor-3.1.0" + sources."ripemd160-2.0.2" + sources."rlp-2.2.6" sources."run-async-2.4.1" sources."rxjs-6.6.7" sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" + sources."scrypt-js-3.0.1" + sources."secp256k1-4.0.2" sources."set-blocking-2.0.0" - sources."signal-exit-3.0.4" - sources."simple-concat-1.0.1" - sources."simple-get-2.8.1" + sources."setimmediate-1.0.5" + sources."sha.js-2.4.11" + sources."signal-exit-3.0.5" sources."sprintf-js-1.0.3" sources."sshpk-1.16.1" sources."stealthy-require-1.1.1" - sources."strict-uri-encode-1.1.0" sources."string-width-4.2.3" + sources."string_decoder-1.3.0" sources."strip-ansi-6.0.1" sources."strip-hex-prefix-1.0.0" sources."supports-color-7.2.0" sources."through-2.3.8" - sources."timed-out-4.0.1" sources."tmp-0.0.33" sources."tough-cookie-2.5.0" sources."tr46-0.0.3" @@ -90096,20 +90222,15 @@ in sources."universalify-2.0.0" sources."untildify-4.0.0" sources."uri-js-4.4.1" - sources."url-set-query-1.0.0" sources."utf8-3.0.0" + sources."util-deprecate-1.0.2" sources."uuid-3.4.0" sources."verror-1.10.0" - sources."web3-utils-1.5.3" + sources."web3-utils-1.6.0" sources."webidl-conversions-3.0.1" sources."whatwg-url-5.0.0" sources."which-module-2.0.0" sources."wrap-ansi-6.2.0" - sources."wrappy-1.0.2" - sources."xhr-2.6.0" - sources."xhr-request-1.1.0" - sources."xhr-request-promise-0.1.3" - sources."xtend-4.0.2" sources."y18n-4.0.3" sources."yargs-15.4.1" sources."yargs-parser-18.1.3" @@ -90233,7 +90354,7 @@ in sources."director-1.2.7" sources."dot-prop-4.2.1" sources."duplexer-0.1.2" - sources."es-abstract-1.18.7" + sources."es-abstract-1.19.1" sources."es-get-iterator-1.1.2" sources."es-to-primitive-1.2.1" sources."event-stream-3.3.4" @@ -90320,7 +90441,7 @@ in sources."is-descriptor-1.0.2" sources."is-extendable-1.0.1" sources."is-extglob-2.1.1" - sources."is-glob-4.0.2" + sources."is-glob-4.0.3" sources."is-map-2.0.2" sources."is-negative-zero-2.0.1" (sources."is-number-3.0.0" // { @@ -90333,10 +90454,12 @@ in sources."is-plain-object-2.0.4" sources."is-regex-1.1.4" sources."is-set-2.0.2" + sources."is-shared-array-buffer-1.0.1" sources."is-string-1.0.7" sources."is-symbol-1.0.4" sources."is-typed-array-1.1.8" sources."is-weakmap-2.0.1" + sources."is-weakref-1.0.1" sources."is-weakset-2.0.1" sources."is-windows-1.0.2" sources."isarray-2.0.5" @@ -90439,7 +90562,7 @@ in }) sources."shush-1.0.0" sources."side-channel-1.0.4" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" (sources."snapdragon-0.8.2" // { dependencies = [ sources."define-property-0.2.5" @@ -90716,7 +90839,7 @@ in sources."@types/istanbul-reports-1.1.2" sources."@types/json-patch-0.0.30" sources."@types/keyv-3.1.3" - sources."@types/node-16.10.1" + sources."@types/node-16.10.2" sources."@types/node-fetch-2.5.12" sources."@types/responselike-1.0.0" sources."@types/unist-2.0.6" @@ -90764,7 +90887,7 @@ in }) sources."brace-expansion-1.1.11" sources."braces-3.0.2" - sources."browserslist-4.17.1" + sources."browserslist-4.17.2" sources."bytes-3.1.0" sources."cacheable-lookup-5.0.4" (sources."cacheable-request-7.0.2" // { @@ -90775,7 +90898,7 @@ in sources."call-bind-1.0.2" sources."camel-case-4.1.2" sources."camelcase-5.3.1" - sources."caniuse-lite-1.0.30001261" + sources."caniuse-lite-1.0.30001263" sources."ccount-1.1.0" (sources."chalk-4.1.2" // { dependencies = [ @@ -90825,7 +90948,7 @@ in }) sources."content-type-1.0.4" sources."contentful-management-7.41.0" - sources."contentful-sdk-core-6.9.0" + sources."contentful-sdk-core-6.9.1" sources."convert-hrtime-3.0.0" (sources."convert-source-map-1.8.0" // { dependencies = [ @@ -90874,7 +90997,7 @@ in sources."dotenv-8.6.0" sources."duplexer3-0.1.4" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.3.853" + sources."electron-to-chromium-1.3.857" sources."emoji-regex-8.0.0" sources."encodeurl-1.0.2" sources."end-of-stream-1.4.4" @@ -91009,7 +91132,7 @@ in sources."is-docker-2.2.1" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" - sources."is-glob-4.0.2" + sources."is-glob-4.0.3" sources."is-hexadecimal-1.0.4" sources."is-installed-globally-0.4.0" (sources."is-invalid-path-0.1.0" // { @@ -91095,8 +91218,8 @@ in sources."micromark-extension-mdxjs-0.3.0" sources."micromark-extension-mdxjs-esm-0.3.1" sources."mime-1.6.0" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."mimic-fn-2.1.0" sources."mimic-response-1.0.1" sources."min-indent-1.0.1" @@ -91106,14 +91229,14 @@ in sources."mkdirp-0.5.5" sources."ms-2.1.2" sources."mute-stream-0.0.8" - sources."nanocolors-0.1.12" + sources."nanocolors-0.2.12" sources."negotiator-0.6.2" sources."nice-try-1.0.5" sources."no-case-3.0.4" sources."node-eta-0.9.0" sources."node-fetch-2.6.5" sources."node-object-hash-2.3.10" - sources."node-releases-1.1.76" + sources."node-releases-1.1.77" sources."normalize-path-3.0.0" sources."normalize-url-6.1.0" sources."npm-run-path-2.0.2" @@ -91269,7 +91392,7 @@ in sources."shebang-command-1.2.0" sources."shebang-regex-1.0.0" sources."side-channel-1.0.4" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."single-trailing-newline-1.0.0" sources."sisteransi-1.0.5" sources."source-map-0.7.3" @@ -91416,14 +91539,14 @@ in sources."@octokit/core-3.5.1" sources."@octokit/endpoint-6.0.12" sources."@octokit/graphql-4.8.0" - sources."@octokit/openapi-types-10.6.1" - sources."@octokit/plugin-paginate-rest-2.16.5" + sources."@octokit/openapi-types-10.6.4" + sources."@octokit/plugin-paginate-rest-2.16.7" sources."@octokit/plugin-request-log-1.0.4" - sources."@octokit/plugin-rest-endpoint-methods-5.11.3" + sources."@octokit/plugin-rest-endpoint-methods-5.11.4" sources."@octokit/request-5.6.1" sources."@octokit/request-error-2.1.0" - sources."@octokit/rest-18.11.2" - sources."@octokit/types-6.31.1" + sources."@octokit/rest-18.11.4" + sources."@octokit/types-6.31.3" sources."@types/normalize-package-data-2.4.1" sources."ansi-regex-2.1.1" sources."ansi-styles-4.3.0" @@ -91512,7 +91635,7 @@ in sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" sources."shelljs-0.8.4" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."spdx-correct-3.1.1" sources."spdx-exceptions-2.3.0" sources."spdx-expression-parse-3.0.1" @@ -91678,8 +91801,8 @@ in sources."lodash.get-4.4.2" sources."looper-4.0.0" sources."lrucache-1.0.3" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."minimist-1.2.5" sources."mkdirp-0.5.5" sources."moment-2.29.1" @@ -91838,10 +91961,10 @@ in gitmoji-cli = nodeEnv.buildNodePackage { name = "gitmoji-cli"; packageName = "gitmoji-cli"; - version = "4.6.1"; + version = "4.7.0"; src = fetchurl { - url = "https://registry.npmjs.org/gitmoji-cli/-/gitmoji-cli-4.6.1.tgz"; - sha512 = "B2wwKFTFDPrs0vESTIsU2jJXlqvq8PCC6aTkOS+1qPsATPkepeYC0PHw/CZpjx1o77aoTCkbmitb1dP8hVs8Gw=="; + url = "https://registry.npmjs.org/gitmoji-cli/-/gitmoji-cli-4.7.0.tgz"; + sha512 = "8PVebGkXGXlNE2T7You4gzX4SFiULZja38LInfmnJQFfMgmeOT8br/WpirCkqhBVA28tTMYflQj5QGoeGLfTUQ=="; }; dependencies = [ sources."@babel/code-frame-7.14.5" @@ -91894,7 +92017,7 @@ in sources."ci-info-2.0.0" sources."cli-boxes-2.2.1" sources."cli-cursor-3.1.0" - sources."cli-spinners-2.6.0" + sources."cli-spinners-2.6.1" sources."cli-width-3.0.0" sources."clone-1.0.4" sources."clone-response-1.0.2" @@ -92116,7 +92239,7 @@ in sources."responselike-1.0.2" sources."restore-cursor-3.1.0" sources."run-async-2.4.1" - sources."rxjs-7.3.0" + sources."rxjs-7.3.1" sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" sources."semver-7.3.5" @@ -92128,7 +92251,7 @@ in sources."setprototypeof-1.1.1" sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."smart-buffer-4.2.0" sources."socks-2.6.1" sources."socks-proxy-agent-5.0.1" @@ -92271,7 +92394,7 @@ in sources."tslib-2.1.0" ]; }) - (sources."@graphql-tools/import-6.4.1" // { + (sources."@graphql-tools/import-6.4.2" // { dependencies = [ sources."tslib-2.3.1" ]; @@ -92300,7 +92423,7 @@ in (sources."@graphql-tools/schema-8.2.0" // { dependencies = [ sources."@graphql-tools/merge-8.1.2" - sources."@graphql-tools/utils-8.2.3" + sources."@graphql-tools/utils-8.2.4" sources."tslib-2.3.1" ]; }) @@ -92331,7 +92454,7 @@ in sources."@nodelib/fs.walk-1.2.8" sources."@sindresorhus/is-0.14.0" sources."@szmarczak/http-timer-1.1.2" - sources."@types/node-16.10.1" + sources."@types/node-16.10.2" sources."@types/parse-json-4.0.0" sources."@types/websocket-1.0.2" sources."abort-controller-3.0.0" @@ -92380,7 +92503,7 @@ in sources."chownr-2.0.0" sources."clean-stack-2.2.0" sources."cli-cursor-2.1.0" - sources."cli-spinners-2.6.0" + sources."cli-spinners-2.6.1" sources."cli-width-3.0.0" (sources."cliui-7.0.4" // { dependencies = [ @@ -92425,7 +92548,7 @@ in sources."emoji-regex-8.0.0" sources."end-of-stream-1.4.4" sources."error-ex-1.3.2" - sources."es-abstract-1.18.7" + sources."es-abstract-1.19.1" sources."es-get-iterator-1.1.2" sources."es-to-primitive-1.2.1" sources."es6-promise-3.3.1" @@ -92536,6 +92659,7 @@ in sources."is-promise-4.0.0" sources."is-regex-1.1.4" sources."is-set-2.0.2" + sources."is-shared-array-buffer-1.0.1" sources."is-stream-1.1.0" sources."is-string-1.0.7" sources."is-symbol-1.0.4" @@ -92543,6 +92667,7 @@ in sources."is-typedarray-1.0.0" sources."is-unicode-supported-0.1.0" sources."is-weakmap-2.0.1" + sources."is-weakref-1.0.1" sources."is-weakset-2.0.1" sources."is-wsl-2.2.0" sources."isarray-2.0.5" @@ -92596,8 +92721,8 @@ in sources."merge2-1.4.1" sources."meros-1.1.4" sources."micromatch-4.0.4" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."mimic-fn-1.2.0" sources."mimic-response-1.0.1" sources."minimatch-3.0.4" @@ -92716,7 +92841,7 @@ in sources."should-type-adaptors-1.1.0" sources."should-util-1.0.1" sources."side-channel-1.0.4" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."simple-git-2.21.0" sources."slash-3.0.0" sources."sprintf-js-1.0.3" @@ -92823,7 +92948,7 @@ in sources."is-absolute-1.0.0" sources."is-core-module-2.7.0" sources."is-extglob-2.1.1" - sources."is-glob-4.0.2" + sources."is-glob-4.0.3" sources."is-number-7.0.0" sources."is-plain-object-2.0.4" sources."is-relative-1.0.0" @@ -92922,8 +93047,8 @@ in sources."merge-descriptors-1.0.1" sources."methods-1.1.2" sources."mime-1.6.0" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."minimist-1.2.5" sources."ms-2.0.0" sources."negotiator-0.6.2" @@ -93331,7 +93456,7 @@ in sources."is-extendable-0.1.1" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-1.0.0" - sources."is-glob-4.0.2" + sources."is-glob-4.0.3" sources."is-negated-glob-1.0.0" (sources."is-number-3.0.0" // { dependencies = [ @@ -93741,7 +93866,7 @@ in sources."is-extendable-0.1.1" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-1.0.0" - sources."is-glob-4.0.2" + sources."is-glob-4.0.3" (sources."is-number-3.0.0" // { dependencies = [ sources."kind-of-3.2.2" @@ -94005,7 +94130,7 @@ in sha512 = "ciCpeMEGZ7CbfK+MgK8ykV+wzUHz5he06mAiq8OQLuYN6pxFxZDAhwPwByirOYwdF3GV2M4s7spq2A/g/XMncQ=="; }; dependencies = [ - sources."@types/node-16.10.1" + sources."@types/node-16.10.2" sources."@types/node-fetch-2.5.12" sources."ansi-styles-4.3.0" sources."async-3.2.0" @@ -94030,8 +94155,8 @@ in sources."is-dotfile-1.0.3" sources."is-extglob-1.0.0" sources."is-glob-2.0.1" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."minimatch-3.0.4" sources."node-fetch-2.6.5" sources."once-1.4.0" @@ -94276,7 +94401,7 @@ in dependencies = [ sources."@fast-csv/format-4.3.5" sources."@fast-csv/parse-4.3.6" - sources."@types/node-14.17.19" + sources."@types/node-14.17.20" sources."ajv-6.12.6" sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" @@ -94285,7 +94410,7 @@ in sources."assert-plus-1.0.0" sources."async-2.6.3" sources."asynckit-0.4.0" - sources."aws-sdk-2.996.0" + sources."aws-sdk-2.999.0" sources."aws-sign2-0.7.0" sources."aws4-1.11.0" sources."base64-js-1.5.1" @@ -94384,8 +94509,8 @@ in sources."lodash.some-4.6.0" sources."lodash.uniq-4.5.0" sources."marked-2.1.3" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."minimist-1.2.5" sources."mkdirp-0.5.5" sources."moment-2.29.1" @@ -94631,8 +94756,8 @@ in sources."longest-1.0.1" sources."lowercase-keys-1.0.1" sources."mime-1.6.0" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."minimist-1.2.5" sources."mkdirp-0.5.5" sources."ms-2.0.0" @@ -94870,7 +94995,7 @@ in sources."semver-5.7.1" sources."shebang-command-1.2.0" sources."shebang-regex-1.0.0" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."strip-eof-1.0.0" sources."wcwidth-1.0.1" sources."which-1.3.1" @@ -94939,7 +95064,7 @@ in sources."combined-stream-1.0.8" sources."component-emitter-1.3.0" sources."concat-map-0.0.1" - sources."cookiejar-2.1.2" + sources."cookiejar-2.1.3" sources."core-util-is-1.0.3" sources."cross-spawn-7.0.3" sources."data-uri-to-buffer-3.0.1" @@ -95058,8 +95183,8 @@ in sources."macos-release-2.5.0" sources."methods-1.1.2" sources."mime-2.5.2" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."mimic-fn-1.2.0" sources."minimatch-3.0.4" sources."minimist-1.2.5" @@ -95112,7 +95237,7 @@ in sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" sources."side-channel-1.0.4" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" (sources."slice-ansi-3.0.0" // { dependencies = [ sources."ansi-styles-4.3.0" @@ -95196,14 +95321,14 @@ in bypassCache = true; reconstructLock = true; }; - "iosevka-https://github.com/be5invis/Iosevka/archive/v10.0.0.tar.gz" = nodeEnv.buildNodePackage { + "iosevka-https://github.com/be5invis/Iosevka/archive/v10.3.1.tar.gz" = nodeEnv.buildNodePackage { name = "iosevka"; packageName = "iosevka"; - version = "10.0.0"; + version = "10.3.1"; src = fetchurl { - name = "iosevka-10.0.0.tar.gz"; - url = "https://codeload.github.com/be5invis/Iosevka/tar.gz/v10.0.0"; - sha256 = "20d351190be5f0bb68bd458ce549c1ed34e923e1e7718d8f3f129e3fc84ab5b9"; + name = "iosevka-10.3.1.tar.gz"; + url = "https://codeload.github.com/be5invis/Iosevka/tar.gz/v10.3.1"; + sha256 = "c92931d145fc90542fccaf9d22a9a49fa0551b8b0cd1e8bf92719c5a5092ac2a"; }; dependencies = [ sources."@iarna/toml-2.2.5" @@ -95271,8 +95396,7 @@ in sources."color-convert-1.9.3" sources."color-name-1.1.3" sources."concat-map-0.0.1" - sources."css-2.2.4" - sources."css-parse-2.0.0" + sources."css-3.0.0" sources."debug-3.1.0" sources."decode-uri-component-0.2.0" sources."deep-is-0.1.4" @@ -95343,7 +95467,6 @@ in sources."pegjs-0.10.0" sources."prelude-ls-1.1.2" sources."require-directory-2.1.1" - sources."resolve-url-0.2.1" sources."restore-cursor-3.1.0" sources."resumer-0.0.0" sources."safer-buffer-2.1.2" @@ -95355,14 +95478,13 @@ in ]; }) sources."seq-0.3.5" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."source-map-0.6.1" - sources."source-map-resolve-0.5.3" - sources."source-map-url-0.4.1" + sources."source-map-resolve-0.6.0" sources."spiro-3.0.0" sources."string-width-4.2.3" sources."strip-ansi-6.0.1" - (sources."stylus-0.54.8" // { + (sources."stylus-0.55.0" // { dependencies = [ sources."semver-6.3.0" sources."source-map-0.7.3" @@ -95377,7 +95499,6 @@ in sources."typo-geom-0.12.1" sources."unicoderegexp-0.4.1" sources."universalify-2.0.0" - sources."urix-0.1.0" (sources."verda-1.4.0" // { dependencies = [ sources."ansi-styles-4.3.0" @@ -95536,30 +95657,30 @@ in joplin = nodeEnv.buildNodePackage { name = "joplin"; packageName = "joplin"; - version = "2.3.2"; + version = "2.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/joplin/-/joplin-2.3.2.tgz"; - sha512 = "Gg0s1NP2mRJqzv68aT8cdt2+71iSYLDTWusAmlX7c8g13ZniSzCEHXywFvpILYm76lzCWxMazPleZhEEuBjqxQ=="; + url = "https://registry.npmjs.org/joplin/-/joplin-2.4.1.tgz"; + sha512 = "5ao7WEDYzEe0eMyFQAjtOkXI5mN+4KqUfCW/xQvigeEwRPuljLGgyqj0w/U915CXnAk4QifOA5vQ6HXL65WgJQ=="; }; dependencies = [ sources."@braintree/sanitize-url-3.1.0" sources."@cronvel/get-pixels-3.4.0" - sources."@joplin/fork-htmlparser2-4.1.34" - sources."@joplin/fork-sax-1.2.38" - sources."@joplin/lib-2.3.1" - (sources."@joplin/renderer-2.3.1" // { + sources."@joplin/fork-htmlparser2-4.1.36" + sources."@joplin/fork-sax-1.2.40" + sources."@joplin/lib-2.4.3" + (sources."@joplin/renderer-2.4.3" // { dependencies = [ sources."fs-extra-8.1.0" sources."jsonfile-4.0.0" sources."uslug-git+https://github.com/laurent22/uslug.git#emoji-support" ]; }) - (sources."@joplin/turndown-4.0.56" // { + (sources."@joplin/turndown-4.0.58" // { dependencies = [ sources."css-2.2.4" ]; }) - sources."@joplin/turndown-plugin-gfm-1.0.38" + sources."@joplin/turndown-plugin-gfm-1.0.40" sources."abab-2.0.5" sources."abbrev-1.1.1" sources."acorn-7.4.1" @@ -95599,7 +95720,7 @@ in sources."async-mutex-0.1.4" sources."asynckit-0.4.0" sources."atob-2.1.2" - (sources."aws-sdk-2.996.0" // { + (sources."aws-sdk-2.999.0" // { dependencies = [ sources."sax-1.2.1" sources."uuid-3.3.2" @@ -95665,8 +95786,8 @@ in ]; }) sources."cwise-compiler-1.1.3" - sources."d3-7.0.4" - sources."d3-array-3.0.4" + sources."d3-7.1.1" + sources."d3-array-3.1.1" sources."d3-axis-3.0.0" sources."d3-brush-3.0.0" sources."d3-chord-3.0.1" @@ -95893,7 +96014,7 @@ in sources."is-docker-2.2.1" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-1.0.0" - sources."is-glob-4.0.2" + sources."is-glob-4.0.3" sources."is-number-7.0.0" sources."is-relative-0.2.1" sources."is-stream-1.1.0" @@ -95964,7 +96085,7 @@ in (sources."markdown-it-multimd-table-4.1.1" // { dependencies = [ sources."entities-2.0.3" - sources."linkify-it-3.0.2" + sources."linkify-it-3.0.3" sources."markdown-it-11.0.1" ]; }) @@ -95974,9 +96095,9 @@ in sources."md5-2.3.0" sources."md5-file-4.0.0" sources."mdurl-1.0.1" - sources."mermaid-8.13.0" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mermaid-8.13.2" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."mimic-response-2.1.0" sources."minimatch-3.0.4" sources."minimist-1.2.5" @@ -96132,7 +96253,7 @@ in sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" sources."shellwords-0.1.1" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."simple-concat-1.0.1" sources."simple-get-3.1.0" sources."simple-swizzle-0.2.2" @@ -96497,7 +96618,7 @@ in sources."combined-stream-1.0.8" sources."commander-4.1.1" sources."component-emitter-1.3.0" - sources."cookiejar-2.1.2" + sources."cookiejar-2.1.3" sources."core-util-is-1.0.3" sources."debug-3.2.7" sources."delayed-stream-1.0.0" @@ -96516,8 +96637,8 @@ in sources."lodash-4.17.21" sources."methods-1.1.2" sources."mime-1.6.0" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."ms-2.1.3" sources."native-promise-only-0.8.1" sources."object-inspect-1.11.0" @@ -96668,8 +96789,8 @@ in }) sources."methods-1.1.2" sources."mime-1.6.0" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."mimic-response-1.0.1" sources."minimist-1.2.5" (sources."morgan-1.10.0" // { @@ -96729,7 +96850,7 @@ in sources."serve-static-1.14.1" sources."server-destroy-1.0.1" sources."setprototypeof-1.1.1" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."statuses-1.5.0" sources."steno-0.4.4" sources."string-width-4.2.3" @@ -97048,8 +97169,8 @@ in sources."methods-1.1.2" sources."micromatch-2.3.11" sources."mime-1.6.0" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."minimist-1.2.5" (sources."mixin-deep-1.3.2" // { dependencies = [ @@ -97377,7 +97498,7 @@ in sources."tslib-2.3.1" ]; }) - (sources."@oclif/core-0.5.40" // { + (sources."@oclif/core-0.5.41" // { dependencies = [ sources."fs-extra-9.1.0" sources."jsonfile-6.1.0" @@ -97508,7 +97629,7 @@ in sources."is-docker-2.2.1" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" - sources."is-glob-4.0.2" + sources."is-glob-4.0.3" sources."is-number-7.0.0" sources."is-obj-2.0.0" sources."is-typedarray-1.0.0" @@ -97532,8 +97653,8 @@ in }) sources."merge2-1.4.1" sources."micromatch-4.0.4" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."mimic-fn-2.1.0" sources."moment-2.29.1" sources."ms-2.1.2" @@ -97573,7 +97694,7 @@ in sources."shebang-command-1.2.0" sources."shebang-regex-1.0.0" sources."side-channel-1.0.4" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."slash-3.0.0" sources."sprintf-js-1.0.3" sources."string-width-4.2.3" @@ -97645,7 +97766,7 @@ in sources."@types/component-emitter-1.2.10" sources."@types/cookie-0.4.1" sources."@types/cors-2.8.12" - sources."@types/node-16.10.1" + sources."@types/node-16.10.2" sources."accepts-1.3.7" sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" @@ -97709,7 +97830,7 @@ in sources."is-binary-path-2.1.0" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" - sources."is-glob-4.0.2" + sources."is-glob-4.0.3" sources."is-number-7.0.0" sources."isbinaryfile-4.0.8" sources."jsonfile-4.0.0" @@ -97722,8 +97843,8 @@ in }) sources."media-typer-0.3.0" sources."mime-2.5.2" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."minimatch-3.0.4" sources."ms-2.0.0" sources."negotiator-0.6.2" @@ -97903,12 +98024,12 @@ in sources."brace-expansion-1.1.11" sources."browser-or-node-1.3.0" sources."browser-process-hrtime-1.0.0" - sources."browserslist-4.17.1" + sources."browserslist-4.17.2" sources."buffer-from-1.1.2" sources."bytes-3.1.0" sources."bytesish-0.4.4" sources."call-bind-1.0.2" - sources."caniuse-lite-1.0.30001261" + sources."caniuse-lite-1.0.30001263" sources."caseless-0.12.0" sources."chalk-2.4.2" sources."chardet-1.3.0" @@ -97959,11 +98080,11 @@ in }) sources."dotenv-8.6.0" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.3.853" + sources."electron-to-chromium-1.3.857" sources."emoji-regex-8.0.0" sources."encodeurl-1.0.2" sources."enquirer-2.3.6" - sources."es-abstract-1.18.7" + sources."es-abstract-1.19.1" sources."es-to-primitive-1.2.1" sources."escalade-3.1.1" sources."escape-html-1.0.3" @@ -98050,9 +98171,11 @@ in sources."is-plain-object-2.0.4" sources."is-potential-custom-element-name-1.0.1" sources."is-regex-1.1.4" + sources."is-shared-array-buffer-1.0.1" sources."is-stream-2.0.1" sources."is-string-1.0.7" sources."is-symbol-1.0.4" + sources."is-weakref-1.0.1" sources."isobject-3.0.1" sources."js-tokens-4.0.0" (sources."jsdom-16.7.0" // { @@ -98078,19 +98201,19 @@ in sources."merge-options-3.0.4" sources."methods-1.1.2" sources."mime-1.6.0" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."minimalistic-assert-1.0.1" sources."minimatch-3.0.4" sources."minimist-1.2.5" sources."ms-2.1.2" - sources."nanocolors-0.1.12" + sources."nanocolors-0.2.12" sources."negotiator-0.6.2" sources."node-environment-flags-1.0.6" sources."node-fetch-2.6.5" sources."node-localstorage-1.3.1" sources."node-modules-regexp-1.0.0" - sources."node-releases-1.1.76" + sources."node-releases-1.1.77" sources."nwsapi-2.2.0" sources."object-assign-4.1.1" sources."object-inspect-1.11.0" @@ -98203,7 +98326,7 @@ in }) sources."wrappy-1.0.2" sources."write-file-atomic-1.3.4" - sources."ws-8.2.2" + sources."ws-8.2.3" sources."xml-name-validator-3.0.0" sources."xmlchars-2.2.0" sources."y18n-5.0.8" @@ -98434,8 +98557,8 @@ in sources."mimic-fn-2.1.0" ]; }) - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."mimic-fn-1.2.0" sources."minimatch-3.0.4" sources."minimist-0.0.8" @@ -98503,7 +98626,7 @@ in sources."set-blocking-2.0.0" sources."shebang-command-1.2.0" sources."shebang-regex-1.0.0" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."source-map-0.6.1" sources."sshpk-1.16.1" sources."stack-trace-0.0.10" @@ -98684,8 +98807,8 @@ in sources."locate-path-5.0.0" sources."lodash-4.17.21" sources."log-symbols-2.2.0" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."mimic-fn-1.2.0" sources."minimatch-3.0.4" sources."minimist-1.2.5" @@ -98743,7 +98866,7 @@ in sources."sax-1.2.4" sources."secure-keys-1.0.0" sources."set-blocking-2.0.0" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."source-map-0.6.1" sources."sshpk-1.16.1" sources."stack-trace-0.0.10" @@ -98955,19 +99078,19 @@ in ]; }) sources."@octokit/graphql-4.8.0" - sources."@octokit/openapi-types-10.6.1" + sources."@octokit/openapi-types-10.6.4" sources."@octokit/plugin-enterprise-rest-6.0.1" - sources."@octokit/plugin-paginate-rest-2.16.5" + sources."@octokit/plugin-paginate-rest-2.16.7" sources."@octokit/plugin-request-log-1.0.4" - sources."@octokit/plugin-rest-endpoint-methods-5.11.3" + sources."@octokit/plugin-rest-endpoint-methods-5.11.4" (sources."@octokit/request-5.6.1" // { dependencies = [ sources."is-plain-object-5.0.0" ]; }) sources."@octokit/request-error-2.1.0" - sources."@octokit/rest-18.11.2" - sources."@octokit/types-6.31.1" + sources."@octokit/rest-18.11.4" + sources."@octokit/types-6.31.3" sources."@tootallnate/once-1.1.2" sources."@types/minimatch-3.0.5" sources."@types/minimist-1.2.2" @@ -99100,7 +99223,7 @@ in sources."envinfo-7.8.1" sources."err-code-2.0.3" sources."error-ex-1.3.2" - sources."es-abstract-1.18.7" + sources."es-abstract-1.19.1" sources."es-to-primitive-1.2.1" sources."escalade-3.1.1" sources."escape-string-regexp-1.0.5" @@ -99221,7 +99344,7 @@ in sources."is-date-object-1.0.5" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" - sources."is-glob-4.0.2" + sources."is-glob-4.0.3" sources."is-lambda-1.0.1" sources."is-negative-zero-2.0.1" sources."is-number-7.0.0" @@ -99230,12 +99353,14 @@ in sources."is-plain-obj-1.1.0" sources."is-plain-object-2.0.4" sources."is-regex-1.1.4" + sources."is-shared-array-buffer-1.0.1" sources."is-ssh-1.3.3" sources."is-stream-2.0.1" sources."is-string-1.0.7" sources."is-symbol-1.0.4" sources."is-text-path-1.0.1" sources."is-typedarray-1.0.0" + sources."is-weakref-1.0.1" sources."isarray-1.0.0" sources."isexe-2.0.0" sources."isobject-3.0.1" @@ -99299,8 +99424,8 @@ in sources."merge-stream-2.0.0" sources."merge2-1.4.1" sources."micromatch-4.0.4" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."mimic-fn-2.1.0" sources."min-indent-1.0.1" sources."minimatch-3.0.4" @@ -99469,7 +99594,7 @@ in sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" sources."side-channel-1.0.4" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."slash-3.0.0" sources."slide-1.1.6" sources."smart-buffer-4.2.0" @@ -99803,7 +99928,7 @@ in sources."is-descriptor-1.0.2" sources."is-extendable-1.0.1" sources."is-extglob-2.1.1" - sources."is-glob-4.0.2" + sources."is-glob-4.0.3" (sources."is-number-3.0.0" // { dependencies = [ sources."kind-of-3.2.2" @@ -99820,8 +99945,8 @@ in sources."map-visit-1.0.0" sources."micromatch-3.1.10" sources."mime-1.6.0" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."mixin-deep-1.3.2" sources."morgan-1.10.0" sources."ms-2.0.0" @@ -100216,8 +100341,8 @@ in sources."methods-1.1.2" sources."micromatch-2.3.11" sources."mime-1.6.0" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."minimist-1.2.5" (sources."mixin-deep-1.3.2" // { dependencies = [ @@ -100639,7 +100764,7 @@ in sources."@types/istanbul-lib-report-3.0.0" sources."@types/istanbul-reports-1.1.2" sources."@types/json-schema-7.0.9" - sources."@types/node-16.10.1" + sources."@types/node-16.10.2" sources."@types/normalize-package-data-2.4.1" sources."@types/resolve-0.0.8" sources."@types/yargs-15.0.14" @@ -100796,7 +100921,7 @@ in ]; }) sources."browserify-zlib-0.2.0" - sources."browserslist-4.17.1" + sources."browserslist-4.17.2" sources."bser-2.1.1" sources."buffer-5.2.1" sources."buffer-from-1.1.2" @@ -100812,7 +100937,7 @@ in sources."cached-path-relative-1.0.2" sources."call-bind-1.0.2" sources."camelcase-5.3.1" - sources."caniuse-lite-1.0.30001261" + sources."caniuse-lite-1.0.30001263" sources."capture-exit-2.0.0" sources."caseless-0.12.0" (sources."chalk-3.0.0" // { @@ -100935,7 +101060,7 @@ in sources."duplexer2-0.1.4" sources."duplexify-3.7.1" sources."ecc-jsbn-0.1.2" - sources."electron-to-chromium-1.3.853" + sources."electron-to-chromium-1.3.857" (sources."elliptic-6.5.4" // { dependencies = [ sources."bn.js-4.12.0" @@ -101117,7 +101242,7 @@ in sources."is-extendable-0.1.1" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-2.0.0" - sources."is-glob-4.0.2" + sources."is-glob-4.0.3" sources."is-gzip-1.0.0" sources."is-module-1.0.0" (sources."is-number-3.0.0" // { @@ -101197,8 +101322,8 @@ in sources."bn.js-4.12.0" ]; }) - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."minimalistic-assert-1.0.1" sources."minimalistic-crypto-utils-1.0.1" sources."minimatch-3.0.4" @@ -101219,7 +101344,7 @@ in }) sources."ms-2.1.2" sources."nan-2.15.0" - sources."nanocolors-0.1.12" + sources."nanocolors-0.2.12" sources."nanomatch-1.2.13" sources."ncp-2.0.0" sources."neo-async-2.6.2" @@ -101239,7 +101364,7 @@ in ]; }) sources."node-modules-regexp-1.0.0" - sources."node-releases-1.1.76" + sources."node-releases-1.1.77" (sources."normalize-package-data-2.5.0" // { dependencies = [ sources."semver-5.7.1" @@ -101402,7 +101527,7 @@ in sources."shebang-command-1.2.0" sources."shebang-regex-1.0.0" sources."shell-quote-1.7.2" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."simple-concat-1.0.1" sources."slash-3.0.0" (sources."snapdragon-0.8.2" // { @@ -101720,7 +101845,7 @@ in sources."ini-2.0.0" sources."js-yaml-4.1.0" sources."jsonc-parser-3.0.0" - sources."linkify-it-3.0.2" + sources."linkify-it-3.0.3" sources."lodash.differencewith-4.5.0" sources."lodash.flatten-4.4.0" sources."markdown-it-12.0.4" @@ -101799,8 +101924,8 @@ in sources."lodash-4.17.21" sources."markdown-link-extractor-1.3.0" sources."marked-2.1.3" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."ms-2.1.3" sources."oauth-sign-0.9.0" sources."performance-now-2.1.0" @@ -101886,8 +102011,8 @@ in sources."isstream-0.1.2" sources."lodash-4.17.21" sources."log4js-3.0.6" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."minimist-1.2.5" sources."mkdirp-0.5.5" sources."ms-2.1.3" @@ -102134,8 +102259,8 @@ in sources."lodash.templatesettings-3.1.1" sources."mastodon-api-1.3.0" sources."mime-1.6.0" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."minimatch-3.0.4" sources."minimist-1.2.5" sources."mkdirp-0.5.5" @@ -102310,7 +102435,7 @@ in }; dependencies = [ sources."@braintree/sanitize-url-3.1.0" - sources."@types/node-16.10.1" + sources."@types/node-16.10.2" sources."@types/yauzl-2.9.2" sources."agent-base-6.0.2" sources."ansi-styles-4.3.0" @@ -102326,8 +102451,8 @@ in sources."color-name-1.1.4" sources."commander-8.2.0" sources."concat-map-0.0.1" - sources."d3-7.0.4" - sources."d3-array-3.0.4" + sources."d3-7.1.1" + sources."d3-array-3.1.1" sources."d3-axis-3.0.0" sources."d3-brush-3.0.0" sources."d3-chord-3.0.1" @@ -102423,7 +102548,7 @@ in sources."khroma-1.4.1" sources."locate-path-5.0.0" sources."lodash-4.17.21" - sources."mermaid-8.13.0" + sources."mermaid-8.13.2" sources."minimatch-3.0.4" sources."minimist-1.2.5" sources."mkdirp-0.5.5" @@ -102527,7 +102652,7 @@ in sources."is-binary-path-2.1.0" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" - sources."is-glob-4.0.2" + sources."is-glob-4.0.3" sources."is-number-7.0.0" sources."is-plain-obj-2.1.0" sources."is-unicode-supported-0.1.0" @@ -102590,7 +102715,7 @@ in sources."combined-stream-1.0.8" sources."commander-2.20.3" sources."component-emitter-1.3.0" - sources."cookiejar-2.1.2" + sources."cookiejar-2.1.3" sources."core-util-is-1.0.3" sources."debug-3.2.7" sources."delayed-stream-1.0.0" @@ -102614,8 +102739,8 @@ in sources."lodash-4.17.21" sources."methods-1.1.2" sources."mime-1.6.0" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."ms-2.1.3" sources."native-promise-only-0.8.1" sources."object-inspect-1.11.0" @@ -102662,7 +102787,7 @@ in sources."chalk-4.1.2" sources."chardet-0.7.0" sources."cli-cursor-3.1.0" - sources."cli-spinners-2.6.0" + sources."cli-spinners-2.6.1" sources."cli-width-3.0.0" sources."clone-1.0.4" sources."color-convert-2.0.1" @@ -102695,7 +102820,7 @@ in sources."rxjs-6.6.7" sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."string-width-4.2.3" sources."string_decoder-1.3.0" sources."strip-ansi-6.0.1" @@ -102784,10 +102909,10 @@ in netlify-cli = nodeEnv.buildNodePackage { name = "netlify-cli"; packageName = "netlify-cli"; - version = "6.9.24"; + version = "6.9.28"; src = fetchurl { - url = "https://registry.npmjs.org/netlify-cli/-/netlify-cli-6.9.24.tgz"; - sha512 = "r1nlfRgDcMkzB9Vnb9GReNwgM8J1wTsXOuCxyXFgi5RGMUdksVHYzij+UCKmaMH0tFRhFdyDGQAl2JzWVTy7Rw=="; + url = "https://registry.npmjs.org/netlify-cli/-/netlify-cli-6.9.28.tgz"; + sha512 = "L7wLmCTbsl3Ka/anwLOh852FufDjFngjpmD4V2UONSkKGi2SZHKsXyFZ+Wz9dHo1YKLZyRGOo2hpgMXzYP9OBQ=="; }; dependencies = [ sources."@babel/code-frame-7.14.5" @@ -102922,16 +103047,31 @@ in sources."@dabh/diagnostics-2.0.2" sources."@jest/types-26.6.2" sources."@mrmlnc/readdir-enhanced-2.2.1" - (sources."@netlify/build-18.13.4" // { + (sources."@netlify/build-18.13.6" // { dependencies = [ sources."resolve-2.0.0-next.3" ]; }) - (sources."@netlify/cache-utils-2.0.3" // { + (sources."@netlify/cache-utils-2.0.4" // { dependencies = [ - sources."del-5.1.0" + sources."@nodelib/fs.stat-2.0.5" + sources."array-union-2.1.0" + sources."braces-3.0.2" + (sources."del-5.1.0" // { + dependencies = [ + sources."globby-10.0.2" + ]; + }) + sources."dir-glob-3.0.1" + sources."fast-glob-3.2.7" + sources."fill-range-7.0.1" + sources."glob-parent-5.1.2" + sources."ignore-5.1.8" + sources."is-number-7.0.0" + sources."micromatch-4.0.4" sources."p-map-3.0.0" sources."slash-3.0.0" + sources."to-regex-range-5.0.1" ]; }) (sources."@netlify/config-15.6.3" // { @@ -102967,13 +103107,13 @@ in sources."@netlify/open-api-2.5.0" (sources."@netlify/plugin-edge-handlers-1.11.22" // { dependencies = [ - sources."@types/node-14.17.19" + sources."@types/node-14.17.20" ]; }) sources."@netlify/plugins-list-4.0.0" sources."@netlify/routing-local-proxy-0.33.2" sources."@netlify/run-utils-2.0.1" - (sources."@netlify/zip-it-and-ship-it-4.23.2" // { + (sources."@netlify/zip-it-and-ship-it-4.23.3" // { dependencies = [ sources."ansi-styles-4.3.0" sources."cliui-7.0.4" @@ -103018,40 +103158,14 @@ in sources."@oclif/command-1.8.0" (sources."@oclif/config-1.17.0" // { dependencies = [ - sources."@nodelib/fs.stat-2.0.5" - sources."array-union-2.1.0" - sources."braces-3.0.2" - sources."dir-glob-3.0.1" - sources."fast-glob-3.2.7" - sources."fill-range-7.0.1" - sources."glob-parent-5.1.2" - sources."globby-11.0.4" - sources."ignore-5.1.8" - sources."is-number-7.0.0" - sources."micromatch-4.0.4" - sources."slash-3.0.0" - sources."to-regex-range-5.0.1" sources."tslib-2.3.1" ]; }) - (sources."@oclif/core-0.5.40" // { + (sources."@oclif/core-0.5.41" // { dependencies = [ - sources."@nodelib/fs.stat-2.0.5" sources."ansi-styles-4.3.0" - sources."array-union-2.1.0" - sources."braces-3.0.2" - sources."dir-glob-3.0.1" - sources."fast-glob-3.2.7" - sources."fill-range-7.0.1" sources."fs-extra-9.1.0" - sources."glob-parent-5.1.2" - sources."globby-11.0.4" - sources."ignore-5.1.8" - sources."is-number-7.0.0" sources."jsonfile-6.1.0" - sources."micromatch-4.0.4" - sources."slash-3.0.0" - sources."to-regex-range-5.0.1" sources."tslib-2.3.1" sources."universalify-2.0.0" sources."wrap-ansi-7.0.0" @@ -103111,18 +103225,18 @@ in ]; }) sources."@octokit/graphql-4.8.0" - sources."@octokit/openapi-types-10.6.1" - sources."@octokit/plugin-paginate-rest-2.16.5" + sources."@octokit/openapi-types-10.6.4" + sources."@octokit/plugin-paginate-rest-2.16.7" sources."@octokit/plugin-request-log-1.0.4" - sources."@octokit/plugin-rest-endpoint-methods-5.11.3" + sources."@octokit/plugin-rest-endpoint-methods-5.11.4" (sources."@octokit/request-5.6.1" // { dependencies = [ sources."is-plain-object-5.0.0" ]; }) sources."@octokit/request-error-2.1.0" - sources."@octokit/rest-18.11.2" - sources."@octokit/types-6.31.1" + sources."@octokit/rest-18.11.4" + sources."@octokit/types-6.31.3" sources."@rollup/plugin-babel-5.3.0" (sources."@rollup/plugin-commonjs-18.1.0" // { dependencies = [ @@ -103155,7 +103269,7 @@ in sources."@types/istanbul-reports-3.0.1" sources."@types/keyv-3.1.3" sources."@types/minimatch-3.0.5" - sources."@types/node-16.10.1" + sources."@types/node-16.10.2" sources."@types/node-fetch-2.5.12" sources."@types/normalize-package-data-2.4.1" sources."@types/resolve-1.17.1" @@ -103164,23 +103278,7 @@ in sources."@types/yargs-15.0.14" sources."@types/yargs-parser-20.2.1" sources."@typescript-eslint/types-4.32.0" - (sources."@typescript-eslint/typescript-estree-4.32.0" // { - dependencies = [ - sources."@nodelib/fs.stat-2.0.5" - sources."array-union-2.1.0" - sources."braces-3.0.2" - sources."dir-glob-3.0.1" - sources."fast-glob-3.2.7" - sources."fill-range-7.0.1" - sources."glob-parent-5.1.2" - sources."globby-11.0.4" - sources."ignore-5.1.8" - sources."is-number-7.0.0" - sources."micromatch-4.0.4" - sources."slash-3.0.0" - sources."to-regex-range-5.0.1" - ]; - }) + sources."@typescript-eslint/typescript-estree-4.32.0" sources."@typescript-eslint/visitor-keys-4.32.0" sources."@ungap/from-entries-0.2.1" sources."accepts-1.3.7" @@ -103282,7 +103380,7 @@ in sources."extend-shallow-2.0.1" ]; }) - sources."browserslist-4.17.1" + sources."browserslist-4.17.2" sources."buffer-5.7.1" sources."buffer-alloc-1.2.0" sources."buffer-alloc-unsafe-1.1.0" @@ -103306,7 +103404,7 @@ in sources."call-me-maybe-1.0.1" sources."callsite-1.0.0" sources."camelcase-6.2.0" - sources."caniuse-lite-1.0.30001261" + sources."caniuse-lite-1.0.30001263" sources."cardinal-2.1.1" (sources."chalk-4.1.2" // { dependencies = [ @@ -103348,7 +103446,7 @@ in sources."cli-boxes-2.2.1" sources."cli-cursor-2.1.0" sources."cli-progress-3.9.1" - sources."cli-spinners-2.6.0" + sources."cli-spinners-2.6.1" (sources."cli-truncate-0.2.1" // { dependencies = [ sources."ansi-regex-2.1.1" @@ -103495,19 +103593,7 @@ in sources."define-property-2.0.2" (sources."del-6.0.0" // { dependencies = [ - sources."@nodelib/fs.stat-2.0.5" - sources."array-union-2.1.0" - sources."braces-3.0.2" - sources."dir-glob-3.0.1" - sources."fast-glob-3.2.7" - sources."fill-range-7.0.1" - sources."glob-parent-5.1.2" - sources."globby-11.0.4" - sources."ignore-5.1.8" - sources."is-number-7.0.0" - sources."micromatch-4.0.4" sources."slash-3.0.0" - sources."to-regex-range-5.0.1" ]; }) sources."delayed-stream-1.0.0" @@ -103569,7 +103655,7 @@ in }) sources."duplexer3-0.1.4" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.3.853" + sources."electron-to-chromium-1.3.857" sources."elegant-spinner-1.0.1" sources."elf-cam-0.1.1" sources."emoji-regex-8.0.0" @@ -103580,7 +103666,7 @@ in sources."envinfo-7.8.1" sources."error-ex-1.3.2" sources."error-stack-parser-2.0.6" - sources."es-module-lexer-0.9.1" + sources."es-module-lexer-0.9.2" sources."escalade-3.1.1" sources."escape-goat-2.1.1" sources."escape-html-1.0.3" @@ -103747,7 +103833,7 @@ in ]; }) sources."globals-11.12.0" - (sources."globby-10.0.2" // { + (sources."globby-11.0.4" // { dependencies = [ sources."@nodelib/fs.stat-2.0.5" sources."array-union-2.1.0" @@ -103882,7 +103968,7 @@ in sources."is-extendable-0.1.1" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" - sources."is-glob-4.0.2" + sources."is-glob-4.0.3" sources."is-installed-globally-0.4.0" sources."is-interactive-1.0.0" sources."is-module-1.0.0" @@ -104056,8 +104142,8 @@ in sources."micro-memoize-4.0.9" sources."micromatch-3.1.10" sources."mime-1.6.0" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."mimic-fn-3.1.0" sources."mimic-response-2.1.0" sources."minimatch-3.0.4" @@ -104080,7 +104166,7 @@ in ]; }) sources."mute-stream-0.0.7" - sources."nanocolors-0.1.12" + sources."nanocolors-0.2.12" sources."nanoid-3.1.28" sources."nanomatch-1.2.13" sources."natural-orderby-2.0.3" @@ -104096,7 +104182,7 @@ in sources."netlify-redirector-0.2.1" sources."nice-try-1.0.5" sources."node-fetch-2.6.5" - sources."node-releases-1.1.76" + sources."node-releases-1.1.77" sources."node-source-walk-4.2.0" (sources."node-version-alias-1.0.1" // { dependencies = [ @@ -104284,11 +104370,7 @@ in sources."pinkie-promise-2.0.1" sources."pkg-dir-5.0.0" sources."posix-character-classes-0.1.1" - (sources."postcss-8.3.8" // { - dependencies = [ - sources."nanocolors-0.2.12" - ]; - }) + sources."postcss-8.3.8" sources."postcss-values-parser-2.0.1" sources."precinct-8.1.0" sources."precond-0.2.3" @@ -104376,7 +104458,7 @@ in sources."reusify-1.0.4" sources."rfdc-1.3.0" sources."rimraf-3.0.2" - sources."rollup-2.57.0" + sources."rollup-2.58.0" (sources."rollup-plugin-inject-3.0.2" // { dependencies = [ sources."estree-walker-0.6.1" @@ -104426,7 +104508,7 @@ in sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" sources."side-channel-1.0.4" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" (sources."simple-swizzle-0.2.2" // { dependencies = [ sources."is-arrayish-0.3.2" @@ -104697,7 +104779,7 @@ in sources."camelcase-5.3.1" ]; }) - sources."yarn-1.22.11" + sources."yarn-1.22.15" sources."yauzl-2.10.0" sources."yocto-queue-0.1.0" sources."zip-stream-4.1.0" @@ -104819,7 +104901,7 @@ in sources."safer-buffer-2.1.2" sources."semver-7.3.5" sources."set-blocking-2.0.0" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."smart-buffer-4.2.0" sources."socks-2.6.1" sources."socks-proxy-agent-5.0.1" @@ -105004,8 +105086,8 @@ in sources."merge-descriptors-1.0.1" sources."methods-1.1.2" sources."mime-1.6.0" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."minimatch-3.0.4" sources."minimist-1.2.5" sources."mkdirp-0.5.5" @@ -105080,7 +105162,7 @@ in sources."serve-static-1.14.1" sources."set-blocking-2.0.0" sources."setprototypeof-1.1.1" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."sntp-1.0.9" sources."spdx-correct-3.1.1" sources."spdx-exceptions-2.3.0" @@ -105227,7 +105309,7 @@ in sources."sax-1.2.4" sources."semver-5.7.1" sources."set-blocking-2.0.0" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."string-width-1.0.2" sources."string_decoder-1.1.1" sources."strip-ansi-3.0.1" @@ -105286,7 +105368,7 @@ in sources."@types/cacheable-request-6.0.2" sources."@types/http-cache-semantics-4.0.1" sources."@types/keyv-3.1.3" - sources."@types/node-16.10.1" + sources."@types/node-16.10.2" sources."@types/responselike-1.0.0" sources."abbrev-1.1.1" sources."accepts-1.3.7" @@ -105500,8 +105582,8 @@ in sources."merge-descriptors-1.0.1" sources."methods-1.1.2" sources."mime-2.5.2" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."mimic-response-1.0.1" sources."minimatch-3.0.4" sources."minimist-1.2.5" @@ -105600,7 +105682,7 @@ in sources."serve-static-1.14.1" sources."set-blocking-2.0.0" sources."setprototypeof-1.1.1" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" (sources."split2-3.2.2" // { dependencies = [ sources."readable-stream-3.6.0" @@ -105741,8 +105823,8 @@ in sources."jsonfile-1.0.1" sources."jsprim-1.4.1" sources."lru-cache-6.0.0" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."minimatch-3.0.4" sources."minimist-1.2.5" sources."minipass-3.1.5" @@ -105802,7 +105884,7 @@ in sources."safer-buffer-2.1.2" sources."semver-7.3.5" sources."set-blocking-2.0.0" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."slasp-0.0.4" sources."slide-1.1.6" sources."spdx-correct-3.1.1" @@ -105924,7 +106006,7 @@ in sources."is-ci-2.0.0" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" - sources."is-glob-4.0.2" + sources."is-glob-4.0.3" sources."is-installed-globally-0.4.0" sources."is-npm-5.0.0" sources."is-number-7.0.0" @@ -105976,7 +106058,7 @@ in sources."semver-6.3.0" ]; }) - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."string-width-4.2.3" sources."strip-ansi-6.0.1" sources."strip-json-comments-2.0.1" @@ -106052,7 +106134,7 @@ in sources."@types/http-cache-semantics-4.0.1" sources."@types/keyv-3.1.3" sources."@types/minimist-1.2.2" - sources."@types/node-16.10.1" + sources."@types/node-16.10.2" sources."@types/normalize-package-data-2.4.1" sources."@types/parse-json-4.0.0" sources."@types/responselike-1.0.0" @@ -106228,7 +106310,7 @@ in sources."is-docker-2.2.1" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" - sources."is-glob-4.0.2" + sources."is-glob-4.0.3" sources."is-installed-globally-0.3.2" sources."is-interactive-1.0.0" sources."is-npm-5.0.0" @@ -106475,7 +106557,7 @@ in }) sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."slash-3.0.0" sources."slice-ansi-0.0.4" sources."spdx-correct-3.1.1" @@ -106718,7 +106800,7 @@ in sources."is-ci-2.0.0" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-1.0.0" - sources."is-glob-4.0.2" + sources."is-glob-4.0.3" sources."is-installed-globally-0.4.0" sources."is-lambda-1.0.1" sources."is-npm-5.0.0" @@ -106767,8 +106849,8 @@ in sources."make-fetch-happen-9.1.0" sources."merge2-1.4.1" sources."micromatch-4.0.4" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."mimic-response-1.0.1" sources."minimatch-3.0.4" sources."minimist-1.2.5" @@ -106851,7 +106933,7 @@ in }) sources."semver-utils-1.1.4" sources."set-blocking-2.0.0" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."sisteransi-1.0.5" sources."slash-3.0.0" sources."smart-buffer-4.2.0" @@ -107023,8 +107105,8 @@ in sources."json-stringify-safe-5.0.1" sources."jsonfile-1.0.1" sources."jsprim-1.4.1" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."minimatch-3.0.4" sources."minimist-1.2.5" sources."mkdirp-0.3.5" @@ -107062,7 +107144,7 @@ in sources."safer-buffer-2.1.2" sources."semver-4.3.6" sources."set-blocking-2.0.0" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."slide-1.1.6" sources."sshpk-1.16.1" sources."string-width-2.1.1" @@ -107380,7 +107462,7 @@ in sources."pako-1.0.11" ]; }) - sources."browserslist-4.17.1" + sources."browserslist-4.17.2" (sources."buffer-4.9.2" // { dependencies = [ sources."isarray-1.0.0" @@ -107397,7 +107479,7 @@ in sources."caller-path-2.0.0" sources."callsites-2.0.0" sources."caniuse-api-3.0.0" - sources."caniuse-lite-1.0.30001261" + sources."caniuse-lite-1.0.30001263" sources."caseless-0.12.0" sources."chalk-2.4.2" sources."chokidar-2.1.8" @@ -107534,7 +107616,7 @@ in sources."duplexer2-0.1.4" sources."ecc-jsbn-0.1.2" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.3.853" + sources."electron-to-chromium-1.3.857" (sources."elliptic-6.5.4" // { dependencies = [ sources."bn.js-4.12.0" @@ -107544,7 +107626,7 @@ in sources."entities-2.2.0" sources."envinfo-7.8.1" sources."error-ex-1.3.2" - (sources."es-abstract-1.18.7" // { + (sources."es-abstract-1.19.1" // { dependencies = [ sources."object-inspect-1.11.0" ]; @@ -107693,7 +107775,7 @@ in sources."is-directory-0.3.1" sources."is-extendable-0.1.1" sources."is-extglob-2.1.1" - sources."is-glob-4.0.2" + sources."is-glob-4.0.3" sources."is-html-1.1.0" sources."is-negative-zero-2.0.1" sources."is-number-3.0.0" @@ -107702,10 +107784,12 @@ in sources."is-plain-object-2.0.4" sources."is-regex-1.1.4" sources."is-resolvable-1.1.0" + sources."is-shared-array-buffer-1.0.1" sources."is-string-1.0.7" sources."is-symbol-1.0.4" sources."is-typedarray-1.0.0" sources."is-url-1.2.4" + sources."is-weakref-1.0.1" sources."is-windows-1.0.2" sources."is-wsl-1.1.0" sources."isarray-2.0.5" @@ -107768,8 +107852,8 @@ in ]; }) sources."mime-1.6.0" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."mimic-fn-1.2.0" sources."minimalistic-assert-1.0.1" sources."minimalistic-crypto-utils-1.0.1" @@ -107783,7 +107867,7 @@ in sources."mkdirp-0.5.5" sources."ms-2.1.2" sources."nan-2.15.0" - sources."nanocolors-0.1.12" + sources."nanocolors-0.2.12" (sources."nanomatch-1.2.13" // { dependencies = [ sources."define-property-2.0.2" @@ -107800,7 +107884,7 @@ in sources."punycode-1.4.1" ]; }) - sources."node-releases-1.1.76" + sources."node-releases-1.1.77" sources."normalize-path-3.0.0" sources."normalize-url-3.3.0" sources."nth-check-1.0.2" @@ -107838,11 +107922,7 @@ in sources."physical-cpu-count-2.0.0" sources."pn-1.1.0" sources."posix-character-classes-0.1.1" - (sources."postcss-7.0.38" // { - dependencies = [ - sources."nanocolors-0.2.12" - ]; - }) + sources."postcss-7.0.38" (sources."postcss-calc-7.0.5" // { dependencies = [ sources."postcss-value-parser-4.1.0" @@ -108008,7 +108088,7 @@ in sources."object-inspect-1.11.0" ]; }) - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" (sources."simple-swizzle-0.2.2" // { dependencies = [ sources."is-arrayish-0.3.2" @@ -108319,8 +108399,8 @@ in sources."merge-descriptors-1.0.1" sources."methods-1.1.2" sources."mime-1.6.0" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."minimatch-3.0.4" sources."minimist-1.2.5" sources."mkdirp-0.5.5" @@ -108765,7 +108845,7 @@ in sources."safer-buffer-2.1.2" sources."semver-5.7.1" sources."server-destroy-1.0.1" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."simple-concat-1.0.1" sources."simple-get-2.8.1" sources."simple-peer-6.4.4" @@ -109029,8 +109109,8 @@ in sources."merge-descriptors-1.0.1" sources."methods-1.1.2" sources."mime-1.6.0" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."mimic-response-1.0.1" sources."minimatch-3.0.4" sources."minimist-1.2.5" @@ -109212,10 +109292,10 @@ in pkg = nodeEnv.buildNodePackage { name = "pkg"; packageName = "pkg"; - version = "5.3.2"; + version = "5.3.3"; src = fetchurl { - url = "https://registry.npmjs.org/pkg/-/pkg-5.3.2.tgz"; - sha512 = "78X8Tt71TI11XjkZm/r9shTdFRooFiiRcT8nfYeeOou5VKCkCysQauwAAkJKb5yjfrUhk3CBNL4zv22/iLpdnw=="; + url = "https://registry.npmjs.org/pkg/-/pkg-5.3.3.tgz"; + sha512 = "48qPxwyPvKfUuXxeK+kS3mBvfWWTX2khAdceDThbWCc8OUz3RFyO1Ft8SVkq2gQfPU2DtiPtWaf2SKH0Dlx59g=="; }; dependencies = [ sources."@babel/helper-validator-identifier-7.15.7" @@ -109295,7 +109375,7 @@ in sources."is-core-module-2.7.0" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" - sources."is-glob-4.0.2" + sources."is-glob-4.0.3" sources."is-number-7.0.0" sources."isarray-1.0.0" sources."jsonfile-6.1.0" @@ -109346,7 +109426,7 @@ in sources."safe-buffer-5.1.2" sources."semver-7.3.5" sources."set-blocking-2.0.0" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."simple-concat-1.0.1" sources."simple-get-3.1.0" sources."slash-3.0.0" @@ -109524,7 +109604,7 @@ in sources."is-binary-path-2.1.0" sources."is-core-module-2.7.0" sources."is-extglob-2.1.1" - sources."is-glob-4.0.2" + sources."is-glob-4.0.3" sources."is-number-7.0.0" sources."isarray-0.0.1" sources."js-git-0.7.8" @@ -109590,7 +109670,7 @@ in }) sources."setprototypeof-1.1.1" sources."shimmer-1.2.1" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."smart-buffer-4.2.0" sources."socks-2.6.1" sources."socks-proxy-agent-5.0.1" @@ -109744,7 +109824,7 @@ in sources."is-binary-path-2.1.0" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" - sources."is-glob-4.0.2" + sources."is-glob-4.0.3" sources."is-number-7.0.0" sources."jsonfile-6.1.0" sources."lilconfig-2.0.3" @@ -110254,8 +110334,8 @@ in sources."log-update-3.4.0" sources."lru-cache-5.1.1" sources."merge-stream-2.0.0" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."mimic-fn-2.1.0" sources."minimatch-3.0.4" sources."minimist-1.2.5" @@ -110306,7 +110386,7 @@ in sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" sources."shell-quote-1.7.2" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."spago-0.20.3" sources."sshpk-1.16.1" sources."ssri-6.0.2" @@ -110504,10 +110584,10 @@ in pyright = nodeEnv.buildNodePackage { name = "pyright"; packageName = "pyright"; - version = "1.1.171"; + version = "1.1.173"; src = fetchurl { - url = "https://registry.npmjs.org/pyright/-/pyright-1.1.171.tgz"; - sha512 = "7otiFobpeaeO3pPy0XhFIUm7AWCy98AbOnY4K1QCQSOVwNZJ00YlA3Qt8hQ1wIcLN08TSQ+/S/Cqaa+G+8hZmg=="; + url = "https://registry.npmjs.org/pyright/-/pyright-1.1.173.tgz"; + sha512 = "ksprslKAgZSmvz0Ndbo6EfSzRzP2klB/o6NKPtSqNCRDyIyLWAVGP7hqdhepKBAVNRktLuatM7R9VEBGLC7duQ=="; }; buildInputs = globalBuildInputs; meta = { @@ -110662,7 +110742,7 @@ in sources."shallow-copy-0.0.1" sources."shebang-command-1.2.0" sources."shebang-regex-1.0.0" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."source-map-0.6.1" (sources."static-eval-2.1.0" // { dependencies = [ @@ -110769,7 +110849,7 @@ in sources."cycle-1.0.3" sources."deep-equal-2.0.5" sources."define-properties-1.1.3" - sources."es-abstract-1.18.7" + sources."es-abstract-1.19.1" sources."es-get-iterator-1.1.2" sources."es-to-primitive-1.2.1" sources."escape-string-regexp-1.0.5" @@ -110799,10 +110879,12 @@ in sources."is-number-object-1.0.6" sources."is-regex-1.1.4" sources."is-set-2.0.2" + sources."is-shared-array-buffer-1.0.1" sources."is-string-1.0.7" sources."is-symbol-1.0.4" sources."is-typed-array-1.1.8" sources."is-weakmap-2.0.1" + sources."is-weakref-1.0.1" sources."is-weakset-2.0.1" sources."isarray-2.0.5" sources."isstream-0.1.2" @@ -110996,7 +111078,7 @@ in sources."@types/glob-7.1.4" sources."@types/json-schema-7.0.9" sources."@types/minimatch-3.0.5" - sources."@types/node-16.10.1" + sources."@types/node-16.10.2" sources."@types/parse-json-4.0.0" sources."@types/q-1.5.5" sources."@webassemblyjs/ast-1.9.0" @@ -111068,11 +111150,7 @@ in sources."async-each-1.0.3" sources."async-limiter-1.0.1" sources."atob-2.1.2" - (sources."autoprefixer-9.8.7" // { - dependencies = [ - sources."nanocolors-0.2.12" - ]; - }) + sources."autoprefixer-9.8.7" sources."axios-0.21.4" sources."babel-core-7.0.0-bridge.0" (sources."babel-loader-8.2.2" // { @@ -111154,7 +111232,7 @@ in ]; }) sources."browserify-zlib-0.1.4" - sources."browserslist-4.17.1" + sources."browserslist-4.17.2" sources."buffer-5.7.1" sources."buffer-alloc-1.2.0" sources."buffer-alloc-unsafe-1.1.0" @@ -111188,7 +111266,7 @@ in sources."camel-case-3.0.0" sources."camelcase-5.3.1" sources."caniuse-api-3.0.0" - sources."caniuse-lite-1.0.30001261" + sources."caniuse-lite-1.0.30001263" sources."case-sensitive-paths-webpack-plugin-2.4.0" sources."caw-2.0.1" sources."chalk-2.4.2" @@ -111412,7 +111490,7 @@ in sources."duplexify-3.7.1" sources."ee-first-1.1.1" sources."ejs-2.7.4" - sources."electron-to-chromium-1.3.853" + sources."electron-to-chromium-1.3.857" (sources."elliptic-6.5.4" // { dependencies = [ sources."bn.js-4.12.0" @@ -111443,7 +111521,7 @@ in sources."entities-2.2.0" sources."errno-0.1.8" sources."error-ex-1.3.2" - sources."es-abstract-1.18.7" + sources."es-abstract-1.19.1" sources."es-to-primitive-1.2.1" sources."escalade-3.1.1" sources."escape-html-1.0.3" @@ -111721,7 +111799,7 @@ in sources."is-extendable-0.1.1" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-2.0.0" - sources."is-glob-4.0.2" + sources."is-glob-4.0.3" sources."is-gzip-1.0.0" sources."is-natural-number-4.0.1" sources."is-negative-zero-2.0.1" @@ -111737,9 +111815,11 @@ in sources."is-regex-1.1.4" sources."is-resolvable-1.1.0" sources."is-retry-allowed-1.2.0" + sources."is-shared-array-buffer-1.0.1" sources."is-stream-1.1.0" sources."is-string-1.0.7" sources."is-symbol-1.0.4" + sources."is-weakref-1.0.1" sources."is-windows-1.0.2" sources."is-wsl-1.1.0" sources."isarray-1.0.0" @@ -111814,11 +111894,7 @@ in }) sources."mime-2.5.2" sources."mime-db-1.50.0" - (sources."mime-types-2.1.32" // { - dependencies = [ - sources."mime-db-1.49.0" - ]; - }) + sources."mime-types-2.1.33" sources."mimic-fn-1.2.0" sources."mimic-response-1.0.1" sources."minimalistic-assert-1.0.1" @@ -111844,7 +111920,7 @@ in sources."mutation-observer-1.0.3" sources."mute-stream-0.0.7" sources."nan-2.15.0" - sources."nanocolors-0.1.12" + sources."nanocolors-0.2.12" sources."nanomatch-1.2.13" sources."negotiator-0.6.2" sources."neo-async-2.6.2" @@ -111860,7 +111936,7 @@ in ]; }) sources."node-modules-regexp-1.0.0" - sources."node-releases-1.1.76" + sources."node-releases-1.1.77" sources."normalize-path-3.0.0" sources."normalize-range-0.1.2" (sources."normalize-url-2.0.1" // { @@ -111956,7 +112032,6 @@ in sources."posix-character-classes-0.1.1" (sources."postcss-7.0.38" // { dependencies = [ - sources."nanocolors-0.2.12" sources."source-map-0.6.1" ]; }) @@ -112249,7 +112324,7 @@ in sources."shebang-regex-1.0.0" sources."shorthash-0.0.2" sources."side-channel-1.0.4" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" (sources."simple-swizzle-0.2.2" // { dependencies = [ sources."is-arrayish-0.3.2" @@ -112730,8 +112805,8 @@ in sources."jsdom-16.7.0" sources."levn-0.3.0" sources."lodash-4.17.21" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."ms-2.1.2" sources."nwsapi-2.2.0" sources."optionator-0.8.3" @@ -112809,9 +112884,9 @@ in sources."@emotion/unitless-0.7.5" sources."@exodus/schemasafe-1.0.0-rc.6" sources."@redocly/ajv-8.6.2" - (sources."@redocly/openapi-core-1.0.0-beta.61" // { + (sources."@redocly/openapi-core-1.0.0-beta.62" // { dependencies = [ - sources."@types/node-14.17.19" + sources."@types/node-14.17.20" ]; }) sources."@redocly/react-dropdown-aria-2.0.12" @@ -112937,7 +113012,7 @@ in sources."is-binary-path-2.1.0" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" - sources."is-glob-4.0.2" + sources."is-glob-4.0.3" sources."is-number-7.0.0" sources."isarray-2.0.5" sources."js-levenshtein-1.1.6" @@ -113208,7 +113283,7 @@ in sources."restore-cursor-3.1.0" sources."scheduler-0.18.0" sources."semver-5.7.1" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."slice-ansi-3.0.0" sources."spdx-correct-3.1.1" sources."spdx-exceptions-2.3.0" @@ -113295,10 +113370,10 @@ in rollup = nodeEnv.buildNodePackage { name = "rollup"; packageName = "rollup"; - version = "2.57.0"; + version = "2.58.0"; src = fetchurl { - url = "https://registry.npmjs.org/rollup/-/rollup-2.57.0.tgz"; - sha512 = "bKQIh1rWKofRee6mv8SrF2HdP6pea5QkwBZSMImJysFj39gQuiV8MEPBjXOCpzk3wSYp63M2v2wkWBmFC8O/rg=="; + url = "https://registry.npmjs.org/rollup/-/rollup-2.58.0.tgz"; + sha512 = "NOXpusKnaRpbS7ZVSzcEXqxcLDOagN6iFS8p45RkoiMqPHDLwJm758UF05KlMoCRbLBTZsPOIa887gZJ1AiXvw=="; }; dependencies = [ sources."fsevents-2.3.2" @@ -113343,7 +113418,7 @@ in sources."@types/json-schema-7.0.9" sources."@types/minimatch-3.0.5" sources."@types/mocha-8.2.3" - sources."@types/node-14.17.19" + sources."@types/node-14.17.20" sources."@types/node-fetch-2.5.12" sources."@types/vscode-1.60.0" sources."@typescript-eslint/eslint-plugin-4.32.0" @@ -113406,8 +113481,8 @@ in sources."cross-spawn-7.0.3" sources."css-select-4.1.3" sources."css-what-5.0.1" - sources."d3-7.0.4" - sources."d3-array-3.0.4" + sources."d3-7.1.1" + sources."d3-array-3.1.1" sources."d3-axis-3.0.0" sources."d3-brush-3.0.0" sources."d3-chord-3.0.1" @@ -113558,7 +113633,7 @@ in sources."is-binary-path-2.1.0" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" - sources."is-glob-4.0.2" + sources."is-glob-4.0.3" sources."is-number-7.0.0" sources."is-plain-obj-2.1.0" sources."is-unicode-supported-0.1.0" @@ -113588,8 +113663,8 @@ in sources."merge2-1.4.1" sources."micromatch-4.0.4" sources."mime-1.6.0" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."minimatch-3.0.4" sources."minimist-1.2.5" sources."mkdirp-0.5.5" @@ -113684,7 +113759,7 @@ in sources."strip-ansi-6.0.1" sources."strip-json-comments-3.1.1" sources."supports-color-5.5.0" - (sources."table-6.7.1" // { + (sources."table-6.7.2" // { dependencies = [ sources."ajv-8.6.3" sources."json-schema-traverse-1.0.0" @@ -113872,7 +113947,7 @@ in sources."glob-parent-5.1.2" sources."is-binary-path-2.1.0" sources."is-extglob-2.1.1" - sources."is-glob-4.0.2" + sources."is-glob-4.0.3" sources."is-number-7.0.0" sources."normalize-path-3.0.0" sources."picomatch-2.3.0" @@ -113971,8 +114046,8 @@ in sources."isexe-2.0.0" sources."json-schema-traverse-0.4.1" sources."lru-cache-4.1.5" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."minimatch-3.0.4" sources."minimist-1.2.5" sources."ms-2.0.0" @@ -114002,7 +114077,7 @@ in }) sources."shebang-command-1.2.0" sources."shebang-regex-1.0.0" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."string-width-2.1.1" sources."strip-ansi-4.0.0" sources."strip-eof-1.0.0" @@ -114030,10 +114105,10 @@ in serverless = nodeEnv.buildNodePackage { name = "serverless"; packageName = "serverless"; - version = "2.60.0"; + version = "2.60.3"; src = fetchurl { - url = "https://registry.npmjs.org/serverless/-/serverless-2.60.0.tgz"; - sha512 = "AlAFCf1jrnDxVsJlYO3YrTFrmbMLP9FqzQQI2yJ4s75td5k6u8reTTNuXwC9Y68yyCX5qv1VsOlYnv7VzQsNlA=="; + url = "https://registry.npmjs.org/serverless/-/serverless-2.60.3.tgz"; + sha512 = "YlMVUc0O9ZbOXDSE1zAqudw3ryB3JvSiHpxpiliYin09MrmYa2scLNx+zBPU42zihz+UMdA3Kt1NGaa5yQucJg=="; }; dependencies = [ sources."2-thenable-1.0.0" @@ -114092,7 +114167,7 @@ in sources."semver-6.3.0" ]; }) - sources."@serverless/dashboard-plugin-5.4.4" + sources."@serverless/dashboard-plugin-5.4.5" sources."@serverless/event-mocks-1.1.1" (sources."@serverless/platform-client-4.3.0" // { dependencies = [ @@ -114107,7 +114182,7 @@ in ]; }) sources."@serverless/template-1.1.4" - (sources."@serverless/utils-5.16.0" // { + (sources."@serverless/utils-5.17.0" // { dependencies = [ sources."get-stream-6.0.1" sources."has-flag-4.0.0" @@ -114126,12 +114201,12 @@ in sources."@types/keyv-3.1.3" sources."@types/lodash-4.14.175" sources."@types/long-4.0.1" - sources."@types/node-16.10.1" + sources."@types/node-16.10.2" sources."@types/request-2.48.7" sources."@types/request-promise-native-1.0.18" sources."@types/responselike-1.0.0" sources."@types/tough-cookie-4.0.1" - sources."adm-zip-0.5.6" + sources."adm-zip-0.5.7" sources."after-0.8.2" (sources."agent-base-6.0.2" // { dependencies = [ @@ -114186,7 +114261,7 @@ in sources."async-2.6.3" sources."asynckit-0.4.0" sources."at-least-node-1.0.0" - (sources."aws-sdk-2.996.0" // { + (sources."aws-sdk-2.999.0" // { dependencies = [ sources."buffer-4.9.2" sources."ieee754-1.1.13" @@ -114304,7 +114379,7 @@ in sources."safe-buffer-5.1.2" ]; }) - sources."cookiejar-2.1.2" + sources."cookiejar-2.1.3" sources."core-util-is-1.0.2" sources."crc-32-1.2.0" sources."crc32-stream-4.0.2" @@ -114508,7 +114583,7 @@ in sources."is-docker-2.2.1" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-1.0.0" - sources."is-glob-4.0.2" + sources."is-glob-4.0.3" sources."is-natural-number-4.0.1" sources."is-number-7.0.0" sources."is-plain-obj-1.1.0" @@ -114600,8 +114675,8 @@ in sources."methods-1.1.2" sources."micromatch-4.0.4" sources."mime-1.6.0" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."mimic-fn-2.1.0" sources."mimic-response-1.0.1" sources."minimatch-3.0.4" @@ -114727,10 +114802,10 @@ in sources."shebang-command-1.2.0" sources."shebang-regex-1.0.0" sources."shortid-2.2.16" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."simple-concat-1.0.1" sources."simple-get-2.8.1" - (sources."simple-git-2.45.1" // { + (sources."simple-git-2.46.0" // { dependencies = [ sources."debug-4.3.2" sources."ms-2.1.2" @@ -115049,8 +115124,8 @@ in sources."merge-descriptors-1.0.1" sources."methods-1.1.2" sources."mime-1.6.0" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."minimist-1.2.5" sources."mkdirp-0.5.5" sources."moment-2.7.0" @@ -115555,10 +115630,10 @@ in snyk = nodeEnv.buildNodePackage { name = "snyk"; packageName = "snyk"; - version = "1.727.0"; + version = "1.729.0"; src = fetchurl { - url = "https://registry.npmjs.org/snyk/-/snyk-1.727.0.tgz"; - sha512 = "x767hu/vtJp0o3jjYPlxL+bUWo7C7/ct2Zh6Xf6mHNdzXsgOI4KCbFCTJgQq4RnEY2V2/qX7vShBfBvBJBVqPw=="; + url = "https://registry.npmjs.org/snyk/-/snyk-1.729.0.tgz"; + sha512 = "+JFr+wvJCUJajsaEUF298Z7oJTkIrGQgBeqW6R8ZKOjUzawue8s406ILJ+E/40Jh14QkT00iOLKxr1pjS/CUIw=="; }; buildInputs = globalBuildInputs; meta = { @@ -115582,7 +115657,7 @@ in sources."@types/component-emitter-1.2.10" sources."@types/cookie-0.4.1" sources."@types/cors-2.8.12" - sources."@types/node-16.10.1" + sources."@types/node-16.10.2" sources."accepts-1.3.7" sources."base64-arraybuffer-0.1.4" sources."base64id-2.0.0" @@ -115592,8 +115667,8 @@ in sources."debug-4.3.2" sources."engine.io-5.2.0" sources."engine.io-parser-4.0.3" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."ms-2.1.2" sources."negotiator-0.6.2" sources."object-assign-4.1.1" @@ -115636,7 +115711,7 @@ in sources."ci-info-1.6.0" sources."cli-boxes-1.0.0" sources."cli-cursor-2.1.0" - sources."cli-spinners-2.6.0" + sources."cli-spinners-2.6.1" sources."clone-1.0.4" sources."color-convert-1.9.3" sources."color-name-1.1.3" @@ -115745,7 +115820,7 @@ in sources."semver-diff-2.1.0" sources."shebang-command-1.2.0" sources."shebang-regex-1.0.0" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."spdx-correct-3.1.1" sources."spdx-exceptions-2.3.0" sources."spdx-expression-parse-3.0.1" @@ -115972,7 +116047,7 @@ in }) sources."epidemic-broadcast-trees-7.0.0" sources."errno-0.1.8" - sources."es-abstract-1.18.7" + sources."es-abstract-1.19.1" (sources."es-get-iterator-1.1.2" // { dependencies = [ sources."isarray-2.0.5" @@ -116134,12 +116209,14 @@ in sources."is-primitive-2.0.0" sources."is-regex-1.1.4" sources."is-set-2.0.2" + sources."is-shared-array-buffer-1.0.1" sources."is-string-1.0.7" sources."is-symbol-1.0.4" sources."is-typed-array-1.1.8" sources."is-typedarray-1.0.0" sources."is-valid-domain-0.0.20" sources."is-weakmap-2.0.1" + sources."is-weakref-1.0.1" sources."is-weakset-2.0.1" sources."is-windows-1.0.2" sources."isarray-1.0.0" @@ -116211,7 +116288,7 @@ in sources."moo-0.5.1" sources."ms-2.1.2" sources."multiblob-1.13.7" - sources."multiblob-http-1.0.0" + sources."multiblob-http-1.2.0" sources."multicb-1.2.2" sources."multiserver-3.7.2" sources."multiserver-address-1.0.1" @@ -116822,7 +116899,7 @@ in sources."async-1.5.2" sources."async-limiter-1.0.1" sources."asynckit-0.4.0" - (sources."aws-sdk-2.996.0" // { + (sources."aws-sdk-2.999.0" // { dependencies = [ sources."uuid-3.3.2" ]; @@ -116910,7 +116987,7 @@ in ]; }) sources."cookie-signature-1.0.6" - sources."cookiejar-2.1.2" + sources."cookiejar-2.1.3" (sources."cookies-0.8.0" // { dependencies = [ sources."depd-2.0.0" @@ -117180,8 +117257,8 @@ in sources."merge-descriptors-1.0.1" sources."methods-1.1.2" sources."mime-1.6.0" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."mimic-fn-2.1.0" sources."minicap-prebuilt-2.3.0" sources."minimatch-3.0.4" @@ -117356,7 +117433,7 @@ in sources."shebang-command-1.2.0" sources."shebang-regex-1.0.0" sources."side-channel-1.0.4" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."slash-1.0.0" sources."sntp-1.0.9" (sources."socket.io-2.4.1" // { @@ -117648,11 +117725,7 @@ in sources."array-union-2.1.0" sources."arrify-1.0.1" sources."astral-regex-2.0.0" - (sources."autoprefixer-9.8.7" // { - dependencies = [ - sources."nanocolors-0.2.12" - ]; - }) + sources."autoprefixer-9.8.7" sources."bail-1.0.5" sources."balanced-match-2.0.0" (sources."brace-expansion-1.1.11" // { @@ -117661,11 +117734,11 @@ in ]; }) sources."braces-3.0.2" - sources."browserslist-4.17.1" + sources."browserslist-4.17.2" sources."callsites-3.1.0" sources."camelcase-5.3.1" sources."camelcase-keys-6.2.2" - sources."caniuse-lite-1.0.30001261" + sources."caniuse-lite-1.0.30001263" (sources."chalk-4.1.2" // { dependencies = [ sources."ansi-styles-4.3.0" @@ -117702,7 +117775,7 @@ in sources."domelementtype-1.3.1" sources."domhandler-2.4.2" sources."domutils-1.7.0" - sources."electron-to-chromium-1.3.853" + sources."electron-to-chromium-1.3.857" sources."emoji-regex-8.0.0" sources."entities-1.1.2" sources."error-ex-1.3.2" @@ -117757,7 +117830,7 @@ in sources."is-decimal-1.0.4" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" - sources."is-glob-4.0.2" + sources."is-glob-4.0.3" sources."is-hexadecimal-1.0.4" sources."is-number-7.0.0" sources."is-plain-obj-2.1.0" @@ -117798,8 +117871,8 @@ in ]; }) sources."ms-2.1.2" - sources."nanocolors-0.1.12" - sources."node-releases-1.1.76" + sources."nanocolors-0.2.12" + sources."node-releases-1.1.77" (sources."normalize-package-data-3.0.3" // { dependencies = [ sources."semver-7.3.5" @@ -117822,7 +117895,6 @@ in sources."picomatch-2.3.0" (sources."postcss-7.0.38" // { dependencies = [ - sources."nanocolors-0.2.12" sources."source-map-0.6.1" ]; }) @@ -117866,7 +117938,7 @@ in sources."run-parallel-1.2.0" sources."safe-buffer-5.1.2" sources."semver-6.3.0" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."slash-3.0.0" (sources."slice-ansi-4.0.0" // { dependencies = [ @@ -117893,7 +117965,7 @@ in sources."sugarss-2.0.0" sources."supports-color-5.5.0" sources."svg-tags-1.0.0" - sources."table-6.7.1" + sources."table-6.7.2" sources."to-fast-properties-2.0.0" sources."to-regex-range-5.0.1" sources."trim-newlines-3.0.1" @@ -117940,7 +118012,7 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@types/node-16.10.1" + sources."@types/node-16.10.2" sources."@types/pug-2.0.5" sources."@types/sass-1.16.1" sources."ansi-styles-4.3.0" @@ -117972,7 +118044,7 @@ in sources."inherits-2.0.4" sources."is-binary-path-2.1.0" sources."is-extglob-2.1.1" - sources."is-glob-4.0.2" + sources."is-glob-4.0.3" sources."is-number-7.0.0" sources."magic-string-0.25.7" sources."merge2-1.4.1" @@ -118000,7 +118072,7 @@ in sources."sourcemap-codec-1.4.8" sources."strip-indent-3.0.0" sources."supports-color-7.2.0" - sources."svelte-preprocess-4.9.5" + sources."svelte-preprocess-4.9.8" sources."to-regex-range-5.0.1" sources."typescript-4.4.3" sources."wrappy-1.0.2" @@ -118018,10 +118090,10 @@ in svelte-language-server = nodeEnv.buildNodePackage { name = "svelte-language-server"; packageName = "svelte-language-server"; - version = "0.14.8"; + version = "0.14.9"; src = fetchurl { - url = "https://registry.npmjs.org/svelte-language-server/-/svelte-language-server-0.14.8.tgz"; - sha512 = "0Q05fnhAZ4YlHNC2WAcUO2DXv+YhavU1Vbz8pNq/qUbHYgFzQe4yRPEfTNhBvnWtpVAQsfFk/kwgKQj13MwOxQ=="; + url = "https://registry.npmjs.org/svelte-language-server/-/svelte-language-server-0.14.9.tgz"; + sha512 = "mkMsAnGEO/wMsYfRdEKWKY9Hv/FwuCtB5RiJPcUcngHrVq8V+6zYGiZsmDTS4CArpfzhEuPcUNo1UM+E94Pslw=="; }; dependencies = [ sources."@emmetio/abbreviation-2.2.2" @@ -118030,7 +118102,7 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@types/node-16.10.1" + sources."@types/node-16.10.2" sources."@types/pug-2.0.5" sources."@types/sass-1.16.1" sources."anymatch-3.1.2" @@ -118048,7 +118120,7 @@ in sources."glob-parent-5.1.2" sources."is-binary-path-2.1.0" sources."is-extglob-2.1.1" - sources."is-glob-4.0.2" + sources."is-glob-4.0.3" sources."is-number-7.0.0" sources."jsonc-parser-2.3.1" sources."lodash-4.17.21" @@ -118070,7 +118142,7 @@ in sources."strip-indent-3.0.0" sources."svelte-3.38.3" sources."svelte-preprocess-4.7.4" - sources."svelte2tsx-0.4.6" + sources."svelte2tsx-0.4.7" sources."to-regex-range-5.0.1" sources."tslib-2.3.1" sources."typescript-4.4.3" @@ -118249,7 +118321,7 @@ in sources."configstore-3.1.5" sources."connect-3.7.0" sources."content-type-1.0.4" - sources."cookiejar-2.1.2" + sources."cookiejar-2.1.3" sources."copy-descriptor-0.1.1" sources."core-js-2.6.12" sources."core-util-is-1.0.3" @@ -118385,7 +118457,7 @@ in sources."is-extendable-1.0.1" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-1.0.0" - sources."is-glob-4.0.2" + sources."is-glob-4.0.3" sources."is-installed-globally-0.1.0" (sources."is-invalid-path-0.1.0" // { dependencies = [ @@ -118469,8 +118541,8 @@ in sources."methods-1.1.2" sources."micromatch-3.1.10" sources."mime-1.6.0" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."minimatch-3.0.4" sources."minimist-0.0.8" sources."mixin-deep-1.3.2" @@ -118608,7 +118680,7 @@ in sources."shebang-regex-1.0.0" sources."side-channel-1.0.4" sources."sigmund-1.0.1" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."slash-1.0.0" (sources."snapdragon-0.8.2" // { dependencies = [ @@ -118841,8 +118913,8 @@ in sources."locate-path-3.0.0" sources."long-4.0.0" sources."mime-2.5.2" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."minimist-1.2.5" sources."module-alias-2.2.2" sources."moment-2.29.1" @@ -118963,7 +119035,7 @@ in sources."safe-buffer-5.1.2" sources."semver-5.7.1" sources."set-blocking-2.0.0" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."simple-concat-1.0.1" sources."simple-get-3.1.0" sources."string-width-1.0.2" @@ -119281,7 +119353,7 @@ in sources."strip-bom-2.0.0" sources."structured-source-3.0.2" sources."supports-color-2.0.0" - (sources."table-6.7.1" // { + (sources."table-6.7.2" // { dependencies = [ sources."is-fullwidth-code-point-3.0.0" sources."string-width-4.2.3" @@ -119665,7 +119737,7 @@ in sources."semver-6.3.0" ]; }) - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."sliced-1.0.1" sources."space-separated-tokens-1.1.5" (sources."spawn-to-readstream-0.1.3" // { @@ -119979,13 +120051,13 @@ in sha512 = "47yQZ14SbNfyBGKcSV/89eXwxLlGIwj8WzbKk1jvDh/uPy59skVfFbWoF4tUn09mYnRyVldMsdqB0llYgQMLUA=="; }; dependencies = [ - sources."array.prototype.find-2.1.1" + sources."array.prototype.find-2.1.2" sources."call-bind-1.0.2" sources."check-ends-with-period-1.0.1" sources."define-properties-1.1.3" sources."emoji-regex-6.5.1" sources."end-with-1.0.2" - sources."es-abstract-1.18.7" + sources."es-abstract-1.19.1" sources."es-to-primitive-1.2.1" sources."function-bind-1.1.1" sources."get-intrinsic-1.1.1" @@ -120002,8 +120074,10 @@ in sources."is-negative-zero-2.0.1" sources."is-number-object-1.0.6" sources."is-regex-1.1.4" + sources."is-shared-array-buffer-1.0.1" sources."is-string-1.0.7" sources."is-symbol-1.0.4" + sources."is-weakref-1.0.1" sources."object-inspect-1.11.0" sources."object-keys-1.1.1" sources."object.assign-4.1.2" @@ -120095,7 +120169,7 @@ in sources."array-includes-3.1.3" sources."call-bind-1.0.2" sources."define-properties-1.1.3" - sources."es-abstract-1.18.7" + sources."es-abstract-1.19.1" sources."es-to-primitive-1.2.1" sources."function-bind-1.1.1" sources."get-intrinsic-1.1.1" @@ -120113,8 +120187,10 @@ in sources."is-negative-zero-2.0.1" sources."is-number-object-1.0.6" sources."is-regex-1.1.4" + sources."is-shared-array-buffer-1.0.1" sources."is-string-1.0.7" sources."is-symbol-1.0.4" + sources."is-weakref-1.0.1" sources."object-inspect-1.11.0" sources."object-keys-1.1.1" sources."object.assign-4.1.2" @@ -120185,7 +120261,7 @@ in sources."@types/cacheable-request-6.0.2" sources."@types/http-cache-semantics-4.0.1" sources."@types/keyv-3.1.3" - sources."@types/node-16.10.1" + sources."@types/node-16.10.2" sources."@types/responselike-1.0.0" sources."abbrev-1.1.1" sources."abstract-logging-2.0.1" @@ -120528,7 +120604,7 @@ in sources."serve-static-1.14.1" sources."set-blocking-2.0.0" sources."setprototypeof-1.1.1" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" (sources."socket.io-2.3.0" // { dependencies = [ sources."debug-4.1.1" @@ -120624,10 +120700,10 @@ in three = nodeEnv.buildNodePackage { name = "three"; packageName = "three"; - version = "0.132.2"; + version = "0.133.0"; src = fetchurl { - url = "https://registry.npmjs.org/three/-/three-0.132.2.tgz"; - sha512 = "0wcR7LxxkXMn6Gi58gEs3QvY8WpTVXA31L2VOvpjm4ZPYFRHCZC13UqynheFoS5OXDYgtBneN0dhbaNBE8iLhQ=="; + url = "https://registry.npmjs.org/three/-/three-0.133.0.tgz"; + sha512 = "1p8xTXnJD4hMM2Ktm7+FqOOBoImBoftKnKtAZT/b9AQeL3LhRkVu/HnIJhWA69qIMvUYpjfnunNsO4WdObw1ZQ=="; }; buildInputs = globalBuildInputs; meta = { @@ -120725,8 +120801,8 @@ in sources."jsprim-1.4.1" sources."keypress-0.2.1" sources."lru-cache-6.0.0" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."minimatch-3.0.4" sources."minimist-1.2.5" sources."mkdirp-0.5.5" @@ -121105,7 +121181,7 @@ in sources."inflight-1.0.6" sources."inherits-2.0.4" sources."is-extglob-2.1.1" - sources."is-glob-4.0.2" + sources."is-glob-4.0.3" sources."is-number-7.0.0" sources."is-path-cwd-2.2.0" sources."is-path-inside-3.0.3" @@ -121200,7 +121276,7 @@ in sources."@types/component-emitter-1.2.10" sources."@types/cookie-0.4.1" sources."@types/cors-2.8.12" - sources."@types/node-14.17.19" + sources."@types/node-14.17.20" sources."abbrev-1.1.1" sources."accepts-1.3.7" sources."ansi-regex-5.0.1" @@ -121253,7 +121329,7 @@ in sources."depd-1.1.2" sources."destroy-1.0.4" sources."diff-5.0.0" - sources."diff2html-3.4.11" + sources."diff2html-3.4.12" sources."dnd-page-scroll-0.0.4" sources."duplexer3-0.1.4" sources."ee-first-1.1.1" @@ -121339,8 +121415,8 @@ in sources."merge-descriptors-1.0.1" sources."methods-1.1.2" sources."mime-1.6.0" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."mimic-response-1.0.1" sources."minimatch-3.0.4" sources."minimist-1.2.5" @@ -121481,7 +121557,7 @@ in sha512 = "N+ENrder8z9zJQF9UM7K3/1LcfVW60omqeyaQsu6GN1BGdCgPm8gdHssn7WRD7vx+ABKc82IE1+pJyHOPkwe+w=="; }; dependencies = [ - sources."@types/node-16.10.1" + sources."@types/node-16.10.2" sources."@types/unist-2.0.6" sources."@types/vfile-3.0.2" sources."@types/vfile-message-2.0.0" @@ -121731,7 +121807,7 @@ in sources."safer-buffer-2.1.2" sources."semver-7.3.5" sources."set-blocking-2.0.0" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."simple-concat-1.0.1" sources."simple-get-3.1.0" sources."string-width-1.0.2" @@ -121862,7 +121938,7 @@ in dependencies = [ sources."@sindresorhus/is-0.14.0" sources."@szmarczak/http-timer-1.1.2" - sources."@types/node-16.10.1" + sources."@types/node-16.10.2" sources."@vercel/build-utils-2.12.2" sources."@vercel/go-1.2.3" sources."@vercel/node-1.12.1" @@ -121937,7 +122013,7 @@ in sources."responselike-1.0.2" sources."semver-6.3.0" sources."semver-diff-3.1.1" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."source-map-0.6.1" sources."source-map-support-0.5.20" sources."string-width-4.2.3" @@ -122093,7 +122169,7 @@ in sources."is-core-module-2.7.0" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" - sources."is-glob-4.0.2" + sources."is-glob-4.0.3" sources."isexe-2.0.0" sources."js-tokens-4.0.0" sources."js-yaml-3.14.1" @@ -122140,7 +122216,7 @@ in sources."strip-ansi-6.0.1" sources."strip-json-comments-3.1.1" sources."supports-color-5.5.0" - (sources."table-6.7.1" // { + (sources."table-6.7.2" // { dependencies = [ sources."ajv-8.6.3" sources."json-schema-traverse-1.0.0" @@ -122343,32 +122419,25 @@ in vscode-langservers-extracted = nodeEnv.buildNodePackage { name = "vscode-langservers-extracted"; packageName = "vscode-langservers-extracted"; - version = "2.4.0"; + version = "3.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/vscode-langservers-extracted/-/vscode-langservers-extracted-2.4.0.tgz"; - sha512 = "dGTyYwuKd0miiTGG3ShL1u1MOni/iZLdY8GUyEf86jHIq2+P9h+El0IkXt8GsDGOAIty+DmhDOVZ/VTw2pjUEg=="; + url = "https://registry.npmjs.org/vscode-langservers-extracted/-/vscode-langservers-extracted-3.0.0.tgz"; + sha512 = "iu39jFf+P1n9gf8UDkgZPnQwUiqeOvOuwFuO5kYMopA1DTGliqonXMxGX6RwYLfRrBQQBbu+pyoc89cF1V96Og=="; }; dependencies = [ - sources."agent-base-4.3.0" - sources."debug-3.1.0" - sources."es6-promise-4.2.8" - sources."es6-promisify-5.0.0" - sources."http-proxy-agent-2.1.0" - sources."https-proxy-agent-2.2.4" sources."jsonc-parser-3.0.0" - sources."ms-2.0.0" - (sources."request-light-0.4.0" // { - dependencies = [ - sources."vscode-nls-4.1.2" - ]; - }) + sources."request-light-0.5.4" sources."typescript-4.4.3" sources."vscode-css-languageservice-5.1.7" sources."vscode-html-languageservice-4.1.0" sources."vscode-json-languageservice-4.1.8" - sources."vscode-jsonrpc-6.0.0" - sources."vscode-languageserver-7.0.0" - sources."vscode-languageserver-protocol-3.16.0" + sources."vscode-jsonrpc-8.0.0-next.2" + sources."vscode-languageserver-8.0.0-next.2" + (sources."vscode-languageserver-protocol-3.17.0-next.8" // { + dependencies = [ + sources."vscode-languageserver-types-3.17.0-next.3" + ]; + }) sources."vscode-languageserver-textdocument-1.0.1" sources."vscode-languageserver-types-3.16.0" sources."vscode-nls-5.0.0" @@ -122437,12 +122506,12 @@ in sources."brace-expansion-1.1.11" sources."braces-3.0.2" sources."browser-stdout-1.3.1" - sources."browserslist-4.17.1" + sources."browserslist-4.17.2" sources."buffer-crc32-0.2.13" sources."buffer-from-1.1.2" sources."call-bind-1.0.2" sources."camelcase-6.2.0" - sources."caniuse-lite-1.0.30001261" + sources."caniuse-lite-1.0.30001263" (sources."chalk-4.1.2" // { dependencies = [ sources."supports-color-7.2.0" @@ -122482,14 +122551,14 @@ in sources."domelementtype-2.2.0" sources."domhandler-4.2.2" sources."domutils-2.8.0" - sources."electron-to-chromium-1.3.853" + sources."electron-to-chromium-1.3.857" sources."emoji-regex-8.0.0" sources."emojis-list-3.0.0" sources."enhanced-resolve-5.8.3" sources."entities-2.2.0" sources."envinfo-7.8.1" sources."errno-0.1.8" - sources."es-module-lexer-0.9.1" + sources."es-module-lexer-0.9.2" sources."escalade-3.1.1" sources."escape-string-regexp-4.0.0" sources."eslint-scope-5.1.1" @@ -122534,7 +122603,7 @@ in sources."is-core-module-2.7.0" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-2.0.0" - sources."is-glob-4.0.2" + sources."is-glob-4.0.3" sources."is-number-7.0.0" sources."is-plain-obj-2.1.0" sources."is-plain-object-2.0.4" @@ -122542,7 +122611,7 @@ in sources."isarray-0.0.1" sources."isexe-2.0.0" sources."isobject-3.0.1" - sources."jest-worker-27.2.3" + sources."jest-worker-27.2.4" sources."js-yaml-4.0.0" sources."json-parse-better-errors-1.0.2" sources."json-schema-traverse-0.4.1" @@ -122575,18 +122644,18 @@ in sources."merge-stream-2.0.0" sources."micromatch-4.0.4" sources."mime-1.6.0" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."mimic-fn-2.1.0" sources."minimatch-3.0.4" sources."minimist-1.2.5" sources."mocha-8.4.0" sources."ms-2.1.3" sources."mute-stream-0.0.8" - sources."nanocolors-0.1.12" + sources."nanocolors-0.2.12" sources."nanoid-3.1.20" sources."neo-async-2.6.2" - sources."node-releases-1.1.76" + sources."node-releases-1.1.77" sources."normalize-path-3.0.0" sources."npm-run-path-4.0.1" sources."nth-check-2.0.1" @@ -122639,7 +122708,7 @@ in sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" sources."side-channel-1.0.4" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."source-map-0.6.1" sources."source-map-support-0.5.20" sources."sprintf-js-1.0.3" @@ -122695,7 +122764,7 @@ in sources."vscode-debugadapter-testsupport-1.49.0" sources."vscode-debugprotocol-1.49.0" sources."watchpack-2.2.0" - sources."webpack-5.55.0" + sources."webpack-5.56.0" (sources."webpack-cli-4.8.0" // { dependencies = [ sources."commander-7.2.0" @@ -122909,8 +122978,8 @@ in sources."supports-color-2.0.0" ]; }) - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."mimic-fn-1.2.0" sources."minimatch-3.0.4" sources."minimist-1.2.5" @@ -122958,7 +123027,7 @@ in sources."safer-buffer-2.1.2" sources."seek-bzip-1.0.6" sources."semver-5.7.1" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."source-map-0.6.1" sources."sprintf-js-1.0.3" sources."sshpk-1.16.1" @@ -123058,7 +123127,7 @@ in sources."@starptech/rehype-webparser-0.10.0" sources."@starptech/webparser-0.10.0" sources."@szmarczak/http-timer-1.1.2" - sources."@types/node-16.10.1" + sources."@types/node-16.10.2" sources."@types/unist-2.0.6" sources."@types/vfile-3.0.2" sources."@types/vfile-message-2.0.0" @@ -123423,7 +123492,7 @@ in sources."is-extendable-0.1.1" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-2.0.0" - sources."is-glob-4.0.2" + sources."is-glob-4.0.3" sources."is-hexadecimal-1.0.4" sources."is-hidden-1.1.3" sources."is-installed-globally-0.1.0" @@ -123692,7 +123761,7 @@ in sources."shebang-regex-1.0.0" sources."shellsubstitute-1.2.0" sources."sigmund-1.0.1" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."slash-1.0.0" sources."slice-ansi-2.1.0" (sources."snapdragon-0.8.2" // { @@ -124105,8 +124174,8 @@ in sources."semver-6.3.0" ]; }) - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."mimic-response-2.1.0" sources."minimatch-3.0.4" sources."minimist-1.2.5" @@ -124143,7 +124212,7 @@ in sources."saxes-5.0.1" sources."semver-7.3.5" sources."set-blocking-2.0.0" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."simple-concat-1.0.1" sources."simple-get-3.1.0" sources."source-map-0.6.1" @@ -124253,7 +124322,7 @@ in sources."@sindresorhus/is-0.14.0" sources."@szmarczak/http-timer-1.1.2" sources."@types/minimatch-3.0.5" - sources."@types/node-16.10.1" + sources."@types/node-16.10.2" sources."@types/yauzl-2.9.2" sources."acorn-7.4.1" sources."acorn-jsx-5.3.2" @@ -124263,7 +124332,7 @@ in ]; }) sources."addons-scanner-utils-4.10.0" - sources."adm-zip-0.5.6" + sources."adm-zip-0.5.7" sources."ajv-6.12.6" sources."ajv-merge-patch-4.1.0" sources."ansi-align-3.0.1" @@ -124506,7 +124575,7 @@ in sources."is-docker-2.2.1" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" - sources."is-glob-4.0.2" + sources."is-glob-4.0.3" sources."is-installed-globally-0.4.0" sources."is-mergeable-object-1.1.1" sources."is-npm-5.0.0" @@ -124577,8 +124646,8 @@ in sources."marky-1.2.2" sources."mem-5.1.1" sources."merge-stream-2.0.0" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."mimic-fn-2.1.0" sources."mimic-response-1.0.1" sources."minimatch-3.0.4" @@ -124700,7 +124769,7 @@ in sources."shell-quote-1.6.1" sources."shellwords-0.1.1" sources."sign-addon-3.8.0" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."slice-ansi-4.0.0" sources."sonic-boom-1.4.1" sources."source-map-0.6.1" @@ -124730,7 +124799,7 @@ in sources."strip-final-newline-2.0.0" sources."strip-json-comments-3.1.1" sources."supports-color-7.2.0" - (sources."table-6.7.1" // { + (sources."table-6.7.2" // { dependencies = [ sources."ajv-8.6.3" sources."ansi-regex-5.0.1" @@ -124807,17 +124876,17 @@ in webpack = nodeEnv.buildNodePackage { name = "webpack"; packageName = "webpack"; - version = "5.55.0"; + version = "5.56.0"; src = fetchurl { - url = "https://registry.npmjs.org/webpack/-/webpack-5.55.0.tgz"; - sha512 = "/1LyoAG+4+YRt+RLN3H2cz4dcw8+iO/GwKhL54GQDmqONCi0ZISXZF6aCCrCRDJFK685h+RGLCZd61Y+SEqdWQ=="; + url = "https://registry.npmjs.org/webpack/-/webpack-5.56.0.tgz"; + sha512 = "pJ7esw2AGkpZL0jqsEAKnDEfRZdrc9NVjAWA+d1mFkwj68ng9VQ6+Wnrl+kS5dlDHvrat5ASK5vd7wp6I7f53Q=="; }; dependencies = [ sources."@types/eslint-7.28.0" sources."@types/eslint-scope-3.7.1" sources."@types/estree-0.0.50" sources."@types/json-schema-7.0.9" - sources."@types/node-16.10.1" + sources."@types/node-16.10.2" sources."@webassemblyjs/ast-1.11.1" sources."@webassemblyjs/floating-point-hex-parser-1.11.1" sources."@webassemblyjs/helper-api-error-1.11.1" @@ -124839,14 +124908,14 @@ in sources."acorn-import-assertions-1.7.6" sources."ajv-6.12.6" sources."ajv-keywords-3.5.2" - sources."browserslist-4.17.1" + sources."browserslist-4.17.2" sources."buffer-from-1.1.2" - sources."caniuse-lite-1.0.30001261" + sources."caniuse-lite-1.0.30001263" sources."chrome-trace-event-1.0.3" sources."commander-2.20.3" - sources."electron-to-chromium-1.3.853" + sources."electron-to-chromium-1.3.857" sources."enhanced-resolve-5.8.3" - sources."es-module-lexer-0.9.1" + sources."es-module-lexer-0.9.2" sources."escalade-3.1.1" sources."eslint-scope-5.1.1" (sources."esrecurse-4.3.0" // { @@ -124861,16 +124930,16 @@ in sources."glob-to-regexp-0.4.1" sources."graceful-fs-4.2.8" sources."has-flag-4.0.0" - sources."jest-worker-27.2.3" + sources."jest-worker-27.2.4" sources."json-parse-better-errors-1.0.2" sources."json-schema-traverse-0.4.1" sources."loader-runner-4.2.0" sources."merge-stream-2.0.0" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" - sources."nanocolors-0.1.12" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" + sources."nanocolors-0.2.12" sources."neo-async-2.6.2" - sources."node-releases-1.1.76" + sources."node-releases-1.1.77" sources."p-limit-3.1.0" sources."punycode-2.1.1" sources."randombytes-2.1.0" @@ -124954,7 +125023,7 @@ in sources."shallow-clone-3.0.1" sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."strip-final-newline-2.0.0" sources."v8-compile-cache-2.3.0" sources."webpack-merge-5.8.0" @@ -124985,7 +125054,7 @@ in sources."@nodelib/fs.walk-1.2.8" sources."@types/http-proxy-1.17.7" sources."@types/json-schema-7.0.9" - sources."@types/node-16.10.1" + sources."@types/node-16.10.2" sources."@types/retry-0.12.1" sources."accepts-1.3.7" sources."aggregate-error-3.1.0" @@ -125013,7 +125082,7 @@ in sources."call-bind-1.0.2" sources."chokidar-3.5.2" sources."clean-stack-2.2.0" - sources."colorette-2.0.12" + sources."colorette-2.0.14" sources."compressible-2.0.18" (sources."compression-1.7.4" // { dependencies = [ @@ -125116,7 +125185,7 @@ in sources."is-date-object-1.0.5" sources."is-docker-2.2.1" sources."is-extglob-2.1.1" - sources."is-glob-4.0.2" + sources."is-glob-4.0.3" sources."is-ip-3.1.0" sources."is-number-7.0.0" sources."is-path-cwd-2.2.0" @@ -125137,8 +125206,8 @@ in sources."methods-1.1.2" sources."micromatch-4.0.4" sources."mime-1.6.0" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."mimic-fn-2.1.0" sources."minimalistic-assert-1.0.1" sources."minimatch-3.0.4" @@ -125221,7 +125290,7 @@ in sources."setprototypeof-1.1.1" sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."slash-3.0.0" sources."sockjs-0.3.21" (sources."spdy-4.0.2" // { @@ -125265,7 +125334,7 @@ in sources."websocket-extensions-0.1.4" sources."which-2.0.2" sources."wrappy-1.0.2" - sources."ws-8.2.2" + sources."ws-8.2.3" ]; buildInputs = globalBuildInputs; meta = { @@ -125304,11 +125373,11 @@ in sources."fast-json-stable-stringify-2.1.0" sources."fastq-1.13.0" sources."fill-range-7.0.1" - sources."glob-parent-6.0.1" + sources."glob-parent-6.0.2" sources."globby-11.0.4" sources."ignore-5.1.8" sources."is-extglob-2.1.1" - sources."is-glob-4.0.2" + sources."is-glob-4.0.3" sources."is-number-7.0.0" sources."json-schema-traverse-0.4.1" sources."merge2-1.4.1" @@ -125361,7 +125430,7 @@ in sources."@protobufjs/pool-1.1.0" sources."@protobufjs/utf8-1.1.0" sources."@types/long-4.0.1" - sources."@types/node-16.10.1" + sources."@types/node-16.10.2" sources."addr-to-ip-port-1.5.4" sources."airplay-js-0.3.0" sources."ansi-regex-5.0.1" @@ -125733,37 +125802,35 @@ in yaml-language-server = nodeEnv.buildNodePackage { name = "yaml-language-server"; packageName = "yaml-language-server"; - version = "0.22.0"; + version = "0.23.0"; src = fetchurl { - url = "https://registry.npmjs.org/yaml-language-server/-/yaml-language-server-0.22.0.tgz"; - sha512 = "+b2B5qsQhVdovneS3cU8HzTIZSMw8gn6zsznXqtjHYrdXUZqLCnWhnYNVRWLrWSzrxOHOyczOnx60sSuQNctJw=="; + url = "https://registry.npmjs.org/yaml-language-server/-/yaml-language-server-0.23.0.tgz"; + sha512 = "0x3T9GknnROfA8RErRX5djn+3P7PixVonWubhalJTqc5+ZrWVSRimm7XFzZx3owstpxgtH0QYmP68B8grNkXMw=="; }; dependencies = [ sources."agent-base-4.3.0" - sources."argparse-2.0.1" sources."debug-3.1.0" sources."es6-promise-4.2.8" sources."es6-promisify-5.0.0" sources."http-proxy-agent-2.1.0" sources."https-proxy-agent-2.2.4" - sources."js-yaml-4.1.0" sources."jsonc-parser-3.0.0" sources."ms-2.0.0" - sources."request-light-0.2.5" - (sources."vscode-json-languageservice-4.1.8" // { + (sources."request-light-0.2.5" // { dependencies = [ - sources."vscode-nls-5.0.0" - sources."vscode-uri-3.0.2" + sources."vscode-nls-4.1.2" ]; }) + sources."vscode-json-languageservice-4.1.8" sources."vscode-jsonrpc-6.0.0" sources."vscode-languageserver-7.0.0" sources."vscode-languageserver-protocol-3.16.0" sources."vscode-languageserver-textdocument-1.0.1" sources."vscode-languageserver-types-3.16.0" - sources."vscode-nls-4.1.2" - sources."vscode-uri-2.1.2" - sources."yaml-language-server-parser-0.1.2" + sources."vscode-nls-5.0.0" + sources."vscode-uri-3.0.2" + sources."yaml-2.0.0-7" + sources."yaml-language-server-parser-0.1.3" ]; buildInputs = globalBuildInputs; meta = { @@ -125838,10 +125905,10 @@ in yarn = nodeEnv.buildNodePackage { name = "yarn"; packageName = "yarn"; - version = "1.22.11"; + version = "1.22.15"; src = fetchurl { - url = "https://registry.npmjs.org/yarn/-/yarn-1.22.11.tgz"; - sha512 = "AWje4bzqO9RUn3sdnM5N8n4ZJ0BqCc/kqFJvpOI5/EVkINXui0yuvU7NDCEF//+WaxHuNay2uOHxA4+tq1P3cg=="; + url = "https://registry.npmjs.org/yarn/-/yarn-1.22.15.tgz"; + sha512 = "AzoEDxj256BOS/jqDXA3pjyhmi4FRBBUMgYoTHI4EIt2EhREkvH0soPVEtnD+DQIJfU5R9bKhcZ1H9l8zPWeoA=="; }; buildInputs = globalBuildInputs; meta = { @@ -125868,7 +125935,7 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - (sources."@npmcli/arborist-2.9.0" // { + (sources."@npmcli/arborist-2.10.0" // { dependencies = [ sources."mkdirp-1.0.4" sources."semver-7.3.5" @@ -125999,7 +126066,7 @@ in sources."cli-boxes-1.0.0" sources."cli-cursor-2.1.0" sources."cli-list-0.2.0" - sources."cli-spinners-2.6.0" + sources."cli-spinners-2.6.1" sources."cli-table-0.3.6" sources."cli-width-2.2.1" sources."clone-1.0.4" @@ -126174,7 +126241,7 @@ in sources."is-extglob-2.1.1" sources."is-finite-1.1.0" sources."is-fullwidth-code-point-2.0.0" - sources."is-glob-4.0.2" + sources."is-glob-4.0.3" sources."is-installed-globally-0.1.0" sources."is-interactive-1.0.0" sources."is-lambda-1.0.1" @@ -126277,8 +126344,8 @@ in sources."merge-stream-2.0.0" sources."merge2-1.4.1" sources."micromatch-4.0.4" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."mimic-fn-2.1.0" sources."mimic-response-1.0.1" sources."minimatch-3.0.4" @@ -126530,7 +126597,7 @@ in sources."set-blocking-2.0.0" sources."shebang-command-1.2.0" sources."shebang-regex-1.0.0" - sources."signal-exit-3.0.4" + sources."signal-exit-3.0.5" sources."slash-3.0.0" sources."smart-buffer-4.2.0" sources."socks-2.6.1" @@ -126749,7 +126816,7 @@ in sources."path-exists-4.0.0" sources."path-key-3.1.1" sources."restore-cursor-3.1.0" - sources."rxjs-7.3.0" + sources."rxjs-7.3.1" sources."semver-7.3.5" sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" @@ -126803,7 +126870,7 @@ in sources."@nodelib/fs.walk-1.2.8" sources."@types/fs-extra-9.0.13" sources."@types/minimist-1.2.2" - sources."@types/node-16.10.1" + sources."@types/node-16.10.2" sources."@types/node-fetch-2.5.12" sources."ansi-styles-4.3.0" sources."array-union-3.0.1" @@ -126829,15 +126896,15 @@ in sources."has-flag-4.0.0" sources."ignore-5.1.8" sources."is-extglob-2.1.1" - sources."is-glob-4.0.2" + sources."is-glob-4.0.3" sources."is-number-7.0.0" sources."isexe-2.0.0" sources."jsonfile-6.1.0" sources."map-stream-0.1.0" sources."merge2-1.4.1" sources."micromatch-4.0.4" - sources."mime-db-1.49.0" - sources."mime-types-2.1.32" + sources."mime-db-1.50.0" + sources."mime-types-2.1.33" sources."minimist-1.2.5" sources."node-fetch-2.6.5" sources."path-type-4.0.0" From 6749fd84fa6c888ce7618368b1782b666b608e5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Sun, 3 Oct 2021 21:10:50 +0200 Subject: [PATCH 45/59] cawbird: add own API key to not run into rate limits --- pkgs/applications/networking/cawbird/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/networking/cawbird/default.nix b/pkgs/applications/networking/cawbird/default.nix index 08f554503748..74074d23242a 100644 --- a/pkgs/applications/networking/cawbird/default.nix +++ b/pkgs/applications/networking/cawbird/default.nix @@ -71,10 +71,10 @@ stdenv.mkDerivation rec { ''; # supply Twitter API keys - # use default keys supplied by upstream, see https://github.com/IBBoard/cawbird/blob/master/README.md#preparation + # use keys supplied by @SuperSandro2000, see https://github.com/IBBoard/cawbird/blob/master/README.md#preparation mesonFlags = [ - "-Dconsumer_key_base64=VmY5dG9yRFcyWk93MzJEZmhVdEk5Y3NMOA==" - "-Dconsumer_secret_base64=MThCRXIxbWRESDQ2Y0podzVtVU13SGUyVGlCRXhPb3BFRHhGYlB6ZkpybG5GdXZaSjI=" + "-Dconsumer_key_base64=YnJJNm01SE9PbEkzM3pWenZObVhVSHdlTg==" + "-Dconsumer_secret_base64=YUc1SkcyYzhsenlKT2VOWWhVSXlJMERDaFh0WEswUG9oTEp4TzhZNEdJb1hXN0hhYlY=" ]; meta = with lib; { @@ -83,6 +83,6 @@ stdenv.mkDerivation rec { homepage = "https://ibboard.co.uk/cawbird/"; license = licenses.gpl3Plus; platforms = platforms.linux; - maintainers = with lib.maintainers; [ jonafato schmittlauch ]; + maintainers = with lib.maintainers; [ jonafato schmittlauch SuperSandro2000 ]; }; } From f83335157c800af78709ad6b13925572d15accb7 Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Sun, 3 Oct 2021 21:30:36 +0200 Subject: [PATCH 46/59] electron_15: init at 15.1.0 + make electron = electron_15 --- pkgs/development/tools/electron/default.nix | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/pkgs/development/tools/electron/default.nix b/pkgs/development/tools/electron/default.nix index 2ce2a8d6a67a..c95977d8bb91 100644 --- a/pkgs/development/tools/electron/default.nix +++ b/pkgs/development/tools/electron/default.nix @@ -22,7 +22,7 @@ let in rec { - electron = electron_14; + electron = electron_15; electron_3 = mkElectron "3.1.13" { x86_64-linux = "1psmbplz6jhnnf6hmfhxbmmhn4n1dpnhzbc12pxn645xhfpk9ark"; @@ -134,4 +134,14 @@ rec { aarch64-darwin = "5c81f418f3f83dc6fc5893247dd386e1d23e609c83f798dd5aad451febed13c8"; headers = "0p8lkhy97yq43sl6s4rskhdnzl520968cyh5l4fdhl2fhm5mayd4"; }; + + electron_15 = mkElectron "15.1.0" { + armv7l-linux = "30213989477e29341b9873110e4b180e7d2ced4f72d26c914e7642930c9338fb"; + aarch64-linux = "7a6f07727b91e150b16e9cac5e374ce88c43c85aae76b306a0e5b2a37b3275e8"; + x86_64-linux = "c2f50ede410558e2eb761648fc9bacf34472dccf8b740f3037d351f9ae604072"; + i686-linux = "0b502ca518f61c0613d2dee1c1ae18d0d71c793f9b822f6c92b6428afda20f20"; + x86_64-darwin = "8062bbb29e5f12bf1efee27dc5dd18c98ef9b09d68c8fabd12ad4465e5bb02bd"; + aarch64-darwin = "cb28d4a1167ea2f42668ff4b880223ccf211a79ea53024652afc90b7aaac419e"; + headers = "128rw8z06izymwic2lrqbjx7p1ap39q3mmawswwpr6h0jazqrkv3"; + }; } From 97fe835b44f6f3fe020db6e9a372a904750cc29f Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Mon, 27 Sep 2021 07:45:58 +0200 Subject: [PATCH 47/59] =?UTF-8?q?coqPackages.gappalib:=201.4.5=20=E2=86=92?= =?UTF-8?q?=201.5.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkgs/development/coq-modules/gappalib/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/coq-modules/gappalib/default.nix b/pkgs/development/coq-modules/gappalib/default.nix index a835d53fdedb..cd5aaa49025e 100644 --- a/pkgs/development/coq-modules/gappalib/default.nix +++ b/pkgs/development/coq-modules/gappalib/default.nix @@ -6,7 +6,8 @@ with lib; mkCoqDerivation { owner = "gappa"; domain = "gitlab.inria.fr"; inherit version; - defaultVersion = if versions.isGe "8.8" coq.coq-version then "1.4.5" else null; + defaultVersion = if versions.isGe "8.8" coq.coq-version then "1.5.0" else null; + release."1.5.0".sha256 = "1i1c0gakffxqqqqw064cbvc243yl325hxd50jmczr6mk18igk41n"; release."1.4.5".sha256 = "081hib1d9wfm29kis390qsqch8v6fs3q71g2rgbbzx5y5cf48n9k"; release."1.4.4".sha256 = "114q2hgw64j6kqa9mg3qcp1nlf0ia46z2xadq81fnkxqm856ml7l"; releaseRev = v: "gappalib-coq-${v}"; From 0d7d78f8ff9539fbaf54ef8fc972eb4336893b87 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 3 Oct 2021 22:06:25 +0200 Subject: [PATCH 48/59] python3Packages.async-upnp-client: 0.22.4 -> 0.22.5 --- pkgs/development/python-modules/async-upnp-client/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/async-upnp-client/default.nix b/pkgs/development/python-modules/async-upnp-client/default.nix index a4cd45ccde0a..2f5bb183795f 100644 --- a/pkgs/development/python-modules/async-upnp-client/default.nix +++ b/pkgs/development/python-modules/async-upnp-client/default.nix @@ -14,14 +14,14 @@ buildPythonPackage rec { pname = "async-upnp-client"; - version = "0.22.4"; + version = "0.22.5"; disabled = pythonOlder "3.6"; src = fetchFromGitHub { owner = "StevenLooman"; repo = "async_upnp_client"; rev = version; - sha256 = "sha256-bo01BMBf2AWpJPkHdAMpxz6UtHYs02TwNOOCKn/HLmI="; + sha256 = "sha256-/GELV94m75jSIFR4Ua3Sr+L9iGmzRQxPMIK2yfDiX9E="; }; propagatedBuildInputs = [ From f887d5b363b75456d787e2a7e4ca71d2371b22d8 Mon Sep 17 00:00:00 2001 From: rnhmjoj Date: Fri, 1 Oct 2021 12:10:26 +0200 Subject: [PATCH 49/59] maintainers/maintainers-list: add Matrix IDs --- maintainers/maintainer-list.nix | 143 +++++++++++++++++++++++++++++++- 1 file changed, 142 insertions(+), 1 deletion(-) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 0326ca7a9824..f71029a826f1 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -6,6 +6,7 @@ email = "address@example.org"; # Optional + matrix = "@user:example.org"; github = "GithubUsername"; githubId = your-github-id; keys = [{ @@ -19,7 +20,8 @@ - `handle` is the handle you are going to use in nixpkgs expressions, - `name` is your, preferably real, name, - - `email` is your maintainer email address, and + - `email` is your maintainer email address, + - `matrix` is your Matrix user ID, - `github` is your GitHub handle (as it appears in the URL of your profile page, `https://github.com/`), - `githubId` is your GitHub user ID, which can be found at `https://api.github.com/users/`, - `keys` is a list of your PGP/GPG key IDs and fingerprints. @@ -56,6 +58,7 @@ }; _0x4A6F = { email = "mail-maintainer@0x4A6F.dev"; + matrix = "@0x4a6f:matrix.org"; name = "Joachim Ernst"; github = "0x4A6F"; githubId = 9675338; @@ -118,12 +121,14 @@ }; aanderse = { email = "aaron@fosslib.net"; + matrix = "@aanderse:nixos.dev"; github = "aanderse"; githubId = 7755101; name = "Aaron Andersen"; }; aaronjanse = { email = "aaron@ajanse.me"; + matrix = "@aaronjanse:matrix.org"; github = "aaronjanse"; githubId = 16829510; name = "Aaron Janse"; @@ -242,12 +247,14 @@ }; addict3d = { email = "nickbathum@gmail.com"; + matrix = "@nbathum:matrix.org"; github = "addict3d"; githubId = 49227; name = "Nick Bathum"; }; adisbladis = { email = "adisbladis@gmail.com"; + matrix = "@adis:blad.is"; github = "adisbladis"; githubId = 63286; name = "Adam Hose"; @@ -362,6 +369,7 @@ }; ajs124 = { email = "nix@ajs124.de"; + matrix = "@andreas.schraegle:helsinki-systems.de"; github = "ajs124"; githubId = 1229027; name = "Andreas Schrägle"; @@ -938,6 +946,7 @@ }; asbachb = { email = "asbachb-nixpkgs-5c2a@impl.it"; + matrix = "@asbachb:matrix.org"; github = "asbachb"; githubId = 1482768; name = "Benjamin Asbach"; @@ -1108,6 +1117,7 @@ }; artturin = { email = "artturin@artturin.com"; + matrix = "@artturin:matrix.org"; github = "artturin"; githubId = 56650223; name = "Artturi N"; @@ -1144,6 +1154,7 @@ }; bachp = { email = "pascal.bach@nextrem.ch"; + matrix = "@bachp:matrix.org"; github = "bachp"; githubId = 333807; name = "Pascal Bach"; @@ -1218,6 +1229,7 @@ }; bb010g = { email = "me@bb010g.com"; + matrix = "@bb010g:matrix.org"; github = "bb010g"; githubId = 340132; name = "Brayden Banks"; @@ -1278,6 +1290,7 @@ }; bendlas = { email = "herwig@bendlas.net"; + matrix = "@bendlas:matrix.org"; github = "bendlas"; githubId = 214787; name = "Herwig Hochleitner"; @@ -1324,6 +1337,7 @@ }; berberman = { email = "berberman@yandex.com"; + matrix = "@berberman:mozilla.org"; github = "berberman"; githubId = 26041945; name = "Potato Hatsue"; @@ -1430,6 +1444,7 @@ }; blitz = { email = "js@alien8.de"; + matrix = "@js:ukvly.org"; github = "blitz"; githubId = 37907; name = "Julian Stecklina"; @@ -1467,6 +1482,7 @@ bobby285271 = { name = "Bobby Rong"; email = "rjl931189261@126.com"; + matrix = "@bobby285271:matrix.org"; github = "bobby285271"; githubId = 20080233; }; @@ -1618,6 +1634,7 @@ }; buckley310 = { email = "sean.bck@gmail.com"; + matrix = "@buckley310:matrix.org"; github = "buckley310"; githubId = 2379774; name = "Sean Buckley"; @@ -1797,6 +1814,7 @@ }; cdepillabout = { email = "cdep.illabout@gmail.com"; + matrix = "@cdepillabout:matrix.org"; github = "cdepillabout"; githubId = 64804; name = "Dennis Gosnell"; @@ -2011,6 +2029,7 @@ }; chvp = { email = "nixpkgs@cvpetegem.be"; + matrix = "@charlotte:vanpetegem.me"; github = "chvp"; githubId = 42220376; name = "Charlotte Van Petegem"; @@ -2075,6 +2094,7 @@ }; cleverca22 = { email = "cleverca22@gmail.com"; + matrix = "@cleverca22:matrix.org"; github = "cleverca22"; githubId = 848609; name = "Michael Bishop"; @@ -2145,6 +2165,7 @@ }; colemickens = { email = "cole.mickens@gmail.com"; + matrix = "@colemickens:matrix.org"; github = "colemickens"; githubId = 327028; name = "Cole Mickens"; @@ -2158,6 +2179,7 @@ cole-h = { name = "Cole Helbling"; email = "cole.e.helbling@outlook.com"; + matrix = "@cole-h:matrix.org"; github = "cole-h"; githubId = 28582702; keys = [{ @@ -2261,6 +2283,7 @@ }; CRTified = { email = "carl.schneider+nixos@rub.de"; + matrix = "@schnecfk:ruhr-uni-bochum.de"; github = "CRTified"; githubId = 2440581; name = "Carl Richard Theodor Schneider"; @@ -2339,6 +2362,7 @@ }; cyplo = { email = "nixos@cyplo.dev"; + matrix = "@cyplo:cyplo.dev"; github = "cyplo"; githubId = 217899; name = "Cyryl Płotnicki"; @@ -2401,6 +2425,7 @@ }; dandellion = { email = "daniel@dodsorf.as"; + matrix = "@dandellion:dodsorf.as"; github = "dali99"; githubId = 990767; name = "Daniel Olsen"; @@ -2449,6 +2474,7 @@ }; das_j = { email = "janne@hess.ooo"; + matrix = "@janne.hess:helsinki-systems.de"; github = "dasJ"; githubId = 4971975; name = "Janne Heß"; @@ -2493,6 +2519,7 @@ }; davidak = { email = "post@davidak.de"; + matrix = "@davidak:matrix.org"; github = "davidak"; githubId = 91113; name = "David Kleuker"; @@ -2857,6 +2884,7 @@ }; dotlambda = { email = "rschuetz17@gmail.com"; + matrix = "@robert:funklause.de"; github = "dotlambda"; githubId = 6806011; name = "Robert Schütz"; @@ -2930,6 +2958,7 @@ drupol = { name = "Pol Dellaiera"; email = "pol.dellaiera@protonmail.com"; + matrix = "@drupol:matrix.org"; github = "drupol"; githubId = 252042; keys = [{ @@ -2993,6 +3022,7 @@ }; dywedir = { email = "dywedir@gra.red"; + matrix = "@dywedir:matrix.org"; github = "dywedir"; githubId = 399312; name = "Vladyslav M."; @@ -3191,6 +3221,7 @@ }; eliasp = { email = "mail@eliasprobst.eu"; + matrix = "@eliasp:kde.org"; github = "eliasp"; githubId = 48491; name = "Elias Probst"; @@ -3251,6 +3282,7 @@ }; emmanuelrosa = { email = "emmanuel_rosa@aol.com"; + matrix = "@emmanuelrosa:matrix.org"; github = "emmanuelrosa"; githubId = 13485450; name = "Emmanuel Rosa"; @@ -3331,6 +3363,7 @@ }; ereslibre = { email = "ereslibre@ereslibre.es"; + matrix = "@ereslibre:matrix.org"; github = "ereslibre"; githubId = 8706; name = "Rafael Fernández López"; @@ -3355,6 +3388,7 @@ }; ericson2314 = { email = "John.Ericson@Obsidian.Systems"; + matrix = "@ericson2314:matrix.org"; github = "ericson2314"; githubId = 1055245; name = "John Ericson"; @@ -3439,6 +3473,7 @@ }; etu = { email = "elis@hirwing.se"; + matrix = "@etu:semi.social"; github = "etu"; githubId = 461970; name = "Elis Hirwing"; @@ -3456,6 +3491,7 @@ evalexpr = { name = "Jonathan Wilkins"; email = "nixos@wilkins.tech"; + matrix = "@evalexpr:matrix.org"; github = "evalexpr"; githubId = 23485511; keys = [{ @@ -3525,6 +3561,7 @@ }; expipiplus1 = { email = "nix@monoid.al"; + matrix = "@joe:monoid.al"; github = "expipiplus1"; githubId = 857308; name = "Joe Hermaszewski"; @@ -3537,6 +3574,7 @@ }; eyjhb = { email = "eyjhbb@gmail.com"; + matrix = "@eyjhb:eyjhb.dk"; github = "eyJhb"; githubId = 25955146; name = "eyJhb"; @@ -3555,6 +3593,7 @@ }; fab = { email = "mail@fabian-affolter.ch"; + matrix = "@fabaff:matrix.org"; name = "Fabian Affolter"; github = "fabaff"; githubId = 116184; @@ -3641,6 +3680,7 @@ }; felschr = { email = "dev@felschr.com"; + matrix = "@felschr:matrix.org"; github = "felschr"; githubId = 3314323; name = "Felix Tenley"; @@ -3657,12 +3697,14 @@ }; fgaz = { email = "fgaz@fgaz.me"; + matrix = "@fgaz:matrix.org"; github = "fgaz"; githubId = 8182846; name = "Francesco Gazzetta"; }; figsoda = { email = "figsoda@pm.me"; + matrix = "@figsoda:matrix.org"; github = "figsoda"; githubId = 40620903; name = "figsoda"; @@ -3781,6 +3823,7 @@ }; fortuneteller2k = { email = "lythe1107@gmail.com"; + matrix = "@fortuneteller2k:matrix.org"; github = "fortuneteller2k"; githubId = 20619776; name = "fortuneteller2k"; @@ -4021,6 +4064,7 @@ }; ggpeti = { email = "ggpeti@gmail.com"; + matrix = "@ggpeti:ggpeti.com"; github = "ggpeti"; githubId = 3217744; name = "Peter Ferenczy"; @@ -4254,6 +4298,7 @@ gytis-ivaskevicius = { name = "Gytis Ivaskevicius"; email = "me@gytis.io"; + matrix = "@gytis-ivaskevicius:matrix.org"; github = "gytis-ivaskevicius"; githubId = 23264966; }; @@ -4299,6 +4344,7 @@ }; happysalada = { email = "raphael@megzari.com"; + matrix = "@happysalada:matrix.org"; github = "happysalada"; githubId = 5317234; name = "Raphael Megzari"; @@ -4329,6 +4375,7 @@ }; hax404 = { email = "hax404foogit@hax404.de"; + matrix = "@hax404:hax404.de"; github = "hax404"; githubId = 1379411; name = "Georg Haas"; @@ -4405,6 +4452,7 @@ }; hexa = { email = "hexa@darmstadt.ccc.de"; + matrix = "@hexa:lossy.network"; github = "mweinelt"; githubId = 131599; name = "Martin Weinelt"; @@ -4523,6 +4571,7 @@ }; hoverbear = { email = "operator+nix@hoverbear.org"; + matrix = "@hoverbear:matrix.org"; github = "hoverbear"; githubId = 130903; name = "Ana Hobden"; @@ -4611,6 +4660,7 @@ }; iammrinal0 = { email = "nixpkgs@mrinalpurohit.in"; + matrix = "@iammrinal0:nixos.dev"; github = "iammrinal0"; githubId = 890062; name = "Mrinal"; @@ -4642,6 +4692,7 @@ icy-thought = { name = "Icy-Thought"; email = "gilganyx@pm.me"; + matrix = "@gilganix:matrix.org"; github = "Icy-Thought"; githubId = 53710398; }; @@ -4749,6 +4800,7 @@ }; immae = { email = "ismael@bouya.org"; + matrix = "@immae:immae.eu"; github = "immae"; githubId = 510202; name = "Ismaël Bouya"; @@ -4761,6 +4813,7 @@ }; infinisil = { email = "contact@infinisil.com"; + matrix = "@infinisil:matrix.org"; github = "infinisil"; githubId = 20525370; name = "Silvan Mosberger"; @@ -4778,6 +4831,7 @@ irenes = { name = "Irene Knapp"; email = "ireneista@gmail.com"; + matrix = "@irenes:matrix.org"; github = "IreneKnapp"; githubId = 157678; keys = [{ @@ -5007,6 +5061,7 @@ }; jbedo = { email = "cu@cua0.org"; + matrix = "@jb:vk3.wtf"; github = "jbedo"; githubId = 372912; name = "Justin Bedő"; @@ -5138,6 +5193,7 @@ jfroche = { name = "Jean-François Roche"; email = "jfroche@pyxel.be"; + matrix = "@jfroche:matrix.pyxel.cloud"; github = "jfroche"; githubId = 207369; keys = [{ @@ -5213,6 +5269,7 @@ }; jk = { email = "hello+nixpkgs@j-k.io"; + matrix = "@j-k:matrix.org"; github = "06kellyjac"; githubId = 9866621; name = "Jack"; @@ -5313,6 +5370,7 @@ }; joepie91 = { email = "admin@cryto.net"; + matrix = "@joepie91:pixie.town"; name = "Sven Slootweg"; github = "joepie91"; githubId = 1663259; @@ -5368,6 +5426,7 @@ jojosch = { name = "Johannes Schleifenbaum"; email = "johannes@js-webcoding.de"; + matrix = "@jojosch:jswc.de"; github = "jojosch"; githubId = 327488; keys = [{ @@ -5406,6 +5465,7 @@ }; jonringer = { email = "jonringer117@gmail.com"; + matrix = "@jonringer:matrix.org"; github = "jonringer"; githubId = 7673602; name = "Jonathan Ringer"; @@ -5478,6 +5538,7 @@ }; jschievink = { email = "jonasschievink@gmail.com"; + matrix = "@jschievink:matrix.org"; github = "jonas-schievink"; githubId = 1786438; name = "Jonas Schievink"; @@ -5512,6 +5573,7 @@ }; jtojnar = { email = "jtojnar@gmail.com"; + matrix = "@jtojnar:matrix.org"; github = "jtojnar"; githubId = 705123; name = "Jan Tojnar"; @@ -5634,6 +5696,7 @@ }; kalbasit = { email = "wael.nasreddine@gmail.com"; + matrix = "@kalbasit:matrix.org"; github = "kalbasit"; githubId = 87115; name = "Wael Nasreddine"; @@ -5724,6 +5787,7 @@ }; kevincox = { email = "kevincox@kevincox.ca"; + matrix = "@kevincox:matrix.org"; github = "kevincox"; githubId = 494012; name = "Kevin Cox"; @@ -5824,6 +5888,7 @@ }; kirelagin = { email = "kirelagin@gmail.com"; + matrix = "@kirelagin:matrix.org"; github = "kirelagin"; githubId = 451835; name = "Kirill Elagin"; @@ -5878,6 +5943,7 @@ }; kloenk = { email = "me@kloenk.de"; + matrix = "@kloenk:petabyte.dev"; name = "Finn Behrens"; github = "kloenk"; githubId = 12898828; @@ -6091,6 +6157,7 @@ }; l-as = { email = "las@protonmail.ch"; + matrix = "@Las:matrix.org"; github = "L-as"; githubId = 22075344; keys = [{ @@ -6101,6 +6168,7 @@ }; l3af = { email = "L3afMeAlon3@gmail.com"; + matrix = "@L3afMe:matrix.org"; github = "L3afMe"; githubId = 72546287; name = "L3af"; @@ -6141,6 +6209,7 @@ }; lassulus = { email = "lassulus@gmail.com"; + matrix = "@lassulus:nixos.dev"; github = "Lassulus"; githubId = 621759; name = "Lassulus"; @@ -6202,6 +6271,7 @@ }; ldesgoui = { email = "ldesgoui@gmail.com"; + matrix = "@ldesgoui:matrix.org"; github = "ldesgoui"; githubId = 2472678; name = "Lucas Desgouilles"; @@ -6244,6 +6314,7 @@ }; legendofmiracles = { email = "legendofmiracles@protonmail.com"; + matrix = "@legendofmiracles:matrix.org"; github = "legendofmiracles"; githubId = 30902201; name = "legendofmiracles"; @@ -6292,6 +6363,7 @@ }; lewo = { email = "lewo@abesis.fr"; + matrix = "@lewo:matrix.org"; github = "nlewo"; githubId = 3425311; name = "Antoine Eiche"; @@ -6490,6 +6562,7 @@ }; lovesegfault = { email = "meurerbernardo@gmail.com"; + matrix = "@lovesegfault:matrix.org"; github = "lovesegfault"; githubId = 7243783; name = "Bernardo Meurer"; @@ -6516,6 +6589,7 @@ }; lschuermann = { email = "leon.git@is.currently.online"; + matrix = "@leons:is.currently.online"; github = "lschuermann"; githubId = 5341193; name = "Leon Schuermann"; @@ -6592,6 +6666,7 @@ }; lukegb = { email = "nix@lukegb.com"; + matrix = "@lukegb:zxcvbnm.ninja"; github = "lukegb"; githubId = 246745; name = "Luke Granger-Brown"; @@ -6610,6 +6685,7 @@ }; lunik1 = { email = "ch.nixpkgs@themaw.xyz"; + matrix = "@lunik1:lunik.one"; github = "lunik1"; githubId = 13547699; name = "Corin Hoad"; @@ -6658,6 +6734,7 @@ }; ma27 = { email = "maximilian@mbosch.me"; + matrix = "@ma27:nicht-so.sexy"; github = "ma27"; githubId = 6025220; name = "Maximilian Bosch"; @@ -6748,12 +6825,14 @@ }; manveru = { email = "m.fellinger@gmail.com"; + matrix = "@manveru:matrix.org"; github = "manveru"; githubId = 3507; name = "Michael Fellinger"; }; maralorn = { email = "malte.brandy@maralorn.de"; + matrix = "@maralorn:maralorn.de"; github = "maralorn"; githubId = 1651325; name = "Malte Brandy"; @@ -6892,6 +6971,7 @@ }; matthiasbeyer = { email = "mail@beyermatthias.de"; + matrix = "@musicmatze:beyermatthi.as"; github = "matthiasbeyer"; githubId = 427866; name = "Matthias Beyer"; @@ -7174,6 +7254,7 @@ }; mic92 = { email = "joerg@thalheim.io"; + matrix = "@mic92:nixos.dev"; github = "mic92"; githubId = 96200; name = "Jörg Thalheim"; @@ -7221,6 +7302,7 @@ }; midchildan = { email = "git@midchildan.org"; + matrix = "@midchildan:matrix.org"; github = "midchildan"; githubId = 7343721; name = "midchildan"; @@ -7327,6 +7409,7 @@ }; mjlbach = { email = "m.j.lbach@gmail.com"; + matrix = "@atrius:matrix.org"; github = "mjlbach"; githubId = 13316262; name = "Michael Lingelbach"; @@ -7367,6 +7450,7 @@ }; mkg20001 = { email = "mkg20001+nix@gmail.com"; + matrix = "@mkg20001:matrix.org"; github = "mkg20001"; githubId = 7735145; name = "Maciej Krüger"; @@ -7697,6 +7781,7 @@ }; mvnetbiz = { email = "mvnetbiz@gmail.com"; + matrix = "@mvtva:matrix.org"; github = "mvnetbiz"; githubId = 6455574; name = "Matt Votava"; @@ -7783,6 +7868,7 @@ }; ncfavier = { email = "n@monade.li"; + matrix = "@ncfavier:matrix.org"; github = "ncfavier"; githubId = 4323933; name = "Naïm Favier"; @@ -7874,6 +7960,7 @@ }; nh2 = { email = "mail@nh2.me"; + matrix = "@nh2:matrix.org"; github = "nh2"; githubId = 399535; name = "Niklas Hambüchen"; @@ -7960,6 +8047,7 @@ }; ninjatrappeur = { email = "felix@alternativebit.fr"; + matrix = "@ninjatrappeur:matrix.org"; github = "ninjatrappeur"; githubId = 1219785; name = "Félix Baylac-Jacqué"; @@ -8014,6 +8102,7 @@ }; nixinator = { email = "33lockdown33@protonmail.com"; + matrix = "@nixinator:nixos.dev"; github = "nixinator"; githubId = 66913205; name = "Rick Sanchez"; @@ -8062,6 +8151,7 @@ }; noneucat = { email = "andy@lolc.at"; + matrix = "@noneucat:lolc.at"; github = "noneucat"; githubId = 40049608; name = "Andy Chun"; @@ -8104,6 +8194,7 @@ }; nrdxp = { email = "tim.deh@pm.me"; + matrix = "@timdeh:matrix.org"; github = "nrdxp"; githubId = 34083928; name = "Tim DeHerrera"; @@ -8145,6 +8236,7 @@ numkem = { name = "Sebastien Bariteau"; email = "numkem@numkem.org"; + matrix = "@numkem:matrix.org"; github = "numkem"; githubId = 332423; }; @@ -8186,6 +8278,7 @@ }; obfusk = { email = "flx@obfusk.net"; + matrix = "@obfusk:matrix.org"; github = "obfusk"; githubId = 1260687; name = "Felix C. Stegerman"; @@ -8380,6 +8473,7 @@ }; pacman99 = { email = "pachum99@gmail.com"; + matrix = "@pachumicchu:myrdd.info"; github = "Pacman99"; githubId = 16345849; name = "Parthiv Seetharaman"; @@ -8540,6 +8634,7 @@ }; petabyteboy = { email = "milan@petabyte.dev"; + matrix = "@milan:petabyte.dev"; github = "petabyteboy"; githubId = 3250809; name = "Milan Pässler"; @@ -8637,6 +8732,7 @@ piegames = { name = "piegames"; email = "nix@piegames.de"; + matrix = "@piegames:matrix.org"; github = "piegamesde"; githubId = 14054505; }; @@ -8884,6 +8980,7 @@ }; primeos = { email = "dev.primeos@gmail.com"; + matrix = "@primeos:matrix.org"; github = "primeos"; githubId = 7537109; name = "Michael Weiss"; @@ -8952,12 +9049,15 @@ }; psibi = { email = "sibi@psibi.in"; + matrix = "@psibi:matrix.org"; github = "psibi"; githubId = 737477; name = "Sibi Prabakaran"; }; pstn = { email = "philipp@xndr.de"; + github = "pstn"; + githubId = 1329940; name = "Philipp Steinpaß"; }; pSub = { @@ -9004,6 +9104,7 @@ }; putchar = { email = "slim.cadoux@gmail.com"; + matrix = "@putch4r:matrix.org"; github = "putchar"; githubId = 8208767; name = "Slim Cadoux"; @@ -9074,6 +9175,7 @@ }; raboof = { email = "arnout@bzzt.net"; + matrix = "@raboof:matrix.org"; github = "raboof"; githubId = 131856; name = "Arnout Engelen"; @@ -9104,6 +9206,7 @@ }; ralith = { email = "ben.e.saunders@gmail.com"; + matrix = "@ralith:ralith.com"; github = "ralith"; githubId = 104558; name = "Benjamin Saunders"; @@ -9343,6 +9446,7 @@ risson = { name = "Marc Schmitt"; email = "marc.schmitt@risson.space"; + matrix = "@risson:lama-corp.space"; github = "rissson"; githubId = 18313093; keys = [ @@ -9400,6 +9504,7 @@ }; rmcgibbo = { email = "rmcgibbo@gmail.com"; + matrix = "@rmcgibbo:matrix.org"; github = "rmcgibbo"; githubId = 641278; name = "Robert T. McGibbon"; @@ -9446,6 +9551,7 @@ }; roberth = { email = "nixpkgs@roberthensing.nl"; + matrix = "@roberthensing:matrix.org"; github = "roberth"; githubId = 496447; name = "Robert Hensing"; @@ -9706,6 +9812,7 @@ }; s1341 = { email = "s1341@shmarya.net"; + matrix = "@s1341:matrix.org"; name = "Shmarya Rubenstein"; github = "s1341"; githubId = 5682183; @@ -9758,6 +9865,7 @@ }; samueldr = { email = "samuel@dionne-riel.com"; + matrix = "@samueldr:matrix.org"; github = "samueldr"; githubId = 132835; name = "Samuel Dionne-Riel"; @@ -9898,6 +10006,7 @@ }; Scriptkiddi = { email = "nixos@scriptkiddi.de"; + matrix = "@fritz.otlinghaus:helsinki-systems.de"; github = "scriptkiddi"; githubId = 3598650; name = "Fritz Otlinghaus"; @@ -9910,6 +10019,7 @@ }; sdier = { email = "scott@dier.name"; + matrix = "@sdier:matrix.org"; github = "sdier"; githubId = 11613056; name = "Scott Dier"; @@ -10178,6 +10288,7 @@ }; siraben = { email = "bensiraphob@gmail.com"; + matrix = "@siraben:matrix.org"; github = "siraben"; githubId = 8219659; name = "Siraphob Phipathananunth"; @@ -10250,6 +10361,7 @@ }; SlothOfAnarchy = { email = "slothofanarchy1@gmail.com"; + matrix = "@michel.weitbrecht:helsinki-systems.de"; github = "SlothOfAnarchy"; githubId = 12828415; name = "Michel Weitbrecht"; @@ -10324,6 +10436,7 @@ }; solson = { email = "scott@solson.me"; + matrix = "@solson:matrix.org"; github = "solson"; githubId = 26806; name = "Scott Olson"; @@ -10376,6 +10489,7 @@ }; spencerjanssen = { email = "spencerjanssen@gmail.com"; + matrix = "@sjanssen:matrix.org"; github = "spencerjanssen"; githubId = 2600039; name = "Spencer Janssen"; @@ -10424,6 +10538,7 @@ }; srhb = { email = "sbrofeldt@gmail.com"; + matrix = "@srhb:matrix.org"; github = "srhb"; githubId = 219362; name = "Sarah Brofeldt"; @@ -10460,6 +10575,7 @@ }; stephank = { email = "nix@stephank.nl"; + matrix = "@skochen:matrix.org"; github = "stephank"; githubId = 89950; name = "Stéphan Kochen"; @@ -10591,11 +10707,13 @@ superherointj = { name = "Sérgio G."; email = "5861043+superherointj@users.noreply.github.com"; + matrix = "@superherointj:matrix.org"; github = "superherointj"; githubId = 5861043; }; SuperSandro2000 = { email = "sandro.jaeckel@gmail.com"; + matrix = "@sandro:supersandro.de"; github = "SuperSandro2000"; githubId = 7258858; name = "Sandro Jäckel"; @@ -10680,6 +10798,7 @@ }; symphorien = { email = "symphorien_nixpkgs@xlumurb.eu"; + matrix = "@symphorien:xlumurb.eu"; github = "symphorien"; githubId = 12595971; name = "Guillaume Girol"; @@ -10768,6 +10887,7 @@ }; taktoa = { email = "taktoa@gmail.com"; + matrix = "@taktoa:matrix.org"; github = "taktoa"; githubId = 553443; name = "Remy Goldschmidt"; @@ -10786,6 +10906,7 @@ }; talyz = { email = "kim.lindberger@gmail.com"; + matrix = "@talyz:matrix.org"; github = "talyz"; githubId = 63433; name = "Kim Lindberger"; @@ -10894,6 +11015,7 @@ }; tfc = { email = "jacek@galowicz.de"; + matrix = "@jonge:ukvly.org"; github = "tfc"; githubId = 29044; name = "Jacek Galowicz"; @@ -10988,6 +11110,7 @@ }; thibautmarty = { email = "github@thibautmarty.fr"; + matrix = "@thibaut:thibautmarty.fr"; github = "ThibautMarty"; githubId = 3268082; name = "Thibaut Marty"; @@ -11128,6 +11251,7 @@ }; tnias = { email = "phil@grmr.de"; + matrix = "@tnias:stratum0.org"; github = "tnias"; githubId = 9853194; name = "Philipp Bartsch"; @@ -11174,6 +11298,7 @@ }; tomberek = { email = "tomberek@gmail.com"; + matrix = "@tomberek:matrix.org"; github = "tomberek"; githubId = 178444; name = "Thomas Bereknyei"; @@ -11192,6 +11317,7 @@ }; toonn = { email = "nixpkgs@toonn.io"; + matrix = "@toonn:matrix.org"; github = "toonn"; githubId = 1486805; name = "Toon Nolten"; @@ -11394,6 +11520,7 @@ }; unode = { email = "alves.rjc@gmail.com"; + matrix = "@renato_alves:matrix.org"; github = "unode"; githubId = 122319; name = "Renato Alves"; @@ -11454,6 +11581,7 @@ }; vaibhavsagar = { email = "vaibhavsagar@gmail.com"; + matrix = "@vaibhavsagar:matrix.org"; github = "vaibhavsagar"; githubId = 1525767; name = "Vaibhav Sagar"; @@ -11472,6 +11600,7 @@ }; valodim = { email = "look@my.amazin.horse"; + matrix = "@Valodim:stratum0.org"; github = "valodim"; githubId = 27813; name = "Vincent Breitmoser"; @@ -11532,6 +11661,7 @@ name = "Vladimír Čunát"; # vcunat@gmail.com predominated in commits before 2019/03 email = "v@cunat.cz"; + matrix = "@vcunat:matrix.org"; github = "vcunat"; githubId = 1785925; keys = [{ @@ -11968,6 +12098,7 @@ }; xe = { email = "me@christine.website"; + matrix = "@withoutwithin:matrix.org"; github = "Xe"; githubId = 529003; name = "Christine Dodrill"; @@ -11986,6 +12117,7 @@ }; xfix = { email = "konrad@borowski.pw"; + matrix = "@xfix:matrix.org"; github = "xfix"; githubId = 1297598; name = "Konrad Borowski"; @@ -12058,6 +12190,7 @@ }; yayayayaka = { email = "nixpkgs@uwu.is"; + matrix = "@lara:uwu.is"; github = "yayayayaka"; githubId = 73759599; name = "Lara A."; @@ -12100,6 +12233,7 @@ }; yorickvp = { email = "yorickvanpelt@gmail.com"; + matrix = "@yorickvp:matrix.org"; github = "yorickvp"; githubId = 647076; name = "Yorick van Pelt"; @@ -12140,12 +12274,14 @@ }; yuka = { email = "yuka@yuka.dev"; + matrix = "@yuka:yuka.dev"; github = "yu-re-ka"; githubId = 86169957; name = "Yureka"; }; yusdacra = { email = "y.bera003.06@protonmail.com"; + matrix = "@yusdacra:nixos.dev"; github = "yusdacra"; githubId = 19897088; name = "Yusuf Bera Ertan"; @@ -12248,6 +12384,7 @@ }; zhaofengli = { email = "hello@zhaofeng.li"; + matrix = "@zhaofeng:zhaofeng.li"; github = "zhaofengli"; githubId = 2189609; name = "Zhaofeng Li"; @@ -12463,6 +12600,7 @@ fzakaria = { name = "Farid Zakaria"; email = "farid.m.zakaria@gmail.com"; + matrix = "@fzakaria:matrix.org"; github = "fzakaria"; githubId = 605070; }; @@ -12481,6 +12619,7 @@ hmenke = { name = "Henri Menke"; email = "henri@henrimenke.de"; + matrix = "@hmenke:matrix.org"; github = "hmenke"; githubId = 1903556; keys = [{ @@ -12547,6 +12686,7 @@ princemachiavelli = { name = "Josh Hoffer"; email = "jhoffer@sansorgan.es"; + matrix = "@princemachiavelli:matrix.org"; github = "princemachiavelli"; githubId = 2730968; keys = [{ @@ -12587,6 +12727,7 @@ zeri = { name = "zeri"; email = "68825133+zeri42@users.noreply.github.com"; + matrix = "@zeri:matrix.org"; github = "zeri42"; githubId = 68825133; }; From 921142e8897b8db93f751149dccc2a577764cacb Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 3 Oct 2021 22:47:08 +0200 Subject: [PATCH 50/59] python3Packages.pycarwings2: init at 2.11 --- .../python-modules/pycarwings2/default.nix | 59 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 61 insertions(+) create mode 100644 pkgs/development/python-modules/pycarwings2/default.nix diff --git a/pkgs/development/python-modules/pycarwings2/default.nix b/pkgs/development/python-modules/pycarwings2/default.nix new file mode 100644 index 000000000000..a0e8a7e84851 --- /dev/null +++ b/pkgs/development/python-modules/pycarwings2/default.nix @@ -0,0 +1,59 @@ +{ lib +, buildPythonPackage +, fetchFromGitHub +, pytestCheckHook +, pythonOlder +, pyyaml +, iso8601 +, requests +, pycryptodome +}: + +buildPythonPackage rec { + pname = "pycarwings2"; + version = "2.11"; + format = "setuptools"; + + disabled = pythonOlder "3.5"; + + src = fetchFromGitHub { + owner = "filcole"; + repo = pname; + rev = "v${version}"; + sha256 = "0daqxnic7kphspqqq8a0bjp009l5a7d1k72q6cz43g7ca6wfq4b1"; + }; + + propagatedBuildInputs = [ + pyyaml + iso8601 + requests + pycryptodome + ]; + + checkInputs = [ + pytestCheckHook + ]; + + postPatch = '' + substituteInPlace setup.py \ + --replace "'pytest-runner'" "" + substituteInPlace setup.cfg \ + --replace " --flake8 --cov=pycarwings2 --cache-clear --ignore=venv --verbose" "" + ''; + + disabledTests = [ + # Test requires network access + "test_bad_password" + ]; + + pythonImportsCheck = [ + "pycarwings2" + ]; + + meta = with lib; { + description = "Python library for interacting with the NissanConnect EV"; + homepage = "https://github.com/filcole/pycarwings2"; + license = licenses.asl20; + maintainers = with maintainers; [ fab ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index c15f5520b9b8..32b5aac103c4 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -6055,6 +6055,8 @@ in { pycares = callPackage ../development/python-modules/pycares { }; + pycarwings2 = callPackage ../development/python-modules/pycarwings2 { }; + pycategories = callPackage ../development/python-modules/pycategories { }; pycdio = callPackage ../development/python-modules/pycdio { }; From 752336b6e82349db3cf8a9a497101d12fc9ec2f8 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 3 Oct 2021 22:48:16 +0200 Subject: [PATCH 51/59] home-assistant: update component-packages --- pkgs/servers/home-assistant/component-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/servers/home-assistant/component-packages.nix b/pkgs/servers/home-assistant/component-packages.nix index 347caca82707..b49cffef15fa 100644 --- a/pkgs/servers/home-assistant/component-packages.nix +++ b/pkgs/servers/home-assistant/component-packages.nix @@ -575,7 +575,7 @@ "nightscout" = ps: with ps; [ ]; # missing inputs: py-nightscout "niko_home_control" = ps: with ps; [ ]; # missing inputs: niko-home-control "nilu" = ps: with ps; [ niluclient ]; - "nissan_leaf" = ps: with ps; [ ]; # missing inputs: pycarwings2 + "nissan_leaf" = ps: with ps; [ pycarwings2 ]; "nmap_tracker" = ps: with ps; [ aiohttp-cors getmac ifaddr netmap ]; # missing inputs: mac-vendor-lookup "nmbs" = ps: with ps; [ ]; # missing inputs: pyrail "no_ip" = ps: with ps; [ ]; From c41152455777f877d5488236616890980fe7457c Mon Sep 17 00:00:00 2001 From: "\"Will Badart\"" <"will@willbadart.com"> Date: Sun, 3 Oct 2021 13:58:01 -0700 Subject: [PATCH 52/59] vimPlugins: update --- pkgs/misc/vim-plugins/generated.nix | 132 ++++++++++++++-------------- 1 file changed, 66 insertions(+), 66 deletions(-) diff --git a/pkgs/misc/vim-plugins/generated.nix b/pkgs/misc/vim-plugins/generated.nix index 314c238905d3..5a924b2d6738 100644 --- a/pkgs/misc/vim-plugins/generated.nix +++ b/pkgs/misc/vim-plugins/generated.nix @@ -449,12 +449,12 @@ final: prev: chadtree = buildVimPluginFrom2Nix { pname = "chadtree"; - version = "2021-10-02"; + version = "2021-10-03"; src = fetchFromGitHub { owner = "ms-jpq"; repo = "chadtree"; - rev = "3a57532f32aed5c46efee2fdf0f079bcf76b12ec"; - sha256 = "0l4az480sv6zpymsds9lqh9nd2j5pzwr7cvh5m9bgkfvwbh76p7h"; + rev = "b224cc55bee059dfa1bcfd7cdb188f0b6f09c5af"; + sha256 = "04x3jfbhn8r8yi68m0xa6j768ypnxbxxab4pn4l8asbbxv9mrl3l"; }; meta.homepage = "https://github.com/ms-jpq/chadtree/"; }; @@ -701,12 +701,12 @@ final: prev: cmp_luasnip = buildVimPluginFrom2Nix { pname = "cmp_luasnip"; - version = "2021-10-02"; + version = "2021-10-03"; src = fetchFromGitHub { owner = "saadparwaiz1"; repo = "cmp_luasnip"; - rev = "a8af71da3c7d0f72ade3fef1714f250134b849d7"; - sha256 = "0zwyfhgmzw2cp8axs52k6f1pbm5nhx4yxckds3ldxqmxar769znj"; + rev = "05b8e44df876743e278e5ecd6247c3bb371a3565"; + sha256 = "10x1qvi6xvnhnzq3r4cg9wcjarj95kz2xcpbb2q3niz8kq88lavj"; }; meta.homepage = "https://github.com/saadparwaiz1/cmp_luasnip/"; }; @@ -1074,12 +1074,12 @@ final: prev: crates-nvim = buildVimPluginFrom2Nix { pname = "crates.nvim"; - version = "2021-10-01"; + version = "2021-10-03"; src = fetchFromGitHub { owner = "saecki"; repo = "crates.nvim"; - rev = "3a77d7af5fe50e1a8e56dcd79e78ae2e221e4cde"; - sha256 = "13yg5d4vndm81kaas62ga0nlx0srfpcg8cwfj70g7410kqfph9m3"; + rev = "331776e240e14c54f98428a31b830b12062b3275"; + sha256 = "1cygri250v41g99w1vjkfmxnw9n1knsi6bljkfg8cy60zn6ig8wm"; }; meta.homepage = "https://github.com/saecki/crates.nvim/"; }; @@ -1532,12 +1532,12 @@ final: prev: diffview-nvim = buildVimPluginFrom2Nix { pname = "diffview.nvim"; - version = "2021-09-29"; + version = "2021-10-02"; src = fetchFromGitHub { owner = "sindrets"; repo = "diffview.nvim"; - rev = "787cdc1629da2723bf03bef3cb17d48a8ab19f51"; - sha256 = "1m51nwdjnv57vbxiqk8zvn9f49ldykps0x613ypimnsmip8p5j1z"; + rev = "b0a86fef8e7f4f85cc37915fcd439e99f648f14c"; + sha256 = "1b24baqcsw3yals07vd6dksghggymlp7xvag53iy5v08f11i9bbc"; }; meta.homepage = "https://github.com/sindrets/diffview.nvim/"; }; @@ -1762,12 +1762,12 @@ final: prev: feline-nvim = buildVimPluginFrom2Nix { pname = "feline.nvim"; - version = "2021-09-26"; + version = "2021-10-03"; src = fetchFromGitHub { owner = "famiu"; repo = "feline.nvim"; - rev = "a67897405f23cce54473d2afbc1a7df63688b815"; - sha256 = "1wi2rqbkp6hz454kxi5fznb0lkac59f99ffj0s0snzzq21d3k5d5"; + rev = "6b788d198f01a1f29bce0da8f89cd874343db747"; + sha256 = "1ii4b70z5pb804004xz2hcnn2n7yjanzqvk54ki9kshshw4y1qmp"; }; meta.homepage = "https://github.com/famiu/feline.nvim/"; }; @@ -2207,12 +2207,12 @@ final: prev: goto-preview = buildVimPluginFrom2Nix { pname = "goto-preview"; - version = "2021-09-23"; + version = "2021-10-03"; src = fetchFromGitHub { owner = "rmagatti"; repo = "goto-preview"; - rev = "22e1a28b4189fe693efc52f3ada4a6103f40dc46"; - sha256 = "17jk0b5cbiy4l7vrqc22ncixqj2lxnjicjld65dsg4gcrjmhy17y"; + rev = "b04d83414d113aedf2e4beb1dd030f8a909ee8a8"; + sha256 = "0mdkz8hcdvr6f77y9b7zb04sv3xw1v8j4rpim6fxcbg38q267wcp"; }; meta.homepage = "https://github.com/rmagatti/goto-preview/"; }; @@ -3084,12 +3084,12 @@ final: prev: luasnip = buildVimPluginFrom2Nix { pname = "luasnip"; - version = "2021-10-02"; + version = "2021-10-03"; src = fetchFromGitHub { owner = "l3mon4d3"; repo = "luasnip"; - rev = "94bf4e7cc56d03d82c4058df7090f9d982aa264d"; - sha256 = "14hyyhggj37nvyb9r325sfh020kb584bzyq44f50m655682c6pnq"; + rev = "90b509ccd12c3aee211a322c60b44f6eba60832c"; + sha256 = "0aykgqmdl83d6qg02rzxj6w01c91nq9i073yq1hj25ljqspzfsqz"; }; meta.homepage = "https://github.com/l3mon4d3/luasnip/"; }; @@ -3516,12 +3516,12 @@ final: prev: neogit = buildVimPluginFrom2Nix { pname = "neogit"; - version = "2021-09-24"; + version = "2021-10-03"; src = fetchFromGitHub { owner = "TimUntersberger"; repo = "neogit"; - rev = "d57271a25fd2ccc06c23ab34dc7f8c90825b6ca6"; - sha256 = "1vwr61grlyrdj5kg0gqw33ww0f58ifcnwp2d6w905a8zilnvm37l"; + rev = "71208c83f9e061675943416009c91f8f8f9e5668"; + sha256 = "00ia5hq4lfnyyml003g6va8zv00d7jdqv1mwir873ii4i1v8dq22"; }; meta.homepage = "https://github.com/TimUntersberger/neogit/"; }; @@ -3744,12 +3744,12 @@ final: prev: nginx-vim = buildVimPluginFrom2Nix { pname = "nginx.vim"; - version = "2021-09-27"; + version = "2021-10-03"; src = fetchFromGitHub { owner = "chr4"; repo = "nginx.vim"; - rev = "b42ba30810d8cc7d765df98e09b9e3e473e35922"; - sha256 = "1ka85zsw1g1g2rqvq34wwh0n7wpgmvg8i5cxj39p4j5vxg14in46"; + rev = "ceeab164880ad90e73ab1be31dc3932777b9ef20"; + sha256 = "178rd4zi8lspsq7qy5ag5gnqr87hivv92pcgqszbriqkga30srpc"; }; meta.homepage = "https://github.com/chr4/nginx.vim/"; }; @@ -3852,12 +3852,12 @@ final: prev: null-ls-nvim = buildVimPluginFrom2Nix { pname = "null-ls.nvim"; - version = "2021-10-01"; + version = "2021-10-03"; src = fetchFromGitHub { owner = "jose-elias-alvarez"; repo = "null-ls.nvim"; - rev = "27d30e43b8ecd0623463ff8e71f7c1bb989b7e21"; - sha256 = "1ikyi99mgysf1b780cldrqm0pym2023wxi1a6s55v7pm649xnrwy"; + rev = "1fadae38e9e43cbd20ab238e18c2d6f099607e74"; + sha256 = "1jsjsi2i08h9mjj88yzw6hrzphlhzsvqjdm1lkqwmjllklnh3xwk"; }; meta.homepage = "https://github.com/jose-elias-alvarez/null-ls.nvim/"; }; @@ -3900,12 +3900,12 @@ final: prev: nvim-autopairs = buildVimPluginFrom2Nix { pname = "nvim-autopairs"; - version = "2021-10-01"; + version = "2021-10-03"; src = fetchFromGitHub { owner = "windwp"; repo = "nvim-autopairs"; - rev = "e93e047051e4dbf034930fea19ec8e90c1cb6260"; - sha256 = "19784jb3r52c8ccbgvr2d4jva1r3czadhrf5ij9j57wdf5mp12xx"; + rev = "72b2b6428561e692f7d65699eebaf122d7f24c29"; + sha256 = "1s01m28v5clx1p1h4q8fga3f3mqsn5w6wlmdcyb3d9qzlzlvwvy1"; }; meta.homepage = "https://github.com/windwp/nvim-autopairs/"; }; @@ -3972,12 +3972,12 @@ final: prev: nvim-code-action-menu = buildVimPluginFrom2Nix { pname = "nvim-code-action-menu"; - version = "2021-10-02"; + version = "2021-10-03"; src = fetchFromGitHub { owner = "weilbith"; repo = "nvim-code-action-menu"; - rev = "f616a37d1be4bab330d5f1ea3ae5fc4b275a1fad"; - sha256 = "1nkkxpj2bw03gy55yfgvdk7h4d4ag20rmw4s0l1w6wai5szpc2wj"; + rev = "7361b5637930999d01b93b6ab4c45b784fa0618a"; + sha256 = "12xl0dxd341mmbv4lg28s1qlv9xg8vjv79sb9x2dv5g3994jf9q6"; }; meta.homepage = "https://github.com/weilbith/nvim-code-action-menu/"; }; @@ -4272,12 +4272,12 @@ final: prev: nvim-tree-lua = buildVimPluginFrom2Nix { pname = "nvim-tree.lua"; - version = "2021-10-02"; + version = "2021-10-03"; src = fetchFromGitHub { owner = "kyazdani42"; repo = "nvim-tree.lua"; - rev = "422404d3efefcf78d7e74afeb19e37320fa9a5e8"; - sha256 = "0iis18pj63wbv1q90gsj4v3kadgykrribav342lyprcxk996wjl1"; + rev = "29e5b754b7250aded609e8c071804053db5765c6"; + sha256 = "14vj1yb570hg3zajvp62pwn75hih22dp2jp63vdfpmalznzwjjbc"; }; meta.homepage = "https://github.com/kyazdani42/nvim-tree.lua/"; }; @@ -4356,24 +4356,24 @@ final: prev: nvim-ts-rainbow = buildVimPluginFrom2Nix { pname = "nvim-ts-rainbow"; - version = "2021-09-30"; + version = "2021-10-03"; src = fetchFromGitHub { owner = "p00f"; repo = "nvim-ts-rainbow"; - rev = "67a435efe2ea3910c7e22b9b455e994a7d86e02f"; - sha256 = "02wgqxxdwpj7vi90765f21383bd2i36c5mxli0313dg0007salcx"; + rev = "9cac1e40e396110ffb2cf04622ea7a7725436dae"; + sha256 = "0s34808s7nkqfz0pznzm517x4rsjy9dc3y2brmxk8gp4vfj7jz13"; }; meta.homepage = "https://github.com/p00f/nvim-ts-rainbow/"; }; nvim-web-devicons = buildVimPluginFrom2Nix { pname = "nvim-web-devicons"; - version = "2021-09-30"; + version = "2021-10-03"; src = fetchFromGitHub { owner = "kyazdani42"; repo = "nvim-web-devicons"; - rev = "7f768cd3064f469df872ec61c9c5e363b6117ec2"; - sha256 = "1v9s3ddqldqn3lj1m04ijnqk73x08s5jajx2zx42ip7360qi3s49"; + rev = "9ed2037df0ee87d0d6c084187d1e340b4eac7587"; + sha256 = "1fkwbs6lpxrks3wb3l5laxjraxwwzlmmw7i4r7yawa2kyf05hvvy"; }; meta.homepage = "https://github.com/kyazdani42/nvim-web-devicons/"; }; @@ -4512,12 +4512,12 @@ final: prev: open-browser-vim = buildVimPluginFrom2Nix { pname = "open-browser.vim"; - version = "2021-09-20"; + version = "2021-10-03"; src = fetchFromGitHub { owner = "tyru"; repo = "open-browser.vim"; - rev = "4d7131705ee97db15e10ec59f6de808feffa1f2e"; - sha256 = "1sxfflyrfly16l6b6lrga8r7mn7if7w9243lcx05jvp1sjdkw21n"; + rev = "3bb313a81922486c419e0a587cf84ef853af3e16"; + sha256 = "17bg3vny1rzbyyra7qzzh9p0i00i2ivl96mdd4pbn2zqh77jd2vv"; }; meta.homepage = "https://github.com/tyru/open-browser.vim/"; }; @@ -5390,12 +5390,12 @@ final: prev: splitjoin-vim = buildVimPluginFrom2Nix { pname = "splitjoin.vim"; - version = "2021-09-30"; + version = "2021-10-03"; src = fetchFromGitHub { owner = "AndrewRadev"; repo = "splitjoin.vim"; - rev = "65efd9dc8f5d5e246e02d0cae221474eed1be0ce"; - sha256 = "064j4gqvmi8g1mvrlng9x20j52r6k7s1y2qbvjcmfxblxngh4x97"; + rev = "48af03733f4e7a7d0449fdbb15aa70539faef7ad"; + sha256 = "0z5vcjfnrs18plcqy311qwrl1l4h9xi4r3fbijc8ald38hw6p7dk"; fetchSubmodules = true; }; meta.homepage = "https://github.com/AndrewRadev/splitjoin.vim/"; @@ -7506,12 +7506,12 @@ final: prev: vim-flog = buildVimPluginFrom2Nix { pname = "vim-flog"; - version = "2021-08-23"; + version = "2021-10-03"; src = fetchFromGitHub { owner = "rbong"; repo = "vim-flog"; - rev = "670b4efd759da01da051edf8839daa789c7f86f2"; - sha256 = "0c76vqwl0mdjsg6bk7jsdhqwkjygq4vbwfc99gf3b5c2m5kxx375"; + rev = "1c0a5359251778c8da4ad1f31d8186c8dfa66a82"; + sha256 = "05hv6s38g1jalhm7vkzcqwgd6dadh36fv8daak5swv9i4pqv3xyv"; }; meta.homepage = "https://github.com/rbong/vim-flog/"; }; @@ -7698,12 +7698,12 @@ final: prev: vim-go = buildVimPluginFrom2Nix { pname = "vim-go"; - version = "2021-09-12"; + version = "2021-10-03"; src = fetchFromGitHub { owner = "fatih"; repo = "vim-go"; - rev = "abe94c3fcf681fde772f2906fbbdfecf5afda7c8"; - sha256 = "1fdl2rdvdjvyai2pj1v6cr21a10pcdg5277616lbfbbl3p7iak63"; + rev = "2578f7fd4a431fcb12ad2700ddd5a042457103a9"; + sha256 = "18js4znanr8hln9xldyayk82rx3rm4dp4hpb4qr1ps5clj3lc66x"; }; meta.homepage = "https://github.com/fatih/vim-go/"; }; @@ -9249,12 +9249,12 @@ final: prev: vim-quickrun = buildVimPluginFrom2Nix { pname = "vim-quickrun"; - version = "2021-09-30"; + version = "2021-10-03"; src = fetchFromGitHub { owner = "thinca"; repo = "vim-quickrun"; - rev = "b5656f8b2db0aaa43c1b80b20b1b9a2436591655"; - sha256 = "1iyz2rld97a1qxlz0a2qm9aq3v282x2x0w0amxrfw5c8vi2yalwc"; + rev = "7745ddb2a48d6f3f2305a0ab83d22ce2c0ded677"; + sha256 = "09hnjcpd573v0cfsqp4a5fnqrj7chl80vb26nknh96ypg2iw455h"; }; meta.homepage = "https://github.com/thinca/vim-quickrun/"; }; @@ -10571,12 +10571,12 @@ final: prev: vimtex = buildVimPluginFrom2Nix { pname = "vimtex"; - version = "2021-10-02"; + version = "2021-10-03"; src = fetchFromGitHub { owner = "lervag"; repo = "vimtex"; - rev = "05d2bfb13aacb2d0db051815ba6e9096e6859392"; - sha256 = "05189dn2f67ad1mlk95lhb5k7qfs0cpvzg7pl3miqsn66pbknx6r"; + rev = "2d032e54c95593f1ea8bd458fc940a20a8f390f9"; + sha256 = "02vfbfgr8ipf20n0046h7wx66r15wvxdj5xcw80qv12zshdd0qi4"; }; meta.homepage = "https://github.com/lervag/vimtex/"; }; @@ -10703,12 +10703,12 @@ final: prev: wilder-nvim = buildVimPluginFrom2Nix { pname = "wilder.nvim"; - version = "2021-09-14"; + version = "2021-10-03"; src = fetchFromGitHub { owner = "gelguy"; repo = "wilder.nvim"; - rev = "15ff3a0e6fa1882fb4a2391d880c6465652718f5"; - sha256 = "15rb1g0hyp942s9hgpfzf27yz7w5aaym2phrvr51aybnjz6lm9ff"; + rev = "4a98c80aa4e8156f41c972e58a7308a69f9fc87a"; + sha256 = "09iv34ha118dm1wdi6hdjs6vmy6la3q01ilalxihqhvwr7hlz48p"; }; meta.homepage = "https://github.com/gelguy/wilder.nvim/"; }; From be01e0f3bc8f11fffb4394caeab806350a2536ca Mon Sep 17 00:00:00 2001 From: toonn Date: Sun, 3 Oct 2021 23:02:22 +0200 Subject: [PATCH 53/59] black: Disable failing tests on Darwin (#130785) Co-authored-by: Artturi --- pkgs/development/python-modules/black/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/python-modules/black/default.nix b/pkgs/development/python-modules/black/default.nix index 948d734d5317..ece5707ae676 100644 --- a/pkgs/development/python-modules/black/default.nix +++ b/pkgs/development/python-modules/black/default.nix @@ -54,6 +54,9 @@ buildPythonPackage rec { ] ++ lib.optionals stdenv.isDarwin [ # fails on darwin "test_expression_diff" + # Fail on Hydra, see https://github.com/NixOS/nixpkgs/pull/130785 + "test_bpo_2142_workaround" + "test_skip_magic_trailing_comma" ]; propagatedBuildInputs = [ From 9336af2d1aa19247c9309227699ba1867b65e38b Mon Sep 17 00:00:00 2001 From: Barry Moore <3086255+chiroptical@users.noreply.github.com> Date: Sun, 3 Oct 2021 17:03:49 -0400 Subject: [PATCH 54/59] fnlfmt: 0.2.1 -> 0.2.2 (#140381) Co-authored-by: Sandro --- pkgs/development/tools/fnlfmt/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/fnlfmt/default.nix b/pkgs/development/tools/fnlfmt/default.nix index 4333706d1cf3..86ca6b843d24 100644 --- a/pkgs/development/tools/fnlfmt/default.nix +++ b/pkgs/development/tools/fnlfmt/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { pname = "fnlfmt"; - version = "0.2.1"; + version = "0.2.2"; src = fetchFromSourcehut { owner = "~technomancy"; repo = pname; rev = version; - sha256 = "sha256-JIqeQhI3fFGrej2wbj6/367IZqWAFegySc2R8IDmvGE="; + sha256 = "sha256-ZuSXeAhxfH0F/Y0nwqisxLMwh21Kub7viNcXD3FVYOc="; }; nativeBuildInputs = [ fennel ]; @@ -36,6 +36,6 @@ stdenv.mkDerivation rec { homepage = "https://git.sr.ht/~technomancy/fnlfmt"; license = licenses.lgpl3Plus; platforms = lua.meta.platforms; - maintainers = [ maintainers.gpanders ]; + maintainers = with maintainers; [ gpanders chiroptical ]; }; } From 236d58aeefd5ad0b80b86ae996906f6dfaaee766 Mon Sep 17 00:00:00 2001 From: "\"Will Badart\"" <"will@willbadart.com"> Date: Sun, 3 Oct 2021 14:06:36 -0700 Subject: [PATCH 55/59] vimPlugins.neuron-nvim: init at 2021-03-20 --- pkgs/misc/vim-plugins/generated.nix | 12 ++++++++++++ pkgs/misc/vim-plugins/vim-plugin-names | 1 + 2 files changed, 13 insertions(+) diff --git a/pkgs/misc/vim-plugins/generated.nix b/pkgs/misc/vim-plugins/generated.nix index 5a924b2d6738..916a94241a46 100644 --- a/pkgs/misc/vim-plugins/generated.nix +++ b/pkgs/misc/vim-plugins/generated.nix @@ -3730,6 +3730,18 @@ final: prev: meta.homepage = "https://github.com/Xuyuanp/nerdtree-git-plugin/"; }; + neuron-nvim = buildVimPluginFrom2Nix { + pname = "neuron.nvim"; + version = "2021-03-20"; + src = fetchFromGitHub { + owner = "oberblastmeister"; + repo = "neuron.nvim"; + rev = "9c85f892f2f50a4e546950edd8fa41ac0d602549"; + sha256 = "14mrimw2rjsz5j6613j1kjpkxk4yn7vw5mfw1g0xl9jmlvx7v085"; + }; + meta.homepage = "https://github.com/oberblastmeister/neuron.nvim/"; + }; + neuron-vim = buildVimPluginFrom2Nix { pname = "neuron.vim"; version = "2020-12-06"; diff --git a/pkgs/misc/vim-plugins/vim-plugin-names b/pkgs/misc/vim-plugins/vim-plugin-names index c944530bccfa..b7b73e1d4200 100644 --- a/pkgs/misc/vim-plugins/vim-plugin-names +++ b/pkgs/misc/vim-plugins/vim-plugin-names @@ -538,6 +538,7 @@ nvim-treesitter/nvim-treesitter-refactor nvim-treesitter/nvim-treesitter-textobjects@0.5-compat nvim-treesitter/nvim-treesitter@0.5-compat nvim-treesitter/playground +oberblastmeister/neuron.nvim oberblastmeister/termwrapper.nvim ocaml/vim-ocaml octol/vim-cpp-enhanced-highlight From 966763c5b17e46bc1128bd9c4c1a8bde9a762dd2 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 3 Oct 2021 23:11:02 +0200 Subject: [PATCH 56/59] btop: 1.0.10 -> 1.0.13 --- pkgs/tools/system/btop/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/system/btop/default.nix b/pkgs/tools/system/btop/default.nix index 2884e509b43d..51dad59e819a 100644 --- a/pkgs/tools/system/btop/default.nix +++ b/pkgs/tools/system/btop/default.nix @@ -5,13 +5,13 @@ stdenv.mkDerivation rec { pname = "btop"; - version = "1.0.10"; + version = "1.0.13"; src = fetchFromGitHub { owner = "aristocratos"; repo = pname; rev = "v${version}"; - sha256 = "14d41q9hfwmzhxqrnrz17rgbi03j0xga2jmw8n9y2v21rqxg73y0"; + sha256 = "sha256-Znap1MSWEdKtb9G7+DmfYAhq3q2NfGu1v2cjbYuvUmE="; }; installFlags = [ "PREFIX=$(out)" ]; From 7d88d0b040c23684815b2b0e7eb742bcfc3cd88b Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 3 Oct 2021 23:16:16 +0200 Subject: [PATCH 57/59] clair: 4.2.0 -> 4.3.0 --- pkgs/tools/admin/clair/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/admin/clair/default.nix b/pkgs/tools/admin/clair/default.nix index 836f9082d242..ab9ebc013b80 100644 --- a/pkgs/tools/admin/clair/default.nix +++ b/pkgs/tools/admin/clair/default.nix @@ -2,16 +2,16 @@ buildGoModule rec { pname = "clair"; - version = "4.2.0"; + version = "4.3.0"; src = fetchFromGitHub { owner = "quay"; repo = pname; rev = "v${version}"; - sha256 = "sha256-PVR7QMndjfCNVo9U3lnArpRBxLfmOH8iEdFub7hZyio="; + sha256 = "sha256-9IRoDvvhUMXTiMl2Jj4NFlTJD7QSXsVxjoDVTlqTsWg="; }; - vendorSha256 = "sha256-npskCUVxNTgI8egVU1id02xHFfTizOb7kBUNfOLdbOc="; + vendorSha256 = "sha256-9BG10+aOysFZmGytDhz11u/2uJQq4LnceCsotJIZ62U="; doCheck = false; From c80fae5bbeb9f4bcc0c48a1acd3bc8b4a12d7438 Mon Sep 17 00:00:00 2001 From: Lara Date: Thu, 30 Sep 2021 21:00:55 +0000 Subject: [PATCH 58/59] gitlab: 14.2.4 -> 14.3.1 --- .../version-management/gitlab/data.json | 14 +- .../gitlab/gitaly/Gemfile.lock | 2 +- .../gitlab/gitaly/default.nix | 6 +- .../gitlab/gitaly/gemset.nix | 4 +- .../gitlab/gitlab-shell/default.nix | 6 +- .../gitlab/gitlab-workhorse/default.nix | 4 +- .../version-management/gitlab/rubyEnv/Gemfile | 16 +- .../gitlab/rubyEnv/Gemfile.lock | 49 +- .../gitlab/rubyEnv/gemset.nix | 76 +- .../version-management/gitlab/yarnPkgs.nix | 1936 +++++++---------- 10 files changed, 910 insertions(+), 1203 deletions(-) diff --git a/pkgs/applications/version-management/gitlab/data.json b/pkgs/applications/version-management/gitlab/data.json index ff42c2d78ce0..3372b7aa77ba 100644 --- a/pkgs/applications/version-management/gitlab/data.json +++ b/pkgs/applications/version-management/gitlab/data.json @@ -1,13 +1,13 @@ { - "version": "14.2.4", - "repo_hash": "1bh95c7rrz9v2vn008lm4zqfm4n7my8r1b2665cippyi4bw0dfjr", + "version": "14.3.1", + "repo_hash": "1ahqiczp978hc0i45djiz2c9pf32hw8hrmk3pg4bb6wg6315zmvl", "owner": "gitlab-org", "repo": "gitlab", - "rev": "v14.2.4-ee", + "rev": "v14.3.1-ee", "passthru": { - "GITALY_SERVER_VERSION": "14.2.4", - "GITLAB_PAGES_VERSION": "1.42.0", - "GITLAB_SHELL_VERSION": "13.19.1", - "GITLAB_WORKHORSE_VERSION": "14.2.4" + "GITALY_SERVER_VERSION": "14.3.1", + "GITLAB_PAGES_VERSION": "1.44.0", + "GITLAB_SHELL_VERSION": "13.21.0", + "GITLAB_WORKHORSE_VERSION": "14.3.1" } } diff --git a/pkgs/applications/version-management/gitlab/gitaly/Gemfile.lock b/pkgs/applications/version-management/gitlab/gitaly/Gemfile.lock index f0e06b761dce..dba345db6388 100644 --- a/pkgs/applications/version-management/gitlab/gitaly/Gemfile.lock +++ b/pkgs/applications/version-management/gitlab/gitaly/Gemfile.lock @@ -108,7 +108,7 @@ GEM minitest (5.14.4) msgpack (1.3.3) multipart-post (2.1.1) - nokogiri (1.11.5) + nokogiri (1.11.7) mini_portile2 (~> 2.5.0) racc (~> 1.4) nokogumbo (1.5.0) diff --git a/pkgs/applications/version-management/gitlab/gitaly/default.nix b/pkgs/applications/version-management/gitlab/gitaly/default.nix index 815feb61e44c..7b3161f787f9 100644 --- a/pkgs/applications/version-management/gitlab/gitaly/default.nix +++ b/pkgs/applications/version-management/gitlab/gitaly/default.nix @@ -20,7 +20,7 @@ let }; }; }; - version = "14.2.4"; + version = "14.3.1"; gitaly_package = "gitlab.com/gitlab-org/gitaly/v${lib.versions.major version}"; in @@ -32,10 +32,10 @@ buildGoModule { owner = "gitlab-org"; repo = "gitaly"; rev = "v${version}"; - sha256 = "sha256-jVYPJWFJN/KDEi8j+BOWTbH8xP0ZLPewhGsJfj5h/0w="; + sha256 = "sha256-0jjzrBpt8/wTnUAvrZi8lH9SknfYZawBbE/QmDxsVqM="; }; - vendorSha256 = "sha256-WhkNK+V7yXK+le1u8StAKajZIBzVKqV/WIau27oZBXE="; + vendorSha256 = "sha256-9RhPQosen70E9t1iAoc2SeKs9pYMMpMqgXLekWfKNf8="; passthru = { inherit rubyEnv; diff --git a/pkgs/applications/version-management/gitlab/gitaly/gemset.nix b/pkgs/applications/version-management/gitlab/gitaly/gemset.nix index f5e562ddf6e1..dea32e94b136 100644 --- a/pkgs/applications/version-management/gitlab/gitaly/gemset.nix +++ b/pkgs/applications/version-management/gitlab/gitaly/gemset.nix @@ -482,10 +482,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1i80ny61maqzqr1fq5wgpkijmh5j8abisrmhn16kv7mzmxqg5w0m"; + sha256 = "1vrn31385ix5k9b0yalnlzv360isv6dincbcvi8psllnwz4sjxj9"; type = "gem"; }; - version = "1.11.5"; + version = "1.11.7"; }; nokogumbo = { dependencies = ["nokogiri"]; diff --git a/pkgs/applications/version-management/gitlab/gitlab-shell/default.nix b/pkgs/applications/version-management/gitlab/gitlab-shell/default.nix index ee039c4adb26..b87f87b06b16 100644 --- a/pkgs/applications/version-management/gitlab/gitlab-shell/default.nix +++ b/pkgs/applications/version-management/gitlab/gitlab-shell/default.nix @@ -2,19 +2,19 @@ buildGoModule rec { pname = "gitlab-shell"; - version = "13.19.1"; + version = "13.21.0"; src = fetchFromGitLab { owner = "gitlab-org"; repo = "gitlab-shell"; rev = "v${version}"; - sha256 = "sha256-F0TW0VjO5hc/lHqZhhMJJvpHazWRyR7Q7W324Fgn7fA="; + sha256 = "sha256-klj5N3UKCwJ5LveaiWv3i13GV/svZKeA1ZKKfvOjhg4="; }; buildInputs = [ ruby ]; patches = [ ./remove-hardcoded-locations.patch ]; - vendorSha256 = "sha256-+nUMxHWo/d/WrQ4LAEG2+ghtNBF9vcnSyg6Ki412rPA="; + vendorSha256 = "sha256-cE6phpVYcZNCEk6bElEksIf4GOr/5vJPRdlGCubRafE="; postInstall = '' cp -r "$NIX_BUILD_TOP/source"/bin/* $out/bin diff --git a/pkgs/applications/version-management/gitlab/gitlab-workhorse/default.nix b/pkgs/applications/version-management/gitlab/gitlab-workhorse/default.nix index d35c21169733..2f588957101b 100644 --- a/pkgs/applications/version-management/gitlab/gitlab-workhorse/default.nix +++ b/pkgs/applications/version-management/gitlab/gitlab-workhorse/default.nix @@ -5,7 +5,7 @@ in buildGoModule rec { pname = "gitlab-workhorse"; - version = "14.2.4"; + version = "14.3.1"; src = fetchFromGitLab { owner = data.owner; @@ -16,7 +16,7 @@ buildGoModule rec { sourceRoot = "source/workhorse"; - vendorSha256 = "sha256-q0LuXmjoO6mjVZpMRVVGL862mA+MaCejTCx99Zi5VEI="; + vendorSha256 = "sha256-piA14jYFV+FD20kR38rN1o329eeYAW/PmS0QI1GaU50="; buildInputs = [ git ]; ldflags = [ "-X main.Version=${version}" ]; doCheck = false; diff --git a/pkgs/applications/version-management/gitlab/rubyEnv/Gemfile b/pkgs/applications/version-management/gitlab/rubyEnv/Gemfile index 35017bd87d98..08a9b090c666 100644 --- a/pkgs/applications/version-management/gitlab/rubyEnv/Gemfile +++ b/pkgs/applications/version-management/gitlab/rubyEnv/Gemfile @@ -18,7 +18,7 @@ gem 'default_value_for', '~> 3.4.0' gem 'pg', '~> 1.1' gem 'rugged', '~> 1.1' -gem 'grape-path-helpers', '~> 1.6.3' +gem 'grape-path-helpers', '~> 1.7.0' gem 'faraday', '~> 1.0' gem 'marginalia', '~> 1.10.0' @@ -32,7 +32,7 @@ gem 'bcrypt', '~> 3.1', '>= 3.1.14' gem 'doorkeeper', '~> 5.5.0.rc2' gem 'doorkeeper-openid_connect', '~> 1.7.5' gem 'rexml', '~> 3.2.5' -gem 'ruby-saml', '~> 1.12.1' +gem 'ruby-saml', '~> 1.13.0' gem 'omniauth', '~> 1.8' gem 'omniauth-auth0', '~> 2.0.0' gem 'omniauth-azure-activedirectory-v2', '~> 1.0' @@ -120,7 +120,7 @@ gem 'carrierwave', '~> 1.3' gem 'mini_magick', '~> 4.10.1' # for backups -gem 'fog-aws', '~> 3.9' +gem 'fog-aws', '~> 3.12' # Locked until fog-google resolves https://github.com/fog/fog-google/issues/421. # Also see config/initializers/fog_core_patch.rb. gem 'fog-core', '= 2.1.0' @@ -233,7 +233,7 @@ gem 'redis', '~> 4.1.4' gem 'connection_pool', '~> 2.0' # Redis session store -gem 'redis-rails', '~> 5.0.2' +gem 'redis-actionpack', '~> 5.2.0' # Discord integration gem 'discordrb-webhooks', '~> 3.4', require: false @@ -333,7 +333,7 @@ gem 'snowplow-tracker', '~> 0.6.1' # Metrics gem 'method_source', '~> 1.0', require: false gem 'webrick', '~> 1.6.1', require: false -gem 'prometheus-client-mmap', '~> 0.12.0', require: 'prometheus/client' +gem 'prometheus-client-mmap', '~> 0.15.0', require: 'prometheus/client' gem 'warning', '~> 1.2.0' @@ -372,7 +372,7 @@ group :development, :test do gem 'spring', '~> 2.1.0' gem 'spring-commands-rspec', '~> 1.0.4' - gem 'gitlab-styles', '~> 6.2.0', require: false + gem 'gitlab-styles', '~> 6.3.0', require: false gem 'haml_lint', '~> 0.36.0', require: false gem 'bundler-audit', '~> 0.7.0.1', require: false @@ -474,7 +474,7 @@ end gem 'spamcheck', '~> 0.1.0' # Gitaly GRPC protocol definitions -gem 'gitaly', '~> 14.2.0.pre.rc2' +gem 'gitaly', '~> 14.3.0.pre.rc1' # KAS GRPC protocol definitions gem 'kas-grpc', '~> 0.0.2' @@ -522,7 +522,7 @@ gem 'lockbox', '~> 0.6.2' gem 'valid_email', '~> 0.1' # JSON -gem 'json', '~> 2.3.0' +gem 'json', '~> 2.5.1' gem 'json_schemer', '~> 0.2.18' gem 'oj', '~> 3.10.6' gem 'multi_json', '~> 1.14.1' diff --git a/pkgs/applications/version-management/gitlab/rubyEnv/Gemfile.lock b/pkgs/applications/version-management/gitlab/rubyEnv/Gemfile.lock index ad2445ad750c..dd2970c3ed28 100644 --- a/pkgs/applications/version-management/gitlab/rubyEnv/Gemfile.lock +++ b/pkgs/applications/version-management/gitlab/rubyEnv/Gemfile.lock @@ -365,7 +365,7 @@ GEM faraday_middleware multi_json fast_blank (1.0.0) - fast_gettext (1.6.0) + fast_gettext (2.1.0) ffaker (2.10.0) ffi (1.15.3) ffi-compiler (1.0.1) @@ -388,7 +388,7 @@ GEM fog-json ipaddress (~> 0.8) xml-simple (~> 1.1) - fog-aws (3.9.0) + fog-aws (3.12.0) fog-core (~> 2.1) fog-json (~> 1.1) fog-xml (~> 0.1) @@ -446,7 +446,7 @@ GEM rails (>= 3.2.0) git (1.7.0) rchardet (~> 1.8) - gitaly (14.2.0.pre.rc2) + gitaly (14.3.0.pre.rc1) grpc (~> 1.0) github-markup (1.7.0) gitlab (4.16.1) @@ -486,7 +486,7 @@ GEM openid_connect (~> 1.2) gitlab-sidekiq-fetcher (0.5.6) sidekiq (~> 5) - gitlab-styles (6.2.0) + gitlab-styles (6.3.0) rubocop (~> 0.91, >= 0.91.1) rubocop-gitlab-security (~> 0.1.1) rubocop-performance (~> 1.9.2) @@ -539,7 +539,7 @@ GEM grape-entity (0.9.0) activesupport (>= 3.0.0) multi_json (>= 1.3.2) - grape-path-helpers (1.6.3) + grape-path-helpers (1.7.0) activesupport grape (~> 1.3) rake (> 12) @@ -650,7 +650,7 @@ GEM character_set (~> 1.4) regexp_parser (~> 2.1) regexp_property_values (~> 1.0) - json (2.3.0) + json (2.5.1) json-jwt (1.13.0) activesupport (>= 4.2) aes_key_wrap @@ -721,7 +721,7 @@ GEM activesupport (>= 4) railties (>= 4) request_store (~> 1.0) - loofah (2.11.0) + loofah (2.12.0) crass (~> 1.0.2) nokogiri (>= 1.5.9) lru_redux (1.1.0) @@ -893,7 +893,7 @@ GEM orm_adapter (0.5.0) os (1.1.1) parallel (1.20.1) - parser (3.0.0.0) + parser (3.0.2.0) ast (~> 2.4.1) parslet (1.8.2) pastel (0.8.0) @@ -918,7 +918,7 @@ GEM coderay parser unparser - prometheus-client-mmap (0.12.0) + prometheus-client-mmap (0.15.0) pry (0.13.1) coderay (~> 1.1) method_source (~> 1.0) @@ -982,7 +982,7 @@ GEM rails-dom-testing (2.0.3) activesupport (>= 4.2.0) nokogiri (>= 1.6) - rails-html-sanitizer (1.3.0) + rails-html-sanitizer (1.4.2) loofah (~> 2.3) rails-i18n (6.0.0) i18n (>= 0.7, < 2) @@ -1016,19 +1016,12 @@ GEM actionpack (>= 5, < 7) redis-rack (>= 2.1.0, < 3) redis-store (>= 1.1.0, < 2) - redis-activesupport (5.2.0) - activesupport (>= 3, < 7) - redis-store (>= 1.3, < 2) redis-namespace (1.8.1) redis (>= 3.0.4) - redis-rack (2.1.2) + redis-rack (2.1.3) rack (>= 2.0.8, < 3) redis-store (>= 1.2, < 2) - redis-rails (5.0.2) - redis-actionpack (>= 5.0, < 6) - redis-activesupport (>= 5.0, < 6) - redis-store (>= 1.2, < 2) - redis-store (1.8.1) + redis-store (1.9.0) redis (>= 4, < 5) regexp_parser (2.1.1) regexp_property_values (1.0.0) @@ -1124,7 +1117,7 @@ GEM mini_portile2 (~> 2.5.0) ruby-prof (1.3.1) ruby-progressbar (1.11.0) - ruby-saml (1.12.1) + ruby-saml (1.13.0) nokogiri (>= 1.10.5) rexml ruby-statistics (2.1.2) @@ -1453,7 +1446,7 @@ DEPENDENCIES flipper-active_support_cache_store (~> 0.21.0) flowdock (~> 0.7) fog-aliyun (~> 0.3) - fog-aws (~> 3.9) + fog-aws (~> 3.12) fog-core (= 2.1.0) fog-google (~> 1.15) fog-local (~> 0.6) @@ -1465,7 +1458,7 @@ DEPENDENCIES gettext (~> 3.3) gettext_i18n_rails (~> 1.8.0) gettext_i18n_rails_js (~> 1.3) - gitaly (~> 14.2.0.pre.rc2) + gitaly (~> 14.3.0.pre.rc1) github-markup (~> 1.7.0) gitlab-chronic (~> 0.10.5) gitlab-dangerfiles (~> 2.3.0) @@ -1478,7 +1471,7 @@ DEPENDENCIES gitlab-net-dns (~> 0.9.1) gitlab-omniauth-openid-connect (~> 0.8.0) gitlab-sidekiq-fetcher (= 0.5.6) - gitlab-styles (~> 6.2.0) + gitlab-styles (~> 6.3.0) gitlab_chronic_duration (~> 0.10.6.2) gitlab_omniauth-ldap (~> 2.1.1) gon (~> 6.4.0) @@ -1487,7 +1480,7 @@ DEPENDENCIES gpgme (~> 2.0.19) grape (~> 1.5.2) grape-entity (~> 0.9.0) - grape-path-helpers (~> 1.6.3) + grape-path-helpers (~> 1.7.0) grape_logging (~> 1.7) graphiql-rails (~> 1.4.10) graphlient (~> 0.4.0) @@ -1510,7 +1503,7 @@ DEPENDENCIES ipaddress (~> 0.8.3) jira-ruby (~> 2.1.4) js_regex (~> 3.7) - json (~> 2.3.0) + json (~> 2.5.1) json_schemer (~> 0.2.18) jwt (~> 2.1.0) kaminari (~> 1.0) @@ -1567,7 +1560,7 @@ DEPENDENCIES pg_query (~> 2.1) png_quantizator (~> 0.2.1) premailer-rails (~> 1.10.3) - prometheus-client-mmap (~> 0.12.0) + prometheus-client-mmap (~> 0.15.0) pry-byebug pry-rails (~> 0.3.9) pry-shell (~> 0.4.0) @@ -1589,8 +1582,8 @@ DEPENDENCIES re2 (~> 1.2.0) recaptcha (~> 4.11) redis (~> 4.1.4) + redis-actionpack (~> 5.2.0) redis-namespace (~> 1.8.1) - redis-rails (~> 5.0.2) request_store (~> 1.5) responders (~> 3.0) retriable (~> 3.1.2) @@ -1606,7 +1599,7 @@ DEPENDENCIES ruby-magic (~> 0.4) ruby-prof (~> 1.3.0) ruby-progressbar (~> 1.10) - ruby-saml (~> 1.12.1) + ruby-saml (~> 1.13.0) ruby_parser (~> 3.15) rubyzip (~> 2.0.0) rugged (~> 1.1) diff --git a/pkgs/applications/version-management/gitlab/rubyEnv/gemset.nix b/pkgs/applications/version-management/gitlab/rubyEnv/gemset.nix index eb4a7467d50b..0eb5dc16a3f6 100644 --- a/pkgs/applications/version-management/gitlab/rubyEnv/gemset.nix +++ b/pkgs/applications/version-management/gitlab/rubyEnv/gemset.nix @@ -1598,10 +1598,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1s42dsy3rh9h37d16pwhswf2q9cx25v5fn3q881b5iz6fvdjixv3"; + sha256 = "05df0w58w748n3bwcb5cbbh6l203hwl6k59vl6p3qfq0bay5s28d"; type = "gem"; }; - version = "1.6.0"; + version = "2.1.0"; }; ffaker = { groups = ["development" "test"]; @@ -1705,10 +1705,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "10y32rm3vcfh82p2fdr2zq8ibknx1jslmai5m0r261bdr3brkssm"; + sha256 = "0cl9b93mwhzm9fp0lmac1vzz359g3sq52k06kn0a0vnvxrxnhzjm"; type = "gem"; }; - version = "3.9.0"; + version = "3.12.0"; }; fog-core = { dependencies = ["builder" "excon" "formatador" "mime-types"]; @@ -1911,10 +1911,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0y4zsl1s7ysb1z6piczfkscbjnx7hchda3jsdam42dmi40z654dp"; + sha256 = "0k0jrimdg0pij75hndkrl28hqgvsnl7sdn5k6mjv3sjwbm1p217w"; type = "gem"; }; - version = "14.2.0.pre.rc2"; + version = "14.3.0.pre.rc1"; }; github-markup = { groups = ["default"]; @@ -2060,10 +2060,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1lgjp6cfb92z7i03f9k519bjabnnh1k0bgzmagp5x15iza73sz4v"; + sha256 = "1vxg5j9405r5xvwnswhm2r7pg9pn6pqg675pxz6f8d3sxy5z963p"; type = "gem"; }; - version = "6.2.0"; + version = "6.3.0"; }; gitlab_chronic_duration = { dependencies = ["numerizer"]; @@ -2202,10 +2202,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1jbajciakiq9wwax2x11jzhmwzkcpkb4c0gfl01aj8a3l99gvgs9"; + sha256 = "1r9p47kcf1j56pd0zijakcqp1mi5563z3i2kkbhx2pc3y95zca6d"; type = "gem"; }; - version = "1.6.3"; + version = "1.7.0"; }; grape_logging = { dependencies = ["grape" "rack"]; @@ -2648,10 +2648,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0nrmw2r4nfxlfgprfgki3hjifgrcrs3l5zvm3ca3gb4743yr25mn"; + sha256 = "0lrirj0gw420kw71bjjlqkqhqbrplla61gbv1jzgsz6bv90qr3ci"; type = "gem"; }; - version = "2.3.0"; + version = "2.5.1"; }; json-jwt = { dependencies = ["activesupport" "aes_key_wrap" "bindata"]; @@ -2917,10 +2917,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0pwik3x5fa92g6hbv4imz3n46nlkzgj69pkgql22ppmcr36knk6m"; + sha256 = "1nqcya57x2n58y1dify60i0dpla40n4yir928khp4nj5jrn9mgmw"; type = "gem"; }; - version = "2.11.0"; + version = "2.12.0"; }; lru_redux = { groups = ["default"]; @@ -3752,10 +3752,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1jixakyzmy0j5c1rb0fjrrdhgnyryvrr6vgcybs14jfw09akv5ml"; + sha256 = "06ma6w87ph8lnc9z4hi40ynmcdnjv0p8x53x0s3fjkz4q2p6sxh5"; type = "gem"; }; - version = "3.0.0.0"; + version = "3.0.2.0"; }; parslet = { groups = ["default" "development" "test"]; @@ -3875,14 +3875,14 @@ version = "0.1.0"; }; prometheus-client-mmap = { - groups = ["metrics"]; + groups = ["default"]; platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1i0h9ixdvxw1n9ynxsrbc1lkx3dvd6r78iiwgwnqfz3fap6jgd9p"; + sha256 = "0vn736898qyyw29kjyjifx2bg18r6gfaw3q8xzjgmr0jk4jz29c3"; type = "gem"; }; - version = "0.12.0"; + version = "0.15.0"; }; pry = { dependencies = ["coderay" "method_source"]; @@ -4130,10 +4130,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1icpqmxbppl4ynzmn6dx7wdil5hhq6fz707m9ya6d86c7ys8sd4f"; + sha256 = "09qrfi3pgllxb08r024lln9k0qzxs57v0slsj8616xf9c0cwnwbk"; type = "gem"; }; - version = "1.3.0"; + version = "1.4.2"; }; rails-i18n = { dependencies = ["i18n" "railties"]; @@ -4316,17 +4316,6 @@ }; version = "5.2.0"; }; - redis-activesupport = { - dependencies = ["activesupport" "redis-store"]; - groups = ["default"]; - platforms = []; - source = { - remotes = ["https://rubygems.org"]; - sha256 = "14a3z8810j02ysvg53f3mvcfb4rw34m91yfd19zy9y5lb3yv2g59"; - type = "gem"; - }; - version = "5.2.0"; - }; redis-namespace = { dependencies = ["redis"]; groups = ["default"]; @@ -4344,21 +4333,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0ldw5sxyd80pv0gr89kvn6ziszlbs8lv1a573fkm6d0f11fps413"; + sha256 = "1nblbxg1f051dn83jp92lz3lc1wxm18nviglrabv2l0vz6rd0pkb"; type = "gem"; }; - version = "2.1.2"; - }; - redis-rails = { - dependencies = ["redis-actionpack" "redis-activesupport" "redis-store"]; - groups = ["default"]; - platforms = []; - source = { - remotes = ["https://rubygems.org"]; - sha256 = "0hjvkyaw5hgz7v6fgwdk8pb966z44h1gv8jarmb0gwhkqmjnsh40"; - type = "gem"; - }; - version = "5.0.2"; + version = "2.1.3"; }; redis-store = { dependencies = ["redis"]; @@ -4366,10 +4344,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1isqzzds9kszc2nn8jiy8ikry01qspn7637ba9z2k6sk7vky46d9"; + sha256 = "0cpzbf2svnk4j5awb24ncl0mih45zkbdrd7q23jdg1r8k3q7mdg6"; type = "gem"; }; - version = "1.8.1"; + version = "1.9.0"; }; regexp_parser = { groups = ["default" "development" "test"]; @@ -4752,10 +4730,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0hczs2s490x6lj8z9xczlgi4c159nk9b10njsnl37nqbgjfkjgsw"; + sha256 = "1706dyk5jdma75bnl9rhmx8vgzjw12ixnj3y32inmpcgzgsvs76k"; type = "gem"; }; - version = "1.12.1"; + version = "1.13.0"; }; ruby-statistics = { groups = ["default"]; diff --git a/pkgs/applications/version-management/gitlab/yarnPkgs.nix b/pkgs/applications/version-management/gitlab/yarnPkgs.nix index 8ec9091b970d..adea741f1262 100644 --- a/pkgs/applications/version-management/gitlab/yarnPkgs.nix +++ b/pkgs/applications/version-management/gitlab/yarnPkgs.nix @@ -10,43 +10,43 @@ }; } { - name = "_babel_code_frame___code_frame_7.12.13.tgz"; + name = "_babel_code_frame___code_frame_7.14.5.tgz"; path = fetchurl { - 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_code_frame___code_frame_7.14.5.tgz"; + url = "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.14.5.tgz"; + sha1 = "23b08d740e83f49c5e59945fbf1b43e80bbf4edb"; }; } { - name = "_babel_compat_data___compat_data_7.10.1.tgz"; + name = "_babel_compat_data___compat_data_7.15.0.tgz"; path = fetchurl { - name = "_babel_compat_data___compat_data_7.10.1.tgz"; - url = "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.10.1.tgz"; - sha1 = "b1085ffe72cd17bf2c0ee790fc09f9626011b2db"; + name = "_babel_compat_data___compat_data_7.15.0.tgz"; + url = "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.15.0.tgz"; + sha1 = "2dbaf8b85334796cafbb0f5793a90a2fc010b176"; }; } { - name = "_babel_core___core_7.12.13.tgz"; + name = "_babel_core___core_7.15.0.tgz"; path = fetchurl { - name = "_babel_core___core_7.12.13.tgz"; - url = "https://registry.yarnpkg.com/@babel/core/-/core-7.12.13.tgz"; - sha1 = "b73a87a3a3e7d142a66248bf6ad88b9ceb093425"; + name = "_babel_core___core_7.15.0.tgz"; + url = "https://registry.yarnpkg.com/@babel/core/-/core-7.15.0.tgz"; + sha1 = "749e57c68778b73ad8082775561f67f5196aafa8"; }; } { - name = "_babel_generator___generator_7.12.15.tgz"; + name = "_babel_generator___generator_7.15.0.tgz"; path = fetchurl { - name = "_babel_generator___generator_7.12.15.tgz"; - url = "https://registry.yarnpkg.com/@babel/generator/-/generator-7.12.15.tgz"; - sha1 = "4617b5d0b25cc572474cc1aafee1edeaf9b5368f"; + name = "_babel_generator___generator_7.15.0.tgz"; + url = "https://registry.yarnpkg.com/@babel/generator/-/generator-7.15.0.tgz"; + sha1 = "a7d0c172e0d814974bad5aa77ace543b97917f15"; }; } { - name = "_babel_helper_annotate_as_pure___helper_annotate_as_pure_7.10.1.tgz"; + name = "_babel_helper_annotate_as_pure___helper_annotate_as_pure_7.14.5.tgz"; path = fetchurl { - name = "_babel_helper_annotate_as_pure___helper_annotate_as_pure_7.10.1.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.10.1.tgz"; - sha1 = "f6d08acc6f70bbd59b436262553fb2e259a1a268"; + name = "_babel_helper_annotate_as_pure___helper_annotate_as_pure_7.14.5.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.14.5.tgz"; + sha1 = "7bf478ec3b71726d56a8ca5775b046fc29879e61"; }; } { @@ -58,19 +58,19 @@ }; } { - name = "_babel_helper_compilation_targets___helper_compilation_targets_7.10.2.tgz"; + name = "_babel_helper_compilation_targets___helper_compilation_targets_7.15.0.tgz"; path = fetchurl { - name = "_babel_helper_compilation_targets___helper_compilation_targets_7.10.2.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.10.2.tgz"; - sha1 = "a17d9723b6e2c750299d2a14d4637c76936d8285"; + name = "_babel_helper_compilation_targets___helper_compilation_targets_7.15.0.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.15.0.tgz"; + sha1 = "973df8cbd025515f3ff25db0c05efc704fa79818"; }; } { - name = "_babel_helper_create_class_features_plugin___helper_create_class_features_plugin_7.10.2.tgz"; + name = "_babel_helper_create_class_features_plugin___helper_create_class_features_plugin_7.15.0.tgz"; path = fetchurl { - name = "_babel_helper_create_class_features_plugin___helper_create_class_features_plugin_7.10.2.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.10.2.tgz"; - sha1 = "7474295770f217dbcf288bf7572eb213db46ee67"; + name = "_babel_helper_create_class_features_plugin___helper_create_class_features_plugin_7.15.0.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.15.0.tgz"; + sha1 = "c9a137a4d137b2d0e2c649acf536d7ba1a76c0f7"; }; } { @@ -98,67 +98,67 @@ }; } { - name = "_babel_helper_function_name___helper_function_name_7.12.13.tgz"; + name = "_babel_helper_function_name___helper_function_name_7.14.5.tgz"; path = fetchurl { - 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_function_name___helper_function_name_7.14.5.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.14.5.tgz"; + sha1 = "89e2c474972f15d8e233b52ee8c480e2cfcd50c4"; }; } { - name = "_babel_helper_get_function_arity___helper_get_function_arity_7.12.13.tgz"; + name = "_babel_helper_get_function_arity___helper_get_function_arity_7.14.5.tgz"; path = fetchurl { - 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_get_function_arity___helper_get_function_arity_7.14.5.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.14.5.tgz"; + sha1 = "25fbfa579b0937eee1f3b805ece4ce398c431815"; }; } { - name = "_babel_helper_hoist_variables___helper_hoist_variables_7.10.1.tgz"; + name = "_babel_helper_hoist_variables___helper_hoist_variables_7.14.5.tgz"; path = fetchurl { - name = "_babel_helper_hoist_variables___helper_hoist_variables_7.10.1.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.10.1.tgz"; - sha1 = "7e77c82e5dcae1ebf123174c385aaadbf787d077"; + name = "_babel_helper_hoist_variables___helper_hoist_variables_7.14.5.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.14.5.tgz"; + sha1 = "e0dd27c33a78e577d7c8884916a3e7ef1f7c7f8d"; }; } { - name = "_babel_helper_member_expression_to_functions___helper_member_expression_to_functions_7.12.13.tgz"; + name = "_babel_helper_member_expression_to_functions___helper_member_expression_to_functions_7.15.0.tgz"; path = fetchurl { - 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_member_expression_to_functions___helper_member_expression_to_functions_7.15.0.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.15.0.tgz"; + sha1 = "0ddaf5299c8179f27f37327936553e9bba60990b"; }; } { - name = "_babel_helper_module_imports___helper_module_imports_7.12.13.tgz"; + name = "_babel_helper_module_imports___helper_module_imports_7.14.5.tgz"; path = fetchurl { - name = "_babel_helper_module_imports___helper_module_imports_7.12.13.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.12.13.tgz"; - sha1 = "ec67e4404f41750463e455cc3203f6a32e93fcb0"; + name = "_babel_helper_module_imports___helper_module_imports_7.14.5.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.14.5.tgz"; + sha1 = "6d1a44df6a38c957aa7c312da076429f11b422f3"; }; } { - name = "_babel_helper_module_transforms___helper_module_transforms_7.12.13.tgz"; + name = "_babel_helper_module_transforms___helper_module_transforms_7.15.0.tgz"; path = fetchurl { - name = "_babel_helper_module_transforms___helper_module_transforms_7.12.13.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.12.13.tgz"; - sha1 = "01afb052dcad2044289b7b20beb3fa8bd0265bea"; + name = "_babel_helper_module_transforms___helper_module_transforms_7.15.0.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.15.0.tgz"; + sha1 = "679275581ea056373eddbe360e1419ef23783b08"; }; } { - name = "_babel_helper_optimise_call_expression___helper_optimise_call_expression_7.12.13.tgz"; + name = "_babel_helper_optimise_call_expression___helper_optimise_call_expression_7.14.5.tgz"; path = fetchurl { - 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_optimise_call_expression___helper_optimise_call_expression_7.14.5.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.14.5.tgz"; + sha1 = "f27395a8619e0665b3f0364cddb41c25d71b499c"; }; } { - name = "_babel_helper_plugin_utils___helper_plugin_utils_7.10.4.tgz"; + name = "_babel_helper_plugin_utils___helper_plugin_utils_7.14.5.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_plugin_utils___helper_plugin_utils_7.14.5.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.14.5.tgz"; + sha1 = "5ac822ce97eec46741ab70a517971e443a70c5a9"; }; } { @@ -178,35 +178,51 @@ }; } { - name = "_babel_helper_replace_supers___helper_replace_supers_7.12.13.tgz"; + name = "_babel_helper_replace_supers___helper_replace_supers_7.15.0.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.15.0.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.15.0.tgz"; + sha1 = "ace07708f5bf746bf2e6ba99572cce79b5d4e7f4"; }; } { - name = "_babel_helper_simple_access___helper_simple_access_7.12.13.tgz"; + name = "_babel_helper_simple_access___helper_simple_access_7.14.8.tgz"; path = fetchurl { - name = "_babel_helper_simple_access___helper_simple_access_7.12.13.tgz"; - url = "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.12.13.tgz"; - sha1 = "8478bcc5cacf6aa1672b251c1d2dde5ccd61a6c4"; + name = "_babel_helper_simple_access___helper_simple_access_7.14.8.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.14.8.tgz"; + sha1 = "82e1fec0644a7e775c74d305f212c39f8fe73924"; }; } { - name = "_babel_helper_split_export_declaration___helper_split_export_declaration_7.12.13.tgz"; + name = "_babel_helper_skip_transparent_expression_wrappers___helper_skip_transparent_expression_wrappers_7.14.5.tgz"; path = fetchurl { - 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_skip_transparent_expression_wrappers___helper_skip_transparent_expression_wrappers_7.14.5.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.14.5.tgz"; + sha1 = "96f486ac050ca9f44b009fbe5b7d394cab3a0ee4"; }; } { - name = "_babel_helper_validator_identifier___helper_validator_identifier_7.12.11.tgz"; + name = "_babel_helper_split_export_declaration___helper_split_export_declaration_7.14.5.tgz"; path = fetchurl { - 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_split_export_declaration___helper_split_export_declaration_7.14.5.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.14.5.tgz"; + sha1 = "22b23a54ef51c2b7605d851930c1976dd0bc693a"; + }; + } + { + name = "_babel_helper_validator_identifier___helper_validator_identifier_7.14.9.tgz"; + path = fetchurl { + name = "_babel_helper_validator_identifier___helper_validator_identifier_7.14.9.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.9.tgz"; + sha1 = "6654d171b2024f6d8ee151bf2509699919131d48"; + }; + } + { + name = "_babel_helper_validator_option___helper_validator_option_7.14.5.tgz"; + path = fetchurl { + name = "_babel_helper_validator_option___helper_validator_option_7.14.5.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz"; + sha1 = "6e72a1fff18d5dfcb878e1e62f1a021c4b72d5a3"; }; } { @@ -218,27 +234,27 @@ }; } { - name = "_babel_helpers___helpers_7.12.13.tgz"; + name = "_babel_helpers___helpers_7.15.3.tgz"; path = fetchurl { - name = "_babel_helpers___helpers_7.12.13.tgz"; - url = "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.12.13.tgz"; - sha1 = "3c75e993632e4dadc0274eae219c73eb7645ba47"; + name = "_babel_helpers___helpers_7.15.3.tgz"; + url = "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.15.3.tgz"; + sha1 = "c96838b752b95dcd525b4e741ed40bb1dc2a1357"; }; } { - name = "_babel_highlight___highlight_7.12.13.tgz"; + name = "_babel_highlight___highlight_7.14.5.tgz"; path = fetchurl { - name = "_babel_highlight___highlight_7.12.13.tgz"; - url = "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.12.13.tgz"; - sha1 = "8ab538393e00370b26271b01fa08f7f27f2e795c"; + name = "_babel_highlight___highlight_7.14.5.tgz"; + url = "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.14.5.tgz"; + sha1 = "6861a52f03966405001f6aa534a01a24d99e8cd9"; }; } { - name = "_babel_parser___parser_7.12.15.tgz"; + name = "_babel_parser___parser_7.15.3.tgz"; path = fetchurl { - name = "_babel_parser___parser_7.12.15.tgz"; - url = "https://registry.yarnpkg.com/@babel/parser/-/parser-7.12.15.tgz"; - sha1 = "2b20de7f0b4b332d9b119dd9c33409c538b8aacf"; + name = "_babel_parser___parser_7.15.3.tgz"; + url = "https://registry.yarnpkg.com/@babel/parser/-/parser-7.15.3.tgz"; + sha1 = "3416d9bea748052cfcb63dbcc27368105b1ed862"; }; } { @@ -250,11 +266,11 @@ }; } { - name = "_babel_plugin_proposal_class_properties___plugin_proposal_class_properties_7.10.1.tgz"; + name = "_babel_plugin_proposal_class_properties___plugin_proposal_class_properties_7.14.5.tgz"; path = fetchurl { - name = "_babel_plugin_proposal_class_properties___plugin_proposal_class_properties_7.10.1.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.10.1.tgz"; - sha1 = "046bc7f6550bb08d9bd1d4f060f5f5a4f1087e01"; + name = "_babel_plugin_proposal_class_properties___plugin_proposal_class_properties_7.14.5.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.14.5.tgz"; + sha1 = "40d1ee140c5b1e31a350f4f5eed945096559b42e"; }; } { @@ -274,11 +290,11 @@ }; } { - name = "_babel_plugin_proposal_nullish_coalescing_operator___plugin_proposal_nullish_coalescing_operator_7.10.1.tgz"; + name = "_babel_plugin_proposal_nullish_coalescing_operator___plugin_proposal_nullish_coalescing_operator_7.14.5.tgz"; path = fetchurl { - name = "_babel_plugin_proposal_nullish_coalescing_operator___plugin_proposal_nullish_coalescing_operator_7.10.1.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.10.1.tgz"; - sha1 = "02dca21673842ff2fe763ac253777f235e9bbf78"; + name = "_babel_plugin_proposal_nullish_coalescing_operator___plugin_proposal_nullish_coalescing_operator_7.14.5.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.14.5.tgz"; + sha1 = "ee38589ce00e2cc59b299ec3ea406fcd3a0fdaf6"; }; } { @@ -306,11 +322,11 @@ }; } { - name = "_babel_plugin_proposal_optional_chaining___plugin_proposal_optional_chaining_7.10.1.tgz"; + name = "_babel_plugin_proposal_optional_chaining___plugin_proposal_optional_chaining_7.14.5.tgz"; path = fetchurl { - name = "_babel_plugin_proposal_optional_chaining___plugin_proposal_optional_chaining_7.10.1.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.10.1.tgz"; - sha1 = "15f5d6d22708629451a91be28f8facc55b0e818c"; + name = "_babel_plugin_proposal_optional_chaining___plugin_proposal_optional_chaining_7.14.5.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.14.5.tgz"; + sha1 = "fa83651e60a360e3f13797eef00b8d519695b603"; }; } { @@ -361,6 +377,14 @@ sha1 = "62bf98b2da3cd21d626154fc96ee5b3cb68eacb3"; }; } + { + name = "_babel_plugin_syntax_flow___plugin_syntax_flow_7.14.5.tgz"; + path = fetchurl { + name = "_babel_plugin_syntax_flow___plugin_syntax_flow_7.14.5.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.14.5.tgz"; + sha1 = "2ff654999497d7d7d142493260005263731da180"; + }; + } { name = "_babel_plugin_syntax_import_meta___plugin_syntax_import_meta_7.10.4.tgz"; path = fetchurl { @@ -433,6 +457,14 @@ sha1 = "8b8733f8c57397b3eaa47ddba8841586dcaef362"; }; } + { + name = "_babel_plugin_syntax_typescript___plugin_syntax_typescript_7.14.5.tgz"; + path = fetchurl { + name = "_babel_plugin_syntax_typescript___plugin_syntax_typescript_7.14.5.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.14.5.tgz"; + sha1 = "b82c6ce471b165b5ce420cf92914d6fb46225716"; + }; + } { name = "_babel_plugin_transform_arrow_functions___plugin_transform_arrow_functions_7.10.1.tgz"; path = fetchurl { @@ -513,6 +545,14 @@ sha1 = "279c3116756a60dd6e6f5e488ba7957db9c59eb3"; }; } + { + name = "_babel_plugin_transform_flow_strip_types___plugin_transform_flow_strip_types_7.14.5.tgz"; + path = fetchurl { + name = "_babel_plugin_transform_flow_strip_types___plugin_transform_flow_strip_types_7.14.5.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.14.5.tgz"; + sha1 = "0dc9c1d11dcdc873417903d6df4bed019ef0f85e"; + }; + } { name = "_babel_plugin_transform_for_of___plugin_transform_for_of_7.10.1.tgz"; path = fetchurl { @@ -554,11 +594,11 @@ }; } { - name = "_babel_plugin_transform_modules_commonjs___plugin_transform_modules_commonjs_7.10.4.tgz"; + name = "_babel_plugin_transform_modules_commonjs___plugin_transform_modules_commonjs_7.15.0.tgz"; path = fetchurl { - name = "_babel_plugin_transform_modules_commonjs___plugin_transform_modules_commonjs_7.10.4.tgz"; - url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.10.4.tgz"; - sha1 = "66667c3eeda1ebf7896d41f1f16b17105a2fbca0"; + name = "_babel_plugin_transform_modules_commonjs___plugin_transform_modules_commonjs_7.15.0.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.15.0.tgz"; + sha1 = "3305896e5835f953b5cdb363acd9e8c2219a5281"; }; } { @@ -673,6 +713,14 @@ sha1 = "60c0239b69965d166b80a84de7315c1bc7e0bb0e"; }; } + { + name = "_babel_plugin_transform_typescript___plugin_transform_typescript_7.15.0.tgz"; + path = fetchurl { + name = "_babel_plugin_transform_typescript___plugin_transform_typescript_7.15.0.tgz"; + url = "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.15.0.tgz"; + sha1 = "553f230b9d5385018716586fc48db10dd228eb7e"; + }; + } { name = "_babel_plugin_transform_unicode_escapes___plugin_transform_unicode_escapes_7.10.1.tgz"; path = fetchurl { @@ -697,6 +745,14 @@ sha1 = "715930f2cf8573b0928005ee562bed52fb65fdfb"; }; } + { + name = "_babel_preset_flow___preset_flow_7.14.5.tgz"; + path = fetchurl { + name = "_babel_preset_flow___preset_flow_7.14.5.tgz"; + url = "https://registry.yarnpkg.com/@babel/preset-flow/-/preset-flow-7.14.5.tgz"; + sha1 = "a1810b0780c8b48ab0bece8e7ab8d0d37712751c"; + }; + } { name = "_babel_preset_modules___preset_modules_0.1.3.tgz"; path = fetchurl { @@ -705,6 +761,22 @@ sha1 = "13242b53b5ef8c883c3cf7dddd55b36ce80fbc72"; }; } + { + name = "_babel_preset_typescript___preset_typescript_7.15.0.tgz"; + path = fetchurl { + name = "_babel_preset_typescript___preset_typescript_7.15.0.tgz"; + url = "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.15.0.tgz"; + sha1 = "e8fca638a1a0f64f14e1119f7fe4500277840945"; + }; + } + { + name = "_babel_register___register_7.15.3.tgz"; + path = fetchurl { + name = "_babel_register___register_7.15.3.tgz"; + url = "https://registry.yarnpkg.com/@babel/register/-/register-7.15.3.tgz"; + sha1 = "6b40a549e06ec06c885b2ec42c3dd711f55fe752"; + }; + } { name = "_babel_runtime_corejs3___runtime_corejs3_7.10.2.tgz"; path = fetchurl { @@ -730,27 +802,27 @@ }; } { - name = "_babel_template___template_7.12.13.tgz"; + name = "_babel_template___template_7.14.5.tgz"; path = fetchurl { - name = "_babel_template___template_7.12.13.tgz"; - url = "https://registry.yarnpkg.com/@babel/template/-/template-7.12.13.tgz"; - sha1 = "530265be8a2589dbb37523844c5bcb55947fb327"; + name = "_babel_template___template_7.14.5.tgz"; + url = "https://registry.yarnpkg.com/@babel/template/-/template-7.14.5.tgz"; + sha1 = "a9bc9d8b33354ff6e55a9c60d1109200a68974f4"; }; } { - name = "_babel_traverse___traverse_7.12.13.tgz"; + name = "_babel_traverse___traverse_7.15.0.tgz"; path = fetchurl { - name = "_babel_traverse___traverse_7.12.13.tgz"; - url = "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.12.13.tgz"; - sha1 = "689f0e4b4c08587ad26622832632735fb8c4e0c0"; + name = "_babel_traverse___traverse_7.15.0.tgz"; + url = "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.15.0.tgz"; + sha1 = "4cca838fd1b2a03283c1f38e141f639d60b3fc98"; }; } { - name = "_babel_types___types_7.12.13.tgz"; + name = "_babel_types___types_7.15.0.tgz"; path = fetchurl { - name = "_babel_types___types_7.12.13.tgz"; - url = "https://registry.yarnpkg.com/@babel/types/-/types-7.12.13.tgz"; - sha1 = "8be1aa8f2c876da11a9cf650c0ecf656913ad611"; + name = "_babel_types___types_7.15.0.tgz"; + url = "https://registry.yarnpkg.com/@babel/types/-/types-7.15.0.tgz"; + sha1 = "61af11f2286c4e9c69ca8deb5f4375a73c72dcbd"; }; } { @@ -794,11 +866,11 @@ }; } { - name = "_gitlab_eslint_plugin___eslint_plugin_9.0.2.tgz"; + name = "_gitlab_eslint_plugin___eslint_plugin_9.3.0.tgz"; path = fetchurl { - name = "_gitlab_eslint_plugin___eslint_plugin_9.0.2.tgz"; - url = "https://registry.yarnpkg.com/@gitlab/eslint-plugin/-/eslint-plugin-9.0.2.tgz"; - sha1 = "c7e0c8744001227d88624eb533047f3d5dd8d419"; + name = "_gitlab_eslint_plugin___eslint_plugin_9.3.0.tgz"; + url = "https://registry.yarnpkg.com/@gitlab/eslint-plugin/-/eslint-plugin-9.3.0.tgz"; + sha1 = "c1765b28d5a2a29143c0a556650fb7527cd9ab0d"; }; } { @@ -818,11 +890,11 @@ }; } { - name = "_gitlab_svgs___svgs_1.211.0.tgz"; + name = "_gitlab_svgs___svgs_1.212.0.tgz"; path = fetchurl { - name = "_gitlab_svgs___svgs_1.211.0.tgz"; - url = "https://registry.yarnpkg.com/@gitlab/svgs/-/svgs-1.211.0.tgz"; - sha1 = "0351fa4cc008c4830f366aede535df0a8e63dda6"; + name = "_gitlab_svgs___svgs_1.212.0.tgz"; + url = "https://registry.yarnpkg.com/@gitlab/svgs/-/svgs-1.212.0.tgz"; + sha1 = "21a5df04c52b10cc1b8521cd8ff7c7d6d13716db"; }; } { @@ -834,11 +906,11 @@ }; } { - name = "_gitlab_ui___ui_32.2.1.tgz"; + name = "_gitlab_ui___ui_32.11.0.tgz"; path = fetchurl { - name = "_gitlab_ui___ui_32.2.1.tgz"; - url = "https://registry.yarnpkg.com/@gitlab/ui/-/ui-32.2.1.tgz"; - sha1 = "e019124af981e8ceffd39f30cf08d315c53d4ac8"; + name = "_gitlab_ui___ui_32.11.0.tgz"; + url = "https://registry.yarnpkg.com/@gitlab/ui/-/ui-32.11.0.tgz"; + sha1 = "8c4a1724c1733a243f96e4a4813ae7f348502ba6"; }; } { @@ -1017,6 +1089,78 @@ sha1 = "83cb70cdb2bac5fad6f8c93529e7b11187d49c02"; }; } + { + name = "_oclif_command___command_1.8.0.tgz"; + path = fetchurl { + name = "_oclif_command___command_1.8.0.tgz"; + url = "https://registry.yarnpkg.com/@oclif/command/-/command-1.8.0.tgz"; + sha1 = "c1a499b10d26e9d1a611190a81005589accbb339"; + }; + } + { + name = "_oclif_config___config_1.17.0.tgz"; + path = fetchurl { + name = "_oclif_config___config_1.17.0.tgz"; + url = "https://registry.yarnpkg.com/@oclif/config/-/config-1.17.0.tgz"; + sha1 = "ba8639118633102a7e481760c50054623d09fcab"; + }; + } + { + name = "_oclif_errors___errors_1.3.5.tgz"; + path = fetchurl { + name = "_oclif_errors___errors_1.3.5.tgz"; + url = "https://registry.yarnpkg.com/@oclif/errors/-/errors-1.3.5.tgz"; + sha1 = "a1e9694dbeccab10fe2fe15acb7113991bed636c"; + }; + } + { + name = "_oclif_linewrap___linewrap_1.0.0.tgz"; + path = fetchurl { + name = "_oclif_linewrap___linewrap_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/@oclif/linewrap/-/linewrap-1.0.0.tgz"; + sha1 = "aedcb64b479d4db7be24196384897b5000901d91"; + }; + } + { + name = "_oclif_parser___parser_3.8.5.tgz"; + path = fetchurl { + name = "_oclif_parser___parser_3.8.5.tgz"; + url = "https://registry.yarnpkg.com/@oclif/parser/-/parser-3.8.5.tgz"; + sha1 = "c5161766a1efca7343e1f25d769efbefe09f639b"; + }; + } + { + name = "_oclif_plugin_help___plugin_help_3.2.3.tgz"; + path = fetchurl { + name = "_oclif_plugin_help___plugin_help_3.2.3.tgz"; + url = "https://registry.yarnpkg.com/@oclif/plugin-help/-/plugin-help-3.2.3.tgz"; + sha1 = "cd24010e7eb326782843d3aa6d6b5a4affebb2c3"; + }; + } + { + name = "_percy_config___config_1.0.0_beta.65.tgz"; + path = fetchurl { + name = "_percy_config___config_1.0.0_beta.65.tgz"; + url = "https://registry.yarnpkg.com/@percy/config/-/config-1.0.0-beta.65.tgz"; + sha1 = "8775d8d645c2b8a094850032d10810f654bb3f1e"; + }; + } + { + name = "_percy_logger___logger_1.0.0_beta.65.tgz"; + path = fetchurl { + name = "_percy_logger___logger_1.0.0_beta.65.tgz"; + url = "https://registry.yarnpkg.com/@percy/logger/-/logger-1.0.0-beta.65.tgz"; + sha1 = "30a34797c935003334124e970f62914b0d124968"; + }; + } + { + name = "_percy_migrate___migrate_0.10.0.tgz"; + path = fetchurl { + name = "_percy_migrate___migrate_0.10.0.tgz"; + url = "https://registry.yarnpkg.com/@percy/migrate/-/migrate-0.10.0.tgz"; + sha1 = "4157bd8ca1638f1cc072086074c8edec57978abc"; + }; + } { name = "_polka_url___url_1.0.0_next.12.tgz"; path = fetchurl { @@ -1050,51 +1194,51 @@ }; } { - name = "_sentry_browser___browser_5.26.0.tgz"; + name = "_sentry_browser___browser_5.30.0.tgz"; path = fetchurl { - name = "_sentry_browser___browser_5.26.0.tgz"; - url = "https://registry.yarnpkg.com/@sentry/browser/-/browser-5.26.0.tgz"; - sha1 = "e90a197fb94c5f26c8e05d6a539c118f33c7d598"; + name = "_sentry_browser___browser_5.30.0.tgz"; + url = "https://registry.yarnpkg.com/@sentry/browser/-/browser-5.30.0.tgz"; + sha1 = "c28f49d551db3172080caef9f18791a7fd39e3b3"; }; } { - name = "_sentry_core___core_5.26.0.tgz"; + name = "_sentry_core___core_5.30.0.tgz"; path = fetchurl { - name = "_sentry_core___core_5.26.0.tgz"; - url = "https://registry.yarnpkg.com/@sentry/core/-/core-5.26.0.tgz"; - sha1 = "9b5fe4de8a869d733ebcc77f5ec9c619f8717a51"; + name = "_sentry_core___core_5.30.0.tgz"; + url = "https://registry.yarnpkg.com/@sentry/core/-/core-5.30.0.tgz"; + sha1 = "6b203664f69e75106ee8b5a2fe1d717379b331f3"; }; } { - name = "_sentry_hub___hub_5.26.0.tgz"; + name = "_sentry_hub___hub_5.30.0.tgz"; path = fetchurl { - name = "_sentry_hub___hub_5.26.0.tgz"; - url = "https://registry.yarnpkg.com/@sentry/hub/-/hub-5.26.0.tgz"; - sha1 = "b2bbd8128cd5915f2ee59cbc29fff30272d74ec5"; + name = "_sentry_hub___hub_5.30.0.tgz"; + url = "https://registry.yarnpkg.com/@sentry/hub/-/hub-5.30.0.tgz"; + sha1 = "2453be9b9cb903404366e198bd30c7ca74cdc100"; }; } { - name = "_sentry_minimal___minimal_5.26.0.tgz"; + name = "_sentry_minimal___minimal_5.30.0.tgz"; path = fetchurl { - name = "_sentry_minimal___minimal_5.26.0.tgz"; - url = "https://registry.yarnpkg.com/@sentry/minimal/-/minimal-5.26.0.tgz"; - sha1 = "851dea3644153ed3ac4837fa8ed5661d94e7a313"; + name = "_sentry_minimal___minimal_5.30.0.tgz"; + url = "https://registry.yarnpkg.com/@sentry/minimal/-/minimal-5.30.0.tgz"; + sha1 = "ce3d3a6a273428e0084adcb800bc12e72d34637b"; }; } { - name = "_sentry_types___types_5.26.0.tgz"; + name = "_sentry_types___types_5.30.0.tgz"; path = fetchurl { - name = "_sentry_types___types_5.26.0.tgz"; - url = "https://registry.yarnpkg.com/@sentry/types/-/types-5.26.0.tgz"; - sha1 = "b0cbacb0b24cd86620fb296b46cf7277bb004a3e"; + name = "_sentry_types___types_5.30.0.tgz"; + url = "https://registry.yarnpkg.com/@sentry/types/-/types-5.30.0.tgz"; + sha1 = "19709bbe12a1a0115bc790b8942917da5636f402"; }; } { - name = "_sentry_utils___utils_5.26.0.tgz"; + name = "_sentry_utils___utils_5.30.0.tgz"; path = fetchurl { - name = "_sentry_utils___utils_5.26.0.tgz"; - url = "https://registry.yarnpkg.com/@sentry/utils/-/utils-5.26.0.tgz"; - sha1 = "09a3d01d91747f38f796cafeb24f8fd86e4fa05f"; + name = "_sentry_utils___utils_5.30.0.tgz"; + url = "https://registry.yarnpkg.com/@sentry/utils/-/utils-5.30.0.tgz"; + sha1 = "9a5bd7ccff85ccfe7856d493bffa64cabc41e980"; }; } { @@ -1122,11 +1266,11 @@ }; } { - name = "_sourcegraph_code_host_integration___code_host_integration_0.0.59.tgz"; + name = "_sourcegraph_code_host_integration___code_host_integration_0.0.60.tgz"; path = fetchurl { - name = "_sourcegraph_code_host_integration___code_host_integration_0.0.59.tgz"; - url = "https://registry.yarnpkg.com/@sourcegraph/code-host-integration/-/code-host-integration-0.0.59.tgz"; - sha1 = "ac64a9f90ff48363334407d12622542d0faa7720"; + name = "_sourcegraph_code_host_integration___code_host_integration_0.0.60.tgz"; + url = "https://registry.yarnpkg.com/@sourcegraph/code-host-integration/-/code-host-integration-0.0.60.tgz"; + sha1 = "2043877fabb7eb986fcb61b67ee480afbb29f4f0"; }; } { @@ -1162,187 +1306,187 @@ }; } { - name = "_tiptap_core___core_2.0.0_beta.86.tgz"; + name = "_tiptap_core___core_2.0.0_beta.105.tgz"; path = fetchurl { - name = "_tiptap_core___core_2.0.0_beta.86.tgz"; - url = "https://registry.yarnpkg.com/@tiptap/core/-/core-2.0.0-beta.86.tgz"; - sha1 = "11b575aee4ad2f30f73114c786da5cd13dde30e0"; + name = "_tiptap_core___core_2.0.0_beta.105.tgz"; + url = "https://registry.yarnpkg.com/@tiptap/core/-/core-2.0.0-beta.105.tgz"; + sha1 = "3d758cbbf3e8c9b806d1017cd2e7444f192d8109"; }; } { - name = "_tiptap_extension_blockquote___extension_blockquote_2.0.0_beta.14.tgz"; + name = "_tiptap_extension_blockquote___extension_blockquote_2.0.0_beta.15.tgz"; path = fetchurl { - name = "_tiptap_extension_blockquote___extension_blockquote_2.0.0_beta.14.tgz"; - url = "https://registry.yarnpkg.com/@tiptap/extension-blockquote/-/extension-blockquote-2.0.0-beta.14.tgz"; - sha1 = "f49872981aecdd21341c4d5db32ab68cba945756"; + name = "_tiptap_extension_blockquote___extension_blockquote_2.0.0_beta.15.tgz"; + url = "https://registry.yarnpkg.com/@tiptap/extension-blockquote/-/extension-blockquote-2.0.0-beta.15.tgz"; + sha1 = "40be203f7db47e027ea1a5ba42bbb0e33bb6c004"; }; } { - name = "_tiptap_extension_bold___extension_bold_2.0.0_beta.14.tgz"; + name = "_tiptap_extension_bold___extension_bold_2.0.0_beta.15.tgz"; path = fetchurl { - name = "_tiptap_extension_bold___extension_bold_2.0.0_beta.14.tgz"; - url = "https://registry.yarnpkg.com/@tiptap/extension-bold/-/extension-bold-2.0.0-beta.14.tgz"; - sha1 = "6bf9ea70f7e24e6d674c7780471fcb6a7a4b91f4"; + name = "_tiptap_extension_bold___extension_bold_2.0.0_beta.15.tgz"; + url = "https://registry.yarnpkg.com/@tiptap/extension-bold/-/extension-bold-2.0.0-beta.15.tgz"; + sha1 = "cf9ddb3fc316be9707753ad4e497bfb8a3ebb0c2"; }; } { - name = "_tiptap_extension_bubble_menu___extension_bubble_menu_2.0.0_beta.24.tgz"; + name = "_tiptap_extension_bubble_menu___extension_bubble_menu_2.0.0_beta.33.tgz"; path = fetchurl { - name = "_tiptap_extension_bubble_menu___extension_bubble_menu_2.0.0_beta.24.tgz"; - url = "https://registry.yarnpkg.com/@tiptap/extension-bubble-menu/-/extension-bubble-menu-2.0.0-beta.24.tgz"; - sha1 = "e6db5bc0386ccdbd483e57296b22eb6dd55914ba"; + name = "_tiptap_extension_bubble_menu___extension_bubble_menu_2.0.0_beta.33.tgz"; + url = "https://registry.yarnpkg.com/@tiptap/extension-bubble-menu/-/extension-bubble-menu-2.0.0-beta.33.tgz"; + sha1 = "50ee84c25118f7ee932385961211b64496355c74"; }; } { - name = "_tiptap_extension_bullet_list___extension_bullet_list_2.0.0_beta.14.tgz"; + name = "_tiptap_extension_bullet_list___extension_bullet_list_2.0.0_beta.15.tgz"; path = fetchurl { - name = "_tiptap_extension_bullet_list___extension_bullet_list_2.0.0_beta.14.tgz"; - url = "https://registry.yarnpkg.com/@tiptap/extension-bullet-list/-/extension-bullet-list-2.0.0-beta.14.tgz"; - sha1 = "29b9bfa2e908cdb01943242f75daf82115f5afd1"; + name = "_tiptap_extension_bullet_list___extension_bullet_list_2.0.0_beta.15.tgz"; + url = "https://registry.yarnpkg.com/@tiptap/extension-bullet-list/-/extension-bullet-list-2.0.0-beta.15.tgz"; + sha1 = "74876851a8d227ba1a031d031631ed621c175e05"; }; } { - name = "_tiptap_extension_code_block_lowlight___extension_code_block_lowlight_2.0.0_beta.32.tgz"; + name = "_tiptap_extension_code_block_lowlight___extension_code_block_lowlight_2.0.0_beta.37.tgz"; path = fetchurl { - name = "_tiptap_extension_code_block_lowlight___extension_code_block_lowlight_2.0.0_beta.32.tgz"; - url = "https://registry.yarnpkg.com/@tiptap/extension-code-block-lowlight/-/extension-code-block-lowlight-2.0.0-beta.32.tgz"; - sha1 = "ef9ff6883f2d669e6be79c69f26749641462e1ea"; + name = "_tiptap_extension_code_block_lowlight___extension_code_block_lowlight_2.0.0_beta.37.tgz"; + url = "https://registry.yarnpkg.com/@tiptap/extension-code-block-lowlight/-/extension-code-block-lowlight-2.0.0-beta.37.tgz"; + sha1 = "672b2f21d49077285a507c2e204b07085df93906"; }; } { - name = "_tiptap_extension_code_block___extension_code_block_2.0.0_beta.16.tgz"; + name = "_tiptap_extension_code_block___extension_code_block_2.0.0_beta.18.tgz"; path = fetchurl { - name = "_tiptap_extension_code_block___extension_code_block_2.0.0_beta.16.tgz"; - url = "https://registry.yarnpkg.com/@tiptap/extension-code-block/-/extension-code-block-2.0.0-beta.16.tgz"; - sha1 = "7788ee1af04eb84fe194261bb1bb835dbe7ad59e"; + name = "_tiptap_extension_code_block___extension_code_block_2.0.0_beta.18.tgz"; + url = "https://registry.yarnpkg.com/@tiptap/extension-code-block/-/extension-code-block-2.0.0-beta.18.tgz"; + sha1 = "3b43730cfca1ba26171530951b3cc324a500cb11"; }; } { - name = "_tiptap_extension_code___extension_code_2.0.0_beta.14.tgz"; + name = "_tiptap_extension_code___extension_code_2.0.0_beta.16.tgz"; path = fetchurl { - name = "_tiptap_extension_code___extension_code_2.0.0_beta.14.tgz"; - url = "https://registry.yarnpkg.com/@tiptap/extension-code/-/extension-code-2.0.0-beta.14.tgz"; - sha1 = "679a741589d63006140605553be7c6148c000814"; + name = "_tiptap_extension_code___extension_code_2.0.0_beta.16.tgz"; + url = "https://registry.yarnpkg.com/@tiptap/extension-code/-/extension-code-2.0.0-beta.16.tgz"; + sha1 = "b258ff90ebe703a4d36ff0c650e6b2cab634028d"; }; } { - name = "_tiptap_extension_document___extension_document_2.0.0_beta.12.tgz"; + name = "_tiptap_extension_document___extension_document_2.0.0_beta.13.tgz"; path = fetchurl { - name = "_tiptap_extension_document___extension_document_2.0.0_beta.12.tgz"; - url = "https://registry.yarnpkg.com/@tiptap/extension-document/-/extension-document-2.0.0-beta.12.tgz"; - sha1 = "dfbc7e686075a38662a43708903cd2047cf7f4b2"; + name = "_tiptap_extension_document___extension_document_2.0.0_beta.13.tgz"; + url = "https://registry.yarnpkg.com/@tiptap/extension-document/-/extension-document-2.0.0-beta.13.tgz"; + sha1 = "8cfb29d4de64bf4a790817f730c05b4f9b7167b2"; }; } { - name = "_tiptap_extension_dropcursor___extension_dropcursor_2.0.0_beta.17.tgz"; + name = "_tiptap_extension_dropcursor___extension_dropcursor_2.0.0_beta.19.tgz"; path = fetchurl { - name = "_tiptap_extension_dropcursor___extension_dropcursor_2.0.0_beta.17.tgz"; - url = "https://registry.yarnpkg.com/@tiptap/extension-dropcursor/-/extension-dropcursor-2.0.0-beta.17.tgz"; - sha1 = "3ca59c264b49a91c1a5b2ce8de3e898903d0a5bc"; + name = "_tiptap_extension_dropcursor___extension_dropcursor_2.0.0_beta.19.tgz"; + url = "https://registry.yarnpkg.com/@tiptap/extension-dropcursor/-/extension-dropcursor-2.0.0-beta.19.tgz"; + sha1 = "8a37ffe27e484eb44dd18297830d1fd8ce0c50ce"; }; } { - name = "_tiptap_extension_floating_menu___extension_floating_menu_2.0.0_beta.18.tgz"; + name = "_tiptap_extension_floating_menu___extension_floating_menu_2.0.0_beta.27.tgz"; path = fetchurl { - name = "_tiptap_extension_floating_menu___extension_floating_menu_2.0.0_beta.18.tgz"; - url = "https://registry.yarnpkg.com/@tiptap/extension-floating-menu/-/extension-floating-menu-2.0.0-beta.18.tgz"; - sha1 = "4d9b7f58c73f6c718a74503c5ff514b06f615e27"; + name = "_tiptap_extension_floating_menu___extension_floating_menu_2.0.0_beta.27.tgz"; + url = "https://registry.yarnpkg.com/@tiptap/extension-floating-menu/-/extension-floating-menu-2.0.0-beta.27.tgz"; + sha1 = "692686854116823be624028fd8d73aa900cf71a9"; }; } { - name = "_tiptap_extension_gapcursor___extension_gapcursor_2.0.0_beta.18.tgz"; + name = "_tiptap_extension_gapcursor___extension_gapcursor_2.0.0_beta.19.tgz"; path = fetchurl { - name = "_tiptap_extension_gapcursor___extension_gapcursor_2.0.0_beta.18.tgz"; - url = "https://registry.yarnpkg.com/@tiptap/extension-gapcursor/-/extension-gapcursor-2.0.0-beta.18.tgz"; - sha1 = "67c2266ec21c90f003e989862b709475f5427fea"; + name = "_tiptap_extension_gapcursor___extension_gapcursor_2.0.0_beta.19.tgz"; + url = "https://registry.yarnpkg.com/@tiptap/extension-gapcursor/-/extension-gapcursor-2.0.0-beta.19.tgz"; + sha1 = "6d826c240496b1a77808999d51b8917adb372cc5"; }; } { - name = "_tiptap_extension_hard_break___extension_hard_break_2.0.0_beta.14.tgz"; + name = "_tiptap_extension_hard_break___extension_hard_break_2.0.0_beta.16.tgz"; path = fetchurl { - name = "_tiptap_extension_hard_break___extension_hard_break_2.0.0_beta.14.tgz"; - url = "https://registry.yarnpkg.com/@tiptap/extension-hard-break/-/extension-hard-break-2.0.0-beta.14.tgz"; - sha1 = "dce00c49dc614caac82720b930501a59b38d5584"; + name = "_tiptap_extension_hard_break___extension_hard_break_2.0.0_beta.16.tgz"; + url = "https://registry.yarnpkg.com/@tiptap/extension-hard-break/-/extension-hard-break-2.0.0-beta.16.tgz"; + sha1 = "1a55e901ce2deaaeaf53d77d254371955fe8fd99"; }; } { - name = "_tiptap_extension_heading___extension_heading_2.0.0_beta.14.tgz"; + name = "_tiptap_extension_heading___extension_heading_2.0.0_beta.15.tgz"; path = fetchurl { - name = "_tiptap_extension_heading___extension_heading_2.0.0_beta.14.tgz"; - url = "https://registry.yarnpkg.com/@tiptap/extension-heading/-/extension-heading-2.0.0-beta.14.tgz"; - sha1 = "63df6d7282afd3c2db2253af2e538c3bf2800751"; + name = "_tiptap_extension_heading___extension_heading_2.0.0_beta.15.tgz"; + url = "https://registry.yarnpkg.com/@tiptap/extension-heading/-/extension-heading-2.0.0-beta.15.tgz"; + sha1 = "d62f32a2ec8ce5a6d4e716aa7a45dfb707283848"; }; } { - name = "_tiptap_extension_history___extension_history_2.0.0_beta.14.tgz"; + name = "_tiptap_extension_history___extension_history_2.0.0_beta.16.tgz"; path = fetchurl { - name = "_tiptap_extension_history___extension_history_2.0.0_beta.14.tgz"; - url = "https://registry.yarnpkg.com/@tiptap/extension-history/-/extension-history-2.0.0-beta.14.tgz"; - sha1 = "7990a592a521ca4147e733eed78fcb738ed6ba95"; + name = "_tiptap_extension_history___extension_history_2.0.0_beta.16.tgz"; + url = "https://registry.yarnpkg.com/@tiptap/extension-history/-/extension-history-2.0.0-beta.16.tgz"; + sha1 = "f40317bab795e2daf981aa1a01d6025f306be72c"; }; } { - name = "_tiptap_extension_horizontal_rule___extension_horizontal_rule_2.0.0_beta.17.tgz"; + name = "_tiptap_extension_horizontal_rule___extension_horizontal_rule_2.0.0_beta.19.tgz"; path = fetchurl { - name = "_tiptap_extension_horizontal_rule___extension_horizontal_rule_2.0.0_beta.17.tgz"; - url = "https://registry.yarnpkg.com/@tiptap/extension-horizontal-rule/-/extension-horizontal-rule-2.0.0-beta.17.tgz"; - sha1 = "25c15bfab5794a3f1bcf6f4df03bef56ddac80aa"; + name = "_tiptap_extension_horizontal_rule___extension_horizontal_rule_2.0.0_beta.19.tgz"; + url = "https://registry.yarnpkg.com/@tiptap/extension-horizontal-rule/-/extension-horizontal-rule-2.0.0-beta.19.tgz"; + sha1 = "d98d0070a2cead32a497b62586c0e259d31f3f2e"; }; } { - name = "_tiptap_extension_image___extension_image_2.0.0_beta.14.tgz"; + name = "_tiptap_extension_image___extension_image_2.0.0_beta.15.tgz"; path = fetchurl { - name = "_tiptap_extension_image___extension_image_2.0.0_beta.14.tgz"; - url = "https://registry.yarnpkg.com/@tiptap/extension-image/-/extension-image-2.0.0-beta.14.tgz"; - sha1 = "31eae69cce3d81af81a1c0fbd253beca3c253429"; + name = "_tiptap_extension_image___extension_image_2.0.0_beta.15.tgz"; + url = "https://registry.yarnpkg.com/@tiptap/extension-image/-/extension-image-2.0.0-beta.15.tgz"; + sha1 = "07bdc23c9804c830a394f78242648dd7783a469e"; }; } { - name = "_tiptap_extension_italic___extension_italic_2.0.0_beta.14.tgz"; + name = "_tiptap_extension_italic___extension_italic_2.0.0_beta.15.tgz"; path = fetchurl { - name = "_tiptap_extension_italic___extension_italic_2.0.0_beta.14.tgz"; - url = "https://registry.yarnpkg.com/@tiptap/extension-italic/-/extension-italic-2.0.0-beta.14.tgz"; - sha1 = "5b56a806ef6507dc2001eaeeeb234ee0b25d8544"; + name = "_tiptap_extension_italic___extension_italic_2.0.0_beta.15.tgz"; + url = "https://registry.yarnpkg.com/@tiptap/extension-italic/-/extension-italic-2.0.0-beta.15.tgz"; + sha1 = "9a81f686cf221110478935596f0b47a76d4c2f45"; }; } { - name = "_tiptap_extension_link___extension_link_2.0.0_beta.18.tgz"; + name = "_tiptap_extension_link___extension_link_2.0.0_beta.20.tgz"; path = fetchurl { - name = "_tiptap_extension_link___extension_link_2.0.0_beta.18.tgz"; - url = "https://registry.yarnpkg.com/@tiptap/extension-link/-/extension-link-2.0.0-beta.18.tgz"; - sha1 = "792c671daf3db79873b8425e68da43dd19af230b"; + name = "_tiptap_extension_link___extension_link_2.0.0_beta.20.tgz"; + url = "https://registry.yarnpkg.com/@tiptap/extension-link/-/extension-link-2.0.0-beta.20.tgz"; + sha1 = "dbb2aa4f01212bbd0c3fb14b563e28f31140eae2"; }; } { - name = "_tiptap_extension_list_item___extension_list_item_2.0.0_beta.13.tgz"; + name = "_tiptap_extension_list_item___extension_list_item_2.0.0_beta.14.tgz"; path = fetchurl { - name = "_tiptap_extension_list_item___extension_list_item_2.0.0_beta.13.tgz"; - url = "https://registry.yarnpkg.com/@tiptap/extension-list-item/-/extension-list-item-2.0.0-beta.13.tgz"; - sha1 = "49f32d70a554897ffa3b37b492ebaf5953f8a975"; + name = "_tiptap_extension_list_item___extension_list_item_2.0.0_beta.14.tgz"; + url = "https://registry.yarnpkg.com/@tiptap/extension-list-item/-/extension-list-item-2.0.0-beta.14.tgz"; + sha1 = "65a9ff9daa11bc9ca8bc2989a891abe68081cfbd"; }; } { - name = "_tiptap_extension_ordered_list___extension_ordered_list_2.0.0_beta.14.tgz"; + name = "_tiptap_extension_ordered_list___extension_ordered_list_2.0.0_beta.16.tgz"; path = fetchurl { - name = "_tiptap_extension_ordered_list___extension_ordered_list_2.0.0_beta.14.tgz"; - url = "https://registry.yarnpkg.com/@tiptap/extension-ordered-list/-/extension-ordered-list-2.0.0-beta.14.tgz"; - sha1 = "54487f8b9246226586d0190d07a449a97536436a"; + name = "_tiptap_extension_ordered_list___extension_ordered_list_2.0.0_beta.16.tgz"; + url = "https://registry.yarnpkg.com/@tiptap/extension-ordered-list/-/extension-ordered-list-2.0.0-beta.16.tgz"; + sha1 = "3ef25a8dd8ddbd2b1aa5ce89d5a2e5a3ecafcf4e"; }; } { - name = "_tiptap_extension_paragraph___extension_paragraph_2.0.0_beta.15.tgz"; + name = "_tiptap_extension_paragraph___extension_paragraph_2.0.0_beta.17.tgz"; path = fetchurl { - name = "_tiptap_extension_paragraph___extension_paragraph_2.0.0_beta.15.tgz"; - url = "https://registry.yarnpkg.com/@tiptap/extension-paragraph/-/extension-paragraph-2.0.0-beta.15.tgz"; - sha1 = "89483a2f438d8412287d441c890304985c2ac07f"; + name = "_tiptap_extension_paragraph___extension_paragraph_2.0.0_beta.17.tgz"; + url = "https://registry.yarnpkg.com/@tiptap/extension-paragraph/-/extension-paragraph-2.0.0-beta.17.tgz"; + sha1 = "f8f0263359b95dec9c10078699697908568d9be9"; }; } { - name = "_tiptap_extension_strike___extension_strike_2.0.0_beta.16.tgz"; + name = "_tiptap_extension_strike___extension_strike_2.0.0_beta.17.tgz"; path = fetchurl { - name = "_tiptap_extension_strike___extension_strike_2.0.0_beta.16.tgz"; - url = "https://registry.yarnpkg.com/@tiptap/extension-strike/-/extension-strike-2.0.0-beta.16.tgz"; - sha1 = "cccce9713824e05ebde895f84f747b8bbed45f7d"; + name = "_tiptap_extension_strike___extension_strike_2.0.0_beta.17.tgz"; + url = "https://registry.yarnpkg.com/@tiptap/extension-strike/-/extension-strike-2.0.0-beta.17.tgz"; + sha1 = "2280ea4e8c50189c2729814d2ae484e58c712a36"; }; } { @@ -1362,43 +1506,43 @@ }; } { - name = "_tiptap_extension_table_cell___extension_table_cell_2.0.0_beta.13.tgz"; + name = "_tiptap_extension_table_cell___extension_table_cell_2.0.0_beta.15.tgz"; path = fetchurl { - name = "_tiptap_extension_table_cell___extension_table_cell_2.0.0_beta.13.tgz"; - url = "https://registry.yarnpkg.com/@tiptap/extension-table-cell/-/extension-table-cell-2.0.0-beta.13.tgz"; - sha1 = "c01eada4859d5ea487d61e68cc7fab7ed2e4842a"; + name = "_tiptap_extension_table_cell___extension_table_cell_2.0.0_beta.15.tgz"; + url = "https://registry.yarnpkg.com/@tiptap/extension-table-cell/-/extension-table-cell-2.0.0-beta.15.tgz"; + sha1 = "2059946b1657f0f22415bda84cee77fb1eb232b1"; }; } { - name = "_tiptap_extension_table_header___extension_table_header_2.0.0_beta.15.tgz"; + name = "_tiptap_extension_table_header___extension_table_header_2.0.0_beta.17.tgz"; path = fetchurl { - name = "_tiptap_extension_table_header___extension_table_header_2.0.0_beta.15.tgz"; - url = "https://registry.yarnpkg.com/@tiptap/extension-table-header/-/extension-table-header-2.0.0-beta.15.tgz"; - sha1 = "884d16f104671ee672f1f629f4e4fef0b096bfbb"; + name = "_tiptap_extension_table_header___extension_table_header_2.0.0_beta.17.tgz"; + url = "https://registry.yarnpkg.com/@tiptap/extension-table-header/-/extension-table-header-2.0.0-beta.17.tgz"; + sha1 = "1bd008825146e6f5fc607a1d8682b5d47ba08f25"; }; } { - name = "_tiptap_extension_table_row___extension_table_row_2.0.0_beta.13.tgz"; + name = "_tiptap_extension_table_row___extension_table_row_2.0.0_beta.14.tgz"; path = fetchurl { - name = "_tiptap_extension_table_row___extension_table_row_2.0.0_beta.13.tgz"; - url = "https://registry.yarnpkg.com/@tiptap/extension-table-row/-/extension-table-row-2.0.0-beta.13.tgz"; - sha1 = "3f9a61112afcde750228f4437ae3cd7b82d02f74"; + name = "_tiptap_extension_table_row___extension_table_row_2.0.0_beta.14.tgz"; + url = "https://registry.yarnpkg.com/@tiptap/extension-table-row/-/extension-table-row-2.0.0-beta.14.tgz"; + sha1 = "9ec98c73e309ee966b71ccd140019874d179e0c8"; }; } { - name = "_tiptap_extension_table___extension_table_2.0.0_beta.25.tgz"; + name = "_tiptap_extension_table___extension_table_2.0.0_beta.30.tgz"; path = fetchurl { - name = "_tiptap_extension_table___extension_table_2.0.0_beta.25.tgz"; - url = "https://registry.yarnpkg.com/@tiptap/extension-table/-/extension-table-2.0.0-beta.25.tgz"; - sha1 = "57accf19c07e96bd0db868eb791da20bd423af36"; + name = "_tiptap_extension_table___extension_table_2.0.0_beta.30.tgz"; + url = "https://registry.yarnpkg.com/@tiptap/extension-table/-/extension-table-2.0.0-beta.30.tgz"; + sha1 = "f6ff97ea71b17ecf3371ddf80374df9f49042334"; }; } { - name = "_tiptap_extension_task_item___extension_task_item_2.0.0_beta.17.tgz"; + name = "_tiptap_extension_task_item___extension_task_item_2.0.0_beta.18.tgz"; path = fetchurl { - name = "_tiptap_extension_task_item___extension_task_item_2.0.0_beta.17.tgz"; - url = "https://registry.yarnpkg.com/@tiptap/extension-task-item/-/extension-task-item-2.0.0-beta.17.tgz"; - sha1 = "e4e010c321b8f9aa5f49847c48e4e3a0695a47a9"; + name = "_tiptap_extension_task_item___extension_task_item_2.0.0_beta.18.tgz"; + url = "https://registry.yarnpkg.com/@tiptap/extension-task-item/-/extension-task-item-2.0.0-beta.18.tgz"; + sha1 = "f109c15c997038d8099b64dba4cfc4e219b426e4"; }; } { @@ -1410,19 +1554,19 @@ }; } { - name = "_tiptap_extension_text___extension_text_2.0.0_beta.12.tgz"; + name = "_tiptap_extension_text___extension_text_2.0.0_beta.13.tgz"; path = fetchurl { - name = "_tiptap_extension_text___extension_text_2.0.0_beta.12.tgz"; - url = "https://registry.yarnpkg.com/@tiptap/extension-text/-/extension-text-2.0.0-beta.12.tgz"; - sha1 = "b857f36dda5e8cedd350f9bad7115e4060f8d9c0"; + name = "_tiptap_extension_text___extension_text_2.0.0_beta.13.tgz"; + url = "https://registry.yarnpkg.com/@tiptap/extension-text/-/extension-text-2.0.0-beta.13.tgz"; + sha1 = "da0af8d9a3f149d20076e15d88c6af21fb6d940f"; }; } { - name = "_tiptap_vue_2___vue_2_2.0.0_beta.39.tgz"; + name = "_tiptap_vue_2___vue_2_2.0.0_beta.50.tgz"; path = fetchurl { - name = "_tiptap_vue_2___vue_2_2.0.0_beta.39.tgz"; - url = "https://registry.yarnpkg.com/@tiptap/vue-2/-/vue-2-2.0.0-beta.39.tgz"; - sha1 = "f6d75af99b072848381f0c443b50ec09186eb43b"; + name = "_tiptap_vue_2___vue_2_2.0.0_beta.50.tgz"; + url = "https://registry.yarnpkg.com/@tiptap/vue-2/-/vue-2-2.0.0-beta.50.tgz"; + sha1 = "1c1c3e7d696aaa167fc776e11b393b182f1bfbb4"; }; } { @@ -1658,11 +1802,11 @@ }; } { - name = "_types_prosemirror_dropcursor___prosemirror_dropcursor_1.0.2.tgz"; + name = "_types_prosemirror_dropcursor___prosemirror_dropcursor_1.0.3.tgz"; path = fetchurl { - name = "_types_prosemirror_dropcursor___prosemirror_dropcursor_1.0.2.tgz"; - url = "https://registry.yarnpkg.com/@types/prosemirror-dropcursor/-/prosemirror-dropcursor-1.0.2.tgz"; - sha1 = "476b90a661f32d6d6a21599f53fcd71e36c65a1f"; + name = "_types_prosemirror_dropcursor___prosemirror_dropcursor_1.0.3.tgz"; + url = "https://registry.yarnpkg.com/@types/prosemirror-dropcursor/-/prosemirror-dropcursor-1.0.3.tgz"; + sha1 = "49250849b8a0b86e8c29eb1ba70a463e53e46947"; }; } { @@ -1698,11 +1842,11 @@ }; } { - name = "_types_prosemirror_model___prosemirror_model_1.13.1.tgz"; + name = "_types_prosemirror_model___prosemirror_model_1.13.2.tgz"; path = fetchurl { - name = "_types_prosemirror_model___prosemirror_model_1.13.1.tgz"; - url = "https://registry.yarnpkg.com/@types/prosemirror-model/-/prosemirror-model-1.13.1.tgz"; - sha1 = "53df04ee174a7e1dc12747005b1b4c02565adcc4"; + name = "_types_prosemirror_model___prosemirror_model_1.13.2.tgz"; + url = "https://registry.yarnpkg.com/@types/prosemirror-model/-/prosemirror-model-1.13.2.tgz"; + sha1 = "2adad3ec478f83204f155d7fb94c9dfde2fc3296"; }; } { @@ -1730,11 +1874,11 @@ }; } { - name = "_types_prosemirror_view___prosemirror_view_1.17.2.tgz"; + name = "_types_prosemirror_view___prosemirror_view_1.19.0.tgz"; path = fetchurl { - name = "_types_prosemirror_view___prosemirror_view_1.17.2.tgz"; - url = "https://registry.yarnpkg.com/@types/prosemirror-view/-/prosemirror-view-1.17.2.tgz"; - sha1 = "3aff71a0802bdfc310404db8a37ced2db69fd74f"; + name = "_types_prosemirror_view___prosemirror_view_1.19.0.tgz"; + url = "https://registry.yarnpkg.com/@types/prosemirror-view/-/prosemirror-view-1.19.0.tgz"; + sha1 = "35320b6875ae7c750bce799cccf735e5da91af7a"; }; } { @@ -2081,14 +2225,6 @@ sha1 = "52311fd7037ae119cbb134309e901aa46295b3fe"; }; } - { - name = "after___after_0.8.2.tgz"; - path = fetchurl { - name = "after___after_0.8.2.tgz"; - url = "https://registry.yarnpkg.com/after/-/after-0.8.2.tgz"; - sha1 = "fedb394f9f0e02aa9768e702bda23b505fae7e1f"; - }; - } { name = "agent_base___agent_base_4.3.0.tgz"; path = fetchurl { @@ -2130,11 +2266,11 @@ }; } { - name = "ajv___ajv_8.5.0.tgz"; + name = "ajv___ajv_8.6.2.tgz"; path = fetchurl { - name = "ajv___ajv_8.5.0.tgz"; - url = "https://registry.yarnpkg.com/ajv/-/ajv-8.5.0.tgz"; - sha1 = "695528274bcb5afc865446aa275484049a18ae4b"; + name = "ajv___ajv_8.6.2.tgz"; + url = "https://registry.yarnpkg.com/ajv/-/ajv-8.6.2.tgz"; + sha1 = "2fb45e0e5fcbc0813326c1c3da535d1881bb0571"; }; } { @@ -2321,14 +2457,6 @@ sha1 = "6129e438e8be201b6c55b0f13ce49d2c7175c9cf"; }; } - { - name = "append_transform___append_transform_1.0.0.tgz"; - path = fetchurl { - name = "append_transform___append_transform_1.0.0.tgz"; - url = "https://registry.yarnpkg.com/append-transform/-/append-transform-1.0.0.tgz"; - sha1 = "046a52ae582a228bd72f58acfbe2967c678759ab"; - }; - } { name = "aproba___aproba_1.2.0.tgz"; path = fetchurl { @@ -2457,14 +2585,6 @@ sha1 = "6ef638b43312bd401b4c6199fdec7e2dc9e9a123"; }; } - { - name = "arraybuffer.slice___arraybuffer.slice_0.0.7.tgz"; - path = fetchurl { - name = "arraybuffer.slice___arraybuffer.slice_0.0.7.tgz"; - url = "https://registry.yarnpkg.com/arraybuffer.slice/-/arraybuffer.slice-0.0.7.tgz"; - sha1 = "3bbc4275dd584cc1b10809b89d4e8b63a69e7675"; - }; - } { name = "arrify___arrify_1.0.1.tgz"; path = fetchurl { @@ -2513,6 +2633,14 @@ sha1 = "59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367"; }; } + { + name = "ast_types___ast_types_0.14.2.tgz"; + path = fetchurl { + name = "ast_types___ast_types_0.14.2.tgz"; + url = "https://registry.yarnpkg.com/ast-types/-/ast-types-0.14.2.tgz"; + sha1 = "600b882df8583e3cd4f2df5fa20fa83759d4bdfd"; + }; + } { name = "astral_regex___astral_regex_2.0.0.tgz"; path = fetchurl { @@ -2609,6 +2737,14 @@ sha1 = "057ba30f04884694993a8cd07fa394cff11c50bd"; }; } + { + name = "babel_core___babel_core_7.0.0_bridge.0.tgz"; + path = fetchurl { + name = "babel_core___babel_core_7.0.0_bridge.0.tgz"; + url = "https://registry.yarnpkg.com/babel-core/-/babel-core-7.0.0-bridge.0.tgz"; + sha1 = "95a492ddd90f9b4e9a4a1da14eb335b87b634ece"; + }; + } { name = "babel_eslint___babel_eslint_10.0.3.tgz"; path = fetchurl { @@ -2689,14 +2825,6 @@ sha1 = "e928c7e807e970e0536b078ab3e0c48f9e052503"; }; } - { - name = "backo2___backo2_1.0.2.tgz"; - path = fetchurl { - name = "backo2___backo2_1.0.2.tgz"; - url = "https://registry.yarnpkg.com/backo2/-/backo2-1.0.2.tgz"; - sha1 = "31ab1ac8b129363463e35b3ebb69f4dfcfba7947"; - }; - } { name = "bail___bail_1.0.5.tgz"; path = fetchurl { @@ -2714,27 +2842,11 @@ }; } { - name = "base64_arraybuffer___base64_arraybuffer_0.1.5.tgz"; + name = "base64_js___base64_js_1.5.1.tgz"; path = fetchurl { - name = "base64_arraybuffer___base64_arraybuffer_0.1.5.tgz"; - url = "https://registry.yarnpkg.com/base64-arraybuffer/-/base64-arraybuffer-0.1.5.tgz"; - sha1 = "73926771923b5a19747ad666aa5cd4bf9c6e9ce8"; - }; - } - { - name = "base64_js___base64_js_1.2.3.tgz"; - path = fetchurl { - name = "base64_js___base64_js_1.2.3.tgz"; - url = "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.3.tgz"; - sha1 = "fb13668233d9614cf5fb4bce95a9ba4096cdf801"; - }; - } - { - name = "base64id___base64id_1.0.0.tgz"; - path = fetchurl { - name = "base64id___base64id_1.0.0.tgz"; - url = "https://registry.yarnpkg.com/base64id/-/base64id-1.0.0.tgz"; - sha1 = "47688cb99bb6804f0e06d3e763b1c32e57d8e6b6"; + name = "base64_js___base64_js_1.5.1.tgz"; + url = "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz"; + sha1 = "1b1b440160a5bf7ad40b650f095963481903930a"; }; } { @@ -2761,14 +2873,6 @@ sha1 = "a4301d389b6a43f9b67ff3ca11a3f6637e360e9e"; }; } - { - name = "better_assert___better_assert_1.0.2.tgz"; - path = fetchurl { - name = "better_assert___better_assert_1.0.2.tgz"; - url = "https://registry.yarnpkg.com/better-assert/-/better-assert-1.0.2.tgz"; - sha1 = "40866b9e1b9e0b55b481894311e68faffaebc522"; - }; - } { name = "big.js___big.js_5.2.2.tgz"; path = fetchurl { @@ -2794,11 +2898,11 @@ }; } { - name = "blob___blob_0.0.4.tgz"; + name = "bl___bl_4.1.0.tgz"; path = fetchurl { - name = "blob___blob_0.0.4.tgz"; - url = "https://registry.yarnpkg.com/blob/-/blob-0.0.4.tgz"; - sha1 = "bcf13052ca54463f30f9fc7e95b9a47630a94921"; + name = "bl___bl_4.1.0.tgz"; + url = "https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz"; + sha1 = "451535264182bec2fbbc83a62ab98cf11d9f7b3a"; }; } { @@ -3009,6 +3113,14 @@ sha1 = "6d1bb601b07a4efced97094132093027c95bc298"; }; } + { + name = "buffer___buffer_5.7.1.tgz"; + path = fetchurl { + name = "buffer___buffer_5.7.1.tgz"; + url = "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz"; + sha1 = "ba62e7c13133053582197160851a8f648e99eed0"; + }; + } { name = "builtin_status_codes___builtin_status_codes_3.0.0.tgz"; path = fetchurl { @@ -3089,14 +3201,6 @@ sha1 = "26d208ea89e37b5cbde60250a15f031c16a4d66b"; }; } - { - name = "callsite___callsite_1.0.0.tgz"; - path = fetchurl { - name = "callsite___callsite_1.0.0.tgz"; - url = "https://registry.yarnpkg.com/callsite/-/callsite-1.0.0.tgz"; - sha1 = "280398e5d664bd74038b6f0905153e6e8af1bc20"; - }; - } { name = "callsites___callsites_3.0.0.tgz"; path = fetchurl { @@ -3105,14 +3209,6 @@ sha1 = "fb7eb569b72ad7a45812f93fd9430a3e410b3dd3"; }; } - { - name = "camel_case___camel_case_3.0.0.tgz"; - path = fetchurl { - name = "camel_case___camel_case_3.0.0.tgz"; - url = "https://registry.yarnpkg.com/camel-case/-/camel-case-3.0.0.tgz"; - sha1 = "ca3c3688a4e9cf3a4cda777dc4dcbc713249cf73"; - }; - } { name = "camelcase_keys___camelcase_keys_6.2.2.tgz"; path = fetchurl { @@ -3186,11 +3282,11 @@ }; } { - name = "chalk___chalk_4.1.0.tgz"; + name = "chalk___chalk_4.1.2.tgz"; path = fetchurl { - name = "chalk___chalk_4.1.0.tgz"; - url = "https://registry.yarnpkg.com/chalk/-/chalk-4.1.0.tgz"; - sha1 = "4e14870a618d9e2edd97dd8345fd9d9dc315646a"; + name = "chalk___chalk_4.1.2.tgz"; + url = "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz"; + sha1 = "aac4e2b7734a740867aeb16bf02aad556a1e7a01"; }; } { @@ -3225,6 +3321,14 @@ sha1 = "083329cda0eae272ab3dbbf37e9a382c13af1560"; }; } + { + name = "chardet___chardet_0.7.0.tgz"; + path = fetchurl { + name = "chardet___chardet_0.7.0.tgz"; + url = "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz"; + sha1 = "90094849f0937f2eedc2425d0d28a9e5f0cbad9e"; + }; + } { name = "charenc___charenc_0.0.2.tgz"; path = fetchurl { @@ -3305,14 +3409,6 @@ sha1 = "f93369ae8b9a7ce02fd41faad0ca83033190c463"; }; } - { - name = "clean_css___clean_css_4.2.1.tgz"; - path = fetchurl { - name = "clean_css___clean_css_4.2.1.tgz"; - url = "https://registry.yarnpkg.com/clean-css/-/clean-css-4.2.1.tgz"; - sha1 = "2d411ef76b8569b6d0c84068dabe85b0aa5e5c17"; - }; - } { name = "clean_stack___clean_stack_2.2.0.tgz"; path = fetchurl { @@ -3321,6 +3417,14 @@ sha1 = "ee8472dbb129e727b31e8a10a427dee9dfe4008b"; }; } + { + name = "clean_stack___clean_stack_3.0.1.tgz"; + path = fetchurl { + name = "clean_stack___clean_stack_3.0.1.tgz"; + url = "https://registry.yarnpkg.com/clean-stack/-/clean-stack-3.0.1.tgz"; + sha1 = "155bf0b2221bf5f4fba89528d24c5953f17fe3a8"; + }; + } { name = "cli_boxes___cli_boxes_2.2.0.tgz"; path = fetchurl { @@ -3329,6 +3433,30 @@ sha1 = "538ecae8f9c6ca508e3c3c95b453fe93cb4c168d"; }; } + { + name = "cli_cursor___cli_cursor_3.1.0.tgz"; + path = fetchurl { + name = "cli_cursor___cli_cursor_3.1.0.tgz"; + url = "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz"; + sha1 = "264305a7ae490d1d03bf0c9ba7c925d1753af307"; + }; + } + { + name = "cli_spinners___cli_spinners_2.6.0.tgz"; + path = fetchurl { + name = "cli_spinners___cli_spinners_2.6.0.tgz"; + url = "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.6.0.tgz"; + sha1 = "36c7dc98fb6a9a76bd6238ec3f77e2425627e939"; + }; + } + { + name = "cli_width___cli_width_3.0.0.tgz"; + path = fetchurl { + name = "cli_width___cli_width_3.0.0.tgz"; + url = "https://registry.yarnpkg.com/cli-width/-/cli-width-3.0.0.tgz"; + sha1 = "a2f48437a2caa9a22436e794bf071ec9e61cedf6"; + }; + } { name = "clipboard___clipboard_1.7.1.tgz"; path = fetchurl { @@ -3385,6 +3513,14 @@ sha1 = "d1dc973920314df67fbeb94223b4ee350239e96b"; }; } + { + name = "clone___clone_1.0.4.tgz"; + path = fetchurl { + name = "clone___clone_1.0.4.tgz"; + url = "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz"; + sha1 = "da309cc263df15994c688ca902179ca3c7cd7c7e"; + }; + } { name = "co___co_4.6.0.tgz"; path = fetchurl { @@ -3490,11 +3626,11 @@ }; } { - name = "colors___colors_1.3.3.tgz"; + name = "colors___colors_1.4.0.tgz"; path = fetchurl { - name = "colors___colors_1.3.3.tgz"; - url = "https://registry.yarnpkg.com/colors/-/colors-1.3.3.tgz"; - sha1 = "39e005d546afe01e01f9c4ca8fa50f686a01205d"; + name = "colors___colors_1.4.0.tgz"; + url = "https://registry.yarnpkg.com/colors/-/colors-1.4.0.tgz"; + sha1 = "c50491479d4c1bdaed2c9ced32cf7c7dc2360f78"; }; } { @@ -3529,22 +3665,6 @@ sha1 = "ddd800da0c66127393cca5950ea968a3aaf1253b"; }; } - { - name = "compare_versions___compare_versions_3.5.1.tgz"; - path = fetchurl { - name = "compare_versions___compare_versions_3.5.1.tgz"; - url = "https://registry.yarnpkg.com/compare-versions/-/compare-versions-3.5.1.tgz"; - sha1 = "26e1f5cf0d48a77eced5046b9f67b6b61075a393"; - }; - } - { - name = "component_bind___component_bind_1.0.0.tgz"; - path = fetchurl { - name = "component_bind___component_bind_1.0.0.tgz"; - url = "https://registry.yarnpkg.com/component-bind/-/component-bind-1.0.0.tgz"; - sha1 = "00c608ab7dcd93897c0009651b1d3a8e1e73bbd1"; - }; - } { name = "component_emitter___component_emitter_1.2.1.tgz"; path = fetchurl { @@ -3553,14 +3673,6 @@ sha1 = "137918d6d78283f7df7a6b7c5a63e140e69425e6"; }; } - { - name = "component_inherit___component_inherit_0.0.3.tgz"; - path = fetchurl { - name = "component_inherit___component_inherit_0.0.3.tgz"; - url = "https://registry.yarnpkg.com/component-inherit/-/component-inherit-0.0.3.tgz"; - sha1 = "645fc4adf58b72b649d5cae65135619db26ff143"; - }; - } { name = "compressible___compressible_2.0.17.tgz"; path = fetchurl { @@ -3641,14 +3753,6 @@ sha1 = "8b32089359308d111115d81cad3fceab888f97bc"; }; } - { - name = "connect___connect_3.6.6.tgz"; - path = fetchurl { - name = "connect___connect_3.6.6.tgz"; - url = "https://registry.yarnpkg.com/connect/-/connect-3.6.6.tgz"; - sha1 = "09eff6c55af7236e137135a72574858b6786f524"; - }; - } { name = "consola___consola_2.15.3.tgz"; path = fetchurl { @@ -3721,14 +3825,6 @@ sha1 = "e303a882b342cc3ee8ca513a79999734dab3ae2c"; }; } - { - name = "cookie___cookie_0.3.1.tgz"; - path = fetchurl { - name = "cookie___cookie_0.3.1.tgz"; - url = "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz"; - sha1 = "e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb"; - }; - } { name = "cookie___cookie_0.4.0.tgz"; path = fetchurl { @@ -3786,11 +3882,11 @@ }; } { - name = "core_js___core_js_3.16.2.tgz"; + name = "core_js___core_js_3.17.3.tgz"; path = fetchurl { - name = "core_js___core_js_3.16.2.tgz"; - url = "https://registry.yarnpkg.com/core-js/-/core-js-3.16.2.tgz"; - sha1 = "3f485822889c7fc48ef463e35be5cc2a4a01a1f4"; + name = "core_js___core_js_3.17.3.tgz"; + url = "https://registry.yarnpkg.com/core-js/-/core-js-3.17.3.tgz"; + sha1 = "8e8bd20e91df9951e903cabe91f9af4a0895bc1e"; }; } { @@ -3897,14 +3993,6 @@ sha1 = "ef2a7a966ec11083388369baa02ebead229b30d5"; }; } - { - name = "css_b64_images___css_b64_images_0.2.5.tgz"; - path = fetchurl { - name = "css_b64_images___css_b64_images_0.2.5.tgz"; - url = "https://registry.yarnpkg.com/css-b64-images/-/css-b64-images-0.2.5.tgz"; - sha1 = "42005d83204b2b4a5d93b6b1a5644133b5927a02"; - }; - } { name = "css_color_names___css_color_names_0.0.4.tgz"; path = fetchurl { @@ -4009,14 +4097,6 @@ sha1 = "ff665a0ddbdc31864b09647f34163443d90b0852"; }; } - { - name = "custom_event___custom_event_1.0.1.tgz"; - path = fetchurl { - name = "custom_event___custom_event_1.0.1.tgz"; - url = "https://registry.yarnpkg.com/custom-event/-/custom-event-1.0.1.tgz"; - sha1 = "5d02a46850adf1b4a317946a3928fccb5bfd0425"; - }; - } { name = "custom_jquery_matchers___custom_jquery_matchers_2.1.0.tgz"; path = fetchurl { @@ -4329,14 +4409,6 @@ sha1 = "156485a72963a970f5d5821aaf642bef2bf2db9b"; }; } - { - name = "date_format___date_format_2.1.0.tgz"; - path = fetchurl { - name = "date_format___date_format_2.1.0.tgz"; - url = "https://registry.yarnpkg.com/date-format/-/date-format-2.1.0.tgz"; - sha1 = "31d5b5ea211cf5fd764cd38baf9d033df7e125cf"; - }; - } { name = "date_now___date_now_0.1.4.tgz"; path = fetchurl { @@ -4482,11 +4554,11 @@ }; } { - name = "default_require_extensions___default_require_extensions_2.0.0.tgz"; + name = "defaults___defaults_1.0.3.tgz"; path = fetchurl { - name = "default_require_extensions___default_require_extensions_2.0.0.tgz"; - url = "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-2.0.0.tgz"; - sha1 = "f5f8fbb18a7d6d50b21f641f649ebb522cfe24f7"; + name = "defaults___defaults_1.0.3.tgz"; + url = "https://registry.yarnpkg.com/defaults/-/defaults-1.0.3.tgz"; + sha1 = "c656051e9817d9ff08ed881477f3fe4019f3ef7d"; }; } { @@ -4609,14 +4681,6 @@ sha1 = "014ee8f8f669c5c58023da64b8179c083a28c46c"; }; } - { - name = "di___di_0.0.1.tgz"; - path = fetchurl { - name = "di___di_0.0.1.tgz"; - url = "https://registry.yarnpkg.com/di/-/di-0.0.1.tgz"; - sha1 = "806649326ceaa7caa3306d75d985ea2748ba913c"; - }; - } { name = "diff_sequences___diff_sequences_26.5.0.tgz"; path = fetchurl { @@ -4713,14 +4777,6 @@ sha1 = "5830a0a29e1bf837fe50a70cd80a597232813cae"; }; } - { - name = "dom_serialize___dom_serialize_2.2.1.tgz"; - path = fetchurl { - name = "dom_serialize___dom_serialize_2.2.1.tgz"; - url = "https://registry.yarnpkg.com/dom-serialize/-/dom-serialize-2.2.1.tgz"; - sha1 = "562ae8999f44be5ea3076f5419dcd59eb43ac95b"; - }; - } { name = "dom_serializer___dom_serializer_0.2.2.tgz"; path = fetchurl { @@ -4794,11 +4850,19 @@ }; } { - name = "dompurify___dompurify_2.3.1.tgz"; + name = "dompurify___dompurify_2.3.0.tgz"; path = fetchurl { - name = "dompurify___dompurify_2.3.1.tgz"; - url = "https://registry.yarnpkg.com/dompurify/-/dompurify-2.3.1.tgz"; - sha1 = "a47059ca21fd1212d3c8f71fdea6943b8bfbdf6a"; + name = "dompurify___dompurify_2.3.0.tgz"; + url = "https://registry.yarnpkg.com/dompurify/-/dompurify-2.3.0.tgz"; + sha1 = "07bb39515e491588e5756b1d3e8375b5964814e2"; + }; + } + { + name = "dompurify___dompurify_2.3.2.tgz"; + path = fetchurl { + name = "dompurify___dompurify_2.3.2.tgz"; + url = "https://registry.yarnpkg.com/dompurify/-/dompurify-2.3.2.tgz"; + sha1 = "c773efa410abb5c087c7caf44934fefa448f6e60"; }; } { @@ -4977,30 +5041,6 @@ sha1 = "2f9da98d57a50cfda4571ce4339000500f4e6b8a"; }; } - { - name = "engine.io_client___engine.io_client_3.2.1.tgz"; - path = fetchurl { - name = "engine.io_client___engine.io_client_3.2.1.tgz"; - url = "https://registry.yarnpkg.com/engine.io-client/-/engine.io-client-3.2.1.tgz"; - sha1 = "6f54c0475de487158a1a7c77d10178708b6add36"; - }; - } - { - name = "engine.io_parser___engine.io_parser_2.1.2.tgz"; - path = fetchurl { - name = "engine.io_parser___engine.io_parser_2.1.2.tgz"; - url = "https://registry.yarnpkg.com/engine.io-parser/-/engine.io-parser-2.1.2.tgz"; - sha1 = "4c0f4cff79aaeecbbdcfdea66a823c6085409196"; - }; - } - { - name = "engine.io___engine.io_3.2.0.tgz"; - path = fetchurl { - name = "engine.io___engine.io_3.2.0.tgz"; - url = "https://registry.yarnpkg.com/engine.io/-/engine.io-3.2.0.tgz"; - sha1 = "54332506f42f2edc71690d2f2a42349359f3bf7d"; - }; - } { name = "enhanced_resolve___enhanced_resolve_0.9.1.tgz"; path = fetchurl { @@ -5025,14 +5065,6 @@ sha1 = "2a7fe5dd634a1e4125a975ec994ff5456dc3734d"; }; } - { - name = "ent___ent_2.2.0.tgz"; - path = fetchurl { - name = "ent___ent_2.2.0.tgz"; - url = "https://registry.yarnpkg.com/ent/-/ent-2.2.0.tgz"; - sha1 = "e964219325a21d05f44466a2f686ed6ce5f5dd1d"; - }; - } { name = "entities___entities_1.1.2.tgz"; path = fetchurl { @@ -5049,14 +5081,6 @@ sha1 = "5c487e5742ab93c15abb5da22759b8590ec03b7f"; }; } - { - name = "entity_decode___entity_decode_2.0.2.tgz"; - path = fetchurl { - name = "entity_decode___entity_decode_2.0.2.tgz"; - url = "https://registry.yarnpkg.com/entity-decode/-/entity-decode-2.0.2.tgz"; - sha1 = "e4f807e52c3294246e9347d1f2b02b07fd5f92e7"; - }; - } { name = "errno___errno_0.1.7.tgz"; path = fetchurl { @@ -5137,6 +5161,14 @@ sha1 = "0258eae4d3d0c0974de1c169188ef0051d1d1988"; }; } + { + name = "escape_string_regexp___escape_string_regexp_4.0.0.tgz"; + path = fetchurl { + name = "escape_string_regexp___escape_string_regexp_4.0.0.tgz"; + url = "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz"; + sha1 = "14ba83a5d373e3d311e5afca29cf5bfad965bf34"; + }; + } { name = "escape_string_regexp___escape_string_regexp_1.0.5.tgz"; path = fetchurl { @@ -5153,14 +5185,6 @@ sha1 = "a30304e99daa32e23b2fd20f51babd07cffca344"; }; } - { - name = "escape_string_regexp___escape_string_regexp_4.0.0.tgz"; - path = fetchurl { - name = "escape_string_regexp___escape_string_regexp_4.0.0.tgz"; - url = "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz"; - sha1 = "14ba83a5d373e3d311e5afca29cf5bfad965bf34"; - }; - } { name = "escodegen___escodegen_1.14.3.tgz"; path = fetchurl { @@ -5241,14 +5265,6 @@ sha1 = "0896c7e6a0cf44109a2d97b95903c2bb689d7702"; }; } - { - name = "eslint_plugin_jasmine___eslint_plugin_jasmine_4.1.2.tgz"; - path = fetchurl { - name = "eslint_plugin_jasmine___eslint_plugin_jasmine_4.1.2.tgz"; - url = "https://registry.yarnpkg.com/eslint-plugin-jasmine/-/eslint-plugin-jasmine-4.1.2.tgz"; - sha1 = "50cc20d603b02b37727f8d174d4b83b9b8ef25a5"; - }; - } { name = "eslint_plugin_jest___eslint_plugin_jest_23.8.2.tgz"; path = fetchurl { @@ -5330,11 +5346,11 @@ }; } { - name = "eslint___eslint_7.31.0.tgz"; + name = "eslint___eslint_7.32.0.tgz"; path = fetchurl { - name = "eslint___eslint_7.31.0.tgz"; - url = "https://registry.yarnpkg.com/eslint/-/eslint-7.31.0.tgz"; - sha1 = "f972b539424bf2604907a970860732c5d99d3aca"; + name = "eslint___eslint_7.32.0.tgz"; + url = "https://registry.yarnpkg.com/eslint/-/eslint-7.32.0.tgz"; + sha1 = "c6d328a14be3fb08c8d1d21e12c02fdb7a2a812d"; }; } { @@ -5553,6 +5569,14 @@ sha1 = "f8b1136b4071fbd8eb140aff858b1019ec2915fa"; }; } + { + name = "external_editor___external_editor_3.1.0.tgz"; + path = fetchurl { + name = "external_editor___external_editor_3.1.0.tgz"; + url = "https://registry.yarnpkg.com/external-editor/-/external-editor-3.1.0.tgz"; + sha1 = "cb03f740befae03ea4d283caed2741a83f335495"; + }; + } { name = "extglob___extglob_2.0.4.tgz"; path = fetchurl { @@ -5681,6 +5705,14 @@ sha1 = "862470112901c727a0e495a80744bd5baa1d6790"; }; } + { + name = "figures___figures_3.2.0.tgz"; + path = fetchurl { + name = "figures___figures_3.2.0.tgz"; + url = "https://registry.yarnpkg.com/figures/-/figures-3.2.0.tgz"; + sha1 = "625c18bd293c604dc4a8ddb2febf0c88341746af"; + }; + } { name = "file_entry_cache___file_entry_cache_6.0.1.tgz"; path = fetchurl { @@ -5697,14 +5729,6 @@ sha1 = "baef7cf8e1840df325e4390b4484879480eebe4d"; }; } - { - name = "fileset___fileset_2.0.3.tgz"; - path = fetchurl { - name = "fileset___fileset_2.0.3.tgz"; - url = "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz"; - sha1 = "8e7548a96d3cc2327ee5e674168723a333bba2a0"; - }; - } { name = "fill_range___fill_range_4.0.0.tgz"; path = fetchurl { @@ -5721,14 +5745,6 @@ sha1 = "1919a6a7c75fe38b2c7c77e5198535da9acdda40"; }; } - { - name = "finalhandler___finalhandler_1.1.0.tgz"; - path = fetchurl { - name = "finalhandler___finalhandler_1.1.0.tgz"; - url = "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.0.tgz"; - sha1 = "ce0b6855b45853e791b2fcc680046d88253dd7f5"; - }; - } { name = "finalhandler___finalhandler_1.1.2.tgz"; path = fetchurl { @@ -5801,14 +5817,6 @@ sha1 = "61b0338302b2fe9f957dcc32fc2a87f1c3048b11"; }; } - { - name = "flatted___flatted_2.0.0.tgz"; - path = fetchurl { - name = "flatted___flatted_2.0.0.tgz"; - url = "https://registry.yarnpkg.com/flatted/-/flatted-2.0.0.tgz"; - sha1 = "55122b6536ea496b4b44893ee2608141d10d9916"; - }; - } { name = "flatted___flatted_3.1.1.tgz"; path = fetchurl { @@ -5817,6 +5825,14 @@ sha1 = "c4b489e80096d9df1dfc97c79871aea7c617c469"; }; } + { + name = "flow_parser___flow_parser_0.157.0.tgz"; + path = fetchurl { + name = "flow_parser___flow_parser_0.157.0.tgz"; + url = "https://registry.yarnpkg.com/flow-parser/-/flow-parser-0.157.0.tgz"; + sha1 = "8ef0a748a838a505820a3099690472757d39581c"; + }; + } { name = "flush_write_stream___flush_write_stream_1.1.1.tgz"; path = fetchurl { @@ -5898,11 +5914,11 @@ }; } { - name = "fs_extra___fs_extra_7.0.1.tgz"; + name = "fs_extra___fs_extra_8.1.0.tgz"; path = fetchurl { - name = "fs_extra___fs_extra_7.0.1.tgz"; - url = "https://registry.yarnpkg.com/fs-extra/-/fs-extra-7.0.1.tgz"; - sha1 = "4f189c44aa123b895f722804f55ea23eadc348e9"; + name = "fs_extra___fs_extra_8.1.0.tgz"; + url = "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz"; + sha1 = "49d43c45a88cd9677668cb7be1b46efdb8d2e1c0"; }; } { @@ -5962,11 +5978,11 @@ }; } { - name = "gensync___gensync_1.0.0_beta.1.tgz"; + name = "gensync___gensync_1.0.0_beta.2.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"; }; } { @@ -6146,11 +6162,11 @@ }; } { - name = "globby___globby_11.0.3.tgz"; + name = "globby___globby_11.0.4.tgz"; path = fetchurl { - name = "globby___globby_11.0.3.tgz"; - url = "https://registry.yarnpkg.com/globby/-/globby-11.0.3.tgz"; - sha1 = "9b1f0cb523e171dd1ad8c7b2a9fb4b644b9593cb"; + name = "globby___globby_11.0.4.tgz"; + url = "https://registry.yarnpkg.com/globby/-/globby-11.0.4.tgz"; + sha1 = "2cbaff77c2f2a62e71e9b2813a67b97a3a3001a5"; }; } { @@ -6194,11 +6210,11 @@ }; } { - name = "graceful_fs___graceful_fs_4.2.4.tgz"; + name = "graceful_fs___graceful_fs_4.2.8.tgz"; path = fetchurl { - name = "graceful_fs___graceful_fs_4.2.4.tgz"; - url = "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.4.tgz"; - sha1 = "2256bde14d3632958c465ebc96dc467ca07a29fb"; + name = "graceful_fs___graceful_fs_4.2.8.tgz"; + url = "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.8.tgz"; + sha1 = "e412b8d33f5e006593cbd3cee6df9f2cebbe802a"; }; } { @@ -6249,14 +6265,6 @@ sha1 = "0e039695ff50c93fc288557d696f3c1dc6776754"; }; } - { - name = "handlebars___handlebars_4.7.2.tgz"; - path = fetchurl { - name = "handlebars___handlebars_4.7.2.tgz"; - url = "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.2.tgz"; - sha1 = "01127b3840156a0927058779482031afe0e730d7"; - }; - } { name = "har_schema___har_schema_2.0.0.tgz"; path = fetchurl { @@ -6281,22 +6289,6 @@ sha1 = "1c6eda5c1685c63942766d79bb40ae773cecd883"; }; } - { - name = "has_binary2___has_binary2_1.0.2.tgz"; - path = fetchurl { - name = "has_binary2___has_binary2_1.0.2.tgz"; - url = "https://registry.yarnpkg.com/has-binary2/-/has-binary2-1.0.2.tgz"; - sha1 = "e83dba49f0b9be4d026d27365350d9f03f54be98"; - }; - } - { - name = "has_cors___has_cors_1.1.0.tgz"; - path = fetchurl { - name = "has_cors___has_cors_1.1.0.tgz"; - url = "https://registry.yarnpkg.com/has-cors/-/has-cors-1.1.0.tgz"; - sha1 = "5e474793f7ea9843d1bb99c23eef49ff126fff39"; - }; - } { name = "has_flag___has_flag_3.0.0.tgz"; path = fetchurl { @@ -6481,14 +6473,6 @@ sha1 = "71e87f931de3fe09e56661ab9a29aadec707b491"; }; } - { - name = "html_minifier___html_minifier_4.0.0.tgz"; - path = fetchurl { - name = "html_minifier___html_minifier_4.0.0.tgz"; - url = "https://registry.yarnpkg.com/html-minifier/-/html-minifier-4.0.0.tgz"; - sha1 = "cca9aad8bce1175e02e17a8c33e46d8988889f56"; - }; - } { name = "html_tags___html_tags_3.1.0.tgz"; path = fetchurl { @@ -6753,14 +6737,6 @@ sha1 = "f30f716c8e2bd346c7b67d3df3915566a7c05607"; }; } - { - name = "indexof___indexof_0.0.1.tgz"; - path = fetchurl { - name = "indexof___indexof_0.0.1.tgz"; - url = "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz"; - sha1 = "82dc336d232b9062179d05ab3293a66059fd435d"; - }; - } { name = "infer_owner___infer_owner_1.0.4.tgz"; path = fetchurl { @@ -6817,6 +6793,22 @@ sha1 = "a29da425b48806f34767a4efce397269af28432c"; }; } + { + name = "inquirer_glob_prompt___inquirer_glob_prompt_0.1.0.tgz"; + path = fetchurl { + name = "inquirer_glob_prompt___inquirer_glob_prompt_0.1.0.tgz"; + url = "https://registry.yarnpkg.com/inquirer-glob-prompt/-/inquirer-glob-prompt-0.1.0.tgz"; + sha1 = "3676bc10bcdd31e17121146be9c6467a2d79fc85"; + }; + } + { + name = "inquirer___inquirer_8.1.2.tgz"; + path = fetchurl { + name = "inquirer___inquirer_8.1.2.tgz"; + url = "https://registry.yarnpkg.com/inquirer/-/inquirer-8.1.2.tgz"; + sha1 = "65b204d2cd7fb63400edd925dfe428bafd422e3d"; + }; + } { name = "internal_ip___internal_ip_4.3.0.tgz"; path = fetchurl { @@ -7097,6 +7089,14 @@ sha1 = "fd3efa79ee670d1187233182d5b0a1dd00313141"; }; } + { + name = "is_interactive___is_interactive_1.0.0.tgz"; + path = fetchurl { + name = "is_interactive___is_interactive_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/is-interactive/-/is-interactive-1.0.0.tgz"; + sha1 = "cea6e6ae5c870a7b0a0004070b7b587e0252912e"; + }; + } { name = "is_negative_zero___is_negative_zero_2.0.1.tgz"; path = fetchurl { @@ -7257,6 +7257,14 @@ sha1 = "e479c80858df0c1b11ddda6940f96011fcda4a9a"; }; } + { + name = "is_unicode_supported___is_unicode_supported_0.1.0.tgz"; + path = fetchurl { + name = "is_unicode_supported___is_unicode_supported_0.1.0.tgz"; + url = "https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz"; + sha1 = "3f26c76a809593b52bfa2ecb5710ed2779b522a7"; + }; + } { name = "is_whitespace___is_whitespace_0.3.0.tgz"; path = fetchurl { @@ -7305,22 +7313,6 @@ sha1 = "bb935d48582cba168c06834957a54a3e07124f11"; }; } - { - name = "isarray___isarray_2.0.1.tgz"; - path = fetchurl { - name = "isarray___isarray_2.0.1.tgz"; - url = "https://registry.yarnpkg.com/isarray/-/isarray-2.0.1.tgz"; - sha1 = "a37d94ed9cda2d59865c9f76fe596ee1f338741e"; - }; - } - { - name = "isbinaryfile___isbinaryfile_3.0.2.tgz"; - path = fetchurl { - name = "isbinaryfile___isbinaryfile_3.0.2.tgz"; - url = "https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-3.0.2.tgz"; - sha1 = "4a3e974ec0cba9004d3fc6cde7209ea69368a621"; - }; - } { name = "isexe___isexe_2.0.0.tgz"; path = fetchurl { @@ -7353,22 +7345,6 @@ sha1 = "47e63f7af55afa6f92e1500e690eb8b8529c099a"; }; } - { - name = "istanbul_api___istanbul_api_2.1.6.tgz"; - path = fetchurl { - name = "istanbul_api___istanbul_api_2.1.6.tgz"; - url = "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-2.1.6.tgz"; - sha1 = "d61702a9d1c66ad89d92e66d401e16b0bda4a35f"; - }; - } - { - name = "istanbul_lib_coverage___istanbul_lib_coverage_2.0.5.tgz"; - path = fetchurl { - name = "istanbul_lib_coverage___istanbul_lib_coverage_2.0.5.tgz"; - url = "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.5.tgz"; - sha1 = "675f0ab69503fad4b1d849f736baaca803344f49"; - }; - } { name = "istanbul_lib_coverage___istanbul_lib_coverage_3.0.0.tgz"; path = fetchurl { @@ -7377,22 +7353,6 @@ sha1 = "f5944a37c70b550b02a78a5c3b2055b280cec8ec"; }; } - { - name = "istanbul_lib_hook___istanbul_lib_hook_2.0.7.tgz"; - path = fetchurl { - name = "istanbul_lib_hook___istanbul_lib_hook_2.0.7.tgz"; - url = "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-2.0.7.tgz"; - sha1 = "c95695f383d4f8f60df1f04252a9550e15b5b133"; - }; - } - { - name = "istanbul_lib_instrument___istanbul_lib_instrument_3.3.0.tgz"; - path = fetchurl { - name = "istanbul_lib_instrument___istanbul_lib_instrument_3.3.0.tgz"; - url = "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-3.3.0.tgz"; - sha1 = "a5f63d91f0bbc0c3e479ef4c5de027335ec6d630"; - }; - } { name = "istanbul_lib_instrument___istanbul_lib_instrument_4.0.3.tgz"; path = fetchurl { @@ -7401,14 +7361,6 @@ sha1 = "873c6fff897450118222774696a3f28902d77c1d"; }; } - { - name = "istanbul_lib_report___istanbul_lib_report_2.0.8.tgz"; - path = fetchurl { - name = "istanbul_lib_report___istanbul_lib_report_2.0.8.tgz"; - url = "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-2.0.8.tgz"; - sha1 = "5a8113cd746d43c4889eba36ab10e7d50c9b4f33"; - }; - } { name = "istanbul_lib_report___istanbul_lib_report_3.0.0.tgz"; path = fetchurl { @@ -7417,14 +7369,6 @@ sha1 = "7518fe52ea44de372f460a76b5ecda9ffb73d8a6"; }; } - { - name = "istanbul_lib_source_maps___istanbul_lib_source_maps_3.0.6.tgz"; - path = fetchurl { - name = "istanbul_lib_source_maps___istanbul_lib_source_maps_3.0.6.tgz"; - url = "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-3.0.6.tgz"; - sha1 = "284997c48211752ec486253da97e3879defba8c8"; - }; - } { name = "istanbul_lib_source_maps___istanbul_lib_source_maps_4.0.0.tgz"; path = fetchurl { @@ -7433,14 +7377,6 @@ sha1 = "75743ce6d96bb86dc7ee4352cf6366a23f0b1ad9"; }; } - { - name = "istanbul_reports___istanbul_reports_2.2.6.tgz"; - path = fetchurl { - name = "istanbul_reports___istanbul_reports_2.2.6.tgz"; - url = "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-2.2.6.tgz"; - sha1 = "7b4f2660d82b29303a8fe6091f8ca4bf058da1af"; - }; - } { name = "istanbul_reports___istanbul_reports_3.0.2.tgz"; path = fetchurl { @@ -7457,30 +7393,6 @@ sha1 = "a5231a08ef6dd22b268d0895084cf8d58b5bec53"; }; } - { - name = "jasmine_core___jasmine_core_2.9.0.tgz"; - path = fetchurl { - name = "jasmine_core___jasmine_core_2.9.0.tgz"; - url = "https://registry.yarnpkg.com/jasmine-core/-/jasmine-core-2.9.0.tgz"; - sha1 = "bfbb56defcd30789adec5a3fbba8504233289c72"; - }; - } - { - name = "jasmine_diff___jasmine_diff_0.1.3.tgz"; - path = fetchurl { - name = "jasmine_diff___jasmine_diff_0.1.3.tgz"; - url = "https://registry.yarnpkg.com/jasmine-diff/-/jasmine-diff-0.1.3.tgz"; - sha1 = "93ccc2dcc41028c5ddd4606558074839f2deeaa8"; - }; - } - { - name = "jasmine_jquery___jasmine_jquery_2.1.1.tgz"; - path = fetchurl { - name = "jasmine_jquery___jasmine_jquery_2.1.1.tgz"; - url = "https://registry.yarnpkg.com/jasmine-jquery/-/jasmine-jquery-2.1.1.tgz"; - sha1 = "d4095e646944a26763235769ab018d9f30f0d47b"; - }; - } { name = "jed___jed_1.1.1.tgz"; path = fetchurl { @@ -7761,14 +7673,6 @@ sha1 = "9c093318faf327eff322e826ca9f3241368bc7b8"; }; } - { - name = "jquery.waitforimages___jquery.waitforimages_2.2.0.tgz"; - path = fetchurl { - name = "jquery.waitforimages___jquery.waitforimages_2.2.0.tgz"; - url = "https://registry.yarnpkg.com/jquery.waitforimages/-/jquery.waitforimages-2.2.0.tgz"; - sha1 = "63f23131055a1b060dc913e6d874bcc9b9e6b16b"; - }; - } { name = "jquery___jquery_3.6.0.tgz"; path = fetchurl { @@ -7825,6 +7729,14 @@ sha1 = "a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"; }; } + { + name = "jscodeshift___jscodeshift_0.11.0.tgz"; + path = fetchurl { + name = "jscodeshift___jscodeshift_0.11.0.tgz"; + url = "https://registry.yarnpkg.com/jscodeshift/-/jscodeshift-0.11.0.tgz"; + sha1 = "4f95039408f3f06b0e39bb4d53bc3139f5330e2f"; + }; + } { name = "jsdoc_vue___jsdoc_vue_1.0.0.tgz"; path = fetchurl { @@ -8001,70 +7913,6 @@ sha1 = "8a920403b2b1651c0fc126be90192d9080957c37"; }; } - { - name = "karma_chrome_launcher___karma_chrome_launcher_3.0.0.tgz"; - path = fetchurl { - name = "karma_chrome_launcher___karma_chrome_launcher_3.0.0.tgz"; - url = "https://registry.yarnpkg.com/karma-chrome-launcher/-/karma-chrome-launcher-3.0.0.tgz"; - sha1 = "5c3a7f877a304e90781c28fcd9a49e334a890f42"; - }; - } - { - name = "karma_coverage_istanbul_reporter___karma_coverage_istanbul_reporter_2.1.0.tgz"; - path = fetchurl { - name = "karma_coverage_istanbul_reporter___karma_coverage_istanbul_reporter_2.1.0.tgz"; - url = "https://registry.yarnpkg.com/karma-coverage-istanbul-reporter/-/karma-coverage-istanbul-reporter-2.1.0.tgz"; - sha1 = "5f1bcc13c5e14ee1d91821ee8946861674f54c75"; - }; - } - { - name = "karma_jasmine___karma_jasmine_1.1.2.tgz"; - path = fetchurl { - name = "karma_jasmine___karma_jasmine_1.1.2.tgz"; - url = "https://registry.yarnpkg.com/karma-jasmine/-/karma-jasmine-1.1.2.tgz"; - sha1 = "394f2b25ffb4a644b9ada6f22d443e2fd08886c3"; - }; - } - { - name = "karma_junit_reporter___karma_junit_reporter_1.2.0.tgz"; - path = fetchurl { - name = "karma_junit_reporter___karma_junit_reporter_1.2.0.tgz"; - url = "https://registry.yarnpkg.com/karma-junit-reporter/-/karma-junit-reporter-1.2.0.tgz"; - sha1 = "4f9c40cedfb1a395f8aef876abf96189917c6396"; - }; - } - { - name = "karma_mocha_reporter___karma_mocha_reporter_2.2.5.tgz"; - path = fetchurl { - name = "karma_mocha_reporter___karma_mocha_reporter_2.2.5.tgz"; - url = "https://registry.yarnpkg.com/karma-mocha-reporter/-/karma-mocha-reporter-2.2.5.tgz"; - sha1 = "15120095e8ed819186e47a0b012f3cd741895560"; - }; - } - { - name = "karma_sourcemap_loader___karma_sourcemap_loader_0.3.7.tgz"; - path = fetchurl { - name = "karma_sourcemap_loader___karma_sourcemap_loader_0.3.7.tgz"; - url = "https://registry.yarnpkg.com/karma-sourcemap-loader/-/karma-sourcemap-loader-0.3.7.tgz"; - sha1 = "91322c77f8f13d46fed062b042e1009d4c4505d8"; - }; - } - { - name = "karma_webpack___karma_webpack_4.0.2.tgz"; - path = fetchurl { - name = "karma_webpack___karma_webpack_4.0.2.tgz"; - url = "https://registry.yarnpkg.com/karma-webpack/-/karma-webpack-4.0.2.tgz"; - sha1 = "23219bd95bdda853e3073d3874d34447c77bced0"; - }; - } - { - name = "karma___karma_4.2.0.tgz"; - path = fetchurl { - name = "karma___karma_4.2.0.tgz"; - url = "https://registry.yarnpkg.com/karma/-/karma-4.2.0.tgz"; - sha1 = "27e88b310cde090d016980ff5444e3a239196fca"; - }; - } { name = "katex___katex_0.13.2.tgz"; path = fetchurl { @@ -8082,11 +7930,11 @@ }; } { - name = "khroma___khroma_1.2.0.tgz"; + name = "khroma___khroma_1.4.1.tgz"; path = fetchurl { - name = "khroma___khroma_1.2.0.tgz"; - url = "https://registry.yarnpkg.com/khroma/-/khroma-1.2.0.tgz"; - sha1 = "46dcc9d7533923c228b51724db108f11fec108d8"; + name = "khroma___khroma_1.4.1.tgz"; + url = "https://registry.yarnpkg.com/khroma/-/khroma-1.4.1.tgz"; + sha1 = "ad6a5b6a972befc5112ce5129887a1a83af2c003"; }; } { @@ -8210,11 +8058,11 @@ }; } { - name = "linkify_it___linkify_it_2.1.0.tgz"; + name = "linkify_it___linkify_it_2.2.0.tgz"; path = fetchurl { - name = "linkify_it___linkify_it_2.1.0.tgz"; - url = "https://registry.yarnpkg.com/linkify-it/-/linkify-it-2.1.0.tgz"; - sha1 = "c4caf38a6cd7ac2212ef3c7d2bde30a91561f9db"; + name = "linkify_it___linkify_it_2.2.0.tgz"; + url = "https://registry.yarnpkg.com/linkify-it/-/linkify-it-2.2.0.tgz"; + sha1 = "e3b54697e78bf915c70a38acd78fd09e0058b1cf"; }; } { @@ -8281,6 +8129,14 @@ sha1 = "1afba396afd676a6d42504d0a67a3a7eb9f62aa0"; }; } + { + name = "lodash._reinterpolate___lodash._reinterpolate_3.0.0.tgz"; + path = fetchurl { + name = "lodash._reinterpolate___lodash._reinterpolate_3.0.0.tgz"; + url = "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz"; + sha1 = "0ccf2d89166af03b3663c796538b75ac6e114d9d"; + }; + } { name = "lodash.assign___lodash.assign_4.2.0.tgz"; path = fetchurl { @@ -8473,6 +8329,22 @@ sha1 = "edd14c824e2cc9c1e0b0a1b42bb5210516a42438"; }; } + { + name = "lodash.template___lodash.template_4.5.0.tgz"; + path = fetchurl { + name = "lodash.template___lodash.template_4.5.0.tgz"; + url = "https://registry.yarnpkg.com/lodash.template/-/lodash.template-4.5.0.tgz"; + sha1 = "f976195cf3f347d0d5f52483569fe8031ccce8ab"; + }; + } + { + name = "lodash.templatesettings___lodash.templatesettings_4.2.0.tgz"; + path = fetchurl { + name = "lodash.templatesettings___lodash.templatesettings_4.2.0.tgz"; + url = "https://registry.yarnpkg.com/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz"; + sha1 = "e481310f049d3cf6d47e912ad09313b154f0fb33"; + }; + } { name = "lodash.truncate___lodash.truncate_4.4.2.tgz"; path = fetchurl { @@ -8522,27 +8394,11 @@ }; } { - name = "log_symbols___log_symbols_2.2.0.tgz"; + name = "log_symbols___log_symbols_4.1.0.tgz"; path = fetchurl { - name = "log_symbols___log_symbols_2.2.0.tgz"; - url = "https://registry.yarnpkg.com/log-symbols/-/log-symbols-2.2.0.tgz"; - sha1 = "5740e1c5d6f0dfda4ad9323b5332107ef6b4c40a"; - }; - } - { - name = "log_symbols___log_symbols_4.0.0.tgz"; - path = fetchurl { - name = "log_symbols___log_symbols_4.0.0.tgz"; - url = "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.0.0.tgz"; - sha1 = "69b3cc46d20f448eccdb75ea1fa733d9e821c920"; - }; - } - { - name = "log4js___log4js_4.5.1.tgz"; - path = fetchurl { - name = "log4js___log4js_4.5.1.tgz"; - url = "https://registry.yarnpkg.com/log4js/-/log4js-4.5.1.tgz"; - sha1 = "e543625e97d9e6f3e6e7c9fc196dd6ab2cae30b5"; + name = "log_symbols___log_symbols_4.1.0.tgz"; + url = "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.1.0.tgz"; + sha1 = "3fbdbb95b4683ac9fc785111e792e558d4abd503"; }; } { @@ -8569,14 +8425,6 @@ sha1 = "71ee51fa7be4caec1a63839f7e682d8132d30caf"; }; } - { - name = "lower_case___lower_case_1.1.4.tgz"; - path = fetchurl { - name = "lower_case___lower_case_1.1.4.tgz"; - url = "https://registry.yarnpkg.com/lower-case/-/lower-case-1.1.4.tgz"; - sha1 = "9a2cabd1b9e8e0ae993a4bf7d5875c39c42e8eac"; - }; - } { name = "lowercase_keys___lowercase_keys_1.0.1.tgz"; path = fetchurl { @@ -8874,11 +8722,11 @@ }; } { - name = "mermaid___mermaid_8.10.2.tgz"; + name = "mermaid___mermaid_8.11.5.tgz"; path = fetchurl { - name = "mermaid___mermaid_8.10.2.tgz"; - url = "https://registry.yarnpkg.com/mermaid/-/mermaid-8.10.2.tgz"; - sha1 = "e039df2e42faba08743f167fff85bdccff241f76"; + name = "mermaid___mermaid_8.11.5.tgz"; + url = "https://registry.yarnpkg.com/mermaid/-/mermaid-8.11.5.tgz"; + sha1 = "a2a284d705abf145e0d0f27e8b913d6e11bbb92c"; }; } { @@ -8985,14 +8833,6 @@ sha1 = "a63f681673b30571fbe8bc25686ae746eefa9869"; }; } - { - name = "minify___minify_4.1.2.tgz"; - path = fetchurl { - name = "minify___minify_4.1.2.tgz"; - url = "https://registry.yarnpkg.com/minify/-/minify-4.1.2.tgz"; - sha1 = "88755f4faa5f7ab6d0c64fdd659aa34ea658f180"; - }; - } { name = "minimalistic_assert___minimalistic_assert_1.0.1.tgz"; path = fetchurl { @@ -9033,14 +8873,6 @@ sha1 = "67d66014b66a6a8aaa0c083c5fd58df4e4e97602"; }; } - { - name = "minimist___minimist_0.0.8.tgz"; - path = fetchurl { - name = "minimist___minimist_0.0.8.tgz"; - url = "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz"; - sha1 = "857fcabfc3397d2625b8228262e86aa7a011b05d"; - }; - } { name = "minipass_collect___minipass_collect_1.0.2.tgz"; path = fetchurl { @@ -9130,11 +8962,11 @@ }; } { - name = "moment_mini___moment_mini_2.22.1.tgz"; + name = "moment_mini___moment_mini_2.24.0.tgz"; path = fetchurl { - name = "moment_mini___moment_mini_2.22.1.tgz"; - url = "https://registry.yarnpkg.com/moment-mini/-/moment-mini-2.22.1.tgz"; - sha1 = "bc32d73e43a4505070be6b53494b17623183420d"; + name = "moment_mini___moment_mini_2.24.0.tgz"; + url = "https://registry.yarnpkg.com/moment-mini/-/moment-mini-2.24.0.tgz"; + sha1 = "fa68d98f7fe93ae65bf1262f6abb5fb6983d8d18"; }; } { @@ -9217,6 +9049,14 @@ sha1 = "6e7de86a570872ab17058adea7160bbeca814dde"; }; } + { + name = "mute_stream___mute_stream_0.0.8.tgz"; + path = fetchurl { + name = "mute_stream___mute_stream_0.0.8.tgz"; + url = "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.8.tgz"; + sha1 = "1630c42b2251ff81e2a283de96a5497ea92e5e0d"; + }; + } { name = "nanoid___nanoid_3.1.23.tgz"; path = fetchurl { @@ -9266,11 +9106,11 @@ }; } { - name = "no_case___no_case_2.3.2.tgz"; + name = "node_dir___node_dir_0.1.17.tgz"; path = fetchurl { - name = "no_case___no_case_2.3.2.tgz"; - url = "https://registry.yarnpkg.com/no-case/-/no-case-2.3.2.tgz"; - sha1 = "60b813396be39b3f1288a4c1ed5d1e7d28b464ac"; + name = "node_dir___node_dir_0.1.17.tgz"; + url = "https://registry.yarnpkg.com/node-dir/-/node-dir-0.1.17.tgz"; + sha1 = "5f5665d93351335caabef8f1c554516cf5f1e4e5"; }; } { @@ -9473,14 +9313,6 @@ sha1 = "2109adc7965887cfc05cbbd442cac8bfbb360863"; }; } - { - name = "object_component___object_component_0.0.3.tgz"; - path = fetchurl { - name = "object_component___object_component_0.0.3.tgz"; - url = "https://registry.yarnpkg.com/object-component/-/object-component-0.0.3.tgz"; - sha1 = "f0c69aa50efc95b866c186f400a33769cb2f1291"; - }; - } { name = "object_copy___object_copy_0.1.0.tgz"; path = fetchurl { @@ -9609,14 +9441,6 @@ sha1 = "163268fdc741dea2fb50f300bedda80356445fd7"; }; } - { - name = "optimist___optimist_0.6.1.tgz"; - path = fetchurl { - name = "optimist___optimist_0.6.1.tgz"; - url = "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz"; - sha1 = "da3ea74686fa21a19a111c326e90eb15a0196686"; - }; - } { name = "optionator___optionator_0.8.3.tgz"; path = fetchurl { @@ -9633,6 +9457,14 @@ sha1 = "4f236a6373dae0566a6d43e1326674f50c291499"; }; } + { + name = "ora___ora_5.4.1.tgz"; + path = fetchurl { + name = "ora___ora_5.4.1.tgz"; + url = "https://registry.yarnpkg.com/ora/-/ora-5.4.1.tgz"; + sha1 = "1b2678426af4ac4a509008e5e4ac9e9959db9e18"; + }; + } { name = "orderedmap___orderedmap_1.1.1.tgz"; path = fetchurl { @@ -9825,14 +9657,6 @@ sha1 = "d410f065b05da23081fcd10f28854c29bda33b06"; }; } - { - name = "param_case___param_case_2.1.1.tgz"; - path = fetchurl { - name = "param_case___param_case_2.1.1.tgz"; - url = "https://registry.yarnpkg.com/param-case/-/param-case-2.1.1.tgz"; - sha1 = "df94fd8cf6531ecf75e6bef9a0858fbc72be2247"; - }; - } { name = "parent_module___parent_module_1.0.1.tgz"; path = fetchurl { @@ -9913,22 +9737,6 @@ sha1 = "f68e4e5ba1852ac2cadc00f4555fff6c2abb6178"; }; } - { - name = "parseqs___parseqs_0.0.5.tgz"; - path = fetchurl { - name = "parseqs___parseqs_0.0.5.tgz"; - url = "https://registry.yarnpkg.com/parseqs/-/parseqs-0.0.5.tgz"; - sha1 = "d5208a3738e46766e291ba2ea173684921a8b89d"; - }; - } - { - name = "parseuri___parseuri_0.0.5.tgz"; - path = fetchurl { - name = "parseuri___parseuri_0.0.5.tgz"; - url = "https://registry.yarnpkg.com/parseuri/-/parseuri-0.0.5.tgz"; - sha1 = "80204a50d4dbb779bfdc6ebe2778d90e4bce320a"; - }; - } { name = "parseurl___parseurl_1.3.3.tgz"; path = fetchurl { @@ -10482,11 +10290,11 @@ }; } { - name = "prosemirror_history___prosemirror_history_1.1.3.tgz"; + name = "prosemirror_history___prosemirror_history_1.2.0.tgz"; path = fetchurl { - name = "prosemirror_history___prosemirror_history_1.1.3.tgz"; - url = "https://registry.yarnpkg.com/prosemirror-history/-/prosemirror-history-1.1.3.tgz"; - sha1 = "4f76a1e71db4ef7cdf0e13dec6d8da2aeaecd489"; + name = "prosemirror_history___prosemirror_history_1.2.0.tgz"; + url = "https://registry.yarnpkg.com/prosemirror-history/-/prosemirror-history-1.2.0.tgz"; + sha1 = "04cc4df8d2f7b2a46651a2780de191ada6d465ea"; }; } { @@ -10506,19 +10314,19 @@ }; } { - name = "prosemirror_markdown___prosemirror_markdown_1.5.1.tgz"; + name = "prosemirror_markdown___prosemirror_markdown_1.5.2.tgz"; path = fetchurl { - name = "prosemirror_markdown___prosemirror_markdown_1.5.1.tgz"; - url = "https://registry.yarnpkg.com/prosemirror-markdown/-/prosemirror-markdown-1.5.1.tgz"; - sha1 = "877c7faea2225d3c52e988599bbe4457bcb3190f"; + name = "prosemirror_markdown___prosemirror_markdown_1.5.2.tgz"; + url = "https://registry.yarnpkg.com/prosemirror-markdown/-/prosemirror-markdown-1.5.2.tgz"; + sha1 = "f188ad14caa8c2f499b4d3eb6082e19f1d9d366e"; }; } { - name = "prosemirror_model___prosemirror_model_1.14.2.tgz"; + name = "prosemirror_model___prosemirror_model_1.14.3.tgz"; path = fetchurl { - name = "prosemirror_model___prosemirror_model_1.14.2.tgz"; - url = "https://registry.yarnpkg.com/prosemirror-model/-/prosemirror-model-1.14.2.tgz"; - sha1 = "4e8c39cfff4e097631af4495e125d9a8a9773116"; + name = "prosemirror_model___prosemirror_model_1.14.3.tgz"; + url = "https://registry.yarnpkg.com/prosemirror-model/-/prosemirror-model-1.14.3.tgz"; + sha1 = "a9c250d3c4023ddf10ecb41a0a7a130e9741d37e"; }; } { @@ -10570,11 +10378,11 @@ }; } { - name = "prosemirror_view___prosemirror_view_1.18.9.tgz"; + name = "prosemirror_view___prosemirror_view_1.20.0.tgz"; path = fetchurl { - name = "prosemirror_view___prosemirror_view_1.18.9.tgz"; - url = "https://registry.yarnpkg.com/prosemirror-view/-/prosemirror-view-1.18.9.tgz"; - sha1 = "29bc11759438aecc5b7fadaa8520165c84c2144a"; + name = "prosemirror_view___prosemirror_view_1.20.0.tgz"; + url = "https://registry.yarnpkg.com/prosemirror-view/-/prosemirror-view-1.20.0.tgz"; + sha1 = "64198845f0d112c14a5594732c46a96ac3d9d828"; }; } { @@ -10697,14 +10505,6 @@ sha1 = "8147b429f9c09db719e05d64908ea8b672913742"; }; } - { - name = "qjobs___qjobs_1.2.0.tgz"; - path = fetchurl { - name = "qjobs___qjobs_1.2.0.tgz"; - url = "https://registry.yarnpkg.com/qjobs/-/qjobs-1.2.0.tgz"; - sha1 = "c45e9c61800bd087ef88d7e256423bdd49e5d071"; - }; - } { name = "qs___qs_6.7.0.tgz"; path = fetchurl { @@ -10889,6 +10689,14 @@ sha1 = "9fdccdf9e9155805449221ac645e8303ab5b9ada"; }; } + { + name = "recast___recast_0.20.5.tgz"; + path = fetchurl { + name = "recast___recast_0.20.5.tgz"; + url = "https://registry.yarnpkg.com/recast/-/recast-0.20.5.tgz"; + sha1 = "8e2c6c96827a1b339c634dd232957d230553ceae"; + }; + } { name = "redent___redent_3.0.0.tgz"; path = fetchurl { @@ -10985,14 +10793,6 @@ sha1 = "a769f8684308401a66e9b529d2436ff4d0666272"; }; } - { - name = "relateurl___relateurl_0.2.7.tgz"; - path = fetchurl { - name = "relateurl___relateurl_0.2.7.tgz"; - url = "https://registry.yarnpkg.com/relateurl/-/relateurl-0.2.7.tgz"; - sha1 = "54dbf377e51440aca90a4cd274600d3ff2d888a9"; - }; - } { name = "remark_parse___remark_parse_9.0.0.tgz"; path = fetchurl { @@ -11193,6 +10993,14 @@ sha1 = "918720ef3b631c5642be068f15ade5a46f4ba1e7"; }; } + { + name = "restore_cursor___restore_cursor_3.1.0.tgz"; + path = fetchurl { + name = "restore_cursor___restore_cursor_3.1.0.tgz"; + url = "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz"; + sha1 = "39f67c54b3a7a58cea5236d95cf0034239631f7e"; + }; + } { name = "ret___ret_0.1.15.tgz"; path = fetchurl { @@ -11217,14 +11025,6 @@ sha1 = "90da382b1e126efc02146e90845a88db12925d76"; }; } - { - name = "rfdc___rfdc_1.1.4.tgz"; - path = fetchurl { - name = "rfdc___rfdc_1.1.4.tgz"; - url = "https://registry.yarnpkg.com/rfdc/-/rfdc-1.1.4.tgz"; - sha1 = "ba72cc1367a0ccd9cf81a870b3b58bd3ad07f8c2"; - }; - } { name = "rimraf___rimraf_2.6.3.tgz"; path = fetchurl { @@ -11273,6 +11073,14 @@ sha1 = "b50e6b34583f3dd89329a2f23a8a2be072845911"; }; } + { + name = "run_async___run_async_2.4.1.tgz"; + path = fetchurl { + name = "run_async___run_async_2.4.1.tgz"; + url = "https://registry.yarnpkg.com/run-async/-/run-async-2.4.1.tgz"; + sha1 = "8440eccf99ea3e70bd409d49aab88e10c189a455"; + }; + } { name = "run_parallel___run_parallel_1.1.10.tgz"; path = fetchurl { @@ -11297,6 +11105,22 @@ sha1 = "3f862dfa91ab766b14885ef4d01124bfda074fb4"; }; } + { + name = "rxjs___rxjs_6.6.7.tgz"; + path = fetchurl { + name = "rxjs___rxjs_6.6.7.tgz"; + url = "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.7.tgz"; + sha1 = "90ac018acabf491bf65044235d5863c4dab804c9"; + }; + } + { + name = "rxjs___rxjs_7.3.0.tgz"; + path = fetchurl { + name = "rxjs___rxjs_7.3.0.tgz"; + url = "https://registry.yarnpkg.com/rxjs/-/rxjs-7.3.0.tgz"; + sha1 = "39fe4f3461dc1e50be1475b2b85a0a88c1e938c6"; + }; + } { name = "safe_buffer___safe_buffer_5.1.2.tgz"; path = fetchurl { @@ -11458,11 +11282,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"; }; } { @@ -11697,38 +11521,6 @@ sha1 = "64922e7c565b0e14204ba1aa7d6964278d25182d"; }; } - { - name = "socket.io_adapter___socket.io_adapter_1.1.1.tgz"; - path = fetchurl { - name = "socket.io_adapter___socket.io_adapter_1.1.1.tgz"; - url = "https://registry.yarnpkg.com/socket.io-adapter/-/socket.io-adapter-1.1.1.tgz"; - sha1 = "2a805e8a14d6372124dd9159ad4502f8cb07f06b"; - }; - } - { - name = "socket.io_client___socket.io_client_2.1.1.tgz"; - path = fetchurl { - name = "socket.io_client___socket.io_client_2.1.1.tgz"; - url = "https://registry.yarnpkg.com/socket.io-client/-/socket.io-client-2.1.1.tgz"; - sha1 = "dcb38103436ab4578ddb026638ae2f21b623671f"; - }; - } - { - name = "socket.io_parser___socket.io_parser_3.2.0.tgz"; - path = fetchurl { - name = "socket.io_parser___socket.io_parser_3.2.0.tgz"; - url = "https://registry.yarnpkg.com/socket.io-parser/-/socket.io-parser-3.2.0.tgz"; - sha1 = "e7c6228b6aa1f814e6148aea325b51aa9499e077"; - }; - } - { - name = "socket.io___socket.io_2.1.1.tgz"; - path = fetchurl { - name = "socket.io___socket.io_2.1.1.tgz"; - url = "https://registry.yarnpkg.com/socket.io/-/socket.io-2.1.1.tgz"; - sha1 = "a069c5feabee3e6b214a75b40ce0652e1cfb9980"; - }; - } { name = "sockjs_client___sockjs_client_1.5.0.tgz"; path = fetchurl { @@ -11937,14 +11729,6 @@ sha1 = "161c7dac177659fd9811f43771fa99381478628c"; }; } - { - name = "statuses___statuses_1.3.1.tgz"; - path = fetchurl { - name = "statuses___statuses_1.3.1.tgz"; - url = "https://registry.yarnpkg.com/statuses/-/statuses-1.3.1.tgz"; - sha1 = "faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e"; - }; - } { name = "stealthy_require___stealthy_require_1.1.1.tgz"; path = fetchurl { @@ -11985,14 +11769,6 @@ sha1 = "d5c752825e5367e786f78e18e445ea223a155952"; }; } - { - name = "streamroller___streamroller_1.0.6.tgz"; - path = fetchurl { - name = "streamroller___streamroller_1.0.6.tgz"; - url = "https://registry.yarnpkg.com/streamroller/-/streamroller-1.0.6.tgz"; - sha1 = "8167d8496ed9f19f05ee4b158d9611321b8cacd9"; - }; - } { name = "string_hash___string_hash_1.1.3.tgz"; path = fetchurl { @@ -12009,6 +11785,14 @@ sha1 = "4a973bf31ef77c4edbceadd6af2611996985f8a1"; }; } + { + name = "string_width___string_width_2.1.1.tgz"; + path = fetchurl { + name = "string_width___string_width_2.1.1.tgz"; + url = "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz"; + sha1 = "ab93f27a8dc13d28cac815c462143a6d9012ae9e"; + }; + } { name = "string_width___string_width_3.1.0.tgz"; path = fetchurl { @@ -12186,11 +11970,11 @@ }; } { - name = "stylis___stylis_3.5.4.tgz"; + name = "stylis___stylis_4.0.10.tgz"; path = fetchurl { - name = "stylis___stylis_3.5.4.tgz"; - url = "https://registry.yarnpkg.com/stylis/-/stylis-3.5.4.tgz"; - sha1 = "f665f25f5e299cf3d64654ab949a57c768b73fbe"; + name = "stylis___stylis_4.0.10.tgz"; + url = "https://registry.yarnpkg.com/stylis/-/stylis-4.0.10.tgz"; + sha1 = "446512d1097197ab3f02fb3c258358c3f7a14240"; }; } { @@ -12305,6 +12089,14 @@ sha1 = "bde815086e10b39f1dcd298e89d596e1535e200f"; }; } + { + name = "temp___temp_0.8.4.tgz"; + path = fetchurl { + name = "temp___temp_0.8.4.tgz"; + url = "https://registry.yarnpkg.com/temp/-/temp-0.8.4.tgz"; + sha1 = "8c97a33a4770072e0a05f919396c7665a7dd59f2"; + }; + } { name = "term_size___term_size_2.2.0.tgz"; path = fetchurl { @@ -12409,6 +12201,14 @@ sha1 = "01c1e39eb31d07cb7d03a96a70823260b23132cd"; }; } + { + name = "through___through_2.3.8.tgz"; + path = fetchurl { + name = "through___through_2.3.8.tgz"; + url = "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz"; + sha1 = "0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"; + }; + } { name = "thunky___thunky_0.1.0.tgz"; path = fetchurl { @@ -12505,14 +12305,6 @@ sha1 = "23640dd7b42d00433911140820e5cf440e521dd1"; }; } - { - name = "to_array___to_array_0.1.4.tgz"; - path = fetchurl { - name = "to_array___to_array_0.1.4.tgz"; - url = "https://registry.yarnpkg.com/to-array/-/to-array-0.1.4.tgz"; - sha1 = "17e6c11f73dd4f3d74cda7a4ff3238e9ad9bf890"; - }; - } { name = "to_arraybuffer___to_arraybuffer_1.0.1.tgz"; path = fetchurl { @@ -12641,22 +12433,6 @@ sha1 = "b8b639cefad7d0bb2abd37d433ff8293efa5f406"; }; } - { - name = "try_catch___try_catch_2.0.0.tgz"; - path = fetchurl { - name = "try_catch___try_catch_2.0.0.tgz"; - url = "https://registry.yarnpkg.com/try-catch/-/try-catch-2.0.0.tgz"; - sha1 = "a491141d597f8b72b46757fe1c47059341a16aed"; - }; - } - { - name = "try_to_catch___try_to_catch_1.1.1.tgz"; - path = fetchurl { - name = "try_to_catch___try_to_catch_1.1.1.tgz"; - url = "https://registry.yarnpkg.com/try-to-catch/-/try-to-catch-1.1.1.tgz"; - sha1 = "770162dd13b9a0e55da04db5b7f888956072038a"; - }; - } { name = "ts_invariant___ts_invariant_0.4.4.tgz"; path = fetchurl { @@ -12682,11 +12458,19 @@ }; } { - name = "tslib___tslib_2.2.0.tgz"; + name = "tslib___tslib_2.3.1.tgz"; path = fetchurl { - name = "tslib___tslib_2.2.0.tgz"; - url = "https://registry.yarnpkg.com/tslib/-/tslib-2.2.0.tgz"; - sha1 = "fb2c475977e35e241311ede2693cee1ec6698f5c"; + name = "tslib___tslib_2.3.1.tgz"; + url = "https://registry.yarnpkg.com/tslib/-/tslib-2.3.1.tgz"; + sha1 = "e8a335add5ceae51aa261d32a490158ef042ef01"; + }; + } + { + name = "tslib___tslib_2.1.0.tgz"; + path = fetchurl { + name = "tslib___tslib_2.1.0.tgz"; + url = "https://registry.yarnpkg.com/tslib/-/tslib-2.1.0.tgz"; + sha1 = "da60860f1c2ecaa5703ab7d39bc05b6bf988b97a"; }; } { @@ -12810,27 +12594,11 @@ }; } { - name = "uc.micro___uc.micro_1.0.5.tgz"; + name = "uc.micro___uc.micro_1.0.6.tgz"; path = fetchurl { - name = "uc.micro___uc.micro_1.0.5.tgz"; - url = "https://registry.yarnpkg.com/uc.micro/-/uc.micro-1.0.5.tgz"; - sha1 = "0c65f15f815aa08b560a61ce8b4db7ffc3f45376"; - }; - } - { - name = "uglify_js___uglify_js_3.6.0.tgz"; - path = fetchurl { - name = "uglify_js___uglify_js_3.6.0.tgz"; - url = "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.6.0.tgz"; - sha1 = "704681345c53a8b2079fb6cec294b05ead242ff5"; - }; - } - { - name = "ultron___ultron_1.1.1.tgz"; - path = fetchurl { - name = "ultron___ultron_1.1.1.tgz"; - url = "https://registry.yarnpkg.com/ultron/-/ultron-1.1.1.tgz"; - sha1 = "9fe1536a10a664a65266a1e3ccf85fd36302bc9c"; + name = "uc.micro___uc.micro_1.0.6.tgz"; + url = "https://registry.yarnpkg.com/uc.micro/-/uc.micro-1.0.6.tgz"; + sha1 = "9c411a802a409a91fc6cf74081baba34b24499ac"; }; } { @@ -13001,14 +12769,6 @@ sha1 = "4866b98c3bc5b5473c020b1250583628f9a328f3"; }; } - { - name = "upper_case___upper_case_1.1.3.tgz"; - path = fetchurl { - name = "upper_case___upper_case_1.1.3.tgz"; - url = "https://registry.yarnpkg.com/upper-case/-/upper-case-1.1.3.tgz"; - sha1 = "f6b4501c2ec4cdd26ba78be7222961de77621598"; - }; - } { name = "uri_js___uri_js_4.4.0.tgz"; path = fetchurl { @@ -13081,14 +12841,6 @@ sha1 = "d50c8cac79a19fbc20f2911f56eb973f4e10070f"; }; } - { - name = "useragent___useragent_2.3.0.tgz"; - path = fetchurl { - name = "useragent___useragent_2.3.0.tgz"; - url = "https://registry.yarnpkg.com/useragent/-/useragent-2.3.0.tgz"; - sha1 = "217f943ad540cb2128658ab23fc960f6a88c9972"; - }; - } { name = "util_deprecate___util_deprecate_1.0.2.tgz"; path = fetchurl { @@ -13225,14 +12977,6 @@ sha1 = "bd76d6a23323e2ca8ffa12028dc04559c75f9019"; }; } - { - name = "void_elements___void_elements_2.0.1.tgz"; - path = fetchurl { - name = "void_elements___void_elements_2.0.1.tgz"; - url = "https://registry.yarnpkg.com/void-elements/-/void-elements-2.0.1.tgz"; - sha1 = "c066afb582bb1cb4128d60ea92392e94d5e9dbec"; - }; - } { name = "vscode_json_languageservice___vscode_json_languageservice_3.9.1.tgz"; path = fetchurl { @@ -13521,6 +13265,14 @@ sha1 = "c1d8d149316d3ea852848895cb6a0bfe887b87df"; }; } + { + name = "wcwidth___wcwidth_1.0.1.tgz"; + path = fetchurl { + name = "wcwidth___wcwidth_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz"; + sha1 = "f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8"; + }; + } { name = "web_vitals___web_vitals_0.2.4.tgz"; path = fetchurl { @@ -13689,14 +13441,6 @@ sha1 = "610636f6b1f703891bd34771ccb17fb93b47079c"; }; } - { - name = "wordwrap___wordwrap_0.0.3.tgz"; - path = fetchurl { - name = "wordwrap___wordwrap_0.0.3.tgz"; - url = "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz"; - sha1 = "a3d5da6cd5c0bc0008d37234bbaf1bed63059107"; - }; - } { name = "worker_farm___worker_farm_1.7.0.tgz"; path = fetchurl { @@ -13713,6 +13457,14 @@ sha1 = "45fda3ef76aca815771a89107399ee4119b430ac"; }; } + { + name = "wrap_ansi___wrap_ansi_4.0.0.tgz"; + path = fetchurl { + name = "wrap_ansi___wrap_ansi_4.0.0.tgz"; + url = "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-4.0.0.tgz"; + sha1 = "b3570d7c70156159a2d42be5cc942e957f7b1131"; + }; + } { name = "wrap_ansi___wrap_ansi_5.1.0.tgz"; path = fetchurl { @@ -13729,6 +13481,14 @@ sha1 = "e9393ba07102e6c91a3b221478f0257cd2856e53"; }; } + { + name = "wrap_ansi___wrap_ansi_7.0.0.tgz"; + path = fetchurl { + name = "wrap_ansi___wrap_ansi_7.0.0.tgz"; + url = "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz"; + sha1 = "67e145cff510a6a6984bdf1152911d69d2eb9e43"; + }; + } { name = "wrappy___wrappy_1.0.2.tgz"; path = fetchurl { @@ -13737,6 +13497,14 @@ sha1 = "b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"; }; } + { + name = "write_file_atomic___write_file_atomic_2.4.3.tgz"; + path = fetchurl { + name = "write_file_atomic___write_file_atomic_2.4.3.tgz"; + url = "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.4.3.tgz"; + sha1 = "1fd2e9ae1df3e75b8d8c367443c692d4ca81f481"; + }; + } { name = "write_file_atomic___write_file_atomic_3.0.3.tgz"; path = fetchurl { @@ -13761,14 +13529,6 @@ sha1 = "383bc9742cb202292c9077ceab6f6047b17f2d59"; }; } - { - name = "ws___ws_3.3.3.tgz"; - path = fetchurl { - name = "ws___ws_3.3.3.tgz"; - url = "https://registry.yarnpkg.com/ws/-/ws-3.3.3.tgz"; - sha1 = "f1cf84fe2d5e901ebce94efaece785f187a228f2"; - }; - } { name = "xdg_basedir___xdg_basedir_4.0.0.tgz"; path = fetchurl { @@ -13809,14 +13569,6 @@ sha1 = "78ba72020029c5bc87b8a81a3cfcd74b4a2fc1e5"; }; } - { - name = "xmlbuilder___xmlbuilder_8.2.2.tgz"; - path = fetchurl { - name = "xmlbuilder___xmlbuilder_8.2.2.tgz"; - url = "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-8.2.2.tgz"; - sha1 = "69248673410b4ba42e1a6136551d2922335aa773"; - }; - } { name = "xmlbuilder___xmlbuilder_9.0.7.tgz"; path = fetchurl { @@ -13841,14 +13593,6 @@ sha1 = "fa6bf762a60a413fb3dd8f4b03c5b269238d308f"; }; } - { - name = "xmlhttprequest_ssl___xmlhttprequest_ssl_1.5.5.tgz"; - path = fetchurl { - name = "xmlhttprequest_ssl___xmlhttprequest_ssl_1.5.5.tgz"; - url = "https://registry.yarnpkg.com/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.5.5.tgz"; - sha1 = "c2876b06168aadc40e57d97e81191ac8f4398b3e"; - }; - } { name = "xtend___xtend_4.0.2.tgz"; path = fetchurl { @@ -13977,14 +13721,6 @@ sha1 = "3018d93e95f855f236a215b591fe8bc4bcabba3e"; }; } - { - name = "yeast___yeast_0.1.2.tgz"; - path = fetchurl { - name = "yeast___yeast_0.1.2.tgz"; - url = "https://registry.yarnpkg.com/yeast/-/yeast-0.1.2.tgz"; - sha1 = "008e06d8094320c372dbc2f8ed76a0ca6c8ac419"; - }; - } { name = "yocto_queue___yocto_queue_0.1.0.tgz"; path = fetchurl { From 9e6a39be4d465892d32bee6944626415fbd77933 Mon Sep 17 00:00:00 2001 From: Vincenzo Mantova <1962985+xworld21@users.noreply.github.com> Date: Sun, 3 Oct 2021 23:39:25 +0100 Subject: [PATCH 59/59] perlPackages.LaTeXML: 0.8.5 -> 0.8.6 (#140173) --- pkgs/top-level/perl-packages.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 13949955c825..09253e5482d2 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -11353,15 +11353,15 @@ let LaTeXML = buildPerlPackage rec { pname = "LaTeXML"; - version = "0.8.5"; + version = "0.8.6"; src = fetchurl { url = "mirror://cpan/authors/id/B/BR/BRMILLER/${pname}-${version}.tar.gz"; - sha256 = "0dr69rgl4si9i9ww1r4dc7apgb7y6f7ih808w4g0924cvz823s0x"; + sha256 = "1ccvdq7asxq6iw8x8ihwf5xs2mp7fkwm467xy7g8spkznr8wcacm"; }; outputs = [ "out" "tex" ]; - propagatedBuildInputs = [ ArchiveZip DBFile FileWhich IOString ImageSize JSONXS LWP ParseRecDescent ImageMagick PodParser TextUnidecode XMLLibXSLT ]; + propagatedBuildInputs = [ ArchiveZip DBFile FileWhich IOString ImageMagick ImageSize JSONXS LWP ParseRecDescent PodParser TextUnidecode XMLLibXSLT ]; preCheck = '' - rm t/931_epub.t # epub test fails + rm t/931_epub.t # https://github.com/brucemiller/LaTeXML/issues/1669 ''; nativeBuildInputs = [ pkgs.makeWrapper ] ++ lib.optional stdenv.isDarwin shortenPerlShebang; makeMakerFlags = "TEXMF=\${tex} NOMKTEXLSR";